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

Unified Diff: src/assembler.h

Issue 1738623003: [wasm] Int64Lowering of FXXXConvertI64 instructions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Another try on windows. 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') | src/assembler.cc » ('J')
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 7bd9ee65f2c98c7622e34df862d4d72f5d9bee95..05539c2985baad439af4cb7e4bffb26209ca7a74 100644
--- a/src/assembler.h
+++ b/src/assembler.h
@@ -913,14 +913,18 @@ class ExternalReference BASE_EMBEDDED {
static ExternalReference new_deoptimizer_function(Isolate* isolate);
static ExternalReference compute_output_frames_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);
+ static ExternalReference wasm_f32_trunc(Isolate* isolate);
+ static ExternalReference wasm_f32_floor(Isolate* isolate);
+ static ExternalReference wasm_f32_ceil(Isolate* isolate);
+ static ExternalReference wasm_f32_nearest_int(Isolate* isolate);
+ static ExternalReference wasm_f64_trunc(Isolate* isolate);
+ static ExternalReference wasm_f64_floor(Isolate* isolate);
+ static ExternalReference wasm_f64_ceil(Isolate* isolate);
+ static ExternalReference wasm_f64_nearest_int(Isolate* isolate);
+ static ExternalReference wasm_int64_to_float32(Isolate* isolate);
+ static ExternalReference wasm_uint64_to_float32(Isolate* isolate);
+ static ExternalReference wasm_int64_to_float64(Isolate* isolate);
+ static ExternalReference wasm_uint64_to_float64(Isolate* isolate);
// Log support.
static ExternalReference log_enter_external_function(Isolate* isolate);
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | src/assembler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698