Skip to content

Commit 25c9f2c

Browse files
committed
Auto merge of #123165 - oli-obk:no_ord_def_id3, r=cjgillot
Stop sorting `Span`s' `SyntaxContext`, as that is incompatible with incremental work towards #90317 Luckily no one actually needed these to be sorted, so it didn't even affect diagnostics. I'm guessing they'd have been sorted by creation time anyway, so it wouldn't really have mattered. r? `@cjgillot`
2 parents d40f30e + 4239a73 commit 25c9f2c

File tree

4 files changed

+17
-32
lines changed

4 files changed

+17
-32
lines changed

Cargo.lock

+1
Original file line numberDiff line numberDiff line change
@@ -4762,6 +4762,7 @@ dependencies = [
47624762
name = "rustc_span"
47634763
version = "0.0.0"
47644764
dependencies = [
4765+
"derivative",
47654766
"indexmap",
47664767
"itoa",
47674768
"md-5",

compiler/rustc_span/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8+
derivative = "2.2.0"
89
indexmap = { version = "2.0.0" }
910
itoa = "1.0"
1011
md5 = { package = "md-5", version = "0.10.0" }

compiler/rustc_span/src/hygiene.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,15 @@ use std::hash::Hash;
4343
use tracing::{debug, trace};
4444

4545
/// A `SyntaxContext` represents a chain of pairs `(ExpnId, Transparency)` named "marks".
46-
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
46+
#[derive(Clone, Copy, PartialEq, Eq, Hash)]
4747
pub struct SyntaxContext(u32);
4848

49+
// To ensure correctness of incremental compilation,
50+
// `SyntaxContext` must not implement `Ord` or `PartialOrd`.
51+
// See https://github.com/rust-lang/rust/issues/90317.
52+
impl !Ord for SyntaxContext {}
53+
impl !PartialOrd for SyntaxContext {}
54+
4955
#[derive(Debug, Encodable, Decodable, Clone)]
5056
pub struct SyntaxContextData {
5157
outer_expn: ExpnId,

compiler/rustc_span/src/lib.rs

+8-31
Original file line numberDiff line numberDiff line change
@@ -467,46 +467,23 @@ impl FileName {
467467
/// `SpanData` is public because `Span` uses a thread-local interner and can't be
468468
/// sent to other threads, but some pieces of performance infra run in a separate thread.
469469
/// Using `Span` is generally preferred.
470-
#[derive(Clone, Copy, Hash, PartialEq, Eq)]
470+
#[derive(Clone, Copy, Hash, PartialEq, Eq, derivative::Derivative)]
471+
#[derivative(PartialOrd, Ord)]
471472
pub struct SpanData {
472473
pub lo: BytePos,
473474
pub hi: BytePos,
474475
/// Information about where the macro came from, if this piece of
475476
/// code was created by a macro expansion.
477+
#[derivative(PartialOrd = "ignore", Ord = "ignore")]
478+
// `SyntaxContext` does not implement `Ord`.
479+
// The other fields are enough to determine in-file order.
476480
pub ctxt: SyntaxContext,
481+
#[derivative(PartialOrd = "ignore", Ord = "ignore")]
482+
// `LocalDefId` does not implement `Ord`.
483+
// The other fields are enough to determine in-file order.
477484
pub parent: Option<LocalDefId>,
478485
}
479486

480-
// Order spans by position in the file.
481-
impl Ord for SpanData {
482-
fn cmp(&self, other: &Self) -> Ordering {
483-
let SpanData {
484-
lo: s_lo,
485-
hi: s_hi,
486-
ctxt: s_ctxt,
487-
// `LocalDefId` does not implement `Ord`.
488-
// The other fields are enough to determine in-file order.
489-
parent: _,
490-
} = self;
491-
let SpanData {
492-
lo: o_lo,
493-
hi: o_hi,
494-
ctxt: o_ctxt,
495-
// `LocalDefId` does not implement `Ord`.
496-
// The other fields are enough to determine in-file order.
497-
parent: _,
498-
} = other;
499-
500-
(s_lo, s_hi, s_ctxt).cmp(&(o_lo, o_hi, o_ctxt))
501-
}
502-
}
503-
504-
impl PartialOrd for SpanData {
505-
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
506-
Some(self.cmp(other))
507-
}
508-
}
509-
510487
impl SpanData {
511488
#[inline]
512489
pub fn span(&self) -> Span {

0 commit comments

Comments
 (0)