-
Notifications
You must be signed in to change notification settings - Fork 14.4k
[RISCV] Error out on incorrectly spelt @plt on call symbols #135324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2123,22 +2123,25 @@ ParseStatus RISCVAsmParser::parseCallSymbol(OperandVector &Operands) { | |
|
||
if (getLexer().getKind() != AsmToken::Identifier) | ||
return ParseStatus::NoMatch; | ||
|
||
std::string Identifier(getTok().getIdentifier()); | ||
SMLoc E = getTok().getEndLoc(); | ||
|
||
if (getLexer().peekTok().is(AsmToken::At)) { | ||
Lex(); | ||
Lex(); | ||
StringRef PLT; | ||
SMLoc PLTLoc = getLoc(); | ||
if (getParser().parseIdentifier(PLT) || PLT != "plt") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this be case-insensitive? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not really sure. All instances in the code and tests have 'plt' in lower case only. I can maybe do There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it's fine to only accept After I replaced There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I went looking in binutils. It's only ever done |
||
return ParseStatus::Failure; | ||
return Error(PLTLoc, | ||
"'@plt' is the only valid operand for this instruction"); | ||
} else if (!getLexer().peekTok().is(AsmToken::EndOfStatement)) { | ||
// Avoid parsing the register in `call rd, foo` as a call symbol. | ||
return ParseStatus::NoMatch; | ||
} else { | ||
Lex(); | ||
} | ||
|
||
SMLoc E = SMLoc::getFromPointer(S.getPointer() + Identifier.size()); | ||
RISCVMCExpr::Specifier Kind = RISCVMCExpr::VK_CALL_PLT; | ||
|
||
MCSymbol *Sym = getContext().getOrCreateSymbol(Identifier); | ||
|
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.
Need to update
E
hereThere 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.
Copying my comment from here #135044 (comment)
Given that we parse and drop the @plt in the assembly that is being printed, shouldn't the end location be the end location of the Identifier (eg foo)?
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.
As far as I know it is supposed to be the end location of the last token parsed to create the operand. If it ever gets used, it would be for diagnostic printing with an SMRange.