Uses of Class
de.inetsoftware.jwebassembly.module.WasmOptions
-
Packages that use WasmOptions Package Description de.inetsoftware.jwebassembly.binary de.inetsoftware.jwebassembly.module de.inetsoftware.jwebassembly.text de.inetsoftware.jwebassembly.wasm -
-
Uses of WasmOptions in de.inetsoftware.jwebassembly.binary
Fields in de.inetsoftware.jwebassembly.binary declared as WasmOptions Modifier and Type Field Description private WasmOptions
WasmOutputStream. options
Constructors in de.inetsoftware.jwebassembly.binary with parameters of type WasmOptions Constructor Description BinaryModuleWriter(WasmTarget target, WasmOptions options)
Create new instance.WasmOutputStream(WasmOptions options)
Create a in memory stream.WasmOutputStream(WasmOptions options, java.io.OutputStream output)
Create a wrapped stream. -
Uses of WasmOptions in de.inetsoftware.jwebassembly.module
Fields in de.inetsoftware.jwebassembly.module declared as WasmOptions Modifier and Type Field Description private WasmOptions
BranchManager. options
protected WasmOptions
ModuleWriter. options
The compiler options.private WasmOptions
StaticCodeBuilder. options
(package private) WasmOptions
TypeManager. options
private WasmOptions
WasmCallInterfaceInstruction. options
private WasmOptions
WasmCallVirtualInstruction. options
private WasmOptions
WasmCodeBuilder. options
private WasmOptions
WasmStructInstruction. options
Methods in de.inetsoftware.jwebassembly.module that return WasmOptions Modifier and Type Method Description (package private) WasmOptions
WasmCodeBuilder. getOptions()
Get the compiler settingsMethods in de.inetsoftware.jwebassembly.module with parameters of type WasmOptions Modifier and Type Method Description (package private) void
JavaMethodWasmCodeBuilder. init(WasmOptions options, ClassFileLoader classFileLoader)
Initialize the code builder;(package private) void
WasmCodeBuilder. init(WasmOptions options, ClassFileLoader classFileLoader)
Initialize the code builder;void
TypeManager.StructType. writeToStream(java.io.ByteArrayOutputStream dataStream, java.util.function.ToIntFunction<FunctionName> getFunctionsID, WasmOptions options)
Write the struct/class meta data to the datastream and set the offset position.Constructors in de.inetsoftware.jwebassembly.module with parameters of type WasmOptions Constructor Description BranchManager(WasmOptions options, java.util.List<WasmInstruction> instructions, LocaleVariableManager localVariables)
Create a branch manager.ModuleWriter(WasmOptions options)
Create a instance with its options.StaticCodeBuilder(WasmOptions options, ClassFileLoader classFileLoader, JavaMethodWasmCodeBuilder javaCodeBuilder)
Create a instance with a snapshot of all static class initializer.StringManager(WasmOptions options)
Create a new instance.TypeManager(WasmOptions options)
Initialize the type manager.WasmCallInterfaceInstruction(FunctionName name, int javaCodePos, int lineNumber, TypeManager types, WasmOptions options)
Create an instance of a function call instructionWasmCallVirtualInstruction(FunctionName name, int javaCodePos, int lineNumber, TypeManager types, WasmOptions options)
Create an instance of a function call instruction -
Uses of WasmOptions in de.inetsoftware.jwebassembly.text
Constructors in de.inetsoftware.jwebassembly.text with parameters of type WasmOptions Constructor Description TextModuleWriter(WasmTarget target, WasmOptions options)
Create a new instance. -
Uses of WasmOptions in de.inetsoftware.jwebassembly.wasm
Constructors in de.inetsoftware.jwebassembly.wasm with parameters of type WasmOptions Constructor Description ArrayType(AnyType arrayType, TypeManager manager, int componentClassIndex, WasmOptions options)
Create a new array type
-