| 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_X87_LITHIUM_CODEGEN_X87_H_ | 5 #ifndef V8_CRANKSHAFT_X87_LITHIUM_CODEGEN_X87_H_ |
| 6 #define V8_CRANKSHAFT_X87_LITHIUM_CODEGEN_X87_H_ | 6 #define V8_CRANKSHAFT_X87_LITHIUM_CODEGEN_X87_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "src/ast/scopes.h" | 10 #include "src/ast/scopes.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); | |
| 328 | 326 |
| 329 void EmitReturn(LReturn* instr); | 327 void EmitReturn(LReturn* instr); |
| 330 | 328 |
| 331 // Emits code for pushing either a tagged constant, a (non-double) | 329 // Emits code for pushing either a tagged constant, a (non-double) |
| 332 // register, or a stack slot operand. | 330 // register, or a stack slot operand. |
| 333 void EmitPushTaggedOperand(LOperand* operand); | 331 void EmitPushTaggedOperand(LOperand* operand); |
| 334 | 332 |
| 335 void X87Fld(Operand src, X87OperandType opts); | 333 void X87Fld(Operand src, X87OperandType opts); |
| 336 | 334 |
| 337 void EmitFlushX87ForDeopt(); | 335 void EmitFlushX87ForDeopt(); |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 Label* external_exit_; | 483 Label* external_exit_; |
| 486 Label done_; | 484 Label done_; |
| 487 int instruction_index_; | 485 int instruction_index_; |
| 488 LCodeGen::X87Stack x87_stack_; | 486 LCodeGen::X87Stack x87_stack_; |
| 489 }; | 487 }; |
| 490 | 488 |
| 491 } // namespace internal | 489 } // namespace internal |
| 492 } // namespace v8 | 490 } // namespace v8 |
| 493 | 491 |
| 494 #endif // V8_CRANKSHAFT_X87_LITHIUM_CODEGEN_X87_H_ | 492 #endif // V8_CRANKSHAFT_X87_LITHIUM_CODEGEN_X87_H_ |
| OLD | NEW |