Skip to content

Commit 1e3c7e2

Browse files
Rollup merge of #77423 - ecstatic-morse:discriminant-switch-effect-config, r=pnkfelix
Add `-Zprecise-enum-drop-elaboration` Its purpose is to assist in debugging #77382 and #74551. Passing `-Zprecise-enum-drop-elaboration=no` will turn off the added precision that seems to be causing issues on some platforms. This assumes that we can reproduce #77382 on the latest master. I should have done this earlier. Oh well. cc @cuviper r? @pnkfelix
2 parents cac5352 + 6691d11 commit 1e3c7e2

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

compiler/rustc_interface/src/tests.rs

+1
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,7 @@ fn test_debugging_options_tracking_hash() {
568568
tracked!(osx_rpath_install_name, true);
569569
tracked!(panic_abort_tests, true);
570570
tracked!(plt, Some(true));
571+
tracked!(precise_enum_drop_elaboration, false);
571572
tracked!(print_fuel, Some("abc".to_string()));
572573
tracked!(profile, true);
573574
tracked!(profile_emit, Some(PathBuf::from("abc")));

compiler/rustc_mir/src/dataflow/impls/mod.rs

+8
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,10 @@ impl<'tcx> GenKillAnalysis<'tcx> for MaybeInitializedPlaces<'_, 'tcx> {
358358
discr: &mir::Operand<'tcx>,
359359
edge_effects: &mut impl SwitchIntEdgeEffects<G>,
360360
) {
361+
if !self.tcx.sess.opts.debugging_opts.precise_enum_drop_elaboration {
362+
return;
363+
}
364+
361365
let enum_ = discr.place().and_then(|discr| {
362366
switch_on_enum_discriminant(self.tcx, &self.body, &self.body[block], discr)
363367
});
@@ -469,6 +473,10 @@ impl<'tcx> GenKillAnalysis<'tcx> for MaybeUninitializedPlaces<'_, 'tcx> {
469473
discr: &mir::Operand<'tcx>,
470474
edge_effects: &mut impl SwitchIntEdgeEffects<G>,
471475
) {
476+
if !self.tcx.sess.opts.debugging_opts.precise_enum_drop_elaboration {
477+
return;
478+
}
479+
472480
if !self.mark_inactive_variants_as_uninit {
473481
return;
474482
}

compiler/rustc_session/src/options.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1008,6 +1008,10 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
10081008
"a single extra argument to prepend the linker invocation (can be used several times)"),
10091009
pre_link_args: Vec<String> = (Vec::new(), parse_list, [UNTRACKED],
10101010
"extra arguments to prepend to the linker invocation (space separated)"),
1011+
precise_enum_drop_elaboration: bool = (true, parse_bool, [TRACKED],
1012+
"use a more precise version of drop elaboration for matches on enums (default: yes). \
1013+
This results in better codegen, but has caused miscompilations on some tier 2 platforms. \
1014+
See #77382 and #74551."),
10111015
print_fuel: Option<String> = (None, parse_opt_string, [TRACKED],
10121016
"make rustc print the total optimization fuel used by a crate"),
10131017
print_link_args: bool = (false, parse_bool, [UNTRACKED],

0 commit comments

Comments
 (0)