| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 V(StackSlot) \ | 260 V(StackSlot) \ |
| 261 V(Word32And) \ | 261 V(Word32And) \ |
| 262 V(Word32Or) \ | 262 V(Word32Or) \ |
| 263 V(Word32Xor) \ | 263 V(Word32Xor) \ |
| 264 V(Word32Shl) \ | 264 V(Word32Shl) \ |
| 265 V(Word32Shr) \ | 265 V(Word32Shr) \ |
| 266 V(Word32Sar) \ | 266 V(Word32Sar) \ |
| 267 V(Word32Ror) \ | 267 V(Word32Ror) \ |
| 268 V(Word32Clz) \ | 268 V(Word32Clz) \ |
| 269 V(Word32Ctz) \ | 269 V(Word32Ctz) \ |
| 270 V(Word16ReverseBytes) \ |
| 270 V(Word32ReverseBits) \ | 271 V(Word32ReverseBits) \ |
| 272 V(Word32ReverseBytes) \ |
| 271 V(Word32Popcnt) \ | 273 V(Word32Popcnt) \ |
| 272 V(Word64Popcnt) \ | 274 V(Word64Popcnt) \ |
| 273 V(Word64And) \ | 275 V(Word64And) \ |
| 274 V(Word64Or) \ | 276 V(Word64Or) \ |
| 275 V(Word64Xor) \ | 277 V(Word64Xor) \ |
| 276 V(Word64Shl) \ | 278 V(Word64Shl) \ |
| 277 V(Word64Shr) \ | 279 V(Word64Shr) \ |
| 278 V(Word64Sar) \ | 280 V(Word64Sar) \ |
| 279 V(Word64Ror) \ | 281 V(Word64Ror) \ |
| 280 V(Word64Clz) \ | 282 V(Word64Clz) \ |
| 281 V(Word64Ctz) \ | 283 V(Word64Ctz) \ |
| 282 V(Word64ReverseBits) \ | 284 V(Word64ReverseBits) \ |
| 285 V(Word64ReverseBytes) \ |
| 283 V(Int32Add) \ | 286 V(Int32Add) \ |
| 284 V(Int32AddWithOverflow) \ | 287 V(Int32AddWithOverflow) \ |
| 285 V(Int32Sub) \ | 288 V(Int32Sub) \ |
| 286 V(Int32SubWithOverflow) \ | 289 V(Int32SubWithOverflow) \ |
| 287 V(Int32Mul) \ | 290 V(Int32Mul) \ |
| 288 V(Int32MulHigh) \ | 291 V(Int32MulHigh) \ |
| 289 V(Int32Div) \ | 292 V(Int32Div) \ |
| 290 V(Int32Mod) \ | 293 V(Int32Mod) \ |
| 291 V(Uint32Div) \ | 294 V(Uint32Div) \ |
| 292 V(Uint32Mod) \ | 295 V(Uint32Mod) \ |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 642 } | 645 } |
| 643 }; | 646 }; |
| 644 | 647 |
| 645 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 648 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 646 | 649 |
| 647 } // namespace compiler | 650 } // namespace compiler |
| 648 } // namespace internal | 651 } // namespace internal |
| 649 } // namespace v8 | 652 } // namespace v8 |
| 650 | 653 |
| 651 #endif // V8_COMPILER_OPCODES_H_ | 654 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |