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

Unified Diff: src/assembler.h

Issue 1661463002: [wasm] Provide backoff implementations for the Fxx rounding instructions (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@trunc64-external-reference
Patch Set: rebase. Created 4 years, 11 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/api-experimental.cc ('k') | 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 1879872627a8fafac2cc917a97dd4c8d5b8cf946..b489cd7d2853329f41faadbf10487f6be8e6a0eb 100644
--- a/src/assembler.h
+++ b/src/assembler.h
@@ -913,7 +913,14 @@ class ExternalReference BASE_EMBEDDED {
static ExternalReference new_deoptimizer_function(Isolate* isolate);
static ExternalReference compute_output_frames_function(Isolate* isolate);
- static ExternalReference trunc64_wrapper_function(Isolate* isolate);
+ static ExternalReference f32_trunc_wrapper_function(Isolate* isolate);
+ static ExternalReference f32_floor_wrapper_function(Isolate* isolate);
+ static ExternalReference f32_ceil_wrapper_function(Isolate* isolate);
+ static ExternalReference f32_nearest_int_wrapper_function(Isolate* isolate);
+ static ExternalReference f64_trunc_wrapper_function(Isolate* isolate);
+ static ExternalReference f64_floor_wrapper_function(Isolate* isolate);
+ static ExternalReference f64_ceil_wrapper_function(Isolate* isolate);
+ static ExternalReference f64_nearest_int_wrapper_function(Isolate* isolate);
// Log support.
static ExternalReference log_enter_external_function(Isolate* isolate);
« no previous file with comments | « src/api-experimental.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698