| 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 inlined_function_count_(0), | 61 inlined_function_count_(0), |
| 60 scope_(info->scope()), | 62 scope_(info->scope()), |
| 61 status_(UNUSED), | 63 status_(UNUSED), |
| 62 translations_(info->zone()), | 64 translations_(info->zone()), |
| 63 deferred_(8, info->zone()), | 65 deferred_(8, info->zone()), |
| 64 osr_pc_offset_(-1), | 66 osr_pc_offset_(-1), |
| 65 last_lazy_deopt_pc_(0), | 67 last_lazy_deopt_pc_(0), |
| 66 frame_is_built_(false), | 68 frame_is_built_(false), |
| 67 safepoints_(info->zone()), | 69 safepoints_(info->zone()), |
| 68 resolver_(this), | 70 resolver_(this), |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 LPlatformChunk* const chunk_; | 399 LPlatformChunk* const chunk_; |
| 398 MacroAssembler* const masm_; | 400 MacroAssembler* const masm_; |
| 399 CompilationInfo* const info_; | 401 CompilationInfo* const info_; |
| 400 | 402 |
| 401 int current_block_; | 403 int current_block_; |
| 402 int current_instruction_; | 404 int current_instruction_; |
| 403 const ZoneList<LInstruction*>* instructions_; | 405 const ZoneList<LInstruction*>* instructions_; |
| 404 ZoneList<LEnvironment*> deoptimizations_; | 406 ZoneList<LEnvironment*> deoptimizations_; |
| 405 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_; | 407 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_; |
| 406 ZoneList<Handle<Object> > deoptimization_literals_; | 408 ZoneList<Handle<Object> > deoptimization_literals_; |
| 409 ZoneList<Handle<Map> > prototype_maps_; |
| 410 ZoneList<Handle<Map> > transition_maps_; |
| 407 int inlined_function_count_; | 411 int inlined_function_count_; |
| 408 Scope* const scope_; | 412 Scope* const scope_; |
| 409 Status status_; | 413 Status status_; |
| 410 TranslationBuffer translations_; | 414 TranslationBuffer translations_; |
| 411 ZoneList<LDeferredCode*> deferred_; | 415 ZoneList<LDeferredCode*> deferred_; |
| 412 int osr_pc_offset_; | 416 int osr_pc_offset_; |
| 413 int last_lazy_deopt_pc_; | 417 int last_lazy_deopt_pc_; |
| 414 bool frame_is_built_; | 418 bool frame_is_built_; |
| 415 | 419 |
| 416 // Builder that keeps track of safepoints in the code. The table | 420 // Builder that keeps track of safepoints in the code. The table |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 LCodeGen* codegen_; | 500 LCodeGen* codegen_; |
| 497 Label entry_; | 501 Label entry_; |
| 498 Label exit_; | 502 Label exit_; |
| 499 Label* external_exit_; | 503 Label* external_exit_; |
| 500 int instruction_index_; | 504 int instruction_index_; |
| 501 }; | 505 }; |
| 502 | 506 |
| 503 } } // namespace v8::internal | 507 } } // namespace v8::internal |
| 504 | 508 |
| 505 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 509 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
| OLD | NEW |