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

Side by Side Diff: src/mips/lithium-codegen-mips.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/ia32/lithium-codegen-ia32.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 transition_maps_(0, info->zone()),
59 inlined_function_count_(0), 58 inlined_function_count_(0),
60 scope_(info->scope()), 59 scope_(info->scope()),
61 status_(UNUSED), 60 status_(UNUSED),
62 translations_(info->zone()), 61 translations_(info->zone()),
63 deferred_(8, info->zone()), 62 deferred_(8, info->zone()),
64 osr_pc_offset_(-1), 63 osr_pc_offset_(-1),
65 last_lazy_deopt_pc_(0), 64 last_lazy_deopt_pc_(0),
66 frame_is_built_(false), 65 frame_is_built_(false),
67 safepoints_(info->zone()), 66 safepoints_(info->zone()),
68 resolver_(this), 67 resolver_(this),
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 LPlatformChunk* const chunk_; 403 LPlatformChunk* const chunk_;
405 MacroAssembler* const masm_; 404 MacroAssembler* const masm_;
406 CompilationInfo* const info_; 405 CompilationInfo* const info_;
407 406
408 int current_block_; 407 int current_block_;
409 int current_instruction_; 408 int current_instruction_;
410 const ZoneList<LInstruction*>* instructions_; 409 const ZoneList<LInstruction*>* instructions_;
411 ZoneList<LEnvironment*> deoptimizations_; 410 ZoneList<LEnvironment*> deoptimizations_;
412 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_; 411 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_;
413 ZoneList<Handle<Object> > deoptimization_literals_; 412 ZoneList<Handle<Object> > deoptimization_literals_;
414 ZoneList<Handle<Map> > transition_maps_;
415 int inlined_function_count_; 413 int inlined_function_count_;
416 Scope* const scope_; 414 Scope* const scope_;
417 Status status_; 415 Status status_;
418 TranslationBuffer translations_; 416 TranslationBuffer translations_;
419 ZoneList<LDeferredCode*> deferred_; 417 ZoneList<LDeferredCode*> deferred_;
420 int osr_pc_offset_; 418 int osr_pc_offset_;
421 int last_lazy_deopt_pc_; 419 int last_lazy_deopt_pc_;
422 bool frame_is_built_; 420 bool frame_is_built_;
423 421
424 // 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
504 LCodeGen* codegen_; 502 LCodeGen* codegen_;
505 Label entry_; 503 Label entry_;
506 Label exit_; 504 Label exit_;
507 Label* external_exit_; 505 Label* external_exit_;
508 int instruction_index_; 506 int instruction_index_;
509 }; 507 };
510 508
511 } } // namespace v8::internal 509 } } // namespace v8::internal
512 510
513 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ 511 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_
OLDNEW
« no previous file with comments | « src/ia32/lithium-codegen-ia32.cc ('k') | src/mips/lithium-codegen-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698