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