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