summary refs log tree commit diff
path: root/compiler/rustc_middle/src/hir/map/mod.rs
AgeCommit message (Expand)AuthorLines
2021-07-20Support HIR wf checking for function signaturesAaron Hill-1/+4
2021-07-14Shrink the CrateStore dynamic interface.Camille GILLOT-7/+6
2021-07-13Auto merge of #86857 - fee1-dead:add-attr, r=oli-obkbors-1/+9
2021-07-10functions marked with attr are not constDeadbeef-1/+9
2021-07-06Correct comments about untracked accesses.Camille GILLOT-12/+14
2021-07-06Make resolutions a query.Camille GILLOT-10/+23
2021-07-06Revert "Revert "Merge CrateDisambiguator into StableCrateId""bjorn3-6/+6
2021-06-07Revert "Merge CrateDisambiguator into StableCrateId"bjorn3-6/+6
2021-06-01Revert "Reduce the amount of untracked state in TyCtxt"Camille Gillot-35/+15
2021-06-01Auto merge of #85153 - cjgillot:qresolve, r=Aaron1011bors-15/+35
2021-05-31Auto merge of #85266 - cjgillot:hir-dep-clean, r=michaelwoeristerbors-2/+2
2021-05-30Correct comments about untracked accesses.Camille GILLOT-13/+20
2021-05-30Make resolutions a query.Camille GILLOT-10/+23
2021-05-30Merge CrateDisambiguator into StableCrateIdbjorn3-6/+6
2021-05-28Merge fields and comment.Camille GILLOT-2/+2
2021-05-12Use () for HIR queries.Camille GILLOT-6/+6
2021-05-07Hash attributes as part of the crate hash.Camille GILLOT-4/+9
2021-04-29Introduce a hir_owner_parent query.Camille GILLOT-2/+1
2021-04-29Move parenting info to index_hir.Camille GILLOT-13/+9
2021-04-29Do not compute entry parent when not required.Camille GILLOT-97/+117
2021-04-29Remove parent_node.Camille GILLOT-10/+1
2021-04-29Split crate_hash from index_hir.Camille GILLOT-21/+72
2021-04-27Add [TRACKED_NO_CRATE_HASH] and [SUBSTRUCT] directivesJoshua Nelson-1/+1
2021-03-30Remove hir::CrateItem.Camille GILLOT-2/+2
2021-03-27Remove (lots of) dead codeJoshua Nelson-29/+0
2021-03-14Remove unused `opt_local_def_id_to_hir_id` functionJoshua Nelson-5/+0
2021-03-09Use BTreeMap to store attributes.Camille GILLOT-2/+1
2021-03-09Collect attributes during HIR lowering.Camille GILLOT-32/+3
2021-02-16Auto merge of #81611 - cjgillot:meowner, r=estebankbors-54/+13
2021-02-16avoid full-slicing slicesMatthias Krüger-9/+9
2021-02-15Trait impls are Items, therefore HIR owners.Camille GILLOT-1/+1
2021-02-15Only store a LocalDefId in hir::MacroDef.Camille GILLOT-1/+1
2021-02-15Only store a LocalDefId in hir::ForeignItem.Camille GILLOT-1/+1
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-02-15Use ItemId as a strongly typed index.Camille GILLOT-8/+8
2021-02-15Remove useless Named trait.Camille GILLOT-41/+0
2021-02-12Fix typo in mod.rsIkko Ashimine-1/+1
2021-02-02Bump rustfmt versionMark Rousskov-3/+3
2021-02-01Fixed #[inline] to be warned in fields, arms, macro defsDanuel-0/+18
2021-01-27Rollup merge of #81325 - osa1:issue81293, r=estebankYuki Okushi-0/+11
2021-01-26typeck: Don't suggest converting LHS exprsÖmer Sinan Ağacan-0/+11
2021-01-26Auto merge of #80692 - Aaron1011:feature/query-result-debug, r=estebankbors-0/+2
2021-01-23Allow to query the HIR crate node.Camille GILLOT-5/+3
2021-01-23Iterate to encode def_kind.Camille GILLOT-10/+11
2021-01-23Iterate DefId to encode spans.Camille GILLOT-0/+4
2021-01-23Infallible version of def_span.Camille GILLOT-32/+37
2021-01-16Enforce that query results implement DebugAaron Hill-0/+2
2021-01-14Use Option::map_or instead of `.map(..).unwrap_or(..)`LingMan-3/+2