| use rustc_data_structures::stable_hash::{StableHash, StableHashCtxt, StableHasher}; |
| |
| use crate::HashIgnoredAttrId; |
| use crate::hir::{AttributeMap, OwnerInfo, OwnerNodes}; |
| |
| // The following implementations of StableHash for `ItemId`, `TraitItemId`, and |
| // `ImplItemId` deserve special attention. Normally we do not hash `NodeId`s within |
| // the HIR, since they just signify a HIR nodes own path. But `ItemId` et al |
| // are used when another item in the HIR is *referenced* and we certainly |
| // want to pick up on a reference changing its target, so we hash the NodeIds |
| // in "DefPath Mode". |
| |
| impl<'tcx> StableHash for OwnerNodes<'tcx> { |
| fn stable_hash<Hcx: StableHashCtxt>(&self, hcx: &mut Hcx, hasher: &mut StableHasher) { |
| // We ignore the other fields since these refer to information included in |
| // `opt_hash` which is hashed in the collector and used for the crate hash. |
| let OwnerNodes { opt_hash, .. } = *self; |
| opt_hash.unwrap().stable_hash(hcx, hasher); |
| } |
| } |
| |
| impl<'tcx> StableHash for AttributeMap<'tcx> { |
| fn stable_hash<Hcx: StableHashCtxt>(&self, hcx: &mut Hcx, hasher: &mut StableHasher) { |
| // We ignore the `map` since it refers to information included in `opt_hash` which is |
| // hashed in the collector and used for the crate hash. |
| let AttributeMap { opt_hash, define_opaque: _, map: _ } = *self; |
| opt_hash.unwrap().stable_hash(hcx, hasher); |
| } |
| } |
| |
| impl<'tcx> StableHash for OwnerInfo<'tcx> { |
| fn stable_hash<Hcx: StableHashCtxt>(&self, hcx: &mut Hcx, hasher: &mut StableHasher) { |
| // We ignore the other fields since these refer to information included in |
| // `opt_hash` which is hashed in the collector and used for the crate hash. |
| let OwnerInfo { opt_hash, .. } = *self; |
| opt_hash.unwrap().stable_hash(hcx, hasher); |
| } |
| } |
| |
| impl StableHash for HashIgnoredAttrId { |
| fn stable_hash<Hcx: StableHashCtxt>(&self, _hcx: &mut Hcx, _hasher: &mut StableHasher) { |
| /* we don't hash HashIgnoredAttrId, we ignore them */ |
| } |
| } |