| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 : zone_(info->zone()), | 49 : zone_(info->zone()), |
| 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()), | |
| 60 transition_maps_(0, info->zone()), | 59 transition_maps_(0, info->zone()), |
| 61 inlined_function_count_(0), | 60 inlined_function_count_(0), |
| 62 scope_(info->scope()), | 61 scope_(info->scope()), |
| 63 status_(UNUSED), | 62 status_(UNUSED), |
| 64 translations_(info->zone()), | 63 translations_(info->zone()), |
| 65 deferred_(8, info->zone()), | 64 deferred_(8, info->zone()), |
| 66 osr_pc_offset_(-1), | 65 osr_pc_offset_(-1), |
| 67 last_lazy_deopt_pc_(0), | 66 last_lazy_deopt_pc_(0), |
| 68 frame_is_built_(false), | 67 frame_is_built_(false), |
| 69 safepoints_(info->zone()), | 68 safepoints_(info->zone()), |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 LPlatformChunk* const chunk_; | 402 LPlatformChunk* const chunk_; |
| 404 MacroAssembler* const masm_; | 403 MacroAssembler* const masm_; |
| 405 CompilationInfo* const info_; | 404 CompilationInfo* const info_; |
| 406 | 405 |
| 407 int current_block_; | 406 int current_block_; |
| 408 int current_instruction_; | 407 int current_instruction_; |
| 409 const ZoneList<LInstruction*>* instructions_; | 408 const ZoneList<LInstruction*>* instructions_; |
| 410 ZoneList<LEnvironment*> deoptimizations_; | 409 ZoneList<LEnvironment*> deoptimizations_; |
| 411 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_; | 410 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_; |
| 412 ZoneList<Handle<Object> > deoptimization_literals_; | 411 ZoneList<Handle<Object> > deoptimization_literals_; |
| 413 ZoneList<Handle<Map> > prototype_maps_; | |
| 414 ZoneList<Handle<Map> > transition_maps_; | 412 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 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_ARM_LITHIUM_CODEGEN_ARM_H_ | 511 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
| OLD | NEW |