Expand description
Traits and constructs for the OpenVM architecture.
Re-exports§
pub use openvm_instructions as instructions;
pub use segment::*;
pub use vm::*;
Modules§
- hasher
- segment
- Runtime execution and segmentation
- vm
- Top level VirtualMachine constructor and API.
Structs§
- Adapter
AirContext - Adapter
Runtime Context - Basic
Adapter Interface - The most common adapter interface.
Performs
NUM_READS
batch reads of sizeREAD_SIZE
andNUM_WRITES
batch writes of sizeWRITE_SIZE
. - BusIndex
Manager - DynAdapter
Interface - An interface that is fully determined during runtime. This should only be used as a last resort when static compile-time guarantees cannot be made.
- DynArray
- Newtype to implement
From
. - Execution
Bridge - Execution
Bridge Interactor - Execution
Bus - Execution
State - Flat
Interface - Similar to
BasicAdapterInterface
, but it flattens the reads and writes into a single flat array for each - ImmInstruction
- Memory
Config - Minimal
Instruction - Signed
ImmInstruction - System
Base - Base system chips. The following don’t execute instructions, but are essential for the VM architecture.
- System
Config - System-level configuration for the virtual machine. Contains all configuration parameters that are managed by the architecture, including configuration for continuations support.
- System
Port - SystemPort combines system resources needed by most extensions
- System
Trace Heights - VecHeap
Adapter Interface - VecHeap
TwoReads Adapter Interface - VmAir
Wrapper - VmChip
Complex - The minimum collection of chips that any VM must have.
- VmChip
Wrapper - VmComplex
Trace Heights - VmInventory
- VmInventory
Builder - Builder for processing unit. Processing units extend an existing system unit.
- VmInventory
Trace Heights
Enums§
Constants§
- BOUNDARY_
AIR_ ID - AIR ID of the Memory Boundary AIR.
- CONNECTOR_
AIR_ ID - MERKLE_
AIR_ ID - If VM has continuations enabled, all AIRs of MemoryController are added after ConnectorChip. Merkle AIR commits start/final memory states.
- POSEIDO
N2_ WIDTH - Width of Poseidon2 VM uses.
- PROGRAM_
AIR_ ID - Global AIR ID in the VM circuit verifying key.
- PROGRAM_
CACHED_ TRACE_ INDEX - ProgramAir is the first AIR so its cached trace should be the first main trace.
- PUBLIC_
VALUES_ AIR_ ID - If PublicValuesAir is enabled, its AIR ID is 2. PublicValuesAir is always disabled when continuations is enabled.
Traits§
- AnyEnum
- A helper trait for downcasting types that may be enums.
- Instruction
Executor - Phantom
SubExecutor - Phantom sub-instructions affect the runtime of the VM and the trace matrix values. However they all have no AIR constraints besides advancing the pc by DEFAULT_PC_STEP.
- VmAdapter
Air - VmAdapter
Chip - The adapter owns all memory accesses and timestamp changes.
The adapter AIR should also own
ExecutionBridge
andMemoryBridge
. - VmAdapter
Interface - The interface between primitive AIR and machine adapter AIR.
- VmConfig
- VmCore
Air - VmCore
Chip - Trait to be implemented on primitive chip to integrate with the machine.
- VmExtension
- Configuration for a processor extension.
Functions§
- generate_
air_ proof_ input - Generates an AIR proof input of the chip with the given height, if any.
- get_
default_ segmentation_ strategy - vm_
poseidon2_ config - Returns a Poseidon2 config for the VM.
Type Aliases§
- Result
- System
Complex - The base VmChipComplex with only system chips.