|
|
||
|---|---|---|
| .. | ||
| cli | ||
| cli_utils | ||
| compiler | ||
| docs | ||
| docs_cli | ||
| error_macros | ||
| glue | ||
| highlight | ||
| language_server | ||
| linker | ||
| packaging | ||
| repl_cli | ||
| repl_eval | ||
| repl_expect | ||
| repl_test | ||
| repl_ui | ||
| repl_wasm | ||
| reporting | ||
| roc_std | ||
| test_utils | ||
| test_utils_dir | ||
| tracing | ||
| utils | ||
| valgrind | ||
| vendor | ||
| wasi-libc-sys | ||
| wasm_interp | ||
| wasm_module | ||
| building_a_roc_application.svg | ||
| README.md | ||
| roc_compiler_stages.svg | ||
Roc Internals
Roc has different rust crates for various binaries and libraries. Their roles are briefly described below. If you'd like to learn more, have any questions, or suspect something is out of date, please start a discussion on the Roc Zulip!
You can use cargo doc to generate docs for a specific package; e.g.
cargo doc --package roc_ast --open
cli/ - roc_cli
The roc binary that brings together all functionality in the Roc toolset.
cli_utils/ - cli_utils
Provides shared code for cli tests and benchmarks.
compiler/
Compiles .roc files and combines them with their platform into an executable binary. See compiler/README.md for more information.
TODO explain what "compiler frontend" is TODO explain what "compiler backend" is
The compiler includes the following sub-crates;
roc_alias_analysisPerforms analysis and optimizations to remove unneeded reference counts at runtime, and supports in-place mutation.arena_poolAn implementation of an arena allocator designed for the compiler's workloads.roc_buildResponsible for coordinating building and linking of a Roc app with its host.roc_builtinsprovides the Roc functions and modules that are implicitly imported into every module. See README.md for more information.roc_canCanonicalize a roc abstract syntax tree, resolving symbols, re-ordering definitions, and preparing a module for type inference.roc_collectionsDomain-specific collections created for the needs of the compiler.roc_constrainResponsible for building the set of constraints that are used during type inference of a program, and for gathering context needed for pleasant error messages when a type error occurs.roc_debug_flagsEnvironment variables that can be toggled to aid debugging of the compiler itself.roc_deriveprovides auto-derivers for builtin abilities likeHashandDecode.roc_exhaustiveprovides exhaustiveness checking for Roc.roc_fmtThe roc code formatter.roc_gen_devprovides the compiler backend to generate Roc binaries fast, for a nice developer experience. See README.md for more information.roc_gen_llvmprovides the LLVM backend to generate Roc binaries. Used to generate a binary with the fastest possible execution speed.roc_gen_wasmprovides the WASM backend to generate Roc binaries. See README.md for more information.roc_identImplements data structures used for efficiently representing small strings, like identifiers.roc_internprovides generic interners for concurrent and single-thread use cases.roc_late_solveprovides type unification and solving primitives from the perspective of the compiler backend.roc_loadUsed to load a .roc file and coordinate the compiler pipeline, including parsing, type checking, and code generation.roc_load_internalThe internal implementation of roc_load, separate from roc_load to support caching.roc_moduleImplements data structures used for efficiently representing unique modules and identifiers in Roc programs.roc_monoRoc's main intermediate representation (IR), which is responsible for monomorphization, defunctionalization, inserting ref-count instructions, and transforming a Roc program into a form that is easy to consume by a backend.roc_parseImplements the Roc parser, which transforms a textual representation of a Roc program to an abstract syntax tree.roc_problemprovides types to describe problems that can occur when compiling.roccode.roc_regionData structures for storing source-code-location information, used heavily for contextual error messages.roc_targetprovides types and helpers for compiler targets such asdefault_x86_64.roc_serializeprovides helpers for serializing and deserializing to/from bytes.roc_solveThe entry point of Roc's type inference system. Implements type inference and specialization of abilities.roc_solve_problemprovides types to describe problems that can occur during solving.test_deriveTests Roc's auto-derivers.test_gencontains all of Roc's code generation tests. See README.md for more information.test_monoTests Roc's generation of the mono intermediate representation.test_mono_macrosMacros for use intest_mono.roc_typesVarious representations and utilities for dealing with types in the Roc compiler.roc_unifyImplements Roc's unification algorithm, the heartstone of Roc's type inference.
docs/ - roc_docs
Generates html documentation from Roc files. Used for roc-lang.org/builtins/Num.
docs_cli/ - roc_docs_cli library and roc-docs binary
Provides a binary that is only used for static build servers.
error_macros/ - roc_error_macros
Provides macros for consistent reporting of errors in Roc's rust code.
glue/ - roc_glue
The roc_glue crate generates code needed for platform hosts to communicate with Roc apps. This tool is not necessary for writing a platform in another language, however, it's a great convenience! Currently supports Rust platforms, and the plan is to support any language via a plugin model.
highlight/ - roc_highlight
Provides syntax highlighting for the static site gen platform which is used by the tutorial.
linker/ - roc_linker
Surgical linker that links platforms to Roc applications. We created our own linker for performance, since regular linkers add complexity that is not needed for linking Roc apps. Because we want roc to manage the build system and final linking of the executable, it is significantly less practical to use a regular linker. See README.md for more information.
repl_cli/ - roc_repl_cli
Command Line Interface(CLI) functionality for the Read-Evaluate-Print-Loop (REPL).
repl_eval/ - roc_repl_eval
Provides the functionality for the REPL to evaluate Roc expressions.
repl_state/ - roc_repl_state
Implements the state machine the to handle user input for the REPL (CLI and web)
If the user enters an expression, like x * 2, check it evaluate it.
If the user enters a declaration, like x = 123, check it and remember it, but don't evaluate.
repl_expect/ - roc_repl_expect
Supports evaluating expect and printing contextual information when they fail.
repl_test/ - repl_test
Tests the roc REPL.
repl_wasm/ - roc_repl_wasm
Provides a build of the REPL for the Roc website using WebAssembly. See README.md for more information.
reporting/ - roc_reporting
Responsible for generating warning and error messages.
roc_std/ - roc_std
Provides Rust representations of Roc data structures.
test_utils/ - roc_test_utils
Provides testing utility functions for use throughout the Rust code base.
tracing/ - roc_tracing
Provides tracing utility functions for various executable entry points.
utils/ - roc_utils
Provides utility functions used all over the code base.
vendor/
These are files that were originally obtained somewhere else (e.g. crates.io) but which we needed to fork for some Roc-specific reason. See README.md for more information.
wasi-libc-sys/ - wasi_libc_sys
Provides a Rust wrapper for the WebAssembly test platform built on libc and is primarily used for testing purposes.
Building a Roc Application
Below is a simplified diagram to illustrate how a Roc application and host are combined to build an executable file.
Roc Compiler Stages
Below is a simplified diagram to illustrate the different stages of the Roc Compiler.