rust/compiler/rustc_query_impl/src
Mark Rousskov 127373822e Remove built-in cache_hit tracking
This was already only enabled in debug_assertions builds. Generally, it seems
like most use cases that would use this could also use the -Zself-profile flag
which also tracks cache hits (in all builds), and so the extra cfg's and such
are not really necessary.

This is largely just a small cleanup though, which primarily is intended to make
other changes easier by avoiding the need to deal with this field.
2021-10-11 16:33:49 -04:00
..
keys.rs Turn tcx.vtable_allocation() into a query. 2021-10-07 20:03:00 +02:00
lib.rs Remove re-export. 2021-10-03 16:08:54 +02:00
on_disk_cache.rs Do not re-hash foreign spans. 2021-10-06 19:10:07 +02:00
plumbing.rs Query the fingerprint style during key reconstruction 2021-10-06 22:19:48 -04:00
profiling_support.rs Restrict access to crate_name. 2021-06-02 18:35:32 +02:00
README.md Move the query system to rustc_query_impl. 2021-02-19 17:51:58 +01:00
stats.rs Remove built-in cache_hit tracking 2021-10-11 16:33:49 -04:00
util.rs Note that type aliases cannot be recursive 2021-08-27 14:50:51 -07:00
values.rs Move the query system to rustc_query_impl. 2021-02-19 17:51:58 +01:00

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