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_X87_LITHIUM_CODEGEN_X87_H_ | 5 #ifndef V8_X87_LITHIUM_CODEGEN_X87_H_ |
6 #define V8_X87_LITHIUM_CODEGEN_X87_H_ | 6 #define V8_X87_LITHIUM_CODEGEN_X87_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include "src/x87/lithium-x87.h" | 9 #include "src/x87/lithium-x87.h" |
10 | 10 |
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 void EnsureSpaceForLazyDeopt(int space_needed) override; | 329 void EnsureSpaceForLazyDeopt(int space_needed) override; |
330 void DoLoadKeyedExternalArray(LLoadKeyed* instr); | 330 void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
331 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); | 331 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
332 void DoLoadKeyedFixedArray(LLoadKeyed* instr); | 332 void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
333 void DoStoreKeyedExternalArray(LStoreKeyed* instr); | 333 void DoStoreKeyedExternalArray(LStoreKeyed* instr); |
334 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); | 334 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); |
335 void DoStoreKeyedFixedArray(LStoreKeyed* instr); | 335 void DoStoreKeyedFixedArray(LStoreKeyed* instr); |
336 | 336 |
337 template <class T> | 337 template <class T> |
338 void EmitVectorLoadICRegisters(T* instr); | 338 void EmitVectorLoadICRegisters(T* instr); |
| 339 template <class T> |
| 340 void EmitVectorStoreICRegisters(T* instr); |
339 | 341 |
340 void EmitReturn(LReturn* instr, bool dynamic_frame_alignment); | 342 void EmitReturn(LReturn* instr, bool dynamic_frame_alignment); |
341 | 343 |
342 // Emits code for pushing either a tagged constant, a (non-double) | 344 // Emits code for pushing either a tagged constant, a (non-double) |
343 // register, or a stack slot operand. | 345 // register, or a stack slot operand. |
344 void EmitPushTaggedOperand(LOperand* operand); | 346 void EmitPushTaggedOperand(LOperand* operand); |
345 | 347 |
346 void X87Fld(Operand src, X87OperandType opts); | 348 void X87Fld(Operand src, X87OperandType opts); |
347 | 349 |
348 void EmitFlushX87ForDeopt(); | 350 void EmitFlushX87ForDeopt(); |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 Label exit_; | 503 Label exit_; |
502 Label* external_exit_; | 504 Label* external_exit_; |
503 Label done_; | 505 Label done_; |
504 int instruction_index_; | 506 int instruction_index_; |
505 LCodeGen::X87Stack x87_stack_; | 507 LCodeGen::X87Stack x87_stack_; |
506 }; | 508 }; |
507 | 509 |
508 } } // namespace v8::internal | 510 } } // namespace v8::internal |
509 | 511 |
510 #endif // V8_X87_LITHIUM_CODEGEN_X87_H_ | 512 #endif // V8_X87_LITHIUM_CODEGEN_X87_H_ |
OLD | NEW |