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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 V(ChangeFloat32ToFloat64) \ | 262 V(ChangeFloat32ToFloat64) \ |
263 V(ChangeFloat64ToInt32) \ | 263 V(ChangeFloat64ToInt32) \ |
264 V(ChangeFloat64ToUint32) \ | 264 V(ChangeFloat64ToUint32) \ |
265 V(ChangeInt32ToFloat64) \ | 265 V(ChangeInt32ToFloat64) \ |
266 V(ChangeInt32ToInt64) \ | 266 V(ChangeInt32ToInt64) \ |
267 V(ChangeUint32ToFloat64) \ | 267 V(ChangeUint32ToFloat64) \ |
268 V(ChangeUint32ToUint64) \ | 268 V(ChangeUint32ToUint64) \ |
269 V(TruncateFloat64ToFloat32) \ | 269 V(TruncateFloat64ToFloat32) \ |
270 V(TruncateFloat64ToInt32) \ | 270 V(TruncateFloat64ToInt32) \ |
271 V(TruncateInt64ToInt32) \ | 271 V(TruncateInt64ToInt32) \ |
| 272 V(RoundInt64ToFloat64) \ |
272 V(BitcastFloat32ToInt32) \ | 273 V(BitcastFloat32ToInt32) \ |
273 V(BitcastFloat64ToInt64) \ | 274 V(BitcastFloat64ToInt64) \ |
274 V(BitcastInt32ToFloat32) \ | 275 V(BitcastInt32ToFloat32) \ |
275 V(BitcastInt64ToFloat64) \ | 276 V(BitcastInt64ToFloat64) \ |
276 V(Float32Add) \ | 277 V(Float32Add) \ |
277 V(Float32Sub) \ | 278 V(Float32Sub) \ |
278 V(Float32Mul) \ | 279 V(Float32Mul) \ |
279 V(Float32Div) \ | 280 V(Float32Div) \ |
280 V(Float32Max) \ | 281 V(Float32Max) \ |
281 V(Float32Min) \ | 282 V(Float32Min) \ |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 } | 375 } |
375 }; | 376 }; |
376 | 377 |
377 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 378 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
378 | 379 |
379 } // namespace compiler | 380 } // namespace compiler |
380 } // namespace internal | 381 } // namespace internal |
381 } // namespace v8 | 382 } // namespace v8 |
382 | 383 |
383 #endif // V8_COMPILER_OPCODES_H_ | 384 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |