1use rustc_index::IndexVec;
2use rustc_middle::mir::{BasicBlock, Body, Location};
3use tracing::debug;
45/// Maps between a MIR Location, which identifies a particular
6/// statement within a basic block, to a "rich location", which
7/// identifies at a finer granularity. In particular, we distinguish
8/// the *start* of a statement and the *mid-point*. The mid-point is
9/// the point *just* before the statement takes effect; in particular,
10/// for an assignment `A = B`, it is the point where B is about to be
11/// written into A. This mid-point is a kind of hack to work around
12/// our inability to track the position information at sufficient
13/// granularity through outlives relations; however, the rich location
14/// table serves another purpose: it compresses locations from
15/// multiple words into a single u32.
16pub struct PoloniusLocationTable {
17 num_points: usize,
18 statements_before_block: IndexVec<BasicBlock, usize>,
19}
2021impl ::std::fmt::Debug for LocationIndex {
fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
fmt.write_fmt(format_args!("LocationIndex({0})", self.as_u32()))
}
}rustc_index::newtype_index! {
22#[orderable]
23 #[debug_format = "LocationIndex({})"]
24pub struct LocationIndex {}
25}2627#[derive(#[automatically_derived]
impl ::core::marker::Copy for RichLocation { }Copy, #[automatically_derived]
impl ::core::clone::Clone for RichLocation {
#[inline]
fn clone(&self) -> RichLocation {
let _: ::core::clone::AssertParamIsClone<Location>;
*self
}
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for RichLocation {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
RichLocation::Start(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Start",
&__self_0),
RichLocation::Mid(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Mid",
&__self_0),
}
}
}Debug)]
28pub enum RichLocation {
29 Start(Location),
30 Mid(Location),
31}
3233impl PoloniusLocationTable {
34pub(crate) fn new(body: &Body<'_>) -> Self {
35let mut num_points = 0;
36let statements_before_block = body37 .basic_blocks
38 .iter()
39 .map(|block_data| {
40let v = num_points;
41num_points += (block_data.statements.len() + 1) * 2;
42v43 })
44 .collect();
4546{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_borrowck/src/polonius/legacy/location.rs:46",
"rustc_borrowck::polonius::legacy::location",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_borrowck/src/polonius/legacy/location.rs"),
::tracing_core::__macro_support::Option::Some(46u32),
::tracing_core::__macro_support::Option::Some("rustc_borrowck::polonius::legacy::location"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("PoloniusLocationTable(statements_before_block={0:#?})",
statements_before_block) as &dyn Value))])
});
} else { ; }
};debug!("PoloniusLocationTable(statements_before_block={:#?})", statements_before_block);
47{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_borrowck/src/polonius/legacy/location.rs:47",
"rustc_borrowck::polonius::legacy::location",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_borrowck/src/polonius/legacy/location.rs"),
::tracing_core::__macro_support::Option::Some(47u32),
::tracing_core::__macro_support::Option::Some("rustc_borrowck::polonius::legacy::location"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("PoloniusLocationTable: num_points={0:#?}",
num_points) as &dyn Value))])
});
} else { ; }
};debug!("PoloniusLocationTable: num_points={:#?}", num_points);
4849Self { num_points, statements_before_block }
50 }
5152pub fn all_points(&self) -> impl Iterator<Item = LocationIndex> {
53 (0..self.num_points).map(LocationIndex::from_usize)
54 }
5556pub fn start_index(&self, location: Location) -> LocationIndex {
57let Location { block, statement_index } = location;
58let start_index = self.statements_before_block[block];
59LocationIndex::from_usize(start_index + statement_index * 2)
60 }
6162pub fn mid_index(&self, location: Location) -> LocationIndex {
63let Location { block, statement_index } = location;
64let start_index = self.statements_before_block[block];
65LocationIndex::from_usize(start_index + statement_index * 2 + 1)
66 }
6768pub fn to_rich_location(&self, index: LocationIndex) -> RichLocation {
69let point_index = index.index();
7071// Find the basic block. We have a vector with the
72 // starting index of the statement in each block. Imagine
73 // we have statement #22, and we have a vector like:
74 //
75 // [0, 10, 20]
76 //
77 // In that case, this represents point_index 2 of
78 // basic block BB2. We know this because BB0 accounts for
79 // 0..10, BB1 accounts for 11..20, and BB2 accounts for
80 // 20...
81 //
82 // To compute this, we could do a binary search, but
83 // because I am lazy we instead iterate through to find
84 // the last point where the "first index" (0, 10, or 20)
85 // was less than the statement index (22). In our case, this will
86 // be (BB2, 20).
87let (block, &first_index) = self88 .statements_before_block
89 .iter_enumerated()
90 .rfind(|&(_, &first_index)| first_index <= point_index)
91 .unwrap();
9293let statement_index = (point_index - first_index) / 2;
94if index.is_start() {
95 RichLocation::Start(Location { block, statement_index })
96 } else {
97 RichLocation::Mid(Location { block, statement_index })
98 }
99 }
100101pub fn to_location(&self, index: LocationIndex) -> Location {
102match self.to_rich_location(index) {
103 RichLocation::Start(location) => location,
104 RichLocation::Mid(location) => location,
105 }
106 }
107}
108109impl LocationIndex {
110fn is_start(self) -> bool {
111// even indices are start points; odd indices are mid points
112self.index().is_multiple_of(2)
113 }
114}