summaryrefslogtreecommitdiff
path: root/utils/TableGen/InstrInfoEmitter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-03 21:57:51 +0000
committerChris Lattner <sabre@nondot.org>2003-08-03 21:57:51 +0000
commita3ae6143c1ec9c39a7beb07960f89edd4736b018 (patch)
tree28bf202bd7bac14f342bcb455e5bcc30cbb446aa /utils/TableGen/InstrInfoEmitter.cpp
parent8d44ba8c5c2d66425caecb679727fe109d7e578d (diff)
downloadllvm-a3ae6143c1ec9c39a7beb07960f89edd4736b018.tar.gz
llvm-a3ae6143c1ec9c39a7beb07960f89edd4736b018.tar.bz2
llvm-a3ae6143c1ec9c39a7beb07960f89edd4736b018.tar.xz
Finish the instruction info emitter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7543 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/InstrInfoEmitter.cpp')
-rw-r--r--utils/TableGen/InstrInfoEmitter.cpp128
1 files changed, 121 insertions, 7 deletions
diff --git a/utils/TableGen/InstrInfoEmitter.cpp b/utils/TableGen/InstrInfoEmitter.cpp
index cc2d74fa8d..761bdeef0c 100644
--- a/utils/TableGen/InstrInfoEmitter.cpp
+++ b/utils/TableGen/InstrInfoEmitter.cpp
@@ -44,22 +44,136 @@ void InstrInfoEmitter::runEnums(std::ostream &OS) {
OS << "namespace " << Namespace << " {\n";
OS << " enum {\n";
- // We must emit the PHI and NOOP opcodes first...
+ // We must emit the PHI opcode first...
Record *Target = getTarget(Records);
Record *InstrInfo = Target->getValueAsDef("InstructionSet");
-
Record *PHI = InstrInfo->getValueAsDef("PHIInst");
- Record *NOOP = InstrInfo->getValueAsDef("NOOPInst");
- OS << " " << PHI->getName() << ", \t// 0 (fixed for all targets)\n"
- << " " << NOOP->getName() << ", \t// 1 (fixed for all targets)\n";
+ OS << " " << PHI->getName() << ", \t// 0 (fixed for all targets)\n";
// Print out the rest of the instructions now...
for (unsigned i = 0, e = Insts.size(); i != e; ++i)
- if (Insts[i] != PHI && Insts[i] != NOOP)
- OS << " " << Insts[i]->getName() << ", \t// " << i+2 << "\n";
+ if (Insts[i] != PHI)
+ OS << " " << Insts[i]->getName() << ", \t// " << i+1 << "\n";
OS << " };\n";
if (!Namespace.empty())
OS << "}\n";
}
+
+static void printDefList(ListInit *LI, const std::string &Name,
+ std::ostream &OS) {
+ OS << "static const unsigned " << Name << "[] = { ";
+ for (unsigned j = 0, e = LI->getSize(); j != e; ++j)
+ if (DefInit *DI = dynamic_cast<DefInit*>(LI->getElement(j)))
+ OS << getQualifiedName(DI->getDef()) << ", ";
+ else
+ throw "Illegal value in '" + Name + "' list!";
+ OS << "0 };\n";
+}
+
+
+// run - Emit the main instruction description records for the target...
+void InstrInfoEmitter::run(std::ostream &OS) {
+ EmitSourceHeader("Target Instruction Descriptors", OS);
+ Record *Target = getTarget(Records);
+ const std::string &TargetName = Target->getName();
+ Record *InstrInfo = Target->getValueAsDef("InstructionSet");
+ Record *PHI = InstrInfo->getValueAsDef("PHIInst");
+
+ std::vector<Record*> Instructions =
+ Records.getAllDerivedDefinitions("Instruction");
+
+ // Emit all of the instruction's implicit uses and defs...
+ for (unsigned i = 0, e = Instructions.size(); i != e; ++i) {
+ Record *Inst = Instructions[i];
+ ListInit *LI = Inst->getValueAsListInit("Uses");
+ if (LI->getSize()) printDefList(LI, Inst->getName()+"ImpUses", OS);
+ LI = Inst->getValueAsListInit("Defs");
+ if (LI->getSize()) printDefList(LI, Inst->getName()+"ImpDefs", OS);
+ }
+
+ OS << "\nstatic const TargetInstrDescriptor " << TargetName
+ << "Insts[] = {\n";
+ emitRecord(PHI, 0, InstrInfo, OS);
+
+ for (unsigned i = 0, e = Instructions.size(); i != e; ++i)
+ if (Instructions[i] != PHI)
+ emitRecord(Instructions[i], i+1, InstrInfo, OS);
+ OS << "};\n";
+}
+
+void InstrInfoEmitter::emitRecord(Record *R, unsigned Num, Record *InstrInfo,
+ std::ostream &OS) {
+ OS << " { \"" << R->getValueAsString("Name")
+ << "\",\t-1, -1, 0, false, 0, 0, 0, 0";
+
+ // Emit all of the target indepedent flags...
+ if (R->getValueAsBit("isReturn")) OS << "|M_RET_FLAG";
+ if (R->getValueAsBit("isBranch")) OS << "|M_BRANCH_FLAG";
+ if (R->getValueAsBit("isCall" )) OS << "|M_CALL_FLAG";
+ if (R->getValueAsBit("isTwoAddress")) OS << "|M_2_ADDR_FLAG";
+ if (R->getValueAsBit("isTerminator")) OS << "|M_TERMINATOR_FLAG";
+ OS << ", 0";
+
+ // Emit all of the target-specific flags...
+ ListInit *LI = InstrInfo->getValueAsListInit("TSFlagsFields");
+ ListInit *Shift = InstrInfo->getValueAsListInit("TSFlagsShifts");
+ if (LI->getSize() != Shift->getSize())
+ throw "Lengths of " + InstrInfo->getName() +
+ ":(TargetInfoFields, TargetInfoPositions) must be equal!";
+
+ for (unsigned i = 0, e = LI->getSize(); i != e; ++i)
+ emitShiftedValue(R, dynamic_cast<StringInit*>(LI->getElement(i)),
+ dynamic_cast<IntInit*>(Shift->getElement(i)), OS);
+
+ OS << ", ";
+
+ // Emit the implicit uses and defs lists...
+ LI = R->getValueAsListInit("Uses");
+ if (!LI->getSize())
+ OS << "0, ";
+ else
+ OS << R->getName() << "ImpUses, ";
+
+ LI = R->getValueAsListInit("Defs");
+ if (!LI->getSize())
+ OS << "0 ";
+ else
+ OS << R->getName() << "ImpDefs ";
+
+ OS << " }, // Inst #" << Num << " = " << R->getName() << "\n";
+}
+
+void InstrInfoEmitter::emitShiftedValue(Record *R, StringInit *Val,
+ IntInit *ShiftInt, std::ostream &OS) {
+ if (Val == 0 || ShiftInt == 0)
+ throw std::string("Illegal value or shift amount in TargetInfo*!");
+ RecordVal *RV = R->getValue(Val->getValue());
+ int Shift = ShiftInt->getValue();
+
+ if (RV == 0 || RV->getValue() == 0)
+ throw R->getName() + " doesn't have a field named '" + Val->getValue()+"'!";
+
+ Init *Value = RV->getValue();
+ if (BitInit *BI = dynamic_cast<BitInit*>(Value)) {
+ if (BI->getValue()) OS << "|(1<<" << Shift << ")";
+ return;
+ } else if (BitsInit *BI = dynamic_cast<BitsInit*>(Value)) {
+ // Convert the Bits to an integer to print...
+ Init *I = BI->convertInitializerTo(new IntRecTy());
+ if (I)
+ if (IntInit *II = dynamic_cast<IntInit*>(I)) {
+ if (II->getValue())
+ OS << "|(" << II->getValue() << "<<" << Shift << ")";
+ return;
+ }
+
+ } else if (IntInit *II = dynamic_cast<IntInit*>(Value)) {
+ if (II->getValue()) OS << "|(" << II->getValue() << "<<" << Shift << ")";
+ return;
+ }
+
+ std::cerr << "Unhandled initializer: " << *Val << "\n";
+ throw "In record '" + R->getName() + "' for TSFlag emission.";
+}