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 exactly 8 groups.
- A group contains exactly 9 operations or 1 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 batches available in the group, then both the operation and its immediate 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: BaseElement = ZERO
pub const DOMAIN: BaseElement = ZERO
The domain of the basic block node (used for control block hashing).
Source§impl BasicBlockNode
Constructors
impl BasicBlockNode
Constructors
Sourcepub fn new(
operations: Vec<Operation>,
decorators: Vec<(usize, DecoratorId)>,
) -> Result<BasicBlockNode, MastForestError>
pub fn new( operations: Vec<Operation>, decorators: Vec<(usize, DecoratorId)>, ) -> Result<BasicBlockNode, MastForestError>
Returns a new BasicBlockNode instantiated with the specified operations and decorators.
Returns an error if:
operationsvector is empty.
Sourcepub fn new_unsafe(
operations: Vec<Operation>,
decorators: Vec<(usize, DecoratorId)>,
digest: Word,
) -> BasicBlockNode
pub fn new_unsafe( operations: Vec<Operation>, decorators: Vec<(usize, DecoratorId)>, digest: Word, ) -> BasicBlockNode
Returns a new BasicBlockNode from values that are assumed to be correct.
Should only be used when the source of the inputs is trusted (e.g. deserialization).
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(&self) -> DecoratorOpLinkIterator<'_> ⓘ
pub fn indexed_decorator_iter(&self) -> DecoratorOpLinkIterator<'_> ⓘ
Returns a DecoratorOpLinkIterator which allows us to iterate through the decorator list
of this basic block node while executing operation batches of this basic block node.
This iterator is intended for e.g. processor consumption, as such a component iterates
differently through block operations: contrarily to e.g. the implementation of
MastNodeErrorContext this does not include the before_enter or after_exit
decorators.
Sourcepub fn raw_decorator_iter(&self) -> RawDecoratorOpLinkIterator<'_>
pub fn raw_decorator_iter(&self) -> RawDecoratorOpLinkIterator<'_>
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`.
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) -> u32
pub fn num_operations_and_decorators(&self) -> u32
Returns the total number of operations and decorators in this basic block.
Sourcepub fn iter(&self) -> impl Iterator<Item = OperationOrDecorator<'_>>
pub fn iter(&self) -> impl Iterator<Item = OperationOrDecorator<'_>>
Returns an iterator over all operations and decorator, in the order in which they appear in the program.
Source§impl BasicBlockNode
Mutators
impl BasicBlockNode
Mutators
Sourcepub fn set_decorators(&mut self, decorator_list: Vec<(usize, DecoratorId)>)
pub fn set_decorators(&mut self, decorator_list: Vec<(usize, DecoratorId)>)
Used to initialize decorators for the BasicBlockNode. Replaces the existing decorators
with the given [‘DecoratorList’].
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(v: BasicBlockNode) -> MastNode
fn from(v: BasicBlockNode) -> MastNode
Source§impl MastNodeErrorContext for BasicBlockNode
impl MastNodeErrorContext for BasicBlockNode
Source§fn decorators(&self) -> impl Iterator<Item = (usize, DecoratorId)>
fn decorators(&self) -> impl Iterator<Item = (usize, DecoratorId)>
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.
Source§fn get_assembly_op<'m>(
&self,
mast_forest: &'m MastForest,
target_op_idx: Option<usize>,
) -> Option<&'m AssemblyOp>
fn get_assembly_op<'m>( &self, mast_forest: &'m MastForest, target_op_idx: Option<usize>, ) -> Option<&'m AssemblyOp>
AssemblyOp associated with this node and operation (if provided), if any. Read moreSource§impl MastNodeExt for BasicBlockNode
impl MastNodeExt for BasicBlockNode
Source§fn append_before_enter(&mut self, decorator_ids: &[DecoratorId])
fn append_before_enter(&mut self, decorator_ids: &[DecoratorId])
Sets the provided list of decorators to be executed before this node.
Source§fn append_after_exit(&mut self, decorator_ids: &[DecoratorId])
fn append_after_exit(&mut self, decorator_ids: &[DecoratorId])
Sets the provided list of decorators to be executed after this node.
Source§fn remove_decorators(&mut self)
fn remove_decorators(&mut self)
Removes all decorators from this node.
Source§fn before_enter(&self) -> &[DecoratorId]
fn before_enter(&self) -> &[DecoratorId]
Source§fn after_exit(&self) -> &[DecoratorId]
fn after_exit(&self) -> &[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 remap_children(
&self,
_remapping: &BTreeMap<MastNodeId, MastNodeId>,
) -> BasicBlockNode
fn remap_children( &self, _remapping: &BTreeMap<MastNodeId, MastNodeId>, ) -> BasicBlockNode
Remapping.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) -> BaseElement
fn domain(&self) -> BaseElement
Source§impl PartialEq for BasicBlockNode
impl PartialEq for BasicBlockNode
Source§impl TryInto<BasicBlockNode> for MastNode
impl TryInto<BasicBlockNode> for MastNode
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