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

Unified Diff: src/assembler.cc

Issue 2107733002: [wasm] Use the new Float64Pow TF operator to implement F64Pow. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@bmeurer-float64pow
Patch Set: Rebase. 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/assembler.h ('k') | src/compiler/wasm-compiler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/assembler.cc
diff --git a/src/assembler.cc b/src/assembler.cc
index 421fed6ac62b1cc53f6984532e49d17cc12461d1..38d5aa6575a64820eb87ebf6d659ed3c8c757347 100644
--- a/src/assembler.cc
+++ b/src/assembler.cc
@@ -1259,16 +1259,6 @@ ExternalReference ExternalReference::f64_asin_wrapper_function(
return ExternalReference(Redirect(isolate, FUNCTION_ADDR(f64_asin_wrapper)));
}
-static void f64_pow_wrapper(double* param0, double* param1) {
- WriteDoubleValue(param0, power_double_double(ReadDoubleValue(param0),
- ReadDoubleValue(param1)));
-}
-
-ExternalReference ExternalReference::f64_pow_wrapper_function(
- Isolate* isolate) {
- return ExternalReference(Redirect(isolate, FUNCTION_ADDR(f64_pow_wrapper)));
-}
-
static void f64_mod_wrapper(double* param0, double* param1) {
WriteDoubleValue(param0,
modulo(ReadDoubleValue(param0), ReadDoubleValue(param1)));
« no previous file with comments | « src/assembler.h ('k') | src/compiler/wasm-compiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698