Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 07cd247

Browse files
committedJul 18, 2021
Switch to store Instance directly within VtblEntry, fix TraitVPtr representation.
1 parent 00bc9c9 commit 07cd247

File tree

5 files changed

+51
-104
lines changed

5 files changed

+51
-104
lines changed
 

‎compiler/rustc_middle/src/ty/vtable.rs

+28-21
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,32 @@
11
use std::convert::TryFrom;
2+
use std::fmt;
23

34
use crate::mir::interpret::{alloc_range, AllocId, Allocation, Pointer, Scalar, ScalarMaybeUninit};
4-
use crate::ty::fold::TypeFoldable;
5-
use crate::ty::{self, DefId, PolyExistentialTraitRef, SubstsRef, Ty, TyCtxt};
5+
use crate::ty::{self, Instance, PolyTraitRef, Ty, TyCtxt};
66
use rustc_ast::Mutability;
77

8-
#[derive(Clone, Copy, Debug, PartialEq, HashStable)]
8+
#[derive(Clone, Copy, PartialEq, HashStable)]
99
pub enum VtblEntry<'tcx> {
1010
MetadataDropInPlace,
1111
MetadataSize,
1212
MetadataAlign,
1313
Vacant,
14-
Method(DefId, SubstsRef<'tcx>),
15-
TraitVPtr(PolyExistentialTraitRef<'tcx>),
14+
Method(Instance<'tcx>),
15+
TraitVPtr(PolyTraitRef<'tcx>),
16+
}
17+
18+
impl<'tcx> fmt::Debug for VtblEntry<'tcx> {
19+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
20+
match self {
21+
VtblEntry::MetadataDropInPlace => write!(f, "MetadataDropInPlace")?,
22+
VtblEntry::MetadataSize => write!(f, "MetadataSize")?,
23+
VtblEntry::MetadataAlign => write!(f, "MetadataAlign")?,
24+
VtblEntry::Vacant => write!(f, "Vacant")?,
25+
VtblEntry::Method(instance) => write!(f, "Method: {}", instance)?,
26+
VtblEntry::TraitVPtr(trait_ref) => write!(f, "TraitVPtr: {}", trait_ref)?,
27+
}
28+
Ok(())
29+
}
1630
}
1731

1832
pub const COMMON_VTABLE_ENTRIES: &[VtblEntry<'_>] =
@@ -37,11 +51,6 @@ impl<'tcx> TyCtxt<'tcx> {
3751
}
3852
drop(vtables_cache);
3953

40-
// See https://github.com/rust-lang/rust/pull/86475#discussion_r655162674
41-
assert!(
42-
!ty.needs_subst() && !poly_trait_ref.map_or(false, |trait_ref| trait_ref.needs_subst())
43-
);
44-
let param_env = ty::ParamEnv::reveal_all();
4554
let vtable_entries = if let Some(poly_trait_ref) = poly_trait_ref {
4655
let trait_ref = poly_trait_ref.with_self_ty(tcx, ty);
4756
let trait_ref = tcx.erase_regions(trait_ref);
@@ -51,8 +60,9 @@ impl<'tcx> TyCtxt<'tcx> {
5160
COMMON_VTABLE_ENTRIES
5261
};
5362

54-
let layout =
55-
tcx.layout_of(param_env.and(ty)).expect("failed to build vtable representation");
63+
let layout = tcx
64+
.layout_of(ty::ParamEnv::reveal_all().and(ty))
65+
.expect("failed to build vtable representation");
5666
assert!(!layout.is_unsized(), "can't create a vtable for an unsized type");
5767
let size = layout.size.bytes();
5868
let align = layout.align.abi.bytes();
@@ -80,21 +90,18 @@ impl<'tcx> TyCtxt<'tcx> {
8090
VtblEntry::MetadataSize => Scalar::from_uint(size, ptr_size).into(),
8191
VtblEntry::MetadataAlign => Scalar::from_uint(align, ptr_size).into(),
8292
VtblEntry::Vacant => continue,
83-
VtblEntry::Method(def_id, substs) => {
84-
// See https://github.com/rust-lang/rust/pull/86475#discussion_r655162674
85-
assert!(!substs.needs_subst());
86-
93+
VtblEntry::Method(instance) => {
8794
// Prepare the fn ptr we write into the vtable.
88-
let instance =
89-
ty::Instance::resolve_for_vtable(tcx, param_env, *def_id, substs)
90-
.expect("resolution failed during building vtable representation")
91-
.polymorphize(tcx);
95+
let instance = instance.polymorphize(tcx);
9296
let fn_alloc_id = tcx.create_fn_alloc(instance);
9397
let fn_ptr = Pointer::from(fn_alloc_id);
9498
ScalarMaybeUninit::from_pointer(fn_ptr, &tcx)
9599
}
96100
VtblEntry::TraitVPtr(trait_ref) => {
97-
let supertrait_alloc_id = self.vtable_allocation(ty, Some(*trait_ref));
101+
let super_trait_ref = trait_ref.map_bound(|trait_ref| {
102+
ty::ExistentialTraitRef::erase_self_ty(tcx, trait_ref)
103+
});
104+
let supertrait_alloc_id = self.vtable_allocation(ty, Some(super_trait_ref));
98105
let vptr = Pointer::from(supertrait_alloc_id);
99106
ScalarMaybeUninit::from_pointer(vptr, &tcx)
100107
}

‎compiler/rustc_mir/src/monomorphize/collector.rs

+3-7
Original file line numberDiff line numberDiff line change
@@ -1120,13 +1120,9 @@ fn create_mono_items_for_vtable_methods<'tcx>(
11201120
// all super trait items already covered, so skip them.
11211121
None
11221122
}
1123-
VtblEntry::Method(def_id, substs) => ty::Instance::resolve_for_vtable(
1124-
tcx,
1125-
ty::ParamEnv::reveal_all(),
1126-
*def_id,
1127-
substs,
1128-
)
1129-
.filter(|instance| should_codegen_locally(tcx, instance)),
1123+
VtblEntry::Method(instance) => {
1124+
Some(*instance).filter(|instance| should_codegen_locally(tcx, instance))
1125+
}
11301126
})
11311127
.map(|item| create_fn_mono_item(tcx, item, source));
11321128
output.extend(methods);

‎compiler/rustc_trait_selection/src/traits/mod.rs

+8-4
Original file line numberDiff line numberDiff line change
@@ -678,15 +678,19 @@ fn vtable_entries<'tcx>(
678678
return VtblEntry::Vacant;
679679
}
680680

681-
VtblEntry::Method(def_id, substs)
681+
let instance = ty::Instance::resolve_for_vtable(
682+
tcx,
683+
ty::ParamEnv::reveal_all(),
684+
def_id,
685+
substs,
686+
)
687+
.expect("resolution failed during building vtable representation");
688+
VtblEntry::Method(instance)
682689
});
683690

684691
entries.extend(own_entries);
685692

686693
if emit_vptr {
687-
let trait_ref = trait_ref.map_bound(|trait_ref| {
688-
ty::ExistentialTraitRef::erase_self_ty(tcx, trait_ref)
689-
});
690694
entries.push(VtblEntry::TraitVPtr(trait_ref));
691695
}
692696
}

‎src/test/ui/traits/vtable/vtable-diamond.stderr

+7-42
Original file line numberDiff line numberDiff line change
@@ -2,54 +2,19 @@ error: Vtable Entries: [
22
MetadataDropInPlace,
33
MetadataSize,
44
MetadataAlign,
5-
Method(
6-
DefId(0:4 ~ vtable_diamond[4564]::A::foo_a),
7-
[
8-
S,
9-
],
10-
),
11-
Method(
12-
DefId(0:6 ~ vtable_diamond[4564]::B::foo_b),
13-
[
14-
S,
15-
],
16-
),
17-
Method(
18-
DefId(0:8 ~ vtable_diamond[4564]::C::foo_c),
19-
[
20-
S,
21-
],
22-
),
23-
TraitVPtr(
24-
Binder(
25-
C,
26-
[],
27-
),
28-
),
29-
Method(
30-
DefId(0:10 ~ vtable_diamond[4564]::D::foo_d),
31-
[
32-
S,
33-
],
34-
),
5+
Method: <S as A>::foo_a,
6+
Method: <S as B>::foo_b,
7+
Method: <S as C>::foo_c,
8+
TraitVPtr: <S as C>,
9+
Method: <S as D>::foo_d,
3510
]
3611

3712
error: Vtable Entries: [
3813
MetadataDropInPlace,
3914
MetadataSize,
4015
MetadataAlign,
41-
Method(
42-
DefId(0:4 ~ vtable_diamond[4564]::A::foo_a),
43-
[
44-
S,
45-
],
46-
),
47-
Method(
48-
DefId(0:8 ~ vtable_diamond[4564]::C::foo_c),
49-
[
50-
S,
51-
],
52-
),
16+
Method: <S as A>::foo_a,
17+
Method: <S as C>::foo_c,
5318
]
5419

5520
error: aborting due to 2 previous errors

‎src/test/ui/traits/vtable/vtable-multiple.stderr

+5-30
Original file line numberDiff line numberDiff line change
@@ -2,42 +2,17 @@ error: Vtable Entries: [
22
MetadataDropInPlace,
33
MetadataSize,
44
MetadataAlign,
5-
Method(
6-
DefId(0:4 ~ vtable_multiple[5246]::A::foo_a),
7-
[
8-
S,
9-
],
10-
),
11-
Method(
12-
DefId(0:6 ~ vtable_multiple[5246]::B::foo_b),
13-
[
14-
S,
15-
],
16-
),
17-
TraitVPtr(
18-
Binder(
19-
B,
20-
[],
21-
),
22-
),
23-
Method(
24-
DefId(0:8 ~ vtable_multiple[5246]::C::foo_c),
25-
[
26-
S,
27-
],
28-
),
5+
Method: <S as A>::foo_a,
6+
Method: <S as B>::foo_b,
7+
TraitVPtr: <S as B>,
8+
Method: <S as C>::foo_c,
299
]
3010

3111
error: Vtable Entries: [
3212
MetadataDropInPlace,
3313
MetadataSize,
3414
MetadataAlign,
35-
Method(
36-
DefId(0:6 ~ vtable_multiple[5246]::B::foo_b),
37-
[
38-
S,
39-
],
40-
),
15+
Method: <S as B>::foo_b,
4116
]
4217

4318
error: aborting due to 2 previous errors

0 commit comments

Comments
 (0)
Please sign in to comment.