Skip to content

Commit f45ba82

Browse files
committed
Remove SPAN_DEBUG global
The only difference between the default and rustc_interface set version is that the default accesses the source map from SESSION_GLOBALS while the rustc_interface version accesses the source map from the global TyCtxt. SESSION_GLOBALS is always set while running the compiler while the global TyCtxt is not always set. If the global TyCtxt is set, it's source map is identical to the one in SESSION_GLOBALS
1 parent 5730173 commit f45ba82

File tree

2 files changed

+13
-40
lines changed

2 files changed

+13
-40
lines changed

compiler/rustc_interface/src/callbacks.rs

+1-14
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//! `rustc_data_structures::AtomicRef` type, which allows us to setup a global
55
//! static which can then be set in this file at program startup.
66
//!
7-
//! See `SPAN_DEBUG` for an example of how to set things up.
7+
//! See `SPAN_TRACK` for an example of how to set things up.
88
//!
99
//! The functions in this file should fall back to the default set in their
1010
//! origin crate when the `TyCtxt` is not present in TLS.
@@ -13,18 +13,6 @@ use rustc_errors::{Diagnostic, TRACK_DIAGNOSTICS};
1313
use rustc_middle::ty::tls;
1414
use std::fmt;
1515

16-
/// This is a callback from `rustc_ast` as it cannot access the implicit state
17-
/// in `rustc_middle` otherwise.
18-
fn span_debug(span: rustc_span::Span, f: &mut fmt::Formatter<'_>) -> fmt::Result {
19-
tls::with_opt(|tcx| {
20-
if let Some(tcx) = tcx {
21-
rustc_span::debug_with_source_map(span, f, tcx.sess.source_map())
22-
} else {
23-
rustc_span::default_span_debug(span, f)
24-
}
25-
})
26-
}
27-
2816
fn track_span_parent(def_id: rustc_span::def_id::LocalDefId) {
2917
tls::with_opt(|tcx| {
3018
if let Some(tcx) = tcx {
@@ -65,7 +53,6 @@ fn def_id_debug(def_id: rustc_hir::def_id::DefId, f: &mut fmt::Formatter<'_>) ->
6553
/// Sets up the callbacks in prior crates which we want to refer to the
6654
/// TyCtxt in.
6755
pub fn setup_callbacks() {
68-
rustc_span::SPAN_DEBUG.swap(&(span_debug as fn(_, &mut fmt::Formatter<'_>) -> _));
6956
rustc_span::SPAN_TRACK.swap(&(track_span_parent as fn(_)));
7057
rustc_hir::def_id::DEF_ID_DEBUG.swap(&(def_id_debug as fn(_, &mut fmt::Formatter<'_>) -> _));
7158
TRACK_DIAGNOSTICS.swap(&(track_diagnostic as fn(&_)));

compiler/rustc_span/src/lib.rs

+12-26
Original file line numberDiff line numberDiff line change
@@ -1013,37 +1013,25 @@ pub fn with_source_map<T, F: FnOnce() -> T>(source_map: Lrc<SourceMap>, f: F) ->
10131013
f()
10141014
}
10151015

1016-
pub fn debug_with_source_map(
1017-
span: Span,
1018-
f: &mut fmt::Formatter<'_>,
1019-
source_map: &SourceMap,
1020-
) -> fmt::Result {
1021-
write!(f, "{} ({:?})", source_map.span_to_diagnostic_string(span), span.ctxt())
1022-
}
1023-
1024-
pub fn default_span_debug(span: Span, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1025-
with_session_globals(|session_globals| {
1026-
if let Some(source_map) = &*session_globals.source_map.borrow() {
1027-
debug_with_source_map(span, f, source_map)
1028-
} else {
1029-
f.debug_struct("Span")
1030-
.field("lo", &span.lo())
1031-
.field("hi", &span.hi())
1032-
.field("ctxt", &span.ctxt())
1033-
.finish()
1034-
}
1035-
})
1036-
}
1037-
10381016
impl fmt::Debug for Span {
10391017
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1040-
(*SPAN_DEBUG)(*self, f)
1018+
with_session_globals(|session_globals| {
1019+
if let Some(source_map) = &*session_globals.source_map.borrow() {
1020+
write!(f, "{} ({:?})", source_map.span_to_diagnostic_string(*self), self.ctxt())
1021+
} else {
1022+
f.debug_struct("Span")
1023+
.field("lo", &self.lo())
1024+
.field("hi", &self.hi())
1025+
.field("ctxt", &self.ctxt())
1026+
.finish()
1027+
}
1028+
})
10411029
}
10421030
}
10431031

10441032
impl fmt::Debug for SpanData {
10451033
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1046-
(*SPAN_DEBUG)(Span::new(self.lo, self.hi, self.ctxt, self.parent), f)
1034+
fmt::Debug::fmt(&Span::new(self.lo, self.hi, self.ctxt, self.parent), f)
10471035
}
10481036
}
10491037

@@ -2003,8 +1991,6 @@ pub struct FileLines {
20031991
pub lines: Vec<LineInfo>,
20041992
}
20051993

2006-
pub static SPAN_DEBUG: AtomicRef<fn(Span, &mut fmt::Formatter<'_>) -> fmt::Result> =
2007-
AtomicRef::new(&(default_span_debug as fn(_, &mut fmt::Formatter<'_>) -> _));
20081994
pub static SPAN_TRACK: AtomicRef<fn(LocalDefId)> = AtomicRef::new(&((|_| {}) as fn(_)));
20091995

20101996
// _____________________________________________________________________________

0 commit comments

Comments
 (0)