blob: a1c1984f3dafb9423e1fc51484a8121456e25300 [file] [log] [blame]
Chris Lattner33ccf7e2003-08-03 17:24:10 +00001//===- InstrInfoEmitter.cpp - Generate a Instruction Set Desc. ------------===//
John Criswell01d45822003-10-20 20:20:30 +00002//
3// 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.
7//
8//===----------------------------------------------------------------------===//
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) {
22 std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
23
24 if (Insts.size() == 0)
25 throw std::string("No 'Instruction' subclasses defined!");
26
27 std::string Namespace = Insts[0]->getValueAsString("Namespace");
28
Chris Lattnerbc017232003-08-06 04:32:07 +000029 EmitSourceFileHeader("Target Instruction Enum Values", OS);
Chris Lattner33ccf7e2003-08-03 17:24:10 +000030
31 if (!Namespace.empty())
32 OS << "namespace " << Namespace << " {\n";
33 OS << " enum {\n";
34
Chris Lattner7884b752003-08-07 05:39:09 +000035 CodeGenTarget Target;
36
Chris Lattnera3ae6142003-08-03 21:57:51 +000037 // We must emit the PHI opcode first...
Chris Lattner7884b752003-08-07 05:39:09 +000038 Record *InstrInfo = Target.getInstructionSet();
Chris Lattner33ccf7e2003-08-03 17:24:10 +000039 Record *PHI = InstrInfo->getValueAsDef("PHIInst");
Chris Lattner33ccf7e2003-08-03 17:24:10 +000040
Chris Lattnera3ae6142003-08-03 21:57:51 +000041 OS << " " << PHI->getName() << ", \t// 0 (fixed for all targets)\n";
Chris Lattner33ccf7e2003-08-03 17:24:10 +000042
43 // Print out the rest of the instructions now...
44 for (unsigned i = 0, e = Insts.size(); i != e; ++i)
Chris Lattnera3ae6142003-08-03 21:57:51 +000045 if (Insts[i] != PHI)
46 OS << " " << Insts[i]->getName() << ", \t// " << i+1 << "\n";
Chris Lattner33ccf7e2003-08-03 17:24:10 +000047
48 OS << " };\n";
49 if (!Namespace.empty())
50 OS << "}\n";
Brian Gaeked0fde302003-11-11 22:41:34 +000051 EmitSourceFileTail(OS);
Chris Lattner33ccf7e2003-08-03 17:24:10 +000052}
Chris Lattnera3ae6142003-08-03 21:57:51 +000053
Chris Lattnerbc017232003-08-06 04:32:07 +000054void InstrInfoEmitter::printDefList(ListInit *LI, const std::string &Name,
55 std::ostream &OS) const {
Chris Lattnera3ae6142003-08-03 21:57:51 +000056 OS << "static const unsigned " << Name << "[] = { ";
57 for (unsigned j = 0, e = LI->getSize(); j != e; ++j)
58 if (DefInit *DI = dynamic_cast<DefInit*>(LI->getElement(j)))
59 OS << getQualifiedName(DI->getDef()) << ", ";
60 else
61 throw "Illegal value in '" + Name + "' list!";
62 OS << "0 };\n";
63}
64
65
66// run - Emit the main instruction description records for the target...
67void InstrInfoEmitter::run(std::ostream &OS) {
Chris Lattnerbc017232003-08-06 04:32:07 +000068 EmitSourceFileHeader("Target Instruction Descriptors", OS);
Chris Lattner7884b752003-08-07 05:39:09 +000069 CodeGenTarget Target;
70 const std::string &TargetName = Target.getName();
71 Record *InstrInfo = Target.getInstructionSet();
Chris Lattnera3ae6142003-08-03 21:57:51 +000072 Record *PHI = InstrInfo->getValueAsDef("PHIInst");
73
74 std::vector<Record*> Instructions =
75 Records.getAllDerivedDefinitions("Instruction");
76
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +000077 // Emit empty implicit uses and defs lists
78 OS << "static const unsigned EmptyImpUses[] = { 0 };\n"
79 << "static const unsigned EmptyImpDefs[] = { 0 };\n";
80
Chris Lattnera3ae6142003-08-03 21:57:51 +000081 // Emit all of the instruction's implicit uses and defs...
82 for (unsigned i = 0, e = Instructions.size(); i != e; ++i) {
83 Record *Inst = Instructions[i];
84 ListInit *LI = Inst->getValueAsListInit("Uses");
85 if (LI->getSize()) printDefList(LI, Inst->getName()+"ImpUses", OS);
86 LI = Inst->getValueAsListInit("Defs");
87 if (LI->getSize()) printDefList(LI, Inst->getName()+"ImpDefs", OS);
88 }
89
90 OS << "\nstatic const TargetInstrDescriptor " << TargetName
91 << "Insts[] = {\n";
92 emitRecord(PHI, 0, InstrInfo, OS);
93
94 for (unsigned i = 0, e = Instructions.size(); i != e; ++i)
95 if (Instructions[i] != PHI)
96 emitRecord(Instructions[i], i+1, InstrInfo, OS);
97 OS << "};\n";
Brian Gaeked0fde302003-11-11 22:41:34 +000098 EmitSourceFileTail(OS);
Chris Lattnera3ae6142003-08-03 21:57:51 +000099}
100
101void InstrInfoEmitter::emitRecord(Record *R, unsigned Num, Record *InstrInfo,
102 std::ostream &OS) {
103 OS << " { \"" << R->getValueAsString("Name")
104 << "\",\t-1, -1, 0, false, 0, 0, 0, 0";
105
106 // Emit all of the target indepedent flags...
107 if (R->getValueAsBit("isReturn")) OS << "|M_RET_FLAG";
108 if (R->getValueAsBit("isBranch")) OS << "|M_BRANCH_FLAG";
Chris Lattner58505992004-07-31 02:07:26 +0000109 if (R->getValueAsBit("isBarrier")) OS << "|M_BARRIER_FLAG";
Chris Lattnera3ae6142003-08-03 21:57:51 +0000110 if (R->getValueAsBit("isCall" )) OS << "|M_CALL_FLAG";
111 if (R->getValueAsBit("isTwoAddress")) OS << "|M_2_ADDR_FLAG";
112 if (R->getValueAsBit("isTerminator")) OS << "|M_TERMINATOR_FLAG";
113 OS << ", 0";
114
115 // Emit all of the target-specific flags...
116 ListInit *LI = InstrInfo->getValueAsListInit("TSFlagsFields");
117 ListInit *Shift = InstrInfo->getValueAsListInit("TSFlagsShifts");
118 if (LI->getSize() != Shift->getSize())
119 throw "Lengths of " + InstrInfo->getName() +
120 ":(TargetInfoFields, TargetInfoPositions) must be equal!";
121
122 for (unsigned i = 0, e = LI->getSize(); i != e; ++i)
123 emitShiftedValue(R, dynamic_cast<StringInit*>(LI->getElement(i)),
124 dynamic_cast<IntInit*>(Shift->getElement(i)), OS);
125
126 OS << ", ";
127
128 // Emit the implicit uses and defs lists...
129 LI = R->getValueAsListInit("Uses");
130 if (!LI->getSize())
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000131 OS << "EmptyImpUses, ";
Chris Lattnera3ae6142003-08-03 21:57:51 +0000132 else
133 OS << R->getName() << "ImpUses, ";
134
135 LI = R->getValueAsListInit("Defs");
136 if (!LI->getSize())
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000137 OS << "EmptyImpDefs ";
Chris Lattnera3ae6142003-08-03 21:57:51 +0000138 else
139 OS << R->getName() << "ImpDefs ";
140
141 OS << " }, // Inst #" << Num << " = " << R->getName() << "\n";
142}
143
144void InstrInfoEmitter::emitShiftedValue(Record *R, StringInit *Val,
145 IntInit *ShiftInt, std::ostream &OS) {
146 if (Val == 0 || ShiftInt == 0)
147 throw std::string("Illegal value or shift amount in TargetInfo*!");
148 RecordVal *RV = R->getValue(Val->getValue());
149 int Shift = ShiftInt->getValue();
150
151 if (RV == 0 || RV->getValue() == 0)
152 throw R->getName() + " doesn't have a field named '" + Val->getValue()+"'!";
153
154 Init *Value = RV->getValue();
155 if (BitInit *BI = dynamic_cast<BitInit*>(Value)) {
156 if (BI->getValue()) OS << "|(1<<" << Shift << ")";
157 return;
158 } else if (BitsInit *BI = dynamic_cast<BitsInit*>(Value)) {
159 // Convert the Bits to an integer to print...
160 Init *I = BI->convertInitializerTo(new IntRecTy());
161 if (I)
162 if (IntInit *II = dynamic_cast<IntInit*>(I)) {
163 if (II->getValue())
164 OS << "|(" << II->getValue() << "<<" << Shift << ")";
165 return;
166 }
167
168 } else if (IntInit *II = dynamic_cast<IntInit*>(Value)) {
169 if (II->getValue()) OS << "|(" << II->getValue() << "<<" << Shift << ")";
170 return;
171 }
172
173 std::cerr << "Unhandled initializer: " << *Val << "\n";
174 throw "In record '" + R->getName() + "' for TSFlag emission.";
175}
Brian Gaeked0fde302003-11-11 22:41:34 +0000176