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