Skip to content

Releases: 0xPolygonMiden/miden-vm

v0.13.2

02 Apr 14:31
8f61164
Compare
Choose a tag to compare

Changes

  • Relaxed rules for identifiers created via Ident::new, ProcedureName::new, LibraryNamespace::new, and Library::new_from_components (#1735)
  • [BREAKING] Renamed Ident::new_unchecked and ProcedureName::new_unchecked to from_raw_parts (#1735).

Fixes

  • Fixed various issues with pretty printing of Miden Assembly (#1740).

v0.13.1

22 Mar 06:33
c93c2c4
Compare
Choose a tag to compare
  • Added prepare_hasher_state and hash_memory_with_state procedures to the stdlib::crypto::hashes::rpo module (#1718).

v0.13.0

21 Mar 01:26
80e8143
Compare
Choose a tag to compare

Enhancements

  • Added to the Assembler the ability to vendor a compiled library.
  • [BREAKING] Update CLI to accept masm or masp files as input for all commands (#1683, #1692).
  • [BREAKING] Introduced HORNERBASE, HORNEREXT and removed RCOMBBASE instructions (#1656).

Changes

  • Update minimum supported Rust version to 1.85.
  • Change Chiplet Fields to Public (#1629).
  • [BREAKING] Updated Winterfell dependency to v0.12 (#1658).
  • Introduce BusDebugger to facilitate debugging buses (#1664).
  • Update Falcon verification procedure to use HORNERBASE (#1661).
  • Update recursive verifier to use HORNERBASE (#1665).
  • Fix the docs and implementation of EXPACC (#1676).
  • Running a call/syscall/dyncall while processing a syscall now results in an error (#1680).
  • Using a non-binary value as a loop condition now results in an error (#1685).
  • [BREAKING] Remove Assembler::assemble_common() from the public interface (#1689).
  • Fix Horner{Base, Ext} bus requests to memory chiplet (#1689).
  • Fix docs on the layout of the auxiliary segment trace (#1694).
  • Optimize FRI remainder polynomial check (#1670).
  • Remove FALCON_SIG_TO_STACK event (#1703).
  • Prevent U64Div event from crashing processor (#1710).

v0.12.0

22 Jan 11:10
ea39c05
Compare
Choose a tag to compare

Highlights

  • [BREAKING] Refactored memory to be element-addressable (#1598).

Changes

  • [BREAKING] Resolved flag collision in --verify command and added functionality for optional input/output files (#1513).
  • [BREAKING] Refactored MastForest serialization/deserialization to put decorator data at the end of the binary (#1531).
  • [BREAKING] Refactored Process struct to no longer take ownership of the Host (#1571).
  • [BREAKING] Converted ProcessState from a trait to a struct (#1571).
  • [BREAKING] Simplified Host and AdviceProvider traits (#1572).
  • [BREAKING] Updated Winterfell dependency to v0.11 (#1586).
  • [BREAKING] Cleaned up benchmarks and examples in the miden-vm crate (#1587)
  • [BREAKING] Switched to thiserror 2.0 derive errors and refactored errors (#1588).
  • Moved handling of FalconSigToStack event from system event handlers to the DefaultHost (#1630).

Enhancements

  • Added options --kernel, --debug and --output to miden bundle (#1447).
  • Added miden_core::mast::MastForest::advice_map to load it into the advice provider before the MastForest execution (#1574).
  • Optimized the computation of the DEEP queries in the recursive verifier (#1594).
  • Added validity checks for the inputs to the recursive verifier (#1596).

v0.11.0

05 Nov 04:07
c61f099
Compare
Choose a tag to compare

Enhancements

  • Added miden_core::utils::sync::racy_lock module (#1463).
  • Updated miden_core::utils to re-export std::sync::LazyLock and racy_lock::RacyLock as LazyLock for std and no_std environments, respectively (#1463).
  • Debug instructions can be enabled in the cli run command using --debug flag (#1502).
  • Added support for procedure annotation (attribute) syntax to Miden Assembly (#1510).
  • Make miden-prover::prove() method conditionally asynchronous (#1563).

Changes

  • [BREAKING] Wrapped MastForests in Program and Library structs in Arc (#1465).
  • MastForestBuilder: use MastNodeId instead of MAST root to uniquely identify procedures (#1473).
  • Made the undocumented behavior of the VM with regard to undefined behavior of u32 operations, stricter (#1480).
  • Introduced the Emit instruction (#1496).
  • [BREAKING] ExecutionOptions::new constructor requires a boolean to explicitly set debug mode (#1502).
  • [BREAKING] The run and the prove commands in the cli will accept --trace flag instead of --tracing (#1502).
  • Migrated to new padding rule for RPO (#1343).
  • Migrated to miden-crypto v0.11.0 (#1343).
  • Implemented MastForest merging (#1534).
  • Rename EqHash to MastNodeFingerprint and make it pub (#1539).
  • Updated Winterfell dependency to v0.10 (#1533).
  • [BREAKING] DYN operation now expects a memory address pointing to the procedure hash (#1535).
  • [BREAKING] DYNCALL operation fixed, and now expects a memory address pointing to the procedure hash (#1535).
  • Permit child MastNodeIds to exceed the MastNodeIds of their parents (#1542).
  • Don't validate export names on Library deserialization (#1554)

Fixes

  • Fixed an issue with formatting of blocks in Miden Assembly syntax
  • Fixed the construction of the block hash table (#1506)
  • Fixed a bug in the block stack table (#1511) (#1512) (#1557)
  • Fixed the construction of the chiplets virtual table (#1514) (#1556)
  • Fixed the construction of the chiplets bus (#1516) (#1525)
  • Decorators are now allowed in empty basic blocks (#1466)

v0.10.5

21 Aug 21:16
4923e3d
Compare
Choose a tag to compare

Enhancements

  • Updated MastForest::read_from to deserialize without computing node hashes unnecessarily (#1453).
  • Assembler: Merge contiguous basic blocks (#1454).
  • Added support for executing Dyn nodes from external MAST forests (#1455).
  • Assembler: Add a threshold number of operations after which we stop merging more in the same block (#1461).

Changes

  • Added new_unsafe() constructors to MAST node types which do not compute node hashes (#1453).
  • Consolidated BasicBlockNode constructors and converted assert flow to MastForestError::EmptyBasicBlock (#1453).

Fixes

  • Fixed an issue with registering non-local procedures in MemMastForestStore (#1462).
  • Added a check for circular external node lookups in the processor (#1464).

v0.10.3

13 Aug 07:25
431f917
Compare
Choose a tag to compare

Enhancements

  • Added with-debug-info feature to miden-stdlib (#1445).
  • Added Assembler::add_modules_from_dir() method (#1445).
  • [BREAKING] Implemented building of multi-module kernels (#1445).

Changes

  • [BREAKING] Replaced SourceManager parameter with Assembler in Library::from_dir (#1445).
  • [BREAKING] Moved Library and KernelLibrary exports to the root of the miden-assembly crate. (#1445).

v0.10.2

11 Aug 08:22
d1679d6
Compare
Choose a tag to compare

Enhancements

  • Removed linear search of trace rows from BlockHashTableRow::table_init() (#1439).
  • Exposed some pretty printing internals for MastNode (#1441).
  • Made KernelLibrary impl Clone and AsRef<Library> (#1441).
  • Added serialization to the Program struct (#1442).

Changes

  • [BREAKING] Removed serialization of AST structs (#1442).

v0.10.0

07 Aug 05:25
81eaa3e
Compare
Choose a tag to compare

Features

  • Added source location tracking to assembled MAST (#1419).
  • Added error codes support for the mtree_verify instruction (#1328).
  • Added support for immediate values for lt, lte, gt, gte comparison instructions (#1346).
  • Added support for immediate values for u32lt, u32lte, u32gt, u32gte, u32min and u32max comparison instructions (#1358).
  • Added support for the nop instruction, which corresponds to the VM opcode of the same name, and has the same semantics.
  • Added support for the if.false instruction, which can be used in the same manner as if.true
  • Added support for immediate values for u32and, u32or, u32xor and u32not bitwise instructions (#1362).
  • [BREAKING] Assembler: add the ability to compile MAST libraries, and to assemble a program using compiled libraries (#1401)

Enhancements

  • Changed MAST to a table-based representation (#1349).
  • Introduced MastForestStore (#1359).
  • Adjusted prover's metal acceleration code to work with 0.9 versions of the crates (#1357).
  • Relaxed the parser to allow one branch of an if.(true|false) to be empty.
  • Optimized std::sys::truncate_stuck procedure (#1384).
  • Updated CI and Makefile to standardize it across Miden repositories (#1342).
  • Add serialization/deserialization for MastForest (#1370)
  • Updated CI to support CHANGELOG.md modification checking and no changelog label (#1406)
  • Introduced MastForestError to enforce MastForest node count invariant (#1394)
  • Added functions to MastForestBuilder to allow ensuring of nodes with fewer LOC (#1404)
  • [BREAKING] Made Assembler single-use (#1409).
  • Removed ProcedureCache from the assembler (#1411).
  • Added functions to MastForest and MastForestBuilder to add and ensure nodes with fewer LOC (#1404, #1412)
  • Added Assembler::assemble_library() and Assembler::assemble_kernel() (#1413, #1418).
  • Added miden_core::prettier::pretty_print_csv helper, for formatting of iterators over PrettyPrint values as comma-separated items.
  • Added source code management primitives in miden-core (#1419)
  • Added make test-fast and make test-skip-proptests Makefile targets for faster testing during local development.
  • Added ProgramFile::read_with constructor that takes a SourceManager impl to use for source management.
  • Added RowIndex(u32) (#1408).

Changed

  • When using if.(true|false) .. end, the parser used to emit an empty block for the branch that was elided. The parser now emits a block containing a single nop instruction instead.
  • [BREAKING] internals configuration feature was renamed to testing (#1399).
  • The AssemblyOp decorator now contains an optional Location (#1419)
  • The Assembler now requires passing in a Arc<dyn SourceManager>, for use in rendering diagnostics.
  • The Module::parse_file and Module::parse_str functions have been removed in favor of calling Module::parser and then using the ModuleParser methods.
  • The Compile trait now requires passing a SourceManager reference along with the item to be compiled.
  • Update minimum supported Rust version to 1.80 (#1425).

v0.9.2

25 Apr 22:54
9abd8d1
Compare
Choose a tag to compare
  • Allowed enabling debug mode via ExecutionOptions (#1316).