Uses of Class
de.mirkosertic.bytecoder.core.backend.wasm.ast.Local
-
Packages that use Local Package Description de.mirkosertic.bytecoder.core.backend.wasm de.mirkosertic.bytecoder.core.backend.wasm.ast -
-
Uses of Local in de.mirkosertic.bytecoder.core.backend.wasm
Fields in de.mirkosertic.bytecoder.core.backend.wasm with type parameters of type Local Modifier and Type Field Description private java.util.Map<AbstractVar,Local>
WasmStructuredControlflowCodeGenerator. varLocalMap
-
Uses of Local in de.mirkosertic.bytecoder.core.backend.wasm.ast
Subclasses of Local in de.mirkosertic.bytecoder.core.backend.wasm.ast Modifier and Type Class Description class
Param
Fields in de.mirkosertic.bytecoder.core.backend.wasm.ast declared as Local Modifier and Type Field Description private Local
GetLocal. local
private Local
SetLocal. local
private Local
TeeLocal. local
Fields in de.mirkosertic.bytecoder.core.backend.wasm.ast with type parameters of type Local Modifier and Type Field Description private java.util.List<Local>
LocalIndex. locals
Methods in de.mirkosertic.bytecoder.core.backend.wasm.ast that return Local Modifier and Type Method Description Local
ExportableFunction. localByLabel(java.lang.String label)
Local
LocalIndex. localByLabel(java.lang.String name)
Local
ExportableFunction. newLocal(java.lang.String label, WasmType type)
Methods in de.mirkosertic.bytecoder.core.backend.wasm.ast that return types with arguments of type Local Modifier and Type Method Description java.util.List<Local>
LocalIndex. localsExcludingParams()
Methods in de.mirkosertic.bytecoder.core.backend.wasm.ast with parameters of type Local Modifier and Type Method Description void
LocalIndex. add(Local local)
static GetLocal
ConstExpressions. getLocal(Local local)
int
LocalIndex. indexOf(Local local)
void
Expressions. setLocal(Local local, WasmValue value)
static TeeLocal
ConstExpressions. teeLocal(Local local)
static TeeLocal
ConstExpressions. teeLocal(Local local, WasmValue value)
Constructors in de.mirkosertic.bytecoder.core.backend.wasm.ast with parameters of type Local Constructor Description GetLocal(Local local)
SetLocal(Local local, WasmValue value)
TeeLocal(Local local, WasmValue value)
-