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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 V(NumberTan) \ | 262 V(NumberTan) \ |
263 V(NumberTanh) \ | 263 V(NumberTanh) \ |
264 V(NumberTrunc) \ | 264 V(NumberTrunc) \ |
265 V(NumberToInt32) \ | 265 V(NumberToInt32) \ |
266 V(NumberToUint32) \ | 266 V(NumberToUint32) \ |
267 V(NumberSilenceNaN) \ | 267 V(NumberSilenceNaN) \ |
268 V(StringCharCodeAt) \ | 268 V(StringCharCodeAt) \ |
269 V(StringFromCharCode) \ | 269 V(StringFromCharCode) \ |
270 V(CheckBounds) \ | 270 V(CheckBounds) \ |
271 V(CheckIf) \ | 271 V(CheckIf) \ |
| 272 V(CheckMaps) \ |
272 V(CheckNumber) \ | 273 V(CheckNumber) \ |
273 V(CheckString) \ | 274 V(CheckString) \ |
274 V(CheckTaggedPointer) \ | 275 V(CheckTaggedPointer) \ |
275 V(CheckTaggedSigned) \ | 276 V(CheckTaggedSigned) \ |
276 V(CheckFloat64Hole) \ | 277 V(CheckFloat64Hole) \ |
277 V(CheckTaggedHole) \ | 278 V(CheckTaggedHole) \ |
278 V(Allocate) \ | 279 V(Allocate) \ |
279 V(LoadField) \ | 280 V(LoadField) \ |
280 V(LoadBuffer) \ | 281 V(LoadBuffer) \ |
281 V(LoadElement) \ | 282 V(LoadElement) \ |
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
734 } | 735 } |
735 }; | 736 }; |
736 | 737 |
737 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 738 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
738 | 739 |
739 } // namespace compiler | 740 } // namespace compiler |
740 } // namespace internal | 741 } // namespace internal |
741 } // namespace v8 | 742 } // namespace v8 |
742 | 743 |
743 #endif // V8_COMPILER_OPCODES_H_ | 744 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |