]> git.proxmox.com Git - rustc.git/blob - src/doc/rustc-guide/src/SUMMARY.md
New upstream version 1.35.0+dfsg1
[rustc.git] / src / doc / rustc-guide / src / SUMMARY.md
1 # Summary
2
3 [About this guide](./about-this-guide.md)
4
5 ---
6
7 - [Part 1: Building, debugging, and contributing to Rustc](./part-1-intro.md)
8 - [About the compiler team](./compiler-team.md)
9 - [How to build the compiler and run what you built](./how-to-build-and-run.md)
10 - [Build and Install distribution artifacts](./build-install-distribution-artifacts.md)
11 - [Documenting Compiler](./compiler-documenting.md)
12 - [The compiler testing framework](./tests/intro.md)
13 - [Running tests](./tests/running.md)
14 - [Adding new tests](./tests/adding.md)
15 - [Using `compiletest` + commands to control test execution](./compiletest.md)
16 - [Walkthrough: a typical contribution](./walkthrough.md)
17 - [Implementing new features](./implementing_new_features.md)
18 - [Stabilizing Features](./stabilization_guide.md)
19 - [Debugging the Compiler](./compiler-debugging.md)
20 - [Profiling the compiler](./profiling.md)
21 - [with the linux perf tool](./profiling/with_perf.md)
22 - [Coding conventions](./conventions.md)
23 - [crates.io Dependencies](./crates-io.md)
24
25 ---
26
27 - [Part 2: How rustc works](./part-2-intro.md)
28 - [High-level overview of the compiler source](./high-level-overview.md)
29 - [The Rustc Driver and Interface](./rustc-driver.md)
30 - [Rustdoc](./rustdoc.md)
31 - [Queries: demand-driven compilation](./query.md)
32 - [The Query Evaluation Model in Detail](./queries/query-evaluation-model-in-detail.md)
33 - [Incremental compilation](./queries/incremental-compilation.md)
34 - [Incremental compilation In Detail](./queries/incremental-compilation-in-detail.md)
35 - [Debugging and Testing](./incrcomp-debugging.md)
36 - [The parser](./the-parser.md)
37 - [`#[test]` Implementation](./test-implementation.md)
38 - [Macro expansion](./macro-expansion.md)
39 - [Name resolution](./name-resolution.md)
40 - [The HIR (High-level IR)](./hir.md)
41 - [Lowering AST to HIR](./lowering.md)
42 - [Debugging](./hir-debugging.md)
43 - [The `ty` module: representing types](./ty.md)
44 - [Kinds](./kinds.md)
45 - [Type inference](./type-inference.md)
46 - [Trait solving (old-style)](./traits/resolution.md)
47 - [Higher-ranked trait bounds](./traits/hrtb.md)
48 - [Caching subtleties](./traits/caching.md)
49 - [Specialization](./traits/specialization.md)
50 - [Trait solving (new-style)](./traits/index.md)
51 - [Lowering to logic](./traits/lowering-to-logic.md)
52 - [Goals and clauses](./traits/goals-and-clauses.md)
53 - [Equality and associated types](./traits/associated-types.md)
54 - [Implied bounds](./traits/implied-bounds.md)
55 - [Region constraints](./traits/regions.md)
56 - [The lowering module in rustc](./traits/lowering-module.md)
57 - [Lowering rules](./traits/lowering-rules.md)
58 - [Well-formedness checking](./traits/wf.md)
59 - [Canonical queries](./traits/canonical-queries.md)
60 - [Canonicalization](./traits/canonicalization.md)
61 - [The SLG solver](./traits/slg.md)
62 - [An Overview of Chalk](./traits/chalk-overview.md)
63 - [Bibliography](./traits/bibliography.md)
64 - [Type checking](./type-checking.md)
65 - [Method Lookup](./method-lookup.md)
66 - [Variance](./variance.md)
67 - [Existential Types](./existential-types.md)
68 - [The MIR (Mid-level IR)](./mir/index.md)
69 - [MIR construction](./mir/construction.md)
70 - [MIR visitor and traversal](./mir/visitor.md)
71 - [MIR passes: getting the MIR for a function](./mir/passes.md)
72 - [MIR optimizations](./mir/optimizations.md)
73 - [Debugging](./mir/debugging.md)
74 - [The borrow checker](./borrow_check.md)
75 - [Tracking moves and initialization](./borrow_check/moves_and_initialization.md)
76 - [Move paths](./borrow_check/moves_and_initialization/move_paths.md)
77 - [MIR type checker](./borrow_check/type_check.md)
78 - [Region inference](./borrow_check/region_inference.md)
79 - [Constant evaluation](./const-eval.md)
80 - [miri const evaluator](./miri.md)
81 - [Parameter Environments](./param_env.md)
82 - [Code Generation](./codegen.md)
83 - [Updating LLVM](./codegen/updating-llvm.md)
84 - [Debugging LLVM](./codegen/debugging.md)
85 - [Emitting Diagnostics](./diag.md)
86
87 ---
88
89 [Appendix A: Stupid Stats](./appendix/stupid-stats.md)
90 [Appendix B: Background material](./appendix/background.md)
91 [Appendix C: Glossary](./appendix/glossary.md)
92 [Appendix D: Code Index](./appendix/code-index.md)
93 [](./important-links.md)