| 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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 void EnsureSpaceForLazyDeopt(int space_needed) override; | 347 void EnsureSpaceForLazyDeopt(int space_needed) override; |
| 348 void DoLoadKeyedExternalArray(LLoadKeyed* instr); | 348 void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
| 349 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); | 349 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
| 350 void DoLoadKeyedFixedArray(LLoadKeyed* instr); | 350 void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
| 351 void DoStoreKeyedExternalArray(LStoreKeyed* instr); | 351 void DoStoreKeyedExternalArray(LStoreKeyed* instr); |
| 352 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); | 352 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); |
| 353 void DoStoreKeyedFixedArray(LStoreKeyed* instr); | 353 void DoStoreKeyedFixedArray(LStoreKeyed* instr); |
| 354 | 354 |
| 355 template <class T> | 355 template <class T> |
| 356 void EmitVectorLoadICRegisters(T* instr); | 356 void EmitVectorLoadICRegisters(T* instr); |
| 357 template <class T> |
| 358 void EmitVectorStoreICRegisters(T* instr); |
| 357 | 359 |
| 358 ZoneList<LEnvironment*> deoptimizations_; | 360 ZoneList<LEnvironment*> deoptimizations_; |
| 359 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; | 361 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; |
| 360 int inlined_function_count_; | 362 int inlined_function_count_; |
| 361 Scope* const scope_; | 363 Scope* const scope_; |
| 362 TranslationBuffer translations_; | 364 TranslationBuffer translations_; |
| 363 ZoneList<LDeferredCode*> deferred_; | 365 ZoneList<LDeferredCode*> deferred_; |
| 364 int osr_pc_offset_; | 366 int osr_pc_offset_; |
| 365 bool frame_is_built_; | 367 bool frame_is_built_; |
| 366 | 368 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 LCodeGen* codegen_; | 433 LCodeGen* codegen_; |
| 432 Label entry_; | 434 Label entry_; |
| 433 Label exit_; | 435 Label exit_; |
| 434 Label* external_exit_; | 436 Label* external_exit_; |
| 435 int instruction_index_; | 437 int instruction_index_; |
| 436 }; | 438 }; |
| 437 | 439 |
| 438 } } // namespace v8::internal | 440 } } // namespace v8::internal |
| 439 | 441 |
| 440 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ | 442 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ |
| OLD | NEW |