Uses of Class
org.teavm.backend.wasm.model.WasmType
-
Packages that use WasmType Package Description org.teavm.backend.wasm.generate org.teavm.backend.wasm.intrinsics org.teavm.backend.wasm.model org.teavm.backend.wasm.model.expression org.teavm.backend.wasm.render -
-
Uses of WasmType in org.teavm.backend.wasm.generate
Methods in org.teavm.backend.wasm.generate that return WasmType Modifier and Type Method Description static WasmTypeWasmGeneratorUtil. mapType(OperationType type)static WasmTypeWasmGeneratorUtil. mapType(VariableType type)static WasmTypeWasmGeneratorUtil. mapType(ValueType type) -
Uses of WasmType in org.teavm.backend.wasm.intrinsics
Methods in org.teavm.backend.wasm.intrinsics with parameters of type WasmType Modifier and Type Method Description WasmLocalWasmIntrinsicManager. getTemporary(WasmType type) -
Uses of WasmType in org.teavm.backend.wasm.model
Methods in org.teavm.backend.wasm.model that return WasmType Modifier and Type Method Description WasmTypeWasmFunction. getResult()WasmTypeWasmLocal. getType()static WasmTypeWasmType. valueOf(String name)Returns the enum constant of this type with the specified name.static WasmType[]WasmType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.teavm.backend.wasm.model that return types with arguments of type WasmType Modifier and Type Method Description List<WasmType>WasmFunction. getParameters()Methods in org.teavm.backend.wasm.model with parameters of type WasmType Modifier and Type Method Description voidWasmFunction. setResult(WasmType result)voidWasmLocal. setType(WasmType type)Constructors in org.teavm.backend.wasm.model with parameters of type WasmType Constructor Description WasmLocal(WasmType type)WasmLocal(WasmType type, String name) -
Uses of WasmType in org.teavm.backend.wasm.model.expression
Methods in org.teavm.backend.wasm.model.expression that return WasmType Modifier and Type Method Description WasmTypeWasmIndirectCall. getReturnType()WasmTypeWasmConversion. getSourceType()WasmTypeWasmConversion. getTargetType()WasmTypeWasmBlock. getType()WasmTypeWasmConditional. getType()Methods in org.teavm.backend.wasm.model.expression that return types with arguments of type WasmType Modifier and Type Method Description List<WasmType>WasmIndirectCall. getParameterTypes()Methods in org.teavm.backend.wasm.model.expression with parameters of type WasmType Modifier and Type Method Description voidWasmIndirectCall. setReturnType(WasmType returnType)voidWasmConversion. setSourceType(WasmType sourceType)voidWasmConversion. setTargetType(WasmType targetType)voidWasmBlock. setType(WasmType type)voidWasmConditional. setType(WasmType type)Constructors in org.teavm.backend.wasm.model.expression with parameters of type WasmType Constructor Description WasmConversion(WasmType sourceType, WasmType targetType, boolean signed, WasmExpression operand) -
Uses of WasmType in org.teavm.backend.wasm.render
Methods in org.teavm.backend.wasm.render that return WasmType Modifier and Type Method Description WasmTypeWasmTypeInference. getResult()Methods in org.teavm.backend.wasm.render with parameters of type WasmType Modifier and Type Method Description voidWasmBinaryWriter. writeType(WasmType type, WasmBinaryVersion version)
-