| 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 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* Float64Cosh(); |
| 378 const Operator* Float64Sin(); | 379 const Operator* Float64Sin(); |
| 380 const Operator* Float64Sinh(); |
| 379 const Operator* Float64Tan(); | 381 const Operator* Float64Tan(); |
| 382 const Operator* Float64Tanh(); |
| 380 | 383 |
| 381 // Floating point exponential functions (double-precision). | 384 // Floating point exponential functions (double-precision). |
| 382 const Operator* Float64Exp(); | 385 const Operator* Float64Exp(); |
| 383 const Operator* Float64Expm1(); | 386 const Operator* Float64Expm1(); |
| 384 const Operator* Float64Pow(); | 387 const Operator* Float64Pow(); |
| 385 | 388 |
| 386 // Floating point logarithm (double-precision). | 389 // Floating point logarithm (double-precision). |
| 387 const Operator* Float64Log(); | 390 const Operator* Float64Log(); |
| 388 const Operator* Float64Log1p(); | 391 const Operator* Float64Log1p(); |
| 389 const Operator* Float64Log2(); | 392 const Operator* Float64Log2(); |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 667 }; | 670 }; |
| 668 | 671 |
| 669 | 672 |
| 670 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) | 673 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) |
| 671 | 674 |
| 672 } // namespace compiler | 675 } // namespace compiler |
| 673 } // namespace internal | 676 } // namespace internal |
| 674 } // namespace v8 | 677 } // namespace v8 |
| 675 | 678 |
| 676 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ | 679 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ |
| OLD | NEW |