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

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

Issue 16482004: Revert "Enable map dependency to in-flight compilation info." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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()),
61 inlined_function_count_(0), 63 inlined_function_count_(0),
62 scope_(info->scope()), 64 scope_(info->scope()),
63 status_(UNUSED), 65 status_(UNUSED),
64 translations_(info->zone()), 66 translations_(info->zone()),
65 deferred_(8, info->zone()), 67 deferred_(8, info->zone()),
66 dynamic_frame_alignment_(false), 68 dynamic_frame_alignment_(false),
67 support_aligned_spilled_doubles_(false), 69 support_aligned_spilled_doubles_(false),
68 osr_pc_offset_(-1), 70 osr_pc_offset_(-1),
69 last_lazy_deopt_pc_(0), 71 last_lazy_deopt_pc_(0),
70 frame_is_built_(false), 72 frame_is_built_(false),
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 LPlatformChunk* const chunk_; 402 LPlatformChunk* const chunk_;
401 MacroAssembler* const masm_; 403 MacroAssembler* const masm_;
402 CompilationInfo* const info_; 404 CompilationInfo* const info_;
403 405
404 int current_block_; 406 int current_block_;
405 int current_instruction_; 407 int current_instruction_;
406 const ZoneList<LInstruction*>* instructions_; 408 const ZoneList<LInstruction*>* instructions_;
407 ZoneList<LEnvironment*> deoptimizations_; 409 ZoneList<LEnvironment*> deoptimizations_;
408 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; 410 ZoneList<Deoptimizer::JumpTableEntry> jump_table_;
409 ZoneList<Handle<Object> > deoptimization_literals_; 411 ZoneList<Handle<Object> > deoptimization_literals_;
412 ZoneList<Handle<Map> > prototype_maps_;
413 ZoneList<Handle<Map> > transition_maps_;
410 int inlined_function_count_; 414 int inlined_function_count_;
411 Scope* const scope_; 415 Scope* const scope_;
412 Status status_; 416 Status status_;
413 TranslationBuffer translations_; 417 TranslationBuffer translations_;
414 ZoneList<LDeferredCode*> deferred_; 418 ZoneList<LDeferredCode*> deferred_;
415 bool dynamic_frame_alignment_; 419 bool dynamic_frame_alignment_;
416 bool support_aligned_spilled_doubles_; 420 bool support_aligned_spilled_doubles_;
417 int osr_pc_offset_; 421 int osr_pc_offset_;
418 int last_lazy_deopt_pc_; 422 int last_lazy_deopt_pc_;
419 bool frame_is_built_; 423 bool frame_is_built_;
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 LCodeGen* codegen_; 485 LCodeGen* codegen_;
482 Label entry_; 486 Label entry_;
483 Label exit_; 487 Label exit_;
484 Label* external_exit_; 488 Label* external_exit_;
485 int instruction_index_; 489 int instruction_index_;
486 }; 490 };
487 491
488 } } // namespace v8::internal 492 } } // namespace v8::internal
489 493
490 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ 494 #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