aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-11-04 01:42:59 +0000
committerChris Lattner <sabre@nondot.org>2010-11-04 01:42:59 +0000
commit567820c1e0454935ca5415ed419da63b84684cb7 (patch)
treef3b8e7f2f3e9a271ef2632582060de4fd0107921
parentea8e20696e0bc8313b9459484797614a769a5e0c (diff)
downloadexternal_llvm-567820c1e0454935ca5415ed419da63b84684cb7.zip
external_llvm-567820c1e0454935ca5415ed419da63b84684cb7.tar.gz
external_llvm-567820c1e0454935ca5415ed419da63b84684cb7.tar.bz2
replace SrcOpNum with SrcOpName, eliminating a numering dependency
on the incoming operand list. This also makes the code simpler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118225 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--utils/TableGen/AsmMatcherEmitter.cpp49
1 files changed, 23 insertions, 26 deletions
diff --git a/utils/TableGen/AsmMatcherEmitter.cpp b/utils/TableGen/AsmMatcherEmitter.cpp
index 858cfa9..b9112b9 100644
--- a/utils/TableGen/AsmMatcherEmitter.cpp
+++ b/utils/TableGen/AsmMatcherEmitter.cpp
@@ -250,10 +250,10 @@ struct MatchableInfo {
/// The unique class instance this operand should match.
ClassInfo *Class;
- /// The original operand this corresponds to.
- int SrcOpNum;
+ /// The operand name this is, if anything.
+ StringRef SrcOpName;
- explicit AsmOperand(StringRef T) : Token(T), Class(0), SrcOpNum(-1) {}
+ explicit AsmOperand(StringRef T) : Token(T), Class(0) {}
};
/// ResOperand - This represents a single operand in the result instruction
@@ -1141,7 +1141,7 @@ BuildInstructionOperandReference(MatchableInfo *II,
for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
if (Operands[i].MIOperandNo == unsigned(OITied)) {
OI = &Operands[i];
- Idx = i;
+ OperandName = OI->Name;
break;
}
}
@@ -1150,40 +1150,37 @@ BuildInstructionOperandReference(MatchableInfo *II,
}
Op.Class = getOperandClass(Token, *OI);
- Op.SrcOpNum = Idx;
+ Op.SrcOpName = OperandName;
}
void MatchableInfo::BuildResultOperands() {
- /// OperandMap - This is a mapping from the MCInst operands (specified by the
- /// II.OperandList operands) to the AsmOperands that they are filled in from.
- SmallVector<int, 16> OperandMap(TheOperandList.size(), -1);
-
- // Order the (class) operands by the order to convert them into an MCInst.
- for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
- MatchableInfo::AsmOperand &Op = AsmOperands[i];
- if (Op.SrcOpNum != -1)
- OperandMap[Op.SrcOpNum] = i;
- }
-
for (unsigned i = 0, e = TheOperandList.size(); i != e; ++i) {
const CGIOperandList::OperandInfo &OpInfo = TheOperandList[i];
+
+ // If this is a tied operand, just copy from the previously handled operand.
+ int TiedOp = OpInfo.getTiedRegister();
+ if (TiedOp != -1) {
+ ResOperands.push_back(ResOperand::getTiedOp(TiedOp, &OpInfo));
+ continue;
+ }
// Find out what operand from the asmparser that this MCInst operand comes
// from.
- int SrcOperand = OperandMap[i];
- if (SrcOperand != -1) {
+ int SrcOperand = -1;
+ for (unsigned op = 0, e = AsmOperands.size(); op != e; ++op)
+ if (OpInfo.Name == AsmOperands[op].SrcOpName) {
+ SrcOperand = op;
+ break;
+ }
+
+ if (!OpInfo.Name.empty() && SrcOperand != -1) {
ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand, &OpInfo));
continue;
}
- // Otherwise, this must be a tied operand.
- int TiedOp = OpInfo.getTiedRegister();
- if (TiedOp == -1)
- throw TGError(TheDef->getLoc(), "Instruction '" +
- TheDef->getName() + "' has operand '" + OpInfo.Name +
- "' that doesn't appear in asm string!");
-
- ResOperands.push_back(ResOperand::getTiedOp(TiedOp, &OpInfo));
+ throw TGError(TheDef->getLoc(), "Instruction '" +
+ TheDef->getName() + "' has operand '" + OpInfo.Name +
+ "' that doesn't appear in asm string!");
}
}