Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: src/compiler/machine-operator.h

Issue 2077533002: [builtins] Introduce proper Float64Exp operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Import tests from Raymond. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 374
375 // Floating point exponential functions.
376 const Operator* Float64Exp();
377
375 // Floating point logarithm (double-precision). 378 // Floating point logarithm (double-precision).
376 const Operator* Float64Log(); 379 const Operator* Float64Log();
377 const Operator* Float64Log1p(); 380 const Operator* Float64Log1p();
378 const Operator* Float64Log2(); 381 const Operator* Float64Log2();
379 const Operator* Float64Log10(); 382 const Operator* Float64Log10();
380 383
381 // Floating point bit representation. 384 // Floating point bit representation.
382 const Operator* Float64ExtractLowWord32(); 385 const Operator* Float64ExtractLowWord32();
383 const Operator* Float64ExtractHighWord32(); 386 const Operator* Float64ExtractHighWord32();
384 const Operator* Float64InsertLowWord32(); 387 const Operator* Float64InsertLowWord32();
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 }; 656 };
654 657
655 658
656 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) 659 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags)
657 660
658 } // namespace compiler 661 } // namespace compiler
659 } // namespace internal 662 } // namespace internal
660 } // namespace v8 663 } // namespace v8
661 664
662 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ 665 #endif // V8_COMPILER_MACHINE_OPERATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698