Remove the code that limited FastISel to certain fixed signatures.
[oota-llvm.git] / utils / TableGen / FastISelEmitter.cpp
1 //===- FastISelEmitter.cpp - Generate an instruction selector -------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This tablegen backend emits a "fast" instruction selector.
11 //
12 // This instruction selection method is designed to emit very poor code
13 // quickly. Also, it is not designed to do much lowering, so most illegal
14 // types (e.g. i64 on 32-bit targets) and operations (e.g. calls) are not
15 // supported and cannot easily be added. Blocks containing operations
16 // that are not supported need to be handled by a more capable selector,
17 // such as the SelectionDAG selector.
18 //
19 // The intended use for "fast" instruction selection is "-O0" mode
20 // compilation, where the quality of the generated code is irrelevant when
21 // weighed against the speed at which the code can be generated.
22 //
23 // If compile time is so important, you might wonder why we don't just
24 // skip codegen all-together, emit LLVM bytecode files, and execute them
25 // with an interpreter. The answer is that it would complicate linking and
26 // debugging, and also because that isn't how a compiler is expected to
27 // work in some circles.
28 //
29 // If you need better generated code or more lowering than what this
30 // instruction selector provides, use the SelectionDAG (DAGISel) instruction
31 // selector instead. If you're looking here because SelectionDAG isn't fast
32 // enough, consider looking into improving the SelectionDAG infastructure
33 // instead. At the time of this writing there remain several major
34 // opportunities for improvement.
35 // 
36 //===----------------------------------------------------------------------===//
37
38 #include "FastISelEmitter.h"
39 #include "Record.h"
40 #include "llvm/Support/Debug.h"
41 #include "llvm/Support/Streams.h"
42 #include "llvm/ADT/VectorExtras.h"
43 using namespace llvm;
44
45 namespace {
46
47 /// OperandsSignature - This class holds a description of a list of operand
48 /// types. It has utility methods for emitting text based on the operands.
49 ///
50 struct OperandsSignature {
51   std::vector<std::string> Operands;
52
53   bool operator<(const OperandsSignature &O) const {
54     return Operands < O.Operands;
55   }
56
57   bool empty() const { return Operands.empty(); }
58
59   /// initialize - Examine the given pattern and initialize the contents
60   /// of the Operands array accordingly. Return true if all the operands
61   /// are supported, false otherwise.
62   ///
63   bool initialize(TreePatternNode *InstPatNode,
64                   const CodeGenTarget &Target,
65                   MVT::SimpleValueType VT,
66                   const CodeGenRegisterClass *DstRC) {
67     for (unsigned i = 0, e = InstPatNode->getNumChildren(); i != e; ++i) {
68       TreePatternNode *Op = InstPatNode->getChild(i);
69       if (!Op->isLeaf())
70         return false;
71       // For now, filter out any operand with a predicate.
72       if (!Op->getPredicateFn().empty())
73         return false;
74       DefInit *OpDI = dynamic_cast<DefInit*>(Op->getLeafValue());
75       if (!OpDI)
76         return false;
77       Record *OpLeafRec = OpDI->getDef();
78       // For now, only accept register operands.
79       if (!OpLeafRec->isSubClassOf("RegisterClass"))
80         return false;
81       // For now, require the register operands' register classes to all
82       // be the same.
83       const CodeGenRegisterClass *RC = &Target.getRegisterClass(OpLeafRec);
84       if (!RC)
85         return false;
86       // For now, all the operands must have the same register class.
87       if (DstRC != RC)
88         return false;
89       // For now, all the operands must have the same type.
90       if (Op->getTypeNum(0) != VT)
91         return false;
92       Operands.push_back("r");
93     }
94     return true;
95   }
96
97   void PrintParameters(std::ostream &OS) const {
98     for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
99       if (Operands[i] == "r") {
100         OS << "unsigned Op" << i;
101       } else {
102         assert("Unknown operand kind!");
103         abort();
104       }
105       if (i + 1 != e)
106         OS << ", ";
107     }
108   }
109
110   void PrintArguments(std::ostream &OS) const {
111     for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
112       if (Operands[i] == "r") {
113         OS << "Op" << i;
114       } else {
115         assert("Unknown operand kind!");
116         abort();
117       }
118       if (i + 1 != e)
119         OS << ", ";
120     }
121   }
122
123   void PrintManglingSuffix(std::ostream &OS) const {
124     for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
125       OS << Operands[i];
126     }
127   }
128 };
129
130 /// InstructionMemo - This class holds additional information about an
131 /// instruction needed to emit code for it.
132 ///
133 struct InstructionMemo {
134   std::string Name;
135   const CodeGenRegisterClass *RC;
136 };
137
138 }
139
140 static std::string getOpcodeName(Record *Op, CodeGenDAGPatterns &CGP) {
141   return CGP.getSDNodeInfo(Op).getEnumName();
142 }
143
144 static std::string getLegalCName(std::string OpName) {
145   std::string::size_type pos = OpName.find("::");
146   if (pos != std::string::npos)
147     OpName.replace(pos, 2, "_");
148   return OpName;
149 }
150
151 void FastISelEmitter::run(std::ostream &OS) {
152   EmitSourceFileHeader("\"Fast\" Instruction Selector for the " +
153                        Target.getName() + " target", OS);
154
155   OS << "#include \"llvm/CodeGen/FastISel.h\"\n";
156   OS << "\n";
157   OS << "namespace llvm {\n";
158   OS << "\n";
159   OS << "namespace " << InstNS.substr(0, InstNS.size() - 2) << " {\n";
160   OS << "\n";
161   
162   typedef std::map<MVT::SimpleValueType, InstructionMemo> TypeMap;
163   typedef std::map<std::string, TypeMap> OpcodeTypeMap;
164   typedef std::map<OperandsSignature, OpcodeTypeMap> OperandsOpcodeTypeMap;
165   OperandsOpcodeTypeMap SimplePatterns;
166
167   for (CodeGenDAGPatterns::ptm_iterator I = CGP.ptm_begin(),
168        E = CGP.ptm_end(); I != E; ++I) {
169     const PatternToMatch &Pattern = *I;
170
171     // For now, just look at Instructions, so that we don't have to worry
172     // about emitting multiple instructions for a pattern.
173     TreePatternNode *Dst = Pattern.getDstPattern();
174     if (Dst->isLeaf()) continue;
175     Record *Op = Dst->getOperator();
176     if (!Op->isSubClassOf("Instruction"))
177       continue;
178     CodeGenInstruction &II = CGP.getTargetInfo().getInstruction(Op->getName());
179     if (II.OperandList.empty())
180       continue;
181
182     // For now, ignore instructions where the first operand is not an
183     // output register.
184     Record *Op0Rec = II.OperandList[0].Rec;
185     if (!Op0Rec->isSubClassOf("RegisterClass"))
186       continue;
187     const CodeGenRegisterClass *DstRC = &Target.getRegisterClass(Op0Rec);
188     if (!DstRC)
189       continue;
190
191     // Inspect the pattern.
192     TreePatternNode *InstPatNode = Pattern.getSrcPattern();
193     if (!InstPatNode) continue;
194     if (InstPatNode->isLeaf()) continue;
195
196     Record *InstPatOp = InstPatNode->getOperator();
197     std::string OpcodeName = getOpcodeName(InstPatOp, CGP);
198     MVT::SimpleValueType VT = InstPatNode->getTypeNum(0);
199
200     // For now, filter out instructions which just set a register to
201     // an Operand or an immediate, like MOV32ri.
202     if (InstPatOp->isSubClassOf("Operand"))
203       continue;
204     if (InstPatOp->getName() == "imm" ||
205         InstPatOp->getName() == "fpimm")
206       continue;
207
208     // For now, filter out any instructions with predicates.
209     if (!InstPatNode->getPredicateFn().empty())
210       continue;
211
212     // Check all the operands.
213     OperandsSignature Operands;
214     if (!Operands.initialize(InstPatNode, Target, VT, DstRC))
215       continue;
216
217     // Ok, we found a pattern that we can handle. Remember it.
218     InstructionMemo Memo = {
219       Pattern.getDstPattern()->getOperator()->getName(),
220       DstRC
221     };
222     SimplePatterns[Operands][OpcodeName][VT] = Memo;
223   }
224
225   // Declare the target FastISel class.
226   OS << "class FastISel : public llvm::FastISel {\n";
227   for (OperandsOpcodeTypeMap::const_iterator OI = SimplePatterns.begin(),
228        OE = SimplePatterns.end(); OI != OE; ++OI) {
229     const OperandsSignature &Operands = OI->first;
230     const OpcodeTypeMap &OTM = OI->second;
231
232     for (OpcodeTypeMap::const_iterator I = OTM.begin(), E = OTM.end();
233          I != E; ++I) {
234       const std::string &Opcode = I->first;
235       const TypeMap &TM = I->second;
236
237       for (TypeMap::const_iterator TI = TM.begin(), TE = TM.end();
238            TI != TE; ++TI) {
239         MVT::SimpleValueType VT = TI->first;
240
241         OS << "  unsigned FastEmit_" << getLegalCName(Opcode)
242            << "_" << getLegalCName(getName(VT)) << "(";
243         Operands.PrintParameters(OS);
244         OS << ");\n";
245       }
246
247       OS << "  unsigned FastEmit_" << getLegalCName(Opcode)
248          << "(MVT::SimpleValueType VT";
249       if (!Operands.empty())
250         OS << ", ";
251       Operands.PrintParameters(OS);
252       OS << ");\n";
253     }
254
255     OS << "  unsigned FastEmit_";
256     Operands.PrintManglingSuffix(OS);
257     OS << "(MVT::SimpleValueType VT, ISD::NodeType Opcode";
258     if (!Operands.empty())
259       OS << ", ";
260     Operands.PrintParameters(OS);
261     OS << ");\n";
262   }
263   OS << "public:\n";
264   OS << "  explicit FastISel(MachineFunction &mf) : llvm::FastISel(mf) {}\n";
265   OS << "};\n";
266   OS << "\n";
267
268   // Define the target FastISel creation function.
269   OS << "llvm::FastISel *createFastISel(MachineFunction &mf) {\n";
270   OS << "  return new FastISel(mf);\n";
271   OS << "}\n";
272   OS << "\n";
273
274   // Now emit code for all the patterns that we collected.
275   for (OperandsOpcodeTypeMap::const_iterator OI = SimplePatterns.begin(),
276        OE = SimplePatterns.end(); OI != OE; ++OI) {
277     const OperandsSignature &Operands = OI->first;
278     const OpcodeTypeMap &OTM = OI->second;
279
280     for (OpcodeTypeMap::const_iterator I = OTM.begin(), E = OTM.end();
281          I != E; ++I) {
282       const std::string &Opcode = I->first;
283       const TypeMap &TM = I->second;
284
285       OS << "// FastEmit functions for " << Opcode << ".\n";
286       OS << "\n";
287
288       // Emit one function for each opcode,type pair.
289       for (TypeMap::const_iterator TI = TM.begin(), TE = TM.end();
290            TI != TE; ++TI) {
291         MVT::SimpleValueType VT = TI->first;
292         const InstructionMemo &Memo = TI->second;
293   
294         OS << "unsigned FastISel::FastEmit_"
295            << getLegalCName(Opcode)
296            << "_" << getLegalCName(getName(VT)) << "(";
297         Operands.PrintParameters(OS);
298         OS << ") {\n";
299         OS << "  return FastEmitInst_";
300         Operands.PrintManglingSuffix(OS);
301         OS << "(" << InstNS << Memo.Name << ", ";
302         OS << InstNS << Memo.RC->getName() << "RegisterClass";
303         if (!Operands.empty())
304           OS << ", ";
305         Operands.PrintArguments(OS);
306         OS << ");\n";
307         OS << "}\n";
308         OS << "\n";
309       }
310
311       // Emit one function for the opcode that demultiplexes based on the type.
312       OS << "unsigned FastISel::FastEmit_"
313          << getLegalCName(Opcode) << "(MVT::SimpleValueType VT";
314       if (!Operands.empty())
315         OS << ", ";
316       Operands.PrintParameters(OS);
317       OS << ") {\n";
318       OS << "  switch (VT) {\n";
319       for (TypeMap::const_iterator TI = TM.begin(), TE = TM.end();
320            TI != TE; ++TI) {
321         MVT::SimpleValueType VT = TI->first;
322         std::string TypeName = getName(VT);
323         OS << "  case " << TypeName << ": return FastEmit_"
324            << getLegalCName(Opcode) << "_" << getLegalCName(TypeName) << "(";
325         Operands.PrintArguments(OS);
326         OS << ");\n";
327       }
328       OS << "  default: return 0;\n";
329       OS << "  }\n";
330       OS << "}\n";
331       OS << "\n";
332     }
333
334     // Emit one function for the operand signature that demultiplexes based
335     // on opcode and type.
336     OS << "unsigned FastISel::FastEmit_";
337     Operands.PrintManglingSuffix(OS);
338     OS << "(MVT::SimpleValueType VT, ISD::NodeType Opcode";
339     if (!Operands.empty())
340       OS << ", ";
341     Operands.PrintParameters(OS);
342     OS << ") {\n";
343     OS << "  switch (Opcode) {\n";
344     for (OpcodeTypeMap::const_iterator I = OTM.begin(), E = OTM.end();
345          I != E; ++I) {
346       const std::string &Opcode = I->first;
347
348       OS << "  case " << Opcode << ": return FastEmit_"
349          << getLegalCName(Opcode) << "(VT";
350       if (!Operands.empty())
351         OS << ", ";
352       Operands.PrintArguments(OS);
353       OS << ");\n";
354     }
355     OS << "  default: return 0;\n";
356     OS << "  }\n";
357     OS << "}\n";
358     OS << "\n";
359   }
360
361   OS << "} // namespace X86\n";
362   OS << "\n";
363   OS << "} // namespace llvm\n";
364 }
365
366 FastISelEmitter::FastISelEmitter(RecordKeeper &R)
367   : Records(R),
368     CGP(R),
369     Target(CGP.getTargetInfo()),
370     InstNS(Target.getInstNamespace() + "::") {
371
372   assert(InstNS.size() > 2 && "Can't determine target-specific namespace!");
373 }