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

Side by Side Diff: src/ia32/lithium-codegen-ia32.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/hydrogen-instructions.h ('k') | src/ia32/lithium-codegen-ia32.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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 : zone_(info->zone()), 51 : zone_(info->zone()),
52 chunk_(static_cast<LPlatformChunk*>(chunk)), 52 chunk_(static_cast<LPlatformChunk*>(chunk)),
53 masm_(assembler), 53 masm_(assembler),
54 info_(info), 54 info_(info),
55 current_block_(-1), 55 current_block_(-1),
56 current_instruction_(-1), 56 current_instruction_(-1),
57 instructions_(chunk->instructions()), 57 instructions_(chunk->instructions()),
58 deoptimizations_(4, info->zone()), 58 deoptimizations_(4, info->zone()),
59 jump_table_(4, info->zone()), 59 jump_table_(4, info->zone()),
60 deoptimization_literals_(8, info->zone()), 60 deoptimization_literals_(8, info->zone()),
61 prototype_maps_(0, info->zone()),
62 transition_maps_(0, info->zone()),
63 inlined_function_count_(0), 61 inlined_function_count_(0),
64 scope_(info->scope()), 62 scope_(info->scope()),
65 status_(UNUSED), 63 status_(UNUSED),
66 translations_(info->zone()), 64 translations_(info->zone()),
67 deferred_(8, info->zone()), 65 deferred_(8, info->zone()),
68 dynamic_frame_alignment_(false), 66 dynamic_frame_alignment_(false),
69 support_aligned_spilled_doubles_(false), 67 support_aligned_spilled_doubles_(false),
70 osr_pc_offset_(-1), 68 osr_pc_offset_(-1),
71 last_lazy_deopt_pc_(0), 69 last_lazy_deopt_pc_(0),
72 frame_is_built_(false), 70 frame_is_built_(false),
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 LPlatformChunk* const chunk_; 400 LPlatformChunk* const chunk_;
403 MacroAssembler* const masm_; 401 MacroAssembler* const masm_;
404 CompilationInfo* const info_; 402 CompilationInfo* const info_;
405 403
406 int current_block_; 404 int current_block_;
407 int current_instruction_; 405 int current_instruction_;
408 const ZoneList<LInstruction*>* instructions_; 406 const ZoneList<LInstruction*>* instructions_;
409 ZoneList<LEnvironment*> deoptimizations_; 407 ZoneList<LEnvironment*> deoptimizations_;
410 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; 408 ZoneList<Deoptimizer::JumpTableEntry> jump_table_;
411 ZoneList<Handle<Object> > deoptimization_literals_; 409 ZoneList<Handle<Object> > deoptimization_literals_;
412 ZoneList<Handle<Map> > prototype_maps_;
413 ZoneList<Handle<Map> > transition_maps_;
414 int inlined_function_count_; 410 int inlined_function_count_;
415 Scope* const scope_; 411 Scope* const scope_;
416 Status status_; 412 Status status_;
417 TranslationBuffer translations_; 413 TranslationBuffer translations_;
418 ZoneList<LDeferredCode*> deferred_; 414 ZoneList<LDeferredCode*> deferred_;
419 bool dynamic_frame_alignment_; 415 bool dynamic_frame_alignment_;
420 bool support_aligned_spilled_doubles_; 416 bool support_aligned_spilled_doubles_;
421 int osr_pc_offset_; 417 int osr_pc_offset_;
422 int last_lazy_deopt_pc_; 418 int last_lazy_deopt_pc_;
423 bool frame_is_built_; 419 bool frame_is_built_;
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 LCodeGen* codegen_; 481 LCodeGen* codegen_;
486 Label entry_; 482 Label entry_;
487 Label exit_; 483 Label exit_;
488 Label* external_exit_; 484 Label* external_exit_;
489 int instruction_index_; 485 int instruction_index_;
490 }; 486 };
491 487
492 } } // namespace v8::internal 488 } } // namespace v8::internal
493 489
494 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ 490 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698