| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ | 5 #ifndef V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ |
| 6 #define V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ | 6 #define V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ |
| 7 | 7 |
| 8 #include "src/deoptimizer.h" | 8 #include "src/deoptimizer.h" |
| 9 #include "src/lithium-codegen.h" | 9 #include "src/lithium-codegen.h" |
| 10 #include "src/mips/lithium-gap-resolver-mips.h" | 10 #include "src/mips/lithium-gap-resolver-mips.h" |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 | 357 |
| 358 | 358 |
| 359 void EnsureSpaceForLazyDeopt(int space_needed) V8_OVERRIDE; | 359 void EnsureSpaceForLazyDeopt(int space_needed) V8_OVERRIDE; |
| 360 void DoLoadKeyedExternalArray(LLoadKeyed* instr); | 360 void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
| 361 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); | 361 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
| 362 void DoLoadKeyedFixedArray(LLoadKeyed* instr); | 362 void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
| 363 void DoStoreKeyedExternalArray(LStoreKeyed* instr); | 363 void DoStoreKeyedExternalArray(LStoreKeyed* instr); |
| 364 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); | 364 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); |
| 365 void DoStoreKeyedFixedArray(LStoreKeyed* instr); | 365 void DoStoreKeyedFixedArray(LStoreKeyed* instr); |
| 366 | 366 |
| 367 template <class T> |
| 368 void EmitVectorLoadICRegisters(T* instr); |
| 369 |
| 367 ZoneList<LEnvironment*> deoptimizations_; | 370 ZoneList<LEnvironment*> deoptimizations_; |
| 368 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_; | 371 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_; |
| 369 ZoneList<Handle<Object> > deoptimization_literals_; | 372 ZoneList<Handle<Object> > deoptimization_literals_; |
| 370 int inlined_function_count_; | 373 int inlined_function_count_; |
| 371 Scope* const scope_; | 374 Scope* const scope_; |
| 372 TranslationBuffer translations_; | 375 TranslationBuffer translations_; |
| 373 ZoneList<LDeferredCode*> deferred_; | 376 ZoneList<LDeferredCode*> deferred_; |
| 374 int osr_pc_offset_; | 377 int osr_pc_offset_; |
| 375 bool frame_is_built_; | 378 bool frame_is_built_; |
| 376 | 379 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 LCodeGen* codegen_; | 444 LCodeGen* codegen_; |
| 442 Label entry_; | 445 Label entry_; |
| 443 Label exit_; | 446 Label exit_; |
| 444 Label* external_exit_; | 447 Label* external_exit_; |
| 445 int instruction_index_; | 448 int instruction_index_; |
| 446 }; | 449 }; |
| 447 | 450 |
| 448 } } // namespace v8::internal | 451 } } // namespace v8::internal |
| 449 | 452 |
| 450 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ | 453 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ |
| OLD | NEW |