Struct sp1_recursion_core::cpu::CpuChip
source · pub struct CpuChip<F, const L: usize> {
pub fixed_log2_rows: Option<usize>,
pub _phantom: PhantomData<F>,
}
Fields§
§fixed_log2_rows: Option<usize>
§_phantom: PhantomData<F>
Implementations§
source§impl<F: Field, const L: usize> CpuChip<F, L>
impl<F: Field, const L: usize> CpuChip<F, L>
sourcepub fn eval_branch<AB>(
&self,
builder: &mut AB,
local: &CpuCols<AB::Var>,
next_pc: &mut AB::Expr,
)where
AB: SP1RecursionAirBuilder<F = F>,
pub fn eval_branch<AB>(
&self,
builder: &mut AB,
local: &CpuCols<AB::Var>,
next_pc: &mut AB::Expr,
)where
AB: SP1RecursionAirBuilder<F = F>,
Eval the BRANCH operations.
source§impl<F: Field, const L: usize> CpuChip<F, L>
impl<F: Field, const L: usize> CpuChip<F, L>
sourcepub fn eval_heap_ptr<AB>(&self, builder: &mut AB, local: &CpuCols<AB::Var>)where
AB: SP1RecursionAirBuilder<F = F>,
pub fn eval_heap_ptr<AB>(&self, builder: &mut AB, local: &CpuCols<AB::Var>)where
AB: SP1RecursionAirBuilder<F = F>,
Eval the heap ptr. s This function will ensure that the heap size never goes above 2^28.
source§impl<F: Field, const L: usize> CpuChip<F, L>
impl<F: Field, const L: usize> CpuChip<F, L>
pub fn eval_memory<AB>(&self, builder: &mut AB, local: &CpuCols<AB::Var>)where
AB: SP1RecursionAirBuilder<F = F>,
source§impl<F: Field, const L: usize> CpuChip<F, L>
impl<F: Field, const L: usize> CpuChip<F, L>
sourcepub fn eval_operands<AB>(&self, builder: &mut AB, local: &CpuCols<AB::Var>)where
AB: SP1RecursionAirBuilder<F = F>,
pub fn eval_operands<AB>(&self, builder: &mut AB, local: &CpuCols<AB::Var>)where
AB: SP1RecursionAirBuilder<F = F>,
Eval the operands.
source§impl<F: Field, const L: usize> CpuChip<F, L>
impl<F: Field, const L: usize> CpuChip<F, L>
sourcepub fn eval_commit<AB>(
&self,
builder: &mut AB,
local: &CpuCols<AB::Var>,
commit_digest: [AB::Expr; 8],
)where
AB: SP1RecursionAirBuilder<F = F>,
pub fn eval_commit<AB>(
&self,
builder: &mut AB,
local: &CpuCols<AB::Var>,
commit_digest: [AB::Expr; 8],
)where
AB: SP1RecursionAirBuilder<F = F>,
Eval the COMMIT instructions.
This method will verify the committed public value.
source§impl<F: Field, const L: usize> CpuChip<F, L>
impl<F: Field, const L: usize> CpuChip<F, L>
sourcepub fn eval_system_instructions<AB>(
&self,
builder: &mut AB,
local: &CpuCols<AB::Var>,
next: &CpuCols<AB::Var>,
public_values: &RecursionPublicValues<AB::Expr>,
)where
AB: SP1RecursionAirBuilder<F = F>,
pub fn eval_system_instructions<AB>(
&self,
builder: &mut AB,
local: &CpuCols<AB::Var>,
next: &CpuCols<AB::Var>,
public_values: &RecursionPublicValues<AB::Expr>,
)where
AB: SP1RecursionAirBuilder<F = F>,
Eval the system instructions (TRAP, HALT).
source§impl<F: Field, const L: usize> CpuChip<F, L>
impl<F: Field, const L: usize> CpuChip<F, L>
sourcepub fn eval_clk<AB>(
&self,
builder: &mut AB,
local: &CpuCols<AB::Var>,
next: &CpuCols<AB::Var>,
)where
AB: SP1RecursionAirBuilder,
pub fn eval_clk<AB>(
&self,
builder: &mut AB,
local: &CpuCols<AB::Var>,
next: &CpuCols<AB::Var>,
)where
AB: SP1RecursionAirBuilder,
Eval the clk.
For all instructions except for FRI fold, the next clk is the current clk + 4.
For FRI fold, the next clk is the current clk + number of FRI_FOLD iterations. That value
is stored in the a
operand.
sourcepub fn eval_is_real<AB>(
&self,
builder: &mut AB,
local: &CpuCols<AB::Var>,
next: &CpuCols<AB::Var>,
)where
AB: SP1RecursionAirBuilder,
pub fn eval_is_real<AB>(
&self,
builder: &mut AB,
local: &CpuCols<AB::Var>,
next: &CpuCols<AB::Var>,
)where
AB: SP1RecursionAirBuilder,
Eval the is_real flag.
sourcepub fn is_alu_instruction<AB>(&self, local: &CpuCols<AB::Var>) -> AB::Exprwhere
AB: SP1RecursionAirBuilder<F = F>,
pub fn is_alu_instruction<AB>(&self, local: &CpuCols<AB::Var>) -> AB::Exprwhere
AB: SP1RecursionAirBuilder<F = F>,
Expr to check for alu instructions.
sourcepub fn is_branch_instruction<AB>(&self, local: &CpuCols<AB::Var>) -> AB::Exprwhere
AB: SP1RecursionAirBuilder<F = F>,
pub fn is_branch_instruction<AB>(&self, local: &CpuCols<AB::Var>) -> AB::Exprwhere
AB: SP1RecursionAirBuilder<F = F>,
Expr to check for branch instructions.
sourcepub fn is_jump_instruction<AB>(&self, local: &CpuCols<AB::Var>) -> AB::Exprwhere
AB: SP1RecursionAirBuilder<F = F>,
pub fn is_jump_instruction<AB>(&self, local: &CpuCols<AB::Var>) -> AB::Exprwhere
AB: SP1RecursionAirBuilder<F = F>,
Expr to check for jump instructions.
sourcepub fn is_memory_instruction<AB>(&self, local: &CpuCols<AB::Var>) -> AB::Exprwhere
AB: SP1RecursionAirBuilder<F = F>,
pub fn is_memory_instruction<AB>(&self, local: &CpuCols<AB::Var>) -> AB::Exprwhere
AB: SP1RecursionAirBuilder<F = F>,
Expr to check for memory instructions.
sourcepub fn is_op_a_read_only_instruction<AB>(
&self,
local: &CpuCols<AB::Var>,
) -> AB::Exprwhere
AB: SP1RecursionAirBuilder<F = F>,
pub fn is_op_a_read_only_instruction<AB>(
&self,
local: &CpuCols<AB::Var>,
) -> AB::Exprwhere
AB: SP1RecursionAirBuilder<F = F>,
Expr to check for instructions that only read from operand a
.
sourcepub fn is_commit_instruction<AB>(&self, local: &CpuCols<AB::Var>) -> AB::Exprwhere
AB: SP1RecursionAirBuilder<F = F>,
pub fn is_commit_instruction<AB>(&self, local: &CpuCols<AB::Var>) -> AB::Exprwhere
AB: SP1RecursionAirBuilder<F = F>,
Expr to check for instructions that are commit instructions.
sourcepub fn is_system_instruction<AB>(&self, local: &CpuCols<AB::Var>) -> AB::Exprwhere
AB: SP1RecursionAirBuilder<F = F>,
pub fn is_system_instruction<AB>(&self, local: &CpuCols<AB::Var>) -> AB::Exprwhere
AB: SP1RecursionAirBuilder<F = F>,
Expr to check for system instructions.
Trait Implementations§
source§impl<F: Send + Sync, const L: usize> BaseAir<F> for CpuChip<F, L>
impl<F: Send + Sync, const L: usize> BaseAir<F> for CpuChip<F, L>
fn preprocessed_trace(&self) -> Option<DenseMatrix<F>>
source§impl<F: PrimeField32 + BinomiallyExtendable<D>, const L: usize> MachineAir<F> for CpuChip<F, L>
impl<F: PrimeField32 + BinomiallyExtendable<D>, const L: usize> MachineAir<F> for CpuChip<F, L>
§type Record = ExecutionRecord<F>
type Record = ExecutionRecord<F>
type Program = RecursionProgram<F>
source§fn generate_dependencies(&self, _: &Self::Record, _: &mut Self::Record)
fn generate_dependencies(&self, _: &Self::Record, _: &mut Self::Record)
source§fn generate_trace(
&self,
input: &ExecutionRecord<F>,
_: &mut ExecutionRecord<F>,
) -> RowMajorMatrix<F>
fn generate_trace( &self, input: &ExecutionRecord<F>, _: &mut ExecutionRecord<F>, ) -> RowMajorMatrix<F>
source§fn included(&self, _: &Self::Record) -> bool
fn included(&self, _: &Self::Record) -> bool
source§fn preprocessed_width(&self) -> usize
fn preprocessed_width(&self) -> usize
source§fn generate_preprocessed_trace(
&self,
_program: &Self::Program,
) -> Option<DenseMatrix<F>>
fn generate_preprocessed_trace( &self, _program: &Self::Program, ) -> Option<DenseMatrix<F>>
Auto Trait Implementations§
impl<F, const L: usize> Freeze for CpuChip<F, L>
impl<F, const L: usize> RefUnwindSafe for CpuChip<F, L>where
F: RefUnwindSafe,
impl<F, const L: usize> Send for CpuChip<F, L>where
F: Send,
impl<F, const L: usize> Sync for CpuChip<F, L>where
F: Sync,
impl<F, const L: usize> Unpin for CpuChip<F, L>where
F: Unpin,
impl<F, const L: usize> UnwindSafe for CpuChip<F, L>where
F: UnwindSafe,
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
source§impl<T> FmtForward for T
impl<T> FmtForward for T
source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.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<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moresource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moresource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> Tap for T
impl<T> Tap for T
source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read moresource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read moresource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read moresource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read moresource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read moresource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read moresource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.