|
10 | 10 | - [How to build and run the compiler](./building/how-to-build-and-run.md) |
11 | 11 | - [Quickstart](./building/quickstart.md) |
12 | 12 | - [Prerequisites](./building/prerequisites.md) |
13 | | - - [Suggested Workflows](./building/suggested.md) |
| 13 | + - [Suggested workflows](./building/suggested.md) |
14 | 14 | - [Distribution artifacts](./building/build-install-distribution-artifacts.md) |
15 | | - - [Building Documentation](./building/compiler-documenting.md) |
| 15 | + - [Building documentation](./building/compiler-documenting.md) |
16 | 16 | - [Rustdoc overview](./rustdoc.md) |
17 | 17 | - [Adding a new target](./building/new-target.md) |
18 | 18 | - [Optimized build](./building/optimized-build.md) |
|
42 | 42 | - [with the linux perf tool](./profiling/with_perf.md) |
43 | 43 | - [with Windows Performance Analyzer](./profiling/wpa_profiling.md) |
44 | 44 | - [with the Rust benchmark suite](./profiling/with_rustc_perf.md) |
45 | | -- [crates.io Dependencies](./crates-io.md) |
| 45 | +- [crates.io dependencies](./crates-io.md) |
46 | 46 |
|
47 | 47 | # Contributing to Rust |
48 | 48 |
|
49 | | -- [Contribution Procedures](./contributing.md) |
| 49 | +- [Contribution procedures](./contributing.md) |
50 | 50 | - [About the compiler team](./compiler-team.md) |
51 | 51 | - [Using Git](./git.md) |
52 | 52 | - [Mastering @rustbot](./rustbot.md) |
|
56 | 56 | - [Stabilizing Features](./stabilization_guide.md) |
57 | 57 | - [Feature Gates](./feature-gates.md) |
58 | 58 | - [Coding conventions](./conventions.md) |
59 | | -- [Procedures for Breaking Changes](./bug-fix-procedure.md) |
| 59 | +- [Procedures for breaking changes](./bug-fix-procedure.md) |
60 | 60 | - [Using external repositories](./external-repos.md) |
61 | 61 | - [Fuzzing](./fuzzing.md) |
62 | 62 | - [Notification groups](notification-groups/about.md) |
|
81 | 81 | - [How Bootstrap does it](./building/bootstrapping/how-bootstrap-does-it.md) |
82 | 82 | - [Writing tools in Bootstrap](./building/bootstrapping/writing-tools-in-bootstrap.md) |
83 | 83 | - [Debugging bootstrap](./building/bootstrapping/debugging-bootstrap.md) |
| 84 | +- [cfg(bootstrap) in dependencies](./building/bootstrapping/bootstrap-in-dependencies.md) |
84 | 85 |
|
85 | 86 | # High-level Compiler Architecture |
86 | 87 |
|
87 | 88 | - [Prologue](./part-2-intro.md) |
88 | 89 | - [Overview of the compiler](./overview.md) |
89 | 90 | - [The compiler source code](./compiler-src.md) |
90 | 91 | - [Queries: demand-driven compilation](./query.md) |
91 | | - - [The Query Evaluation Model in Detail](./queries/query-evaluation-model-in-detail.md) |
| 92 | + - [The Query Evaluation Model in detail](./queries/query-evaluation-model-in-detail.md) |
92 | 93 | - [Incremental compilation](./queries/incremental-compilation.md) |
93 | | - - [Incremental compilation In Detail](./queries/incremental-compilation-in-detail.md) |
94 | | - - [Debugging and Testing](./incrcomp-debugging.md) |
| 94 | + - [Incremental compilation in detail](./queries/incremental-compilation-in-detail.md) |
| 95 | + - [Debugging and testing](./incrcomp-debugging.md) |
95 | 96 | - [Salsa](./queries/salsa.md) |
96 | | -- [Memory Management in Rustc](./memory.md) |
97 | | -- [Serialization in Rustc](./serialization.md) |
98 | | -- [Parallel Compilation](./parallel-rustc.md) |
| 97 | +- [Memory management in rustc](./memory.md) |
| 98 | +- [Serialization in rustc](./serialization.md) |
| 99 | +- [Parallel compilation](./parallel-rustc.md) |
99 | 100 | - [Rustdoc internals](./rustdoc-internals.md) |
100 | 101 | - [Search](./rustdoc-internals/search.md) |
101 | 102 | - [The `rustdoc` test suite](./rustdoc-internals/rustdoc-test-suite.md) |
| 103 | +- [Autodiff internals](./autodiff/internals.md) |
| 104 | + - [Installation](./autodiff/installation.md) |
| 105 | + - [How to debug](./autodiff/debugging.md) |
| 106 | + - [Autodiff flags](./autodiff/flags.md) |
| 107 | + - [Current limitations](./autodiff/limitations.md) |
| 108 | + |
102 | 109 | # Source Code Representation |
103 | 110 |
|
104 | 111 | - [Prologue](./part-3-intro.md) |
105 | 112 | - [Syntax and the AST](./syntax-intro.md) |
106 | | - - [Lexing and Parsing](./the-parser.md) |
| 113 | + - [Lexing and parsing](./the-parser.md) |
107 | 114 | - [Macro expansion](./macro-expansion.md) |
108 | 115 | - [Name resolution](./name-resolution.md) |
109 | 116 | - [Attributes](./attributes.md) |
110 | | - - [`#[test]` Implementation](./test-implementation.md) |
111 | | - - [Panic Implementation](./panic-implementation.md) |
112 | | - - [AST Validation](./ast-validation.md) |
113 | | - - [Feature Gate Checking](./feature-gate-ck.md) |
| 117 | + - [`#[test]` implementation](./test-implementation.md) |
| 118 | + - [Panic implementation](./panic-implementation.md) |
| 119 | + - [AST validation](./ast-validation.md) |
| 120 | + - [Feature gate checking](./feature-gate-ck.md) |
114 | 121 | - [Lang Items](./lang-items.md) |
115 | 122 | - [The HIR (High-level IR)](./hir.md) |
116 | 123 | - [Lowering AST to HIR](./ast-lowering.md) |
|
129 | 136 | - [Example: Type checking](./rustc-driver/interacting-with-the-ast.md) |
130 | 137 | - [Example: Getting diagnostics](./rustc-driver/getting-diagnostics.md) |
131 | 138 | - [Remarks on perma-unstable features](./rustc-driver/remarks-on-perma-unstable-features.md) |
132 | | -- [Errors and Lints](diagnostics.md) |
| 139 | +- [Errors and lints](diagnostics.md) |
133 | 140 | - [Diagnostic and subdiagnostic structs](./diagnostics/diagnostic-structs.md) |
134 | 141 | - [Translation](./diagnostics/translation.md) |
135 | 142 | - [`LintStore`](./diagnostics/lintstore.md) |
|
175 | 182 | - [Type checking](./type-checking.md) |
176 | 183 | - [Method Lookup](./method-lookup.md) |
177 | 184 | - [Variance](./variance.md) |
178 | | - - [Coherence Checking](./coherence.md) |
179 | | - - [Opaque Types](./opaque-types-type-alias-impl-trait.md) |
| 185 | + - [Coherence checking](./coherence.md) |
| 186 | + - [Opaque types](./opaque-types-type-alias-impl-trait.md) |
180 | 187 | - [Inference details](./opaque-types-impl-trait-inference.md) |
181 | 188 | - [Return Position Impl Trait In Trait](./return-position-impl-trait-in-trait.md) |
182 | 189 | - [Region inference restrictions][opaque-infer] |
183 | 190 | - [Const condition checking](./effects.md) |
184 | 191 | - [Pattern and Exhaustiveness Checking](./pat-exhaustive-checking.md) |
185 | | -- [Unsafety Checking](./unsafety-checking.md) |
| 192 | +- [Unsafety checking](./unsafety-checking.md) |
186 | 193 | - [MIR dataflow](./mir/dataflow.md) |
187 | 194 | - [Drop elaboration](./mir/drop-elaboration.md) |
188 | 195 | - [The borrow checker](./borrow_check.md) |
|
0 commit comments