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

Unified Diff: src/assembler.h

Issue 1729833002: Add wasm internal opcodes for asm.js stdlib functions we're missing. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 4 years, 10 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 | « no previous file | src/assembler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/assembler.h
diff --git a/src/assembler.h b/src/assembler.h
index 2224b9fb12e2363e681bf3c0b711a717ad226929..61c7467d75d34ee2700398e321155d6b7ca49b04 100644
--- a/src/assembler.h
+++ b/src/assembler.h
@@ -923,6 +923,18 @@ class ExternalReference BASE_EMBEDDED {
static ExternalReference f64_ceil_wrapper_function(Isolate* isolate);
static ExternalReference f64_nearest_int_wrapper_function(Isolate* isolate);
+ static ExternalReference f64_acos_wrapper_function(Isolate* isolate);
+ static ExternalReference f64_asin_wrapper_function(Isolate* isolate);
+ static ExternalReference f64_atan_wrapper_function(Isolate* isolate);
+ static ExternalReference f64_cos_wrapper_function(Isolate* isolate);
+ static ExternalReference f64_sin_wrapper_function(Isolate* isolate);
+ static ExternalReference f64_tan_wrapper_function(Isolate* isolate);
+ static ExternalReference f64_exp_wrapper_function(Isolate* isolate);
+ static ExternalReference f64_log_wrapper_function(Isolate* isolate);
+ static ExternalReference f64_atan2_wrapper_function(Isolate* isolate);
+ static ExternalReference f64_pow_wrapper_function(Isolate* isolate);
+ static ExternalReference f64_mod_wrapper_function(Isolate* isolate);
+
// Log support.
static ExternalReference log_enter_external_function(Isolate* isolate);
static ExternalReference log_leave_external_function(Isolate* isolate);
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698