rust/compiler/rustc_query_impl/src
Oli Scherer a4fbac163e Implement valtree
valtree is a version of constants that is inherently safe to be used within types.
This is in contrast to ty::Const which can have different representations of the same value. These representation differences can show up in hashing or equality comparisons, breaking type equality of otherwise equal types.
valtrees do not have this problem.
2021-03-12 12:16:14 +00:00
..
keys.rs Implement valtree 2021-03-12 12:16:14 +00:00
lib.rs Move print_query_stack to rustc_query_system. 2021-02-20 23:40:56 +01:00
plumbing.rs Simplify hashing. 2021-02-21 12:22:22 +01:00
profiling_support.rs
README.md
stats.rs
values.rs

For more information about how the query system works, see the rustc dev guide.