Skip to content

Commit

Permalink
rustc_typeck: pass all lifetimes through AstConv::opt_ast_region_to_r…
Browse files Browse the repository at this point in the history
…egion.
  • Loading branch information
eddyb committed Jan 28, 2017
1 parent 4f559f8 commit f79feba
Show file tree
Hide file tree
Showing 4 changed files with 129 additions and 130 deletions.
200 changes: 100 additions & 100 deletions src/librustc_typeck/astconv.rs
Expand Up @@ -64,7 +64,7 @@ use require_c_abi_if_variadic;
use rscope::{self, UnelidableRscope, RegionScope, ElidableRscope,
ObjectLifetimeDefaultRscope, ShiftedRscope, BindingRscope,
ElisionFailureInfo, ElidedLifetime};
use rscope::{AnonTypeScope, MaybeWithAnonTypes};
use rscope::{AnonTypeScope, MaybeWithAnonTypes, ExplicitRscope};
use util::common::{ErrorReported, FN_OUTPUT_NAME};
use util::nodemap::{NodeMap, FxHashSet};

Expand Down Expand Up @@ -161,70 +161,6 @@ struct ConvertedBinding<'tcx> {
/// This type must not appear anywhere in other converted types.
const TRAIT_OBJECT_DUMMY_SELF: ty::TypeVariants<'static> = ty::TyInfer(ty::FreshTy(0));

pub fn ast_region_to_region<'a, 'gcx, 'tcx>(tcx: TyCtxt<'a, 'gcx, 'tcx>,
lifetime: &hir::Lifetime)
-> &'tcx ty::Region {
let r = match tcx.named_region_map.defs.get(&lifetime.id) {
None => {
// should have been recorded by the `resolve_lifetime` pass
span_bug!(lifetime.span, "unresolved lifetime");
}

Some(&rl::DefStaticRegion) => {
ty::ReStatic
}

Some(&rl::DefLateBoundRegion(debruijn, id)) => {
// If this region is declared on a function, it will have
// an entry in `late_bound`, but if it comes from
// `for<'a>` in some type or something, it won't
// necessarily have one. In that case though, we won't be
// changed from late to early bound, so we can just
// substitute false.
let issue_32330 = tcx.named_region_map
.late_bound
.get(&id)
.cloned()
.unwrap_or(ty::Issue32330::WontChange);
ty::ReLateBound(debruijn, ty::BrNamed(tcx.hir.local_def_id(id),
lifetime.name,
issue_32330))
}

Some(&rl::DefEarlyBoundRegion(index, _)) => {
ty::ReEarlyBound(ty::EarlyBoundRegion {
index: index,
name: lifetime.name
})
}

Some(&rl::DefFreeRegion(scope, id)) => {
// As in DefLateBoundRegion above, could be missing for some late-bound
// regions, but also for early-bound regions.
let issue_32330 = tcx.named_region_map
.late_bound
.get(&id)
.cloned()
.unwrap_or(ty::Issue32330::WontChange);
ty::ReFree(ty::FreeRegion {
scope: scope.to_code_extent(&tcx.region_maps),
bound_region: ty::BrNamed(tcx.hir.local_def_id(id),
lifetime.name,
issue_32330)
})

// (*) -- not late-bound, won't change
}
};

debug!("ast_region_to_region(lifetime={:?} id={}) yields {:?}",
lifetime,
lifetime.id,
r);

tcx.mk_region(r)
}

fn report_elision_failure(
tcx: TyCtxt,
db: &mut DiagnosticBuilder,
Expand Down Expand Up @@ -296,38 +232,98 @@ fn report_elision_failure(
}

impl<'o, 'gcx: 'tcx, 'tcx> AstConv<'gcx, 'tcx>+'o {
pub fn opt_ast_region_to_region(&self,
pub fn ast_region_to_region(&self, lifetime: &hir::Lifetime) -> &'tcx ty::Region {
self.opt_ast_region_to_region(&ExplicitRscope, lifetime.span, Some(lifetime), None)
}

fn try_opt_ast_region_to_region(&self,
rscope: &RegionScope,
default_span: Span,
opt_lifetime: &Option<hir::Lifetime>) -> &'tcx ty::Region
opt_lifetime: Option<&hir::Lifetime>,
def: Option<&ty::RegionParameterDef>)
-> Result<&'tcx ty::Region, Option<Vec<ElisionFailureInfo>>>
{
let r = match *opt_lifetime {
Some(ref lifetime) => {
ast_region_to_region(self.tcx(), lifetime)
let tcx = self.tcx();
let name = opt_lifetime.map(|l| l.name);
let resolved = opt_lifetime.and_then(|l| tcx.named_region_map.defs.get(&l.id));
let r = tcx.mk_region(match resolved {
Some(&rl::DefStaticRegion) => {
ty::ReStatic
}

None => {
self.tcx().mk_region(rscope.anon_region(default_span).unwrap_or_else(|params| {
let ampersand_span = Span { hi: default_span.lo, ..default_span};
Some(&rl::DefLateBoundRegion(debruijn, id)) => {
// If this region is declared on a function, it will have
// an entry in `late_bound`, but if it comes from
// `for<'a>` in some type or something, it won't
// necessarily have one. In that case though, we won't be
// changed from late to early bound, so we can just
// substitute false.
let issue_32330 = tcx.named_region_map
.late_bound
.get(&id)
.cloned()
.unwrap_or(ty::Issue32330::WontChange);
ty::ReLateBound(debruijn, ty::BrNamed(tcx.hir.local_def_id(id),
name.unwrap(),
issue_32330))
}

Some(&rl::DefEarlyBoundRegion(index, _)) => {
ty::ReEarlyBound(ty::EarlyBoundRegion {
index: index,
name: name.unwrap()
})
}

let mut err = struct_span_err!(self.tcx().sess, ampersand_span, E0106,
"missing lifetime specifier");
err.span_label(ampersand_span, &format!("expected lifetime parameter"));
Some(&rl::DefFreeRegion(scope, id)) => {
// As in DefLateBoundRegion above, could be missing for some late-bound
// regions, but also for early-bound regions.
let issue_32330 = tcx.named_region_map
.late_bound
.get(&id)
.cloned()
.unwrap_or(ty::Issue32330::WontChange);
ty::ReFree(ty::FreeRegion {
scope: scope.to_code_extent(&tcx.region_maps),
bound_region: ty::BrNamed(tcx.hir.local_def_id(id),
name.unwrap(),
issue_32330)
})

if let Some(params) = params {
report_elision_failure(self.tcx(), &mut err, params);
}
err.emit();
ty::ReStatic
}))
// (*) -- not late-bound, won't change
}
};

None => rscope.anon_region(default_span, def)?
});

debug!("opt_ast_region_to_region(opt_lifetime={:?}) yields {:?}",
opt_lifetime,
r);

r
Ok(r)
}

pub fn opt_ast_region_to_region(&self,
rscope: &RegionScope,
default_span: Span,
opt_lifetime: Option<&hir::Lifetime>,
def: Option<&ty::RegionParameterDef>) -> &'tcx ty::Region
{
let tcx = self.tcx();
self.try_opt_ast_region_to_region(rscope, default_span, opt_lifetime, def)
.unwrap_or_else(|params| {
let ampersand_span = Span { hi: default_span.lo, ..default_span};

let mut err = struct_span_err!(tcx.sess, ampersand_span, E0106,
"missing lifetime specifier");
err.span_label(ampersand_span, &format!("expected lifetime parameter"));

if let Some(params) = params {
report_elision_failure(tcx, &mut err, params);
}
err.emit();
tcx.mk_region(ty::ReStatic)
})
}

/// Given a path `path` that refers to an item `I` with the declared generics `decl_generics`,
Expand Down Expand Up @@ -408,25 +404,21 @@ impl<'o, 'gcx: 'tcx, 'tcx> AstConv<'gcx, 'tcx>+'o {
};
let expected_num_region_params = decl_generics.regions.len();
let supplied_num_region_params = lifetimes.len();
let regions = if expected_num_region_params == supplied_num_region_params {
lifetimes.iter().map(|l| *ast_region_to_region(tcx, l)).collect()
} else {
let anon_regions = (0..expected_num_region_params).map(|_| {
rscope.anon_region(span)
}).collect::<Result<Vec<_>, _>>();

if supplied_num_region_params != 0 || anon_regions.is_err() {
let has_exact_lifetimes = expected_num_region_params == supplied_num_region_params;
let mut can_report_lifetime_count_mismatch = !has_exact_lifetimes;
let mut maybe_report_lifetime_count_mismatch = || {
if can_report_lifetime_count_mismatch {
can_report_lifetime_count_mismatch = false;
report_lifetime_number_error(tcx, span,
supplied_num_region_params,
expected_num_region_params);
}

match anon_regions {
Ok(anon_regions) => anon_regions,
Err(_) => (0..expected_num_region_params).map(|_| ty::ReStatic).collect()
}
};

if supplied_num_region_params != 0 {
maybe_report_lifetime_count_mismatch();
}

// If a self-type was declared, one should be provided.
assert_eq!(decl_generics.has_self, self_ty.is_some());

Expand All @@ -452,7 +444,15 @@ impl<'o, 'gcx: 'tcx, 'tcx> AstConv<'gcx, 'tcx>+'o {
let mut output_assoc_binding = None;
let substs = Substs::for_item(tcx, def_id, |def, _| {
let i = def.index as usize - self_ty.is_some() as usize;
tcx.mk_region(regions[i])
let l = if has_exact_lifetimes {
Some(&lifetimes[i])
} else {
None
};
self.try_opt_ast_region_to_region(rscope, span, l, Some(def)).unwrap_or_else(|_| {
maybe_report_lifetime_count_mismatch();
tcx.mk_region(ty::ReStatic)
})
}, |def, substs| {
let i = def.index as usize;

Expand Down Expand Up @@ -1472,7 +1472,7 @@ impl<'o, 'gcx: 'tcx, 'tcx> AstConv<'gcx, 'tcx>+'o {
})
}
hir::TyRptr(ref region, ref mt) => {
let r = self.opt_ast_region_to_region(rscope, ast_ty.span, region);
let r = self.opt_ast_region_to_region(rscope, ast_ty.span, region.as_ref(), None);
debug!("TyRef r={:?}", r);
let rscope1 =
&ObjectLifetimeDefaultRscope::new(
Expand Down Expand Up @@ -1823,7 +1823,7 @@ impl<'o, 'gcx: 'tcx, 'tcx> AstConv<'gcx, 'tcx>+'o {

if let Some(&r) = explicit_region_bounds.get(0) {
// Explicitly specified region bound. Use that.
return Some(ast_region_to_region(tcx, r));
return Some(self.ast_region_to_region(r));
}

if let Some(principal) = existential_predicates.principal() {
Expand Down
16 changes: 8 additions & 8 deletions src/librustc_typeck/check/mod.rs
Expand Up @@ -80,7 +80,7 @@ pub use self::Expectation::*;
pub use self::compare_method::{compare_impl_method, compare_const_impl};
use self::TupleArgumentsFlag::*;

use astconv::{AstConv, ast_region_to_region};
use astconv::AstConv;
use dep_graph::DepNode;
use fmt_macros::{Parser, Piece, Position};
use hir::def::{Def, CtorKind};
Expand Down Expand Up @@ -1466,9 +1466,13 @@ impl<'a, 'gcx, 'tcx> RegionScope for FnCtxt<'a, 'gcx, 'tcx> {
*self.next_region_var(infer::MiscVariable(span))
}

fn anon_region(&self, span: Span)
fn anon_region(&self, span: Span, def: Option<&ty::RegionParameterDef>)
-> Result<ty::Region, Option<Vec<ElisionFailureInfo>>> {
Ok(*self.next_region_var(infer::MiscVariable(span)))
let v = match def {
Some(def) => infer::EarlyBoundRegion(span, def.name),
None => infer::MiscVariable(span)
};
Ok(*self.next_region_var(v))
}
}

Expand Down Expand Up @@ -4404,11 +4408,7 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
None => &[]
};

if let Some(ast_lifetime) = lifetimes.get(i) {
ast_region_to_region(self.tcx, ast_lifetime)
} else {
self.region_var_for_def(span, def)
}
AstConv::opt_ast_region_to_region(self, self, span, lifetimes.get(i), Some(def))
}, |def, substs| {
let mut i = def.index as usize;

Expand Down
19 changes: 9 additions & 10 deletions src/librustc_typeck/collect.rs
Expand Up @@ -57,7 +57,7 @@ There are some shortcomings in this design:
*/

use astconv::{AstConv, ast_region_to_region, Bounds, PartitionedBounds, partition_bounds};
use astconv::{AstConv, Bounds, PartitionedBounds, partition_bounds};
use lint;
use constrained_type_params as ctp;
use middle::lang_items::SizedTraitLangItem;
Expand Down Expand Up @@ -1472,7 +1472,7 @@ fn generics_of_def_id<'a, 'tcx>(ccx: &CrateCtxt<'a, 'tcx>,
index: own_start + i as u32,
def_id: tcx.hir.local_def_id(l.lifetime.id),
bounds: l.bounds.iter().map(|l| {
ast_region_to_region(tcx, l)
AstConv::ast_region_to_region(&ccx.icx(&()), l)
}).collect(),
pure_wrt_drop: l.pure_wrt_drop,
}
Expand Down Expand Up @@ -1765,7 +1765,7 @@ fn ty_generic_predicates<'a,'tcx>(ccx: &CrateCtxt<'a,'tcx>,
name: param.lifetime.name
}));
for bound in &param.bounds {
let bound_region = ast_region_to_region(ccx.tcx, bound);
let bound_region = AstConv::ast_region_to_region(&ccx.icx(&()), bound);
let outlives = ty::Binder(ty::OutlivesPredicate(region, bound_region));
predicates.push(outlives.to_predicate());
}
Expand Down Expand Up @@ -1816,7 +1816,7 @@ fn ty_generic_predicates<'a,'tcx>(ccx: &CrateCtxt<'a,'tcx>,
}

&hir::TyParamBound::RegionTyParamBound(ref lifetime) => {
let region = ast_region_to_region(tcx, lifetime);
let region = AstConv::ast_region_to_region(&ccx.icx(&()), lifetime);
let pred = ty::Binder(ty::OutlivesPredicate(ty, region));
predicates.push(ty::Predicate::TypeOutlives(pred))
}
Expand All @@ -1825,9 +1825,9 @@ fn ty_generic_predicates<'a,'tcx>(ccx: &CrateCtxt<'a,'tcx>,
}

&hir::WherePredicate::RegionPredicate(ref region_pred) => {
let r1 = ast_region_to_region(tcx, &region_pred.lifetime);
let r1 = AstConv::ast_region_to_region(&ccx.icx(&()), &region_pred.lifetime);
for bound in &region_pred.bounds {
let r2 = ast_region_to_region(tcx, bound);
let r2 = AstConv::ast_region_to_region(&ccx.icx(&()), bound);
let pred = ty::Binder(ty::OutlivesPredicate(r1, r2));
predicates.push(ty::Predicate::RegionOutlives(pred))
}
Expand Down Expand Up @@ -1935,7 +1935,7 @@ fn compute_object_lifetime_default<'a,'tcx>(ccx: &CrateCtxt<'a,'tcx>,
hir::TraitTyParamBound(..) =>
None,
hir::RegionTyParamBound(ref lifetime) =>
Some(ast_region_to_region(ccx.tcx, lifetime)),
Some(AstConv::ast_region_to_region(&ccx.icx(&()), lifetime)),
}
})
.collect()
Expand Down Expand Up @@ -1981,7 +1981,6 @@ pub fn compute_bounds<'gcx: 'tcx, 'tcx>(astconv: &AstConv<'gcx, 'tcx>,
span: Span)
-> Bounds<'tcx>
{
let tcx = astconv.tcx();
let PartitionedBounds {
trait_bounds,
region_bounds
Expand All @@ -1998,7 +1997,7 @@ pub fn compute_bounds<'gcx: 'tcx, 'tcx>(astconv: &AstConv<'gcx, 'tcx>,
}).collect();

let region_bounds = region_bounds.into_iter().map(|r| {
ast_region_to_region(tcx, r)
astconv.ast_region_to_region(r)
}).collect();

trait_bounds.sort_by(|a,b| a.def_id().cmp(&b.def_id()));
Expand Down Expand Up @@ -2040,7 +2039,7 @@ fn predicates_from_bound<'tcx>(astconv: &AstConv<'tcx, 'tcx>,
.collect()
}
hir::RegionTyParamBound(ref lifetime) => {
let region = ast_region_to_region(astconv.tcx(), lifetime);
let region = astconv.ast_region_to_region(lifetime);
let pred = ty::Binder(ty::OutlivesPredicate(param_ty, region));
vec![ty::Predicate::TypeOutlives(pred)]
}
Expand Down

0 comments on commit f79feba

Please sign in to comment.