roc/crates/compiler
2023-12-02 21:18:31 -08:00
..
alias_analysis rename to GetElementPointer, index -> indices 2023-11-13 15:48:05 +01:00
arena_pool drop into_iter in some places 2023-10-07 19:11:36 +02:00
build typo and clippy 2023-11-06 21:04:50 -08:00
builtins Update Decode.roc 2023-12-02 18:33:17 -07:00
can attempt to switch to inlined Inspect.inspect in autoderive 2023-12-02 21:18:31 -08:00
checkmate Merge pull request #5728 from roc-lang/checkmate-ui-improvements 2023-08-04 12:15:48 +02:00
checkmate_schema Fix types 2023-07-17 10:10:50 -05:00
collections simplify soa Clone impls 2023-10-07 19:11:35 +02:00
constrain add basic Dbg desugaring and LowLevelDbg 2023-11-29 21:05:48 -08:00
debug_flags WIP 2023-06-24 14:49:46 +02:00
derive misc cleanup suggestions 2023-11-28 16:40:43 -08:00
derive_key misc cleanup suggestions 2023-11-28 16:40:43 -08:00
exhaustive fix indexing 2023-11-20 21:09:12 -08:00
fmt misc cleanup suggestions 2023-11-29 21:05:56 -08:00
gen_dev Get tests passing 2023-11-29 21:05:49 -08:00
gen_llvm misc cleanup suggestions 2023-11-29 21:05:56 -08:00
gen_wasm update zig and rust platforms to have correct roc_panic and roc_dbg 2023-11-29 21:49:34 -08:00
ident incorrect implementation of partial_cmp on an Ord type 2023-10-07 19:11:36 +02:00
late_solve Fix types 2023-07-17 10:10:50 -05:00
load use INSPECT_INSPECT_ABILITY instead of INSPECT_INSPECT 2023-11-28 16:40:41 -08:00
load_internal Make sure late specializations of opaques inherit Inspect as needed 2023-11-30 22:25:08 -06:00
module use INSPECT_INSPECT_ABILITY instead of INSPECT_INSPECT 2023-11-28 16:40:41 -08:00
mono add basic Dbg desugaring and LowLevelDbg 2023-11-29 21:05:48 -08:00
parse add basic Dbg desugaring and LowLevelDbg 2023-11-29 21:05:48 -08:00
problem Fix errors 2023-10-25 17:14:49 -05:00
region First pass at semantic tokens 2023-10-25 17:15:04 -05:00
roc_target typo and clippy 2023-11-06 21:04:50 -08:00
serialize rust 1.71 clippy fixes 2023-07-25 10:46:46 +02:00
solve Make sure late specializations of opaques inherit Inspect as needed 2023-11-30 22:25:08 -06:00
solve_problem Fix errors 2023-10-25 17:14:49 -05:00
solve_schema Move unify::Mode to roc_solve_schema 2023-07-17 09:50:36 -05:00
test_derive add missing ToInspector case 2023-11-28 16:40:40 -08:00
test_gen Make sure late specializations of opaques inherit Inspect as needed 2023-11-30 22:25:08 -06:00
test_mono update uitest and mono_test 2023-12-02 21:18:31 -08:00
test_mono_macros Use larger stacks for some mono tests 2023-06-06 16:05:12 -05:00
test_solve_helpers simplify regex expression strings 2023-10-07 19:11:37 +02:00
test_syntax use latest basic-cli 2023-12-01 12:33:09 +01:00
types misc cleanup suggestions 2023-11-28 16:40:43 -08:00
uitest update uitest and mono_test 2023-12-02 21:18:31 -08:00
unify drop into_iter in some places 2023-10-07 19:11:36 +02:00
DESIGN.md Start a section on canonicalization 2023-03-13 14:07:42 +00:00
README.md Start working on new compiler design documentation 2023-03-11 11:40:53 -05:00

The Roc Compiler

For an overview of the design and architecture of the compiler, see DESIGN.md. If you want to dive into the implementation or get some tips on debugging the compiler, see below

Getting started with the code

The compiler contains a lot of code! If you're new to the project it can be hard to know where to start. It's useful to have some sort of "main entry point", or at least a "good place to start" for each of the main phases.

After you get into the details, you'll discover that some parts of the compiler have more than one entry point. And things can be interwoven together in subtle and complex ways, for reasons to do with performance, edge case handling, etc. But if this is "day one" for you, and you're just trying to get familiar with things, this should be "good enough".

The compiler is invoked from the CLI via build_file in cli/src/build.rs

Phase Entry point / main functions
Compiler entry point load/src/file.rs: load, load_and_monomorphize
Parse header parse/src/module.rs: parse_header
Parse definitions parse/src/module.rs: module_defs
Canonicalize can/src/def.rs: canonicalize_defs
Type check solve/src/module.rs: run_solve
Gather types to specialize mono/src/ir.rs: PartialProc::from_named_function
Solve specialized types mono/src/ir.rs: from_can, with_hole
Insert reference counting mono/src/ir.rs: Proc::insert_refcount_operations
Code gen (optimized but slow) gen_llvm/src/llvm/build.rs: build_procedures
Code gen (unoptimized but fast, CPU) gen_dev/src/object_builder.rs: build_module
Code gen (unoptimized but fast, Wasm) gen_wasm/src/lib.rs: build_module

For a more detailed understanding of the compilation phases, see the Phase, BuildTask, and Msg enums in load/src/file.rs.

Debugging the compiler

Please see the debug flags for information on how to ask the compiler to emit debug information during various stages of compilation.

There are some goals for more sophisticated debugging tools:

General Tips

Miscompilations

If you observe a miscomplication, you may first want to check the generated mono IR for your code - maybe there was a problem during specialization or layout generation. One way to do this is to add a test to test_mono/src/tests.rs and run the tests with cargo test -p test_mono; this will write the mono IR to a file.

Typechecking errors

First, try to minimize your reproduction into a test that fits in solve_expr.

Once you've done this, check out the ROC_PRINT_UNIFICATIONS debug flag. It will show you where type unification went right and wrong. This is usually enough to figure out a fix for the bug.

If that doesn't work and you know your error has something to do with ranks, you may want to instrument deep_copy_var_help in solve.

If that doesn't work, chatting on Zulip is always a good strategy.