Skip to content

Commit be2900c

Browse files
committed
Make is_global true for latebound regions
1 parent dc8ce4c commit be2900c

File tree

7 files changed

+28
-17
lines changed

7 files changed

+28
-17
lines changed

src/librustc/traits/fulfill.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ fn process_predicate<'a, 'gcx, 'tcx>(
330330
ty::Predicate::Trait(ref data) => {
331331
let trait_obligation = obligation.with(data.clone());
332332

333-
if data.is_global() {
333+
if data.is_global() && !data.has_late_bound_regions() {
334334
// no type variables present, can use evaluation for better caching.
335335
// FIXME: consider caching errors too.
336336
if selcx.infcx().predicate_must_hold(&obligation) {

src/librustc/ty/flags.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ impl FlagComputation {
7979
}
8080

8181
&ty::TyParam(ref p) => {
82-
self.add_flags(TypeFlags::HAS_LOCAL_NAMES);
82+
self.add_flags(TypeFlags::HAS_FREE_LOCAL_NAMES);
8383
if p.is_self() {
8484
self.add_flags(TypeFlags::HAS_SELF);
8585
} else {
@@ -89,7 +89,7 @@ impl FlagComputation {
8989

9090
&ty::TyGenerator(_, ref substs, _) => {
9191
self.add_flags(TypeFlags::HAS_TY_CLOSURE);
92-
self.add_flags(TypeFlags::HAS_LOCAL_NAMES);
92+
self.add_flags(TypeFlags::HAS_FREE_LOCAL_NAMES);
9393
self.add_substs(&substs.substs);
9494
}
9595

@@ -101,12 +101,12 @@ impl FlagComputation {
101101

102102
&ty::TyClosure(_, ref substs) => {
103103
self.add_flags(TypeFlags::HAS_TY_CLOSURE);
104-
self.add_flags(TypeFlags::HAS_LOCAL_NAMES);
104+
self.add_flags(TypeFlags::HAS_FREE_LOCAL_NAMES);
105105
self.add_substs(&substs.substs);
106106
}
107107

108108
&ty::TyInfer(infer) => {
109-
self.add_flags(TypeFlags::HAS_LOCAL_NAMES); // it might, right?
109+
self.add_flags(TypeFlags::HAS_FREE_LOCAL_NAMES); // it might, right?
110110
self.add_flags(TypeFlags::HAS_TY_INFER);
111111
match infer {
112112
ty::FreshTy(_) |

src/librustc/ty/fold.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,14 @@ pub trait TypeFoldable<'tcx>: fmt::Debug + Clone {
116116

117117
/// Indicates whether this value references only 'global'
118118
/// types/lifetimes that are the same regardless of what fn we are
119-
/// in. This is used for caching. Errs on the side of returning
120-
/// false.
119+
/// in. This is used for caching.
121120
fn is_global(&self) -> bool {
122-
!self.has_type_flags(TypeFlags::HAS_LOCAL_NAMES)
121+
!self.has_type_flags(TypeFlags::HAS_FREE_LOCAL_NAMES)
122+
}
123+
124+
/// True if there are any late-bound regions
125+
fn has_late_bound_regions(&self) -> bool {
126+
self.has_type_flags(TypeFlags::HAS_RE_LATE_BOUND)
123127
}
124128
}
125129

src/librustc/ty/mod.rs

+8-3
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ bitflags! {
441441

442442
// true if there are "names" of types and regions and so forth
443443
// that are local to a particular fn
444-
const HAS_LOCAL_NAMES = 1 << 10;
444+
const HAS_FREE_LOCAL_NAMES = 1 << 10;
445445

446446
// Present if the type belongs in a local type context.
447447
// Only set for TyInfer other than Fresh.
@@ -455,6 +455,10 @@ bitflags! {
455455
// ought to be true only for the results of canonicalization.
456456
const HAS_CANONICAL_VARS = 1 << 13;
457457

458+
/// Does this have any `ReLateBound` regions? Used to check
459+
/// if a global bound is safe to evaluate.
460+
const HAS_RE_LATE_BOUND = 1 << 14;
461+
458462
const NEEDS_SUBST = TypeFlags::HAS_PARAMS.bits |
459463
TypeFlags::HAS_SELF.bits |
460464
TypeFlags::HAS_RE_EARLY_BOUND.bits;
@@ -472,9 +476,10 @@ bitflags! {
472476
TypeFlags::HAS_TY_ERR.bits |
473477
TypeFlags::HAS_PROJECTION.bits |
474478
TypeFlags::HAS_TY_CLOSURE.bits |
475-
TypeFlags::HAS_LOCAL_NAMES.bits |
479+
TypeFlags::HAS_FREE_LOCAL_NAMES.bits |
476480
TypeFlags::KEEP_IN_LOCAL_TCX.bits |
477-
TypeFlags::HAS_CANONICAL_VARS.bits;
481+
TypeFlags::HAS_CANONICAL_VARS.bits |
482+
TypeFlags::HAS_RE_LATE_BOUND.bits;
478483
}
479484
}
480485

src/librustc/ty/sty.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -1268,7 +1268,9 @@ impl RegionKind {
12681268
flags = flags | TypeFlags::HAS_FREE_REGIONS;
12691269
flags = flags | TypeFlags::HAS_RE_SKOL;
12701270
}
1271-
ty::ReLateBound(..) => { }
1271+
ty::ReLateBound(..) => {
1272+
flags = flags | TypeFlags::HAS_RE_LATE_BOUND;
1273+
}
12721274
ty::ReEarlyBound(..) => {
12731275
flags = flags | TypeFlags::HAS_FREE_REGIONS;
12741276
flags = flags | TypeFlags::HAS_RE_EARLY_BOUND;
@@ -1291,8 +1293,8 @@ impl RegionKind {
12911293
}
12921294

12931295
match *self {
1294-
ty::ReStatic | ty::ReEmpty | ty::ReErased => (),
1295-
_ => flags = flags | TypeFlags::HAS_LOCAL_NAMES,
1296+
ty::ReStatic | ty::ReEmpty | ty::ReErased | ty::ReLateBound(..) => (),
1297+
_ => flags = flags | TypeFlags::HAS_FREE_LOCAL_NAMES,
12961298
}
12971299

12981300
debug!("type_flags({:?}) = {:?}", self, flags);

src/librustc_lint/builtin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1637,7 +1637,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for TrivialConstraints {
16371637
Subtype(..) |
16381638
ConstEvaluatable(..) => continue,
16391639
};
1640-
if !predicate.is_global() {
1640+
if predicate.is_global() {
16411641
cx.span_lint(
16421642
TRIVIAL_BOUNDS,
16431643
item.span,

src/librustc_typeck/check/wfcheck.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -683,8 +683,8 @@ fn check_false_global_bounds<'a, 'gcx, 'tcx>(
683683
let implied_obligations = traits::elaborate_predicates(fcx.tcx, predicates);
684684

685685
for pred in implied_obligations {
686-
// HAS_LOCAL_NAMES is used to match the existing behvaiour.
687-
if !pred.has_type_flags(ty::TypeFlags::HAS_LOCAL_NAMES) {
686+
// Match the existing behavior.
687+
if pred.is_global() && !pred.has_late_bound_regions() {
688688
let obligation = traits::Obligation::new(
689689
traits::ObligationCause::new(
690690
span,

0 commit comments

Comments
 (0)