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