Skip to content

Commit c440a7a

Browse files
committed
Don't use Rc in TokenTreeOrTokenTreeVec.
This avoids 800,000 allocations when compiling html5ever.
1 parent 3fd90d8 commit c440a7a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libsyntax/ext/tt/macro_parser.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ use std::collections::hash_map::Entry::{Vacant, Occupied};
105105
#[derive(Clone)]
106106
enum TokenTreeOrTokenTreeVec {
107107
Tt(tokenstream::TokenTree),
108-
TtSeq(Rc<Vec<tokenstream::TokenTree>>),
108+
TtSeq(Vec<tokenstream::TokenTree>),
109109
}
110110

111111
impl TokenTreeOrTokenTreeVec {
@@ -162,7 +162,7 @@ pub fn count_names(ms: &[TokenTree]) -> usize {
162162
})
163163
}
164164

165-
pub fn initial_matcher_pos(ms: Rc<Vec<TokenTree>>, sep: Option<Token>, lo: BytePos)
165+
pub fn initial_matcher_pos(ms: Vec<TokenTree>, sep: Option<Token>, lo: BytePos)
166166
-> Box<MatcherPos> {
167167
let match_idx_hi = count_names(&ms[..]);
168168
let matches: Vec<_> = (0..match_idx_hi).map(|_| Vec::new()).collect();
@@ -285,7 +285,7 @@ pub fn parse(sess: &ParseSess,
285285
mut rdr: TtReader,
286286
ms: &[TokenTree])
287287
-> NamedParseResult {
288-
let mut cur_eis = SmallVector::one(initial_matcher_pos(Rc::new(ms.to_owned()),
288+
let mut cur_eis = SmallVector::one(initial_matcher_pos(ms.to_owned(),
289289
None,
290290
rdr.peek().sp.lo));
291291

0 commit comments

Comments
 (0)