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_IA32_LITHIUM_CODEGEN_IA32_H_ | 5 #ifndef V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
6 #define V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 6 #define V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
7 | 7 |
8 #include "src/ia32/lithium-ia32.h" | 8 #include "src/ia32/lithium-ia32.h" |
9 | 9 |
10 #include "src/base/logging.h" | 10 #include "src/base/logging.h" |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 void EnsureSpaceForLazyDeopt(int space_needed) override; | 301 void EnsureSpaceForLazyDeopt(int space_needed) override; |
302 void DoLoadKeyedExternalArray(LLoadKeyed* instr); | 302 void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
303 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); | 303 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
304 void DoLoadKeyedFixedArray(LLoadKeyed* instr); | 304 void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
305 void DoStoreKeyedExternalArray(LStoreKeyed* instr); | 305 void DoStoreKeyedExternalArray(LStoreKeyed* instr); |
306 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); | 306 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); |
307 void DoStoreKeyedFixedArray(LStoreKeyed* instr); | 307 void DoStoreKeyedFixedArray(LStoreKeyed* instr); |
308 | 308 |
309 template <class T> | 309 template <class T> |
310 void EmitVectorLoadICRegisters(T* instr); | 310 void EmitVectorLoadICRegisters(T* instr); |
| 311 template <class T> |
| 312 void EmitVectorStoreICRegisters(T* instr); |
311 | 313 |
312 void EmitReturn(LReturn* instr, bool dynamic_frame_alignment); | 314 void EmitReturn(LReturn* instr, bool dynamic_frame_alignment); |
313 | 315 |
314 // Emits code for pushing either a tagged constant, a (non-double) | 316 // Emits code for pushing either a tagged constant, a (non-double) |
315 // register, or a stack slot operand. | 317 // register, or a stack slot operand. |
316 void EmitPushTaggedOperand(LOperand* operand); | 318 void EmitPushTaggedOperand(LOperand* operand); |
317 | 319 |
318 friend class LGapResolver; | 320 friend class LGapResolver; |
319 | 321 |
320 #ifdef _MSC_VER | 322 #ifdef _MSC_VER |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 Label entry_; | 402 Label entry_; |
401 Label exit_; | 403 Label exit_; |
402 Label* external_exit_; | 404 Label* external_exit_; |
403 Label done_; | 405 Label done_; |
404 int instruction_index_; | 406 int instruction_index_; |
405 }; | 407 }; |
406 | 408 |
407 } } // namespace v8::internal | 409 } } // namespace v8::internal |
408 | 410 |
409 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 411 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
OLD | NEW |