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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 V(NumberLog2) \ | 261 V(NumberLog2) \ |
262 V(NumberLog10) \ | 262 V(NumberLog10) \ |
263 V(NumberRound) \ | 263 V(NumberRound) \ |
264 V(NumberSign) \ | 264 V(NumberSign) \ |
265 V(NumberSin) \ | 265 V(NumberSin) \ |
266 V(NumberSinh) \ | 266 V(NumberSinh) \ |
267 V(NumberSqrt) \ | 267 V(NumberSqrt) \ |
268 V(NumberTan) \ | 268 V(NumberTan) \ |
269 V(NumberTanh) \ | 269 V(NumberTanh) \ |
270 V(NumberTrunc) \ | 270 V(NumberTrunc) \ |
| 271 V(NumberToBoolean) \ |
271 V(NumberToInt32) \ | 272 V(NumberToInt32) \ |
272 V(NumberToUint32) \ | 273 V(NumberToUint32) \ |
273 V(NumberSilenceNaN) | 274 V(NumberSilenceNaN) |
274 | 275 |
275 #define SIMPLIFIED_OTHER_OP_LIST(V) \ | 276 #define SIMPLIFIED_OTHER_OP_LIST(V) \ |
276 V(PlainPrimitiveToNumber) \ | 277 V(PlainPrimitiveToNumber) \ |
277 V(PlainPrimitiveToWord32) \ | 278 V(PlainPrimitiveToWord32) \ |
278 V(PlainPrimitiveToFloat64) \ | 279 V(PlainPrimitiveToFloat64) \ |
279 V(BooleanNot) \ | 280 V(BooleanNot) \ |
280 V(StringCharCodeAt) \ | 281 V(StringCharCodeAt) \ |
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
753 } | 754 } |
754 }; | 755 }; |
755 | 756 |
756 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 757 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
757 | 758 |
758 } // namespace compiler | 759 } // namespace compiler |
759 } // namespace internal | 760 } // namespace internal |
760 } // namespace v8 | 761 } // namespace v8 |
761 | 762 |
762 #endif // V8_COMPILER_OPCODES_H_ | 763 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |