OLD | NEW |
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 39 matching lines...) Loading... |
50 : zone_(info->zone()), | 50 : zone_(info->zone()), |
51 chunk_(static_cast<LPlatformChunk*>(chunk)), | 51 chunk_(static_cast<LPlatformChunk*>(chunk)), |
52 masm_(assembler), | 52 masm_(assembler), |
53 info_(info), | 53 info_(info), |
54 current_block_(-1), | 54 current_block_(-1), |
55 current_instruction_(-1), | 55 current_instruction_(-1), |
56 instructions_(chunk->instructions()), | 56 instructions_(chunk->instructions()), |
57 deoptimizations_(4, info->zone()), | 57 deoptimizations_(4, info->zone()), |
58 jump_table_(4, info->zone()), | 58 jump_table_(4, info->zone()), |
59 deoptimization_literals_(8, info->zone()), | 59 deoptimization_literals_(8, info->zone()), |
60 prototype_maps_(0, info->zone()), | |
61 transition_maps_(0, info->zone()), | 60 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 osr_pc_offset_(-1), | 66 osr_pc_offset_(-1), |
68 last_lazy_deopt_pc_(0), | 67 last_lazy_deopt_pc_(0), |
69 frame_is_built_(false), | 68 frame_is_built_(false), |
70 safepoints_(info->zone()), | 69 safepoints_(info->zone()), |
(...skipping 284 matching lines...) Loading... |
355 LPlatformChunk* const chunk_; | 354 LPlatformChunk* const chunk_; |
356 MacroAssembler* const masm_; | 355 MacroAssembler* const masm_; |
357 CompilationInfo* const info_; | 356 CompilationInfo* const info_; |
358 | 357 |
359 int current_block_; | 358 int current_block_; |
360 int current_instruction_; | 359 int current_instruction_; |
361 const ZoneList<LInstruction*>* instructions_; | 360 const ZoneList<LInstruction*>* instructions_; |
362 ZoneList<LEnvironment*> deoptimizations_; | 361 ZoneList<LEnvironment*> deoptimizations_; |
363 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; | 362 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; |
364 ZoneList<Handle<Object> > deoptimization_literals_; | 363 ZoneList<Handle<Object> > deoptimization_literals_; |
365 ZoneList<Handle<Map> > prototype_maps_; | |
366 ZoneList<Handle<Map> > transition_maps_; | 364 ZoneList<Handle<Map> > transition_maps_; |
367 int inlined_function_count_; | 365 int inlined_function_count_; |
368 Scope* const scope_; | 366 Scope* const scope_; |
369 Status status_; | 367 Status status_; |
370 TranslationBuffer translations_; | 368 TranslationBuffer translations_; |
371 ZoneList<LDeferredCode*> deferred_; | 369 ZoneList<LDeferredCode*> deferred_; |
372 int osr_pc_offset_; | 370 int osr_pc_offset_; |
373 int last_lazy_deopt_pc_; | 371 int last_lazy_deopt_pc_; |
374 bool frame_is_built_; | 372 bool frame_is_built_; |
375 | 373 |
(...skipping 59 matching lines...) Loading... |
435 LCodeGen* codegen_; | 433 LCodeGen* codegen_; |
436 Label entry_; | 434 Label entry_; |
437 Label exit_; | 435 Label exit_; |
438 Label* external_exit_; | 436 Label* external_exit_; |
439 int instruction_index_; | 437 int instruction_index_; |
440 }; | 438 }; |
441 | 439 |
442 } } // namespace v8::internal | 440 } } // namespace v8::internal |
443 | 441 |
444 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ | 442 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ |
OLD | NEW |