Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(444)

Side by Side Diff: src/mips/lithium-codegen-mips.h

Issue 16542003: Enable map dependency to in-flight compilation info. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: put transition maps and initial maps dependency into a separate CL Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 : zone_(info->zone()), 48 : zone_(info->zone()),
49 chunk_(static_cast<LPlatformChunk*>(chunk)), 49 chunk_(static_cast<LPlatformChunk*>(chunk)),
50 masm_(assembler), 50 masm_(assembler),
51 info_(info), 51 info_(info),
52 current_block_(-1), 52 current_block_(-1),
53 current_instruction_(-1), 53 current_instruction_(-1),
54 instructions_(chunk->instructions()), 54 instructions_(chunk->instructions()),
55 deoptimizations_(4, info->zone()), 55 deoptimizations_(4, info->zone()),
56 deopt_jump_table_(4, info->zone()), 56 deopt_jump_table_(4, info->zone()),
57 deoptimization_literals_(8, info->zone()), 57 deoptimization_literals_(8, info->zone()),
58 prototype_maps_(0, info->zone()),
59 transition_maps_(0, info->zone()), 58 transition_maps_(0, info->zone()),
60 inlined_function_count_(0), 59 inlined_function_count_(0),
61 scope_(info->scope()), 60 scope_(info->scope()),
62 status_(UNUSED), 61 status_(UNUSED),
63 translations_(info->zone()), 62 translations_(info->zone()),
64 deferred_(8, info->zone()), 63 deferred_(8, info->zone()),
65 osr_pc_offset_(-1), 64 osr_pc_offset_(-1),
66 last_lazy_deopt_pc_(0), 65 last_lazy_deopt_pc_(0),
67 frame_is_built_(false), 66 frame_is_built_(false),
68 safepoints_(info->zone()), 67 safepoints_(info->zone()),
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 LPlatformChunk* const chunk_; 404 LPlatformChunk* const chunk_;
406 MacroAssembler* const masm_; 405 MacroAssembler* const masm_;
407 CompilationInfo* const info_; 406 CompilationInfo* const info_;
408 407
409 int current_block_; 408 int current_block_;
410 int current_instruction_; 409 int current_instruction_;
411 const ZoneList<LInstruction*>* instructions_; 410 const ZoneList<LInstruction*>* instructions_;
412 ZoneList<LEnvironment*> deoptimizations_; 411 ZoneList<LEnvironment*> deoptimizations_;
413 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_; 412 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_;
414 ZoneList<Handle<Object> > deoptimization_literals_; 413 ZoneList<Handle<Object> > deoptimization_literals_;
415 ZoneList<Handle<Map> > prototype_maps_;
416 ZoneList<Handle<Map> > transition_maps_; 414 ZoneList<Handle<Map> > transition_maps_;
417 int inlined_function_count_; 415 int inlined_function_count_;
418 Scope* const scope_; 416 Scope* const scope_;
419 Status status_; 417 Status status_;
420 TranslationBuffer translations_; 418 TranslationBuffer translations_;
421 ZoneList<LDeferredCode*> deferred_; 419 ZoneList<LDeferredCode*> deferred_;
422 int osr_pc_offset_; 420 int osr_pc_offset_;
423 int last_lazy_deopt_pc_; 421 int last_lazy_deopt_pc_;
424 bool frame_is_built_; 422 bool frame_is_built_;
425 423
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 LCodeGen* codegen_; 504 LCodeGen* codegen_;
507 Label entry_; 505 Label entry_;
508 Label exit_; 506 Label exit_;
509 Label* external_exit_; 507 Label* external_exit_;
510 int instruction_index_; 508 int instruction_index_;
511 }; 509 };
512 510
513 } } // namespace v8::internal 511 } } // namespace v8::internal
514 512
515 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ 513 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698