summaryrefslogtreecommitdiffstats
path: root/llvm/utils/TableGen/CodeGenTarget.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-08-01 07:42:39 +0000
committerChris Lattner <sabre@nondot.org>2004-08-01 07:42:39 +0000
commit5572682faa70805397a0722850da7c3b20fcb643 (patch)
tree1ef1022556c36aa7c47c8e96216cf08e540bbf4a /llvm/utils/TableGen/CodeGenTarget.cpp
parent9520d20c8315c816ef3155e7aaffab6564e6b6cd (diff)
downloadbcm5719-llvm-5572682faa70805397a0722850da7c3b20fcb643.tar.gz
bcm5719-llvm-5572682faa70805397a0722850da7c3b20fcb643.zip
Parse the operand list of the instruction. We currently support register and immediate operands.
llvm-svn: 15390
Diffstat (limited to 'llvm/utils/TableGen/CodeGenTarget.cpp')
-rw-r--r--llvm/utils/TableGen/CodeGenTarget.cpp41
1 files changed, 36 insertions, 5 deletions
diff --git a/llvm/utils/TableGen/CodeGenTarget.cpp b/llvm/utils/TableGen/CodeGenTarget.cpp
index 422e8d0b4f2..eef6afe7b03 100644
--- a/llvm/utils/TableGen/CodeGenTarget.cpp
+++ b/llvm/utils/TableGen/CodeGenTarget.cpp
@@ -129,16 +129,47 @@ CodeGenInstruction::CodeGenInstruction(Record *R) : TheDef(R) {
isTwoAddress = R->getValueAsBit("isTwoAddress");
isTerminator = R->getValueAsBit("isTerminator");
-
- //TODO: Parse OperandList
try {
DagInit *DI = R->getValueAsDag("OperandList");
- // Cannot handle instructions with operands yet.
- if (DI->getNumArgs())
- AsmString.clear();
+ for (unsigned i = 0, e = DI->getNumArgs(); i != e; ++i)
+ if (DefInit *Arg = dynamic_cast<DefInit*>(DI->getArg(i))) {
+ Record *Rec = Arg->getDef();
+ MVT::ValueType Ty;
+ if (Rec->isSubClassOf("RegisterClass"))
+ Ty = getValueType(Rec->getValueAsDef("RegType"));
+ else if (Rec->getName() == "i8imm")
+ Ty = MVT::i8;
+ else if (Rec->getName() == "i16imm")
+ Ty = MVT::i16;
+ else if (Rec->getName() == "i32imm")
+ Ty = MVT::i32;
+ else if (Rec->getName() == "i64imm")
+ Ty = MVT::i64;
+ else
+ throw "Unknown operand class '" + Rec->getName() +
+ "' in instruction '" + R->getName() + "' instruction!";
+
+ OperandList.push_back(OperandInfo(Rec, Ty, DI->getArgName(i)));
+ } else {
+ throw "Illegal operand for the '" + R->getName() + "' instruction!";
+ }
} catch (...) {
+ // Error parsing operands list, just ignore it.
+ AsmString.clear();
+ OperandList.clear();
}
}
+
+/// getOperandNamed - Return the index of the operand with the specified
+/// non-empty name. If the instruction does not have an operand with the
+/// specified name, throw an exception.
+unsigned CodeGenInstruction::getOperandNamed(const std::string &Name) const {
+ assert(!Name.empty() && "Cannot search for operand with no name!");
+ for (unsigned i = 0, e = OperandList.size(); i != e; ++i)
+ if (OperandList[i].Name == Name) return i;
+ throw "Instruction '" + TheDef->getName() +
+ "' does not have an operand named '$" + Name + "'!";
+}
OpenPOWER on IntegriCloud