| 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(Branch) \ | 13 V(Branch) \ |
| 14 V(Switch) \ | 14 V(Switch) \ |
| 15 V(IfTrue) \ | 15 V(IfTrue) \ |
| 16 V(IfFalse) \ | 16 V(IfFalse) \ |
| 17 V(IfSuccess) \ | 17 V(IfSuccess) \ |
| 18 V(IfException) \ | 18 V(IfException) \ |
| 19 V(IfValue) \ | 19 V(IfValue) \ |
| 20 V(IfDefault) \ | 20 V(IfDefault) \ |
| 21 V(Merge) \ | 21 V(Merge) \ |
| 22 V(Deoptimize) \ | 22 V(Deoptimize) \ |
| 23 V(Return) \ | 23 V(Return) \ |
| 24 V(TailCall) \ |
| 24 V(OsrNormalEntry) \ | 25 V(OsrNormalEntry) \ |
| 25 V(OsrLoopEntry) \ | 26 V(OsrLoopEntry) \ |
| 26 V(Throw) \ | 27 V(Throw) \ |
| 27 V(End) | 28 V(End) |
| 28 | 29 |
| 29 // Opcodes for constant operators. | 30 // Opcodes for constant operators. |
| 30 #define CONSTANT_OP_LIST(V) \ | 31 #define CONSTANT_OP_LIST(V) \ |
| 31 V(Int32Constant) \ | 32 V(Int32Constant) \ |
| 32 V(Int64Constant) \ | 33 V(Int64Constant) \ |
| 33 V(Float32Constant) \ | 34 V(Float32Constant) \ |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || | 346 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || |
| 346 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); | 347 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); |
| 347 } | 348 } |
| 348 }; | 349 }; |
| 349 | 350 |
| 350 } // namespace compiler | 351 } // namespace compiler |
| 351 } // namespace internal | 352 } // namespace internal |
| 352 } // namespace v8 | 353 } // namespace v8 |
| 353 | 354 |
| 354 #endif // V8_COMPILER_OPCODES_H_ | 355 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |