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 #include "src/globals.h" | 10 #include "src/globals.h" |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 V(NumberSign) \ | 274 V(NumberSign) \ |
275 V(NumberSin) \ | 275 V(NumberSin) \ |
276 V(NumberSinh) \ | 276 V(NumberSinh) \ |
277 V(NumberSqrt) \ | 277 V(NumberSqrt) \ |
278 V(NumberTan) \ | 278 V(NumberTan) \ |
279 V(NumberTanh) \ | 279 V(NumberTanh) \ |
280 V(NumberTrunc) \ | 280 V(NumberTrunc) \ |
281 V(NumberToBoolean) \ | 281 V(NumberToBoolean) \ |
282 V(NumberToInt32) \ | 282 V(NumberToInt32) \ |
283 V(NumberToUint32) \ | 283 V(NumberToUint32) \ |
| 284 V(NumberToUint8Clamped) \ |
284 V(NumberSilenceNaN) | 285 V(NumberSilenceNaN) |
285 | 286 |
286 #define SIMPLIFIED_OTHER_OP_LIST(V) \ | 287 #define SIMPLIFIED_OTHER_OP_LIST(V) \ |
287 V(PlainPrimitiveToNumber) \ | 288 V(PlainPrimitiveToNumber) \ |
288 V(PlainPrimitiveToWord32) \ | 289 V(PlainPrimitiveToWord32) \ |
289 V(PlainPrimitiveToFloat64) \ | 290 V(PlainPrimitiveToFloat64) \ |
290 V(BooleanNot) \ | 291 V(BooleanNot) \ |
291 V(StringCharCodeAt) \ | 292 V(StringCharCodeAt) \ |
292 V(StringFromCharCode) \ | 293 V(StringFromCharCode) \ |
293 V(StringFromCodePoint) \ | 294 V(StringFromCodePoint) \ |
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
789 } | 790 } |
790 }; | 791 }; |
791 | 792 |
792 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 793 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
793 | 794 |
794 } // namespace compiler | 795 } // namespace compiler |
795 } // namespace internal | 796 } // namespace internal |
796 } // namespace v8 | 797 } // namespace v8 |
797 | 798 |
798 #endif // V8_COMPILER_OPCODES_H_ | 799 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |