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_MACHINE_OPERATOR_H_ | 5 #ifndef V8_COMPILER_MACHINE_OPERATOR_H_ |
6 #define V8_COMPILER_MACHINE_OPERATOR_H_ | 6 #define V8_COMPILER_MACHINE_OPERATOR_H_ |
7 | 7 |
8 #include "src/base/flags.h" | 8 #include "src/base/flags.h" |
9 #include "src/machine-type.h" | 9 #include "src/machine-type.h" |
10 | 10 |
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 // Floating point logarithm (double-precision). | 375 // Floating point logarithm (double-precision). |
376 const Operator* Float64Log(); | 376 const Operator* Float64Log(); |
377 const Operator* Float64Log1p(); | 377 const Operator* Float64Log1p(); |
378 | 378 |
379 // Floating point bit representation. | 379 // Floating point bit representation. |
380 const Operator* Float64ExtractLowWord32(); | 380 const Operator* Float64ExtractLowWord32(); |
381 const Operator* Float64ExtractHighWord32(); | 381 const Operator* Float64ExtractHighWord32(); |
382 const Operator* Float64InsertLowWord32(); | 382 const Operator* Float64InsertLowWord32(); |
383 const Operator* Float64InsertHighWord32(); | 383 const Operator* Float64InsertHighWord32(); |
384 | 384 |
| 385 // Change signalling NaN to quiet NaN. |
| 386 // Identity for any input that is not signalling NaN. |
| 387 const Operator* Float64SilenceNaN(); |
| 388 |
385 // SIMD operators. | 389 // SIMD operators. |
386 const Operator* CreateFloat32x4(); | 390 const Operator* CreateFloat32x4(); |
387 const Operator* Float32x4ExtractLane(); | 391 const Operator* Float32x4ExtractLane(); |
388 const Operator* Float32x4ReplaceLane(); | 392 const Operator* Float32x4ReplaceLane(); |
389 const Operator* Float32x4Abs(); | 393 const Operator* Float32x4Abs(); |
390 const Operator* Float32x4Neg(); | 394 const Operator* Float32x4Neg(); |
391 const Operator* Float32x4Sqrt(); | 395 const Operator* Float32x4Sqrt(); |
392 const Operator* Float32x4RecipApprox(); | 396 const Operator* Float32x4RecipApprox(); |
393 const Operator* Float32x4RecipSqrtApprox(); | 397 const Operator* Float32x4RecipSqrtApprox(); |
394 const Operator* Float32x4Add(); | 398 const Operator* Float32x4Add(); |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
647 }; | 651 }; |
648 | 652 |
649 | 653 |
650 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) | 654 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) |
651 | 655 |
652 } // namespace compiler | 656 } // namespace compiler |
653 } // namespace internal | 657 } // namespace internal |
654 } // namespace v8 | 658 } // namespace v8 |
655 | 659 |
656 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ | 660 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ |
OLD | NEW |