| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 V(TruncateInt64ToInt32) \ | 218 V(TruncateInt64ToInt32) \ |
| 219 V(Float64Add) \ | 219 V(Float64Add) \ |
| 220 V(Float64Sub) \ | 220 V(Float64Sub) \ |
| 221 V(Float64Mul) \ | 221 V(Float64Mul) \ |
| 222 V(Float64Div) \ | 222 V(Float64Div) \ |
| 223 V(Float64Mod) \ | 223 V(Float64Mod) \ |
| 224 V(Float64Sqrt) \ | 224 V(Float64Sqrt) \ |
| 225 V(Float64Equal) \ | 225 V(Float64Equal) \ |
| 226 V(Float64LessThan) \ | 226 V(Float64LessThan) \ |
| 227 V(Float64LessThanOrEqual) \ | 227 V(Float64LessThanOrEqual) \ |
| 228 V(Float64Floor) \ |
| 229 V(Float64Ceil) \ |
| 230 V(Float64RoundAwayFromZero) \ |
| 231 V(Float64RoundToZero) \ |
| 228 V(LoadStackPointer) | 232 V(LoadStackPointer) |
| 229 | 233 |
| 230 #define VALUE_OP_LIST(V) \ | 234 #define VALUE_OP_LIST(V) \ |
| 231 COMMON_OP_LIST(V) \ | 235 COMMON_OP_LIST(V) \ |
| 232 SIMPLIFIED_OP_LIST(V) \ | 236 SIMPLIFIED_OP_LIST(V) \ |
| 233 MACHINE_OP_LIST(V) \ | 237 MACHINE_OP_LIST(V) \ |
| 234 JS_OP_LIST(V) | 238 JS_OP_LIST(V) |
| 235 | 239 |
| 236 // The combination of all operators at all levels and the common operators. | 240 // The combination of all operators at all levels and the common operators. |
| 237 #define ALL_OP_LIST(V) \ | 241 #define ALL_OP_LIST(V) \ |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 return false; | 321 return false; |
| 318 } | 322 } |
| 319 } | 323 } |
| 320 }; | 324 }; |
| 321 | 325 |
| 322 } // namespace compiler | 326 } // namespace compiler |
| 323 } // namespace internal | 327 } // namespace internal |
| 324 } // namespace v8 | 328 } // namespace v8 |
| 325 | 329 |
| 326 #endif // V8_COMPILER_OPCODES_H_ | 330 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |