| 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 V(LoadFramePointer) \ | 350 V(LoadFramePointer) \ |
| 351 V(LoadParentFramePointer) \ | 351 V(LoadParentFramePointer) \ |
| 352 V(CheckedLoad) \ | 352 V(CheckedLoad) \ |
| 353 V(CheckedStore) \ | 353 V(CheckedStore) \ |
| 354 V(Int32PairAdd) \ | 354 V(Int32PairAdd) \ |
| 355 V(Int32PairSub) \ | 355 V(Int32PairSub) \ |
| 356 V(Int32PairMul) \ | 356 V(Int32PairMul) \ |
| 357 V(Word32PairShl) \ | 357 V(Word32PairShl) \ |
| 358 V(Word32PairShr) \ | 358 V(Word32PairShr) \ |
| 359 V(Word32PairSar) \ | 359 V(Word32PairSar) \ |
| 360 V(AtomicLoad) | 360 V(AtomicLoad) \ |
| 361 V(AtomicStore) |
| 361 | 362 |
| 362 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ | 363 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ |
| 363 V(CreateFloat32x4) \ | 364 V(CreateFloat32x4) \ |
| 364 V(Float32x4ReplaceLane) \ | 365 V(Float32x4ReplaceLane) \ |
| 365 V(Float32x4Abs) \ | 366 V(Float32x4Abs) \ |
| 366 V(Float32x4Neg) \ | 367 V(Float32x4Neg) \ |
| 367 V(Float32x4Sqrt) \ | 368 V(Float32x4Sqrt) \ |
| 368 V(Float32x4RecipApprox) \ | 369 V(Float32x4RecipApprox) \ |
| 369 V(Float32x4RecipSqrtApprox) \ | 370 V(Float32x4RecipSqrtApprox) \ |
| 370 V(Float32x4Add) \ | 371 V(Float32x4Add) \ |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 } | 621 } |
| 621 }; | 622 }; |
| 622 | 623 |
| 623 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 624 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 624 | 625 |
| 625 } // namespace compiler | 626 } // namespace compiler |
| 626 } // namespace internal | 627 } // namespace internal |
| 627 } // namespace v8 | 628 } // namespace v8 |
| 628 | 629 |
| 629 #endif // V8_COMPILER_OPCODES_H_ | 630 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |