|
46 | 46 | - [Salsa](./salsa.md) |
47 | 47 | - [Memory Management in Rustc](./memory.md) |
48 | 48 |
|
49 | | -- [Part 3: The Compiler Frontend](./part-3-intro.md) |
50 | | - - [Lexing and Parsing](./the-parser.md) |
51 | | - - [`#[test]` Implementation](./test-implementation.md) |
52 | | - - [Panic Implementation](./panic-implementation.md) |
53 | | - - [Macro expansion](./macro-expansion.md) |
54 | | - - [Name resolution](./name-resolution.md) |
55 | | - - [AST Validation](./ast-validation.md) |
| 49 | +- [Part 3: Source Code Representations](./part-3-intro.md) |
| 50 | + - [The Rustc Driver and Interface](./rustc-driver.md) |
| 51 | + - [Rustdoc](./rustdoc.md) |
| 52 | + - [Syntax and the AST](./syntax-intro.md) |
| 53 | + - [Lexing and Parsing](./the-parser.md) |
| 54 | + - [`#[test]` Implementation](./test-implementation.md) |
| 55 | + - [Panic Implementation](./panic-implementation.md) |
| 56 | + - [Macro expansion](./macro-expansion.md) |
| 57 | + - [Name resolution](./name-resolution.md) |
| 58 | + - [AST Validation](./ast-validation.md) |
| 59 | + - [Feature Gate Checking](./feature-gate-ck.md) |
56 | 60 | - [The HIR (High-level IR)](./hir.md) |
57 | 61 | - [Lowering AST to HIR](./lowering.md) |
58 | 62 | - [Debugging](./hir-debugging.md) |
|
62 | 66 | - [MIR passes: getting the MIR for a function](./mir/passes.md) |
63 | 67 | - [Closure expansion](./closure.md) |
64 | 68 |
|
65 | | -- [Part 4: The Type System](./part-4-intro.md) |
| 69 | +- [Part 4: Analysis](./part-4-intro.md) |
66 | 70 | - [The `ty` module: representing types](./ty.md) |
67 | 71 | - [Generics and substitutions](./generics.md) |
68 | 72 | - [`TypeFolder` and `TypeFoldable`](./ty-fold.md) |
|
105 | 109 | - [Two-phase-borrows](./borrow_check/two_phase_borrows.md) |
106 | 110 | - [Parameter Environments](./param_env.md) |
107 | 111 |
|
108 | | -- [Part 5: The Compiler Backend](./part-5-intro.md) |
| 112 | +- [Part 5: From MIR to binaries](./part-5-intro.md) |
109 | 113 | - [The MIR (Mid-level IR)](./mir/index.md) |
110 | 114 | - [MIR optimizations](./mir/optimizations.md) |
111 | 115 | - [Debugging](./mir/debugging.md) |
|
0 commit comments