Skip to content

Commit 5948a7b

Browse files
authored
Rollup merge of #89046 - oli-obk:fix_oflo, r=estebank
"Fix" an overflow in byte position math r? `@estebank` help! I fixed the ICE only to brick the diagnostic. I mean, it was wrong previously (using an already expanded macro span), but it is really bad now XD
2 parents 1deef1f + c9fe093 commit 5948a7b

File tree

6 files changed

+37
-10
lines changed

6 files changed

+37
-10
lines changed

compiler/rustc_errors/src/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@
1313
#[macro_use]
1414
extern crate rustc_macros;
1515

16+
#[macro_use]
17+
extern crate tracing;
18+
1619
pub use emitter::ColorConfig;
1720

18-
use tracing::debug;
1921
use Level::*;
2022

2123
use emitter::{is_case_difference, Emitter, EmitterWriter};

compiler/rustc_parse/src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
#![feature(box_patterns)]
77
#![recursion_limit = "256"]
88

9+
#[macro_use]
10+
extern crate tracing;
11+
912
use rustc_ast as ast;
1013
use rustc_ast::token::{self, Nonterminal, Token, TokenKind};
1114
use rustc_ast::tokenstream::{self, AttributesData, CanSynthesizeMissingTokens, LazyTokenStream};

compiler/rustc_parse/src/parser/expr.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1084,6 +1084,7 @@ impl<'a> Parser<'a> {
10841084

10851085
/// If we encounter a parser state that looks like the user has written a `struct` literal with
10861086
/// parentheses instead of braces, recover the parser state and provide suggestions.
1087+
#[instrument(skip(self, seq, snapshot), level = "trace")]
10871088
fn maybe_recover_struct_lit_bad_delims(
10881089
&mut self,
10891090
lo: Span,

compiler/rustc_span/src/lib.rs

+26-6
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
#[macro_use]
2626
extern crate rustc_macros;
2727

28+
#[macro_use]
29+
extern crate tracing;
30+
2831
use rustc_data_structures::AtomicRef;
2932
use rustc_macros::HashStable_Generic;
3033
use rustc_serialize::{Decodable, Decoder, Encodable, Encoder};
@@ -782,13 +785,30 @@ impl Span {
782785
/// ^^^^^^^^^^^^^^^^^
783786
/// ```
784787
pub fn until(self, end: Span) -> Span {
785-
let span = self.data();
786-
let end = end.data();
788+
// Most of this function's body is copied from `to`.
789+
// We can't just do `self.to(end.shrink_to_lo())`,
790+
// because to also does some magic where it uses min/max so
791+
// it can handle overlapping spans. Some advanced mis-use of
792+
// `until` with different ctxts makes this visible.
793+
let span_data = self.data();
794+
let end_data = end.data();
795+
// FIXME(jseyfried): `self.ctxt` should always equal `end.ctxt` here (cf. issue #23480).
796+
// Return the macro span on its own to avoid weird diagnostic output. It is preferable to
797+
// have an incomplete span than a completely nonsensical one.
798+
if span_data.ctxt != end_data.ctxt {
799+
if span_data.ctxt == SyntaxContext::root() {
800+
return end;
801+
} else if end_data.ctxt == SyntaxContext::root() {
802+
return self;
803+
}
804+
// Both spans fall within a macro.
805+
// FIXME(estebank): check if it is the *same* macro.
806+
}
787807
Span::new(
788-
span.lo,
789-
end.lo,
790-
if end.ctxt == SyntaxContext::root() { end.ctxt } else { span.ctxt },
791-
if span.parent == end.parent { span.parent } else { None },
808+
span_data.lo,
809+
end_data.lo,
810+
if end_data.ctxt == SyntaxContext::root() { end_data.ctxt } else { span_data.ctxt },
811+
if span_data.parent == end_data.parent { span_data.parent } else { None },
792812
)
793813
}
794814

compiler/rustc_span/src/source_map.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -474,11 +474,12 @@ impl SourceMap {
474474
f.lookup_line(sp.lo()) != f.lookup_line(sp.hi())
475475
}
476476

477+
#[instrument(skip(self), level = "trace")]
477478
pub fn is_valid_span(&self, sp: Span) -> Result<(Loc, Loc), SpanLinesError> {
478479
let lo = self.lookup_char_pos(sp.lo());
479-
debug!("span_to_lines: lo={:?}", lo);
480+
trace!(?lo);
480481
let hi = self.lookup_char_pos(sp.hi());
481-
debug!("span_to_lines: hi={:?}", hi);
482+
trace!(?hi);
482483
if lo.file.start_pos != hi.file.start_pos {
483484
return Err(SpanLinesError::DistinctSources(DistinctSources {
484485
begin: (lo.file.name.clone(), lo.file.start_pos),

src/test/ui/parser/issue-44406.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ LL | bar { }
2626
help: if `bar` is a function, use the arguments directly
2727
|
2828
LL - bar(baz: $rest)
29-
LL + bar(true);
29+
LL + bar(: $rest)
3030
|
3131

3232
error: aborting due to 2 previous errors

0 commit comments

Comments
 (0)