Module wasm32
WASM32 intrinsics
Modules
- atomic
- memory
- relaxed_simd
-
simd128
This module implements the [WebAssembly
SIMD128ISA].
Functions
-
f32_ceil
Generates the [
f32.ceil] instruction, returning the smallest integer greater than or equal toa. -
f32_floor
Generates the [
f32.floor] instruction, returning the largest integer less than or equal toa. -
f32_nearest
Generates the [
f32.nearest] instruction, roundinging to the nearest integer. Rounds half-way cases to the number with an even least significant digit. -
f32_sqrt
Generates the [
f32.sqrt] instruction, returning the square root of the numbera. -
f32_trunc
Generates the [
f32.trunc] instruction, roundinging to the nearest integer towards zero. -
f64_ceil
Generates the [
f64.ceil] instruction, returning the smallest integer greater than or equal toa. -
f64_floor
Generates the [
f64.floor] instruction, returning the largest integer less than or equal toa. -
f64_nearest
Generates the [
f64.nearest] instruction, roundinging to the nearest integer. Rounds half-way cases to the number with an even least significant digit. -
f64_sqrt
Generates the [
f64.sqrt] instruction, returning the square root of the numbera. -
f64_trunc
Generates the [
f64.trunc] instruction, roundinging to the nearest integer towards zero. -
unreachable
Generates the
unreachableinstruction, which causes an unconditional [trap].