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

Side by Side Diff: src/ia32/lithium-codegen-ia32.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 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 transition_maps_(0, info->zone()),
63 inlined_function_count_(0), 62 inlined_function_count_(0),
64 scope_(info->scope()), 63 scope_(info->scope()),
65 status_(UNUSED), 64 status_(UNUSED),
66 translations_(info->zone()), 65 translations_(info->zone()),
67 deferred_(8, info->zone()), 66 deferred_(8, info->zone()),
68 dynamic_frame_alignment_(false), 67 dynamic_frame_alignment_(false),
69 support_aligned_spilled_doubles_(false), 68 support_aligned_spilled_doubles_(false),
70 osr_pc_offset_(-1), 69 osr_pc_offset_(-1),
71 last_lazy_deopt_pc_(0), 70 last_lazy_deopt_pc_(0),
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 LPlatformChunk* const chunk_; 401 LPlatformChunk* const chunk_;
403 MacroAssembler* const masm_; 402 MacroAssembler* const masm_;
404 CompilationInfo* const info_; 403 CompilationInfo* const info_;
405 404
406 int current_block_; 405 int current_block_;
407 int current_instruction_; 406 int current_instruction_;
408 const ZoneList<LInstruction*>* instructions_; 407 const ZoneList<LInstruction*>* instructions_;
409 ZoneList<LEnvironment*> deoptimizations_; 408 ZoneList<LEnvironment*> deoptimizations_;
410 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; 409 ZoneList<Deoptimizer::JumpTableEntry> jump_table_;
411 ZoneList<Handle<Object> > deoptimization_literals_; 410 ZoneList<Handle<Object> > deoptimization_literals_;
412 ZoneList<Handle<Map> > prototype_maps_;
413 ZoneList<Handle<Map> > transition_maps_; 411 ZoneList<Handle<Map> > transition_maps_;
414 int inlined_function_count_; 412 int inlined_function_count_;
415 Scope* const scope_; 413 Scope* const scope_;
416 Status status_; 414 Status status_;
417 TranslationBuffer translations_; 415 TranslationBuffer translations_;
418 ZoneList<LDeferredCode*> deferred_; 416 ZoneList<LDeferredCode*> deferred_;
419 bool dynamic_frame_alignment_; 417 bool dynamic_frame_alignment_;
420 bool support_aligned_spilled_doubles_; 418 bool support_aligned_spilled_doubles_;
421 int osr_pc_offset_; 419 int osr_pc_offset_;
422 int last_lazy_deopt_pc_; 420 int last_lazy_deopt_pc_;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 LCodeGen* codegen_; 483 LCodeGen* codegen_;
486 Label entry_; 484 Label entry_;
487 Label exit_; 485 Label exit_;
488 Label* external_exit_; 486 Label* external_exit_;
489 int instruction_index_; 487 int instruction_index_;
490 }; 488 };
491 489
492 } } // namespace v8::internal 490 } } // namespace v8::internal
493 491
494 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ 492 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698