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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 V(NumberFloor) \ | 199 V(NumberFloor) \ |
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(StringFromCharCode) \ | 210 V(StringFromCharCode) \ |
210 V(StringToNumber) \ | 211 V(StringToNumber) \ |
211 V(ChangeTaggedSignedToInt32) \ | 212 V(ChangeTaggedSignedToInt32) \ |
212 V(ChangeTaggedToInt32) \ | 213 V(ChangeTaggedToInt32) \ |
213 V(ChangeTaggedToUint32) \ | 214 V(ChangeTaggedToUint32) \ |
214 V(ChangeTaggedToFloat64) \ | 215 V(ChangeTaggedToFloat64) \ |
215 V(ChangeInt31ToTaggedSigned) \ | 216 V(ChangeInt31ToTaggedSigned) \ |
216 V(ChangeInt32ToTagged) \ | 217 V(ChangeInt32ToTagged) \ |
217 V(ChangeUint32ToTagged) \ | 218 V(ChangeUint32ToTagged) \ |
218 V(ChangeFloat64ToTagged) \ | 219 V(ChangeFloat64ToTagged) \ |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 V(Int64Mul) \ | 307 V(Int64Mul) \ |
307 V(Int64Div) \ | 308 V(Int64Div) \ |
308 V(Int64Mod) \ | 309 V(Int64Mod) \ |
309 V(Uint64Div) \ | 310 V(Uint64Div) \ |
310 V(Uint64Mod) \ | 311 V(Uint64Mod) \ |
311 V(BitcastWordToTagged) \ | 312 V(BitcastWordToTagged) \ |
312 V(TruncateFloat64ToWord32) \ | 313 V(TruncateFloat64ToWord32) \ |
313 V(ChangeFloat32ToFloat64) \ | 314 V(ChangeFloat32ToFloat64) \ |
314 V(ChangeFloat64ToInt32) \ | 315 V(ChangeFloat64ToInt32) \ |
315 V(ChangeFloat64ToUint32) \ | 316 V(ChangeFloat64ToUint32) \ |
| 317 V(Float64SilenceNaN) \ |
316 V(TruncateFloat64ToUint32) \ | 318 V(TruncateFloat64ToUint32) \ |
317 V(TruncateFloat32ToInt32) \ | 319 V(TruncateFloat32ToInt32) \ |
318 V(TruncateFloat32ToUint32) \ | 320 V(TruncateFloat32ToUint32) \ |
319 V(TryTruncateFloat32ToInt64) \ | 321 V(TryTruncateFloat32ToInt64) \ |
320 V(TryTruncateFloat64ToInt64) \ | 322 V(TryTruncateFloat64ToInt64) \ |
321 V(TryTruncateFloat32ToUint64) \ | 323 V(TryTruncateFloat32ToUint64) \ |
322 V(TryTruncateFloat64ToUint64) \ | 324 V(TryTruncateFloat64ToUint64) \ |
323 V(ChangeInt32ToFloat64) \ | 325 V(ChangeInt32ToFloat64) \ |
324 V(ChangeInt32ToInt64) \ | 326 V(ChangeInt32ToInt64) \ |
325 V(ChangeUint32ToFloat64) \ | 327 V(ChangeUint32ToFloat64) \ |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 } | 655 } |
654 }; | 656 }; |
655 | 657 |
656 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 658 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
657 | 659 |
658 } // namespace compiler | 660 } // namespace compiler |
659 } // namespace internal | 661 } // namespace internal |
660 } // namespace v8 | 662 } // namespace v8 |
661 | 663 |
662 #endif // V8_COMPILER_OPCODES_H_ | 664 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |