| 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) \ |
| 11 V(Dead) \ | 11 V(Dead) \ |
| 12 V(Loop) \ | 12 V(Loop) \ |
| 13 V(End) \ | 13 V(End) \ |
| 14 V(Branch) \ | 14 V(Branch) \ |
| 15 V(IfTrue) \ | 15 V(IfTrue) \ |
| 16 V(IfFalse) \ | 16 V(IfFalse) \ |
| 17 V(Merge) \ | 17 V(Merge) \ |
| 18 V(Return) \ | 18 V(Return) \ |
| 19 V(Throw) \ | 19 V(Throw) |
| 20 V(Continuation) \ | |
| 21 V(LazyDeoptimization) \ | |
| 22 V(Deoptimize) | |
| 23 | 20 |
| 24 // Opcodes for common operators. | 21 // Opcodes for common operators. |
| 25 #define LEAF_OP_LIST(V) \ | 22 #define LEAF_OP_LIST(V) \ |
| 26 V(Int32Constant) \ | 23 V(Int32Constant) \ |
| 27 V(Int64Constant) \ | 24 V(Int64Constant) \ |
| 28 V(Float64Constant) \ | 25 V(Float64Constant) \ |
| 29 V(ExternalConstant) \ | 26 V(ExternalConstant) \ |
| 30 V(NumberConstant) \ | 27 V(NumberConstant) \ |
| 31 V(HeapConstant) | 28 V(HeapConstant) |
| 32 | 29 |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 return false; | 292 return false; |
| 296 } | 293 } |
| 297 } | 294 } |
| 298 }; | 295 }; |
| 299 | 296 |
| 300 } // namespace compiler | 297 } // namespace compiler |
| 301 } // namespace internal | 298 } // namespace internal |
| 302 } // namespace v8 | 299 } // namespace v8 |
| 303 | 300 |
| 304 #endif // V8_COMPILER_OPCODES_H_ | 301 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |