| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 current_instruction_(-1), | 52 current_instruction_(-1), |
| 53 instructions_(chunk->instructions()), | 53 instructions_(chunk->instructions()), |
| 54 deoptimizations_(4, info->zone()), | 54 deoptimizations_(4, info->zone()), |
| 55 deopt_jump_table_(4, info->zone()), | 55 deopt_jump_table_(4, info->zone()), |
| 56 deoptimization_literals_(8, info->zone()), | 56 deoptimization_literals_(8, info->zone()), |
| 57 inlined_function_count_(0), | 57 inlined_function_count_(0), |
| 58 scope_(info->scope()), | 58 scope_(info->scope()), |
| 59 status_(UNUSED), | 59 status_(UNUSED), |
| 60 translations_(info->zone()), | 60 translations_(info->zone()), |
| 61 deferred_(8, info->zone()), | 61 deferred_(8, info->zone()), |
| 62 support_aligned_spilled_doubles_(false), | |
| 63 osr_pc_offset_(-1), | 62 osr_pc_offset_(-1), |
| 64 last_lazy_deopt_pc_(0), | 63 last_lazy_deopt_pc_(0), |
| 65 frame_is_built_(false), | 64 frame_is_built_(false), |
| 66 safepoints_(info->zone()), | 65 safepoints_(info->zone()), |
| 67 resolver_(this), | 66 resolver_(this), |
| 68 expected_safepoint_kind_(Safepoint::kSimple) { | 67 expected_safepoint_kind_(Safepoint::kSimple) { |
| 69 PopulateDeoptimizationLiteralsWithInlinedFunctions(); | 68 PopulateDeoptimizationLiteralsWithInlinedFunctions(); |
| 70 } | 69 } |
| 71 | 70 |
| 72 | 71 |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 int current_instruction_; | 406 int current_instruction_; |
| 408 const ZoneList<LInstruction*>* instructions_; | 407 const ZoneList<LInstruction*>* instructions_; |
| 409 ZoneList<LEnvironment*> deoptimizations_; | 408 ZoneList<LEnvironment*> deoptimizations_; |
| 410 ZoneList<JumpTableEntry> deopt_jump_table_; | 409 ZoneList<JumpTableEntry> deopt_jump_table_; |
| 411 ZoneList<Handle<Object> > deoptimization_literals_; | 410 ZoneList<Handle<Object> > deoptimization_literals_; |
| 412 int inlined_function_count_; | 411 int inlined_function_count_; |
| 413 Scope* const scope_; | 412 Scope* const scope_; |
| 414 Status status_; | 413 Status status_; |
| 415 TranslationBuffer translations_; | 414 TranslationBuffer translations_; |
| 416 ZoneList<LDeferredCode*> deferred_; | 415 ZoneList<LDeferredCode*> deferred_; |
| 417 bool support_aligned_spilled_doubles_; | |
| 418 int osr_pc_offset_; | 416 int osr_pc_offset_; |
| 419 int last_lazy_deopt_pc_; | 417 int last_lazy_deopt_pc_; |
| 420 bool frame_is_built_; | 418 bool frame_is_built_; |
| 421 | 419 |
| 422 // Builder that keeps track of safepoints in the code. The table | 420 // Builder that keeps track of safepoints in the code. The table |
| 423 // itself is emitted at the end of the generated code. | 421 // itself is emitted at the end of the generated code. |
| 424 SafepointTableBuilder safepoints_; | 422 SafepointTableBuilder safepoints_; |
| 425 | 423 |
| 426 // Compiler from a set of parallel moves to a sequential list of moves. | 424 // Compiler from a set of parallel moves to a sequential list of moves. |
| 427 LGapResolver resolver_; | 425 LGapResolver resolver_; |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 LCodeGen* codegen_; | 500 LCodeGen* codegen_; |
| 503 Label entry_; | 501 Label entry_; |
| 504 Label exit_; | 502 Label exit_; |
| 505 Label* external_exit_; | 503 Label* external_exit_; |
| 506 int instruction_index_; | 504 int instruction_index_; |
| 507 }; | 505 }; |
| 508 | 506 |
| 509 } } // namespace v8::internal | 507 } } // namespace v8::internal |
| 510 | 508 |
| 511 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 509 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
| OLD | NEW |