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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 V(Word64Sar) \ | 330 V(Word64Sar) \ |
331 V(Word64Ror) \ | 331 V(Word64Ror) \ |
332 V(Word64Clz) \ | 332 V(Word64Clz) \ |
333 V(Word64Ctz) \ | 333 V(Word64Ctz) \ |
334 V(Word64ReverseBits) \ | 334 V(Word64ReverseBits) \ |
335 V(Int32Add) \ | 335 V(Int32Add) \ |
336 V(Int32AddWithOverflow) \ | 336 V(Int32AddWithOverflow) \ |
337 V(Int32Sub) \ | 337 V(Int32Sub) \ |
338 V(Int32SubWithOverflow) \ | 338 V(Int32SubWithOverflow) \ |
339 V(Int32Mul) \ | 339 V(Int32Mul) \ |
| 340 V(Int32MulWithOverflow) \ |
340 V(Int32MulHigh) \ | 341 V(Int32MulHigh) \ |
341 V(Int32Div) \ | 342 V(Int32Div) \ |
342 V(Int32Mod) \ | 343 V(Int32Mod) \ |
343 V(Uint32Div) \ | 344 V(Uint32Div) \ |
344 V(Uint32Mod) \ | 345 V(Uint32Mod) \ |
345 V(Uint32MulHigh) \ | 346 V(Uint32MulHigh) \ |
346 V(Int64Add) \ | 347 V(Int64Add) \ |
347 V(Int64AddWithOverflow) \ | 348 V(Int64AddWithOverflow) \ |
348 V(Int64Sub) \ | 349 V(Int64Sub) \ |
349 V(Int64SubWithOverflow) \ | 350 V(Int64SubWithOverflow) \ |
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 } | 716 } |
716 }; | 717 }; |
717 | 718 |
718 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 719 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
719 | 720 |
720 } // namespace compiler | 721 } // namespace compiler |
721 } // namespace internal | 722 } // namespace internal |
722 } // namespace v8 | 723 } // namespace v8 |
723 | 724 |
724 #endif // V8_COMPILER_OPCODES_H_ | 725 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |