Skip to content

Commit 2dba874

Browse files
authored
Rollup merge of rust-lang#48452 - varkor:unpacked-kind, r=eddyb
Introduce UnpackedKind This adds an `UnpackedKind` type as a typesafe counterpart to `Kind`. This should make future changes to kinds (such as const generics!) more resilient, as the type-checker will be able to catch more potential issues. r? @eddyb cc @yodaldevoid
2 parents 90f21d4 + f2b9686 commit 2dba874

File tree

17 files changed

+173
-153
lines changed

17 files changed

+173
-153
lines changed

src/librustc/ich/impls_ty.rs

+13-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,19 @@ for ty::subst::Kind<'gcx> {
5656
fn hash_stable<W: StableHasherResult>(&self,
5757
hcx: &mut StableHashingContext<'gcx>,
5858
hasher: &mut StableHasher<W>) {
59-
self.as_type().hash_stable(hcx, hasher);
60-
self.as_region().hash_stable(hcx, hasher);
59+
self.unpack().hash_stable(hcx, hasher);
60+
}
61+
}
62+
63+
impl<'gcx> HashStable<StableHashingContext<'gcx>>
64+
for ty::subst::UnpackedKind<'gcx> {
65+
fn hash_stable<W: StableHasherResult>(&self,
66+
hcx: &mut StableHashingContext<'gcx>,
67+
hasher: &mut StableHasher<W>) {
68+
match self {
69+
ty::subst::UnpackedKind::Lifetime(lt) => lt.hash_stable(hcx, hasher),
70+
ty::subst::UnpackedKind::Type(ty) => ty.hash_stable(hcx, hasher),
71+
}
6172
}
6273
}
6374

src/librustc/infer/anon_types/mod.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use traits::{self, PredicateObligation};
1717
use ty::{self, Ty};
1818
use ty::fold::{BottomUpFolder, TypeFoldable};
1919
use ty::outlives::Component;
20-
use ty::subst::{Kind, Substs};
20+
use ty::subst::{Kind, UnpackedKind, Substs};
2121
use util::nodemap::DefIdMap;
2222

2323
pub type AnonTypeMap<'tcx> = DefIdMap<AnonTypeDecl<'tcx>>;
@@ -321,7 +321,7 @@ impl<'a, 'gcx, 'tcx> InferCtxt<'a, 'gcx, 'tcx> {
321321
let index = region_def.index as usize;
322322

323323
// Get the value supplied for this region from the substs.
324-
let subst_arg = anon_defn.substs[index].as_region().unwrap();
324+
let subst_arg = anon_defn.substs.region_at(index);
325325

326326
// Compute the least upper bound of it with the other regions.
327327
debug!("constrain_anon_types: least_region={:?}", least_region);
@@ -466,7 +466,8 @@ impl<'a, 'gcx, 'tcx> InferCtxt<'a, 'gcx, 'tcx> {
466466
// All other regions, we map them appropriately to their adjusted
467467
// indices, erroring if we find any lifetimes that were not mapped
468468
// into the new set.
469-
_ => if let Some(r1) = map.get(&Kind::from(r)).and_then(|k| k.as_region()) {
469+
_ => if let Some(UnpackedKind::Lifetime(r1)) = map.get(&r.into())
470+
.map(|k| k.unpack()) {
470471
r1
471472
} else {
472473
// No mapping was found. This means that

src/librustc/traits/select.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ impl<'cx, 'gcx, 'tcx> SelectionContext<'cx, 'gcx, 'tcx> {
584584
let trait_ref = &mut trait_pred.trait_ref;
585585
let unit_substs = trait_ref.substs;
586586
let mut never_substs = Vec::with_capacity(unit_substs.len());
587-
never_substs.push(From::from(tcx.types.never));
587+
never_substs.push(tcx.types.never.into());
588588
never_substs.extend(&unit_substs[1..]);
589589
trait_ref.substs = tcx.intern_substs(&never_substs);
590590
}
@@ -2997,7 +2997,7 @@ impl<'cx, 'gcx, 'tcx> SelectionContext<'cx, 'gcx, 'tcx> {
29972997
// unsized parameters is equal to the target.
29982998
let params = substs_a.iter().enumerate().map(|(i, &k)| {
29992999
if ty_params.contains(i) {
3000-
Kind::from(substs_b.type_at(i))
3000+
substs_b.type_at(i).into()
30013001
} else {
30023002
k
30033003
}

src/librustc/ty/instance.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -355,10 +355,7 @@ fn fn_once_adapter_instance<'a, 'tcx>(
355355
let sig = substs.closure_sig(closure_did, tcx);
356356
let sig = tcx.erase_late_bound_regions_and_normalize(&sig);
357357
assert_eq!(sig.inputs().len(), 1);
358-
let substs = tcx.mk_substs([
359-
Kind::from(self_ty),
360-
Kind::from(sig.inputs()[0]),
361-
].iter().cloned());
358+
let substs = tcx.mk_substs([Kind::from(self_ty), sig.inputs()[0].into()].iter().cloned());
362359

363360
debug!("fn_once_adapter_shim: self_ty={:?} sig={:?}", self_ty, sig);
364361
Instance { def, substs }

src/librustc/ty/relate.rs

+9-7
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use hir::def_id::DefId;
1717
use middle::const_val::ConstVal;
1818
use traits::Reveal;
19-
use ty::subst::{Kind, Substs};
19+
use ty::subst::{UnpackedKind, Substs};
2020
use ty::{self, Ty, TyCtxt, TypeFoldable};
2121
use ty::fold::{TypeVisitor, TypeFolder};
2222
use ty::error::{ExpectedFound, TypeError};
@@ -142,12 +142,14 @@ pub fn relate_substs<'a, 'gcx, 'tcx, R>(relation: &mut R,
142142

143143
let params = a_subst.iter().zip(b_subst).enumerate().map(|(i, (a, b))| {
144144
let variance = variances.map_or(ty::Invariant, |v| v[i]);
145-
if let (Some(a_ty), Some(b_ty)) = (a.as_type(), b.as_type()) {
146-
Ok(Kind::from(relation.relate_with_variance(variance, &a_ty, &b_ty)?))
147-
} else if let (Some(a_r), Some(b_r)) = (a.as_region(), b.as_region()) {
148-
Ok(Kind::from(relation.relate_with_variance(variance, &a_r, &b_r)?))
149-
} else {
150-
bug!()
145+
match (a.unpack(), b.unpack()) {
146+
(UnpackedKind::Lifetime(a_lt), UnpackedKind::Lifetime(b_lt)) => {
147+
Ok(relation.relate_with_variance(variance, &a_lt, &b_lt)?.into())
148+
}
149+
(UnpackedKind::Type(a_ty), UnpackedKind::Type(b_ty)) => {
150+
Ok(relation.relate_with_variance(variance, &a_ty, &b_ty)?.into())
151+
}
152+
(UnpackedKind::Lifetime(_), _) | (UnpackedKind::Type(_), _) => bug!()
151153
}
152154
});
153155

src/librustc/ty/sty.rs

+12-7
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@ use hir::def_id::DefId;
1515
use middle::const_val::ConstVal;
1616
use middle::region;
1717
use rustc_data_structures::indexed_vec::Idx;
18-
use ty::subst::{Substs, Subst};
18+
use ty::subst::{Substs, Subst, Kind, UnpackedKind};
1919
use ty::{self, AdtDef, TypeFlags, Ty, TyCtxt, TypeFoldable};
2020
use ty::{Slice, TyS};
21-
use ty::subst::Kind;
2221

2322
use std::iter;
2423
use std::cmp::Ordering;
@@ -297,8 +296,8 @@ impl<'tcx> ClosureSubsts<'tcx> {
297296
let generics = tcx.generics_of(def_id);
298297
let parent_len = generics.parent_count();
299298
SplitClosureSubsts {
300-
closure_kind_ty: self.substs[parent_len].as_type().expect("CK should be a type"),
301-
closure_sig_ty: self.substs[parent_len + 1].as_type().expect("CS should be a type"),
299+
closure_kind_ty: self.substs.type_at(parent_len),
300+
closure_sig_ty: self.substs.type_at(parent_len + 1),
302301
upvar_kinds: &self.substs[parent_len + 2..],
303302
}
304303
}
@@ -308,7 +307,13 @@ impl<'tcx> ClosureSubsts<'tcx> {
308307
impl Iterator<Item=Ty<'tcx>> + 'tcx
309308
{
310309
let SplitClosureSubsts { upvar_kinds, .. } = self.split(def_id, tcx);
311-
upvar_kinds.iter().map(|t| t.as_type().expect("upvar should be type"))
310+
upvar_kinds.iter().map(|t| {
311+
if let UnpackedKind::Type(ty) = t.unpack() {
312+
ty
313+
} else {
314+
bug!("upvar should be type")
315+
}
316+
})
312317
}
313318

314319
/// Returns the closure kind for this closure; may return a type
@@ -620,7 +625,7 @@ impl<'a, 'gcx, 'tcx> ExistentialTraitRef<'tcx> {
620625
ty::TraitRef {
621626
def_id: self.def_id,
622627
substs: tcx.mk_substs(
623-
iter::once(Kind::from(self_ty)).chain(self.substs.iter().cloned()))
628+
iter::once(self_ty.into()).chain(self.substs.iter().cloned()))
624629
}
625630
}
626631
}
@@ -1127,7 +1132,7 @@ impl<'a, 'tcx, 'gcx> ExistentialProjection<'tcx> {
11271132
projection_ty: ty::ProjectionTy {
11281133
item_def_id: self.item_def_id,
11291134
substs: tcx.mk_substs(
1130-
iter::once(Kind::from(self_ty)).chain(self.substs.iter().cloned())),
1135+
iter::once(self_ty.into()).chain(self.substs.iter().cloned())),
11311136
},
11321137
ty: self.ty,
11331138
}

0 commit comments

Comments
 (0)