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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 V(NumberBitwiseOr) \ | 190 V(NumberBitwiseOr) \ |
191 V(NumberBitwiseXor) \ | 191 V(NumberBitwiseXor) \ |
192 V(NumberBitwiseAnd) \ | 192 V(NumberBitwiseAnd) \ |
193 V(NumberShiftLeft) \ | 193 V(NumberShiftLeft) \ |
194 V(NumberShiftRight) \ | 194 V(NumberShiftRight) \ |
195 V(NumberShiftRightLogical) \ | 195 V(NumberShiftRightLogical) \ |
196 V(NumberImul) \ | 196 V(NumberImul) \ |
197 V(NumberClz32) \ | 197 V(NumberClz32) \ |
198 V(NumberCeil) \ | 198 V(NumberCeil) \ |
199 V(NumberFloor) \ | 199 V(NumberFloor) \ |
| 200 V(NumberFround) \ |
200 V(NumberAtan) \ | 201 V(NumberAtan) \ |
201 V(NumberAtan2) \ | 202 V(NumberAtan2) \ |
202 V(NumberLog) \ | 203 V(NumberLog) \ |
203 V(NumberLog1p) \ | 204 V(NumberLog1p) \ |
204 V(NumberRound) \ | 205 V(NumberRound) \ |
| 206 V(NumberSqrt) \ |
205 V(NumberTrunc) \ | 207 V(NumberTrunc) \ |
206 V(NumberToInt32) \ | 208 V(NumberToInt32) \ |
207 V(NumberToUint32) \ | 209 V(NumberToUint32) \ |
208 V(NumberIsHoleNaN) \ | 210 V(NumberIsHoleNaN) \ |
209 V(NumberSilenceNaN) \ | 211 V(NumberSilenceNaN) \ |
210 V(NumberConvertHoleNaN) \ | 212 V(NumberConvertHoleNaN) \ |
211 V(StringFromCharCode) \ | 213 V(StringFromCharCode) \ |
212 V(StringToNumber) \ | 214 V(StringToNumber) \ |
213 V(ChangeTaggedSignedToInt32) \ | 215 V(ChangeTaggedSignedToInt32) \ |
214 V(ChangeTaggedToInt32) \ | 216 V(ChangeTaggedToInt32) \ |
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
656 } | 658 } |
657 }; | 659 }; |
658 | 660 |
659 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 661 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
660 | 662 |
661 } // namespace compiler | 663 } // namespace compiler |
662 } // namespace internal | 664 } // namespace internal |
663 } // namespace v8 | 665 } // namespace v8 |
664 | 666 |
665 #endif // V8_COMPILER_OPCODES_H_ | 667 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |