Crates.io | air-ir |
lib.rs | air-ir |
version | 0.3.0 |
source | src |
created_at | 2022-11-10 22:21:46.319481 |
updated_at | 2023-07-12 23:50:54.745032 |
description | Intermediate representation for the AirScript language |
homepage | |
repository | https://github.com/0xPolygonMiden/air-script |
max_upload_size | |
id | 712444 |
size | 107,462 |
This crate contains the intermediate representation for AirScript, AirIR
.
The purpose of the AirIR
is to provide a simple and accurate representation of an AIR that allows for optimization and translation to constraint evaluator code in a variety of target languages.
Generate an AirIR
from an AirScript AST (the output of the AirScript parser) using the new
method. The new
method will return a new AirIR
or an Error
of type SemanticError
if it encounters any errors while processing the AST.
The new
method will first iterate through the source sections that contain declarations to build a symbol table with constants, trace columns, public inputs, periodic columns and random values. It will return a SemanticError
if it encounters a duplicate, incorrect, or missing declaration. Once the symbol table is built, the constraints and intermediate variables in the boundary_constraints
and integrity_constraints
sections of the AST are processed. Finally, new
returns a Result containing the AirIR
or a SemanticError
.
Example usage:
// parse the source string to a Result containing the AST or an Error
let ast = parse(source.as_str()).expect("Parsing failed");
// process the AST to get a Result containing the AirIR or an Error
let ir = AirIR::new(&ast)
Although generation of an AirIR
uses a symbol table while processing the source AST, the internal representation only consists of the following:
AirIR
.main
and auxiliary
).ConstraintRoot
for each trace segment (e.g. main or auxiliary), where ConstraintRoot
contains the node index in the graph where each of the constraint starts and the constraint domain which specifies the row(s) accessed by each of the constraints.