| 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 V(RoundInt64ToFloat64) \ | 310 V(RoundInt64ToFloat64) \ |
| 311 V(RoundUint32ToFloat32) \ | 311 V(RoundUint32ToFloat32) \ |
| 312 V(RoundUint64ToFloat32) \ | 312 V(RoundUint64ToFloat32) \ |
| 313 V(RoundUint64ToFloat64) \ | 313 V(RoundUint64ToFloat64) \ |
| 314 V(BitcastFloat32ToInt32) \ | 314 V(BitcastFloat32ToInt32) \ |
| 315 V(BitcastFloat64ToInt64) \ | 315 V(BitcastFloat64ToInt64) \ |
| 316 V(BitcastInt32ToFloat32) \ | 316 V(BitcastInt32ToFloat32) \ |
| 317 V(BitcastInt64ToFloat64) \ | 317 V(BitcastInt64ToFloat64) \ |
| 318 V(Float32Add) \ | 318 V(Float32Add) \ |
| 319 V(Float32Sub) \ | 319 V(Float32Sub) \ |
| 320 V(Float32SubPreserveNan) \ |
| 320 V(Float32Mul) \ | 321 V(Float32Mul) \ |
| 321 V(Float32Div) \ | 322 V(Float32Div) \ |
| 322 V(Float32Max) \ | 323 V(Float32Max) \ |
| 323 V(Float32Min) \ | 324 V(Float32Min) \ |
| 324 V(Float32Abs) \ | 325 V(Float32Abs) \ |
| 325 V(Float32Sqrt) \ | 326 V(Float32Sqrt) \ |
| 326 V(Float32RoundDown) \ | 327 V(Float32RoundDown) \ |
| 327 V(Float64Add) \ | 328 V(Float64Add) \ |
| 328 V(Float64Sub) \ | 329 V(Float64Sub) \ |
| 330 V(Float64SubPreserveNan) \ |
| 329 V(Float64Mul) \ | 331 V(Float64Mul) \ |
| 330 V(Float64Div) \ | 332 V(Float64Div) \ |
| 331 V(Float64Mod) \ | 333 V(Float64Mod) \ |
| 332 V(Float64Max) \ | 334 V(Float64Max) \ |
| 333 V(Float64Min) \ | 335 V(Float64Min) \ |
| 334 V(Float64Abs) \ | 336 V(Float64Abs) \ |
| 335 V(Float64Sqrt) \ | 337 V(Float64Sqrt) \ |
| 336 V(Float64RoundDown) \ | 338 V(Float64RoundDown) \ |
| 337 V(Float32RoundUp) \ | 339 V(Float32RoundUp) \ |
| 338 V(Float64RoundUp) \ | 340 V(Float64RoundUp) \ |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 } | 622 } |
| 621 }; | 623 }; |
| 622 | 624 |
| 623 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 625 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 624 | 626 |
| 625 } // namespace compiler | 627 } // namespace compiler |
| 626 } // namespace internal | 628 } // namespace internal |
| 627 } // namespace v8 | 629 } // namespace v8 |
| 628 | 630 |
| 629 #endif // V8_COMPILER_OPCODES_H_ | 631 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |