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