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 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 V(BitcastInt32ToFloat32) \ | 427 V(BitcastInt32ToFloat32) \ |
428 V(BitcastInt64ToFloat64) \ | 428 V(BitcastInt64ToFloat64) \ |
429 V(Float32Add) \ | 429 V(Float32Add) \ |
430 V(Float32Sub) \ | 430 V(Float32Sub) \ |
431 V(Float32Neg) \ | 431 V(Float32Neg) \ |
432 V(Float32Mul) \ | 432 V(Float32Mul) \ |
433 V(Float32Div) \ | 433 V(Float32Div) \ |
434 V(Float32Abs) \ | 434 V(Float32Abs) \ |
435 V(Float32Sqrt) \ | 435 V(Float32Sqrt) \ |
436 V(Float32RoundDown) \ | 436 V(Float32RoundDown) \ |
| 437 V(Float32Max) \ |
| 438 V(Float32Min) \ |
437 V(Float64Add) \ | 439 V(Float64Add) \ |
438 V(Float64Sub) \ | 440 V(Float64Sub) \ |
439 V(Float64Neg) \ | 441 V(Float64Neg) \ |
440 V(Float64Mul) \ | 442 V(Float64Mul) \ |
441 V(Float64Div) \ | 443 V(Float64Div) \ |
442 V(Float64Mod) \ | 444 V(Float64Mod) \ |
443 V(Float64Max) \ | 445 V(Float64Max) \ |
444 V(Float64Min) \ | 446 V(Float64Min) \ |
445 V(Float64Abs) \ | 447 V(Float64Abs) \ |
446 V(Float64Acos) \ | 448 V(Float64Acos) \ |
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
758 } | 760 } |
759 }; | 761 }; |
760 | 762 |
761 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 763 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
762 | 764 |
763 } // namespace compiler | 765 } // namespace compiler |
764 } // namespace internal | 766 } // namespace internal |
765 } // namespace v8 | 767 } // namespace v8 |
766 | 768 |
767 #endif // V8_COMPILER_OPCODES_H_ | 769 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |