[ms-inline asm] Add a size argument to the LookupInlineAsmIdentifier() callback,

which will be used by the asm matcher in the near future.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166222 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chad Rosier 2012-10-18 20:27:15 +00:00
parent 974b190717
commit 3298959540
2 changed files with 5 additions and 2 deletions

View File

@ -34,7 +34,8 @@ class Twine;
/// MCAsmParserSemaCallback - Generic Sema callback for assembly parser.
class MCAsmParserSemaCallback {
public:
virtual void *LookupInlineAsmIdentifier(StringRef Name, void *Loc) = 0;
virtual void *LookupInlineAsmIdentifier(StringRef Name, void *Loc,
unsigned &Size) = 0;
};
/// MCAsmParser - Generic assembler parser interface, for use by target specific

View File

@ -3643,7 +3643,9 @@ bool AsmParser::ParseMSInlineAsm(void *AsmLoc, std::string &AsmString,
}
// Expr/Input or Output.
void *OpDecl = SI.LookupInlineAsmIdentifier(Operand->getName(), AsmLoc);
unsigned Size;
void *OpDecl = SI.LookupInlineAsmIdentifier(Operand->getName(), AsmLoc,
Size);
if (OpDecl) {
bool isOutput = (i == 1) && Desc.mayStore();
if (isOutput) {