| 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 29 matching lines...) Expand all Loading... |
| 40 V(ExternalConstant) \ | 40 V(ExternalConstant) \ |
| 41 V(NumberConstant) \ | 41 V(NumberConstant) \ |
| 42 V(HeapConstant) \ | 42 V(HeapConstant) \ |
| 43 V(RelocatableInt32Constant) \ | 43 V(RelocatableInt32Constant) \ |
| 44 V(RelocatableInt64Constant) | 44 V(RelocatableInt64Constant) |
| 45 | 45 |
| 46 #define INNER_OP_LIST(V) \ | 46 #define INNER_OP_LIST(V) \ |
| 47 V(Select) \ | 47 V(Select) \ |
| 48 V(Phi) \ | 48 V(Phi) \ |
| 49 V(EffectPhi) \ | 49 V(EffectPhi) \ |
| 50 V(CheckPoint) \ | 50 V(Checkpoint) \ |
| 51 V(BeginRegion) \ | 51 V(BeginRegion) \ |
| 52 V(FinishRegion) \ | 52 V(FinishRegion) \ |
| 53 V(FrameState) \ | 53 V(FrameState) \ |
| 54 V(StateValues) \ | 54 V(StateValues) \ |
| 55 V(TypedStateValues) \ | 55 V(TypedStateValues) \ |
| 56 V(ObjectState) \ | 56 V(ObjectState) \ |
| 57 V(Call) \ | 57 V(Call) \ |
| 58 V(Parameter) \ | 58 V(Parameter) \ |
| 59 V(OsrValue) \ | 59 V(OsrValue) \ |
| 60 V(Projection) | 60 V(Projection) |
| (...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 633 } | 633 } |
| 634 }; | 634 }; |
| 635 | 635 |
| 636 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 636 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 637 | 637 |
| 638 } // namespace compiler | 638 } // namespace compiler |
| 639 } // namespace internal | 639 } // namespace internal |
| 640 } // namespace v8 | 640 } // namespace v8 |
| 641 | 641 |
| 642 #endif // V8_COMPILER_OPCODES_H_ | 642 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |