mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-15 19:24:33 +00:00
MCAsmParser: better handling for named arguments
Until this point only macro definition with named parameters were parsed but the names were ignored. This adds support for using that information for named parameter instantiation. In order to support the full semantics of the keyword arguments, the arguments are no longer lazily initialised since the keyword arguments can be specified out of order and partially if they are defaulted. Prepopulate the arguments with the default value for any defaulted parameters, and then parse the specified arguments. This simplies some of the handling of the arguments in the inner loop since empty arguments simply increment the parameter index and move on. Note that keyword and positional arguments cannot be mixed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201499 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1937,39 +1937,80 @@ bool AsmParser::parseMacroArguments(const MCAsmMacro *M,
|
||||
MCAsmMacroArguments &A) {
|
||||
const unsigned NParameters = M ? M->Parameters.size() : 0;
|
||||
|
||||
A.resize(NParameters);
|
||||
for (unsigned PI = 0; PI < NParameters; ++PI)
|
||||
if (!M->Parameters[PI].second.empty())
|
||||
A[PI] = M->Parameters[PI].second;
|
||||
|
||||
bool NamedParametersFound = false;
|
||||
|
||||
// Parse two kinds of macro invocations:
|
||||
// - macros defined without any parameters accept an arbitrary number of them
|
||||
// - macros defined with parameters accept at most that many of them
|
||||
for (unsigned Parameter = 0; !NParameters || Parameter < NParameters;
|
||||
++Parameter) {
|
||||
MCAsmMacroArgument MA;
|
||||
MCAsmMacroParameter FA;
|
||||
SMLoc L;
|
||||
|
||||
if (parseMacroArgument(MA))
|
||||
if (Lexer.is(AsmToken::Identifier) && Lexer.peekTok().is(AsmToken::Equal)) {
|
||||
L = Lexer.getLoc();
|
||||
if (parseIdentifier(FA.first)) {
|
||||
Error(L, "invalid argument identifier for formal argument");
|
||||
eatToEndOfStatement();
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!Lexer.is(AsmToken::Equal)) {
|
||||
TokError("expected '=' after formal parameter identifier");
|
||||
eatToEndOfStatement();
|
||||
return true;
|
||||
}
|
||||
Lex();
|
||||
|
||||
NamedParametersFound = true;
|
||||
}
|
||||
|
||||
if (NamedParametersFound && FA.first.empty()) {
|
||||
Error(Lexer.getLoc(), "cannot mix positional and keyword arguments");
|
||||
eatToEndOfStatement();
|
||||
return true;
|
||||
}
|
||||
|
||||
if (parseMacroArgument(FA.second))
|
||||
return true;
|
||||
|
||||
if (!MA.empty() || (!NParameters && !Lexer.is(AsmToken::EndOfStatement)))
|
||||
A.push_back(MA);
|
||||
else if (NParameters) {
|
||||
if (!M->Parameters[Parameter].second.empty())
|
||||
A.push_back(M->Parameters[Parameter].second);
|
||||
else
|
||||
A.push_back(MA);
|
||||
unsigned PI = Parameter;
|
||||
if (!FA.first.empty()) {
|
||||
unsigned FAI = 0;
|
||||
for (FAI = 0; FAI < NParameters; ++FAI)
|
||||
if (M->Parameters[FAI].first == FA.first)
|
||||
break;
|
||||
if (FAI >= NParameters) {
|
||||
Error(L,
|
||||
"parameter named '" + FA.first + "' does not exist for macro '" +
|
||||
M->Name + "'");
|
||||
return true;
|
||||
}
|
||||
PI = FAI;
|
||||
}
|
||||
|
||||
if (!FA.second.empty()) {
|
||||
if (A.size() <= PI)
|
||||
A.resize(PI + 1);
|
||||
A[PI] = FA.second;
|
||||
}
|
||||
|
||||
// At the end of the statement, fill in remaining arguments that have
|
||||
// default values. If there aren't any, then the next argument is
|
||||
// required but missing
|
||||
if (Lexer.is(AsmToken::EndOfStatement)) {
|
||||
if (NParameters && Parameter < NParameters - 1) {
|
||||
continue;
|
||||
}
|
||||
if (Lexer.is(AsmToken::EndOfStatement))
|
||||
return false;
|
||||
}
|
||||
|
||||
if (Lexer.is(AsmToken::Comma))
|
||||
Lex();
|
||||
}
|
||||
return TokError("Too many arguments");
|
||||
|
||||
return TokError("too many positional arguments");
|
||||
}
|
||||
|
||||
const MCAsmMacro *AsmParser::lookupMacro(StringRef Name) {
|
||||
|
Reference in New Issue
Block a user