Skip to content

Commit e101c19

Browse files
authored
Rollup merge of rust-lang#93603 - connorff:compute-polonius-liveness-facts-flag, r=ecstatic-morse
Populate liveness facts when calling `get_body_with_borrowck_facts` without `-Z polonius` For a new feature of [Flowistry](https://github.com/willcrichton/flowistry), a static-analysis tool, we need to obtain a `mir::Body`'s liveness facts using `get_body_with_borrowck_facts` (added in rust-lang#86977). We'd like to do this without passing `-Z polonius` as a compiler arg to avoid borrow checking the entire crate. Support for doing this was added in rust-lang#88983, but the Polonius input facts used for liveness analysis are empty. This happens because the liveness input facts are populated in `liveness::generate` depending only on the value of `AllFacts::enabled` (which is toggled via compiler args). This PR propagates the [`use_polonius`](https://github.com/rust-lang/rust/blob/8b09ba6a5d5c644fe0f1c27c7f9c80b334241707/compiler/rustc_borrowck/src/nll.rs#L168) flag to `liveness::generate` to support populating liveness facts without requiring the `-Z polonius` flag. This fix is somewhat patchy - if it'd be better to add more widely-accessible state (like `AllFacts::enabled`) I'd be open to ideas!
2 parents e22abfb + 42371a5 commit e101c19

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

compiler/rustc_borrowck/src/nll.rs

+1
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ pub(crate) fn compute_regions<'cx, 'tcx>(
188188
move_data,
189189
elements,
190190
upvars,
191+
use_polonius,
191192
);
192193

193194
if let Some(all_facts) = &mut all_facts {

compiler/rustc_borrowck/src/type_check/liveness/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ pub(super) fn generate<'mir, 'tcx>(
3737
flow_inits: &mut ResultsCursor<'mir, 'tcx, MaybeInitializedPlaces<'mir, 'tcx>>,
3838
move_data: &MoveData<'tcx>,
3939
location_table: &LocationTable,
40+
use_polonius: bool,
4041
) {
4142
debug!("liveness::generate");
4243

@@ -46,7 +47,7 @@ pub(super) fn generate<'mir, 'tcx>(
4647
&typeck.borrowck_context.constraints.outlives_constraints,
4748
);
4849
let live_locals = compute_live_locals(typeck.tcx(), &free_regions, &body);
49-
let facts_enabled = AllFacts::enabled(typeck.tcx());
50+
let facts_enabled = use_polonius || AllFacts::enabled(typeck.tcx());
5051

5152
let polonius_drop_used = if facts_enabled {
5253
let mut drop_used = Vec::new();

compiler/rustc_borrowck/src/type_check/mod.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ pub(crate) fn type_check<'mir, 'tcx>(
136136
move_data: &MoveData<'tcx>,
137137
elements: &Rc<RegionValueElements>,
138138
upvars: &[Upvar<'tcx>],
139+
use_polonius: bool,
139140
) -> MirTypeckResults<'tcx> {
140141
let implicit_region_bound = infcx.tcx.mk_region(ty::ReVar(universal_regions.fr_fn_body));
141142
let mut universe_causes = FxHashMap::default();
@@ -187,7 +188,15 @@ pub(crate) fn type_check<'mir, 'tcx>(
187188
&mut borrowck_context,
188189
|mut cx| {
189190
cx.equate_inputs_and_outputs(&body, universal_regions, &normalized_inputs_and_output);
190-
liveness::generate(&mut cx, body, elements, flow_inits, move_data, location_table);
191+
liveness::generate(
192+
&mut cx,
193+
body,
194+
elements,
195+
flow_inits,
196+
move_data,
197+
location_table,
198+
use_polonius,
199+
);
191200

192201
translate_outlives_facts(&mut cx);
193202
let opaque_type_values = mem::take(&mut infcx.inner.borrow_mut().opaque_types);

0 commit comments

Comments
 (0)