| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 V(Uint32MulHigh) \ | 278 V(Uint32MulHigh) \ |
| 279 V(Int64Add) \ | 279 V(Int64Add) \ |
| 280 V(Int64AddWithOverflow) \ | 280 V(Int64AddWithOverflow) \ |
| 281 V(Int64Sub) \ | 281 V(Int64Sub) \ |
| 282 V(Int64SubWithOverflow) \ | 282 V(Int64SubWithOverflow) \ |
| 283 V(Int64Mul) \ | 283 V(Int64Mul) \ |
| 284 V(Int64Div) \ | 284 V(Int64Div) \ |
| 285 V(Int64Mod) \ | 285 V(Int64Mod) \ |
| 286 V(Uint64Div) \ | 286 V(Uint64Div) \ |
| 287 V(Uint64Mod) \ | 287 V(Uint64Mod) \ |
| 288 V(BitcastWordToTagged) \ |
| 288 V(ChangeFloat32ToFloat64) \ | 289 V(ChangeFloat32ToFloat64) \ |
| 289 V(ChangeFloat64ToInt32) \ | 290 V(ChangeFloat64ToInt32) \ |
| 290 V(ChangeFloat64ToUint32) \ | 291 V(ChangeFloat64ToUint32) \ |
| 291 V(TruncateFloat64ToUint32) \ | 292 V(TruncateFloat64ToUint32) \ |
| 292 V(TruncateFloat32ToInt32) \ | 293 V(TruncateFloat32ToInt32) \ |
| 293 V(TruncateFloat32ToUint32) \ | 294 V(TruncateFloat32ToUint32) \ |
| 294 V(TryTruncateFloat32ToInt64) \ | 295 V(TryTruncateFloat32ToInt64) \ |
| 295 V(TryTruncateFloat64ToInt64) \ | 296 V(TryTruncateFloat64ToInt64) \ |
| 296 V(TryTruncateFloat32ToUint64) \ | 297 V(TryTruncateFloat32ToUint64) \ |
| 297 V(TryTruncateFloat64ToUint64) \ | 298 V(TryTruncateFloat64ToUint64) \ |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 } | 433 } |
| 433 }; | 434 }; |
| 434 | 435 |
| 435 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 436 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 436 | 437 |
| 437 } // namespace compiler | 438 } // namespace compiler |
| 438 } // namespace internal | 439 } // namespace internal |
| 439 } // namespace v8 | 440 } // namespace v8 |
| 440 | 441 |
| 441 #endif // V8_COMPILER_OPCODES_H_ | 442 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |