Skip to content

Commit f5a0bd7

Browse files
committed
Auto merge of #55318 - Aaron1011:fix/final-auto-trait-resolve, r=<try>
Ensure that Rustdoc discovers all necessary auto trait bounds Fixes #50159 This commit makes several improvements to AutoTraitFinder: * Call infcx.resolve_type_vars_if_possible before processing new predicates. This ensures that we eliminate inference variables wherever possible. * Process all nested obligations we get from a vtable, not just ones with depth=1. * The 'depth=1' check was a hack to work around issues processing certain predicates. The other changes in this commit allow us to properly process all predicates that we encounter, so the check is no longer necessary, * Ensure that we only display predicates *without* inference variables to the user, and only attempt to unify predicates that *have* an inference variable as their type. Additionally, the internal helper method is_of_param now operates directly on a type, rather than taking a Substs. This allows us to use the 'self_ty' method, rather than directly dealing with Substs.
2 parents 6bfb46e + 69e82c1 commit f5a0bd7

File tree

2 files changed

+86
-16
lines changed

2 files changed

+86
-16
lines changed

src/librustc/traits/auto_trait.rs

+55-16
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,12 @@ impl<'a, 'tcx> AutoTraitFinder<'a, 'tcx> {
334334
continue;
335335
}
336336

337-
let result = select.select(&Obligation::new(dummy_cause.clone(), new_env, pred));
337+
// Call infcx.resolve_type_vars_if_possible to see if we can
338+
// get rid of any inference variables.
339+
let obligation = infcx.resolve_type_vars_if_possible(
340+
&Obligation::new(dummy_cause.clone(), new_env, pred)
341+
);
342+
let result = select.select(&obligation);
338343

339344
match &result {
340345
&Ok(Some(ref vtable)) => {
@@ -369,7 +374,7 @@ impl<'a, 'tcx> AutoTraitFinder<'a, 'tcx> {
369374
}
370375
&Ok(None) => {}
371376
&Err(SelectionError::Unimplemented) => {
372-
if self.is_of_param(pred.skip_binder().trait_ref.substs) {
377+
if self.is_param_no_infer(pred.skip_binder().trait_ref.substs) {
373378
already_visited.remove(&pred);
374379
self.add_user_pred(
375380
&mut user_computed_preds,
@@ -631,14 +636,15 @@ impl<'a, 'tcx> AutoTraitFinder<'a, 'tcx> {
631636
finished_map
632637
}
633638

634-
pub fn is_of_param(&self, substs: &Substs<'_>) -> bool {
635-
if substs.is_noop() {
636-
return false;
637-
}
639+
fn is_param_no_infer(&self, substs: &Substs<'_>) -> bool {
640+
return self.is_of_param(substs.type_at(0)) &&
641+
!substs.types().any(|t| t.has_infer_types());
642+
}
638643

639-
return match substs.type_at(0).sty {
644+
pub fn is_of_param(&self, ty: Ty<'_>) -> bool {
645+
return match ty.sty {
640646
ty::Param(_) => true,
641-
ty::Projection(p) => self.is_of_param(p.substs),
647+
ty::Projection(p) => self.is_of_param(p.self_ty()),
642648
_ => false,
643649
};
644650
}
@@ -661,28 +667,61 @@ impl<'a, 'tcx> AutoTraitFinder<'a, 'tcx> {
661667
) -> bool {
662668
let dummy_cause = ObligationCause::misc(DUMMY_SP, ast::DUMMY_NODE_ID);
663669

664-
for (obligation, predicate) in nested
665-
.filter(|o| o.recursion_depth == 1)
670+
for (obligation, mut predicate) in nested
666671
.map(|o| (o.clone(), o.predicate.clone()))
667672
{
668673
let is_new_pred =
669674
fresh_preds.insert(self.clean_pred(select.infcx(), predicate.clone()));
670675

676+
// Resolve any inference variables that we can, to help selection succeed
677+
predicate = select.infcx().resolve_type_vars_if_possible(&predicate);
678+
679+
// We only add a predicate as a user-displayable bound if
680+
// it involves a generic parameter, and doesn't contain
681+
// any inference variables.
682+
//
683+
// Displaying a bound involving a concrete type (instead of a generic
684+
// parameter) would be pointless, since it's always true
685+
// (e.g. u8: Copy)
686+
// Displaying an inference variable is impossible, since they're
687+
// an internal compiler detail without a defined visual representation
688+
//
689+
// We check this by calling is_of_param on the relevant types
690+
// from the various possible predicates
671691
match &predicate {
672692
&ty::Predicate::Trait(ref p) => {
673-
let substs = &p.skip_binder().trait_ref.substs;
693+
if self.is_param_no_infer(p.skip_binder().trait_ref.substs)
694+
&& !only_projections
695+
&& is_new_pred {
674696

675-
if self.is_of_param(substs) && !only_projections && is_new_pred {
676697
self.add_user_pred(computed_preds, predicate);
677698
}
678699
predicates.push_back(p.clone());
679700
}
680701
&ty::Predicate::Projection(p) => {
681-
// If the projection isn't all type vars, then
682-
// we don't want to add it as a bound
683-
if self.is_of_param(p.skip_binder().projection_ty.substs) && is_new_pred {
702+
debug!("evaluate_nested_obligations: examining projection predicate {:?}",
703+
predicate);
704+
705+
// As described above, we only want to display
706+
// bounds which include a generic parameter but don't include
707+
// an inference variable.
708+
// Additionally, we check if we've seen this predicate before,
709+
// to avoid rendering duplicate bounds to the user.
710+
if self.is_param_no_infer(p.skip_binder().projection_ty.substs)
711+
&& !p.ty().skip_binder().is_ty_infer()
712+
&& is_new_pred {
713+
debug!("evaluate_nested_obligations: adding projection predicate\
714+
to computed_preds: {:?}", predicate);
715+
684716
self.add_user_pred(computed_preds, predicate);
685-
} else {
717+
}
718+
719+
// We can only call poly_project_and_unify_type when our predicate's
720+
// Ty is an inference variable - otherwise, there won't be anything to
721+
// unify
722+
if p.ty().skip_binder().is_ty_infer() {
723+
debug!("Projecting and unifying projection predicate {:?}",
724+
predicate);
686725
match poly_project_and_unify_type(select, &obligation.with(p.clone())) {
687726
Err(e) => {
688727
debug!(

src/test/rustdoc/issue-50159.rs

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
12+
pub trait Signal {
13+
type Item;
14+
}
15+
16+
pub trait Signal2 {
17+
type Item2;
18+
}
19+
20+
impl<B, C> Signal2 for B where B: Signal<Item = C> {
21+
type Item2 = C;
22+
}
23+
24+
// @has issue_50159/struct.Switch.html
25+
// @has - '//code' 'impl<B> Send for Switch<B> where <B as Signal>::Item: Send'
26+
// @has - '//code' 'impl<B> Sync for Switch<B> where <B as Signal>::Item: Sync'
27+
// @count - '//*[@id="implementations-list"]/*[@class="impl"]' 0
28+
// @count - '//*[@id="synthetic-implementations-list"]/*[@class="impl"]' 2
29+
pub struct Switch<B: Signal> {
30+
pub inner: <B as Signal2>::Item2,
31+
}

0 commit comments

Comments
 (0)