2012-12-03 18:48:01 -06:00
|
|
|
// 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.
|
|
|
|
|
2013-09-11 12:06:16 -05:00
|
|
|
use lib::llvm::{AvailableExternallyLinkage, SetLinkage};
|
2013-02-25 13:11:21 -06:00
|
|
|
use metadata::csearch;
|
2012-12-23 16:41:37 -06:00
|
|
|
use middle::astencode;
|
2013-06-27 18:40:27 -05:00
|
|
|
use middle::trans::base::{push_ctxt, impl_self, no_self};
|
2013-03-26 15:38:07 -05:00
|
|
|
use middle::trans::base::{trans_item, get_item_val, trans_fn};
|
2012-12-13 15:05:22 -06:00
|
|
|
use middle::trans::common::*;
|
2013-02-25 13:11:21 -06:00
|
|
|
use middle::ty;
|
|
|
|
use util::ppaux::ty_to_str;
|
2012-12-13 15:05:22 -06:00
|
|
|
|
2013-06-28 17:32:26 -05:00
|
|
|
use std::vec;
|
2012-08-28 17:54:45 -05:00
|
|
|
use syntax::ast;
|
2013-03-26 15:38:07 -05:00
|
|
|
use syntax::ast_map::path_name;
|
2012-12-13 15:05:22 -06:00
|
|
|
use syntax::ast_util::local_def;
|
2013-09-17 13:24:05 -05:00
|
|
|
use syntax::attr;
|
2012-08-28 17:54:45 -05:00
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn maybe_instantiate_inline(ccx: @mut CrateContext, fn_id: ast::DefId)
|
|
|
|
-> ast::DefId {
|
2013-06-16 23:23:24 -05:00
|
|
|
let _icx = push_ctxt("maybe_instantiate_inline");
|
2013-02-05 21:41:45 -06:00
|
|
|
match ccx.external.find(&fn_id) {
|
2013-03-15 14:24:24 -05:00
|
|
|
Some(&Some(node_id)) => {
|
|
|
|
// Already inline
|
2013-10-21 15:08:31 -05:00
|
|
|
debug!("maybe_instantiate_inline({}): already inline as node id {}",
|
2013-03-15 14:24:24 -05:00
|
|
|
ty::item_path_str(ccx.tcx, fn_id), node_id);
|
|
|
|
return local_def(node_id);
|
|
|
|
}
|
|
|
|
Some(&None) => {
|
|
|
|
return fn_id; // Not inlinable
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
// Not seen yet
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let csearch_result =
|
|
|
|
csearch::maybe_get_item_ast(
|
2012-08-28 17:54:45 -05:00
|
|
|
ccx.tcx, fn_id,
|
|
|
|
|a,b,c,d| {
|
2013-07-02 14:47:32 -05:00
|
|
|
astencode::decode_inlined_item(a, b, ccx.maps, c.clone(), d)
|
2013-03-15 14:24:24 -05:00
|
|
|
});
|
|
|
|
return match csearch_result {
|
|
|
|
csearch::not_found => {
|
2012-08-28 17:54:45 -05:00
|
|
|
ccx.external.insert(fn_id, None);
|
|
|
|
fn_id
|
2013-03-15 14:24:24 -05:00
|
|
|
}
|
|
|
|
csearch::found(ast::ii_item(item)) => {
|
2012-08-28 17:54:45 -05:00
|
|
|
ccx.external.insert(fn_id, Some(item.id));
|
2013-09-11 12:06:16 -05:00
|
|
|
ccx.external_srcs.insert(item.id, fn_id);
|
2012-09-12 16:48:13 -05:00
|
|
|
ccx.stats.n_inlines += 1;
|
2013-07-11 16:34:10 -05:00
|
|
|
trans_item(ccx, item);
|
2013-09-11 12:06:16 -05:00
|
|
|
|
|
|
|
// We're bringing an external global into this crate, but we don't
|
|
|
|
// want to create two copies of the global. If we do this, then if
|
|
|
|
// you take the address of the global in two separate crates you get
|
|
|
|
// two different addresses. This is bad for things like conditions,
|
|
|
|
// but it could possibly have other adverse side effects. We still
|
|
|
|
// want to achieve the optimizations related to this global,
|
|
|
|
// however, so we use the available_externally linkage which llvm
|
|
|
|
// provides
|
|
|
|
match item.node {
|
|
|
|
ast::item_static(*) => {
|
|
|
|
let g = get_item_val(ccx, item.id);
|
2013-09-17 13:24:05 -05:00
|
|
|
// see the comment in get_item_val() as to why this check is
|
|
|
|
// performed here.
|
|
|
|
if !attr::contains_name(item.attrs,
|
|
|
|
"address_insignificant") {
|
|
|
|
SetLinkage(g, AvailableExternallyLinkage);
|
|
|
|
}
|
2013-09-11 12:06:16 -05:00
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
|
2012-08-28 17:54:45 -05:00
|
|
|
local_def(item.id)
|
2013-05-05 14:11:04 -05:00
|
|
|
}
|
|
|
|
csearch::found(ast::ii_foreign(item)) => {
|
|
|
|
ccx.external.insert(fn_id, Some(item.id));
|
2013-09-11 12:06:16 -05:00
|
|
|
ccx.external_srcs.insert(item.id, fn_id);
|
2013-05-05 14:11:04 -05:00
|
|
|
local_def(item.id)
|
|
|
|
}
|
|
|
|
csearch::found_parent(parent_id, ast::ii_item(item)) => {
|
|
|
|
ccx.external.insert(parent_id, Some(item.id));
|
2013-09-11 12:06:16 -05:00
|
|
|
ccx.external_srcs.insert(item.id, parent_id);
|
2013-05-05 14:11:04 -05:00
|
|
|
let mut my_id = 0;
|
|
|
|
match item.node {
|
|
|
|
ast::item_enum(_, _) => {
|
|
|
|
let vs_here = ty::enum_variants(ccx.tcx, local_def(item.id));
|
|
|
|
let vs_there = ty::enum_variants(ccx.tcx, parent_id);
|
2013-08-03 11:45:23 -05:00
|
|
|
for (here, there) in vs_here.iter().zip(vs_there.iter()) {
|
2013-05-05 14:11:04 -05:00
|
|
|
if there.id == fn_id { my_id = here.id.node; }
|
|
|
|
ccx.external.insert(there.id, Some(here.id.node));
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
}
|
2013-09-26 23:53:40 -05:00
|
|
|
ast::item_struct(ref struct_def, _) => {
|
|
|
|
match struct_def.ctor_id {
|
|
|
|
None => {}
|
|
|
|
Some(ctor_id) => {
|
|
|
|
let _ = ccx.external.insert(fn_id, Some(ctor_id));
|
|
|
|
my_id = ctor_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-05-19 00:07:44 -05:00
|
|
|
_ => ccx.sess.bug("maybe_instantiate_inline: item has a \
|
2013-09-26 23:53:40 -05:00
|
|
|
non-enum, non-struct parent")
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
2013-07-11 16:34:10 -05:00
|
|
|
trans_item(ccx, item);
|
2013-05-05 14:11:04 -05:00
|
|
|
local_def(my_id)
|
|
|
|
}
|
|
|
|
csearch::found_parent(_, _) => {
|
2013-05-19 00:07:44 -05:00
|
|
|
ccx.sess.bug("maybe_get_item_ast returned a found_parent \
|
2013-05-05 14:11:04 -05:00
|
|
|
with a non-item parent");
|
|
|
|
}
|
2013-07-11 16:34:10 -05:00
|
|
|
csearch::found(ast::ii_method(impl_did, is_provided, mth)) => {
|
2013-05-05 14:11:04 -05:00
|
|
|
ccx.stats.n_inlines += 1;
|
|
|
|
ccx.external.insert(fn_id, Some(mth.id));
|
2013-09-11 12:06:16 -05:00
|
|
|
ccx.external_srcs.insert(mth.id, fn_id);
|
2013-06-12 16:22:17 -05:00
|
|
|
// If this is a default method, we can't look up the
|
|
|
|
// impl type. But we aren't going to translate anyways, so don't.
|
2013-07-11 16:34:10 -05:00
|
|
|
if is_provided { return local_def(mth.id); }
|
2013-06-12 16:22:17 -05:00
|
|
|
|
|
|
|
let impl_tpt = ty::lookup_item_type(ccx.tcx, impl_did);
|
|
|
|
let num_type_params =
|
|
|
|
impl_tpt.generics.type_param_defs.len() +
|
|
|
|
mth.generics.ty_params.len();
|
|
|
|
|
|
|
|
if num_type_params == 0 {
|
2013-05-05 14:11:04 -05:00
|
|
|
let llfn = get_item_val(ccx, mth.id);
|
|
|
|
let path = vec::append(
|
|
|
|
ty::item_path(ccx.tcx, impl_did),
|
2013-05-19 00:07:44 -05:00
|
|
|
[path_name(mth.ident)]);
|
2013-04-30 10:49:48 -05:00
|
|
|
let self_kind = match mth.explicit_self.node {
|
2013-05-05 14:11:04 -05:00
|
|
|
ast::sty_static => no_self,
|
|
|
|
_ => {
|
|
|
|
let self_ty = ty::node_id_to_type(ccx.tcx,
|
|
|
|
mth.self_id);
|
2013-10-21 15:08:31 -05:00
|
|
|
debug!("calling inline trans_fn with self_ty {}",
|
2013-05-05 14:11:04 -05:00
|
|
|
ty_to_str(ccx.tcx, self_ty));
|
2013-04-30 10:49:48 -05:00
|
|
|
match mth.explicit_self.node {
|
2013-10-20 00:55:23 -05:00
|
|
|
ast::sty_value(_) => impl_self(self_ty, ty::ByRef),
|
2013-06-27 18:40:27 -05:00
|
|
|
_ => impl_self(self_ty, ty::ByCopy),
|
2013-05-05 14:11:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
trans_fn(ccx,
|
|
|
|
path,
|
|
|
|
&mth.decl,
|
|
|
|
&mth.body,
|
|
|
|
llfn,
|
|
|
|
self_kind,
|
|
|
|
None,
|
|
|
|
mth.id,
|
|
|
|
[]);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
2013-05-05 14:11:04 -05:00
|
|
|
local_def(mth.id)
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
2013-03-15 14:24:24 -05:00
|
|
|
};
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|