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 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 // Opcodes for control operators. | 10 // Opcodes for control operators. |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 V(BitcastInt32ToFloat32) \ | 287 V(BitcastInt32ToFloat32) \ |
288 V(BitcastInt64ToFloat64) \ | 288 V(BitcastInt64ToFloat64) \ |
289 V(Float32Add) \ | 289 V(Float32Add) \ |
290 V(Float32Sub) \ | 290 V(Float32Sub) \ |
291 V(Float32Mul) \ | 291 V(Float32Mul) \ |
292 V(Float32Div) \ | 292 V(Float32Div) \ |
293 V(Float32Max) \ | 293 V(Float32Max) \ |
294 V(Float32Min) \ | 294 V(Float32Min) \ |
295 V(Float32Abs) \ | 295 V(Float32Abs) \ |
296 V(Float32Sqrt) \ | 296 V(Float32Sqrt) \ |
| 297 V(Float32RoundDown) \ |
297 V(Float64Add) \ | 298 V(Float64Add) \ |
298 V(Float64Sub) \ | 299 V(Float64Sub) \ |
299 V(Float64Mul) \ | 300 V(Float64Mul) \ |
300 V(Float64Div) \ | 301 V(Float64Div) \ |
301 V(Float64Mod) \ | 302 V(Float64Mod) \ |
302 V(Float64Max) \ | 303 V(Float64Max) \ |
303 V(Float64Min) \ | 304 V(Float64Min) \ |
304 V(Float64Abs) \ | 305 V(Float64Abs) \ |
305 V(Float64Sqrt) \ | 306 V(Float64Sqrt) \ |
306 V(Float64RoundDown) \ | 307 V(Float64RoundDown) \ |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 } | 395 } |
395 }; | 396 }; |
396 | 397 |
397 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 398 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
398 | 399 |
399 } // namespace compiler | 400 } // namespace compiler |
400 } // namespace internal | 401 } // namespace internal |
401 } // namespace v8 | 402 } // namespace v8 |
402 | 403 |
403 #endif // V8_COMPILER_OPCODES_H_ | 404 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |