Skip to content

Commit 026d8ce

Browse files
committed
Auto merge of #94066 - Mark-Simulacrum:factor-out-simple-def-kind, r=davidtwco
Remove SimpleDefKind Now that rustc_query_system depends on rustc_hir, we can just directly make use of the regular DefKind.
2 parents 45e2c28 + ddda851 commit 026d8ce

File tree

5 files changed

+14
-62
lines changed

5 files changed

+14
-62
lines changed

compiler/rustc_query_impl/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ pub use on_disk_cache::OnDiskCache;
4444
mod profiling_support;
4545
pub use self::profiling_support::alloc_self_profile_query_strings;
4646

47-
mod util;
48-
4947
fn describe_as_module(def_id: LocalDefId, tcx: TyCtxt<'_>) -> String {
5048
if def_id.is_top_level_module() {
5149
"top-level module".to_string()

compiler/rustc_query_impl/src/plumbing.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -290,13 +290,11 @@ macro_rules! define_queries {
290290
} else {
291291
Some(key.default_span(*tcx))
292292
};
293-
let def_id = key.key_as_def_id();
294-
let def_kind = def_id
293+
// Use `tcx.hir().opt_def_kind()` to reduce the chance of
294+
// accidentally triggering an infinite query loop.
295+
let def_kind = key.key_as_def_id()
295296
.and_then(|def_id| def_id.as_local())
296-
// Use `tcx.hir().opt_def_kind()` to reduce the chance of
297-
// accidentally triggering an infinite query loop.
298-
.and_then(|def_id| tcx.hir().opt_def_kind(def_id))
299-
.map(|def_kind| $crate::util::def_kind_to_simple_def_kind(def_kind));
297+
.and_then(|def_id| tcx.hir().opt_def_kind(def_id));
300298
let hash = || {
301299
let mut hcx = tcx.create_stable_hashing_context();
302300
let mut hasher = StableHasher::new();

compiler/rustc_query_impl/src/util.rs

-18
This file was deleted.

compiler/rustc_query_system/src/query/job.rs

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use crate::dep_graph::DepContext;
22
use crate::query::plumbing::CycleError;
3-
use crate::query::{QueryContext, QueryStackFrame, SimpleDefKind};
3+
use crate::query::{QueryContext, QueryStackFrame};
4+
use rustc_hir::def::DefKind;
45

56
use rustc_data_structures::fx::FxHashMap;
67
use rustc_errors::{struct_span_err, Diagnostic, DiagnosticBuilder, Handler, Level};
@@ -556,15 +557,13 @@ pub(crate) fn report_cycle<'a>(
556557
}
557558

558559
if stack.iter().all(|entry| {
559-
entry.query.def_kind.map_or(false, |def_kind| {
560-
matches!(def_kind, SimpleDefKind::TyAlias | SimpleDefKind::TraitAlias)
561-
})
560+
entry
561+
.query
562+
.def_kind
563+
.map_or(false, |def_kind| matches!(def_kind, DefKind::TyAlias | DefKind::TraitAlias))
562564
}) {
563565
if stack.iter().all(|entry| {
564-
entry
565-
.query
566-
.def_kind
567-
.map_or(false, |def_kind| matches!(def_kind, SimpleDefKind::TyAlias))
566+
entry.query.def_kind.map_or(false, |def_kind| matches!(def_kind, DefKind::TyAlias))
568567
}) {
569568
err.note("type aliases cannot be recursive");
570569
err.help("consider using a struct, enum, or union instead to break the cycle");

compiler/rustc_query_system/src/query/mod.rs

+3-28
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ use crate::dep_graph::{DepNodeIndex, HasDepContext, SerializedDepNodeIndex};
1919
use rustc_data_structures::sync::Lock;
2020
use rustc_data_structures::thin_vec::ThinVec;
2121
use rustc_errors::Diagnostic;
22+
use rustc_hir::def::DefKind;
2223
use rustc_span::Span;
2324

2425
/// Description of a frame in the query stack.
@@ -29,46 +30,20 @@ pub struct QueryStackFrame {
2930
pub name: &'static str,
3031
pub description: String,
3132
span: Option<Span>,
32-
/// The `DefKind` this query frame is associated with, if applicable.
33-
///
34-
/// We can't use `rustc_hir::def::DefKind` because `rustc_hir` is not
35-
/// available in `rustc_query_system`. Instead, we have a simplified
36-
/// custom version of it, called [`SimpleDefKind`].
37-
def_kind: Option<SimpleDefKind>,
33+
def_kind: Option<DefKind>,
3834
/// This hash is used to deterministically pick
3935
/// a query to remove cycles in the parallel compiler.
4036
#[cfg(parallel_compiler)]
4137
hash: u64,
4238
}
4339

44-
/// A simplified version of `rustc_hir::def::DefKind`.
45-
///
46-
/// It was added to help improve cycle errors caused by recursive type aliases.
47-
/// As of August 2021, `rustc_query_system` cannot depend on `rustc_hir`
48-
/// because it would create a dependency cycle. So, instead, a simplified
49-
/// version of `DefKind` was added to `rustc_query_system`.
50-
///
51-
/// `DefKind`s are converted to `SimpleDefKind`s in `rustc_query_impl`.
52-
#[derive(Debug, Copy, Clone)]
53-
pub enum SimpleDefKind {
54-
Struct,
55-
Enum,
56-
Union,
57-
Trait,
58-
TyAlias,
59-
TraitAlias,
60-
61-
// FIXME: add more from `rustc_hir::def::DefKind` and then remove `Other`
62-
Other,
63-
}
64-
6540
impl QueryStackFrame {
6641
#[inline]
6742
pub fn new(
6843
name: &'static str,
6944
description: String,
7045
span: Option<Span>,
71-
def_kind: Option<SimpleDefKind>,
46+
def_kind: Option<DefKind>,
7247
_hash: impl FnOnce() -> u64,
7348
) -> Self {
7449
Self {

0 commit comments

Comments
 (0)