| 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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 V(StackSlot) \ | 318 V(StackSlot) \ |
| 319 V(Word32And) \ | 319 V(Word32And) \ |
| 320 V(Word32Or) \ | 320 V(Word32Or) \ |
| 321 V(Word32Xor) \ | 321 V(Word32Xor) \ |
| 322 V(Word32Shl) \ | 322 V(Word32Shl) \ |
| 323 V(Word32Shr) \ | 323 V(Word32Shr) \ |
| 324 V(Word32Sar) \ | 324 V(Word32Sar) \ |
| 325 V(Word32Ror) \ | 325 V(Word32Ror) \ |
| 326 V(Word32Clz) \ | 326 V(Word32Clz) \ |
| 327 V(Word32Ctz) \ | 327 V(Word32Ctz) \ |
| 328 V(Word16ReverseBytes) \ |
| 328 V(Word32ReverseBits) \ | 329 V(Word32ReverseBits) \ |
| 330 V(Word32ReverseBytes) \ |
| 329 V(Word32Popcnt) \ | 331 V(Word32Popcnt) \ |
| 330 V(Word64Popcnt) \ | 332 V(Word64Popcnt) \ |
| 331 V(Word64And) \ | 333 V(Word64And) \ |
| 332 V(Word64Or) \ | 334 V(Word64Or) \ |
| 333 V(Word64Xor) \ | 335 V(Word64Xor) \ |
| 334 V(Word64Shl) \ | 336 V(Word64Shl) \ |
| 335 V(Word64Shr) \ | 337 V(Word64Shr) \ |
| 336 V(Word64Sar) \ | 338 V(Word64Sar) \ |
| 337 V(Word64Ror) \ | 339 V(Word64Ror) \ |
| 338 V(Word64Clz) \ | 340 V(Word64Clz) \ |
| 339 V(Word64Ctz) \ | 341 V(Word64Ctz) \ |
| 340 V(Word64ReverseBits) \ | 342 V(Word64ReverseBits) \ |
| 343 V(Word64ReverseBytes) \ |
| 341 V(Int32Add) \ | 344 V(Int32Add) \ |
| 342 V(Int32AddWithOverflow) \ | 345 V(Int32AddWithOverflow) \ |
| 343 V(Int32Sub) \ | 346 V(Int32Sub) \ |
| 344 V(Int32SubWithOverflow) \ | 347 V(Int32SubWithOverflow) \ |
| 345 V(Int32Mul) \ | 348 V(Int32Mul) \ |
| 346 V(Int32MulWithOverflow) \ | 349 V(Int32MulWithOverflow) \ |
| 347 V(Int32MulHigh) \ | 350 V(Int32MulHigh) \ |
| 348 V(Int32Div) \ | 351 V(Int32Div) \ |
| 349 V(Int32Mod) \ | 352 V(Int32Mod) \ |
| 350 V(Uint32Div) \ | 353 V(Uint32Div) \ |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 } | 725 } |
| 723 }; | 726 }; |
| 724 | 727 |
| 725 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 728 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 726 | 729 |
| 727 } // namespace compiler | 730 } // namespace compiler |
| 728 } // namespace internal | 731 } // namespace internal |
| 729 } // namespace v8 | 732 } // namespace v8 |
| 730 | 733 |
| 731 #endif // V8_COMPILER_OPCODES_H_ | 734 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |