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

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

Issue 16782004: Reland "Enable map dependency to in-flight compilation info." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: The fix. 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
« no previous file with comments | « src/mark-compact.cc ('k') | src/mips/lithium-codegen-mips.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()),
60 inlined_function_count_(0), 58 inlined_function_count_(0),
61 scope_(info->scope()), 59 scope_(info->scope()),
62 status_(UNUSED), 60 status_(UNUSED),
63 translations_(info->zone()), 61 translations_(info->zone()),
64 deferred_(8, info->zone()), 62 deferred_(8, info->zone()),
65 osr_pc_offset_(-1), 63 osr_pc_offset_(-1),
66 last_lazy_deopt_pc_(0), 64 last_lazy_deopt_pc_(0),
67 frame_is_built_(false), 65 frame_is_built_(false),
68 safepoints_(info->zone()), 66 safepoints_(info->zone()),
69 resolver_(this), 67 resolver_(this),
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 LPlatformChunk* const chunk_; 403 LPlatformChunk* const chunk_;
406 MacroAssembler* const masm_; 404 MacroAssembler* const masm_;
407 CompilationInfo* const info_; 405 CompilationInfo* const info_;
408 406
409 int current_block_; 407 int current_block_;
410 int current_instruction_; 408 int current_instruction_;
411 const ZoneList<LInstruction*>* instructions_; 409 const ZoneList<LInstruction*>* instructions_;
412 ZoneList<LEnvironment*> deoptimizations_; 410 ZoneList<LEnvironment*> deoptimizations_;
413 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_; 411 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_;
414 ZoneList<Handle<Object> > deoptimization_literals_; 412 ZoneList<Handle<Object> > deoptimization_literals_;
415 ZoneList<Handle<Map> > prototype_maps_;
416 ZoneList<Handle<Map> > transition_maps_;
417 int inlined_function_count_; 413 int inlined_function_count_;
418 Scope* const scope_; 414 Scope* const scope_;
419 Status status_; 415 Status status_;
420 TranslationBuffer translations_; 416 TranslationBuffer translations_;
421 ZoneList<LDeferredCode*> deferred_; 417 ZoneList<LDeferredCode*> deferred_;
422 int osr_pc_offset_; 418 int osr_pc_offset_;
423 int last_lazy_deopt_pc_; 419 int last_lazy_deopt_pc_;
424 bool frame_is_built_; 420 bool frame_is_built_;
425 421
426 // Builder that keeps track of safepoints in the code. The table 422 // Builder that keeps track of safepoints in the code. The table
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 LCodeGen* codegen_; 502 LCodeGen* codegen_;
507 Label entry_; 503 Label entry_;
508 Label exit_; 504 Label exit_;
509 Label* external_exit_; 505 Label* external_exit_;
510 int instruction_index_; 506 int instruction_index_;
511 }; 507 };
512 508
513 } } // namespace v8::internal 509 } } // namespace v8::internal
514 510
515 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ 511 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_
OLDNEW
« no previous file with comments | « src/mark-compact.cc ('k') | src/mips/lithium-codegen-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698