[PATCH] D21038: AMDGPU/AsmParser: Add support for parsing symbol operands
Tom Stellard via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 6 13:11:12 PDT 2016
tstellarAMD created this revision.
tstellarAMD added reviewers: artem.tamazov, vpykhtin, SamWot, nhaustov.
tstellarAMD added a subscriber: llvm-commits.
Herald added subscribers: kzhuravl, arsenm.
We can now reference symbols directly in operands, like this:
s_mov_b32 s0, global
http://reviews.llvm.org/D21038
Files:
lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
Index: lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
===================================================================
--- lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
+++ lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
@@ -145,7 +145,19 @@
}
}
+ StringRef getExpressionAsToken() const {
+ assert(isExpr());
+ const MCSymbolRefExpr *S = cast<MCSymbolRefExpr>(Expr);
+ return S->getSymbol().getName();
+ }
+
+
StringRef getToken() const {
+ assert(isToken());
+
+ if (Kind == Expression)
+ return getExpressionAsToken();
+
return StringRef(Tok.Data, Tok.Length);
}
@@ -156,6 +168,8 @@
void addRegOrImmOperands(MCInst &Inst, unsigned N) const {
if (isRegKind())
addRegOperands(Inst, N);
+ else if (isExpr())
+ Inst.addOperand(MCOperand::createExpr(Expr));
else
addImmOperands(Inst, N);
}
@@ -180,7 +194,17 @@
}
bool isToken() const override {
- return Kind == Token;
+ if (Kind == Token)
+ return true;
+
+ if (Kind != Expression || !Expr)
+ return false;
+
+ // When parsing operands, we can't always tell if something was meant to be
+ // a token, like 'gds', or an expression that references a global variable.
+ // In this case, we assume the string is an expression, and if we need to
+ // interpret is a token, then we treat the symbol name as the token.
+ return isa<MCSymbolRefExpr>(Expr);
}
bool isImm() const override {
@@ -316,7 +340,7 @@
}
bool isSSrc32() const {
- return isImm() || isSCSrc32();
+ return isImm() || isSCSrc32() || isExpr();
}
bool isSSrc64() const {
@@ -1311,7 +1335,20 @@
return ResTy;
if (getLexer().getKind() == AsmToken::Identifier) {
+ // If this identifier is a symbol, we want to create an expression for it.
+ // It is a little difficlut to distinguish between a symbol name, and
+ // an instruction flag like 'gds'. In order to do this, we parse
+ // all tokens as expressions and then treate the symbol name as the token
+ // string when we want to interpret the operand as a token.
const auto &Tok = Parser.getTok();
+ SMLoc S = Tok.getLoc();
+ const MCExpr *Expr = nullptr;
+ if (!Parser.parseExpression(Expr)) {
+ Operands.push_back(AMDGPUOperand::CreateExpr(Expr, S));
+ Parser.Lex();
+ return MatchOperand_Success;
+ }
+
Operands.push_back(AMDGPUOperand::CreateToken(Tok.getString(), Tok.getLoc()));
Parser.Lex();
return MatchOperand_Success;
@@ -2573,6 +2610,14 @@
return Operand.isIdxen() ? Match_Success : Match_InvalidOperand;
case MCK_offen:
return Operand.isOffen() ? Match_Success : Match_InvalidOperand;
+ case MCK_SSrc32:
+ // When operands have expression values, they will return true for isToken,
+ // because it is not possible to distinguish between a token and an
+ // expression at parse time. MatchInstructionImpl() will always try to
+ // match an operand as a token, when isToken returns true, and when the
+ // name of the expression is not a valid token, the match will fail,
+ // so we need to handle it here.
+ return Operand.isSSrc32() ? Match_Success : Match_InvalidOperand;
default: return Match_InvalidOperand;
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D21038.59771.patch
Type: text/x-patch
Size: 3262 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160606/c0d4dd70/attachment.bin>
More information about the llvm-commits
mailing list