mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-17 01:13:11 +00:00
Rollup merge of #125903 - petrochenkov:upctxt3, r=nnethercote
rustc_span: Inline some hot functions Found while benchmarking https://github.com/rust-lang/rust/pull/125829.
This commit is contained in:
commit
009613802d
@ -216,6 +216,7 @@ impl Span {
|
||||
|
||||
// Returns either syntactic context, if it can be retrieved without taking the interner lock,
|
||||
// or an index into the interner if it cannot.
|
||||
#[inline]
|
||||
fn inline_ctxt(self) -> Result<SyntaxContext, usize> {
|
||||
Ok(if self.len_with_tag_or_marker != BASE_LEN_INTERNED_MARKER {
|
||||
if self.len_with_tag_or_marker & PARENT_TAG == 0 {
|
||||
|
@ -2213,6 +2213,7 @@ impl fmt::Display for IdentPrinter {
|
||||
pub struct MacroRulesNormalizedIdent(Ident);
|
||||
|
||||
impl MacroRulesNormalizedIdent {
|
||||
#[inline]
|
||||
pub fn new(ident: Ident) -> Self {
|
||||
Self(ident.normalize_to_macro_rules())
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user