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_CRANKSHAFT_MIPS_LITHIUM_CODEGEN_MIPS_H_ | 5 #ifndef V8_CRANKSHAFT_MIPS_LITHIUM_CODEGEN_MIPS_H_ |
6 #define V8_CRANKSHAFT_MIPS_LITHIUM_CODEGEN_MIPS_H_ | 6 #define V8_CRANKSHAFT_MIPS_LITHIUM_CODEGEN_MIPS_H_ |
7 | 7 |
8 #include "src/ast/scopes.h" | 8 #include "src/ast/scopes.h" |
9 #include "src/crankshaft/lithium-codegen.h" | 9 #include "src/crankshaft/lithium-codegen.h" |
10 #include "src/crankshaft/mips/lithium-gap-resolver-mips.h" | 10 #include "src/crankshaft/mips/lithium-gap-resolver-mips.h" |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 void EnsureSpaceForLazyDeopt(int space_needed) override; | 333 void EnsureSpaceForLazyDeopt(int space_needed) override; |
334 void DoLoadKeyedExternalArray(LLoadKeyed* instr); | 334 void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
335 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); | 335 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
336 void DoLoadKeyedFixedArray(LLoadKeyed* instr); | 336 void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
337 void DoStoreKeyedExternalArray(LStoreKeyed* instr); | 337 void DoStoreKeyedExternalArray(LStoreKeyed* instr); |
338 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); | 338 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); |
339 void DoStoreKeyedFixedArray(LStoreKeyed* instr); | 339 void DoStoreKeyedFixedArray(LStoreKeyed* instr); |
340 | 340 |
341 template <class T> | 341 template <class T> |
342 void EmitVectorLoadICRegisters(T* instr); | 342 void EmitVectorLoadICRegisters(T* instr); |
343 template <class T> | |
344 void EmitVectorStoreICRegisters(T* instr); | |
345 | 343 |
346 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; | 344 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; |
347 Scope* const scope_; | 345 Scope* const scope_; |
348 ZoneList<LDeferredCode*> deferred_; | 346 ZoneList<LDeferredCode*> deferred_; |
349 bool frame_is_built_; | 347 bool frame_is_built_; |
350 | 348 |
351 // Builder that keeps track of safepoints in the code. The table | 349 // Builder that keeps track of safepoints in the code. The table |
352 // itself is emitted at the end of the generated code. | 350 // itself is emitted at the end of the generated code. |
353 SafepointTableBuilder safepoints_; | 351 SafepointTableBuilder safepoints_; |
354 | 352 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 Label entry_; | 414 Label entry_; |
417 Label exit_; | 415 Label exit_; |
418 Label* external_exit_; | 416 Label* external_exit_; |
419 int instruction_index_; | 417 int instruction_index_; |
420 }; | 418 }; |
421 | 419 |
422 } // namespace internal | 420 } // namespace internal |
423 } // namespace v8 | 421 } // namespace v8 |
424 | 422 |
425 #endif // V8_CRANKSHAFT_MIPS_LITHIUM_CODEGEN_MIPS_H_ | 423 #endif // V8_CRANKSHAFT_MIPS_LITHIUM_CODEGEN_MIPS_H_ |
OLD | NEW |