Module adapters

Source

Structs§

LoadStoreInstruction
LoadStore Adapter handles all memory and register operations, so it must be aware of the instruction type, specifically whether it is a load or store LoadStore Adapter handles 4 byte aligned lw, sw instructions, 2 byte aligned lh, lhu, sh instructions and 1 byte aligned lb, lbu, sb instructions This adapter always batch reads/writes 4 bytes, thus it needs to shift left the memory pointer by some amount in case of not 4 byte aligned intermediate pointers
Rv32BaseAluAdapterAir
Rv32BaseAluAdapterChip
Reads instructions of the form OP a, b, c, d, e where [a:4]_d = [b:4]_d op [c:4]_e. Operand d can only be 1, and e can be either 1 (for register reads) or 0 (when c is an immediate).
Rv32BaseAluAdapterCols
Rv32BaseAluReadRecord
Rv32BaseAluWriteRecord
Rv32BranchAdapterAir
Rv32BranchAdapterChip
Reads instructions of the form OP a, b, c, d, e where if([a:4]_d op [b:4]_e) pc += c. Operands d and e can only be 1.
Rv32BranchAdapterCols
Rv32BranchReadRecord
Rv32BranchWriteRecord
Rv32CondRdWriteAdapterAir
Rv32CondRdWriteAdapterChip
This adapter doesn’t read anything, and maybe writes to [a:4]_d, where d == 1
Rv32CondRdWriteAdapterCols
Rv32JalrAdapterAir
Rv32JalrAdapterChip
Rv32JalrAdapterCols
Rv32JalrReadRecord
Rv32JalrWriteRecord
Rv32LoadStoreAdapterAir
Rv32LoadStoreAdapterAirInterface
Rv32LoadStoreAdapterChip
This chip reads rs1 and gets a intermediate memory pointer address with rs1 + imm. In case of Loads, reads from the shifted intermediate pointer and writes to rd. In case of Stores, reads from rs2 and writes to the shifted intermediate pointer.
Rv32LoadStoreAdapterCols
Rv32LoadStoreAdapterRuntimeInterface
The LoadStoreAdapter separates Runtime and Air AdapterInterfaces. This is necessary because prev_data should be owned by the core chip and sent to the adapter, and it must have an AB::Var type in AIR as to satisfy the memory_bridge interface. This is achieved by having different types for reads and writes in Air AdapterInterface. This method ensures that there are no modifications to the global interfaces.
Rv32LoadStoreReadRecord
Rv32LoadStoreWriteRecord
Rv32MultAdapterAir
Rv32MultAdapterChip
Reads instructions of the form OP a, b, c, d where [a:4]_d = [b:4]_d op [c:4]_d. Operand d can only be 1, and there is no immediate support.
Rv32MultAdapterCols
Rv32MultReadRecord
Rv32MultWriteRecord
Rv32RdWriteAdapterAir
Rv32RdWriteAdapterChip
This adapter doesn’t read anything, and writes to [a:4]_d, where d == 1
Rv32RdWriteAdapterCols
Rv32RdWriteWriteRecord

Constants§

INT256_NUM_LIMBS
256-bit heap integer stored as 32 bytes (32 limbs of 8-bits)
RV32_CELL_BITS
RV32_REGISTER_NUM_LIMBS
32-bit register stored as 4 bytes (4 limbs of 8-bits) in OpenVM memory.
RV_B_TYPE_IMM_BITS
RV_IS_TYPE_IMM_BITS
RV_J_TYPE_IMM_BITS

Functions§

abstract_compose
compose
Convert the RISC-V register data (32 bits represented as 4 bytes, where each byte is represented as a field element) back into its value as u32.
decompose
inverse of compose
read_rv32_register
Read register value as RV32_REGISTER_NUM_LIMBS limbs from memory. Returns the read record and the register value as u32. Does not make any range check calls.
unsafe_read_rv32_register
Peeks at the value of a register without updating the memory state or incrementing the timestamp.