#analyzer #embedding #compilation

swamp-program-analyzer

Orchestrates the semantic analysis phase for a Swamp program, analyzing parsed modules in the correct dependency order using swamp-analyzer

4 releases

Uses new Rust 2024

new 0.1.13 Mar 30, 2025
0.1.12 Mar 30, 2025
0.1.11 Mar 29, 2025
0.1.10 Mar 29, 2025

#12 in #compilation

Download history

85 downloads per month
Used in 5 crates (3 directly)

MIT license

325KB
7.5K SLoC

Swamp Program Analyzer

Coordinates the semantic analysis phase for a complete Swamp programming language program by analyzing its modules in the correct order.

Overview

This crate acts as the driver for semantic analysis across an entire Swamp program, defined by a main module and its dependencies. It takes the parsed Abstract Syntax Trees (ASTs) for modules (provided by swamp-dep-loader) and the calculated dependency order, then invokes the core swamp-analyzer for each module sequentially.

Its primary responsibility is to ensure that modules are analyzed in an order that respects their dependencies, making the symbols and types exported by one module available when analyzing subsequent modules that depend on it. It builds up the complete analyzed representation of the program.

Key Functions

  • Input: Takes parsed modules (DependencyParser), the analysis order (Vec<Vec<String>>), a SourceMap, the core library symbols, and the overall ProgramState.
  • Orchestration: Iterates through modules in the correct dependency order.
  • Invokes Analyzer: Calls swamp_analyzer::Analyzer for each module, providing the necessary context (including symbols from already-analyzed dependencies).
  • Collects Results: Aggregates the analyzed modules (containing symbol tables and potentially main expressions) into a swamp_modules::Modules collection within the Program state.
  • Error Handling: Propagates errors encountered during the analysis of any module.

Role in Compilation

This crate sits between dependency loading/parsing and later compilation stages like code generation:

  1. Parsing & Dependency Loading (swamp-dep-loader): Source Code -> Parsed Modules + Dependency Order
  2. Program Analysis (swamp-program-analyzer): Parsed Modules + Order -> Analyzed Program (swamp_modules::Modules + ASG in swamp-semantic)
  3. Code Generation (swamp-code-gen): Analyzed Program / ASG -> Bytecode (swamp-vm-types)

Installation

This crate is a core part of the Swamp compiler and is not typically used standalone.

[dependencies]
swamp-program-analyzer = "0.1.13"

License

This project is licensed under the MIT License - see the LICENSE file for details.

Copyright (c) Peter Bjorklund. All rights reserved. https://github.com/swamp/swamp

Dependencies

~2.7–10MB
~104K SLoC