blob: 0802483c8adc7755c681917fb96d896a77abe17d [file] [log] [blame]
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001//===- DAGISelEmitter.cpp - Generate an instruction selector --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner30609102007-12-29 20:37:13 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner54cb8fd2005-09-07 23:44:43 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This tablegen backend emits a DAG instruction selector.
11//
12//===----------------------------------------------------------------------===//
13
14#include "DAGISelEmitter.h"
15#include "Record.h"
16#include "llvm/ADT/StringExtras.h"
David Greene8ad4c002008-10-27 21:56:29 +000017#include "llvm/Support/CommandLine.h"
Chris Lattner54cb8fd2005-09-07 23:44:43 +000018#include "llvm/Support/Debug.h"
Chris Lattnerbe8e7212006-10-11 03:35:34 +000019#include "llvm/Support/MathExtras.h"
David Greene8ad4c002008-10-27 21:56:29 +000020#include "llvm/Support/Debug.h"
Jeff Cohena48283b2005-09-25 19:04:43 +000021#include <algorithm>
Dan Gohman95d11092008-07-07 21:00:17 +000022#include <deque>
Daniel Dunbar1a551802009-07-03 00:10:29 +000023#include <iostream>
Chris Lattner54cb8fd2005-09-07 23:44:43 +000024using namespace llvm;
25
David Greene8ad4c002008-10-27 21:56:29 +000026namespace {
27 cl::opt<bool>
28 GenDebug("gen-debug", cl::desc("Generate debug code"),
29 cl::init(false));
30}
31
Chris Lattnerca559d02005-09-08 21:03:01 +000032//===----------------------------------------------------------------------===//
Chris Lattnerdc32f982008-01-05 22:43:57 +000033// DAGISelEmitter Helper methods
Chris Lattner54cb8fd2005-09-07 23:44:43 +000034//
35
Chris Lattner6cefb772008-01-05 22:25:12 +000036/// NodeIsComplexPattern - return true if N is a leaf node and a subclass of
37/// ComplexPattern.
38static bool NodeIsComplexPattern(TreePatternNode *N) {
Evan Cheng0fc71982005-12-08 02:00:36 +000039 return (N->isLeaf() &&
40 dynamic_cast<DefInit*>(N->getLeafValue()) &&
41 static_cast<DefInit*>(N->getLeafValue())->getDef()->
42 isSubClassOf("ComplexPattern"));
43}
44
Chris Lattner6cefb772008-01-05 22:25:12 +000045/// NodeGetComplexPattern - return the pointer to the ComplexPattern if N
46/// is a leaf node and a subclass of ComplexPattern, else it returns NULL.
Evan Cheng0fc71982005-12-08 02:00:36 +000047static const ComplexPattern *NodeGetComplexPattern(TreePatternNode *N,
Chris Lattnerfe718932008-01-06 01:10:31 +000048 CodeGenDAGPatterns &CGP) {
Evan Cheng0fc71982005-12-08 02:00:36 +000049 if (N->isLeaf() &&
50 dynamic_cast<DefInit*>(N->getLeafValue()) &&
51 static_cast<DefInit*>(N->getLeafValue())->getDef()->
52 isSubClassOf("ComplexPattern")) {
Chris Lattner6cefb772008-01-05 22:25:12 +000053 return &CGP.getComplexPattern(static_cast<DefInit*>(N->getLeafValue())
54 ->getDef());
Evan Cheng0fc71982005-12-08 02:00:36 +000055 }
56 return NULL;
57}
58
Chris Lattner05814af2005-09-28 17:57:56 +000059/// getPatternSize - Return the 'size' of this pattern. We want to match large
60/// patterns before small ones. This is used to determine the size of a
61/// pattern.
Chris Lattnerfe718932008-01-06 01:10:31 +000062static unsigned getPatternSize(TreePatternNode *P, CodeGenDAGPatterns &CGP) {
Duncan Sands83ec4b62008-06-06 12:08:01 +000063 assert((EMVT::isExtIntegerInVTs(P->getExtTypes()) ||
64 EMVT::isExtFloatingPointInVTs(P->getExtTypes()) ||
Evan Cheng2618d072006-05-17 20:37:59 +000065 P->getExtTypeNum(0) == MVT::isVoid ||
66 P->getExtTypeNum(0) == MVT::Flag ||
Mon P Wange3b3a722008-07-30 04:36:53 +000067 P->getExtTypeNum(0) == MVT::iPTR ||
68 P->getExtTypeNum(0) == MVT::iPTRAny) &&
Evan Cheng4a7c2842006-01-06 22:19:44 +000069 "Not a valid pattern node to size!");
Evan Cheng6cec34e2006-09-08 07:26:39 +000070 unsigned Size = 3; // The node itself.
Evan Cheng657416c2006-02-01 06:06:31 +000071 // If the root node is a ConstantSDNode, increases its size.
72 // e.g. (set R32:$dst, 0).
73 if (P->isLeaf() && dynamic_cast<IntInit*>(P->getLeafValue()))
Evan Cheng6cec34e2006-09-08 07:26:39 +000074 Size += 2;
Evan Cheng0fc71982005-12-08 02:00:36 +000075
76 // FIXME: This is a hack to statically increase the priority of patterns
77 // which maps a sub-dag to a complex pattern. e.g. favors LEA over ADD.
78 // Later we can allow complexity / cost for each pattern to be (optionally)
79 // specified. To get best possible pattern match we'll need to dynamically
80 // calculate the complexity of all patterns a dag can potentially map to.
Chris Lattner6cefb772008-01-05 22:25:12 +000081 const ComplexPattern *AM = NodeGetComplexPattern(P, CGP);
Evan Cheng0fc71982005-12-08 02:00:36 +000082 if (AM)
Evan Cheng6cec34e2006-09-08 07:26:39 +000083 Size += AM->getNumOperands() * 3;
Chris Lattner3e179802006-02-03 18:06:02 +000084
85 // If this node has some predicate function that must match, it adds to the
86 // complexity of this node.
Dan Gohman0540e172008-10-15 06:17:21 +000087 if (!P->getPredicateFns().empty())
Chris Lattner3e179802006-02-03 18:06:02 +000088 ++Size;
89
Chris Lattner05814af2005-09-28 17:57:56 +000090 // Count children in the count if they are also nodes.
91 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) {
92 TreePatternNode *Child = P->getChild(i);
Nate Begemanb73628b2005-12-30 00:12:56 +000093 if (!Child->isLeaf() && Child->getExtTypeNum(0) != MVT::Other)
Chris Lattner6cefb772008-01-05 22:25:12 +000094 Size += getPatternSize(Child, CGP);
Evan Cheng0fc71982005-12-08 02:00:36 +000095 else if (Child->isLeaf()) {
96 if (dynamic_cast<IntInit*>(Child->getLeafValue()))
Evan Cheng6cec34e2006-09-08 07:26:39 +000097 Size += 5; // Matches a ConstantSDNode (+3) and a specific value (+2).
Evan Cheng4a7c2842006-01-06 22:19:44 +000098 else if (NodeIsComplexPattern(Child))
Chris Lattner6cefb772008-01-05 22:25:12 +000099 Size += getPatternSize(Child, CGP);
Dan Gohman0540e172008-10-15 06:17:21 +0000100 else if (!Child->getPredicateFns().empty())
Chris Lattner3e179802006-02-03 18:06:02 +0000101 ++Size;
Chris Lattner2f041d42005-10-19 04:41:05 +0000102 }
Chris Lattner05814af2005-09-28 17:57:56 +0000103 }
104
105 return Size;
106}
107
108/// getResultPatternCost - Compute the number of instructions for this pattern.
109/// This is a temporary hack. We should really include the instruction
110/// latencies in this calculation.
Chris Lattner6cefb772008-01-05 22:25:12 +0000111static unsigned getResultPatternCost(TreePatternNode *P,
Chris Lattnerfe718932008-01-06 01:10:31 +0000112 CodeGenDAGPatterns &CGP) {
Chris Lattner05814af2005-09-28 17:57:56 +0000113 if (P->isLeaf()) return 0;
114
Evan Chengfbad7082006-02-18 02:33:09 +0000115 unsigned Cost = 0;
116 Record *Op = P->getOperator();
117 if (Op->isSubClassOf("Instruction")) {
118 Cost++;
Chris Lattner6cefb772008-01-05 22:25:12 +0000119 CodeGenInstruction &II = CGP.getTargetInfo().getInstruction(Op->getName());
Evan Chengfbad7082006-02-18 02:33:09 +0000120 if (II.usesCustomDAGSchedInserter)
121 Cost += 10;
122 }
Chris Lattner05814af2005-09-28 17:57:56 +0000123 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
Chris Lattner6cefb772008-01-05 22:25:12 +0000124 Cost += getResultPatternCost(P->getChild(i), CGP);
Chris Lattner05814af2005-09-28 17:57:56 +0000125 return Cost;
126}
127
Evan Chenge6f32032006-07-19 00:24:41 +0000128/// getResultPatternCodeSize - Compute the code size of instructions for this
129/// pattern.
Chris Lattner6cefb772008-01-05 22:25:12 +0000130static unsigned getResultPatternSize(TreePatternNode *P,
Chris Lattnerfe718932008-01-06 01:10:31 +0000131 CodeGenDAGPatterns &CGP) {
Evan Chenge6f32032006-07-19 00:24:41 +0000132 if (P->isLeaf()) return 0;
133
134 unsigned Cost = 0;
135 Record *Op = P->getOperator();
136 if (Op->isSubClassOf("Instruction")) {
137 Cost += Op->getValueAsInt("CodeSize");
138 }
139 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
Chris Lattner6cefb772008-01-05 22:25:12 +0000140 Cost += getResultPatternSize(P->getChild(i), CGP);
Evan Chenge6f32032006-07-19 00:24:41 +0000141 return Cost;
142}
143
Chris Lattner05814af2005-09-28 17:57:56 +0000144// PatternSortingPredicate - return true if we prefer to match LHS before RHS.
145// In particular, we want to match maximal patterns first and lowest cost within
146// a particular complexity first.
147struct PatternSortingPredicate {
Chris Lattnerfe718932008-01-06 01:10:31 +0000148 PatternSortingPredicate(CodeGenDAGPatterns &cgp) : CGP(cgp) {}
149 CodeGenDAGPatterns &CGP;
Evan Cheng0fc71982005-12-08 02:00:36 +0000150
Dan Gohman0540e172008-10-15 06:17:21 +0000151 typedef std::pair<unsigned, std::string> CodeLine;
152 typedef std::vector<CodeLine> CodeList;
153 typedef std::vector<std::pair<const PatternToMatch*, CodeList> > PatternList;
154
155 bool operator()(const std::pair<const PatternToMatch*, CodeList> &LHSPair,
156 const std::pair<const PatternToMatch*, CodeList> &RHSPair) {
157 const PatternToMatch *LHS = LHSPair.first;
158 const PatternToMatch *RHS = RHSPair.first;
159
Chris Lattner6cefb772008-01-05 22:25:12 +0000160 unsigned LHSSize = getPatternSize(LHS->getSrcPattern(), CGP);
161 unsigned RHSSize = getPatternSize(RHS->getSrcPattern(), CGP);
Evan Chengc81d2a02006-04-19 20:36:09 +0000162 LHSSize += LHS->getAddedComplexity();
163 RHSSize += RHS->getAddedComplexity();
Chris Lattner05814af2005-09-28 17:57:56 +0000164 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost
165 if (LHSSize < RHSSize) return false;
166
167 // If the patterns have equal complexity, compare generated instruction cost
Chris Lattner6cefb772008-01-05 22:25:12 +0000168 unsigned LHSCost = getResultPatternCost(LHS->getDstPattern(), CGP);
169 unsigned RHSCost = getResultPatternCost(RHS->getDstPattern(), CGP);
Evan Chenge6f32032006-07-19 00:24:41 +0000170 if (LHSCost < RHSCost) return true;
171 if (LHSCost > RHSCost) return false;
172
Chris Lattner6cefb772008-01-05 22:25:12 +0000173 return getResultPatternSize(LHS->getDstPattern(), CGP) <
174 getResultPatternSize(RHS->getDstPattern(), CGP);
Chris Lattner05814af2005-09-28 17:57:56 +0000175 }
176};
177
Jim Grosbach54f30222009-03-25 23:28:33 +0000178/// getRegisterValueType - Look up and return the ValueType of the specified
179/// register. If the register is a member of multiple register classes which
180/// have different associated types, return MVT::Other.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000181static MVT::SimpleValueType getRegisterValueType(Record *R, const CodeGenTarget &T) {
Jim Grosbach866cc602009-03-26 14:45:34 +0000182 bool FoundRC = false;
Jim Grosbach54f30222009-03-25 23:28:33 +0000183 MVT::SimpleValueType VT = MVT::Other;
184 const std::vector<CodeGenRegisterClass> &RCs = T.getRegisterClasses();
185 std::vector<CodeGenRegisterClass>::const_iterator RC;
186 std::vector<Record*>::const_iterator Element;
187
188 for (RC = RCs.begin() ; RC != RCs.end() ; RC++) {
189 Element = find((*RC).Elements.begin(), (*RC).Elements.end(), R);
190 if (Element != (*RC).Elements.end()) {
191 if (!FoundRC) {
Jim Grosbach866cc602009-03-26 14:45:34 +0000192 FoundRC = true;
Jim Grosbach54f30222009-03-25 23:28:33 +0000193 VT = (*RC).getValueTypeNum(0);
194 } else {
195 // In multiple RC's
196 if (VT != (*RC).getValueTypeNum(0)) {
197 // Types of the RC's do not agree. Return MVT::Other. The
198 // target is responsible for handling this.
199 return MVT::Other;
200 }
201 }
202 }
203 }
204 return VT;
Evan Cheng66a48bb2005-12-01 00:18:45 +0000205}
206
Chris Lattner72fe91c2005-09-24 00:40:24 +0000207
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000208/// RemoveAllTypes - A quick recursive walk over a pattern which removes all
209/// type information from it.
210static void RemoveAllTypes(TreePatternNode *N) {
Nate Begemanb73628b2005-12-30 00:12:56 +0000211 N->removeTypes();
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000212 if (!N->isLeaf())
213 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
214 RemoveAllTypes(N->getChild(i));
215}
Chris Lattner72fe91c2005-09-24 00:40:24 +0000216
Evan Cheng51fecc82006-01-09 18:27:06 +0000217/// NodeHasProperty - return true if TreePatternNode has the specified
218/// property.
Evan Cheng94b30402006-10-11 21:02:01 +0000219static bool NodeHasProperty(TreePatternNode *N, SDNP Property,
Chris Lattnerfe718932008-01-06 01:10:31 +0000220 CodeGenDAGPatterns &CGP) {
Evan Cheng94b30402006-10-11 21:02:01 +0000221 if (N->isLeaf()) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000222 const ComplexPattern *CP = NodeGetComplexPattern(N, CGP);
Evan Cheng94b30402006-10-11 21:02:01 +0000223 if (CP)
224 return CP->hasProperty(Property);
225 return false;
226 }
Evan Cheng7b05bd52005-12-23 22:11:47 +0000227 Record *Operator = N->getOperator();
228 if (!Operator->isSubClassOf("SDNode")) return false;
229
Chris Lattner6cefb772008-01-05 22:25:12 +0000230 return CGP.getSDNodeInfo(Operator).hasProperty(Property);
Evan Cheng7b05bd52005-12-23 22:11:47 +0000231}
232
Evan Cheng94b30402006-10-11 21:02:01 +0000233static bool PatternHasProperty(TreePatternNode *N, SDNP Property,
Chris Lattnerfe718932008-01-06 01:10:31 +0000234 CodeGenDAGPatterns &CGP) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000235 if (NodeHasProperty(N, Property, CGP))
Evan Cheng7b05bd52005-12-23 22:11:47 +0000236 return true;
Evan Cheng51fecc82006-01-09 18:27:06 +0000237
238 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
239 TreePatternNode *Child = N->getChild(i);
Chris Lattner6cefb772008-01-05 22:25:12 +0000240 if (PatternHasProperty(Child, Property, CGP))
Evan Cheng51fecc82006-01-09 18:27:06 +0000241 return true;
Evan Cheng7b05bd52005-12-23 22:11:47 +0000242 }
243
244 return false;
245}
246
Evan Chengf9d03182008-07-03 08:39:51 +0000247static std::string getOpcodeName(Record *Op, CodeGenDAGPatterns &CGP) {
248 return CGP.getSDNodeInfo(Op).getEnumName();
249}
250
251static
252bool DisablePatternForFastISel(TreePatternNode *N, CodeGenDAGPatterns &CGP) {
253 bool isStore = !N->isLeaf() &&
254 getOpcodeName(N->getOperator(), CGP) == "ISD::STORE";
255 if (!isStore && NodeHasProperty(N, SDNPHasChain, CGP))
256 return false;
257
258 bool HasChain = false;
259 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
260 TreePatternNode *Child = N->getChild(i);
261 if (PatternHasProperty(Child, SDNPHasChain, CGP)) {
262 HasChain = true;
263 break;
264 }
265 }
266 return HasChain;
267}
268
Chris Lattnerdc32f982008-01-05 22:43:57 +0000269//===----------------------------------------------------------------------===//
Chris Lattner443e3f92008-01-05 22:54:53 +0000270// Node Transformation emitter implementation.
271//
Daniel Dunbar1a551802009-07-03 00:10:29 +0000272void DAGISelEmitter::EmitNodeTransforms(raw_ostream &OS) {
Chris Lattner443e3f92008-01-05 22:54:53 +0000273 // Walk the pattern fragments, adding them to a map, which sorts them by
274 // name.
Chris Lattnerfe718932008-01-06 01:10:31 +0000275 typedef std::map<std::string, CodeGenDAGPatterns::NodeXForm> NXsByNameTy;
Chris Lattner443e3f92008-01-05 22:54:53 +0000276 NXsByNameTy NXsByName;
277
Chris Lattnerfe718932008-01-06 01:10:31 +0000278 for (CodeGenDAGPatterns::nx_iterator I = CGP.nx_begin(), E = CGP.nx_end();
Chris Lattner443e3f92008-01-05 22:54:53 +0000279 I != E; ++I)
280 NXsByName.insert(std::make_pair(I->first->getName(), I->second));
281
282 OS << "\n// Node transformations.\n";
283
284 for (NXsByNameTy::iterator I = NXsByName.begin(), E = NXsByName.end();
285 I != E; ++I) {
286 Record *SDNode = I->second.first;
287 std::string Code = I->second.second;
288
289 if (Code.empty()) continue; // Empty code? Skip it.
290
Chris Lattner200c57e2008-01-05 22:58:54 +0000291 std::string ClassName = CGP.getSDNodeInfo(SDNode).getSDClassName();
Chris Lattner443e3f92008-01-05 22:54:53 +0000292 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
293
Dan Gohman475871a2008-07-27 21:46:04 +0000294 OS << "inline SDValue Transform_" << I->first << "(SDNode *" << C2
Chris Lattner443e3f92008-01-05 22:54:53 +0000295 << ") {\n";
296 if (ClassName != "SDNode")
297 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
298 OS << Code << "\n}\n";
299 }
300}
301
302//===----------------------------------------------------------------------===//
Chris Lattnerdc32f982008-01-05 22:43:57 +0000303// Predicate emitter implementation.
304//
305
Daniel Dunbar1a551802009-07-03 00:10:29 +0000306void DAGISelEmitter::EmitPredicateFunctions(raw_ostream &OS) {
Chris Lattnerdc32f982008-01-05 22:43:57 +0000307 OS << "\n// Predicate functions.\n";
308
309 // Walk the pattern fragments, adding them to a map, which sorts them by
310 // name.
311 typedef std::map<std::string, std::pair<Record*, TreePattern*> > PFsByNameTy;
312 PFsByNameTy PFsByName;
313
Chris Lattnerfe718932008-01-06 01:10:31 +0000314 for (CodeGenDAGPatterns::pf_iterator I = CGP.pf_begin(), E = CGP.pf_end();
Chris Lattnerdc32f982008-01-05 22:43:57 +0000315 I != E; ++I)
316 PFsByName.insert(std::make_pair(I->first->getName(), *I));
317
318
319 for (PFsByNameTy::iterator I = PFsByName.begin(), E = PFsByName.end();
320 I != E; ++I) {
321 Record *PatFragRecord = I->second.first;// Record that derives from PatFrag.
322 TreePattern *P = I->second.second;
323
324 // If there is a code init for this fragment, emit the predicate code.
325 std::string Code = PatFragRecord->getValueAsCode("Predicate");
326 if (Code.empty()) continue;
327
328 if (P->getOnlyTree()->isLeaf())
329 OS << "inline bool Predicate_" << PatFragRecord->getName()
330 << "(SDNode *N) {\n";
331 else {
332 std::string ClassName =
Chris Lattner200c57e2008-01-05 22:58:54 +0000333 CGP.getSDNodeInfo(P->getOnlyTree()->getOperator()).getSDClassName();
Chris Lattnerdc32f982008-01-05 22:43:57 +0000334 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
335
336 OS << "inline bool Predicate_" << PatFragRecord->getName()
337 << "(SDNode *" << C2 << ") {\n";
338 if (ClassName != "SDNode")
339 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
340 }
341 OS << Code << "\n}\n";
342 }
343
344 OS << "\n\n";
345}
346
347
348//===----------------------------------------------------------------------===//
349// PatternCodeEmitter implementation.
350//
Evan Chengb915f312005-12-09 22:45:35 +0000351class PatternCodeEmitter {
352private:
Chris Lattnerfe718932008-01-06 01:10:31 +0000353 CodeGenDAGPatterns &CGP;
Evan Chengb915f312005-12-09 22:45:35 +0000354
Evan Cheng58e84a62005-12-14 22:02:59 +0000355 // Predicates.
Dan Gohman22bb3112008-08-22 00:20:26 +0000356 std::string PredicateCheck;
Evan Cheng59413202006-04-19 18:07:24 +0000357 // Pattern cost.
358 unsigned Cost;
Evan Cheng58e84a62005-12-14 22:02:59 +0000359 // Instruction selector pattern.
360 TreePatternNode *Pattern;
361 // Matched instruction.
362 TreePatternNode *Instruction;
Chris Lattner8a0604b2006-01-28 20:31:24 +0000363
Evan Chengb915f312005-12-09 22:45:35 +0000364 // Node to name mapping
Evan Chengf805c2e2006-01-12 19:35:54 +0000365 std::map<std::string, std::string> VariableMap;
366 // Node to operator mapping
367 std::map<std::string, Record*> OperatorMap;
Evan Chenga58891f2008-02-05 22:50:29 +0000368 // Name of the folded node which produces a flag.
369 std::pair<std::string, unsigned> FoldedFlag;
Evan Chengb915f312005-12-09 22:45:35 +0000370 // Names of all the folded nodes which produce chains.
Evan Cheng1b80f4d2005-12-19 07:18:51 +0000371 std::vector<std::pair<std::string, unsigned> > FoldedChains;
Evan Cheng4326ef52006-10-12 02:08:53 +0000372 // Original input chain(s).
373 std::vector<std::pair<std::string, std::string> > OrigChains;
Evan Chengb4ad33c2006-01-19 01:55:45 +0000374 std::set<std::string> Duplicates;
Evan Chengb915f312005-12-09 22:45:35 +0000375
Dan Gohman69de1932008-02-06 22:27:42 +0000376 /// LSI - Load/Store information.
377 /// Save loads/stores matched by a pattern, and generate a MemOperandSDNode
378 /// for each memory access. This facilitates the use of AliasAnalysis in
379 /// the backend.
380 std::vector<std::string> LSI;
381
Evan Cheng676d7312006-08-26 00:59:04 +0000382 /// GeneratedCode - This is the buffer that we emit code to. The first int
Chris Lattner8a0604b2006-01-28 20:31:24 +0000383 /// indicates whether this is an exit predicate (something that should be
Evan Cheng676d7312006-08-26 00:59:04 +0000384 /// tested, and if true, the match fails) [when 1], or normal code to emit
385 /// [when 0], or initialization code to emit [when 2].
386 std::vector<std::pair<unsigned, std::string> > &GeneratedCode;
Dan Gohman475871a2008-07-27 21:46:04 +0000387 /// GeneratedDecl - This is the set of all SDValue declarations needed for
Evan Cheng21ad3922006-02-07 00:37:41 +0000388 /// the set of patterns for each top-level opcode.
Evan Chengf5493192006-08-26 01:02:19 +0000389 std::set<std::string> &GeneratedDecl;
Evan Chengfceb57a2006-07-15 08:45:20 +0000390 /// TargetOpcodes - The target specific opcodes used by the resulting
391 /// instructions.
392 std::vector<std::string> &TargetOpcodes;
Evan Chengf8729402006-07-16 06:12:52 +0000393 std::vector<std::string> &TargetVTs;
Dan Gohmane4c67cd2008-05-31 02:11:25 +0000394 /// OutputIsVariadic - Records whether the instruction output pattern uses
395 /// variable_ops. This requires that the Emit function be passed an
396 /// additional argument to indicate where the input varargs operands
397 /// begin.
398 bool &OutputIsVariadic;
399 /// NumInputRootOps - Records the number of operands the root node of the
400 /// input pattern has. This information is used in the generated code to
401 /// pass to Emit functions when variable_ops processing is needed.
402 unsigned &NumInputRootOps;
Chris Lattner8a0604b2006-01-28 20:31:24 +0000403
Evan Chenge4a8a6e2006-02-03 06:22:41 +0000404 std::string ChainName;
Chris Lattner8a0604b2006-01-28 20:31:24 +0000405 unsigned TmpNo;
Evan Chengfceb57a2006-07-15 08:45:20 +0000406 unsigned OpcNo;
Evan Chengf8729402006-07-16 06:12:52 +0000407 unsigned VTNo;
Chris Lattner8a0604b2006-01-28 20:31:24 +0000408
409 void emitCheck(const std::string &S) {
410 if (!S.empty())
Evan Cheng676d7312006-08-26 00:59:04 +0000411 GeneratedCode.push_back(std::make_pair(1, S));
Chris Lattner8a0604b2006-01-28 20:31:24 +0000412 }
413 void emitCode(const std::string &S) {
414 if (!S.empty())
Evan Cheng676d7312006-08-26 00:59:04 +0000415 GeneratedCode.push_back(std::make_pair(0, S));
416 }
417 void emitInit(const std::string &S) {
418 if (!S.empty())
419 GeneratedCode.push_back(std::make_pair(2, S));
Chris Lattner8a0604b2006-01-28 20:31:24 +0000420 }
Evan Chengf5493192006-08-26 01:02:19 +0000421 void emitDecl(const std::string &S) {
Evan Cheng21ad3922006-02-07 00:37:41 +0000422 assert(!S.empty() && "Invalid declaration");
Evan Chengf5493192006-08-26 01:02:19 +0000423 GeneratedDecl.insert(S);
Evan Cheng21ad3922006-02-07 00:37:41 +0000424 }
Evan Chengfceb57a2006-07-15 08:45:20 +0000425 void emitOpcode(const std::string &Opc) {
426 TargetOpcodes.push_back(Opc);
427 OpcNo++;
428 }
Evan Chengf8729402006-07-16 06:12:52 +0000429 void emitVT(const std::string &VT) {
430 TargetVTs.push_back(VT);
431 VTNo++;
432 }
Evan Chengb915f312005-12-09 22:45:35 +0000433public:
Dan Gohman22bb3112008-08-22 00:20:26 +0000434 PatternCodeEmitter(CodeGenDAGPatterns &cgp, std::string predcheck,
Evan Cheng58e84a62005-12-14 22:02:59 +0000435 TreePatternNode *pattern, TreePatternNode *instr,
Evan Cheng676d7312006-08-26 00:59:04 +0000436 std::vector<std::pair<unsigned, std::string> > &gc,
Evan Chengf5493192006-08-26 01:02:19 +0000437 std::set<std::string> &gd,
Evan Chengfceb57a2006-07-15 08:45:20 +0000438 std::vector<std::string> &to,
Dan Gohmane4c67cd2008-05-31 02:11:25 +0000439 std::vector<std::string> &tv,
440 bool &oiv,
441 unsigned &niro)
Dan Gohman22bb3112008-08-22 00:20:26 +0000442 : CGP(cgp), PredicateCheck(predcheck), Pattern(pattern), Instruction(instr),
Evan Cheng676d7312006-08-26 00:59:04 +0000443 GeneratedCode(gc), GeneratedDecl(gd),
444 TargetOpcodes(to), TargetVTs(tv),
Dan Gohmane4c67cd2008-05-31 02:11:25 +0000445 OutputIsVariadic(oiv), NumInputRootOps(niro),
Chris Lattner706d2d32006-08-09 16:44:44 +0000446 TmpNo(0), OpcNo(0), VTNo(0) {}
Evan Chengb915f312005-12-09 22:45:35 +0000447
448 /// EmitMatchCode - Emit a matcher for N, going to the label for PatternNo
449 /// if the match fails. At this point, we already know that the opcode for N
450 /// matches, and the SDNode for the result has the RootName specified name.
Evan Cheng13e9e9c2006-10-16 06:33:44 +0000451 void EmitMatchCode(TreePatternNode *N, TreePatternNode *P,
452 const std::string &RootName, const std::string &ChainSuffix,
453 bool &FoundChain) {
Dan Gohman69de1932008-02-06 22:27:42 +0000454
455 // Save loads/stores matched by a pattern.
456 if (!N->isLeaf() && N->getName().empty()) {
Mon P Wang28873102008-06-25 08:15:39 +0000457 if (NodeHasProperty(N, SDNPMemOperand, CGP))
Dan Gohman69de1932008-02-06 22:27:42 +0000458 LSI.push_back(RootName);
Dan Gohman69de1932008-02-06 22:27:42 +0000459 }
460
Evan Chenge41bf822006-02-05 06:43:12 +0000461 bool isRoot = (P == NULL);
Evan Cheng58e84a62005-12-14 22:02:59 +0000462 // Emit instruction predicates. Each predicate is just a string for now.
463 if (isRoot) {
Dan Gohmane4c67cd2008-05-31 02:11:25 +0000464 // Record input varargs info.
465 NumInputRootOps = N->getNumChildren();
466
Evan Chengf9d03182008-07-03 08:39:51 +0000467 if (DisablePatternForFastISel(N, CGP))
Bill Wendling98a366d2009-04-29 23:29:43 +0000468 emitCheck("OptLevel != CodeGenOpt::None");
Evan Chengf9d03182008-07-03 08:39:51 +0000469
Chris Lattner8a0604b2006-01-28 20:31:24 +0000470 emitCheck(PredicateCheck);
Evan Cheng58e84a62005-12-14 22:02:59 +0000471 }
472
Evan Chengb915f312005-12-09 22:45:35 +0000473 if (N->isLeaf()) {
474 if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
Chris Lattner8a0604b2006-01-28 20:31:24 +0000475 emitCheck("cast<ConstantSDNode>(" + RootName +
Dan Gohmanb2a14322008-10-17 04:40:39 +0000476 ")->getSExtValue() == INT64_C(" +
477 itostr(II->getValue()) + ")");
Evan Chengb915f312005-12-09 22:45:35 +0000478 return;
479 } else if (!NodeIsComplexPattern(N)) {
480 assert(0 && "Cannot match this as a leaf value!");
481 abort();
482 }
483 }
484
Chris Lattner488580c2006-01-28 19:06:51 +0000485 // If this node has a name associated with it, capture it in VariableMap. If
Evan Chengb915f312005-12-09 22:45:35 +0000486 // we already saw this in the pattern, emit code to verify dagness.
487 if (!N->getName().empty()) {
488 std::string &VarMapEntry = VariableMap[N->getName()];
489 if (VarMapEntry.empty()) {
490 VarMapEntry = RootName;
491 } else {
492 // If we get here, this is a second reference to a specific name. Since
493 // we already have checked that the first reference is valid, we don't
494 // have to recursively match it, just check that it's the same as the
495 // previously named thing.
Chris Lattner67a202b2006-01-28 20:43:52 +0000496 emitCheck(VarMapEntry + " == " + RootName);
Evan Chengb915f312005-12-09 22:45:35 +0000497 return;
498 }
Evan Chengf805c2e2006-01-12 19:35:54 +0000499
500 if (!N->isLeaf())
501 OperatorMap[N->getName()] = N->getOperator();
Evan Chengb915f312005-12-09 22:45:35 +0000502 }
503
504
505 // Emit code to load the child nodes and match their contents recursively.
506 unsigned OpNo = 0;
Chris Lattner6cefb772008-01-05 22:25:12 +0000507 bool NodeHasChain = NodeHasProperty (N, SDNPHasChain, CGP);
508 bool HasChain = PatternHasProperty(N, SDNPHasChain, CGP);
Evan Cheng1feeeec2006-01-26 19:13:45 +0000509 bool EmittedUseCheck = false;
Evan Cheng86217892005-12-12 19:37:43 +0000510 if (HasChain) {
Evan Cheng76356d92006-01-20 01:11:03 +0000511 if (NodeHasChain)
512 OpNo = 1;
Evan Chengb915f312005-12-09 22:45:35 +0000513 if (!isRoot) {
Chris Lattner8a0604b2006-01-28 20:31:24 +0000514 // Multiple uses of actual result?
Chris Lattner67a202b2006-01-28 20:43:52 +0000515 emitCheck(RootName + ".hasOneUse()");
Evan Cheng1feeeec2006-01-26 19:13:45 +0000516 EmittedUseCheck = true;
Evan Chenge41bf822006-02-05 06:43:12 +0000517 if (NodeHasChain) {
Evan Chenge41bf822006-02-05 06:43:12 +0000518 // If the immediate use can somehow reach this node through another
519 // path, then can't fold it either or it will create a cycle.
520 // e.g. In the following diagram, XX can reach ld through YY. If
521 // ld is folded into XX, then YY is both a predecessor and a successor
522 // of XX.
523 //
524 // [ld]
525 // ^ ^
526 // | |
527 // / \---
528 // / [YY]
529 // | ^
530 // [XX]-------|
Evan Chengf9d03182008-07-03 08:39:51 +0000531 bool NeedCheck = P != Pattern;
532 if (!NeedCheck) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000533 const SDNodeInfo &PInfo = CGP.getSDNodeInfo(P->getOperator());
Evan Cheng13e9e9c2006-10-16 06:33:44 +0000534 NeedCheck =
Chris Lattner6cefb772008-01-05 22:25:12 +0000535 P->getOperator() == CGP.get_intrinsic_void_sdnode() ||
536 P->getOperator() == CGP.get_intrinsic_w_chain_sdnode() ||
537 P->getOperator() == CGP.get_intrinsic_wo_chain_sdnode() ||
Evan Chengce1381a2006-10-14 08:30:15 +0000538 PInfo.getNumOperands() > 1 ||
Evan Cheng94b30402006-10-11 21:02:01 +0000539 PInfo.hasProperty(SDNPHasChain) ||
540 PInfo.hasProperty(SDNPInFlag) ||
Evan Cheng13e9e9c2006-10-16 06:33:44 +0000541 PInfo.hasProperty(SDNPOptInFlag);
542 }
543
544 if (NeedCheck) {
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000545 std::string ParentName(RootName.begin(), RootName.end()-1);
Evan Cheng884c70c2008-11-27 00:49:46 +0000546 emitCheck("IsLegalAndProfitableToFold(" + RootName +
547 ".getNode(), " + ParentName + ".getNode(), N.getNode())");
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000548 }
Evan Chenge41bf822006-02-05 06:43:12 +0000549 }
Evan Chengb915f312005-12-09 22:45:35 +0000550 }
Evan Chenge41bf822006-02-05 06:43:12 +0000551
Evan Chengc15d18c2006-01-27 22:13:45 +0000552 if (NodeHasChain) {
Evan Cheng4326ef52006-10-12 02:08:53 +0000553 if (FoundChain) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000554 emitCheck("(" + ChainName + ".getNode() == " + RootName + ".getNode() || "
555 "IsChainCompatible(" + ChainName + ".getNode(), " +
556 RootName + ".getNode()))");
Evan Cheng4326ef52006-10-12 02:08:53 +0000557 OrigChains.push_back(std::make_pair(ChainName, RootName));
558 } else
Evan Chenge6389932006-07-21 22:19:51 +0000559 FoundChain = true;
Evan Chenge4a8a6e2006-02-03 06:22:41 +0000560 ChainName = "Chain" + ChainSuffix;
Dan Gohman475871a2008-07-27 21:46:04 +0000561 emitInit("SDValue " + ChainName + " = " + RootName +
Evan Chenge6389932006-07-21 22:19:51 +0000562 ".getOperand(0);");
Evan Cheng1cf6db22006-01-06 00:41:12 +0000563 }
Evan Chengb915f312005-12-09 22:45:35 +0000564 }
565
Evan Cheng54597732006-01-26 00:22:25 +0000566 // Don't fold any node which reads or writes a flag and has multiple uses.
Evan Chenge41bf822006-02-05 06:43:12 +0000567 // FIXME: We really need to separate the concepts of flag and "glue". Those
Evan Cheng54597732006-01-26 00:22:25 +0000568 // real flag results, e.g. X86CMP output, can have multiple uses.
Evan Chenge41bf822006-02-05 06:43:12 +0000569 // FIXME: If the optional incoming flag does not exist. Then it is ok to
570 // fold it.
Evan Cheng1feeeec2006-01-26 19:13:45 +0000571 if (!isRoot &&
Chris Lattner6cefb772008-01-05 22:25:12 +0000572 (PatternHasProperty(N, SDNPInFlag, CGP) ||
573 PatternHasProperty(N, SDNPOptInFlag, CGP) ||
574 PatternHasProperty(N, SDNPOutFlag, CGP))) {
Evan Cheng1feeeec2006-01-26 19:13:45 +0000575 if (!EmittedUseCheck) {
Chris Lattner8a0604b2006-01-28 20:31:24 +0000576 // Multiple uses of actual result?
Chris Lattner67a202b2006-01-28 20:43:52 +0000577 emitCheck(RootName + ".hasOneUse()");
Evan Cheng54597732006-01-26 00:22:25 +0000578 }
579 }
580
Dan Gohman0540e172008-10-15 06:17:21 +0000581 // If there are node predicates for this, emit the calls.
582 for (unsigned i = 0, e = N->getPredicateFns().size(); i != e; ++i)
583 emitCheck(N->getPredicateFns()[i] + "(" + RootName + ".getNode())");
Evan Chengd3eea902006-10-09 21:02:17 +0000584
Chris Lattner39e73f72006-10-11 04:05:55 +0000585 // If this is an 'and R, 1234' where the operation is AND/OR and the RHS is
586 // a constant without a predicate fn that has more that one bit set, handle
587 // this as a special case. This is usually for targets that have special
588 // handling of certain large constants (e.g. alpha with it's 8/16/32-bit
589 // handling stuff). Using these instructions is often far more efficient
590 // than materializing the constant. Unfortunately, both the instcombiner
591 // and the dag combiner can often infer that bits are dead, and thus drop
592 // them from the mask in the dag. For example, it might turn 'AND X, 255'
593 // into 'AND X, 254' if it knows the low bit is set. Emit code that checks
594 // to handle this.
595 if (!N->isLeaf() &&
596 (N->getOperator()->getName() == "and" ||
597 N->getOperator()->getName() == "or") &&
598 N->getChild(1)->isLeaf() &&
Dan Gohman0540e172008-10-15 06:17:21 +0000599 N->getChild(1)->getPredicateFns().empty()) {
Chris Lattner39e73f72006-10-11 04:05:55 +0000600 if (IntInit *II = dynamic_cast<IntInit*>(N->getChild(1)->getLeafValue())) {
601 if (!isPowerOf2_32(II->getValue())) { // Don't bother with single bits.
Dan Gohman475871a2008-07-27 21:46:04 +0000602 emitInit("SDValue " + RootName + "0" + " = " +
Chris Lattner39e73f72006-10-11 04:05:55 +0000603 RootName + ".getOperand(" + utostr(0) + ");");
Dan Gohman475871a2008-07-27 21:46:04 +0000604 emitInit("SDValue " + RootName + "1" + " = " +
Chris Lattner39e73f72006-10-11 04:05:55 +0000605 RootName + ".getOperand(" + utostr(1) + ");");
606
Dan Gohman0b53d982008-12-19 18:13:39 +0000607 unsigned NTmp = TmpNo++;
608 emitCode("ConstantSDNode *Tmp" + utostr(NTmp) +
609 " = dyn_cast<ConstantSDNode>(" + RootName + "1);");
610 emitCheck("Tmp" + utostr(NTmp));
Chris Lattner39e73f72006-10-11 04:05:55 +0000611 const char *MaskPredicate = N->getOperator()->getName() == "or"
612 ? "CheckOrMask(" : "CheckAndMask(";
Dan Gohman0b53d982008-12-19 18:13:39 +0000613 emitCheck(MaskPredicate + RootName + "0, Tmp" + utostr(NTmp) +
614 ", INT64_C(" + itostr(II->getValue()) + "))");
Chris Lattner39e73f72006-10-11 04:05:55 +0000615
Christopher Lamb85356242008-01-31 07:27:46 +0000616 EmitChildMatchCode(N->getChild(0), N, RootName + utostr(0), RootName,
Chris Lattner39e73f72006-10-11 04:05:55 +0000617 ChainSuffix + utostr(0), FoundChain);
618 return;
619 }
620 }
621 }
622
Evan Chengb915f312005-12-09 22:45:35 +0000623 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
Dan Gohman475871a2008-07-27 21:46:04 +0000624 emitInit("SDValue " + RootName + utostr(OpNo) + " = " +
Chris Lattner8a0604b2006-01-28 20:31:24 +0000625 RootName + ".getOperand(" +utostr(OpNo) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +0000626
Christopher Lamb85356242008-01-31 07:27:46 +0000627 EmitChildMatchCode(N->getChild(i), N, RootName + utostr(OpNo), RootName,
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000628 ChainSuffix + utostr(OpNo), FoundChain);
Evan Chengb915f312005-12-09 22:45:35 +0000629 }
630
Evan Cheng676d7312006-08-26 00:59:04 +0000631 // Handle cases when root is a complex pattern.
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000632 const ComplexPattern *CP;
Chris Lattner6cefb772008-01-05 22:25:12 +0000633 if (isRoot && N->isLeaf() && (CP = NodeGetComplexPattern(N, CGP))) {
Evan Cheng676d7312006-08-26 00:59:04 +0000634 std::string Fn = CP->getSelectFunc();
635 unsigned NumOps = CP->getNumOperands();
636 for (unsigned i = 0; i < NumOps; ++i) {
Dan Gohman05aae182009-01-16 02:05:52 +0000637 emitDecl("CPTmp" + RootName + "_" + utostr(i));
638 emitCode("SDValue CPTmp" + RootName + "_" + utostr(i) + ";");
Evan Cheng676d7312006-08-26 00:59:04 +0000639 }
Evan Cheng94b30402006-10-11 21:02:01 +0000640 if (CP->hasProperty(SDNPHasChain)) {
641 emitDecl("CPInChain");
642 emitDecl("Chain" + ChainSuffix);
Dan Gohman475871a2008-07-27 21:46:04 +0000643 emitCode("SDValue CPInChain;");
644 emitCode("SDValue Chain" + ChainSuffix + ";");
Evan Cheng94b30402006-10-11 21:02:01 +0000645 }
Evan Cheng676d7312006-08-26 00:59:04 +0000646
Evan Cheng811731e2006-11-08 20:31:10 +0000647 std::string Code = Fn + "(" + RootName + ", " + RootName;
Evan Cheng676d7312006-08-26 00:59:04 +0000648 for (unsigned i = 0; i < NumOps; i++)
Dan Gohman05aae182009-01-16 02:05:52 +0000649 Code += ", CPTmp" + RootName + "_" + utostr(i);
Evan Cheng94b30402006-10-11 21:02:01 +0000650 if (CP->hasProperty(SDNPHasChain)) {
651 ChainName = "Chain" + ChainSuffix;
652 Code += ", CPInChain, Chain" + ChainSuffix;
653 }
Evan Cheng676d7312006-08-26 00:59:04 +0000654 emitCheck(Code + ")");
655 }
Evan Chengb915f312005-12-09 22:45:35 +0000656 }
Chris Lattner39e73f72006-10-11 04:05:55 +0000657
Evan Cheng13e9e9c2006-10-16 06:33:44 +0000658 void EmitChildMatchCode(TreePatternNode *Child, TreePatternNode *Parent,
Christopher Lamb85356242008-01-31 07:27:46 +0000659 const std::string &RootName,
660 const std::string &ParentRootName,
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000661 const std::string &ChainSuffix, bool &FoundChain) {
662 if (!Child->isLeaf()) {
663 // If it's not a leaf, recursively match.
Chris Lattner6cefb772008-01-05 22:25:12 +0000664 const SDNodeInfo &CInfo = CGP.getSDNodeInfo(Child->getOperator());
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000665 emitCheck(RootName + ".getOpcode() == " +
666 CInfo.getEnumName());
Evan Cheng13e9e9c2006-10-16 06:33:44 +0000667 EmitMatchCode(Child, Parent, RootName, ChainSuffix, FoundChain);
Evan Chenga58891f2008-02-05 22:50:29 +0000668 bool HasChain = false;
669 if (NodeHasProperty(Child, SDNPHasChain, CGP)) {
670 HasChain = true;
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000671 FoldedChains.push_back(std::make_pair(RootName, CInfo.getNumResults()));
Evan Chenga58891f2008-02-05 22:50:29 +0000672 }
Dale Johannesen874ae252009-06-02 03:12:52 +0000673 if (NodeHasProperty(Child, SDNPOutFlag, CGP)) {
Evan Chenga58891f2008-02-05 22:50:29 +0000674 assert(FoldedFlag.first == "" && FoldedFlag.second == 0 &&
675 "Pattern folded multiple nodes which produce flags?");
676 FoldedFlag = std::make_pair(RootName,
677 CInfo.getNumResults() + (unsigned)HasChain);
678 }
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000679 } else {
680 // If this child has a name associated with it, capture it in VarMap. If
681 // we already saw this in the pattern, emit code to verify dagness.
682 if (!Child->getName().empty()) {
683 std::string &VarMapEntry = VariableMap[Child->getName()];
684 if (VarMapEntry.empty()) {
685 VarMapEntry = RootName;
686 } else {
687 // If we get here, this is a second reference to a specific name.
688 // Since we already have checked that the first reference is valid,
689 // we don't have to recursively match it, just check that it's the
690 // same as the previously named thing.
691 emitCheck(VarMapEntry + " == " + RootName);
692 Duplicates.insert(RootName);
693 return;
694 }
695 }
696
697 // Handle leaves of various types.
698 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
699 Record *LeafRec = DI->getDef();
Chris Lattner646085d2006-11-14 21:18:40 +0000700 if (LeafRec->isSubClassOf("RegisterClass") ||
Chris Lattnera938ac62009-07-29 20:43:05 +0000701 LeafRec->isSubClassOf("PointerLikeRegClass")) {
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000702 // Handle register references. Nothing to do here.
703 } else if (LeafRec->isSubClassOf("Register")) {
704 // Handle register references.
705 } else if (LeafRec->isSubClassOf("ComplexPattern")) {
706 // Handle complex pattern.
Chris Lattner6cefb772008-01-05 22:25:12 +0000707 const ComplexPattern *CP = NodeGetComplexPattern(Child, CGP);
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000708 std::string Fn = CP->getSelectFunc();
709 unsigned NumOps = CP->getNumOperands();
710 for (unsigned i = 0; i < NumOps; ++i) {
Dan Gohman05aae182009-01-16 02:05:52 +0000711 emitDecl("CPTmp" + RootName + "_" + utostr(i));
712 emitCode("SDValue CPTmp" + RootName + "_" + utostr(i) + ";");
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000713 }
Evan Cheng94b30402006-10-11 21:02:01 +0000714 if (CP->hasProperty(SDNPHasChain)) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000715 const SDNodeInfo &PInfo = CGP.getSDNodeInfo(Parent->getOperator());
Evan Cheng94b30402006-10-11 21:02:01 +0000716 FoldedChains.push_back(std::make_pair("CPInChain",
717 PInfo.getNumResults()));
718 ChainName = "Chain" + ChainSuffix;
719 emitDecl("CPInChain");
720 emitDecl(ChainName);
Dan Gohman475871a2008-07-27 21:46:04 +0000721 emitCode("SDValue CPInChain;");
722 emitCode("SDValue " + ChainName + ";");
Evan Cheng94b30402006-10-11 21:02:01 +0000723 }
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000724
Christopher Lamb85356242008-01-31 07:27:46 +0000725 std::string Code = Fn + "(";
726 if (CP->hasAttribute(CPAttrParentAsRoot)) {
727 Code += ParentRootName + ", ";
728 } else {
729 Code += "N, ";
730 }
Evan Cheng13e9e9c2006-10-16 06:33:44 +0000731 if (CP->hasProperty(SDNPHasChain)) {
732 std::string ParentName(RootName.begin(), RootName.end()-1);
Evan Cheng811731e2006-11-08 20:31:10 +0000733 Code += ParentName + ", ";
Evan Cheng13e9e9c2006-10-16 06:33:44 +0000734 }
735 Code += RootName;
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000736 for (unsigned i = 0; i < NumOps; i++)
Dan Gohman05aae182009-01-16 02:05:52 +0000737 Code += ", CPTmp" + RootName + "_" + utostr(i);
Evan Cheng94b30402006-10-11 21:02:01 +0000738 if (CP->hasProperty(SDNPHasChain))
739 Code += ", CPInChain, Chain" + ChainSuffix;
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000740 emitCheck(Code + ")");
741 } else if (LeafRec->getName() == "srcvalue") {
742 // Place holder for SRCVALUE nodes. Nothing to do here.
743 } else if (LeafRec->isSubClassOf("ValueType")) {
744 // Make sure this is the specified value type.
745 emitCheck("cast<VTSDNode>(" + RootName +
746 ")->getVT() == MVT::" + LeafRec->getName());
747 } else if (LeafRec->isSubClassOf("CondCode")) {
748 // Make sure this is the specified cond code.
749 emitCheck("cast<CondCodeSDNode>(" + RootName +
750 ")->get() == ISD::" + LeafRec->getName());
751 } else {
752#ifndef NDEBUG
753 Child->dump();
Daniel Dunbar1a551802009-07-03 00:10:29 +0000754 errs() << " ";
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000755#endif
756 assert(0 && "Unknown leaf type!");
757 }
758
Dan Gohman0540e172008-10-15 06:17:21 +0000759 // If there are node predicates for this, emit the calls.
760 for (unsigned i = 0, e = Child->getPredicateFns().size(); i != e; ++i)
761 emitCheck(Child->getPredicateFns()[i] + "(" + RootName +
Gabor Greifba36cb52008-08-28 21:40:38 +0000762 ".getNode())");
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000763 } else if (IntInit *II =
764 dynamic_cast<IntInit*>(Child->getLeafValue())) {
Dan Gohman0b53d982008-12-19 18:13:39 +0000765 unsigned NTmp = TmpNo++;
766 emitCode("ConstantSDNode *Tmp"+ utostr(NTmp) +
767 " = dyn_cast<ConstantSDNode>("+
768 RootName + ");");
769 emitCheck("Tmp" + utostr(NTmp));
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000770 unsigned CTmp = TmpNo++;
Dan Gohman0b53d982008-12-19 18:13:39 +0000771 emitCode("int64_t CN"+ utostr(CTmp) +
772 " = Tmp" + utostr(NTmp) + "->getSExtValue();");
Dan Gohman63f97202008-10-17 01:33:43 +0000773 emitCheck("CN" + utostr(CTmp) + " == "
774 "INT64_C(" +itostr(II->getValue()) + ")");
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000775 } else {
776#ifndef NDEBUG
777 Child->dump();
778#endif
779 assert(0 && "Unknown leaf type!");
780 }
781 }
782 }
Evan Chengb915f312005-12-09 22:45:35 +0000783
784 /// EmitResultCode - Emit the action for a pattern. Now that it has matched
785 /// we actually have to build a DAG!
Evan Cheng676d7312006-08-26 00:59:04 +0000786 std::vector<std::string>
Evan Cheng85dbe1a2007-09-12 23:30:14 +0000787 EmitResultCode(TreePatternNode *N, std::vector<Record*> DstRegs,
Evan Cheng676d7312006-08-26 00:59:04 +0000788 bool InFlagDecled, bool ResNodeDecled,
789 bool LikeLeaf = false, bool isRoot = false) {
790 // List of arguments of getTargetNode() or SelectNodeTo().
791 std::vector<std::string> NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +0000792 // This is something selected from the pattern we matched.
793 if (!N->getName().empty()) {
Scott Michel6be48d42008-01-29 02:29:31 +0000794 const std::string &VarName = N->getName();
795 std::string Val = VariableMap[VarName];
796 bool ModifiedVal = false;
Scott Michel0123b7d2008-02-15 23:05:48 +0000797 if (Val.empty()) {
Daniel Dunbar1a551802009-07-03 00:10:29 +0000798 errs() << "Variable '" << VarName << " referenced but not defined "
Bill Wendling27926af2008-02-26 10:45:29 +0000799 << "and not caught earlier!\n";
800 abort();
Scott Michel0123b7d2008-02-15 23:05:48 +0000801 }
Evan Chengb915f312005-12-09 22:45:35 +0000802 if (Val[0] == 'T' && Val[1] == 'm' && Val[2] == 'p') {
803 // Already selected this operand, just return the tmpval.
Evan Cheng676d7312006-08-26 00:59:04 +0000804 NodeOps.push_back(Val);
805 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +0000806 }
807
808 const ComplexPattern *CP;
809 unsigned ResNo = TmpNo++;
Evan Chengb915f312005-12-09 22:45:35 +0000810 if (!N->isLeaf() && N->getOperator()->getName() == "imm") {
Nate Begemanb73628b2005-12-30 00:12:56 +0000811 assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
Chris Lattner78593132006-01-29 20:01:35 +0000812 std::string CastType;
Scott Michel6be48d42008-01-29 02:29:31 +0000813 std::string TmpVar = "Tmp" + utostr(ResNo);
Nate Begemanb73628b2005-12-30 00:12:56 +0000814 switch (N->getTypeNum(0)) {
Chris Lattnerd8a17282007-01-17 07:45:12 +0000815 default:
Daniel Dunbar1a551802009-07-03 00:10:29 +0000816 errs() << "Cannot handle " << getEnumName(N->getTypeNum(0))
Chris Lattnerd8a17282007-01-17 07:45:12 +0000817 << " type as an immediate constant. Aborting\n";
818 abort();
Chris Lattner78593132006-01-29 20:01:35 +0000819 case MVT::i1: CastType = "bool"; break;
820 case MVT::i8: CastType = "unsigned char"; break;
821 case MVT::i16: CastType = "unsigned short"; break;
822 case MVT::i32: CastType = "unsigned"; break;
823 case MVT::i64: CastType = "uint64_t"; break;
Evan Chengb915f312005-12-09 22:45:35 +0000824 }
Dan Gohman475871a2008-07-27 21:46:04 +0000825 emitCode("SDValue " + TmpVar +
Evan Chengfceb57a2006-07-15 08:45:20 +0000826 " = CurDAG->getTargetConstant(((" + CastType +
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000827 ") cast<ConstantSDNode>(" + Val + ")->getZExtValue()), " +
Evan Chengfceb57a2006-07-15 08:45:20 +0000828 getEnumName(N->getTypeNum(0)) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +0000829 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
830 // value if used multiple times by this pattern result.
Scott Michel6be48d42008-01-29 02:29:31 +0000831 Val = TmpVar;
832 ModifiedVal = true;
833 NodeOps.push_back(Val);
Nate Begemane1795842008-02-14 08:57:00 +0000834 } else if (!N->isLeaf() && N->getOperator()->getName() == "fpimm") {
835 assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
836 std::string TmpVar = "Tmp" + utostr(ResNo);
Dan Gohman475871a2008-07-27 21:46:04 +0000837 emitCode("SDValue " + TmpVar +
Dan Gohman4fbd7962008-09-12 18:08:03 +0000838 " = CurDAG->getTargetConstantFP(*cast<ConstantFPSDNode>(" +
839 Val + ")->getConstantFPValue(), cast<ConstantFPSDNode>(" +
840 Val + ")->getValueType(0));");
Nate Begemane1795842008-02-14 08:57:00 +0000841 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
842 // value if used multiple times by this pattern result.
843 Val = TmpVar;
844 ModifiedVal = true;
845 NodeOps.push_back(Val);
Evan Chengbb48e332006-01-12 07:54:57 +0000846 } else if (!N->isLeaf() && N->getOperator()->getName() == "texternalsym"){
Evan Chengf805c2e2006-01-12 19:35:54 +0000847 Record *Op = OperatorMap[N->getName()];
Bill Wendling056292f2008-09-16 21:48:12 +0000848 // Transform ExternalSymbol to TargetExternalSymbol
Evan Chengf805c2e2006-01-12 19:35:54 +0000849 if (Op && Op->getName() == "externalsym") {
Scott Michel6be48d42008-01-29 02:29:31 +0000850 std::string TmpVar = "Tmp"+utostr(ResNo);
Dan Gohman475871a2008-07-27 21:46:04 +0000851 emitCode("SDValue " + TmpVar + " = CurDAG->getTarget"
Bill Wendling056292f2008-09-16 21:48:12 +0000852 "ExternalSymbol(cast<ExternalSymbolSDNode>(" +
Evan Cheng2618d072006-05-17 20:37:59 +0000853 Val + ")->getSymbol(), " +
Chris Lattner8a0604b2006-01-28 20:31:24 +0000854 getEnumName(N->getTypeNum(0)) + ");");
Chris Lattner64906972006-09-21 18:28:27 +0000855 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select
856 // this value if used multiple times by this pattern result.
Scott Michel6be48d42008-01-29 02:29:31 +0000857 Val = TmpVar;
858 ModifiedVal = true;
Chris Lattner8a0604b2006-01-28 20:31:24 +0000859 }
Scott Michel6be48d42008-01-29 02:29:31 +0000860 NodeOps.push_back(Val);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000861 } else if (!N->isLeaf() && (N->getOperator()->getName() == "tglobaladdr"
862 || N->getOperator()->getName() == "tglobaltlsaddr")) {
Evan Chengf805c2e2006-01-12 19:35:54 +0000863 Record *Op = OperatorMap[N->getName()];
864 // Transform GlobalAddress to TargetGlobalAddress
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000865 if (Op && (Op->getName() == "globaladdr" ||
866 Op->getName() == "globaltlsaddr")) {
Scott Michel6be48d42008-01-29 02:29:31 +0000867 std::string TmpVar = "Tmp" + utostr(ResNo);
Dan Gohman475871a2008-07-27 21:46:04 +0000868 emitCode("SDValue " + TmpVar + " = CurDAG->getTarget"
Chris Lattner8a0604b2006-01-28 20:31:24 +0000869 "GlobalAddress(cast<GlobalAddressSDNode>(" + Val +
Evan Cheng2618d072006-05-17 20:37:59 +0000870 ")->getGlobal(), " + getEnumName(N->getTypeNum(0)) +
Chris Lattner8a0604b2006-01-28 20:31:24 +0000871 ");");
Chris Lattner64906972006-09-21 18:28:27 +0000872 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select
873 // this value if used multiple times by this pattern result.
Scott Michel6be48d42008-01-29 02:29:31 +0000874 Val = TmpVar;
875 ModifiedVal = true;
Chris Lattner8a0604b2006-01-28 20:31:24 +0000876 }
Evan Cheng676d7312006-08-26 00:59:04 +0000877 NodeOps.push_back(Val);
Scott Michel6be48d42008-01-29 02:29:31 +0000878 } else if (!N->isLeaf()
879 && (N->getOperator()->getName() == "texternalsym"
880 || N->getOperator()->getName() == "tconstpool")) {
881 // Do not rewrite the variable name, since we don't generate a new
882 // temporary.
Evan Cheng676d7312006-08-26 00:59:04 +0000883 NodeOps.push_back(Val);
Chris Lattner6cefb772008-01-05 22:25:12 +0000884 } else if (N->isLeaf() && (CP = NodeGetComplexPattern(N, CGP))) {
Evan Cheng676d7312006-08-26 00:59:04 +0000885 for (unsigned i = 0; i < CP->getNumOperands(); ++i) {
Dan Gohman05aae182009-01-16 02:05:52 +0000886 NodeOps.push_back("CPTmp" + Val + "_" + utostr(i));
Evan Chengb0793f92006-05-25 00:21:44 +0000887 }
Evan Chengb915f312005-12-09 22:45:35 +0000888 } else {
Evan Cheng676d7312006-08-26 00:59:04 +0000889 // This node, probably wrapped in a SDNodeXForm, behaves like a leaf
Evan Cheng863bf5a2006-03-20 22:53:06 +0000890 // node even if it isn't one. Don't select it.
Evan Cheng676d7312006-08-26 00:59:04 +0000891 if (!LikeLeaf) {
Chris Lattner706d2d32006-08-09 16:44:44 +0000892 if (isRoot && N->isLeaf()) {
Evan Cheng676d7312006-08-26 00:59:04 +0000893 emitCode("ReplaceUses(N, " + Val + ");");
Evan Cheng06d64702006-08-11 08:59:35 +0000894 emitCode("return NULL;");
Chris Lattner706d2d32006-08-09 16:44:44 +0000895 }
Evan Cheng83e1a6a2006-03-23 02:35:32 +0000896 }
Evan Cheng676d7312006-08-26 00:59:04 +0000897 NodeOps.push_back(Val);
Evan Chengb915f312005-12-09 22:45:35 +0000898 }
Scott Michel6be48d42008-01-29 02:29:31 +0000899
900 if (ModifiedVal) {
901 VariableMap[VarName] = Val;
902 }
Evan Cheng676d7312006-08-26 00:59:04 +0000903 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +0000904 }
Evan Chengb915f312005-12-09 22:45:35 +0000905 if (N->isLeaf()) {
906 // If this is an explicit register reference, handle it.
907 if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) {
908 unsigned ResNo = TmpNo++;
909 if (DI->getDef()->isSubClassOf("Register")) {
Dan Gohman475871a2008-07-27 21:46:04 +0000910 emitCode("SDValue Tmp" + utostr(ResNo) + " = CurDAG->getRegister(" +
Chris Lattner6cefb772008-01-05 22:25:12 +0000911 getQualifiedName(DI->getDef()) + ", " +
Chris Lattner8a0604b2006-01-28 20:31:24 +0000912 getEnumName(N->getTypeNum(0)) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +0000913 NodeOps.push_back("Tmp" + utostr(ResNo));
914 return NodeOps;
Evan Cheng7774be42007-07-05 07:19:45 +0000915 } else if (DI->getDef()->getName() == "zero_reg") {
Dan Gohman475871a2008-07-27 21:46:04 +0000916 emitCode("SDValue Tmp" + utostr(ResNo) +
Evan Cheng7774be42007-07-05 07:19:45 +0000917 " = CurDAG->getRegister(0, " +
918 getEnumName(N->getTypeNum(0)) + ");");
919 NodeOps.push_back("Tmp" + utostr(ResNo));
920 return NodeOps;
Dan Gohmanf8c73942009-04-13 15:38:05 +0000921 } else if (DI->getDef()->isSubClassOf("RegisterClass")) {
922 // Handle a reference to a register class. This is used
923 // in COPY_TO_SUBREG instructions.
924 emitCode("SDValue Tmp" + utostr(ResNo) +
925 " = CurDAG->getTargetConstant(" +
926 getQualifiedName(DI->getDef()) + "RegClassID, " +
927 "MVT::i32);");
928 NodeOps.push_back("Tmp" + utostr(ResNo));
929 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +0000930 }
931 } else if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
932 unsigned ResNo = TmpNo++;
Nate Begemanb73628b2005-12-30 00:12:56 +0000933 assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
Dan Gohman475871a2008-07-27 21:46:04 +0000934 emitCode("SDValue Tmp" + utostr(ResNo) +
Daniel Dunbarbd17a292009-07-30 18:18:54 +0000935 " = CurDAG->getTargetConstant(0x" +
936 utohexstr((uint64_t) II->getValue()) +
Scott Michel0123b7d2008-02-15 23:05:48 +0000937 "ULL, " + getEnumName(N->getTypeNum(0)) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +0000938 NodeOps.push_back("Tmp" + utostr(ResNo));
939 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +0000940 }
941
Jim Laskey16d42c62006-07-11 18:25:13 +0000942#ifndef NDEBUG
943 N->dump();
944#endif
Evan Chengb915f312005-12-09 22:45:35 +0000945 assert(0 && "Unknown leaf type!");
Evan Cheng676d7312006-08-26 00:59:04 +0000946 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +0000947 }
948
949 Record *Op = N->getOperator();
950 if (Op->isSubClassOf("Instruction")) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000951 const CodeGenTarget &CGT = CGP.getTargetInfo();
Evan Cheng7b05bd52005-12-23 22:11:47 +0000952 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
Chris Lattner6cefb772008-01-05 22:25:12 +0000953 const DAGInstruction &Inst = CGP.getInstruction(Op);
Chris Lattnerf1ab4f12008-01-06 01:52:22 +0000954 const TreePattern *InstPat = Inst.getPattern();
Evan Chengd23aa5a2007-09-25 01:48:59 +0000955 // FIXME: Assume actual pattern comes before "implicit".
Evan Cheng045953c2006-05-10 00:05:46 +0000956 TreePatternNode *InstPatNode =
Evan Cheng85dbe1a2007-09-12 23:30:14 +0000957 isRoot ? (InstPat ? InstPat->getTree(0) : Pattern)
958 : (InstPat ? InstPat->getTree(0) : NULL);
Dan Gohmanfebf71d2009-01-16 21:30:55 +0000959 if (InstPatNode && !InstPatNode->isLeaf() &&
960 InstPatNode->getOperator()->getName() == "set") {
Evan Chengaeb7d4d2007-09-11 19:52:18 +0000961 InstPatNode = InstPatNode->getChild(InstPatNode->getNumChildren()-1);
Evan Cheng045953c2006-05-10 00:05:46 +0000962 }
Dan Gohmane4c67cd2008-05-31 02:11:25 +0000963 bool IsVariadic = isRoot && II.isVariadic;
Evan Cheng85dbe1a2007-09-12 23:30:14 +0000964 // FIXME: fix how we deal with physical register operands.
Evan Cheng045953c2006-05-10 00:05:46 +0000965 bool HasImpInputs = isRoot && Inst.getNumImpOperands() > 0;
Evan Cheng85dbe1a2007-09-12 23:30:14 +0000966 bool HasImpResults = isRoot && DstRegs.size() > 0;
Evan Cheng045953c2006-05-10 00:05:46 +0000967 bool NodeHasOptInFlag = isRoot &&
Chris Lattner6cefb772008-01-05 22:25:12 +0000968 PatternHasProperty(Pattern, SDNPOptInFlag, CGP);
Evan Cheng045953c2006-05-10 00:05:46 +0000969 bool NodeHasInFlag = isRoot &&
Chris Lattner6cefb772008-01-05 22:25:12 +0000970 PatternHasProperty(Pattern, SDNPInFlag, CGP);
Evan Chengef61ed32007-09-07 23:59:02 +0000971 bool NodeHasOutFlag = isRoot &&
Chris Lattner6cefb772008-01-05 22:25:12 +0000972 PatternHasProperty(Pattern, SDNPOutFlag, CGP);
Evan Cheng045953c2006-05-10 00:05:46 +0000973 bool NodeHasChain = InstPatNode &&
Chris Lattner6cefb772008-01-05 22:25:12 +0000974 PatternHasProperty(InstPatNode, SDNPHasChain, CGP);
Evan Cheng3eff89b2006-05-10 02:47:57 +0000975 bool InputHasChain = isRoot &&
Chris Lattner6cefb772008-01-05 22:25:12 +0000976 NodeHasProperty(Pattern, SDNPHasChain, CGP);
Chris Lattnerefe9f4a2006-11-04 05:12:02 +0000977 unsigned NumResults = Inst.getNumResults();
Evan Cheng85dbe1a2007-09-12 23:30:14 +0000978 unsigned NumDstRegs = HasImpResults ? DstRegs.size() : 0;
Evan Cheng4fba2812005-12-20 07:37:41 +0000979
Dan Gohmane4c67cd2008-05-31 02:11:25 +0000980 // Record output varargs info.
981 OutputIsVariadic = IsVariadic;
982
Evan Chengfceb57a2006-07-15 08:45:20 +0000983 if (NodeHasOptInFlag) {
Evan Cheng676d7312006-08-26 00:59:04 +0000984 emitCode("bool HasInFlag = "
Evan Chengf8729402006-07-16 06:12:52 +0000985 "(N.getOperand(N.getNumOperands()-1).getValueType() == MVT::Flag);");
Evan Chengfceb57a2006-07-15 08:45:20 +0000986 }
Dan Gohmane4c67cd2008-05-31 02:11:25 +0000987 if (IsVariadic)
Dan Gohman475871a2008-07-27 21:46:04 +0000988 emitCode("SmallVector<SDValue, 8> Ops" + utostr(OpcNo) + ";");
Evan Cheng4fba2812005-12-20 07:37:41 +0000989
Evan Cheng823b7522006-01-19 21:57:10 +0000990 // How many results is this pattern expected to produce?
Evan Cheng85dbe1a2007-09-12 23:30:14 +0000991 unsigned NumPatResults = 0;
Evan Cheng823b7522006-01-19 21:57:10 +0000992 for (unsigned i = 0, e = Pattern->getExtTypes().size(); i != e; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000993 MVT::SimpleValueType VT = Pattern->getTypeNum(i);
Evan Cheng823b7522006-01-19 21:57:10 +0000994 if (VT != MVT::isVoid && VT != MVT::Flag)
Evan Cheng85dbe1a2007-09-12 23:30:14 +0000995 NumPatResults++;
Evan Cheng823b7522006-01-19 21:57:10 +0000996 }
997
Evan Cheng4326ef52006-10-12 02:08:53 +0000998 if (OrigChains.size() > 0) {
999 // The original input chain is being ignored. If it is not just
1000 // pointing to the op that's being folded, we should create a
1001 // TokenFactor with it and the chain of the folded op as the new chain.
1002 // We could potentially be doing multiple levels of folding, in that
1003 // case, the TokenFactor can have more operands.
Dan Gohman475871a2008-07-27 21:46:04 +00001004 emitCode("SmallVector<SDValue, 8> InChains;");
Evan Cheng4326ef52006-10-12 02:08:53 +00001005 for (unsigned i = 0, e = OrigChains.size(); i < e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001006 emitCode("if (" + OrigChains[i].first + ".getNode() != " +
1007 OrigChains[i].second + ".getNode()) {");
Evan Cheng4326ef52006-10-12 02:08:53 +00001008 emitCode(" InChains.push_back(" + OrigChains[i].first + ");");
1009 emitCode("}");
1010 }
Evan Cheng4326ef52006-10-12 02:08:53 +00001011 emitCode("InChains.push_back(" + ChainName + ");");
Dale Johannesened2eee62009-02-06 01:31:28 +00001012 emitCode(ChainName + " = CurDAG->getNode(ISD::TokenFactor, "
1013 "N.getDebugLoc(), MVT::Other, "
Evan Cheng4326ef52006-10-12 02:08:53 +00001014 "&InChains[0], InChains.size());");
David Greene8ad4c002008-10-27 21:56:29 +00001015 if (GenDebug) {
1016 emitCode("CurDAG->setSubgraphColor(" + ChainName +".getNode(), \"yellow\");");
1017 emitCode("CurDAG->setSubgraphColor(" + ChainName +".getNode(), \"black\");");
1018 }
Evan Cheng4326ef52006-10-12 02:08:53 +00001019 }
1020
Chris Lattnerefe9f4a2006-11-04 05:12:02 +00001021 // Loop over all of the operands of the instruction pattern, emitting code
1022 // to fill them all in. The node 'N' usually has number children equal to
1023 // the number of input operands of the instruction. However, in cases
1024 // where there are predicate operands for an instruction, we need to fill
1025 // in the 'execute always' values. Match up the node operands to the
1026 // instruction operands to do this.
Evan Cheng676d7312006-08-26 00:59:04 +00001027 std::vector<std::string> AllOps;
Chris Lattnerefe9f4a2006-11-04 05:12:02 +00001028 for (unsigned ChildNo = 0, InstOpNo = NumResults;
1029 InstOpNo != II.OperandList.size(); ++InstOpNo) {
1030 std::vector<std::string> Ops;
1031
Dan Gohmand35121a2008-05-29 19:57:41 +00001032 // Determine what to emit for this operand.
Evan Cheng59039632007-05-08 21:04:07 +00001033 Record *OperandNode = II.OperandList[InstOpNo].Rec;
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001034 if ((OperandNode->isSubClassOf("PredicateOperand") ||
1035 OperandNode->isSubClassOf("OptionalDefOperand")) &&
1036 !CGP.getDefaultOperand(OperandNode).DefaultOps.empty()) {
Dan Gohmand35121a2008-05-29 19:57:41 +00001037 // This is a predicate or optional def operand; emit the
Evan Chenga9559392007-07-06 01:05:26 +00001038 // 'default ops' operands.
1039 const DAGDefaultOperand &DefaultOp =
Chris Lattner6cefb772008-01-05 22:25:12 +00001040 CGP.getDefaultOperand(II.OperandList[InstOpNo].Rec);
Evan Chenga9559392007-07-06 01:05:26 +00001041 for (unsigned i = 0, e = DefaultOp.DefaultOps.size(); i != e; ++i) {
Evan Cheng30729b42007-09-17 22:26:41 +00001042 Ops = EmitResultCode(DefaultOp.DefaultOps[i], DstRegs,
Chris Lattnerefe9f4a2006-11-04 05:12:02 +00001043 InFlagDecled, ResNodeDecled);
1044 AllOps.insert(AllOps.end(), Ops.begin(), Ops.end());
1045 }
Dan Gohmand35121a2008-05-29 19:57:41 +00001046 } else {
1047 // Otherwise this is a normal operand or a predicate operand without
1048 // 'execute always'; emit it.
1049 Ops = EmitResultCode(N->getChild(ChildNo), DstRegs,
1050 InFlagDecled, ResNodeDecled);
1051 AllOps.insert(AllOps.end(), Ops.begin(), Ops.end());
1052 ++ChildNo;
Chris Lattnerefe9f4a2006-11-04 05:12:02 +00001053 }
Evan Chengb915f312005-12-09 22:45:35 +00001054 }
1055
Evan Chengb915f312005-12-09 22:45:35 +00001056 // Emit all the chain and CopyToReg stuff.
Evan Cheng045953c2006-05-10 00:05:46 +00001057 bool ChainEmitted = NodeHasChain;
Dale Johannesen874ae252009-06-02 03:12:52 +00001058 if (NodeHasInFlag || HasImpInputs)
Evan Cheng676d7312006-08-26 00:59:04 +00001059 EmitInFlagSelectCode(Pattern, "N", ChainEmitted,
1060 InFlagDecled, ResNodeDecled, true);
Dale Johannesen874ae252009-06-02 03:12:52 +00001061 if (NodeHasOptInFlag || NodeHasInFlag || HasImpInputs) {
Evan Cheng676d7312006-08-26 00:59:04 +00001062 if (!InFlagDecled) {
Dan Gohman475871a2008-07-27 21:46:04 +00001063 emitCode("SDValue InFlag(0, 0);");
Evan Cheng676d7312006-08-26 00:59:04 +00001064 InFlagDecled = true;
1065 }
Evan Chengf037ca62006-08-27 08:11:28 +00001066 if (NodeHasOptInFlag) {
1067 emitCode("if (HasInFlag) {");
1068 emitCode(" InFlag = N.getOperand(N.getNumOperands()-1);");
Evan Chengf037ca62006-08-27 08:11:28 +00001069 emitCode("}");
1070 }
Evan Chengbc6b86a2006-06-14 19:27:50 +00001071 }
Evan Chengb915f312005-12-09 22:45:35 +00001072
Evan Chengb915f312005-12-09 22:45:35 +00001073 unsigned ResNo = TmpNo++;
Evan Chengf037ca62006-08-27 08:11:28 +00001074
Dan Gohman95d11092008-07-07 21:00:17 +00001075 unsigned OpsNo = OpcNo;
1076 std::string CodePrefix;
1077 bool ChainAssignmentNeeded = NodeHasChain && !isRoot;
1078 std::deque<std::string> After;
1079 std::string NodeName;
1080 if (!isRoot) {
1081 NodeName = "Tmp" + utostr(ResNo);
Dan Gohman475871a2008-07-27 21:46:04 +00001082 CodePrefix = "SDValue " + NodeName + "(";
Evan Chengb915f312005-12-09 22:45:35 +00001083 } else {
Dan Gohman95d11092008-07-07 21:00:17 +00001084 NodeName = "ResNode";
1085 if (!ResNodeDecled) {
1086 CodePrefix = "SDNode *" + NodeName + " = ";
1087 ResNodeDecled = true;
1088 } else
1089 CodePrefix = NodeName + " = ";
Evan Chengb915f312005-12-09 22:45:35 +00001090 }
Evan Cheng4fba2812005-12-20 07:37:41 +00001091
Dan Gohman95d11092008-07-07 21:00:17 +00001092 std::string Code = "Opc" + utostr(OpcNo);
1093
Bill Wendling6e1bb382009-01-29 05:27:31 +00001094 if (!isRoot || (InputHasChain && !NodeHasChain))
Bill Wendlingca641832009-01-29 23:19:43 +00001095 // For call to "getTargetNode()".
Bill Wendling6e1bb382009-01-29 05:27:31 +00001096 Code += ", N.getDebugLoc()";
1097
Dan Gohman95d11092008-07-07 21:00:17 +00001098 emitOpcode(II.Namespace + "::" + II.TheDef->getName());
1099
1100 // Output order: results, chain, flags
1101 // Result types.
1102 if (NumResults > 0 && N->getTypeNum(0) != MVT::isVoid) {
1103 Code += ", VT" + utostr(VTNo);
1104 emitVT(getEnumName(N->getTypeNum(0)));
1105 }
1106 // Add types for implicit results in physical registers, scheduler will
1107 // care of adding copyfromreg nodes.
1108 for (unsigned i = 0; i < NumDstRegs; i++) {
1109 Record *RR = DstRegs[i];
1110 if (RR->isSubClassOf("Register")) {
1111 MVT::SimpleValueType RVT = getRegisterValueType(RR, CGT);
1112 Code += ", " + getEnumName(RVT);
1113 }
1114 }
1115 if (NodeHasChain)
1116 Code += ", MVT::Other";
Dale Johannesen874ae252009-06-02 03:12:52 +00001117 if (NodeHasOutFlag)
Dan Gohman95d11092008-07-07 21:00:17 +00001118 Code += ", MVT::Flag";
1119
1120 // Inputs.
1121 if (IsVariadic) {
1122 for (unsigned i = 0, e = AllOps.size(); i != e; ++i)
1123 emitCode("Ops" + utostr(OpsNo) + ".push_back(" + AllOps[i] + ");");
1124 AllOps.clear();
1125
1126 // Figure out whether any operands at the end of the op list are not
1127 // part of the variable section.
1128 std::string EndAdjust;
1129 if (NodeHasInFlag || HasImpInputs)
1130 EndAdjust = "-1"; // Always has one flag.
1131 else if (NodeHasOptInFlag)
1132 EndAdjust = "-(HasInFlag?1:0)"; // May have a flag.
1133
1134 emitCode("for (unsigned i = NumInputRootOps + " + utostr(NodeHasChain) +
1135 ", e = N.getNumOperands()" + EndAdjust + "; i != e; ++i) {");
1136
Dan Gohman95d11092008-07-07 21:00:17 +00001137 emitCode(" Ops" + utostr(OpsNo) + ".push_back(N.getOperand(i));");
1138 emitCode("}");
1139 }
1140
1141 // Generate MemOperandSDNodes nodes for each memory accesses covered by
1142 // this pattern.
Dan Gohman41474ba2008-12-03 02:30:17 +00001143 if (II.mayLoad | II.mayStore) {
Dan Gohman95d11092008-07-07 21:00:17 +00001144 std::vector<std::string>::const_iterator mi, mie;
1145 for (mi = LSI.begin(), mie = LSI.end(); mi != mie; ++mi) {
David Greene8ad4c002008-10-27 21:56:29 +00001146 std::string LSIName = "LSI_" + *mi;
1147 emitCode("SDValue " + LSIName + " = "
Dan Gohman95d11092008-07-07 21:00:17 +00001148 "CurDAG->getMemOperand(cast<MemSDNode>(" +
1149 *mi + ")->getMemOperand());");
David Greene8ad4c002008-10-27 21:56:29 +00001150 if (GenDebug) {
1151 emitCode("CurDAG->setSubgraphColor(" + LSIName +".getNode(), \"yellow\");");
1152 emitCode("CurDAG->setSubgraphColor(" + LSIName +".getNode(), \"black\");");
1153 }
Dan Gohman95d11092008-07-07 21:00:17 +00001154 if (IsVariadic)
David Greene8ad4c002008-10-27 21:56:29 +00001155 emitCode("Ops" + utostr(OpsNo) + ".push_back(" + LSIName + ");");
Dan Gohman95d11092008-07-07 21:00:17 +00001156 else
David Greene8ad4c002008-10-27 21:56:29 +00001157 AllOps.push_back(LSIName);
Dan Gohman95d11092008-07-07 21:00:17 +00001158 }
1159 }
1160
1161 if (NodeHasChain) {
1162 if (IsVariadic)
1163 emitCode("Ops" + utostr(OpsNo) + ".push_back(" + ChainName + ");");
1164 else
1165 AllOps.push_back(ChainName);
1166 }
1167
1168 if (IsVariadic) {
1169 if (NodeHasInFlag || HasImpInputs)
1170 emitCode("Ops" + utostr(OpsNo) + ".push_back(InFlag);");
1171 else if (NodeHasOptInFlag) {
1172 emitCode("if (HasInFlag)");
1173 emitCode(" Ops" + utostr(OpsNo) + ".push_back(InFlag);");
1174 }
1175 Code += ", &Ops" + utostr(OpsNo) + "[0], Ops" + utostr(OpsNo) +
1176 ".size()";
Dale Johannesen874ae252009-06-02 03:12:52 +00001177 } else if (NodeHasInFlag || NodeHasOptInFlag || HasImpInputs)
Dan Gohman95d11092008-07-07 21:00:17 +00001178 AllOps.push_back("InFlag");
1179
1180 unsigned NumOps = AllOps.size();
1181 if (NumOps) {
1182 if (!NodeHasOptInFlag && NumOps < 4) {
1183 for (unsigned i = 0; i != NumOps; ++i)
1184 Code += ", " + AllOps[i];
1185 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001186 std::string OpsCode = "SDValue Ops" + utostr(OpsNo) + "[] = { ";
Dan Gohman95d11092008-07-07 21:00:17 +00001187 for (unsigned i = 0; i != NumOps; ++i) {
1188 OpsCode += AllOps[i];
1189 if (i != NumOps-1)
1190 OpsCode += ", ";
1191 }
1192 emitCode(OpsCode + " };");
1193 Code += ", Ops" + utostr(OpsNo) + ", ";
1194 if (NodeHasOptInFlag) {
1195 Code += "HasInFlag ? ";
1196 Code += utostr(NumOps) + " : " + utostr(NumOps-1);
1197 } else
1198 Code += utostr(NumOps);
1199 }
1200 }
1201
1202 if (!isRoot)
1203 Code += "), 0";
1204
Dan Gohmane8be6c62008-07-17 19:10:17 +00001205 std::vector<std::string> ReplaceFroms;
1206 std::vector<std::string> ReplaceTos;
Dan Gohman95d11092008-07-07 21:00:17 +00001207 if (!isRoot) {
1208 NodeOps.push_back("Tmp" + utostr(ResNo));
1209 } else {
1210
Dale Johannesen874ae252009-06-02 03:12:52 +00001211 if (NodeHasOutFlag) {
Dan Gohman95d11092008-07-07 21:00:17 +00001212 if (!InFlagDecled) {
Dan Gohman475871a2008-07-27 21:46:04 +00001213 After.push_back("SDValue InFlag(ResNode, " +
Dan Gohman95d11092008-07-07 21:00:17 +00001214 utostr(NumResults+NumDstRegs+(unsigned)NodeHasChain) +
1215 ");");
1216 InFlagDecled = true;
1217 } else
Dan Gohman475871a2008-07-27 21:46:04 +00001218 After.push_back("InFlag = SDValue(ResNode, " +
Dan Gohman95d11092008-07-07 21:00:17 +00001219 utostr(NumResults+NumDstRegs+(unsigned)NodeHasChain) +
1220 ");");
1221 }
1222
Dan Gohman1eb49a02009-01-05 19:31:28 +00001223 for (unsigned j = 0, e = FoldedChains.size(); j < e; j++) {
1224 ReplaceFroms.push_back("SDValue(" +
1225 FoldedChains[j].first + ".getNode(), " +
1226 utostr(FoldedChains[j].second) +
1227 ")");
1228 ReplaceTos.push_back("SDValue(ResNode, " +
1229 utostr(NumResults+NumDstRegs) + ")");
Dan Gohman95d11092008-07-07 21:00:17 +00001230 }
1231
Dale Johannesen874ae252009-06-02 03:12:52 +00001232 if (NodeHasOutFlag) {
Dan Gohman95d11092008-07-07 21:00:17 +00001233 if (FoldedFlag.first != "") {
Dale Johannesen874ae252009-06-02 03:12:52 +00001234 ReplaceFroms.push_back("SDValue(" + FoldedFlag.first + ".getNode(), " +
Dan Gohmane8be6c62008-07-17 19:10:17 +00001235 utostr(FoldedFlag.second) + ")");
1236 ReplaceTos.push_back("InFlag");
Dan Gohman95d11092008-07-07 21:00:17 +00001237 } else {
Dale Johannesen874ae252009-06-02 03:12:52 +00001238 assert(NodeHasProperty(Pattern, SDNPOutFlag, CGP));
Gabor Greifba36cb52008-08-28 21:40:38 +00001239 ReplaceFroms.push_back("SDValue(N.getNode(), " +
Dan Gohmane8be6c62008-07-17 19:10:17 +00001240 utostr(NumPatResults + (unsigned)InputHasChain)
1241 + ")");
1242 ReplaceTos.push_back("InFlag");
Dan Gohman95d11092008-07-07 21:00:17 +00001243 }
Dan Gohman95d11092008-07-07 21:00:17 +00001244 }
1245
Dan Gohmane8be6c62008-07-17 19:10:17 +00001246 if (!ReplaceFroms.empty() && InputHasChain) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001247 ReplaceFroms.push_back("SDValue(N.getNode(), " +
Dan Gohmane8be6c62008-07-17 19:10:17 +00001248 utostr(NumPatResults) + ")");
Gabor Greifba36cb52008-08-28 21:40:38 +00001249 ReplaceTos.push_back("SDValue(" + ChainName + ".getNode(), " +
Gabor Greif99a6cb92008-08-26 22:36:50 +00001250 ChainName + ".getResNo()" + ")");
Dan Gohman95d11092008-07-07 21:00:17 +00001251 ChainAssignmentNeeded |= NodeHasChain;
1252 }
1253
1254 // User does not expect the instruction would produce a chain!
Dale Johannesen874ae252009-06-02 03:12:52 +00001255 if ((!InputHasChain && NodeHasChain) && NodeHasOutFlag) {
Dan Gohman95d11092008-07-07 21:00:17 +00001256 ;
1257 } else if (InputHasChain && !NodeHasChain) {
1258 // One of the inner node produces a chain.
Dan Gohmane8be6c62008-07-17 19:10:17 +00001259 if (NodeHasOutFlag) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001260 ReplaceFroms.push_back("SDValue(N.getNode(), " +
Dan Gohmane8be6c62008-07-17 19:10:17 +00001261 utostr(NumPatResults+1) +
1262 ")");
Gabor Greif99a6cb92008-08-26 22:36:50 +00001263 ReplaceTos.push_back("SDValue(ResNode, N.getResNo()-1)");
Dan Gohmane8be6c62008-07-17 19:10:17 +00001264 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001265 ReplaceFroms.push_back("SDValue(N.getNode(), " +
Dan Gohmane8be6c62008-07-17 19:10:17 +00001266 utostr(NumPatResults) + ")");
1267 ReplaceTos.push_back(ChainName);
Dan Gohman95d11092008-07-07 21:00:17 +00001268 }
1269 }
1270
1271 if (ChainAssignmentNeeded) {
1272 // Remember which op produces the chain.
1273 std::string ChainAssign;
1274 if (!isRoot)
Dan Gohman475871a2008-07-27 21:46:04 +00001275 ChainAssign = ChainName + " = SDValue(" + NodeName +
Gabor Greifba36cb52008-08-28 21:40:38 +00001276 ".getNode(), " + utostr(NumResults+NumDstRegs) + ");";
Dan Gohman95d11092008-07-07 21:00:17 +00001277 else
Dan Gohman475871a2008-07-27 21:46:04 +00001278 ChainAssign = ChainName + " = SDValue(" + NodeName +
Dan Gohman95d11092008-07-07 21:00:17 +00001279 ", " + utostr(NumResults+NumDstRegs) + ");";
1280
1281 After.push_front(ChainAssign);
1282 }
1283
Dan Gohmane8be6c62008-07-17 19:10:17 +00001284 if (ReplaceFroms.size() == 1) {
1285 After.push_back("ReplaceUses(" + ReplaceFroms[0] + ", " +
1286 ReplaceTos[0] + ");");
1287 } else if (!ReplaceFroms.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001288 After.push_back("const SDValue Froms[] = {");
Dan Gohmane8be6c62008-07-17 19:10:17 +00001289 for (unsigned i = 0, e = ReplaceFroms.size(); i != e; ++i)
1290 After.push_back(" " + ReplaceFroms[i] + (i + 1 != e ? "," : ""));
1291 After.push_back("};");
Dan Gohman475871a2008-07-27 21:46:04 +00001292 After.push_back("const SDValue Tos[] = {");
Dan Gohmane8be6c62008-07-17 19:10:17 +00001293 for (unsigned i = 0, e = ReplaceFroms.size(); i != e; ++i)
1294 After.push_back(" " + ReplaceTos[i] + (i + 1 != e ? "," : ""));
1295 After.push_back("};");
1296 After.push_back("ReplaceUses(Froms, Tos, " +
1297 itostr(ReplaceFroms.size()) + ");");
1298 }
1299
1300 // We prefer to use SelectNodeTo since it avoids allocation when
1301 // possible and it avoids CSE map recalculation for the node's
1302 // users, however it's tricky to use in a non-root context.
Dan Gohman95d11092008-07-07 21:00:17 +00001303 //
Dan Gohmane8be6c62008-07-17 19:10:17 +00001304 // We also don't use if the pattern replacement is being used to
1305 // jettison a chain result, since morphing the node in place
1306 // would leave users of the chain dangling.
Dan Gohman95d11092008-07-07 21:00:17 +00001307 //
Dan Gohmane8be6c62008-07-17 19:10:17 +00001308 if (!isRoot || (InputHasChain && !NodeHasChain)) {
Dan Gohman95d11092008-07-07 21:00:17 +00001309 Code = "CurDAG->getTargetNode(" + Code;
1310 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00001311 Code = "CurDAG->SelectNodeTo(N.getNode(), " + Code;
Dan Gohman95d11092008-07-07 21:00:17 +00001312 }
1313 if (isRoot) {
1314 if (After.empty())
1315 CodePrefix = "return ";
1316 else
1317 After.push_back("return ResNode;");
1318 }
1319
1320 emitCode(CodePrefix + Code + ");");
David Greene8ad4c002008-10-27 21:56:29 +00001321
1322 if (GenDebug) {
1323 if (!isRoot) {
1324 emitCode("CurDAG->setSubgraphColor(" + NodeName +".getNode(), \"yellow\");");
1325 emitCode("CurDAG->setSubgraphColor(" + NodeName +".getNode(), \"black\");");
1326 }
1327 else {
1328 emitCode("CurDAG->setSubgraphColor(" + NodeName +", \"yellow\");");
1329 emitCode("CurDAG->setSubgraphColor(" + NodeName +", \"black\");");
1330 }
1331 }
1332
Dan Gohman95d11092008-07-07 21:00:17 +00001333 for (unsigned i = 0, e = After.size(); i != e; ++i)
1334 emitCode(After[i]);
1335
Evan Cheng676d7312006-08-26 00:59:04 +00001336 return NodeOps;
Dan Gohman0540e172008-10-15 06:17:21 +00001337 }
1338 if (Op->isSubClassOf("SDNodeXForm")) {
Evan Chengb915f312005-12-09 22:45:35 +00001339 assert(N->getNumChildren() == 1 && "node xform should have one child!");
Evan Cheng863bf5a2006-03-20 22:53:06 +00001340 // PatLeaf node - the operand may or may not be a leaf node. But it should
1341 // behave like one.
Evan Cheng676d7312006-08-26 00:59:04 +00001342 std::vector<std::string> Ops =
Evan Cheng30729b42007-09-17 22:26:41 +00001343 EmitResultCode(N->getChild(0), DstRegs, InFlagDecled,
Evan Cheng676d7312006-08-26 00:59:04 +00001344 ResNodeDecled, true);
Evan Chengb915f312005-12-09 22:45:35 +00001345 unsigned ResNo = TmpNo++;
Dan Gohman475871a2008-07-27 21:46:04 +00001346 emitCode("SDValue Tmp" + utostr(ResNo) + " = Transform_" + Op->getName()
Gabor Greifba36cb52008-08-28 21:40:38 +00001347 + "(" + Ops.back() + ".getNode());");
Evan Cheng676d7312006-08-26 00:59:04 +00001348 NodeOps.push_back("Tmp" + utostr(ResNo));
Evan Cheng9ade2182006-08-26 05:34:46 +00001349 if (isRoot)
Gabor Greifba36cb52008-08-28 21:40:38 +00001350 emitCode("return Tmp" + utostr(ResNo) + ".getNode();");
Evan Cheng676d7312006-08-26 00:59:04 +00001351 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +00001352 }
Dan Gohman0540e172008-10-15 06:17:21 +00001353
1354 N->dump();
Daniel Dunbar1a551802009-07-03 00:10:29 +00001355 errs() << "\n";
Dan Gohman0540e172008-10-15 06:17:21 +00001356 throw std::string("Unknown node in result pattern!");
Evan Chengb915f312005-12-09 22:45:35 +00001357 }
1358
Chris Lattner488580c2006-01-28 19:06:51 +00001359 /// InsertOneTypeCheck - Insert a type-check for an unresolved type in 'Pat'
1360 /// and add it to the tree. 'Pat' and 'Other' are isomorphic trees except that
Evan Chengb915f312005-12-09 22:45:35 +00001361 /// 'Pat' may be missing types. If we find an unresolved type to add a check
1362 /// for, this returns true otherwise false if Pat has all types.
1363 bool InsertOneTypeCheck(TreePatternNode *Pat, TreePatternNode *Other,
Chris Lattner706d2d32006-08-09 16:44:44 +00001364 const std::string &Prefix, bool isRoot = false) {
Evan Chengb915f312005-12-09 22:45:35 +00001365 // Did we find one?
Evan Chengd15531b2006-05-19 07:24:32 +00001366 if (Pat->getExtTypes() != Other->getExtTypes()) {
Evan Chengb915f312005-12-09 22:45:35 +00001367 // Move a type over from 'other' to 'pat'.
Nate Begemanb73628b2005-12-30 00:12:56 +00001368 Pat->setTypes(Other->getExtTypes());
Chris Lattner706d2d32006-08-09 16:44:44 +00001369 // The top level node type is checked outside of the select function.
1370 if (!isRoot)
Gabor Greifba36cb52008-08-28 21:40:38 +00001371 emitCheck(Prefix + ".getNode()->getValueType(0) == " +
Chris Lattner706d2d32006-08-09 16:44:44 +00001372 getName(Pat->getTypeNum(0)));
Evan Chengb915f312005-12-09 22:45:35 +00001373 return true;
Evan Chengb915f312005-12-09 22:45:35 +00001374 }
1375
Evan Cheng51fecc82006-01-09 18:27:06 +00001376 unsigned OpNo =
Chris Lattner6cefb772008-01-05 22:25:12 +00001377 (unsigned) NodeHasProperty(Pat, SDNPHasChain, CGP);
Evan Chengb915f312005-12-09 22:45:35 +00001378 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i, ++OpNo)
1379 if (InsertOneTypeCheck(Pat->getChild(i), Other->getChild(i),
1380 Prefix + utostr(OpNo)))
1381 return true;
1382 return false;
1383 }
1384
1385private:
Evan Cheng54597732006-01-26 00:22:25 +00001386 /// EmitInFlagSelectCode - Emit the flag operands for the DAG that is
Evan Chengb915f312005-12-09 22:45:35 +00001387 /// being built.
Evan Cheng54597732006-01-26 00:22:25 +00001388 void EmitInFlagSelectCode(TreePatternNode *N, const std::string &RootName,
Evan Cheng676d7312006-08-26 00:59:04 +00001389 bool &ChainEmitted, bool &InFlagDecled,
1390 bool &ResNodeDecled, bool isRoot = false) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001391 const CodeGenTarget &T = CGP.getTargetInfo();
Evan Cheng51fecc82006-01-09 18:27:06 +00001392 unsigned OpNo =
Chris Lattner6cefb772008-01-05 22:25:12 +00001393 (unsigned) NodeHasProperty(N, SDNPHasChain, CGP);
1394 bool HasInFlag = NodeHasProperty(N, SDNPInFlag, CGP);
Evan Chengb915f312005-12-09 22:45:35 +00001395 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
1396 TreePatternNode *Child = N->getChild(i);
1397 if (!Child->isLeaf()) {
Evan Cheng676d7312006-08-26 00:59:04 +00001398 EmitInFlagSelectCode(Child, RootName + utostr(OpNo), ChainEmitted,
1399 InFlagDecled, ResNodeDecled);
Evan Chengb915f312005-12-09 22:45:35 +00001400 } else {
1401 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
Evan Chengb4ad33c2006-01-19 01:55:45 +00001402 if (!Child->getName().empty()) {
1403 std::string Name = RootName + utostr(OpNo);
1404 if (Duplicates.find(Name) != Duplicates.end())
1405 // A duplicate! Do not emit a copy for this node.
1406 continue;
1407 }
1408
Evan Chengb915f312005-12-09 22:45:35 +00001409 Record *RR = DI->getDef();
1410 if (RR->isSubClassOf("Register")) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001411 MVT::SimpleValueType RVT = getRegisterValueType(RR, T);
Evan Chengbcecf332005-12-17 01:19:28 +00001412 if (RVT == MVT::Flag) {
Evan Cheng676d7312006-08-26 00:59:04 +00001413 if (!InFlagDecled) {
Dan Gohman475871a2008-07-27 21:46:04 +00001414 emitCode("SDValue InFlag = " + RootName + utostr(OpNo) + ";");
Evan Cheng676d7312006-08-26 00:59:04 +00001415 InFlagDecled = true;
1416 } else
1417 emitCode("InFlag = " + RootName + utostr(OpNo) + ";");
Evan Chengb2c6d492006-01-11 22:16:13 +00001418 } else {
1419 if (!ChainEmitted) {
Dan Gohman475871a2008-07-27 21:46:04 +00001420 emitCode("SDValue Chain = CurDAG->getEntryNode();");
Evan Chenge4a8a6e2006-02-03 06:22:41 +00001421 ChainName = "Chain";
Evan Chengb2c6d492006-01-11 22:16:13 +00001422 ChainEmitted = true;
1423 }
Evan Cheng676d7312006-08-26 00:59:04 +00001424 if (!InFlagDecled) {
Dan Gohman475871a2008-07-27 21:46:04 +00001425 emitCode("SDValue InFlag(0, 0);");
Evan Cheng676d7312006-08-26 00:59:04 +00001426 InFlagDecled = true;
1427 }
Dale Johannesen874ae252009-06-02 03:12:52 +00001428 std::string Decl = (!ResNodeDecled) ? "SDNode *" : "";
1429 emitCode(Decl + "ResNode = CurDAG->getCopyToReg(" + ChainName +
Dale Johannesena05dca42009-02-04 23:02:30 +00001430 ", " + RootName + ".getDebugLoc()" +
Chris Lattner6cefb772008-01-05 22:25:12 +00001431 ", " + getQualifiedName(RR) +
Dale Johannesen874ae252009-06-02 03:12:52 +00001432 ", " + RootName + utostr(OpNo) + ", InFlag).getNode();");
1433 ResNodeDecled = true;
Dan Gohman475871a2008-07-27 21:46:04 +00001434 emitCode(ChainName + " = SDValue(ResNode, 0);");
1435 emitCode("InFlag = SDValue(ResNode, 1);");
Evan Chengb915f312005-12-09 22:45:35 +00001436 }
1437 }
1438 }
1439 }
1440 }
Evan Cheng54597732006-01-26 00:22:25 +00001441
Dale Johannesen874ae252009-06-02 03:12:52 +00001442 if (HasInFlag) {
Evan Cheng676d7312006-08-26 00:59:04 +00001443 if (!InFlagDecled) {
Dan Gohman475871a2008-07-27 21:46:04 +00001444 emitCode("SDValue InFlag = " + RootName +
Evan Cheng676d7312006-08-26 00:59:04 +00001445 ".getOperand(" + utostr(OpNo) + ");");
1446 InFlagDecled = true;
1447 } else
1448 emitCode("InFlag = " + RootName +
1449 ".getOperand(" + utostr(OpNo) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +00001450 }
Evan Chengb915f312005-12-09 22:45:35 +00001451 }
1452};
1453
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00001454/// EmitCodeForPattern - Given a pattern to match, emit code to the specified
1455/// stream to match the pattern, and generate the code for the match if it
Chris Lattner355408b2006-01-29 02:43:35 +00001456/// succeeds. Returns true if the pattern is not guaranteed to match.
Chris Lattner60d81392008-01-05 22:30:17 +00001457void DAGISelEmitter::GenerateCodeForPattern(const PatternToMatch &Pattern,
Evan Cheng676d7312006-08-26 00:59:04 +00001458 std::vector<std::pair<unsigned, std::string> > &GeneratedCode,
Evan Chengf5493192006-08-26 01:02:19 +00001459 std::set<std::string> &GeneratedDecl,
Evan Chengfceb57a2006-07-15 08:45:20 +00001460 std::vector<std::string> &TargetOpcodes,
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001461 std::vector<std::string> &TargetVTs,
1462 bool &OutputIsVariadic,
1463 unsigned &NumInputRootOps) {
1464 OutputIsVariadic = false;
1465 NumInputRootOps = 0;
1466
Dan Gohman22bb3112008-08-22 00:20:26 +00001467 PatternCodeEmitter Emitter(CGP, Pattern.getPredicateCheck(),
Evan Cheng58e84a62005-12-14 22:02:59 +00001468 Pattern.getSrcPattern(), Pattern.getDstPattern(),
Evan Chengf8729402006-07-16 06:12:52 +00001469 GeneratedCode, GeneratedDecl,
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001470 TargetOpcodes, TargetVTs,
1471 OutputIsVariadic, NumInputRootOps);
Evan Chengb915f312005-12-09 22:45:35 +00001472
Chris Lattner8fc35682005-09-23 23:16:51 +00001473 // Emit the matcher, capturing named arguments in VariableMap.
Evan Cheng7b05bd52005-12-23 22:11:47 +00001474 bool FoundChain = false;
Evan Cheng13e9e9c2006-10-16 06:33:44 +00001475 Emitter.EmitMatchCode(Pattern.getSrcPattern(), NULL, "N", "", FoundChain);
Evan Chengb915f312005-12-09 22:45:35 +00001476
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001477 // TP - Get *SOME* tree pattern, we don't care which.
Chris Lattner200c57e2008-01-05 22:58:54 +00001478 TreePattern &TP = *CGP.pf_begin()->second;
Chris Lattner296dfe32005-09-24 00:50:51 +00001479
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001480 // At this point, we know that we structurally match the pattern, but the
1481 // types of the nodes may not match. Figure out the fewest number of type
1482 // comparisons we need to emit. For example, if there is only one integer
1483 // type supported by a target, there should be no type comparisons at all for
1484 // integer patterns!
1485 //
1486 // To figure out the fewest number of type checks needed, clone the pattern,
1487 // remove the types, then perform type inference on the pattern as a whole.
1488 // If there are unresolved types, emit an explicit check for those types,
1489 // apply the type to the tree, then rerun type inference. Iterate until all
1490 // types are resolved.
1491 //
Evan Cheng58e84a62005-12-14 22:02:59 +00001492 TreePatternNode *Pat = Pattern.getSrcPattern()->clone();
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001493 RemoveAllTypes(Pat);
Chris Lattner7e82f132005-10-15 21:34:21 +00001494
1495 do {
1496 // Resolve/propagate as many types as possible.
1497 try {
1498 bool MadeChange = true;
1499 while (MadeChange)
Chris Lattner488580c2006-01-28 19:06:51 +00001500 MadeChange = Pat->ApplyTypeConstraints(TP,
1501 true/*Ignore reg constraints*/);
Chris Lattner7e82f132005-10-15 21:34:21 +00001502 } catch (...) {
1503 assert(0 && "Error: could not find consistent types for something we"
1504 " already decided was ok!");
1505 abort();
1506 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001507
Chris Lattner7e82f132005-10-15 21:34:21 +00001508 // Insert a check for an unresolved type and add it to the tree. If we find
1509 // an unresolved type to add a check for, this returns true and we iterate,
1510 // otherwise we are done.
Chris Lattner706d2d32006-08-09 16:44:44 +00001511 } while (Emitter.InsertOneTypeCheck(Pat, Pattern.getSrcPattern(), "N", true));
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001512
Evan Cheng85dbe1a2007-09-12 23:30:14 +00001513 Emitter.EmitResultCode(Pattern.getDstPattern(), Pattern.getDstRegs(),
Evan Cheng30729b42007-09-17 22:26:41 +00001514 false, false, false, true);
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001515 delete Pat;
Chris Lattner3f7e9142005-09-23 20:52:47 +00001516}
1517
Chris Lattner24e00a42006-01-29 04:41:05 +00001518/// EraseCodeLine - Erase one code line from all of the patterns. If removing
1519/// a line causes any of them to be empty, remove them and return true when
1520/// done.
Chris Lattner60d81392008-01-05 22:30:17 +00001521static bool EraseCodeLine(std::vector<std::pair<const PatternToMatch*,
Evan Cheng676d7312006-08-26 00:59:04 +00001522 std::vector<std::pair<unsigned, std::string> > > >
Chris Lattner24e00a42006-01-29 04:41:05 +00001523 &Patterns) {
1524 bool ErasedPatterns = false;
1525 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
1526 Patterns[i].second.pop_back();
1527 if (Patterns[i].second.empty()) {
1528 Patterns.erase(Patterns.begin()+i);
1529 --i; --e;
1530 ErasedPatterns = true;
1531 }
1532 }
1533 return ErasedPatterns;
1534}
1535
Chris Lattner8bc74722006-01-29 04:25:26 +00001536/// EmitPatterns - Emit code for at least one pattern, but try to group common
1537/// code together between the patterns.
Chris Lattner60d81392008-01-05 22:30:17 +00001538void DAGISelEmitter::EmitPatterns(std::vector<std::pair<const PatternToMatch*,
Evan Cheng676d7312006-08-26 00:59:04 +00001539 std::vector<std::pair<unsigned, std::string> > > >
Chris Lattner8bc74722006-01-29 04:25:26 +00001540 &Patterns, unsigned Indent,
Daniel Dunbar1a551802009-07-03 00:10:29 +00001541 raw_ostream &OS) {
Evan Cheng676d7312006-08-26 00:59:04 +00001542 typedef std::pair<unsigned, std::string> CodeLine;
Chris Lattner8bc74722006-01-29 04:25:26 +00001543 typedef std::vector<CodeLine> CodeList;
Chris Lattner60d81392008-01-05 22:30:17 +00001544 typedef std::vector<std::pair<const PatternToMatch*, CodeList> > PatternList;
Chris Lattner8bc74722006-01-29 04:25:26 +00001545
1546 if (Patterns.empty()) return;
1547
Chris Lattner24e00a42006-01-29 04:41:05 +00001548 // Figure out how many patterns share the next code line. Explicitly copy
1549 // FirstCodeLine so that we don't invalidate a reference when changing
1550 // Patterns.
1551 const CodeLine FirstCodeLine = Patterns.back().second.back();
Chris Lattner8bc74722006-01-29 04:25:26 +00001552 unsigned LastMatch = Patterns.size()-1;
1553 while (LastMatch != 0 && Patterns[LastMatch-1].second.back() == FirstCodeLine)
1554 --LastMatch;
1555
1556 // If not all patterns share this line, split the list into two pieces. The
1557 // first chunk will use this line, the second chunk won't.
1558 if (LastMatch != 0) {
1559 PatternList Shared(Patterns.begin()+LastMatch, Patterns.end());
1560 PatternList Other(Patterns.begin(), Patterns.begin()+LastMatch);
1561
1562 // FIXME: Emit braces?
1563 if (Shared.size() == 1) {
Chris Lattner60d81392008-01-05 22:30:17 +00001564 const PatternToMatch &Pattern = *Shared.back().first;
Chris Lattner8bc74722006-01-29 04:25:26 +00001565 OS << "\n" << std::string(Indent, ' ') << "// Pattern: ";
1566 Pattern.getSrcPattern()->print(OS);
1567 OS << "\n" << std::string(Indent, ' ') << "// Emits: ";
1568 Pattern.getDstPattern()->print(OS);
1569 OS << "\n";
Evan Chengc81d2a02006-04-19 20:36:09 +00001570 unsigned AddedComplexity = Pattern.getAddedComplexity();
Chris Lattner8bc74722006-01-29 04:25:26 +00001571 OS << std::string(Indent, ' ') << "// Pattern complexity = "
Chris Lattner200c57e2008-01-05 22:58:54 +00001572 << getPatternSize(Pattern.getSrcPattern(), CGP) + AddedComplexity
Evan Cheng59413202006-04-19 18:07:24 +00001573 << " cost = "
Chris Lattner200c57e2008-01-05 22:58:54 +00001574 << getResultPatternCost(Pattern.getDstPattern(), CGP)
Evan Chenge6f32032006-07-19 00:24:41 +00001575 << " size = "
Chris Lattner200c57e2008-01-05 22:58:54 +00001576 << getResultPatternSize(Pattern.getDstPattern(), CGP) << "\n";
Chris Lattner8bc74722006-01-29 04:25:26 +00001577 }
Evan Cheng676d7312006-08-26 00:59:04 +00001578 if (FirstCodeLine.first != 1) {
Chris Lattner8bc74722006-01-29 04:25:26 +00001579 OS << std::string(Indent, ' ') << "{\n";
1580 Indent += 2;
1581 }
1582 EmitPatterns(Shared, Indent, OS);
Evan Cheng676d7312006-08-26 00:59:04 +00001583 if (FirstCodeLine.first != 1) {
Chris Lattner8bc74722006-01-29 04:25:26 +00001584 Indent -= 2;
1585 OS << std::string(Indent, ' ') << "}\n";
1586 }
1587
1588 if (Other.size() == 1) {
Chris Lattner60d81392008-01-05 22:30:17 +00001589 const PatternToMatch &Pattern = *Other.back().first;
Chris Lattner8bc74722006-01-29 04:25:26 +00001590 OS << "\n" << std::string(Indent, ' ') << "// Pattern: ";
1591 Pattern.getSrcPattern()->print(OS);
1592 OS << "\n" << std::string(Indent, ' ') << "// Emits: ";
1593 Pattern.getDstPattern()->print(OS);
1594 OS << "\n";
Evan Chengc81d2a02006-04-19 20:36:09 +00001595 unsigned AddedComplexity = Pattern.getAddedComplexity();
Chris Lattner8bc74722006-01-29 04:25:26 +00001596 OS << std::string(Indent, ' ') << "// Pattern complexity = "
Chris Lattner200c57e2008-01-05 22:58:54 +00001597 << getPatternSize(Pattern.getSrcPattern(), CGP) + AddedComplexity
Evan Cheng59413202006-04-19 18:07:24 +00001598 << " cost = "
Chris Lattner200c57e2008-01-05 22:58:54 +00001599 << getResultPatternCost(Pattern.getDstPattern(), CGP)
Chris Lattner706d2d32006-08-09 16:44:44 +00001600 << " size = "
Chris Lattner200c57e2008-01-05 22:58:54 +00001601 << getResultPatternSize(Pattern.getDstPattern(), CGP) << "\n";
Chris Lattner8bc74722006-01-29 04:25:26 +00001602 }
1603 EmitPatterns(Other, Indent, OS);
1604 return;
1605 }
1606
Chris Lattner24e00a42006-01-29 04:41:05 +00001607 // Remove this code from all of the patterns that share it.
1608 bool ErasedPatterns = EraseCodeLine(Patterns);
1609
Evan Cheng676d7312006-08-26 00:59:04 +00001610 bool isPredicate = FirstCodeLine.first == 1;
Chris Lattner8bc74722006-01-29 04:25:26 +00001611
1612 // Otherwise, every pattern in the list has this line. Emit it.
1613 if (!isPredicate) {
1614 // Normal code.
1615 OS << std::string(Indent, ' ') << FirstCodeLine.second << "\n";
1616 } else {
Chris Lattner24e00a42006-01-29 04:41:05 +00001617 OS << std::string(Indent, ' ') << "if (" << FirstCodeLine.second;
1618
1619 // If the next code line is another predicate, and if all of the pattern
1620 // in this group share the same next line, emit it inline now. Do this
1621 // until we run out of common predicates.
Evan Cheng676d7312006-08-26 00:59:04 +00001622 while (!ErasedPatterns && Patterns.back().second.back().first == 1) {
Jim Grosbachda4231f2009-03-26 16:17:51 +00001623 // Check that all of the patterns in Patterns end with the same predicate.
Chris Lattner24e00a42006-01-29 04:41:05 +00001624 bool AllEndWithSamePredicate = true;
1625 for (unsigned i = 0, e = Patterns.size(); i != e; ++i)
1626 if (Patterns[i].second.back() != Patterns.back().second.back()) {
1627 AllEndWithSamePredicate = false;
1628 break;
1629 }
1630 // If all of the predicates aren't the same, we can't share them.
1631 if (!AllEndWithSamePredicate) break;
1632
1633 // Otherwise we can. Emit it shared now.
1634 OS << " &&\n" << std::string(Indent+4, ' ')
1635 << Patterns.back().second.back().second;
1636 ErasedPatterns = EraseCodeLine(Patterns);
Chris Lattner8bc74722006-01-29 04:25:26 +00001637 }
Chris Lattner24e00a42006-01-29 04:41:05 +00001638
1639 OS << ") {\n";
1640 Indent += 2;
Chris Lattner8bc74722006-01-29 04:25:26 +00001641 }
1642
1643 EmitPatterns(Patterns, Indent, OS);
1644
1645 if (isPredicate)
1646 OS << std::string(Indent-2, ' ') << "}\n";
1647}
1648
Evan Cheng892aaf82006-11-08 23:01:03 +00001649static std::string getLegalCName(std::string OpName) {
1650 std::string::size_type pos = OpName.find("::");
1651 if (pos != std::string::npos)
1652 OpName.replace(pos, 2, "_");
1653 return OpName;
Chris Lattner37481472005-09-26 21:59:35 +00001654}
1655
Daniel Dunbar1a551802009-07-03 00:10:29 +00001656void DAGISelEmitter::EmitInstructionSelector(raw_ostream &OS) {
Chris Lattner200c57e2008-01-05 22:58:54 +00001657 const CodeGenTarget &Target = CGP.getTargetInfo();
Chris Lattner6cefb772008-01-05 22:25:12 +00001658
Dan Gohman1e0ee4b2008-08-20 21:45:57 +00001659 // Get the namespace to insert instructions into.
1660 std::string InstNS = Target.getInstNamespace();
Chris Lattnerb277cbc2005-10-18 04:41:01 +00001661 if (!InstNS.empty()) InstNS += "::";
1662
Chris Lattner602f6922006-01-04 00:25:00 +00001663 // Group the patterns by their top-level opcodes.
Chris Lattner60d81392008-01-05 22:30:17 +00001664 std::map<std::string, std::vector<const PatternToMatch*> > PatternsByOpcode;
Evan Chengfceb57a2006-07-15 08:45:20 +00001665 // All unique target node emission functions.
1666 std::map<std::string, unsigned> EmitFunctions;
Chris Lattnerfe718932008-01-06 01:10:31 +00001667 for (CodeGenDAGPatterns::ptm_iterator I = CGP.ptm_begin(),
Chris Lattner200c57e2008-01-05 22:58:54 +00001668 E = CGP.ptm_end(); I != E; ++I) {
Chris Lattner60d81392008-01-05 22:30:17 +00001669 const PatternToMatch &Pattern = *I;
Chris Lattner6cefb772008-01-05 22:25:12 +00001670
1671 TreePatternNode *Node = Pattern.getSrcPattern();
Chris Lattner602f6922006-01-04 00:25:00 +00001672 if (!Node->isLeaf()) {
Chris Lattner200c57e2008-01-05 22:58:54 +00001673 PatternsByOpcode[getOpcodeName(Node->getOperator(), CGP)].
Chris Lattner6cefb772008-01-05 22:25:12 +00001674 push_back(&Pattern);
Chris Lattner602f6922006-01-04 00:25:00 +00001675 } else {
1676 const ComplexPattern *CP;
Chris Lattner9c5d4de2006-11-03 01:11:05 +00001677 if (dynamic_cast<IntInit*>(Node->getLeafValue())) {
Chris Lattner200c57e2008-01-05 22:58:54 +00001678 PatternsByOpcode[getOpcodeName(CGP.getSDNodeNamed("imm"), CGP)].
Chris Lattner6cefb772008-01-05 22:25:12 +00001679 push_back(&Pattern);
Chris Lattner200c57e2008-01-05 22:58:54 +00001680 } else if ((CP = NodeGetComplexPattern(Node, CGP))) {
Chris Lattner602f6922006-01-04 00:25:00 +00001681 std::vector<Record*> OpNodes = CP->getRootNodes();
1682 for (unsigned j = 0, e = OpNodes.size(); j != e; j++) {
Chris Lattner200c57e2008-01-05 22:58:54 +00001683 PatternsByOpcode[getOpcodeName(OpNodes[j], CGP)]
1684 .insert(PatternsByOpcode[getOpcodeName(OpNodes[j], CGP)].begin(),
Chris Lattner6cefb772008-01-05 22:25:12 +00001685 &Pattern);
Chris Lattner602f6922006-01-04 00:25:00 +00001686 }
1687 } else {
Daniel Dunbar1a551802009-07-03 00:10:29 +00001688 errs() << "Unrecognized opcode '";
Chris Lattner602f6922006-01-04 00:25:00 +00001689 Node->dump();
Daniel Dunbar1a551802009-07-03 00:10:29 +00001690 errs() << "' on tree pattern '";
1691 errs() << Pattern.getDstPattern()->getOperator()->getName() << "'!\n";
Chris Lattner602f6922006-01-04 00:25:00 +00001692 exit(1);
1693 }
1694 }
1695 }
Chris Lattner706d2d32006-08-09 16:44:44 +00001696
1697 // For each opcode, there might be multiple select functions, one per
1698 // ValueType of the node (or its first operand if it doesn't produce a
1699 // non-chain result.
1700 std::map<std::string, std::vector<std::string> > OpcodeVTMap;
1701
Chris Lattner602f6922006-01-04 00:25:00 +00001702 // Emit one Select_* method for each top-level opcode. We do this instead of
1703 // emitting one giant switch statement to support compilers where this will
1704 // result in the recursive functions taking less stack space.
Chris Lattner60d81392008-01-05 22:30:17 +00001705 for (std::map<std::string, std::vector<const PatternToMatch*> >::iterator
Evan Cheng892aaf82006-11-08 23:01:03 +00001706 PBOI = PatternsByOpcode.begin(), E = PatternsByOpcode.end();
1707 PBOI != E; ++PBOI) {
1708 const std::string &OpName = PBOI->first;
Chris Lattner60d81392008-01-05 22:30:17 +00001709 std::vector<const PatternToMatch*> &PatternsOfOp = PBOI->second;
Chris Lattner706d2d32006-08-09 16:44:44 +00001710 assert(!PatternsOfOp.empty() && "No patterns but map has entry?");
1711
Chris Lattner706d2d32006-08-09 16:44:44 +00001712 // Split them into groups by type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001713 std::map<MVT::SimpleValueType,
1714 std::vector<const PatternToMatch*> > PatternsByType;
Chris Lattner706d2d32006-08-09 16:44:44 +00001715 for (unsigned i = 0, e = PatternsOfOp.size(); i != e; ++i) {
Chris Lattner60d81392008-01-05 22:30:17 +00001716 const PatternToMatch *Pat = PatternsOfOp[i];
Chris Lattner706d2d32006-08-09 16:44:44 +00001717 TreePatternNode *SrcPat = Pat->getSrcPattern();
Chris Lattner9783d622008-08-26 07:01:28 +00001718 PatternsByType[SrcPat->getTypeNum(0)].push_back(Pat);
Chris Lattner706d2d32006-08-09 16:44:44 +00001719 }
1720
Duncan Sands83ec4b62008-06-06 12:08:01 +00001721 for (std::map<MVT::SimpleValueType,
1722 std::vector<const PatternToMatch*> >::iterator
Chris Lattner706d2d32006-08-09 16:44:44 +00001723 II = PatternsByType.begin(), EE = PatternsByType.end(); II != EE;
1724 ++II) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001725 MVT::SimpleValueType OpVT = II->first;
Chris Lattner60d81392008-01-05 22:30:17 +00001726 std::vector<const PatternToMatch*> &Patterns = II->second;
Dan Gohman0540e172008-10-15 06:17:21 +00001727 typedef std::pair<unsigned, std::string> CodeLine;
1728 typedef std::vector<CodeLine> CodeList;
1729 typedef CodeList::iterator CodeListI;
Chris Lattner706d2d32006-08-09 16:44:44 +00001730
Chris Lattner60d81392008-01-05 22:30:17 +00001731 std::vector<std::pair<const PatternToMatch*, CodeList> > CodeForPatterns;
Chris Lattner706d2d32006-08-09 16:44:44 +00001732 std::vector<std::vector<std::string> > PatternOpcodes;
1733 std::vector<std::vector<std::string> > PatternVTs;
Evan Chengf5493192006-08-26 01:02:19 +00001734 std::vector<std::set<std::string> > PatternDecls;
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001735 std::vector<bool> OutputIsVariadicFlags;
1736 std::vector<unsigned> NumInputRootOpsCounts;
Chris Lattner706d2d32006-08-09 16:44:44 +00001737 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
1738 CodeList GeneratedCode;
Evan Chengf5493192006-08-26 01:02:19 +00001739 std::set<std::string> GeneratedDecl;
Chris Lattner706d2d32006-08-09 16:44:44 +00001740 std::vector<std::string> TargetOpcodes;
1741 std::vector<std::string> TargetVTs;
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001742 bool OutputIsVariadic;
1743 unsigned NumInputRootOps;
Chris Lattner706d2d32006-08-09 16:44:44 +00001744 GenerateCodeForPattern(*Patterns[i], GeneratedCode, GeneratedDecl,
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001745 TargetOpcodes, TargetVTs,
1746 OutputIsVariadic, NumInputRootOps);
Chris Lattner706d2d32006-08-09 16:44:44 +00001747 CodeForPatterns.push_back(std::make_pair(Patterns[i], GeneratedCode));
1748 PatternDecls.push_back(GeneratedDecl);
1749 PatternOpcodes.push_back(TargetOpcodes);
1750 PatternVTs.push_back(TargetVTs);
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001751 OutputIsVariadicFlags.push_back(OutputIsVariadic);
1752 NumInputRootOpsCounts.push_back(NumInputRootOps);
Chris Lattner706d2d32006-08-09 16:44:44 +00001753 }
1754
Chris Lattner706d2d32006-08-09 16:44:44 +00001755 // Factor target node emission code (emitted by EmitResultCode) into
1756 // separate functions. Uniquing and share them among all instruction
1757 // selection routines.
1758 for (unsigned i = 0, e = CodeForPatterns.size(); i != e; ++i) {
1759 CodeList &GeneratedCode = CodeForPatterns[i].second;
1760 std::vector<std::string> &TargetOpcodes = PatternOpcodes[i];
1761 std::vector<std::string> &TargetVTs = PatternVTs[i];
Evan Chengf5493192006-08-26 01:02:19 +00001762 std::set<std::string> Decls = PatternDecls[i];
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001763 bool OutputIsVariadic = OutputIsVariadicFlags[i];
1764 unsigned NumInputRootOps = NumInputRootOpsCounts[i];
Evan Cheng676d7312006-08-26 00:59:04 +00001765 std::vector<std::string> AddedInits;
Chris Lattner706d2d32006-08-09 16:44:44 +00001766 int CodeSize = (int)GeneratedCode.size();
1767 int LastPred = -1;
1768 for (int j = CodeSize-1; j >= 0; --j) {
Evan Cheng676d7312006-08-26 00:59:04 +00001769 if (LastPred == -1 && GeneratedCode[j].first == 1)
Chris Lattner706d2d32006-08-09 16:44:44 +00001770 LastPred = j;
Evan Cheng676d7312006-08-26 00:59:04 +00001771 else if (LastPred != -1 && GeneratedCode[j].first == 2)
1772 AddedInits.push_back(GeneratedCode[j].second);
Chris Lattner706d2d32006-08-09 16:44:44 +00001773 }
1774
Dan Gohman475871a2008-07-27 21:46:04 +00001775 std::string CalleeCode = "(const SDValue &N";
Evan Cheng9ade2182006-08-26 05:34:46 +00001776 std::string CallerCode = "(N";
Chris Lattner706d2d32006-08-09 16:44:44 +00001777 for (unsigned j = 0, e = TargetOpcodes.size(); j != e; ++j) {
1778 CalleeCode += ", unsigned Opc" + utostr(j);
1779 CallerCode += ", " + TargetOpcodes[j];
1780 }
1781 for (unsigned j = 0, e = TargetVTs.size(); j != e; ++j) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001782 CalleeCode += ", MVT VT" + utostr(j);
Chris Lattner706d2d32006-08-09 16:44:44 +00001783 CallerCode += ", " + TargetVTs[j];
1784 }
Evan Chengf5493192006-08-26 01:02:19 +00001785 for (std::set<std::string>::iterator
Chris Lattner706d2d32006-08-09 16:44:44 +00001786 I = Decls.begin(), E = Decls.end(); I != E; ++I) {
Evan Chengf5493192006-08-26 01:02:19 +00001787 std::string Name = *I;
Dan Gohman475871a2008-07-27 21:46:04 +00001788 CalleeCode += ", SDValue &" + Name;
Evan Cheng676d7312006-08-26 00:59:04 +00001789 CallerCode += ", " + Name;
Chris Lattner706d2d32006-08-09 16:44:44 +00001790 }
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001791
1792 if (OutputIsVariadic) {
1793 CalleeCode += ", unsigned NumInputRootOps";
1794 CallerCode += ", " + utostr(NumInputRootOps);
1795 }
1796
Chris Lattner706d2d32006-08-09 16:44:44 +00001797 CallerCode += ");";
1798 CalleeCode += ") ";
1799 // Prevent emission routines from being inlined to reduce selection
1800 // routines stack frame sizes.
Chris Lattner8dc728e2006-08-27 13:16:24 +00001801 CalleeCode += "DISABLE_INLINE ";
Evan Cheng676d7312006-08-26 00:59:04 +00001802 CalleeCode += "{\n";
1803
1804 for (std::vector<std::string>::const_reverse_iterator
1805 I = AddedInits.rbegin(), E = AddedInits.rend(); I != E; ++I)
1806 CalleeCode += " " + *I + "\n";
1807
Evan Chengf5493192006-08-26 01:02:19 +00001808 for (int j = LastPred+1; j < CodeSize; ++j)
1809 CalleeCode += " " + GeneratedCode[j].second + "\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00001810 for (int j = LastPred+1; j < CodeSize; ++j)
1811 GeneratedCode.pop_back();
1812 CalleeCode += "}\n";
1813
1814 // Uniquing the emission routines.
1815 unsigned EmitFuncNum;
1816 std::map<std::string, unsigned>::iterator EFI =
1817 EmitFunctions.find(CalleeCode);
1818 if (EFI != EmitFunctions.end()) {
1819 EmitFuncNum = EFI->second;
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001820 } else {
Chris Lattner706d2d32006-08-09 16:44:44 +00001821 EmitFuncNum = EmitFunctions.size();
1822 EmitFunctions.insert(std::make_pair(CalleeCode, EmitFuncNum));
Evan Cheng06d64702006-08-11 08:59:35 +00001823 OS << "SDNode *Emit_" << utostr(EmitFuncNum) << CalleeCode;
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001824 }
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001825
Chris Lattner706d2d32006-08-09 16:44:44 +00001826 // Replace the emission code within selection routines with calls to the
1827 // emission functions.
David Greene8ad4c002008-10-27 21:56:29 +00001828 if (GenDebug) {
1829 GeneratedCode.push_back(std::make_pair(0, "CurDAG->setSubgraphColor(N.getNode(), \"red\");"));
1830 }
1831 CallerCode = "SDNode *Result = Emit_" + utostr(EmitFuncNum) + CallerCode;
1832 GeneratedCode.push_back(std::make_pair(3, CallerCode));
1833 if (GenDebug) {
1834 GeneratedCode.push_back(std::make_pair(0, "if(Result) {"));
1835 GeneratedCode.push_back(std::make_pair(0, " CurDAG->setSubgraphColor(Result, \"yellow\");"));
1836 GeneratedCode.push_back(std::make_pair(0, " CurDAG->setSubgraphColor(Result, \"black\");"));
1837 GeneratedCode.push_back(std::make_pair(0, "}"));
1838 //GeneratedCode.push_back(std::make_pair(0, "CurDAG->setSubgraphColor(N.getNode(), \"black\");"));
1839 }
1840 GeneratedCode.push_back(std::make_pair(0, "return Result;"));
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001841 }
1842
Chris Lattner706d2d32006-08-09 16:44:44 +00001843 // Print function.
Chris Lattnerab51ddd2006-11-14 21:32:01 +00001844 std::string OpVTStr;
Chris Lattner33a40042006-11-14 22:17:10 +00001845 if (OpVT == MVT::iPTR) {
1846 OpVTStr = "_iPTR";
Mon P Wange3b3a722008-07-30 04:36:53 +00001847 } else if (OpVT == MVT::iPTRAny) {
1848 OpVTStr = "_iPTRAny";
Chris Lattner33a40042006-11-14 22:17:10 +00001849 } else if (OpVT == MVT::isVoid) {
1850 // Nodes with a void result actually have a first result type of either
1851 // Other (a chain) or Flag. Since there is no one-to-one mapping from
1852 // void to this case, we handle it specially here.
1853 } else {
1854 OpVTStr = "_" + getEnumName(OpVT).substr(5); // Skip 'MVT::'
1855 }
Chris Lattner706d2d32006-08-09 16:44:44 +00001856 std::map<std::string, std::vector<std::string> >::iterator OpVTI =
1857 OpcodeVTMap.find(OpName);
1858 if (OpVTI == OpcodeVTMap.end()) {
1859 std::vector<std::string> VTSet;
1860 VTSet.push_back(OpVTStr);
1861 OpcodeVTMap.insert(std::make_pair(OpName, VTSet));
1862 } else
1863 OpVTI->second.push_back(OpVTStr);
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001864
Dan Gohman0540e172008-10-15 06:17:21 +00001865 // We want to emit all of the matching code now. However, we want to emit
1866 // the matches in order of minimal cost. Sort the patterns so the least
1867 // cost one is at the start.
1868 std::stable_sort(CodeForPatterns.begin(), CodeForPatterns.end(),
1869 PatternSortingPredicate(CGP));
1870
1871 // Scan the code to see if all of the patterns are reachable and if it is
1872 // possible that the last one might not match.
1873 bool mightNotMatch = true;
1874 for (unsigned i = 0, e = CodeForPatterns.size(); i != e; ++i) {
1875 CodeList &GeneratedCode = CodeForPatterns[i].second;
1876 mightNotMatch = false;
1877
1878 for (unsigned j = 0, e = GeneratedCode.size(); j != e; ++j) {
1879 if (GeneratedCode[j].first == 1) { // predicate.
1880 mightNotMatch = true;
1881 break;
1882 }
1883 }
1884
1885 // If this pattern definitely matches, and if it isn't the last one, the
1886 // patterns after it CANNOT ever match. Error out.
1887 if (mightNotMatch == false && i != CodeForPatterns.size()-1) {
Daniel Dunbar1a551802009-07-03 00:10:29 +00001888 errs() << "Pattern '";
1889 CodeForPatterns[i].first->getSrcPattern()->print(errs());
1890 errs() << "' is impossible to select!\n";
Dan Gohman0540e172008-10-15 06:17:21 +00001891 exit(1);
1892 }
1893 }
1894
Chris Lattner706d2d32006-08-09 16:44:44 +00001895 // Loop through and reverse all of the CodeList vectors, as we will be
1896 // accessing them from their logical front, but accessing the end of a
1897 // vector is more efficient.
1898 for (unsigned i = 0, e = CodeForPatterns.size(); i != e; ++i) {
1899 CodeList &GeneratedCode = CodeForPatterns[i].second;
1900 std::reverse(GeneratedCode.begin(), GeneratedCode.end());
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001901 }
Chris Lattner706d2d32006-08-09 16:44:44 +00001902
1903 // Next, reverse the list of patterns itself for the same reason.
1904 std::reverse(CodeForPatterns.begin(), CodeForPatterns.end());
1905
Dan Gohman63e3e632009-01-29 01:37:18 +00001906 OS << "SDNode *Select_" << getLegalCName(OpName)
1907 << OpVTStr << "(const SDValue &N) {\n";
1908
Chris Lattner706d2d32006-08-09 16:44:44 +00001909 // Emit all of the patterns now, grouped together to share code.
1910 EmitPatterns(CodeForPatterns, 2, OS);
1911
Chris Lattner64906972006-09-21 18:28:27 +00001912 // If the last pattern has predicates (which could fail) emit code to
1913 // catch the case where nothing handles a pattern.
Chris Lattner706d2d32006-08-09 16:44:44 +00001914 if (mightNotMatch) {
Dan Gohman31bd42b2008-09-27 23:53:14 +00001915 OS << "\n";
Evan Cheng892aaf82006-11-08 23:01:03 +00001916 if (OpName != "ISD::INTRINSIC_W_CHAIN" &&
1917 OpName != "ISD::INTRINSIC_WO_CHAIN" &&
Dan Gohman31bd42b2008-09-27 23:53:14 +00001918 OpName != "ISD::INTRINSIC_VOID")
1919 OS << " CannotYetSelect(N);\n";
1920 else
1921 OS << " CannotYetSelectIntrinsic(N);\n";
1922
1923 OS << " return NULL;\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00001924 }
1925 OS << "}\n\n";
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001926 }
Chris Lattner602f6922006-01-04 00:25:00 +00001927 }
1928
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001929 // Emit boilerplate.
Dan Gohman475871a2008-07-27 21:46:04 +00001930 OS << "SDNode *Select_INLINEASM(SDValue N) {\n"
Gabor Greifba36cb52008-08-28 21:40:38 +00001931 << " std::vector<SDValue> Ops(N.getNode()->op_begin(), N.getNode()->op_end());\n"
Dan Gohmanf350b272008-08-23 02:25:05 +00001932 << " SelectInlineAsmMemoryOperands(Ops);\n\n"
Chris Lattner4ef9b112007-05-15 01:36:44 +00001933
Duncan Sands83ec4b62008-06-06 12:08:01 +00001934 << " std::vector<MVT> VTs;\n"
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00001935 << " VTs.push_back(MVT::Other);\n"
1936 << " VTs.push_back(MVT::Flag);\n"
Dale Johannesen3484c092009-02-05 22:07:54 +00001937 << " SDValue New = CurDAG->getNode(ISD::INLINEASM, N.getDebugLoc(), "
1938 "VTs, &Ops[0], Ops.size());\n"
Gabor Greifba36cb52008-08-28 21:40:38 +00001939 << " return New.getNode();\n"
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00001940 << "}\n\n";
Evan Chengda47e6e2008-03-15 00:03:38 +00001941
Dan Gohman475871a2008-07-27 21:46:04 +00001942 OS << "SDNode *Select_UNDEF(const SDValue &N) {\n"
Gabor Greifba36cb52008-08-28 21:40:38 +00001943 << " return CurDAG->SelectNodeTo(N.getNode(), TargetInstrInfo::IMPLICIT_DEF,\n"
Dan Gohmancd920d92008-07-02 23:23:19 +00001944 << " N.getValueType());\n"
1945 << "}\n\n";
1946
Dan Gohman475871a2008-07-27 21:46:04 +00001947 OS << "SDNode *Select_DBG_LABEL(const SDValue &N) {\n"
1948 << " SDValue Chain = N.getOperand(0);\n"
Dan Gohmancd920d92008-07-02 23:23:19 +00001949 << " unsigned C = cast<LabelSDNode>(N)->getLabelID();\n"
Dan Gohman475871a2008-07-27 21:46:04 +00001950 << " SDValue Tmp = CurDAG->getTargetConstant(C, MVT::i32);\n"
Gabor Greifba36cb52008-08-28 21:40:38 +00001951 << " return CurDAG->SelectNodeTo(N.getNode(), TargetInstrInfo::DBG_LABEL,\n"
Dan Gohmancd920d92008-07-02 23:23:19 +00001952 << " MVT::Other, Tmp, Chain);\n"
1953 << "}\n\n";
1954
Dan Gohman475871a2008-07-27 21:46:04 +00001955 OS << "SDNode *Select_EH_LABEL(const SDValue &N) {\n"
1956 << " SDValue Chain = N.getOperand(0);\n"
Dan Gohmancd920d92008-07-02 23:23:19 +00001957 << " unsigned C = cast<LabelSDNode>(N)->getLabelID();\n"
Dan Gohman475871a2008-07-27 21:46:04 +00001958 << " SDValue Tmp = CurDAG->getTargetConstant(C, MVT::i32);\n"
Gabor Greifba36cb52008-08-28 21:40:38 +00001959 << " return CurDAG->SelectNodeTo(N.getNode(), TargetInstrInfo::EH_LABEL,\n"
Dan Gohmancd920d92008-07-02 23:23:19 +00001960 << " MVT::Other, Tmp, Chain);\n"
Evan Chengda47e6e2008-03-15 00:03:38 +00001961 << "}\n\n";
1962
Dan Gohman475871a2008-07-27 21:46:04 +00001963 OS << "SDNode *Select_DECLARE(const SDValue &N) {\n"
1964 << " SDValue Chain = N.getOperand(0);\n"
1965 << " SDValue N1 = N.getOperand(1);\n"
1966 << " SDValue N2 = N.getOperand(2);\n"
Evan Chenga844bde2008-02-02 04:07:54 +00001967 << " if (!isa<FrameIndexSDNode>(N1) || !isa<GlobalAddressSDNode>(N2)) {\n"
Dan Gohman31bd42b2008-09-27 23:53:14 +00001968 << " CannotYetSelect(N);\n"
Evan Chenga844bde2008-02-02 04:07:54 +00001969 << " }\n"
1970 << " int FI = cast<FrameIndexSDNode>(N1)->getIndex();\n"
1971 << " GlobalValue *GV = cast<GlobalAddressSDNode>(N2)->getGlobal();\n"
Dan Gohman475871a2008-07-27 21:46:04 +00001972 << " SDValue Tmp1 = "
Evan Chenga844bde2008-02-02 04:07:54 +00001973 << "CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());\n"
Dan Gohman475871a2008-07-27 21:46:04 +00001974 << " SDValue Tmp2 = "
Evan Chenga844bde2008-02-02 04:07:54 +00001975 << "CurDAG->getTargetGlobalAddress(GV, TLI.getPointerTy());\n"
Gabor Greifba36cb52008-08-28 21:40:38 +00001976 << " return CurDAG->SelectNodeTo(N.getNode(), TargetInstrInfo::DECLARE,\n"
Dan Gohmancd920d92008-07-02 23:23:19 +00001977 << " MVT::Other, Tmp1, Tmp2, Chain);\n"
Evan Chenga844bde2008-02-02 04:07:54 +00001978 << "}\n\n";
1979
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001980 OS << "// The main instruction selector code.\n"
Dan Gohman475871a2008-07-27 21:46:04 +00001981 << "SDNode *SelectCode(SDValue N) {\n"
Gabor Greifba36cb52008-08-28 21:40:38 +00001982 << " MVT::SimpleValueType NVT = N.getNode()->getValueType(0).getSimpleVT();\n"
Chris Lattner547394c2005-09-23 21:53:45 +00001983 << " switch (N.getOpcode()) {\n"
Dan Gohman28c04da2008-11-05 18:30:52 +00001984 << " default:\n"
1985 << " assert(!N.isMachineOpcode() && \"Node already selected!\");\n"
1986 << " break;\n"
1987 << " case ISD::EntryToken: // These nodes remain the same.\n"
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001988 << " case ISD::MEMOPERAND:\n"
Chris Lattner5216c692005-12-18 21:05:44 +00001989 << " case ISD::BasicBlock:\n"
Chris Lattner8020a522006-01-11 19:52:27 +00001990 << " case ISD::Register:\n"
Evan Cheng0a83ed52006-02-05 08:46:14 +00001991 << " case ISD::HANDLENODE:\n"
Evan Cheng2216d8a2006-02-05 05:22:18 +00001992 << " case ISD::TargetConstant:\n"
Nate Begemane1795842008-02-14 08:57:00 +00001993 << " case ISD::TargetConstantFP:\n"
Evan Cheng2216d8a2006-02-05 05:22:18 +00001994 << " case ISD::TargetConstantPool:\n"
1995 << " case ISD::TargetFrameIndex:\n"
Bill Wendling056292f2008-09-16 21:48:12 +00001996 << " case ISD::TargetExternalSymbol:\n"
Nate Begeman37efe672006-04-22 18:53:45 +00001997 << " case ISD::TargetJumpTable:\n"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001998 << " case ISD::TargetGlobalTLSAddress:\n"
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001999 << " case ISD::TargetGlobalAddress:\n"
2000 << " case ISD::TokenFactor:\n"
2001 << " case ISD::CopyFromReg:\n"
2002 << " case ISD::CopyToReg: {\n"
Evan Cheng06d64702006-08-11 08:59:35 +00002003 << " return NULL;\n"
Evan Cheng34167212006-02-09 00:37:58 +00002004 << " }\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002005 << " case ISD::AssertSext:\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002006 << " case ISD::AssertZext: {\n"
Evan Cheng676d7312006-08-26 00:59:04 +00002007 << " ReplaceUses(N, N.getOperand(0));\n"
Evan Cheng06d64702006-08-11 08:59:35 +00002008 << " return NULL;\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002009 << " }\n"
Jim Laskeya683f9b2007-01-26 17:29:20 +00002010 << " case ISD::INLINEASM: return Select_INLINEASM(N);\n"
Dan Gohmancd920d92008-07-02 23:23:19 +00002011 << " case ISD::DBG_LABEL: return Select_DBG_LABEL(N);\n"
2012 << " case ISD::EH_LABEL: return Select_EH_LABEL(N);\n"
Evan Chenga844bde2008-02-02 04:07:54 +00002013 << " case ISD::DECLARE: return Select_DECLARE(N);\n"
Evan Chengda47e6e2008-03-15 00:03:38 +00002014 << " case ISD::UNDEF: return Select_UNDEF(N);\n";
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00002015
Chris Lattner602f6922006-01-04 00:25:00 +00002016 // Loop over all of the case statements, emiting a call to each method we
2017 // emitted above.
Chris Lattner60d81392008-01-05 22:30:17 +00002018 for (std::map<std::string, std::vector<const PatternToMatch*> >::iterator
Evan Cheng892aaf82006-11-08 23:01:03 +00002019 PBOI = PatternsByOpcode.begin(), E = PatternsByOpcode.end();
2020 PBOI != E; ++PBOI) {
2021 const std::string &OpName = PBOI->first;
Chris Lattner706d2d32006-08-09 16:44:44 +00002022 // Potentially multiple versions of select for this opcode. One for each
2023 // ValueType of the node (or its first true operand if it doesn't produce a
2024 // result.
2025 std::map<std::string, std::vector<std::string> >::iterator OpVTI =
2026 OpcodeVTMap.find(OpName);
2027 std::vector<std::string> &OpVTs = OpVTI->second;
Evan Cheng892aaf82006-11-08 23:01:03 +00002028 OS << " case " << OpName << ": {\n";
Dale Johannesen3b895cf2009-05-12 22:32:29 +00002029 // If we have only one variant and it's the default, elide the
2030 // switch. Marginally faster, and makes MSVC happier.
2031 if (OpVTs.size()==1 && OpVTs[0].empty()) {
2032 OS << " return Select_" << getLegalCName(OpName) << "(N);\n";
2033 OS << " break;\n";
2034 OS << " }\n";
2035 continue;
2036 }
Evan Cheng425e8c72007-09-04 20:18:28 +00002037 // Keep track of whether we see a pattern that has an iPtr result.
2038 bool HasPtrPattern = false;
2039 bool HasDefaultPattern = false;
Chris Lattner717a6112006-11-14 21:50:27 +00002040
Evan Cheng425e8c72007-09-04 20:18:28 +00002041 OS << " switch (NVT) {\n";
2042 for (unsigned i = 0, e = OpVTs.size(); i < e; ++i) {
2043 std::string &VTStr = OpVTs[i];
2044 if (VTStr.empty()) {
2045 HasDefaultPattern = true;
2046 continue;
2047 }
Chris Lattner717a6112006-11-14 21:50:27 +00002048
Evan Cheng425e8c72007-09-04 20:18:28 +00002049 // If this is a match on iPTR: don't emit it directly, we need special
2050 // code.
2051 if (VTStr == "_iPTR") {
2052 HasPtrPattern = true;
2053 continue;
Chris Lattner706d2d32006-08-09 16:44:44 +00002054 }
Evan Cheng425e8c72007-09-04 20:18:28 +00002055 OS << " case MVT::" << VTStr.substr(1) << ":\n"
2056 << " return Select_" << getLegalCName(OpName)
2057 << VTStr << "(N);\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00002058 }
Evan Cheng425e8c72007-09-04 20:18:28 +00002059 OS << " default:\n";
2060
2061 // If there is an iPTR result version of this pattern, emit it here.
2062 if (HasPtrPattern) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002063 OS << " if (TLI.getPointerTy() == NVT)\n";
Evan Cheng425e8c72007-09-04 20:18:28 +00002064 OS << " return Select_" << getLegalCName(OpName) <<"_iPTR(N);\n";
2065 }
2066 if (HasDefaultPattern) {
2067 OS << " return Select_" << getLegalCName(OpName) << "(N);\n";
2068 }
2069 OS << " break;\n";
2070 OS << " }\n";
2071 OS << " break;\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00002072 OS << " }\n";
Chris Lattner81303322005-09-23 19:36:15 +00002073 }
Chris Lattner81303322005-09-23 19:36:15 +00002074
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002075 OS << " } // end of big switch.\n\n"
Chris Lattnerb026e702006-03-28 00:41:33 +00002076 << " if (N.getOpcode() != ISD::INTRINSIC_W_CHAIN &&\n"
2077 << " N.getOpcode() != ISD::INTRINSIC_WO_CHAIN &&\n"
2078 << " N.getOpcode() != ISD::INTRINSIC_VOID) {\n"
Dan Gohman31bd42b2008-09-27 23:53:14 +00002079 << " CannotYetSelect(N);\n"
Chris Lattner9bf2d3e2006-03-25 06:47:53 +00002080 << " } else {\n"
Dan Gohman31bd42b2008-09-27 23:53:14 +00002081 << " CannotYetSelectIntrinsic(N);\n"
Chris Lattner9bf2d3e2006-03-25 06:47:53 +00002082 << " }\n"
Dan Gohman31bd42b2008-09-27 23:53:14 +00002083 << " return NULL;\n"
2084 << "}\n\n";
2085
2086 OS << "void CannotYetSelect(SDValue N) DISABLE_INLINE {\n"
Torok Edwin804e0fe2009-07-08 19:04:27 +00002087 << " std::string msg;\n"
2088 << " raw_string_ostream Msg(msg);\n"
2089 << " Msg << \"Cannot yet select: \";\n"
2090 << " N.getNode()->print(Msg, CurDAG);\n"
2091 << " llvm_report_error(Msg.str());\n"
Dan Gohman31bd42b2008-09-27 23:53:14 +00002092 << "}\n\n";
2093
2094 OS << "void CannotYetSelectIntrinsic(SDValue N) DISABLE_INLINE {\n"
2095 << " cerr << \"Cannot yet select: \";\n"
2096 << " unsigned iid = cast<ConstantSDNode>(N.getOperand("
2097 << "N.getOperand(0).getValueType() == MVT::Other))->getZExtValue();\n"
Torok Edwin804e0fe2009-07-08 19:04:27 +00002098 << " llvm_report_error(\"Cannot yet select: intrinsic %\" +\n"
2099 << "Intrinsic::getName((Intrinsic::ID)iid));\n"
Dan Gohman31bd42b2008-09-27 23:53:14 +00002100 << "}\n\n";
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002101}
2102
Daniel Dunbar1a551802009-07-03 00:10:29 +00002103void DAGISelEmitter::run(raw_ostream &OS) {
Chris Lattner200c57e2008-01-05 22:58:54 +00002104 EmitSourceFileHeader("DAG Instruction Selector for the " +
2105 CGP.getTargetInfo().getName() + " target", OS);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002106
Chris Lattner1f39e292005-09-14 00:09:24 +00002107 OS << "// *** NOTE: This file is #included into the middle of the target\n"
2108 << "// *** instruction selector class. These functions are really "
2109 << "methods.\n\n";
Chris Lattnerf8dc0612008-02-03 06:49:24 +00002110
Roman Levenstein6422e8a2008-05-14 10:17:11 +00002111 OS << "// Include standard, target-independent definitions and methods used\n"
2112 << "// by the instruction selector.\n";
Mike Stumpfe095f32009-05-04 18:40:41 +00002113 OS << "#include \"llvm/CodeGen/DAGISelHeader.h\"\n\n";
Chris Lattner296dfe32005-09-24 00:50:51 +00002114
Chris Lattner443e3f92008-01-05 22:54:53 +00002115 EmitNodeTransforms(OS);
Chris Lattnerdc32f982008-01-05 22:43:57 +00002116 EmitPredicateFunctions(OS);
2117
Bill Wendlingf5da1332006-12-07 22:21:48 +00002118 DOUT << "\n\nALL PATTERNS TO MATCH:\n\n";
Chris Lattnerfe718932008-01-06 01:10:31 +00002119 for (CodeGenDAGPatterns::ptm_iterator I = CGP.ptm_begin(), E = CGP.ptm_end();
Chris Lattner6cefb772008-01-05 22:25:12 +00002120 I != E; ++I) {
2121 DOUT << "PATTERN: "; DEBUG(I->getSrcPattern()->dump());
2122 DOUT << "\nRESULT: "; DEBUG(I->getDstPattern()->dump());
Bill Wendlingf5da1332006-12-07 22:21:48 +00002123 DOUT << "\n";
2124 }
Chris Lattnere46e17b2005-09-29 19:28:10 +00002125
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002126 // At this point, we have full information about the 'Patterns' we need to
2127 // parse, both implicitly from instructions as well as from explicit pattern
Chris Lattnere97603f2005-09-28 19:27:25 +00002128 // definitions. Emit the resultant instruction selector.
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002129 EmitInstructionSelector(OS);
2130
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002131}