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
This commit is contained in:
commit
5948a7b407
6 changed files with 37 additions and 10 deletions
|
@ -13,9 +13,11 @@
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate rustc_macros;
|
extern crate rustc_macros;
|
||||||
|
|
||||||
|
#[macro_use]
|
||||||
|
extern crate tracing;
|
||||||
|
|
||||||
pub use emitter::ColorConfig;
|
pub use emitter::ColorConfig;
|
||||||
|
|
||||||
use tracing::debug;
|
|
||||||
use Level::*;
|
use Level::*;
|
||||||
|
|
||||||
use emitter::{is_case_difference, Emitter, EmitterWriter};
|
use emitter::{is_case_difference, Emitter, EmitterWriter};
|
||||||
|
|
|
@ -6,6 +6,9 @@
|
||||||
#![feature(box_patterns)]
|
#![feature(box_patterns)]
|
||||||
#![recursion_limit = "256"]
|
#![recursion_limit = "256"]
|
||||||
|
|
||||||
|
#[macro_use]
|
||||||
|
extern crate tracing;
|
||||||
|
|
||||||
use rustc_ast as ast;
|
use rustc_ast as ast;
|
||||||
use rustc_ast::token::{self, Nonterminal, Token, TokenKind};
|
use rustc_ast::token::{self, Nonterminal, Token, TokenKind};
|
||||||
use rustc_ast::tokenstream::{self, AttributesData, CanSynthesizeMissingTokens, LazyTokenStream};
|
use rustc_ast::tokenstream::{self, AttributesData, CanSynthesizeMissingTokens, LazyTokenStream};
|
||||||
|
|
|
@ -1084,6 +1084,7 @@ impl<'a> Parser<'a> {
|
||||||
|
|
||||||
/// If we encounter a parser state that looks like the user has written a `struct` literal with
|
/// If we encounter a parser state that looks like the user has written a `struct` literal with
|
||||||
/// parentheses instead of braces, recover the parser state and provide suggestions.
|
/// parentheses instead of braces, recover the parser state and provide suggestions.
|
||||||
|
#[instrument(skip(self, seq, snapshot), level = "trace")]
|
||||||
fn maybe_recover_struct_lit_bad_delims(
|
fn maybe_recover_struct_lit_bad_delims(
|
||||||
&mut self,
|
&mut self,
|
||||||
lo: Span,
|
lo: Span,
|
||||||
|
|
|
@ -25,6 +25,9 @@
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate rustc_macros;
|
extern crate rustc_macros;
|
||||||
|
|
||||||
|
#[macro_use]
|
||||||
|
extern crate tracing;
|
||||||
|
|
||||||
use rustc_data_structures::AtomicRef;
|
use rustc_data_structures::AtomicRef;
|
||||||
use rustc_macros::HashStable_Generic;
|
use rustc_macros::HashStable_Generic;
|
||||||
use rustc_serialize::{Decodable, Decoder, Encodable, Encoder};
|
use rustc_serialize::{Decodable, Decoder, Encodable, Encoder};
|
||||||
|
@ -782,13 +785,30 @@ impl Span {
|
||||||
/// ^^^^^^^^^^^^^^^^^
|
/// ^^^^^^^^^^^^^^^^^
|
||||||
/// ```
|
/// ```
|
||||||
pub fn until(self, end: Span) -> Span {
|
pub fn until(self, end: Span) -> Span {
|
||||||
let span = self.data();
|
// Most of this function's body is copied from `to`.
|
||||||
let end = end.data();
|
// We can't just do `self.to(end.shrink_to_lo())`,
|
||||||
|
// because to also does some magic where it uses min/max so
|
||||||
|
// it can handle overlapping spans. Some advanced mis-use of
|
||||||
|
// `until` with different ctxts makes this visible.
|
||||||
|
let span_data = self.data();
|
||||||
|
let end_data = end.data();
|
||||||
|
// FIXME(jseyfried): `self.ctxt` should always equal `end.ctxt` here (cf. issue #23480).
|
||||||
|
// Return the macro span on its own to avoid weird diagnostic output. It is preferable to
|
||||||
|
// have an incomplete span than a completely nonsensical one.
|
||||||
|
if span_data.ctxt != end_data.ctxt {
|
||||||
|
if span_data.ctxt == SyntaxContext::root() {
|
||||||
|
return end;
|
||||||
|
} else if end_data.ctxt == SyntaxContext::root() {
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
// Both spans fall within a macro.
|
||||||
|
// FIXME(estebank): check if it is the *same* macro.
|
||||||
|
}
|
||||||
Span::new(
|
Span::new(
|
||||||
span.lo,
|
span_data.lo,
|
||||||
end.lo,
|
end_data.lo,
|
||||||
if end.ctxt == SyntaxContext::root() { end.ctxt } else { span.ctxt },
|
if end_data.ctxt == SyntaxContext::root() { end_data.ctxt } else { span_data.ctxt },
|
||||||
if span.parent == end.parent { span.parent } else { None },
|
if span_data.parent == end_data.parent { span_data.parent } else { None },
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -474,11 +474,12 @@ impl SourceMap {
|
||||||
f.lookup_line(sp.lo()) != f.lookup_line(sp.hi())
|
f.lookup_line(sp.lo()) != f.lookup_line(sp.hi())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[instrument(skip(self), level = "trace")]
|
||||||
pub fn is_valid_span(&self, sp: Span) -> Result<(Loc, Loc), SpanLinesError> {
|
pub fn is_valid_span(&self, sp: Span) -> Result<(Loc, Loc), SpanLinesError> {
|
||||||
let lo = self.lookup_char_pos(sp.lo());
|
let lo = self.lookup_char_pos(sp.lo());
|
||||||
debug!("span_to_lines: lo={:?}", lo);
|
trace!(?lo);
|
||||||
let hi = self.lookup_char_pos(sp.hi());
|
let hi = self.lookup_char_pos(sp.hi());
|
||||||
debug!("span_to_lines: hi={:?}", hi);
|
trace!(?hi);
|
||||||
if lo.file.start_pos != hi.file.start_pos {
|
if lo.file.start_pos != hi.file.start_pos {
|
||||||
return Err(SpanLinesError::DistinctSources(DistinctSources {
|
return Err(SpanLinesError::DistinctSources(DistinctSources {
|
||||||
begin: (lo.file.name.clone(), lo.file.start_pos),
|
begin: (lo.file.name.clone(), lo.file.start_pos),
|
||||||
|
|
|
@ -26,7 +26,7 @@ LL | bar { }
|
||||||
help: if `bar` is a function, use the arguments directly
|
help: if `bar` is a function, use the arguments directly
|
||||||
|
|
|
|
||||||
LL - bar(baz: $rest)
|
LL - bar(baz: $rest)
|
||||||
LL + bar(true);
|
LL + bar(: $rest)
|
||||||
|
|
|
|
||||||
|
|
||||||
error: aborting due to 2 previous errors
|
error: aborting due to 2 previous errors
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue