299 lines
6.8 KiB
Rust
Raw Normal View History

2017-09-18 05:40:13 -04:00
//! Defines the set of legal keys that can be used in queries.
2019-02-05 11:20:45 -06:00
use crate::infer::canonical::Canonical;
2019-12-22 17:42:04 -05:00
use crate::mir;
2019-02-05 11:20:45 -06:00
use crate::traits;
use crate::ty::fast_reject::SimplifiedType;
use crate::ty::subst::{GenericArg, SubstsRef};
2019-12-22 17:42:04 -05:00
use crate::ty::{self, Ty, TyCtxt};
use rustc_hir::def_id::{CrateNum, DefId, LocalDefId, LOCAL_CRATE};
2020-03-19 14:24:21 +01:00
use rustc_query_system::query::DefaultCacheSelector;
use rustc_span::symbol::Symbol;
use rustc_span::{Span, DUMMY_SP};
2017-09-18 05:40:13 -04:00
/// The `Key` trait controls what types can legally be used as the key
/// for a query.
pub trait Key {
type CacheSelector;
2017-09-18 05:40:13 -04:00
/// Given an instance of this key, what crate is it referring to?
/// This is used to find the provider.
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum;
2017-09-18 05:40:13 -04:00
/// In the event that a cycle occurs, if no explicit span has been
/// given for a query with key `self`, what span should we use?
2019-06-14 00:48:52 +03:00
fn default_span(&self, tcx: TyCtxt<'_>) -> Span;
2017-09-18 05:40:13 -04:00
}
impl<'tcx> Key for ty::InstanceDef<'tcx> {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
LOCAL_CRATE
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, tcx: TyCtxt<'_>) -> Span {
2017-09-18 05:40:13 -04:00
tcx.def_span(self.def_id())
}
}
impl<'tcx> Key for ty::Instance<'tcx> {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
LOCAL_CRATE
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, tcx: TyCtxt<'_>) -> Span {
2017-09-18 05:40:13 -04:00
tcx.def_span(self.def_id())
}
}
2018-01-02 23:22:09 +00:00
impl<'tcx> Key for mir::interpret::GlobalId<'tcx> {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
self.instance.query_crate()
2018-01-02 23:22:09 +00:00
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, tcx: TyCtxt<'_>) -> Span {
2018-01-02 23:22:09 +00:00
self.instance.default_span(tcx)
}
}
impl<'tcx> Key for mir::interpret::LitToConstInput<'tcx> {
type CacheSelector = DefaultCacheSelector;
fn query_crate(&self) -> CrateNum {
LOCAL_CRATE
}
fn default_span(&self, _tcx: TyCtxt<'_>) -> Span {
DUMMY_SP
}
}
2017-09-18 05:40:13 -04:00
impl Key for CrateNum {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
*self
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, _: TyCtxt<'_>) -> Span {
2017-09-18 05:40:13 -04:00
DUMMY_SP
}
}
impl Key for LocalDefId {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
self.to_def_id().query_crate()
2017-09-18 05:40:13 -04:00
}
fn default_span(&self, tcx: TyCtxt<'_>) -> Span {
self.to_def_id().default_span(tcx)
2017-09-18 05:40:13 -04:00
}
}
impl Key for DefId {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
self.krate
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, tcx: TyCtxt<'_>) -> Span {
2017-09-18 05:40:13 -04:00
tcx.def_span(*self)
}
}
impl Key for (DefId, DefId) {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
self.0.krate
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, tcx: TyCtxt<'_>) -> Span {
2017-09-18 05:40:13 -04:00
self.1.default_span(tcx)
}
}
impl Key for (CrateNum, DefId) {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
self.0
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, tcx: TyCtxt<'_>) -> Span {
2017-09-18 05:40:13 -04:00
self.1.default_span(tcx)
}
}
impl Key for (DefId, SimplifiedType) {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
self.0.krate
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, tcx: TyCtxt<'_>) -> Span {
2017-09-18 05:40:13 -04:00
self.0.default_span(tcx)
}
}
impl<'tcx> Key for SubstsRef<'tcx> {
type CacheSelector = DefaultCacheSelector;
fn query_crate(&self) -> CrateNum {
LOCAL_CRATE
}
fn default_span(&self, _: TyCtxt<'_>) -> Span {
DUMMY_SP
}
}
2019-02-09 22:11:53 +08:00
impl<'tcx> Key for (DefId, SubstsRef<'tcx>) {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
self.0.krate
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, tcx: TyCtxt<'_>) -> Span {
2017-09-18 05:40:13 -04:00
self.0.default_span(tcx)
}
}
impl<'tcx> Key for (ty::ParamEnv<'tcx>, ty::PolyTraitRef<'tcx>) {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
self.1.def_id().krate
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, tcx: TyCtxt<'_>) -> Span {
tcx.def_span(self.1.def_id())
}
}
2019-05-24 14:58:37 -05:00
impl<'tcx> Key for (&'tcx ty::Const<'tcx>, mir::Field) {
type CacheSelector = DefaultCacheSelector;
2019-05-24 14:58:37 -05:00
fn query_crate(&self) -> CrateNum {
LOCAL_CRATE
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, _: TyCtxt<'_>) -> Span {
2019-05-24 14:58:37 -05:00
DUMMY_SP
}
}
impl<'tcx> Key for ty::PolyTraitRef<'tcx> {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
self.def_id().krate
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, tcx: TyCtxt<'_>) -> Span {
tcx.def_span(self.def_id())
}
}
impl<'tcx> Key for GenericArg<'tcx> {
type CacheSelector = DefaultCacheSelector;
fn query_crate(&self) -> CrateNum {
LOCAL_CRATE
}
fn default_span(&self, _: TyCtxt<'_>) -> Span {
DUMMY_SP
}
}
impl<'tcx> Key for &'tcx ty::Const<'tcx> {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
LOCAL_CRATE
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, _: TyCtxt<'_>) -> Span {
DUMMY_SP
}
}
2017-09-18 05:40:13 -04:00
impl<'tcx> Key for Ty<'tcx> {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
LOCAL_CRATE
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, _: TyCtxt<'_>) -> Span {
2017-09-18 05:40:13 -04:00
DUMMY_SP
}
}
impl<'tcx> Key for ty::ParamEnv<'tcx> {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
LOCAL_CRATE
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, _: TyCtxt<'_>) -> Span {
DUMMY_SP
}
}
2017-09-18 05:40:13 -04:00
impl<'tcx, T: Key> Key for ty::ParamEnvAnd<'tcx, T> {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
self.value.query_crate()
2017-09-18 05:40:13 -04:00
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, tcx: TyCtxt<'_>) -> Span {
2017-09-18 05:40:13 -04:00
self.value.default_span(tcx)
}
}
impl<'tcx> Key for traits::Environment<'tcx> {
type CacheSelector = DefaultCacheSelector;
fn query_crate(&self) -> CrateNum {
LOCAL_CRATE
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, _: TyCtxt<'_>) -> Span {
DUMMY_SP
}
}
impl Key for Symbol {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
LOCAL_CRATE
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, _tcx: TyCtxt<'_>) -> Span {
2017-09-18 05:40:13 -04:00
DUMMY_SP
}
}
2018-06-11 10:33:37 -04:00
/// Canonical query goals correspond to abstract trait operations that
/// are not tied to any crate in particular.
impl<'tcx, T> Key for Canonical<'tcx, T> {
type CacheSelector = DefaultCacheSelector;
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
LOCAL_CRATE
}
2019-06-14 00:48:52 +03:00
fn default_span(&self, _tcx: TyCtxt<'_>) -> Span {
DUMMY_SP
}
}
impl Key for (Symbol, u32, u32) {
type CacheSelector = DefaultCacheSelector;
fn query_crate(&self) -> CrateNum {
LOCAL_CRATE
}
fn default_span(&self, _tcx: TyCtxt<'_>) -> Span {
DUMMY_SP
}
}