@@ -83,7 +83,7 @@ rustc_queries! {
83
83
/// Avoid calling this query directly.
84
84
query hir_module_items( key: LocalDefId ) -> & ' tcx rustc_middle:: hir:: ModuleItems {
85
85
arena_cache
86
- desc { |tcx| "getting HIR module items in `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
86
+ desc { |tcx| "getting HIR module items in `{}`" , tcx. def_path_str( key) }
87
87
cache_on_disk_if { true }
88
88
}
89
89
@@ -92,14 +92,14 @@ rustc_queries! {
92
92
/// This can be conveniently accessed by methods on `tcx.hir()`.
93
93
/// Avoid calling this query directly.
94
94
query hir_owner( key: hir:: OwnerId ) -> Option <crate :: hir:: Owner <' tcx>> {
95
- desc { |tcx| "getting HIR owner of `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
95
+ desc { |tcx| "getting HIR owner of `{}`" , tcx. def_path_str( key) }
96
96
}
97
97
98
98
/// Gives access to the HIR ID for the given `LocalDefId` owner `key` if any.
99
99
///
100
100
/// Definitions that were generated with no HIR, would be fed to return `None`.
101
101
query opt_local_def_id_to_hir_id( key: LocalDefId ) -> Option <hir:: HirId >{
102
- desc { |tcx| "getting HIR ID of `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
102
+ desc { |tcx| "getting HIR ID of `{}`" , tcx. def_path_str( key) }
103
103
feedable
104
104
}
105
105
@@ -108,23 +108,23 @@ rustc_queries! {
108
108
/// This can be conveniently accessed by methods on `tcx.hir()`.
109
109
/// Avoid calling this query directly.
110
110
query hir_owner_parent( key: hir:: OwnerId ) -> hir:: HirId {
111
- desc { |tcx| "getting HIR parent of `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
111
+ desc { |tcx| "getting HIR parent of `{}`" , tcx. def_path_str( key) }
112
112
}
113
113
114
114
/// Gives access to the HIR nodes and bodies inside the HIR owner `key`.
115
115
///
116
116
/// This can be conveniently accessed by methods on `tcx.hir()`.
117
117
/// Avoid calling this query directly.
118
118
query hir_owner_nodes( key: hir:: OwnerId ) -> hir:: MaybeOwner <& ' tcx hir:: OwnerNodes <' tcx>> {
119
- desc { |tcx| "getting HIR owner items in `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
119
+ desc { |tcx| "getting HIR owner items in `{}`" , tcx. def_path_str( key) }
120
120
}
121
121
122
122
/// Gives access to the HIR attributes inside the HIR owner `key`.
123
123
///
124
124
/// This can be conveniently accessed by methods on `tcx.hir()`.
125
125
/// Avoid calling this query directly.
126
126
query hir_attrs( key: hir:: OwnerId ) -> & ' tcx hir:: AttributeMap <' tcx> {
127
- desc { |tcx| "getting HIR owner attributes in `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
127
+ desc { |tcx| "getting HIR owner attributes in `{}`" , tcx. def_path_str( key) }
128
128
}
129
129
130
130
/// Given the def_id of a const-generic parameter, computes the associated default const
@@ -295,7 +295,7 @@ rustc_queries! {
295
295
query shallow_lint_levels_on( key: hir:: OwnerId ) -> & ' tcx rustc_middle:: lint:: ShallowLintLevelMap {
296
296
eval_always // fetches `resolutions`
297
297
arena_cache
298
- desc { |tcx| "looking up lint levels for `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
298
+ desc { |tcx| "looking up lint levels for `{}`" , tcx. def_path_str( key) }
299
299
}
300
300
301
301
query lint_expectations( _: ( ) ) -> & ' tcx Vec <( LintExpectationId , LintExpectation ) > {
@@ -305,7 +305,7 @@ rustc_queries! {
305
305
306
306
query parent_module_from_def_id( key: LocalDefId ) -> LocalDefId {
307
307
eval_always
308
- desc { |tcx| "getting the parent module of `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
308
+ desc { |tcx| "getting the parent module of `{}`" , tcx. def_path_str( key) }
309
309
}
310
310
311
311
query expn_that_defined( key: DefId ) -> rustc_span:: ExpnId {
@@ -321,7 +321,7 @@ rustc_queries! {
321
321
322
322
/// Checks whether a type is representable or infinitely sized
323
323
query representability( _: LocalDefId ) -> rustc_middle:: ty:: Representability {
324
- desc { "checking if `{}` is representable" , tcx. def_path_str( key. to_def_id ( ) ) }
324
+ desc { "checking if `{}` is representable" , tcx. def_path_str( key) }
325
325
// infinitely sized types will cause a cycle
326
326
cycle_delay_bug
327
327
// we don't want recursive representability calls to be forced with
@@ -349,21 +349,21 @@ rustc_queries! {
349
349
query thir_body( key: LocalDefId ) -> Result <( & ' tcx Steal <thir:: Thir <' tcx>>, thir:: ExprId ) , ErrorGuaranteed > {
350
350
// Perf tests revealed that hashing THIR is inefficient (see #85729).
351
351
no_hash
352
- desc { |tcx| "building THIR for `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
352
+ desc { |tcx| "building THIR for `{}`" , tcx. def_path_str( key) }
353
353
}
354
354
355
355
/// Create a THIR tree for debugging.
356
356
query thir_tree( key: LocalDefId ) -> & ' tcx String {
357
357
no_hash
358
358
arena_cache
359
- desc { |tcx| "constructing THIR tree for `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
359
+ desc { |tcx| "constructing THIR tree for `{}`" , tcx. def_path_str( key) }
360
360
}
361
361
362
362
/// Create a list-like THIR representation for debugging.
363
363
query thir_flat( key: LocalDefId ) -> & ' tcx String {
364
364
no_hash
365
365
arena_cache
366
- desc { |tcx| "constructing flat THIR representation for `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
366
+ desc { |tcx| "constructing flat THIR representation for `{}`" , tcx. def_path_str( key) }
367
367
}
368
368
369
369
/// Set of all the `DefId`s in this crate that have MIR associated with
@@ -386,15 +386,15 @@ rustc_queries! {
386
386
/// Fetch the MIR for a given `DefId` right after it's built - this includes
387
387
/// unreachable code.
388
388
query mir_built( key: LocalDefId ) -> & ' tcx Steal <mir:: Body <' tcx>> {
389
- desc { |tcx| "building MIR for `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
389
+ desc { |tcx| "building MIR for `{}`" , tcx. def_path_str( key) }
390
390
}
391
391
392
392
/// Fetch the MIR for a given `DefId` up till the point where it is
393
393
/// ready for const qualification.
394
394
///
395
395
/// See the README for the `mir` module for details.
396
396
query mir_const( key: LocalDefId ) -> & ' tcx Steal <mir:: Body <' tcx>> {
397
- desc { |tcx| "preparing `{}` for borrow checking" , tcx. def_path_str( key. to_def_id ( ) ) }
397
+ desc { |tcx| "preparing `{}` for borrow checking" , tcx. def_path_str( key) }
398
398
no_hash
399
399
}
400
400
@@ -410,7 +410,7 @@ rustc_queries! {
410
410
411
411
query mir_drops_elaborated_and_const_checked( key: LocalDefId ) -> & ' tcx Steal <mir:: Body <' tcx>> {
412
412
no_hash
413
- desc { |tcx| "elaborating drops for `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
413
+ desc { |tcx| "elaborating drops for `{}`" , tcx. def_path_str( key) }
414
414
}
415
415
416
416
query mir_for_ctfe(
@@ -426,13 +426,13 @@ rustc_queries! {
426
426
& ' tcx Steal <IndexVec <mir:: Promoted , mir:: Body <' tcx>>>
427
427
) {
428
428
no_hash
429
- desc { |tcx| "promoting constants in MIR for `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
429
+ desc { |tcx| "promoting constants in MIR for `{}`" , tcx. def_path_str( key) }
430
430
}
431
431
432
432
query closure_typeinfo( key: LocalDefId ) -> ty:: ClosureTypeInfo <' tcx> {
433
433
desc {
434
434
|tcx| "finding symbols for captures of closure `{}`" ,
435
- tcx. def_path_str( key. to_def_id ( ) )
435
+ tcx. def_path_str( key)
436
436
}
437
437
}
438
438
@@ -444,7 +444,7 @@ rustc_queries! {
444
444
}
445
445
446
446
query check_generator_obligations( key: LocalDefId ) {
447
- desc { |tcx| "verify auto trait bounds for generator interior type `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
447
+ desc { |tcx| "verify auto trait bounds for generator interior type `{}`" , tcx. def_path_str( key) }
448
448
}
449
449
450
450
/// MIR after our optimization passes have run. This is MIR that is ready
@@ -526,7 +526,7 @@ rustc_queries! {
526
526
/// `explicit_predicates_of` and `explicit_item_bounds` will then take
527
527
/// the appropriate subsets of the predicates here.
528
528
query trait_explicit_predicates_and_bounds( key: LocalDefId ) -> ty:: GenericPredicates <' tcx> {
529
- desc { |tcx| "computing explicit predicates of trait `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
529
+ desc { |tcx| "computing explicit predicates of trait `{}`" , tcx. def_path_str( key) }
530
530
}
531
531
532
532
/// Returns the predicates written explicitly by the user.
@@ -768,14 +768,14 @@ rustc_queries! {
768
768
769
769
/// The result of unsafety-checking this `LocalDefId`.
770
770
query unsafety_check_result( key: LocalDefId ) -> & ' tcx mir:: UnsafetyCheckResult {
771
- desc { |tcx| "unsafety-checking `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
771
+ desc { |tcx| "unsafety-checking `{}`" , tcx. def_path_str( key) }
772
772
cache_on_disk_if { true }
773
773
}
774
774
775
775
/// Unsafety-check this `LocalDefId` with THIR unsafeck. This should be
776
776
/// used with `-Zthir-unsafeck`.
777
777
query thir_check_unsafety( key: LocalDefId ) {
778
- desc { |tcx| "unsafety-checking `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
778
+ desc { |tcx| "unsafety-checking `{}`" , tcx. def_path_str( key) }
779
779
cache_on_disk_if { true }
780
780
}
781
781
@@ -872,16 +872,16 @@ rustc_queries! {
872
872
}
873
873
874
874
query typeck( key: LocalDefId ) -> & ' tcx ty:: TypeckResults <' tcx> {
875
- desc { |tcx| "type-checking `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
875
+ desc { |tcx| "type-checking `{}`" , tcx. def_path_str( key) }
876
876
cache_on_disk_if { true }
877
877
}
878
878
query diagnostic_only_typeck( key: LocalDefId ) -> & ' tcx ty:: TypeckResults <' tcx> {
879
- desc { |tcx| "type-checking `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
879
+ desc { |tcx| "type-checking `{}`" , tcx. def_path_str( key) }
880
880
cache_on_disk_if { true }
881
881
}
882
882
883
883
query used_trait_imports( key: LocalDefId ) -> & ' tcx UnordSet <LocalDefId > {
884
- desc { |tcx| "finding used_trait_imports `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
884
+ desc { |tcx| "finding used_trait_imports `{}`" , tcx. def_path_str( key) }
885
885
cache_on_disk_if { true }
886
886
}
887
887
@@ -896,7 +896,7 @@ rustc_queries! {
896
896
/// Borrow-checks the function body. If this is a closure, returns
897
897
/// additional requirements that the closure's creator must verify.
898
898
query mir_borrowck( key: LocalDefId ) -> & ' tcx mir:: BorrowCheckResult <' tcx> {
899
- desc { |tcx| "borrow-checking `{}`" , tcx. def_path_str( key. to_def_id ( ) ) }
899
+ desc { |tcx| "borrow-checking `{}`" , tcx. def_path_str( key) }
900
900
cache_on_disk_if( tcx) { tcx. is_typeck_child( key. to_def_id( ) ) }
901
901
}
902
902
@@ -918,7 +918,7 @@ rustc_queries! {
918
918
query orphan_check_impl( key: LocalDefId ) -> Result <( ) , ErrorGuaranteed > {
919
919
desc { |tcx|
920
920
"checking whether impl `{}` follows the orphan rules" ,
921
- tcx. def_path_str( key. to_def_id ( ) ) ,
921
+ tcx. def_path_str( key) ,
922
922
}
923
923
}
924
924
@@ -930,7 +930,7 @@ rustc_queries! {
930
930
desc { |tcx|
931
931
"computing if `{}` (transitively) calls `{}`" ,
932
932
key. 0 ,
933
- tcx. def_path_str( key. 1 . to_def_id ( ) ) ,
933
+ tcx. def_path_str( key. 1 ) ,
934
934
}
935
935
}
936
936
@@ -1368,7 +1368,7 @@ rustc_queries! {
1368
1368
separate_provide_extern
1369
1369
}
1370
1370
query has_ffi_unwind_calls( key: LocalDefId ) -> bool {
1371
- desc { |tcx| "checking if `{}` contains FFI-unwind calls" , tcx. def_path_str( key. to_def_id ( ) ) }
1371
+ desc { |tcx| "checking if `{}` contains FFI-unwind calls" , tcx. def_path_str( key) }
1372
1372
cache_on_disk_if { true }
1373
1373
}
1374
1374
query required_panic_strategy( _: CrateNum ) -> Option <PanicStrategy > {
@@ -1414,7 +1414,7 @@ rustc_queries! {
1414
1414
}
1415
1415
1416
1416
query check_well_formed( key: hir:: OwnerId ) -> ( ) {
1417
- desc { |tcx| "checking that `{}` is well-formed" , tcx. def_path_str( key. to_def_id ( ) ) }
1417
+ desc { |tcx| "checking that `{}` is well-formed" , tcx. def_path_str( key) }
1418
1418
}
1419
1419
1420
1420
// The `DefId`s of all non-generic functions and statics in the given crate
@@ -1443,7 +1443,7 @@ rustc_queries! {
1443
1443
query is_unreachable_local_definition( def_id: LocalDefId ) -> bool {
1444
1444
desc { |tcx|
1445
1445
"checking whether `{}` is reachable from outside the crate" ,
1446
- tcx. def_path_str( def_id. to_def_id ( ) ) ,
1446
+ tcx. def_path_str( def_id) ,
1447
1447
}
1448
1448
}
1449
1449
@@ -1637,7 +1637,7 @@ rustc_queries! {
1637
1637
separate_provide_extern
1638
1638
}
1639
1639
query extern_mod_stmt_cnum( def_id: LocalDefId ) -> Option <CrateNum > {
1640
- desc { |tcx| "computing crate imported by `{}`" , tcx. def_path_str( def_id. to_def_id ( ) ) }
1640
+ desc { |tcx| "computing crate imported by `{}`" , tcx. def_path_str( def_id) }
1641
1641
}
1642
1642
1643
1643
query lib_features( _: ( ) ) -> & ' tcx LibFeatures {
@@ -1741,7 +1741,7 @@ rustc_queries! {
1741
1741
desc { "fetching potentially unused trait imports" }
1742
1742
}
1743
1743
query names_imported_by_glob_use( def_id: LocalDefId ) -> & ' tcx UnordSet <Symbol > {
1744
- desc { |tcx| "finding names imported by glob use for `{}`" , tcx. def_path_str( def_id. to_def_id ( ) ) }
1744
+ desc { |tcx| "finding names imported by glob use for `{}`" , tcx. def_path_str( def_id) }
1745
1745
}
1746
1746
1747
1747
query stability_index( _: ( ) ) -> & ' tcx stability:: Index {
@@ -2064,7 +2064,7 @@ rustc_queries! {
2064
2064
query compare_impl_const(
2065
2065
key: ( LocalDefId , DefId )
2066
2066
) -> Result <( ) , ErrorGuaranteed > {
2067
- desc { |tcx| "checking assoc const `{}` has the same type as trait item" , tcx. def_path_str( key. 0 . to_def_id ( ) ) }
2067
+ desc { |tcx| "checking assoc const `{}` has the same type as trait item" , tcx. def_path_str( key. 0 ) }
2068
2068
}
2069
2069
2070
2070
query deduced_param_attrs( def_id: DefId ) -> & ' tcx [ ty:: DeducedParamAttrs ] {
0 commit comments