blob: 64629b4863c8a6e170e2115957f48790082bc604 [file] [log] [blame]
Chris Lattner33ccf7e2003-08-03 17:24:10 +00001//===- InstrInfoEmitter.cpp - Generate a Instruction Set Desc. ------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
John Criswell01d45822003-10-20 20:20:30 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
John Criswell01d45822003-10-20 20:20:30 +00008//===----------------------------------------------------------------------===//
Chris Lattner33ccf7e2003-08-03 17:24:10 +00009//
10// This tablegen backend is responsible for emitting a description of the target
11// instruction set for the code generator.
12//
13//===----------------------------------------------------------------------===//
14
15#include "InstrInfoEmitter.h"
Chris Lattner803a5f62004-08-01 04:04:35 +000016#include "CodeGenTarget.h"
Chris Lattner33ccf7e2003-08-03 17:24:10 +000017#include "Record.h"
Chris Lattner2082ebe2004-08-01 03:55:39 +000018using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000019
Chris Lattner33ccf7e2003-08-03 17:24:10 +000020// runEnums - Print out enum values for all of the instructions.
21void InstrInfoEmitter::runEnums(std::ostream &OS) {
Chris Lattnerbc017232003-08-06 04:32:07 +000022 EmitSourceFileHeader("Target Instruction Enum Values", OS);
Chris Lattner2c384132004-08-17 03:08:28 +000023 OS << "namespace llvm {\n\n";
Chris Lattner33ccf7e2003-08-03 17:24:10 +000024
Chris Lattner7884b752003-08-07 05:39:09 +000025 CodeGenTarget Target;
26
Chris Lattnera3ae6142003-08-03 21:57:51 +000027 // We must emit the PHI opcode first...
Chris Lattner7884b752003-08-07 05:39:09 +000028 Record *InstrInfo = Target.getInstructionSet();
Chris Lattner33ccf7e2003-08-03 17:24:10 +000029
Chris Lattnerec352402004-08-01 05:04:00 +000030 std::string Namespace = Target.inst_begin()->second.Namespace;
31
32 if (!Namespace.empty())
33 OS << "namespace " << Namespace << " {\n";
34 OS << " enum {\n";
35
Chris Lattnerd6488672005-01-22 18:58:51 +000036 std::vector<const CodeGenInstruction*> NumberedInstructions;
37 Target.getInstructionsByEnumValue(NumberedInstructions);
38
39 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
40 OS << " " << NumberedInstructions[i]->TheDef->getName()
41 << ", \t// " << i << "\n";
42 }
Chris Lattner33ccf7e2003-08-03 17:24:10 +000043 OS << " };\n";
44 if (!Namespace.empty())
45 OS << "}\n";
Chris Lattner2c384132004-08-17 03:08:28 +000046 OS << "} // End llvm namespace \n";
Chris Lattner33ccf7e2003-08-03 17:24:10 +000047}
Chris Lattnera3ae6142003-08-03 21:57:51 +000048
Chris Lattnerbc017232003-08-06 04:32:07 +000049void InstrInfoEmitter::printDefList(ListInit *LI, const std::string &Name,
50 std::ostream &OS) const {
Chris Lattnera3ae6142003-08-03 21:57:51 +000051 OS << "static const unsigned " << Name << "[] = { ";
52 for (unsigned j = 0, e = LI->getSize(); j != e; ++j)
53 if (DefInit *DI = dynamic_cast<DefInit*>(LI->getElement(j)))
54 OS << getQualifiedName(DI->getDef()) << ", ";
55 else
56 throw "Illegal value in '" + Name + "' list!";
57 OS << "0 };\n";
58}
59
60
61// run - Emit the main instruction description records for the target...
62void InstrInfoEmitter::run(std::ostream &OS) {
Chris Lattnerbc017232003-08-06 04:32:07 +000063 EmitSourceFileHeader("Target Instruction Descriptors", OS);
Chris Lattner2c384132004-08-17 03:08:28 +000064 OS << "namespace llvm {\n\n";
65
Chris Lattner7884b752003-08-07 05:39:09 +000066 CodeGenTarget Target;
67 const std::string &TargetName = Target.getName();
68 Record *InstrInfo = Target.getInstructionSet();
Chris Lattnera3ae6142003-08-03 21:57:51 +000069 Record *PHI = InstrInfo->getValueAsDef("PHIInst");
70
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +000071 // Emit empty implicit uses and defs lists
72 OS << "static const unsigned EmptyImpUses[] = { 0 };\n"
73 << "static const unsigned EmptyImpDefs[] = { 0 };\n";
74
Chris Lattnera3ae6142003-08-03 21:57:51 +000075 // Emit all of the instruction's implicit uses and defs...
Chris Lattnerec352402004-08-01 05:04:00 +000076 for (CodeGenTarget::inst_iterator II = Target.inst_begin(),
77 E = Target.inst_end(); II != E; ++II) {
78 Record *Inst = II->second.TheDef;
Chris Lattnera3ae6142003-08-03 21:57:51 +000079 ListInit *LI = Inst->getValueAsListInit("Uses");
80 if (LI->getSize()) printDefList(LI, Inst->getName()+"ImpUses", OS);
81 LI = Inst->getValueAsListInit("Defs");
82 if (LI->getSize()) printDefList(LI, Inst->getName()+"ImpDefs", OS);
83 }
84
85 OS << "\nstatic const TargetInstrDescriptor " << TargetName
86 << "Insts[] = {\n";
Chris Lattnerec352402004-08-01 05:04:00 +000087 emitRecord(Target.getPHIInstruction(), 0, InstrInfo, OS);
Chris Lattnera3ae6142003-08-03 21:57:51 +000088
Chris Lattnerec352402004-08-01 05:04:00 +000089 unsigned i = 0;
90 for (CodeGenTarget::inst_iterator II = Target.inst_begin(),
91 E = Target.inst_end(); II != E; ++II)
92 if (II->second.TheDef != PHI)
93 emitRecord(II->second, ++i, InstrInfo, OS);
Chris Lattnera3ae6142003-08-03 21:57:51 +000094 OS << "};\n";
Chris Lattner2c384132004-08-17 03:08:28 +000095 OS << "} // End llvm namespace \n";
Chris Lattnera3ae6142003-08-03 21:57:51 +000096}
97
Chris Lattnerec352402004-08-01 05:04:00 +000098void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
99 Record *InstrInfo, std::ostream &OS) {
Chris Lattner2d12b2c2004-08-01 08:38:17 +0000100 OS << " { \"";
101 if (Inst.Name.empty())
102 OS << Inst.TheDef->getName();
103 else
104 OS << Inst.Name;
105 OS << "\",\t-1, -1, 0, false, 0, 0, 0, 0";
Chris Lattnera3ae6142003-08-03 21:57:51 +0000106
107 // Emit all of the target indepedent flags...
Chris Lattnerec352402004-08-01 05:04:00 +0000108 if (Inst.isReturn) OS << "|M_RET_FLAG";
109 if (Inst.isBranch) OS << "|M_BRANCH_FLAG";
110 if (Inst.isBarrier) OS << "|M_BARRIER_FLAG";
Chris Lattner5b71d3a2004-09-28 18:38:01 +0000111 if (Inst.hasDelaySlot) OS << "|M_DELAY_SLOT_FLAG";
Chris Lattnerec352402004-08-01 05:04:00 +0000112 if (Inst.isCall) OS << "|M_CALL_FLAG";
Nate Begemancdd66b52004-09-28 21:01:45 +0000113 if (Inst.isLoad) OS << "|M_LOAD_FLAG";
114 if (Inst.isStore) OS << "|M_STORE_FLAG";
Chris Lattnerec352402004-08-01 05:04:00 +0000115 if (Inst.isTwoAddress) OS << "|M_2_ADDR_FLAG";
Chris Lattneraad75aa2005-01-02 02:29:04 +0000116 if (Inst.isConvertibleToThreeAddress) OS << "|M_CONVERTIBLE_TO_3_ADDR";
117 if (Inst.isCommutable) OS << "|M_COMMUTABLE";
Chris Lattnerec352402004-08-01 05:04:00 +0000118 if (Inst.isTerminator) OS << "|M_TERMINATOR_FLAG";
Chris Lattnera3ae6142003-08-03 21:57:51 +0000119 OS << ", 0";
120
121 // Emit all of the target-specific flags...
122 ListInit *LI = InstrInfo->getValueAsListInit("TSFlagsFields");
123 ListInit *Shift = InstrInfo->getValueAsListInit("TSFlagsShifts");
124 if (LI->getSize() != Shift->getSize())
125 throw "Lengths of " + InstrInfo->getName() +
126 ":(TargetInfoFields, TargetInfoPositions) must be equal!";
127
128 for (unsigned i = 0, e = LI->getSize(); i != e; ++i)
Chris Lattnerec352402004-08-01 05:04:00 +0000129 emitShiftedValue(Inst.TheDef, dynamic_cast<StringInit*>(LI->getElement(i)),
Chris Lattnera3ae6142003-08-03 21:57:51 +0000130 dynamic_cast<IntInit*>(Shift->getElement(i)), OS);
131
132 OS << ", ";
133
134 // Emit the implicit uses and defs lists...
Chris Lattnerec352402004-08-01 05:04:00 +0000135 LI = Inst.TheDef->getValueAsListInit("Uses");
Chris Lattnera3ae6142003-08-03 21:57:51 +0000136 if (!LI->getSize())
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000137 OS << "EmptyImpUses, ";
Misha Brukman3da94ae2005-04-22 00:00:37 +0000138 else
Chris Lattnerec352402004-08-01 05:04:00 +0000139 OS << Inst.TheDef->getName() << "ImpUses, ";
Chris Lattnera3ae6142003-08-03 21:57:51 +0000140
Chris Lattnerec352402004-08-01 05:04:00 +0000141 LI = Inst.TheDef->getValueAsListInit("Defs");
Chris Lattnera3ae6142003-08-03 21:57:51 +0000142 if (!LI->getSize())
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000143 OS << "EmptyImpDefs ";
Misha Brukman3da94ae2005-04-22 00:00:37 +0000144 else
Chris Lattnerec352402004-08-01 05:04:00 +0000145 OS << Inst.TheDef->getName() << "ImpDefs ";
Chris Lattnera3ae6142003-08-03 21:57:51 +0000146
Chris Lattnerec352402004-08-01 05:04:00 +0000147 OS << " }, // Inst #" << Num << " = " << Inst.TheDef->getName() << "\n";
Chris Lattnera3ae6142003-08-03 21:57:51 +0000148}
149
150void InstrInfoEmitter::emitShiftedValue(Record *R, StringInit *Val,
151 IntInit *ShiftInt, std::ostream &OS) {
152 if (Val == 0 || ShiftInt == 0)
153 throw std::string("Illegal value or shift amount in TargetInfo*!");
154 RecordVal *RV = R->getValue(Val->getValue());
155 int Shift = ShiftInt->getValue();
156
157 if (RV == 0 || RV->getValue() == 0)
158 throw R->getName() + " doesn't have a field named '" + Val->getValue()+"'!";
159
160 Init *Value = RV->getValue();
161 if (BitInit *BI = dynamic_cast<BitInit*>(Value)) {
162 if (BI->getValue()) OS << "|(1<<" << Shift << ")";
163 return;
164 } else if (BitsInit *BI = dynamic_cast<BitsInit*>(Value)) {
165 // Convert the Bits to an integer to print...
166 Init *I = BI->convertInitializerTo(new IntRecTy());
167 if (I)
168 if (IntInit *II = dynamic_cast<IntInit*>(I)) {
169 if (II->getValue())
170 OS << "|(" << II->getValue() << "<<" << Shift << ")";
171 return;
172 }
173
174 } else if (IntInit *II = dynamic_cast<IntInit*>(Value)) {
175 if (II->getValue()) OS << "|(" << II->getValue() << "<<" << Shift << ")";
176 return;
177 }
178
179 std::cerr << "Unhandled initializer: " << *Val << "\n";
180 throw "In record '" + R->getName() + "' for TSFlag emission.";
181}
Brian Gaeked0fde302003-11-11 22:41:34 +0000182