summary refs log tree commit diff
path: root/src/librustc/middle/reachable.rs
blob: 07ec4bc27fb41900173e36eb35592d1e4562b84d (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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
// 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.

// Finds items that are externally reachable, to determine which items
// need to have their metadata (and possibly their AST) serialized.
// All items that can be referred to through an exported name are
// reachable, and when a reachable thing is inline or generic, it
// makes all other generics or inline functions that it references
// reachable as well.

use middle::ty;
use middle::typeck;

use std::hashmap::HashSet;
use syntax::ast::*;
use syntax::ast_map;
use syntax::ast_util::def_id_of_def;
use syntax::attr;
use syntax::parse::token;
use syntax::visit::Visitor;
use syntax::visit;

// Returns true if the given set of attributes contains the `#[inline]`
// attribute.
fn attributes_specify_inlining(attrs: &[Attribute]) -> bool {
    attr::contains_name(attrs, "inline")
}

// Returns true if the given set of generics implies that the item it's
// associated with must be inlined.
fn generics_require_inlining(generics: &Generics) -> bool {
    !generics.ty_params.is_empty()
}

// Returns true if the given item must be inlined because it may be
// monomorphized or it was marked with `#[inline]`. This will only return
// true for functions.
fn item_might_be_inlined(item: @item) -> bool {
    if attributes_specify_inlining(item.attrs) {
        return true
    }

    match item.node {
        item_fn(_, _, _, ref generics, _) => {
            generics_require_inlining(generics)
        }
        _ => false,
    }
}

// Returns true if the given type method must be inlined because it may be
// monomorphized or it was marked with `#[inline]`.
fn ty_method_might_be_inlined(ty_method: &TypeMethod) -> bool {
    attributes_specify_inlining(ty_method.attrs) ||
        generics_require_inlining(&ty_method.generics)
}

// Returns true if the given trait method must be inlined because it may be
// monomorphized or it was marked with `#[inline]`.
fn trait_method_might_be_inlined(trait_method: &trait_method) -> bool {
    match *trait_method {
        required(ref ty_method) => ty_method_might_be_inlined(ty_method),
        provided(_) => true
    }
}

// The context we're in. If we're in a public context, then public symbols are
// marked reachable. If we're in a private context, then only trait
// implementations are marked reachable.
#[deriving(Clone, Eq)]
enum PrivacyContext {
    PublicContext,
    PrivateContext,
}

// Information needed while computing reachability.
struct ReachableContext {
    // The type context.
    tcx: ty::ctxt,
    // The method map, which links node IDs of method call expressions to the
    // methods they've been resolved to.
    method_map: typeck::method_map,
    // The set of items which must be exported in the linkage sense.
    reachable_symbols: @mut HashSet<NodeId>,
    // A worklist of item IDs. Each item ID in this worklist will be inlined
    // and will be scanned for further references.
    worklist: @mut ~[NodeId],
}

struct ReachableVisitor {
    reachable_symbols: @mut HashSet<NodeId>,
    worklist: @mut ~[NodeId],
}

impl Visitor<PrivacyContext> for ReachableVisitor {

    fn visit_item(&mut self, item:@item, privacy_context:PrivacyContext) {

                match item.node {
                    item_fn(*) => {
                        if privacy_context == PublicContext {
                            self.reachable_symbols.insert(item.id);
                        }
                        if item_might_be_inlined(item) {
                            self.worklist.push(item.id)
                        }
                    }
                    item_struct(ref struct_def, _) => {
                        match struct_def.ctor_id {
                            Some(ctor_id) if
                                    privacy_context == PublicContext => {
                                self.reachable_symbols.insert(ctor_id);
                            }
                            Some(_) | None => {}
                        }
                    }
                    item_enum(ref enum_def, _) => {
                        if privacy_context == PublicContext {
                            for variant in enum_def.variants.iter() {
                                self.reachable_symbols.insert(variant.node.id);
                            }
                        }
                    }
                    item_impl(ref generics, ref trait_ref, _, ref methods) => {
                        // XXX(pcwalton): We conservatively assume any methods
                        // on a trait implementation are reachable, when this
                        // is not the case. We could be more precise by only
                        // treating implementations of reachable or cross-
                        // crate traits as reachable.

                        let should_be_considered_public = |method: @method| {
                            (method.vis == public &&
                                    privacy_context == PublicContext) ||
                                    trait_ref.is_some()
                        };

                        // Mark all public methods as reachable.
                        for &method in methods.iter() {
                            if should_be_considered_public(method) {
                                self.reachable_symbols.insert(method.id);
                            }
                        }

                        if generics_require_inlining(generics) {
                            // If the impl itself has generics, add all public
                            // symbols to the worklist.
                            for &method in methods.iter() {
                                if should_be_considered_public(method) {
                                    self.worklist.push(method.id)
                                }
                            }
                        } else {
                            // Otherwise, add only public methods that have
                            // generics to the worklist.
                            for method in methods.iter() {
                                let generics = &method.generics;
                                let attrs = &method.attrs;
                                if generics_require_inlining(generics) ||
                                        attributes_specify_inlining(*attrs) ||
                                        should_be_considered_public(*method) {
                                    self.worklist.push(method.id)
                                }
                            }
                        }
                    }
                    item_trait(_, _, ref trait_methods) => {
                        // Mark all provided methods as reachable.
                        if privacy_context == PublicContext {
                            for trait_method in trait_methods.iter() {
                                match *trait_method {
                                    provided(method) => {
                                        self.reachable_symbols.insert(method.id);
                                        self.worklist.push(method.id)
                                    }
                                    required(_) => {}
                                }
                            }
                        }
                    }
                    _ => {}
                }

                if item.vis == public && privacy_context == PublicContext {
                    visit::walk_item(self, item, PublicContext)
                } else {
                    visit::walk_item(self, item, PrivateContext)
                }
    }

}

struct MarkSymbolVisitor {
    worklist: @mut ~[NodeId],
    method_map: typeck::method_map,
    tcx: ty::ctxt,
    reachable_symbols: @mut HashSet<NodeId>,
}

impl Visitor<()> for MarkSymbolVisitor {

    fn visit_expr(&mut self, expr:@Expr, _:()) {

                match expr.node {
                    ExprPath(_) => {
                        let def = match self.tcx.def_map.find(&expr.id) {
                            Some(&def) => def,
                            None => {
                                self.tcx.sess.span_bug(expr.span,
                                                  "def ID not in def map?!")
                            }
                        };

                        let def_id = def_id_of_def(def);
                        if ReachableContext::
                                def_id_represents_local_inlined_item(self.tcx,
                                                                     def_id) {
                            self.worklist.push(def_id.node)
                        }
                        self.reachable_symbols.insert(def_id.node);
                    }
                    ExprMethodCall(*) => {
                        match self.method_map.find(&expr.id) {
                            Some(&typeck::method_map_entry {
                                origin: typeck::method_static(def_id),
                                _
                            }) => {
                                if ReachableContext::
                                    def_id_represents_local_inlined_item(
                                        self.tcx,
                                        def_id) {
                                    self.worklist.push(def_id.node)
                                }
                                self.reachable_symbols.insert(def_id.node);
                            }
                            Some(_) => {}
                            None => {
                                self.tcx.sess.span_bug(expr.span,
                                                  "method call expression \
                                                   not in method map?!")
                            }
                        }
                    }
                    _ => {}
                }

                visit::walk_expr(self, expr, ())
    }
}

impl ReachableContext {
    // Creates a new reachability computation context.
    fn new(tcx: ty::ctxt, method_map: typeck::method_map)
           -> ReachableContext {
        ReachableContext {
            tcx: tcx,
            method_map: method_map,
            reachable_symbols: @mut HashSet::new(),
            worklist: @mut ~[],
        }
    }

    // Step 1: Mark all public symbols, and add all public symbols that might
    // be inlined to a worklist.
    fn mark_public_symbols(&self, crate: @Crate) {
        let reachable_symbols = self.reachable_symbols;
        let worklist = self.worklist;

        let mut visitor = ReachableVisitor {
            reachable_symbols: reachable_symbols,
            worklist: worklist,
        };


        visit::walk_crate(&mut visitor, crate, PublicContext);
    }

    // Returns true if the given def ID represents a local item that is
    // eligible for inlining and false otherwise.
    fn def_id_represents_local_inlined_item(tcx: ty::ctxt, def_id: DefId)
                                            -> bool {
        if def_id.crate != LOCAL_CRATE {
            return false
        }

        let node_id = def_id.node;
        match tcx.items.find(&node_id) {
            Some(&ast_map::node_item(item, _)) => {
                match item.node {
                    item_fn(*) => item_might_be_inlined(item),
                    _ => false,
                }
            }
            Some(&ast_map::node_trait_method(trait_method, _, _)) => {
                match *trait_method {
                    required(_) => false,
                    provided(_) => true,
                }
            }
            Some(&ast_map::node_method(method, impl_did, _)) => {
                if generics_require_inlining(&method.generics) ||
                        attributes_specify_inlining(method.attrs) {
                    true
                } else {
                    // Check the impl. If the generics on the self type of the
                    // impl require inlining, this method does too.
                    assert!(impl_did.crate == LOCAL_CRATE);
                    match tcx.items.find(&impl_did.node) {
                        Some(&ast_map::node_item(item, _)) => {
                            match item.node {
                                item_impl(ref generics, _, _, _) => {
                                    generics_require_inlining(generics)
                                }
                                _ => false
                            }
                        }
                        Some(_) => {
                            tcx.sess.span_bug(method.span,
                                              "method is not inside an \
                                               impl?!")
                        }
                        None => {
                            tcx.sess.span_bug(method.span,
                                              "the impl that this method is \
                                               supposedly inside of doesn't \
                                               exist in the AST map?!")
                        }
                    }
                }
            }
            Some(_) => false,
            None => false   // This will happen for default methods.
        }
    }

    // Helper function to set up a visitor for `propagate()` below.
    fn init_visitor(&self) -> MarkSymbolVisitor {
        let (worklist, method_map) = (self.worklist, self.method_map);
        let (tcx, reachable_symbols) = (self.tcx, self.reachable_symbols);

        MarkSymbolVisitor {
            worklist: worklist,
            method_map: method_map,
            tcx: tcx,
            reachable_symbols: reachable_symbols,
        }
    }

    // Step 2: Mark all symbols that the symbols on the worklist touch.
    fn propagate(&self) {
        let mut visitor = self.init_visitor();
        let mut scanned = HashSet::new();
        while self.worklist.len() > 0 {
            let search_item = self.worklist.pop();
            if scanned.contains(&search_item) {
                loop
            }
            scanned.insert(search_item);
            self.reachable_symbols.insert(search_item);

            // Find the AST block corresponding to the item and visit it,
            // marking all path expressions that resolve to something
            // interesting.
            match self.tcx.items.find(&search_item) {
                Some(&ast_map::node_item(item, _)) => {
                    match item.node {
                        item_fn(_, _, _, _, ref search_block) => {
                            visit::walk_block(&mut visitor, search_block, ())
                        }
                        _ => {
                            self.tcx.sess.span_bug(item.span,
                                                   "found non-function item \
                                                    in worklist?!")
                        }
                    }
                }
                Some(&ast_map::node_trait_method(trait_method, _, _)) => {
                    match *trait_method {
                        required(ref ty_method) => {
                            self.tcx.sess.span_bug(ty_method.span,
                                                   "found required method in \
                                                    worklist?!")
                        }
                        provided(ref method) => {
                            visit::walk_block(&mut visitor, &method.body, ())
                        }
                    }
                }
                Some(&ast_map::node_method(ref method, _, _)) => {
                    visit::walk_block(&mut visitor, &method.body, ())
                }
                Some(_) => {
                    let ident_interner = token::get_ident_interner();
                    let desc = ast_map::node_id_to_str(self.tcx.items,
                                                       search_item,
                                                       ident_interner);
                    self.tcx.sess.bug(fmt!("found unexpected thingy in \
                                            worklist: %s",
                                            desc))
                }
                None => {
                    self.tcx.sess.bug(fmt!("found unmapped ID in worklist: \
                                            %d",
                                           search_item))
                }
            }
        }
    }

    // Step 3: Mark all destructors as reachable.
    //
    // XXX(pcwalton): This is a conservative overapproximation, but fixing
    // this properly would result in the necessity of computing *type*
    // reachability, which might result in a compile time loss.
    fn mark_destructors_reachable(&self) {
        for (_, destructor_def_id) in self.tcx.destructor_for_type.iter() {
            if destructor_def_id.crate == LOCAL_CRATE {
                self.reachable_symbols.insert(destructor_def_id.node);
            }
        }
    }
}

pub fn find_reachable(tcx: ty::ctxt,
                      method_map: typeck::method_map,
                      crate: @Crate)
                      -> @mut HashSet<NodeId> {
    // XXX(pcwalton): We only need to mark symbols that are exported. But this
    // is more complicated than just looking at whether the symbol is `pub`,
    // because it might be the target of a `pub use` somewhere. For now, I
    // think we are fine, because you can't `pub use` something that wasn't
    // exported due to the bug whereby `use` only looks through public
    // modules even if you're inside the module the `use` appears in. When
    // this bug is fixed, however, this code will need to be updated. Probably
    // the easiest way to fix this (although a conservative overapproximation)
    // is to have the name resolution pass mark all targets of a `pub use` as
    // "must be reachable".

    let reachable_context = ReachableContext::new(tcx, method_map);

    // Step 1: Mark all public symbols, and add all public symbols that might
    // be inlined to a worklist.
    reachable_context.mark_public_symbols(crate);

    // Step 2: Mark all symbols that the symbols on the worklist touch.
    reachable_context.propagate();

    // Step 3: Mark all destructors as reachable.
    reachable_context.mark_destructors_reachable();

    // Return the set of reachable symbols.
    reachable_context.reachable_symbols
}