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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 V(RoundUint32ToFloat32) \ | 316 V(RoundUint32ToFloat32) \ |
317 V(RoundUint64ToFloat32) \ | 317 V(RoundUint64ToFloat32) \ |
318 V(RoundUint64ToFloat64) \ | 318 V(RoundUint64ToFloat64) \ |
319 V(BitcastFloat32ToInt32) \ | 319 V(BitcastFloat32ToInt32) \ |
320 V(BitcastFloat64ToInt64) \ | 320 V(BitcastFloat64ToInt64) \ |
321 V(BitcastInt32ToFloat32) \ | 321 V(BitcastInt32ToFloat32) \ |
322 V(BitcastInt64ToFloat64) \ | 322 V(BitcastInt64ToFloat64) \ |
323 V(Float32Add) \ | 323 V(Float32Add) \ |
324 V(Float32Sub) \ | 324 V(Float32Sub) \ |
325 V(Float32SubPreserveNan) \ | 325 V(Float32SubPreserveNan) \ |
| 326 V(Float32Neg) \ |
326 V(Float32Mul) \ | 327 V(Float32Mul) \ |
327 V(Float32Div) \ | 328 V(Float32Div) \ |
328 V(Float32Max) \ | 329 V(Float32Max) \ |
329 V(Float32Min) \ | 330 V(Float32Min) \ |
330 V(Float32Abs) \ | 331 V(Float32Abs) \ |
331 V(Float32Sqrt) \ | 332 V(Float32Sqrt) \ |
332 V(Float32RoundDown) \ | 333 V(Float32RoundDown) \ |
333 V(Float64Add) \ | 334 V(Float64Add) \ |
334 V(Float64Sub) \ | 335 V(Float64Sub) \ |
335 V(Float64SubPreserveNan) \ | 336 V(Float64SubPreserveNan) \ |
| 337 V(Float64Neg) \ |
336 V(Float64Mul) \ | 338 V(Float64Mul) \ |
337 V(Float64Div) \ | 339 V(Float64Div) \ |
338 V(Float64Mod) \ | 340 V(Float64Mod) \ |
339 V(Float64Max) \ | 341 V(Float64Max) \ |
340 V(Float64Min) \ | 342 V(Float64Min) \ |
341 V(Float64Abs) \ | 343 V(Float64Abs) \ |
342 V(Float64Sqrt) \ | 344 V(Float64Sqrt) \ |
343 V(Float64RoundDown) \ | 345 V(Float64RoundDown) \ |
344 V(Float32RoundUp) \ | 346 V(Float32RoundUp) \ |
345 V(Float64RoundUp) \ | 347 V(Float64RoundUp) \ |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
630 } | 632 } |
631 }; | 633 }; |
632 | 634 |
633 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 635 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
634 | 636 |
635 } // namespace compiler | 637 } // namespace compiler |
636 } // namespace internal | 638 } // namespace internal |
637 } // namespace v8 | 639 } // namespace v8 |
638 | 640 |
639 #endif // V8_COMPILER_OPCODES_H_ | 641 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |