| 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 // Opcodes for control operators. | 8 // Opcodes for control operators. |
| 9 #define CONTROL_OP_LIST(V) \ | 9 #define CONTROL_OP_LIST(V) \ |
| 10 V(Start) \ | 10 V(Start) \ |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 V(Int32Constant) \ | 26 V(Int32Constant) \ |
| 27 V(Int64Constant) \ | 27 V(Int64Constant) \ |
| 28 V(Float64Constant) \ | 28 V(Float64Constant) \ |
| 29 V(ExternalConstant) \ | 29 V(ExternalConstant) \ |
| 30 V(NumberConstant) \ | 30 V(NumberConstant) \ |
| 31 V(HeapConstant) | 31 V(HeapConstant) |
| 32 | 32 |
| 33 #define INNER_OP_LIST(V) \ | 33 #define INNER_OP_LIST(V) \ |
| 34 V(Phi) \ | 34 V(Phi) \ |
| 35 V(EffectPhi) \ | 35 V(EffectPhi) \ |
| 36 V(ControlEffect) \ |
| 37 V(Finish) \ |
| 36 V(FrameState) \ | 38 V(FrameState) \ |
| 37 V(StateValues) \ | 39 V(StateValues) \ |
| 38 V(Call) \ | 40 V(Call) \ |
| 39 V(Parameter) \ | 41 V(Parameter) \ |
| 40 V(Projection) | 42 V(Projection) |
| 41 | 43 |
| 42 #define COMMON_OP_LIST(V) \ | 44 #define COMMON_OP_LIST(V) \ |
| 43 LEAF_OP_LIST(V) \ | 45 LEAF_OP_LIST(V) \ |
| 44 INNER_OP_LIST(V) | 46 INNER_OP_LIST(V) |
| 45 | 47 |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 return false; | 292 return false; |
| 291 } | 293 } |
| 292 } | 294 } |
| 293 }; | 295 }; |
| 294 | 296 |
| 295 } // namespace compiler | 297 } // namespace compiler |
| 296 } // namespace internal | 298 } // namespace internal |
| 297 } // namespace v8 | 299 } // namespace v8 |
| 298 | 300 |
| 299 #endif // V8_COMPILER_OPCODES_H_ | 301 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |