Keep track of *which* input constraint matches an output

constraint.  Reject asms where an output has multiple
input constraints tied to it.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57687 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-10-17 16:47:46 +00:00
parent 58f15c482a
commit 6bdcda3d3e
5 changed files with 25 additions and 14 deletions

View File

@ -79,9 +79,15 @@ public:
/// read. This is only ever set for an output operand. /// read. This is only ever set for an output operand.
bool isEarlyClobber; bool isEarlyClobber;
/// hasMatchingInput - This is set to true for an output constraint iff /// MatchingInput - If this is not -1, this is an output constraint where an
/// there is an input constraint that is required to match it (e.g. "0"). /// input constraint is required to match it (e.g. "0"). The value is the
bool hasMatchingInput; /// constraint number that matches this one (for example, if this is
/// constraint #0 and constraint #4 has the value "0", this will be 4).
signed char MatchingInput;
/// hasMatchingInput - Return true if this is an output constraint that has
/// a matching input constraint.
bool hasMatchingInput() const { return MatchingInput != -1; }
/// isCommutative - This is set to true for a constraint that is commutative /// isCommutative - This is set to true for a constraint that is commutative
/// with the next operand. /// with the next operand.

View File

@ -1197,9 +1197,9 @@ public:
/// ConstraintVT - The ValueType for the operand value. /// ConstraintVT - The ValueType for the operand value.
MVT ConstraintVT; MVT ConstraintVT;
/// isMatchingConstraint - Return true of this is an input operand that is a /// isMatchingInputConstraint - Return true of this is an input operand that
/// matching constraint like "4". /// is a matching constraint like "4".
bool isMatchingConstraint() const; bool isMatchingInputConstraint() const;
/// getMatchedOperand - If this is an input matching constraint, this method /// getMatchedOperand - If this is an input matching constraint, this method
/// returns the output operand it matches. /// returns the output operand it matches.

View File

@ -4491,7 +4491,7 @@ GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
// If there is an input constraint that matches this, we need to reserve // If there is an input constraint that matches this, we need to reserve
// the input register so no other inputs allocate to it. // the input register so no other inputs allocate to it.
isInReg = OpInfo.hasMatchingInput; isInReg = OpInfo.hasMatchingInput();
break; break;
case InlineAsm::isInput: case InlineAsm::isInput:
isInReg = true; isInReg = true;
@ -4562,7 +4562,7 @@ GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
// the constraint, so we have to pick a register to pin the input/output to. // the constraint, so we have to pick a register to pin the input/output to.
// If it isn't a matched constraint, go ahead and create vreg and let the // If it isn't a matched constraint, go ahead and create vreg and let the
// regalloc do its thing. // regalloc do its thing.
if (!OpInfo.hasMatchingInput) { if (!OpInfo.hasMatchingInput()) {
RegVT = *PhysReg.second->vt_begin(); RegVT = *PhysReg.second->vt_begin();
if (OpInfo.ConstraintVT == MVT::Other) if (OpInfo.ConstraintVT == MVT::Other)
ValueVT = RegVT; ValueVT = RegVT;
@ -4863,7 +4863,7 @@ void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
case InlineAsm::isInput: { case InlineAsm::isInput: {
SDValue InOperandVal = OpInfo.CallOperand; SDValue InOperandVal = OpInfo.CallOperand;
if (OpInfo.isMatchingConstraint()) { // Matching constraint? if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
// If this is required to match an output register we have already set, // If this is required to match an output register we have already set,
// just use its register. // just use its register.
unsigned OperandNo = OpInfo.getMatchedOperand(); unsigned OperandNo = OpInfo.getMatchedOperand();

View File

@ -1962,9 +1962,9 @@ getRegForInlineAsmConstraint(const std::string &Constraint,
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// Constraint Selection. // Constraint Selection.
/// isMatchingConstraint - Return true of this is an input operand that is a /// isMatchingInputConstraint - Return true of this is an input operand that is
/// matching constraint like "4". /// a matching constraint like "4".
bool TargetLowering::AsmOperandInfo::isMatchingConstraint() const { bool TargetLowering::AsmOperandInfo::isMatchingInputConstraint() const {
assert(!ConstraintCode.empty() && "No known constraint!"); assert(!ConstraintCode.empty() && "No known constraint!");
return isdigit(ConstraintCode[0]); return isdigit(ConstraintCode[0]);
} }

View File

@ -57,7 +57,7 @@ bool InlineAsm::ConstraintInfo::Parse(const std::string &Str,
// Initialize // Initialize
Type = isInput; Type = isInput;
isEarlyClobber = false; isEarlyClobber = false;
hasMatchingInput = false; MatchingInput = -1;
isCommutative = false; isCommutative = false;
isIndirect = false; isIndirect = false;
@ -127,8 +127,13 @@ bool InlineAsm::ConstraintInfo::Parse(const std::string &Str,
Type != isInput) Type != isInput)
return true; // Invalid constraint number. 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. // Note that operand #n has a matching input.
ConstraintsSoFar[N].hasMatchingInput = true; ConstraintsSoFar[N].MatchingInput = ConstraintsSoFar.size();
} else { } else {
// Single letter constraint. // Single letter constraint.
Codes.push_back(std::string(I, I+1)); Codes.push_back(std::string(I, I+1));