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
85 downloads per month
Used in 5 crates
(3 directly)
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>>
), aSourceMap
, the core library symbols, and the overallProgramState
. - 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 theProgram
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:
- Parsing & Dependency Loading (
swamp-dep-loader
): Source Code -> Parsed Modules + Dependency Order - Program Analysis (
swamp-program-analyzer
): Parsed Modules + Order -> Analyzed Program (swamp_modules::Modules
+ ASG inswamp-semantic
) - 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
Copyright (c) Peter Bjorklund. All rights reserved. https://github.com/swamp/swamp
Dependencies
~2.7–10MB
~104K SLoC