| 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 INNER_CONTROL_OP_LIST(V) \ | 9 #define INNER_CONTROL_OP_LIST(V) \ |
| 10 V(Dead) \ | 10 V(Dead) \ |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 V(Int32Mul) \ | 191 V(Int32Mul) \ |
| 192 V(Int32MulHigh) \ | 192 V(Int32MulHigh) \ |
| 193 V(Int32Div) \ | 193 V(Int32Div) \ |
| 194 V(Int32Mod) \ | 194 V(Int32Mod) \ |
| 195 V(Int32LessThan) \ | 195 V(Int32LessThan) \ |
| 196 V(Int32LessThanOrEqual) \ | 196 V(Int32LessThanOrEqual) \ |
| 197 V(Uint32Div) \ | 197 V(Uint32Div) \ |
| 198 V(Uint32LessThan) \ | 198 V(Uint32LessThan) \ |
| 199 V(Uint32LessThanOrEqual) \ | 199 V(Uint32LessThanOrEqual) \ |
| 200 V(Uint32Mod) \ | 200 V(Uint32Mod) \ |
| 201 V(Uint32MulHigh) \ |
| 201 V(Int64Add) \ | 202 V(Int64Add) \ |
| 202 V(Int64Sub) \ | 203 V(Int64Sub) \ |
| 203 V(Int64Mul) \ | 204 V(Int64Mul) \ |
| 204 V(Int64Div) \ | 205 V(Int64Div) \ |
| 205 V(Int64Mod) \ | 206 V(Int64Mod) \ |
| 206 V(Int64LessThan) \ | 207 V(Int64LessThan) \ |
| 207 V(Int64LessThanOrEqual) \ | 208 V(Int64LessThanOrEqual) \ |
| 208 V(Uint64Div) \ | 209 V(Uint64Div) \ |
| 209 V(Uint64LessThan) \ | 210 V(Uint64LessThan) \ |
| 210 V(Uint64Mod) \ | 211 V(Uint64Mod) \ |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 return false; | 329 return false; |
| 329 } | 330 } |
| 330 } | 331 } |
| 331 }; | 332 }; |
| 332 | 333 |
| 333 } // namespace compiler | 334 } // namespace compiler |
| 334 } // namespace internal | 335 } // namespace internal |
| 335 } // namespace v8 | 336 } // namespace v8 |
| 336 | 337 |
| 337 #endif // V8_COMPILER_OPCODES_H_ | 338 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |