Skip to content

Commit 4239a73

Browse files
committed
Stop sorting Spans' SyntaxContext, as that is incompatible with incremental
1 parent 43a0686 commit 4239a73

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
@@ -4631,6 +4631,7 @@ dependencies = [
46314631
name = "rustc_span"
46324632
version = "0.0.0"
46334633
dependencies = [
4634+
"derivative",
46344635
"indexmap",
46354636
"itoa",
46364637
"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
@@ -42,9 +42,15 @@ use std::fmt;
4242
use std::hash::Hash;
4343

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

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

compiler/rustc_span/src/lib.rs

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

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

0 commit comments

Comments
 (0)