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