Skip to content

Commit 780dfb8

Browse files
committed
Outline default query and hook provider function implementations
1 parent ad18fe0 commit 780dfb8

File tree

2 files changed

+28
-23
lines changed

2 files changed

+28
-23
lines changed

compiler/rustc_middle/src/hooks/mod.rs

+8-7
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,7 @@ macro_rules! declare_hooks {
4747
impl Default for Providers {
4848
fn default() -> Self {
4949
Providers {
50-
$($name: |_, $($arg,)*| bug!(
51-
"`tcx.{}{:?}` cannot be called as `{}` was never assigned to a provider function.\n",
52-
stringify!($name),
53-
($($arg,)*),
54-
stringify!($name),
55-
),)*
50+
$($name: |_, $($arg,)*| default_hook(stringify!($name), &($($arg,)*))),*
5651
}
5752
}
5853
}
@@ -84,7 +79,6 @@ declare_hooks! {
8479
/// via `mir_built`
8580
hook build_mir(key: LocalDefId) -> mir::Body<'tcx>;
8681

87-
8882
/// Imports all `SourceFile`s from the given crate into the current session.
8983
/// This normally happens automatically when we decode a `Span` from
9084
/// that crate's metadata - however, the incr comp cache needs
@@ -103,3 +97,10 @@ declare_hooks! {
10397
/// Will fetch a DefId from a DefPathHash for a foreign crate.
10498
hook def_path_hash_to_def_id_extern(hash: DefPathHash, stable_crate_id: StableCrateId) -> DefId;
10599
}
100+
101+
#[cold]
102+
fn default_hook(name: &str, args: &dyn std::fmt::Debug) -> ! {
103+
bug!(
104+
"`tcx.{name}{args:?}` cannot be called as `{name}` was never assigned to a provider function"
105+
)
106+
}

compiler/rustc_middle/src/query/plumbing.rs

+20-16
Original file line numberDiff line numberDiff line change
@@ -266,13 +266,7 @@ macro_rules! separate_provide_extern_default {
266266
()
267267
};
268268
([(separate_provide_extern) $($rest:tt)*][$name:ident]) => {
269-
|_, key| bug!(
270-
"`tcx.{}({:?})` unsupported by its crate; \
271-
perhaps the `{}` query was never assigned a provider function",
272-
stringify!($name),
273-
key,
274-
stringify!($name),
275-
)
269+
|_, key| $crate::query::plumbing::default_extern_query(stringify!($name), &key)
276270
};
277271
([$other:tt $($modifiers:tt)*][$($args:tt)*]) => {
278272
separate_provide_extern_default!([$($modifiers)*][$($args)*])
@@ -462,15 +456,7 @@ macro_rules! define_callbacks {
462456
impl Default for Providers {
463457
fn default() -> Self {
464458
Providers {
465-
$($name: |_, key| bug!(
466-
"`tcx.{}({:?})` is not supported for this key;\n\
467-
hint: Queries can be either made to the local crate, or the external crate. \
468-
This error means you tried to use it for one that's not supported.\n\
469-
If that's not the case, {} was likely never assigned to a provider function.\n",
470-
stringify!($name),
471-
key,
472-
stringify!($name),
473-
),)*
459+
$($name: |_, key| $crate::query::plumbing::default_query(stringify!($name), &key)),*
474460
}
475461
}
476462
}
@@ -661,3 +647,21 @@ use super::erase::EraseType;
661647

662648
#[derive(Copy, Clone, Debug, HashStable)]
663649
pub struct CyclePlaceholder(pub ErrorGuaranteed);
650+
651+
#[cold]
652+
pub(crate) fn default_query(name: &str, key: &dyn std::fmt::Debug) -> ! {
653+
bug!(
654+
"`tcx.{name}({key:?})` is not supported for this key;\n\
655+
hint: Queries can be either made to the local crate, or the external crate. \
656+
This error means you tried to use it for one that's not supported.\n\
657+
If that's not the case, {name} was likely never assigned to a provider function.\n",
658+
)
659+
}
660+
661+
#[cold]
662+
pub(crate) fn default_extern_query(name: &str, key: &dyn std::fmt::Debug) -> ! {
663+
bug!(
664+
"`tcx.{name}({key:?})` unsupported by its crate; \
665+
perhaps the `{name}` query was never assigned a provider function",
666+
)
667+
}

0 commit comments

Comments
 (0)