| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 V(Word32Ctz) \ | 234 V(Word32Ctz) \ |
| 235 V(Word32Popcnt) \ | 235 V(Word32Popcnt) \ |
| 236 V(Word64And) \ | 236 V(Word64And) \ |
| 237 V(Word64Or) \ | 237 V(Word64Or) \ |
| 238 V(Word64Xor) \ | 238 V(Word64Xor) \ |
| 239 V(Word64Shl) \ | 239 V(Word64Shl) \ |
| 240 V(Word64Shr) \ | 240 V(Word64Shr) \ |
| 241 V(Word64Sar) \ | 241 V(Word64Sar) \ |
| 242 V(Word64Ror) \ | 242 V(Word64Ror) \ |
| 243 V(Word64Clz) \ | 243 V(Word64Clz) \ |
| 244 V(Word64Ctz) \ |
| 244 V(Int32Add) \ | 245 V(Int32Add) \ |
| 245 V(Int32AddWithOverflow) \ | 246 V(Int32AddWithOverflow) \ |
| 246 V(Int32Sub) \ | 247 V(Int32Sub) \ |
| 247 V(Int32SubWithOverflow) \ | 248 V(Int32SubWithOverflow) \ |
| 248 V(Int32Mul) \ | 249 V(Int32Mul) \ |
| 249 V(Int32MulHigh) \ | 250 V(Int32MulHigh) \ |
| 250 V(Int32Div) \ | 251 V(Int32Div) \ |
| 251 V(Int32Mod) \ | 252 V(Int32Mod) \ |
| 252 V(Uint32Div) \ | 253 V(Uint32Div) \ |
| 253 V(Uint32Mod) \ | 254 V(Uint32Mod) \ |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 } | 376 } |
| 376 }; | 377 }; |
| 377 | 378 |
| 378 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 379 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 379 | 380 |
| 380 } // namespace compiler | 381 } // namespace compiler |
| 381 } // namespace internal | 382 } // namespace internal |
| 382 } // namespace v8 | 383 } // namespace v8 |
| 383 | 384 |
| 384 #endif // V8_COMPILER_OPCODES_H_ | 385 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |