Trait CodeSink

Source
pub trait CodeSink {
    // Required methods
    fn put1(&mut self, _: u8);
    fn put2(&mut self, _: u16);
    fn put4(&mut self, _: u32);
    fn put8(&mut self, _: u64);
    fn add_trap(&mut self, code: TrapCode);
    fn current_offset(&self) -> u32;
    fn use_label_at_offset(&mut self, offset: u32, label: Label);
    fn get_label_for_constant(&mut self, id: Constant) -> Label;
}
Expand description

Describe how an instruction is emitted into a code buffer.

Required Methods§

Source

fn put1(&mut self, _: u8)

Add 1 byte to the code section.

Source

fn put2(&mut self, _: u16)

Add 2 bytes to the code section.

Source

fn put4(&mut self, _: u32)

Add 4 bytes to the code section.

Source

fn put8(&mut self, _: u64)

Add 8 bytes to the code section.

Source

fn add_trap(&mut self, code: TrapCode)

Inform the code buffer of a possible trap at the current location; required for assembling memory accesses.

Source

fn current_offset(&self) -> u32

Return the byte offset of the current location in the code buffer; required for assembling RIP-relative memory accesses.

Source

fn use_label_at_offset(&mut self, offset: u32, label: Label)

Inform the code buffer of a use of label at offset; required for assembling RIP-relative memory accesses.

Source

fn get_label_for_constant(&mut self, id: Constant) -> Label

Return the label for a constant id; required for assembling RIP-relative memory accesses of constants.

Implementations on Foreign Types§

Source§

impl CodeSink for Vec<u8>

Provide a convenient implementation for testing.

Source§

fn put1(&mut self, v: u8)

Source§

fn put2(&mut self, v: u16)

Source§

fn put4(&mut self, v: u32)

Source§

fn put8(&mut self, v: u64)

Source§

fn add_trap(&mut self, _: TrapCode)

Source§

fn current_offset(&self) -> u32

Source§

fn use_label_at_offset(&mut self, _: u32, _: Label)

Source§

fn get_label_for_constant(&mut self, c: Constant) -> Label

Implementors§