| 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 chunk_(static_cast<LPlatformChunk*>(chunk)), | 50 chunk_(static_cast<LPlatformChunk*>(chunk)), |
| 51 masm_(assembler), | 51 masm_(assembler), |
| 52 info_(info), | 52 info_(info), |
| 53 current_block_(-1), | 53 current_block_(-1), |
| 54 current_instruction_(-1), | 54 current_instruction_(-1), |
| 55 instructions_(chunk->instructions()), | 55 instructions_(chunk->instructions()), |
| 56 deoptimizations_(4, info->zone()), | 56 deoptimizations_(4, info->zone()), |
| 57 deopt_jump_table_(4, info->zone()), | 57 deopt_jump_table_(4, info->zone()), |
| 58 deoptimization_literals_(8, info->zone()), | 58 deoptimization_literals_(8, info->zone()), |
| 59 prototype_maps_(0, info->zone()), | 59 prototype_maps_(0, info->zone()), |
| 60 transition_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 osr_pc_offset_(-1), | 66 osr_pc_offset_(-1), |
| 66 last_lazy_deopt_pc_(0), | 67 last_lazy_deopt_pc_(0), |
| 67 frame_is_built_(false), | 68 frame_is_built_(false), |
| 68 safepoints_(info->zone()), | 69 safepoints_(info->zone()), |
| 69 resolver_(this), | 70 resolver_(this), |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 MacroAssembler* const masm_; | 411 MacroAssembler* const masm_; |
| 411 CompilationInfo* const info_; | 412 CompilationInfo* const info_; |
| 412 | 413 |
| 413 int current_block_; | 414 int current_block_; |
| 414 int current_instruction_; | 415 int current_instruction_; |
| 415 const ZoneList<LInstruction*>* instructions_; | 416 const ZoneList<LInstruction*>* instructions_; |
| 416 ZoneList<LEnvironment*> deoptimizations_; | 417 ZoneList<LEnvironment*> deoptimizations_; |
| 417 ZoneList<JumpTableEntry> deopt_jump_table_; | 418 ZoneList<JumpTableEntry> deopt_jump_table_; |
| 418 ZoneList<Handle<Object> > deoptimization_literals_; | 419 ZoneList<Handle<Object> > deoptimization_literals_; |
| 419 ZoneList<Handle<Map> > prototype_maps_; | 420 ZoneList<Handle<Map> > prototype_maps_; |
| 421 ZoneList<Handle<Map> > transition_maps_; |
| 420 int inlined_function_count_; | 422 int inlined_function_count_; |
| 421 Scope* const scope_; | 423 Scope* const scope_; |
| 422 Status status_; | 424 Status status_; |
| 423 TranslationBuffer translations_; | 425 TranslationBuffer translations_; |
| 424 ZoneList<LDeferredCode*> deferred_; | 426 ZoneList<LDeferredCode*> deferred_; |
| 425 int osr_pc_offset_; | 427 int osr_pc_offset_; |
| 426 int last_lazy_deopt_pc_; | 428 int last_lazy_deopt_pc_; |
| 427 bool frame_is_built_; | 429 bool frame_is_built_; |
| 428 | 430 |
| 429 // Builder that keeps track of safepoints in the code. The table | 431 // Builder that keeps track of safepoints in the code. The table |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 LCodeGen* codegen_; | 511 LCodeGen* codegen_; |
| 510 Label entry_; | 512 Label entry_; |
| 511 Label exit_; | 513 Label exit_; |
| 512 Label* external_exit_; | 514 Label* external_exit_; |
| 513 int instruction_index_; | 515 int instruction_index_; |
| 514 }; | 516 }; |
| 515 | 517 |
| 516 } } // namespace v8::internal | 518 } } // namespace v8::internal |
| 517 | 519 |
| 518 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 520 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
| OLD | NEW |