| 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(Int64Sub) \ | 274 V(Int64Sub) \ |
| 275 V(Int64SubWithOverflow) \ | 275 V(Int64SubWithOverflow) \ |
| 276 V(Int64Mul) \ | 276 V(Int64Mul) \ |
| 277 V(Int64Div) \ | 277 V(Int64Div) \ |
| 278 V(Int64Mod) \ | 278 V(Int64Mod) \ |
| 279 V(Uint64Div) \ | 279 V(Uint64Div) \ |
| 280 V(Uint64Mod) \ | 280 V(Uint64Mod) \ |
| 281 V(ChangeFloat32ToFloat64) \ | 281 V(ChangeFloat32ToFloat64) \ |
| 282 V(ChangeFloat64ToInt32) \ | 282 V(ChangeFloat64ToInt32) \ |
| 283 V(ChangeFloat64ToUint32) \ | 283 V(ChangeFloat64ToUint32) \ |
| 284 V(TruncateFloat64ToUint32) \ |
| 284 V(TruncateFloat32ToInt32) \ | 285 V(TruncateFloat32ToInt32) \ |
| 285 V(TruncateFloat32ToUint32) \ | 286 V(TruncateFloat32ToUint32) \ |
| 286 V(TryTruncateFloat32ToInt64) \ | 287 V(TryTruncateFloat32ToInt64) \ |
| 287 V(TryTruncateFloat64ToInt64) \ | 288 V(TryTruncateFloat64ToInt64) \ |
| 288 V(TryTruncateFloat32ToUint64) \ | 289 V(TryTruncateFloat32ToUint64) \ |
| 289 V(TryTruncateFloat64ToUint64) \ | 290 V(TryTruncateFloat64ToUint64) \ |
| 290 V(ChangeInt32ToFloat64) \ | 291 V(ChangeInt32ToFloat64) \ |
| 291 V(ChangeInt32ToInt64) \ | 292 V(ChangeInt32ToInt64) \ |
| 292 V(ChangeUint32ToFloat64) \ | 293 V(ChangeUint32ToFloat64) \ |
| 293 V(ChangeUint32ToUint64) \ | 294 V(ChangeUint32ToUint64) \ |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 } | 424 } |
| 424 }; | 425 }; |
| 425 | 426 |
| 426 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 427 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 427 | 428 |
| 428 } // namespace compiler | 429 } // namespace compiler |
| 429 } // namespace internal | 430 } // namespace internal |
| 430 } // namespace v8 | 431 } // namespace v8 |
| 431 | 432 |
| 432 #endif // V8_COMPILER_OPCODES_H_ | 433 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |