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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 V(TryTruncateFloat64ToInt64) \ | 274 V(TryTruncateFloat64ToInt64) \ |
275 V(TryTruncateFloat32ToUint64) \ | 275 V(TryTruncateFloat32ToUint64) \ |
276 V(TryTruncateFloat64ToUint64) \ | 276 V(TryTruncateFloat64ToUint64) \ |
277 V(ChangeInt32ToFloat64) \ | 277 V(ChangeInt32ToFloat64) \ |
278 V(ChangeInt32ToInt64) \ | 278 V(ChangeInt32ToInt64) \ |
279 V(ChangeUint32ToFloat64) \ | 279 V(ChangeUint32ToFloat64) \ |
280 V(ChangeUint32ToUint64) \ | 280 V(ChangeUint32ToUint64) \ |
281 V(TruncateFloat64ToFloat32) \ | 281 V(TruncateFloat64ToFloat32) \ |
282 V(TruncateFloat64ToInt32) \ | 282 V(TruncateFloat64ToInt32) \ |
283 V(TruncateInt64ToInt32) \ | 283 V(TruncateInt64ToInt32) \ |
| 284 V(RoundInt32ToFloat32) \ |
284 V(RoundInt64ToFloat32) \ | 285 V(RoundInt64ToFloat32) \ |
285 V(RoundInt64ToFloat64) \ | 286 V(RoundInt64ToFloat64) \ |
286 V(RoundUint64ToFloat32) \ | 287 V(RoundUint64ToFloat32) \ |
287 V(RoundUint64ToFloat64) \ | 288 V(RoundUint64ToFloat64) \ |
288 V(BitcastFloat32ToInt32) \ | 289 V(BitcastFloat32ToInt32) \ |
289 V(BitcastFloat64ToInt64) \ | 290 V(BitcastFloat64ToInt64) \ |
290 V(BitcastInt32ToFloat32) \ | 291 V(BitcastInt32ToFloat32) \ |
291 V(BitcastInt64ToFloat64) \ | 292 V(BitcastInt64ToFloat64) \ |
292 V(Float32Add) \ | 293 V(Float32Add) \ |
293 V(Float32Sub) \ | 294 V(Float32Sub) \ |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
401 } | 402 } |
402 }; | 403 }; |
403 | 404 |
404 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 405 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
405 | 406 |
406 } // namespace compiler | 407 } // namespace compiler |
407 } // namespace internal | 408 } // namespace internal |
408 } // namespace v8 | 409 } // namespace v8 |
409 | 410 |
410 #endif // V8_COMPILER_OPCODES_H_ | 411 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |