summary refs log tree commit diff
path: root/src/librustc/middle/trans/inline.rs
blob: bea58929323aaae762399bb4fbf4fd7e2442e54b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
// 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 lib::llvm::{AvailableExternallyLinkage, SetLinkage};
use metadata::csearch;
use middle::astencode;
use middle::trans::base::{push_ctxt, impl_self, no_self};
use middle::trans::base::{trans_item, get_item_val, trans_fn};
use middle::trans::common::*;
use middle::ty;
use util::ppaux::ty_to_str;

use std::vec;
use syntax::ast;
use syntax::ast_map::path_name;
use syntax::ast_util::local_def;
use syntax::attr;

pub fn maybe_instantiate_inline(ccx: @CrateContext, fn_id: ast::DefId)
    -> ast::DefId {
    let _icx = push_ctxt("maybe_instantiate_inline");
    {
        let external = ccx.external.borrow();
        match external.get().find(&fn_id) {
            Some(&Some(node_id)) => {
                // Already inline
                debug!("maybe_instantiate_inline({}): already inline as node id {}",
                       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(
            ccx.tcx, fn_id,
            |a,b,c,d| {
                astencode::decode_inlined_item(a, b, ccx.maps, c.clone(), d)
            });
    return match csearch_result {
        csearch::not_found => {
            let mut external = ccx.external.borrow_mut();
            external.get().insert(fn_id, None);
            fn_id
        }
        csearch::found(ast::ii_item(item)) => {
            {
                let mut external = ccx.external.borrow_mut();
                let mut external_srcs = ccx.external_srcs.borrow_mut();
                external.get().insert(fn_id, Some(item.id));
                external_srcs.get().insert(item.id, fn_id);
            }

            ccx.stats.n_inlines.set(ccx.stats.n_inlines.get() + 1);
            trans_item(ccx, item);

            // 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);
                    // 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);
                    }
                }
                _ => {}
            }

            local_def(item.id)
        }
        csearch::found(ast::ii_foreign(item)) => {
            {
                let mut external = ccx.external.borrow_mut();
                let mut external_srcs = ccx.external_srcs.borrow_mut();
                external.get().insert(fn_id, Some(item.id));
                external_srcs.get().insert(item.id, fn_id);
            }
            local_def(item.id)
        }
        csearch::found_parent(parent_id, ast::ii_item(item)) => {
            {
                let mut external = ccx.external.borrow_mut();
                let mut external_srcs = ccx.external_srcs.borrow_mut();
                external.get().insert(parent_id, Some(item.id));
                external_srcs.get().insert(item.id, parent_id);
            }

          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);
              for (here, there) in vs_here.iter().zip(vs_there.iter()) {
                  if there.id == fn_id { my_id = here.id.node; }
                  let mut external = ccx.external.borrow_mut();
                  external.get().insert(there.id, Some(here.id.node));
              }
            }
            ast::item_struct(ref struct_def, _) => {
              match struct_def.ctor_id {
                None => {}
                Some(ctor_id) => {
                    let mut external = ccx.external.borrow_mut();
                    let _ = external.get().insert(fn_id, Some(ctor_id));
                    my_id = ctor_id;
                }
              }
            }
            _ => ccx.sess.bug("maybe_instantiate_inline: item has a \
                               non-enum, non-struct parent")
          }
          trans_item(ccx, item);
          local_def(my_id)
        }
        csearch::found_parent(_, _) => {
            ccx.sess.bug("maybe_get_item_ast returned a found_parent \
             with a non-item parent");
        }
        csearch::found(ast::ii_method(impl_did, is_provided, mth)) => {
            {
                let mut external = ccx.external.borrow_mut();
                let mut external_srcs = ccx.external_srcs.borrow_mut();
                external.get().insert(fn_id, Some(mth.id));
                external_srcs.get().insert(mth.id, fn_id);
            }

          ccx.stats.n_inlines.set(ccx.stats.n_inlines.get() + 1);

          // 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.
          if is_provided { return local_def(mth.id); }

            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 {
              let llfn = get_item_val(ccx, mth.id);
              let path = vec::append(
                  ty::item_path(ccx.tcx, impl_did),
                  [path_name(mth.ident)]);
              let self_kind = match mth.explicit_self.node {
                  ast::sty_static => no_self,
                  _ => {
                      let self_ty = ty::node_id_to_type(ccx.tcx,
                                                        mth.self_id);
                      debug!("calling inline trans_fn with self_ty {}",
                             ty_to_str(ccx.tcx, self_ty));
                      match mth.explicit_self.node {
                          ast::sty_value(_) => impl_self(self_ty, ty::ByRef),
                          _ => impl_self(self_ty, ty::ByCopy),
                      }
                  }
              };
              trans_fn(ccx,
                       path,
                       mth.decl,
                       mth.body,
                       llfn,
                       self_kind,
                       None,
                       mth.id,
                       []);
          }
          local_def(mth.id)
        }
    };
}