@@ -384,7 +384,7 @@ fn collect_items_rec<'tcx>(
384
384
385
385
if let Ok ( alloc) = tcx. eval_static_initializer ( def_id) {
386
386
for & id in alloc. inner ( ) . provenance ( ) . ptrs ( ) . values ( ) {
387
- collect_miri ( tcx, id, & mut used_items) ;
387
+ collect_alloc ( tcx, id, & mut used_items) ;
388
388
}
389
389
}
390
390
@@ -1331,8 +1331,8 @@ fn create_mono_items_for_default_impls<'tcx>(
1331
1331
}
1332
1332
}
1333
1333
1334
- /// Scans the miri alloc in order to find function calls, closures, and drop-glue.
1335
- fn collect_miri < ' tcx > ( tcx : TyCtxt < ' tcx > , alloc_id : AllocId , output : & mut MonoItems < ' tcx > ) {
1334
+ /// Scans the CTFE alloc in order to find function calls, closures, and drop-glue.
1335
+ fn collect_alloc < ' tcx > ( tcx : TyCtxt < ' tcx > , alloc_id : AllocId , output : & mut MonoItems < ' tcx > ) {
1336
1336
match tcx. global_alloc ( alloc_id) {
1337
1337
GlobalAlloc :: Static ( def_id) => {
1338
1338
assert ! ( !tcx. is_thread_local_static( def_id) ) ;
@@ -1346,7 +1346,7 @@ fn collect_miri<'tcx>(tcx: TyCtxt<'tcx>, alloc_id: AllocId, output: &mut MonoIte
1346
1346
trace ! ( "collecting {:?} with {:#?}" , alloc_id, alloc) ;
1347
1347
for & inner in alloc. inner ( ) . provenance ( ) . ptrs ( ) . values ( ) {
1348
1348
rustc_data_structures:: stack:: ensure_sufficient_stack ( || {
1349
- collect_miri ( tcx, inner, output) ;
1349
+ collect_alloc ( tcx, inner, output) ;
1350
1350
} ) ;
1351
1351
}
1352
1352
}
@@ -1358,7 +1358,7 @@ fn collect_miri<'tcx>(tcx: TyCtxt<'tcx>, alloc_id: AllocId, output: &mut MonoIte
1358
1358
}
1359
1359
GlobalAlloc :: VTable ( ty, trait_ref) => {
1360
1360
let alloc_id = tcx. vtable_allocation ( ( ty, trait_ref) ) ;
1361
- collect_miri ( tcx, alloc_id, output)
1361
+ collect_alloc ( tcx, alloc_id, output)
1362
1362
}
1363
1363
}
1364
1364
}
@@ -1381,10 +1381,10 @@ fn collect_const_value<'tcx>(
1381
1381
output : & mut MonoItems < ' tcx > ,
1382
1382
) {
1383
1383
match value {
1384
- ConstValue :: Scalar ( Scalar :: Ptr ( ptr, _size) ) => collect_miri ( tcx, ptr. provenance , output) ,
1384
+ ConstValue :: Scalar ( Scalar :: Ptr ( ptr, _size) ) => collect_alloc ( tcx, ptr. provenance , output) ,
1385
1385
ConstValue :: Slice { data : alloc, start : _, end : _ } | ConstValue :: ByRef { alloc, .. } => {
1386
1386
for & id in alloc. inner ( ) . provenance ( ) . ptrs ( ) . values ( ) {
1387
- collect_miri ( tcx, id, output) ;
1387
+ collect_alloc ( tcx, id, output) ;
1388
1388
}
1389
1389
}
1390
1390
_ => { }
0 commit comments