use std::{
borrow::{Borrow, BorrowMut},
marker::PhantomData,
mem::{size_of, MaybeUninit},
};
use crate::{
air::SP1CoreAirBuilder,
memory::MemoryAccessColsU8,
operations::{field::range::FieldLtCols, AddrAddOperation, SyscallAddrOperation},
utils::{limbs_to_words, next_multiple_of_32},
};
use generic_array::GenericArray;
use itertools::Itertools;
use num::{BigUint, Zero};
use slop_air::{Air, BaseAir};
use slop_algebra::{AbstractField, PrimeField32};
use slop_matrix::Matrix;
use sp1_core_executor::{
events::{ByteLookupEvent, ByteRecord, FieldOperation, MemoryRecordEnum, PrecompileEvent},
ExecutionRecord, Program, SyscallCode,
};
use sp1_curves::{
params::{Limbs, NumLimbs},
weierstrass::{FieldType, FpOpField},
};
use sp1_derive::AlignedBorrow;
use sp1_hypercube::{
air::{InteractionScope, MachineAir},
Word,
};
use sp1_primitives::polynomial::Polynomial;
use crate::{operations::field::field_op::FieldOpCols, utils::words_to_bytes_le_vec};
pub const fn num_fp_cols<P: FpOpField>() -> usize {
size_of::<FpOpCols<u8, P>>()
}
pub struct FpOpChip<P> {
_marker: PhantomData<P>,
}
#[derive(Debug, Clone, AlignedBorrow)]
#[repr(C)]
pub struct FpOpCols<T, P: FpOpField> {
pub is_real: T,
pub clk_high: T,
pub clk_low: T,
pub is_add: T,
pub is_sub: T,
pub is_mul: T,
pub x_ptr: SyscallAddrOperation<T>,
pub y_ptr: SyscallAddrOperation<T>,
pub x_addrs: GenericArray<AddrAddOperation<T>, P::WordsFieldElement>,
pub y_addrs: GenericArray<AddrAddOperation<T>, P::WordsFieldElement>,
pub x_access: GenericArray<MemoryAccessColsU8<T>, P::WordsFieldElement>,
pub y_access: GenericArray<MemoryAccessColsU8<T>, P::WordsFieldElement>,
pub(crate) output: FieldOpCols<T, P>,
pub(crate) output_range: FieldLtCols<T, P>,
}
impl<P: FpOpField> FpOpChip<P> {
pub const fn new() -> Self {
Self { _marker: PhantomData }
}
#[allow(clippy::too_many_arguments)]
fn populate_field_ops<F: PrimeField32>(
blu_events: &mut Vec<ByteLookupEvent>,
cols: &mut FpOpCols<F, P>,
p: BigUint,
q: BigUint,
op: FieldOperation,
) {
let modulus_bytes = P::MODULUS;
let modulus = BigUint::from_bytes_le(modulus_bytes);
let output = cols.output.populate_with_modulus(blu_events, &p, &q, &modulus, op);
cols.output_range.populate(blu_events, &output, &modulus);
}
}
impl<F: PrimeField32, P: FpOpField> MachineAir<F> for FpOpChip<P> {
type Record = ExecutionRecord;
type Program = Program;
fn name(&self) -> &'static str {
match P::FIELD_TYPE {
FieldType::Bn254 => "Bn254FpOpAssign",
FieldType::Bls12381 => "Bls12381FpOpAssign",
}
}
fn num_rows(&self, input: &Self::Record) -> Option<usize> {
let nb_rows = match P::FIELD_TYPE {
FieldType::Bn254 => input.get_precompile_events(SyscallCode::BN254_FP_ADD).len(),
FieldType::Bls12381 => input.get_precompile_events(SyscallCode::BLS12381_FP_ADD).len(),
};
let size_log2 = input.fixed_log2_rows::<F, _>(self);
let padded_nb_rows = next_multiple_of_32(nb_rows, size_log2);
Some(padded_nb_rows)
}
fn generate_trace_into(
&self,
input: &ExecutionRecord,
output: &mut ExecutionRecord,
buffer: &mut [MaybeUninit<F>],
) {
let padded_nb_rows = <FpOpChip<P> as MachineAir<F>>::num_rows(self, input).unwrap();
let events = match P::FIELD_TYPE {
FieldType::Bn254 => input.get_precompile_events(SyscallCode::BN254_FP_ADD),
FieldType::Bls12381 => input.get_precompile_events(SyscallCode::BLS12381_FP_ADD),
};
let num_event_rows = events.len();
let mut new_byte_lookup_events = Vec::new();
unsafe {
let padding_start = num_event_rows * num_fp_cols::<P>();
let padding_size = (padded_nb_rows - num_event_rows) * num_fp_cols::<P>();
if padding_size > 0 {
core::ptr::write_bytes(buffer[padding_start..].as_mut_ptr(), 0, padding_size);
}
}
let buffer_ptr = buffer.as_mut_ptr() as *mut F;
let values = unsafe {
core::slice::from_raw_parts_mut(buffer_ptr, num_event_rows * num_fp_cols::<P>())
};
values.chunks_exact_mut(num_fp_cols::<P>()).enumerate().for_each(|(idx, row)| {
let (_, event) = &events[idx];
let event = match (P::FIELD_TYPE, event) {
(FieldType::Bn254, PrecompileEvent::Bn254Fp(event)) => event,
(FieldType::Bls12381, PrecompileEvent::Bls12381Fp(event)) => event,
_ => unreachable!(),
};
let cols: &mut FpOpCols<F, P> = row.borrow_mut();
let p = BigUint::from_bytes_le(&words_to_bytes_le_vec(&event.x));
let q = BigUint::from_bytes_le(&words_to_bytes_le_vec(&event.y));
cols.is_add = F::from_canonical_u8((event.op == FieldOperation::Add) as u8);
cols.is_sub = F::from_canonical_u8((event.op == FieldOperation::Sub) as u8);
cols.is_mul = F::from_canonical_u8((event.op == FieldOperation::Mul) as u8);
cols.is_real = F::one();
cols.clk_high = F::from_canonical_u32((event.clk >> 24) as u32);
cols.clk_low = F::from_canonical_u32((event.clk & 0xFFFFFF) as u32);
cols.x_ptr.populate(&mut new_byte_lookup_events, event.x_ptr, P::NB_LIMBS as u64);
cols.y_ptr.populate(&mut new_byte_lookup_events, event.y_ptr, P::NB_LIMBS as u64);
Self::populate_field_ops(&mut new_byte_lookup_events, cols, p, q, event.op);
for i in 0..cols.y_access.len() {
let record = MemoryRecordEnum::Read(event.y_memory_records[i]);
cols.y_access[i].populate(record, &mut new_byte_lookup_events);
cols.y_addrs[i].populate(&mut new_byte_lookup_events, event.y_ptr, i as u64 * 8);
}
for i in 0..cols.x_access.len() {
let record = MemoryRecordEnum::Write(event.x_memory_records[i]);
cols.x_access[i].populate(record, &mut new_byte_lookup_events);
cols.x_addrs[i].populate(&mut new_byte_lookup_events, event.x_ptr, i as u64 * 8);
}
});
output.add_byte_lookup_events(new_byte_lookup_events);
for idx in num_event_rows..padded_nb_rows {
let row_start = idx * num_fp_cols::<P>();
let row = unsafe {
core::slice::from_raw_parts_mut(
buffer[row_start..].as_mut_ptr() as *mut F,
num_fp_cols::<P>(),
)
};
let cols: &mut FpOpCols<F, P> = row.borrow_mut();
let zero = BigUint::zero();
cols.is_add = F::from_canonical_u8(1);
Self::populate_field_ops(&mut vec![], cols, zero.clone(), zero, FieldOperation::Add);
}
}
fn included(&self, shard: &Self::Record) -> bool {
assert!(
shard.get_precompile_events(SyscallCode::BN254_FP_SUB).is_empty()
&& shard.get_precompile_events(SyscallCode::BN254_FP_MUL).is_empty()
&& shard.get_precompile_events(SyscallCode::BLS12381_FP_SUB).is_empty()
&& shard.get_precompile_events(SyscallCode::BLS12381_FP_MUL).is_empty()
);
if let Some(shape) = shard.shape.as_ref() {
shape.included::<F, _>(self)
} else {
match P::FIELD_TYPE {
FieldType::Bn254 => {
!shard.get_precompile_events(SyscallCode::BN254_FP_ADD).is_empty()
}
FieldType::Bls12381 => {
!shard.get_precompile_events(SyscallCode::BLS12381_FP_ADD).is_empty()
}
}
}
}
}
impl<F, P: FpOpField> BaseAir<F> for FpOpChip<P> {
fn width(&self) -> usize {
num_fp_cols::<P>()
}
}
impl<AB, P: FpOpField> Air<AB> for FpOpChip<P>
where
AB: SP1CoreAirBuilder,
Limbs<AB::Var, <P as NumLimbs>::Limbs>: Copy,
{
fn eval(&self, builder: &mut AB) {
let main = builder.main();
let local = main.row_slice(0);
let local: &FpOpCols<AB::Var, P> = (*local).borrow();
builder.assert_bool(local.is_add);
builder.assert_bool(local.is_sub);
builder.assert_bool(local.is_mul);
builder.assert_bool(local.is_real);
builder.assert_eq(local.is_add + local.is_sub + local.is_mul, AB::Expr::one());
let p_limbs = builder.generate_limbs(&local.x_access, local.is_real.into());
let p: Limbs<AB::Expr, <P as NumLimbs>::Limbs> =
Limbs(p_limbs.try_into().expect("failed to convert limbs"));
let q_limbs = builder.generate_limbs(&local.y_access, local.is_real.into());
let q: Limbs<AB::Expr, <P as NumLimbs>::Limbs> =
Limbs(q_limbs.try_into().expect("failed to convert limbs"));
let modulus_coeffs =
P::MODULUS.iter().map(|&limbs| AB::Expr::from_canonical_u8(limbs)).collect_vec();
let p_modulus = Polynomial::from_coefficients(&modulus_coeffs);
local.output.eval_variable(
builder,
&p,
&q,
&p_modulus,
local.is_add,
local.is_sub,
local.is_mul,
AB::F::zero(),
local.is_real,
);
local.output_range.eval(builder, &local.output.result, &p_modulus, local.is_real);
let result_words = limbs_to_words::<AB>(local.output.result.0.to_vec());
let x_ptr = SyscallAddrOperation::<AB::F>::eval(
builder,
P::NB_LIMBS as u32,
local.x_ptr,
local.is_real.into(),
);
let y_ptr = SyscallAddrOperation::<AB::F>::eval(
builder,
P::NB_LIMBS as u32,
local.y_ptr,
local.is_real.into(),
);
for i in 0..local.x_addrs.len() {
AddrAddOperation::<AB::F>::eval(
builder,
Word([x_ptr[0].into(), x_ptr[1].into(), x_ptr[2].into(), AB::Expr::zero()]),
Word::from(8 * i as u64),
local.x_addrs[i],
local.is_real.into(),
);
}
for i in 0..local.y_addrs.len() {
AddrAddOperation::<AB::F>::eval(
builder,
Word([y_ptr[0].into(), y_ptr[1].into(), y_ptr[2].into(), AB::Expr::zero()]),
Word::from(8 * i as u64),
local.y_addrs[i],
local.is_real.into(),
);
}
builder.eval_memory_access_slice_read(
local.clk_high,
local.clk_low,
&local.y_addrs.iter().map(|addr| addr.value.map(Into::into)).collect::<Vec<_>>(),
&local.y_access.iter().map(|access| access.memory_access).collect::<Vec<_>>(),
local.is_real,
);
builder.eval_memory_access_slice_write(
local.clk_high,
local.clk_low + AB::Expr::one(),
&local.x_addrs.iter().map(|addr| addr.value.map(Into::into)).collect::<Vec<_>>(),
&local.x_access.iter().map(|access| access.memory_access).collect::<Vec<_>>(),
result_words,
local.is_real,
);
let (add_syscall_id, sub_syscall_id, mul_syscall_id) = match P::FIELD_TYPE {
FieldType::Bn254 => (
AB::F::from_canonical_u32(SyscallCode::BN254_FP_ADD.syscall_id()),
AB::F::from_canonical_u32(SyscallCode::BN254_FP_SUB.syscall_id()),
AB::F::from_canonical_u32(SyscallCode::BN254_FP_MUL.syscall_id()),
),
FieldType::Bls12381 => (
AB::F::from_canonical_u32(SyscallCode::BLS12381_FP_ADD.syscall_id()),
AB::F::from_canonical_u32(SyscallCode::BLS12381_FP_SUB.syscall_id()),
AB::F::from_canonical_u32(SyscallCode::BLS12381_FP_MUL.syscall_id()),
),
};
let syscall_id_felt = local.is_add * add_syscall_id
+ local.is_sub * sub_syscall_id
+ local.is_mul * mul_syscall_id;
builder.receive_syscall(
local.clk_high,
local.clk_low,
syscall_id_felt,
x_ptr.map(Into::into),
y_ptr.map(Into::into),
local.is_real,
InteractionScope::Local,
);
}
}