qala-compiler 0.1.0

Compiler and bytecode VM for the Qala programming language
Documentation
//! the Qala compiler and bytecode VM, as a single crate.
//!
//! the pipeline is lexer -> parser -> type and effect checker -> codegen -> VM.
//! this file declares the modules in dependency order. the `wasm-bindgen`
//! bridge that exposes the pipeline to JavaScript lives in `wasm.rs`.

pub mod ast;
pub mod diagnostics;
pub mod effects;
pub mod errors;
pub mod lexer;
pub mod parser;
pub mod span;
pub mod token;
pub mod typechecker;
pub mod typed_ast;
pub mod types;
// constant-pool value enum -- shared by chunk, codegen, vm
pub mod value;
// bytecode opcode enum -- consumed by chunk, codegen, optimizer, vm
pub mod opcode;
// instruction stream + constant pool + source map + disassembler.
pub mod chunk;
// typed AST -> bytecode; constant folding, DCE, defer compilation, comptime.
pub mod codegen;
// typed AST -> AArch64 assembly text; the CPSC 355 hosted-Linux dialect.
pub mod arm64;
// peephole optimizer -- single-pass bytecode rewrites.
pub mod optimizer;
// stack-based bytecode interpreter -- call frames, heap, single-step.
pub mod vm;
// native standard library -- the 15 built-in functions the VM dispatches.
pub mod stdlib;
// wasm-bindgen bridge -- the browser-facing Qala session API.
pub mod wasm;