|
1 | 1 | # Summary
|
2 | 2 |
|
3 | 3 | [Getting Started](./getting-started.md)
|
| 4 | + |
4 | 5 | [About this guide](./about-this-guide.md)
|
5 | 6 |
|
6 | 7 | ---
|
|
10 | 11 | - [How to build and run the compiler](./building/how-to-build-and-run.md)
|
11 | 12 | - [Quickstart](./building/quickstart.md)
|
12 | 13 | - [Prerequisites](./building/prerequisites.md)
|
13 |
| - - [Suggested Workflows](./building/suggested.md) |
| 14 | + - [Suggested workflows](./building/suggested.md) |
14 | 15 | - [Distribution artifacts](./building/build-install-distribution-artifacts.md)
|
15 |
| - - [Building Documentation](./building/compiler-documenting.md) |
| 16 | + - [Building documentation](./building/compiler-documenting.md) |
16 | 17 | - [Rustdoc overview](./rustdoc.md)
|
17 | 18 | - [Adding a new target](./building/new-target.md)
|
18 | 19 | - [Optimized build](./building/optimized-build.md)
|
|
42 | 43 | - [with the linux perf tool](./profiling/with_perf.md)
|
43 | 44 | - [with Windows Performance Analyzer](./profiling/wpa_profiling.md)
|
44 | 45 | - [with the Rust benchmark suite](./profiling/with_rustc_perf.md)
|
45 |
| -- [crates.io Dependencies](./crates-io.md) |
| 46 | +- [crates.io dependencies](./crates-io.md) |
46 | 47 |
|
47 | 48 | # Contributing to Rust
|
48 | 49 |
|
49 |
| -- [Contribution Procedures](./contributing.md) |
| 50 | +- [Contribution procedures](./contributing.md) |
50 | 51 | - [About the compiler team](./compiler-team.md)
|
51 | 52 | - [Using Git](./git.md)
|
52 | 53 | - [Mastering @rustbot](./rustbot.md)
|
|
56 | 57 | - [Stabilizing Features](./stabilization_guide.md)
|
57 | 58 | - [Feature Gates](./feature-gates.md)
|
58 | 59 | - [Coding conventions](./conventions.md)
|
59 |
| -- [Procedures for Breaking Changes](./bug-fix-procedure.md) |
| 60 | +- [Procedures for breaking changes](./bug-fix-procedure.md) |
60 | 61 | - [Using external repositories](./external-repos.md)
|
61 | 62 | - [Fuzzing](./fuzzing.md)
|
62 | 63 | - [Notification groups](notification-groups/about.md)
|
|
81 | 82 | - [How Bootstrap does it](./building/bootstrapping/how-bootstrap-does-it.md)
|
82 | 83 | - [Writing tools in Bootstrap](./building/bootstrapping/writing-tools-in-bootstrap.md)
|
83 | 84 | - [Debugging bootstrap](./building/bootstrapping/debugging-bootstrap.md)
|
| 85 | +- [cfg(bootstrap) in dependencies](./building/bootstrapping/bootstrap-in-dependencies.md) |
84 | 86 |
|
85 | 87 | # High-level Compiler Architecture
|
86 | 88 |
|
87 | 89 | - [Prologue](./part-2-intro.md)
|
88 | 90 | - [Overview of the compiler](./overview.md)
|
89 | 91 | - [The compiler source code](./compiler-src.md)
|
90 | 92 | - [Queries: demand-driven compilation](./query.md)
|
91 |
| - - [The Query Evaluation Model in Detail](./queries/query-evaluation-model-in-detail.md) |
| 93 | + - [The Query Evaluation Model in detail](./queries/query-evaluation-model-in-detail.md) |
92 | 94 | - [Incremental compilation](./queries/incremental-compilation.md)
|
93 |
| - - [Incremental compilation In Detail](./queries/incremental-compilation-in-detail.md) |
94 |
| - - [Debugging and Testing](./incrcomp-debugging.md) |
| 95 | + - [Incremental compilation in detail](./queries/incremental-compilation-in-detail.md) |
| 96 | + - [Debugging and testing](./incrcomp-debugging.md) |
95 | 97 | - [Salsa](./queries/salsa.md)
|
96 |
| -- [Memory Management in Rustc](./memory.md) |
97 |
| -- [Serialization in Rustc](./serialization.md) |
98 |
| -- [Parallel Compilation](./parallel-rustc.md) |
| 98 | +- [Memory management in rustc](./memory.md) |
| 99 | +- [Serialization in rustc](./serialization.md) |
| 100 | +- [Parallel compilation](./parallel-rustc.md) |
99 | 101 | - [Rustdoc internals](./rustdoc-internals.md)
|
100 | 102 | - [Search](./rustdoc-internals/search.md)
|
101 | 103 | - [The `rustdoc` test suite](./rustdoc-internals/rustdoc-test-suite.md)
|
| 104 | +- [Autodiff internals](./autodiff/internals.md) |
| 105 | + - [Installation](./autodiff/installation.md) |
| 106 | + - [How to debug](./autodiff/debugging.md) |
| 107 | + - [Autodiff flags](./autodiff/flags.md) |
| 108 | + - [Current limitations](./autodiff/limitations.md) |
| 109 | + |
102 | 110 | # Source Code Representation
|
103 | 111 |
|
104 | 112 | - [Prologue](./part-3-intro.md)
|
105 | 113 | - [Syntax and the AST](./syntax-intro.md)
|
106 |
| - - [Lexing and Parsing](./the-parser.md) |
| 114 | + - [Lexing and parsing](./the-parser.md) |
107 | 115 | - [Macro expansion](./macro-expansion.md)
|
108 | 116 | - [Name resolution](./name-resolution.md)
|
109 | 117 | - [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) |
| 118 | + - [`#[test]` implementation](./test-implementation.md) |
| 119 | + - [Panic implementation](./panic-implementation.md) |
| 120 | + - [AST validation](./ast-validation.md) |
| 121 | + - [Feature gate checking](./feature-gate-ck.md) |
114 | 122 | - [Lang Items](./lang-items.md)
|
115 | 123 | - [The HIR (High-level IR)](./hir.md)
|
116 | 124 | - [Lowering AST to HIR](./ast-lowering.md)
|
|
129 | 137 | - [Example: Type checking](./rustc-driver/interacting-with-the-ast.md)
|
130 | 138 | - [Example: Getting diagnostics](./rustc-driver/getting-diagnostics.md)
|
131 | 139 | - [Remarks on perma-unstable features](./rustc-driver/remarks-on-perma-unstable-features.md)
|
132 |
| -- [Errors and Lints](diagnostics.md) |
| 140 | +- [Errors and lints](diagnostics.md) |
133 | 141 | - [Diagnostic and subdiagnostic structs](./diagnostics/diagnostic-structs.md)
|
134 | 142 | - [Translation](./diagnostics/translation.md)
|
135 | 143 | - [`LintStore`](./diagnostics/lintstore.md)
|
|
149 | 157 | - [ADTs and Generic Arguments](./ty_module/generic_arguments.md)
|
150 | 158 | - [Parameter types/consts/regions](./ty_module/param_ty_const_regions.md)
|
151 | 159 | - [`TypeFolder` and `TypeFoldable`](./ty-fold.md)
|
| 160 | +- [Aliases and Normalization](./normalization.md) |
152 | 161 | - [Typing/Param Envs](./typing_parameter_envs.md)
|
153 | 162 | - [Type inference](./type-inference.md)
|
154 | 163 | - [Trait solving](./traits/resolution.md)
|
|
168 | 177 | - [Coinduction](./solve/coinduction.md)
|
169 | 178 | - [Caching](./solve/caching.md)
|
170 | 179 | - [Proof trees](./solve/proof-trees.md)
|
171 |
| - - [Normalization](./solve/normalization.md) |
172 | 180 | - [Opaque types](./solve/opaque-types.md)
|
173 | 181 | - [Significant changes and quirks](./solve/significant-changes.md)
|
174 | 182 | - [`Unsize` and `CoerceUnsized` traits](./traits/unsize.md)
|
175 | 183 | - [Type checking](./type-checking.md)
|
176 | 184 | - [Method Lookup](./method-lookup.md)
|
177 | 185 | - [Variance](./variance.md)
|
178 |
| - - [Coherence Checking](./coherence.md) |
179 |
| - - [Opaque Types](./opaque-types-type-alias-impl-trait.md) |
| 186 | + - [Coherence checking](./coherence.md) |
| 187 | + - [Opaque types](./opaque-types-type-alias-impl-trait.md) |
180 | 188 | - [Inference details](./opaque-types-impl-trait-inference.md)
|
181 | 189 | - [Return Position Impl Trait In Trait](./return-position-impl-trait-in-trait.md)
|
182 | 190 | - [Region inference restrictions][opaque-infer]
|
183 | 191 | - [Const condition checking](./effects.md)
|
184 | 192 | - [Pattern and Exhaustiveness Checking](./pat-exhaustive-checking.md)
|
185 |
| -- [Unsafety Checking](./unsafety-checking.md) |
| 193 | +- [Unsafety checking](./unsafety-checking.md) |
186 | 194 | - [MIR dataflow](./mir/dataflow.md)
|
187 | 195 | - [Drop elaboration](./mir/drop-elaboration.md)
|
188 | 196 | - [The borrow checker](./borrow_check.md)
|
|
224 | 232 | ---
|
225 | 233 |
|
226 | 234 | [Appendix A: Background topics](./appendix/background.md)
|
| 235 | + |
227 | 236 | [Appendix B: Glossary](./appendix/glossary.md)
|
| 237 | + |
228 | 238 | [Appendix C: Code Index](./appendix/code-index.md)
|
| 239 | + |
229 | 240 | [Appendix D: Compiler Lecture Series](./appendix/compiler-lecture.md)
|
| 241 | + |
230 | 242 | [Appendix E: Bibliography](./appendix/bibliography.md)
|
231 | 243 |
|
232 | 244 | [Appendix Z: HumorRust](./appendix/humorust.md)
|
|
0 commit comments