]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_middle/src/query/mod.rs
Auto merge of #90273 - nbdd0121:const, r=fee1-dead
[rust.git] / compiler / rustc_middle / src / query / mod.rs
1 // Each of these queries corresponds to a function pointer field in the
2 // `Providers` struct for requesting a value of that type, and a method
3 // on `tcx: TyCtxt` (and `tcx.at(span)`) for doing that request in a way
4 // which memoizes and does dep-graph tracking, wrapping around the actual
5 // `Providers` that the driver creates (using several `rustc_*` crates).
6 //
7 // The result type of each query must implement `Clone`, and additionally
8 // `ty::query::values::Value`, which produces an appropriate placeholder
9 // (error) value if the query resulted in a query cycle.
10 // Queries marked with `fatal_cycle` do not need the latter implementation,
11 // as they will raise an fatal error on query cycles instead.
12 rustc_queries! {
13     query trigger_delay_span_bug(key: DefId) -> () {
14         desc { "trigger a delay span bug" }
15     }
16
17     query resolutions(_: ()) -> &'tcx ty::ResolverOutputs {
18         eval_always
19         no_hash
20         desc { "get the resolver outputs" }
21     }
22
23     /// Return the span for a definition.
24     /// Contrary to `def_span` below, this query returns the full absolute span of the definition.
25     /// This span is meant for dep-tracking rather than diagnostics. It should not be used outside
26     /// of rustc_middle::hir::source_map.
27     query source_span(key: LocalDefId) -> Span {
28         desc { "get the source span" }
29     }
30
31     /// Represents crate as a whole (as distinct from the top-level crate module).
32     /// If you call `hir_crate` (e.g., indirectly by calling `tcx.hir().krate()`),
33     /// we will have to assume that any change means that you need to be recompiled.
34     /// This is because the `hir_crate` query gives you access to all other items.
35     /// To avoid this fate, do not call `tcx.hir().krate()`; instead,
36     /// prefer wrappers like `tcx.visit_all_items_in_krate()`.
37     query hir_crate(key: ()) -> &'tcx Crate<'tcx> {
38         eval_always
39         desc { "get the crate HIR" }
40     }
41
42     /// The items in a module.
43     ///
44     /// This can be conveniently accessed by `tcx.hir().visit_item_likes_in_module`.
45     /// Avoid calling this query directly.
46     query hir_module_items(key: LocalDefId) -> rustc_middle::hir::ModuleItems {
47         storage(ArenaCacheSelector<'tcx>)
48         desc { |tcx| "HIR module items in `{}`", tcx.def_path_str(key.to_def_id()) }
49     }
50
51     /// Gives access to the HIR node for the HIR owner `key`.
52     ///
53     /// This can be conveniently accessed by methods on `tcx.hir()`.
54     /// Avoid calling this query directly.
55     query hir_owner(key: LocalDefId) -> Option<crate::hir::Owner<'tcx>> {
56         desc { |tcx| "HIR owner of `{}`", tcx.def_path_str(key.to_def_id()) }
57     }
58
59     /// Gives access to the HIR node's parent for the HIR owner `key`.
60     ///
61     /// This can be conveniently accessed by methods on `tcx.hir()`.
62     /// Avoid calling this query directly.
63     query hir_owner_parent(key: LocalDefId) -> hir::HirId {
64         desc { |tcx| "HIR parent of `{}`", tcx.def_path_str(key.to_def_id()) }
65     }
66
67     /// Gives access to the HIR nodes and bodies inside the HIR owner `key`.
68     ///
69     /// This can be conveniently accessed by methods on `tcx.hir()`.
70     /// Avoid calling this query directly.
71     query hir_owner_nodes(key: LocalDefId) -> Option<&'tcx hir::OwnerNodes<'tcx>> {
72         desc { |tcx| "HIR owner items in `{}`", tcx.def_path_str(key.to_def_id()) }
73     }
74
75     /// Gives access to the HIR attributes inside the HIR owner `key`.
76     ///
77     /// This can be conveniently accessed by methods on `tcx.hir()`.
78     /// Avoid calling this query directly.
79     query hir_attrs(key: LocalDefId) -> &'tcx hir::AttributeMap<'tcx> {
80         desc { |tcx| "HIR owner attributes in `{}`", tcx.def_path_str(key.to_def_id()) }
81     }
82
83     /// Computes the `DefId` of the corresponding const parameter in case the `key` is a
84     /// const argument and returns `None` otherwise.
85     ///
86     /// ```ignore (incomplete)
87     /// let a = foo::<7>();
88     /// //            ^ Calling `opt_const_param_of` for this argument,
89     ///
90     /// fn foo<const N: usize>()
91     /// //           ^ returns this `DefId`.
92     ///
93     /// fn bar() {
94     /// // ^ While calling `opt_const_param_of` for other bodies returns `None`.
95     /// }
96     /// ```
97     // It looks like caching this query on disk actually slightly
98     // worsened performance in #74376.
99     //
100     // Once const generics are more prevalently used, we might want to
101     // consider only caching calls returning `Some`.
102     query opt_const_param_of(key: LocalDefId) -> Option<DefId> {
103         desc { |tcx| "computing the optional const parameter of `{}`", tcx.def_path_str(key.to_def_id()) }
104     }
105
106     /// Given the def_id of a const-generic parameter, computes the associated default const
107     /// parameter. e.g. `fn example<const N: usize=3>` called on `N` would return `3`.
108     query const_param_default(param: DefId) -> &'tcx ty::Const<'tcx> {
109         desc { |tcx| "compute const default for a given parameter `{}`", tcx.def_path_str(param)  }
110         separate_provide_extern
111     }
112
113     query default_anon_const_substs(key: DefId) -> SubstsRef<'tcx> {
114         desc { |tcx| "computing the default generic arguments for `{}`", tcx.def_path_str(key) }
115     }
116
117     /// Records the type of every item.
118     query type_of(key: DefId) -> Ty<'tcx> {
119         desc { |tcx|
120             "{action} `{path}`",
121             action = {
122                 use rustc_hir::def::DefKind;
123                 match tcx.def_kind(key) {
124                     DefKind::TyAlias => "expanding type alias",
125                     DefKind::TraitAlias => "expanding trait alias",
126                     _ => "computing type of",
127                 }
128             },
129             path = tcx.def_path_str(key),
130         }
131         cache_on_disk_if { key.is_local() }
132         separate_provide_extern
133     }
134
135     query analysis(key: ()) -> Result<(), ErrorReported> {
136         eval_always
137         desc { "running analysis passes on this crate" }
138     }
139
140     /// Maps from the `DefId` of an item (trait/struct/enum/fn) to its
141     /// associated generics.
142     query generics_of(key: DefId) -> ty::Generics {
143         desc { |tcx| "computing generics of `{}`", tcx.def_path_str(key) }
144         storage(ArenaCacheSelector<'tcx>)
145         cache_on_disk_if { key.is_local() }
146         separate_provide_extern
147     }
148
149     /// Maps from the `DefId` of an item (trait/struct/enum/fn) to the
150     /// predicates (where-clauses) that must be proven true in order
151     /// to reference it. This is almost always the "predicates query"
152     /// that you want.
153     ///
154     /// `predicates_of` builds on `predicates_defined_on` -- in fact,
155     /// it is almost always the same as that query, except for the
156     /// case of traits. For traits, `predicates_of` contains
157     /// an additional `Self: Trait<...>` predicate that users don't
158     /// actually write. This reflects the fact that to invoke the
159     /// trait (e.g., via `Default::default`) you must supply types
160     /// that actually implement the trait. (However, this extra
161     /// predicate gets in the way of some checks, which are intended
162     /// to operate over only the actual where-clauses written by the
163     /// user.)
164     query predicates_of(key: DefId) -> ty::GenericPredicates<'tcx> {
165         desc { |tcx| "computing predicates of `{}`", tcx.def_path_str(key) }
166         cache_on_disk_if { key.is_local() }
167     }
168
169     /// Returns the list of bounds that can be used for
170     /// `SelectionCandidate::ProjectionCandidate(_)` and
171     /// `ProjectionTyCandidate::TraitDef`.
172     /// Specifically this is the bounds written on the trait's type
173     /// definition, or those after the `impl` keyword
174     ///
175     /// ```ignore (incomplete)
176     /// type X: Bound + 'lt
177     /// //      ^^^^^^^^^^^
178     /// impl Debug + Display
179     /// //   ^^^^^^^^^^^^^^^
180     /// ```
181     ///
182     /// `key` is the `DefId` of the associated type or opaque type.
183     ///
184     /// Bounds from the parent (e.g. with nested impl trait) are not included.
185     query explicit_item_bounds(key: DefId) -> &'tcx [(ty::Predicate<'tcx>, Span)] {
186         desc { |tcx| "finding item bounds for `{}`", tcx.def_path_str(key) }
187         separate_provide_extern
188     }
189
190     /// Elaborated version of the predicates from `explicit_item_bounds`.
191     ///
192     /// For example:
193     ///
194     /// ```
195     /// trait MyTrait {
196     ///     type MyAType: Eq + ?Sized;
197     /// }
198     /// ```
199     ///
200     /// `explicit_item_bounds` returns `[<Self as MyTrait>::MyAType: Eq]`,
201     /// and `item_bounds` returns
202     /// ```text
203     /// [
204     ///     <Self as Trait>::MyAType: Eq,
205     ///     <Self as Trait>::MyAType: PartialEq<<Self as Trait>::MyAType>
206     /// ]
207     /// ```
208     ///
209     /// Bounds from the parent (e.g. with nested impl trait) are not included.
210     query item_bounds(key: DefId) -> &'tcx ty::List<ty::Predicate<'tcx>> {
211         desc { |tcx| "elaborating item bounds for `{}`", tcx.def_path_str(key) }
212     }
213
214     query native_libraries(_: CrateNum) -> Lrc<Vec<NativeLib>> {
215         desc { "looking up the native libraries of a linked crate" }
216         separate_provide_extern
217     }
218
219     query lint_levels(_: ()) -> LintLevelMap {
220         storage(ArenaCacheSelector<'tcx>)
221         eval_always
222         desc { "computing the lint levels for items in this crate" }
223     }
224
225     query parent_module_from_def_id(key: LocalDefId) -> LocalDefId {
226         eval_always
227         desc { |tcx| "parent module of `{}`", tcx.def_path_str(key.to_def_id()) }
228     }
229
230     query expn_that_defined(key: DefId) -> rustc_span::ExpnId {
231         // This query reads from untracked data in definitions.
232         eval_always
233         desc { |tcx| "expansion that defined `{}`", tcx.def_path_str(key) }
234         separate_provide_extern
235     }
236
237     query is_panic_runtime(_: CrateNum) -> bool {
238         fatal_cycle
239         desc { "checking if the crate is_panic_runtime" }
240         separate_provide_extern
241     }
242
243     /// Fetch the THIR for a given body. If typeck for that body failed, returns an empty `Thir`.
244     query thir_body(key: ty::WithOptConstParam<LocalDefId>) -> (&'tcx Steal<thir::Thir<'tcx>>, thir::ExprId) {
245         // Perf tests revealed that hashing THIR is inefficient (see #85729).
246         no_hash
247         desc { |tcx| "building THIR for `{}`", tcx.def_path_str(key.did.to_def_id()) }
248     }
249
250     /// Create a THIR tree for debugging.
251     query thir_tree(key: ty::WithOptConstParam<LocalDefId>) -> String {
252         no_hash
253         desc { |tcx| "constructing THIR tree for `{}`", tcx.def_path_str(key.did.to_def_id()) }
254     }
255
256     /// Set of all the `DefId`s in this crate that have MIR associated with
257     /// them. This includes all the body owners, but also things like struct
258     /// constructors.
259     query mir_keys(_: ()) -> FxHashSet<LocalDefId> {
260         storage(ArenaCacheSelector<'tcx>)
261         desc { "getting a list of all mir_keys" }
262     }
263
264     /// Maps DefId's that have an associated `mir::Body` to the result
265     /// of the MIR const-checking pass. This is the set of qualifs in
266     /// the final value of a `const`.
267     query mir_const_qualif(key: DefId) -> mir::ConstQualifs {
268         desc { |tcx| "const checking `{}`", tcx.def_path_str(key) }
269         cache_on_disk_if { key.is_local() }
270         separate_provide_extern
271     }
272     query mir_const_qualif_const_arg(
273         key: (LocalDefId, DefId)
274     ) -> mir::ConstQualifs {
275         desc {
276             |tcx| "const checking the const argument `{}`",
277             tcx.def_path_str(key.0.to_def_id())
278         }
279     }
280
281     /// Fetch the MIR for a given `DefId` right after it's built - this includes
282     /// unreachable code.
283     query mir_built(key: ty::WithOptConstParam<LocalDefId>) -> &'tcx Steal<mir::Body<'tcx>> {
284         desc { |tcx| "building MIR for `{}`", tcx.def_path_str(key.did.to_def_id()) }
285     }
286
287     /// Fetch the MIR for a given `DefId` up till the point where it is
288     /// ready for const qualification.
289     ///
290     /// See the README for the `mir` module for details.
291     query mir_const(key: ty::WithOptConstParam<LocalDefId>) -> &'tcx Steal<mir::Body<'tcx>> {
292         desc {
293             |tcx| "processing MIR for {}`{}`",
294             if key.const_param_did.is_some() { "the const argument " } else { "" },
295             tcx.def_path_str(key.did.to_def_id()),
296         }
297         no_hash
298     }
299
300     /// Try to build an abstract representation of the given constant.
301     query thir_abstract_const(
302         key: DefId
303     ) -> Result<Option<&'tcx [thir::abstract_const::Node<'tcx>]>, ErrorReported> {
304         desc {
305             |tcx| "building an abstract representation for {}", tcx.def_path_str(key),
306         }
307         separate_provide_extern
308     }
309     /// Try to build an abstract representation of the given constant.
310     query thir_abstract_const_of_const_arg(
311         key: (LocalDefId, DefId)
312     ) -> Result<Option<&'tcx [thir::abstract_const::Node<'tcx>]>, ErrorReported> {
313         desc {
314             |tcx|
315             "building an abstract representation for the const argument {}",
316             tcx.def_path_str(key.0.to_def_id()),
317         }
318     }
319
320     query try_unify_abstract_consts(key: (
321         ty::Unevaluated<'tcx, ()>, ty::Unevaluated<'tcx, ()>
322     )) -> bool {
323         desc {
324             |tcx| "trying to unify the generic constants {} and {}",
325             tcx.def_path_str(key.0.def.did), tcx.def_path_str(key.1.def.did)
326         }
327     }
328
329     query mir_drops_elaborated_and_const_checked(
330         key: ty::WithOptConstParam<LocalDefId>
331     ) -> &'tcx Steal<mir::Body<'tcx>> {
332         no_hash
333         desc { |tcx| "elaborating drops for `{}`", tcx.def_path_str(key.did.to_def_id()) }
334     }
335
336     query mir_for_ctfe(
337         key: DefId
338     ) -> &'tcx mir::Body<'tcx> {
339         desc { |tcx| "caching mir of `{}` for CTFE", tcx.def_path_str(key) }
340         cache_on_disk_if { key.is_local() }
341         separate_provide_extern
342     }
343
344     query mir_for_ctfe_of_const_arg(key: (LocalDefId, DefId)) -> &'tcx mir::Body<'tcx> {
345         desc {
346             |tcx| "MIR for CTFE of the const argument `{}`",
347             tcx.def_path_str(key.0.to_def_id())
348         }
349     }
350
351     query mir_promoted(key: ty::WithOptConstParam<LocalDefId>) ->
352         (
353             &'tcx Steal<mir::Body<'tcx>>,
354             &'tcx Steal<IndexVec<mir::Promoted, mir::Body<'tcx>>>
355         ) {
356         no_hash
357         desc {
358             |tcx| "processing {}`{}`",
359             if key.const_param_did.is_some() { "the const argument " } else { "" },
360             tcx.def_path_str(key.did.to_def_id()),
361         }
362     }
363
364     query symbols_for_closure_captures(
365         key: (LocalDefId, DefId)
366     ) -> Vec<rustc_span::Symbol> {
367         desc {
368             |tcx| "symbols for captures of closure `{}` in `{}`",
369             tcx.def_path_str(key.1),
370             tcx.def_path_str(key.0.to_def_id())
371         }
372     }
373
374     /// MIR after our optimization passes have run. This is MIR that is ready
375     /// for codegen. This is also the only query that can fetch non-local MIR, at present.
376     query optimized_mir(key: DefId) -> &'tcx mir::Body<'tcx> {
377         desc { |tcx| "optimizing MIR for `{}`", tcx.def_path_str(key) }
378         cache_on_disk_if { key.is_local() }
379         separate_provide_extern
380     }
381
382     /// Returns coverage summary info for a function, after executing the `InstrumentCoverage`
383     /// MIR pass (assuming the -Zinstrument-coverage option is enabled).
384     query coverageinfo(key: ty::InstanceDef<'tcx>) -> mir::CoverageInfo {
385         desc { |tcx| "retrieving coverage info from MIR for `{}`", tcx.def_path_str(key.def_id()) }
386         storage(ArenaCacheSelector<'tcx>)
387     }
388
389     /// Returns the name of the file that contains the function body, if instrumented for coverage.
390     query covered_file_name(key: DefId) -> Option<Symbol> {
391         desc {
392             |tcx| "retrieving the covered file name, if instrumented, for `{}`",
393             tcx.def_path_str(key)
394         }
395         storage(ArenaCacheSelector<'tcx>)
396         cache_on_disk_if { key.is_local() }
397     }
398
399     /// Returns the `CodeRegions` for a function that has instrumented coverage, in case the
400     /// function was optimized out before codegen, and before being added to the Coverage Map.
401     query covered_code_regions(key: DefId) -> Vec<&'tcx mir::coverage::CodeRegion> {
402         desc {
403             |tcx| "retrieving the covered `CodeRegion`s, if instrumented, for `{}`",
404             tcx.def_path_str(key)
405         }
406         storage(ArenaCacheSelector<'tcx>)
407         cache_on_disk_if { key.is_local() }
408     }
409
410     /// The `DefId` is the `DefId` of the containing MIR body. Promoteds do not have their own
411     /// `DefId`. This function returns all promoteds in the specified body. The body references
412     /// promoteds by the `DefId` and the `mir::Promoted` index. This is necessary, because
413     /// after inlining a body may refer to promoteds from other bodies. In that case you still
414     /// need to use the `DefId` of the original body.
415     query promoted_mir(key: DefId) -> &'tcx IndexVec<mir::Promoted, mir::Body<'tcx>> {
416         desc { |tcx| "optimizing promoted MIR for `{}`", tcx.def_path_str(key) }
417         cache_on_disk_if { key.is_local() }
418         separate_provide_extern
419     }
420     query promoted_mir_of_const_arg(
421         key: (LocalDefId, DefId)
422     ) -> &'tcx IndexVec<mir::Promoted, mir::Body<'tcx>> {
423         desc {
424             |tcx| "optimizing promoted MIR for the const argument `{}`",
425             tcx.def_path_str(key.0.to_def_id()),
426         }
427     }
428
429     /// Erases regions from `ty` to yield a new type.
430     /// Normally you would just use `tcx.erase_regions(value)`,
431     /// however, which uses this query as a kind of cache.
432     query erase_regions_ty(ty: Ty<'tcx>) -> Ty<'tcx> {
433         // This query is not expected to have input -- as a result, it
434         // is not a good candidates for "replay" because it is essentially a
435         // pure function of its input (and hence the expectation is that
436         // no caller would be green **apart** from just these
437         // queries). Making it anonymous avoids hashing the result, which
438         // may save a bit of time.
439         anon
440         desc { "erasing regions from `{:?}`", ty }
441     }
442
443     query wasm_import_module_map(_: CrateNum) -> FxHashMap<DefId, String> {
444         storage(ArenaCacheSelector<'tcx>)
445         desc { "wasm import module map" }
446     }
447
448     /// Maps from the `DefId` of an item (trait/struct/enum/fn) to the
449     /// predicates (where-clauses) directly defined on it. This is
450     /// equal to the `explicit_predicates_of` predicates plus the
451     /// `inferred_outlives_of` predicates.
452     query predicates_defined_on(key: DefId) -> ty::GenericPredicates<'tcx> {
453         desc { |tcx| "computing predicates of `{}`", tcx.def_path_str(key) }
454     }
455
456     /// Returns everything that looks like a predicate written explicitly
457     /// by the user on a trait item.
458     ///
459     /// Traits are unusual, because predicates on associated types are
460     /// converted into bounds on that type for backwards compatibility:
461     ///
462     /// trait X where Self::U: Copy { type U; }
463     ///
464     /// becomes
465     ///
466     /// trait X { type U: Copy; }
467     ///
468     /// `explicit_predicates_of` and `explicit_item_bounds` will then take
469     /// the appropriate subsets of the predicates here.
470     query trait_explicit_predicates_and_bounds(key: LocalDefId) -> ty::GenericPredicates<'tcx> {
471         desc { |tcx| "computing explicit predicates of trait `{}`", tcx.def_path_str(key.to_def_id()) }
472     }
473
474     /// Returns the predicates written explicitly by the user.
475     query explicit_predicates_of(key: DefId) -> ty::GenericPredicates<'tcx> {
476         desc { |tcx| "computing explicit predicates of `{}`", tcx.def_path_str(key) }
477         separate_provide_extern
478     }
479
480     /// Returns the inferred outlives predicates (e.g., for `struct
481     /// Foo<'a, T> { x: &'a T }`, this would return `T: 'a`).
482     query inferred_outlives_of(key: DefId) -> &'tcx [(ty::Predicate<'tcx>, Span)] {
483         desc { |tcx| "computing inferred outlives predicates of `{}`", tcx.def_path_str(key) }
484         separate_provide_extern
485     }
486
487     /// Maps from the `DefId` of a trait to the list of
488     /// super-predicates. This is a subset of the full list of
489     /// predicates. We store these in a separate map because we must
490     /// evaluate them even during type conversion, often before the
491     /// full predicates are available (note that supertraits have
492     /// additional acyclicity requirements).
493     query super_predicates_of(key: DefId) -> ty::GenericPredicates<'tcx> {
494         desc { |tcx| "computing the super predicates of `{}`", tcx.def_path_str(key) }
495         separate_provide_extern
496     }
497
498     /// The `Option<Ident>` is the name of an associated type. If it is `None`, then this query
499     /// returns the full set of predicates. If `Some<Ident>`, then the query returns only the
500     /// subset of super-predicates that reference traits that define the given associated type.
501     /// This is used to avoid cycles in resolving types like `T::Item`.
502     query super_predicates_that_define_assoc_type(key: (DefId, Option<rustc_span::symbol::Ident>)) -> ty::GenericPredicates<'tcx> {
503         desc { |tcx| "computing the super traits of `{}`{}",
504             tcx.def_path_str(key.0),
505             if let Some(assoc_name) = key.1 { format!(" with associated type name `{}`", assoc_name) } else { "".to_string() },
506         }
507     }
508
509     /// To avoid cycles within the predicates of a single item we compute
510     /// per-type-parameter predicates for resolving `T::AssocTy`.
511     query type_param_predicates(key: (DefId, LocalDefId, rustc_span::symbol::Ident)) -> ty::GenericPredicates<'tcx> {
512         desc { |tcx| "computing the bounds for type parameter `{}`", {
513             let id = tcx.hir().local_def_id_to_hir_id(key.1);
514             tcx.hir().ty_param_name(id)
515         }}
516     }
517
518     query trait_def(key: DefId) -> ty::TraitDef {
519         desc { |tcx| "computing trait definition for `{}`", tcx.def_path_str(key) }
520         storage(ArenaCacheSelector<'tcx>)
521         separate_provide_extern
522     }
523     query adt_def(key: DefId) -> &'tcx ty::AdtDef {
524         desc { |tcx| "computing ADT definition for `{}`", tcx.def_path_str(key) }
525         separate_provide_extern
526     }
527     query adt_destructor(key: DefId) -> Option<ty::Destructor> {
528         desc { |tcx| "computing `Drop` impl for `{}`", tcx.def_path_str(key) }
529         separate_provide_extern
530     }
531
532     // The cycle error here should be reported as an error by `check_representable`.
533     // We consider the type as Sized in the meanwhile to avoid
534     // further errors (done in impl Value for AdtSizedConstraint).
535     // Use `cycle_delay_bug` to delay the cycle error here to be emitted later
536     // in case we accidentally otherwise don't emit an error.
537     query adt_sized_constraint(
538         key: DefId
539     ) -> AdtSizedConstraint<'tcx> {
540         desc { |tcx| "computing `Sized` constraints for `{}`", tcx.def_path_str(key) }
541         cycle_delay_bug
542     }
543
544     query adt_dtorck_constraint(
545         key: DefId
546     ) -> Result<DtorckConstraint<'tcx>, NoSolution> {
547         desc { |tcx| "computing drop-check constraints for `{}`", tcx.def_path_str(key) }
548     }
549
550     /// Returns `true` if this is a const fn, use the `is_const_fn` to know whether your crate
551     /// actually sees it as const fn (e.g., the const-fn-ness might be unstable and you might
552     /// not have the feature gate active).
553     ///
554     /// **Do not call this function manually.** It is only meant to cache the base data for the
555     /// `is_const_fn` function.
556     query is_const_fn_raw(key: DefId) -> bool {
557         desc { |tcx| "checking if item is const fn: `{}`", tcx.def_path_str(key) }
558         separate_provide_extern
559     }
560
561     query asyncness(key: DefId) -> hir::IsAsync {
562         desc { |tcx| "checking if the function is async: `{}`", tcx.def_path_str(key) }
563         separate_provide_extern
564     }
565
566     /// Returns `true` if calls to the function may be promoted.
567     ///
568     /// This is either because the function is e.g., a tuple-struct or tuple-variant
569     /// constructor, or because it has the `#[rustc_promotable]` attribute. The attribute should
570     /// be removed in the future in favour of some form of check which figures out whether the
571     /// function does not inspect the bits of any of its arguments (so is essentially just a
572     /// constructor function).
573     query is_promotable_const_fn(key: DefId) -> bool {
574         desc { |tcx| "checking if item is promotable: `{}`", tcx.def_path_str(key) }
575     }
576
577     /// Returns `true` if this is a foreign item (i.e., linked via `extern { ... }`).
578     query is_foreign_item(key: DefId) -> bool {
579         desc { |tcx| "checking if `{}` is a foreign item", tcx.def_path_str(key) }
580         separate_provide_extern
581     }
582
583     /// Returns `Some(mutability)` if the node pointed to by `def_id` is a static item.
584     query static_mutability(def_id: DefId) -> Option<hir::Mutability> {
585         desc { |tcx| "looking up static mutability of `{}`", tcx.def_path_str(def_id) }
586         separate_provide_extern
587     }
588
589     /// Returns `Some(generator_kind)` if the node pointed to by `def_id` is a generator.
590     query generator_kind(def_id: DefId) -> Option<hir::GeneratorKind> {
591         desc { |tcx| "looking up generator kind of `{}`", tcx.def_path_str(def_id) }
592         separate_provide_extern
593     }
594
595     /// Gets a map with the variance of every item; use `item_variance` instead.
596     query crate_variances(_: ()) -> ty::CrateVariancesMap<'tcx> {
597         storage(ArenaCacheSelector<'tcx>)
598         desc { "computing the variances for items in this crate" }
599     }
600
601     /// Maps from the `DefId` of a type or region parameter to its (inferred) variance.
602     query variances_of(def_id: DefId) -> &'tcx [ty::Variance] {
603         desc { |tcx| "computing the variances of `{}`", tcx.def_path_str(def_id) }
604         separate_provide_extern
605     }
606
607     /// Maps from thee `DefId` of a type to its (inferred) outlives.
608     query inferred_outlives_crate(_: ()) -> ty::CratePredicatesMap<'tcx> {
609         storage(ArenaCacheSelector<'tcx>)
610         desc { "computing the inferred outlives predicates for items in this crate" }
611     }
612
613     /// Maps from an impl/trait `DefId` to a list of the `DefId`s of its items.
614     query associated_item_def_ids(key: DefId) -> &'tcx [DefId] {
615         desc { |tcx| "collecting associated items of `{}`", tcx.def_path_str(key) }
616         separate_provide_extern
617     }
618
619     /// Maps from a trait item to the trait item "descriptor".
620     query associated_item(key: DefId) -> ty::AssocItem {
621         desc { |tcx| "computing associated item data for `{}`", tcx.def_path_str(key) }
622         storage(ArenaCacheSelector<'tcx>)
623         separate_provide_extern
624     }
625
626     /// Collects the associated items defined on a trait or impl.
627     query associated_items(key: DefId) -> ty::AssocItems<'tcx> {
628         storage(ArenaCacheSelector<'tcx>)
629         desc { |tcx| "collecting associated items of {}", tcx.def_path_str(key) }
630     }
631
632     /// Given an `impl_id`, return the trait it implements.
633     /// Return `None` if this is an inherent impl.
634     query impl_trait_ref(impl_id: DefId) -> Option<ty::TraitRef<'tcx>> {
635         desc { |tcx| "computing trait implemented by `{}`", tcx.def_path_str(impl_id) }
636         separate_provide_extern
637     }
638     query impl_polarity(impl_id: DefId) -> ty::ImplPolarity {
639         desc { |tcx| "computing implementation polarity of `{}`", tcx.def_path_str(impl_id) }
640         separate_provide_extern
641     }
642
643     query issue33140_self_ty(key: DefId) -> Option<ty::Ty<'tcx>> {
644         desc { |tcx| "computing Self type wrt issue #33140 `{}`", tcx.def_path_str(key) }
645     }
646
647     /// Maps a `DefId` of a type to a list of its inherent impls.
648     /// Contains implementations of methods that are inherent to a type.
649     /// Methods in these implementations don't need to be exported.
650     query inherent_impls(key: DefId) -> &'tcx [DefId] {
651         desc { |tcx| "collecting inherent impls for `{}`", tcx.def_path_str(key) }
652         eval_always
653         separate_provide_extern
654     }
655
656     /// The result of unsafety-checking this `LocalDefId`.
657     query unsafety_check_result(key: LocalDefId) -> &'tcx mir::UnsafetyCheckResult {
658         desc { |tcx| "unsafety-checking `{}`", tcx.def_path_str(key.to_def_id()) }
659         cache_on_disk_if { true }
660     }
661     query unsafety_check_result_for_const_arg(key: (LocalDefId, DefId)) -> &'tcx mir::UnsafetyCheckResult {
662         desc {
663             |tcx| "unsafety-checking the const argument `{}`",
664             tcx.def_path_str(key.0.to_def_id())
665         }
666     }
667
668     /// Unsafety-check this `LocalDefId` with THIR unsafeck. This should be
669     /// used with `-Zthir-unsafeck`.
670     query thir_check_unsafety(key: LocalDefId) {
671         desc { |tcx| "unsafety-checking `{}`", tcx.def_path_str(key.to_def_id()) }
672         cache_on_disk_if { true }
673     }
674     query thir_check_unsafety_for_const_arg(key: (LocalDefId, DefId)) {
675         desc {
676             |tcx| "unsafety-checking the const argument `{}`",
677             tcx.def_path_str(key.0.to_def_id())
678         }
679     }
680
681     /// HACK: when evaluated, this reports an "unsafe derive on repr(packed)" error.
682     ///
683     /// Unsafety checking is executed for each method separately, but we only want
684     /// to emit this error once per derive. As there are some impls with multiple
685     /// methods, we use a query for deduplication.
686     query unsafe_derive_on_repr_packed(key: LocalDefId) -> () {
687         desc { |tcx| "processing `{}`", tcx.def_path_str(key.to_def_id()) }
688     }
689
690     /// The signature of functions.
691     query fn_sig(key: DefId) -> ty::PolyFnSig<'tcx> {
692         desc { |tcx| "computing function signature of `{}`", tcx.def_path_str(key) }
693         separate_provide_extern
694     }
695
696     query lint_mod(key: LocalDefId) -> () {
697         desc { |tcx| "linting {}", describe_as_module(key, tcx) }
698     }
699
700     /// Checks the attributes in the module.
701     query check_mod_attrs(key: LocalDefId) -> () {
702         desc { |tcx| "checking attributes in {}", describe_as_module(key, tcx) }
703     }
704
705     query check_mod_unstable_api_usage(key: LocalDefId) -> () {
706         desc { |tcx| "checking for unstable API usage in {}", describe_as_module(key, tcx) }
707     }
708
709     /// Checks the const bodies in the module for illegal operations (e.g. `if` or `loop`).
710     query check_mod_const_bodies(key: LocalDefId) -> () {
711         desc { |tcx| "checking consts in {}", describe_as_module(key, tcx) }
712     }
713
714     /// Checks the loops in the module.
715     query check_mod_loops(key: LocalDefId) -> () {
716         desc { |tcx| "checking loops in {}", describe_as_module(key, tcx) }
717     }
718
719     query check_mod_naked_functions(key: LocalDefId) -> () {
720         desc { |tcx| "checking naked functions in {}", describe_as_module(key, tcx) }
721     }
722
723     query check_mod_item_types(key: LocalDefId) -> () {
724         desc { |tcx| "checking item types in {}", describe_as_module(key, tcx) }
725     }
726
727     query check_mod_privacy(key: LocalDefId) -> () {
728         desc { |tcx| "checking privacy in {}", describe_as_module(key, tcx) }
729     }
730
731     query check_mod_intrinsics(key: LocalDefId) -> () {
732         desc { |tcx| "checking intrinsics in {}", describe_as_module(key, tcx) }
733     }
734
735     query check_mod_liveness(key: LocalDefId) -> () {
736         desc { |tcx| "checking liveness of variables in {}", describe_as_module(key, tcx) }
737     }
738
739     query check_mod_impl_wf(key: LocalDefId) -> () {
740         desc { |tcx| "checking that impls are well-formed in {}", describe_as_module(key, tcx) }
741     }
742
743     query collect_mod_item_types(key: LocalDefId) -> () {
744         desc { |tcx| "collecting item types in {}", describe_as_module(key, tcx) }
745     }
746
747     /// Caches `CoerceUnsized` kinds for impls on custom types.
748     query coerce_unsized_info(key: DefId) -> ty::adjustment::CoerceUnsizedInfo {
749         desc { |tcx| "computing CoerceUnsized info for `{}`", tcx.def_path_str(key) }
750         separate_provide_extern
751     }
752
753     query typeck_item_bodies(_: ()) -> () {
754         desc { "type-checking all item bodies" }
755     }
756
757     query typeck(key: LocalDefId) -> &'tcx ty::TypeckResults<'tcx> {
758         desc { |tcx| "type-checking `{}`", tcx.def_path_str(key.to_def_id()) }
759         cache_on_disk_if { true }
760     }
761     query typeck_const_arg(
762         key: (LocalDefId, DefId)
763     ) -> &'tcx ty::TypeckResults<'tcx> {
764         desc {
765             |tcx| "type-checking the const argument `{}`",
766             tcx.def_path_str(key.0.to_def_id()),
767         }
768     }
769     query diagnostic_only_typeck(key: LocalDefId) -> &'tcx ty::TypeckResults<'tcx> {
770         desc { |tcx| "type-checking `{}`", tcx.def_path_str(key.to_def_id()) }
771         cache_on_disk_if { true }
772         load_cached(tcx, id) {
773             let typeck_results: Option<ty::TypeckResults<'tcx>> = tcx
774                 .on_disk_cache().as_ref()
775                 .and_then(|c| c.try_load_query_result(*tcx, id));
776
777             typeck_results.map(|x| &*tcx.arena.alloc(x))
778         }
779     }
780
781     query used_trait_imports(key: LocalDefId) -> &'tcx FxHashSet<LocalDefId> {
782         desc { |tcx| "used_trait_imports `{}`", tcx.def_path_str(key.to_def_id()) }
783         cache_on_disk_if { true }
784     }
785
786     query has_typeck_results(def_id: DefId) -> bool {
787         desc { |tcx| "checking whether `{}` has a body", tcx.def_path_str(def_id) }
788     }
789
790     query coherent_trait(def_id: DefId) -> () {
791         desc { |tcx| "coherence checking all impls of trait `{}`", tcx.def_path_str(def_id) }
792     }
793
794     /// Borrow-checks the function body. If this is a closure, returns
795     /// additional requirements that the closure's creator must verify.
796     query mir_borrowck(key: LocalDefId) -> &'tcx mir::BorrowCheckResult<'tcx> {
797         desc { |tcx| "borrow-checking `{}`", tcx.def_path_str(key.to_def_id()) }
798         cache_on_disk_if(tcx) { tcx.is_closure(key.to_def_id()) }
799     }
800     query mir_borrowck_const_arg(key: (LocalDefId, DefId)) -> &'tcx mir::BorrowCheckResult<'tcx> {
801         desc {
802             |tcx| "borrow-checking the const argument`{}`",
803             tcx.def_path_str(key.0.to_def_id())
804         }
805     }
806
807     /// Gets a complete map from all types to their inherent impls.
808     /// Not meant to be used directly outside of coherence.
809     query crate_inherent_impls(k: ()) -> CrateInherentImpls {
810         storage(ArenaCacheSelector<'tcx>)
811         eval_always
812         desc { "all inherent impls defined in crate" }
813     }
814
815     /// Checks all types in the crate for overlap in their inherent impls. Reports errors.
816     /// Not meant to be used directly outside of coherence.
817     query crate_inherent_impls_overlap_check(_: ())
818         -> () {
819         eval_always
820         desc { "check for overlap between inherent impls defined in this crate" }
821     }
822
823     /// Check whether the function has any recursion that could cause the inliner to trigger
824     /// a cycle. Returns the call stack causing the cycle. The call stack does not contain the
825     /// current function, just all intermediate functions.
826     query mir_callgraph_reachable(key: (ty::Instance<'tcx>, LocalDefId)) -> bool {
827         fatal_cycle
828         desc { |tcx|
829             "computing if `{}` (transitively) calls `{}`",
830             key.0,
831             tcx.def_path_str(key.1.to_def_id()),
832         }
833     }
834
835     /// Obtain all the calls into other local functions
836     query mir_inliner_callees(key: ty::InstanceDef<'tcx>) -> &'tcx [(DefId, SubstsRef<'tcx>)] {
837         fatal_cycle
838         desc { |tcx|
839             "computing all local function calls in `{}`",
840             tcx.def_path_str(key.def_id()),
841         }
842     }
843
844     /// Evaluates a constant and returns the computed allocation.
845     ///
846     /// **Do not use this** directly, use the `tcx.eval_static_initializer` wrapper.
847     query eval_to_allocation_raw(key: ty::ParamEnvAnd<'tcx, GlobalId<'tcx>>)
848         -> EvalToAllocationRawResult<'tcx> {
849         desc { |tcx|
850             "const-evaluating + checking `{}`",
851             key.value.display(tcx)
852         }
853         cache_on_disk_if { true }
854     }
855
856     /// Evaluates const items or anonymous constants
857     /// (such as enum variant explicit discriminants or array lengths)
858     /// into a representation suitable for the type system and const generics.
859     ///
860     /// **Do not use this** directly, use one of the following wrappers: `tcx.const_eval_poly`,
861     /// `tcx.const_eval_resolve`, `tcx.const_eval_instance`, or `tcx.const_eval_global_id`.
862     query eval_to_const_value_raw(key: ty::ParamEnvAnd<'tcx, GlobalId<'tcx>>)
863         -> EvalToConstValueResult<'tcx> {
864         desc { |tcx|
865             "simplifying constant for the type system `{}`",
866             key.value.display(tcx)
867         }
868         cache_on_disk_if { true }
869     }
870
871     /// Convert an evaluated constant to a type level constant or
872     /// return `None` if that is not possible.
873     query const_to_valtree(
874         key: ty::ParamEnvAnd<'tcx, ConstAlloc<'tcx>>
875     ) -> Option<ty::ValTree<'tcx>> {
876         desc { "destructure constant" }
877     }
878
879     /// Destructure a constant ADT or array into its variant index and its
880     /// field values.
881     query destructure_const(
882         key: ty::ParamEnvAnd<'tcx, &'tcx ty::Const<'tcx>>
883     ) -> mir::DestructuredConst<'tcx> {
884         desc { "destructure constant" }
885     }
886
887     /// Dereference a constant reference or raw pointer and turn the result into a constant
888     /// again.
889     query deref_const(
890         key: ty::ParamEnvAnd<'tcx, &'tcx ty::Const<'tcx>>
891     ) -> &'tcx ty::Const<'tcx> {
892         desc { "deref constant" }
893     }
894
895     query const_caller_location(key: (rustc_span::Symbol, u32, u32)) -> ConstValue<'tcx> {
896         desc { "get a &core::panic::Location referring to a span" }
897     }
898
899     query lit_to_const(
900         key: LitToConstInput<'tcx>
901     ) -> Result<&'tcx ty::Const<'tcx>, LitToConstError> {
902         desc { "converting literal to const" }
903     }
904
905     query check_match(key: DefId) {
906         desc { |tcx| "match-checking `{}`", tcx.def_path_str(key) }
907         cache_on_disk_if { key.is_local() }
908     }
909
910     /// Performs part of the privacy check and computes "access levels".
911     query privacy_access_levels(_: ()) -> &'tcx AccessLevels {
912         eval_always
913         desc { "privacy access levels" }
914     }
915     query check_private_in_public(_: ()) -> () {
916         eval_always
917         desc { "checking for private elements in public interfaces" }
918     }
919
920     query reachable_set(_: ()) -> FxHashSet<LocalDefId> {
921         storage(ArenaCacheSelector<'tcx>)
922         desc { "reachability" }
923     }
924
925     /// Per-body `region::ScopeTree`. The `DefId` should be the owner `DefId` for the body;
926     /// in the case of closures, this will be redirected to the enclosing function.
927     query region_scope_tree(def_id: DefId) -> &'tcx region::ScopeTree {
928         desc { |tcx| "computing drop scopes for `{}`", tcx.def_path_str(def_id) }
929     }
930
931     query mir_shims(key: ty::InstanceDef<'tcx>) -> mir::Body<'tcx> {
932         storage(ArenaCacheSelector<'tcx>)
933         desc { |tcx| "generating MIR shim for `{}`", tcx.def_path_str(key.def_id()) }
934     }
935
936     /// The `symbol_name` query provides the symbol name for calling a
937     /// given instance from the local crate. In particular, it will also
938     /// look up the correct symbol name of instances from upstream crates.
939     query symbol_name(key: ty::Instance<'tcx>) -> ty::SymbolName<'tcx> {
940         desc { "computing the symbol for `{}`", key }
941         cache_on_disk_if { true }
942     }
943
944     query opt_def_kind(def_id: DefId) -> Option<DefKind> {
945         desc { |tcx| "looking up definition kind of `{}`", tcx.def_path_str(def_id) }
946         separate_provide_extern
947     }
948
949     query def_span(def_id: DefId) -> Span {
950         desc { |tcx| "looking up span for `{}`", tcx.def_path_str(def_id) }
951         separate_provide_extern
952     }
953
954     query def_ident_span(def_id: DefId) -> Option<Span> {
955         desc { |tcx| "looking up span for `{}`'s identifier", tcx.def_path_str(def_id) }
956         separate_provide_extern
957     }
958
959     query lookup_stability(def_id: DefId) -> Option<&'tcx attr::Stability> {
960         desc { |tcx| "looking up stability of `{}`", tcx.def_path_str(def_id) }
961         separate_provide_extern
962     }
963
964     query lookup_const_stability(def_id: DefId) -> Option<&'tcx attr::ConstStability> {
965         desc { |tcx| "looking up const stability of `{}`", tcx.def_path_str(def_id) }
966         separate_provide_extern
967     }
968
969     query should_inherit_track_caller(def_id: DefId) -> bool {
970         desc { |tcx| "computing should_inherit_track_caller of `{}`", tcx.def_path_str(def_id) }
971     }
972
973     query lookup_deprecation_entry(def_id: DefId) -> Option<DeprecationEntry> {
974         desc { |tcx| "checking whether `{}` is deprecated", tcx.def_path_str(def_id) }
975         separate_provide_extern
976     }
977
978     query item_attrs(def_id: DefId) -> &'tcx [ast::Attribute] {
979         desc { |tcx| "collecting attributes of `{}`", tcx.def_path_str(def_id) }
980         separate_provide_extern
981     }
982
983     query codegen_fn_attrs(def_id: DefId) -> CodegenFnAttrs {
984         desc { |tcx| "computing codegen attributes of `{}`", tcx.def_path_str(def_id) }
985         storage(ArenaCacheSelector<'tcx>)
986         cache_on_disk_if { true }
987     }
988
989     query fn_arg_names(def_id: DefId) -> &'tcx [rustc_span::symbol::Ident] {
990         desc { |tcx| "looking up function parameter names for `{}`", tcx.def_path_str(def_id) }
991         separate_provide_extern
992     }
993     /// Gets the rendered value of the specified constant or associated constant.
994     /// Used by rustdoc.
995     query rendered_const(def_id: DefId) -> String {
996         desc { |tcx| "rendering constant intializer of `{}`", tcx.def_path_str(def_id) }
997         separate_provide_extern
998     }
999     query impl_parent(def_id: DefId) -> Option<DefId> {
1000         desc { |tcx| "computing specialization parent impl of `{}`", tcx.def_path_str(def_id) }
1001         separate_provide_extern
1002     }
1003
1004     /// Given an `associated_item`, find the trait it belongs to.
1005     /// Return `None` if the `DefId` is not an associated item.
1006     query trait_of_item(associated_item: DefId) -> Option<DefId> {
1007         desc { |tcx| "finding trait defining `{}`", tcx.def_path_str(associated_item) }
1008         separate_provide_extern
1009     }
1010
1011     query is_ctfe_mir_available(key: DefId) -> bool {
1012         desc { |tcx| "checking if item has ctfe mir available: `{}`", tcx.def_path_str(key) }
1013         separate_provide_extern
1014     }
1015     query is_mir_available(key: DefId) -> bool {
1016         desc { |tcx| "checking if item has mir available: `{}`", tcx.def_path_str(key) }
1017         separate_provide_extern
1018     }
1019
1020     query own_existential_vtable_entries(
1021         key: ty::PolyExistentialTraitRef<'tcx>
1022     ) -> &'tcx [DefId] {
1023         desc { |tcx| "finding all existential vtable entries for trait {}", tcx.def_path_str(key.def_id()) }
1024     }
1025
1026     query vtable_entries(key: ty::PolyTraitRef<'tcx>)
1027                         -> &'tcx [ty::VtblEntry<'tcx>] {
1028         desc { |tcx| "finding all vtable entries for trait {}", tcx.def_path_str(key.def_id()) }
1029     }
1030
1031     query vtable_trait_upcasting_coercion_new_vptr_slot(key: (ty::Ty<'tcx>, ty::Ty<'tcx>)) -> Option<usize> {
1032         desc { |tcx| "finding the slot within vtable for trait object {} vtable ptr during trait upcasting coercion from {} vtable",
1033             key.1, key.0 }
1034     }
1035
1036     query vtable_allocation(key: (Ty<'tcx>, Option<ty::PolyExistentialTraitRef<'tcx>>)) -> mir::interpret::AllocId {
1037         desc { |tcx| "vtable const allocation for <{} as {}>",
1038             key.0,
1039             key.1.map(|trait_ref| format!("{}", trait_ref)).unwrap_or("_".to_owned())
1040         }
1041     }
1042
1043     query codegen_fulfill_obligation(
1044         key: (ty::ParamEnv<'tcx>, ty::PolyTraitRef<'tcx>)
1045     ) -> Result<ImplSource<'tcx, ()>, ErrorReported> {
1046         cache_on_disk_if { true }
1047         desc { |tcx|
1048             "checking if `{}` fulfills its obligations",
1049             tcx.def_path_str(key.1.def_id())
1050         }
1051     }
1052
1053     /// Return all `impl` blocks in the current crate.
1054     ///
1055     /// To allow caching this between crates, you must pass in [`LOCAL_CRATE`] as the crate number.
1056     /// Passing in any other crate will cause an ICE.
1057     ///
1058     /// [`LOCAL_CRATE`]: rustc_hir::def_id::LOCAL_CRATE
1059     query all_local_trait_impls(_: ()) -> &'tcx BTreeMap<DefId, Vec<LocalDefId>> {
1060         desc { "local trait impls" }
1061     }
1062
1063     /// Given a trait `trait_id`, return all known `impl` blocks.
1064     query trait_impls_of(trait_id: DefId) -> ty::trait_def::TraitImpls {
1065         storage(ArenaCacheSelector<'tcx>)
1066         desc { |tcx| "trait impls of `{}`", tcx.def_path_str(trait_id) }
1067     }
1068
1069     query specialization_graph_of(trait_id: DefId) -> specialization_graph::Graph {
1070         storage(ArenaCacheSelector<'tcx>)
1071         desc { |tcx| "building specialization graph of trait `{}`", tcx.def_path_str(trait_id) }
1072         cache_on_disk_if { true }
1073     }
1074     query object_safety_violations(trait_id: DefId) -> &'tcx [traits::ObjectSafetyViolation] {
1075         desc { |tcx| "determine object safety of trait `{}`", tcx.def_path_str(trait_id) }
1076     }
1077
1078     /// Gets the ParameterEnvironment for a given item; this environment
1079     /// will be in "user-facing" mode, meaning that it is suitable for
1080     /// type-checking etc, and it does not normalize specializable
1081     /// associated types. This is almost always what you want,
1082     /// unless you are doing MIR optimizations, in which case you
1083     /// might want to use `reveal_all()` method to change modes.
1084     query param_env(def_id: DefId) -> ty::ParamEnv<'tcx> {
1085         desc { |tcx| "computing normalized predicates of `{}`", tcx.def_path_str(def_id) }
1086     }
1087
1088     /// Like `param_env`, but returns the `ParamEnv` in `Reveal::All` mode.
1089     /// Prefer this over `tcx.param_env(def_id).with_reveal_all_normalized(tcx)`,
1090     /// as this method is more efficient.
1091     query param_env_reveal_all_normalized(def_id: DefId) -> ty::ParamEnv<'tcx> {
1092         desc { |tcx| "computing revealed normalized predicates of `{}`", tcx.def_path_str(def_id) }
1093     }
1094
1095     /// Trait selection queries. These are best used by invoking `ty.is_copy_modulo_regions()`,
1096     /// `ty.is_copy()`, etc, since that will prune the environment where possible.
1097     query is_copy_raw(env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> bool {
1098         desc { "computing whether `{}` is `Copy`", env.value }
1099     }
1100     /// Query backing `TyS::is_sized`.
1101     query is_sized_raw(env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> bool {
1102         desc { "computing whether `{}` is `Sized`", env.value }
1103     }
1104     /// Query backing `TyS::is_freeze`.
1105     query is_freeze_raw(env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> bool {
1106         desc { "computing whether `{}` is freeze", env.value }
1107     }
1108     /// Query backing `TyS::is_unpin`.
1109     query is_unpin_raw(env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> bool {
1110         desc { "computing whether `{}` is `Unpin`", env.value }
1111     }
1112     /// Query backing `TyS::needs_drop`.
1113     query needs_drop_raw(env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> bool {
1114         desc { "computing whether `{}` needs drop", env.value }
1115     }
1116     /// Query backing `TyS::has_significant_drop_raw`.
1117     query has_significant_drop_raw(env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> bool {
1118         desc { "computing whether `{}` has a significant drop", env.value }
1119     }
1120
1121     /// Query backing `TyS::is_structural_eq_shallow`.
1122     ///
1123     /// This is only correct for ADTs. Call `is_structural_eq_shallow` to handle all types
1124     /// correctly.
1125     query has_structural_eq_impls(ty: Ty<'tcx>) -> bool {
1126         desc {
1127             "computing whether `{:?}` implements `PartialStructuralEq` and `StructuralEq`",
1128             ty
1129         }
1130     }
1131
1132     /// A list of types where the ADT requires drop if and only if any of
1133     /// those types require drop. If the ADT is known to always need drop
1134     /// then `Err(AlwaysRequiresDrop)` is returned.
1135     query adt_drop_tys(def_id: DefId) -> Result<&'tcx ty::List<Ty<'tcx>>, AlwaysRequiresDrop> {
1136         desc { |tcx| "computing when `{}` needs drop", tcx.def_path_str(def_id) }
1137         cache_on_disk_if { true }
1138     }
1139
1140     /// A list of types where the ADT requires drop if and only if any of those types
1141     /// has significant drop. A type marked with the attribute `rustc_insignificant_dtor`
1142     /// is considered to not be significant. A drop is significant if it is implemented
1143     /// by the user or does anything that will have any observable behavior (other than
1144     /// freeing up memory). If the ADT is known to have a significant destructor then
1145     /// `Err(AlwaysRequiresDrop)` is returned.
1146     query adt_significant_drop_tys(def_id: DefId) -> Result<&'tcx ty::List<Ty<'tcx>>, AlwaysRequiresDrop> {
1147         desc { |tcx| "computing when `{}` has a significant destructor", tcx.def_path_str(def_id) }
1148         cache_on_disk_if { false }
1149     }
1150
1151     /// Computes the layout of a type. Note that this implicitly
1152     /// executes in "reveal all" mode, and will normalize the input type.
1153     query layout_of(
1154         key: ty::ParamEnvAnd<'tcx, Ty<'tcx>>
1155     ) -> Result<ty::layout::TyAndLayout<'tcx>, ty::layout::LayoutError<'tcx>> {
1156         desc { "computing layout of `{}`", key.value }
1157     }
1158
1159     /// Compute a `FnAbi` suitable for indirect calls, i.e. to `fn` pointers.
1160     ///
1161     /// NB: this doesn't handle virtual calls - those should use `fn_abi_of_instance`
1162     /// instead, where the instance is an `InstanceDef::Virtual`.
1163     query fn_abi_of_fn_ptr(
1164         key: ty::ParamEnvAnd<'tcx, (ty::PolyFnSig<'tcx>, &'tcx ty::List<Ty<'tcx>>)>
1165     ) -> Result<&'tcx abi::call::FnAbi<'tcx, Ty<'tcx>>, ty::layout::FnAbiError<'tcx>> {
1166         desc { "computing call ABI of `{}` function pointers", key.value.0 }
1167     }
1168
1169     /// Compute a `FnAbi` suitable for declaring/defining an `fn` instance, and for
1170     /// direct calls to an `fn`.
1171     ///
1172     /// NB: that includes virtual calls, which are represented by "direct calls"
1173     /// to an `InstanceDef::Virtual` instance (of `<dyn Trait as Trait>::fn`).
1174     query fn_abi_of_instance(
1175         key: ty::ParamEnvAnd<'tcx, (ty::Instance<'tcx>, &'tcx ty::List<Ty<'tcx>>)>
1176     ) -> Result<&'tcx abi::call::FnAbi<'tcx, Ty<'tcx>>, ty::layout::FnAbiError<'tcx>> {
1177         desc { "computing call ABI of `{}`", key.value.0 }
1178     }
1179
1180     query dylib_dependency_formats(_: CrateNum)
1181                                     -> &'tcx [(CrateNum, LinkagePreference)] {
1182         desc { "dylib dependency formats of crate" }
1183         separate_provide_extern
1184     }
1185
1186     query dependency_formats(_: ()) -> Lrc<crate::middle::dependency_format::Dependencies> {
1187         desc { "get the linkage format of all dependencies" }
1188     }
1189
1190     query is_compiler_builtins(_: CrateNum) -> bool {
1191         fatal_cycle
1192         desc { "checking if the crate is_compiler_builtins" }
1193         separate_provide_extern
1194     }
1195     query has_global_allocator(_: CrateNum) -> bool {
1196         // This query depends on untracked global state in CStore
1197         eval_always
1198         fatal_cycle
1199         desc { "checking if the crate has_global_allocator" }
1200         separate_provide_extern
1201     }
1202     query has_panic_handler(_: CrateNum) -> bool {
1203         fatal_cycle
1204         desc { "checking if the crate has_panic_handler" }
1205         separate_provide_extern
1206     }
1207     query is_profiler_runtime(_: CrateNum) -> bool {
1208         fatal_cycle
1209         desc { "query a crate is `#![profiler_runtime]`" }
1210         separate_provide_extern
1211     }
1212     query panic_strategy(_: CrateNum) -> PanicStrategy {
1213         fatal_cycle
1214         desc { "query a crate's configured panic strategy" }
1215         separate_provide_extern
1216     }
1217     query panic_in_drop_strategy(_: CrateNum) -> PanicStrategy {
1218         fatal_cycle
1219         desc { "query a crate's configured panic-in-drop strategy" }
1220         separate_provide_extern
1221     }
1222     query is_no_builtins(_: CrateNum) -> bool {
1223         fatal_cycle
1224         desc { "test whether a crate has `#![no_builtins]`" }
1225         separate_provide_extern
1226     }
1227     query symbol_mangling_version(_: CrateNum) -> SymbolManglingVersion {
1228         fatal_cycle
1229         desc { "query a crate's symbol mangling version" }
1230         separate_provide_extern
1231     }
1232
1233     query extern_crate(def_id: DefId) -> Option<&'tcx ExternCrate> {
1234         eval_always
1235         desc { "getting crate's ExternCrateData" }
1236         separate_provide_extern
1237     }
1238
1239     query specializes(_: (DefId, DefId)) -> bool {
1240         desc { "computing whether impls specialize one another" }
1241     }
1242     query in_scope_traits_map(_: LocalDefId)
1243         -> Option<&'tcx FxHashMap<ItemLocalId, Box<[TraitCandidate]>>> {
1244         desc { "traits in scope at a block" }
1245     }
1246
1247     query module_exports(def_id: LocalDefId) -> Option<&'tcx [Export]> {
1248         desc { |tcx| "looking up items exported by `{}`", tcx.def_path_str(def_id.to_def_id()) }
1249     }
1250
1251     query impl_defaultness(def_id: DefId) -> hir::Defaultness {
1252         desc { |tcx| "looking up whether `{}` is a default impl", tcx.def_path_str(def_id) }
1253         separate_provide_extern
1254     }
1255
1256     query impl_constness(def_id: DefId) -> hir::Constness {
1257         desc { |tcx| "looking up whether `{}` is a const impl", tcx.def_path_str(def_id) }
1258         separate_provide_extern
1259     }
1260
1261     query check_item_well_formed(key: LocalDefId) -> () {
1262         desc { |tcx| "checking that `{}` is well-formed", tcx.def_path_str(key.to_def_id()) }
1263     }
1264     query check_trait_item_well_formed(key: LocalDefId) -> () {
1265         desc { |tcx| "checking that `{}` is well-formed", tcx.def_path_str(key.to_def_id()) }
1266     }
1267     query check_impl_item_well_formed(key: LocalDefId) -> () {
1268         desc { |tcx| "checking that `{}` is well-formed", tcx.def_path_str(key.to_def_id()) }
1269     }
1270
1271     // The `DefId`s of all non-generic functions and statics in the given crate
1272     // that can be reached from outside the crate.
1273     //
1274     // We expect this items to be available for being linked to.
1275     //
1276     // This query can also be called for `LOCAL_CRATE`. In this case it will
1277     // compute which items will be reachable to other crates, taking into account
1278     // the kind of crate that is currently compiled. Crates with only a
1279     // C interface have fewer reachable things.
1280     //
1281     // Does not include external symbols that don't have a corresponding DefId,
1282     // like the compiler-generated `main` function and so on.
1283     query reachable_non_generics(_: CrateNum)
1284         -> DefIdMap<SymbolExportLevel> {
1285         storage(ArenaCacheSelector<'tcx>)
1286         desc { "looking up the exported symbols of a crate" }
1287         separate_provide_extern
1288     }
1289     query is_reachable_non_generic(def_id: DefId) -> bool {
1290         desc { |tcx| "checking whether `{}` is an exported symbol", tcx.def_path_str(def_id) }
1291         separate_provide_extern
1292     }
1293     query is_unreachable_local_definition(def_id: LocalDefId) -> bool {
1294         desc { |tcx|
1295             "checking whether `{}` is reachable from outside the crate",
1296             tcx.def_path_str(def_id.to_def_id()),
1297         }
1298     }
1299
1300     /// The entire set of monomorphizations the local crate can safely link
1301     /// to because they are exported from upstream crates. Do not depend on
1302     /// this directly, as its value changes anytime a monomorphization gets
1303     /// added or removed in any upstream crate. Instead use the narrower
1304     /// `upstream_monomorphizations_for`, `upstream_drop_glue_for`, or, even
1305     /// better, `Instance::upstream_monomorphization()`.
1306     query upstream_monomorphizations(_: ()) -> DefIdMap<FxHashMap<SubstsRef<'tcx>, CrateNum>> {
1307         storage(ArenaCacheSelector<'tcx>)
1308         desc { "collecting available upstream monomorphizations" }
1309     }
1310
1311     /// Returns the set of upstream monomorphizations available for the
1312     /// generic function identified by the given `def_id`. The query makes
1313     /// sure to make a stable selection if the same monomorphization is
1314     /// available in multiple upstream crates.
1315     ///
1316     /// You likely want to call `Instance::upstream_monomorphization()`
1317     /// instead of invoking this query directly.
1318     query upstream_monomorphizations_for(def_id: DefId)
1319         -> Option<&'tcx FxHashMap<SubstsRef<'tcx>, CrateNum>> {
1320             desc { |tcx|
1321                 "collecting available upstream monomorphizations for `{}`",
1322                 tcx.def_path_str(def_id),
1323             }
1324             separate_provide_extern
1325         }
1326
1327     /// Returns the upstream crate that exports drop-glue for the given
1328     /// type (`substs` is expected to be a single-item list containing the
1329     /// type one wants drop-glue for).
1330     ///
1331     /// This is a subset of `upstream_monomorphizations_for` in order to
1332     /// increase dep-tracking granularity. Otherwise adding or removing any
1333     /// type with drop-glue in any upstream crate would invalidate all
1334     /// functions calling drop-glue of an upstream type.
1335     ///
1336     /// You likely want to call `Instance::upstream_monomorphization()`
1337     /// instead of invoking this query directly.
1338     ///
1339     /// NOTE: This query could easily be extended to also support other
1340     ///       common functions that have are large set of monomorphizations
1341     ///       (like `Clone::clone` for example).
1342     query upstream_drop_glue_for(substs: SubstsRef<'tcx>) -> Option<CrateNum> {
1343         desc { "available upstream drop-glue for `{:?}`", substs }
1344     }
1345
1346     query foreign_modules(_: CrateNum) -> Lrc<FxHashMap<DefId, ForeignModule>> {
1347         desc { "looking up the foreign modules of a linked crate" }
1348         separate_provide_extern
1349     }
1350
1351     /// Identifies the entry-point (e.g., the `main` function) for a given
1352     /// crate, returning `None` if there is no entry point (such as for library crates).
1353     query entry_fn(_: ()) -> Option<(DefId, EntryFnType)> {
1354         desc { "looking up the entry function of a crate" }
1355     }
1356     query proc_macro_decls_static(_: ()) -> Option<LocalDefId> {
1357         desc { "looking up the derive registrar for a crate" }
1358     }
1359     // The macro which defines `rustc_metadata::provide_extern` depends on this query's name.
1360     // Changing the name should cause a compiler error, but in case that changes, be aware.
1361     query crate_hash(_: CrateNum) -> Svh {
1362         eval_always
1363         desc { "looking up the hash a crate" }
1364         separate_provide_extern
1365     }
1366     query crate_host_hash(_: CrateNum) -> Option<Svh> {
1367         eval_always
1368         desc { "looking up the hash of a host version of a crate" }
1369         separate_provide_extern
1370     }
1371     query extra_filename(_: CrateNum) -> String {
1372         eval_always
1373         desc { "looking up the extra filename for a crate" }
1374         separate_provide_extern
1375     }
1376     query crate_extern_paths(_: CrateNum) -> Vec<PathBuf> {
1377         eval_always
1378         desc { "looking up the paths for extern crates" }
1379         separate_provide_extern
1380     }
1381
1382     /// Given a crate and a trait, look up all impls of that trait in the crate.
1383     /// Return `(impl_id, self_ty)`.
1384     query implementations_of_trait(_: (CrateNum, DefId))
1385         -> &'tcx [(DefId, Option<ty::fast_reject::SimplifiedType>)] {
1386         desc { "looking up implementations of a trait in a crate" }
1387         separate_provide_extern
1388     }
1389
1390     /// Given a crate, look up all trait impls in that crate.
1391     /// Return `(impl_id, self_ty)`.
1392     query all_trait_implementations(_: CrateNum)
1393         -> &'tcx [(DefId, Option<ty::fast_reject::SimplifiedType>)] {
1394         desc { "looking up all (?) trait implementations" }
1395         separate_provide_extern
1396     }
1397
1398     query is_dllimport_foreign_item(def_id: DefId) -> bool {
1399         desc { |tcx| "is_dllimport_foreign_item({})", tcx.def_path_str(def_id) }
1400     }
1401     query is_statically_included_foreign_item(def_id: DefId) -> bool {
1402         desc { |tcx| "is_statically_included_foreign_item({})", tcx.def_path_str(def_id) }
1403     }
1404     query native_library_kind(def_id: DefId)
1405         -> Option<NativeLibKind> {
1406         desc { |tcx| "native_library_kind({})", tcx.def_path_str(def_id) }
1407     }
1408
1409     /// Does lifetime resolution, but does not descend into trait items. This
1410     /// should only be used for resolving lifetimes of on trait definitions,
1411     /// and is used to avoid cycles. Importantly, `resolve_lifetimes` still visits
1412     /// the same lifetimes and is responsible for diagnostics.
1413     /// See `rustc_resolve::late::lifetimes for details.
1414     query resolve_lifetimes_trait_definition(_: LocalDefId) -> ResolveLifetimes {
1415         storage(ArenaCacheSelector<'tcx>)
1416         desc { "resolving lifetimes for a trait definition" }
1417     }
1418     /// Does lifetime resolution on items. Importantly, we can't resolve
1419     /// lifetimes directly on things like trait methods, because of trait params.
1420     /// See `rustc_resolve::late::lifetimes for details.
1421     query resolve_lifetimes(_: LocalDefId) -> ResolveLifetimes {
1422         storage(ArenaCacheSelector<'tcx>)
1423         desc { "resolving lifetimes" }
1424     }
1425     query named_region_map(_: LocalDefId) ->
1426         Option<&'tcx FxHashMap<ItemLocalId, Region>> {
1427         desc { "looking up a named region" }
1428     }
1429     query is_late_bound_map(_: LocalDefId) ->
1430         Option<(LocalDefId, &'tcx FxHashSet<ItemLocalId>)> {
1431         desc { "testing if a region is late bound" }
1432     }
1433     /// For a given item (like a struct), gets the default lifetimes to be used
1434     /// for each parameter if a trait object were to be passed for that parameter.
1435     /// For example, for `struct Foo<'a, T, U>`, this would be `['static, 'static]`.
1436     /// For `struct Foo<'a, T: 'a, U>`, this would instead be `['a, 'static]`.
1437     query object_lifetime_defaults_map(_: LocalDefId)
1438         -> Option<Vec<ObjectLifetimeDefault>> {
1439         desc { "looking up lifetime defaults for a region on an item" }
1440     }
1441     query late_bound_vars_map(_: LocalDefId)
1442         -> Option<&'tcx FxHashMap<ItemLocalId, Vec<ty::BoundVariableKind>>> {
1443         desc { "looking up late bound vars" }
1444     }
1445
1446     query lifetime_scope_map(_: LocalDefId) -> Option<FxHashMap<ItemLocalId, LifetimeScopeForPath>> {
1447         desc { "finds the lifetime scope for an HirId of a PathSegment" }
1448     }
1449
1450     query visibility(def_id: DefId) -> ty::Visibility {
1451         desc { |tcx| "computing visibility of `{}`", tcx.def_path_str(def_id) }
1452         separate_provide_extern
1453     }
1454
1455     /// Computes the set of modules from which this type is visibly uninhabited.
1456     /// To check whether a type is uninhabited at all (not just from a given module), you could
1457     /// check whether the forest is empty.
1458     query type_uninhabited_from(
1459         key: ty::ParamEnvAnd<'tcx, Ty<'tcx>>
1460     ) -> ty::inhabitedness::DefIdForest {
1461         desc { "computing the inhabitedness of `{:?}`", key }
1462     }
1463
1464     query dep_kind(_: CrateNum) -> CrateDepKind {
1465         eval_always
1466         desc { "fetching what a dependency looks like" }
1467         separate_provide_extern
1468     }
1469     query crate_name(_: CrateNum) -> Symbol {
1470         eval_always
1471         desc { "fetching what a crate is named" }
1472         separate_provide_extern
1473     }
1474     query item_children(def_id: DefId) -> &'tcx [Export] {
1475         desc { |tcx| "collecting child items of `{}`", tcx.def_path_str(def_id) }
1476         separate_provide_extern
1477     }
1478     query extern_mod_stmt_cnum(def_id: LocalDefId) -> Option<CrateNum> {
1479         desc { |tcx| "computing crate imported by `{}`", tcx.def_path_str(def_id.to_def_id()) }
1480     }
1481
1482     query get_lib_features(_: ()) -> LibFeatures {
1483         storage(ArenaCacheSelector<'tcx>)
1484         eval_always
1485         desc { "calculating the lib features map" }
1486     }
1487     query defined_lib_features(_: CrateNum)
1488         -> &'tcx [(Symbol, Option<Symbol>)] {
1489         desc { "calculating the lib features defined in a crate" }
1490         separate_provide_extern
1491     }
1492     /// Returns the lang items defined in another crate by loading it from metadata.
1493     query get_lang_items(_: ()) -> LanguageItems {
1494         storage(ArenaCacheSelector<'tcx>)
1495         eval_always
1496         desc { "calculating the lang items map" }
1497     }
1498
1499     /// Returns all diagnostic items defined in all crates.
1500     query all_diagnostic_items(_: ()) -> rustc_hir::diagnostic_items::DiagnosticItems {
1501         storage(ArenaCacheSelector<'tcx>)
1502         eval_always
1503         desc { "calculating the diagnostic items map" }
1504     }
1505
1506     /// Returns the lang items defined in another crate by loading it from metadata.
1507     query defined_lang_items(_: CrateNum) -> &'tcx [(DefId, usize)] {
1508         desc { "calculating the lang items defined in a crate" }
1509         separate_provide_extern
1510     }
1511
1512     /// Returns the diagnostic items defined in a crate.
1513     query diagnostic_items(_: CrateNum) -> rustc_hir::diagnostic_items::DiagnosticItems {
1514         storage(ArenaCacheSelector<'tcx>)
1515         desc { "calculating the diagnostic items map in a crate" }
1516         separate_provide_extern
1517     }
1518
1519     query missing_lang_items(_: CrateNum) -> &'tcx [LangItem] {
1520         desc { "calculating the missing lang items in a crate" }
1521         separate_provide_extern
1522     }
1523     query visible_parent_map(_: ()) -> DefIdMap<DefId> {
1524         storage(ArenaCacheSelector<'tcx>)
1525         desc { "calculating the visible parent map" }
1526     }
1527     query trimmed_def_paths(_: ()) -> FxHashMap<DefId, Symbol> {
1528         storage(ArenaCacheSelector<'tcx>)
1529         desc { "calculating trimmed def paths" }
1530     }
1531     query missing_extern_crate_item(_: CrateNum) -> bool {
1532         eval_always
1533         desc { "seeing if we're missing an `extern crate` item for this crate" }
1534         separate_provide_extern
1535     }
1536     query used_crate_source(_: CrateNum) -> Lrc<CrateSource> {
1537         eval_always
1538         desc { "looking at the source for a crate" }
1539         separate_provide_extern
1540     }
1541     query postorder_cnums(_: ()) -> &'tcx [CrateNum] {
1542         eval_always
1543         desc { "generating a postorder list of CrateNums" }
1544     }
1545     /// Returns whether or not the crate with CrateNum 'cnum'
1546     /// is marked as a private dependency
1547     query is_private_dep(c: CrateNum) -> bool {
1548         eval_always
1549         desc { "check whether crate {} is a private dependency", c }
1550         separate_provide_extern
1551     }
1552     query allocator_kind(_: ()) -> Option<AllocatorKind> {
1553         eval_always
1554         desc { "allocator kind for the current crate" }
1555     }
1556
1557     query upvars_mentioned(def_id: DefId) -> Option<&'tcx FxIndexMap<hir::HirId, hir::Upvar>> {
1558         desc { |tcx| "collecting upvars mentioned in `{}`", tcx.def_path_str(def_id) }
1559         eval_always
1560     }
1561     query maybe_unused_trait_import(def_id: LocalDefId) -> bool {
1562         desc { |tcx| "maybe_unused_trait_import for `{}`", tcx.def_path_str(def_id.to_def_id()) }
1563     }
1564     query maybe_unused_extern_crates(_: ()) -> &'tcx [(LocalDefId, Span)] {
1565         desc { "looking up all possibly unused extern crates" }
1566     }
1567     query names_imported_by_glob_use(def_id: LocalDefId) -> &'tcx FxHashSet<Symbol> {
1568         desc { |tcx| "names_imported_by_glob_use for `{}`", tcx.def_path_str(def_id.to_def_id()) }
1569     }
1570
1571     query stability_index(_: ()) -> stability::Index<'tcx> {
1572         storage(ArenaCacheSelector<'tcx>)
1573         eval_always
1574         desc { "calculating the stability index for the local crate" }
1575     }
1576     query crates(_: ()) -> &'tcx [CrateNum] {
1577         eval_always
1578         desc { "fetching all foreign CrateNum instances" }
1579     }
1580
1581     /// A vector of every trait accessible in the whole crate
1582     /// (i.e., including those from subcrates). This is used only for
1583     /// error reporting.
1584     query all_traits(_: ()) -> &'tcx [DefId] {
1585         desc { "fetching all foreign and local traits" }
1586     }
1587
1588     /// The list of symbols exported from the given crate.
1589     ///
1590     /// - All names contained in `exported_symbols(cnum)` are guaranteed to
1591     ///   correspond to a publicly visible symbol in `cnum` machine code.
1592     /// - The `exported_symbols` sets of different crates do not intersect.
1593     query exported_symbols(_: CrateNum)
1594         -> &'tcx [(ExportedSymbol<'tcx>, SymbolExportLevel)] {
1595         desc { "exported_symbols" }
1596         separate_provide_extern
1597     }
1598
1599     query collect_and_partition_mono_items(_: ()) -> (&'tcx DefIdSet, &'tcx [CodegenUnit<'tcx>]) {
1600         eval_always
1601         desc { "collect_and_partition_mono_items" }
1602     }
1603     query is_codegened_item(def_id: DefId) -> bool {
1604         desc { |tcx| "determining whether `{}` needs codegen", tcx.def_path_str(def_id) }
1605     }
1606
1607     /// All items participating in code generation together with items inlined into them.
1608     query codegened_and_inlined_items(_: ()) -> &'tcx DefIdSet {
1609         eval_always
1610        desc { "codegened_and_inlined_items" }
1611     }
1612
1613     query codegen_unit(_: Symbol) -> &'tcx CodegenUnit<'tcx> {
1614         desc { "codegen_unit" }
1615     }
1616     query unused_generic_params(key: ty::InstanceDef<'tcx>) -> FiniteBitSet<u32> {
1617         cache_on_disk_if { key.def_id().is_local() }
1618         desc {
1619             |tcx| "determining which generic parameters are unused by `{}`",
1620                 tcx.def_path_str(key.def_id())
1621         }
1622         separate_provide_extern
1623     }
1624     query backend_optimization_level(_: ()) -> OptLevel {
1625         desc { "optimization level used by backend" }
1626     }
1627
1628     query output_filenames(_: ()) -> Arc<OutputFilenames> {
1629         eval_always
1630         desc { "output_filenames" }
1631     }
1632
1633     /// Do not call this query directly: invoke `normalize` instead.
1634     query normalize_projection_ty(
1635         goal: CanonicalProjectionGoal<'tcx>
1636     ) -> Result<
1637         &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, NormalizationResult<'tcx>>>,
1638         NoSolution,
1639     > {
1640         desc { "normalizing `{:?}`", goal }
1641     }
1642
1643     /// Do not call this query directly: invoke `normalize_erasing_regions` instead.
1644     query normalize_generic_arg_after_erasing_regions(
1645         goal: ParamEnvAnd<'tcx, GenericArg<'tcx>>
1646     ) -> GenericArg<'tcx> {
1647         desc { "normalizing `{}`", goal.value }
1648     }
1649
1650     /// Do not call this query directly: invoke `normalize_erasing_regions` instead.
1651     query normalize_mir_const_after_erasing_regions(
1652         goal: ParamEnvAnd<'tcx, mir::ConstantKind<'tcx>>
1653     ) -> mir::ConstantKind<'tcx> {
1654         desc { "normalizing `{}`", goal.value }
1655     }
1656
1657     query implied_outlives_bounds(
1658         goal: CanonicalTyGoal<'tcx>
1659     ) -> Result<
1660         &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, Vec<OutlivesBound<'tcx>>>>,
1661         NoSolution,
1662     > {
1663         desc { "computing implied outlives bounds for `{:?}`", goal }
1664     }
1665
1666     /// Do not call this query directly: invoke `infcx.at().dropck_outlives()` instead.
1667     query dropck_outlives(
1668         goal: CanonicalTyGoal<'tcx>
1669     ) -> Result<
1670         &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, DropckOutlivesResult<'tcx>>>,
1671         NoSolution,
1672     > {
1673         desc { "computing dropck types for `{:?}`", goal }
1674     }
1675
1676     /// Do not call this query directly: invoke `infcx.predicate_may_hold()` or
1677     /// `infcx.predicate_must_hold()` instead.
1678     query evaluate_obligation(
1679         goal: CanonicalPredicateGoal<'tcx>
1680     ) -> Result<traits::EvaluationResult, traits::OverflowError> {
1681         desc { "evaluating trait selection obligation `{}`", goal.value.value }
1682     }
1683
1684     query evaluate_goal(
1685         goal: traits::CanonicalChalkEnvironmentAndGoal<'tcx>
1686     ) -> Result<
1687         &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
1688         NoSolution
1689     > {
1690         desc { "evaluating trait selection obligation `{}`", goal.value }
1691     }
1692
1693     /// Do not call this query directly: part of the `Eq` type-op
1694     query type_op_ascribe_user_type(
1695         goal: CanonicalTypeOpAscribeUserTypeGoal<'tcx>
1696     ) -> Result<
1697         &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
1698         NoSolution,
1699     > {
1700         desc { "evaluating `type_op_ascribe_user_type` `{:?}`", goal }
1701     }
1702
1703     /// Do not call this query directly: part of the `Eq` type-op
1704     query type_op_eq(
1705         goal: CanonicalTypeOpEqGoal<'tcx>
1706     ) -> Result<
1707         &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
1708         NoSolution,
1709     > {
1710         desc { "evaluating `type_op_eq` `{:?}`", goal }
1711     }
1712
1713     /// Do not call this query directly: part of the `Subtype` type-op
1714     query type_op_subtype(
1715         goal: CanonicalTypeOpSubtypeGoal<'tcx>
1716     ) -> Result<
1717         &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
1718         NoSolution,
1719     > {
1720         desc { "evaluating `type_op_subtype` `{:?}`", goal }
1721     }
1722
1723     /// Do not call this query directly: part of the `ProvePredicate` type-op
1724     query type_op_prove_predicate(
1725         goal: CanonicalTypeOpProvePredicateGoal<'tcx>
1726     ) -> Result<
1727         &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
1728         NoSolution,
1729     > {
1730         desc { "evaluating `type_op_prove_predicate` `{:?}`", goal }
1731     }
1732
1733     /// Do not call this query directly: part of the `Normalize` type-op
1734     query type_op_normalize_ty(
1735         goal: CanonicalTypeOpNormalizeGoal<'tcx, Ty<'tcx>>
1736     ) -> Result<
1737         &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, Ty<'tcx>>>,
1738         NoSolution,
1739     > {
1740         desc { "normalizing `{:?}`", goal }
1741     }
1742
1743     /// Do not call this query directly: part of the `Normalize` type-op
1744     query type_op_normalize_predicate(
1745         goal: CanonicalTypeOpNormalizeGoal<'tcx, ty::Predicate<'tcx>>
1746     ) -> Result<
1747         &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ty::Predicate<'tcx>>>,
1748         NoSolution,
1749     > {
1750         desc { "normalizing `{:?}`", goal }
1751     }
1752
1753     /// Do not call this query directly: part of the `Normalize` type-op
1754     query type_op_normalize_poly_fn_sig(
1755         goal: CanonicalTypeOpNormalizeGoal<'tcx, ty::PolyFnSig<'tcx>>
1756     ) -> Result<
1757         &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ty::PolyFnSig<'tcx>>>,
1758         NoSolution,
1759     > {
1760         desc { "normalizing `{:?}`", goal }
1761     }
1762
1763     /// Do not call this query directly: part of the `Normalize` type-op
1764     query type_op_normalize_fn_sig(
1765         goal: CanonicalTypeOpNormalizeGoal<'tcx, ty::FnSig<'tcx>>
1766     ) -> Result<
1767         &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ty::FnSig<'tcx>>>,
1768         NoSolution,
1769     > {
1770         desc { "normalizing `{:?}`", goal }
1771     }
1772
1773     query subst_and_check_impossible_predicates(key: (DefId, SubstsRef<'tcx>)) -> bool {
1774         desc { |tcx|
1775             "impossible substituted predicates:`{}`",
1776             tcx.def_path_str(key.0)
1777         }
1778     }
1779
1780     query method_autoderef_steps(
1781         goal: CanonicalTyGoal<'tcx>
1782     ) -> MethodAutoderefStepsResult<'tcx> {
1783         desc { "computing autoderef types for `{:?}`", goal }
1784     }
1785
1786     query supported_target_features(_: CrateNum) -> FxHashMap<String, Option<Symbol>> {
1787         storage(ArenaCacheSelector<'tcx>)
1788         eval_always
1789         desc { "looking up supported target features" }
1790     }
1791
1792     /// Get an estimate of the size of an InstanceDef based on its MIR for CGU partitioning.
1793     query instance_def_size_estimate(def: ty::InstanceDef<'tcx>)
1794         -> usize {
1795         desc { |tcx| "estimating size for `{}`", tcx.def_path_str(def.def_id()) }
1796     }
1797
1798     query features_query(_: ()) -> &'tcx rustc_feature::Features {
1799         eval_always
1800         desc { "looking up enabled feature gates" }
1801     }
1802
1803     /// Attempt to resolve the given `DefId` to an `Instance`, for the
1804     /// given generics args (`SubstsRef`), returning one of:
1805     ///  * `Ok(Some(instance))` on success
1806     ///  * `Ok(None)` when the `SubstsRef` are still too generic,
1807     ///    and therefore don't allow finding the final `Instance`
1808     ///  * `Err(ErrorReported)` when the `Instance` resolution process
1809     ///    couldn't complete due to errors elsewhere - this is distinct
1810     ///    from `Ok(None)` to avoid misleading diagnostics when an error
1811     ///    has already been/will be emitted, for the original cause
1812     query resolve_instance(
1813         key: ty::ParamEnvAnd<'tcx, (DefId, SubstsRef<'tcx>)>
1814     ) -> Result<Option<ty::Instance<'tcx>>, ErrorReported> {
1815         desc { "resolving instance `{}`", ty::Instance::new(key.value.0, key.value.1) }
1816     }
1817
1818     query resolve_instance_of_const_arg(
1819         key: ty::ParamEnvAnd<'tcx, (LocalDefId, DefId, SubstsRef<'tcx>)>
1820     ) -> Result<Option<ty::Instance<'tcx>>, ErrorReported> {
1821         desc {
1822             "resolving instance of the const argument `{}`",
1823             ty::Instance::new(key.value.0.to_def_id(), key.value.2),
1824         }
1825     }
1826
1827     query normalize_opaque_types(key: &'tcx ty::List<ty::Predicate<'tcx>>) -> &'tcx ty::List<ty::Predicate<'tcx>> {
1828         desc { "normalizing opaque types in {:?}", key }
1829     }
1830
1831     /// Checks whether a type is definitely uninhabited. This is
1832     /// conservative: for some types that are uninhabited we return `false`,
1833     /// but we only return `true` for types that are definitely uninhabited.
1834     /// `ty.conservative_is_privately_uninhabited` implies that any value of type `ty`
1835     /// will be `Abi::Uninhabited`. (Note that uninhabited types may have nonzero
1836     /// size, to account for partial initialisation. See #49298 for details.)
1837     query conservative_is_privately_uninhabited(key: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> bool {
1838         desc { "conservatively checking if {:?} is privately uninhabited", key }
1839     }
1840
1841     query limits(key: ()) -> Limits {
1842         desc { "looking up limits" }
1843     }
1844
1845     /// Performs an HIR-based well-formed check on the item with the given `HirId`. If
1846     /// we get an `Unimplemented` error that matches the provided `Predicate`, return
1847     /// the cause of the newly created obligation.
1848     ///
1849     /// This is only used by error-reporting code to get a better cause (in particular, a better
1850     /// span) for an *existing* error. Therefore, it is best-effort, and may never handle
1851     /// all of the cases that the normal `ty::Ty`-based wfcheck does. This is fine,
1852     /// because the `ty::Ty`-based wfcheck is always run.
1853     query diagnostic_hir_wf_check(key: (ty::Predicate<'tcx>, traits::WellFormedLoc)) -> Option<traits::ObligationCause<'tcx>> {
1854         eval_always
1855         no_hash
1856         desc { "performing HIR wf-checking for predicate {:?} at item {:?}", key.0, key.1 }
1857     }
1858 }