Skip to content

Commit 6ba8a1a

Browse files
committed
Auto merge of #33632 - Manishearth:rollup, r=Manishearth
Rollup of 9 pull requests - Successful merges: #33544, #33552, #33554, #33555, #33560, #33566, #33572, #33574, #33576 - Failed merges:
2 parents d3ec9d4 + 61d87f0 commit 6ba8a1a

38 files changed

+1182
-943
lines changed

src/librustc/traits/mod.rs

+38-10
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ pub enum Vtable<'tcx, N> {
239239
VtableParam(Vec<N>),
240240

241241
/// Virtual calls through an object
242-
VtableObject(VtableObjectData<'tcx>),
242+
VtableObject(VtableObjectData<'tcx, N>),
243243

244244
/// Successful resolution for a builtin trait.
245245
VtableBuiltin(VtableBuiltinData<N>),
@@ -250,7 +250,7 @@ pub enum Vtable<'tcx, N> {
250250
VtableClosure(VtableClosureData<'tcx, N>),
251251

252252
/// Same as above, but for a fn pointer type with the given signature.
253-
VtableFnPointer(ty::Ty<'tcx>),
253+
VtableFnPointer(VtableFnPointerData<'tcx, N>),
254254
}
255255

256256
/// Identifies a particular impl in the source, along with a set of
@@ -293,14 +293,22 @@ pub struct VtableBuiltinData<N> {
293293
/// A vtable for some object-safe trait `Foo` automatically derived
294294
/// for the object type `Foo`.
295295
#[derive(PartialEq,Eq,Clone)]
296-
pub struct VtableObjectData<'tcx> {
296+
pub struct VtableObjectData<'tcx, N> {
297297
/// `Foo` upcast to the obligation trait. This will be some supertrait of `Foo`.
298298
pub upcast_trait_ref: ty::PolyTraitRef<'tcx>,
299299

300300
/// The vtable is formed by concatenating together the method lists of
301301
/// the base object trait and all supertraits; this is the start of
302302
/// `upcast_trait_ref`'s methods in that vtable.
303-
pub vtable_base: usize
303+
pub vtable_base: usize,
304+
305+
pub nested: Vec<N>,
306+
}
307+
308+
#[derive(Clone, PartialEq, Eq)]
309+
pub struct VtableFnPointerData<'tcx, N> {
310+
pub fn_ty: ty::Ty<'tcx>,
311+
pub nested: Vec<N>
304312
}
305313

306314
/// Creates predicate obligations from the generic bounds.
@@ -569,7 +577,20 @@ impl<'tcx, N> Vtable<'tcx, N> {
569577
VtableBuiltin(i) => i.nested,
570578
VtableDefaultImpl(d) => d.nested,
571579
VtableClosure(c) => c.nested,
572-
VtableObject(_) | VtableFnPointer(..) => vec![]
580+
VtableObject(d) => d.nested,
581+
VtableFnPointer(d) => d.nested,
582+
}
583+
}
584+
585+
fn nested_obligations_mut(&mut self) -> &mut Vec<N> {
586+
match self {
587+
&mut VtableImpl(ref mut i) => &mut i.nested,
588+
&mut VtableParam(ref mut n) => n,
589+
&mut VtableBuiltin(ref mut i) => &mut i.nested,
590+
&mut VtableDefaultImpl(ref mut d) => &mut d.nested,
591+
&mut VtableClosure(ref mut c) => &mut c.nested,
592+
&mut VtableObject(ref mut d) => &mut d.nested,
593+
&mut VtableFnPointer(ref mut d) => &mut d.nested,
573594
}
574595
}
575596

@@ -578,18 +599,25 @@ impl<'tcx, N> Vtable<'tcx, N> {
578599
VtableImpl(i) => VtableImpl(VtableImplData {
579600
impl_def_id: i.impl_def_id,
580601
substs: i.substs,
581-
nested: i.nested.into_iter().map(f).collect()
602+
nested: i.nested.into_iter().map(f).collect(),
582603
}),
583604
VtableParam(n) => VtableParam(n.into_iter().map(f).collect()),
584605
VtableBuiltin(i) => VtableBuiltin(VtableBuiltinData {
585-
nested: i.nested.into_iter().map(f).collect()
606+
nested: i.nested.into_iter().map(f).collect(),
607+
}),
608+
VtableObject(o) => VtableObject(VtableObjectData {
609+
upcast_trait_ref: o.upcast_trait_ref,
610+
vtable_base: o.vtable_base,
611+
nested: o.nested.into_iter().map(f).collect(),
586612
}),
587-
VtableObject(o) => VtableObject(o),
588613
VtableDefaultImpl(d) => VtableDefaultImpl(VtableDefaultImplData {
589614
trait_def_id: d.trait_def_id,
590-
nested: d.nested.into_iter().map(f).collect()
615+
nested: d.nested.into_iter().map(f).collect(),
616+
}),
617+
VtableFnPointer(p) => VtableFnPointer(VtableFnPointerData {
618+
fn_ty: p.fn_ty,
619+
nested: p.nested.into_iter().map(f).collect(),
591620
}),
592-
VtableFnPointer(f) => VtableFnPointer(f),
593621
VtableClosure(c) => VtableClosure(VtableClosureData {
594622
closure_def_id: c.closure_def_id,
595623
substs: c.substs,

src/librustc/traits/project.rs

+12-64
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ use super::PredicateObligation;
1919
use super::SelectionContext;
2020
use super::SelectionError;
2121
use super::VtableClosureData;
22+
use super::VtableFnPointerData;
2223
use super::VtableImplData;
2324
use super::util;
2425

@@ -158,7 +159,7 @@ enum ProjectionTyCandidate<'tcx> {
158159
Closure(VtableClosureData<'tcx, PredicateObligation<'tcx>>),
159160

160161
// fn pointer return type
161-
FnPointer(Ty<'tcx>),
162+
FnPointer(VtableFnPointerData<'tcx, PredicateObligation<'tcx>>),
162163
}
163164

164165
struct ProjectionTyCandidateSet<'tcx> {
@@ -218,10 +219,7 @@ fn project_and_unify_type<'cx, 'gcx, 'tcx>(
218219
obligation.cause.clone(),
219220
obligation.recursion_depth) {
220221
Some(n) => n,
221-
None => {
222-
consider_unification_despite_ambiguity(selcx, obligation);
223-
return Ok(None);
224-
}
222+
None => return Ok(None),
225223
};
226224

227225
debug!("project_and_unify_type: normalized_ty={:?} obligations={:?}",
@@ -240,59 +238,6 @@ fn project_and_unify_type<'cx, 'gcx, 'tcx>(
240238
}
241239
}
242240

243-
fn consider_unification_despite_ambiguity<'cx, 'gcx, 'tcx>(
244-
selcx: &mut SelectionContext<'cx, 'gcx, 'tcx>,
245-
obligation: &ProjectionObligation<'tcx>)
246-
{
247-
debug!("consider_unification_despite_ambiguity(obligation={:?})",
248-
obligation);
249-
250-
let def_id = obligation.predicate.projection_ty.trait_ref.def_id;
251-
match selcx.tcx().lang_items.fn_trait_kind(def_id) {
252-
Some(_) => { }
253-
None => { return; }
254-
}
255-
256-
let infcx = selcx.infcx();
257-
let self_ty = obligation.predicate.projection_ty.trait_ref.self_ty();
258-
let self_ty = infcx.shallow_resolve(self_ty);
259-
debug!("consider_unification_despite_ambiguity: self_ty.sty={:?}",
260-
self_ty.sty);
261-
match self_ty.sty {
262-
ty::TyClosure(closure_def_id, substs) => {
263-
let closure_typer = selcx.closure_typer();
264-
let closure_type = closure_typer.closure_type(closure_def_id, substs);
265-
let ty::Binder((_, ret_type)) =
266-
infcx.tcx.closure_trait_ref_and_return_type(def_id,
267-
self_ty,
268-
&closure_type.sig,
269-
util::TupleArgumentsFlag::No);
270-
// We don't have to normalize the return type here - this is only
271-
// reached for TyClosure: Fn inputs where the closure kind is
272-
// still unknown, which should only occur in typeck where the
273-
// closure type is already normalized.
274-
let (ret_type, _) =
275-
infcx.replace_late_bound_regions_with_fresh_var(
276-
obligation.cause.span,
277-
infer::AssocTypeProjection(obligation.predicate.projection_ty.item_name),
278-
&ty::Binder(ret_type));
279-
280-
debug!("consider_unification_despite_ambiguity: ret_type={:?}",
281-
ret_type);
282-
let origin = TypeOrigin::RelateOutputImplTypes(obligation.cause.span);
283-
let obligation_ty = obligation.predicate.ty;
284-
match infcx.eq_types(true, origin, obligation_ty, ret_type) {
285-
Ok(InferOk { obligations, .. }) => {
286-
// FIXME(#32730) propagate obligations
287-
assert!(obligations.is_empty());
288-
}
289-
Err(_) => { /* ignore errors */ }
290-
}
291-
}
292-
_ => { }
293-
}
294-
}
295-
296241
/// Normalizes any associated type projections in `value`, replacing
297242
/// them with a fully resolved type where possible. The return value
298243
/// combines the normalized result and any additional obligations that
@@ -929,9 +874,9 @@ fn assemble_candidates_from_impls<'cx, 'gcx, 'tcx>(
929874
candidate_set.vec.push(
930875
ProjectionTyCandidate::Closure(data));
931876
}
932-
super::VtableFnPointer(fn_type) => {
877+
super::VtableFnPointer(data) => {
933878
candidate_set.vec.push(
934-
ProjectionTyCandidate::FnPointer(fn_type));
879+
ProjectionTyCandidate::FnPointer(data));
935880
}
936881
super::VtableParam(..) => {
937882
// This case tell us nothing about the value of an
@@ -997,19 +942,22 @@ fn confirm_candidate<'cx, 'gcx, 'tcx>(
997942
confirm_closure_candidate(selcx, obligation, closure_vtable)
998943
}
999944

1000-
ProjectionTyCandidate::FnPointer(fn_type) => {
1001-
confirm_fn_pointer_candidate(selcx, obligation, fn_type)
945+
ProjectionTyCandidate::FnPointer(fn_pointer_vtable) => {
946+
confirm_fn_pointer_candidate(selcx, obligation, fn_pointer_vtable)
1002947
}
1003948
}
1004949
}
1005950

1006951
fn confirm_fn_pointer_candidate<'cx, 'gcx, 'tcx>(
1007952
selcx: &mut SelectionContext<'cx, 'gcx, 'tcx>,
1008953
obligation: &ProjectionTyObligation<'tcx>,
1009-
fn_type: Ty<'tcx>)
954+
fn_pointer_vtable: VtableFnPointerData<'tcx, PredicateObligation<'tcx>>)
1010955
-> (Ty<'tcx>, Vec<PredicateObligation<'tcx>>)
1011956
{
1012-
let fn_type = selcx.infcx().shallow_resolve(fn_type);
957+
// FIXME(#32730) propagate obligations (fn pointer vtable nested obligations ONLY come from
958+
// unification in inference)
959+
assert!(fn_pointer_vtable.nested.is_empty());
960+
let fn_type = selcx.infcx().shallow_resolve(fn_pointer_vtable.fn_ty);
1013961
let sig = fn_type.fn_sig();
1014962
confirm_callable_candidate(selcx, obligation, sig, util::TupleArgumentsFlag::Yes)
1015963
}

0 commit comments

Comments
 (0)