Struct wasmparser::BinaryReader

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

A binary reader of the WebAssembly structures and types.

Implementations§

source§

impl<'a> BinaryReader<'a>

source

pub fn new(data: &[u8]) -> BinaryReader<'_>

Constructs BinaryReader type.

§Examples
let fn_body = &vec![0x41, 0x00, 0x10, 0x00, 0x0B];
let mut reader = wasmparser::BinaryReader::new(fn_body);
while !reader.eof() {
    let op = reader.read_operator();
    println!("{:?}", op)
}
source

pub fn new_with_offset(data: &[u8], original_offset: usize) -> BinaryReader<'_>

Constructs a BinaryReader with an explicit starting offset.

source

pub fn original_position(&self) -> usize

Gets the original position of the binary reader.

source

pub fn allow_memarg64(&mut self, allow: bool)

Whether or not to allow 64-bit memory arguments in functions.

This is intended to be true when support for the memory64 WebAssembly proposal is also enabled.

source

pub fn range(&self) -> Range<usize>

Returns a range from the starting offset to the end of the buffer.

source

pub fn read<T>(&mut self) -> Result<T>
where T: FromReader<'a>,

Reads a value of type T from this binary reader, advancing the internal position in this reader forward as data is read.

source

pub fn read_size(&mut self, limit: usize, desc: &str) -> Result<usize>

Reads a variable-length 32-bit size from the byte stream while checking against a limit.

source

pub fn read_iter<'me, T>( &'me mut self, limit: usize, desc: &str ) -> Result<BinaryReaderIter<'a, 'me, T>>
where T: FromReader<'a>,

Reads a variable-length 32-bit size from the byte stream while checking against a limit.

Then reads that many values of type T and returns them as an iterator.

Note that regardless of how many items are read from the returned iterator the items will still be parsed from this reader.

source

pub fn eof(&self) -> bool

Returns whether the BinaryReader has reached the end of the file.

source

pub fn current_position(&self) -> usize

Returns the BinaryReader’s current position.

source

pub fn bytes_remaining(&self) -> usize

Returns the number of bytes remaining in the BinaryReader.

source

pub fn read_bytes(&mut self, size: usize) -> Result<&'a [u8]>

Advances the BinaryReader size bytes, and returns a slice from the current position of size length.

§Errors

If size exceeds the remaining length in BinaryReader.

source

pub fn read_reader(&mut self, err: &str) -> Result<BinaryReader<'a>>

Reads a length-prefixed list of bytes from this reader and returns a new BinaryReader to read that list of bytes.

Advances the position of this reader by the number of bytes read.

source

pub fn read_u32(&mut self) -> Result<u32>

Advances the BinaryReader four bytes and returns a u32.

§Errors

If BinaryReader has less than four bytes remaining.

source

pub fn read_u64(&mut self) -> Result<u64>

Advances the BinaryReader eight bytes and returns a u64.

§Errors

If BinaryReader has less than eight bytes remaining.

source

pub fn read_u8(&mut self) -> Result<u8>

Advances the BinaryReader a single byte.

§Errors

If BinaryReader has no bytes remaining.

source

pub fn read_var_u32(&mut self) -> Result<u32>

Advances the BinaryReader up to four bytes to parse a variable length integer as a u32.

§Errors

If BinaryReader has less than one or up to four bytes remaining, or the integer is larger than 32 bits.

source

pub fn read_var_u64(&mut self) -> Result<u64>

Advances the BinaryReader up to four bytes to parse a variable length integer as a u64.

§Errors

If BinaryReader has less than one or up to eight bytes remaining, or the integer is larger than 64 bits.

source

pub fn skip(&mut self, f: impl FnOnce(&mut Self) -> Result<()>) -> Result<Self>

Executes f to skip some data in this binary reader and then returns a reader which will read the skipped data.

source

pub fn skip_string(&mut self) -> Result<()>

Advances the BinaryReader past a WebAssembly string. This method does not perform any utf-8 validation.

§Errors

If BinaryReader has less than four bytes, the string’s length exceeds the remaining bytes, or the string length exceeds limits::MAX_WASM_STRING_SIZE.

source

pub fn read_var_i32(&mut self) -> Result<i32>

Advances the BinaryReader up to four bytes to parse a variable length integer as a i32.

§Errors

If BinaryReader has less than one or up to four bytes remaining, or the integer is larger than 32 bits.

source

pub fn read_var_s33(&mut self) -> Result<i64>

Advances the BinaryReader up to four bytes to parse a variable length integer as a signed 33 bit integer, returned as a i64.

§Errors

If BinaryReader has less than one or up to five bytes remaining, or the integer is larger than 33 bits.

source

pub fn read_var_i64(&mut self) -> Result<i64>

Advances the BinaryReader up to eight bytes to parse a variable length integer as a 64 bit integer, returned as a i64.

§Errors

If BinaryReader has less than one or up to eight bytes remaining, or the integer is larger than 64 bits.

source

pub fn read_f32(&mut self) -> Result<Ieee32>

Advances the BinaryReader up to four bytes to parse a variable length integer as a 32 bit floating point integer, returned as Ieee32.

§Errors

If BinaryReader has less than one or up to four bytes remaining, or the integer is larger than 32 bits.

source

pub fn read_f64(&mut self) -> Result<Ieee64>

Advances the BinaryReader up to four bytes to parse a variable length integer as a 32 bit floating point integer, returned as Ieee32.

§Errors

If BinaryReader has less than one or up to four bytes remaining, or the integer is larger than 32 bits.

source

pub fn read_string(&mut self) -> Result<&'a str>

Reads a WebAssembly string from the module.

§Errors

If BinaryReader has less than up to four bytes remaining, the string’s length exceeds the remaining bytes, the string’s length exceeds limits::MAX_WASM_STRING_SIZE, or the string contains invalid utf-8.

source

pub fn visit_operator<T>( &mut self, visitor: &mut T ) -> Result<<T as VisitOperator<'a>>::Output>
where T: VisitOperator<'a>,

Visit the next available operator with the specified VisitOperator instance.

Note that this does not implicitly propagate any additional information such as instruction offsets. In order to do so, consider storing such data within the visitor before visiting.

§Errors

If BinaryReader has less bytes remaining than required to parse the Operator.

§Examples

Store an offset for use in diagnostics or any other purposes:


pub fn dump(mut reader: BinaryReader) -> Result<()> {
    let mut visitor = Dumper { offset: 0 };
    while !reader.eof() {
        visitor.offset = reader.original_position();
        reader.visit_operator(&mut visitor)?;
    }
    Ok(())
}

struct Dumper {
    offset: usize
}

macro_rules! define_visit_operator {
    ($(@$proposal:ident $op:ident $({ $($arg:ident: $argty:ty),* })? => $visit:ident)*) => {
        $(
            fn $visit(&mut self $($(,$arg: $argty)*)?) -> Self::Output {
                println!("{}: {}", self.offset, stringify!($visit));
            }
        )*
    }
}

impl<'a> VisitOperator<'a> for Dumper {
    type Output = ();
    for_each_operator!(define_visit_operator);
}
source

pub fn read_operator(&mut self) -> Result<Operator<'a>>

Reads the next available Operator.

§Errors

If BinaryReader has less bytes remaining than required to parse the Operator.

Trait Implementations§

source§

impl<'a> Clone for BinaryReader<'a>

source§

fn clone(&self) -> BinaryReader<'a>

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<'a> Debug for BinaryReader<'a>

source§

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

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

impl<'a> Hash for BinaryReader<'a>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for BinaryReader<'a>

§

impl<'a> RefUnwindSafe for BinaryReader<'a>

§

impl<'a> Send for BinaryReader<'a>

§

impl<'a> Sync for BinaryReader<'a>

§

impl<'a> Unpin for BinaryReader<'a>

§

impl<'a> UnwindSafe for BinaryReader<'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.

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.