OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_COMPILER_OPCODES_H_ | 5 #ifndef V8_COMPILER_OPCODES_H_ |
6 #define V8_COMPILER_OPCODES_H_ | 6 #define V8_COMPILER_OPCODES_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 // Opcodes for control operators. | 10 // Opcodes for control operators. |
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 V(Float64RoundTiesEven) \ | 433 V(Float64RoundTiesEven) \ |
434 V(Float64ExtractLowWord32) \ | 434 V(Float64ExtractLowWord32) \ |
435 V(Float64ExtractHighWord32) \ | 435 V(Float64ExtractHighWord32) \ |
436 V(Float64InsertLowWord32) \ | 436 V(Float64InsertLowWord32) \ |
437 V(Float64InsertHighWord32) \ | 437 V(Float64InsertHighWord32) \ |
438 V(LoadStackPointer) \ | 438 V(LoadStackPointer) \ |
439 V(LoadFramePointer) \ | 439 V(LoadFramePointer) \ |
440 V(LoadParentFramePointer) \ | 440 V(LoadParentFramePointer) \ |
441 V(CheckedLoad) \ | 441 V(CheckedLoad) \ |
442 V(CheckedStore) \ | 442 V(CheckedStore) \ |
| 443 V(UnalignedLoad) \ |
| 444 V(UnalignedStore) \ |
443 V(Int32PairAdd) \ | 445 V(Int32PairAdd) \ |
444 V(Int32PairSub) \ | 446 V(Int32PairSub) \ |
445 V(Int32PairMul) \ | 447 V(Int32PairMul) \ |
446 V(Word32PairShl) \ | 448 V(Word32PairShl) \ |
447 V(Word32PairShr) \ | 449 V(Word32PairShr) \ |
448 V(Word32PairSar) \ | 450 V(Word32PairSar) \ |
449 V(AtomicLoad) \ | 451 V(AtomicLoad) \ |
450 V(AtomicStore) | 452 V(AtomicStore) |
451 | 453 |
452 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ | 454 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
713 } | 715 } |
714 }; | 716 }; |
715 | 717 |
716 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 718 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
717 | 719 |
718 } // namespace compiler | 720 } // namespace compiler |
719 } // namespace internal | 721 } // namespace internal |
720 } // namespace v8 | 722 } // namespace v8 |
721 | 723 |
722 #endif // V8_COMPILER_OPCODES_H_ | 724 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |