@@ -10,7 +10,7 @@ use rustc_middle::mir::Local;
10
10
use rustc_middle:: ty:: { RegionVid , TyCtxt } ;
11
11
use rustc_mir_dataflow:: move_paths:: MovePathIndex ;
12
12
13
- use super :: { LocationIndex , LocationTable } ;
13
+ use super :: { LocationIndex , PoloniusLocationTable } ;
14
14
use crate :: BorrowIndex ;
15
15
16
16
#[ derive( Copy , Clone , Debug ) ]
@@ -63,7 +63,7 @@ impl AllFacts {
63
63
fn write_to_dir (
64
64
& self ,
65
65
dir : impl AsRef < Path > ,
66
- location_table : & LocationTable ,
66
+ location_table : & PoloniusLocationTable ,
67
67
) -> Result < ( ) , Box < dyn Error > > {
68
68
let dir: & Path = dir. as_ref ( ) ;
69
69
fs:: create_dir_all ( dir) ?;
@@ -119,7 +119,7 @@ impl Atom for LocationIndex {
119
119
}
120
120
121
121
struct FactWriter < ' w > {
122
- location_table : & ' w LocationTable ,
122
+ location_table : & ' w PoloniusLocationTable ,
123
123
dir : & ' w Path ,
124
124
}
125
125
@@ -141,15 +141,15 @@ trait FactRow {
141
141
fn write (
142
142
& self ,
143
143
out : & mut dyn Write ,
144
- location_table : & LocationTable ,
144
+ location_table : & PoloniusLocationTable ,
145
145
) -> Result < ( ) , Box < dyn Error > > ;
146
146
}
147
147
148
148
impl FactRow for PoloniusRegionVid {
149
149
fn write (
150
150
& self ,
151
151
out : & mut dyn Write ,
152
- location_table : & LocationTable ,
152
+ location_table : & PoloniusLocationTable ,
153
153
) -> Result < ( ) , Box < dyn Error > > {
154
154
write_row ( out, location_table, & [ self ] )
155
155
}
@@ -163,7 +163,7 @@ where
163
163
fn write (
164
164
& self ,
165
165
out : & mut dyn Write ,
166
- location_table : & LocationTable ,
166
+ location_table : & PoloniusLocationTable ,
167
167
) -> Result < ( ) , Box < dyn Error > > {
168
168
write_row ( out, location_table, & [ & self . 0 , & self . 1 ] )
169
169
}
@@ -178,7 +178,7 @@ where
178
178
fn write (
179
179
& self ,
180
180
out : & mut dyn Write ,
181
- location_table : & LocationTable ,
181
+ location_table : & PoloniusLocationTable ,
182
182
) -> Result < ( ) , Box < dyn Error > > {
183
183
write_row ( out, location_table, & [ & self . 0 , & self . 1 , & self . 2 ] )
184
184
}
@@ -194,15 +194,15 @@ where
194
194
fn write (
195
195
& self ,
196
196
out : & mut dyn Write ,
197
- location_table : & LocationTable ,
197
+ location_table : & PoloniusLocationTable ,
198
198
) -> Result < ( ) , Box < dyn Error > > {
199
199
write_row ( out, location_table, & [ & self . 0 , & self . 1 , & self . 2 , & self . 3 ] )
200
200
}
201
201
}
202
202
203
203
fn write_row (
204
204
out : & mut dyn Write ,
205
- location_table : & LocationTable ,
205
+ location_table : & PoloniusLocationTable ,
206
206
columns : & [ & dyn FactCell ] ,
207
207
) -> Result < ( ) , Box < dyn Error > > {
208
208
for ( index, c) in columns. iter ( ) . enumerate ( ) {
@@ -213,41 +213,41 @@ fn write_row(
213
213
}
214
214
215
215
trait FactCell {
216
- fn to_string ( & self , location_table : & LocationTable ) -> String ;
216
+ fn to_string ( & self , location_table : & PoloniusLocationTable ) -> String ;
217
217
}
218
218
219
219
impl FactCell for BorrowIndex {
220
- fn to_string ( & self , _location_table : & LocationTable ) -> String {
220
+ fn to_string ( & self , _location_table : & PoloniusLocationTable ) -> String {
221
221
format ! ( "{self:?}" )
222
222
}
223
223
}
224
224
225
225
impl FactCell for Local {
226
- fn to_string ( & self , _location_table : & LocationTable ) -> String {
226
+ fn to_string ( & self , _location_table : & PoloniusLocationTable ) -> String {
227
227
format ! ( "{self:?}" )
228
228
}
229
229
}
230
230
231
231
impl FactCell for MovePathIndex {
232
- fn to_string ( & self , _location_table : & LocationTable ) -> String {
232
+ fn to_string ( & self , _location_table : & PoloniusLocationTable ) -> String {
233
233
format ! ( "{self:?}" )
234
234
}
235
235
}
236
236
237
237
impl FactCell for PoloniusRegionVid {
238
- fn to_string ( & self , _location_table : & LocationTable ) -> String {
238
+ fn to_string ( & self , _location_table : & PoloniusLocationTable ) -> String {
239
239
format ! ( "{self:?}" )
240
240
}
241
241
}
242
242
243
243
impl FactCell for RegionVid {
244
- fn to_string ( & self , _location_table : & LocationTable ) -> String {
244
+ fn to_string ( & self , _location_table : & PoloniusLocationTable ) -> String {
245
245
format ! ( "{self:?}" )
246
246
}
247
247
}
248
248
249
249
impl FactCell for LocationIndex {
250
- fn to_string ( & self , location_table : & LocationTable ) -> String {
250
+ fn to_string ( & self , location_table : & PoloniusLocationTable ) -> String {
251
251
format ! ( "{:?}" , location_table. to_rich_location( * self ) )
252
252
}
253
253
}
0 commit comments