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

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

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