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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 V(ChangeUint32ToFloat64) \ | 211 V(ChangeUint32ToFloat64) \ |
212 V(ChangeUint32ToUint64) \ | 212 V(ChangeUint32ToUint64) \ |
213 V(TruncateFloat64ToFloat32) \ | 213 V(TruncateFloat64ToFloat32) \ |
214 V(TruncateFloat64ToInt32) \ | 214 V(TruncateFloat64ToInt32) \ |
215 V(TruncateInt64ToInt32) \ | 215 V(TruncateInt64ToInt32) \ |
216 V(Float64Add) \ | 216 V(Float64Add) \ |
217 V(Float64Sub) \ | 217 V(Float64Sub) \ |
218 V(Float64Mul) \ | 218 V(Float64Mul) \ |
219 V(Float64Div) \ | 219 V(Float64Div) \ |
220 V(Float64Mod) \ | 220 V(Float64Mod) \ |
| 221 V(Float64Sqrt) \ |
221 V(Float64Equal) \ | 222 V(Float64Equal) \ |
222 V(Float64LessThan) \ | 223 V(Float64LessThan) \ |
223 V(Float64LessThanOrEqual) | 224 V(Float64LessThanOrEqual) |
224 | 225 |
225 #define VALUE_OP_LIST(V) \ | 226 #define VALUE_OP_LIST(V) \ |
226 COMMON_OP_LIST(V) \ | 227 COMMON_OP_LIST(V) \ |
227 SIMPLIFIED_OP_LIST(V) \ | 228 SIMPLIFIED_OP_LIST(V) \ |
228 MACHINE_OP_LIST(V) \ | 229 MACHINE_OP_LIST(V) \ |
229 JS_OP_LIST(V) | 230 JS_OP_LIST(V) |
230 | 231 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 return false; | 301 return false; |
301 } | 302 } |
302 } | 303 } |
303 }; | 304 }; |
304 | 305 |
305 } // namespace compiler | 306 } // namespace compiler |
306 } // namespace internal | 307 } // namespace internal |
307 } // namespace v8 | 308 } // namespace v8 |
308 | 309 |
309 #endif // V8_COMPILER_OPCODES_H_ | 310 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |