]> git.lizzy.rs Git - rust.git/blob - src/librustc/query/mod.rs
a20e011b91a7543697bdb006784a82e205397ace
[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, LitToConstInput};
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         query lit_to_const(
523             key: LitToConstInput<'tcx>
524         ) -> Result<&'tcx ty::Const<'tcx>, LitToConstError> {
525             no_force
526             desc { "converting literal to const" }
527         }
528     }
529
530     TypeChecking {
531         query check_match(key: DefId) {
532             cache_on_disk_if { key.is_local() }
533         }
534
535         /// Performs part of the privacy check and computes "access levels".
536         query privacy_access_levels(_: CrateNum) -> &'tcx AccessLevels {
537             eval_always
538             desc { "privacy access levels" }
539         }
540         query check_private_in_public(_: CrateNum) -> () {
541             eval_always
542             desc { "checking for private elements in public interfaces" }
543         }
544     }
545
546     Other {
547         query reachable_set(_: CrateNum) -> Lrc<HirIdSet> {
548             desc { "reachability" }
549         }
550
551         /// Per-body `region::ScopeTree`. The `DefId` should be the owner `DefId` for the body;
552         /// in the case of closures, this will be redirected to the enclosing function.
553         query region_scope_tree(_: DefId) -> &'tcx region::ScopeTree {}
554
555         query mir_shims(key: ty::InstanceDef<'tcx>) -> &'tcx mir::BodyAndCache<'tcx> {
556             no_force
557             desc { |tcx| "generating MIR shim for `{}`", tcx.def_path_str(key.def_id()) }
558         }
559
560         query symbol_name(key: ty::Instance<'tcx>) -> ty::SymbolName {
561             no_force
562             desc { "computing the symbol for `{}`", key }
563             cache_on_disk_if { true }
564         }
565
566         query def_kind(_: DefId) -> Option<DefKind> {}
567         query def_span(_: DefId) -> Span {
568             // FIXME(mw): DefSpans are not really inputs since they are derived from
569             // HIR. But at the moment HIR hashing still contains some hacks that allow
570             // to make type debuginfo to be source location independent. Declaring
571             // DefSpan an input makes sure that changes to these are always detected
572             // regardless of HIR hashing.
573             eval_always
574         }
575         query lookup_stability(_: DefId) -> Option<&'tcx attr::Stability> {}
576         query lookup_const_stability(_: DefId) -> Option<&'tcx attr::ConstStability> {}
577         query lookup_deprecation_entry(_: DefId) -> Option<DeprecationEntry> {}
578         query item_attrs(_: DefId) -> Lrc<[ast::Attribute]> {}
579     }
580
581     Codegen {
582         query codegen_fn_attrs(_: DefId) -> CodegenFnAttrs {
583             cache_on_disk_if { true }
584         }
585     }
586
587     Other {
588         query fn_arg_names(_: DefId) -> Vec<ast::Name> {}
589         /// Gets the rendered value of the specified constant or associated constant.
590         /// Used by rustdoc.
591         query rendered_const(_: DefId) -> String {}
592         query impl_parent(_: DefId) -> Option<DefId> {}
593     }
594
595     TypeChecking {
596         query trait_of_item(_: DefId) -> Option<DefId> {}
597     }
598
599     Codegen {
600         query is_mir_available(key: DefId) -> bool {
601             desc { |tcx| "checking if item has mir available: `{}`", tcx.def_path_str(key) }
602         }
603     }
604
605     Other {
606         query vtable_methods(key: ty::PolyTraitRef<'tcx>)
607                             -> &'tcx [Option<(DefId, SubstsRef<'tcx>)>] {
608             no_force
609             desc { |tcx| "finding all methods for trait {}", tcx.def_path_str(key.def_id()) }
610         }
611     }
612
613     Codegen {
614         query codegen_fulfill_obligation(
615             key: (ty::ParamEnv<'tcx>, ty::PolyTraitRef<'tcx>)
616         ) -> Vtable<'tcx, ()> {
617             no_force
618             cache_on_disk_if { true }
619             desc { |tcx|
620                 "checking if `{}` fulfills its obligations",
621                 tcx.def_path_str(key.1.def_id())
622             }
623         }
624     }
625
626     TypeChecking {
627         query trait_impls_of(key: DefId) -> &'tcx ty::trait_def::TraitImpls {
628             desc { |tcx| "trait impls of `{}`", tcx.def_path_str(key) }
629         }
630         query specialization_graph_of(_: DefId) -> &'tcx specialization_graph::Graph {
631             cache_on_disk_if { true }
632         }
633         query is_object_safe(key: DefId) -> bool {
634             desc { |tcx| "determine object safety of trait `{}`", tcx.def_path_str(key) }
635         }
636
637         /// Gets the ParameterEnvironment for a given item; this environment
638         /// will be in "user-facing" mode, meaning that it is suitabe for
639         /// type-checking etc, and it does not normalize specializable
640         /// associated types. This is almost always what you want,
641         /// unless you are doing MIR optimizations, in which case you
642         /// might want to use `reveal_all()` method to change modes.
643         query param_env(_: DefId) -> ty::ParamEnv<'tcx> {}
644
645         /// Trait selection queries. These are best used by invoking `ty.is_copy_modulo_regions()`,
646         /// `ty.is_copy()`, etc, since that will prune the environment where possible.
647         query is_copy_raw(env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> bool {
648             no_force
649             desc { "computing whether `{}` is `Copy`", env.value }
650         }
651         query is_sized_raw(env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> bool {
652             no_force
653             desc { "computing whether `{}` is `Sized`", env.value }
654         }
655         query is_freeze_raw(env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> bool {
656             no_force
657             desc { "computing whether `{}` is freeze", env.value }
658         }
659
660         // The cycle error here should be reported as an error by `check_representable`.
661         // We consider the type as not needing drop in the meanwhile to avoid
662         // further errors (done in impl Value for NeedsDrop).
663         // Use `cycle_delay_bug` to delay the cycle error here to be emitted later
664         // in case we accidentally otherwise don't emit an error.
665         query needs_drop_raw(env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> NeedsDrop {
666             cycle_delay_bug
667             no_force
668             desc { "computing whether `{}` needs drop", env.value }
669         }
670
671         query layout_raw(
672             env: ty::ParamEnvAnd<'tcx, Ty<'tcx>>
673         ) -> Result<&'tcx ty::layout::LayoutDetails, ty::layout::LayoutError<'tcx>> {
674             no_force
675             desc { "computing layout of `{}`", env.value }
676         }
677     }
678
679     Other {
680         query dylib_dependency_formats(_: CrateNum)
681                                         -> &'tcx [(CrateNum, LinkagePreference)] {
682             desc { "dylib dependency formats of crate" }
683         }
684
685         query dependency_formats(_: CrateNum)
686             -> Lrc<crate::middle::dependency_format::Dependencies>
687         {
688             desc { "get the linkage format of all dependencies" }
689         }
690     }
691
692     Codegen {
693         query is_compiler_builtins(_: CrateNum) -> bool {
694             fatal_cycle
695             desc { "checking if the crate is_compiler_builtins" }
696         }
697         query has_global_allocator(_: CrateNum) -> bool {
698             fatal_cycle
699             desc { "checking if the crate has_global_allocator" }
700         }
701         query has_panic_handler(_: CrateNum) -> bool {
702             fatal_cycle
703             desc { "checking if the crate has_panic_handler" }
704         }
705         query is_profiler_runtime(_: CrateNum) -> bool {
706             fatal_cycle
707             desc { "query a crate is `#![profiler_runtime]`" }
708         }
709         query panic_strategy(_: CrateNum) -> PanicStrategy {
710             fatal_cycle
711             desc { "query a crate's configured panic strategy" }
712         }
713         query is_no_builtins(_: CrateNum) -> bool {
714             fatal_cycle
715             desc { "test whether a crate has `#![no_builtins]`" }
716         }
717         query symbol_mangling_version(_: CrateNum) -> SymbolManglingVersion {
718             fatal_cycle
719             desc { "query a crate's symbol mangling version" }
720         }
721
722         query extern_crate(_: DefId) -> Option<&'tcx ExternCrate> {
723             eval_always
724             desc { "getting crate's ExternCrateData" }
725         }
726     }
727
728     TypeChecking {
729         query specializes(_: (DefId, DefId)) -> bool {
730             no_force
731             desc { "computing whether impls specialize one another" }
732         }
733         query in_scope_traits_map(_: DefIndex)
734             -> Option<&'tcx FxHashMap<ItemLocalId, StableVec<TraitCandidate>>> {
735             eval_always
736             desc { "traits in scope at a block" }
737         }
738     }
739
740     Other {
741         query module_exports(_: DefId) -> Option<&'tcx [Export<hir::HirId>]> {
742             eval_always
743         }
744     }
745
746     TypeChecking {
747         query impl_defaultness(_: DefId) -> hir::Defaultness {}
748
749         query check_item_well_formed(_: DefId) -> () {}
750         query check_trait_item_well_formed(_: DefId) -> () {}
751         query check_impl_item_well_formed(_: DefId) -> () {}
752     }
753
754     Linking {
755         // The `DefId`s of all non-generic functions and statics in the given crate
756         // that can be reached from outside the crate.
757         //
758         // We expect this items to be available for being linked to.
759         //
760         // This query can also be called for `LOCAL_CRATE`. In this case it will
761         // compute which items will be reachable to other crates, taking into account
762         // the kind of crate that is currently compiled. Crates with only a
763         // C interface have fewer reachable things.
764         //
765         // Does not include external symbols that don't have a corresponding DefId,
766         // like the compiler-generated `main` function and so on.
767         query reachable_non_generics(_: CrateNum)
768             -> &'tcx DefIdMap<SymbolExportLevel> {
769             desc { "looking up the exported symbols of a crate" }
770         }
771         query is_reachable_non_generic(_: DefId) -> bool {}
772         query is_unreachable_local_definition(_: DefId) -> bool {}
773     }
774
775     Codegen {
776         query upstream_monomorphizations(
777             k: CrateNum
778         ) -> &'tcx DefIdMap<FxHashMap<SubstsRef<'tcx>, CrateNum>> {
779             desc { "collecting available upstream monomorphizations `{:?}`", k }
780         }
781         query upstream_monomorphizations_for(_: DefId)
782             -> Option<&'tcx FxHashMap<SubstsRef<'tcx>, CrateNum>> {}
783     }
784
785     Other {
786         query foreign_modules(_: CrateNum) -> &'tcx [ForeignModule] {
787             desc { "looking up the foreign modules of a linked crate" }
788         }
789
790         /// Identifies the entry-point (e.g., the `main` function) for a given
791         /// crate, returning `None` if there is no entry point (such as for library crates).
792         query entry_fn(_: CrateNum) -> Option<(DefId, EntryFnType)> {
793             desc { "looking up the entry function of a crate" }
794         }
795         query plugin_registrar_fn(_: CrateNum) -> Option<DefId> {
796             desc { "looking up the plugin registrar for a crate" }
797         }
798         query proc_macro_decls_static(_: CrateNum) -> Option<DefId> {
799             desc { "looking up the derive registrar for a crate" }
800         }
801         query crate_disambiguator(_: CrateNum) -> CrateDisambiguator {
802             eval_always
803             desc { "looking up the disambiguator a crate" }
804         }
805         query crate_hash(_: CrateNum) -> Svh {
806             eval_always
807             desc { "looking up the hash a crate" }
808         }
809         query crate_host_hash(_: CrateNum) -> Option<Svh> {
810             eval_always
811             desc { "looking up the hash of a host version of a crate" }
812         }
813         query original_crate_name(_: CrateNum) -> Symbol {
814             eval_always
815             desc { "looking up the original name a crate" }
816         }
817         query extra_filename(_: CrateNum) -> String {
818             eval_always
819             desc { "looking up the extra filename for a crate" }
820         }
821     }
822
823     TypeChecking {
824         query implementations_of_trait(_: (CrateNum, DefId))
825             -> &'tcx [DefId] {
826             no_force
827             desc { "looking up implementations of a trait in a crate" }
828         }
829         query all_trait_implementations(_: CrateNum)
830             -> &'tcx [DefId] {
831             desc { "looking up all (?) trait implementations" }
832         }
833     }
834
835     Other {
836         query dllimport_foreign_items(_: CrateNum)
837             -> &'tcx FxHashSet<DefId> {
838             desc { "dllimport_foreign_items" }
839         }
840         query is_dllimport_foreign_item(_: DefId) -> bool {}
841         query is_statically_included_foreign_item(_: DefId) -> bool {}
842         query native_library_kind(_: DefId)
843             -> Option<NativeLibraryKind> {}
844     }
845
846     Linking {
847         query link_args(_: CrateNum) -> Lrc<Vec<String>> {
848             eval_always
849             desc { "looking up link arguments for a crate" }
850         }
851     }
852
853     BorrowChecking {
854         /// Lifetime resolution. See `middle::resolve_lifetimes`.
855         query resolve_lifetimes(_: CrateNum) -> &'tcx ResolveLifetimes {
856             desc { "resolving lifetimes" }
857         }
858         query named_region_map(_: DefIndex) ->
859             Option<&'tcx FxHashMap<ItemLocalId, Region>> {
860             desc { "looking up a named region" }
861         }
862         query is_late_bound_map(_: DefIndex) ->
863             Option<&'tcx FxHashSet<ItemLocalId>> {
864             desc { "testing if a region is late bound" }
865         }
866         query object_lifetime_defaults_map(_: DefIndex)
867             -> Option<&'tcx FxHashMap<ItemLocalId, Vec<ObjectLifetimeDefault>>> {
868             desc { "looking up lifetime defaults for a region" }
869         }
870     }
871
872     TypeChecking {
873         query visibility(_: DefId) -> ty::Visibility {}
874     }
875
876     Other {
877         query dep_kind(_: CrateNum) -> DepKind {
878             eval_always
879             desc { "fetching what a dependency looks like" }
880         }
881         query crate_name(_: CrateNum) -> Symbol {
882             eval_always
883             desc { "fetching what a crate is named" }
884         }
885         query item_children(_: DefId) -> &'tcx [Export<hir::HirId>] {}
886         query extern_mod_stmt_cnum(_: DefId) -> Option<CrateNum> {}
887
888         query get_lib_features(_: CrateNum) -> &'tcx LibFeatures {
889             eval_always
890             desc { "calculating the lib features map" }
891         }
892         query defined_lib_features(_: CrateNum)
893             -> &'tcx [(Symbol, Option<Symbol>)] {
894             desc { "calculating the lib features defined in a crate" }
895         }
896         /// Returns the lang items defined in another crate by loading it from metadata.
897         // FIXME: It is illegal to pass a `CrateNum` other than `LOCAL_CRATE` here, just get rid
898         // of that argument?
899         query get_lang_items(_: CrateNum) -> &'tcx LanguageItems {
900             eval_always
901             desc { "calculating the lang items map" }
902         }
903
904         /// Returns all diagnostic items defined in all crates.
905         query all_diagnostic_items(_: CrateNum) -> &'tcx FxHashMap<Symbol, DefId> {
906             eval_always
907             desc { "calculating the diagnostic items map" }
908         }
909
910         /// Returns the lang items defined in another crate by loading it from metadata.
911         query defined_lang_items(_: CrateNum) -> &'tcx [(DefId, usize)] {
912             desc { "calculating the lang items defined in a crate" }
913         }
914
915         /// Returns the diagnostic items defined in a crate.
916         query diagnostic_items(_: CrateNum) -> &'tcx FxHashMap<Symbol, DefId> {
917             desc { "calculating the diagnostic items map in a crate" }
918         }
919
920         query missing_lang_items(_: CrateNum) -> &'tcx [LangItem] {
921             desc { "calculating the missing lang items in a crate" }
922         }
923         query visible_parent_map(_: CrateNum)
924             -> &'tcx DefIdMap<DefId> {
925             desc { "calculating the visible parent map" }
926         }
927         query missing_extern_crate_item(_: CrateNum) -> bool {
928             eval_always
929             desc { "seeing if we're missing an `extern crate` item for this crate" }
930         }
931         query used_crate_source(_: CrateNum) -> Lrc<CrateSource> {
932             eval_always
933             desc { "looking at the source for a crate" }
934         }
935         query postorder_cnums(_: CrateNum) -> &'tcx [CrateNum] {
936             eval_always
937             desc { "generating a postorder list of CrateNums" }
938         }
939
940         query upvars(_: DefId) -> Option<&'tcx FxIndexMap<hir::HirId, hir::Upvar>> {
941             eval_always
942         }
943         query maybe_unused_trait_import(_: DefId) -> bool {
944             eval_always
945         }
946         query maybe_unused_extern_crates(_: CrateNum)
947             -> &'tcx [(DefId, Span)] {
948             eval_always
949             desc { "looking up all possibly unused extern crates" }
950         }
951         query names_imported_by_glob_use(_: DefId)
952             -> Lrc<FxHashSet<ast::Name>> {
953             eval_always
954         }
955
956         query stability_index(_: CrateNum) -> &'tcx stability::Index<'tcx> {
957             eval_always
958             desc { "calculating the stability index for the local crate" }
959         }
960         query all_crate_nums(_: CrateNum) -> &'tcx [CrateNum] {
961             eval_always
962             desc { "fetching all foreign CrateNum instances" }
963         }
964
965         /// A vector of every trait accessible in the whole crate
966         /// (i.e., including those from subcrates). This is used only for
967         /// error reporting.
968         query all_traits(_: CrateNum) -> &'tcx [DefId] {
969             desc { "fetching all foreign and local traits" }
970         }
971     }
972
973     Linking {
974         query exported_symbols(_: CrateNum)
975             -> Arc<Vec<(ExportedSymbol<'tcx>, SymbolExportLevel)>> {
976             desc { "exported_symbols" }
977         }
978     }
979
980     Codegen {
981         query collect_and_partition_mono_items(_: CrateNum)
982             -> (Arc<DefIdSet>, Arc<Vec<Arc<CodegenUnit<'tcx>>>>) {
983             eval_always
984             desc { "collect_and_partition_mono_items" }
985         }
986         query is_codegened_item(_: DefId) -> bool {}
987         query codegen_unit(_: Symbol) -> Arc<CodegenUnit<'tcx>> {
988             no_force
989             desc { "codegen_unit" }
990         }
991         query backend_optimization_level(_: CrateNum) -> OptLevel {
992             desc { "optimization level used by backend" }
993         }
994     }
995
996     Other {
997         query output_filenames(_: CrateNum) -> Arc<OutputFilenames> {
998             eval_always
999             desc { "output_filenames" }
1000         }
1001     }
1002
1003     TypeChecking {
1004         /// Do not call this query directly: invoke `normalize` instead.
1005         query normalize_projection_ty(
1006             goal: CanonicalProjectionGoal<'tcx>
1007         ) -> Result<
1008             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, NormalizationResult<'tcx>>>,
1009             NoSolution,
1010         > {
1011             no_force
1012             desc { "normalizing `{:?}`", goal }
1013         }
1014
1015         /// Do not call this query directly: invoke `normalize_erasing_regions` instead.
1016         query normalize_ty_after_erasing_regions(
1017             goal: ParamEnvAnd<'tcx, Ty<'tcx>>
1018         ) -> Ty<'tcx> {
1019             no_force
1020             desc { "normalizing `{:?}`", goal }
1021         }
1022
1023         query implied_outlives_bounds(
1024             goal: CanonicalTyGoal<'tcx>
1025         ) -> Result<
1026             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, Vec<OutlivesBound<'tcx>>>>,
1027             NoSolution,
1028         > {
1029             no_force
1030             desc { "computing implied outlives bounds for `{:?}`", goal }
1031         }
1032
1033         /// Do not call this query directly: invoke `infcx.at().dropck_outlives()` instead.
1034         query dropck_outlives(
1035             goal: CanonicalTyGoal<'tcx>
1036         ) -> Result<
1037             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, DropckOutlivesResult<'tcx>>>,
1038             NoSolution,
1039         > {
1040             no_force
1041             desc { "computing dropck types for `{:?}`", goal }
1042         }
1043
1044         /// Do not call this query directly: invoke `infcx.predicate_may_hold()` or
1045         /// `infcx.predicate_must_hold()` instead.
1046         query evaluate_obligation(
1047             goal: CanonicalPredicateGoal<'tcx>
1048         ) -> Result<traits::EvaluationResult, traits::OverflowError> {
1049             no_force
1050             desc { "evaluating trait selection obligation `{}`", goal.value.value }
1051         }
1052
1053         query evaluate_goal(
1054             goal: traits::ChalkCanonicalGoal<'tcx>
1055         ) -> Result<
1056             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
1057             NoSolution
1058         > {
1059             no_force
1060             desc { "evaluating trait selection obligation `{}`", goal.value.goal }
1061         }
1062
1063         /// Do not call this query directly: part of the `Eq` type-op
1064         query type_op_ascribe_user_type(
1065             goal: CanonicalTypeOpAscribeUserTypeGoal<'tcx>
1066         ) -> Result<
1067             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
1068             NoSolution,
1069         > {
1070             no_force
1071             desc { "evaluating `type_op_ascribe_user_type` `{:?}`", goal }
1072         }
1073
1074         /// Do not call this query directly: part of the `Eq` type-op
1075         query type_op_eq(
1076             goal: CanonicalTypeOpEqGoal<'tcx>
1077         ) -> Result<
1078             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
1079             NoSolution,
1080         > {
1081             no_force
1082             desc { "evaluating `type_op_eq` `{:?}`", goal }
1083         }
1084
1085         /// Do not call this query directly: part of the `Subtype` type-op
1086         query type_op_subtype(
1087             goal: CanonicalTypeOpSubtypeGoal<'tcx>
1088         ) -> Result<
1089             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
1090             NoSolution,
1091         > {
1092             no_force
1093             desc { "evaluating `type_op_subtype` `{:?}`", goal }
1094         }
1095
1096         /// Do not call this query directly: part of the `ProvePredicate` type-op
1097         query type_op_prove_predicate(
1098             goal: CanonicalTypeOpProvePredicateGoal<'tcx>
1099         ) -> Result<
1100             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
1101             NoSolution,
1102         > {
1103             no_force
1104             desc { "evaluating `type_op_prove_predicate` `{:?}`", goal }
1105         }
1106
1107         /// Do not call this query directly: part of the `Normalize` type-op
1108         query type_op_normalize_ty(
1109             goal: CanonicalTypeOpNormalizeGoal<'tcx, Ty<'tcx>>
1110         ) -> Result<
1111             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, Ty<'tcx>>>,
1112             NoSolution,
1113         > {
1114             no_force
1115             desc { "normalizing `{:?}`", goal }
1116         }
1117
1118         /// Do not call this query directly: part of the `Normalize` type-op
1119         query type_op_normalize_predicate(
1120             goal: CanonicalTypeOpNormalizeGoal<'tcx, ty::Predicate<'tcx>>
1121         ) -> Result<
1122             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ty::Predicate<'tcx>>>,
1123             NoSolution,
1124         > {
1125             no_force
1126             desc { "normalizing `{:?}`", goal }
1127         }
1128
1129         /// Do not call this query directly: part of the `Normalize` type-op
1130         query type_op_normalize_poly_fn_sig(
1131             goal: CanonicalTypeOpNormalizeGoal<'tcx, ty::PolyFnSig<'tcx>>
1132         ) -> Result<
1133             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ty::PolyFnSig<'tcx>>>,
1134             NoSolution,
1135         > {
1136             no_force
1137             desc { "normalizing `{:?}`", goal }
1138         }
1139
1140         /// Do not call this query directly: part of the `Normalize` type-op
1141         query type_op_normalize_fn_sig(
1142             goal: CanonicalTypeOpNormalizeGoal<'tcx, ty::FnSig<'tcx>>
1143         ) -> Result<
1144             &'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ty::FnSig<'tcx>>>,
1145             NoSolution,
1146         > {
1147             no_force
1148             desc { "normalizing `{:?}`", goal }
1149         }
1150
1151         query substitute_normalize_and_test_predicates(key: (DefId, SubstsRef<'tcx>, traits::TraitQueryMode)) -> bool {
1152             no_force
1153             desc { |tcx|
1154                 "testing substituted normalized predicates in mode {:?}:`{}`",
1155                 key.2, tcx.def_path_str(key.0)
1156             }
1157         }
1158
1159         query method_autoderef_steps(
1160             goal: CanonicalTyGoal<'tcx>
1161         ) -> MethodAutoderefStepsResult<'tcx> {
1162             no_force
1163             desc { "computing autoderef types for `{:?}`", goal }
1164         }
1165     }
1166
1167     Other {
1168         query target_features_whitelist(_: CrateNum) -> &'tcx FxHashMap<String, Option<Symbol>> {
1169             eval_always
1170             desc { "looking up the whitelist of target features" }
1171         }
1172
1173         // Get an estimate of the size of an InstanceDef based on its MIR for CGU partitioning.
1174         query instance_def_size_estimate(def: ty::InstanceDef<'tcx>)
1175             -> usize {
1176             no_force
1177             desc { |tcx| "estimating size for `{}`", tcx.def_path_str(def.def_id()) }
1178         }
1179
1180         query features_query(_: CrateNum) -> &'tcx rustc_feature::Features {
1181             eval_always
1182             desc { "looking up enabled feature gates" }
1183         }
1184     }
1185 }