summaryrefslogtreecommitdiff
path: root/lib/VMCore/InlineAsm.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-28 01:02:58 +0000
committerChris Lattner <sabre@nondot.org>2007-04-28 01:02:58 +0000
commit73d0d0d4b8b93e8101e0a0aa283f694be341da6c (patch)
treeed8d0558e67d71d4c97d860e9dcc1f89afca4cab /lib/VMCore/InlineAsm.cpp
parent9bc1464094b7b6fc9e832b6753a591158829b0a6 (diff)
downloadllvm-73d0d0d4b8b93e8101e0a0aa283f694be341da6c.tar.gz
llvm-73d0d0d4b8b93e8101e0a0aa283f694be341da6c.tar.bz2
llvm-73d0d0d4b8b93e8101e0a0aa283f694be341da6c.tar.xz
represent indirect operands explicitly in inline asm strings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36522 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/InlineAsm.cpp')
-rw-r--r--lib/VMCore/InlineAsm.cpp17
1 files changed, 9 insertions, 8 deletions
diff --git a/lib/VMCore/InlineAsm.cpp b/lib/VMCore/InlineAsm.cpp
index 5f05137459..ca4ecad058 100644
--- a/lib/VMCore/InlineAsm.cpp
+++ b/lib/VMCore/InlineAsm.cpp
@@ -55,21 +55,22 @@ bool InlineAsm::ConstraintInfo::Parse(const std::string &Str,
// Initialize
Type = isInput;
isEarlyClobber = false;
- isIndirectOutput = false;
hasMatchingInput = false;
isCommutative = false;
+ isIndirect = false;
- // Parse the prefix.
+ // Parse prefixes.
if (*I == '~') {
Type = isClobber;
++I;
} else if (*I == '=') {
++I;
Type = isOutput;
- if (I != E && *I == '=') {
- isIndirectOutput = true;
- ++I;
- }
+ }
+
+ if (*I == '*') {
+ isIndirect = true;
+ ++I;
}
if (I == E) return true; // Just a prefix, like "==" or "~".
@@ -184,12 +185,12 @@ bool InlineAsm::Verify(const FunctionType *Ty, const std::string &ConstStr) {
for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
switch (Constraints[i].Type) {
case InlineAsm::isOutput:
- if (!Constraints[i].isIndirectOutput) {
+ if (!Constraints[i].isIndirect) {
if (NumInputs || NumClobbers) return false; // outputs come first.
++NumOutputs;
break;
}
- // FALLTHROUGH for IndirectOutputs.
+ // FALLTHROUGH for Indirect Outputs.
case InlineAsm::isInput:
if (NumClobbers) return false; // inputs before clobbers.
++NumInputs;