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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 V(NumberBitwiseOr) \ | 219 V(NumberBitwiseOr) \ |
220 V(NumberBitwiseXor) \ | 220 V(NumberBitwiseXor) \ |
221 V(NumberBitwiseAnd) \ | 221 V(NumberBitwiseAnd) \ |
222 V(NumberShiftLeft) \ | 222 V(NumberShiftLeft) \ |
223 V(NumberShiftRight) \ | 223 V(NumberShiftRight) \ |
224 V(NumberShiftRightLogical) \ | 224 V(NumberShiftRightLogical) \ |
225 V(NumberAtan2) \ | 225 V(NumberAtan2) \ |
226 V(NumberImul) \ | 226 V(NumberImul) \ |
227 V(NumberMax) \ | 227 V(NumberMax) \ |
228 V(NumberMin) \ | 228 V(NumberMin) \ |
229 V(NumberPow) | 229 V(NumberPow) \ |
| 230 V(NumberToString) |
230 | 231 |
231 #define SIMPLIFIED_SPECULATIVE_NUMBER_BINOP_LIST(V) \ | 232 #define SIMPLIFIED_SPECULATIVE_NUMBER_BINOP_LIST(V) \ |
232 V(SpeculativeNumberAdd) \ | 233 V(SpeculativeNumberAdd) \ |
233 V(SpeculativeNumberSubtract) \ | 234 V(SpeculativeNumberSubtract) \ |
234 V(SpeculativeNumberMultiply) \ | 235 V(SpeculativeNumberMultiply) \ |
235 V(SpeculativeNumberDivide) \ | 236 V(SpeculativeNumberDivide) \ |
236 V(SpeculativeNumberModulus) \ | 237 V(SpeculativeNumberModulus) \ |
237 V(SpeculativeNumberBitwiseAnd) \ | 238 V(SpeculativeNumberBitwiseAnd) \ |
238 V(SpeculativeNumberBitwiseOr) \ | 239 V(SpeculativeNumberBitwiseOr) \ |
239 V(SpeculativeNumberBitwiseXor) \ | 240 V(SpeculativeNumberBitwiseXor) \ |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 } | 758 } |
758 }; | 759 }; |
759 | 760 |
760 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 761 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
761 | 762 |
762 } // namespace compiler | 763 } // namespace compiler |
763 } // namespace internal | 764 } // namespace internal |
764 } // namespace v8 | 765 } // namespace v8 |
765 | 766 |
766 #endif // V8_COMPILER_OPCODES_H_ | 767 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |