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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 V(StringFromCharCode) \ | 283 V(StringFromCharCode) \ |
284 V(CheckBounds) \ | 284 V(CheckBounds) \ |
285 V(CheckIf) \ | 285 V(CheckIf) \ |
286 V(CheckMaps) \ | 286 V(CheckMaps) \ |
287 V(CheckNumber) \ | 287 V(CheckNumber) \ |
288 V(CheckString) \ | 288 V(CheckString) \ |
289 V(CheckTaggedPointer) \ | 289 V(CheckTaggedPointer) \ |
290 V(CheckTaggedSigned) \ | 290 V(CheckTaggedSigned) \ |
291 V(CheckFloat64Hole) \ | 291 V(CheckFloat64Hole) \ |
292 V(CheckTaggedHole) \ | 292 V(CheckTaggedHole) \ |
| 293 V(ConvertTaggedHoleToUndefined) \ |
293 V(Allocate) \ | 294 V(Allocate) \ |
294 V(LoadField) \ | 295 V(LoadField) \ |
295 V(LoadBuffer) \ | 296 V(LoadBuffer) \ |
296 V(LoadElement) \ | 297 V(LoadElement) \ |
297 V(LoadTypedElement) \ | 298 V(LoadTypedElement) \ |
298 V(StoreField) \ | 299 V(StoreField) \ |
299 V(StoreBuffer) \ | 300 V(StoreBuffer) \ |
300 V(StoreElement) \ | 301 V(StoreElement) \ |
301 V(StoreTypedElement) \ | 302 V(StoreTypedElement) \ |
302 V(ObjectIsCallable) \ | 303 V(ObjectIsCallable) \ |
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 } | 758 } |
758 }; | 759 }; |
759 | 760 |
760 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 761 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
761 | 762 |
762 } // namespace compiler | 763 } // namespace compiler |
763 } // namespace internal | 764 } // namespace internal |
764 } // namespace v8 | 765 } // namespace v8 |
765 | 766 |
766 #endif // V8_COMPILER_OPCODES_H_ | 767 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |