| Crates.io | tasm-lib |
| lib.rs | tasm-lib |
| version | 2.0.0 |
| created_at | 2023-07-06 12:41:35.492545+00 |
| updated_at | 2026-01-22 10:28:01.232407+00 |
| description | Code snippets for Triton VM assembly with tests and statistics. |
| homepage | https://triton-vm.org/ |
| repository | https://github.com/TritonVM/tasm-lib |
| max_upload_size | |
| id | 909815 |
| size | 4,065,284 |
This repository contains a collection of functions written in Triton VM assembly (“TASM”). The functions supplied here can be seen as a standard library for Triton VM: basic functions that are used a lot.
The most intricate, ready-to-use snippet contained here is a verifier for the zk-STARK of Triton VM. You can use Triton VM to prove correct execution of this verifier. This achieves recursion and, ultimately, Proof Carrying Data.
Triton VM has $p = 2^{64} - 2^{32} + 1$ number of words in its RAM. Each word is a prime field element in the prime $p$.1 RAM can be initialized at startup by setting non-determinism (“ND”).
Memory is, by convention, divided up into chunks called pages. All pages, except the last one, have a size of $2^{32}$ words. The last page has a size of $1$. Memory consists of $2^{32}$ pages.
| pages | region | size in words | category | purpose |
|---|---|---|---|---|
| $0$ | $[0, 2^{32})$ | $2^{32}$ | non-deterministic | for pre-loaded data |
| $[1,2^{31})$ | $[2^{32}, 2^{63})$ | $2^{63}-2^{32}$ | dynamic | run-time data |
| $[2^{31},2^{32}-4)$ | $[2^{63}, 2^{34})$ | $2^{63}-2^{34}$ | static | not reserved |
| $2^{32}-4$ and $2^{32}-3$ | $[2^{64}-2^{34},2^{64}-2^{33})$ | $2^{33}$ | static | Reserved for STARK-verifier |
| $2^{32}-2$ | $[2^{64}-2^{33}, 2^{64}-2^{32})$ | $2^{32}$ | static | available for Library::kmalloc |
| $2^{32}-1$ | $[2^{64}-2^{32}, 0)$ | $1$ | static | state of DynMalloc snippet |
kmalloc method on Library can allocate from $-2$ down to (and including) $-2^{32}-1 = 2^{64}-2^{33}+1$.
The rest of memory is also considered static, but cannot be accessed using kmalloc.
Individual snippets are allowed to use the range from $[2^{63}, 2^{64}-2^{33})$.
But the two last pages, the range $[2^{64}-2^{34},2^{64}-2^{33})$, is used by
the snippet that verifies the VM's own proofs.The memory conventions above are enforced by the code in this library. They are not enforced by Triton VM. If there exists non-deterministic input to Triton VM that exhibits any of the following behavior, this is considered a bug:
Additionally, a pointer that is resolved dynamically must only be resolved at most one time for each instance. This means that memory offsets defined in memory must be resolved and kept on stack or in static memory throughout the execution of the program. They must not be resolved multiple times, as the memory could have changed in between two pointer resolutions.
A u64 type is stored on the stack as two u32 elements.
Triton VM provides native support for u32.
A u64 is stored with the least significant part on top of the stack and the most significant part below it:
if the least significant part is st0, the most significant part is stored in st1.
A u128 is represented by four u32 values, where each value takes up a word of space in the VM.
u128 follow a similar encoding to that of u64:
The least significant u32 value is stored on top of the stack, in st0.
Runtimes are printed in the JSON files in the benchmarks directory.
These benchmarks count the number of clock cycles it took to execute each benchmark.
They also count coprocessor use, like u32-table height or
hash-table height.
The benchmark results are generated by tests labeled as benchmark.
If you manage to lower any of the numbers by changing a TASM snippet, please make a pull request;
we like efficient algorithms. 😊
All benchmark results must be deterministic. A benchmark that does not always generate the same numbers is considered buggy.
The prime is colloquially called “0xfoi” due to its hexadecimal representation, 0xffffffff00000001. ↩