207 lines
4.9 KiB
Rust
Raw Normal View History

2017-09-18 05:40:13 -04:00
// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//! Defines the set of legal keys that can be used in queries.
2018-06-11 10:33:37 -04:00
use infer::canonical::Canonical;
2017-09-18 05:40:13 -04:00
use hir::def_id::{CrateNum, DefId, LOCAL_CRATE, DefIndex};
use ty::{self, Ty, TyCtxt};
use ty::subst::Substs;
use ty::fast_reject::SimplifiedType;
2018-01-16 09:24:38 +01:00
use mir;
2017-09-18 05:40:13 -04:00
use std::fmt::Debug;
use std::hash::Hash;
use syntax_pos::{Span, DUMMY_SP};
use syntax_pos::symbol::InternedString;
/// The `Key` trait controls what types can legally be used as the key
/// for a query.
2018-06-13 16:44:43 +03:00
pub(super) trait Key: Clone + Hash + Eq + Debug {
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?
fn default_span(&self, tcx: TyCtxt) -> Span;
}
impl<'tcx> Key for ty::InstanceDef<'tcx> {
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
LOCAL_CRATE
}
fn default_span(&self, tcx: TyCtxt) -> Span {
tcx.def_span(self.def_id())
}
}
impl<'tcx> Key for ty::Instance<'tcx> {
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
LOCAL_CRATE
}
fn default_span(&self, tcx: TyCtxt) -> Span {
tcx.def_span(self.def_id())
}
}
2018-01-02 23:22:09 +00:00
impl<'tcx> Key for mir::interpret::GlobalId<'tcx> {
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
}
fn default_span(&self, tcx: TyCtxt) -> Span {
self.instance.default_span(tcx)
}
}
2017-09-18 05:40:13 -04:00
impl Key for CrateNum {
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
*self
}
fn default_span(&self, _: TyCtxt) -> Span {
DUMMY_SP
}
}
impl Key for DefIndex {
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
LOCAL_CRATE
}
fn default_span(&self, _tcx: TyCtxt) -> Span {
DUMMY_SP
}
}
impl Key for DefId {
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
self.krate
}
fn default_span(&self, tcx: TyCtxt) -> Span {
tcx.def_span(*self)
}
}
impl Key for (DefId, DefId) {
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
self.0.krate
}
fn default_span(&self, tcx: TyCtxt) -> Span {
self.1.default_span(tcx)
}
}
impl Key for (CrateNum, DefId) {
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
self.0
}
fn default_span(&self, tcx: TyCtxt) -> Span {
self.1.default_span(tcx)
}
}
impl Key for (DefId, SimplifiedType) {
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
self.0.krate
}
fn default_span(&self, tcx: TyCtxt) -> Span {
self.0.default_span(tcx)
}
}
impl<'tcx> Key for (DefId, &'tcx Substs<'tcx>) {
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
self.0.krate
}
fn default_span(&self, tcx: TyCtxt) -> Span {
self.0.default_span(tcx)
}
}
impl<'tcx> Key for (ty::ParamEnv<'tcx>, ty::PolyTraitRef<'tcx>) {
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
self.1.def_id().krate
}
fn default_span(&self, tcx: TyCtxt) -> Span {
tcx.def_span(self.1.def_id())
}
}
impl<'tcx> Key for ty::PolyTraitRef<'tcx>{
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
self.def_id().krate
}
fn default_span(&self, tcx: TyCtxt) -> Span {
tcx.def_span(self.def_id())
}
}
2018-06-25 20:53:02 +02:00
impl<'tcx> Key for &'tcx ty::Const<'tcx> {
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
LOCAL_CRATE
}
fn default_span(&self, _: TyCtxt) -> Span {
DUMMY_SP
}
}
2017-09-18 05:40:13 -04:00
impl<'tcx> Key for Ty<'tcx> {
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
LOCAL_CRATE
}
fn default_span(&self, _: TyCtxt) -> Span {
DUMMY_SP
}
}
impl<'tcx> Key for ty::ParamEnv<'tcx> {
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
LOCAL_CRATE
}
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> {
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
}
fn default_span(&self, tcx: TyCtxt) -> Span {
self.value.default_span(tcx)
}
}
impl Key for InternedString {
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
2017-09-18 05:40:13 -04:00
LOCAL_CRATE
}
fn default_span(&self, _tcx: TyCtxt) -> Span {
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>
where
T: Debug + Hash + Clone + Eq,
{
2018-06-13 16:44:43 +03:00
fn query_crate(&self) -> CrateNum {
LOCAL_CRATE
}
fn default_span(&self, _tcx: TyCtxt) -> Span {
DUMMY_SP
}
}