Skip to content

Commit 76a78ef

Browse files
authored
Rollup merge of #121286 - gurry:constprop-lint-rename, r=oli-obk
Rename `ConstPropLint` to `KnownPanicsLint` `OverflowLint` is a clearer name because it communicates what the lint does instead of the underlying mechanism it uses (const propagation) which should be of secondary concern. `OverflowLint` isn't the most accurate name because the lint looks for other errors as well such as division by zero not just overflows, but I couldn't think of another equally succinct name. As a part of this change. I've also added/updated some of the comments. cc `@RalfJung` `@oli-obk` for visibility in case you go looking for the lint using the old name. Edit: Changed the name from `OverflowLint` to `KnownPanicsLint`
2 parents 60a7c54 + 42c4df0 commit 76a78ef

File tree

2 files changed

+19
-17
lines changed

2 files changed

+19
-17
lines changed

compiler/rustc_mir_transform/src/const_prop_lint.rs compiler/rustc_mir_transform/src/known_panics_lint.rs

+17-15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
//! Propagates constants for early reporting of statically known
2-
//! assertion failures
1+
//! A lint that checks for known panics like
2+
//! overflows, division by zero,
3+
//! out-of-bound access etc.
4+
//! Uses const propagation to determine the
5+
//! values of operands during checks.
36
47
use std::fmt::Debug;
58

@@ -21,9 +24,9 @@ use crate::dataflow_const_prop::DummyMachine;
2124
use crate::errors::{AssertLint, AssertLintKind};
2225
use crate::MirLint;
2326

24-
pub struct ConstPropLint;
27+
pub struct KnownPanicsLint;
2528

26-
impl<'tcx> MirLint<'tcx> for ConstPropLint {
29+
impl<'tcx> MirLint<'tcx> for KnownPanicsLint {
2730
fn run_lint(&self, tcx: TyCtxt<'tcx>, body: &Body<'tcx>) {
2831
if body.tainted_by_errors.is_some() {
2932
return;
@@ -37,31 +40,28 @@ impl<'tcx> MirLint<'tcx> for ConstPropLint {
3740
// Only run const prop on functions, methods, closures and associated constants
3841
if !is_fn_like && !is_assoc_const {
3942
// skip anon_const/statics/consts because they'll be evaluated by miri anyway
40-
trace!("ConstPropLint skipped for {:?}", def_id);
43+
trace!("KnownPanicsLint skipped for {:?}", def_id);
4144
return;
4245
}
4346

4447
// FIXME(welseywiser) const prop doesn't work on coroutines because of query cycles
4548
// computing their layout.
4649
if tcx.is_coroutine(def_id.to_def_id()) {
47-
trace!("ConstPropLint skipped for coroutine {:?}", def_id);
50+
trace!("KnownPanicsLint skipped for coroutine {:?}", def_id);
4851
return;
4952
}
5053

51-
trace!("ConstPropLint starting for {:?}", def_id);
54+
trace!("KnownPanicsLint starting for {:?}", def_id);
5255

53-
// FIXME(oli-obk, eddyb) Optimize locals (or even local paths) to hold
54-
// constants, instead of just checking for const-folding succeeding.
55-
// That would require a uniform one-def no-mutation analysis
56-
// and RPO (or recursing when needing the value of a local).
5756
let mut linter = ConstPropagator::new(body, tcx);
5857
linter.visit_body(body);
5958

60-
trace!("ConstPropLint done for {:?}", def_id);
59+
trace!("KnownPanicsLint done for {:?}", def_id);
6160
}
6261
}
6362

64-
/// Finds optimization opportunities on the MIR.
63+
/// Visits MIR nodes, performs const propagation
64+
/// and runs lint checks as it goes
6565
struct ConstPropagator<'mir, 'tcx> {
6666
ecx: InterpCx<'mir, 'tcx, DummyMachine>,
6767
tcx: TyCtxt<'tcx>,
@@ -238,7 +238,7 @@ impl<'mir, 'tcx> ConstPropagator<'mir, 'tcx> {
238238
// dedicated error variants should be introduced instead.
239239
assert!(
240240
!error.kind().formatted_string(),
241-
"const-prop encountered formatting error: {}",
241+
"known panics lint encountered formatting error: {}",
242242
format_interp_error(self.ecx.tcx.dcx(), error),
243243
);
244244
None
@@ -253,7 +253,7 @@ impl<'mir, 'tcx> ConstPropagator<'mir, 'tcx> {
253253
return None;
254254
}
255255

256-
// Normalization needed b/c const prop lint runs in
256+
// Normalization needed b/c known panics lint runs in
257257
// `mir_drops_elaborated_and_const_checked`, which happens before
258258
// optimized MIR. Only after optimizing the MIR can we guarantee
259259
// that the `RevealAll` pass has happened and that the body's consts
@@ -864,6 +864,8 @@ pub enum ConstPropMode {
864864
NoPropagation,
865865
}
866866

867+
/// A visitor that determines locals in a MIR body
868+
/// that can be const propagated
867869
pub struct CanConstProp {
868870
can_const_prop: IndexVec<Local, ConstPropMode>,
869871
// False at the beginning. Once set, no more assignments are allowed to that local.

compiler/rustc_mir_transform/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ mod remove_place_mention;
5959
mod add_subtyping_projections;
6060
pub mod cleanup_post_borrowck;
6161
mod const_debuginfo;
62-
mod const_prop_lint;
6362
mod copy_prop;
6463
mod coroutine;
6564
mod cost_checker;
@@ -83,6 +82,7 @@ mod gvn;
8382
pub mod inline;
8483
mod instsimplify;
8584
mod jump_threading;
85+
mod known_panics_lint;
8686
mod large_enums;
8787
mod lint;
8888
mod lower_intrinsics;
@@ -533,7 +533,7 @@ fn run_runtime_lowering_passes<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
533533
&elaborate_box_derefs::ElaborateBoxDerefs,
534534
&coroutine::StateTransform,
535535
&add_retag::AddRetag,
536-
&Lint(const_prop_lint::ConstPropLint),
536+
&Lint(known_panics_lint::KnownPanicsLint),
537537
];
538538
pm::run_passes_no_validate(tcx, body, passes, Some(MirPhase::Runtime(RuntimePhase::Initial)));
539539
}

0 commit comments

Comments
 (0)