rust/src/vtable.rs

185 lines
5.9 KiB
Rust
Raw Normal View History

//! Codegen vtables and vtable accesses.
//!
2018-09-08 11:00:06 -05:00
//! See librustc_codegen_llvm/meth.rs for reference
// FIXME dedup this logic between miri, cg_llvm and cg_clif
2018-09-08 11:00:06 -05:00
use crate::prelude::*;
const DROP_FN_INDEX: usize = 0;
const SIZE_INDEX: usize = 1;
const ALIGN_INDEX: usize = 2;
2019-12-20 09:16:28 -06:00
fn vtable_memflags() -> MemFlags {
let mut flags = MemFlags::trusted(); // A vtable access is always aligned and will never trap.
flags.set_readonly(); // A vtable is always read-only.
flags
}
pub(crate) fn drop_fn_of_obj(fx: &mut FunctionCx<'_, '_, '_>, vtable: Value) -> Value {
let usize_size = fx.layout_of(fx.tcx.types.usize).size.bytes() as usize;
2019-02-07 13:45:15 -06:00
fx.bcx.ins().load(
pointer_ty(fx.tcx),
2019-12-20 09:16:28 -06:00
vtable_memflags(),
2019-02-07 13:45:15 -06:00
vtable,
(DROP_FN_INDEX * usize_size) as i32,
)
}
pub(crate) fn size_of_obj(fx: &mut FunctionCx<'_, '_, '_>, vtable: Value) -> Value {
let usize_size = fx.layout_of(fx.tcx.types.usize).size.bytes() as usize;
2018-09-08 11:00:06 -05:00
fx.bcx.ins().load(
pointer_ty(fx.tcx),
2019-12-20 09:16:28 -06:00
vtable_memflags(),
2018-09-08 11:00:06 -05:00
vtable,
(SIZE_INDEX * usize_size) as i32,
)
}
pub(crate) fn min_align_of_obj(fx: &mut FunctionCx<'_, '_, '_>, vtable: Value) -> Value {
let usize_size = fx.layout_of(fx.tcx.types.usize).size.bytes() as usize;
2018-09-15 04:14:27 -05:00
fx.bcx.ins().load(
pointer_ty(fx.tcx),
2019-12-20 09:16:28 -06:00
vtable_memflags(),
2018-09-15 04:14:27 -05:00
vtable,
(ALIGN_INDEX * usize_size) as i32,
)
}
pub(crate) fn get_ptr_and_method_ref<'tcx>(
fx: &mut FunctionCx<'_, '_, 'tcx>,
2018-09-08 11:00:06 -05:00
arg: CValue<'tcx>,
idx: usize,
) -> (Value, Value) {
let (ptr, vtable) = if let Abi::ScalarPair(_, _) = arg.layout().abi {
arg.load_scalar_pair(fx)
} else {
let (ptr, vtable) = arg.try_to_ptr().unwrap();
(ptr.get_addr(fx), vtable.unwrap())
};
let usize_size = fx.layout_of(fx.tcx.types.usize).size.bytes();
2018-09-08 11:00:06 -05:00
let func_ref = fx.bcx.ins().load(
pointer_ty(fx.tcx),
2019-12-20 09:16:28 -06:00
vtable_memflags(),
2018-09-08 11:00:06 -05:00
vtable,
((idx + 3) * usize_size as usize) as i32,
);
(ptr, func_ref)
}
pub(crate) fn get_vtable<'tcx>(
fx: &mut FunctionCx<'_, '_, 'tcx>,
layout: TyAndLayout<'tcx>,
trait_ref: Option<ty::PolyExistentialTraitRef<'tcx>>,
2018-09-08 11:00:06 -05:00
) -> Value {
2020-08-22 09:17:58 -05:00
let data_id = if let Some(data_id) = fx.cx.vtables.get(&(layout.ty, trait_ref)) {
2018-09-08 11:00:06 -05:00
*data_id
} else {
let data_id = build_vtable(fx, layout, trait_ref);
2020-08-22 09:17:58 -05:00
fx.cx.vtables.insert((layout.ty, trait_ref), data_id);
2018-09-08 11:00:06 -05:00
data_id
};
2020-08-22 09:17:58 -05:00
let local_data_id = fx.cx.module.declare_data_in_func(data_id, &mut fx.bcx.func);
2018-11-07 06:32:02 -06:00
fx.bcx.ins().global_value(fx.pointer_type, local_data_id)
2018-09-08 11:00:06 -05:00
}
2019-08-18 09:52:07 -05:00
fn build_vtable<'tcx>(
fx: &mut FunctionCx<'_, '_, 'tcx>,
layout: TyAndLayout<'tcx>,
trait_ref: Option<ty::PolyExistentialTraitRef<'tcx>>,
2018-09-08 11:00:06 -05:00
) -> DataId {
let tcx = fx.tcx;
let usize_size = fx.layout_of(fx.tcx.types.usize).size.bytes() as usize;
2018-09-08 11:00:06 -05:00
let drop_in_place_fn = import_function(
tcx,
fx.cx.module,
Instance::resolve_drop_in_place(tcx, layout.ty).polymorphize(fx.tcx),
);
2018-09-08 11:00:06 -05:00
let mut components: Vec<_> = vec![Some(drop_in_place_fn), None, None];
let methods_root;
let methods = if let Some(trait_ref) = trait_ref {
methods_root = tcx.vtable_methods(trait_ref.with_self_ty(tcx, layout.ty));
methods_root.iter()
} else {
(&[]).iter()
};
let methods = methods.cloned().map(|opt_mth| {
opt_mth.map(|(def_id, substs)| {
import_function(
2019-01-02 05:20:32 -06:00
tcx,
fx.cx.module,
Instance::resolve_for_vtable(tcx, ParamEnv::reveal_all(), def_id, substs)
.unwrap()
.polymorphize(fx.tcx),
)
})
});
components.extend(methods);
2018-09-08 11:00:06 -05:00
let mut data_ctx = DataContext::new();
let mut data = ::std::iter::repeat(0u8)
.take(components.len() * usize_size)
.collect::<Vec<u8>>()
.into_boxed_slice();
write_usize(fx.tcx, &mut data, SIZE_INDEX, layout.size.bytes());
write_usize(fx.tcx, &mut data, ALIGN_INDEX, layout.align.abi.bytes());
2018-09-08 11:00:06 -05:00
data_ctx.define(data);
for (i, component) in components.into_iter().enumerate() {
if let Some(func_id) = component {
2020-08-22 09:17:58 -05:00
let func_ref = fx.cx.module.declare_func_in_data(func_id, &mut data_ctx);
2018-09-08 11:00:06 -05:00
data_ctx.write_function_addr((i * usize_size) as u32, func_ref);
}
}
data_ctx.set_align(fx.tcx.data_layout.pointer_align.pref.bytes());
2018-09-08 11:00:06 -05:00
let data_id = fx
.cx
.module
2018-09-08 11:00:06 -05:00
.declare_data(
2020-03-13 05:19:31 -05:00
&format!(
"__vtable.{}.for.{:?}.{}",
2020-03-13 05:19:31 -05:00
trait_ref
.as_ref()
.map(|trait_ref| format!("{:?}", trait_ref.skip_binder()).into())
.unwrap_or(std::borrow::Cow::Borrowed("???")),
layout.ty,
2020-08-22 09:17:58 -05:00
fx.cx.vtables.len(),
2020-03-13 05:19:31 -05:00
),
2018-09-08 11:00:06 -05:00
Linkage::Local,
false,
2019-10-27 10:55:35 -05:00
false,
2018-10-10 12:07:13 -05:00
)
.unwrap();
2019-04-27 11:49:13 -05:00
// FIXME don't duplicate definitions in lazy jit mode
let _ = fx.cx.module.define_data(data_id, &data_ctx);
2019-04-27 11:49:13 -05:00
2018-09-08 11:00:06 -05:00
data_id
}
fn write_usize(tcx: TyCtxt<'_>, buf: &mut [u8], idx: usize, num: u64) {
let pointer_size =
tcx.layout_of(ParamEnv::reveal_all().and(tcx.types.usize)).unwrap().size.bytes() as usize;
2020-09-16 09:54:58 -05:00
let target = &mut buf[idx * pointer_size..(idx + 1) * pointer_size];
2018-09-08 11:00:06 -05:00
match tcx.data_layout.endian {
2020-09-16 09:54:58 -05:00
rustc_target::abi::Endian::Little => match pointer_size {
4 => target.copy_from_slice(&(num as u32).to_le_bytes()),
8 => target.copy_from_slice(&(num as u64).to_le_bytes()),
_ => todo!("pointer size {} is not yet supported", pointer_size),
},
rustc_target::abi::Endian::Big => match pointer_size {
4 => target.copy_from_slice(&(num as u32).to_be_bytes()),
8 => target.copy_from_slice(&(num as u64).to_be_bytes()),
_ => todo!("pointer size {} is not yet supported", pointer_size),
},
2018-10-10 12:07:13 -05:00
}
2018-09-08 11:00:06 -05:00
}