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_ARM_LITHIUM_CODEGEN_ARM_H_ | 5 #ifndef V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
6 #define V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 6 #define V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
7 | 7 |
8 #include "src/arm/lithium-arm.h" | 8 #include "src/arm/lithium-arm.h" |
9 | 9 |
10 #include "src/arm/lithium-gap-resolver-arm.h" | 10 #include "src/arm/lithium-gap-resolver-arm.h" |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 void EnsureSpaceForLazyDeopt(int space_needed) override; | 316 void EnsureSpaceForLazyDeopt(int space_needed) override; |
317 void DoLoadKeyedExternalArray(LLoadKeyed* instr); | 317 void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
318 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); | 318 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
319 void DoLoadKeyedFixedArray(LLoadKeyed* instr); | 319 void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
320 void DoStoreKeyedExternalArray(LStoreKeyed* instr); | 320 void DoStoreKeyedExternalArray(LStoreKeyed* instr); |
321 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); | 321 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); |
322 void DoStoreKeyedFixedArray(LStoreKeyed* instr); | 322 void DoStoreKeyedFixedArray(LStoreKeyed* instr); |
323 | 323 |
324 template <class T> | 324 template <class T> |
325 void EmitVectorLoadICRegisters(T* instr); | 325 void EmitVectorLoadICRegisters(T* instr); |
| 326 template <class T> |
| 327 void EmitVectorStoreICRegisters(T* instr); |
326 | 328 |
327 ZoneList<LEnvironment*> deoptimizations_; | 329 ZoneList<LEnvironment*> deoptimizations_; |
328 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; | 330 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; |
329 int inlined_function_count_; | 331 int inlined_function_count_; |
330 Scope* const scope_; | 332 Scope* const scope_; |
331 TranslationBuffer translations_; | 333 TranslationBuffer translations_; |
332 ZoneList<LDeferredCode*> deferred_; | 334 ZoneList<LDeferredCode*> deferred_; |
333 int osr_pc_offset_; | 335 int osr_pc_offset_; |
334 bool frame_is_built_; | 336 bool frame_is_built_; |
335 | 337 |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 LCodeGen* codegen_; | 397 LCodeGen* codegen_; |
396 Label entry_; | 398 Label entry_; |
397 Label exit_; | 399 Label exit_; |
398 Label* external_exit_; | 400 Label* external_exit_; |
399 int instruction_index_; | 401 int instruction_index_; |
400 }; | 402 }; |
401 | 403 |
402 } } // namespace v8::internal | 404 } } // namespace v8::internal |
403 | 405 |
404 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 406 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
OLD | NEW |