]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/monomorphize/collector.rs
f6b47efca31cd7decc2cdde09e17608996158eaf
[rust.git] / src / librustc_mir / monomorphize / collector.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Mono Item Collection
12 //! ===========================
13 //!
14 //! This module is responsible for discovering all items that will contribute to
15 //! to code generation of the crate. The important part here is that it not only
16 //! needs to find syntax-level items (functions, structs, etc) but also all
17 //! their monomorphized instantiations. Every non-generic, non-const function
18 //! maps to one LLVM artifact. Every generic function can produce
19 //! from zero to N artifacts, depending on the sets of type arguments it
20 //! is instantiated with.
21 //! This also applies to generic items from other crates: A generic definition
22 //! in crate X might produce monomorphizations that are compiled into crate Y.
23 //! We also have to collect these here.
24 //!
25 //! The following kinds of "mono items" are handled here:
26 //!
27 //! - Functions
28 //! - Methods
29 //! - Closures
30 //! - Statics
31 //! - Drop glue
32 //!
33 //! The following things also result in LLVM artifacts, but are not collected
34 //! here, since we instantiate them locally on demand when needed in a given
35 //! codegen unit:
36 //!
37 //! - Constants
38 //! - Vtables
39 //! - Object Shims
40 //!
41 //!
42 //! General Algorithm
43 //! -----------------
44 //! Let's define some terms first:
45 //!
46 //! - A "mono item" is something that results in a function or global in
47 //!   the LLVM IR of a codegen unit. Mono items do not stand on their
48 //!   own, they can reference other mono items. For example, if function
49 //!   `foo()` calls function `bar()` then the mono item for `foo()`
50 //!   references the mono item for function `bar()`. In general, the
51 //!   definition for mono item A referencing a mono item B is that
52 //!   the LLVM artifact produced for A references the LLVM artifact produced
53 //!   for B.
54 //!
55 //! - Mono items and the references between them form a directed graph,
56 //!   where the mono items are the nodes and references form the edges.
57 //!   Let's call this graph the "mono item graph".
58 //!
59 //! - The mono item graph for a program contains all mono items
60 //!   that are needed in order to produce the complete LLVM IR of the program.
61 //!
62 //! The purpose of the algorithm implemented in this module is to build the
63 //! mono item graph for the current crate. It runs in two phases:
64 //!
65 //! 1. Discover the roots of the graph by traversing the HIR of the crate.
66 //! 2. Starting from the roots, find neighboring nodes by inspecting the MIR
67 //!    representation of the item corresponding to a given node, until no more
68 //!    new nodes are found.
69 //!
70 //! ### Discovering roots
71 //!
72 //! The roots of the mono item graph correspond to the non-generic
73 //! syntactic items in the source code. We find them by walking the HIR of the
74 //! crate, and whenever we hit upon a function, method, or static item, we
75 //! create a mono item consisting of the items DefId and, since we only
76 //! consider non-generic items, an empty type-substitution set.
77 //!
78 //! ### Finding neighbor nodes
79 //! Given a mono item node, we can discover neighbors by inspecting its
80 //! MIR. We walk the MIR and any time we hit upon something that signifies a
81 //! reference to another mono item, we have found a neighbor. Since the
82 //! mono item we are currently at is always monomorphic, we also know the
83 //! concrete type arguments of its neighbors, and so all neighbors again will be
84 //! monomorphic. The specific forms a reference to a neighboring node can take
85 //! in MIR are quite diverse. Here is an overview:
86 //!
87 //! #### Calling Functions/Methods
88 //! The most obvious form of one mono item referencing another is a
89 //! function or method call (represented by a CALL terminator in MIR). But
90 //! calls are not the only thing that might introduce a reference between two
91 //! function mono items, and as we will see below, they are just a
92 //! specialized of the form described next, and consequently will don't get any
93 //! special treatment in the algorithm.
94 //!
95 //! #### Taking a reference to a function or method
96 //! A function does not need to actually be called in order to be a neighbor of
97 //! another function. It suffices to just take a reference in order to introduce
98 //! an edge. Consider the following example:
99 //!
100 //! ```rust
101 //! fn print_val<T: Display>(x: T) {
102 //!     println!("{}", x);
103 //! }
104 //!
105 //! fn call_fn(f: &Fn(i32), x: i32) {
106 //!     f(x);
107 //! }
108 //!
109 //! fn main() {
110 //!     let print_i32 = print_val::<i32>;
111 //!     call_fn(&print_i32, 0);
112 //! }
113 //! ```
114 //! The MIR of none of these functions will contain an explicit call to
115 //! `print_val::<i32>`. Nonetheless, in order to mono this program, we need
116 //! an instance of this function. Thus, whenever we encounter a function or
117 //! method in operand position, we treat it as a neighbor of the current
118 //! mono item. Calls are just a special case of that.
119 //!
120 //! #### Closures
121 //! In a way, closures are a simple case. Since every closure object needs to be
122 //! constructed somewhere, we can reliably discover them by observing
123 //! `RValue::Aggregate` expressions with `AggregateKind::Closure`. This is also
124 //! true for closures inlined from other crates.
125 //!
126 //! #### Drop glue
127 //! Drop glue mono items are introduced by MIR drop-statements. The
128 //! generated mono item will again have drop-glue item neighbors if the
129 //! type to be dropped contains nested values that also need to be dropped. It
130 //! might also have a function item neighbor for the explicit `Drop::drop`
131 //! implementation of its type.
132 //!
133 //! #### Unsizing Casts
134 //! A subtle way of introducing neighbor edges is by casting to a trait object.
135 //! Since the resulting fat-pointer contains a reference to a vtable, we need to
136 //! instantiate all object-save methods of the trait, as we need to store
137 //! pointers to these functions even if they never get called anywhere. This can
138 //! be seen as a special case of taking a function reference.
139 //!
140 //! #### Boxes
141 //! Since `Box` expression have special compiler support, no explicit calls to
142 //! `exchange_malloc()` and `exchange_free()` may show up in MIR, even if the
143 //! compiler will generate them. We have to observe `Rvalue::Box` expressions
144 //! and Box-typed drop-statements for that purpose.
145 //!
146 //!
147 //! Interaction with Cross-Crate Inlining
148 //! -------------------------------------
149 //! The binary of a crate will not only contain machine code for the items
150 //! defined in the source code of that crate. It will also contain monomorphic
151 //! instantiations of any extern generic functions and of functions marked with
152 //! `#[inline]`.
153 //! The collection algorithm handles this more or less mono. If it is
154 //! about to create a mono item for something with an external `DefId`,
155 //! it will take a look if the MIR for that item is available, and if so just
156 //! proceed normally. If the MIR is not available, it assumes that the item is
157 //! just linked to and no node is created; which is exactly what we want, since
158 //! no machine code should be generated in the current crate for such an item.
159 //!
160 //! Eager and Lazy Collection Mode
161 //! ------------------------------
162 //! Mono item collection can be performed in one of two modes:
163 //!
164 //! - Lazy mode means that items will only be instantiated when actually
165 //!   referenced. The goal is to produce the least amount of machine code
166 //!   possible.
167 //!
168 //! - Eager mode is meant to be used in conjunction with incremental compilation
169 //!   where a stable set of mono items is more important than a minimal
170 //!   one. Thus, eager mode will instantiate drop-glue for every drop-able type
171 //!   in the crate, even of no drop call for that type exists (yet). It will
172 //!   also instantiate default implementations of trait methods, something that
173 //!   otherwise is only done on demand.
174 //!
175 //!
176 //! Open Issues
177 //! -----------
178 //! Some things are not yet fully implemented in the current version of this
179 //! module.
180 //!
181 //! ### Initializers of Constants and Statics
182 //! Since no MIR is constructed yet for initializer expressions of constants and
183 //! statics we cannot inspect these properly.
184 //!
185 //! ### Const Fns
186 //! Ideally, no mono item should be generated for const fns unless there
187 //! is a call to them that cannot be evaluated at compile time. At the moment
188 //! this is not implemented however: a mono item will be produced
189 //! regardless of whether it is actually needed or not.
190
191 use rustc::hir::{self, TransFnAttrFlags};
192 use rustc::hir::itemlikevisit::ItemLikeVisitor;
193
194 use rustc::hir::map as hir_map;
195 use rustc::hir::def_id::DefId;
196 use rustc::middle::const_val::ConstVal;
197 use rustc::mir::interpret::{Value, PrimVal, AllocId, Pointer};
198 use rustc::middle::lang_items::{ExchangeMallocFnLangItem, StartFnLangItem};
199 use rustc::traits;
200 use rustc::ty::subst::{Substs, Kind};
201 use rustc::ty::{self, TypeFoldable, Ty, TyCtxt};
202 use rustc::ty::adjustment::CustomCoerceUnsized;
203 use rustc::session::config;
204 use rustc::mir::{self, Location, Promoted};
205 use rustc::mir::visit::Visitor as MirVisitor;
206 use rustc::mir::mono::MonoItem;
207 use rustc::mir::interpret::GlobalId;
208
209 use monomorphize::{self, Instance};
210 use rustc::util::nodemap::{FxHashSet, FxHashMap, DefIdMap};
211
212 use monomorphize::item::{MonoItemExt, DefPathBasedNames, InstantiationMode};
213
214 use rustc_data_structures::bitvec::BitVector;
215
216 use std::iter;
217
218 #[derive(PartialEq, Eq, Hash, Clone, Copy, Debug)]
219 pub enum MonoItemCollectionMode {
220     Eager,
221     Lazy
222 }
223
224 /// Maps every mono item to all mono items it references in its
225 /// body.
226 pub struct InliningMap<'tcx> {
227     // Maps a source mono item to the range of mono items
228     // accessed by it.
229     // The two numbers in the tuple are the start (inclusive) and
230     // end index (exclusive) within the `targets` vecs.
231     index: FxHashMap<MonoItem<'tcx>, (usize, usize)>,
232     targets: Vec<MonoItem<'tcx>>,
233
234     // Contains one bit per mono item in the `targets` field. That bit
235     // is true if that mono item needs to be inlined into every CGU.
236     inlines: BitVector,
237 }
238
239 impl<'tcx> InliningMap<'tcx> {
240
241     fn new() -> InliningMap<'tcx> {
242         InliningMap {
243             index: FxHashMap(),
244             targets: Vec::new(),
245             inlines: BitVector::new(1024),
246         }
247     }
248
249     fn record_accesses<I>(&mut self,
250                           source: MonoItem<'tcx>,
251                           new_targets: I)
252         where I: Iterator<Item=(MonoItem<'tcx>, bool)> + ExactSizeIterator
253     {
254         assert!(!self.index.contains_key(&source));
255
256         let start_index = self.targets.len();
257         let new_items_count = new_targets.len();
258         let new_items_count_total = new_items_count + self.targets.len();
259
260         self.targets.reserve(new_items_count);
261         self.inlines.grow(new_items_count_total);
262
263         for (i, (target, inline)) in new_targets.enumerate() {
264             self.targets.push(target);
265             if inline {
266                 self.inlines.insert(i + start_index);
267             }
268         }
269
270         let end_index = self.targets.len();
271         self.index.insert(source, (start_index, end_index));
272     }
273
274     // Internally iterate over all items referenced by `source` which will be
275     // made available for inlining.
276     pub fn with_inlining_candidates<F>(&self, source: MonoItem<'tcx>, mut f: F)
277         where F: FnMut(MonoItem<'tcx>)
278     {
279         if let Some(&(start_index, end_index)) = self.index.get(&source) {
280             for (i, candidate) in self.targets[start_index .. end_index]
281                                       .iter()
282                                       .enumerate() {
283                 if self.inlines.contains(start_index + i) {
284                     f(*candidate);
285                 }
286             }
287         }
288     }
289
290     // Internally iterate over all items and the things each accesses.
291     pub fn iter_accesses<F>(&self, mut f: F)
292         where F: FnMut(MonoItem<'tcx>, &[MonoItem<'tcx>])
293     {
294         for (&accessor, &(start_index, end_index)) in &self.index {
295             f(accessor, &self.targets[start_index .. end_index])
296         }
297     }
298 }
299
300 pub fn collect_crate_mono_items<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
301                                           mode: MonoItemCollectionMode)
302                                           -> (FxHashSet<MonoItem<'tcx>>,
303                                                      InliningMap<'tcx>) {
304     let roots = collect_roots(tcx, mode);
305
306     debug!("Building mono item graph, beginning at roots");
307     let mut visited = FxHashSet();
308     let mut recursion_depths = DefIdMap();
309     let mut inlining_map = InliningMap::new();
310
311     for root in roots {
312         collect_items_rec(tcx,
313                           root,
314                           &mut visited,
315                           &mut recursion_depths,
316                           &mut inlining_map);
317     }
318
319     (visited, inlining_map)
320 }
321
322 // Find all non-generic items by walking the HIR. These items serve as roots to
323 // start monomorphizing from.
324 fn collect_roots<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
325                            mode: MonoItemCollectionMode)
326                            -> Vec<MonoItem<'tcx>> {
327     debug!("Collecting roots");
328     let mut roots = Vec::new();
329
330     {
331         let entry_fn = tcx.sess.entry_fn.borrow().map(|(node_id, _)| {
332             tcx.hir.local_def_id(node_id)
333         });
334
335         debug!("collect_roots: entry_fn = {:?}", entry_fn);
336
337         let mut visitor = RootCollector {
338             tcx,
339             mode,
340             entry_fn,
341             output: &mut roots,
342         };
343
344         tcx.hir.krate().visit_all_item_likes(&mut visitor);
345     }
346
347     // We can only translate items that are instantiable - items all of
348     // whose predicates hold. Luckily, items that aren't instantiable
349     // can't actually be used, so we can just skip translating them.
350     roots.retain(|root| root.is_instantiable(tcx));
351
352     roots
353 }
354
355 // Collect all monomorphized items reachable from `starting_point`
356 fn collect_items_rec<'a, 'tcx: 'a>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
357                                    starting_point: MonoItem<'tcx>,
358                                    visited: &mut FxHashSet<MonoItem<'tcx>>,
359                                    recursion_depths: &mut DefIdMap<usize>,
360                                    inlining_map: &mut InliningMap<'tcx>) {
361     if !visited.insert(starting_point.clone()) {
362         // We've been here already, no need to search again.
363         return;
364     }
365     debug!("BEGIN collect_items_rec({})", starting_point.to_string(tcx));
366
367     let mut neighbors = Vec::new();
368     let recursion_depth_reset;
369
370     match starting_point {
371         MonoItem::Static(def_id) => {
372             let instance = Instance::mono(tcx, def_id);
373
374             // Sanity check whether this ended up being collected accidentally
375             debug_assert!(should_monomorphize_locally(tcx, &instance));
376
377             let ty = instance.ty(tcx);
378             visit_drop_use(tcx, ty, true, &mut neighbors);
379
380             recursion_depth_reset = None;
381
382             let cid = GlobalId {
383                 instance,
384                 promoted: None,
385             };
386             let param_env = ty::ParamEnv::empty(traits::Reveal::All);
387
388             match tcx.const_eval(param_env.and(cid)) {
389                 Ok(val) => collect_const(tcx, val, instance.substs, &mut neighbors),
390                 Err(err) => {
391                     let span = tcx.def_span(def_id);
392                     err.report(tcx, span, "static");
393                 }
394             }
395         }
396         MonoItem::Fn(instance) => {
397             // Sanity check whether this ended up being collected accidentally
398             debug_assert!(should_monomorphize_locally(tcx, &instance));
399
400             // Keep track of the monomorphization recursion depth
401             recursion_depth_reset = Some(check_recursion_limit(tcx,
402                                                                instance,
403                                                                recursion_depths));
404             check_type_length_limit(tcx, instance);
405
406             collect_neighbours(tcx, instance, &mut neighbors);
407         }
408         MonoItem::GlobalAsm(..) => {
409             recursion_depth_reset = None;
410         }
411     }
412
413     record_accesses(tcx, starting_point, &neighbors[..], inlining_map);
414
415     for neighbour in neighbors {
416         collect_items_rec(tcx, neighbour, visited, recursion_depths, inlining_map);
417     }
418
419     if let Some((def_id, depth)) = recursion_depth_reset {
420         recursion_depths.insert(def_id, depth);
421     }
422
423     debug!("END collect_items_rec({})", starting_point.to_string(tcx));
424 }
425
426 fn record_accesses<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
427                              caller: MonoItem<'tcx>,
428                              callees: &[MonoItem<'tcx>],
429                              inlining_map: &mut InliningMap<'tcx>) {
430     let is_inlining_candidate = |mono_item: &MonoItem<'tcx>| {
431         mono_item.instantiation_mode(tcx) == InstantiationMode::LocalCopy
432     };
433
434     let accesses = callees.into_iter()
435                           .map(|mono_item| {
436                              (*mono_item, is_inlining_candidate(mono_item))
437                           });
438
439     inlining_map.record_accesses(caller, accesses);
440 }
441
442 fn check_recursion_limit<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
443                                    instance: Instance<'tcx>,
444                                    recursion_depths: &mut DefIdMap<usize>)
445                                    -> (DefId, usize) {
446     let def_id = instance.def_id();
447     let recursion_depth = recursion_depths.get(&def_id).cloned().unwrap_or(0);
448     debug!(" => recursion depth={}", recursion_depth);
449
450     let recursion_depth = if Some(def_id) == tcx.lang_items().drop_in_place_fn() {
451         // HACK: drop_in_place creates tight monomorphization loops. Give
452         // it more margin.
453         recursion_depth / 4
454     } else {
455         recursion_depth
456     };
457
458     // Code that needs to instantiate the same function recursively
459     // more than the recursion limit is assumed to be causing an
460     // infinite expansion.
461     if recursion_depth > tcx.sess.recursion_limit.get() {
462         let error = format!("reached the recursion limit while instantiating `{}`",
463                             instance);
464         if let Some(node_id) = tcx.hir.as_local_node_id(def_id) {
465             tcx.sess.span_fatal(tcx.hir.span(node_id), &error);
466         } else {
467             tcx.sess.fatal(&error);
468         }
469     }
470
471     recursion_depths.insert(def_id, recursion_depth + 1);
472
473     (def_id, recursion_depth)
474 }
475
476 fn check_type_length_limit<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
477                                      instance: Instance<'tcx>)
478 {
479     let type_length = instance.substs.types().flat_map(|ty| ty.walk()).count();
480     debug!(" => type length={}", type_length);
481
482     // Rust code can easily create exponentially-long types using only a
483     // polynomial recursion depth. Even with the default recursion
484     // depth, you can easily get cases that take >2^60 steps to run,
485     // which means that rustc basically hangs.
486     //
487     // Bail out in these cases to avoid that bad user experience.
488     let type_length_limit = tcx.sess.type_length_limit.get();
489     if type_length > type_length_limit {
490         // The instance name is already known to be too long for rustc. Use
491         // `{:.64}` to avoid blasting the user's terminal with thousands of
492         // lines of type-name.
493         let instance_name = instance.to_string();
494         let msg = format!("reached the type-length limit while instantiating `{:.64}...`",
495                           instance_name);
496         let mut diag = if let Some(node_id) = tcx.hir.as_local_node_id(instance.def_id()) {
497             tcx.sess.struct_span_fatal(tcx.hir.span(node_id), &msg)
498         } else {
499             tcx.sess.struct_fatal(&msg)
500         };
501
502         diag.note(&format!(
503             "consider adding a `#![type_length_limit=\"{}\"]` attribute to your crate",
504             type_length_limit*2));
505         diag.emit();
506         tcx.sess.abort_if_errors();
507     }
508 }
509
510 struct MirNeighborCollector<'a, 'tcx: 'a> {
511     tcx: TyCtxt<'a, 'tcx, 'tcx>,
512     mir: &'a mir::Mir<'tcx>,
513     output: &'a mut Vec<MonoItem<'tcx>>,
514     param_substs: &'tcx Substs<'tcx>,
515 }
516
517 impl<'a, 'tcx> MirVisitor<'tcx> for MirNeighborCollector<'a, 'tcx> {
518
519     fn visit_rvalue(&mut self, rvalue: &mir::Rvalue<'tcx>, location: Location) {
520         debug!("visiting rvalue {:?}", *rvalue);
521
522         match *rvalue {
523             // When doing an cast from a regular pointer to a fat pointer, we
524             // have to instantiate all methods of the trait being cast to, so we
525             // can build the appropriate vtable.
526             mir::Rvalue::Cast(mir::CastKind::Unsize, ref operand, target_ty) => {
527                 let target_ty = self.tcx.trans_apply_param_substs(self.param_substs,
528                                                                   &target_ty);
529                 let source_ty = operand.ty(self.mir, self.tcx);
530                 let source_ty = self.tcx.trans_apply_param_substs(self.param_substs,
531                                                                   &source_ty);
532                 let (source_ty, target_ty) = find_vtable_types_for_unsizing(self.tcx,
533                                                                             source_ty,
534                                                                             target_ty);
535                 // This could also be a different Unsize instruction, like
536                 // from a fixed sized array to a slice. But we are only
537                 // interested in things that produce a vtable.
538                 if target_ty.is_trait() && !source_ty.is_trait() {
539                     create_mono_items_for_vtable_methods(self.tcx,
540                                                          target_ty,
541                                                          source_ty,
542                                                          self.output);
543                 }
544             }
545             mir::Rvalue::Cast(mir::CastKind::ReifyFnPointer, ref operand, _) => {
546                 let fn_ty = operand.ty(self.mir, self.tcx);
547                 let fn_ty = self.tcx.trans_apply_param_substs(self.param_substs,
548                                                               &fn_ty);
549                 visit_fn_use(self.tcx, fn_ty, false, &mut self.output);
550             }
551             mir::Rvalue::Cast(mir::CastKind::ClosureFnPointer, ref operand, _) => {
552                 let source_ty = operand.ty(self.mir, self.tcx);
553                 let source_ty = self.tcx.trans_apply_param_substs(self.param_substs,
554                                                                   &source_ty);
555                 match source_ty.sty {
556                     ty::TyClosure(def_id, substs) => {
557                         let instance = monomorphize::resolve_closure(
558                             self.tcx, def_id, substs, ty::ClosureKind::FnOnce);
559                         self.output.push(create_fn_mono_item(instance));
560                     }
561                     _ => bug!(),
562                 }
563             }
564             mir::Rvalue::NullaryOp(mir::NullOp::Box, _) => {
565                 let tcx = self.tcx;
566                 let exchange_malloc_fn_def_id = tcx
567                     .lang_items()
568                     .require(ExchangeMallocFnLangItem)
569                     .unwrap_or_else(|e| tcx.sess.fatal(&e));
570                 let instance = Instance::mono(tcx, exchange_malloc_fn_def_id);
571                 if should_monomorphize_locally(tcx, &instance) {
572                     self.output.push(create_fn_mono_item(instance));
573                 }
574             }
575             _ => { /* not interesting */ }
576         }
577
578         self.super_rvalue(rvalue, location);
579     }
580
581     fn visit_const(&mut self, constant: &&'tcx ty::Const<'tcx>, location: Location) {
582         debug!("visiting const {:?} @ {:?}", *constant, location);
583
584         collect_const(self.tcx, constant, self.param_substs, self.output);
585
586         self.super_const(constant);
587     }
588
589     fn visit_terminator_kind(&mut self,
590                              block: mir::BasicBlock,
591                              kind: &mir::TerminatorKind<'tcx>,
592                              location: Location) {
593         debug!("visiting terminator {:?} @ {:?}", kind, location);
594
595         let tcx = self.tcx;
596         match *kind {
597             mir::TerminatorKind::Call { ref func, .. } => {
598                 let callee_ty = func.ty(self.mir, tcx);
599                 let callee_ty = tcx.trans_apply_param_substs(self.param_substs, &callee_ty);
600                 visit_fn_use(self.tcx, callee_ty, true, &mut self.output);
601             }
602             mir::TerminatorKind::Drop { ref location, .. } |
603             mir::TerminatorKind::DropAndReplace { ref location, .. } => {
604                 let ty = location.ty(self.mir, self.tcx)
605                     .to_ty(self.tcx);
606                 let ty = tcx.trans_apply_param_substs(self.param_substs, &ty);
607                 visit_drop_use(self.tcx, ty, true, self.output);
608             }
609             mir::TerminatorKind::Goto { .. } |
610             mir::TerminatorKind::SwitchInt { .. } |
611             mir::TerminatorKind::Resume |
612             mir::TerminatorKind::Abort |
613             mir::TerminatorKind::Return |
614             mir::TerminatorKind::Unreachable |
615             mir::TerminatorKind::Assert { .. } => {}
616             mir::TerminatorKind::GeneratorDrop |
617             mir::TerminatorKind::Yield { .. } |
618             mir::TerminatorKind::FalseEdges { .. } |
619             mir::TerminatorKind::FalseUnwind { .. } => bug!(),
620         }
621
622         self.super_terminator_kind(block, kind, location);
623     }
624
625     fn visit_static(&mut self,
626                     static_: &mir::Static<'tcx>,
627                     context: mir::visit::PlaceContext<'tcx>,
628                     location: Location) {
629         debug!("visiting static {:?} @ {:?}", static_.def_id, location);
630
631         let tcx = self.tcx;
632         let instance = Instance::mono(tcx, static_.def_id);
633         if should_monomorphize_locally(tcx, &instance) {
634             self.output.push(MonoItem::Static(static_.def_id));
635         }
636
637         self.super_static(static_, context, location);
638     }
639 }
640
641 fn visit_drop_use<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
642                             ty: Ty<'tcx>,
643                             is_direct_call: bool,
644                             output: &mut Vec<MonoItem<'tcx>>)
645 {
646     let instance = monomorphize::resolve_drop_in_place(tcx, ty);
647     visit_instance_use(tcx, instance, is_direct_call, output);
648 }
649
650 fn visit_fn_use<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
651                           ty: Ty<'tcx>,
652                           is_direct_call: bool,
653                           output: &mut Vec<MonoItem<'tcx>>)
654 {
655     if let ty::TyFnDef(def_id, substs) = ty.sty {
656         let instance = ty::Instance::resolve(tcx,
657                                              ty::ParamEnv::empty(traits::Reveal::All),
658                                              def_id,
659                                              substs).unwrap();
660         visit_instance_use(tcx, instance, is_direct_call, output);
661     }
662 }
663
664 fn visit_instance_use<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
665                                 instance: ty::Instance<'tcx>,
666                                 is_direct_call: bool,
667                                 output: &mut Vec<MonoItem<'tcx>>)
668 {
669     debug!("visit_item_use({:?}, is_direct_call={:?})", instance, is_direct_call);
670     if !should_monomorphize_locally(tcx, &instance) {
671         return
672     }
673
674     match instance.def {
675         ty::InstanceDef::Intrinsic(def_id) => {
676             if !is_direct_call {
677                 bug!("intrinsic {:?} being reified", def_id);
678             }
679         }
680         ty::InstanceDef::Virtual(..) |
681         ty::InstanceDef::DropGlue(_, None) => {
682             // don't need to emit shim if we are calling directly.
683             if !is_direct_call {
684                 output.push(create_fn_mono_item(instance));
685             }
686         }
687         ty::InstanceDef::DropGlue(_, Some(_)) => {
688             output.push(create_fn_mono_item(instance));
689         }
690         ty::InstanceDef::ClosureOnceShim { .. } |
691         ty::InstanceDef::Item(..) |
692         ty::InstanceDef::FnPtrShim(..) |
693         ty::InstanceDef::CloneShim(..) => {
694             output.push(create_fn_mono_item(instance));
695         }
696     }
697 }
698
699 // Returns true if we should translate an instance in the local crate.
700 // Returns false if we can just link to the upstream crate and therefore don't
701 // need a mono item.
702 fn should_monomorphize_locally<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, instance: &Instance<'tcx>)
703                                          -> bool {
704     let def_id = match instance.def {
705         ty::InstanceDef::Item(def_id) => def_id,
706         ty::InstanceDef::ClosureOnceShim { .. } |
707         ty::InstanceDef::Virtual(..) |
708         ty::InstanceDef::FnPtrShim(..) |
709         ty::InstanceDef::DropGlue(..) |
710         ty::InstanceDef::Intrinsic(_) |
711         ty::InstanceDef::CloneShim(..) => return true
712     };
713     match tcx.hir.get_if_local(def_id) {
714         Some(hir_map::NodeForeignItem(..)) => {
715             false // foreign items are linked against, not translated.
716         }
717         Some(_) => true,
718         None => {
719             if tcx.is_reachable_non_generic(def_id) ||
720                 tcx.is_foreign_item(def_id)
721             {
722                 // We can link to the item in question, no instance needed
723                 // in this crate
724                 false
725             } else {
726                 if !tcx.is_mir_available(def_id) {
727                     bug!("Cannot create local mono-item for {:?}", def_id)
728                 }
729                 true
730             }
731         }
732     }
733 }
734
735 /// For given pair of source and target type that occur in an unsizing coercion,
736 /// this function finds the pair of types that determines the vtable linking
737 /// them.
738 ///
739 /// For example, the source type might be `&SomeStruct` and the target type\
740 /// might be `&SomeTrait` in a cast like:
741 ///
742 /// let src: &SomeStruct = ...;
743 /// let target = src as &SomeTrait;
744 ///
745 /// Then the output of this function would be (SomeStruct, SomeTrait) since for
746 /// constructing the `target` fat-pointer we need the vtable for that pair.
747 ///
748 /// Things can get more complicated though because there's also the case where
749 /// the unsized type occurs as a field:
750 ///
751 /// ```rust
752 /// struct ComplexStruct<T: ?Sized> {
753 ///    a: u32,
754 ///    b: f64,
755 ///    c: T
756 /// }
757 /// ```
758 ///
759 /// In this case, if `T` is sized, `&ComplexStruct<T>` is a thin pointer. If `T`
760 /// is unsized, `&SomeStruct` is a fat pointer, and the vtable it points to is
761 /// for the pair of `T` (which is a trait) and the concrete type that `T` was
762 /// originally coerced from:
763 ///
764 /// let src: &ComplexStruct<SomeStruct> = ...;
765 /// let target = src as &ComplexStruct<SomeTrait>;
766 ///
767 /// Again, we want this `find_vtable_types_for_unsizing()` to provide the pair
768 /// `(SomeStruct, SomeTrait)`.
769 ///
770 /// Finally, there is also the case of custom unsizing coercions, e.g. for
771 /// smart pointers such as `Rc` and `Arc`.
772 fn find_vtable_types_for_unsizing<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
773                                             source_ty: Ty<'tcx>,
774                                             target_ty: Ty<'tcx>)
775                                             -> (Ty<'tcx>, Ty<'tcx>) {
776     let ptr_vtable = |inner_source: Ty<'tcx>, inner_target: Ty<'tcx>| {
777         let type_has_metadata = |ty: Ty<'tcx>| -> bool {
778             use syntax_pos::DUMMY_SP;
779             if ty.is_sized(tcx.at(DUMMY_SP), ty::ParamEnv::empty(traits::Reveal::All)) {
780                 return false;
781             }
782             let tail = tcx.struct_tail(ty);
783             match tail.sty {
784                 ty::TyForeign(..) => false,
785                 ty::TyStr | ty::TySlice(..) | ty::TyDynamic(..) => true,
786                 _ => bug!("unexpected unsized tail: {:?}", tail.sty),
787             }
788         };
789         if type_has_metadata(inner_source) {
790             (inner_source, inner_target)
791         } else {
792             tcx.struct_lockstep_tails(inner_source, inner_target)
793         }
794     };
795
796     match (&source_ty.sty, &target_ty.sty) {
797         (&ty::TyRef(_, ty::TypeAndMut { ty: a, .. }),
798          &ty::TyRef(_, ty::TypeAndMut { ty: b, .. })) |
799         (&ty::TyRef(_, ty::TypeAndMut { ty: a, .. }),
800          &ty::TyRawPtr(ty::TypeAndMut { ty: b, .. })) |
801         (&ty::TyRawPtr(ty::TypeAndMut { ty: a, .. }),
802          &ty::TyRawPtr(ty::TypeAndMut { ty: b, .. })) => {
803             ptr_vtable(a, b)
804         }
805         (&ty::TyAdt(def_a, _), &ty::TyAdt(def_b, _)) if def_a.is_box() && def_b.is_box() => {
806             ptr_vtable(source_ty.boxed_ty(), target_ty.boxed_ty())
807         }
808
809         (&ty::TyAdt(source_adt_def, source_substs),
810          &ty::TyAdt(target_adt_def, target_substs)) => {
811             assert_eq!(source_adt_def, target_adt_def);
812
813             let kind =
814                 monomorphize::custom_coerce_unsize_info(tcx, source_ty, target_ty);
815
816             let coerce_index = match kind {
817                 CustomCoerceUnsized::Struct(i) => i
818             };
819
820             let source_fields = &source_adt_def.non_enum_variant().fields;
821             let target_fields = &target_adt_def.non_enum_variant().fields;
822
823             assert!(coerce_index < source_fields.len() &&
824                     source_fields.len() == target_fields.len());
825
826             find_vtable_types_for_unsizing(tcx,
827                                            source_fields[coerce_index].ty(tcx,
828                                                                           source_substs),
829                                            target_fields[coerce_index].ty(tcx,
830                                                                           target_substs))
831         }
832         _ => bug!("find_vtable_types_for_unsizing: invalid coercion {:?} -> {:?}",
833                   source_ty,
834                   target_ty)
835     }
836 }
837
838 fn create_fn_mono_item<'a, 'tcx>(instance: Instance<'tcx>) -> MonoItem<'tcx> {
839     debug!("create_fn_mono_item(instance={})", instance);
840     MonoItem::Fn(instance)
841 }
842
843 /// Creates a `MonoItem` for each method that is referenced by the vtable for
844 /// the given trait/impl pair.
845 fn create_mono_items_for_vtable_methods<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
846                                                   trait_ty: Ty<'tcx>,
847                                                   impl_ty: Ty<'tcx>,
848                                                   output: &mut Vec<MonoItem<'tcx>>) {
849     assert!(!trait_ty.needs_subst() && !trait_ty.has_escaping_regions() &&
850             !impl_ty.needs_subst() && !impl_ty.has_escaping_regions());
851
852     if let ty::TyDynamic(ref trait_ty, ..) = trait_ty.sty {
853         if let Some(principal) = trait_ty.principal() {
854             let poly_trait_ref = principal.with_self_ty(tcx, impl_ty);
855             assert!(!poly_trait_ref.has_escaping_regions());
856
857             // Walk all methods of the trait, including those of its supertraits
858             let methods = tcx.vtable_methods(poly_trait_ref);
859             let methods = methods.iter().cloned().filter_map(|method| method)
860                 .map(|(def_id, substs)| ty::Instance::resolve(
861                         tcx,
862                         ty::ParamEnv::empty(traits::Reveal::All),
863                         def_id,
864                         substs).unwrap())
865                 .filter(|&instance| should_monomorphize_locally(tcx, &instance))
866                 .map(|instance| create_fn_mono_item(instance));
867             output.extend(methods);
868         }
869         // Also add the destructor
870         visit_drop_use(tcx, impl_ty, false, output);
871     }
872 }
873
874 //=-----------------------------------------------------------------------------
875 // Root Collection
876 //=-----------------------------------------------------------------------------
877
878 struct RootCollector<'b, 'a: 'b, 'tcx: 'a + 'b> {
879     tcx: TyCtxt<'a, 'tcx, 'tcx>,
880     mode: MonoItemCollectionMode,
881     output: &'b mut Vec<MonoItem<'tcx>>,
882     entry_fn: Option<DefId>,
883 }
884
885 impl<'b, 'a, 'v> ItemLikeVisitor<'v> for RootCollector<'b, 'a, 'v> {
886     fn visit_item(&mut self, item: &'v hir::Item) {
887         match item.node {
888             hir::ItemExternCrate(..) |
889             hir::ItemUse(..)         |
890             hir::ItemForeignMod(..)  |
891             hir::ItemTy(..)          |
892             hir::ItemTrait(..)       |
893             hir::ItemTraitAlias(..)  |
894             hir::ItemMod(..)         => {
895                 // Nothing to do, just keep recursing...
896             }
897
898             hir::ItemImpl(..) => {
899                 if self.mode == MonoItemCollectionMode::Eager {
900                     create_mono_items_for_default_impls(self.tcx,
901                                                         item,
902                                                         self.output);
903                 }
904             }
905
906             hir::ItemEnum(_, ref generics) |
907             hir::ItemStruct(_, ref generics) |
908             hir::ItemUnion(_, ref generics) => {
909                 if generics.params.is_empty() {
910                     if self.mode == MonoItemCollectionMode::Eager {
911                         let def_id = self.tcx.hir.local_def_id(item.id);
912                         debug!("RootCollector: ADT drop-glue for {}",
913                                def_id_to_string(self.tcx, def_id));
914
915                         let ty = Instance::new(def_id, Substs::empty()).ty(self.tcx);
916                         visit_drop_use(self.tcx, ty, true, self.output);
917                     }
918                 }
919             }
920             hir::ItemGlobalAsm(..) => {
921                 debug!("RootCollector: ItemGlobalAsm({})",
922                        def_id_to_string(self.tcx,
923                                         self.tcx.hir.local_def_id(item.id)));
924                 self.output.push(MonoItem::GlobalAsm(item.id));
925             }
926             hir::ItemStatic(..) => {
927                 let def_id = self.tcx.hir.local_def_id(item.id);
928                 debug!("RootCollector: ItemStatic({})",
929                        def_id_to_string(self.tcx, def_id));
930                 self.output.push(MonoItem::Static(def_id));
931             }
932             hir::ItemConst(..) => {
933                 // const items only generate mono items if they are
934                 // actually used somewhere. Just declaring them is insufficient.
935             }
936             hir::ItemFn(..) => {
937                 let def_id = self.tcx.hir.local_def_id(item.id);
938                 self.push_if_root(def_id);
939             }
940         }
941     }
942
943     fn visit_trait_item(&mut self, _: &'v hir::TraitItem) {
944         // Even if there's a default body with no explicit generics,
945         // it's still generic over some `Self: Trait`, so not a root.
946     }
947
948     fn visit_impl_item(&mut self, ii: &'v hir::ImplItem) {
949         match ii.node {
950             hir::ImplItemKind::Method(hir::MethodSig { .. }, _) => {
951                 let def_id = self.tcx.hir.local_def_id(ii.id);
952                 self.push_if_root(def_id);
953             }
954             _ => { /* Nothing to do here */ }
955         }
956     }
957 }
958
959 impl<'b, 'a, 'v> RootCollector<'b, 'a, 'v> {
960     fn is_root(&self, def_id: DefId) -> bool {
961         !item_has_type_parameters(self.tcx, def_id) && match self.mode {
962             MonoItemCollectionMode::Eager => {
963                 true
964             }
965             MonoItemCollectionMode::Lazy => {
966                 self.entry_fn == Some(def_id) ||
967                 self.tcx.is_reachable_non_generic(def_id) ||
968                 self.tcx.trans_fn_attrs(def_id).flags.contains(
969                     TransFnAttrFlags::RUSTC_STD_INTERNAL_SYMBOL)
970             }
971         }
972     }
973
974     /// If `def_id` represents a root, then push it onto the list of
975     /// outputs. (Note that all roots must be monomorphic.)
976     fn push_if_root(&mut self, def_id: DefId) {
977         if self.is_root(def_id) {
978             debug!("RootCollector::push_if_root: found root def_id={:?}", def_id);
979
980             let instance = Instance::mono(self.tcx, def_id);
981             self.output.push(create_fn_mono_item(instance));
982
983             self.push_extra_entry_roots(def_id);
984         }
985     }
986
987     /// As a special case, when/if we encounter the
988     /// `main()` function, we also have to generate a
989     /// monomorphized copy of the start lang item based on
990     /// the return type of `main`. This is not needed when
991     /// the user writes their own `start` manually.
992     fn push_extra_entry_roots(&mut self, def_id: DefId) {
993         if self.entry_fn != Some(def_id) {
994             return;
995         }
996
997         if self.tcx.sess.entry_type.get() != Some(config::EntryMain) {
998             return;
999         }
1000
1001         let start_def_id = match self.tcx.lang_items().require(StartFnLangItem) {
1002             Ok(s) => s,
1003             Err(err) => self.tcx.sess.fatal(&err),
1004         };
1005         let main_ret_ty = self.tcx.fn_sig(def_id).output();
1006
1007         // Given that `main()` has no arguments,
1008         // then its return type cannot have
1009         // late-bound regions, since late-bound
1010         // regions must appear in the argument
1011         // listing.
1012         let main_ret_ty = main_ret_ty.no_late_bound_regions().unwrap();
1013
1014         let start_instance = Instance::resolve(
1015             self.tcx,
1016             ty::ParamEnv::empty(traits::Reveal::All),
1017             start_def_id,
1018             self.tcx.mk_substs(iter::once(Kind::from(main_ret_ty)))
1019         ).unwrap();
1020
1021         self.output.push(create_fn_mono_item(start_instance));
1022     }
1023 }
1024
1025 fn item_has_type_parameters<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, def_id: DefId) -> bool {
1026     let generics = tcx.generics_of(def_id);
1027     generics.parent_types as usize + generics.types.len() > 0
1028 }
1029
1030 fn create_mono_items_for_default_impls<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
1031                                                  item: &'tcx hir::Item,
1032                                                  output: &mut Vec<MonoItem<'tcx>>) {
1033     match item.node {
1034         hir::ItemImpl(_,
1035                       _,
1036                       _,
1037                       ref generics,
1038                       ..,
1039                       ref impl_item_refs) => {
1040             if generics.is_type_parameterized() {
1041                 return
1042             }
1043
1044             let impl_def_id = tcx.hir.local_def_id(item.id);
1045
1046             debug!("create_mono_items_for_default_impls(item={})",
1047                    def_id_to_string(tcx, impl_def_id));
1048
1049             if let Some(trait_ref) = tcx.impl_trait_ref(impl_def_id) {
1050                 let callee_substs = tcx.erase_regions(&trait_ref.substs);
1051                 let overridden_methods: FxHashSet<_> =
1052                     impl_item_refs.iter()
1053                                   .map(|iiref| iiref.name)
1054                                   .collect();
1055                 for method in tcx.provided_trait_methods(trait_ref.def_id) {
1056                     if overridden_methods.contains(&method.name) {
1057                         continue;
1058                     }
1059
1060                     if !tcx.generics_of(method.def_id).types.is_empty() {
1061                         continue;
1062                     }
1063
1064                     let instance = ty::Instance::resolve(tcx,
1065                                                          ty::ParamEnv::empty(traits::Reveal::All),
1066                                                          method.def_id,
1067                                                          callee_substs).unwrap();
1068
1069                     let mono_item = create_fn_mono_item(instance);
1070                     if mono_item.is_instantiable(tcx)
1071                         && should_monomorphize_locally(tcx, &instance) {
1072                         output.push(mono_item);
1073                     }
1074                 }
1075             }
1076         }
1077         _ => {
1078             bug!()
1079         }
1080     }
1081 }
1082
1083 /// Scan the miri alloc in order to find function calls, closures, and drop-glue
1084 fn collect_miri<'a, 'tcx>(
1085     tcx: TyCtxt<'a, 'tcx, 'tcx>,
1086     alloc_id: AllocId,
1087     output: &mut Vec<MonoItem<'tcx>>,
1088 ) {
1089     if let Some(did) = tcx.interpret_interner.get_corresponding_static_def_id(alloc_id) {
1090         let instance = Instance::mono(tcx, did);
1091         if should_monomorphize_locally(tcx, &instance) {
1092             trace!("collecting static {:?}", did);
1093             output.push(MonoItem::Static(did));
1094         }
1095     } else if let Some(alloc) = tcx.interpret_interner.get_alloc(alloc_id) {
1096         trace!("collecting {:?} with {:#?}", alloc_id, alloc);
1097         for &inner in alloc.relocations.values() {
1098             collect_miri(tcx, inner, output);
1099         }
1100     } else if let Some(fn_instance) = tcx.interpret_interner.get_fn(alloc_id) {
1101         if should_monomorphize_locally(tcx, &fn_instance) {
1102             trace!("collecting {:?} with {:#?}", alloc_id, fn_instance);
1103             output.push(create_fn_mono_item(fn_instance));
1104         }
1105     } else {
1106         bug!("alloc id without corresponding allocation: {}", alloc_id);
1107     }
1108 }
1109
1110 /// Scan the MIR in order to find function calls, closures, and drop-glue
1111 fn collect_neighbours<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
1112                                 instance: Instance<'tcx>,
1113                                 output: &mut Vec<MonoItem<'tcx>>)
1114 {
1115     let mir = tcx.instance_mir(instance.def);
1116
1117     MirNeighborCollector {
1118         tcx,
1119         mir: &mir,
1120         output,
1121         param_substs: instance.substs,
1122     }.visit_mir(&mir);
1123     let param_env = ty::ParamEnv::empty(traits::Reveal::All);
1124     for (i, promoted) in mir.promoted.iter().enumerate() {
1125         use rustc_data_structures::indexed_vec::Idx;
1126         let cid = GlobalId {
1127             instance,
1128             promoted: Some(Promoted::new(i)),
1129         };
1130         match tcx.const_eval(param_env.and(cid)) {
1131             Ok(val) => collect_const(tcx, val, instance.substs, output),
1132             Err(err) => {
1133                 err.report(tcx, promoted.span, "promoted");
1134             }
1135         }
1136     }
1137 }
1138
1139 fn def_id_to_string<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
1140                               def_id: DefId)
1141                               -> String {
1142     let mut output = String::new();
1143     let printer = DefPathBasedNames::new(tcx, false, false);
1144     printer.push_def_path(def_id, &mut output);
1145     output
1146 }
1147
1148 fn collect_const<'a, 'tcx>(
1149     tcx: TyCtxt<'a, 'tcx, 'tcx>,
1150     constant: &ty::Const<'tcx>,
1151     param_substs: &'tcx Substs<'tcx>,
1152     output: &mut Vec<MonoItem<'tcx>>,
1153 ) {
1154     debug!("visiting const {:?}", *constant);
1155
1156     let val = match constant.val {
1157         ConstVal::Unevaluated(def_id, substs) => {
1158             let param_env = ty::ParamEnv::empty(traits::Reveal::All);
1159             let substs = tcx.trans_apply_param_substs(param_substs,
1160                                                         &substs);
1161             let instance = ty::Instance::resolve(tcx,
1162                                                 param_env,
1163                                                 def_id,
1164                                                 substs).unwrap();
1165
1166             let cid = GlobalId {
1167                 instance,
1168                 promoted: None,
1169             };
1170             match tcx.const_eval(param_env.and(cid)) {
1171                 Ok(val) => val.val,
1172                 Err(err) => {
1173                     let span = tcx.def_span(def_id);
1174                     err.report(tcx, span, "constant");
1175                     return;
1176                 }
1177             }
1178         },
1179         _ => constant.val,
1180     };
1181     match val {
1182         ConstVal::Unevaluated(..) => bug!("const eval yielded unevaluated const"),
1183         ConstVal::Value(Value::ByValPair(PrimVal::Ptr(a), PrimVal::Ptr(b))) => {
1184             collect_miri(tcx, a.alloc_id, output);
1185             collect_miri(tcx, b.alloc_id, output);
1186         }
1187         ConstVal::Value(Value::ByValPair(_, PrimVal::Ptr(ptr))) |
1188         ConstVal::Value(Value::ByValPair(PrimVal::Ptr(ptr), _)) |
1189         ConstVal::Value(Value::ByVal(PrimVal::Ptr(ptr))) =>
1190             collect_miri(tcx, ptr.alloc_id, output),
1191         ConstVal::Value(Value::ByRef(Pointer { primval: PrimVal::Ptr(ptr) }, _)) => {
1192             // by ref should only collect the inner allocation, not the value itself
1193             let alloc = tcx
1194                 .interpret_interner
1195                 .get_alloc(ptr.alloc_id)
1196                 .expect("ByRef to extern static is not allowed");
1197             for &inner in alloc.relocations.values() {
1198                 collect_miri(tcx, inner, output);
1199             }
1200         }
1201         _ => {},
1202     }
1203 }