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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 V(NumberAtan) \ | 200 V(NumberAtan) \ |
201 V(NumberAtan2) \ | 201 V(NumberAtan2) \ |
202 V(NumberLog) \ | 202 V(NumberLog) \ |
203 V(NumberLog1p) \ | 203 V(NumberLog1p) \ |
204 V(NumberRound) \ | 204 V(NumberRound) \ |
205 V(NumberTrunc) \ | 205 V(NumberTrunc) \ |
206 V(NumberToInt32) \ | 206 V(NumberToInt32) \ |
207 V(NumberToUint32) \ | 207 V(NumberToUint32) \ |
208 V(NumberIsHoleNaN) \ | 208 V(NumberIsHoleNaN) \ |
209 V(NumberSilenceNaN) \ | 209 V(NumberSilenceNaN) \ |
| 210 V(NumberConvertHoleNaN) \ |
210 V(StringFromCharCode) \ | 211 V(StringFromCharCode) \ |
211 V(StringToNumber) \ | 212 V(StringToNumber) \ |
212 V(ChangeTaggedSignedToInt32) \ | 213 V(ChangeTaggedSignedToInt32) \ |
213 V(ChangeTaggedToInt32) \ | 214 V(ChangeTaggedToInt32) \ |
214 V(ChangeTaggedToUint32) \ | 215 V(ChangeTaggedToUint32) \ |
215 V(ChangeTaggedToFloat64) \ | 216 V(ChangeTaggedToFloat64) \ |
216 V(ChangeInt31ToTaggedSigned) \ | 217 V(ChangeInt31ToTaggedSigned) \ |
217 V(ChangeInt32ToTagged) \ | 218 V(ChangeInt32ToTagged) \ |
218 V(ChangeUint32ToTagged) \ | 219 V(ChangeUint32ToTagged) \ |
219 V(ChangeFloat64ToTagged) \ | 220 V(ChangeFloat64ToTagged) \ |
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
656 } | 657 } |
657 }; | 658 }; |
658 | 659 |
659 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 660 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
660 | 661 |
661 } // namespace compiler | 662 } // namespace compiler |
662 } // namespace internal | 663 } // namespace internal |
663 } // namespace v8 | 664 } // namespace v8 |
664 | 665 |
665 #endif // V8_COMPILER_OPCODES_H_ | 666 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |