| 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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 const OptionalOperator Float64RoundTruncate(); | 366 const OptionalOperator Float64RoundTruncate(); |
| 367 const OptionalOperator Float64RoundTiesAway(); | 367 const OptionalOperator Float64RoundTiesAway(); |
| 368 const OptionalOperator Float32RoundTiesEven(); | 368 const OptionalOperator Float32RoundTiesEven(); |
| 369 const OptionalOperator Float64RoundTiesEven(); | 369 const OptionalOperator Float64RoundTiesEven(); |
| 370 | 370 |
| 371 // Floating point neg. | 371 // Floating point neg. |
| 372 const OptionalOperator Float32Neg(); | 372 const OptionalOperator Float32Neg(); |
| 373 const OptionalOperator Float64Neg(); | 373 const OptionalOperator Float64Neg(); |
| 374 | 374 |
| 375 // Floating point trigonometric functions (double-precision). | 375 // Floating point trigonometric functions (double-precision). |
| 376 const Operator* Float64Acos(); |
| 377 const Operator* Float64Acosh(); |
| 378 const Operator* Float64Asin(); |
| 379 const Operator* Float64Asinh(); |
| 376 const Operator* Float64Atan(); | 380 const Operator* Float64Atan(); |
| 377 const Operator* Float64Atan2(); | 381 const Operator* Float64Atan2(); |
| 378 const Operator* Float64Atanh(); | 382 const Operator* Float64Atanh(); |
| 379 | |
| 380 // Floating point trigonometric functions (double-precision). | |
| 381 const Operator* Float64Cos(); | 383 const Operator* Float64Cos(); |
| 382 const Operator* Float64Cosh(); | 384 const Operator* Float64Cosh(); |
| 383 const Operator* Float64Sin(); | 385 const Operator* Float64Sin(); |
| 384 const Operator* Float64Sinh(); | 386 const Operator* Float64Sinh(); |
| 385 const Operator* Float64Tan(); | 387 const Operator* Float64Tan(); |
| 386 const Operator* Float64Tanh(); | 388 const Operator* Float64Tanh(); |
| 387 | 389 |
| 388 // Floating point exponential functions (double-precision). | 390 // Floating point exponential functions (double-precision). |
| 389 const Operator* Float64Exp(); | 391 const Operator* Float64Exp(); |
| 390 const Operator* Float64Expm1(); | 392 const Operator* Float64Expm1(); |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 674 }; | 676 }; |
| 675 | 677 |
| 676 | 678 |
| 677 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) | 679 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) |
| 678 | 680 |
| 679 } // namespace compiler | 681 } // namespace compiler |
| 680 } // namespace internal | 682 } // namespace internal |
| 681 } // namespace v8 | 683 } // namespace v8 |
| 682 | 684 |
| 683 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ | 685 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ |
| OLD | NEW |