Class ConstExpressions.i64
- java.lang.Object
-
- de.mirkosertic.bytecoder.core.backend.wasm.ast.ConstExpressions.i64
-
- Enclosing class:
- ConstExpressions
public static class ConstExpressions.i64 extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description i64()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static I64Add
add(WasmValue leftValue, WasmValue rightValue)
static I64And
and(WasmValue leftValue, WasmValue rightValue)
static I64Const
c(java.lang.Long aValue)
static I64DivS
div_s(WasmValue leftValue, WasmValue rightValue)
static I64Eq
eq(WasmValue leftValue, WasmValue rightValue)
static I64ExtendI32S
extend_i32s(WasmValue value)
static I64GeS
ge_s(WasmValue leftValue, WasmValue rightValue)
static I64GtS
gt_s(WasmValue leftValue, WasmValue rightValue)
static I64LeS
le_s(WasmValue leftValue, WasmValue rightValue)
static I64LtS
lt_s(WasmValue leftValue, WasmValue rightValue)
static I64Mul
mul(WasmValue leftValue, WasmValue rightValue)
static I64Ne
ne(WasmValue leftValue, WasmValue rightValue)
static I64Or
or(WasmValue leftValue, WasmValue rightValue)
static I64ReinterpretF64
reinterpretf64(WasmValue value)
static I64RemS
rem_s(WasmValue leftValue, WasmValue rightValue)
static I64Shl
shl(WasmValue leftValue, WasmValue rightValue)
static I64ShrS
shr_s(WasmValue leftValue, WasmValue rightValue)
static I64ShrU
shr_u(WasmValue leftValue, WasmValue rightValue)
static I64Sub
sub(WasmValue leftValue, WasmValue rightValue)
static I64TruncSF32
trunc_sf32(WasmValue value)
static I64TruncSF64
trunc_sf64(WasmValue value)
static I64Xor
xor(WasmValue leftValue, WasmValue rightValue)
-
-
-
Method Detail
-
c
public static I64Const c(java.lang.Long aValue)
-
extend_i32s
public static I64ExtendI32S extend_i32s(WasmValue value)
-
trunc_sf32
public static I64TruncSF32 trunc_sf32(WasmValue value)
-
trunc_sf64
public static I64TruncSF64 trunc_sf64(WasmValue value)
-
reinterpretf64
public static I64ReinterpretF64 reinterpretf64(WasmValue value)
-
-