2020-09-23 08:13:49 -05:00
|
|
|
//! Codegen vtables and vtable accesses.
|
|
|
|
//!
|
2021-04-07 14:47:01 -05:00
|
|
|
//! See `rustc_codegen_ssa/src/meth.rs` for reference.
|
2018-09-08 11:00:06 -05:00
|
|
|
|
2021-06-20 04:43:25 -05:00
|
|
|
use super::constant::pointer_for_allocation;
|
2021-06-30 14:21:06 -05:00
|
|
|
use crate::prelude::*;
|
2018-09-08 11:00:06 -05:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2021-03-05 12:12:59 -06:00
|
|
|
pub(crate) fn drop_fn_of_obj(fx: &mut FunctionCx<'_, '_, '_>, vtable: Value) -> Value {
|
2020-08-22 09:47:31 -05:00
|
|
|
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(
|
2020-08-22 09:47:31 -05:00
|
|
|
pointer_ty(fx.tcx),
|
2019-12-20 09:16:28 -06:00
|
|
|
vtable_memflags(),
|
2019-02-07 13:45:15 -06:00
|
|
|
vtable,
|
2021-06-14 05:02:53 -05:00
|
|
|
(ty::COMMON_VTABLE_ENTRIES_DROPINPLACE * usize_size) as i32,
|
2019-02-07 13:45:15 -06:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-03-05 12:12:59 -06:00
|
|
|
pub(crate) fn size_of_obj(fx: &mut FunctionCx<'_, '_, '_>, vtable: Value) -> Value {
|
2020-08-22 09:47:31 -05:00
|
|
|
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(
|
2020-08-22 09:47:31 -05:00
|
|
|
pointer_ty(fx.tcx),
|
2019-12-20 09:16:28 -06:00
|
|
|
vtable_memflags(),
|
2018-09-08 11:00:06 -05:00
|
|
|
vtable,
|
2021-06-14 05:02:53 -05:00
|
|
|
(ty::COMMON_VTABLE_ENTRIES_SIZE * usize_size) as i32,
|
2018-09-08 11:00:06 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-03-05 12:12:59 -06:00
|
|
|
pub(crate) fn min_align_of_obj(fx: &mut FunctionCx<'_, '_, '_>, vtable: Value) -> Value {
|
2020-08-22 09:47:31 -05:00
|
|
|
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(
|
2020-08-22 09:47:31 -05:00
|
|
|
pointer_ty(fx.tcx),
|
2019-12-20 09:16:28 -06:00
|
|
|
vtable_memflags(),
|
2018-09-15 04:14:27 -05:00
|
|
|
vtable,
|
2021-06-17 11:41:43 -05:00
|
|
|
(ty::COMMON_VTABLE_ENTRIES_ALIGN * usize_size) as i32,
|
2018-09-15 04:14:27 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-03-27 06:14:45 -05:00
|
|
|
pub(crate) fn get_ptr_and_method_ref<'tcx>(
|
2021-03-05 12:12:59 -06:00
|
|
|
fx: &mut FunctionCx<'_, '_, 'tcx>,
|
2018-09-08 11:00:06 -05:00
|
|
|
arg: CValue<'tcx>,
|
|
|
|
idx: usize,
|
|
|
|
) -> (Value, Value) {
|
2020-03-10 14:41:31 -05:00
|
|
|
let (ptr, vtable) = if let Abi::ScalarPair(_, _) = arg.layout().abi {
|
|
|
|
arg.load_scalar_pair(fx)
|
|
|
|
} else {
|
|
|
|
let (ptr, vtable) = arg.try_to_ptr().unwrap();
|
2020-08-28 05:10:48 -05:00
|
|
|
(ptr.get_addr(fx), vtable.unwrap())
|
2020-03-10 14:41:31 -05:00
|
|
|
};
|
|
|
|
|
2020-08-22 09:47:31 -05:00
|
|
|
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(
|
2020-08-22 09:47:31 -05:00
|
|
|
pointer_ty(fx.tcx),
|
2019-12-20 09:16:28 -06:00
|
|
|
vtable_memflags(),
|
2018-09-08 11:00:06 -05:00
|
|
|
vtable,
|
2021-06-14 05:02:53 -05:00
|
|
|
(idx * usize_size as usize) as i32,
|
2018-09-08 11:00:06 -05:00
|
|
|
);
|
|
|
|
(ptr, func_ref)
|
|
|
|
}
|
|
|
|
|
2020-03-27 06:14:45 -05:00
|
|
|
pub(crate) fn get_vtable<'tcx>(
|
2021-03-05 12:12:59 -06:00
|
|
|
fx: &mut FunctionCx<'_, '_, 'tcx>,
|
2021-06-20 04:43:25 -05:00
|
|
|
ty: Ty<'tcx>,
|
2019-01-06 08:27:20 -06:00
|
|
|
trait_ref: Option<ty::PolyExistentialTraitRef<'tcx>>,
|
2018-09-08 11:00:06 -05:00
|
|
|
) -> Value {
|
2021-06-30 14:21:06 -05:00
|
|
|
let vtable_alloc_id = fx.tcx.vtable_allocation(ty, trait_ref);
|
|
|
|
let vtable_allocation = fx.tcx.global_alloc(vtable_alloc_id).unwrap_memory();
|
|
|
|
let vtable_ptr = pointer_for_allocation(fx, vtable_allocation);
|
2018-09-08 11:00:06 -05:00
|
|
|
|
2021-06-20 04:43:25 -05:00
|
|
|
vtable_ptr.get_addr(fx)
|
2018-09-08 11:00:06 -05:00
|
|
|
}
|