]> git.lizzy.rs Git - rust.git/blob - src/librustc/query/mod.rs
Auto merge of #67711 - Amanieu:fix_unwind_leak, r=alexcrichton
[rust.git] / src / librustc / query / mod.rs
1 use crate::dep_graph::{DepKind, DepNode, RecoverKey, SerializedDepNodeIndex};
2 use crate::mir;
3 use crate::mir::interpret::GlobalId;
4 use crate::traits;
5 use crate::traits::query::{
6     CanonicalPredicateGoal, CanonicalProjectionGoal, CanonicalTyGoal,
7     CanonicalTypeOpAscribeUserTypeGoal, CanonicalTypeOpEqGoal, CanonicalTypeOpNormalizeGoal,
8     CanonicalTypeOpProvePredicateGoal, CanonicalTypeOpSubtypeGoal,
9 };
10 use crate::ty::query::queries;
11 use crate::ty::query::QueryDescription;
12 use crate::ty::subst::SubstsRef;
13 use crate::ty::{self, ParamEnvAnd, Ty, TyCtxt};
14 use rustc_hir::def_id::{CrateNum, DefId, DefIndex};
15
16 use rustc_span::symbol::Symbol;
17 use std::borrow::Cow;
18
19 fn describe_as_module(def_id: DefId, tcx: TyCtxt<'_>) -> String {
20     if def_id.is_top_level_module() {
21         format!("top-level module")
22     } else {
23         format!("module `{}`", tcx.def_path_str(def_id))
24     }
25 }
26
27 // Each of these queries corresponds to a function pointer field in the
28 // `Providers` struct for requesting a value of that type, and a method
29 // on `tcx: TyCtxt` (and `tcx.at(span)`) for doing that request in a way
30 // which memoizes and does dep-graph tracking, wrapping around the actual
31 // `Providers` that the driver creates (using several `rustc_*` crates).
32 //
33 // The result type of each query must implement `Clone`, and additionally
34 // `ty::query::values::Value`, which produces an appropriate placeholder
35 // (error) value if the query resulted in a query cycle.
36 // Queries marked with `fatal_cycle` do not need the latter implementation,
37 // as they will raise an fatal error on query cycles instead.
38 rustc_queries! {
39     Other {
40         query trigger_delay_span_bug(key: DefId) -> () {
41             desc { "trigger a delay span bug" }
42         }
43     }
44
45     Other {
46         /// Records the type of every item.
47         query type_of(key: DefId) -> Ty<'tcx> {
48             cache_on_disk_if { key.is_local() }
49         }
50
51         /// Maps from the `DefId` of an item (trait/struct/enum/fn) to its
52         /// associated generics.
53         query generics_of(key: DefId) -> &'tcx ty::Generics {
54             cache_on_disk_if { key.is_local() }
55             load_cached(tcx, id) {
56                 let generics: Option<ty::Generics> = tcx.queries.on_disk_cache
57                                                         .try_load_query_result(tcx, id);
58                 generics.map(|x| &*tcx.arena.alloc(x))
59             }
60         }
61
62         /// Maps from the `DefId` of an item (trait/struct/enum/fn) to the
63         /// predicates (where-clauses) that must be proven true in order
64         /// to reference it. This is almost always the "predicates query"
65         /// that you want.
66         ///
67         /// `predicates_of` builds on `predicates_defined_on` -- in fact,
68         /// it is almost always the same as that query, except for the
69         /// case of traits. For traits, `predicates_of` contains
70         /// an additional `Self: Trait<...>` predicate that users don't
71         /// actually write. This reflects the fact that to invoke the
72         /// trait (e.g., via `Default::default`) you must supply types
73         /// that actually implement the trait. (However, this extra
74         /// predicate gets in the way of some checks, which are intended
75         /// to operate over only the actual where-clauses written by the
76         /// user.)
77         query predicates_of(key: DefId) -> ty::GenericPredicates<'tcx> {
78             cache_on_disk_if { key.is_local() }
79         }
80
81         query native_libraries(_: CrateNum) -> Lrc<Vec<NativeLibrary>> {
82             desc { "looking up the native libraries of a linked crate" }
83         }
84
85         query lint_levels(_: CrateNum) -> &'tcx LintLevelMap {
86             eval_always
87             desc { "computing the lint levels for items in this crate" }
88         }
89     }
90
91     Codegen {
92         query is_panic_runtime(_: CrateNum) -> bool {
93             fatal_cycle
94             desc { "checking if the crate is_panic_runtime" }
95         }
96     }
97
98     Codegen {
99         /// Set of all the `DefId`s in this crate that have MIR associated with
100         /// them. This includes all the body owners, but also things like struct
101         /// constructors.
102         query mir_keys(_: CrateNum) -> &'tcx DefIdSet {
103             desc { "getting a list of all mir_keys" }
104         }
105
106         /// Maps DefId's that have an associated `mir::Body` to the result
107         /// of the MIR const-checking pass. This is the set of qualifs in
108         /// the final value of a `const`.
109         query mir_const_qualif(key: DefId) -> mir::ConstQualifs {
110             desc { |tcx| "const checking `{}`", tcx.def_path_str(key) }
111             cache_on_disk_if { key.is_local() }
112         }
113
114         /// Fetch the MIR for a given `DefId` right after it's built - this includes
115         /// unreachable code.
116         query mir_built(_: DefId) -> &'tcx Steal<mir::BodyAndCache<'tcx>> {}
117
118         /// Fetch the MIR for a given `DefId` up till the point where it is
119         /// ready for const evaluation.
120         ///
121         /// See the README for the `mir` module for details.
122         query mir_const(_: DefId) -> &'tcx Steal<mir::BodyAndCache<'tcx>> {
123             no_hash
124         }
125
126         query mir_validated(_: DefId) ->
127             (
128                 &'tcx Steal<mir::BodyAndCache<'tcx>>,
129                 &'tcx Steal<IndexVec<mir::Promoted, mir::BodyAndCache<'tcx>>>
130             ) {
131             no_hash
132         }
133
134         /// MIR after our optimization passes have run. This is MIR that is ready
135         /// for codegen. This is also the only query that can fetch non-local MIR, at present.
136         query optimized_mir(key: DefId) -> &'tcx mir::BodyAndCache<'tcx> {
137             cache_on_disk_if { key.is_local() }
138             load_cached(tcx, id) {
139                 let mir: Option<crate::mir::BodyAndCache<'tcx>>
140                     = tcx.queries.on_disk_cache.try_load_query_result(tcx, id);
141                 mir.map(|x| {
142                     let cache = tcx.arena.alloc(x);
143                     cache.ensure_predecessors();
144                     &*cache
145                 })
146             }
147         }
148
149         query promoted_mir(key: DefId) -> &'tcx IndexVec<mir::Promoted, mir::BodyAndCache<'tcx>> {
150             cache_on_disk_if { key.is_local() }
151             load_cached(tcx, id) {
152                 let promoted: Option<
153                     rustc_index::vec::IndexVec<
154                         crate::mir::Promoted,
155                         crate::mir::BodyAndCache<'tcx>
156                     >> = tcx.queries.on_disk_cache.try_load_query_result(tcx, id);
157                 promoted.map(|p| {
158                     let cache = tcx.arena.alloc(p);
159                     for body in cache.iter_mut() {
160                         body.ensure_predecessors();
161                     }
162                     &*cache
163                 })
164             }
165         }
166     }
167
168     TypeChecking {
169         // Erases regions from `ty` to yield a new type.
170         // Normally you would just use `tcx.erase_regions(&value)`,
171         // however, which uses this query as a kind of cache.
172         query erase_regions_ty(ty: Ty<'tcx>) -> Ty<'tcx> {
173             // This query is not expected to have input -- as a result, it
174             // is not a good candidates for "replay" because it is essentially a
175             // pure function of its input (and hence the expectation is that
176             // no caller would be green **apart** from just these
177             // queries). Making it anonymous avoids hashing the result, which
178             // may save a bit of time.
179             anon
180             no_force
181             desc { "erasing regions from `{:?}`", ty }
182         }
183
184         query program_clauses_for(_: DefId) -> Clauses<'tcx> {
185             desc { "generating chalk-style clauses" }
186         }
187
188         query program_clauses_for_env(_: traits::Environment<'tcx>) -> Clauses<'tcx> {
189             no_force
190             desc { "generating chalk-style clauses for environment" }
191         }
192
193         // Get the chalk-style environment of the given item.
194         query environment(_: DefId) -> traits::Environment<'tcx> {
195             desc { "return a chalk-style environment" }
196         }
197     }
198
199     Linking {
200         query wasm_import_module_map(_: CrateNum) -> &'tcx FxHashMap<DefId, String> {
201             desc { "wasm import module map" }
202         }
203     }
204
205     Other {
206         /// Maps from the `DefId` of an item (trait/struct/enum/fn) to the
207         /// predicates (where-clauses) directly defined on it. This is
208         /// equal to the `explicit_predicates_of` predicates plus the
209         /// `inferred_outlives_of` predicates.
210         query predicates_defined_on(_: DefId) -> ty::GenericPredicates<'tcx> {}
211
212         /// Returns the predicates written explicitly by the user.
213         query explicit_predicates_of(_: DefId) -> ty::GenericPredicates<'tcx> {}
214
215         /// Returns the inferred outlives predicates (e.g., for `struct
216         /// Foo<'a, T> { x: &'a T }`, this would return `T: 'a`).
217         query inferred_outlives_of(_: DefId) -> &'tcx [(ty::Predicate<'tcx>, Span)] {}
218
219         /// Maps from the `DefId` of a trait to the list of
220         /// super-predicates. This is a subset of the full list of
221         /// predicates. We store these in a separate map because we must
222         /// evaluate them even during type conversion, often before the
223         /// full predicates are available (note that supertraits have
224         /// additional acyclicity requirements).
225         query super_predicates_of(key: DefId) -> ty::GenericPredicates<'tcx> {
226             desc { |tcx| "computing the supertraits of `{}`", tcx.def_path_str(key) }
227         }
228
229         /// To avoid cycles within the predicates of a single item we compute
230         /// per-type-parameter predicates for resolving `T::AssocTy`.
231         query type_param_predicates(key: (DefId, DefId)) -> ty::GenericPredicates<'tcx> {
232             no_force
233             desc { |tcx| "computing the bounds for type parameter `{}`", {
234                 let id = tcx.hir().as_local_hir_id(key.1).unwrap();
235                 tcx.hir().ty_param_name(id)
236             }}
237         }
238
239         query trait_def(_: DefId) -> &'tcx ty::TraitDef {}
240         query adt_def(_: DefId) -> &'tcx ty::AdtDef {}
241         query adt_destructor(_: DefId) -> Option<ty::Destructor> {}
242
243         // The cycle error here should be reported as an error by `check_representable`.
244         // We consider the type as Sized in the meanwhile to avoid
245         // further errors (done in impl Value for AdtSizedConstraint).
246         // Use `cycle_delay_bug` to delay the cycle error here to be emitted later
247         // in case we accidentally otherwise don't emit an error.
248         query adt_sized_constraint(
249             _: DefId
250         ) -> AdtSizedConstraint<'tcx> {
251             cycle_delay_bug
252         }
253
254         query adt_dtorck_constraint(
255             _: DefId
256         ) -> Result<DtorckConstraint<'tcx>, NoSolution> {}
257
258         /// Returns `true` if this is a const fn, use the `is_const_fn` to know whether your crate
259         /// actually sees it as const fn (e.g., the const-fn-ness might be unstable and you might
260         /// not have the feature gate active).
261         ///
262         /// **Do not call this function manually.** It is only meant to cache the base data for the
263         /// `is_const_fn` function.
264         query is_const_fn_raw(key: DefId) -> bool {
265             desc { |tcx| "checking if item is const fn: `{}`", tcx.def_path_str(key) }
266         }
267
268         query asyncness(key: DefId) -> hir::IsAsync {
269             desc { |tcx| "checking if the function is async: `{}`", tcx.def_path_str(key) }
270         }
271
272         /// Returns `true` if calls to the function may be promoted.
273         ///
274         /// This is either because the function is e.g., a tuple-struct or tuple-variant
275         /// constructor, or because it has the `#[rustc_promotable]` attribute. The attribute should
276         /// be removed in the future in favour of some form of check which figures out whether the
277         /// function does not inspect the bits of any of its arguments (so is essentially just a
278         /// constructor function).
279         query is_promotable_const_fn(_: DefId) -> bool {}
280
281         query const_fn_is_allowed_fn_ptr(_: DefId) -> bool {}
282
283         /// Returns `true` if this is a foreign item (i.e., linked via `extern { ... }`).
284         query is_foreign_item(_: DefId) -> bool {}
285
286         /// Returns `Some(mutability)` if the node pointed to by `def_id` is a static item.
287         query static_mutability(_: DefId) -> Option<hir::Mutability> {}
288
289         /// Gets a map with the variance of every item; use `item_variance` instead.
290         query crate_variances(_: CrateNum) -> &'tcx ty::CrateVariancesMap<'tcx> {
291             desc { "computing the variances for items in this crate" }
292         }
293
294         /// Maps from the `DefId` of a type or region parameter to its (inferred) variance.
295         query variances_of(_: DefId) -> &'tcx [ty::Variance] {}
296     }
297
298     TypeChecking {
299         /// Maps from thee `DefId` of a type to its (inferred) outlives.
300         query inferred_outlives_crate(_: CrateNum)
301             -> &'tcx ty::CratePredicatesMap<'tcx> {
302             desc { "computing the inferred outlives predicates for items in this crate" }
303         }
304     }
305
306     Other {
307         /// Maps from an impl/trait `DefId to a list of the `DefId`s of its items.
308         query associated_item_def_ids(_: DefId) -> &'tcx [DefId] {}
309
310         /// Maps from a trait item to the trait item "descriptor".
311         query associated_item(_: DefId) -> ty::AssocItem {}
312
313         query impl_trait_ref(_: DefId) -> Option<ty::TraitRef<'tcx>> {}
314         query impl_polarity(_: DefId) -> ty::ImplPolarity {}
315
316         query issue33140_self_ty(_: DefId) -> Option<ty::Ty<'tcx>> {}
317     }
318
319     TypeChecking {
320         /// Maps a `DefId` of a type to a list of its inherent impls.
321         /// Contains implementations of methods that are inherent to a type.
322         /// Methods in these implementations don't need to be exported.
323         query inherent_impls(_: DefId) -> &'tcx [DefId] {
324             eval_always
325         }
326     }
327
328     TypeChecking {
329         /// The result of unsafety-checking this `DefId`.
330         query unsafety_check_result(key: DefId) -> mir::UnsafetyCheckResult {
331             cache_on_disk_if { key.is_local() }
332         }
333
334         /// HACK: when evaluated, this reports a "unsafe derive on repr(packed)" error
335         query unsafe_derive_on_repr_packed(_: DefId) -> () {}
336
337         /// The signature of functions and closures.
338         query fn_sig(_: DefId) -> ty::PolyFnSig<'tcx> {}
339     }
340
341     Other {
342         query lint_mod(key: DefId) -> () {
343             desc { |tcx| "linting {}", describe_as_module(key, tcx) }
344         }
345
346         /// Checks the attributes in the module.
347         query check_mod_attrs(key: DefId) -> () {
348             desc { |tcx| "checking attributes in {}", describe_as_module(key, tcx) }
349         }
350
351         query check_mod_unstable_api_usage(key: DefId) -> () {
352             desc { |tcx| "checking for unstable API usage in {}", describe_as_module(key, tcx) }
353         }
354
355         /// Checks the const bodies in the module for illegal operations (e.g. `if` or `loop`).
356         query check_mod_const_bodies(key: DefId) -> () {
357             desc { |tcx| "checking consts in {}", describe_as_module(key, tcx) }
358         }
359
360         /// Checks the loops in the module.
361         query check_mod_loops(key: DefId) -> () {
362             desc { |tcx| "checking loops in {}", describe_as_module(key, tcx) }
363         }
364
365         query check_mod_item_types(key: DefId) -> () {
366             desc { |tcx| "checking item types in {}", describe_as_module(key, tcx) }
367         }
368
369         query check_mod_privacy(key: DefId) -> () {
370             desc { |tcx| "checking privacy in {}", describe_as_module(key, tcx) }
371         }
372
373         query check_mod_intrinsics(key: DefId) -> () {
374             desc { |tcx| "checking intrinsics in {}", describe_as_module(key, tcx) }
375         }
376
377         query check_mod_liveness(key: DefId) -> () {
378             desc { |tcx| "checking liveness of variables in {}", describe_as_module(key, tcx) }
379         }
380
381         query check_mod_impl_wf(key: DefId) -> () {
382             desc { |tcx| "checking that impls are well-formed in {}", describe_as_module(key, tcx) }
383         }
384
385         query collect_mod_item_types(key: DefId) -> () {
386             desc { |tcx| "collecting item types in {}", describe_as_module(key, tcx) }
387         }
388
389         /// Caches `CoerceUnsized` kinds for impls on custom types.
390         query coerce_unsized_info(_: DefId)
391             -> ty::adjustment::CoerceUnsizedInfo {}
392     }
393
394     TypeChecking {
395         query typeck_item_bodies(_: CrateNum) -> () {
396             desc { "type-checking all item bodies" }
397         }
398
399         query typeck_tables_of(key: DefId) -> &'tcx ty::TypeckTables<'tcx> {
400             cache_on_disk_if { key.is_local() }
401             load_cached(tcx, id) {
402                 let typeck_tables: Option<ty::TypeckTables<'tcx>> = tcx
403                     .queries.on_disk_cache
404                     .try_load_query_result(tcx, id);
405
406                 typeck_tables.map(|tables| &*tcx.arena.alloc(tables))
407             }
408         }
409         query diagnostic_only_typeck_tables_of(key: DefId) -> &'tcx ty::TypeckTables<'tcx> {
410             cache_on_disk_if { key.is_local() }
411             load_cached(tcx, id) {
412                 let typeck_tables: Option<ty::TypeckTables<'tcx>> = tcx
413                     .queries.on_disk_cache
414                     .try_load_query_result(tcx, id);
415
416                 typeck_tables.map(|tables| &*tcx.arena.alloc(tables))
417             }
418         }
419     }
420
421     Other {
422         query used_trait_imports(key: DefId) -> &'tcx DefIdSet {
423             cache_on_disk_if { key.is_local() }
424         }
425     }
426
427     TypeChecking {
428         query has_typeck_tables(_: DefId) -> bool {}
429
430         query coherent_trait(def_id: DefId) -> () {
431             desc { |tcx| "coherence checking all impls of trait `{}`", tcx.def_path_str(def_id) }
432         }
433     }
434
435     BorrowChecking {
436         /// Borrow-checks the function body. If this is a closure, returns
437         /// additional requirements that the closure's creator must verify.
438         query mir_borrowck(key: DefId) -> mir::BorrowCheckResult<'tcx> {
439             cache_on_disk_if(tcx, _) { key.is_local() && tcx.is_closure(key) }
440         }
441     }
442
443     TypeChecking {
444         /// Gets a complete map from all types to their inherent impls.
445         /// Not meant to be used directly outside of coherence.
446         /// (Defined only for `LOCAL_CRATE`.)
447         query crate_inherent_impls(k: CrateNum)
448             -> &'tcx CrateInherentImpls {
449             eval_always
450             desc { "all inherent impls defined in crate `{:?}`", k }
451         }
452
453         /// Checks all types in the crate for overlap in their inherent impls. Reports errors.
454         /// Not meant to be used directly outside of coherence.
455         /// (Defined only for `LOCAL_CRATE`.)
456         query crate_inherent_impls_overlap_check(_: CrateNum)
457             -> () {
458             eval_always
459             desc { "check for overlap between inherent impls defined in this crate" }
460         }
461     }
462
463     Other {
464         /// Evaluates a constant without running sanity checks.
465         ///
466         /// **Do not use this** outside const eval. Const eval uses this to break query cycles
467         /// during validation. Please add a comment to every use site explaining why using
468         /// `const_eval_validated` isn't sufficient. The returned constant also isn't in a suitable
469         /// form to be used outside of const eval.
470         query const_eval_raw(key: ty::ParamEnvAnd<'tcx, GlobalId<'tcx>>)
471             -> ConstEvalRawResult<'tcx> {
472             no_force
473             desc { |tcx|
474                 "const-evaluating `{}`",
475                 tcx.def_path_str(key.value.instance.def.def_id())
476             }
477         }
478
479         /// Results of evaluating const items or constants embedded in
480         /// other items (such as enum variant explicit discriminants).
481         ///
482         /// In contrast to `const_eval_raw` this performs some validation on the constant, and
483         /// returns a proper constant that is usable by the rest of the compiler.
484         ///
485         /// **Do not use this** directly, use one of the following wrappers: `tcx.const_eval_poly`,
486         /// `tcx.const_eval_resolve`, `tcx.const_eval_instance`, or `tcx.const_eval_promoted`.
487         query const_eval_validated(key: ty::ParamEnvAnd<'tcx, GlobalId<'tcx>>)
488             -> ConstEvalResult<'tcx> {
489             no_force
490             desc { |tcx|
491                 "const-evaluating + checking `{}`",
492                 tcx.def_path_str(key.value.instance.def.def_id())
493             }
494             cache_on_disk_if(_, opt_result) {
495                 // Only store results without errors
496                 opt_result.map_or(true, |r| r.is_ok())
497             }
498         }
499
500         /// Extracts a field of a (variant of a) const.
501         query const_field(
502             key: ty::ParamEnvAnd<'tcx, (&'tcx ty::Const<'tcx>, mir::Field)>
503         ) -> &'tcx ty::Const<'tcx> {
504             no_force
505             desc { "extract field of const" }
506         }
507
508         /// Destructure a constant ADT or array into its variant indent and its
509         /// field values.
510         query destructure_const(
511             key: ty::ParamEnvAnd<'tcx, &'tcx ty::Const<'tcx>>
512         ) -> mir::DestructuredConst<'tcx> {
513             no_force
514             desc { "destructure constant" }
515         }
516
517         query const_caller_location(key: (rustc_span::Symbol, u32, u32)) -> &'tcx ty::Const<'tcx> {
518             no_force
519             desc { "get a &core::panic::Location referring to a span" }
520         }
521     }
522
523     TypeChecking {
524         query check_match(key: DefId) {
525             cache_on_disk_if { key.is_local() }
526         }
527
528         /// Performs part of the privacy check and computes "access levels".
529         query privacy_access_levels(_: CrateNum) -> &'tcx AccessLevels {
530             eval_always
531             desc { "privacy access levels" }
532         }
533         query check_private_in_public(_: CrateNum) -> () {
534             eval_always
535             desc { "checking for private elements in public interfaces" }
536         }
537     }
538
539     Other {
540         query reachable_set(_: CrateNum) -> Lrc<HirIdSet> {
541             desc { "reachability" }
542         }
543
544         /// Per-body `region::ScopeTree`. The `DefId` should be the owner `DefId` for the body;
545         /// in the case of closures, this will be redirected to the enclosing function.
546         query region_scope_tree(_: DefId) -> &'tcx region::ScopeTree {}
547
548         query mir_shims(key: ty::InstanceDef<'tcx>) -> &'tcx mir::BodyAndCache<'tcx> {
549             no_force
550             desc { |tcx| "generating MIR shim for `{}`", tcx.def_path_str(key.def_id()) }
551         }
552
553         query symbol_name(key: ty::Instance<'tcx>) -> ty::SymbolName {
554             no_force
555             desc { "computing the symbol for `{}`", key }
556             cache_on_disk_if { true }
557         }
558
559         query def_kind(_: DefId) -> Option<DefKind> {}
560         query def_span(_: DefId) -> Span {
561             // FIXME(mw): DefSpans are not really inputs since they are derived from
562             // HIR. But at the moment HIR hashing still contains some hacks that allow
563             // to make type debuginfo to be source location independent. Declaring
564             // DefSpan an input makes sure that changes to these are always detected
565             // regardless of HIR hashing.
566             eval_always
567         }
568         query lookup_stability(_: DefId) -> Option<&'tcx attr::Stability> {}
569         query lookup_const_stability(_: DefId) -> Option<&'tcx attr::ConstStability> {}
570         query lookup_deprecation_entry(_: DefId) -> Option<DeprecationEntry> {}
571         query item_attrs(_: DefId) -> Lrc<[ast::Attribute]> {}
572     }
573
574     Codegen {
575         query codegen_fn_attrs(_: DefId) -> CodegenFnAttrs {
576             cache_on_disk_if { true }
577         }
578     }
579
580     Other {
581         query fn_arg_names(_: DefId) -> Vec<ast::Name> {}
582         /// Gets the rendered value of the specified constant or associated constant.
583         /// Used by rustdoc.
584         query rendered_const(_: DefId) -> String {}
585         query impl_parent(_: DefId) -> Option<DefId> {}
586     }
587
588     TypeChecking {
589         query trait_of_item(_: DefId) -> Option<DefId> {}
590     }
591
592     Codegen {
593         query is_mir_available(key: DefId) -> bool {
594             desc { |tcx| "checking if item has mir available: `{}`", tcx.def_path_str(key) }
595         }
596     }
597
598     Other {
599         query vtable_methods(key: ty::PolyTraitRef<'tcx>)
600                             -> &'tcx [Option<(DefId, SubstsRef<'tcx>)>] {
601             no_force
602             desc { |tcx| "finding all methods for trait {}", tcx.def_path_str(key.def_id()) }
603         }
604     }
605
606     Codegen {
607         query codegen_fulfill_obligation(
608             key: (ty::ParamEnv<'tcx>, ty::PolyTraitRef<'tcx>)
609         ) -> Vtable<'tcx, ()> {
610             no_force
611             cache_on_disk_if { true }
612             desc { |tcx|
613                 "checking if `{}` fulfills its obligations",
614                 tcx.def_path_str(key.1.def_id())
615             }
616         }
617     }
618
619     TypeChecking {
620         query trait_impls_of(key: DefId) -> &'tcx ty::trait_def::TraitImpls {
621             desc { |tcx| "trait impls of `{}`", tcx.def_path_str(key) }
622         }
623         query specialization_graph_of(_: DefId) -> &'tcx specialization_graph::Graph {
624             cache_on_disk_if { true }
625         }
626         query is_object_safe(key: DefId) -> bool {
627             desc { |tcx| "determine object safety of trait `{}`", tcx.def_path_str(key) }
628         }
629
630         /// Gets the ParameterEnvironment for a given item; this environment
631         /// will be in "user-facing" mode, meaning that it is suitabe for
632         /// type-checking etc, and it does not normalize specializable
633         /// associated types. This is almost always what you want,
634         /// unless you are doing MIR optimizations, in which case you
635         /// might want to use `reveal_all()` method to change modes.
636         query param_env(_: DefId) -> ty::ParamEnv<'tcx> {}
637
638         /// Trait selection queries. These are best used by invoking `ty.is_copy_modulo_regions()`,
639         /// `ty.is_copy()`, etc, since that will prune the environment where possible.
640         query is_copy_raw(env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> bool {
641             no_force
642             desc { "computing whether `{}` is `Copy`", env.value }
643         }
644         query is_sized_raw(env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> bool {
645             no_force
646             desc { "computing whether `{}` is `Sized`", env.value }
647         }
648         query is_freeze_raw(env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> bool {
649             no_force
650             desc { "computing whether `{}` is freeze", env.value }
651         }
652
653         // The cycle error here should be reported as an error by `check_representable`.
654         // We consider the type as not needing drop in the meanwhile to avoid
655         // further errors (done in impl Value for NeedsDrop).
656         // Use `cycle_delay_bug` to delay the cycle error here to be emitted later
657         // in case we accidentally otherwise don't emit an error.
658         query needs_drop_raw(env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> NeedsDrop {
659             cycle_delay_bug
660             no_force
661             desc { "computing whether `{}` needs drop", env.value }
662         }
663
664         query layout_raw(
665             env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>
666         ) -> Result<&'tcx ty::layout::LayoutDetails, ty::layout::LayoutError<'tcx>> {
667             no_force
668             desc { "computing layout of `{}`", env.value }
669         }
670     }
671
672     Other {
673         query dylib_dependency_formats(_: CrateNum)
674                                         -> &'tcx [(CrateNum, LinkagePreference)] {
675             desc { "dylib dependency formats of crate" }
676         }
677
678         query dependency_formats(_: CrateNum)
679             -> Lrc<crate::middle::dependency_format::Dependencies>
680         {
681             desc { "get the linkage format of all dependencies" }
682         }
683     }
684
685     Codegen {
686         query is_compiler_builtins(_: CrateNum) -> bool {
687             fatal_cycle
688             desc { "checking if the crate is_compiler_builtins" }
689         }
690         query has_global_allocator(_: CrateNum) -> bool {
691             fatal_cycle
692             desc { "checking if the crate has_global_allocator" }
693         }
694         query has_panic_handler(_: CrateNum) -> bool {
695             fatal_cycle
696             desc { "checking if the crate has_panic_handler" }
697         }
698         query is_profiler_runtime(_: CrateNum) -> bool {
699             fatal_cycle
700             desc { "query a crate is `#![profiler_runtime]`" }
701         }
702         query panic_strategy(_: CrateNum) -> PanicStrategy {
703             fatal_cycle
704             desc { "query a crate's configured panic strategy" }
705         }
706         query is_no_builtins(_: CrateNum) -> bool {
707             fatal_cycle
708             desc { "test whether a crate has `#![no_builtins]`" }
709         }
710         query symbol_mangling_version(_: CrateNum) -> SymbolManglingVersion {
711             fatal_cycle
712             desc { "query a crate's symbol mangling version" }
713         }
714
715         query extern_crate(_: DefId) -> Option<&'tcx ExternCrate> {
716             eval_always
717             desc { "getting crate's ExternCrateData" }
718         }
719     }
720
721     TypeChecking {
722         query specializes(_: (DefId, DefId)) -> bool {
723             no_force
724             desc { "computing whether impls specialize one another" }
725         }
726         query in_scope_traits_map(_: DefIndex)
727             -> Option<&'tcx FxHashMap<ItemLocalId, StableVec<TraitCandidate>>> {
728             eval_always
729             desc { "traits in scope at a block" }
730         }
731     }
732
733     Other {
734         query module_exports(_: DefId) -> Option<&'tcx [Export<hir::HirId>]> {
735             eval_always
736         }
737     }
738
739     TypeChecking {
740         query impl_defaultness(_: DefId) -> hir::Defaultness {}
741
742         query check_item_well_formed(_: DefId) -> () {}
743         query check_trait_item_well_formed(_: DefId) -> () {}
744         query check_impl_item_well_formed(_: DefId) -> () {}
745     }
746
747     Linking {
748         // The `DefId`s of all non-generic functions and statics in the given crate
749         // that can be reached from outside the crate.
750         //
751         // We expect this items to be available for being linked to.
752         //
753         // This query can also be called for `LOCAL_CRATE`. In this case it will
754         // compute which items will be reachable to other crates, taking into account
755         // the kind of crate that is currently compiled. Crates with only a
756         // C interface have fewer reachable things.
757         //
758         // Does not include external symbols that don't have a corresponding DefId,
759         // like the compiler-generated `main` function and so on.
760         query reachable_non_generics(_: CrateNum)
761             -> &'tcx DefIdMap<SymbolExportLevel> {
762             desc { "looking up the exported symbols of a crate" }
763         }
764         query is_reachable_non_generic(_: DefId) -> bool {}
765         query is_unreachable_local_definition(_: DefId) -> bool {}
766     }
767
768     Codegen {
769         query upstream_monomorphizations(
770             k: CrateNum
771         ) -> &'tcx DefIdMap<FxHashMap<SubstsRef<'tcx>, CrateNum>> {
772             desc { "collecting available upstream monomorphizations `{:?}`", k }
773         }
774         query upstream_monomorphizations_for(_: DefId)
775             -> Option<&'tcx FxHashMap<SubstsRef<'tcx>, CrateNum>> {}
776     }
777
778     Other {
779         query foreign_modules(_: CrateNum) -> &'tcx [ForeignModule] {
780             desc { "looking up the foreign modules of a linked crate" }
781         }
782
783         /// Identifies the entry-point (e.g., the `main` function) for a given
784         /// crate, returning `None` if there is no entry point (such as for library crates).
785         query entry_fn(_: CrateNum) -> Option<(DefId, EntryFnType)> {
786             desc { "looking up the entry function of a crate" }
787         }
788         query plugin_registrar_fn(_: CrateNum) -> Option<DefId> {
789             desc { "looking up the plugin registrar for a crate" }
790         }
791         query proc_macro_decls_static(_: CrateNum) -> Option<DefId> {
792             desc { "looking up the derive registrar for a crate" }
793         }
794         query crate_disambiguator(_: CrateNum) -> CrateDisambiguator {
795             eval_always
796             desc { "looking up the disambiguator a crate" }
797         }
798         query crate_hash(_: CrateNum) -> Svh {
799             eval_always
800             desc { "looking up the hash a crate" }
801         }
802         query crate_host_hash(_: CrateNum) -> Option<Svh> {
803             eval_always
804             desc { "looking up the hash of a host version of a crate" }
805         }
806         query original_crate_name(_: CrateNum) -> Symbol {
807             eval_always
808             desc { "looking up the original name a crate" }
809         }
810         query extra_filename(_: CrateNum) -> String {
811             eval_always
812             desc { "looking up the extra filename for a crate" }
813         }
814     }
815
816     TypeChecking {
817         query implementations_of_trait(_: (CrateNum, DefId))
818             -> &'tcx [DefId] {
819             no_force
820             desc { "looking up implementations of a trait in a crate" }
821         }
822         query all_trait_implementations(_: CrateNum)
823             -> &'tcx [DefId] {
824             desc { "looking up all (?) trait implementations" }
825         }
826     }
827
828     Other {
829         query dllimport_foreign_items(_: CrateNum)
830             -> &'tcx FxHashSet<DefId> {
831             desc { "dllimport_foreign_items" }
832         }
833         query is_dllimport_foreign_item(_: DefId) -> bool {}
834         query is_statically_included_foreign_item(_: DefId) -> bool {}
835         query native_library_kind(_: DefId)
836             -> Option<NativeLibraryKind> {}
837     }
838
839     Linking {
840         query link_args(_: CrateNum) -> Lrc<Vec<String>> {
841             eval_always
842             desc { "looking up link arguments for a crate" }
843         }
844     }
845
846     BorrowChecking {
847         /// Lifetime resolution. See `middle::resolve_lifetimes`.
848         query resolve_lifetimes(_: CrateNum) -> &'tcx ResolveLifetimes {
849             desc { "resolving lifetimes" }
850         }
851         query named_region_map(_: DefIndex) ->
852             Option<&'tcx FxHashMap<ItemLocalId, Region>> {
853             desc { "looking up a named region" }
854         }
855         query is_late_bound_map(_: DefIndex) ->
856             Option<&'tcx FxHashSet<ItemLocalId>> {
857             desc { "testing if a region is late bound" }
858         }
859         query object_lifetime_defaults_map(_: DefIndex)
860             -> Option<&'tcx FxHashMap<ItemLocalId, Vec<ObjectLifetimeDefault>>> {
861             desc { "looking up lifetime defaults for a region" }
862         }
863     }
864
865     TypeChecking {
866         query visibility(_: DefId) -> ty::Visibility {}
867     }
868
869     Other {
870         query dep_kind(_: CrateNum) -> DepKind {
871             eval_always
872             desc { "fetching what a dependency looks like" }
873         }
874         query crate_name(_: CrateNum) -> Symbol {
875             eval_always
876             desc { "fetching what a crate is named" }
877         }
878         query item_children(_: DefId) -> &'tcx [Export<hir::HirId>] {}
879         query extern_mod_stmt_cnum(_: DefId) -> Option<CrateNum> {}
880
881         query get_lib_features(_: CrateNum) -> &'tcx LibFeatures {
882             eval_always
883             desc { "calculating the lib features map" }
884         }
885         query defined_lib_features(_: CrateNum)
886             -> &'tcx [(Symbol, Option<Symbol>)] {
887             desc { "calculating the lib features defined in a crate" }
888         }
889         /// Returns the lang items defined in another crate by loading it from metadata.
890         // FIXME: It is illegal to pass a `CrateNum` other than `LOCAL_CRATE` here, just get rid
891         // of that argument?
892         query get_lang_items(_: CrateNum) -> &'tcx LanguageItems {
893             eval_always
894             desc { "calculating the lang items map" }
895         }
896
897         /// Returns all diagnostic items defined in all crates.
898         query all_diagnostic_items(_: CrateNum) -> &'tcx FxHashMap<Symbol, DefId> {
899             eval_always
900             desc { "calculating the diagnostic items map" }
901         }
902
903         /// Returns the lang items defined in another crate by loading it from metadata.
904         query defined_lang_items(_: CrateNum) -> &'tcx [(DefId, usize)] {
905             desc { "calculating the lang items defined in a crate" }
906         }
907
908         /// Returns the diagnostic items defined in a crate.
909         query diagnostic_items(_: CrateNum) -> &'tcx FxHashMap<Symbol, DefId> {
910             desc { "calculating the diagnostic items map in a crate" }
911         }
912
913         query missing_lang_items(_: CrateNum) -> &'tcx [LangItem] {
914             desc { "calculating the missing lang items in a crate" }
915         }
916         query visible_parent_map(_: CrateNum)
917             -> &'tcx DefIdMap<DefId> {
918             desc { "calculating the visible parent map" }
919         }
920         query missing_extern_crate_item(_: CrateNum) -> bool {
921             eval_always
922             desc { "seeing if we're missing an `extern crate` item for this crate" }
923         }
924         query used_crate_source(_: CrateNum) -> Lrc<CrateSource> {
925             eval_always
926             desc { "looking at the source for a crate" }
927         }
928         query postorder_cnums(_: CrateNum) -> &'tcx [CrateNum] {
929             eval_always
930             desc { "generating a postorder list of CrateNums" }
931         }
932
933         query upvars(_: DefId) -> Option<&'tcx FxIndexMap<hir::HirId, hir::Upvar>> {
934             eval_always
935         }
936         query maybe_unused_trait_import(_: DefId) -> bool {
937             eval_always
938         }
939         query maybe_unused_extern_crates(_: CrateNum)
940             -> &'tcx [(DefId, Span)] {
941             eval_always
942             desc { "looking up all possibly unused extern crates" }
943         }
944         query names_imported_by_glob_use(_: DefId)
945             -> Lrc<FxHashSet<ast::Name>> {
946             eval_always
947         }
948
949         query stability_index(_: CrateNum) -> &'tcx stability::Index<'tcx> {
950             eval_always
951             desc { "calculating the stability index for the local crate" }
952         }
953         query all_crate_nums(_: CrateNum) -> &'tcx [CrateNum] {
954             eval_always
955             desc { "fetching all foreign CrateNum instances" }
956         }
957
958         /// A vector of every trait accessible in the whole crate
959         /// (i.e., including those from subcrates). This is used only for
960         /// error reporting.
961         query all_traits(_: CrateNum) -> &'tcx [DefId] {
962             desc { "fetching all foreign and local traits" }
963         }
964     }
965
966     Linking {
967         query exported_symbols(_: CrateNum)
968             -> Arc<Vec<(ExportedSymbol<'tcx>, SymbolExportLevel)>> {
969             desc { "exported_symbols" }
970         }
971     }
972
973     Codegen {
974         query collect_and_partition_mono_items(_: CrateNum)
975             -> (Arc<DefIdSet>, Arc<Vec<Arc<CodegenUnit<'tcx>>>>) {
976             eval_always
977             desc { "collect_and_partition_mono_items" }
978         }
979         query is_codegened_item(_: DefId) -> bool {}
980         query codegen_unit(_: Symbol) -> Arc<CodegenUnit<'tcx>> {
981             no_force
982             desc { "codegen_unit" }
983         }
984         query backend_optimization_level(_: CrateNum) -> OptLevel {
985             desc { "optimization level used by backend" }
986         }
987     }
988
989     Other {
990         query output_filenames(_: CrateNum) -> Arc<OutputFilenames> {
991             eval_always
992             desc { "output_filenames" }
993         }
994     }
995
996     TypeChecking {
997         /// Do not call this query directly: invoke `normalize` instead.
998         query normalize_projection_ty(
999             goal: CanonicalProjectionGoal<'tcx>
1000         ) -> Result<
1001             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, NormalizationResult<'tcx>>>,
1002             NoSolution,
1003         > {
1004             no_force
1005             desc { "normalizing `{:?}`", goal }
1006         }
1007
1008         /// Do not call this query directly: invoke `normalize_erasing_regions` instead.
1009         query normalize_ty_after_erasing_regions(
1010             goal: ParamEnvAnd<'tcx, Ty<'tcx>>
1011         ) -> Ty<'tcx> {
1012             no_force
1013             desc { "normalizing `{:?}`", goal }
1014         }
1015
1016         query implied_outlives_bounds(
1017             goal: CanonicalTyGoal<'tcx>
1018         ) -> Result<
1019             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, Vec<OutlivesBound<'tcx>>>>,
1020             NoSolution,
1021         > {
1022             no_force
1023             desc { "computing implied outlives bounds for `{:?}`", goal }
1024         }
1025
1026         /// Do not call this query directly: invoke `infcx.at().dropck_outlives()` instead.
1027         query dropck_outlives(
1028             goal: CanonicalTyGoal<'tcx>
1029         ) -> Result<
1030             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, DropckOutlivesResult<'tcx>>>,
1031             NoSolution,
1032         > {
1033             no_force
1034             desc { "computing dropck types for `{:?}`", goal }
1035         }
1036
1037         /// Do not call this query directly: invoke `infcx.predicate_may_hold()` or
1038         /// `infcx.predicate_must_hold()` instead.
1039         query evaluate_obligation(
1040             goal: CanonicalPredicateGoal<'tcx>
1041         ) -> Result<traits::EvaluationResult, traits::OverflowError> {
1042             no_force
1043             desc { "evaluating trait selection obligation `{}`", goal.value.value }
1044         }
1045
1046         query evaluate_goal(
1047             goal: traits::ChalkCanonicalGoal<'tcx>
1048         ) -> Result<
1049             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
1050             NoSolution
1051         > {
1052             no_force
1053             desc { "evaluating trait selection obligation `{}`", goal.value.goal }
1054         }
1055
1056         /// Do not call this query directly: part of the `Eq` type-op
1057         query type_op_ascribe_user_type(
1058             goal: CanonicalTypeOpAscribeUserTypeGoal<'tcx>
1059         ) -> Result<
1060             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
1061             NoSolution,
1062         > {
1063             no_force
1064             desc { "evaluating `type_op_ascribe_user_type` `{:?}`", goal }
1065         }
1066
1067         /// Do not call this query directly: part of the `Eq` type-op
1068         query type_op_eq(
1069             goal: CanonicalTypeOpEqGoal<'tcx>
1070         ) -> Result<
1071             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
1072             NoSolution,
1073         > {
1074             no_force
1075             desc { "evaluating `type_op_eq` `{:?}`", goal }
1076         }
1077
1078         /// Do not call this query directly: part of the `Subtype` type-op
1079         query type_op_subtype(
1080             goal: CanonicalTypeOpSubtypeGoal<'tcx>
1081         ) -> Result<
1082             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
1083             NoSolution,
1084         > {
1085             no_force
1086             desc { "evaluating `type_op_subtype` `{:?}`", goal }
1087         }
1088
1089         /// Do not call this query directly: part of the `ProvePredicate` type-op
1090         query type_op_prove_predicate(
1091             goal: CanonicalTypeOpProvePredicateGoal<'tcx>
1092         ) -> Result<
1093             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
1094             NoSolution,
1095         > {
1096             no_force
1097             desc { "evaluating `type_op_prove_predicate` `{:?}`", goal }
1098         }
1099
1100         /// Do not call this query directly: part of the `Normalize` type-op
1101         query type_op_normalize_ty(
1102             goal: CanonicalTypeOpNormalizeGoal<'tcx, Ty<'tcx>>
1103         ) -> Result<
1104             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, Ty<'tcx>>>,
1105             NoSolution,
1106         > {
1107             no_force
1108             desc { "normalizing `{:?}`", goal }
1109         }
1110
1111         /// Do not call this query directly: part of the `Normalize` type-op
1112         query type_op_normalize_predicate(
1113             goal: CanonicalTypeOpNormalizeGoal<'tcx, ty::Predicate<'tcx>>
1114         ) -> Result<
1115             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ty::Predicate<'tcx>>>,
1116             NoSolution,
1117         > {
1118             no_force
1119             desc { "normalizing `{:?}`", goal }
1120         }
1121
1122         /// Do not call this query directly: part of the `Normalize` type-op
1123         query type_op_normalize_poly_fn_sig(
1124             goal: CanonicalTypeOpNormalizeGoal<'tcx, ty::PolyFnSig<'tcx>>
1125         ) -> Result<
1126             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ty::PolyFnSig<'tcx>>>,
1127             NoSolution,
1128         > {
1129             no_force
1130             desc { "normalizing `{:?}`", goal }
1131         }
1132
1133         /// Do not call this query directly: part of the `Normalize` type-op
1134         query type_op_normalize_fn_sig(
1135             goal: CanonicalTypeOpNormalizeGoal<'tcx, ty::FnSig<'tcx>>
1136         ) -> Result<
1137             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ty::FnSig<'tcx>>>,
1138             NoSolution,
1139         > {
1140             no_force
1141             desc { "normalizing `{:?}`", goal }
1142         }
1143
1144         query substitute_normalize_and_test_predicates(key: (DefId, SubstsRef<'tcx>)) -> bool {
1145             no_force
1146             desc { |tcx|
1147                 "testing substituted normalized predicates:`{}`",
1148                 tcx.def_path_str(key.0)
1149             }
1150         }
1151
1152         query method_autoderef_steps(
1153             goal: CanonicalTyGoal<'tcx>
1154         ) -> MethodAutoderefStepsResult<'tcx> {
1155             no_force
1156             desc { "computing autoderef types for `{:?}`", goal }
1157         }
1158     }
1159
1160     Other {
1161         query target_features_whitelist(_: CrateNum) -> &'tcx FxHashMap<String, Option<Symbol>> {
1162             eval_always
1163             desc { "looking up the whitelist of target features" }
1164         }
1165
1166         // Get an estimate of the size of an InstanceDef based on its MIR for CGU partitioning.
1167         query instance_def_size_estimate(def: ty::InstanceDef<'tcx>)
1168             -> usize {
1169             no_force
1170             desc { |tcx| "estimating size for `{}`", tcx.def_path_str(def.def_id()) }
1171         }
1172
1173         query features_query(_: CrateNum) -> &'tcx rustc_feature::Features {
1174             eval_always
1175             desc { "looking up enabled feature gates" }
1176         }
1177     }
1178 }