Skip to content

Commit 5138c32

Browse files
authored
Unrolled build for rust-lang#135250
Rollup merge of rust-lang#135250 - lqd:simple-cleanups, r=matthewjasper A couple simple borrowck cleanups This PR has a couple simple renamings: - it's been a long time since the mapping from `Location`s to `PointIndex`es was extracted from `RegionElements` into the `DenseLocationMap`, but only the types were renamed at the time. borrowck still refers to this map as `elements`. That's confusing, especially since sometimes we also use the mapping via `LivenessValues`, and makes more sense as `location_map` instead. - to clarify `LocationTable` is not as general as it sounds, and is only for datalog polonius. In this branch I didn't rename the handful of `location_table` fields and params to `polonius_table`, but can do that to differentiate it even more from `location_map`. I did try it locally and it looks worthwhile, so if you'd prefer I can also push it here. (Or we could even switch these datalog types and fields to even more explicit names) - to clarify the incomprehensible `AllFacts`, it is renamed to `PoloniusFacts`. These can be referred to as `facts` within the legacy polonius module, but as `polonius_facts` outside of it to make it clear that they're not about NLLs (nor are they about in-tree polonius but that'll be magically fixed when they're removed in the future) r? `@matthewjasper`
2 parents a580b5c + 36ea00c commit 5138c32

File tree

15 files changed

+153
-146
lines changed

15 files changed

+153
-146
lines changed

