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