forked from OSchip/llvm-project
represent indirect operands explicitly in inline asm strings.
llvm-svn: 36522
This commit is contained in:
parent
acbf6a401d
commit
c48e2c3100
|
@ -85,10 +85,6 @@ 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;
|
||||||
|
|
||||||
/// isIndirectOutput - If this is true for an output constraint, the address
|
|
||||||
/// to store the output result is passed as an operand to the call.
|
|
||||||
bool isIndirectOutput;
|
|
||||||
|
|
||||||
/// hasMatchingInput - This is set to true for an output constraint iff
|
/// hasMatchingInput - This is set to true for an output constraint iff
|
||||||
/// there is an input constraint that is required to match it (e.g. "0").
|
/// there is an input constraint that is required to match it (e.g. "0").
|
||||||
bool hasMatchingInput;
|
bool hasMatchingInput;
|
||||||
|
@ -97,11 +93,17 @@ public:
|
||||||
/// with the next operand.
|
/// with the next operand.
|
||||||
bool isCommutative;
|
bool isCommutative;
|
||||||
|
|
||||||
|
/// isIndirect - True if this operand is an indirect operand. This means
|
||||||
|
/// that the address of the source or destination is present in the call
|
||||||
|
/// instruction, instead of it being returned or passed in explicitly. This
|
||||||
|
/// is represented with a '*' in the asm string.
|
||||||
|
bool isIndirect;
|
||||||
|
|
||||||
/// Code - The constraint code, either the register name (in braces) or the
|
/// Code - The constraint code, either the register name (in braces) or the
|
||||||
/// constraint letter/number.
|
/// constraint letter/number.
|
||||||
std::vector<std::string> Codes;
|
std::vector<std::string> Codes;
|
||||||
|
|
||||||
/// Parse - Analyze the specified string (e.g. "==&{eax}") and fill in the
|
/// Parse - Analyze the specified string (e.g. "=*&{eax}") and fill in the
|
||||||
/// fields in this structure. If the constraint string is not understood,
|
/// fields in this structure. If the constraint string is not understood,
|
||||||
/// return true, otherwise return false.
|
/// return true, otherwise return false.
|
||||||
bool Parse(const std::string &Str,
|
bool Parse(const std::string &Str,
|
||||||
|
|
|
@ -55,21 +55,22 @@ bool InlineAsm::ConstraintInfo::Parse(const std::string &Str,
|
||||||
// Initialize
|
// Initialize
|
||||||
Type = isInput;
|
Type = isInput;
|
||||||
isEarlyClobber = false;
|
isEarlyClobber = false;
|
||||||
isIndirectOutput = false;
|
|
||||||
hasMatchingInput = false;
|
hasMatchingInput = false;
|
||||||
isCommutative = false;
|
isCommutative = false;
|
||||||
|
isIndirect = false;
|
||||||
|
|
||||||
// Parse the prefix.
|
// Parse prefixes.
|
||||||
if (*I == '~') {
|
if (*I == '~') {
|
||||||
Type = isClobber;
|
Type = isClobber;
|
||||||
++I;
|
++I;
|
||||||
} else if (*I == '=') {
|
} else if (*I == '=') {
|
||||||
++I;
|
++I;
|
||||||
Type = isOutput;
|
Type = isOutput;
|
||||||
if (I != E && *I == '=') {
|
|
||||||
isIndirectOutput = true;
|
|
||||||
++I;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (*I == '*') {
|
||||||
|
isIndirect = true;
|
||||||
|
++I;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (I == E) return true; // Just a prefix, like "==" or "~".
|
if (I == E) return true; // Just a prefix, like "==" or "~".
|
||||||
|
@ -184,7 +185,7 @@ bool InlineAsm::Verify(const FunctionType *Ty, const std::string &ConstStr) {
|
||||||
for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
|
for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
|
||||||
switch (Constraints[i].Type) {
|
switch (Constraints[i].Type) {
|
||||||
case InlineAsm::isOutput:
|
case InlineAsm::isOutput:
|
||||||
if (!Constraints[i].isIndirectOutput) {
|
if (!Constraints[i].isIndirect) {
|
||||||
if (NumInputs || NumClobbers) return false; // outputs come first.
|
if (NumInputs || NumClobbers) return false; // outputs come first.
|
||||||
++NumOutputs;
|
++NumOutputs;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue