1use std::fmt::Debug;
6
7use rustc_abi::{BackendRepr, FieldIdx, HasDataLayout, Size, TargetDataLayout, VariantIdx};
8use rustc_const_eval::const_eval::DummyMachine;
9use rustc_const_eval::interpret::{
10 ImmTy, InterpCx, InterpResult, Projectable, Scalar, format_interp_error, interp_ok,
11};
12use rustc_data_structures::fx::FxHashSet;
13use rustc_hir::HirId;
14use rustc_hir::def::DefKind;
15use rustc_index::IndexVec;
16use rustc_index::bit_set::DenseBitSet;
17use rustc_middle::bug;
18use rustc_middle::mir::visit::{MutatingUseContext, NonMutatingUseContext, PlaceContext, Visitor};
19use rustc_middle::mir::*;
20use rustc_middle::ty::layout::{LayoutError, LayoutOf, LayoutOfHelpers, TyAndLayout};
21use rustc_middle::ty::{self, ConstInt, ScalarInt, Ty, TyCtxt, TypeVisitableExt};
22use rustc_span::Span;
23use tracing::{debug, instrument, trace};
24
25use crate::errors::{AssertLint, AssertLintKind};
26
27pub(super) struct KnownPanicsLint;
28
29impl<'tcx> crate::MirLint<'tcx> for KnownPanicsLint {
30 fn run_lint(&self, tcx: TyCtxt<'tcx>, body: &Body<'tcx>) {
31 if body.tainted_by_errors.is_some() {
32 return;
33 }
34
35 let def_id = body.source.def_id().expect_local();
36 let def_kind = tcx.def_kind(def_id);
37 let is_fn_like = def_kind.is_fn_like();
38 let is_assoc_const = def_kind == DefKind::AssocConst;
39
40 if !is_fn_like && !is_assoc_const {
42 trace!("KnownPanicsLint skipped for {:?}", def_id);
44 return;
45 }
46
47 if tcx.is_coroutine(def_id.to_def_id()) {
50 trace!("KnownPanicsLint skipped for coroutine {:?}", def_id);
51 return;
52 }
53
54 trace!("KnownPanicsLint starting for {:?}", def_id);
55
56 let mut linter = ConstPropagator::new(body, tcx);
57 linter.visit_body(body);
58
59 trace!("KnownPanicsLint done for {:?}", def_id);
60 }
61}
62
63struct ConstPropagator<'mir, 'tcx> {
66 ecx: InterpCx<'tcx, DummyMachine>,
67 tcx: TyCtxt<'tcx>,
68 typing_env: ty::TypingEnv<'tcx>,
69 worklist: Vec<BasicBlock>,
70 visited_blocks: DenseBitSet<BasicBlock>,
71 locals: IndexVec<Local, Value<'tcx>>,
72 body: &'mir Body<'tcx>,
73 written_only_inside_own_block_locals: FxHashSet<Local>,
74 can_const_prop: IndexVec<Local, ConstPropMode>,
75}
76
77#[derive(Debug, Clone)]
78enum Value<'tcx> {
79 Immediate(ImmTy<'tcx>),
80 Aggregate { variant: VariantIdx, fields: IndexVec<FieldIdx, Value<'tcx>> },
81 Uninit,
82}
83
84impl<'tcx> From<ImmTy<'tcx>> for Value<'tcx> {
85 fn from(v: ImmTy<'tcx>) -> Self {
86 Self::Immediate(v)
87 }
88}
89
90impl<'tcx> Value<'tcx> {
91 fn project(
92 &self,
93 proj: &[PlaceElem<'tcx>],
94 prop: &ConstPropagator<'_, 'tcx>,
95 ) -> Option<&Value<'tcx>> {
96 let mut this = self;
97 for proj in proj {
98 this = match (*proj, this) {
99 (PlaceElem::Field(idx, _), Value::Aggregate { fields, .. }) => {
100 fields.get(idx).unwrap_or(&Value::Uninit)
101 }
102 (PlaceElem::Index(idx), Value::Aggregate { fields, .. }) => {
103 let idx = prop.get_const(idx.into())?.immediate()?;
104 let idx = prop.ecx.read_target_usize(idx).discard_err()?.try_into().ok()?;
105 if idx <= FieldIdx::MAX_AS_U32 {
106 fields.get(FieldIdx::from_u32(idx)).unwrap_or(&Value::Uninit)
107 } else {
108 return None;
109 }
110 }
111 (
112 PlaceElem::ConstantIndex { offset, min_length: _, from_end: false },
113 Value::Aggregate { fields, .. },
114 ) => fields
115 .get(FieldIdx::from_u32(offset.try_into().ok()?))
116 .unwrap_or(&Value::Uninit),
117 _ => return None,
118 };
119 }
120 Some(this)
121 }
122
123 fn project_mut(&mut self, proj: &[PlaceElem<'_>]) -> Option<&mut Value<'tcx>> {
124 let mut this = self;
125 for proj in proj {
126 this = match (proj, this) {
127 (PlaceElem::Field(idx, _), Value::Aggregate { fields, .. }) => {
128 fields.ensure_contains_elem(*idx, || Value::Uninit)
129 }
130 (PlaceElem::Field(..), val @ Value::Uninit) => {
131 *val =
132 Value::Aggregate { variant: VariantIdx::ZERO, fields: Default::default() };
133 val.project_mut(&[*proj])?
134 }
135 _ => return None,
136 };
137 }
138 Some(this)
139 }
140
141 fn immediate(&self) -> Option<&ImmTy<'tcx>> {
142 match self {
143 Value::Immediate(op) => Some(op),
144 _ => None,
145 }
146 }
147}
148
149impl<'tcx> LayoutOfHelpers<'tcx> for ConstPropagator<'_, 'tcx> {
150 type LayoutOfResult = Result<TyAndLayout<'tcx>, LayoutError<'tcx>>;
151
152 #[inline]
153 fn handle_layout_err(&self, err: LayoutError<'tcx>, _: Span, _: Ty<'tcx>) -> LayoutError<'tcx> {
154 err
155 }
156}
157
158impl HasDataLayout for ConstPropagator<'_, '_> {
159 #[inline]
160 fn data_layout(&self) -> &TargetDataLayout {
161 &self.tcx.data_layout
162 }
163}
164
165impl<'tcx> ty::layout::HasTyCtxt<'tcx> for ConstPropagator<'_, 'tcx> {
166 #[inline]
167 fn tcx(&self) -> TyCtxt<'tcx> {
168 self.tcx
169 }
170}
171
172impl<'tcx> ty::layout::HasTypingEnv<'tcx> for ConstPropagator<'_, 'tcx> {
173 #[inline]
174 fn typing_env(&self) -> ty::TypingEnv<'tcx> {
175 self.typing_env
176 }
177}
178
179impl<'mir, 'tcx> ConstPropagator<'mir, 'tcx> {
180 fn new(body: &'mir Body<'tcx>, tcx: TyCtxt<'tcx>) -> ConstPropagator<'mir, 'tcx> {
181 let def_id = body.source.def_id();
182 let typing_env = ty::TypingEnv::post_analysis(tcx, body.source.def_id());
185 let can_const_prop = CanConstProp::check(tcx, typing_env, body);
186 let ecx = InterpCx::new(tcx, tcx.def_span(def_id), typing_env, DummyMachine);
187
188 ConstPropagator {
189 ecx,
190 tcx,
191 typing_env,
192 worklist: vec![START_BLOCK],
193 visited_blocks: DenseBitSet::new_empty(body.basic_blocks.len()),
194 locals: IndexVec::from_elem_n(Value::Uninit, body.local_decls.len()),
195 body,
196 can_const_prop,
197 written_only_inside_own_block_locals: Default::default(),
198 }
199 }
200
201 fn local_decls(&self) -> &'mir LocalDecls<'tcx> {
202 &self.body.local_decls
203 }
204
205 fn get_const(&self, place: Place<'tcx>) -> Option<&Value<'tcx>> {
206 self.locals[place.local].project(&place.projection, self)
207 }
208
209 fn remove_const(&mut self, local: Local) {
212 self.locals[local] = Value::Uninit;
213 self.written_only_inside_own_block_locals.remove(&local);
214 }
215
216 fn access_mut(&mut self, place: &Place<'_>) -> Option<&mut Value<'tcx>> {
217 match self.can_const_prop[place.local] {
218 ConstPropMode::NoPropagation => return None,
219 ConstPropMode::OnlyInsideOwnBlock => {
220 self.written_only_inside_own_block_locals.insert(place.local);
221 }
222 ConstPropMode::FullConstProp => {}
223 }
224 self.locals[place.local].project_mut(place.projection)
225 }
226
227 fn lint_root(&self, source_info: SourceInfo) -> Option<HirId> {
228 source_info.scope.lint_root(&self.body.source_scopes)
229 }
230
231 fn use_ecx<F, T>(&mut self, f: F) -> Option<T>
232 where
233 F: FnOnce(&mut Self) -> InterpResult<'tcx, T>,
234 {
235 f(self)
236 .map_err_info(|err| {
237 trace!("InterpCx operation failed: {:?}", err);
238 assert!(
242 !err.kind().formatted_string(),
243 "known panics lint encountered formatting error: {}",
244 format_interp_error(self.ecx.tcx.dcx(), err),
245 );
246 err
247 })
248 .discard_err()
249 }
250
251 fn eval_constant(&mut self, c: &ConstOperand<'tcx>) -> Option<ImmTy<'tcx>> {
253 if c.has_param() {
255 return None;
256 }
257
258 let val = self.tcx.try_normalize_erasing_regions(self.typing_env, c.const_).ok()?;
265
266 self.use_ecx(|this| this.ecx.eval_mir_constant(&val, c.span, None))?
267 .as_mplace_or_imm()
268 .right()
269 }
270
271 #[instrument(level = "trace", skip(self), ret)]
273 fn eval_place(&mut self, place: Place<'tcx>) -> Option<ImmTy<'tcx>> {
274 match self.get_const(place)? {
275 Value::Immediate(imm) => Some(imm.clone()),
276 Value::Aggregate { .. } => None,
277 Value::Uninit => None,
278 }
279 }
280
281 fn eval_operand(&mut self, op: &Operand<'tcx>) -> Option<ImmTy<'tcx>> {
284 match *op {
285 Operand::RuntimeChecks(_) => None,
286 Operand::Constant(ref c) => self.eval_constant(c),
287 Operand::Move(place) | Operand::Copy(place) => self.eval_place(place),
288 }
289 }
290
291 fn report_assert_as_lint(
292 &self,
293 location: Location,
294 lint_kind: AssertLintKind,
295 assert_kind: AssertKind<impl Debug>,
296 ) {
297 let source_info = self.body.source_info(location);
298 if let Some(lint_root) = self.lint_root(*source_info) {
299 let span = source_info.span;
300 self.tcx.emit_node_span_lint(
301 lint_kind.lint(),
302 lint_root,
303 span,
304 AssertLint { span, assert_kind, lint_kind },
305 );
306 }
307 }
308
309 fn check_unary_op(&mut self, op: UnOp, arg: &Operand<'tcx>, location: Location) -> Option<()> {
310 let arg = self.eval_operand(arg)?;
311 if op == UnOp::Neg && arg.layout.ty.is_integral() {
313 let (arg, overflow) = self.use_ecx(|this| {
315 let arg = this.ecx.read_immediate(&arg)?;
316 let (_res, overflow) = this
317 .ecx
318 .binary_op(BinOp::SubWithOverflow, &ImmTy::from_int(0, arg.layout), &arg)?
319 .to_scalar_pair();
320 interp_ok((arg, overflow.to_bool()?))
321 })?;
322 if overflow {
323 self.report_assert_as_lint(
324 location,
325 AssertLintKind::ArithmeticOverflow,
326 AssertKind::OverflowNeg(arg.to_const_int()),
327 );
328 return None;
329 }
330 }
331
332 Some(())
333 }
334
335 fn check_binary_op(
336 &mut self,
337 op: BinOp,
338 left: &Operand<'tcx>,
339 right: &Operand<'tcx>,
340 location: Location,
341 ) -> Option<()> {
342 let r =
343 self.eval_operand(right).and_then(|r| self.use_ecx(|this| this.ecx.read_immediate(&r)));
344 let l =
345 self.eval_operand(left).and_then(|l| self.use_ecx(|this| this.ecx.read_immediate(&l)));
346 if matches!(op, BinOp::Shr | BinOp::Shl) {
348 let r = r.clone()?;
349 let left_ty = left.ty(self.local_decls(), self.tcx);
352 let left_size = self.ecx.layout_of(left_ty).ok()?.size;
353 let right_size = r.layout.size;
354 let r_bits = r.to_scalar().to_bits(right_size).discard_err();
355 if r_bits.is_some_and(|b| b >= left_size.bits() as u128) {
356 debug!("check_binary_op: reporting assert for {:?}", location);
357 let panic = AssertKind::Overflow(
358 op,
359 ConstInt::new(
361 ScalarInt::try_from_uint(1_u8, left_size).unwrap(),
362 left_ty.is_signed(),
363 left_ty.is_ptr_sized_integral(),
364 ),
365 r.to_const_int(),
366 );
367 self.report_assert_as_lint(location, AssertLintKind::ArithmeticOverflow, panic);
368 return None;
369 }
370 }
371
372 let op = op.wrapping_to_overflowing().unwrap_or(op);
378 if let (Some(l), Some(r)) = (l, r)
380 && l.layout.ty.is_integral()
381 && op.is_overflowing()
382 && self.use_ecx(|this| {
383 let (_res, overflow) = this.ecx.binary_op(op, &l, &r)?.to_scalar_pair();
384 overflow.to_bool()
385 })?
386 {
387 self.report_assert_as_lint(
388 location,
389 AssertLintKind::ArithmeticOverflow,
390 AssertKind::Overflow(op, l.to_const_int(), r.to_const_int()),
391 );
392 return None;
393 }
394
395 Some(())
396 }
397
398 fn check_rvalue(&mut self, rvalue: &Rvalue<'tcx>, location: Location) -> Option<()> {
399 match rvalue {
407 Rvalue::UnaryOp(op, arg) => {
412 trace!("checking UnaryOp(op = {:?}, arg = {:?})", op, arg);
413 self.check_unary_op(*op, arg, location)?;
414 }
415 Rvalue::BinaryOp(op, box (left, right)) => {
416 trace!("checking BinaryOp(op = {:?}, left = {:?}, right = {:?})", op, left, right);
417 self.check_binary_op(*op, left, right, location)?;
418 }
419
420 Rvalue::RawPtr(_, place) | Rvalue::Ref(_, _, place) => {
422 trace!("skipping RawPtr | Ref for {:?}", place);
423
424 self.remove_const(place.local);
431
432 return None;
433 }
434 Rvalue::ThreadLocalRef(def_id) => {
435 trace!("skipping ThreadLocalRef({:?})", def_id);
436
437 return None;
438 }
439
440 Rvalue::Aggregate(..)
442 | Rvalue::Use(..)
443 | Rvalue::CopyForDeref(..)
444 | Rvalue::Repeat(..)
445 | Rvalue::Cast(..)
446 | Rvalue::Discriminant(..)
447 | Rvalue::WrapUnsafeBinder(..) => {}
448 }
449
450 if rvalue.has_param() {
452 return None;
453 }
454 if !rvalue.ty(self.local_decls(), self.tcx).is_sized(self.tcx, self.typing_env) {
455 return None;
458 }
459
460 Some(())
461 }
462
463 fn check_assertion(
464 &mut self,
465 expected: bool,
466 msg: &AssertKind<Operand<'tcx>>,
467 cond: &Operand<'tcx>,
468 location: Location,
469 ) {
470 let Some(value) = &self.eval_operand(cond) else { return };
471 trace!("assertion on {:?} should be {:?}", value, expected);
472
473 let expected = Scalar::from_bool(expected);
474 let Some(value_const) = self.use_ecx(|this| this.ecx.read_scalar(value)) else { return };
475
476 if expected != value_const {
477 if let Some(place) = cond.place() {
480 self.remove_const(place.local);
481 }
482
483 enum DbgVal<T> {
484 Val(T),
485 Underscore,
486 }
487 impl<T: std::fmt::Debug> std::fmt::Debug for DbgVal<T> {
488 fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
489 match self {
490 Self::Val(val) => val.fmt(fmt),
491 Self::Underscore => fmt.write_str("_"),
492 }
493 }
494 }
495 let mut eval_to_int = |op| {
496 self.eval_operand(op)
499 .and_then(|op| self.ecx.read_immediate(&op).discard_err())
500 .map_or(DbgVal::Underscore, |op| DbgVal::Val(op.to_const_int()))
501 };
502 let msg = match msg {
503 AssertKind::DivisionByZero(op) => AssertKind::DivisionByZero(eval_to_int(op)),
504 AssertKind::RemainderByZero(op) => AssertKind::RemainderByZero(eval_to_int(op)),
505 AssertKind::Overflow(bin_op @ (BinOp::Div | BinOp::Rem), op1, op2) => {
506 AssertKind::Overflow(*bin_op, eval_to_int(op1), eval_to_int(op2))
509 }
510 AssertKind::BoundsCheck { len, index } => {
511 let len = eval_to_int(len);
512 let index = eval_to_int(index);
513 AssertKind::BoundsCheck { len, index }
514 }
515 AssertKind::Overflow(..) | AssertKind::OverflowNeg(_) => return,
517 _ => return,
519 };
520 self.report_assert_as_lint(location, AssertLintKind::UnconditionalPanic, msg);
521 }
522 }
523
524 fn ensure_not_propagated(&self, local: Local) {
525 if cfg!(debug_assertions) {
526 let val = self.get_const(local.into());
527 assert!(
528 matches!(val, Some(Value::Uninit))
529 || self
530 .layout_of(self.local_decls()[local].ty)
531 .map_or(true, |layout| layout.is_zst()),
532 "failed to remove values for `{local:?}`, value={val:?}",
533 )
534 }
535 }
536
537 #[instrument(level = "trace", skip(self), ret)]
538 fn eval_rvalue(&mut self, rvalue: &Rvalue<'tcx>, dest: &Place<'tcx>) -> Option<()> {
539 if !dest.projection.is_empty() {
540 return None;
541 }
542 use rustc_middle::mir::Rvalue::*;
543 let layout = self.ecx.layout_of(dest.ty(self.body, self.tcx).ty).ok()?;
544 trace!(?layout);
545
546 let val: Value<'_> = match *rvalue {
547 ThreadLocalRef(_) => return None,
548
549 Use(ref operand) | WrapUnsafeBinder(ref operand, _) => {
550 self.eval_operand(operand)?.into()
551 }
552
553 CopyForDeref(place) => self.eval_place(place)?.into(),
554
555 BinaryOp(bin_op, box (ref left, ref right)) => {
556 let left = self.eval_operand(left)?;
557 let left = self.use_ecx(|this| this.ecx.read_immediate(&left))?;
558
559 let right = self.eval_operand(right)?;
560 let right = self.use_ecx(|this| this.ecx.read_immediate(&right))?;
561
562 let val = self.use_ecx(|this| this.ecx.binary_op(bin_op, &left, &right))?;
563 if matches!(val.layout.backend_repr, BackendRepr::ScalarPair(..)) {
564 let (val, overflow) = val.to_pair(&self.ecx);
567 Value::Aggregate {
568 variant: VariantIdx::ZERO,
569 fields: [val.into(), overflow.into()].into_iter().collect(),
570 }
571 } else {
572 val.into()
573 }
574 }
575
576 UnaryOp(un_op, ref operand) => {
577 let operand = self.eval_operand(operand)?;
578 let val = self.use_ecx(|this| this.ecx.read_immediate(&operand))?;
579
580 let val = self.use_ecx(|this| this.ecx.unary_op(un_op, &val))?;
581 val.into()
582 }
583
584 Aggregate(ref kind, ref fields) => Value::Aggregate {
585 fields: fields
586 .iter()
587 .map(|field| self.eval_operand(field).map_or(Value::Uninit, Value::Immediate))
588 .collect(),
589 variant: match **kind {
590 AggregateKind::Adt(_, variant, _, _, _) => variant,
591 AggregateKind::Array(_)
592 | AggregateKind::Tuple
593 | AggregateKind::RawPtr(_, _)
594 | AggregateKind::Closure(_, _)
595 | AggregateKind::Coroutine(_, _)
596 | AggregateKind::CoroutineClosure(_, _) => VariantIdx::ZERO,
597 },
598 },
599
600 Repeat(ref op, n) => {
601 trace!(?op, ?n);
602 return None;
603 }
604
605 Ref(..) | RawPtr(..) => return None,
606
607 Cast(ref kind, ref value, to) => match kind {
608 CastKind::IntToInt | CastKind::IntToFloat => {
609 let value = self.eval_operand(value)?;
610 let value = self.ecx.read_immediate(&value).discard_err()?;
611 let to = self.ecx.layout_of(to).ok()?;
612 let res = self.ecx.int_to_int_or_float(&value, to).discard_err()?;
613 res.into()
614 }
615 CastKind::FloatToFloat | CastKind::FloatToInt => {
616 let value = self.eval_operand(value)?;
617 let value = self.ecx.read_immediate(&value).discard_err()?;
618 let to = self.ecx.layout_of(to).ok()?;
619 let res = self.ecx.float_to_float_or_int(&value, to).discard_err()?;
620 res.into()
621 }
622 CastKind::Transmute | CastKind::Subtype => {
623 let value = self.eval_operand(value)?;
624 let to = self.ecx.layout_of(to).ok()?;
625 match (value.layout.backend_repr, to.backend_repr) {
628 (BackendRepr::Scalar(..), BackendRepr::Scalar(..)) => {}
629 (BackendRepr::ScalarPair(..), BackendRepr::ScalarPair(..)) => {}
630 _ => return None,
631 }
632
633 value.offset(Size::ZERO, to, &self.ecx).discard_err()?.into()
634 }
635 _ => return None,
636 },
637
638 Discriminant(place) => {
639 let variant = match self.get_const(place)? {
640 Value::Immediate(op) => {
641 let op = op.clone();
642 self.use_ecx(|this| this.ecx.read_discriminant(&op))?
643 }
644 Value::Aggregate { variant, .. } => *variant,
645 Value::Uninit => return None,
646 };
647 let imm = self.use_ecx(|this| {
648 this.ecx.discriminant_for_variant(
649 place.ty(this.local_decls(), this.tcx).ty,
650 variant,
651 )
652 })?;
653 imm.into()
654 }
655 };
656 trace!(?val);
657
658 *self.access_mut(dest)? = val;
659
660 Some(())
661 }
662}
663
664impl<'tcx> Visitor<'tcx> for ConstPropagator<'_, 'tcx> {
665 fn visit_body(&mut self, body: &Body<'tcx>) {
666 while let Some(bb) = self.worklist.pop() {
667 if !self.visited_blocks.insert(bb) {
668 continue;
669 }
670
671 let data = &body.basic_blocks[bb];
672 self.visit_basic_block_data(bb, data);
673 }
674 }
675
676 fn visit_operand(&mut self, operand: &Operand<'tcx>, location: Location) {
677 self.super_operand(operand, location);
678 }
679
680 fn visit_const_operand(&mut self, constant: &ConstOperand<'tcx>, location: Location) {
681 trace!("visit_const_operand: {:?}", constant);
682 self.super_const_operand(constant, location);
683 self.eval_constant(constant);
684 }
685
686 fn visit_assign(&mut self, place: &Place<'tcx>, rvalue: &Rvalue<'tcx>, location: Location) {
687 self.super_assign(place, rvalue, location);
688
689 let Some(()) = self.check_rvalue(rvalue, location) else { return };
690
691 match self.can_const_prop[place.local] {
692 _ if place.is_indirect() => {}
694 ConstPropMode::NoPropagation => self.ensure_not_propagated(place.local),
695 ConstPropMode::OnlyInsideOwnBlock | ConstPropMode::FullConstProp => {
696 if self.eval_rvalue(rvalue, place).is_none() {
697 trace!(
708 "propagation into {:?} failed.
709 Nuking the entire site from orbit, it's the only way to be sure",
710 place,
711 );
712 self.remove_const(place.local);
713 }
714 }
715 }
716 }
717
718 fn visit_statement(&mut self, statement: &Statement<'tcx>, location: Location) {
719 trace!("visit_statement: {:?}", statement);
720
721 self.super_statement(statement, location);
724
725 match statement.kind {
726 StatementKind::SetDiscriminant { ref place, variant_index } => {
727 match self.can_const_prop[place.local] {
728 _ if place.is_indirect() => {}
730 ConstPropMode::NoPropagation => self.ensure_not_propagated(place.local),
731 ConstPropMode::FullConstProp | ConstPropMode::OnlyInsideOwnBlock => {
732 match self.access_mut(place) {
733 Some(Value::Aggregate { variant, .. }) => *variant = variant_index,
734 _ => self.remove_const(place.local),
735 }
736 }
737 }
738 }
739 StatementKind::StorageLive(local) => {
740 self.remove_const(local);
741 }
742 StatementKind::StorageDead(local) => {
743 self.remove_const(local);
744 }
745 _ => {}
746 }
747 }
748
749 fn visit_terminator(&mut self, terminator: &Terminator<'tcx>, location: Location) {
750 self.super_terminator(terminator, location);
751 match &terminator.kind {
752 TerminatorKind::Assert { expected, msg, cond, .. } => {
753 self.check_assertion(*expected, msg, cond, location);
754 }
755 TerminatorKind::SwitchInt { discr, targets } => {
756 if let Some(ref value) = self.eval_operand(discr)
757 && let Some(value_const) = self.use_ecx(|this| this.ecx.read_scalar(value))
758 && let Some(constant) = value_const.to_bits(value_const.size()).discard_err()
759 {
760 let target = targets.target_for_value(constant);
763 self.worklist.push(target);
764 return;
765 }
766 }
768 TerminatorKind::Goto { .. }
770 | TerminatorKind::UnwindResume
771 | TerminatorKind::UnwindTerminate(_)
772 | TerminatorKind::Return
773 | TerminatorKind::TailCall { .. }
774 | TerminatorKind::Unreachable
775 | TerminatorKind::Drop { .. }
776 | TerminatorKind::Yield { .. }
777 | TerminatorKind::CoroutineDrop
778 | TerminatorKind::FalseEdge { .. }
779 | TerminatorKind::FalseUnwind { .. }
780 | TerminatorKind::Call { .. }
781 | TerminatorKind::InlineAsm { .. } => {}
782 }
783
784 self.worklist.extend(terminator.successors());
785 }
786
787 fn visit_basic_block_data(&mut self, block: BasicBlock, data: &BasicBlockData<'tcx>) {
788 self.super_basic_block_data(block, data);
789
790 let mut written_only_inside_own_block_locals =
794 std::mem::take(&mut self.written_only_inside_own_block_locals);
795
796 #[allow(rustc::potential_query_instability)]
801 for local in written_only_inside_own_block_locals.drain() {
802 debug_assert_eq!(self.can_const_prop[local], ConstPropMode::OnlyInsideOwnBlock);
803 self.remove_const(local);
804 }
805 self.written_only_inside_own_block_locals = written_only_inside_own_block_locals;
806
807 if cfg!(debug_assertions) {
808 for (local, &mode) in self.can_const_prop.iter_enumerated() {
809 match mode {
810 ConstPropMode::FullConstProp => {}
811 ConstPropMode::NoPropagation | ConstPropMode::OnlyInsideOwnBlock => {
812 self.ensure_not_propagated(local);
813 }
814 }
815 }
816 }
817 }
818}
819
820const MAX_ALLOC_LIMIT: u64 = 1024;
824
825#[derive(Clone, Copy, Debug, PartialEq)]
827enum ConstPropMode {
828 FullConstProp,
830 OnlyInsideOwnBlock,
832 NoPropagation,
835}
836
837struct CanConstProp {
840 can_const_prop: IndexVec<Local, ConstPropMode>,
841 found_assignment: DenseBitSet<Local>,
843}
844
845impl CanConstProp {
846 fn check<'tcx>(
848 tcx: TyCtxt<'tcx>,
849 typing_env: ty::TypingEnv<'tcx>,
850 body: &Body<'tcx>,
851 ) -> IndexVec<Local, ConstPropMode> {
852 let mut cpv = CanConstProp {
853 can_const_prop: IndexVec::from_elem(ConstPropMode::FullConstProp, &body.local_decls),
854 found_assignment: DenseBitSet::new_empty(body.local_decls.len()),
855 };
856 for (local, val) in cpv.can_const_prop.iter_enumerated_mut() {
857 let ty = body.local_decls[local].ty;
858 if ty.is_async_drop_in_place_coroutine(tcx) {
859 *val = ConstPropMode::NoPropagation;
864 continue;
865 } else if ty.is_union() {
866 *val = ConstPropMode::NoPropagation;
870 } else {
871 match tcx.layout_of(typing_env.as_query_input(ty)) {
872 Ok(layout) if layout.size < Size::from_bytes(MAX_ALLOC_LIMIT) => {}
873 _ => {
876 *val = ConstPropMode::NoPropagation;
877 continue;
878 }
879 }
880 }
881 }
882 for arg in body.args_iter() {
884 cpv.found_assignment.insert(arg);
885 }
886 cpv.visit_body(body);
887 cpv.can_const_prop
888 }
889}
890
891impl<'tcx> Visitor<'tcx> for CanConstProp {
892 fn visit_place(&mut self, place: &Place<'tcx>, mut context: PlaceContext, loc: Location) {
893 use rustc_middle::mir::visit::PlaceContext::*;
894
895 if place.projection.first() == Some(&PlaceElem::Deref) {
897 context = NonMutatingUse(NonMutatingUseContext::Copy);
898 }
899
900 self.visit_local(place.local, context, loc);
901 self.visit_projection(place.as_ref(), context, loc);
902 }
903
904 fn visit_local(&mut self, local: Local, context: PlaceContext, _: Location) {
905 use rustc_middle::mir::visit::PlaceContext::*;
906 match context {
907 | MutatingUse(MutatingUseContext::Call)
910 | MutatingUse(MutatingUseContext::AsmOutput)
911 | MutatingUse(MutatingUseContext::Store)
913 | MutatingUse(MutatingUseContext::SetDiscriminant) => {
914 if !self.found_assignment.insert(local) {
915 match &mut self.can_const_prop[local] {
916 ConstPropMode::OnlyInsideOwnBlock => {}
921 ConstPropMode::NoPropagation => {}
922 other @ ConstPropMode::FullConstProp => {
923 trace!(
924 "local {:?} can't be propagated because of multiple assignments. Previous state: {:?}",
925 local, other,
926 );
927 *other = ConstPropMode::OnlyInsideOwnBlock;
928 }
929 }
930 }
931 }
932 NonMutatingUse(NonMutatingUseContext::Copy)
934 | NonMutatingUse(NonMutatingUseContext::Move)
935 | NonMutatingUse(NonMutatingUseContext::Inspect)
936 | NonMutatingUse(NonMutatingUseContext::PlaceMention)
937 | NonUse(_) => {}
938
939 MutatingUse(MutatingUseContext::Yield)
942 | MutatingUse(MutatingUseContext::Drop)
943 | MutatingUse(MutatingUseContext::Retag)
944 | NonMutatingUse(NonMutatingUseContext::SharedBorrow)
947 | NonMutatingUse(NonMutatingUseContext::FakeBorrow)
948 | NonMutatingUse(NonMutatingUseContext::RawBorrow)
949 | MutatingUse(MutatingUseContext::Borrow)
950 | MutatingUse(MutatingUseContext::RawBorrow) => {
951 trace!("local {:?} can't be propagated because it's used: {:?}", local, context);
952 self.can_const_prop[local] = ConstPropMode::NoPropagation;
953 }
954 MutatingUse(MutatingUseContext::Projection)
955 | NonMutatingUse(NonMutatingUseContext::Projection) => bug!("visit_place should not pass {context:?} for {local:?}"),
956 }
957 }
958}