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

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

Issue 2068743002: [builtins] Unify Atanh, Cbrt and Expm1 as exports from flibm. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed type warning. 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 2478e3fe5a23b650c40052ac290c08b02280b625..2b19d93e281c9e568278582e9317f33578ae4be4 100644
--- a/src/compiler/machine-operator.h
+++ b/src/compiler/machine-operator.h
@@ -371,6 +371,7 @@ class MachineOperatorBuilder final : public ZoneObject {
// Floating point trigonometric functions (double-precision).
const Operator* Float64Atan();
const Operator* Float64Atan2();
+ const Operator* Float64Atanh();
// Floating point exponential functions.
const Operator* Float64Exp();
@@ -381,6 +382,9 @@ class MachineOperatorBuilder final : public ZoneObject {
const Operator* Float64Log2();
const Operator* Float64Log10();
+ const Operator* Float64Cbrt();
+ const Operator* Float64Expm1();
+
// Floating point bit representation.
const Operator* Float64ExtractLowWord32();
const Operator* Float64ExtractHighWord32();
« 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