Skip to content

Commit 3d750e2

Browse files
committed
Shrink parser positions from usize to u32.
The number of source code bytes can't exceed a `u32`'s range, so a token position also can't. This reduces the size of `Parser` and `LazyAttrTokenStreamImpl` by eight bytes each.
1 parent f5b2896 commit 3d750e2

File tree

5 files changed

+21
-24
lines changed

5 files changed

+21
-24
lines changed

compiler/rustc_expand/src/mbe/diagnostics.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -120,21 +120,21 @@ struct CollectTrackerAndEmitter<'a, 'cx, 'matcher> {
120120

121121
struct BestFailure {
122122
token: Token,
123-
position_in_tokenstream: usize,
123+
position_in_tokenstream: u32,
124124
msg: &'static str,
125125
remaining_matcher: MatcherLoc,
126126
}
127127

128128
impl BestFailure {
129-
fn is_better_position(&self, position: usize) -> bool {
129+
fn is_better_position(&self, position: u32) -> bool {
130130
position > self.position_in_tokenstream
131131
}
132132
}
133133

134134
impl<'a, 'cx, 'matcher> Tracker<'matcher> for CollectTrackerAndEmitter<'a, 'cx, 'matcher> {
135-
type Failure = (Token, usize, &'static str);
135+
type Failure = (Token, u32, &'static str);
136136

137-
fn build_failure(tok: Token, position: usize, msg: &'static str) -> Self::Failure {
137+
fn build_failure(tok: Token, position: u32, msg: &'static str) -> Self::Failure {
138138
(tok, position, msg)
139139
}
140140

@@ -211,9 +211,9 @@ impl<'matcher> FailureForwarder<'matcher> {
211211
}
212212

213213
impl<'matcher> Tracker<'matcher> for FailureForwarder<'matcher> {
214-
type Failure = (Token, usize, &'static str);
214+
type Failure = (Token, u32, &'static str);
215215

216-
fn build_failure(tok: Token, position: usize, msg: &'static str) -> Self::Failure {
216+
fn build_failure(tok: Token, position: u32, msg: &'static str) -> Self::Failure {
217217
(tok, position, msg)
218218
}
219219

compiler/rustc_expand/src/mbe/macro_parser.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ impl TtParser {
452452
&mut self,
453453
matcher: &'matcher [MatcherLoc],
454454
token: &Token,
455-
approx_position: usize,
455+
approx_position: u32,
456456
track: &mut T,
457457
) -> Option<NamedParseResult<T::Failure>> {
458458
// Matcher positions that would be valid if the macro invocation was over now. Only

compiler/rustc_expand/src/mbe/macro_rules.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ pub(super) trait Tracker<'matcher> {
153153
/// Arm failed to match. If the token is `token::Eof`, it indicates an unexpected
154154
/// end of macro invocation. Otherwise, it indicates that no rules expected the given token.
155155
/// The usize is the approximate position of the token in the input token stream.
156-
fn build_failure(tok: Token, position: usize, msg: &'static str) -> Self::Failure;
156+
fn build_failure(tok: Token, position: u32, msg: &'static str) -> Self::Failure;
157157

158158
/// This is called before trying to match next MatcherLoc on the current token.
159159
fn before_match_loc(&mut self, _parser: &TtParser, _matcher: &'matcher MatcherLoc) {}
@@ -182,7 +182,7 @@ pub(super) struct NoopTracker;
182182
impl<'matcher> Tracker<'matcher> for NoopTracker {
183183
type Failure = ();
184184

185-
fn build_failure(_tok: Token, _position: usize, _msg: &'static str) -> Self::Failure {}
185+
fn build_failure(_tok: Token, _position: u32, _msg: &'static str) -> Self::Failure {}
186186

187187
fn description() -> &'static str {
188188
"none"

compiler/rustc_parse/src/parser/attr_wrapper.rs

+9-12
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ pub struct AttrWrapper {
2929
// The start of the outer attributes in the token cursor.
3030
// This allows us to create a `ReplaceRange` for the entire attribute
3131
// target, including outer attributes.
32-
start_pos: usize,
32+
start_pos: u32,
3333
}
3434

3535
impl AttrWrapper {
36-
pub(super) fn new(attrs: AttrVec, start_pos: usize) -> AttrWrapper {
36+
pub(super) fn new(attrs: AttrVec, start_pos: u32) -> AttrWrapper {
3737
AttrWrapper { attrs, start_pos }
3838
}
3939
pub fn empty() -> AttrWrapper {
40-
AttrWrapper { attrs: AttrVec::new(), start_pos: usize::MAX }
40+
AttrWrapper { attrs: AttrVec::new(), start_pos: u32::MAX }
4141
}
4242

4343
pub(crate) fn take_for_recovery(self, psess: &ParseSess) -> AttrVec {
@@ -91,7 +91,7 @@ fn has_cfg_or_cfg_attr(attrs: &[Attribute]) -> bool {
9191
struct LazyAttrTokenStreamImpl {
9292
start_token: (Token, Spacing),
9393
cursor_snapshot: TokenCursor,
94-
num_calls: usize,
94+
num_calls: u32,
9595
break_last_token: bool,
9696
replace_ranges: Box<[ReplaceRange]>,
9797
}
@@ -110,7 +110,7 @@ impl ToAttrTokenStream for LazyAttrTokenStreamImpl {
110110
let token = cursor_snapshot.next();
111111
(FlatToken::Token(token.0), token.1)
112112
}))
113-
.take(self.num_calls);
113+
.take(self.num_calls as usize);
114114

115115
if self.replace_ranges.is_empty() {
116116
make_token_stream(tokens, self.break_last_token)
@@ -296,12 +296,12 @@ impl<'a> Parser<'a> {
296296
);
297297

298298
let end_pos = self.num_bump_calls
299-
+ captured_trailing as usize
299+
+ captured_trailing as u32
300300
// If we 'broke' the last token (e.g. breaking a '>>' token to two '>' tokens), then
301301
// extend the range of captured tokens to include it, since the parser was not actually
302302
// bumped past it. When the `LazyAttrTokenStream` gets converted into an
303303
// `AttrTokenStream`, we will create the proper token.
304-
+ self.break_last_token as usize;
304+
+ self.break_last_token as u32;
305305

306306
let num_calls = end_pos - start_pos;
307307

@@ -313,14 +313,11 @@ impl<'a> Parser<'a> {
313313
// Grab any replace ranges that occur *inside* the current AST node.
314314
// We will perform the actual replacement when we convert the `LazyAttrTokenStream`
315315
// to an `AttrTokenStream`.
316-
let start_calls: u32 = start_pos.try_into().unwrap();
317316
self.capture_state.replace_ranges[replace_ranges_start..replace_ranges_end]
318317
.iter()
319318
.cloned()
320319
.chain(inner_attr_replace_ranges.iter().cloned())
321-
.map(|(range, tokens)| {
322-
((range.start - start_calls)..(range.end - start_calls), tokens)
323-
})
320+
.map(|(range, tokens)| ((range.start - start_pos)..(range.end - start_pos), tokens))
324321
.collect()
325322
};
326323

@@ -459,6 +456,6 @@ mod size_asserts {
459456
use rustc_data_structures::static_assert_size;
460457
// tidy-alphabetical-start
461458
static_assert_size!(AttrWrapper, 16);
462-
static_assert_size!(LazyAttrTokenStreamImpl, 104);
459+
static_assert_size!(LazyAttrTokenStreamImpl, 96);
463460
// tidy-alphabetical-end
464461
}

compiler/rustc_parse/src/parser/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ pub struct Parser<'a> {
153153
expected_tokens: Vec<TokenType>,
154154
token_cursor: TokenCursor,
155155
// The number of calls to `bump`, i.e. the position in the token stream.
156-
num_bump_calls: usize,
156+
num_bump_calls: u32,
157157
// During parsing we may sometimes need to 'unglue' a glued token into two
158158
// component tokens (e.g. '>>' into '>' and '>), so the parser can consume
159159
// them one at a time. This process bypasses the normal capturing mechanism
@@ -192,7 +192,7 @@ pub struct Parser<'a> {
192192
// This type is used a lot, e.g. it's cloned when matching many declarative macro rules with nonterminals. Make sure
193193
// it doesn't unintentionally get bigger.
194194
#[cfg(target_pointer_width = "64")]
195-
rustc_data_structures::static_assert_size!(Parser<'_>, 264);
195+
rustc_data_structures::static_assert_size!(Parser<'_>, 256);
196196

197197
/// Stores span information about a closure.
198198
#[derive(Clone, Debug)]
@@ -1572,7 +1572,7 @@ impl<'a> Parser<'a> {
15721572
self.expected_tokens.clear();
15731573
}
15741574

1575-
pub fn approx_token_stream_pos(&self) -> usize {
1575+
pub fn approx_token_stream_pos(&self) -> u32 {
15761576
self.num_bump_calls
15771577
}
15781578
}

0 commit comments

Comments
 (0)