Skip to main content

Chunk

Struct Chunk 

Source
pub struct Chunk {
    pub code: Vec<u8>,
    pub constants: Vec<VMValue>,
    pub lines: Vec<u32>,
    pub key_symbols: Vec<Option<Symbol>>,
    pub source_file: Option<String>,
}
Expand description

A compiled bytecode chunk.

Contains the instruction stream, a constant pool for literal values and nested function chunks, and source line information for error reporting.

Fields§

§code: Vec<u8>

The raw bytecode instruction stream.

§constants: Vec<VMValue>

Constant pool: literals, string keys, nested chunks.

§lines: Vec<u32>

Source line number for each byte in code (1:1 mapping). Used for error messages. Line 0 means “unknown”.

§key_symbols: Vec<Option<Symbol>>

Pre-resolved symbols for constant pool entries that are string keys.

Maps constant index -> interned Symbol. Populated at compile time so the VM can skip the intern() call on every GetAttr/HasAttr dispatch. Only entries used as attrset keys are populated.

§source_file: Option<String>

The source file this chunk was compiled from (if known). Used for error diagnostics — not set for inline expressions.

Implementations§

Source§

impl Chunk

Source

pub fn new() -> Self

Create an empty chunk.

Source

pub fn write_byte(&mut self, byte: u8, line: u32)

Write a single byte to the instruction stream.

Source

pub fn write_op(&mut self, op: OpCode, line: u32)

Write an opcode to the instruction stream.

Source

pub fn write_u16(&mut self, value: u16, line: u32)

Write a u16 operand as two little-endian bytes.

Source

pub fn write_u32(&mut self, value: u32, line: u32)

Write a u32 operand as four little-endian bytes.

Source

pub fn add_constant(&mut self, value: VMValue) -> Result<u16, CompileError>

Add a constant to the pool and return its index.

Returns an error if the pool exceeds u16::MAX entries.

Source

pub fn add_key_constant( &mut self, value: VMValue, sym: Symbol, ) -> Result<u16, CompileError>

Add a constant string and its pre-interned symbol to the pool.

The symbol is stored in key_symbols so the VM can skip the intern() call when resolving attribute keys at runtime.

Source

pub fn read_u16(&self, offset: usize) -> u16

Read a u16 operand from the bytecode at the given offset.

Returns the value and the offset past the two bytes.

Source

pub fn read_u32(&self, offset: usize) -> u32

Read a u32 operand from the bytecode at the given offset.

Source

pub fn len(&self) -> usize

Return the current length of the bytecode stream.

Source

pub fn is_empty(&self) -> bool

Whether the chunk contains no instructions.

Source

pub fn patch_u16(&mut self, offset: usize, value: u16)

Patch a u16 value at the given offset in the bytecode stream.

Used for back-patching jump targets after the target offset is known.

Trait Implementations§

Source§

impl Clone for Chunk

Source§

fn clone(&self) -> Chunk

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for Chunk

Source§

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

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

impl Default for Chunk

Source§

fn default() -> Chunk

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

Auto Trait Implementations§

§

impl !RefUnwindSafe for Chunk

§

impl !Send for Chunk

§

impl !Sync for Chunk

§

impl !UnwindSafe for Chunk

§

impl Freeze for Chunk

§

impl Unpin for Chunk

§

impl UnsafeUnpin for Chunk

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

Source§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
Source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> LayoutRaw for T

Source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Returns the layout of the type.
Source§

impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
where T: SharedNiching<N1, N2>, N1: Niching<T>, N2: Niching<T>,

Source§

unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool

Returns whether the given value has been niched. Read more
Source§

fn resolve_niched(out: Place<NichedOption<T, N1>>)

Writes data to out indicating that a T is niched.
Source§

impl<T> Pointee for T

Source§

type Metadata = ()

The metadata type for pointers and references to this type.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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

Source§

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

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.