| 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/mips64/lithium-gap-resolver-mips64.h" | 10 #include "src/mips64/lithium-gap-resolver-mips64.h" |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 | 358 |
| 359 | 359 |
| 360 void EnsureSpaceForLazyDeopt(int space_needed) V8_OVERRIDE; | 360 void EnsureSpaceForLazyDeopt(int space_needed) V8_OVERRIDE; |
| 361 void DoLoadKeyedExternalArray(LLoadKeyed* instr); | 361 void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
| 362 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); | 362 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
| 363 void DoLoadKeyedFixedArray(LLoadKeyed* instr); | 363 void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
| 364 void DoStoreKeyedExternalArray(LStoreKeyed* instr); | 364 void DoStoreKeyedExternalArray(LStoreKeyed* instr); |
| 365 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); | 365 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); |
| 366 void DoStoreKeyedFixedArray(LStoreKeyed* instr); | 366 void DoStoreKeyedFixedArray(LStoreKeyed* instr); |
| 367 | 367 |
| 368 template <class T> |
| 369 void EmitVectorLoadICRegisters(T* instr); |
| 370 |
| 368 ZoneList<LEnvironment*> deoptimizations_; | 371 ZoneList<LEnvironment*> deoptimizations_; |
| 369 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_; | 372 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_; |
| 370 ZoneList<Handle<Object> > deoptimization_literals_; | 373 ZoneList<Handle<Object> > deoptimization_literals_; |
| 371 int inlined_function_count_; | 374 int inlined_function_count_; |
| 372 Scope* const scope_; | 375 Scope* const scope_; |
| 373 TranslationBuffer translations_; | 376 TranslationBuffer translations_; |
| 374 ZoneList<LDeferredCode*> deferred_; | 377 ZoneList<LDeferredCode*> deferred_; |
| 375 int osr_pc_offset_; | 378 int osr_pc_offset_; |
| 376 bool frame_is_built_; | 379 bool frame_is_built_; |
| 377 | 380 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 LCodeGen* codegen_; | 445 LCodeGen* codegen_; |
| 443 Label entry_; | 446 Label entry_; |
| 444 Label exit_; | 447 Label exit_; |
| 445 Label* external_exit_; | 448 Label* external_exit_; |
| 446 int instruction_index_; | 449 int instruction_index_; |
| 447 }; | 450 }; |
| 448 | 451 |
| 449 } } // namespace v8::internal | 452 } } // namespace v8::internal |
| 450 | 453 |
| 451 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ | 454 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ |
| OLD | NEW |