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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 V(ChangeFloat64ToUint32) \ | 268 V(ChangeFloat64ToUint32) \ |
269 V(ChangeInt32ToFloat64) \ | 269 V(ChangeInt32ToFloat64) \ |
270 V(ChangeInt32ToInt64) \ | 270 V(ChangeInt32ToInt64) \ |
271 V(ChangeUint32ToFloat64) \ | 271 V(ChangeUint32ToFloat64) \ |
272 V(ChangeUint32ToUint64) \ | 272 V(ChangeUint32ToUint64) \ |
273 V(TruncateFloat64ToFloat32) \ | 273 V(TruncateFloat64ToFloat32) \ |
274 V(TruncateFloat64ToInt32) \ | 274 V(TruncateFloat64ToInt32) \ |
275 V(TruncateInt64ToInt32) \ | 275 V(TruncateInt64ToInt32) \ |
276 V(RoundInt64ToFloat32) \ | 276 V(RoundInt64ToFloat32) \ |
277 V(RoundInt64ToFloat64) \ | 277 V(RoundInt64ToFloat64) \ |
| 278 V(RoundUint64ToFloat32) \ |
278 V(RoundUint64ToFloat64) \ | 279 V(RoundUint64ToFloat64) \ |
279 V(BitcastFloat32ToInt32) \ | 280 V(BitcastFloat32ToInt32) \ |
280 V(BitcastFloat64ToInt64) \ | 281 V(BitcastFloat64ToInt64) \ |
281 V(BitcastInt32ToFloat32) \ | 282 V(BitcastInt32ToFloat32) \ |
282 V(BitcastInt64ToFloat64) \ | 283 V(BitcastInt64ToFloat64) \ |
283 V(Float32Add) \ | 284 V(Float32Add) \ |
284 V(Float32Sub) \ | 285 V(Float32Sub) \ |
285 V(Float32Mul) \ | 286 V(Float32Mul) \ |
286 V(Float32Div) \ | 287 V(Float32Div) \ |
287 V(Float32Max) \ | 288 V(Float32Max) \ |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 } | 389 } |
389 }; | 390 }; |
390 | 391 |
391 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 392 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
392 | 393 |
393 } // namespace compiler | 394 } // namespace compiler |
394 } // namespace internal | 395 } // namespace internal |
395 } // namespace v8 | 396 } // namespace v8 |
396 | 397 |
397 #endif // V8_COMPILER_OPCODES_H_ | 398 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |