blob: 243208612d5a9541a0ed6833b6d3bb0ce0a0e042 [file] [log] [blame]
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001//===- 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//
Dan Gohman5ec9efd2008-09-30 20:48:29 +000010// This tablegen backend emits code for use by the "fast" instruction
11// selection algorithm. See the comments at the top of
12// lib/CodeGen/SelectionDAG/FastISel.cpp for background.
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000013//
Dan Gohman5ec9efd2008-09-30 20:48:29 +000014// This file scans through the target's tablegen instruction-info files
15// and extracts instructions with obvious-looking patterns, and it emits
16// code to look up these instructions by type and operator.
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000017//
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000018//===----------------------------------------------------------------------===//
19
20#include "FastISelEmitter.h"
21#include "Record.h"
22#include "llvm/Support/Debug.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000023#include "llvm/ADT/VectorExtras.h"
24using namespace llvm;
25
26namespace {
27
Owen Anderson667d8f72008-08-29 17:45:56 +000028/// InstructionMemo - This class holds additional information about an
29/// instruction needed to emit code for it.
30///
31struct InstructionMemo {
32 std::string Name;
33 const CodeGenRegisterClass *RC;
Jakob Stoklund Olesen73ea7bf2010-05-24 14:48:12 +000034 std::string SubRegNo;
Owen Anderson667d8f72008-08-29 17:45:56 +000035 std::vector<std::string>* PhysRegs;
36};
37
Dan Gohman04b7dfb2008-08-19 18:06:12 +000038/// OperandsSignature - This class holds a description of a list of operand
39/// types. It has utility methods for emitting text based on the operands.
40///
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000041struct OperandsSignature {
42 std::vector<std::string> Operands;
43
44 bool operator<(const OperandsSignature &O) const {
45 return Operands < O.Operands;
46 }
47
48 bool empty() const { return Operands.empty(); }
49
Dan Gohmand1d2ee82008-08-19 20:56:30 +000050 /// initialize - Examine the given pattern and initialize the contents
51 /// of the Operands array accordingly. Return true if all the operands
52 /// are supported, false otherwise.
53 ///
54 bool initialize(TreePatternNode *InstPatNode,
55 const CodeGenTarget &Target,
Owen Anderson825b72b2009-08-11 20:47:22 +000056 MVT::SimpleValueType VT) {
Eric Christopherbc168272010-07-28 01:52:23 +000057
Dan Gohman098d3a42010-05-27 16:25:05 +000058 if (!InstPatNode->isLeaf()) {
59 if (InstPatNode->getOperator()->getName() == "imm") {
60 Operands.push_back("i");
61 return true;
62 }
63 if (InstPatNode->getOperator()->getName() == "fpimm") {
64 Operands.push_back("f");
65 return true;
66 }
Dan Gohman10df0fa2008-08-27 01:09:54 +000067 }
Owen Anderson6d0c25e2008-08-25 20:20:32 +000068
Owen Andersonabb1f162008-08-26 01:22:59 +000069 const CodeGenRegisterClass *DstRC = 0;
70
Dan Gohmand1d2ee82008-08-19 20:56:30 +000071 for (unsigned i = 0, e = InstPatNode->getNumChildren(); i != e; ++i) {
72 TreePatternNode *Op = InstPatNode->getChild(i);
Eric Christopherbc168272010-07-28 01:52:23 +000073
Dan Gohmand1d2ee82008-08-19 20:56:30 +000074 // For now, filter out any operand with a predicate.
Dan Gohmand5fe57d2008-08-21 01:41:07 +000075 // For now, filter out any operand with multiple values.
Chris Lattnerd7349192010-03-19 21:37:09 +000076 if (!Op->getPredicateFns().empty() ||
77 Op->getNumTypes() != 1)
Dan Gohmand5fe57d2008-08-21 01:41:07 +000078 return false;
Chris Lattnerd7349192010-03-19 21:37:09 +000079
80 assert(Op->hasTypeSet(0) && "Type infererence not done?");
81 // For now, all the operands must have the same type.
82 if (Op->getType(0) != VT)
83 return false;
84
Dan Gohmand5fe57d2008-08-21 01:41:07 +000085 if (!Op->isLeaf()) {
86 if (Op->getOperator()->getName() == "imm") {
87 Operands.push_back("i");
Dale Johannesenedc87742009-05-21 22:25:49 +000088 continue;
Dan Gohmand5fe57d2008-08-21 01:41:07 +000089 }
Dan Gohman10df0fa2008-08-27 01:09:54 +000090 if (Op->getOperator()->getName() == "fpimm") {
91 Operands.push_back("f");
Dale Johannesenedc87742009-05-21 22:25:49 +000092 continue;
Dan Gohman10df0fa2008-08-27 01:09:54 +000093 }
Dan Gohman833ddf82008-08-27 16:18:22 +000094 // For now, ignore other non-leaf nodes.
Dan Gohmand5fe57d2008-08-21 01:41:07 +000095 return false;
96 }
Dan Gohmand1d2ee82008-08-19 20:56:30 +000097 DefInit *OpDI = dynamic_cast<DefInit*>(Op->getLeafValue());
98 if (!OpDI)
99 return false;
100 Record *OpLeafRec = OpDI->getDef();
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000101 // For now, the only other thing we accept is register operands.
Evan Cheng98d2d072008-09-08 08:39:33 +0000102
Owen Anderson667d8f72008-08-29 17:45:56 +0000103 const CodeGenRegisterClass *RC = 0;
104 if (OpLeafRec->isSubClassOf("RegisterClass"))
105 RC = &Target.getRegisterClass(OpLeafRec);
106 else if (OpLeafRec->isSubClassOf("Register"))
107 RC = Target.getRegisterClassForRegister(OpLeafRec);
108 else
Dan Gohmand1d2ee82008-08-19 20:56:30 +0000109 return false;
Eric Christopherbc168272010-07-28 01:52:23 +0000110
Eric Christopher2cfcad92010-08-24 23:21:59 +0000111 // For now, this needs to be a register class of some sort.
Dan Gohmand1d2ee82008-08-19 20:56:30 +0000112 if (!RC)
113 return false;
Eric Christopher2cfcad92010-08-24 23:21:59 +0000114
Dan Gohmancf711aa2008-08-19 20:58:14 +0000115 // For now, all the operands must have the same register class.
Owen Andersonabb1f162008-08-26 01:22:59 +0000116 if (DstRC) {
117 if (DstRC != RC)
118 return false;
119 } else
120 DstRC = RC;
Dan Gohmand1d2ee82008-08-19 20:56:30 +0000121 Operands.push_back("r");
122 }
123 return true;
124 }
125
Daniel Dunbar1a551802009-07-03 00:10:29 +0000126 void PrintParameters(raw_ostream &OS) const {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000127 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
128 if (Operands[i] == "r") {
Dan Gohmana6cb6412010-05-11 23:54:07 +0000129 OS << "unsigned Op" << i << ", bool Op" << i << "IsKill";
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000130 } else if (Operands[i] == "i") {
131 OS << "uint64_t imm" << i;
Dan Gohman10df0fa2008-08-27 01:09:54 +0000132 } else if (Operands[i] == "f") {
133 OS << "ConstantFP *f" << i;
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000134 } else {
135 assert("Unknown operand kind!");
136 abort();
137 }
138 if (i + 1 != e)
139 OS << ", ";
140 }
141 }
142
Daniel Dunbar1a551802009-07-03 00:10:29 +0000143 void PrintArguments(raw_ostream &OS,
Owen Anderson667d8f72008-08-29 17:45:56 +0000144 const std::vector<std::string>& PR) const {
145 assert(PR.size() == Operands.size());
Evan Cheng98d2d072008-09-08 08:39:33 +0000146 bool PrintedArg = false;
Owen Anderson667d8f72008-08-29 17:45:56 +0000147 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
Evan Cheng98d2d072008-09-08 08:39:33 +0000148 if (PR[i] != "")
149 // Implicit physical register operand.
150 continue;
151
152 if (PrintedArg)
153 OS << ", ";
154 if (Operands[i] == "r") {
Dan Gohmana6cb6412010-05-11 23:54:07 +0000155 OS << "Op" << i << ", Op" << i << "IsKill";
Evan Cheng98d2d072008-09-08 08:39:33 +0000156 PrintedArg = true;
Owen Anderson667d8f72008-08-29 17:45:56 +0000157 } else if (Operands[i] == "i") {
158 OS << "imm" << i;
Evan Cheng98d2d072008-09-08 08:39:33 +0000159 PrintedArg = true;
Owen Anderson667d8f72008-08-29 17:45:56 +0000160 } else if (Operands[i] == "f") {
161 OS << "f" << i;
Evan Cheng98d2d072008-09-08 08:39:33 +0000162 PrintedArg = true;
Owen Anderson667d8f72008-08-29 17:45:56 +0000163 } else {
164 assert("Unknown operand kind!");
165 abort();
166 }
Owen Anderson667d8f72008-08-29 17:45:56 +0000167 }
168 }
169
Daniel Dunbar1a551802009-07-03 00:10:29 +0000170 void PrintArguments(raw_ostream &OS) const {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000171 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
172 if (Operands[i] == "r") {
Dan Gohmana6cb6412010-05-11 23:54:07 +0000173 OS << "Op" << i << ", Op" << i << "IsKill";
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000174 } else if (Operands[i] == "i") {
175 OS << "imm" << i;
Dan Gohman10df0fa2008-08-27 01:09:54 +0000176 } else if (Operands[i] == "f") {
177 OS << "f" << i;
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000178 } else {
179 assert("Unknown operand kind!");
180 abort();
181 }
182 if (i + 1 != e)
183 OS << ", ";
184 }
185 }
186
Owen Anderson667d8f72008-08-29 17:45:56 +0000187
Daniel Dunbar1a551802009-07-03 00:10:29 +0000188 void PrintManglingSuffix(raw_ostream &OS,
Evan Cheng98d2d072008-09-08 08:39:33 +0000189 const std::vector<std::string>& PR) const {
190 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
191 if (PR[i] != "")
192 // Implicit physical register operand. e.g. Instruction::Mul expect to
193 // select to a binary op. On x86, mul may take a single operand with
194 // the other operand being implicit. We must emit something that looks
195 // like a binary instruction except for the very inner FastEmitInst_*
196 // call.
197 continue;
198 OS << Operands[i];
199 }
200 }
201
Daniel Dunbar1a551802009-07-03 00:10:29 +0000202 void PrintManglingSuffix(raw_ostream &OS) const {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000203 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
204 OS << Operands[i];
205 }
206 }
207};
208
Dan Gohman72d63af2008-08-26 21:21:20 +0000209class FastISelMap {
210 typedef std::map<std::string, InstructionMemo> PredMap;
Owen Anderson825b72b2009-08-11 20:47:22 +0000211 typedef std::map<MVT::SimpleValueType, PredMap> RetPredMap;
212 typedef std::map<MVT::SimpleValueType, RetPredMap> TypeRetPredMap;
Dan Gohman72d63af2008-08-26 21:21:20 +0000213 typedef std::map<std::string, TypeRetPredMap> OpcodeTypeRetPredMap;
Eric Christopherecfa0792010-07-26 17:53:07 +0000214 typedef std::map<OperandsSignature, OpcodeTypeRetPredMap>
215 OperandsOpcodeTypeRetPredMap;
Dan Gohman72d63af2008-08-26 21:21:20 +0000216
217 OperandsOpcodeTypeRetPredMap SimplePatterns;
218
219 std::string InstNS;
220
221public:
222 explicit FastISelMap(std::string InstNS);
223
224 void CollectPatterns(CodeGenDAGPatterns &CGP);
Daniel Dunbar1a551802009-07-03 00:10:29 +0000225 void PrintFunctionDefinitions(raw_ostream &OS);
Dan Gohman72d63af2008-08-26 21:21:20 +0000226};
227
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000228}
229
230static std::string getOpcodeName(Record *Op, CodeGenDAGPatterns &CGP) {
231 return CGP.getSDNodeInfo(Op).getEnumName();
232}
233
234static std::string getLegalCName(std::string OpName) {
235 std::string::size_type pos = OpName.find("::");
236 if (pos != std::string::npos)
237 OpName.replace(pos, 2, "_");
238 return OpName;
239}
240
Dan Gohman72d63af2008-08-26 21:21:20 +0000241FastISelMap::FastISelMap(std::string instns)
242 : InstNS(instns) {
243}
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000244
Dan Gohman72d63af2008-08-26 21:21:20 +0000245void FastISelMap::CollectPatterns(CodeGenDAGPatterns &CGP) {
246 const CodeGenTarget &Target = CGP.getTargetInfo();
247
248 // Determine the target's namespace name.
249 InstNS = Target.getInstNamespace() + "::";
250 assert(InstNS.size() > 2 && "Can't determine target-specific namespace!");
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000251
Dan Gohman0bfb7522008-08-22 00:28:15 +0000252 // Scan through all the patterns and record the simple ones.
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000253 for (CodeGenDAGPatterns::ptm_iterator I = CGP.ptm_begin(),
254 E = CGP.ptm_end(); I != E; ++I) {
255 const PatternToMatch &Pattern = *I;
256
257 // For now, just look at Instructions, so that we don't have to worry
258 // about emitting multiple instructions for a pattern.
259 TreePatternNode *Dst = Pattern.getDstPattern();
260 if (Dst->isLeaf()) continue;
261 Record *Op = Dst->getOperator();
262 if (!Op->isSubClassOf("Instruction"))
263 continue;
Chris Lattnerf30187a2010-03-19 00:07:20 +0000264 CodeGenInstruction &II = CGP.getTargetInfo().getInstruction(Op);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000265 if (II.OperandList.empty())
266 continue;
Eric Christopherbc168272010-07-28 01:52:23 +0000267
Evan Cheng34fc6ce2008-09-07 08:19:51 +0000268 // For now, ignore multi-instruction patterns.
269 bool MultiInsts = false;
270 for (unsigned i = 0, e = Dst->getNumChildren(); i != e; ++i) {
271 TreePatternNode *ChildOp = Dst->getChild(i);
272 if (ChildOp->isLeaf())
273 continue;
274 if (ChildOp->getOperator()->isSubClassOf("Instruction")) {
275 MultiInsts = true;
276 break;
277 }
278 }
279 if (MultiInsts)
280 continue;
281
Dan Gohman379cad42008-08-19 20:36:33 +0000282 // For now, ignore instructions where the first operand is not an
283 // output register.
Owen Andersonb5dbcb52008-08-28 18:06:12 +0000284 const CodeGenRegisterClass *DstRC = 0;
Jakob Stoklund Olesen73ea7bf2010-05-24 14:48:12 +0000285 std::string SubRegNo;
Owen Andersonb5dbcb52008-08-28 18:06:12 +0000286 if (Op->getName() != "EXTRACT_SUBREG") {
287 Record *Op0Rec = II.OperandList[0].Rec;
288 if (!Op0Rec->isSubClassOf("RegisterClass"))
289 continue;
290 DstRC = &Target.getRegisterClass(Op0Rec);
291 if (!DstRC)
292 continue;
293 } else {
Eric Christopher07fdd892010-07-21 22:07:19 +0000294 // If this isn't a leaf, then continue since the register classes are
295 // a bit too complicated for now.
296 if (!Dst->getChild(1)->isLeaf()) continue;
297
Jakob Stoklund Olesen73ea7bf2010-05-24 14:48:12 +0000298 DefInit *SR = dynamic_cast<DefInit*>(Dst->getChild(1)->getLeafValue());
299 if (SR)
300 SubRegNo = getQualifiedName(SR->getDef());
301 else
302 SubRegNo = Dst->getChild(1)->getLeafValue()->getAsString();
Owen Andersonb5dbcb52008-08-28 18:06:12 +0000303 }
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000304
305 // Inspect the pattern.
306 TreePatternNode *InstPatNode = Pattern.getSrcPattern();
307 if (!InstPatNode) continue;
308 if (InstPatNode->isLeaf()) continue;
309
Chris Lattner084df622010-03-24 00:41:19 +0000310 // Ignore multiple result nodes for now.
311 if (InstPatNode->getNumTypes() > 1) continue;
312
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000313 Record *InstPatOp = InstPatNode->getOperator();
314 std::string OpcodeName = getOpcodeName(InstPatOp, CGP);
Chris Lattnerd7349192010-03-19 21:37:09 +0000315 MVT::SimpleValueType RetVT = MVT::isVoid;
316 if (InstPatNode->getNumTypes()) RetVT = InstPatNode->getType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000317 MVT::SimpleValueType VT = RetVT;
Chris Lattnerd7349192010-03-19 21:37:09 +0000318 if (InstPatNode->getNumChildren()) {
319 assert(InstPatNode->getChild(0)->getNumTypes() == 1);
320 VT = InstPatNode->getChild(0)->getType(0);
321 }
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000322
323 // For now, filter out instructions which just set a register to
Dan Gohmanf4137b52008-08-19 20:30:54 +0000324 // an Operand or an immediate, like MOV32ri.
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000325 if (InstPatOp->isSubClassOf("Operand"))
326 continue;
Dan Gohmanf4137b52008-08-19 20:30:54 +0000327
328 // For now, filter out any instructions with predicates.
Dan Gohman0540e172008-10-15 06:17:21 +0000329 if (!InstPatNode->getPredicateFns().empty())
Dan Gohmanf4137b52008-08-19 20:30:54 +0000330 continue;
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000331
Dan Gohman379cad42008-08-19 20:36:33 +0000332 // Check all the operands.
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000333 OperandsSignature Operands;
Owen Andersonabb1f162008-08-26 01:22:59 +0000334 if (!Operands.initialize(InstPatNode, Target, VT))
Dan Gohmand1d2ee82008-08-19 20:56:30 +0000335 continue;
Owen Anderson667d8f72008-08-29 17:45:56 +0000336
337 std::vector<std::string>* PhysRegInputs = new std::vector<std::string>();
338 if (!InstPatNode->isLeaf() &&
339 (InstPatNode->getOperator()->getName() == "imm" ||
340 InstPatNode->getOperator()->getName() == "fpimmm"))
341 PhysRegInputs->push_back("");
342 else if (!InstPatNode->isLeaf()) {
343 for (unsigned i = 0, e = InstPatNode->getNumChildren(); i != e; ++i) {
344 TreePatternNode *Op = InstPatNode->getChild(i);
345 if (!Op->isLeaf()) {
346 PhysRegInputs->push_back("");
347 continue;
348 }
349
350 DefInit *OpDI = dynamic_cast<DefInit*>(Op->getLeafValue());
351 Record *OpLeafRec = OpDI->getDef();
352 std::string PhysReg;
353 if (OpLeafRec->isSubClassOf("Register")) {
354 PhysReg += static_cast<StringInit*>(OpLeafRec->getValue( \
355 "Namespace")->getValue())->getValue();
356 PhysReg += "::";
357
358 std::vector<CodeGenRegister> Regs = Target.getRegisters();
359 for (unsigned i = 0; i < Regs.size(); ++i) {
360 if (Regs[i].TheDef == OpLeafRec) {
361 PhysReg += Regs[i].getName();
362 break;
363 }
364 }
365 }
366
367 PhysRegInputs->push_back(PhysReg);
368 }
369 } else
370 PhysRegInputs->push_back("");
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000371
Dan Gohman22bb3112008-08-22 00:20:26 +0000372 // Get the predicate that guards this pattern.
373 std::string PredicateCheck = Pattern.getPredicateCheck();
374
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000375 // Ok, we found a pattern that we can handle. Remember it.
Dan Gohman520b50c2008-08-21 00:35:26 +0000376 InstructionMemo Memo = {
377 Pattern.getDstPattern()->getOperator()->getName(),
Owen Andersonb5dbcb52008-08-28 18:06:12 +0000378 DstRC,
Owen Anderson667d8f72008-08-29 17:45:56 +0000379 SubRegNo,
380 PhysRegInputs
Dan Gohman520b50c2008-08-21 00:35:26 +0000381 };
Eric Christopherecfa0792010-07-26 17:53:07 +0000382 assert(!SimplePatterns[Operands][OpcodeName][VT][RetVT]
383 .count(PredicateCheck) &&
Dan Gohman22bb3112008-08-22 00:20:26 +0000384 "Duplicate pattern!");
Owen Andersonabb1f162008-08-26 01:22:59 +0000385 SimplePatterns[Operands][OpcodeName][VT][RetVT][PredicateCheck] = Memo;
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000386 }
Dan Gohman72d63af2008-08-26 21:21:20 +0000387}
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000388
Daniel Dunbar1a551802009-07-03 00:10:29 +0000389void FastISelMap::PrintFunctionDefinitions(raw_ostream &OS) {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000390 // Now emit code for all the patterns that we collected.
Owen Anderson7b2e5792008-08-25 23:43:09 +0000391 for (OperandsOpcodeTypeRetPredMap::const_iterator OI = SimplePatterns.begin(),
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000392 OE = SimplePatterns.end(); OI != OE; ++OI) {
393 const OperandsSignature &Operands = OI->first;
Owen Anderson7b2e5792008-08-25 23:43:09 +0000394 const OpcodeTypeRetPredMap &OTM = OI->second;
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000395
Owen Anderson7b2e5792008-08-25 23:43:09 +0000396 for (OpcodeTypeRetPredMap::const_iterator I = OTM.begin(), E = OTM.end();
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000397 I != E; ++I) {
398 const std::string &Opcode = I->first;
Owen Anderson7b2e5792008-08-25 23:43:09 +0000399 const TypeRetPredMap &TM = I->second;
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000400
401 OS << "// FastEmit functions for " << Opcode << ".\n";
402 OS << "\n";
403
404 // Emit one function for each opcode,type pair.
Owen Anderson7b2e5792008-08-25 23:43:09 +0000405 for (TypeRetPredMap::const_iterator TI = TM.begin(), TE = TM.end();
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000406 TI != TE; ++TI) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000407 MVT::SimpleValueType VT = TI->first;
Owen Anderson7b2e5792008-08-25 23:43:09 +0000408 const RetPredMap &RM = TI->second;
Owen Anderson71669e52008-08-26 00:42:26 +0000409 if (RM.size() != 1) {
410 for (RetPredMap::const_iterator RI = RM.begin(), RE = RM.end();
411 RI != RE; ++RI) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000412 MVT::SimpleValueType RetVT = RI->first;
Owen Anderson71669e52008-08-26 00:42:26 +0000413 const PredMap &PM = RI->second;
414 bool HasPred = false;
Dan Gohman22bb3112008-08-22 00:20:26 +0000415
Evan Chengc3f44b02008-09-03 00:03:49 +0000416 OS << "unsigned FastEmit_"
Owen Anderson71669e52008-08-26 00:42:26 +0000417 << getLegalCName(Opcode)
418 << "_" << getLegalCName(getName(VT))
419 << "_" << getLegalCName(getName(RetVT)) << "_";
420 Operands.PrintManglingSuffix(OS);
421 OS << "(";
422 Operands.PrintParameters(OS);
423 OS << ") {\n";
Dan Gohman22bb3112008-08-22 00:20:26 +0000424
Owen Anderson71669e52008-08-26 00:42:26 +0000425 // Emit code for each possible instruction. There may be
426 // multiple if there are subtarget concerns.
427 for (PredMap::const_iterator PI = PM.begin(), PE = PM.end();
428 PI != PE; ++PI) {
429 std::string PredicateCheck = PI->first;
430 const InstructionMemo &Memo = PI->second;
431
432 if (PredicateCheck.empty()) {
433 assert(!HasPred &&
434 "Multiple instructions match, at least one has "
435 "a predicate and at least one doesn't!");
436 } else {
Owen Anderson667d8f72008-08-29 17:45:56 +0000437 OS << " if (" + PredicateCheck + ") {\n";
Owen Anderson71669e52008-08-26 00:42:26 +0000438 OS << " ";
439 HasPred = true;
440 }
Owen Anderson667d8f72008-08-29 17:45:56 +0000441
442 for (unsigned i = 0; i < Memo.PhysRegs->size(); ++i) {
443 if ((*Memo.PhysRegs)[i] != "")
Jakob Stoklund Olesen4f8e7712010-07-11 03:53:50 +0000444 OS << " BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, "
445 << "TII.get(TargetOpcode::COPY), "
446 << (*Memo.PhysRegs)[i] << ").addReg(Op" << i << ");\n";
Owen Anderson667d8f72008-08-29 17:45:56 +0000447 }
448
Owen Anderson71669e52008-08-26 00:42:26 +0000449 OS << " return FastEmitInst_";
Jakob Stoklund Olesen73ea7bf2010-05-24 14:48:12 +0000450 if (Memo.SubRegNo.empty()) {
Evan Cheng98d2d072008-09-08 08:39:33 +0000451 Operands.PrintManglingSuffix(OS, *Memo.PhysRegs);
Owen Andersonb5dbcb52008-08-28 18:06:12 +0000452 OS << "(" << InstNS << Memo.Name << ", ";
453 OS << InstNS << Memo.RC->getName() << "RegisterClass";
454 if (!Operands.empty())
455 OS << ", ";
Owen Anderson667d8f72008-08-29 17:45:56 +0000456 Operands.PrintArguments(OS, *Memo.PhysRegs);
Owen Andersonb5dbcb52008-08-28 18:06:12 +0000457 OS << ");\n";
458 } else {
Evan Cheng536ab132009-01-22 09:10:11 +0000459 OS << "extractsubreg(" << getName(RetVT);
Dan Gohmana6cb6412010-05-11 23:54:07 +0000460 OS << ", Op0, Op0IsKill, ";
Jakob Stoklund Olesen73ea7bf2010-05-24 14:48:12 +0000461 OS << Memo.SubRegNo;
Owen Andersonb5dbcb52008-08-28 18:06:12 +0000462 OS << ");\n";
463 }
Owen Anderson667d8f72008-08-29 17:45:56 +0000464
465 if (HasPred)
Evan Chengd07b46e2008-09-07 08:23:06 +0000466 OS << " }\n";
Owen Anderson667d8f72008-08-29 17:45:56 +0000467
Owen Anderson71669e52008-08-26 00:42:26 +0000468 }
469 // Return 0 if none of the predicates were satisfied.
470 if (HasPred)
471 OS << " return 0;\n";
472 OS << "}\n";
473 OS << "\n";
474 }
475
476 // Emit one function for the type that demultiplexes on return type.
Evan Chengc3f44b02008-09-03 00:03:49 +0000477 OS << "unsigned FastEmit_"
Owen Anderson71669e52008-08-26 00:42:26 +0000478 << getLegalCName(Opcode) << "_"
Owen Andersonabb1f162008-08-26 01:22:59 +0000479 << getLegalCName(getName(VT)) << "_";
Owen Anderson71669e52008-08-26 00:42:26 +0000480 Operands.PrintManglingSuffix(OS);
Owen Anderson825b72b2009-08-11 20:47:22 +0000481 OS << "(MVT RetVT";
Owen Anderson71669e52008-08-26 00:42:26 +0000482 if (!Operands.empty())
483 OS << ", ";
484 Operands.PrintParameters(OS);
Owen Anderson825b72b2009-08-11 20:47:22 +0000485 OS << ") {\nswitch (RetVT.SimpleTy) {\n";
Owen Anderson71669e52008-08-26 00:42:26 +0000486 for (RetPredMap::const_iterator RI = RM.begin(), RE = RM.end();
487 RI != RE; ++RI) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000488 MVT::SimpleValueType RetVT = RI->first;
Owen Anderson71669e52008-08-26 00:42:26 +0000489 OS << " case " << getName(RetVT) << ": return FastEmit_"
490 << getLegalCName(Opcode) << "_" << getLegalCName(getName(VT))
491 << "_" << getLegalCName(getName(RetVT)) << "_";
492 Operands.PrintManglingSuffix(OS);
493 OS << "(";
494 Operands.PrintArguments(OS);
495 OS << ");\n";
496 }
497 OS << " default: return 0;\n}\n}\n\n";
498
499 } else {
500 // Non-variadic return type.
Evan Chengc3f44b02008-09-03 00:03:49 +0000501 OS << "unsigned FastEmit_"
Owen Anderson71669e52008-08-26 00:42:26 +0000502 << getLegalCName(Opcode) << "_"
503 << getLegalCName(getName(VT)) << "_";
Dan Gohman22bb3112008-08-22 00:20:26 +0000504 Operands.PrintManglingSuffix(OS);
Owen Anderson825b72b2009-08-11 20:47:22 +0000505 OS << "(MVT RetVT";
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000506 if (!Operands.empty())
507 OS << ", ";
Owen Anderson7b2e5792008-08-25 23:43:09 +0000508 Operands.PrintParameters(OS);
509 OS << ") {\n";
Owen Anderson71669e52008-08-26 00:42:26 +0000510
Owen Anderson825b72b2009-08-11 20:47:22 +0000511 OS << " if (RetVT.SimpleTy != " << getName(RM.begin()->first)
Owen Anderson70647e82008-08-26 18:50:00 +0000512 << ")\n return 0;\n";
513
Owen Anderson71669e52008-08-26 00:42:26 +0000514 const PredMap &PM = RM.begin()->second;
515 bool HasPred = false;
516
Owen Anderson7b2e5792008-08-25 23:43:09 +0000517 // Emit code for each possible instruction. There may be
518 // multiple if there are subtarget concerns.
Evan Cheng98d2d072008-09-08 08:39:33 +0000519 for (PredMap::const_iterator PI = PM.begin(), PE = PM.end(); PI != PE;
520 ++PI) {
Owen Anderson7b2e5792008-08-25 23:43:09 +0000521 std::string PredicateCheck = PI->first;
522 const InstructionMemo &Memo = PI->second;
Owen Anderson71669e52008-08-26 00:42:26 +0000523
Owen Anderson7b2e5792008-08-25 23:43:09 +0000524 if (PredicateCheck.empty()) {
525 assert(!HasPred &&
526 "Multiple instructions match, at least one has "
527 "a predicate and at least one doesn't!");
528 } else {
Owen Anderson667d8f72008-08-29 17:45:56 +0000529 OS << " if (" + PredicateCheck + ") {\n";
Owen Anderson7b2e5792008-08-25 23:43:09 +0000530 OS << " ";
531 HasPred = true;
532 }
Owen Anderson667d8f72008-08-29 17:45:56 +0000533
Jakob Stoklund Olesen4f8e7712010-07-11 03:53:50 +0000534 for (unsigned i = 0; i < Memo.PhysRegs->size(); ++i) {
535 if ((*Memo.PhysRegs)[i] != "")
536 OS << " BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, "
537 << "TII.get(TargetOpcode::COPY), "
538 << (*Memo.PhysRegs)[i] << ").addReg(Op" << i << ");\n";
539 }
Owen Anderson667d8f72008-08-29 17:45:56 +0000540
Owen Anderson7b2e5792008-08-25 23:43:09 +0000541 OS << " return FastEmitInst_";
Owen Andersonb5dbcb52008-08-28 18:06:12 +0000542
Jakob Stoklund Olesen73ea7bf2010-05-24 14:48:12 +0000543 if (Memo.SubRegNo.empty()) {
Evan Cheng98d2d072008-09-08 08:39:33 +0000544 Operands.PrintManglingSuffix(OS, *Memo.PhysRegs);
Owen Andersonb5dbcb52008-08-28 18:06:12 +0000545 OS << "(" << InstNS << Memo.Name << ", ";
546 OS << InstNS << Memo.RC->getName() << "RegisterClass";
547 if (!Operands.empty())
548 OS << ", ";
Owen Anderson667d8f72008-08-29 17:45:56 +0000549 Operands.PrintArguments(OS, *Memo.PhysRegs);
Owen Andersonb5dbcb52008-08-28 18:06:12 +0000550 OS << ");\n";
551 } else {
Dan Gohmana6cb6412010-05-11 23:54:07 +0000552 OS << "extractsubreg(RetVT, Op0, Op0IsKill, ";
Jakob Stoklund Olesen73ea7bf2010-05-24 14:48:12 +0000553 OS << Memo.SubRegNo;
Owen Andersonb5dbcb52008-08-28 18:06:12 +0000554 OS << ");\n";
555 }
Owen Anderson667d8f72008-08-29 17:45:56 +0000556
557 if (HasPred)
558 OS << " }\n";
Owen Anderson7b2e5792008-08-25 23:43:09 +0000559 }
Owen Anderson71669e52008-08-26 00:42:26 +0000560
Owen Anderson7b2e5792008-08-25 23:43:09 +0000561 // Return 0 if none of the predicates were satisfied.
562 if (HasPred)
563 OS << " return 0;\n";
564 OS << "}\n";
565 OS << "\n";
Dan Gohman22bb3112008-08-22 00:20:26 +0000566 }
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000567 }
568
569 // Emit one function for the opcode that demultiplexes based on the type.
Evan Chengc3f44b02008-09-03 00:03:49 +0000570 OS << "unsigned FastEmit_"
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000571 << getLegalCName(Opcode) << "_";
572 Operands.PrintManglingSuffix(OS);
Owen Anderson825b72b2009-08-11 20:47:22 +0000573 OS << "(MVT VT, MVT RetVT";
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000574 if (!Operands.empty())
575 OS << ", ";
576 Operands.PrintParameters(OS);
577 OS << ") {\n";
Owen Anderson825b72b2009-08-11 20:47:22 +0000578 OS << " switch (VT.SimpleTy) {\n";
Owen Anderson7b2e5792008-08-25 23:43:09 +0000579 for (TypeRetPredMap::const_iterator TI = TM.begin(), TE = TM.end();
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000580 TI != TE; ++TI) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000581 MVT::SimpleValueType VT = TI->first;
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000582 std::string TypeName = getName(VT);
583 OS << " case " << TypeName << ": return FastEmit_"
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000584 << getLegalCName(Opcode) << "_" << getLegalCName(TypeName) << "_";
585 Operands.PrintManglingSuffix(OS);
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000586 OS << "(RetVT";
587 if (!Operands.empty())
588 OS << ", ";
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000589 Operands.PrintArguments(OS);
590 OS << ");\n";
591 }
592 OS << " default: return 0;\n";
593 OS << " }\n";
594 OS << "}\n";
595 OS << "\n";
596 }
597
Dan Gohman0bfb7522008-08-22 00:28:15 +0000598 OS << "// Top-level FastEmit function.\n";
599 OS << "\n";
600
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000601 // Emit one function for the operand signature that demultiplexes based
602 // on opcode and type.
Evan Chengc3f44b02008-09-03 00:03:49 +0000603 OS << "unsigned FastEmit_";
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000604 Operands.PrintManglingSuffix(OS);
Dan Gohman7c3ecb62010-01-05 22:26:32 +0000605 OS << "(MVT VT, MVT RetVT, unsigned Opcode";
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000606 if (!Operands.empty())
607 OS << ", ";
608 Operands.PrintParameters(OS);
609 OS << ") {\n";
610 OS << " switch (Opcode) {\n";
Owen Anderson7b2e5792008-08-25 23:43:09 +0000611 for (OpcodeTypeRetPredMap::const_iterator I = OTM.begin(), E = OTM.end();
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000612 I != E; ++I) {
613 const std::string &Opcode = I->first;
614
615 OS << " case " << Opcode << ": return FastEmit_"
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000616 << getLegalCName(Opcode) << "_";
617 Operands.PrintManglingSuffix(OS);
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000618 OS << "(VT, RetVT";
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000619 if (!Operands.empty())
620 OS << ", ";
621 Operands.PrintArguments(OS);
622 OS << ");\n";
623 }
624 OS << " default: return 0;\n";
625 OS << " }\n";
626 OS << "}\n";
627 OS << "\n";
628 }
Dan Gohman72d63af2008-08-26 21:21:20 +0000629}
630
Daniel Dunbar1a551802009-07-03 00:10:29 +0000631void FastISelEmitter::run(raw_ostream &OS) {
Dan Gohman72d63af2008-08-26 21:21:20 +0000632 const CodeGenTarget &Target = CGP.getTargetInfo();
633
634 // Determine the target's namespace name.
635 std::string InstNS = Target.getInstNamespace() + "::";
636 assert(InstNS.size() > 2 && "Can't determine target-specific namespace!");
637
638 EmitSourceFileHeader("\"Fast\" Instruction Selector for the " +
639 Target.getName() + " target", OS);
640
Dan Gohman72d63af2008-08-26 21:21:20 +0000641 FastISelMap F(InstNS);
642 F.CollectPatterns(CGP);
Dan Gohman72d63af2008-08-26 21:21:20 +0000643 F.PrintFunctionDefinitions(OS);
Dan Gohmanc7f72de2008-08-21 00:19:05 +0000644}
645
646FastISelEmitter::FastISelEmitter(RecordKeeper &R)
647 : Records(R),
Dan Gohman72d63af2008-08-26 21:21:20 +0000648 CGP(R) {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000649}
Dan Gohman72d63af2008-08-26 21:21:20 +0000650