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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 V(NumberSign) \ | 257 V(NumberSign) \ |
258 V(NumberSin) \ | 258 V(NumberSin) \ |
259 V(NumberSinh) \ | 259 V(NumberSinh) \ |
260 V(NumberSqrt) \ | 260 V(NumberSqrt) \ |
261 V(NumberTan) \ | 261 V(NumberTan) \ |
262 V(NumberTanh) \ | 262 V(NumberTanh) \ |
263 V(NumberTrunc) \ | 263 V(NumberTrunc) \ |
264 V(NumberToInt32) \ | 264 V(NumberToInt32) \ |
265 V(NumberToUint32) \ | 265 V(NumberToUint32) \ |
266 V(NumberSilenceNaN) \ | 266 V(NumberSilenceNaN) \ |
| 267 V(StringCharCodeAt) \ |
267 V(StringFromCharCode) \ | 268 V(StringFromCharCode) \ |
268 V(CheckBounds) \ | 269 V(CheckBounds) \ |
269 V(CheckIf) \ | 270 V(CheckIf) \ |
270 V(CheckNumber) \ | 271 V(CheckNumber) \ |
271 V(CheckString) \ | 272 V(CheckString) \ |
272 V(CheckTaggedPointer) \ | 273 V(CheckTaggedPointer) \ |
273 V(CheckTaggedSigned) \ | 274 V(CheckTaggedSigned) \ |
274 V(CheckFloat64Hole) \ | 275 V(CheckFloat64Hole) \ |
275 V(CheckTaggedHole) \ | 276 V(CheckTaggedHole) \ |
276 V(Allocate) \ | 277 V(Allocate) \ |
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
732 } | 733 } |
733 }; | 734 }; |
734 | 735 |
735 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 736 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
736 | 737 |
737 } // namespace compiler | 738 } // namespace compiler |
738 } // namespace internal | 739 } // namespace internal |
739 } // namespace v8 | 740 } // namespace v8 |
740 | 741 |
741 #endif // V8_COMPILER_OPCODES_H_ | 742 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |