]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/transform/const_prop.rs
code review fixes
[rust.git] / src / librustc_mir / transform / const_prop.rs
1 //! Propagates constants for early reporting of statically known
2 //! assertion failures
3
4 use std::cell::Cell;
5
6 use rustc::hir::def::DefKind;
7 use rustc::mir::{
8     AggregateKind, Constant, Location, Place, PlaceBase, Body, Operand, Rvalue,
9     Local, NullOp, UnOp, StatementKind, Statement, LocalKind, Static, StaticKind,
10     TerminatorKind, Terminator,  ClearCrossCrate, SourceInfo, BinOp, ProjectionElem,
11     SourceScope, SourceScopeLocalData, LocalDecl, Promoted,
12 };
13 use rustc::mir::visit::{
14     Visitor, PlaceContext, MutatingUseContext, MutVisitor, NonMutatingUseContext,
15 };
16 use rustc::mir::interpret::{Scalar, GlobalId, InterpResult, PanicInfo};
17 use rustc::ty::{self, Instance, ParamEnv, Ty, TyCtxt};
18 use syntax_pos::{Span, DUMMY_SP};
19 use rustc::ty::subst::InternalSubsts;
20 use rustc_data_structures::indexed_vec::IndexVec;
21 use rustc::ty::layout::{
22     LayoutOf, TyLayout, LayoutError, HasTyCtxt, TargetDataLayout, HasDataLayout, Size,
23 };
24
25 use crate::interpret::{
26     self, InterpCx, ScalarMaybeUndef, Immediate, OpTy,
27     ImmTy, MemoryKind, StackPopCleanup, LocalValue, LocalState,
28 };
29 use crate::const_eval::{
30     CompileTimeInterpreter, error_to_const_error, eval_promoted, mk_eval_cx,
31 };
32 use crate::transform::{MirPass, MirSource};
33
34 pub struct ConstProp;
35
36 impl MirPass for ConstProp {
37     fn run_pass<'tcx>(&self, tcx: TyCtxt<'tcx>, source: MirSource<'tcx>, body: &mut Body<'tcx>) {
38         // will be evaluated by miri and produce its errors there
39         if source.promoted.is_some() {
40             return;
41         }
42
43         use rustc::hir::map::blocks::FnLikeNode;
44         let hir_id = tcx.hir().as_local_hir_id(source.def_id())
45                               .expect("Non-local call to local provider is_const_fn");
46
47         let is_fn_like = FnLikeNode::from_node(tcx.hir().get(hir_id)).is_some();
48         let is_assoc_const = match tcx.def_kind(source.def_id()) {
49             Some(DefKind::AssocConst) => true,
50             _ => false,
51         };
52
53         // Only run const prop on functions, methods, closures and associated constants
54         if !is_fn_like && !is_assoc_const  {
55             // skip anon_const/statics/consts because they'll be evaluated by miri anyway
56             trace!("ConstProp skipped for {:?}", source.def_id());
57             return
58         }
59
60         trace!("ConstProp starting for {:?}", source.def_id());
61
62         // Steal some data we need from `body`.
63         let source_scope_local_data = std::mem::replace(
64             &mut body.source_scope_local_data,
65             ClearCrossCrate::Clear
66         );
67         let promoted = std::mem::replace(
68             &mut body.promoted,
69             IndexVec::new()
70         );
71
72         let dummy_body =
73             &Body::new(
74                 body.basic_blocks().clone(),
75                 Default::default(),
76                 ClearCrossCrate::Clear,
77                 Default::default(),
78                 None,
79                 body.local_decls.clone(),
80                 Default::default(),
81                 body.arg_count,
82                 Default::default(),
83                 tcx.def_span(source.def_id()),
84                 Default::default(),
85             );
86
87         // FIXME(oli-obk, eddyb) Optimize locals (or even local paths) to hold
88         // constants, instead of just checking for const-folding succeeding.
89         // That would require an uniform one-def no-mutation analysis
90         // and RPO (or recursing when needing the value of a local).
91         let mut optimization_finder = ConstPropagator::new(
92             body,
93             dummy_body,
94             source_scope_local_data,
95             promoted,
96             tcx,
97             source
98         );
99         optimization_finder.visit_body(body);
100
101         // put back the data we stole from `mir`
102         let (source_scope_local_data, promoted) = optimization_finder.release_stolen_data();
103         std::mem::replace(
104             &mut body.source_scope_local_data,
105             source_scope_local_data
106         );
107         std::mem::replace(
108             &mut body.promoted,
109             promoted
110         );
111
112         trace!("ConstProp done for {:?}", source.def_id());
113     }
114 }
115
116 type Const<'tcx> = OpTy<'tcx>;
117
118 /// Finds optimization opportunities on the MIR.
119 struct ConstPropagator<'mir, 'tcx> {
120     ecx: InterpCx<'mir, 'tcx, CompileTimeInterpreter<'mir, 'tcx>>,
121     tcx: TyCtxt<'tcx>,
122     source: MirSource<'tcx>,
123     can_const_prop: IndexVec<Local, bool>,
124     param_env: ParamEnv<'tcx>,
125     source_scope_local_data: ClearCrossCrate<IndexVec<SourceScope, SourceScopeLocalData>>,
126     local_decls: IndexVec<Local, LocalDecl<'tcx>>,
127     promoted: IndexVec<Promoted, Body<'tcx>>,
128 }
129
130 impl<'mir, 'tcx> LayoutOf for ConstPropagator<'mir, 'tcx> {
131     type Ty = Ty<'tcx>;
132     type TyLayout = Result<TyLayout<'tcx>, LayoutError<'tcx>>;
133
134     fn layout_of(&self, ty: Ty<'tcx>) -> Self::TyLayout {
135         self.tcx.layout_of(self.param_env.and(ty))
136     }
137 }
138
139 impl<'mir, 'tcx> HasDataLayout for ConstPropagator<'mir, 'tcx> {
140     #[inline]
141     fn data_layout(&self) -> &TargetDataLayout {
142         &self.tcx.data_layout
143     }
144 }
145
146 impl<'mir, 'tcx> HasTyCtxt<'tcx> for ConstPropagator<'mir, 'tcx> {
147     #[inline]
148     fn tcx(&self) -> TyCtxt<'tcx> {
149         self.tcx
150     }
151 }
152
153 impl<'mir, 'tcx> ConstPropagator<'mir, 'tcx> {
154     fn new(
155         body: &Body<'tcx>,
156         dummy_body: &'mir Body<'tcx>,
157         source_scope_local_data: ClearCrossCrate<IndexVec<SourceScope, SourceScopeLocalData>>,
158         promoted: IndexVec<Promoted, Body<'tcx>>,
159         tcx: TyCtxt<'tcx>,
160         source: MirSource<'tcx>,
161     ) -> ConstPropagator<'mir, 'tcx> {
162         let def_id = source.def_id();
163         let param_env = tcx.param_env(def_id);
164         let span = tcx.def_span(def_id);
165         let mut ecx = mk_eval_cx(tcx, span, param_env);
166         let can_const_prop = CanConstProp::check(body);
167
168         ecx.push_stack_frame(
169             Instance::new(def_id, &InternalSubsts::identity_for_item(tcx, def_id)),
170             span,
171             dummy_body,
172             None,
173             StackPopCleanup::None {
174                 cleanup: false,
175             },
176         ).expect("failed to push initial stack frame");
177
178         ConstPropagator {
179             ecx,
180             tcx,
181             source,
182             param_env,
183             can_const_prop,
184             source_scope_local_data,
185             //FIXME(wesleywiser) we can't steal this because `Visitor::super_visit_body()` needs it
186             local_decls: body.local_decls.clone(),
187             promoted,
188         }
189     }
190
191     fn release_stolen_data(
192         self,
193     ) -> (
194         ClearCrossCrate<IndexVec<SourceScope, SourceScopeLocalData>>,
195         IndexVec<Promoted, Body<'tcx>>,
196     ) {
197         (self.source_scope_local_data, self.promoted)
198     }
199
200     fn get_const(&self, local: Local) -> Option<Const<'tcx>> {
201         let l = &self.ecx.frame().locals[local];
202
203         // If the local is `Unitialized` or `Dead` then we haven't propagated a value into it.
204         //
205         // `InterpCx::access_local()` mostly takes care of this for us however, for ZSTs,
206         // it will synthesize a value for us. In doing so, that will cause the
207         // `get_const(l).is_empty()` assert right before we call `set_const()` in `visit_statement`
208         // to fail.
209         if let LocalValue::Uninitialized | LocalValue::Dead = l.value {
210             return None;
211         }
212
213         self.ecx.access_local(self.ecx.frame(), local, None).ok()
214     }
215
216     fn set_const(&mut self, local: Local, c: Const<'tcx>) {
217         let frame = self.ecx.frame_mut();
218
219         if let Some(layout) = frame.locals[local].layout.get() {
220             debug_assert_eq!(c.layout, layout);
221         }
222
223         frame.locals[local] = LocalState {
224             value: LocalValue::Live(*c),
225             layout: Cell::new(Some(c.layout)),
226         };
227     }
228
229     fn remove_const(&mut self, local: Local) {
230         self.ecx.frame_mut().locals[local] = LocalState {
231             value: LocalValue::Uninitialized,
232             layout: Cell::new(None),
233         };
234     }
235
236     fn use_ecx<F, T>(
237         &mut self,
238         source_info: SourceInfo,
239         f: F
240     ) -> Option<T>
241     where
242         F: FnOnce(&mut Self) -> InterpResult<'tcx, T>,
243     {
244         self.ecx.tcx.span = source_info.span;
245         let lint_root = match self.source_scope_local_data {
246             ClearCrossCrate::Set(ref ivs) => {
247                 //FIXME(#51314): remove this check
248                 if source_info.scope.index() >= ivs.len() {
249                     return None;
250                 }
251                 ivs[source_info.scope].lint_root
252             },
253             ClearCrossCrate::Clear => return None,
254         };
255         let r = match f(self) {
256             Ok(val) => Some(val),
257             Err(error) => {
258                 let diagnostic = error_to_const_error(&self.ecx, error);
259                 use rustc::mir::interpret::InterpError::*;
260                 match diagnostic.error {
261                     Exit(_) => bug!("the CTFE program cannot exit"),
262                     Unsupported(_)
263                     | UndefinedBehaviour(_)
264                     | InvalidProgram(_)
265                     | ResourceExhaustion(_) => {
266                         // Ignore these errors.
267                     }
268                     Panic(_) => {
269                         diagnostic.report_as_lint(
270                             self.ecx.tcx,
271                             "this expression will panic at runtime",
272                             lint_root,
273                             None,
274                         );
275                     }
276                 }
277                 None
278             },
279         };
280         self.ecx.tcx.span = DUMMY_SP;
281         r
282     }
283
284     fn eval_constant(
285         &mut self,
286         c: &Constant<'tcx>,
287     ) -> Option<Const<'tcx>> {
288         self.ecx.tcx.span = c.span;
289         match self.ecx.eval_const_to_op(c.literal, None) {
290             Ok(op) => {
291                 Some(op)
292             },
293             Err(error) => {
294                 let err = error_to_const_error(&self.ecx, error);
295                 err.report_as_error(self.ecx.tcx, "erroneous constant used");
296                 None
297             },
298         }
299     }
300
301     fn eval_place(&mut self, place: &Place<'tcx>, source_info: SourceInfo) -> Option<Const<'tcx>> {
302         trace!("eval_place(place={:?})", place);
303         place.iterate(|place_base, place_projection| {
304             let mut eval = match place_base {
305                 PlaceBase::Local(loc) => self.get_const(*loc).clone()?,
306                 PlaceBase::Static(box Static {kind: StaticKind::Promoted(promoted), ..}) => {
307                     let generics = self.tcx.generics_of(self.source.def_id());
308                     if generics.requires_monomorphization(self.tcx) {
309                         // FIXME: can't handle code with generics
310                         return None;
311                     }
312                     let substs = InternalSubsts::identity_for_item(self.tcx, self.source.def_id());
313                     let instance = Instance::new(self.source.def_id(), substs);
314                     let cid = GlobalId {
315                         instance,
316                         promoted: Some(*promoted),
317                     };
318                     // cannot use `const_eval` here, because that would require having the MIR
319                     // for the current function available, but we're producing said MIR right now
320                     let res = self.use_ecx(source_info, |this| {
321                         let body = &this.promoted[*promoted];
322                         eval_promoted(this.tcx, cid, body, this.param_env)
323                     })?;
324                     trace!("evaluated promoted {:?} to {:?}", promoted, res);
325                     res.into()
326                 }
327                 _ => return None,
328             };
329
330             for proj in place_projection {
331                 match proj.elem {
332                     ProjectionElem::Field(field, _) => {
333                         trace!("field proj on {:?}", proj.base);
334                         eval = self.use_ecx(source_info, |this| {
335                             this.ecx.operand_field(eval, field.index() as u64)
336                         })?;
337                     },
338                     ProjectionElem::Deref => {
339                         trace!("processing deref");
340                         eval = self.use_ecx(source_info, |this| {
341                             this.ecx.deref_operand(eval)
342                         })?.into();
343                     }
344                     // We could get more projections by using e.g., `operand_projection`,
345                     // but we do not even have the stack frame set up properly so
346                     // an `Index` projection would throw us off-track.
347                     _ => return None,
348                 }
349             }
350
351             Some(eval)
352         })
353     }
354
355     fn eval_operand(&mut self, op: &Operand<'tcx>, source_info: SourceInfo) -> Option<Const<'tcx>> {
356         match *op {
357             Operand::Constant(ref c) => self.eval_constant(c),
358             | Operand::Move(ref place)
359             | Operand::Copy(ref place) => self.eval_place(place, source_info),
360         }
361     }
362
363     fn const_prop(
364         &mut self,
365         rvalue: &Rvalue<'tcx>,
366         place_layout: TyLayout<'tcx>,
367         source_info: SourceInfo,
368     ) -> Option<Const<'tcx>> {
369         let span = source_info.span;
370         match *rvalue {
371             Rvalue::Use(ref op) => {
372                 self.eval_operand(op, source_info)
373             },
374             Rvalue::Ref(_, _, ref place) => {
375                 let src = self.eval_place(place, source_info)?;
376                 let mplace = src.try_as_mplace().ok()?;
377                 Some(ImmTy::from_scalar(mplace.ptr.into(), place_layout).into())
378             },
379             Rvalue::Repeat(..) |
380             Rvalue::Aggregate(..) |
381             Rvalue::NullaryOp(NullOp::Box, _) |
382             Rvalue::Discriminant(..) => None,
383
384             Rvalue::Cast(kind, ref operand, _) => {
385                 let op = self.eval_operand(operand, source_info)?;
386                 self.use_ecx(source_info, |this| {
387                     let dest = this.ecx.allocate(place_layout, MemoryKind::Stack);
388                     this.ecx.cast(op, kind, dest.into())?;
389                     Ok(dest.into())
390                 })
391             },
392             Rvalue::Len(ref place) => {
393                 let place = self.eval_place(&place, source_info)?;
394                 let mplace = place.try_as_mplace().ok()?;
395
396                 if let ty::Slice(_) = mplace.layout.ty.sty {
397                     let len = mplace.meta.unwrap().to_usize(&self.ecx).unwrap();
398
399                     Some(ImmTy {
400                         imm: Immediate::Scalar(
401                             Scalar::from_uint(
402                                 len,
403                                 Size::from_bits(
404                                     self.tcx.sess.target.usize_ty.bit_width().unwrap() as u64
405                                 )
406                             ).into(),
407                         ),
408                         layout: self.tcx.layout_of(self.param_env.and(self.tcx.types.usize)).ok()?,
409                     }.into())
410                 } else {
411                     trace!("not slice: {:?}", mplace.layout.ty.sty);
412                     None
413                 }
414             },
415             Rvalue::NullaryOp(NullOp::SizeOf, ty) => {
416                 type_size_of(self.tcx, self.param_env, ty).and_then(|n| Some(
417                     ImmTy {
418                         imm: Immediate::Scalar(
419                             Scalar::from_uint(n, self.tcx.data_layout.pointer_size).into()
420                         ),
421                         layout: self.tcx.layout_of(self.param_env.and(self.tcx.types.usize)).ok()?,
422                     }.into()
423                 ))
424             }
425             Rvalue::UnaryOp(op, ref arg) => {
426                 let def_id = if self.tcx.is_closure(self.source.def_id()) {
427                     self.tcx.closure_base_def_id(self.source.def_id())
428                 } else {
429                     self.source.def_id()
430                 };
431                 let generics = self.tcx.generics_of(def_id);
432                 if generics.requires_monomorphization(self.tcx) {
433                     // FIXME: can't handle code with generics
434                     return None;
435                 }
436
437                 let arg = self.eval_operand(arg, source_info)?;
438                 let val = self.use_ecx(source_info, |this| {
439                     let prim = this.ecx.read_immediate(arg)?;
440                     match op {
441                         UnOp::Neg => {
442                             // Need to do overflow check here: For actual CTFE, MIR
443                             // generation emits code that does this before calling the op.
444                             if prim.to_bits()? == (1 << (prim.layout.size.bits() - 1)) {
445                                 throw_panic!(OverflowNeg)
446                             }
447                         }
448                         UnOp::Not => {
449                             // Cannot overflow
450                         }
451                     }
452                     // Now run the actual operation.
453                     this.ecx.unary_op(op, prim)
454                 })?;
455                 let res = ImmTy {
456                     imm: Immediate::Scalar(val.into()),
457                     layout: place_layout,
458                 };
459                 Some(res.into())
460             }
461             Rvalue::CheckedBinaryOp(op, ref left, ref right) |
462             Rvalue::BinaryOp(op, ref left, ref right) => {
463                 trace!("rvalue binop {:?} for {:?} and {:?}", op, left, right);
464                 let right = self.eval_operand(right, source_info)?;
465                 let def_id = if self.tcx.is_closure(self.source.def_id()) {
466                     self.tcx.closure_base_def_id(self.source.def_id())
467                 } else {
468                     self.source.def_id()
469                 };
470                 let generics = self.tcx.generics_of(def_id);
471                 if generics.requires_monomorphization(self.tcx) {
472                     // FIXME: can't handle code with generics
473                     return None;
474                 }
475
476                 let r = self.use_ecx(source_info, |this| {
477                     this.ecx.read_immediate(right)
478                 })?;
479                 if op == BinOp::Shr || op == BinOp::Shl {
480                     let left_ty = left.ty(&self.local_decls, self.tcx);
481                     let left_bits = self
482                         .tcx
483                         .layout_of(self.param_env.and(left_ty))
484                         .unwrap()
485                         .size
486                         .bits();
487                     let right_size = right.layout.size;
488                     let r_bits = r.to_scalar().and_then(|r| r.to_bits(right_size));
489                     if r_bits.ok().map_or(false, |b| b >= left_bits as u128) {
490                         let source_scope_local_data = match self.source_scope_local_data {
491                             ClearCrossCrate::Set(ref data) => data,
492                             ClearCrossCrate::Clear => return None,
493                         };
494                         let dir = if op == BinOp::Shr {
495                             "right"
496                         } else {
497                             "left"
498                         };
499                         let hir_id = source_scope_local_data[source_info.scope].lint_root;
500                         self.tcx.lint_hir(
501                             ::rustc::lint::builtin::EXCEEDING_BITSHIFTS,
502                             hir_id,
503                             span,
504                             &format!("attempt to shift {} with overflow", dir));
505                         return None;
506                     }
507                 }
508                 let left = self.eval_operand(left, source_info)?;
509                 let l = self.use_ecx(source_info, |this| {
510                     this.ecx.read_immediate(left)
511                 })?;
512                 trace!("const evaluating {:?} for {:?} and {:?}", op, left, right);
513                 let (val, overflow) = self.use_ecx(source_info, |this| {
514                     this.ecx.binary_op(op, l, r)
515                 })?;
516                 let val = if let Rvalue::CheckedBinaryOp(..) = *rvalue {
517                     Immediate::ScalarPair(
518                         val.into(),
519                         Scalar::from_bool(overflow).into(),
520                     )
521                 } else {
522                     if overflow {
523                         let err = err_panic!(Overflow(op)).into();
524                         let _: Option<()> = self.use_ecx(source_info, |_| Err(err));
525                         return None;
526                     }
527                     Immediate::Scalar(val.into())
528                 };
529                 let res = ImmTy {
530                     imm: val,
531                     layout: place_layout,
532                 };
533                 Some(res.into())
534             },
535         }
536     }
537
538     fn operand_from_scalar(&self, scalar: Scalar, ty: Ty<'tcx>, span: Span) -> Operand<'tcx> {
539         Operand::Constant(Box::new(
540             Constant {
541                 span,
542                 ty,
543                 user_ty: None,
544                 literal: self.tcx.mk_const(*ty::Const::from_scalar(
545                     self.tcx,
546                     scalar,
547                     ty,
548                 ))
549             }
550         ))
551     }
552
553     fn replace_with_const(
554         &mut self,
555         rval: &mut Rvalue<'tcx>,
556         value: Const<'tcx>,
557         source_info: SourceInfo,
558     ) {
559         trace!("attepting to replace {:?} with {:?}", rval, value);
560         if let Err(e) = self.ecx.validate_operand(
561             value,
562             vec![],
563             // FIXME: is ref tracking too expensive?
564             Some(&mut interpret::RefTracking::empty()),
565         ) {
566             trace!("validation error, attempt failed: {:?}", e);
567             return;
568         }
569
570         // FIXME> figure out what tho do when try_read_immediate fails
571         let imm = self.use_ecx(source_info, |this| {
572             this.ecx.try_read_immediate(value)
573         });
574
575         if let Some(Ok(imm)) = imm {
576             match *imm {
577                 interpret::Immediate::Scalar(ScalarMaybeUndef::Scalar(scalar)) => {
578                     *rval = Rvalue::Use(
579                         self.operand_from_scalar(scalar, value.layout.ty, source_info.span));
580                 },
581                 Immediate::ScalarPair(
582                     ScalarMaybeUndef::Scalar(one),
583                     ScalarMaybeUndef::Scalar(two)
584                 ) => {
585                     let ty = &value.layout.ty.sty;
586                     if let ty::Tuple(substs) = ty {
587                         *rval = Rvalue::Aggregate(
588                             Box::new(AggregateKind::Tuple),
589                             vec![
590                                 self.operand_from_scalar(
591                                     one, substs[0].expect_ty(), source_info.span
592                                 ),
593                                 self.operand_from_scalar(
594                                     two, substs[1].expect_ty(), source_info.span
595                                 ),
596                             ],
597                         );
598                     }
599                 },
600                 _ => { }
601             }
602         }
603     }
604
605     fn should_const_prop(&self) -> bool {
606         self.tcx.sess.opts.debugging_opts.mir_opt_level >= 2
607     }
608 }
609
610 fn type_size_of<'tcx>(
611     tcx: TyCtxt<'tcx>,
612     param_env: ty::ParamEnv<'tcx>,
613     ty: Ty<'tcx>,
614 ) -> Option<u64> {
615     tcx.layout_of(param_env.and(ty)).ok().map(|layout| layout.size.bytes())
616 }
617
618 struct CanConstProp {
619     can_const_prop: IndexVec<Local, bool>,
620     // false at the beginning, once set, there are not allowed to be any more assignments
621     found_assignment: IndexVec<Local, bool>,
622 }
623
624 impl CanConstProp {
625     /// returns true if `local` can be propagated
626     fn check(body: &Body<'_>) -> IndexVec<Local, bool> {
627         let mut cpv = CanConstProp {
628             can_const_prop: IndexVec::from_elem(true, &body.local_decls),
629             found_assignment: IndexVec::from_elem(false, &body.local_decls),
630         };
631         for (local, val) in cpv.can_const_prop.iter_enumerated_mut() {
632             // cannot use args at all
633             // cannot use locals because if x < y { y - x } else { x - y } would
634             //        lint for x != y
635             // FIXME(oli-obk): lint variables until they are used in a condition
636             // FIXME(oli-obk): lint if return value is constant
637             *val = body.local_kind(local) == LocalKind::Temp;
638
639             if !*val {
640                 trace!("local {:?} can't be propagated because it's not a temporary", local);
641             }
642         }
643         cpv.visit_body(body);
644         cpv.can_const_prop
645     }
646 }
647
648 impl<'tcx> Visitor<'tcx> for CanConstProp {
649     fn visit_local(
650         &mut self,
651         &local: &Local,
652         context: PlaceContext,
653         _: Location,
654     ) {
655         use rustc::mir::visit::PlaceContext::*;
656         match context {
657             // Constants must have at most one write
658             // FIXME(oli-obk): we could be more powerful here, if the multiple writes
659             // only occur in independent execution paths
660             MutatingUse(MutatingUseContext::Store) => if self.found_assignment[local] {
661                 trace!("local {:?} can't be propagated because of multiple assignments", local);
662                 self.can_const_prop[local] = false;
663             } else {
664                 self.found_assignment[local] = true
665             },
666             // Reading constants is allowed an arbitrary number of times
667             NonMutatingUse(NonMutatingUseContext::Copy) |
668             NonMutatingUse(NonMutatingUseContext::Move) |
669             NonMutatingUse(NonMutatingUseContext::Inspect) |
670             NonMutatingUse(NonMutatingUseContext::Projection) |
671             MutatingUse(MutatingUseContext::Projection) |
672             NonUse(_) => {},
673             _ => {
674                 trace!("local {:?} can't be propagaged because it's used: {:?}", local, context);
675                 self.can_const_prop[local] = false;
676             },
677         }
678     }
679 }
680
681 impl<'mir, 'tcx> MutVisitor<'tcx> for ConstPropagator<'mir, 'tcx> {
682     fn visit_constant(
683         &mut self,
684         constant: &mut Constant<'tcx>,
685         location: Location,
686     ) {
687         trace!("visit_constant: {:?}", constant);
688         self.super_constant(constant, location);
689         self.eval_constant(constant);
690     }
691
692     fn visit_statement(
693         &mut self,
694         statement: &mut Statement<'tcx>,
695         location: Location,
696     ) {
697         trace!("visit_statement: {:?}", statement);
698         if let StatementKind::Assign(ref place, ref mut rval) = statement.kind {
699             let place_ty: Ty<'tcx> = place
700                 .ty(&self.local_decls, self.tcx)
701                 .ty;
702             if let Ok(place_layout) = self.tcx.layout_of(self.param_env.and(place_ty)) {
703                 if let Some(value) = self.const_prop(rval, place_layout, statement.source_info) {
704                     if let Place {
705                         base: PlaceBase::Local(local),
706                         projection: None,
707                     } = *place {
708                         trace!("checking whether {:?} can be stored to {:?}", value, local);
709                         if self.can_const_prop[local] {
710                             trace!("storing {:?} to {:?}", value, local);
711                             assert!(self.get_const(local).is_none());
712                             self.set_const(local, value);
713
714                             if self.should_const_prop() {
715                                 self.replace_with_const(
716                                     rval,
717                                     value,
718                                     statement.source_info,
719                                 );
720                             }
721                         }
722                     }
723                 }
724             }
725         }
726         self.super_statement(statement, location);
727     }
728
729     fn visit_terminator(
730         &mut self,
731         terminator: &mut Terminator<'tcx>,
732         location: Location,
733     ) {
734         self.super_terminator(terminator, location);
735         let source_info = terminator.source_info;
736         match &mut terminator.kind {
737             TerminatorKind::Assert { expected, ref msg, ref mut cond, .. } => {
738                 if let Some(value) = self.eval_operand(&cond, source_info) {
739                     trace!("assertion on {:?} should be {:?}", value, expected);
740                     let expected = ScalarMaybeUndef::from(Scalar::from_bool(*expected));
741                     let value_const = self.ecx.read_scalar(value).unwrap();
742                     if expected != value_const {
743                         // poison all places this operand references so that further code
744                         // doesn't use the invalid value
745                         match cond {
746                             Operand::Move(ref place) | Operand::Copy(ref place) => {
747                                 if let PlaceBase::Local(local) = place.base {
748                                     self.remove_const(local);
749                                 }
750                             },
751                             Operand::Constant(_) => {}
752                         }
753                         let span = terminator.source_info.span;
754                         let hir_id = self
755                             .tcx
756                             .hir()
757                             .as_local_hir_id(self.source.def_id())
758                             .expect("some part of a failing const eval must be local");
759                         let msg = match msg {
760                             PanicInfo::Overflow(_) |
761                             PanicInfo::OverflowNeg |
762                             PanicInfo::DivisionByZero |
763                             PanicInfo::RemainderByZero =>
764                                 msg.description().to_owned(),
765                             PanicInfo::BoundsCheck { ref len, ref index } => {
766                                 let len = self
767                                     .eval_operand(len, source_info)
768                                     .expect("len must be const");
769                                 let len = match self.ecx.read_scalar(len) {
770                                     Ok(ScalarMaybeUndef::Scalar(Scalar::Raw {
771                                         data, ..
772                                     })) => data,
773                                     other => bug!("const len not primitive: {:?}", other),
774                                 };
775                                 let index = self
776                                     .eval_operand(index, source_info)
777                                     .expect("index must be const");
778                                 let index = match self.ecx.read_scalar(index) {
779                                     Ok(ScalarMaybeUndef::Scalar(Scalar::Raw {
780                                         data, ..
781                                     })) => data,
782                                     other => bug!("const index not primitive: {:?}", other),
783                                 };
784                                 format!(
785                                     "index out of bounds: \
786                                     the len is {} but the index is {}",
787                                     len,
788                                     index,
789                                 )
790                             },
791                             // Need proper const propagator for these
792                             _ => return,
793                         };
794                         self.tcx.lint_hir(
795                             ::rustc::lint::builtin::CONST_ERR,
796                             hir_id,
797                             span,
798                             &msg,
799                         );
800                     } else {
801                         if self.should_const_prop() {
802                             if let ScalarMaybeUndef::Scalar(scalar) = value_const {
803                                 *cond = self.operand_from_scalar(
804                                     scalar,
805                                     self.tcx.types.bool,
806                                     source_info.span,
807                                 );
808                             }
809                         }
810                     }
811                 }
812             },
813             TerminatorKind::SwitchInt { ref mut discr, switch_ty, .. } => {
814                 if self.should_const_prop() {
815                     if let Some(value) = self.eval_operand(&discr, source_info) {
816                         if let ScalarMaybeUndef::Scalar(scalar) =
817                                 self.ecx.read_scalar(value).unwrap() {
818                             *discr = self.operand_from_scalar(scalar, switch_ty, source_info.span);
819                         }
820                     }
821                 }
822             },
823             //none of these have Operands to const-propagate
824             TerminatorKind::Goto { .. } |
825             TerminatorKind::Resume |
826             TerminatorKind::Abort |
827             TerminatorKind::Return |
828             TerminatorKind::Unreachable |
829             TerminatorKind::Drop { .. } |
830             TerminatorKind::DropAndReplace { .. } |
831             TerminatorKind::Yield { .. } |
832             TerminatorKind::GeneratorDrop |
833             TerminatorKind::FalseEdges { .. } |
834             TerminatorKind::FalseUnwind { .. } => { }
835             //FIXME(wesleywiser) Call does have Operands that could be const-propagated
836             TerminatorKind::Call { .. } => { }
837         }
838     }
839 }