| 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...) Expand 10 before | Expand all | Expand 10 after 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()), |
| 60 inlined_function_count_(0), | 61 inlined_function_count_(0), |
| 61 scope_(info->scope()), | 62 scope_(info->scope()), |
| 62 status_(UNUSED), | 63 status_(UNUSED), |
| 63 translations_(info->zone()), | 64 translations_(info->zone()), |
| 64 deferred_(8, info->zone()), | 65 deferred_(8, info->zone()), |
| 65 dynamic_frame_alignment_(false), | 66 dynamic_frame_alignment_(false), |
| 66 support_aligned_spilled_doubles_(false), | 67 support_aligned_spilled_doubles_(false), |
| 67 osr_pc_offset_(-1), | 68 osr_pc_offset_(-1), |
| 68 last_lazy_deopt_pc_(0), | 69 last_lazy_deopt_pc_(0), |
| 69 frame_is_built_(false), | 70 frame_is_built_(false), |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 bool needs_frame; | 385 bool needs_frame; |
| 385 bool is_lazy_deopt; | 386 bool is_lazy_deopt; |
| 386 }; | 387 }; |
| 387 | 388 |
| 388 int current_block_; | 389 int current_block_; |
| 389 int current_instruction_; | 390 int current_instruction_; |
| 390 const ZoneList<LInstruction*>* instructions_; | 391 const ZoneList<LInstruction*>* instructions_; |
| 391 ZoneList<LEnvironment*> deoptimizations_; | 392 ZoneList<LEnvironment*> deoptimizations_; |
| 392 ZoneList<JumpTableEntry> jump_table_; | 393 ZoneList<JumpTableEntry> jump_table_; |
| 393 ZoneList<Handle<Object> > deoptimization_literals_; | 394 ZoneList<Handle<Object> > deoptimization_literals_; |
| 395 ZoneList<Handle<Map> > prototype_maps_; |
| 394 int inlined_function_count_; | 396 int inlined_function_count_; |
| 395 Scope* const scope_; | 397 Scope* const scope_; |
| 396 Status status_; | 398 Status status_; |
| 397 TranslationBuffer translations_; | 399 TranslationBuffer translations_; |
| 398 ZoneList<LDeferredCode*> deferred_; | 400 ZoneList<LDeferredCode*> deferred_; |
| 399 bool dynamic_frame_alignment_; | 401 bool dynamic_frame_alignment_; |
| 400 bool support_aligned_spilled_doubles_; | 402 bool support_aligned_spilled_doubles_; |
| 401 int osr_pc_offset_; | 403 int osr_pc_offset_; |
| 402 int last_lazy_deopt_pc_; | 404 int last_lazy_deopt_pc_; |
| 403 bool frame_is_built_; | 405 bool frame_is_built_; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 LCodeGen* codegen_; | 466 LCodeGen* codegen_; |
| 465 Label entry_; | 467 Label entry_; |
| 466 Label exit_; | 468 Label exit_; |
| 467 Label* external_exit_; | 469 Label* external_exit_; |
| 468 int instruction_index_; | 470 int instruction_index_; |
| 469 }; | 471 }; |
| 470 | 472 |
| 471 } } // namespace v8::internal | 473 } } // namespace v8::internal |
| 472 | 474 |
| 473 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 475 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| OLD | NEW |