You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/glossary.md
+12-5
Original file line number
Diff line number
Diff line change
@@ -11,19 +11,20 @@ completeness | completeness is a technical term in type theory. Comp
11
11
cx | we tend to use "cx" as an abbrevation for context. See also `tcx`, `infcx`, etc.
12
12
DAG | a directed acyclic graph is used during compilation to keep track of dependencies between queries. ([see more](incremental-compilation.html))
13
13
DefId | an index identifying a definition (see `librustc/hir/def_id.rs`). Uniquely identifies a `DefPath`.
14
+
'gcx | the lifetime of the global arena ([see more](ty.html))
15
+
generics | the set of generic type parameters defined on a type or item
14
16
HIR | the High-level IR, created by lowering and desugaring the AST ([see more](hir.html))
15
17
HirId | identifies a particular node in the HIR by combining a def-id with an "intra-definition offset".
16
18
HIR Map | The HIR map, accessible via tcx.hir, allows you to quickly navigate the HIR and convert between various forms of identifiers.
17
-
'gcx | the lifetime of the global arena ([see more](ty.html))
18
-
generics | the set of generic type parameters defined on a type or item
19
19
ICE | internal compiler error. When the compiler crashes.
20
20
ICH | incremental compilation hash. ICHs are used as fingerprints for things such as HIR and crate metadata, to check if changes have been made. This is useful in incremental compilation to see if part of a crate has changed and should be recompiled.
21
21
infcx | the inference context (see `librustc/infer`)
22
-
MIR | the Mid-level IR that is created after type-checking for use by borrowck and trans ([see more](./mir.html))
23
-
miri | an interpreter for MIR used for constant evaluation ([see more](./miri.html))
24
-
obligation | something that must be proven by the trait system ([see more](trait-resolution.html))
22
+
IR | Intermediate Representation. A general term in compilers. During compilation, the code is transformed from raw source (ASCII text) to various IRs. In Rust, these are primarily HIR, MIR, and LLVM IR. Each IR is well-suited for some set of computations. For example, MIR is well-suited for the borrow checker, and LLVM IR is well-suited for codegen because LLVM accepts it.
25
23
local crate | the crate currently being compiled.
24
+
LTO | Link-Time Optimizations. A set of optimizations offered by LLVM that occur just before the final binary is linked. These include optmizations like removing functions that are never used in the final program, for example. _ThinLTO_ is a variant of LTO that aims to be a bit more scalable and efficient, but possibly sacrifices some optimizations. You may also read issues in the Rust repo about "FatLTO", which is the loving nickname given to non-Thin LTO. LLVM documentation: [here][lto] and [here][thinlto]
25
+
[LLVM] | (actually not an acronym :P) an open-source compiler backend. It accepts LLVM IR and outputs native binaries. Various languages (e.g. Rust) can then implement a compiler front-end that output LLVM IR and use LLVM to compile to all the platforms LLVM supports.
26
26
MIR | the Mid-level IR that is created after type-checking for use by borrowck and trans ([see more](./mir.html))
27
+
miri | an interpreter for MIR used for constant evaluation ([see more](./miri.html))
27
28
node-id or NodeId | an index identifying a particular node in the AST or HIR; gradually being phased out and replaced with `HirId`.
28
29
obligation | something that must be proven by the trait system ([see more](trait-resolution.html))
29
30
provider | the function that executes a query ([see more](query.html))
@@ -38,6 +39,12 @@ substs | the substitutions for a given generic type or item (e
38
39
tcx | the "typing context", main data structure of the compiler ([see more](ty.html))
39
40
'tcx | the lifetime of the currently active inference context ([see more](ty.html))
40
41
token | the smallest unit of parsing. Tokens are produced after lexing ([see more](the-parser.html)).
42
+
[TLS] | Thread-Local Storage. Variables may be defined so that each thread has its own copy (rather than all threads sharing the variable). This has some interactions with LLVM. Not all platforms support TLS.
41
43
trans | the code to translate MIR into LLVM IR.
42
44
trait reference | a trait and values for its type parameters ([see more](ty.html)).
43
45
ty | the internal representation of a type ([see more](ty.html)).
0 commit comments