Skip to content

Commit bee320a

Browse files
committed
Add support to get virtual table allocation
1 parent dc01c8c commit bee320a

File tree

5 files changed

+54
-3
lines changed

5 files changed

+54
-3
lines changed

compiler/rustc_smir/src/rustc_internal/internal.rs

+24-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ use rustc_span::Symbol;
1010
use stable_mir::mir::alloc::AllocId;
1111
use stable_mir::mir::mono::{Instance, MonoItem, StaticDef};
1212
use stable_mir::ty::{
13-
AdtDef, Binder, BoundRegionKind, BoundTyKind, BoundVariableKind, ClosureKind, Const, FloatTy,
14-
GenericArgKind, GenericArgs, IntTy, Region, RigidTy, TraitRef, Ty, UintTy,
13+
AdtDef, Binder, BoundRegionKind, BoundTyKind, BoundVariableKind, ClosureKind, Const,
14+
ExistentialTraitRef, FloatTy, GenericArgKind, GenericArgs, IntTy, Region, RigidTy, TraitRef,
15+
Ty, UintTy,
1516
};
1617
use stable_mir::{CrateItem, DefId};
1718

@@ -229,6 +230,17 @@ impl<'tcx> RustcInternal<'tcx> for BoundVariableKind {
229230
}
230231
}
231232

233+
impl<'tcx> RustcInternal<'tcx> for ExistentialTraitRef {
234+
type T = rustc_ty::ExistentialTraitRef<'tcx>;
235+
236+
fn internal(&self, tables: &mut Tables<'tcx>) -> Self::T {
237+
rustc_ty::ExistentialTraitRef {
238+
def_id: self.def_id.0.internal(tables),
239+
args: self.generic_args.internal(tables),
240+
}
241+
}
242+
}
243+
232244
impl<'tcx> RustcInternal<'tcx> for TraitRef {
233245
type T = rustc_ty::TraitRef<'tcx>;
234246

@@ -277,3 +289,13 @@ where
277289
(*self).internal(tables)
278290
}
279291
}
292+
impl<'tcx, T> RustcInternal<'tcx> for Option<T>
293+
where
294+
T: RustcInternal<'tcx>,
295+
{
296+
type T = Option<T::T>;
297+
298+
fn internal(&self, tables: &mut Tables<'tcx>) -> Self::T {
299+
self.as_ref().map(|inner| inner.internal(tables))
300+
}
301+
}

compiler/rustc_smir/src/rustc_internal/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ impl<'tcx> Tables<'tcx> {
118118
self.def_ids.create_or_fetch(did)
119119
}
120120

121-
fn create_alloc_id(&mut self, aid: AllocId) -> stable_mir::mir::alloc::AllocId {
121+
pub(crate) fn create_alloc_id(&mut self, aid: AllocId) -> stable_mir::mir::alloc::AllocId {
122122
self.alloc_ids.create_or_fetch(aid)
123123
}
124124

compiler/rustc_smir/src/rustc_smir/mod.rs

+19
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,18 @@ impl<'tcx> Context for TablesWrapper<'tcx> {
330330
tables.tcx.global_alloc(alloc_id).stable(&mut *tables)
331331
}
332332

333+
fn vtable_allocation(
334+
&self,
335+
global_alloc: &GlobalAlloc,
336+
) -> Option<stable_mir::mir::alloc::AllocId> {
337+
let mut tables = self.0.borrow_mut();
338+
let GlobalAlloc::VTable(ty, trait_ref) = global_alloc else { return None };
339+
let alloc_id = tables
340+
.tcx
341+
.vtable_allocation((ty.internal(&mut *tables), trait_ref.internal(&mut *tables)));
342+
Some(alloc_id.stable(&mut *tables))
343+
}
344+
333345
fn usize_to_const(&self, val: u64) -> Result<Const, Error> {
334346
let mut tables = self.0.borrow_mut();
335347
let ty = tables.tcx.types.usize;
@@ -1572,6 +1584,13 @@ impl<'tcx> Stable<'tcx> for mir::interpret::Allocation {
15721584
}
15731585
}
15741586

1587+
impl<'tcx> Stable<'tcx> for mir::interpret::AllocId {
1588+
type T = stable_mir::mir::alloc::AllocId;
1589+
fn stable(&self, tables: &mut Tables<'tcx>) -> Self::T {
1590+
tables.create_alloc_id(*self)
1591+
}
1592+
}
1593+
15751594
impl<'tcx> Stable<'tcx> for mir::interpret::GlobalAlloc<'tcx> {
15761595
type T = GlobalAlloc;
15771596

compiler/stable_mir/src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,9 @@ pub trait Context {
291291

292292
/// Retrieve global allocation for the given allocation ID.
293293
fn global_alloc(&self, id: AllocId) -> GlobalAlloc;
294+
295+
/// Retrieve the id for the virtual table.
296+
fn vtable_allocation(&self, global_alloc: &GlobalAlloc) -> Option<AllocId>;
294297
}
295298

296299
// A thread local variable that stores a pointer to the tables mapping between TyCtxt

compiler/stable_mir/src/mir/alloc.rs

+7
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ pub enum GlobalAlloc {
99
/// The alloc ID is used as a function pointer.
1010
Function(Instance),
1111
/// This alloc ID points to a symbolic (not-reified) vtable.
12+
/// The `None` trait ref is used to represent auto traits.
1213
VTable(Ty, Option<Binder<ExistentialTraitRef>>),
1314
/// The alloc ID points to a "lazy" static variable that did not get computed (yet).
1415
/// This is also used to break the cycle in recursive statics.
@@ -23,6 +24,12 @@ impl From<AllocId> for GlobalAlloc {
2324
}
2425
}
2526

27+
impl GlobalAlloc {
28+
pub fn vtable_allocation(&self) -> Option<AllocId> {
29+
with(|cx| cx.vtable_allocation(self))
30+
}
31+
}
32+
2633
/// A unique identification number for each provenance
2734
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
2835
pub struct AllocId(usize);

0 commit comments

Comments
 (0)