]> git.proxmox.com Git - rustc.git/blame - src/doc/rustc-dev-guide/src/overview.md
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / doc / rustc-dev-guide / src / overview.md
CommitLineData
ba9703b0
XL
1# Overview of the Compiler
2
6a06907d
XL
3<!-- toc -->
4
5This chapter is about the overall process of compiling a program -- how
6everything fits together.
7
8The rust compiler is special in two ways: it does things to your code that
9other compilers don't do (e.g. borrow checking) and it has a lot of
10unconventional implementation choices (e.g. queries). We will talk about these
11in turn in this chapter, and in the rest of the guide, we will look at all the
12individual pieces in more detail.
13
14## What the compiler does to your code
15
16So first, let's look at what the compiler does to your code. For now, we will
17avoid mentioning how the compiler implements these steps except as needed;
18we'll talk about that later.
19
20- The compile process begins when a user writes a Rust source program in text
21 and invokes the `rustc` compiler on it. The work that the compiler needs to
22 perform is defined by command-line options. For example, it is possible to
23 enable nightly features (`-Z` flags), perform `check`-only builds, or emit
24 LLVM-IR rather than executable machine code. The `rustc` executable call may
25 be indirect through the use of `cargo`.
26- Command line argument parsing occurs in the [`rustc_driver`]. This crate
27 defines the compile configuration that is requested by the user and passes it
28 to the rest of the compilation process as a [`rustc_interface::Config`].
29- The raw Rust source text is analyzed by a low-level lexer located in
30 [`rustc_lexer`]. At this stage, the source text is turned into a stream of
31 atomic source code units known as _tokens_. The lexer supports the
32 Unicode character encoding.
33- The token stream passes through a higher-level lexer located in
34 [`rustc_parse`] to prepare for the next stage of the compile process. The
35 [`StringReader`] struct is used at this stage to perform a set of validations
36 and turn strings into interned symbols (_interning_ is discussed later).
37 [String interning] is a way of storing only one immutable
38 copy of each distinct string value.
39
40- The lexer has a small interface and doesn't depend directly on the
41 diagnostic infrastructure in `rustc`. Instead it provides diagnostics as plain
42 data which are emitted in `rustc_parse::lexer::mod` as real diagnostics.
43- The lexer preserves full fidelity information for both IDEs and proc macros.
44- The parser [translates the token stream from the lexer into an Abstract Syntax
45 Tree (AST)][parser]. It uses a recursive descent (top-down) approach to syntax
46 analysis. The crate entry points for the parser are the `Parser::parse_crate_mod()` and
47 `Parser::parse_mod()` methods found in `rustc_parse::parser::item`. The external
48 module parsing entry point is `rustc_expand::module::parse_external_mod`. And
49 the macro parser entry point is [`Parser::parse_nonterminal()`][parse_nonterminal].
50- Parsing is performed with a set of `Parser` utility methods including `fn bump`,
51 `fn check`, `fn eat`, `fn expect`, `fn look_ahead`.
52- Parsing is organized by the semantic construct that is being parsed. Separate
53 `parse_*` methods can be found in `rustc_parse` `parser` directory. The source
54 file name follows the construct name. For example, the following files are found
55 in the parser:
56 - `expr.rs`
57 - `pat.rs`
58 - `ty.rs`
59 - `stmt.rs`
60- This naming scheme is used across many compiler stages. You will find
61 either a file or directory with the same name across the parsing, lowering,
62 type checking, THIR lowering, and MIR building sources.
63- Macro expansion, AST validation, name resolution, and early linting takes place
64 during this stage of the compile process.
65- The parser uses the standard `DiagnosticBuilder` API for error handling, but we
66 try to recover, parsing a superset of Rust's grammar, while also emitting an error.
67- `rustc_ast::ast::{Crate, Mod, Expr, Pat, ...}` AST nodes are returned from the parser.
68- We then take the AST and [convert it to High-Level Intermediate
69 Representation (HIR)][hir]. This is a compiler-friendly representation of the
70 AST. This involves a lot of desugaring of things like loops and `async fn`.
71- We use the HIR to do [type inference]. This is the process of automatic
72 detection of the type of an expression.
73- **TODO: Maybe some other things are done here? I think initial type checking
74 happens here? And trait solving?**
75- The HIR is then [lowered to Mid-Level Intermediate Representation (MIR)][mir].
76 - Along the way, we construct the THIR, which is an even more desugared HIR.
77 THIR is used for pattern and exhaustiveness checking. It is also more
78 convenient to convert into MIR than HIR is.
79- The MIR is used for [borrow checking].
80- We (want to) do [many optimizations on the MIR][mir-opt] because it is still
81 generic and that improves the code we generate later, improving compilation
82 speed too.
83 - MIR is a higher level (and generic) representation, so it is easier to do
84 some optimizations at MIR level than at LLVM-IR level. For example LLVM
85 doesn't seem to be able to optimize the pattern the [`simplify_try`] mir
86 opt looks for.
87- Rust code is _monomorphized_, which means making copies of all the generic
88 code with the type parameters replaced by concrete types. To do
89 this, we need to collect a list of what concrete types to generate code for.
90 This is called _monomorphization collection_.
91- We then begin what is vaguely called _code generation_ or _codegen_.
92 - The [code generation stage (codegen)][codegen] is when higher level
93 representations of source are turned into an executable binary. `rustc`
94 uses LLVM for code generation. The first step is to convert the MIR
95 to LLVM Intermediate Representation (LLVM IR). This is where the MIR
96 is actually monomorphized, according to the list we created in the
97 previous step.
98 - The LLVM IR is passed to LLVM, which does a lot more optimizations on it.
99 It then emits machine code. It is basically assembly code with additional
100 low-level types and annotations added. (e.g. an ELF object or wasm).
101 - The different libraries/binaries are linked together to produce the final
102 binary.
103
104[String interning]: https://en.wikipedia.org/wiki/String_interning
105[`rustc_lexer`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lexer/index.html
106[`rustc_driver`]: https://rustc-dev-guide.rust-lang.org/rustc-driver.html
107[`rustc_interface::Config`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_interface/interface/struct.Config.html
108[lex]: https://rustc-dev-guide.rust-lang.org/the-parser.html
109[`StringReader`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_parse/lexer/struct.StringReader.html
110[`rustc_parse`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_parse/index.html
111[parser]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_parse/index.html
112[hir]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_hir/index.html
113[type inference]: https://rustc-dev-guide.rust-lang.org/type-inference.html
114[mir]: https://rustc-dev-guide.rust-lang.org/mir/index.html
115[borrow checking]: https://rustc-dev-guide.rust-lang.org/borrow_check.html
116[mir-opt]: https://rustc-dev-guide.rust-lang.org/mir/optimizations.html
117[`simplify_try`]: https://github.com/rust-lang/rust/pull/66282
118[codegen]: https://rustc-dev-guide.rust-lang.org/backend/codegen.html
119[parse_nonterminal]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_parse/parser/struct.Parser.html#method.parse_nonterminal
120
121## How it does it
122
123Ok, so now that we have a high-level view of what the compiler does to your
124code, let's take a high-level view of _how_ it does all that stuff. There are a
125lot of constraints and conflicting goals that the compiler needs to
126satisfy/optimize for. For example,
127
128- Compilation speed: how fast is it to compile a program. More/better
129 compile-time analyses often means compilation is slower.
130 - Also, we want to support incremental compilation, so we need to take that
131 into account. How can we keep track of what work needs to be redone and
132 what can be reused if the user modifies their program?
133 - Also we can't store too much stuff in the incremental cache because
134 it would take a long time to load from disk and it could take a lot
135 of space on the user's system...
136- Compiler memory usage: while compiling a program, we don't want to use more
137 memory than we need.
138- Program speed: how fast is your compiled program. More/better compile-time
139 analyses often means the compiler can do better optimizations.
140- Program size: how large is the compiled binary? Similar to the previous
141 point.
142- Compiler compilation speed: how long does it take to compile the compiler?
143 This impacts contributors and compiler maintenance.
144- Implementation complexity: building a compiler is one of the hardest
145 things a person/group can do, and Rust is not a very simple language, so how
146 do we make the compiler's code base manageable?
147- Compiler correctness: the binaries produced by the compiler should do what
148 the input programs says they do, and should continue to do so despite the
149 tremendous amount of change constantly going on.
150- Integration: a number of other tools need to use the compiler in
151 various ways (e.g. cargo, clippy, miri, RLS) that must be supported.
152- Compiler stability: the compiler should not crash or fail ungracefully on the
153 stable channel.
154- Rust stability: the compiler must respect Rust's stability guarantees by not
155 breaking programs that previously compiled despite the many changes that are
156 always going on to its implementation.
157- Limitations of other tools: rustc uses LLVM in its backend, and LLVM has some
158 strengths we leverage and some limitations/weaknesses we need to work around.
159
160So, as you read through the rest of the guide, keep these things in mind. They
161will often inform decisions that we make.
162
163### Intermediate representations
164
165As with most compilers, `rustc` uses some intermediate representations (IRs) to
166facilitate computations. In general, working directly with the source code is
167extremely inconvenient and error-prone. Source code is designed to be human-friendly while at
168the same time being unambiguous, but it's less convenient for doing something
169like, say, type checking.
170
171Instead most compilers, including `rustc`, build some sort of IR out of the
172source code which is easier to analyze. `rustc` has a few IRs, each optimized
173for different purposes:
174
175- Token stream: the lexer produces a stream of tokens directly from the source
176 code. This stream of tokens is easier for the parser to deal with than raw
177 text.
178- Abstract Syntax Tree (AST): the abstract syntax tree is built from the stream
179 of tokens produced by the lexer. It represents
180 pretty much exactly what the user wrote. It helps to do some syntactic sanity
181 checking (e.g. checking that a type is expected where the user wrote one).
182- High-level IR (HIR): This is a sort of desugared AST. It's still close
183 to what the user wrote syntactically, but it includes some implicit things
184 such as some elided lifetimes, etc. This IR is amenable to type checking.
185- Typed HIR (THIR): This is an intermediate between HIR and MIR, and used to be called
186 High-level Abstract IR (HAIR). It is like the HIR but it is fully typed and a bit
187 more desugared (e.g. method calls and implicit dereferences are made fully explicit).
188 Moreover, it is easier to lower to MIR from THIR than from HIR.
189- Middle-level IR (MIR): This IR is basically a Control-Flow Graph (CFG). A CFG
190 is a type of diagram that shows the basic blocks of a program and how control
191 flow can go between them. Likewise, MIR also has a bunch of basic blocks with
192 simple typed statements inside them (e.g. assignment, simple computations,
193 etc) and control flow edges to other basic blocks (e.g., calls, dropping
194 values). MIR is used for borrow checking and other
195 important dataflow-based checks, such as checking for uninitialized values.
196 It is also used for a series of optimizations and for constant evaluation (via
197 MIRI). Because MIR is still generic, we can do a lot of analyses here more
198 efficiently than after monomorphization.
199- LLVM IR: This is the standard form of all input to the LLVM compiler. LLVM IR
200 is a sort of typed assembly language with lots of annotations. It's
201 a standard format that is used by all compilers that use LLVM (e.g. the clang
202 C compiler also outputs LLVM IR). LLVM IR is designed to be easy for other
203 compilers to emit and also rich enough for LLVM to run a bunch of
204 optimizations on it.
205
206One other thing to note is that many values in the compiler are _interned_.
207This is a performance and memory optimization in which we allocate the values
208in a special allocator called an _arena_. Then, we pass around references to
209the values allocated in the arena. This allows us to make sure that identical
210values (e.g. types in your program) are only allocated once and can be compared
211cheaply by comparing pointers. Many of the intermediate representations are
212interned.
213
214### Queries
215
216The first big implementation choice is the _query_ system. The rust compiler
217uses a query system which is unlike most textbook compilers, which are
218organized as a series of passes over the code that execute sequentially. The
219compiler does this to make incremental compilation possible -- that is, if the
220user makes a change to their program and recompiles, we want to do as little
221redundant work as possible to produce the new binary.
222
223In `rustc`, all the major steps above are organized as a bunch of queries that
224call each other. For example, there is a query to ask for the type of something
225and another to ask for the optimized MIR of a function. These
226queries can call each other and are all tracked through the query system.
227The results of the queries are cached on disk so that we can tell which
228queries' results changed from the last compilation and only redo those. This is
229how incremental compilation works.
230
231In principle, for the query-fied steps, we do each of the above for each item
232individually. For example, we will take the HIR for a function and use queries
233to ask for the LLVM IR for that HIR. This drives the generation of optimized
234MIR, which drives the borrow checker, which drives the generation of MIR, and
235so on.
236
237... except that this is very over-simplified. In fact, some queries are not
238cached on disk, and some parts of the compiler have to run for all code anyway
239for correctness even if the code is dead code (e.g. the borrow checker). For
240example, [currently the `mir_borrowck` query is first executed on all functions
241of a crate.][passes] Then the codegen backend invokes the
242`collect_and_partition_mono_items` query, which first recursively requests the
243`optimized_mir` for all reachable functions, which in turn runs `mir_borrowck`
244for that function and then creates codegen units. This kind of split will need
245to remain to ensure that unreachable functions still have their errors emitted.
246
247[passes]: https://github.com/rust-lang/rust/blob/45ebd5808afd3df7ba842797c0fcd4447ddf30fb/src/librustc_interface/passes.rs#L824
248
249Moreover, the compiler wasn't originally built to use a query system; the query
250system has been retrofitted into the compiler, so parts of it are not query-fied
251yet. Also, LLVM isn't our code, so that isn't querified either. The plan is to
252eventually query-fy all of the steps listed in the previous section,
253but as of <!-- date: 2021-02 --> February 2021, only the steps between HIR and
254LLVM IR are query-fied. That is, lexing, parsing, name resolution, and macro
255expansion are done all at once for the whole program.
256
257One other thing to mention here is the all-important "typing context",
258[`TyCtxt`], which is a giant struct that is at the center of all things.
259(Note that the name is mostly historic. This is _not_ a "typing context" in the
260sense of `Γ` or `Δ` from type theory. The name is retained because that's what
261the name of the struct is in the source code.) All
262queries are defined as methods on the [`TyCtxt`] type, and the in-memory query
263cache is stored there too. In the code, there is usually a variable called
264`tcx` which is a handle on the typing context. You will also see lifetimes with
265the name `'tcx`, which means that something is tied to the lifetime of the
266`TyCtxt` (usually it is stored or interned there).
267
268[`TyCtxt`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/struct.TyCtxt.html
269
270### `ty::Ty`
271
272Types are really important in Rust, and they form the core of a lot of compiler
273analyses. The main type (in the compiler) that represents types (in the user's
274program) is [`rustc_middle::ty::Ty`][ty]. This is so important that we have a whole chapter
275on [`ty::Ty`][ty], but for now, we just want to mention that it exists and is the way
276`rustc` represents types!
277
278Also note that the `rustc_middle::ty` module defines the `TyCtxt` struct we mentioned before.
279
280[ty]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/type.Ty.html
281
282### Parallelism
283
284Compiler performance is a problem that we would like to improve on
285(and are always working on). One aspect of that is parallelizing
286`rustc` itself.
287
288Currently, there is only one part of rustc that is already parallel: codegen.
289During monomorphization, the compiler will split up all the code to be
290generated into smaller chunks called _codegen units_. These are then generated
291by independent instances of LLVM. Since they are independent, we can run them
292in parallel. At the end, the linker is run to combine all the codegen units
293together into one binary.
294
295However, the rest of the compiler is still not yet parallel. There have been
296lots of efforts spent on this, but it is generally a hard problem. The current
297approach is to turn `RefCell`s into `Mutex`s -- that is, we
298switch to thread-safe internal mutability. However, there are ongoing
299challenges with lock contention, maintaining query-system invariants under
300concurrency, and the complexity of the code base. One can try out the current
301work by enabling parallel compilation in `config.toml`. It's still early days,
302but there are already some promising performance improvements.
303
304### Bootstrapping
305
306`rustc` itself is written in Rust. So how do we compile the compiler? We use an
307older compiler to compile the newer compiler. This is called [_bootstrapping_].
308
309Bootstrapping has a lot of interesting implications. For example, it means
310that one of the major users of Rust is the Rust compiler, so we are
311constantly testing our own software ("eating our own dogfood").
312
313For more details on bootstrapping, see
314[the bootstrapping section of the guide][rustc-bootstrap].
315
316[_bootstrapping_]: https://en.wikipedia.org/wiki/Bootstrapping_(compilers)
317[rustc-bootstrap]: building/bootstrapping.md
318
319# Unresolved Questions
320
321- Does LLVM ever do optimizations in debug builds?
322- How do I explore phases of the compile process in my own sources (lexer,
323 parser, HIR, etc)? - e.g., `cargo rustc -- -Z unpretty=hir-tree` allows you to
324 view HIR representation
325- What is the main source entry point for `X`?
326- Where do phases diverge for cross-compilation to machine code across
327 different platforms?
328
329# References
330
331- Command line parsing
332 - Guide: [The Rustc Driver and Interface](https://rustc-dev-guide.rust-lang.org/rustc-driver.html)
333 - Driver definition: [`rustc_driver`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_driver/)
334 - Main entry point: [`rustc_session::config::build_session_options`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_session/config/fn.build_session_options.html)
335- Lexical Analysis: Lex the user program to a stream of tokens
336 - Guide: [Lexing and Parsing](https://rustc-dev-guide.rust-lang.org/the-parser.html)
337 - Lexer definition: [`rustc_lexer`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lexer/index.html)
338 - Main entry point: [`rustc_lexer::first_token`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lexer/fn.first_token.html)
339- Parsing: Parse the stream of tokens to an Abstract Syntax Tree (AST)
340 - Guide: [Lexing and Parsing](https://rustc-dev-guide.rust-lang.org/the-parser.html)
341 - Parser definition: [`rustc_parse`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_parse/index.html)
342 - Main entry points:
343 - [Entry point for first file in crate](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_interface/passes/fn.parse.html)
344 - [Entry point for outline module parsing](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_expand/module/fn.parse_external_mod.html)
345 - [Entry point for macro fragments][parse_nonterminal]
346 - AST definition: [`rustc_ast`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast/ast/index.html)
347 - Expansion: **TODO**
348 - Name Resolution: **TODO**
349 - Feature gating: **TODO**
350 - Early linting: **TODO**
351- The High Level Intermediate Representation (HIR)
352 - Guide: [The HIR](https://rustc-dev-guide.rust-lang.org/hir.html)
353 - Guide: [Identifiers in the HIR](https://rustc-dev-guide.rust-lang.org/hir.html#identifiers-in-the-hir)
354 - Guide: [The HIR Map](https://rustc-dev-guide.rust-lang.org/hir.html#the-hir-map)
355 - Guide: [Lowering AST to HIR](https://rustc-dev-guide.rust-lang.org/lowering.html)
356 - How to view HIR representation for your code `cargo rustc -- -Z unpretty=hir-tree`
357 - Rustc HIR definition: [`rustc_hir`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_hir/index.html)
358 - Main entry point: **TODO**
359 - Late linting: **TODO**
360- Type Inference
361 - Guide: [Type Inference](https://rustc-dev-guide.rust-lang.org/type-inference.html)
362 - Guide: [The ty Module: Representing Types](https://rustc-dev-guide.rust-lang.org/ty.html) (semantics)
363 - Main entry point (type inference): [`InferCtxtBuilder::enter`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_infer/infer/struct.InferCtxtBuilder.html#method.enter)
364 - Main entry point (type checking bodies): [the `typeck` query](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/struct.TyCtxt.html#method.typeck)
365 - These two functions can't be decoupled.
366- The Mid Level Intermediate Representation (MIR)
367 - Guide: [The MIR (Mid level IR)](https://rustc-dev-guide.rust-lang.org/mir/index.html)
368 - Definition: [`rustc_middle/src/mir`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/mir/index.html)
369 - Definition of source that manipulates the MIR: [`rustc_mir`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/index.html)
370- The Borrow Checker
371 - Guide: [MIR Borrow Check](https://rustc-dev-guide.rust-lang.org/borrow_check.html)
372 - Definition: [`rustc_mir/borrow_check`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/borrow_check/index.html)
373 - Main entry point: [`mir_borrowck` query](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/borrow_check/fn.mir_borrowck.html)
374- MIR Optimizations
375 - Guide: [MIR Optimizations](https://rustc-dev-guide.rust-lang.org/mir/optimizations.html)
376 - Definition: [`rustc_mir/transform`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/transform/index.html)
377 - Main entry point: [`optimized_mir` query](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/transform/fn.optimized_mir.html)
378- Code Generation
379 - Guide: [Code Generation](https://rustc-dev-guide.rust-lang.org/backend/codegen.html)
380 - Generating Machine Code from LLVM IR with LLVM - **TODO: reference?**
381 - Main entry point: [`rustc_codegen_ssa::base::codegen_crate`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_ssa/base/fn.codegen_crate.html)
382 - This monomorphizes and produces LLVM IR for one codegen unit. It then
383 starts a background thread to run LLVM, which must be joined later.
384 - Monomorphization happens lazily via [`FunctionCx::monomorphize`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_ssa/mir/struct.FunctionCx.html#method.monomorphize) and [`rustc_codegen_ssa::base::codegen_instance `](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_ssa/base/fn.codegen_instance.html)