Class ConstExpressions.i32
- java.lang.Object
-
- de.mirkosertic.bytecoder.core.backend.wasm.ast.ConstExpressions.i32
-
- Enclosing class:
- ConstExpressions
public static class ConstExpressions.i32 extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description i32()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static I32Add
add(WasmValue leftValue, WasmValue rightValue)
static I32And
and(WasmValue leftValue, WasmValue rightValue)
static I32Const
c(int aValue)
static I32Clz
clz(WasmValue value)
static I32Ctz
ctz(WasmValue value)
static I32DivS
div_s(WasmValue leftValue, WasmValue rightValue)
static I32Eq
eq(WasmValue leftValue, WasmValue rightValue)
static I32Eqz
eqz(WasmValue value)
static I32GeS
ge_s(WasmValue leftValue, WasmValue rightValue)
static I32GtS
gt_s(WasmValue leftValue, WasmValue rightValue)
static I32LeS
le_s(WasmValue leftValue, WasmValue rightValue)
static I32LtS
lt_s(WasmValue leftValue, WasmValue rightValue)
static I32Mul
mul(WasmValue leftValue, WasmValue rightValue)
static I32Ne
ne(WasmValue leftValue, WasmValue rightValue)
static I32Or
or(WasmValue leftValue, WasmValue rightValue)
static I32Popcount
popcount(WasmValue value)
static I32ReinterpretF32
reinterpretf32(WasmValue value)
static I32RemS
rem_s(WasmValue leftValue, WasmValue rightValue)
static I32Shl
shl(WasmValue leftValue, WasmValue rightValue)
static I32ShrS
shr_s(WasmValue leftValue, WasmValue rightValue)
static I32ShrU
shr_u(WasmValue leftValue, WasmValue rightValue)
static I32Sub
sub(WasmValue leftValue, WasmValue rightValue)
static I32TruncSF64
trunc_f64s(WasmValue value)
static I32TruncSF32
trunc_sf32(WasmValue value)
static I32WrapI64
wrap_i64(WasmValue value)
static I32Xor
xor(WasmValue leftValue, WasmValue rightValue)
-
-
-
Method Detail
-
c
public static I32Const c(int aValue)
-
popcount
public static I32Popcount popcount(WasmValue value)
-
reinterpretf32
public static I32ReinterpretF32 reinterpretf32(WasmValue value)
-
wrap_i64
public static I32WrapI64 wrap_i64(WasmValue value)
-
trunc_sf32
public static I32TruncSF32 trunc_sf32(WasmValue value)
-
trunc_f64s
public static I32TruncSF64 trunc_f64s(WasmValue value)
-
-