compiler/rustc_borrowck/src/consumers.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ pub use super::dataflow::{BorrowIndex, Borrows, calculate_borrows_out_of_scope_a
1111
pub use super::place_ext::PlaceExt;
1212
pub use super::places_conflict::{PlaceConflictBias, places_conflict};
1313
pub use super::polonius::legacy::{
14-
AllFacts as PoloniusInput, LocationTable, PoloniusOutput, PoloniusRegionVid, RichLocation,
15-
RustcFacts,
14+
PoloniusFacts as PoloniusInput, PoloniusLocationTable, PoloniusOutput, PoloniusRegionVid,
15+
RichLocation, RustcFacts,
1616
};
1717
pub use super::region_infer::RegionInferenceContext;
1818

@@ -33,7 +33,7 @@ pub enum ConsumerOptions {
3333
/// without significant slowdowns.
3434
///
3535
/// Implies [`RegionInferenceContext`](ConsumerOptions::RegionInferenceContext),
36-
/// and additionally retrieve the [`LocationTable`] and [`PoloniusInput`] that
36+
/// and additionally retrieve the [`PoloniusLocationTable`] and [`PoloniusInput`] that
3737
/// would be given to Polonius. Critically, this does not run Polonius, which
3838
/// one may want to avoid due to performance issues on large bodies.
3939
PoloniusInputFacts,
@@ -71,7 +71,7 @@ pub struct BodyWithBorrowckFacts<'tcx> {
7171
/// The table that maps Polonius points to locations in the table.
7272
/// Populated when using [`ConsumerOptions::PoloniusInputFacts`]
7373
/// or [`ConsumerOptions::PoloniusOutputFacts`].
74-
pub location_table: Option<LocationTable>,
74+
pub location_table: Option<PoloniusLocationTable>,
7575
/// Polonius input facts.
7676
/// Populated when using [`ConsumerOptions::PoloniusInputFacts`]
7777
/// or [`ConsumerOptions::PoloniusOutputFacts`].

compiler/rustc_borrowck/src/lib.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ use crate::diagnostics::{
6060
use crate::path_utils::*;
6161
use crate::place_ext::PlaceExt;
6262
use crate::places_conflict::{PlaceConflictBias, places_conflict};
63-
use crate::polonius::legacy::{LocationTable, PoloniusOutput};
63+
use crate::polonius::legacy::{PoloniusLocationTable, PoloniusOutput};
6464
use crate::prefixes::PrefixSet;
6565
use crate::region_infer::RegionInferenceContext;
6666
use crate::renumber::RegionCtxt;
@@ -179,7 +179,7 @@ fn do_mir_borrowck<'tcx>(
179179
infcx.register_predefined_opaques_for_next_solver(def);
180180
}
181181

182-
let location_table = LocationTable::new(body);
182+
let location_table = PoloniusLocationTable::new(body);
183183

184184
let move_data = MoveData::gather_moves(body, tcx, |_| true);
185185
let promoted_move_data = promoted
@@ -250,7 +250,8 @@ fn do_mir_borrowck<'tcx>(
250250
infcx: &infcx,
251251
body: promoted_body,
252252
move_data: &move_data,
253-
location_table: &location_table, // no need to create a real one for the promoted, it is not used
253+
// no need to create a real location table for the promoted, it is not used
254+
location_table: &location_table,
254255
movable_coroutine,
255256
fn_self_span_reported: Default::default(),
256257
locals_are_invalidated_at_exit,
@@ -516,7 +517,7 @@ struct MirBorrowckCtxt<'a, 'infcx, 'tcx> {
516517

517518
/// Map from MIR `Location` to `LocationIndex`; created
518519
/// when MIR borrowck begins.
519-
location_table: &'a LocationTable,
520+
location_table: &'a PoloniusLocationTable,
520521

521522
movable_coroutine: bool,
522523
/// This keeps track of whether local variables are free-ed when the function

compiler/rustc_borrowck/src/nll.rs

+16-14
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ use crate::borrow_set::BorrowSet;
2828
use crate::consumers::ConsumerOptions;
2929
use crate::diagnostics::{BorrowckDiagnosticsBuffer, RegionErrors};
3030
use crate::polonius::LocalizedOutlivesConstraintSet;
31-
use crate::polonius::legacy::{AllFacts, AllFactsExt, LocationTable, PoloniusOutput};
31+
use crate::polonius::legacy::{
32+
PoloniusFacts, PoloniusFactsExt, PoloniusLocationTable, PoloniusOutput,
33+
};
3234
use crate::region_infer::RegionInferenceContext;
3335
use crate::type_check::{self, MirTypeckResults};
3436
use crate::universal_regions::UniversalRegions;
@@ -39,7 +41,7 @@ use crate::{BorrowckInferCtxt, polonius, renumber};
3941
pub(crate) struct NllOutput<'tcx> {
4042
pub regioncx: RegionInferenceContext<'tcx>,
4143
pub opaque_type_values: FxIndexMap<LocalDefId, OpaqueHiddenType<'tcx>>,
42-
pub polonius_input: Option<Box<AllFacts>>,
44+
pub polonius_input: Option<Box<PoloniusFacts>>,
4345
pub polonius_output: Option<Box<PoloniusOutput>>,
4446
pub opt_closure_req: Option<ClosureRegionRequirements<'tcx>>,
4547
pub nll_errors: RegionErrors<'tcx>,
@@ -80,7 +82,7 @@ pub(crate) fn compute_regions<'a, 'tcx>(
8082
universal_regions: UniversalRegions<'tcx>,
8183
body: &Body<'tcx>,
8284
promoted: &IndexSlice<Promoted, Body<'tcx>>,
83-
location_table: &LocationTable,
85+
location_table: &PoloniusLocationTable,
8486
flow_inits: ResultsCursor<'a, 'tcx, MaybeInitializedPlaces<'a, 'tcx>>,
8587
move_data: &MoveData<'tcx>,
8688
borrow_set: &BorrowSet<'tcx>,
@@ -91,10 +93,10 @@ pub(crate) fn compute_regions<'a, 'tcx>(
9193
|| is_polonius_legacy_enabled;
9294
let polonius_output = consumer_options.map(|c| c.polonius_output()).unwrap_or_default()
9395
|| is_polonius_legacy_enabled;
94-
let mut all_facts =
95-
(polonius_input || AllFacts::enabled(infcx.tcx)).then_some(AllFacts::default());
96+
let mut polonius_facts =
97+
(polonius_input || PoloniusFacts::enabled(infcx.tcx)).then_some(PoloniusFacts::default());
9698

97-
let elements = Rc::new(DenseLocationMap::new(body));
99+
let location_map = Rc::new(DenseLocationMap::new(body));
98100

99101
// Run the MIR type-checker.
100102
let MirTypeckResults {
@@ -109,10 +111,10 @@ pub(crate) fn compute_regions<'a, 'tcx>(
109111
universal_regions,
110112
location_table,
111113
borrow_set,
112-
&mut all_facts,
114+
&mut polonius_facts,
113115
flow_inits,
114116
move_data,
115-
Rc::clone(&elements),
117+
Rc::clone(&location_map),
116118
);
117119

118120
// Create the region inference context, taking ownership of the
@@ -122,7 +124,7 @@ pub(crate) fn compute_regions<'a, 'tcx>(
122124

123125
// If requested, emit legacy polonius facts.
124126
polonius::legacy::emit_facts(
125-
&mut all_facts,
127+
&mut polonius_facts,
126128
infcx.tcx,
127129
location_table,
128130
body,
@@ -137,7 +139,7 @@ pub(crate) fn compute_regions<'a, 'tcx>(
137139
var_infos,
138140
constraints,
139141
universal_region_relations,
140-
elements,
142+
location_map,
141143
);
142144

143145
// If requested for `-Zpolonius=next`, convert NLL constraints to localized outlives
@@ -147,13 +149,13 @@ pub(crate) fn compute_regions<'a, 'tcx>(
147149
});
148150

149151
// If requested: dump NLL facts, and run legacy polonius analysis.
150-
let polonius_output = all_facts.as_ref().and_then(|all_facts| {
152+
let polonius_output = polonius_facts.as_ref().and_then(|polonius_facts| {
151153
if infcx.tcx.sess.opts.unstable_opts.nll_facts {
152154
let def_id = body.source.def_id();
153155
let def_path = infcx.tcx.def_path(def_id);
154156
let dir_path = PathBuf::from(&infcx.tcx.sess.opts.unstable_opts.nll_facts_dir)
155157
.join(def_path.to_filename_friendly_no_crate());
156-
all_facts.write_to_dir(dir_path, location_table).unwrap();
158+
polonius_facts.write_to_dir(dir_path, location_table).unwrap();
157159
}
158160

159161
if polonius_output {
@@ -162,7 +164,7 @@ pub(crate) fn compute_regions<'a, 'tcx>(
162164
let algorithm = Algorithm::from_str(&algorithm).unwrap();
163165
debug!("compute_regions: using polonius algorithm {:?}", algorithm);
164166
let _prof_timer = infcx.tcx.prof.generic_activity("polonius_analysis");
165-
Some(Box::new(Output::compute(all_facts, algorithm, false)))
167+
Some(Box::new(Output::compute(polonius_facts, algorithm, false)))
166168
} else {
167169
None
168170
}
@@ -182,7 +184,7 @@ pub(crate) fn compute_regions<'a, 'tcx>(
182184
NllOutput {
183185
regioncx,
184186
opaque_type_values: remapped_opaque_tys,
185-
polonius_input: all_facts.map(Box::new),
187+
polonius_input: polonius_facts.map(Box::new),
186188
polonius_output,
187189
opt_closure_req: closure_region_requirements,
188190
nll_errors,

compiler/rustc_borrowck/src/polonius/legacy/accesses.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ use rustc_middle::ty::TyCtxt;
44
use rustc_mir_dataflow::move_paths::{LookupResult, MoveData};
55
use tracing::debug;
66

7-
use super::{AllFacts, LocationIndex, LocationTable};
7+
use super::{LocationIndex, PoloniusFacts, PoloniusLocationTable};
88
use crate::def_use::{self, DefUse};
99
use crate::universal_regions::UniversalRegions;
1010

1111
/// Emit polonius facts for variable defs, uses, drops, and path accesses.
1212
pub(crate) fn emit_access_facts<'tcx>(
1313
tcx: TyCtxt<'tcx>,
14-
facts: &mut AllFacts,
14+
facts: &mut PoloniusFacts,
1515
body: &Body<'tcx>,
16-
location_table: &LocationTable,
16+
location_table: &PoloniusLocationTable,
1717
move_data: &MoveData<'tcx>,
1818
universal_regions: &UniversalRegions<'tcx>,
1919
) {
@@ -31,9 +31,9 @@ pub(crate) fn emit_access_facts<'tcx>(
3131

3232
/// MIR visitor extracting point-wise facts about accesses.
3333
struct AccessFactsExtractor<'a, 'tcx> {
34-
facts: &'a mut AllFacts,
34+
facts: &'a mut PoloniusFacts,
3535
move_data: &'a MoveData<'tcx>,
36-
location_table: &'a LocationTable,
36+
location_table: &'a PoloniusLocationTable,
3737
}
3838

3939
impl<'tcx> AccessFactsExtractor<'_, 'tcx> {

compiler/rustc_borrowck/src/polonius/legacy/facts.rs

+21-21
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ use std::fs::{self, File};
44
use std::io::Write;
55
use std::path::Path;
66

7-
use polonius_engine::{AllFacts as PoloniusFacts, Atom, Output};
7+
use polonius_engine::{AllFacts, Atom, Output};
88
use rustc_macros::extension;
99
use rustc_middle::mir::Local;
1010
use rustc_middle::ty::{RegionVid, TyCtxt};
1111
use rustc_mir_dataflow::move_paths::MovePathIndex;
1212

13-
use super::{LocationIndex, LocationTable};
13+
use super::{LocationIndex, PoloniusLocationTable};
1414
use crate::BorrowIndex;
1515

1616
#[derive(Copy, Clone, Debug)]
@@ -49,11 +49,11 @@ impl polonius_engine::FactTypes for RustcFacts {
4949
type Path = MovePathIndex;
5050
}
5151

52-
pub type AllFacts = PoloniusFacts<RustcFacts>;
52+
pub type PoloniusFacts = AllFacts<RustcFacts>;
5353

54-
#[extension(pub(crate) trait AllFactsExt)]
55-
impl AllFacts {
56-
/// Returns `true` if there is a need to gather `AllFacts` given the
54+
#[extension(pub(crate) trait PoloniusFactsExt)]
55+
impl PoloniusFacts {
56+
/// Returns `true` if there is a need to gather `PoloniusFacts` given the
5757
/// current `-Z` flags.
5858
fn enabled(tcx: TyCtxt<'_>) -> bool {
5959
tcx.sess.opts.unstable_opts.nll_facts
@@ -63,7 +63,7 @@ impl AllFacts {
6363
fn write_to_dir(
6464
&self,
6565
dir: impl AsRef<Path>,
66-
location_table: &LocationTable,
66+
location_table: &PoloniusLocationTable,
6767
) -> Result<(), Box<dyn Error>> {
6868
let dir: &Path = dir.as_ref();
6969
fs::create_dir_all(dir)?;
@@ -119,7 +119,7 @@ impl Atom for LocationIndex {
119119
}
120120

121121
struct FactWriter<'w> {
122-
location_table: &'w LocationTable,
122+
location_table: &'w PoloniusLocationTable,
123123
dir: &'w Path,
124124
}
125125

@@ -141,15 +141,15 @@ trait FactRow {
141141
fn write(
142142
&self,
143143
out: &mut dyn Write,
144-
location_table: &LocationTable,
144+
location_table: &PoloniusLocationTable,
145145
) -> Result<(), Box<dyn Error>>;
146146
}
147147

148148
impl FactRow for PoloniusRegionVid {
149149
fn write(
150150
&self,
151151
out: &mut dyn Write,
152-
location_table: &LocationTable,
152+
location_table: &PoloniusLocationTable,
153153
) -> Result<(), Box<dyn Error>> {
154154
write_row(out, location_table, &[self])
155155
}
@@ -163,7 +163,7 @@ where
163163
fn write(
164164
&self,
165165
out: &mut dyn Write,
166-
location_table: &LocationTable,
166+
location_table: &PoloniusLocationTable,
167167
) -> Result<(), Box<dyn Error>> {
168168
write_row(out, location_table, &[&self.0, &self.1])
169169
}
@@ -178,7 +178,7 @@ where
178178
fn write(
179179
&self,
180180
out: &mut dyn Write,
181-
location_table: &LocationTable,
181+
location_table: &PoloniusLocationTable,
182182
) -> Result<(), Box<dyn Error>> {
183183
write_row(out, location_table, &[&self.0, &self.1, &self.2])
184184
}
@@ -194,15 +194,15 @@ where
194194
fn write(
195195
&self,
196196
out: &mut dyn Write,
197-
location_table: &LocationTable,
197+
location_table: &PoloniusLocationTable,
198198
) -> Result<(), Box<dyn Error>> {
199199
write_row(out, location_table, &[&self.0, &self.1, &self.2, &self.3])
200200
}
201201
}
202202

203203
fn write_row(
204204
out: &mut dyn Write,
205-
location_table: &LocationTable,
205+
location_table: &PoloniusLocationTable,
206206
columns: &[&dyn FactCell],
207207
) -> Result<(), Box<dyn Error>> {
208208
for (index, c) in columns.iter().enumerate() {
@@ -213,41 +213,41 @@ fn write_row(
213213
}
214214

215215
trait FactCell {
216-
fn to_string(&self, location_table: &LocationTable) -> String;
216+
fn to_string(&self, location_table: &PoloniusLocationTable) -> String;
217217
}
218218

219219
impl FactCell for BorrowIndex {
220-
fn to_string(&self, _location_table: &LocationTable) -> String {
220+
fn to_string(&self, _location_table: &PoloniusLocationTable) -> String {
221221
format!("{self:?}")
222222
}
223223
}
224224

225225
impl FactCell for Local {
226-
fn to_string(&self, _location_table: &LocationTable) -> String {
226+
fn to_string(&self, _location_table: &PoloniusLocationTable) -> String {
227227
format!("{self:?}")
228228
}
229229
}
230230

231231
impl FactCell for MovePathIndex {
232-
fn to_string(&self, _location_table: &LocationTable) -> String {
232+
fn to_string(&self, _location_table: &PoloniusLocationTable) -> String {
233233
format!("{self:?}")
234234
}
235235
}
236236

237237
impl FactCell for PoloniusRegionVid {
238-
fn to_string(&self, _location_table: &LocationTable) -> String {
238+
fn to_string(&self, _location_table: &PoloniusLocationTable) -> String {
239239
format!("{self:?}")
240240
}
241241
}
242242

243243
impl FactCell for RegionVid {
244-
fn to_string(&self, _location_table: &LocationTable) -> String {
244+
fn to_string(&self, _location_table: &PoloniusLocationTable) -> String {
245245
format!("{self:?}")
246246
}
247247
}
248248

249249
impl FactCell for LocationIndex {
250-
fn to_string(&self, location_table: &LocationTable) -> String {
250+
fn to_string(&self, location_table: &PoloniusLocationTable) -> String {
251251
format!("{:?}", location_table.to_rich_location(*self))
252252
}
253253
}

compiler/rustc_borrowck/src/polonius/legacy/loan_invalidations.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use rustc_middle::mir::{
1111
use rustc_middle::ty::TyCtxt;
1212
use tracing::debug;
1313

14-
use super::{AllFacts, LocationTable};
14+
use super::{PoloniusFacts, PoloniusLocationTable};
1515
use crate::borrow_set::BorrowSet;
1616
use crate::path_utils::*;
1717
use crate::{
@@ -22,9 +22,9 @@ use crate::{
2222
/// Emit `loan_invalidated_at` facts.
2323
pub(super) fn emit_loan_invalidations<'tcx>(
2424
tcx: TyCtxt<'tcx>,
25-
facts: &mut AllFacts,
25+
facts: &mut PoloniusFacts,
2626
body: &Body<'tcx>,
27-
location_table: &LocationTable,
27+
location_table: &PoloniusLocationTable,
2828
borrow_set: &BorrowSet<'tcx>,
2929
) {
3030
let dominators = body.basic_blocks.dominators();
@@ -35,9 +35,9 @@ pub(super) fn emit_loan_invalidations<'tcx>(
3535

3636
struct LoanInvalidationsGenerator<'a, 'tcx> {
3737
tcx: TyCtxt<'tcx>,
38-
facts: &'a mut AllFacts,
38+
facts: &'a mut PoloniusFacts,
3939
body: &'a Body<'tcx>,
40-
location_table: &'a LocationTable,
40+
location_table: &'a PoloniusLocationTable,
4141
dominators: &'a Dominators<BasicBlock>,
4242
borrow_set: &'a BorrowSet<'tcx>,
4343
}

0 commit comments

Comments
 (0)