X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FVMCore%2FInlineAsm.cpp;h=524e294ab75f5b5a7efe3b1663413f0b4426246e;hb=2625f9b2e4388a957286063f6c7fe5406fd0ca7a;hp=e49bb6dc8fba2fca31ec2c84aa91be7a69388bd3;hpb=4ee451de366474b9c228b4e5fa573795a715216d;p=oota-llvm.git diff --git a/lib/VMCore/InlineAsm.cpp b/lib/VMCore/InlineAsm.cpp index e49bb6dc8fb..524e294ab75 100644 --- a/lib/VMCore/InlineAsm.cpp +++ b/lib/VMCore/InlineAsm.cpp @@ -57,7 +57,7 @@ bool InlineAsm::ConstraintInfo::Parse(const std::string &Str, // Initialize Type = isInput; isEarlyClobber = false; - hasMatchingInput = false; + MatchingInput = -1; isCommutative = false; isIndirect = false; @@ -127,8 +127,13 @@ bool InlineAsm::ConstraintInfo::Parse(const std::string &Str, Type != isInput) return true; // Invalid constraint number. + // If Operand N already has a matching input, reject this. An output + // can't be constrained to the same value as multiple inputs. + if (ConstraintsSoFar[N].hasMatchingInput()) + return true; + // Note that operand #n has a matching input. - ConstraintsSoFar[N].hasMatchingInput = true; + ConstraintsSoFar[N].MatchingInput = ConstraintsSoFar.size(); } else { // Single letter constraint. Codes.push_back(std::string(I, I+1)); @@ -183,15 +188,18 @@ bool InlineAsm::Verify(const FunctionType *Ty, const std::string &ConstStr) { if (Constraints.empty() && !ConstStr.empty()) return false; unsigned NumOutputs = 0, NumInputs = 0, NumClobbers = 0; + unsigned NumIndirect = 0; for (unsigned i = 0, e = Constraints.size(); i != e; ++i) { switch (Constraints[i].Type) { case InlineAsm::isOutput: + if ((NumInputs-NumIndirect) != 0 || NumClobbers != 0) + return false; // outputs before inputs and clobbers. if (!Constraints[i].isIndirect) { - if (NumInputs || NumClobbers) return false; // outputs come first. ++NumOutputs; break; } + ++NumIndirect; // FALLTHROUGH for Indirect Outputs. case InlineAsm::isInput: if (NumClobbers) return false; // inputs before clobbers. @@ -202,11 +210,20 @@ bool InlineAsm::Verify(const FunctionType *Ty, const std::string &ConstStr) { break; } } - - if (NumOutputs > 1) return false; // Only one result allowed so far. - if ((Ty->getReturnType() != Type::VoidTy) != NumOutputs) - return false; // NumOutputs = 1 iff has a result type. + switch (NumOutputs) { + case 0: + if (Ty->getReturnType() != Type::VoidTy) return false; + break; + case 1: + if (isa(Ty->getReturnType())) return false; + break; + default: + const StructType *STy = dyn_cast(Ty->getReturnType()); + if (STy == 0 || STy->getNumElements() != NumOutputs) + return false; + break; + } if (Ty->getNumParams() != NumInputs) return false; return true;