Skip to content

Commit 5803d3d

Browse files
authored
Merge pull request #56 from mark-i-m/markim_glossary_002
Add some codegen related terminology to glossary
2 parents ae39f92 + 18e8e25 commit 5803d3d

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

Diff for: src/glossary.md

+12-5
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,20 @@ completeness | completeness is a technical term in type theory. Comp
1111
cx | we tend to use "cx" as an abbrevation for context. See also `tcx`, `infcx`, etc.
1212
DAG | a directed acyclic graph is used during compilation to keep track of dependencies between queries. ([see more](incremental-compilation.html))
1313
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
1416
HIR | the High-level IR, created by lowering and desugaring the AST ([see more](hir.html))
1517
HirId | identifies a particular node in the HIR by combining a def-id with an "intra-definition offset".
1618
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
1919
ICE | internal compiler error. When the compiler crashes.
2020
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.
2121
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.
2523
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.
2626
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))
2728
node-id or NodeId | an index identifying a particular node in the AST or HIR; gradually being phased out and replaced with `HirId`.
2829
obligation | something that must be proven by the trait system ([see more](trait-resolution.html))
2930
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
3839
tcx | the "typing context", main data structure of the compiler ([see more](ty.html))
3940
'tcx | the lifetime of the currently active inference context ([see more](ty.html))
4041
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.
4143
trans | the code to translate MIR into LLVM IR.
4244
trait reference | a trait and values for its type parameters ([see more](ty.html)).
4345
ty | the internal representation of a type ([see more](ty.html)).
46+
47+
[LLVM]: https://llvm.org/
48+
[lto]: https://llvm.org/docs/LinkTimeOptimization.html
49+
[thinlto]: https://clang.llvm.org/docs/ThinLTO.html
50+
[TLS]: https://llvm.org/docs/LangRef.html#thread-local-storage-models

0 commit comments

Comments
 (0)