]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/build/mod.rs
b1a377591e31025c1243bd1fa10080cada89a9b2
[rust.git] / src / librustc_mir / build / mod.rs
1 use build;
2 use build::scope::{CachedBlock, DropKind};
3 use hair::cx::Cx;
4 use hair::{LintLevel, BindingMode, PatternKind};
5 use rustc::hir;
6 use rustc::hir::Node;
7 use rustc::hir::def_id::DefId;
8 use rustc::middle::region;
9 use rustc::mir::*;
10 use rustc::mir::visit::{MutVisitor, TyContext};
11 use rustc::ty::{self, Ty, TyCtxt};
12 use rustc::ty::subst::Substs;
13 use rustc::util::nodemap::NodeMap;
14 use rustc_target::spec::PanicStrategy;
15 use rustc_data_structures::indexed_vec::{IndexVec, Idx};
16 use shim;
17 use std::mem;
18 use std::u32;
19 use rustc_target::spec::abi::Abi;
20 use syntax::ast;
21 use syntax::attr::{self, UnwindAttr};
22 use syntax::symbol::keywords;
23 use syntax_pos::Span;
24 use transform::MirSource;
25 use util as mir_util;
26
27 use super::lints;
28
29 /// Construct the MIR for a given def-id.
30 pub fn mir_build<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, def_id: DefId) -> Mir<'tcx> {
31     let id = tcx.hir().as_local_node_id(def_id).unwrap();
32
33     // Figure out what primary body this item has.
34     let (body_id, return_ty_span) = match tcx.hir().get(id) {
35         Node::Variant(variant) =>
36             return create_constructor_shim(tcx, id, &variant.node.data),
37         Node::StructCtor(ctor) =>
38             return create_constructor_shim(tcx, id, ctor),
39
40         Node::Expr(hir::Expr { node: hir::ExprKind::Closure(_, decl, body_id, _, _), .. })
41         | Node::Item(hir::Item { node: hir::ItemKind::Fn(decl, _, _, body_id), .. })
42         | Node::ImplItem(
43             hir::ImplItem {
44                 node: hir::ImplItemKind::Method(hir::MethodSig { decl, .. }, body_id),
45                 ..
46             }
47         )
48         | Node::TraitItem(
49             hir::TraitItem {
50                 node: hir::TraitItemKind::Method(
51                     hir::MethodSig { decl, .. },
52                     hir::TraitMethod::Provided(body_id),
53                 ),
54                 ..
55             }
56         ) => {
57             (*body_id, decl.output.span())
58         }
59         Node::Item(hir::Item { node: hir::ItemKind::Static(ty, _, body_id), .. })
60         | Node::Item(hir::Item { node: hir::ItemKind::Const(ty, body_id), .. })
61         | Node::ImplItem(hir::ImplItem { node: hir::ImplItemKind::Const(ty, body_id), .. })
62         | Node::TraitItem(
63             hir::TraitItem { node: hir::TraitItemKind::Const(ty, Some(body_id)), .. }
64         ) => {
65             (*body_id, ty.span)
66         }
67         Node::AnonConst(hir::AnonConst { body, id, .. }) => {
68             (*body, tcx.hir().span(*id))
69         }
70
71         _ => span_bug!(tcx.hir().span(id), "can't build MIR for {:?}", def_id),
72     };
73
74     tcx.infer_ctxt().enter(|infcx| {
75         let cx = Cx::new(&infcx, id);
76         let mut mir = if cx.tables().tainted_by_errors {
77             build::construct_error(cx, body_id)
78         } else if let hir::BodyOwnerKind::Fn = cx.body_owner_kind {
79             // fetch the fully liberated fn signature (that is, all bound
80             // types/lifetimes replaced)
81             let fn_hir_id = tcx.hir().node_to_hir_id(id);
82             let fn_sig = cx.tables().liberated_fn_sigs()[fn_hir_id].clone();
83             let fn_def_id = tcx.hir().local_def_id(id);
84
85             let ty = tcx.type_of(fn_def_id);
86             let mut abi = fn_sig.abi;
87             let implicit_argument = match ty.sty {
88                 ty::Closure(..) => {
89                     // HACK(eddyb) Avoid having RustCall on closures,
90                     // as it adds unnecessary (and wrong) auto-tupling.
91                     abi = Abi::Rust;
92                     Some(ArgInfo(liberated_closure_env_ty(tcx, id, body_id), None, None, None))
93                 }
94                 ty::Generator(..) => {
95                     let gen_ty = tcx.body_tables(body_id).node_id_to_type(fn_hir_id);
96                     Some(ArgInfo(gen_ty, None, None, None))
97                 }
98                 _ => None,
99             };
100
101             let safety = match fn_sig.unsafety {
102                 hir::Unsafety::Normal => Safety::Safe,
103                 hir::Unsafety::Unsafe => Safety::FnUnsafe,
104             };
105
106             let body = tcx.hir().body(body_id);
107             let explicit_arguments =
108                 body.arguments
109                     .iter()
110                     .enumerate()
111                     .map(|(index, arg)| {
112                         let owner_id = tcx.hir().body_owner(body_id);
113                         let opt_ty_info;
114                         let self_arg;
115                         if let Some(ref fn_decl) = tcx.hir().fn_decl(owner_id) {
116                             let ty_hir_id = fn_decl.inputs[index].hir_id;
117                             let ty_span = tcx.hir().span(tcx.hir().hir_to_node_id(ty_hir_id));
118                             opt_ty_info = Some(ty_span);
119                             self_arg = if index == 0 && fn_decl.implicit_self.has_implicit_self() {
120                                 match fn_decl.implicit_self {
121                                     hir::ImplicitSelfKind::Imm => Some(ImplicitSelfKind::Imm),
122                                     hir::ImplicitSelfKind::Mut => Some(ImplicitSelfKind::Mut),
123                                     hir::ImplicitSelfKind::ImmRef => Some(ImplicitSelfKind::ImmRef),
124                                     hir::ImplicitSelfKind::MutRef => Some(ImplicitSelfKind::MutRef),
125                                     _ => None,
126                                 }
127                             } else {
128                                 None
129                             };
130                         } else {
131                             opt_ty_info = None;
132                             self_arg = None;
133                         }
134                         ArgInfo(fn_sig.inputs()[index], opt_ty_info, Some(&*arg.pat), self_arg)
135                     });
136
137             let arguments = implicit_argument.into_iter().chain(explicit_arguments);
138
139             let (yield_ty, return_ty) = if body.is_generator {
140                 let gen_sig = match ty.sty {
141                     ty::Generator(gen_def_id, gen_substs, ..) =>
142                         gen_substs.sig(gen_def_id, tcx),
143                     _ =>
144                         span_bug!(tcx.hir().span(id), "generator w/o generator type: {:?}", ty),
145                 };
146                 (Some(gen_sig.yield_ty), gen_sig.return_ty)
147             } else {
148                 (None, fn_sig.output())
149             };
150
151             build::construct_fn(cx, id, arguments, safety, abi,
152                                 return_ty, yield_ty, return_ty_span, body)
153         } else {
154             build::construct_const(cx, body_id, return_ty_span)
155         };
156
157         // Convert the Mir to global types.
158         let mut globalizer = GlobalizeMir {
159             tcx,
160             span: mir.span
161         };
162         globalizer.visit_mir(&mut mir);
163         let mir = unsafe {
164             mem::transmute::<Mir, Mir<'tcx>>(mir)
165         };
166
167         mir_util::dump_mir(tcx, None, "mir_map", &0,
168                            MirSource::item(def_id), &mir, |_, _| Ok(()) );
169
170         lints::check(tcx, &mir, def_id);
171
172         mir
173     })
174 }
175
176 /// A pass to lift all the types and substitutions in a Mir
177 /// to the global tcx. Sadly, we don't have a "folder" that
178 /// can change 'tcx so we have to transmute afterwards.
179 struct GlobalizeMir<'a, 'gcx: 'a> {
180     tcx: TyCtxt<'a, 'gcx, 'gcx>,
181     span: Span
182 }
183
184 impl<'a, 'gcx: 'tcx, 'tcx> MutVisitor<'tcx> for GlobalizeMir<'a, 'gcx> {
185     fn visit_ty(&mut self, ty: &mut Ty<'tcx>, _: TyContext) {
186         if let Some(lifted) = self.tcx.lift(ty) {
187             *ty = lifted;
188         } else {
189             span_bug!(self.span,
190                       "found type `{:?}` with inference types/regions in MIR",
191                       ty);
192         }
193     }
194
195     fn visit_region(&mut self, region: &mut ty::Region<'tcx>, _: Location) {
196         if let Some(lifted) = self.tcx.lift(region) {
197             *region = lifted;
198         } else {
199             span_bug!(self.span,
200                       "found region `{:?}` with inference types/regions in MIR",
201                       region);
202         }
203     }
204
205     fn visit_const(&mut self, constant: &mut &'tcx ty::LazyConst<'tcx>, _: Location) {
206         if let Some(lifted) = self.tcx.lift(constant) {
207             *constant = lifted;
208         } else {
209             span_bug!(self.span,
210                       "found constant `{:?}` with inference types/regions in MIR",
211                       constant);
212         }
213     }
214
215     fn visit_substs(&mut self, substs: &mut &'tcx Substs<'tcx>, _: Location) {
216         if let Some(lifted) = self.tcx.lift(substs) {
217             *substs = lifted;
218         } else {
219             span_bug!(self.span,
220                       "found substs `{:?}` with inference types/regions in MIR",
221                       substs);
222         }
223     }
224 }
225
226 fn create_constructor_shim<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
227                                      ctor_id: ast::NodeId,
228                                      v: &'tcx hir::VariantData)
229                                      -> Mir<'tcx>
230 {
231     let span = tcx.hir().span(ctor_id);
232     if let hir::VariantData::Tuple(ref fields, ctor_id) = *v {
233         tcx.infer_ctxt().enter(|infcx| {
234             let mut mir = shim::build_adt_ctor(&infcx, ctor_id, fields, span);
235
236             // Convert the Mir to global types.
237             let tcx = infcx.tcx.global_tcx();
238             let mut globalizer = GlobalizeMir {
239                 tcx,
240                 span: mir.span
241             };
242             globalizer.visit_mir(&mut mir);
243             let mir = unsafe {
244                 mem::transmute::<Mir, Mir<'tcx>>(mir)
245             };
246
247             mir_util::dump_mir(tcx, None, "mir_map", &0,
248                                MirSource::item(tcx.hir().local_def_id(ctor_id)),
249                                &mir, |_, _| Ok(()) );
250
251             mir
252         })
253     } else {
254         span_bug!(span, "attempting to create MIR for non-tuple variant {:?}", v);
255     }
256 }
257
258 ///////////////////////////////////////////////////////////////////////////
259 // BuildMir -- walks a crate, looking for fn items and methods to build MIR from
260
261 fn liberated_closure_env_ty<'a, 'gcx, 'tcx>(tcx: TyCtxt<'a, 'gcx, 'tcx>,
262                                             closure_expr_id: ast::NodeId,
263                                             body_id: hir::BodyId)
264                                             -> Ty<'tcx> {
265     let closure_expr_hir_id = tcx.hir().node_to_hir_id(closure_expr_id);
266     let closure_ty = tcx.body_tables(body_id).node_id_to_type(closure_expr_hir_id);
267
268     let (closure_def_id, closure_substs) = match closure_ty.sty {
269         ty::Closure(closure_def_id, closure_substs) => (closure_def_id, closure_substs),
270         _ => bug!("closure expr does not have closure type: {:?}", closure_ty)
271     };
272
273     let closure_env_ty = tcx.closure_env_ty(closure_def_id, closure_substs).unwrap();
274     tcx.liberate_late_bound_regions(closure_def_id, &closure_env_ty)
275 }
276
277 #[derive(Debug, PartialEq, Eq)]
278 pub enum BlockFrame {
279     /// Evaluation is currently within a statement.
280     ///
281     /// Examples include:
282     ///  1. `EXPR;`
283     ///  2. `let _ = EXPR;`
284     ///  3. `let x = EXPR;`
285     Statement {
286         /// If true, then statement discards result from evaluating
287         /// the expression (such as examples 1 and 2 above).
288         ignores_expr_result: bool
289     },
290
291     /// Evaluation is currently within the tail expression of a block.
292     ///
293     /// Example: `{ STMT_1; STMT_2; EXPR }`
294     TailExpr {
295         /// If true, then the surrounding context of the block ignores
296         /// the result of evaluating the block's tail expression.
297         ///
298         /// Example: `let _ = { STMT_1; EXPR };`
299         tail_result_is_ignored: bool
300     },
301
302     /// Generic mark meaning that the block occurred as a subexpression
303     /// where the result might be used.
304     ///
305     /// Examples: `foo(EXPR)`, `match EXPR { ... }`
306     SubExpr,
307 }
308
309 impl BlockFrame {
310     fn is_tail_expr(&self) -> bool {
311         match *self {
312             BlockFrame::TailExpr { .. } => true,
313
314             BlockFrame::Statement { .. } |
315             BlockFrame::SubExpr => false,
316         }
317     }
318     fn is_statement(&self) -> bool {
319         match *self {
320             BlockFrame::Statement { .. } => true,
321
322             BlockFrame::TailExpr { .. } |
323             BlockFrame::SubExpr => false,
324         }
325     }
326  }
327
328 #[derive(Debug)]
329 struct BlockContext(Vec<BlockFrame>);
330
331 struct Builder<'a, 'gcx: 'a+'tcx, 'tcx: 'a> {
332     hir: Cx<'a, 'gcx, 'tcx>,
333     cfg: CFG<'tcx>,
334
335     fn_span: Span,
336     arg_count: usize,
337
338     /// the current set of scopes, updated as we traverse;
339     /// see the `scope` module for more details
340     scopes: Vec<scope::Scope<'tcx>>,
341
342     /// the block-context: each time we build the code within an hair::Block,
343     /// we push a frame here tracking whether we are building a statement or
344     /// if we are pushing the tail expression of the block. This is used to
345     /// embed information in generated temps about whether they were created
346     /// for a block tail expression or not.
347     ///
348     /// It would be great if we could fold this into `self.scopes`
349     /// somehow; but right now I think that is very tightly tied to
350     /// the code generation in ways that we cannot (or should not)
351     /// start just throwing new entries onto that vector in order to
352     /// distinguish the context of EXPR1 from the context of EXPR2 in
353     /// `{ STMTS; EXPR1 } + EXPR2`
354     block_context: BlockContext,
355
356     /// The current unsafe block in scope, even if it is hidden by
357     /// a PushUnsafeBlock
358     unpushed_unsafe: Safety,
359
360     /// The number of `push_unsafe_block` levels in scope
361     push_unsafe_count: usize,
362
363     /// the current set of breakables; see the `scope` module for more
364     /// details
365     breakable_scopes: Vec<scope::BreakableScope<'tcx>>,
366
367     /// the vector of all scopes that we have created thus far;
368     /// we track this for debuginfo later
369     source_scopes: IndexVec<SourceScope, SourceScopeData>,
370     source_scope_local_data: IndexVec<SourceScope, SourceScopeLocalData>,
371     source_scope: SourceScope,
372
373     /// the guard-context: each time we build the guard expression for
374     /// a match arm, we push onto this stack, and then pop when we
375     /// finish building it.
376     guard_context: Vec<GuardFrame>,
377
378     /// Maps node ids of variable bindings to the `Local`s created for them.
379     /// (A match binding can have two locals; the 2nd is for the arm's guard.)
380     var_indices: NodeMap<LocalsForNode>,
381     local_decls: IndexVec<Local, LocalDecl<'tcx>>,
382     canonical_user_type_annotations: ty::CanonicalUserTypeAnnotations<'tcx>,
383     upvar_decls: Vec<UpvarDecl>,
384     unit_temp: Option<Place<'tcx>>,
385
386     /// cached block with the RESUME terminator; this is created
387     /// when first set of cleanups are built.
388     cached_resume_block: Option<BasicBlock>,
389     /// cached block with the RETURN terminator
390     cached_return_block: Option<BasicBlock>,
391     /// cached block with the UNREACHABLE terminator
392     cached_unreachable_block: Option<BasicBlock>,
393 }
394
395 impl<'a, 'gcx, 'tcx> Builder<'a, 'gcx, 'tcx> {
396     fn is_bound_var_in_guard(&self, id: ast::NodeId) -> bool {
397         self.guard_context.iter().any(|frame| frame.locals.iter().any(|local| local.id == id))
398     }
399
400     fn var_local_id(&self, id: ast::NodeId, for_guard: ForGuard) -> Local {
401         self.var_indices[&id].local_id(for_guard)
402     }
403 }
404
405 impl BlockContext {
406     fn new() -> Self { BlockContext(vec![]) }
407     fn push(&mut self, bf: BlockFrame) { self.0.push(bf); }
408     fn pop(&mut self) -> Option<BlockFrame> { self.0.pop() }
409
410     /// Traverses the frames on the BlockContext, searching for either
411     /// the first block-tail expression frame with no intervening
412     /// statement frame.
413     ///
414     /// Notably, this skips over `SubExpr` frames; this method is
415     /// meant to be used in the context of understanding the
416     /// relationship of a temp (created within some complicated
417     /// expression) with its containing expression, and whether the
418     /// value of that *containing expression* (not the temp!) is
419     /// ignored.
420     fn currently_in_block_tail(&self) -> Option<BlockTailInfo> {
421         for bf in self.0.iter().rev() {
422             match bf {
423                 BlockFrame::SubExpr => continue,
424                 BlockFrame::Statement { .. } => break,
425                 &BlockFrame::TailExpr { tail_result_is_ignored } =>
426                     return Some(BlockTailInfo { tail_result_is_ignored })
427             }
428         }
429
430         return None;
431     }
432
433     /// Looks at the topmost frame on the BlockContext and reports
434     /// whether its one that would discard a block tail result.
435     ///
436     /// Unlike `currently_within_ignored_tail_expression`, this does
437     /// *not* skip over `SubExpr` frames: here, we want to know
438     /// whether the block result itself is discarded.
439     fn currently_ignores_tail_results(&self) -> bool {
440         match self.0.last() {
441             // no context: conservatively assume result is read
442             None => false,
443
444             // sub-expression: block result feeds into some computation
445             Some(BlockFrame::SubExpr) => false,
446
447             // otherwise: use accumulated is_ignored state.
448             Some(BlockFrame::TailExpr { tail_result_is_ignored: ignored }) |
449             Some(BlockFrame::Statement { ignores_expr_result: ignored }) => *ignored,
450         }
451     }
452 }
453
454 #[derive(Debug)]
455 enum LocalsForNode {
456     /// In the usual case, a node-id for an identifier maps to at most
457     /// one Local declaration.
458     One(Local),
459
460     /// The exceptional case is identifiers in a match arm's pattern
461     /// that are referenced in a guard of that match arm. For these,
462     /// we can have `2+k` Locals, where `k` is the number of candidate
463     /// patterns (separated by `|`) in the arm.
464     ///
465     /// * `for_arm_body` is the Local used in the arm body (which is
466     ///   just like the `One` case above),
467     ///
468     /// * `ref_for_guard` is the Local used in the arm's guard (which
469     ///   is a reference to a temp that is an alias of
470     ///   `for_arm_body`).
471     ///
472     /// * `vals_for_guard` is the `k` Locals; at most one of them will
473     ///   get initialized by the arm's execution, and after it is
474     ///   initialized, `ref_for_guard` will be assigned a reference to
475     ///   it.
476     ///
477     /// There reason we have `k` Locals rather than just 1 is to
478     /// accommodate some restrictions imposed by two-phase borrows,
479     /// which apply when we have a `ref mut` pattern.
480     ForGuard { vals_for_guard: Vec<Local>, ref_for_guard: Local, for_arm_body: Local },
481 }
482
483 #[derive(Debug)]
484 struct GuardFrameLocal {
485     id: ast::NodeId,
486 }
487
488 impl GuardFrameLocal {
489     fn new(id: ast::NodeId, _binding_mode: BindingMode) -> Self {
490         GuardFrameLocal {
491             id: id,
492         }
493     }
494 }
495
496 #[derive(Debug)]
497 struct GuardFrame {
498     /// These are the id's of names that are bound by patterns of the
499     /// arm of *this* guard.
500     ///
501     /// (Frames higher up the stack will have the id's bound in arms
502     /// further out, such as in a case like:
503     ///
504     /// match E1 {
505     ///      P1(id1) if (... (match E2 { P2(id2) if ... => B2 })) => B1,
506     /// }
507     ///
508     /// here, when building for FIXME
509     locals: Vec<GuardFrameLocal>,
510 }
511
512 /// ForGuard indicates whether we are talking about:
513 ///   1. the temp for a local binding used solely within guard expressions,
514 ///   2. the temp that holds reference to (1.), which is actually what the
515 ///      guard expressions see, or
516 ///   3. the temp for use outside of guard expressions.
517 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
518 enum ForGuard {
519     /// The `usize` identifies for which candidate pattern we want the
520     /// local binding. We keep a temp per-candidate to accommodate
521     /// two-phase borrows (see `LocalsForNode` documentation).
522     ValWithinGuard(usize),
523     RefWithinGuard,
524     OutsideGuard,
525 }
526
527 impl LocalsForNode {
528     fn local_id(&self, for_guard: ForGuard) -> Local {
529         match (self, for_guard) {
530             (&LocalsForNode::One(local_id), ForGuard::OutsideGuard) |
531             (&LocalsForNode::ForGuard { ref_for_guard: local_id, .. }, ForGuard::RefWithinGuard) |
532             (&LocalsForNode::ForGuard { for_arm_body: local_id, .. }, ForGuard::OutsideGuard) =>
533                 local_id,
534
535             (&LocalsForNode::ForGuard { ref vals_for_guard, .. },
536              ForGuard::ValWithinGuard(pat_idx)) =>
537                 vals_for_guard[pat_idx],
538
539             (&LocalsForNode::One(_), ForGuard::ValWithinGuard(_)) |
540             (&LocalsForNode::One(_), ForGuard::RefWithinGuard) =>
541                 bug!("anything with one local should never be within a guard."),
542         }
543     }
544 }
545
546 struct CFG<'tcx> {
547     basic_blocks: IndexVec<BasicBlock, BasicBlockData<'tcx>>,
548 }
549
550 newtype_index! {
551     pub struct ScopeId { .. }
552 }
553
554 ///////////////////////////////////////////////////////////////////////////
555 /// The `BlockAnd` "monad" packages up the new basic block along with a
556 /// produced value (sometimes just unit, of course). The `unpack!`
557 /// macro (and methods below) makes working with `BlockAnd` much more
558 /// convenient.
559
560 #[must_use = "if you don't use one of these results, you're leaving a dangling edge"]
561 struct BlockAnd<T>(BasicBlock, T);
562
563 trait BlockAndExtension {
564     fn and<T>(self, v: T) -> BlockAnd<T>;
565     fn unit(self) -> BlockAnd<()>;
566 }
567
568 impl BlockAndExtension for BasicBlock {
569     fn and<T>(self, v: T) -> BlockAnd<T> {
570         BlockAnd(self, v)
571     }
572
573     fn unit(self) -> BlockAnd<()> {
574         BlockAnd(self, ())
575     }
576 }
577
578 /// Update a block pointer and return the value.
579 /// Use it like `let x = unpack!(block = self.foo(block, foo))`.
580 macro_rules! unpack {
581     ($x:ident = $c:expr) => {
582         {
583             let BlockAnd(b, v) = $c;
584             $x = b;
585             v
586         }
587     };
588
589     ($c:expr) => {
590         {
591             let BlockAnd(b, ()) = $c;
592             b
593         }
594     };
595 }
596
597 fn should_abort_on_panic<'a, 'gcx, 'tcx>(tcx: TyCtxt<'a, 'gcx, 'tcx>,
598                                          fn_def_id: DefId,
599                                          abi: Abi)
600                                          -> bool {
601     // Not callable from C, so we can safely unwind through these
602     if abi == Abi::Rust || abi == Abi::RustCall { return false; }
603
604     // We never unwind, so it's not relevant to stop an unwind
605     if tcx.sess.panic_strategy() != PanicStrategy::Unwind { return false; }
606
607     // We cannot add landing pads, so don't add one
608     if tcx.sess.no_landing_pads() { return false; }
609
610     // This is a special case: some functions have a C abi but are meant to
611     // unwind anyway. Don't stop them.
612     let attrs = &tcx.get_attrs(fn_def_id);
613     match attr::find_unwind_attr(Some(tcx.sess.diagnostic()), attrs) {
614         None => true,
615         Some(UnwindAttr::Allowed) => false,
616         Some(UnwindAttr::Aborts) => true,
617     }
618 }
619
620 ///////////////////////////////////////////////////////////////////////////
621 /// the main entry point for building MIR for a function
622
623 struct ArgInfo<'gcx>(Ty<'gcx>,
624                      Option<Span>,
625                      Option<&'gcx hir::Pat>,
626                      Option<ImplicitSelfKind>);
627
628 fn construct_fn<'a, 'gcx, 'tcx, A>(hir: Cx<'a, 'gcx, 'tcx>,
629                                    fn_id: ast::NodeId,
630                                    arguments: A,
631                                    safety: Safety,
632                                    abi: Abi,
633                                    return_ty: Ty<'gcx>,
634                                    yield_ty: Option<Ty<'gcx>>,
635                                    return_ty_span: Span,
636                                    body: &'gcx hir::Body)
637                                    -> Mir<'tcx>
638     where A: Iterator<Item=ArgInfo<'gcx>>
639 {
640     let arguments: Vec<_> = arguments.collect();
641
642     let tcx = hir.tcx();
643     let tcx_hir = tcx.hir();
644     let span = tcx_hir.span(fn_id);
645
646     let hir_tables = hir.tables();
647     let fn_def_id = tcx_hir.local_def_id(fn_id);
648
649     // Gather the upvars of a closure, if any.
650     let upvar_decls: Vec<_> = match hir_tables.upvar_list.get(&fn_def_id) {
651         Some(upvars) => upvars
652             .iter()
653             .map(|upvar_id| {
654                 let var_hir_id = upvar_id.var_path.hir_id;
655                 let var_node_id = tcx_hir.hir_to_node_id(var_hir_id);
656                 let capture = hir_tables.upvar_capture(*upvar_id);
657                 let by_ref = match capture {
658                     ty::UpvarCapture::ByValue => false,
659                     ty::UpvarCapture::ByRef(..) => true,
660                 };
661                 let mut decl = UpvarDecl {
662                     debug_name: keywords::Invalid.name(),
663                     var_hir_id: ClearCrossCrate::Set(var_hir_id),
664                     by_ref,
665                     mutability: Mutability::Not,
666                 };
667                 if let Some(Node::Binding(pat)) = tcx_hir.find(var_node_id) {
668                     if let hir::PatKind::Binding(_, _, ident, _) = pat.node {
669                         decl.debug_name = ident.name;
670                         if let Some(&bm) = hir.tables.pat_binding_modes().get(pat.hir_id) {
671                             if bm == ty::BindByValue(hir::MutMutable) {
672                                 decl.mutability = Mutability::Mut;
673                             } else {
674                                 decl.mutability = Mutability::Not;
675                             }
676                         } else {
677                             tcx.sess.delay_span_bug(pat.span, "missing binding mode");
678                         }
679                     }
680                 }
681                 decl
682             })
683             .collect(),
684         _ => vec![],
685     };
686
687     let mut builder = Builder::new(hir,
688         span,
689         arguments.len(),
690         safety,
691         return_ty,
692         return_ty_span,
693         upvar_decls);
694
695     let call_site_scope = region::Scope {
696         id: body.value.hir_id.local_id,
697         data: region::ScopeData::CallSite
698     };
699     let arg_scope = region::Scope {
700         id: body.value.hir_id.local_id,
701         data: region::ScopeData::Arguments
702     };
703     let mut block = START_BLOCK;
704     let source_info = builder.source_info(span);
705     let call_site_s = (call_site_scope, source_info);
706     unpack!(block = builder.in_scope(call_site_s, LintLevel::Inherited, block, |builder| {
707         if should_abort_on_panic(tcx, fn_def_id, abi) {
708             builder.schedule_abort();
709         }
710
711         let arg_scope_s = (arg_scope, source_info);
712         unpack!(block = builder.in_scope(arg_scope_s, LintLevel::Inherited, block, |builder| {
713             builder.args_and_body(block, &arguments, arg_scope, &body.value)
714         }));
715         // Attribute epilogue to function's closing brace
716         let fn_end = span.shrink_to_hi();
717         let source_info = builder.source_info(fn_end);
718         let return_block = builder.return_block();
719         builder.cfg.terminate(block, source_info,
720                               TerminatorKind::Goto { target: return_block });
721         builder.cfg.terminate(return_block, source_info,
722                               TerminatorKind::Return);
723         // Attribute any unreachable codepaths to the function's closing brace
724         if let Some(unreachable_block) = builder.cached_unreachable_block {
725             builder.cfg.terminate(unreachable_block, source_info,
726                                   TerminatorKind::Unreachable);
727         }
728         return_block.unit()
729     }));
730     assert_eq!(block, builder.return_block());
731
732     let mut spread_arg = None;
733     if abi == Abi::RustCall {
734         // RustCall pseudo-ABI untuples the last argument.
735         spread_arg = Some(Local::new(arguments.len()));
736     }
737     let closure_expr_id = tcx_hir.local_def_id(fn_id);
738     info!("fn_id {:?} has attrs {:?}", closure_expr_id,
739           tcx.get_attrs(closure_expr_id));
740
741     let mut mir = builder.finish(yield_ty);
742     mir.spread_arg = spread_arg;
743     mir
744 }
745
746 fn construct_const<'a, 'gcx, 'tcx>(
747     hir: Cx<'a, 'gcx, 'tcx>,
748     body_id: hir::BodyId,
749     ty_span: Span,
750 ) -> Mir<'tcx> {
751     let tcx = hir.tcx();
752     let ast_expr = &tcx.hir().body(body_id).value;
753     let ty = hir.tables().expr_ty_adjusted(ast_expr);
754     let owner_id = tcx.hir().body_owner(body_id);
755     let span = tcx.hir().span(owner_id);
756     let mut builder = Builder::new(hir, span, 0, Safety::Safe, ty, ty_span,vec![]);
757
758     let mut block = START_BLOCK;
759     let expr = builder.hir.mirror(ast_expr);
760     unpack!(block = builder.into_expr(&Place::Local(RETURN_PLACE), block, expr));
761
762     let source_info = builder.source_info(span);
763     builder.cfg.terminate(block, source_info, TerminatorKind::Return);
764
765     // Constants can't `return` so a return block should not be created.
766     assert_eq!(builder.cached_return_block, None);
767
768     // Constants may be match expressions in which case an unreachable block may
769     // be created, so terminate it properly.
770     if let Some(unreachable_block) = builder.cached_unreachable_block {
771         builder.cfg.terminate(unreachable_block, source_info,
772                               TerminatorKind::Unreachable);
773     }
774
775     builder.finish(None)
776 }
777
778 fn construct_error<'a, 'gcx, 'tcx>(hir: Cx<'a, 'gcx, 'tcx>,
779                                    body_id: hir::BodyId)
780                                    -> Mir<'tcx> {
781     let owner_id = hir.tcx().hir().body_owner(body_id);
782     let span = hir.tcx().hir().span(owner_id);
783     let ty = hir.tcx().types.err;
784     let mut builder = Builder::new(hir, span, 0, Safety::Safe, ty, span, vec![]);
785     let source_info = builder.source_info(span);
786     builder.cfg.terminate(START_BLOCK, source_info, TerminatorKind::Unreachable);
787     builder.finish(None)
788 }
789
790 impl<'a, 'gcx, 'tcx> Builder<'a, 'gcx, 'tcx> {
791     fn new(hir: Cx<'a, 'gcx, 'tcx>,
792            span: Span,
793            arg_count: usize,
794            safety: Safety,
795            return_ty: Ty<'tcx>,
796            return_span: Span,
797            upvar_decls: Vec<UpvarDecl>)
798            -> Builder<'a, 'gcx, 'tcx> {
799         let lint_level = LintLevel::Explicit(hir.root_lint_level);
800         let mut builder = Builder {
801             hir,
802             cfg: CFG { basic_blocks: IndexVec::new() },
803             fn_span: span,
804             arg_count,
805             scopes: vec![],
806             block_context: BlockContext::new(),
807             source_scopes: IndexVec::new(),
808             source_scope: OUTERMOST_SOURCE_SCOPE,
809             source_scope_local_data: IndexVec::new(),
810             guard_context: vec![],
811             push_unsafe_count: 0,
812             unpushed_unsafe: safety,
813             breakable_scopes: vec![],
814             local_decls: IndexVec::from_elem_n(
815                 LocalDecl::new_return_place(return_ty, return_span),
816                 1,
817             ),
818             canonical_user_type_annotations: IndexVec::new(),
819             upvar_decls,
820             var_indices: Default::default(),
821             unit_temp: None,
822             cached_resume_block: None,
823             cached_return_block: None,
824             cached_unreachable_block: None,
825         };
826
827         assert_eq!(builder.cfg.start_new_block(), START_BLOCK);
828         assert_eq!(
829             builder.new_source_scope(span, lint_level, Some(safety)),
830             OUTERMOST_SOURCE_SCOPE);
831         builder.source_scopes[OUTERMOST_SOURCE_SCOPE].parent_scope = None;
832
833         builder
834     }
835
836     fn finish(self,
837               yield_ty: Option<Ty<'tcx>>)
838               -> Mir<'tcx> {
839         for (index, block) in self.cfg.basic_blocks.iter().enumerate() {
840             if block.terminator.is_none() {
841                 span_bug!(self.fn_span, "no terminator on block {:?}", index);
842             }
843         }
844
845         Mir::new(
846             self.cfg.basic_blocks,
847             self.source_scopes,
848             ClearCrossCrate::Set(self.source_scope_local_data),
849             IndexVec::new(),
850             yield_ty,
851             self.local_decls,
852             self.canonical_user_type_annotations,
853             self.arg_count,
854             self.upvar_decls,
855             self.fn_span,
856             self.hir.control_flow_destroyed(),
857         )
858     }
859
860     fn args_and_body(&mut self,
861                      mut block: BasicBlock,
862                      arguments: &[ArgInfo<'gcx>],
863                      argument_scope: region::Scope,
864                      ast_body: &'gcx hir::Expr)
865                      -> BlockAnd<()>
866     {
867         // Allocate locals for the function arguments
868         for &ArgInfo(ty, _, pattern, _) in arguments.iter() {
869             // If this is a simple binding pattern, give the local a name for
870             // debuginfo and so that error reporting knows that this is a user
871             // variable. For any other pattern the pattern introduces new
872             // variables which will be named instead.
873             let mut name = None;
874             if let Some(pat) = pattern {
875                 match pat.node {
876                     hir::PatKind::Binding(hir::BindingAnnotation::Unannotated, _, ident, _)
877                     | hir::PatKind::Binding(hir::BindingAnnotation::Mutable, _, ident, _) => {
878                         name = Some(ident.name);
879                     }
880                     _ => (),
881                 }
882             }
883
884             let source_info = SourceInfo {
885                 scope: OUTERMOST_SOURCE_SCOPE,
886                 span: pattern.map_or(self.fn_span, |pat| pat.span)
887             };
888             self.local_decls.push(LocalDecl {
889                 mutability: Mutability::Mut,
890                 ty,
891                 user_ty: UserTypeProjections::none(),
892                 source_info,
893                 visibility_scope: source_info.scope,
894                 name,
895                 internal: false,
896                 is_user_variable: None,
897                 is_block_tail: None,
898             });
899         }
900
901         let mut scope = None;
902         // Bind the argument patterns
903         for (index, arg_info) in arguments.iter().enumerate() {
904             // Function arguments always get the first Local indices after the return place
905             let local = Local::new(index + 1);
906             let place = Place::Local(local);
907             let &ArgInfo(ty, opt_ty_info, pattern, ref self_binding) = arg_info;
908
909             if let Some(pattern) = pattern {
910                 let pattern = self.hir.pattern_from_hir(pattern);
911                 let span = pattern.span;
912
913                 match *pattern.kind {
914                     // Don't introduce extra copies for simple bindings
915                     PatternKind::Binding { mutability, var, mode: BindingMode::ByValue, .. } => {
916                         self.local_decls[local].mutability = mutability;
917                         self.local_decls[local].is_user_variable =
918                             if let Some(kind) = self_binding {
919                                 Some(ClearCrossCrate::Set(BindingForm::ImplicitSelf(*kind)))
920                             } else {
921                                 let binding_mode = ty::BindingMode::BindByValue(mutability.into());
922                                 Some(ClearCrossCrate::Set(BindingForm::Var(VarBindingForm {
923                                     binding_mode,
924                                     opt_ty_info,
925                                     opt_match_place: Some((Some(place.clone()), span)),
926                                     pat_span: span,
927                                 })))
928                             };
929                         self.var_indices.insert(var, LocalsForNode::One(local));
930                     }
931                     _ => {
932                         scope = self.declare_bindings(scope, ast_body.span,
933                                                       LintLevel::Inherited, &[pattern.clone()],
934                                                       matches::ArmHasGuard(false),
935                                                       Some((Some(&place), span)));
936                         unpack!(block = self.place_into_pattern(block, pattern, &place, false));
937                     }
938                 }
939             }
940
941             // Make sure we drop (parts of) the argument even when not matched on.
942             self.schedule_drop(
943                 pattern.as_ref().map_or(ast_body.span, |pat| pat.span),
944                 argument_scope, &place, ty,
945                 DropKind::Value { cached_block: CachedBlock::default() },
946             );
947         }
948
949         // Enter the argument pattern bindings source scope, if it exists.
950         if let Some(source_scope) = scope {
951             self.source_scope = source_scope;
952         }
953
954         let body = self.hir.mirror(ast_body);
955         self.into(&Place::Local(RETURN_PLACE), block, body)
956     }
957
958     fn get_unit_temp(&mut self) -> Place<'tcx> {
959         match self.unit_temp {
960             Some(ref tmp) => tmp.clone(),
961             None => {
962                 let ty = self.hir.unit_ty();
963                 let fn_span = self.fn_span;
964                 let tmp = self.temp(ty, fn_span);
965                 self.unit_temp = Some(tmp.clone());
966                 tmp
967             }
968         }
969     }
970
971     fn return_block(&mut self) -> BasicBlock {
972         match self.cached_return_block {
973             Some(rb) => rb,
974             None => {
975                 let rb = self.cfg.start_new_block();
976                 self.cached_return_block = Some(rb);
977                 rb
978             }
979         }
980     }
981
982     fn unreachable_block(&mut self) -> BasicBlock {
983         match self.cached_unreachable_block {
984             Some(ub) => ub,
985             None => {
986                 let ub = self.cfg.start_new_block();
987                 self.cached_unreachable_block = Some(ub);
988                 ub
989             }
990         }
991     }
992 }
993
994 ///////////////////////////////////////////////////////////////////////////
995 // Builder methods are broken up into modules, depending on what kind
996 // of thing is being lowered. Note that they use the `unpack` macro
997 // above extensively.
998
999 mod block;
1000 mod cfg;
1001 mod expr;
1002 mod into;
1003 mod matches;
1004 mod misc;
1005 mod scope;