| 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 26 matching lines...) Expand all Loading... |
| 37 V(Float64Constant) \ | 37 V(Float64Constant) \ |
| 38 V(ExternalConstant) \ | 38 V(ExternalConstant) \ |
| 39 V(NumberConstant) \ | 39 V(NumberConstant) \ |
| 40 V(HeapConstant) | 40 V(HeapConstant) |
| 41 | 41 |
| 42 #define INNER_OP_LIST(V) \ | 42 #define INNER_OP_LIST(V) \ |
| 43 V(Select) \ | 43 V(Select) \ |
| 44 V(Phi) \ | 44 V(Phi) \ |
| 45 V(EffectSet) \ | 45 V(EffectSet) \ |
| 46 V(EffectPhi) \ | 46 V(EffectPhi) \ |
| 47 V(ValueEffect) \ | 47 V(BeginRegion) \ |
| 48 V(Finish) \ | 48 V(FinishRegion) \ |
| 49 V(FrameState) \ | 49 V(FrameState) \ |
| 50 V(StateValues) \ | 50 V(StateValues) \ |
| 51 V(TypedStateValues) \ | 51 V(TypedStateValues) \ |
| 52 V(Call) \ | 52 V(Call) \ |
| 53 V(Parameter) \ | 53 V(Parameter) \ |
| 54 V(OsrValue) \ | 54 V(OsrValue) \ |
| 55 V(Projection) | 55 V(Projection) |
| 56 | 56 |
| 57 #define COMMON_OP_LIST(V) \ | 57 #define COMMON_OP_LIST(V) \ |
| 58 CONSTANT_OP_LIST(V) \ | 58 CONSTANT_OP_LIST(V) \ |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 } | 366 } |
| 367 }; | 367 }; |
| 368 | 368 |
| 369 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 369 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 370 | 370 |
| 371 } // namespace compiler | 371 } // namespace compiler |
| 372 } // namespace internal | 372 } // namespace internal |
| 373 } // namespace v8 | 373 } // namespace v8 |
| 374 | 374 |
| 375 #endif // V8_COMPILER_OPCODES_H_ | 375 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |