Skip to main content

Program

Struct Program 

Source
pub struct Program { /* private fields */ }
Expand description

Assemble one bytecode module.

Implementations§

Source§

impl Program

Source

pub fn new(name: impl Into<String>) -> Self

Start a new module named name.

Examples found in repository?
examples/throughput.rs (line 12)
11fn trivial_chunk() -> byteflow::Chunk {
12    let mut program = Program::new("throughput");
13    program.function("worker", 0, |f| {
14        let one = f.load_i32(1);
15        f.return_(one);
16    });
17    program.build()
18}
More examples
Hide additional examples
examples/jit_loop.rs (line 12)
11fn loop_chunk(iterations: i32) -> byteflow::Chunk {
12    let mut program = Program::new("jit-loop");
13    program.function("main", 0, |f| {
14        let limit = f.load_int(i64::from(iterations));
15        let counter = f.load_i32(0);
16        f.while_lt(counter, limit, |f| f.add_imm(counter, 1));
17        f.return_(counter);
18    });
19    program.build()
20}
Source

pub fn function( &mut self, name: impl Into<String>, arity: u8, body: impl FnOnce(&mut Fn<'_>), ) -> FuncId

Define a function and run body against a fresh Fn context.

Returns the function index for Fn::spawn / Fn::call.

Examples found in repository?
examples/throughput.rs (lines 13-16)
11fn trivial_chunk() -> byteflow::Chunk {
12    let mut program = Program::new("throughput");
13    program.function("worker", 0, |f| {
14        let one = f.load_i32(1);
15        f.return_(one);
16    });
17    program.build()
18}
More examples
Hide additional examples
examples/jit_loop.rs (lines 13-18)
11fn loop_chunk(iterations: i32) -> byteflow::Chunk {
12    let mut program = Program::new("jit-loop");
13    program.function("main", 0, |f| {
14        let limit = f.load_int(i64::from(iterations));
15        let counter = f.load_i32(0);
16        f.while_lt(counter, limit, |f| f.add_imm(counter, 1));
17        f.return_(counter);
18    });
19    program.build()
20}
Source

pub fn function_raw( &mut self, name: impl Into<String>, arity: u8, num_registers: u8, body: impl FnOnce(&mut Fn<'_>), ) -> FuncId

Define a function with an explicit register-file size.

Useful for fixed register layouts (reg(255)) or verification demos where num_registers < arity must fail static checks.

Source

pub fn function_index(&self, name: &str) -> Option<FuncId>

Look up a function index by name (available before Self::build).

Source

pub fn build(self) -> Chunk

Finish assembly and produce an immutable Chunk.

Examples found in repository?
examples/throughput.rs (line 17)
11fn trivial_chunk() -> byteflow::Chunk {
12    let mut program = Program::new("throughput");
13    program.function("worker", 0, |f| {
14        let one = f.load_i32(1);
15        f.return_(one);
16    });
17    program.build()
18}
More examples
Hide additional examples
examples/jit_loop.rs (line 19)
11fn loop_chunk(iterations: i32) -> byteflow::Chunk {
12    let mut program = Program::new("jit-loop");
13    program.function("main", 0, |f| {
14        let limit = f.load_int(i64::from(iterations));
15        let counter = f.load_i32(0);
16        f.while_lt(counter, limit, |f| f.add_imm(counter, 1));
17        f.return_(counter);
18    });
19    program.build()
20}

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> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

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

Initializes a with the given initializer. Read more
Source§

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

Dereferences the given pointer. Read more
Source§

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

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

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

Source§

type Error = !

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>,

Source§

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.