| 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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 V(Int32Sub) \ | 251 V(Int32Sub) \ |
| 252 V(Int32SubWithOverflow) \ | 252 V(Int32SubWithOverflow) \ |
| 253 V(Int32Mul) \ | 253 V(Int32Mul) \ |
| 254 V(Int32MulHigh) \ | 254 V(Int32MulHigh) \ |
| 255 V(Int32Div) \ | 255 V(Int32Div) \ |
| 256 V(Int32Mod) \ | 256 V(Int32Mod) \ |
| 257 V(Uint32Div) \ | 257 V(Uint32Div) \ |
| 258 V(Uint32Mod) \ | 258 V(Uint32Mod) \ |
| 259 V(Uint32MulHigh) \ | 259 V(Uint32MulHigh) \ |
| 260 V(Int64Add) \ | 260 V(Int64Add) \ |
| 261 V(Int64AddWithOverflow) \ |
| 261 V(Int64Sub) \ | 262 V(Int64Sub) \ |
| 263 V(Int64SubWithOverflow) \ |
| 262 V(Int64Mul) \ | 264 V(Int64Mul) \ |
| 263 V(Int64Div) \ | 265 V(Int64Div) \ |
| 264 V(Int64Mod) \ | 266 V(Int64Mod) \ |
| 265 V(Uint64Div) \ | 267 V(Uint64Div) \ |
| 266 V(Uint64Mod) \ | 268 V(Uint64Mod) \ |
| 267 V(ChangeFloat32ToFloat64) \ | 269 V(ChangeFloat32ToFloat64) \ |
| 268 V(ChangeFloat64ToInt32) \ | 270 V(ChangeFloat64ToInt32) \ |
| 269 V(ChangeFloat64ToUint32) \ | 271 V(ChangeFloat64ToUint32) \ |
| 270 V(TryTruncateFloat32ToInt64) \ | 272 V(TryTruncateFloat32ToInt64) \ |
| 271 V(TryTruncateFloat64ToInt64) \ | 273 V(TryTruncateFloat64ToInt64) \ |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 } | 400 } |
| 399 }; | 401 }; |
| 400 | 402 |
| 401 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 403 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 402 | 404 |
| 403 } // namespace compiler | 405 } // namespace compiler |
| 404 } // namespace internal | 406 } // namespace internal |
| 405 } // namespace v8 | 407 } // namespace v8 |
| 406 | 408 |
| 407 #endif // V8_COMPILER_OPCODES_H_ | 409 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |