Skip to content

Commit 869d144

Browse files
TypeIdHasher: Let projections be hashed implicitly by the visitor.
1 parent 75a0dd0 commit 869d144

File tree

4 files changed

+19
-11
lines changed

4 files changed

+19
-11
lines changed

src/librustc/ty/util.rs

-11
Original file line numberDiff line numberDiff line change
@@ -453,17 +453,6 @@ impl<'a, 'gcx, 'tcx> TypeVisitor<'tcx> for TypeIdHasher<'a, 'gcx, 'tcx> {
453453
// Hash region and builtin bounds.
454454
data.region_bound.visit_with(self);
455455
self.hash(data.builtin_bounds);
456-
457-
// Only projection bounds are left, hash them.
458-
self.hash(data.projection_bounds.len());
459-
for bound in &data.projection_bounds {
460-
self.def_id(bound.0.trait_ref.def_id);
461-
self.hash(bound.0.item_name);
462-
bound.visit_with(self);
463-
}
464-
465-
// Bypass super_visit_with, we've visited everything.
466-
return false;
467456
}
468457
TyTuple(tys) => {
469458
self.hash(tys.len());

src/test/run-pass/auxiliary/typeid-intrinsic-aux1.rs

+5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ pub type F = Option<isize>;
2222
pub type G = usize;
2323
pub type H = &'static str;
2424
pub type I = Box<Fn()>;
25+
pub type I32Iterator = Iterator<Item=i32>;
26+
pub type U32Iterator = Iterator<Item=u32>;
2527

2628
pub fn id_A() -> TypeId { TypeId::of::<A>() }
2729
pub fn id_B() -> TypeId { TypeId::of::<B>() }
@@ -34,3 +36,6 @@ pub fn id_H() -> TypeId { TypeId::of::<H>() }
3436
pub fn id_I() -> TypeId { TypeId::of::<I>() }
3537

3638
pub fn foo<T: Any>() -> TypeId { TypeId::of::<T>() }
39+
40+
pub fn id_i32_iterator() -> TypeId { TypeId::of::<I32Iterator>() }
41+
pub fn id_u32_iterator() -> TypeId { TypeId::of::<U32Iterator>() }

src/test/run-pass/auxiliary/typeid-intrinsic-aux2.rs

+5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ pub type F = Option<isize>;
2222
pub type G = usize;
2323
pub type H = &'static str;
2424
pub type I = Box<Fn()>;
25+
pub type I32Iterator = Iterator<Item=i32>;
26+
pub type U32Iterator = Iterator<Item=u32>;
2527

2628
pub fn id_A() -> TypeId { TypeId::of::<A>() }
2729
pub fn id_B() -> TypeId { TypeId::of::<B>() }
@@ -34,3 +36,6 @@ pub fn id_H() -> TypeId { TypeId::of::<H>() }
3436
pub fn id_I() -> TypeId { TypeId::of::<I>() }
3537

3638
pub fn foo<T: Any>() -> TypeId { TypeId::of::<T>() }
39+
40+
pub fn id_i32_iterator() -> TypeId { TypeId::of::<I32Iterator>() }
41+
pub fn id_u32_iterator() -> TypeId { TypeId::of::<U32Iterator>() }

src/test/run-pass/typeid-intrinsic.rs

+9
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,13 @@ pub fn main() {
7878
b.hash(&mut s2);
7979

8080
assert_eq!(s1.finish(), s2.finish());
81+
82+
// Check projections
83+
84+
assert_eq!(TypeId::of::<other1::I32Iterator>(), other1::id_i32_iterator());
85+
assert_eq!(TypeId::of::<other1::U32Iterator>(), other1::id_u32_iterator());
86+
assert_eq!(other1::id_i32_iterator(), other2::id_i32_iterator());
87+
assert_eq!(other1::id_u32_iterator(), other2::id_u32_iterator());
88+
assert!(other1::id_i32_iterator() != other1::id_u32_iterator());
89+
assert!(TypeId::of::<other1::I32Iterator>() != TypeId::of::<other1::U32Iterator>());
8190
}

0 commit comments

Comments
 (0)