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_IA32_LITHIUM_CODEGEN_IA32_H_ | 5 #ifndef V8_CRANKSHAFT_IA32_LITHIUM_CODEGEN_IA32_H_ |
6 #define V8_CRANKSHAFT_IA32_LITHIUM_CODEGEN_IA32_H_ | 6 #define V8_CRANKSHAFT_IA32_LITHIUM_CODEGEN_IA32_H_ |
7 | 7 |
8 #include "src/ast/scopes.h" | 8 #include "src/ast/scopes.h" |
9 #include "src/base/logging.h" | 9 #include "src/base/logging.h" |
10 #include "src/crankshaft/ia32/lithium-gap-resolver-ia32.h" | 10 #include "src/crankshaft/ia32/lithium-gap-resolver-ia32.h" |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 void EnsureSpaceForLazyDeopt(int space_needed) override; | 287 void EnsureSpaceForLazyDeopt(int space_needed) override; |
288 void DoLoadKeyedExternalArray(LLoadKeyed* instr); | 288 void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
289 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); | 289 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
290 void DoLoadKeyedFixedArray(LLoadKeyed* instr); | 290 void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
291 void DoStoreKeyedExternalArray(LStoreKeyed* instr); | 291 void DoStoreKeyedExternalArray(LStoreKeyed* instr); |
292 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); | 292 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); |
293 void DoStoreKeyedFixedArray(LStoreKeyed* instr); | 293 void DoStoreKeyedFixedArray(LStoreKeyed* instr); |
294 | 294 |
295 template <class T> | 295 template <class T> |
296 void EmitVectorLoadICRegisters(T* instr); | 296 void EmitVectorLoadICRegisters(T* instr); |
297 template <class T> | |
298 void EmitVectorStoreICRegisters(T* instr); | |
299 | 297 |
300 void EmitReturn(LReturn* instr); | 298 void EmitReturn(LReturn* instr); |
301 | 299 |
302 // Emits code for pushing either a tagged constant, a (non-double) | 300 // Emits code for pushing either a tagged constant, a (non-double) |
303 // register, or a stack slot operand. | 301 // register, or a stack slot operand. |
304 void EmitPushTaggedOperand(LOperand* operand); | 302 void EmitPushTaggedOperand(LOperand* operand); |
305 | 303 |
306 friend class LGapResolver; | 304 friend class LGapResolver; |
307 | 305 |
308 #ifdef _MSC_VER | 306 #ifdef _MSC_VER |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 Label exit_; | 381 Label exit_; |
384 Label* external_exit_; | 382 Label* external_exit_; |
385 Label done_; | 383 Label done_; |
386 int instruction_index_; | 384 int instruction_index_; |
387 }; | 385 }; |
388 | 386 |
389 } // namespace internal | 387 } // namespace internal |
390 } // namespace v8 | 388 } // namespace v8 |
391 | 389 |
392 #endif // V8_CRANKSHAFT_IA32_LITHIUM_CODEGEN_IA32_H_ | 390 #endif // V8_CRANKSHAFT_IA32_LITHIUM_CODEGEN_IA32_H_ |
OLD | NEW |