| 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 const Operator* Float64Atan2(); | 373 const Operator* Float64Atan2(); |
| 374 const Operator* Float64Atanh(); | 374 const Operator* Float64Atanh(); |
| 375 | 375 |
| 376 // Floating point trigonometric functions (double-precision). | 376 // Floating point trigonometric functions (double-precision). |
| 377 const Operator* Float64Cos(); | 377 const Operator* Float64Cos(); |
| 378 const Operator* Float64Sin(); | 378 const Operator* Float64Sin(); |
| 379 const Operator* Float64Tan(); | 379 const Operator* Float64Tan(); |
| 380 | 380 |
| 381 // Floating point exponential functions (double-precision). | 381 // Floating point exponential functions (double-precision). |
| 382 const Operator* Float64Exp(); | 382 const Operator* Float64Exp(); |
| 383 const Operator* Float64Expm1(); |
| 384 const Operator* Float64Pow(); |
| 383 | 385 |
| 384 // Floating point logarithm (double-precision). | 386 // Floating point logarithm (double-precision). |
| 385 const Operator* Float64Log(); | 387 const Operator* Float64Log(); |
| 386 const Operator* Float64Log1p(); | 388 const Operator* Float64Log1p(); |
| 387 const Operator* Float64Log2(); | 389 const Operator* Float64Log2(); |
| 388 const Operator* Float64Log10(); | 390 const Operator* Float64Log10(); |
| 389 | 391 |
| 392 // Floating point cube root (double-precision). |
| 390 const Operator* Float64Cbrt(); | 393 const Operator* Float64Cbrt(); |
| 391 const Operator* Float64Expm1(); | |
| 392 | 394 |
| 393 // Floating point bit representation. | 395 // Floating point bit representation. |
| 394 const Operator* Float64ExtractLowWord32(); | 396 const Operator* Float64ExtractLowWord32(); |
| 395 const Operator* Float64ExtractHighWord32(); | 397 const Operator* Float64ExtractHighWord32(); |
| 396 const Operator* Float64InsertLowWord32(); | 398 const Operator* Float64InsertLowWord32(); |
| 397 const Operator* Float64InsertHighWord32(); | 399 const Operator* Float64InsertHighWord32(); |
| 398 | 400 |
| 399 // Change signalling NaN to quiet NaN. | 401 // Change signalling NaN to quiet NaN. |
| 400 // Identity for any input that is not signalling NaN. | 402 // Identity for any input that is not signalling NaN. |
| 401 const Operator* Float64SilenceNaN(); | 403 const Operator* Float64SilenceNaN(); |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 665 }; | 667 }; |
| 666 | 668 |
| 667 | 669 |
| 668 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) | 670 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) |
| 669 | 671 |
| 670 } // namespace compiler | 672 } // namespace compiler |
| 671 } // namespace internal | 673 } // namespace internal |
| 672 } // namespace v8 | 674 } // namespace v8 |
| 673 | 675 |
| 674 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ | 676 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ |
| OLD | NEW |