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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 const OptionalOperator Float32RoundTruncate(); | 360 const OptionalOperator Float32RoundTruncate(); |
361 const OptionalOperator Float64RoundTruncate(); | 361 const OptionalOperator Float64RoundTruncate(); |
362 const OptionalOperator Float64RoundTiesAway(); | 362 const OptionalOperator Float64RoundTiesAway(); |
363 const OptionalOperator Float32RoundTiesEven(); | 363 const OptionalOperator Float32RoundTiesEven(); |
364 const OptionalOperator Float64RoundTiesEven(); | 364 const OptionalOperator Float64RoundTiesEven(); |
365 | 365 |
366 // Floating point neg. | 366 // Floating point neg. |
367 const OptionalOperator Float32Neg(); | 367 const OptionalOperator Float32Neg(); |
368 const OptionalOperator Float64Neg(); | 368 const OptionalOperator Float64Neg(); |
369 | 369 |
| 370 // Floating point logarithm (double-precision). |
| 371 const Operator* Float64Log(); |
| 372 |
370 // Floating point bit representation. | 373 // Floating point bit representation. |
371 const Operator* Float64ExtractLowWord32(); | 374 const Operator* Float64ExtractLowWord32(); |
372 const Operator* Float64ExtractHighWord32(); | 375 const Operator* Float64ExtractHighWord32(); |
373 const Operator* Float64InsertLowWord32(); | 376 const Operator* Float64InsertLowWord32(); |
374 const Operator* Float64InsertHighWord32(); | 377 const Operator* Float64InsertHighWord32(); |
375 | 378 |
376 // SIMD operators. | 379 // SIMD operators. |
377 const Operator* CreateFloat32x4(); | 380 const Operator* CreateFloat32x4(); |
378 const Operator* Float32x4ExtractLane(); | 381 const Operator* Float32x4ExtractLane(); |
379 const Operator* Float32x4ReplaceLane(); | 382 const Operator* Float32x4ReplaceLane(); |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
637 }; | 640 }; |
638 | 641 |
639 | 642 |
640 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) | 643 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) |
641 | 644 |
642 } // namespace compiler | 645 } // namespace compiler |
643 } // namespace internal | 646 } // namespace internal |
644 } // namespace v8 | 647 } // namespace v8 |
645 | 648 |
646 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ | 649 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ |
OLD | NEW |