| 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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 const OptionalOperator Float64RoundTiesAway(); | 363 const OptionalOperator Float64RoundTiesAway(); |
| 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 logarithm (double-precision). | 371 // Floating point logarithm (double-precision). |
| 372 const Operator* Float64Log(); | 372 const Operator* Float64Log(); |
| 373 const Operator* Float64Log1p(); |
| 373 | 374 |
| 374 // Floating point bit representation. | 375 // Floating point bit representation. |
| 375 const Operator* Float64ExtractLowWord32(); | 376 const Operator* Float64ExtractLowWord32(); |
| 376 const Operator* Float64ExtractHighWord32(); | 377 const Operator* Float64ExtractHighWord32(); |
| 377 const Operator* Float64InsertLowWord32(); | 378 const Operator* Float64InsertLowWord32(); |
| 378 const Operator* Float64InsertHighWord32(); | 379 const Operator* Float64InsertHighWord32(); |
| 379 | 380 |
| 380 // SIMD operators. | 381 // SIMD operators. |
| 381 const Operator* CreateFloat32x4(); | 382 const Operator* CreateFloat32x4(); |
| 382 const Operator* Float32x4ExtractLane(); | 383 const Operator* Float32x4ExtractLane(); |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 642 }; | 643 }; |
| 643 | 644 |
| 644 | 645 |
| 645 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) | 646 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) |
| 646 | 647 |
| 647 } // namespace compiler | 648 } // namespace compiler |
| 648 } // namespace internal | 649 } // namespace internal |
| 649 } // namespace v8 | 650 } // namespace v8 |
| 650 | 651 |
| 651 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ | 652 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ |
| OLD | NEW |