| 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 V(Float64RoundTiesEven) \ | 442 V(Float64RoundTiesEven) \ |
| 443 V(Float64ExtractLowWord32) \ | 443 V(Float64ExtractLowWord32) \ |
| 444 V(Float64ExtractHighWord32) \ | 444 V(Float64ExtractHighWord32) \ |
| 445 V(Float64InsertLowWord32) \ | 445 V(Float64InsertLowWord32) \ |
| 446 V(Float64InsertHighWord32) \ | 446 V(Float64InsertHighWord32) \ |
| 447 V(LoadStackPointer) \ | 447 V(LoadStackPointer) \ |
| 448 V(LoadFramePointer) \ | 448 V(LoadFramePointer) \ |
| 449 V(LoadParentFramePointer) \ | 449 V(LoadParentFramePointer) \ |
| 450 V(CheckedLoad) \ | 450 V(CheckedLoad) \ |
| 451 V(CheckedStore) \ | 451 V(CheckedStore) \ |
| 452 V(UnalignedLoad) \ |
| 453 V(UnalignedStore) \ |
| 452 V(Int32PairAdd) \ | 454 V(Int32PairAdd) \ |
| 453 V(Int32PairSub) \ | 455 V(Int32PairSub) \ |
| 454 V(Int32PairMul) \ | 456 V(Int32PairMul) \ |
| 455 V(Word32PairShl) \ | 457 V(Word32PairShl) \ |
| 456 V(Word32PairShr) \ | 458 V(Word32PairShr) \ |
| 457 V(Word32PairSar) \ | 459 V(Word32PairSar) \ |
| 458 V(AtomicLoad) \ | 460 V(AtomicLoad) \ |
| 459 V(AtomicStore) | 461 V(AtomicStore) |
| 460 | 462 |
| 461 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ | 463 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 } | 724 } |
| 723 }; | 725 }; |
| 724 | 726 |
| 725 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 727 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 726 | 728 |
| 727 } // namespace compiler | 729 } // namespace compiler |
| 728 } // namespace internal | 730 } // namespace internal |
| 729 } // namespace v8 | 731 } // namespace v8 |
| 730 | 732 |
| 731 #endif // V8_COMPILER_OPCODES_H_ | 733 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |