rust/src/vtable.rs

77 lines
2.3 KiB
Rust
Raw Normal View History

//! Codegen vtables and vtable accesses.
//!
//! See `rustc_codegen_ssa/src/meth.rs` for reference.
2018-09-08 11:00:06 -05:00
use super::constant::pointer_for_allocation;
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
}
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,
(ty::COMMON_VTABLE_ENTRIES_DROPINPLACE * usize_size) as i32,
2019-02-07 13:45:15 -06:00
)
}
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,
(ty::COMMON_VTABLE_ENTRIES_SIZE * usize_size) as i32,
2018-09-08 11:00:06 -05:00
)
}
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,
(ty::COMMON_VTABLE_ENTRIES_ALIGN * usize_size) as i32,
2018-09-15 04:14:27 -05:00
)
}
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 * usize_size as usize) as i32,
2018-09-08 11:00:06 -05:00
);
(ptr, func_ref)
}
pub(crate) fn get_vtable<'tcx>(
fx: &mut FunctionCx<'_, '_, 'tcx>,
ty: Ty<'tcx>,
trait_ref: Option<ty::PolyExistentialTraitRef<'tcx>>,
2018-09-08 11:00:06 -05:00
) -> Value {
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
vtable_ptr.get_addr(fx)
2018-09-08 11:00:06 -05:00
}