pub struct BasicBlockNode { /* private fields */ }Expand description
Block for a linear sequence of operations (i.e., no branching or loops).
Executes its operations in order. Fails if any of the operations fails.
A basic block is composed of operation batches, operation batches are composed of operation groups, operation groups encode the VM’s operations and immediate values. These values are created according to these rules:
- A basic block contains one or more batches.
- A batch contains up to 8 groups, and the number of groups must be a power of 2.
- A group contains up to 9 operations or 1 immediate value.
- Last operation in a group cannot be an operation that requires an immediate value.
- NOOPs are used to fill a group or batch when necessary.
- An immediate value follows the operation that requires it, using the next available group in the batch. If there are no groups available in the batch, then both the operation and its immediate value are moved to the next batch.
Example: 8 pushes result in two operation batches:
- First batch: First group with 7 push opcodes and 2 zero-paddings packed together, followed by 7 groups with their respective immediate values.
- Second batch: First group with the last push opcode and 8 zero-paddings packed together, followed by one immediate and 6 padding groups.
The hash of a basic block is:
hash(batches, domain=BASIC_BLOCK_DOMAIN)
Where batches is the concatenation of each batch in the basic block, and each batch is 8
field elements (512 bits).
Implementations§
Source§impl BasicBlockNode
Constants
impl BasicBlockNode
Constants
Sourcepub const DOMAIN: Goldilocks = ZERO
pub const DOMAIN: Goldilocks = ZERO
The domain of the basic block node (used for control block hashing).
Source§impl BasicBlockNode
Constructors
impl BasicBlockNode
Constructors
pub fn adjust_decorators( decorators: Vec<(usize, DecoratorId)>, op_batches: &[OpBatch], ) -> Vec<(usize, DecoratorId)>
Sourcepub fn adjust_asm_op_indices<T>(
asm_ops: Vec<(usize, T)>,
op_batches: &[OpBatch],
) -> Vec<(usize, T)>where
T: Copy,
pub fn adjust_asm_op_indices<T>(
asm_ops: Vec<(usize, T)>,
op_batches: &[OpBatch],
) -> Vec<(usize, T)>where
T: Copy,
Adjusts raw operation indices to padded indices for AssemblyOp mappings.
Similar to adjust_decorators, but works with AssemblyOp mappings (raw_idx, id) pairs.
The op_batches contain padding NOOPs that shift operation indices. This method adjusts
the raw indices to account for this padding so lookups during execution use correct indices.
Source§impl BasicBlockNode
Public accessors
impl BasicBlockNode
Public accessors
Sourcepub fn op_batches(&self) -> &[OpBatch]
pub fn op_batches(&self) -> &[OpBatch]
Returns a reference to the operation batches in this basic block.
Sourcepub fn num_op_batches(&self) -> usize
pub fn num_op_batches(&self) -> usize
Returns the number of operation batches in this basic block.
Sourcepub fn num_op_groups(&self) -> usize
pub fn num_op_groups(&self) -> usize
Returns the total number of operation groups in this basic block.
Then number of operation groups is computed as follows:
- For all batches but the last one we set the number of groups to 8, regardless of the actual number of groups in the batch. The reason for this is that when operation batches are concatenated together each batch contributes 8 elements to the hash.
- For the last batch, we take the number of actual groups and round it up to the next power of two. The reason for rounding is that the VM always executes a number of operation groups which is a power of two.
Sourcepub fn num_operations(&self) -> u32
pub fn num_operations(&self) -> u32
Returns the number of operations in this basic block.
Sourcepub fn indexed_decorator_iter<'a>(
&'a self,
forest: &'a MastForest,
) -> DecoratorOpLinkIterator<'a> ⓘ
pub fn indexed_decorator_iter<'a>( &'a self, forest: &'a MastForest, ) -> DecoratorOpLinkIterator<'a> ⓘ
Returns a DecoratorOpLinkIterator which allows us to iterate through the op-indexed
decorators of this basic block node.
This method borrows from the forest’s storage, avoiding unnecessary Arc clones and providing efficient access to decorators.
This iterator is intended for e.g. processor consumption and provides access to only the
operation-indexed decorators (excluding before_enter and after_exit decorators).
Sourcepub fn raw_decorator_iter<'a>(
&'a self,
forest: &'a MastForest,
) -> RawDecoratorOpLinkIterator<'a>
pub fn raw_decorator_iter<'a>( &'a self, forest: &'a MastForest, ) -> RawDecoratorOpLinkIterator<'a>
Returns an iterator which allows us to iterate through the decorator list of this basic block node with op indexes aligned to the “raw” (un-padded)) op batches of the basic block node.
Though this adjusts the indexation of op-indexed decorators, this iterator returns all
decorators of the BasicBlockNode in the order in which they appear in the program.
This includes before_enter, op-indexed decorators, and after_exit.
Returns an iterator which allows us to iterate through the decorator list of this basic block node with op indexes aligned to the “raw” (un-padded)) op batches of the basic block node.
This method borrows from the forest’s storage, avoiding unnecessary Arc clones and providing efficient access to decorators.
Though this adjusts the indexation of op-indexed decorators, this iterator returns all
decorators of the BasicBlockNode in the order in which they appear in the program.
This includes before_enter, op-indexed decorators, and after_exit`.
Sourcepub fn raw_op_indexed_decorators(
&self,
forest: &MastForest,
) -> Vec<(usize, DecoratorId)>
pub fn raw_op_indexed_decorators( &self, forest: &MastForest, ) -> Vec<(usize, DecoratorId)>
Returns only the raw op-indexed decorators (without before_enter/after_exit) with indices based on raw operations.
Stores decorators with raw operation indices for serialization.
Returns only the raw op-indexed decorators (without before_enter/after_exit) with indices based on raw operations.
This method borrows from the forest’s storage, avoiding unnecessary Arc clones and providing efficient access to decorators.
Stores decorators with raw operation indices for serialization.
Sourcepub fn operations(&self) -> impl Iterator<Item = &Operation>
pub fn operations(&self) -> impl Iterator<Item = &Operation>
Returns an iterator over the operations in the order in which they appear in the program.
Sourcepub fn raw_operations(&self) -> impl Iterator<Item = &Operation>
pub fn raw_operations(&self) -> impl Iterator<Item = &Operation>
Returns an iterator over the un-padded operations in the order in which they appear in the program.
Sourcepub fn num_operations_and_decorators(&self, forest: &MastForest) -> u32
pub fn num_operations_and_decorators(&self, forest: &MastForest) -> u32
Returns the total number of operations and decorators in this basic block.
Sourcepub fn linked_id(&self) -> Option<MastNodeId>
pub fn linked_id(&self) -> Option<MastNodeId>
Return the MastNodeId of this BasicBlockNode, if in Linked state
Source§impl BasicBlockNode
impl BasicBlockNode
Sourcepub fn validate_batch_invariants(&self) -> Result<(), String>
pub fn validate_batch_invariants(&self) -> Result<(), String>
Validates that this BasicBlockNode satisfies the core invariants:
- Power-of-two number of groups in each batch
- No operation group ends with an operation requiring an immediate value
- The last operation group in a batch cannot contain operations requiring immediate values
- OpBatch structural consistency (num_groups <= BATCH_SIZE, group size <= GROUP_SIZE)
Returns an error string describing which invariant was violated if validation fails.
Trait Implementations§
Source§impl Clone for BasicBlockNode
impl Clone for BasicBlockNode
Source§fn clone(&self) -> BasicBlockNode
fn clone(&self) -> BasicBlockNode
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for BasicBlockNode
impl Debug for BasicBlockNode
Source§impl From<BasicBlockNode> for MastNode
impl From<BasicBlockNode> for MastNode
Source§fn from(value: BasicBlockNode) -> MastNode
fn from(value: BasicBlockNode) -> MastNode
Source§impl MastNodeExt for BasicBlockNode
impl MastNodeExt for BasicBlockNode
Source§type Builder = BasicBlockNodeBuilder
type Builder = BasicBlockNodeBuilder
Source§fn before_enter<'a>(&'a self, forest: &'a MastForest) -> &'a [DecoratorId]
fn before_enter<'a>(&'a self, forest: &'a MastForest) -> &'a [DecoratorId]
Source§fn after_exit<'a>(&'a self, forest: &'a MastForest) -> &'a [DecoratorId]
fn after_exit<'a>(&'a self, forest: &'a MastForest) -> &'a [DecoratorId]
Source§fn to_display<'a>(
&'a self,
mast_forest: &'a MastForest,
) -> Box<dyn Display + 'a>
fn to_display<'a>( &'a self, mast_forest: &'a MastForest, ) -> Box<dyn Display + 'a>
Source§fn to_pretty_print<'a>(
&'a self,
mast_forest: &'a MastForest,
) -> Box<dyn PrettyPrint + 'a>
fn to_pretty_print<'a>( &'a self, mast_forest: &'a MastForest, ) -> Box<dyn PrettyPrint + 'a>
Source§fn has_children(&self) -> bool
fn has_children(&self) -> bool
Source§fn append_children_to(&self, _target: &mut Vec<MastNodeId>)
fn append_children_to(&self, _target: &mut Vec<MastNodeId>)
Source§fn for_each_child<F>(&self, _f: F)where
F: FnMut(MastNodeId),
fn for_each_child<F>(&self, _f: F)where
F: FnMut(MastNodeId),
Source§fn domain(&self) -> Goldilocks
fn domain(&self) -> Goldilocks
fn to_builder( self, forest: &MastForest, ) -> <BasicBlockNode as MastNodeExt>::Builder
Source§fn verify_node_in_forest(&self, forest: &MastForest)
fn verify_node_in_forest(&self, forest: &MastForest)
Source§impl PartialEq for BasicBlockNode
impl PartialEq for BasicBlockNode
impl Eq for BasicBlockNode
impl StructuralPartialEq for BasicBlockNode
Auto Trait Implementations§
impl Freeze for BasicBlockNode
impl RefUnwindSafe for BasicBlockNode
impl Send for BasicBlockNode
impl Sync for BasicBlockNode
impl Unpin for BasicBlockNode
impl UnwindSafe for BasicBlockNode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<D> OwoColorize for D
impl<D> OwoColorize for D
Source§fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>where
C: Color,
fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>where
C: Color,
Source§fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>where
C: Color,
fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>where
C: Color,
Source§fn black(&self) -> FgColorDisplay<'_, Black, Self>
fn black(&self) -> FgColorDisplay<'_, Black, Self>
Source§fn on_black(&self) -> BgColorDisplay<'_, Black, Self>
fn on_black(&self) -> BgColorDisplay<'_, Black, Self>
Source§fn red(&self) -> FgColorDisplay<'_, Red, Self>
fn red(&self) -> FgColorDisplay<'_, Red, Self>
Source§fn on_red(&self) -> BgColorDisplay<'_, Red, Self>
fn on_red(&self) -> BgColorDisplay<'_, Red, Self>
Source§fn green(&self) -> FgColorDisplay<'_, Green, Self>
fn green(&self) -> FgColorDisplay<'_, Green, Self>
Source§fn on_green(&self) -> BgColorDisplay<'_, Green, Self>
fn on_green(&self) -> BgColorDisplay<'_, Green, Self>
Source§fn yellow(&self) -> FgColorDisplay<'_, Yellow, Self>
fn yellow(&self) -> FgColorDisplay<'_, Yellow, Self>
Source§fn on_yellow(&self) -> BgColorDisplay<'_, Yellow, Self>
fn on_yellow(&self) -> BgColorDisplay<'_, Yellow, Self>
Source§fn blue(&self) -> FgColorDisplay<'_, Blue, Self>
fn blue(&self) -> FgColorDisplay<'_, Blue, Self>
Source§fn on_blue(&self) -> BgColorDisplay<'_, Blue, Self>
fn on_blue(&self) -> BgColorDisplay<'_, Blue, Self>
Source§fn magenta(&self) -> FgColorDisplay<'_, Magenta, Self>
fn magenta(&self) -> FgColorDisplay<'_, Magenta, Self>
Source§fn on_magenta(&self) -> BgColorDisplay<'_, Magenta, Self>
fn on_magenta(&self) -> BgColorDisplay<'_, Magenta, Self>
Source§fn purple(&self) -> FgColorDisplay<'_, Magenta, Self>
fn purple(&self) -> FgColorDisplay<'_, Magenta, Self>
Source§fn on_purple(&self) -> BgColorDisplay<'_, Magenta, Self>
fn on_purple(&self) -> BgColorDisplay<'_, Magenta, Self>
Source§fn cyan(&self) -> FgColorDisplay<'_, Cyan, Self>
fn cyan(&self) -> FgColorDisplay<'_, Cyan, Self>
Source§fn on_cyan(&self) -> BgColorDisplay<'_, Cyan, Self>
fn on_cyan(&self) -> BgColorDisplay<'_, Cyan, Self>
Source§fn white(&self) -> FgColorDisplay<'_, White, Self>
fn white(&self) -> FgColorDisplay<'_, White, Self>
Source§fn on_white(&self) -> BgColorDisplay<'_, White, Self>
fn on_white(&self) -> BgColorDisplay<'_, White, Self>
Source§fn default_color(&self) -> FgColorDisplay<'_, Default, Self>
fn default_color(&self) -> FgColorDisplay<'_, Default, Self>
Source§fn on_default_color(&self) -> BgColorDisplay<'_, Default, Self>
fn on_default_color(&self) -> BgColorDisplay<'_, Default, Self>
Source§fn bright_black(&self) -> FgColorDisplay<'_, BrightBlack, Self>
fn bright_black(&self) -> FgColorDisplay<'_, BrightBlack, Self>
Source§fn on_bright_black(&self) -> BgColorDisplay<'_, BrightBlack, Self>
fn on_bright_black(&self) -> BgColorDisplay<'_, BrightBlack, Self>
Source§fn bright_red(&self) -> FgColorDisplay<'_, BrightRed, Self>
fn bright_red(&self) -> FgColorDisplay<'_, BrightRed, Self>
Source§fn on_bright_red(&self) -> BgColorDisplay<'_, BrightRed, Self>
fn on_bright_red(&self) -> BgColorDisplay<'_, BrightRed, Self>
Source§fn bright_green(&self) -> FgColorDisplay<'_, BrightGreen, Self>
fn bright_green(&self) -> FgColorDisplay<'_, BrightGreen, Self>
Source§fn on_bright_green(&self) -> BgColorDisplay<'_, BrightGreen, Self>
fn on_bright_green(&self) -> BgColorDisplay<'_, BrightGreen, Self>
Source§fn bright_yellow(&self) -> FgColorDisplay<'_, BrightYellow, Self>
fn bright_yellow(&self) -> FgColorDisplay<'_, BrightYellow, Self>
Source§fn on_bright_yellow(&self) -> BgColorDisplay<'_, BrightYellow, Self>
fn on_bright_yellow(&self) -> BgColorDisplay<'_, BrightYellow, Self>
Source§fn bright_blue(&self) -> FgColorDisplay<'_, BrightBlue, Self>
fn bright_blue(&self) -> FgColorDisplay<'_, BrightBlue, Self>
Source§fn on_bright_blue(&self) -> BgColorDisplay<'_, BrightBlue, Self>
fn on_bright_blue(&self) -> BgColorDisplay<'_, BrightBlue, Self>
Source§fn bright_magenta(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
fn bright_magenta(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
Source§fn on_bright_magenta(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
fn on_bright_magenta(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
Source§fn bright_purple(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
fn bright_purple(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
Source§fn on_bright_purple(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
fn on_bright_purple(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
Source§fn bright_cyan(&self) -> FgColorDisplay<'_, BrightCyan, Self>
fn bright_cyan(&self) -> FgColorDisplay<'_, BrightCyan, Self>
Source§fn on_bright_cyan(&self) -> BgColorDisplay<'_, BrightCyan, Self>
fn on_bright_cyan(&self) -> BgColorDisplay<'_, BrightCyan, Self>
Source§fn bright_white(&self) -> FgColorDisplay<'_, BrightWhite, Self>
fn bright_white(&self) -> FgColorDisplay<'_, BrightWhite, Self>
Source§fn on_bright_white(&self) -> BgColorDisplay<'_, BrightWhite, Self>
fn on_bright_white(&self) -> BgColorDisplay<'_, BrightWhite, Self>
Source§fn bold(&self) -> BoldDisplay<'_, Self>
fn bold(&self) -> BoldDisplay<'_, Self>
Source§fn dimmed(&self) -> DimDisplay<'_, Self>
fn dimmed(&self) -> DimDisplay<'_, Self>
Source§fn italic(&self) -> ItalicDisplay<'_, Self>
fn italic(&self) -> ItalicDisplay<'_, Self>
Source§fn underline(&self) -> UnderlineDisplay<'_, Self>
fn underline(&self) -> UnderlineDisplay<'_, Self>
Source§fn blink(&self) -> BlinkDisplay<'_, Self>
fn blink(&self) -> BlinkDisplay<'_, Self>
Source§fn blink_fast(&self) -> BlinkFastDisplay<'_, Self>
fn blink_fast(&self) -> BlinkFastDisplay<'_, Self>
Source§fn reversed(&self) -> ReversedDisplay<'_, Self>
fn reversed(&self) -> ReversedDisplay<'_, Self>
Source§fn strikethrough(&self) -> StrikeThroughDisplay<'_, Self>
fn strikethrough(&self) -> StrikeThroughDisplay<'_, Self>
Source§fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
OwoColorize::fg or
a color-specific method, such as OwoColorize::green, Read moreSource§fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
OwoColorize::bg or
a color-specific method, such as OwoColorize::on_yellow, Read more