Introduce and use SyntaxContext::outer_expn_info()
.
It reduces two `hygiene_data` accesses to one on some hot paths.
This commit is contained in:
parent
828f6fdbe5
commit
caea42f6c8
15 changed files with 39 additions and 30 deletions
|
@ -113,7 +113,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for TyTyKind {
|
|||
.help("try using `Ty` instead")
|
||||
.emit();
|
||||
} else {
|
||||
if ty.span.ctxt().outer().expn_info().is_some() {
|
||||
if ty.span.ctxt().outer_expn_info().is_some() {
|
||||
return;
|
||||
}
|
||||
if let Some(t) = is_ty_or_ty_ctxt(cx, ty) {
|
||||
|
|
|
@ -880,7 +880,7 @@ pub fn provide(providers: &mut Providers<'_>) {
|
|||
/// This is used to test whether a lint should not even begin to figure out whether it should
|
||||
/// be reported on the current node.
|
||||
pub fn in_external_macro(sess: &Session, span: Span) -> bool {
|
||||
let info = match span.ctxt().outer().expn_info() {
|
||||
let info = match span.ctxt().outer_expn_info() {
|
||||
Some(info) => info,
|
||||
// no ExpnInfo means this span doesn't come from a macro
|
||||
None => return false,
|
||||
|
@ -908,7 +908,7 @@ pub fn in_external_macro(sess: &Session, span: Span) -> bool {
|
|||
|
||||
/// Returns whether `span` originates in a derive macro's expansion
|
||||
pub fn in_derive_expansion(span: Span) -> bool {
|
||||
let info = match span.ctxt().outer().expn_info() {
|
||||
let info = match span.ctxt().outer_expn_info() {
|
||||
Some(info) => info,
|
||||
// no ExpnInfo means this span doesn't come from a macro
|
||||
None => return false,
|
||||
|
|
|
@ -65,7 +65,7 @@ impl<'a, 'gcx, 'tcx> InferCtxt<'a, 'gcx, 'tcx> {
|
|||
format: ExpnFormat::CompilerDesugaring(_),
|
||||
def_site: Some(def_span),
|
||||
..
|
||||
}) = span.ctxt().outer().expn_info() {
|
||||
}) = span.ctxt().outer_expn_info() {
|
||||
span = def_span;
|
||||
}
|
||||
|
||||
|
|
|
@ -131,7 +131,7 @@ impl<'a, 'tcx: 'a, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
|
|||
// at the level above that.
|
||||
let mut span = source_info.span;
|
||||
while span.ctxt() != NO_EXPANSION && span.ctxt() != self.mir.span.ctxt() {
|
||||
if let Some(info) = span.ctxt().outer().expn_info() {
|
||||
if let Some(info) = span.ctxt().outer_expn_info() {
|
||||
span = info.call_site;
|
||||
} else {
|
||||
break;
|
||||
|
|
|
@ -158,7 +158,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NonShorthandFieldPatterns {
|
|||
if fieldpat.node.is_shorthand {
|
||||
continue;
|
||||
}
|
||||
if fieldpat.span.ctxt().outer().expn_info().is_some() {
|
||||
if fieldpat.span.ctxt().outer_expn_info().is_some() {
|
||||
// Don't lint if this is a macro expansion: macro authors
|
||||
// shouldn't have to worry about this kind of style issue
|
||||
// (Issue #49588)
|
||||
|
@ -1003,7 +1003,7 @@ impl UnreachablePub {
|
|||
let mut applicability = Applicability::MachineApplicable;
|
||||
match vis.node {
|
||||
hir::VisibilityKind::Public if !cx.access_levels.is_reachable(id) => {
|
||||
if span.ctxt().outer().expn_info().is_some() {
|
||||
if span.ctxt().outer_expn_info().is_some() {
|
||||
applicability = Applicability::MaybeIncorrect;
|
||||
}
|
||||
let def_span = cx.tcx.sess.source_map().def_span(span);
|
||||
|
|
|
@ -391,9 +391,8 @@ impl EarlyLintPass for UnusedParens {
|
|||
// trigger in situations that macro authors shouldn't have to care about, e.g.,
|
||||
// when a parenthesized token tree matched in one macro expansion is matched as
|
||||
// an expression in another and used as a fn/method argument (Issue #47775)
|
||||
if e.span.ctxt().outer().expn_info()
|
||||
.map_or(false, |info| info.call_site.ctxt().outer()
|
||||
.expn_info().is_some()) {
|
||||
if e.span.ctxt().outer_expn_info()
|
||||
.map_or(false, |info| info.call_site.ctxt().outer_expn_info().is_some()) {
|
||||
return;
|
||||
}
|
||||
let msg = format!("{} argument", call_kind);
|
||||
|
|
|
@ -762,7 +762,7 @@ impl<'tcx> Visitor<'tcx> for UsePlacementFinder {
|
|||
ItemKind::Use(..) => {
|
||||
// don't suggest placing a use before the prelude
|
||||
// import or other generated ones
|
||||
if item.span.ctxt().outer().expn_info().is_none() {
|
||||
if item.span.ctxt().outer_expn_info().is_none() {
|
||||
self.span = Some(item.span.shrink_to_lo());
|
||||
self.found_use = true;
|
||||
return;
|
||||
|
@ -772,7 +772,7 @@ impl<'tcx> Visitor<'tcx> for UsePlacementFinder {
|
|||
ItemKind::ExternCrate(_) => {}
|
||||
// but place them before the first other item
|
||||
_ => if self.span.map_or(true, |span| item.span < span ) {
|
||||
if item.span.ctxt().outer().expn_info().is_none() {
|
||||
if item.span.ctxt().outer_expn_info().is_none() {
|
||||
// don't insert between attributes and an item
|
||||
if item.attrs.is_empty() {
|
||||
self.span = Some(item.span.shrink_to_lo());
|
||||
|
|
|
@ -413,7 +413,7 @@ impl<'a> Resolver<'a> {
|
|||
|
||||
// Possibly apply the macro helper hack
|
||||
if kind == MacroKind::Bang && path.len() == 1 &&
|
||||
path[0].ident.span.ctxt().outer().expn_info()
|
||||
path[0].ident.span.ctxt().outer_expn_info()
|
||||
.map_or(false, |info| info.local_inner_macros) {
|
||||
let root = Ident::new(kw::DollarCrate, path[0].ident.span);
|
||||
path.insert(0, Segment::from_ident(root));
|
||||
|
|
|
@ -327,7 +327,7 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
|
|||
|
||||
// Check the `expn_info()` to see if this is a macro; if so, it's hard to
|
||||
// extract the text and make a good suggestion, so don't bother.
|
||||
let is_macro = sp.ctxt().outer().expn_info().is_some();
|
||||
let is_macro = sp.ctxt().outer_expn_info().is_some();
|
||||
|
||||
match (&expr.node, &expected.sty, &checked_ty.sty) {
|
||||
(_, &ty::Ref(_, exp, _), &ty::Ref(_, check, _)) => match (&exp.sty, &check.sty) {
|
||||
|
|
|
@ -892,7 +892,7 @@ impl<'a, 'tcx, 'gcx> hir::intravisit::Visitor<'tcx> for UsePlacementFinder<'a, '
|
|||
hir::ItemKind::Use(..) => {
|
||||
// Don't suggest placing a `use` before the prelude
|
||||
// import or other generated ones.
|
||||
if item.span.ctxt().outer().expn_info().is_none() {
|
||||
if item.span.ctxt().outer_expn_info().is_none() {
|
||||
self.span = Some(item.span.shrink_to_lo());
|
||||
self.found_use = true;
|
||||
return;
|
||||
|
@ -902,7 +902,7 @@ impl<'a, 'tcx, 'gcx> hir::intravisit::Visitor<'tcx> for UsePlacementFinder<'a, '
|
|||
hir::ItemKind::ExternCrate(_) => {}
|
||||
// ...but do place them before the first other item.
|
||||
_ => if self.span.map_or(true, |span| item.span < span ) {
|
||||
if item.span.ctxt().outer().expn_info().is_none() {
|
||||
if item.span.ctxt().outer_expn_info().is_none() {
|
||||
// Don't insert between attributes and an item.
|
||||
if item.attrs.is_empty() {
|
||||
self.span = Some(item.span.shrink_to_lo());
|
||||
|
|
|
@ -872,7 +872,7 @@ impl<'a> ExtCtxt<'a> {
|
|||
let mut ctxt = self.backtrace();
|
||||
let mut last_macro = None;
|
||||
loop {
|
||||
if ctxt.outer().expn_info().map_or(None, |info| {
|
||||
if ctxt.outer_expn_info().map_or(None, |info| {
|
||||
if info.format.name() == sym::include {
|
||||
// Stop going up the backtrace once include! is encountered
|
||||
return None;
|
||||
|
|
|
@ -30,8 +30,8 @@ use errors::SourceMapper;
|
|||
/// otherwise return the call site span up to the `enclosing_sp` by
|
||||
/// following the `expn_info` chain.
|
||||
pub fn original_sp(sp: Span, enclosing_sp: Span) -> Span {
|
||||
let call_site1 = sp.ctxt().outer().expn_info().map(|ei| ei.call_site);
|
||||
let call_site2 = enclosing_sp.ctxt().outer().expn_info().map(|ei| ei.call_site);
|
||||
let call_site1 = sp.ctxt().outer_expn_info().map(|ei| ei.call_site);
|
||||
let call_site2 = enclosing_sp.ctxt().outer_expn_info().map(|ei| ei.call_site);
|
||||
match (call_site1, call_site2) {
|
||||
(None, _) => sp,
|
||||
(Some(call_site1), Some(call_site2)) if call_site1 == call_site2 => sp,
|
||||
|
|
|
@ -680,7 +680,7 @@ impl server::Span for Rustc<'_> {
|
|||
self.sess.source_map().lookup_char_pos(span.lo()).file
|
||||
}
|
||||
fn parent(&mut self, span: Self::Span) -> Option<Self::Span> {
|
||||
span.ctxt().outer().expn_info().map(|i| i.call_site)
|
||||
span.ctxt().outer_expn_info().map(|i| i.call_site)
|
||||
}
|
||||
fn source(&mut self, span: Self::Span) -> Self::Span {
|
||||
span.source_callsite()
|
||||
|
|
|
@ -517,6 +517,16 @@ impl SyntaxContext {
|
|||
HygieneData::with(|data| data.syntax_contexts[self.0 as usize].outer_mark)
|
||||
}
|
||||
|
||||
/// `ctxt.outer_expn_info()` is equivalent to but faster than
|
||||
/// `ctxt.outer().expn_info()`.
|
||||
#[inline]
|
||||
pub fn outer_expn_info(self) -> Option<ExpnInfo> {
|
||||
HygieneData::with(|data| {
|
||||
let outer = data.syntax_contexts[self.0 as usize].outer_mark;
|
||||
data.marks[outer.0 as usize].expn_info.clone()
|
||||
})
|
||||
}
|
||||
|
||||
pub fn dollar_crate_name(self) -> Symbol {
|
||||
HygieneData::with(|data| data.syntax_contexts[self.0 as usize].dollar_crate_name)
|
||||
}
|
||||
|
|
|
@ -348,18 +348,18 @@ impl Span {
|
|||
/// Returns the source span -- this is either the supplied span, or the span for
|
||||
/// the macro callsite that expanded to it.
|
||||
pub fn source_callsite(self) -> Span {
|
||||
self.ctxt().outer().expn_info().map(|info| info.call_site.source_callsite()).unwrap_or(self)
|
||||
self.ctxt().outer_expn_info().map(|info| info.call_site.source_callsite()).unwrap_or(self)
|
||||
}
|
||||
|
||||
/// The `Span` for the tokens in the previous macro expansion from which `self` was generated,
|
||||
/// if any.
|
||||
pub fn parent(self) -> Option<Span> {
|
||||
self.ctxt().outer().expn_info().map(|i| i.call_site)
|
||||
self.ctxt().outer_expn_info().map(|i| i.call_site)
|
||||
}
|
||||
|
||||
/// Edition of the crate from which this span came.
|
||||
pub fn edition(self) -> edition::Edition {
|
||||
self.ctxt().outer().expn_info().map_or_else(|| {
|
||||
self.ctxt().outer_expn_info().map_or_else(|| {
|
||||
Edition::from_session()
|
||||
}, |einfo| einfo.edition)
|
||||
}
|
||||
|
@ -381,19 +381,19 @@ impl Span {
|
|||
/// corresponding to the source callsite.
|
||||
pub fn source_callee(self) -> Option<ExpnInfo> {
|
||||
fn source_callee(info: ExpnInfo) -> ExpnInfo {
|
||||
match info.call_site.ctxt().outer().expn_info() {
|
||||
match info.call_site.ctxt().outer_expn_info() {
|
||||
Some(info) => source_callee(info),
|
||||
None => info,
|
||||
}
|
||||
}
|
||||
self.ctxt().outer().expn_info().map(source_callee)
|
||||
self.ctxt().outer_expn_info().map(source_callee)
|
||||
}
|
||||
|
||||
/// Checks if a span is "internal" to a macro in which `#[unstable]`
|
||||
/// items can be used (that is, a macro marked with
|
||||
/// `#[allow_internal_unstable]`).
|
||||
pub fn allows_unstable(&self, feature: Symbol) -> bool {
|
||||
match self.ctxt().outer().expn_info() {
|
||||
match self.ctxt().outer_expn_info() {
|
||||
Some(info) => info
|
||||
.allow_internal_unstable
|
||||
.map_or(false, |features| features.iter().any(|&f|
|
||||
|
@ -405,7 +405,7 @@ impl Span {
|
|||
|
||||
/// Checks if this span arises from a compiler desugaring of kind `kind`.
|
||||
pub fn is_compiler_desugaring(&self, kind: CompilerDesugaringKind) -> bool {
|
||||
match self.ctxt().outer().expn_info() {
|
||||
match self.ctxt().outer_expn_info() {
|
||||
Some(info) => match info.format {
|
||||
ExpnFormat::CompilerDesugaring(k) => k == kind,
|
||||
_ => false,
|
||||
|
@ -417,7 +417,7 @@ impl Span {
|
|||
/// Returns the compiler desugaring that created this span, or `None`
|
||||
/// if this span is not from a desugaring.
|
||||
pub fn compiler_desugaring_kind(&self) -> Option<CompilerDesugaringKind> {
|
||||
match self.ctxt().outer().expn_info() {
|
||||
match self.ctxt().outer_expn_info() {
|
||||
Some(info) => match info.format {
|
||||
ExpnFormat::CompilerDesugaring(k) => Some(k),
|
||||
_ => None
|
||||
|
@ -430,7 +430,7 @@ impl Span {
|
|||
/// can be used without triggering the `unsafe_code` lint
|
||||
// (that is, a macro marked with `#[allow_internal_unsafe]`).
|
||||
pub fn allows_unsafe(&self) -> bool {
|
||||
match self.ctxt().outer().expn_info() {
|
||||
match self.ctxt().outer_expn_info() {
|
||||
Some(info) => info.allow_internal_unsafe,
|
||||
None => false,
|
||||
}
|
||||
|
@ -439,7 +439,7 @@ impl Span {
|
|||
pub fn macro_backtrace(mut self) -> Vec<MacroBacktrace> {
|
||||
let mut prev_span = DUMMY_SP;
|
||||
let mut result = vec![];
|
||||
while let Some(info) = self.ctxt().outer().expn_info() {
|
||||
while let Some(info) = self.ctxt().outer_expn_info() {
|
||||
// Don't print recursive invocations.
|
||||
if !info.call_site.source_equal(&prev_span) {
|
||||
let (pre, post) = match info.format {
|
||||
|
|
Loading…
Reference in a new issue