Precompiles
Precompiles let Miden programs make claims about expensive computations without executing them
directly in the VM trace, while still binding those claims into the VM proof. This page covers the
VM-side mechanics: wrappers register deferred nodes, bind their digests to circuit-visible data, and
log statement digests that evaluate to TRUE. VmProof authenticates the resulting root. Deferred
execution proofs transport passive wire; the deferred-proof semantics
define hydration, proving, completion, and verification.
Concrete proof-bound implementations live in the miden-precompiles crate. Their MASM support
modules are currently internal implementation detail used by core-library facades and tests.
Current data model
Tag— A 4-felt node constructor. Framework ids0,1, and2are reserved forTRUE, semanticAND, and opaque frameworkCHUNKS. Precompile ids are derived from precompile names and interpret the remaining threeargsfelts locally.Node— A content-addressed(tag, payload)term in the deferred DAG. Payloads are data chunks, join child digests, pair lists oflhs_digest || rhs_digestchunks, or the frameworkTRUEsentinel.Precompile— A host implementation that owns one precompile id and decodes the structural shape for its tags. It evaluates nodes to canonical form and optionally contributes constants throughinit().PrecompileRegistry— The host/framework dispatcher for trusted precompile implementations. The type remains inmiden-coreso the framework does not depend on concrete implementations.DeferredState— The host-side DAG witness accumulated during execution. It tracks registered nodes, evaluates them under the registry, and maintains the rolling deferred root.DeferredStateWire— The passive canonical opening transported by a deferred execution proof. Proof decoding does not hydrate it.miden_vm::precompile_witness_from_wireexplicitly applies the bundled registry and validates it when precompile proving is required.- Deferred root — A single digest public value. Each logged statement appends
Node::AND(previous_root, statement_digest)and advances the root to that node digest.
Lifecycle overview
- Wrapper registers nodes – Internal MASM support code stages node payloads on the operand
stack or in memory and emits
adv.register_deferred/adv.register_deferred_data. Registration stores the node in host-sideDeferredState, checks structural child closure, and evaluates the node immediately under the installed registry. - Wrapper binds digests inside the VM – Registration arguments are visible in the VM
execution trace, but the event does not constrain the host-side
DeferredStateupdate. Memory-backed registration also performs direct host reads without adding AIR accesses. The wrapper computes each proof-relevant digest with VM instructions from the exact same tag and stack payload or ordered memory chunk sequence. - Wrapper evaluates only through explicit predicates – When a wrapper uses
adv.evaluate_deferred*to obtain host-computed canonical data, it must use VM instructions to relate that advice to values established independently of it, then log a statement digest that bundled hydration can re-evaluate before precompile proving. log_deferredfolds a statement – The opcode expectsSTMNTat stack offsets4..8.STMNTmust already be registered inDeferredStateand evaluate toTRUE. The constrained Poseidon2 permutation computesROOT_NEW = rate0(Poseidon2([ROOT_PREV, STMNT, Tag::AND])), and host-side deferred state records the correspondingANDnode.
Responsibilities
- VM — Executes deferred advice events and
log_deferred, maintains the rolling deferred root, and exposes the final root as a public value. - Host / advice provider — Maintains
DeferredState, runs trusted precompile implementations, and supplies evaluation advice when wrappers request it. - MASM wrapper — Registers concrete deferred nodes and computes node and statement digests
with VM instructions from exact stack payloads or memory reads. It logs only statements that
should evaluate to
TRUE, and hides helper outputs from callers when appropriate. Proving, verification, transport, and resource policy are specified in the deferred-proof semantics.
Conventions
- Tag layout:
TAG = [precompile_id, arg0, arg1, arg2].precompile_idselects the framework or owning precompile.arg0..arg2are interpreted by the selected precompile.- Framework id
0isTag::TRUE; framework id1isTag::AND; framework id2isTag::CHUNKS.
- Payload shapes are declared by the selected precompile's
decode(args), but semantic lengths are tag-specific and validated by the owning precompile:NodeType::Dataaccepts one or more opaque 8-felt chunks. For memory-backed registration, the stack-suppliedn_chunksdetermines how many chunks are read.NodeType::Joinreadslhs_digest || rhs_digest.NodeType::PairListaccepts one or morelhs_digest || rhs_digestchunks. Precompiles that encode a pair count in tag arguments must check the actual payload length during evaluation.
log_deferredstack effect:[_, STMNT, _, ...] -> [ROOT_NEW, OUT_RATE1, OUT_CAP, ...]whereSTMNToccupies stack offsets4..8. Wrappers usually drop the three output words after the root transition has been constrained.- Input and memory layouts are precompile-specific. Core-library wrappers define the native formats for hash facades and for arithmetic/curve support used by signature verification.
Examples
- Hash support wrappers register the input/result nodes needed for the hash claim and log a statement digest that verifies the claimed digest.
- Signature support wrappers register the public key, precompile-specific message input, signature, and verification predicate nodes, then log the predicate statement.
Related reading
- Deferred computation – deferred DAG, wire, and proof lifecycle.
log_deferredinstruction – stack behaviour and opcode semantics.DeferredStateWireimplementation (core/src/deferred/wire.rs) – passive canonical opening.