1
Fork 0
rust/src/constant.rs

200 lines
6.3 KiB
Rust
Raw Normal View History

use cranelift_module::*;
use crate::prelude::*;
use rustc::mir::interpret::{read_target_uint, AllocId, ConstValue, GlobalId};
use rustc::ty::Const;
use rustc_mir::interpret::{CompileTimeEvaluator, Memory};
#[derive(Default)]
pub struct ConstantCx {
todo_allocs: HashSet<AllocId>,
done: HashSet<DataId>,
}
impl ConstantCx {
2018-08-13 18:04:39 +02:00
pub fn finalize<'a, 'tcx: 'a, B: Backend>(
mut self,
tcx: TyCtxt<'a, 'tcx, 'tcx>,
module: &mut Module<B>,
) {
println!("todo allocs: {:?}", self.todo_allocs);
define_all_allocs(tcx, module, &mut self);
println!("done {:?}", self.done);
for data_id in self.done.drain() {
module.finalize_data(data_id);
}
}
}
pub fn codegen_static<'a, 'tcx: 'a, B: Backend>(cx: &mut CodegenCx<'a, 'tcx, B>, def_id: DefId) {
unimpl!("static mono item {:?}", def_id);
}
pub fn codegen_static_ref<'a, 'tcx: 'a>(
fx: &mut FunctionCx<'a, 'tcx>,
static_: &Static<'tcx>,
) -> CPlace<'tcx> {
unimpl!("static place {:?} ty {:?}", static_.def_id, static_.ty);
}
2018-07-14 16:45:20 +02:00
pub fn trans_promoted<'a, 'tcx: 'a>(
fx: &mut FunctionCx<'a, 'tcx>,
promoted: Promoted,
) -> CPlace<'tcx> {
let const_ = fx
.tcx
.const_eval(ParamEnv::reveal_all().and(GlobalId {
instance: fx.instance,
promoted: Some(promoted),
})).unwrap();
2018-07-21 18:44:34 +02:00
let const_ = force_eval_const(fx, const_);
trans_const_place(fx, const_)
}
pub fn trans_constant<'a, 'tcx: 'a>(
fx: &mut FunctionCx<'a, 'tcx>,
constant: &Constant<'tcx>,
) -> CValue<'tcx> {
let const_ = fx.monomorphize(&constant.literal);
let const_ = force_eval_const(fx, const_);
trans_const_value(fx, const_)
}
fn force_eval_const<'a, 'tcx: 'a>(
fx: &FunctionCx<'a, 'tcx>,
const_: &'tcx Const<'tcx>,
) -> &'tcx Const<'tcx> {
match const_.val {
2018-07-21 18:44:34 +02:00
ConstValue::Unevaluated(def_id, ref substs) => {
let param_env = ParamEnv::reveal_all();
let instance = Instance::resolve(fx.tcx, param_env, def_id, substs).unwrap();
let cid = GlobalId {
instance,
promoted: None,
};
fx.tcx.const_eval(param_env.and(cid)).unwrap()
}
_ => const_,
}
}
2018-07-14 16:45:20 +02:00
fn trans_const_value<'a, 'tcx: 'a>(
fx: &mut FunctionCx<'a, 'tcx>,
const_: &'tcx Const<'tcx>,
) -> CValue<'tcx> {
2018-07-18 13:46:56 +02:00
let ty = fx.monomorphize(&const_.ty);
let layout = fx.layout_of(ty);
match ty.sty {
2018-07-14 16:45:20 +02:00
TypeVariants::TyBool => {
2018-07-21 18:44:34 +02:00
let bits = const_.val.to_bits(layout.size).unwrap();
2018-07-18 13:46:56 +02:00
CValue::const_val(fx, ty, bits as u64 as i64)
2018-07-14 16:45:20 +02:00
}
TypeVariants::TyUint(_) => {
2018-07-21 18:44:34 +02:00
let bits = const_.val.to_bits(layout.size).unwrap();
2018-07-18 13:46:56 +02:00
CValue::const_val(fx, ty, bits as u64 as i64)
2018-07-14 16:45:20 +02:00
}
TypeVariants::TyInt(_) => {
2018-07-21 18:44:34 +02:00
let bits = const_.val.to_bits(layout.size).unwrap();
2018-07-18 13:46:56 +02:00
CValue::const_val(fx, ty, bits as i128 as i64)
2018-07-14 16:45:20 +02:00
}
TypeVariants::TyFnDef(def_id, substs) => {
let func_ref = fx.get_function_ref(Instance::new(def_id, substs));
2018-07-18 13:46:56 +02:00
CValue::Func(func_ref, layout)
2018-07-14 16:45:20 +02:00
}
_ => trans_const_place(fx, const_).to_cvalue(fx),
2018-07-16 15:13:37 +02:00
}
}
fn trans_const_place<'a, 'tcx: 'a>(
fx: &mut FunctionCx<'a, 'tcx>,
const_: &'tcx Const<'tcx>,
) -> CPlace<'tcx> {
let ty = fx.monomorphize(&const_.ty);
let layout = fx.layout_of(ty);
let alloc = fx.tcx.const_value_to_allocation(const_);
//println!("const value: {:?} allocation: {:?}", value, alloc);
let alloc_id = fx.tcx.alloc_map.lock().allocate(alloc);
2018-08-13 18:04:39 +02:00
let data_id = get_global_for_alloc_id(fx.module, fx.constants, alloc_id);
let local_data_id = fx.module.declare_data_in_func(data_id, &mut fx.bcx.func);
// TODO: does global_value return a ptr of a val?
let global_ptr = fx.bcx.ins().global_value(types::I64, local_data_id);
CPlace::Addr(global_ptr, layout)
}
2018-07-16 15:13:37 +02:00
// If ret.1 is true, then the global didn't exist before
fn define_global_for_alloc_id<'a, 'tcx: 'a, B: Backend>(
module: &mut Module<B>,
2018-08-13 15:34:18 +02:00
cx: &mut ConstantCx,
alloc_id: AllocId,
2018-08-13 15:34:18 +02:00
) -> DataId {
module
.declare_data(&alloc_id.0.to_string(), Linkage::Local, false)
.unwrap()
2018-07-16 15:13:37 +02:00
}
fn get_global_for_alloc_id<'a, 'tcx: 'a, B: Backend + 'a>(
module: &mut Module<B>,
cx: &mut ConstantCx,
alloc_id: AllocId,
) -> DataId {
cx.todo_allocs.insert(alloc_id);
let data_id = define_global_for_alloc_id(module, cx, alloc_id);
data_id
}
2018-07-16 15:13:37 +02:00
2018-08-13 18:04:39 +02:00
fn define_all_allocs<'a, 'tcx: 'a, B: Backend + 'a>(
tcx: TyCtxt<'a, 'tcx, 'tcx>,
module: &mut Module<B>,
cx: &mut ConstantCx,
) {
let memory = Memory::<CompileTimeEvaluator>::new(tcx.at(DUMMY_SP), ());
while let Some(alloc_id) = pop_set(&mut cx.todo_allocs) {
let data_id = define_global_for_alloc_id(module, cx, alloc_id);
println!("alloc_id {} data_id {}", alloc_id, data_id);
if cx.done.contains(&data_id) {
continue;
}
2018-07-16 15:13:37 +02:00
let alloc = memory.get(alloc_id).unwrap();
//let alloc = tcx.alloc_map.lock().get(alloc_id).unwrap();
2018-07-16 15:13:37 +02:00
let mut data_ctx = DataContext::new();
data_ctx.define(
alloc.bytes.to_vec().into_boxed_slice(),
Writability::Readonly,
);
2018-07-16 15:13:37 +02:00
for &(offset, reloc) in alloc.relocations.iter() {
cx.todo_allocs.insert(reloc);
let data_id = define_global_for_alloc_id(module, cx, reloc);
2018-07-16 15:13:37 +02:00
let reloc_offset = {
let endianness = memory.endianness();
let offset = offset.bytes() as usize;
let ptr_size = tcx.data_layout.pointer_size;
2018-07-16 15:13:37 +02:00
let bytes = &alloc.bytes[offset..offset + ptr_size.bytes() as usize];
read_target_uint(endianness, bytes).unwrap()
};
let global_value = module.declare_data_in_data(data_id, &mut data_ctx);
2018-07-16 15:13:37 +02:00
data_ctx.write_data_addr(reloc_offset as u32, global_value, 0);
}
module.define_data(data_id, &data_ctx).unwrap();
cx.done.insert(data_id);
2018-07-14 16:45:20 +02:00
}
assert!(cx.todo_allocs.is_empty(), "{:?}", cx.todo_allocs);
2018-07-16 15:13:37 +02:00
}
fn pop_set<T: Copy + Eq + ::std::hash::Hash>(set: &mut HashSet<T>) -> Option<T> {
if let Some(elem) = set.iter().next().map(|elem| *elem) {
set.remove(&elem);
Some(elem)
} else {
None
}
2018-08-13 18:04:39 +02:00
}