roc/crates
2024-07-06 03:23:54 +02:00
..
cli Merge pull request #6819 from roc-lang/rust-1-77-2-upgrade 2024-07-06 03:23:54 +02:00
cli_utils clippy + fmt 2024-06-19 12:34:10 +02:00
compiler Merge pull request #6819 from roc-lang/rust-1-77-2-upgrade 2024-07-06 03:23:54 +02:00
docs Add --main flag to specify app/package to resolve deps from 2024-06-07 17:09:44 -03:00
docs_cli Add --output CLI flag for roc docs 2023-10-19 17:21:27 -04:00
error_macros Use internal_error over panic 2024-06-30 08:19:37 -04:00
glue skip advanced_recursive_union 2024-06-19 15:37:14 +02:00
highlight clippy 2024-01-23 00:05:42 -05:00
language_server remove EmptyDefsFinal 2024-07-01 18:45:23 +02:00
linker Merge pull request #6819 from roc-lang/rust-1-77-2-upgrade 2024-07-06 03:23:54 +02:00
packaging Load packages from main app when checking a module 2024-06-06 20:25:54 -03:00
repl_cli Support importing local files in the REPL 2024-04-26 23:33:19 -03:00
repl_eval Handle root type when loading from str 2024-06-08 19:46:41 -03:00
repl_expect Handle root type when loading from str 2024-06-08 19:46:41 -03:00
repl_test Print special float values as Num.nanF64, etc 2024-05-31 17:34:43 +10:00
repl_ui Merge pull request #6767 from wontem/comments-in-repl 2024-05-22 11:26:10 +10:00
repl_wasm Support importing local files in the REPL 2024-04-26 23:33:19 -03:00
reporting removed TODO 2024-06-19 19:33:12 +02:00
roc_std fix expected type 2024-04-20 19:57:47 +02:00
test_utils test_gen: replace stdlib Json with inline implementation 2024-07-01 20:30:05 +02:00
test_utils_dir split test_utils 2024-04-15 20:30:34 +10:00
tracing run a toml formatter and then clean it up a bit 2023-03-06 19:47:57 -08:00
utils auto clippy fixes 2023-07-10 18:27:08 +02:00
valgrind Use roc_target over target_lexicon 2024-03-31 10:50:26 -07:00
vendor Consolidate gitignore 2024-01-10 22:16:04 -05:00
wasi-libc-sys fix: change target directory output to match release tarball structure 2024-06-23 10:00:36 -07:00
wasm_interp clippy + fmt 2024-06-19 12:34:10 +02:00
wasm_module partial clippy fixes 2023-12-27 17:46:56 +01:00
building_a_roc_application.svg resolve feedback, added compiler stages diagram 2022-11-06 09:15:18 +11:00
README.md Merge branch 'main' of github.com:roc-lang/roc into remove-editor 2023-09-11 17:38:32 +02:00
roc_compiler_stages.svg resolve feedback, added compiler stages diagram 2022-11-06 09:15:18 +11:00

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_analysis Performs analysis and optimizations to remove unneeded reference counts at runtime, and supports in-place mutation.
  • arena_pool An implementation of an arena allocator designed for the compiler's workloads.
  • roc_build Responsible for coordinating building and linking of a Roc app with its host.
  • roc_builtins provides the Roc functions and modules that are implicitly imported into every module. See README.md for more information.
  • roc_can Canonicalize a roc abstract syntax tree, resolving symbols, re-ordering definitions, and preparing a module for type inference.
  • roc_collections Domain-specific collections created for the needs of the compiler.
  • roc_constrain Responsible 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_flags Environment variables that can be toggled to aid debugging of the compiler itself.
  • roc_derive provides auto-derivers for builtin abilities like Hash and Decode.
  • roc_exhaustive provides exhaustiveness checking for Roc.
  • roc_fmt The roc code formatter.
  • roc_gen_dev provides the compiler backend to generate Roc binaries fast, for a nice developer experience. See README.md for more information.
  • roc_gen_llvm provides the LLVM backend to generate Roc binaries. Used to generate a binary with the fastest possible execution speed.
  • roc_gen_wasm provides the WASM backend to generate Roc binaries. See README.md for more information.
  • roc_ident Implements data structures used for efficiently representing small strings, like identifiers.
  • roc_intern provides generic interners for concurrent and single-thread use cases.
  • roc_late_solve provides type unification and solving primitives from the perspective of the compiler backend.
  • roc_load Used to load a .roc file and coordinate the compiler pipeline, including parsing, type checking, and code generation.
  • roc_load_internal The internal implementation of roc_load, separate from roc_load to support caching.
  • roc_module Implements data structures used for efficiently representing unique modules and identifiers in Roc programs.
  • roc_mono Roc'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_parse Implements the Roc parser, which transforms a textual representation of a Roc program to an abstract syntax tree.
  • roc_problem provides types to describe problems that can occur when compiling .roc code.
  • roc_region Data structures for storing source-code-location information, used heavily for contextual error messages.
  • roc_target provides types and helpers for compiler targets such as default_x86_64.
  • roc_serialize provides helpers for serializing and deserializing to/from bytes.
  • roc_solve The entry point of Roc's type inference system. Implements type inference and specialization of abilities.
  • roc_solve_problem provides types to describe problems that can occur during solving.
  • test_derive Tests Roc's auto-derivers.
  • test_gen contains all of Roc's code generation tests. See README.md for more information.
  • test_mono Tests Roc's generation of the mono intermediate representation.
  • test_mono_macros Macros for use in test_mono.
  • roc_types Various representations and utilities for dealing with types in the Roc compiler.
  • roc_unify Implements 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.

Building a Roc Application using Rust

Roc Compiler Stages

Below is a simplified diagram to illustrate the different stages of the Roc Compiler.

Roc Compiler Stages