Struct wasm_encoder::CodeSection

source ·
pub struct CodeSection { /* private fields */ }
Expand description

An encoder for the code section.

Code sections are only supported for modules.

§Example

use wasm_encoder::{
    CodeSection, Function, FunctionSection, Instruction, Module,
    TypeSection, ValType
};

let mut types = TypeSection::new();
types.function(vec![], vec![ValType::I32]);

let mut functions = FunctionSection::new();
let type_index = 0;
functions.function(type_index);

let locals = vec![];
let mut func = Function::new(locals);
func.instruction(&Instruction::I32Const(42));
let mut code = CodeSection::new();
code.function(&func);

let mut module = Module::new();
module
    .section(&types)
    .section(&functions)
    .section(&code);

let wasm_bytes = module.finish();

Implementations§

source§

impl CodeSection

source

pub fn new() -> Self

Create a new code section encoder.

source

pub fn len(&self) -> u32

The number of functions in the section.

source

pub fn byte_len(&self) -> usize

The number of bytes already added to this section.

This number doesn’t include the vector length that precedes the code entries, since it has a variable size that isn’t known until all functions are added.

source

pub fn is_empty(&self) -> bool

Determines if the section is empty.

source

pub fn function(&mut self, func: &Function) -> &mut Self

Write a function body into this code section.

source

pub fn raw(&mut self, data: &[u8]) -> &mut Self

Add a raw byte slice into this code section as a function body.

The length prefix of the function body will be automatically prepended, and should not be included in the raw byte slice.

§Example

You can use the raw method to copy an already-encoded function body into a new code section encoder:

//                  id, size, # entries, entry
let code_section = [10, 6,    1,         4, 0, 65, 0, 11];

// Parse the code section.
let reader = BinaryReader::new(&code_section, 0, WasmFeatures::all());
let reader = CodeSectionReader::new(reader).unwrap();
let body = reader.into_iter().next().unwrap().unwrap();
let body_range = body.range();

// Add the body to a new code section encoder by copying bytes rather
// than re-parsing and re-encoding it.
let mut encoder = wasm_encoder::CodeSection::new();
encoder.raw(&code_section[body_range.start..body_range.end]);

Trait Implementations§

source§

impl Clone for CodeSection

source§

fn clone(&self) -> CodeSection

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for CodeSection

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for CodeSection

source§

fn default() -> CodeSection

Returns the “default value” for a type. Read more
source§

impl Encode for CodeSection

source§

fn encode(&self, sink: &mut Vec<u8>)

Encode the type into the given byte sink.
source§

impl Section for CodeSection

source§

fn id(&self) -> u8

Gets the section identifier for this section.
source§

fn append_to(&self, dst: &mut Vec<u8>)

Appends this section to the specified destination list of bytes.

Auto Trait Implementations§

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.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.