rust/compiler/rustc_hir_analysis
bors 16244bc37a Auto merge of #140856 - oli-obk:merge-queries2, r=nnethercote
Merge mir query analysis invocations

r? `@ghost`

same thing as https://github.com/rust-lang/rust/pull/140854 just a different set of queries

Doing this in general has some bad cache coherence issues because the query caches are laid out in Vec<QueryResult> lists per query where each index refers to a DefId in the same order as we're iterating. Iterating two or more lists at the same time does have cache issues, so I want to poke a bit at it to see if we can't merge just a few of them at a time.
2025-05-17 22:31:43 +00:00
..
src Auto merge of #140856 - oli-obk:merge-queries2, r=nnethercote 2025-05-17 22:31:43 +00:00
Cargo.toml Move inline_asm to typeck, properly handle aliases 2025-04-27 22:05:07 +00:00
messages.ftl Fix typos 2025-05-12 17:20:49 +00:00
README.md rustc_typeck to rustc_hir_analysis 2022-09-27 10:37:23 +02:00

For high-level intro to how type checking works in rustc, see the type checking chapter of the rustc dev guide.