| 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 #include "src/globals.h" | 10 #include "src/globals.h" |
| (...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 V(Float32x4RecipApprox) \ | 564 V(Float32x4RecipApprox) \ |
| 565 V(Float32x4RecipSqrtApprox) \ | 565 V(Float32x4RecipSqrtApprox) \ |
| 566 V(Float32x4Add) \ | 566 V(Float32x4Add) \ |
| 567 V(Float32x4Sub) \ | 567 V(Float32x4Sub) \ |
| 568 V(Float32x4Mul) \ | 568 V(Float32x4Mul) \ |
| 569 V(Float32x4Div) \ | 569 V(Float32x4Div) \ |
| 570 V(Float32x4Min) \ | 570 V(Float32x4Min) \ |
| 571 V(Float32x4Max) \ | 571 V(Float32x4Max) \ |
| 572 V(Float32x4MinNum) \ | 572 V(Float32x4MinNum) \ |
| 573 V(Float32x4MaxNum) \ | 573 V(Float32x4MaxNum) \ |
| 574 V(Float32x4RecipRefine) \ |
| 575 V(Float32x4RecipSqrtRefine) \ |
| 574 V(Float32x4Equal) \ | 576 V(Float32x4Equal) \ |
| 575 V(Float32x4NotEqual) \ | 577 V(Float32x4NotEqual) \ |
| 576 V(Float32x4LessThan) \ | 578 V(Float32x4LessThan) \ |
| 577 V(Float32x4LessThanOrEqual) \ | 579 V(Float32x4LessThanOrEqual) \ |
| 578 V(Float32x4GreaterThan) \ | 580 V(Float32x4GreaterThan) \ |
| 579 V(Float32x4GreaterThanOrEqual) \ | 581 V(Float32x4GreaterThanOrEqual) \ |
| 580 V(Float32x4FromInt32x4) \ | 582 V(Float32x4FromInt32x4) \ |
| 581 V(Float32x4FromUint32x4) \ | 583 V(Float32x4FromUint32x4) \ |
| 582 V(Int32x4Splat) \ | 584 V(Int32x4Splat) \ |
| 583 V(Int32x4ExtractLane) \ | 585 V(Int32x4ExtractLane) \ |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 790 } | 792 } |
| 791 }; | 793 }; |
| 792 | 794 |
| 793 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 795 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 794 | 796 |
| 795 } // namespace compiler | 797 } // namespace compiler |
| 796 } // namespace internal | 798 } // namespace internal |
| 797 } // namespace v8 | 799 } // namespace v8 |
| 798 | 800 |
| 799 #endif // V8_COMPILER_OPCODES_H_ | 801 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |