about summary refs log tree commit diff
path: root/compiler/rustc_incremental/src/assert_dep_graph.rs
AgeCommit message (Expand)AuthorLines
2024-05-23Remove `#[macro_use] extern crate tracing` from `rustc_incremental`.Nicholas Nethercote-1/+1
2024-04-29Remove `extern crate rustc_middle` from numerous crates.Nicholas Nethercote-0/+1
2024-01-30hir: Simplify `hir_owner_nodes` queryVadim Petrochenkov-1/+1
2024-01-16Get rid of the hir_owner query.Camille GILLOT-3/+5
2023-12-24Remove `Session` methods that duplicate `DiagCtxt` methods.Nicholas Nethercote-6/+6
2023-11-26rustc: `hir().local_def_id_to_hir_id()` -> `tcx.local_def_id_to_hir_id()` cle...Vadim Petrochenkov-1/+1
2023-11-21Fix `clippy::needless_borrow` in the compilerNilstrieb-4/+4
2023-09-21Move `DepKind` to `rustc_query_system` and define it as `u16`John Kåre Alsaker-2/+2
2023-07-30inline format!() args up to and including rustc_codegen_llvmMatthias Krüger-5/+5
2023-06-04Removed use of iteration through a HashMap/HashSet in rustc_incremental and r...Andrew Xie-14/+14
2023-01-30incremental: migrate diagnosticsDavid Wood-23/+17
2023-01-28Remove `HirId -> LocalDefId` map from HIR.Camille GILLOT-8/+8
2023-01-17Remove double spaces after dots in commentsMaybe Waffle-1/+1
2022-12-20rustc: Remove needless lifetimesJeremy Stucki-4/+1
2022-12-18don't restuct references just to reborrowMatthias Krüger-1/+1
2022-07-13Rename `debugging_opts` to `unstable_opts`Joshua Nelson-3/+3
2022-07-07Reword comments and rename HIR visiting methods.Camille GILLOT-1/+1
2022-05-13rename visit item-like methodsMiguel Guarniz-1/+1
2022-05-13remove ItemLikeVisitor and DeepVisitorMiguel Guarniz-1/+1
2022-05-02fix most compiler/ doctestsElliot Roberts-1/+1
2022-03-29Only output DepKind in dump-dep-graph.Camille GILLOT-25/+28
2022-01-16Replace NestedVisitorMap with NestedFilterCameron Steffen-5/+5
2021-12-19Auto merge of #91957 - nnethercote:rm-SymbolStr, r=oli-obkbors-2/+2
2021-12-15Remove unnecessary sigils around `Symbol::as_str()` calls.Nicholas Nethercote-2/+2
2021-12-13Remove `in_band_lifetimes` from `rustc_incremental`Peter Jaszkowiak-2/+2
2021-12-07Document all public items in `rustc_incremental`pierwill-0/+2
2021-10-20Merge two query callbacks arrays.Camille GILLOT-17/+23
2021-09-29Avoid more invocations of hir_crate query.Camille GILLOT-1/+1
2021-08-21Remove `Session.used_attrs` and move logic to `CheckAttrVisitor`Aaron Hill-2/+2
2021-03-30Stream the dep-graph to a file.Camille GILLOT-21/+22
2021-03-22Only enable assert_dep_graph when query-dep-graph is enabled.Camille GILLOT-0/+4
2021-03-16ast/hir: Rename field-related structuresVadim Petrochenkov-2/+2
2021-03-09Access attrs directly from HirId in rustc_incremental::assert_dep_graph.Camille GILLOT-6/+7
2021-02-15Only store a LocalDefId in hir::ImplItem.Camille GILLOT-1/+1
2021-02-15Only store a LocalDefId in hir::TraitItem.Camille GILLOT-1/+1
2021-02-15Only store a LocalDefId in hir::Item.Camille GILLOT-1/+1
2021-01-02reduce borrowing and (de)referencing around match patterns (clippy::match_ref...Matthias Krüger-3/+3
2020-12-29Remove `compile-fail` test suiteVadim Petrochenkov-1/+1
2020-08-30mv compiler to compiler/mark-0/+429