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