08237cad8d
Previously, the parser would not allow you to simultaneously implement a function with a different abi as well as being unsafe at the same time. This extends the parser to allow functions of the form: unsafe extern fn foo() { // ... } The closure type grammar was also changed to reflect this reversal, types previously written as "extern unsafe fn()" must now be written as "unsafe extern fn()". The parser currently has a hack which allows the old style, but this will go away once a snapshot has landed. Closes #10025 [breaking-change]
408 lines
16 KiB
Rust
408 lines
16 KiB
Rust
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
// file at the top-level directory of this distribution and at
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
use back::link::mangle_internal_name_by_path_and_seq;
|
|
use lib::llvm::{ValueRef, llvm};
|
|
use middle::trans::adt;
|
|
use middle::trans::base::*;
|
|
use middle::trans::build::*;
|
|
use middle::trans::callee::ArgVals;
|
|
use middle::trans::callee;
|
|
use middle::trans::common::*;
|
|
use middle::trans::datum::*;
|
|
use middle::trans::glue;
|
|
use middle::trans::machine;
|
|
use middle::trans::meth;
|
|
use middle::trans::type_::Type;
|
|
use middle::trans::type_of::*;
|
|
use middle::ty;
|
|
use util::ppaux::ty_to_str;
|
|
|
|
use std::rc::Rc;
|
|
use arena::TypedArena;
|
|
use libc::c_uint;
|
|
use syntax::ast::DefId;
|
|
use syntax::ast;
|
|
use syntax::ast_map;
|
|
use syntax::parse::token::{InternedString, special_idents};
|
|
use syntax::parse::token;
|
|
|
|
pub struct Reflector<'a, 'b> {
|
|
visitor_val: ValueRef,
|
|
visitor_methods: &'a [Rc<ty::Method>],
|
|
final_bcx: &'b Block<'b>,
|
|
tydesc_ty: Type,
|
|
bcx: &'b Block<'b>
|
|
}
|
|
|
|
impl<'a, 'b> Reflector<'a, 'b> {
|
|
pub fn c_uint(&mut self, u: uint) -> ValueRef {
|
|
C_uint(self.bcx.ccx(), u)
|
|
}
|
|
|
|
pub fn c_bool(&mut self, b: bool) -> ValueRef {
|
|
C_bool(self.bcx.ccx(), b)
|
|
}
|
|
|
|
pub fn c_slice(&mut self, s: InternedString) -> ValueRef {
|
|
// We're careful to not use first class aggregates here because that
|
|
// will kick us off fast isel. (Issue #4352.)
|
|
let bcx = self.bcx;
|
|
let str_ty = ty::mk_str_slice(bcx.tcx(), ty::ReStatic, ast::MutImmutable);
|
|
let scratch = rvalue_scratch_datum(bcx, str_ty, "");
|
|
let len = C_uint(bcx.ccx(), s.get().len());
|
|
let c_str = PointerCast(bcx, C_cstr(bcx.ccx(), s, false), Type::i8p(bcx.ccx()));
|
|
Store(bcx, c_str, GEPi(bcx, scratch.val, [ 0, 0 ]));
|
|
Store(bcx, len, GEPi(bcx, scratch.val, [ 0, 1 ]));
|
|
scratch.val
|
|
}
|
|
|
|
pub fn c_size_and_align(&mut self, t: ty::t) -> Vec<ValueRef> {
|
|
let tr = type_of(self.bcx.ccx(), t);
|
|
let s = machine::llsize_of_real(self.bcx.ccx(), tr);
|
|
let a = machine::llalign_of_min(self.bcx.ccx(), tr);
|
|
return vec!(self.c_uint(s as uint),
|
|
self.c_uint(a as uint));
|
|
}
|
|
|
|
pub fn c_tydesc(&mut self, t: ty::t) -> ValueRef {
|
|
let bcx = self.bcx;
|
|
let static_ti = get_tydesc(bcx.ccx(), t);
|
|
glue::lazily_emit_visit_glue(bcx.ccx(), &*static_ti);
|
|
PointerCast(bcx, static_ti.tydesc, self.tydesc_ty.ptr_to())
|
|
}
|
|
|
|
pub fn c_mt(&mut self, mt: &ty::mt) -> Vec<ValueRef> {
|
|
vec!(self.c_uint(mt.mutbl as uint),
|
|
self.c_tydesc(mt.ty))
|
|
}
|
|
|
|
pub fn visit(&mut self, ty_name: &str, args: &[ValueRef]) {
|
|
let fcx = self.bcx.fcx;
|
|
let tcx = self.bcx.tcx();
|
|
let mth_idx = ty::method_idx(token::str_to_ident("visit_".to_owned() + ty_name),
|
|
self.visitor_methods.as_slice()).expect(
|
|
format!("couldn't find visit method for {}", ty_name));
|
|
let mth_ty =
|
|
ty::mk_bare_fn(tcx,
|
|
self.visitor_methods[mth_idx].fty.clone());
|
|
let v = self.visitor_val;
|
|
debug!("passing {} args:", args.len());
|
|
let mut bcx = self.bcx;
|
|
for (i, a) in args.iter().enumerate() {
|
|
debug!("arg {}: {}", i, bcx.val_to_str(*a));
|
|
}
|
|
let result = unpack_result!(bcx, callee::trans_call_inner(
|
|
self.bcx, None, mth_ty,
|
|
|bcx, _| meth::trans_trait_callee_from_llval(bcx,
|
|
mth_ty,
|
|
mth_idx,
|
|
v),
|
|
ArgVals(args), None));
|
|
let result = bool_to_i1(bcx, result);
|
|
let next_bcx = fcx.new_temp_block("next");
|
|
CondBr(bcx, result, next_bcx.llbb, self.final_bcx.llbb);
|
|
self.bcx = next_bcx
|
|
}
|
|
|
|
pub fn bracketed(&mut self,
|
|
bracket_name: &str,
|
|
extra: &[ValueRef],
|
|
inner: |&mut Reflector|) {
|
|
self.visit("enter_" + bracket_name, extra);
|
|
inner(self);
|
|
self.visit("leave_" + bracket_name, extra);
|
|
}
|
|
|
|
pub fn leaf(&mut self, name: &str) {
|
|
self.visit(name, []);
|
|
}
|
|
|
|
// Entrypoint
|
|
pub fn visit_ty(&mut self, t: ty::t) {
|
|
let bcx = self.bcx;
|
|
let tcx = bcx.tcx();
|
|
debug!("reflect::visit_ty {}", ty_to_str(bcx.tcx(), t));
|
|
|
|
match ty::get(t).sty {
|
|
ty::ty_bot => self.leaf("bot"),
|
|
ty::ty_nil => self.leaf("nil"),
|
|
ty::ty_bool => self.leaf("bool"),
|
|
ty::ty_char => self.leaf("char"),
|
|
ty::ty_int(ast::TyI) => self.leaf("int"),
|
|
ty::ty_int(ast::TyI8) => self.leaf("i8"),
|
|
ty::ty_int(ast::TyI16) => self.leaf("i16"),
|
|
ty::ty_int(ast::TyI32) => self.leaf("i32"),
|
|
ty::ty_int(ast::TyI64) => self.leaf("i64"),
|
|
ty::ty_uint(ast::TyU) => self.leaf("uint"),
|
|
ty::ty_uint(ast::TyU8) => self.leaf("u8"),
|
|
ty::ty_uint(ast::TyU16) => self.leaf("u16"),
|
|
ty::ty_uint(ast::TyU32) => self.leaf("u32"),
|
|
ty::ty_uint(ast::TyU64) => self.leaf("u64"),
|
|
ty::ty_float(ast::TyF32) => self.leaf("f32"),
|
|
ty::ty_float(ast::TyF64) => self.leaf("f64"),
|
|
ty::ty_float(ast::TyF128) => self.leaf("f128"),
|
|
|
|
// Should rename to vec_*.
|
|
ty::ty_vec(ref mt, Some(sz)) => {
|
|
let extra = (vec!(self.c_uint(sz))).append(self.c_size_and_align(t).as_slice());
|
|
let extra = extra.append(self.c_mt(mt).as_slice());
|
|
self.visit("evec_fixed".to_owned(), extra.as_slice())
|
|
}
|
|
ty::ty_vec(..) | ty::ty_str => fail!("unexpected unsized type"),
|
|
// Should remove mt from box and uniq.
|
|
ty::ty_box(typ) => {
|
|
let extra = self.c_mt(&ty::mt {
|
|
ty: typ,
|
|
mutbl: ast::MutImmutable,
|
|
});
|
|
self.visit("box", extra.as_slice())
|
|
}
|
|
ty::ty_uniq(typ) => {
|
|
match ty::get(typ).sty {
|
|
ty::ty_vec(ref mt, None) => {
|
|
let extra = Vec::new();
|
|
let extra = extra.append(self.c_mt(mt).as_slice());
|
|
self.visit("evec_uniq".to_owned(), extra.as_slice())
|
|
}
|
|
ty::ty_str => self.visit("estr_uniq".to_owned(), &[]),
|
|
_ => {
|
|
let extra = self.c_mt(&ty::mt {
|
|
ty: typ,
|
|
mutbl: ast::MutImmutable,
|
|
});
|
|
self.visit("uniq", extra.as_slice())
|
|
}
|
|
}
|
|
}
|
|
ty::ty_ptr(ref mt) => {
|
|
let extra = self.c_mt(mt);
|
|
self.visit("ptr", extra.as_slice())
|
|
}
|
|
ty::ty_rptr(_, ref mt) => {
|
|
match ty::get(mt.ty).sty {
|
|
ty::ty_vec(ref mt, None) => {
|
|
let (name, extra) = ("slice".to_owned(), Vec::new());
|
|
let extra = extra.append(self.c_mt(mt).as_slice());
|
|
self.visit("evec_".to_owned() + name, extra.as_slice())
|
|
}
|
|
ty::ty_str => self.visit("estr_slice".to_owned(), &[]),
|
|
_ => {
|
|
let extra = self.c_mt(mt);
|
|
self.visit("rptr", extra.as_slice())
|
|
}
|
|
}
|
|
}
|
|
|
|
ty::ty_tup(ref tys) => {
|
|
let extra = (vec!(self.c_uint(tys.len())))
|
|
.append(self.c_size_and_align(t).as_slice());
|
|
self.bracketed("tup", extra.as_slice(), |this| {
|
|
for (i, t) in tys.iter().enumerate() {
|
|
let extra = vec!(this.c_uint(i), this.c_tydesc(*t));
|
|
this.visit("tup_field", extra.as_slice());
|
|
}
|
|
})
|
|
}
|
|
|
|
// FIXME (#2594): fetch constants out of intrinsic
|
|
// FIXME (#4809): visitor should break out bare fns from other fns
|
|
ty::ty_closure(ref fty) => {
|
|
let pureval = ast_fn_style_constant(fty.fn_style);
|
|
let sigilval = match fty.store {
|
|
ty::UniqTraitStore => 2u,
|
|
ty::RegionTraitStore(..) => 4u,
|
|
};
|
|
let retval = if ty::type_is_bot(fty.sig.output) {0u} else {1u};
|
|
let extra = vec!(self.c_uint(pureval),
|
|
self.c_uint(sigilval),
|
|
self.c_uint(fty.sig.inputs.len()),
|
|
self.c_uint(retval));
|
|
self.visit("enter_fn", extra.as_slice());
|
|
self.visit_sig(retval, &fty.sig);
|
|
self.visit("leave_fn", extra.as_slice());
|
|
}
|
|
|
|
// FIXME (#2594): fetch constants out of intrinsic:: for the
|
|
// numbers.
|
|
ty::ty_bare_fn(ref fty) => {
|
|
let pureval = ast_fn_style_constant(fty.fn_style);
|
|
let sigilval = 0u;
|
|
let retval = if ty::type_is_bot(fty.sig.output) {0u} else {1u};
|
|
let extra = vec!(self.c_uint(pureval),
|
|
self.c_uint(sigilval),
|
|
self.c_uint(fty.sig.inputs.len()),
|
|
self.c_uint(retval));
|
|
self.visit("enter_fn", extra.as_slice());
|
|
self.visit_sig(retval, &fty.sig);
|
|
self.visit("leave_fn", extra.as_slice());
|
|
}
|
|
|
|
ty::ty_struct(did, ref substs) => {
|
|
let fields = ty::struct_fields(tcx, did, substs);
|
|
let mut named_fields = false;
|
|
if !fields.is_empty() {
|
|
named_fields = fields.get(0).ident.name !=
|
|
special_idents::unnamed_field.name;
|
|
}
|
|
|
|
let extra = (vec!(
|
|
self.c_slice(token::intern_and_get_ident(ty_to_str(tcx,
|
|
t))),
|
|
self.c_bool(named_fields),
|
|
self.c_uint(fields.len())
|
|
)).append(self.c_size_and_align(t).as_slice());
|
|
self.bracketed("class", extra.as_slice(), |this| {
|
|
for (i, field) in fields.iter().enumerate() {
|
|
let extra = (vec!(
|
|
this.c_uint(i),
|
|
this.c_slice(token::get_ident(field.ident)),
|
|
this.c_bool(named_fields)
|
|
)).append(this.c_mt(&field.mt).as_slice());
|
|
this.visit("class_field", extra.as_slice());
|
|
}
|
|
})
|
|
}
|
|
|
|
// FIXME (#2595): visiting all the variants in turn is probably
|
|
// not ideal. It'll work but will get costly on big enums. Maybe
|
|
// let the visitor tell us if it wants to visit only a particular
|
|
// variant?
|
|
ty::ty_enum(did, ref substs) => {
|
|
let ccx = bcx.ccx();
|
|
let repr = adt::represent_type(bcx.ccx(), t);
|
|
let variants = ty::substd_enum_variants(ccx.tcx(), did, substs);
|
|
let llptrty = type_of(ccx, t).ptr_to();
|
|
let opaquety = ty::get_opaque_ty(ccx.tcx()).unwrap();
|
|
let opaqueptrty = ty::mk_ptr(ccx.tcx(), ty::mt { ty: opaquety,
|
|
mutbl: ast::MutImmutable });
|
|
|
|
let make_get_disr = || {
|
|
let sym = mangle_internal_name_by_path_and_seq(
|
|
ast_map::Values([].iter()).chain(None), "get_disr");
|
|
|
|
let llfdecl = decl_internal_rust_fn(ccx, false, [opaqueptrty], ty::mk_u64(), sym);
|
|
let arena = TypedArena::new();
|
|
let fcx = new_fn_ctxt(ccx, llfdecl, -1, false,
|
|
ty::mk_u64(), None, None, &arena);
|
|
init_function(&fcx, false, ty::mk_u64());
|
|
|
|
let arg = unsafe {
|
|
//
|
|
// we know the return type of llfdecl is an int here, so
|
|
// no need for a special check to see if the return type
|
|
// is immediate.
|
|
//
|
|
llvm::LLVMGetParam(llfdecl, fcx.arg_pos(0u) as c_uint)
|
|
};
|
|
let bcx = fcx.entry_bcx.borrow().clone().unwrap();
|
|
let arg = BitCast(bcx, arg, llptrty);
|
|
let ret = adt::trans_get_discr(bcx, &*repr, arg, Some(Type::i64(ccx)));
|
|
Store(bcx, ret, fcx.llretptr.get().unwrap());
|
|
match fcx.llreturn.get() {
|
|
Some(llreturn) => Br(bcx, llreturn),
|
|
None => {}
|
|
};
|
|
finish_fn(&fcx, bcx);
|
|
llfdecl
|
|
};
|
|
|
|
let enum_args = (vec!(self.c_uint(variants.len()), make_get_disr()))
|
|
.append(self.c_size_and_align(t).as_slice());
|
|
self.bracketed("enum", enum_args.as_slice(), |this| {
|
|
for (i, v) in variants.iter().enumerate() {
|
|
let name = token::get_ident(v.name);
|
|
let variant_args = [this.c_uint(i),
|
|
C_u64(ccx, v.disr_val),
|
|
this.c_uint(v.args.len()),
|
|
this.c_slice(name)];
|
|
this.bracketed("enum_variant",
|
|
variant_args,
|
|
|this| {
|
|
for (j, a) in v.args.iter().enumerate() {
|
|
let bcx = this.bcx;
|
|
let null = C_null(llptrty);
|
|
let ptr = adt::trans_field_ptr(bcx, &*repr, null, v.disr_val, j);
|
|
let offset = p2i(ccx, ptr);
|
|
let field_args = [this.c_uint(j),
|
|
offset,
|
|
this.c_tydesc(*a)];
|
|
this.visit("enum_variant_field",
|
|
field_args);
|
|
}
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
ty::ty_trait(..) => {
|
|
let extra = [
|
|
self.c_slice(token::intern_and_get_ident(ty_to_str(tcx, t)))
|
|
];
|
|
self.visit("trait", extra);
|
|
}
|
|
|
|
// Miscellaneous extra types
|
|
ty::ty_infer(_) => self.leaf("infer"),
|
|
ty::ty_err => self.leaf("err"),
|
|
ty::ty_param(ref p) => {
|
|
let extra = vec!(self.c_uint(p.idx));
|
|
self.visit("param", extra.as_slice())
|
|
}
|
|
ty::ty_self(..) => self.leaf("self")
|
|
}
|
|
}
|
|
|
|
pub fn visit_sig(&mut self, retval: uint, sig: &ty::FnSig) {
|
|
for (i, arg) in sig.inputs.iter().enumerate() {
|
|
let modeval = 5u; // "by copy"
|
|
let extra = vec!(self.c_uint(i),
|
|
self.c_uint(modeval),
|
|
self.c_tydesc(*arg));
|
|
self.visit("fn_input", extra.as_slice());
|
|
}
|
|
let extra = vec!(self.c_uint(retval),
|
|
self.c_bool(sig.variadic),
|
|
self.c_tydesc(sig.output));
|
|
self.visit("fn_output", extra.as_slice());
|
|
}
|
|
}
|
|
|
|
// Emit a sequence of calls to visit_ty::visit_foo
|
|
pub fn emit_calls_to_trait_visit_ty<'a>(
|
|
bcx: &'a Block<'a>,
|
|
t: ty::t,
|
|
visitor_val: ValueRef,
|
|
visitor_trait_id: DefId)
|
|
-> &'a Block<'a> {
|
|
let fcx = bcx.fcx;
|
|
let final = fcx.new_temp_block("final");
|
|
let tydesc_ty = ty::get_tydesc_ty(bcx.tcx()).unwrap();
|
|
let tydesc_ty = type_of(bcx.ccx(), tydesc_ty);
|
|
let visitor_methods = ty::trait_methods(bcx.tcx(), visitor_trait_id);
|
|
let mut r = Reflector {
|
|
visitor_val: visitor_val,
|
|
visitor_methods: visitor_methods.as_slice(),
|
|
final_bcx: final,
|
|
tydesc_ty: tydesc_ty,
|
|
bcx: bcx
|
|
};
|
|
r.visit_ty(t);
|
|
Br(r.bcx, final.llbb);
|
|
return final;
|
|
}
|
|
|
|
pub fn ast_fn_style_constant(fn_style: ast::FnStyle) -> uint {
|
|
match fn_style {
|
|
ast::UnsafeFn => 1u,
|
|
ast::NormalFn => 2u,
|
|
}
|
|
}
|