| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 const OptionalOperator Float32RoundTiesEven(); | 364 const OptionalOperator Float32RoundTiesEven(); |
| 365 const OptionalOperator Float64RoundTiesEven(); | 365 const OptionalOperator Float64RoundTiesEven(); |
| 366 | 366 |
| 367 // Floating point neg. | 367 // Floating point neg. |
| 368 const OptionalOperator Float32Neg(); | 368 const OptionalOperator Float32Neg(); |
| 369 const OptionalOperator Float64Neg(); | 369 const OptionalOperator Float64Neg(); |
| 370 | 370 |
| 371 // Floating point trigonometric functions (double-precision). | 371 // Floating point trigonometric functions (double-precision). |
| 372 const Operator* Float64Atan(); | 372 const Operator* Float64Atan(); |
| 373 const Operator* Float64Atan2(); | 373 const Operator* Float64Atan2(); |
| 374 const Operator* Float64Atanh(); |
| 374 | 375 |
| 375 // Floating point exponential functions. | 376 // Floating point exponential functions. |
| 376 const Operator* Float64Exp(); | 377 const Operator* Float64Exp(); |
| 377 | 378 |
| 378 // Floating point logarithm (double-precision). | 379 // Floating point logarithm (double-precision). |
| 379 const Operator* Float64Log(); | 380 const Operator* Float64Log(); |
| 380 const Operator* Float64Log1p(); | 381 const Operator* Float64Log1p(); |
| 381 const Operator* Float64Log2(); | 382 const Operator* Float64Log2(); |
| 382 const Operator* Float64Log10(); | 383 const Operator* Float64Log10(); |
| 383 | 384 |
| 385 const Operator* Float64Cbrt(); |
| 386 const Operator* Float64Expm1(); |
| 387 |
| 384 // Floating point bit representation. | 388 // Floating point bit representation. |
| 385 const Operator* Float64ExtractLowWord32(); | 389 const Operator* Float64ExtractLowWord32(); |
| 386 const Operator* Float64ExtractHighWord32(); | 390 const Operator* Float64ExtractHighWord32(); |
| 387 const Operator* Float64InsertLowWord32(); | 391 const Operator* Float64InsertLowWord32(); |
| 388 const Operator* Float64InsertHighWord32(); | 392 const Operator* Float64InsertHighWord32(); |
| 389 | 393 |
| 390 // Change signalling NaN to quiet NaN. | 394 // Change signalling NaN to quiet NaN. |
| 391 // Identity for any input that is not signalling NaN. | 395 // Identity for any input that is not signalling NaN. |
| 392 const Operator* Float64SilenceNaN(); | 396 const Operator* Float64SilenceNaN(); |
| 393 | 397 |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 }; | 660 }; |
| 657 | 661 |
| 658 | 662 |
| 659 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) | 663 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) |
| 660 | 664 |
| 661 } // namespace compiler | 665 } // namespace compiler |
| 662 } // namespace internal | 666 } // namespace internal |
| 663 } // namespace v8 | 667 } // namespace v8 |
| 664 | 668 |
| 665 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ | 669 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ |
| OLD | NEW |