Struct wasmtime::CodeBuilder

source ·
pub struct CodeBuilder<'a> { /* private fields */ }
Expand description

Builder-style structure used to create a Module or pre-compile a module to a serialized list of bytes.

This structure can be used for more advanced configuration when compiling a WebAssembly module. Most configuration can use simpler constructors such as:

Note that a CodeBuilder always involves compiling WebAssembly bytes to machine code. To deserialize a list of bytes use Module::deserialize instead.

A CodeBuilder requires a source of WebAssembly bytes to be configured before calling compile_module_serialized or compile_module. This can be provided with either the wasm or wasm_file method. Note that only a single source of bytes can be provided.

§WebAssembly Text Format

This builder supports the WebAssembly Text Format (*.wat files). WebAssembly text files are automatically converted to a WebAssembly binary and then the binary is compiled. This requires the wat feature of the wasmtime crate to be enabled, and the feature is enabled by default.

If the text format is not desired then the CodeBuilder::wat method can be used to disable this conversion.

Implementations§

source§

impl<'a> CodeBuilder<'a>

source

pub fn new(engine: &'a Engine) -> CodeBuilder<'a>

Creates a new builder which will insert modules into the specified Engine.

source

pub fn wasm( &mut self, wasm_bytes: &'a [u8], wasm_path: Option<&'a Path> ) -> Result<&mut Self>

Configures the WebAssembly binary or text that is being compiled.

The wasm_bytes parameter is either a binary WebAssembly file or a WebAssembly module in its text format. This will be stored within the CodeBuilder for processing later when compilation is finalized.

The optional wasm_path parameter is the path to the wasm_bytes on disk, if any. This may be used for diagnostics and other debugging-related purposes, but this method will not read the path specified.

§Errors

If wasm bytes have already been configured via a call to this method or CodeBuilder::wasm_file then an error will be returned.

source

pub fn wat(&mut self, enable: bool) -> Result<&mut Self>

Configures whether the WebAssembly text format is supported in this builder.

This support is enabled by default if the wat crate feature is also enabled.

§Errors

If this feature is explicitly enabled here via this method and the wat crate feature is disabled then an error will be returned.

source

pub fn wasm_file(&mut self, file: &'a Path) -> Result<&mut Self>

Reads the file specified for the WebAssembly bytes that are going to be compiled.

This method will read file from the filesystem and interpret it either as a WebAssembly binary or as a WebAssembly text file. The contents are inspected to do this, the file extension is not consulted.

A DWARF package file will be probed using the root of file and with a .dwp extension. If found, it will be loaded and DWARF fusion performed.

§Errors

If wasm bytes have already been configured via a call to this method or CodeBuilder::wasm then an error will be returned.

If file can’t be read or an error happens reading it then that will also be returned.

If DWARF fusion is performed and the DWARF packaged file cannot be read then an error will be returned.

source

pub fn dwarf_package_file(&mut self, file: &Path) -> Result<&mut Self>

Explicitly specify DWARF .dwp path.

§Errors

This method will return an error if the .dwp file has already been set through CodeBuilder::dwarf_package or auto-detection in CodeBuilder::wasm_file.

This method will also return an error if file cannot be read.

source

pub fn dwarf_package(&mut self, dwp_bytes: &'a [u8]) -> Result<&mut Self>

Set the DWARF package binary.

Initializes dwarf_package from dwp_bytes in preparation for DWARF fusion. Allows the DWARF package to be supplied as a byte array when the file probing performed in wasm_file is not appropriate.

§Errors

Returns an error if the *.dwp file is already set via auto-probing in CodeBuilder::wasm_file or explicitly via CodeBuilder::dwarf_package_file.

source

pub fn compile_module_serialized(&self) -> Result<Vec<u8>>

Finishes this compilation and produces a serialized list of bytes.

This method requires that either CodeBuilder::wasm or CodeBuilder::wasm_file was invoked prior to indicate what is being compiled.

This method will block the current thread until compilation has finished, and when done the serialized artifact will be returned.

Note that this method will never cache compilations, even if the cache feature is enabled.

§Errors

This can fail if the input wasm module was not valid or if another compilation-related error is encountered.

source

pub fn compile_component_serialized(&self) -> Result<Vec<u8>>

Available on crate feature component-model only.

Same as CodeBuilder::compile_module_serialized except that it compiles a serialized Component instead of a module.

source§

impl<'a> CodeBuilder<'a>

source

pub fn compile_module(&self) -> Result<Module>

Available on crate feature runtime only.

Same as CodeBuilder::compile_module_serialized except that a Module is produced instead.

Note that this method will cache compilations if the cache feature is enabled and turned on in Config.

source

pub fn compile_component(&self) -> Result<Component>

Available on crate features runtime and component-model only.

Same as CodeBuilder::compile_module except that it compiles a Component instead of a module.

Auto Trait Implementations§

§

impl<'a> Freeze for CodeBuilder<'a>

§

impl<'a> !RefUnwindSafe for CodeBuilder<'a>

§

impl<'a> Send for CodeBuilder<'a>

§

impl<'a> Sync for CodeBuilder<'a>

§

impl<'a> Unpin for CodeBuilder<'a>

§

impl<'a> !UnwindSafe for CodeBuilder<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.