-
Notifications
You must be signed in to change notification settings - Fork 27
Close #506: Implement preprocessor concatenation #510
base: master
Are you sure you want to change the base?
Conversation
Collected before and after tokens and passed them to a concat function
Also, I'm probably not working with |
6866968
to
1f32b12
Compare
Add active flag to HashHash so it does not get replaced indefinitely Ignore test which relies on jyn514#513 - stringify out of order
I'm assuming you'll want more tests... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So, this looks good to me, I don't see anything wrong. However I'm having doubts about how maintainable this all is ... in particular I don't know how this handles empty preprocessor arguments:
If an argument consists of no preprocessing tokens, the parameter is replaced by a placemarker preprocessing token instead.
I think currently this will give an error, which is not correct. But fixing it sounds really painful and will need lots of rearchitecting.
An idea I came up with was to reuse some of the ideas from https://github.com/eddyb/cprep/. The benefits there are:
- The algorithm is much more clear, the one in saltwater is a bit of a mess
- It runs before the lexer, which I've wanted to do for a while
- It's already written :P
What do you think about merging this as-is (with nits fixed), but eventually transitioning to using cprep
instead?
cc @eddyb
HashHashMissingParameter(bool), | ||
|
||
/// The result of '##' is not a valid token | ||
#[error("pasting formed '{0}{1}', an invalid preprocessing token")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#[error("pasting formed '{0}{1}', an invalid preprocessing token")] | |
#[error("token pasting formed '{0}{1}', an invalid preprocessing token")] |
assert_concat(r#""x""#, r#""y""#, None); | ||
assert_concat("0b1", "6", None); | ||
assert_concat("/", "/", None); // Not a comment | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
} | |
} | |
#[test] | |
fn gnu_weirdness() { | |
// #506 | |
let program = " | |
#define __GLIBC_USE(F) __GLIBC_USE_ ## F | |
# define __GLIBC_USE_IEC_60559_TYPES_EXT 1 | |
# define __GLIBC_USE_ISOC2X 1 | |
#if __GLIBC_USE (IEC_60559_BFP_EXT) || __GLIBC_USE (ISOC2X) | |
int main() {} | |
#endif | |
"; | |
assert_same(program, "int main() {}"); | |
} |
Hash, // #, used for preprocessing | ||
StructDeref, // -> | ||
Hash, // #, used for preprocessing | ||
HashHash(bool), // ##, used for preprocessing (the bool is true unless it is created by `# ## #`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not clear what the bool is where you use it in the code, might be better to say explicitly (the comment is fine though).
HashHash(bool), // ##, used for preprocessing (the bool is true unless it is created by `# ## #`) | |
HashHash { operator: bool }, // ##, used for preprocessing (the bool is true unless it is created by `# ## #`) |
StructDeref, // -> | ||
Hash, // #, used for preprocessing | ||
StructDeref, // -> | ||
Hash, // #, used for preprocessing | ||
HashHash(bool), // ##, used for preprocessing (the bool is true unless it is created by `# ## #`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: I'd mildly prefer to either have inconsistent alignment or to put the comment on the line above. Otherwise it's more work next time you need to update the comments.
match token { | ||
Ok(Locatable { | ||
data: ref succeeding_tok, | ||
.. | ||
}) if pending_hashhash.is_some() => { | ||
if matches!(succeeding_tok, Token::Whitespace(_)) { | ||
continue; | ||
} | ||
let pending_hashhash = pending_hashhash.take().unwrap(); // We just checked that it's some |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Better to write this as
match (token, pending_hashhash) {
(Ok(..), Some(hashhash)) => {
That way you don't have an extra unwrap
.
None | Some(Err(_)) => { | ||
return wrap_error(&location, CppError::HashHashMissingParameter(true)) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, in the Some(Err)
case I think we should return the original error instead of swallowing it.
@@ -439,3 +488,21 @@ fn stringify(args: Vec<Token>) -> Token { | |||
ret.trim() | |||
))])) | |||
} | |||
|
|||
fn concat(x: &Token, y: &Token, location: &Location) -> Option<Locatable<Token>> { | |||
let mut lexer = Lexer::new(location.file, format!("{}{}", x, y), false); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You said doing this means we can get rid of the LiteralParser trait, right? Do you want to do that here or in a follow-up PR?
Will close #506. So far I have collected the tokens before and after
##
and passed them to aconcat
function. Now I just need to figure out how to concatenate them.