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_ARM_LITHIUM_CODEGEN_ARM_H_ | 5 #ifndef V8_CRANKSHAFT_ARM_LITHIUM_CODEGEN_ARM_H_ |
6 #define V8_CRANKSHAFT_ARM_LITHIUM_CODEGEN_ARM_H_ | 6 #define V8_CRANKSHAFT_ARM_LITHIUM_CODEGEN_ARM_H_ |
7 | 7 |
8 #include "src/ast/scopes.h" | 8 #include "src/ast/scopes.h" |
9 #include "src/crankshaft/arm/lithium-arm.h" | 9 #include "src/crankshaft/arm/lithium-arm.h" |
10 #include "src/crankshaft/arm/lithium-gap-resolver-arm.h" | 10 #include "src/crankshaft/arm/lithium-gap-resolver-arm.h" |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 void EnsureSpaceForLazyDeopt(int space_needed) override; | 304 void EnsureSpaceForLazyDeopt(int space_needed) override; |
305 void DoLoadKeyedExternalArray(LLoadKeyed* instr); | 305 void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
306 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); | 306 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
307 void DoLoadKeyedFixedArray(LLoadKeyed* instr); | 307 void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
308 void DoStoreKeyedExternalArray(LStoreKeyed* instr); | 308 void DoStoreKeyedExternalArray(LStoreKeyed* instr); |
309 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); | 309 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); |
310 void DoStoreKeyedFixedArray(LStoreKeyed* instr); | 310 void DoStoreKeyedFixedArray(LStoreKeyed* instr); |
311 | 311 |
312 template <class T> | 312 template <class T> |
313 void EmitVectorLoadICRegisters(T* instr); | 313 void EmitVectorLoadICRegisters(T* instr); |
314 template <class T> | |
315 void EmitVectorStoreICRegisters(T* instr); | |
316 | 314 |
317 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; | 315 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; |
318 Scope* const scope_; | 316 Scope* const scope_; |
319 ZoneList<LDeferredCode*> deferred_; | 317 ZoneList<LDeferredCode*> deferred_; |
320 bool frame_is_built_; | 318 bool frame_is_built_; |
321 | 319 |
322 // Builder that keeps track of safepoints in the code. The table | 320 // Builder that keeps track of safepoints in the code. The table |
323 // itself is emitted at the end of the generated code. | 321 // itself is emitted at the end of the generated code. |
324 SafepointTableBuilder safepoints_; | 322 SafepointTableBuilder safepoints_; |
325 | 323 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 Label entry_; | 380 Label entry_; |
383 Label exit_; | 381 Label exit_; |
384 Label* external_exit_; | 382 Label* external_exit_; |
385 int instruction_index_; | 383 int instruction_index_; |
386 }; | 384 }; |
387 | 385 |
388 } // namespace internal | 386 } // namespace internal |
389 } // namespace v8 | 387 } // namespace v8 |
390 | 388 |
391 #endif // V8_CRANKSHAFT_ARM_LITHIUM_CODEGEN_ARM_H_ | 389 #endif // V8_CRANKSHAFT_ARM_LITHIUM_CODEGEN_ARM_H_ |
OLD | NEW |