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

Unified Diff: src/compiler/machine-operator.h

Issue 2103733003: [turbofan] Introduce Float64Pow and NumberPow operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE on ARM64 bug fix. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/js-builtin-reducer.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/machine-operator.h
diff --git a/src/compiler/machine-operator.h b/src/compiler/machine-operator.h
index 7c443f44c7ac7e7af3e8e36e7b2b96d74f17e40f..4dd7b9388a05bd8f706f9883a1eff9ca18551691 100644
--- a/src/compiler/machine-operator.h
+++ b/src/compiler/machine-operator.h
@@ -380,6 +380,8 @@ class MachineOperatorBuilder final : public ZoneObject {
// Floating point exponential functions (double-precision).
const Operator* Float64Exp();
+ const Operator* Float64Expm1();
+ const Operator* Float64Pow();
// Floating point logarithm (double-precision).
const Operator* Float64Log();
@@ -387,8 +389,8 @@ class MachineOperatorBuilder final : public ZoneObject {
const Operator* Float64Log2();
const Operator* Float64Log10();
+ // Floating point cube root (double-precision).
const Operator* Float64Cbrt();
- const Operator* Float64Expm1();
// Floating point bit representation.
const Operator* Float64ExtractLowWord32();
« no previous file with comments | « src/compiler/js-builtin-reducer.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698