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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 V(Int64Mul) \ | 265 V(Int64Mul) \ |
266 V(Int64Div) \ | 266 V(Int64Div) \ |
267 V(Int64Mod) \ | 267 V(Int64Mod) \ |
268 V(Uint64Div) \ | 268 V(Uint64Div) \ |
269 V(Uint64Mod) \ | 269 V(Uint64Mod) \ |
270 V(ChangeFloat32ToFloat64) \ | 270 V(ChangeFloat32ToFloat64) \ |
271 V(ChangeFloat64ToInt32) \ | 271 V(ChangeFloat64ToInt32) \ |
272 V(ChangeFloat64ToUint32) \ | 272 V(ChangeFloat64ToUint32) \ |
273 V(TruncateFloat32ToInt64) \ | 273 V(TruncateFloat32ToInt64) \ |
274 V(TruncateFloat64ToInt64) \ | 274 V(TruncateFloat64ToInt64) \ |
| 275 V(TruncateFloat32ToUint64) \ |
275 V(TruncateFloat64ToUint64) \ | 276 V(TruncateFloat64ToUint64) \ |
276 V(ChangeInt32ToFloat64) \ | 277 V(ChangeInt32ToFloat64) \ |
277 V(ChangeInt32ToInt64) \ | 278 V(ChangeInt32ToInt64) \ |
278 V(ChangeUint32ToFloat64) \ | 279 V(ChangeUint32ToFloat64) \ |
279 V(ChangeUint32ToUint64) \ | 280 V(ChangeUint32ToUint64) \ |
280 V(TruncateFloat64ToFloat32) \ | 281 V(TruncateFloat64ToFloat32) \ |
281 V(TruncateFloat64ToInt32) \ | 282 V(TruncateFloat64ToInt32) \ |
282 V(TruncateInt64ToInt32) \ | 283 V(TruncateInt64ToInt32) \ |
283 V(RoundInt64ToFloat32) \ | 284 V(RoundInt64ToFloat32) \ |
284 V(RoundInt64ToFloat64) \ | 285 V(RoundInt64ToFloat64) \ |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 } | 401 } |
401 }; | 402 }; |
402 | 403 |
403 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 404 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
404 | 405 |
405 } // namespace compiler | 406 } // namespace compiler |
406 } // namespace internal | 407 } // namespace internal |
407 } // namespace v8 | 408 } // namespace v8 |
408 | 409 |
409 #endif // V8_COMPILER_OPCODES_H_ | 410 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |