diff options
Diffstat (limited to 'chromium/v8/src/wasm/wasm-external-refs.h')
| -rw-r--r-- | chromium/v8/src/wasm/wasm-external-refs.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/chromium/v8/src/wasm/wasm-external-refs.h b/chromium/v8/src/wasm/wasm-external-refs.h index 0a2d5f30602..b41d44e4435 100644 --- a/chromium/v8/src/wasm/wasm-external-refs.h +++ b/chromium/v8/src/wasm/wasm-external-refs.h @@ -45,6 +45,14 @@ V8_EXPORT_PRIVATE int32_t float64_to_int64_wrapper(Address data); V8_EXPORT_PRIVATE int32_t float64_to_uint64_wrapper(Address data); +V8_EXPORT_PRIVATE void float32_to_int64_sat_wrapper(Address data); + +V8_EXPORT_PRIVATE void float32_to_uint64_sat_wrapper(Address data); + +V8_EXPORT_PRIVATE void float64_to_int64_sat_wrapper(Address data); + +V8_EXPORT_PRIVATE void float64_to_uint64_sat_wrapper(Address data); + V8_EXPORT_PRIVATE int32_t int64_div_wrapper(Address data); V8_EXPORT_PRIVATE int32_t int64_mod_wrapper(Address data); @@ -71,6 +79,12 @@ V8_EXPORT_PRIVATE void word64_ror_wrapper(Address data); V8_EXPORT_PRIVATE void float64_pow_wrapper(Address data); +V8_EXPORT_PRIVATE void f32x4_ceil_wrapper(Address data); + +V8_EXPORT_PRIVATE void f32x4_floor_wrapper(Address data); + +V8_EXPORT_PRIVATE void f32x4_trunc_wrapper(Address data); + // The return type is {int32_t} instead of {bool} to enforce the compiler to // zero-extend the result in the return register. int32_t memory_init_wrapper(Address data); |
