Refactor fn sig handling in preparation for supporting closures
This commit is contained in:
104
src/abi.rs
104
src/abi.rs
@@ -1,25 +1,21 @@
|
|||||||
|
use std::iter;
|
||||||
|
|
||||||
|
use rustc::hir;
|
||||||
|
use rustc_target::spec::abi::Abi;
|
||||||
|
|
||||||
use prelude::*;
|
use prelude::*;
|
||||||
|
|
||||||
pub fn cton_sig_from_fn_sig<'a, 'tcx: 'a>(tcx: TyCtxt<'a, 'tcx, 'tcx>, sig: PolyFnSig<'tcx>, substs: &Substs<'tcx>) -> Signature {
|
pub fn cton_sig_from_fn_ty<'a, 'tcx: 'a>(tcx: TyCtxt<'a, 'tcx, 'tcx>, fn_ty: Ty<'tcx>) -> Signature {
|
||||||
let sig = tcx.subst_and_normalize_erasing_regions(substs, ParamEnv::reveal_all(), &sig);
|
let sig = ty_fn_sig(tcx, fn_ty);
|
||||||
cton_sig_from_mono_fn_sig(tcx, sig)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn cton_sig_from_instance<'a, 'tcx: 'a>(tcx: TyCtxt<'a, 'tcx, 'tcx>, inst: Instance<'tcx>) -> Signature {
|
|
||||||
let fn_ty = inst.ty(tcx);
|
|
||||||
let sig = fn_ty.fn_sig(tcx);
|
|
||||||
cton_sig_from_mono_fn_sig(tcx, sig)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn cton_sig_from_mono_fn_sig<'a, 'tcx: 'a>(tcx: TyCtxt<'a, 'tcx, 'tcx>, sig: PolyFnSig<'tcx>) -> Signature {
|
|
||||||
// TODO: monomorphize signature
|
|
||||||
|
|
||||||
let sig = tcx.normalize_erasing_late_bound_regions(ParamEnv::reveal_all(), &sig);
|
let sig = tcx.normalize_erasing_late_bound_regions(ParamEnv::reveal_all(), &sig);
|
||||||
let inputs = sig.inputs();
|
|
||||||
let _output = sig.output();
|
|
||||||
assert!(!sig.variadic, "Variadic function are not yet supported");
|
assert!(!sig.variadic, "Variadic function are not yet supported");
|
||||||
let call_conv = match sig.abi {
|
let (call_conv, inputs, _output): (CallConv, Vec<Ty>, Ty) = match sig.abi {
|
||||||
_ => CallConv::SystemV,
|
Abi::Rust => (CallConv::SystemV, sig.inputs().to_vec(), sig.output()),
|
||||||
|
Abi::RustCall => {
|
||||||
|
unimplemented!();
|
||||||
|
}
|
||||||
|
Abi::System => bug!("system abi should be selected elsewhere"),
|
||||||
|
_ => unimplemented!("unsupported abi {:?}", sig.abi),
|
||||||
};
|
};
|
||||||
Signature {
|
Signature {
|
||||||
params: Some(types::I64).into_iter() // First param is place to put return val
|
params: Some(types::I64).into_iter() // First param is place to put return val
|
||||||
@@ -31,16 +27,75 @@ pub fn cton_sig_from_mono_fn_sig<'a, 'tcx: 'a>(tcx: TyCtxt<'a, 'tcx, 'tcx>, sig:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn ty_fn_sig<'a, 'tcx>(
|
||||||
|
tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
||||||
|
ty: Ty<'tcx>
|
||||||
|
) -> ty::PolyFnSig<'tcx> {
|
||||||
|
match ty.sty {
|
||||||
|
ty::TyFnDef(..) |
|
||||||
|
// Shims currently have type TyFnPtr. Not sure this should remain.
|
||||||
|
ty::TyFnPtr(_) => ty.fn_sig(tcx),
|
||||||
|
ty::TyClosure(def_id, substs) => {
|
||||||
|
let sig = substs.closure_sig(def_id, tcx);
|
||||||
|
|
||||||
|
let env_ty = tcx.closure_env_ty(def_id, substs).unwrap();
|
||||||
|
sig.map_bound(|sig| tcx.mk_fn_sig(
|
||||||
|
iter::once(*env_ty.skip_binder()).chain(sig.inputs().iter().cloned()),
|
||||||
|
sig.output(),
|
||||||
|
sig.variadic,
|
||||||
|
sig.unsafety,
|
||||||
|
sig.abi
|
||||||
|
))
|
||||||
|
}
|
||||||
|
ty::TyGenerator(def_id, substs, _) => {
|
||||||
|
let sig = substs.poly_sig(def_id, tcx);
|
||||||
|
|
||||||
|
let env_region = ty::ReLateBound(ty::INNERMOST, ty::BrEnv);
|
||||||
|
let env_ty = tcx.mk_mut_ref(tcx.mk_region(env_region), ty);
|
||||||
|
|
||||||
|
sig.map_bound(|sig| {
|
||||||
|
let state_did = tcx.lang_items().gen_state().unwrap();
|
||||||
|
let state_adt_ref = tcx.adt_def(state_did);
|
||||||
|
let state_substs = tcx.intern_substs(&[
|
||||||
|
sig.yield_ty.into(),
|
||||||
|
sig.return_ty.into(),
|
||||||
|
]);
|
||||||
|
let ret_ty = tcx.mk_adt(state_adt_ref, state_substs);
|
||||||
|
|
||||||
|
tcx.mk_fn_sig(iter::once(env_ty),
|
||||||
|
ret_ty,
|
||||||
|
false,
|
||||||
|
hir::Unsafety::Normal,
|
||||||
|
Abi::Rust
|
||||||
|
)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
_ => bug!("unexpected type {:?} to ty_fn_sig", ty)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl<'a, 'tcx: 'a> FunctionCx<'a, 'tcx> {
|
impl<'a, 'tcx: 'a> FunctionCx<'a, 'tcx> {
|
||||||
|
/// Instance must be monomorphized
|
||||||
pub fn get_function_ref(&mut self, inst: Instance<'tcx>) -> FuncRef {
|
pub fn get_function_ref(&mut self, inst: Instance<'tcx>) -> FuncRef {
|
||||||
|
assert!(!inst.substs.needs_infer() && !inst.substs.has_param_types());
|
||||||
let tcx = self.tcx;
|
let tcx = self.tcx;
|
||||||
let module = &mut self.module;
|
let module = &mut self.module;
|
||||||
let func_id = *self.def_id_fn_id_map.entry(inst).or_insert_with(|| {
|
let func_id = *self.def_id_fn_id_map.entry(inst).or_insert_with(|| {
|
||||||
let sig = cton_sig_from_instance(tcx, inst);
|
let fn_ty = inst.ty(tcx);
|
||||||
|
let sig = cton_sig_from_fn_ty(tcx, fn_ty);
|
||||||
module.declare_function(&tcx.absolute_item_path_str(inst.def_id()), Linkage::Local, &sig).unwrap()
|
module.declare_function(&tcx.absolute_item_path_str(inst.def_id()), Linkage::Local, &sig).unwrap()
|
||||||
});
|
});
|
||||||
module.declare_func_in_func(func_id, &mut self.bcx.func)
|
module.declare_func_in_func(func_id, &mut self.bcx.func)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn self_sig(&self) -> FnSig<'tcx> {
|
||||||
|
let sig = ty_fn_sig(self.tcx, self.instance.ty(self.tcx));
|
||||||
|
self.tcx.normalize_erasing_late_bound_regions(ParamEnv::reveal_all(), &sig)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn return_type(&self) -> Ty<'tcx> {
|
||||||
|
self.self_sig().output()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn codegen_fn_prelude<'a, 'tcx: 'a>(fx: &mut FunctionCx<'a, 'tcx>, start_ebb: Ebb) {
|
pub fn codegen_fn_prelude<'a, 'tcx: 'a>(fx: &mut FunctionCx<'a, 'tcx>, start_ebb: Ebb) {
|
||||||
@@ -63,7 +118,7 @@ pub fn codegen_fn_prelude<'a, 'tcx: 'a>(fx: &mut FunctionCx<'a, 'tcx>, start_ebb
|
|||||||
(local, fx.bcx.append_ebb_param(start_ebb, cton_type), ty, stack_slot)
|
(local, fx.bcx.append_ebb_param(start_ebb, cton_type), ty, stack_slot)
|
||||||
}).collect::<Vec<(Local, Value, Ty, StackSlot)>>();
|
}).collect::<Vec<(Local, Value, Ty, StackSlot)>>();
|
||||||
|
|
||||||
let ret_layout = fx.layout_of(fx.instance.ty(fx.tcx).fn_sig(fx.tcx).skip_binder().output());
|
let ret_layout = fx.layout_of(fx.return_type());
|
||||||
fx.local_map.insert(RETURN_PLACE, CPlace::Addr(ret_param, ret_layout));
|
fx.local_map.insert(RETURN_PLACE, CPlace::Addr(ret_param, ret_layout));
|
||||||
|
|
||||||
for (local, ebb_param, ty, stack_slot) in func_params {
|
for (local, ebb_param, ty, stack_slot) in func_params {
|
||||||
@@ -96,7 +151,6 @@ pub fn codegen_call<'a, 'tcx: 'a>(
|
|||||||
destination: &Option<(Place<'tcx>, BasicBlock)>,
|
destination: &Option<(Place<'tcx>, BasicBlock)>,
|
||||||
) -> Inst {
|
) -> Inst {
|
||||||
let func = ::base::trans_operand(fx, func);
|
let func = ::base::trans_operand(fx, func);
|
||||||
let func_ty = func.layout().ty;
|
|
||||||
let return_place = if let Some((place, _)) = destination {
|
let return_place = if let Some((place, _)) = destination {
|
||||||
::base::trans_place(fx, place).expect_addr()
|
::base::trans_place(fx, place).expect_addr()
|
||||||
} else {
|
} else {
|
||||||
@@ -121,13 +175,9 @@ pub fn codegen_call<'a, 'tcx: 'a>(
|
|||||||
fx.bcx.ins().call(func, &args)
|
fx.bcx.ins().call(func, &args)
|
||||||
}
|
}
|
||||||
func => {
|
func => {
|
||||||
|
let func_ty = func.layout().ty;
|
||||||
let func = func.load_value(fx);
|
let func = func.load_value(fx);
|
||||||
let sig = match func_ty.sty {
|
let sig = fx.bcx.import_signature(cton_sig_from_fn_ty(fx.tcx, func_ty));
|
||||||
TypeVariants::TyFnDef(def_id, _substs) => fx.tcx.fn_sig(def_id),
|
|
||||||
TypeVariants::TyFnPtr(fn_sig) => fn_sig,
|
|
||||||
_ => bug!("Calling non function type {:?}", func_ty),
|
|
||||||
};
|
|
||||||
let sig = fx.bcx.import_signature(cton_sig_from_fn_sig(fx.tcx, sig, fx.param_substs));
|
|
||||||
fx.bcx.ins().call_indirect(sig, func, &args)
|
fx.bcx.ins().call_indirect(sig, func, &args)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
10
src/base.rs
10
src/base.rs
@@ -13,8 +13,13 @@ pub fn trans_mono_item<'a, 'tcx: 'a>(cx: &mut CodegenCx<'a, 'tcx, CurrentBackend
|
|||||||
::rustc_mir::util::write_mir_pretty(tcx, Some(def_id), &mut mir).unwrap();
|
::rustc_mir::util::write_mir_pretty(tcx, Some(def_id), &mut mir).unwrap();
|
||||||
tcx.sess.warn(&format!("{:?}:\n\n{}", def_id, String::from_utf8_lossy(&mir.into_inner())));
|
tcx.sess.warn(&format!("{:?}:\n\n{}", def_id, String::from_utf8_lossy(&mir.into_inner())));
|
||||||
|
|
||||||
let sig = tcx.fn_sig(def_id);
|
let fn_ty = inst.ty(tcx);
|
||||||
let sig = cton_sig_from_fn_sig(tcx, sig, substs);
|
let fn_ty = tcx.subst_and_normalize_erasing_regions(
|
||||||
|
substs,
|
||||||
|
ty::ParamEnv::reveal_all(),
|
||||||
|
&fn_ty,
|
||||||
|
);
|
||||||
|
let sig = cton_sig_from_fn_ty(tcx, fn_ty);
|
||||||
let func_id = {
|
let func_id = {
|
||||||
let module = &mut cx.module;
|
let module = &mut cx.module;
|
||||||
*cx.def_id_fn_id_map.entry(inst).or_insert_with(|| {
|
*cx.def_id_fn_id_map.entry(inst).or_insert_with(|| {
|
||||||
@@ -44,6 +49,7 @@ pub fn trans_mono_item<'a, 'tcx: 'a>(cx: &mut CodegenCx<'a, 'tcx, CurrentBackend
|
|||||||
match ::cranelift::codegen::verify_function(&f, &flags) {
|
match ::cranelift::codegen::verify_function(&f, &flags) {
|
||||||
Ok(_) => {}
|
Ok(_) => {}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
|
tcx.sess.err(&format!("{:?}", err));
|
||||||
let pretty_error = ::cranelift::codegen::print_errors::pretty_verifier_error(&f, None, Some(Box::new(writer)), &err);
|
let pretty_error = ::cranelift::codegen::print_errors::pretty_verifier_error(&f, None, Some(Box::new(writer)), &err);
|
||||||
tcx.sess.fatal(&format!("cretonne verify error:\n{}", pretty_error));
|
tcx.sess.fatal(&format!("cretonne verify error:\n{}", pretty_error));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,8 @@
|
|||||||
extern crate rustc_target;
|
|
||||||
|
|
||||||
use std::borrow::Cow;
|
use std::borrow::Cow;
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
|
|
||||||
use syntax::ast::{IntTy, UintTy};
|
use syntax::ast::{IntTy, UintTy};
|
||||||
use self::rustc_target::spec::{HasTargetSpec, Target};
|
use rustc_target::spec::{HasTargetSpec, Target};
|
||||||
|
|
||||||
use cranelift_module::{Module, FuncId, DataId};
|
use cranelift_module::{Module, FuncId, DataId};
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ extern crate syntax;
|
|||||||
extern crate rustc;
|
extern crate rustc;
|
||||||
extern crate rustc_mir;
|
extern crate rustc_mir;
|
||||||
extern crate rustc_codegen_utils;
|
extern crate rustc_codegen_utils;
|
||||||
|
extern crate rustc_target;
|
||||||
extern crate rustc_incremental;
|
extern crate rustc_incremental;
|
||||||
extern crate rustc_data_structures;
|
extern crate rustc_data_structures;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user