blob: b3a75de5e59d195d567b1a8ce4af2ae13a2ada53 [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"
17#include "llvm/Support/Debug.h"
Chris Lattnerbe8e7212006-10-11 03:35:34 +000018#include "llvm/Support/MathExtras.h"
Bill Wendlingf5da1332006-12-07 22:21:48 +000019#include "llvm/Support/Streams.h"
Jeff Cohena48283b2005-09-25 19:04:43 +000020#include <algorithm>
Chris Lattner54cb8fd2005-09-07 23:44:43 +000021using namespace llvm;
22
Chris Lattnerca559d02005-09-08 21:03:01 +000023//===----------------------------------------------------------------------===//
Chris Lattnerdc32f982008-01-05 22:43:57 +000024// DAGISelEmitter Helper methods
Chris Lattner54cb8fd2005-09-07 23:44:43 +000025//
26
Chris Lattner6cefb772008-01-05 22:25:12 +000027/// NodeIsComplexPattern - return true if N is a leaf node and a subclass of
28/// ComplexPattern.
29static bool NodeIsComplexPattern(TreePatternNode *N) {
Evan Cheng0fc71982005-12-08 02:00:36 +000030 return (N->isLeaf() &&
31 dynamic_cast<DefInit*>(N->getLeafValue()) &&
32 static_cast<DefInit*>(N->getLeafValue())->getDef()->
33 isSubClassOf("ComplexPattern"));
34}
35
Chris Lattner6cefb772008-01-05 22:25:12 +000036/// NodeGetComplexPattern - return the pointer to the ComplexPattern if N
37/// is a leaf node and a subclass of ComplexPattern, else it returns NULL.
Evan Cheng0fc71982005-12-08 02:00:36 +000038static const ComplexPattern *NodeGetComplexPattern(TreePatternNode *N,
Chris Lattnerfe718932008-01-06 01:10:31 +000039 CodeGenDAGPatterns &CGP) {
Evan Cheng0fc71982005-12-08 02:00:36 +000040 if (N->isLeaf() &&
41 dynamic_cast<DefInit*>(N->getLeafValue()) &&
42 static_cast<DefInit*>(N->getLeafValue())->getDef()->
43 isSubClassOf("ComplexPattern")) {
Chris Lattner6cefb772008-01-05 22:25:12 +000044 return &CGP.getComplexPattern(static_cast<DefInit*>(N->getLeafValue())
45 ->getDef());
Evan Cheng0fc71982005-12-08 02:00:36 +000046 }
47 return NULL;
48}
49
Chris Lattner05814af2005-09-28 17:57:56 +000050/// getPatternSize - Return the 'size' of this pattern. We want to match large
51/// patterns before small ones. This is used to determine the size of a
52/// pattern.
Chris Lattnerfe718932008-01-06 01:10:31 +000053static unsigned getPatternSize(TreePatternNode *P, CodeGenDAGPatterns &CGP) {
Duncan Sands83ec4b62008-06-06 12:08:01 +000054 assert((EMVT::isExtIntegerInVTs(P->getExtTypes()) ||
55 EMVT::isExtFloatingPointInVTs(P->getExtTypes()) ||
Evan Cheng2618d072006-05-17 20:37:59 +000056 P->getExtTypeNum(0) == MVT::isVoid ||
57 P->getExtTypeNum(0) == MVT::Flag ||
58 P->getExtTypeNum(0) == MVT::iPTR) &&
Evan Cheng4a7c2842006-01-06 22:19:44 +000059 "Not a valid pattern node to size!");
Evan Cheng6cec34e2006-09-08 07:26:39 +000060 unsigned Size = 3; // The node itself.
Evan Cheng657416c2006-02-01 06:06:31 +000061 // If the root node is a ConstantSDNode, increases its size.
62 // e.g. (set R32:$dst, 0).
63 if (P->isLeaf() && dynamic_cast<IntInit*>(P->getLeafValue()))
Evan Cheng6cec34e2006-09-08 07:26:39 +000064 Size += 2;
Evan Cheng0fc71982005-12-08 02:00:36 +000065
66 // FIXME: This is a hack to statically increase the priority of patterns
67 // which maps a sub-dag to a complex pattern. e.g. favors LEA over ADD.
68 // Later we can allow complexity / cost for each pattern to be (optionally)
69 // specified. To get best possible pattern match we'll need to dynamically
70 // calculate the complexity of all patterns a dag can potentially map to.
Chris Lattner6cefb772008-01-05 22:25:12 +000071 const ComplexPattern *AM = NodeGetComplexPattern(P, CGP);
Evan Cheng0fc71982005-12-08 02:00:36 +000072 if (AM)
Evan Cheng6cec34e2006-09-08 07:26:39 +000073 Size += AM->getNumOperands() * 3;
Chris Lattner3e179802006-02-03 18:06:02 +000074
75 // If this node has some predicate function that must match, it adds to the
76 // complexity of this node.
77 if (!P->getPredicateFn().empty())
78 ++Size;
79
Chris Lattner05814af2005-09-28 17:57:56 +000080 // Count children in the count if they are also nodes.
81 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) {
82 TreePatternNode *Child = P->getChild(i);
Nate Begemanb73628b2005-12-30 00:12:56 +000083 if (!Child->isLeaf() && Child->getExtTypeNum(0) != MVT::Other)
Chris Lattner6cefb772008-01-05 22:25:12 +000084 Size += getPatternSize(Child, CGP);
Evan Cheng0fc71982005-12-08 02:00:36 +000085 else if (Child->isLeaf()) {
86 if (dynamic_cast<IntInit*>(Child->getLeafValue()))
Evan Cheng6cec34e2006-09-08 07:26:39 +000087 Size += 5; // Matches a ConstantSDNode (+3) and a specific value (+2).
Evan Cheng4a7c2842006-01-06 22:19:44 +000088 else if (NodeIsComplexPattern(Child))
Chris Lattner6cefb772008-01-05 22:25:12 +000089 Size += getPatternSize(Child, CGP);
Chris Lattner3e179802006-02-03 18:06:02 +000090 else if (!Child->getPredicateFn().empty())
91 ++Size;
Chris Lattner2f041d42005-10-19 04:41:05 +000092 }
Chris Lattner05814af2005-09-28 17:57:56 +000093 }
94
95 return Size;
96}
97
98/// getResultPatternCost - Compute the number of instructions for this pattern.
99/// This is a temporary hack. We should really include the instruction
100/// latencies in this calculation.
Chris Lattner6cefb772008-01-05 22:25:12 +0000101static unsigned getResultPatternCost(TreePatternNode *P,
Chris Lattnerfe718932008-01-06 01:10:31 +0000102 CodeGenDAGPatterns &CGP) {
Chris Lattner05814af2005-09-28 17:57:56 +0000103 if (P->isLeaf()) return 0;
104
Evan Chengfbad7082006-02-18 02:33:09 +0000105 unsigned Cost = 0;
106 Record *Op = P->getOperator();
107 if (Op->isSubClassOf("Instruction")) {
108 Cost++;
Chris Lattner6cefb772008-01-05 22:25:12 +0000109 CodeGenInstruction &II = CGP.getTargetInfo().getInstruction(Op->getName());
Evan Chengfbad7082006-02-18 02:33:09 +0000110 if (II.usesCustomDAGSchedInserter)
111 Cost += 10;
112 }
Chris Lattner05814af2005-09-28 17:57:56 +0000113 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
Chris Lattner6cefb772008-01-05 22:25:12 +0000114 Cost += getResultPatternCost(P->getChild(i), CGP);
Chris Lattner05814af2005-09-28 17:57:56 +0000115 return Cost;
116}
117
Evan Chenge6f32032006-07-19 00:24:41 +0000118/// getResultPatternCodeSize - Compute the code size of instructions for this
119/// pattern.
Chris Lattner6cefb772008-01-05 22:25:12 +0000120static unsigned getResultPatternSize(TreePatternNode *P,
Chris Lattnerfe718932008-01-06 01:10:31 +0000121 CodeGenDAGPatterns &CGP) {
Evan Chenge6f32032006-07-19 00:24:41 +0000122 if (P->isLeaf()) return 0;
123
124 unsigned Cost = 0;
125 Record *Op = P->getOperator();
126 if (Op->isSubClassOf("Instruction")) {
127 Cost += Op->getValueAsInt("CodeSize");
128 }
129 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
Chris Lattner6cefb772008-01-05 22:25:12 +0000130 Cost += getResultPatternSize(P->getChild(i), CGP);
Evan Chenge6f32032006-07-19 00:24:41 +0000131 return Cost;
132}
133
Chris Lattner05814af2005-09-28 17:57:56 +0000134// PatternSortingPredicate - return true if we prefer to match LHS before RHS.
135// In particular, we want to match maximal patterns first and lowest cost within
136// a particular complexity first.
137struct PatternSortingPredicate {
Chris Lattnerfe718932008-01-06 01:10:31 +0000138 PatternSortingPredicate(CodeGenDAGPatterns &cgp) : CGP(cgp) {}
139 CodeGenDAGPatterns &CGP;
Evan Cheng0fc71982005-12-08 02:00:36 +0000140
Chris Lattner60d81392008-01-05 22:30:17 +0000141 bool operator()(const PatternToMatch *LHS,
142 const PatternToMatch *RHS) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000143 unsigned LHSSize = getPatternSize(LHS->getSrcPattern(), CGP);
144 unsigned RHSSize = getPatternSize(RHS->getSrcPattern(), CGP);
Evan Chengc81d2a02006-04-19 20:36:09 +0000145 LHSSize += LHS->getAddedComplexity();
146 RHSSize += RHS->getAddedComplexity();
Chris Lattner05814af2005-09-28 17:57:56 +0000147 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost
148 if (LHSSize < RHSSize) return false;
149
150 // If the patterns have equal complexity, compare generated instruction cost
Chris Lattner6cefb772008-01-05 22:25:12 +0000151 unsigned LHSCost = getResultPatternCost(LHS->getDstPattern(), CGP);
152 unsigned RHSCost = getResultPatternCost(RHS->getDstPattern(), CGP);
Evan Chenge6f32032006-07-19 00:24:41 +0000153 if (LHSCost < RHSCost) return true;
154 if (LHSCost > RHSCost) return false;
155
Chris Lattner6cefb772008-01-05 22:25:12 +0000156 return getResultPatternSize(LHS->getDstPattern(), CGP) <
157 getResultPatternSize(RHS->getDstPattern(), CGP);
Chris Lattner05814af2005-09-28 17:57:56 +0000158 }
159};
160
Nate Begeman6510b222005-12-01 04:51:06 +0000161/// getRegisterValueType - Look up and return the first ValueType of specified
162/// RegisterClass record
Duncan Sands83ec4b62008-06-06 12:08:01 +0000163static MVT::SimpleValueType getRegisterValueType(Record *R, const CodeGenTarget &T) {
Chris Lattner22faeab2005-12-05 02:36:37 +0000164 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
165 return RC->getValueTypeNum(0);
Evan Cheng66a48bb2005-12-01 00:18:45 +0000166 return MVT::Other;
167}
168
Chris Lattner72fe91c2005-09-24 00:40:24 +0000169
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000170/// RemoveAllTypes - A quick recursive walk over a pattern which removes all
171/// type information from it.
172static void RemoveAllTypes(TreePatternNode *N) {
Nate Begemanb73628b2005-12-30 00:12:56 +0000173 N->removeTypes();
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000174 if (!N->isLeaf())
175 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
176 RemoveAllTypes(N->getChild(i));
177}
Chris Lattner72fe91c2005-09-24 00:40:24 +0000178
Evan Cheng51fecc82006-01-09 18:27:06 +0000179/// NodeHasProperty - return true if TreePatternNode has the specified
180/// property.
Evan Cheng94b30402006-10-11 21:02:01 +0000181static bool NodeHasProperty(TreePatternNode *N, SDNP Property,
Chris Lattnerfe718932008-01-06 01:10:31 +0000182 CodeGenDAGPatterns &CGP) {
Evan Cheng94b30402006-10-11 21:02:01 +0000183 if (N->isLeaf()) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000184 const ComplexPattern *CP = NodeGetComplexPattern(N, CGP);
Evan Cheng94b30402006-10-11 21:02:01 +0000185 if (CP)
186 return CP->hasProperty(Property);
187 return false;
188 }
Evan Cheng7b05bd52005-12-23 22:11:47 +0000189 Record *Operator = N->getOperator();
190 if (!Operator->isSubClassOf("SDNode")) return false;
191
Chris Lattner6cefb772008-01-05 22:25:12 +0000192 return CGP.getSDNodeInfo(Operator).hasProperty(Property);
Evan Cheng7b05bd52005-12-23 22:11:47 +0000193}
194
Evan Cheng94b30402006-10-11 21:02:01 +0000195static bool PatternHasProperty(TreePatternNode *N, SDNP Property,
Chris Lattnerfe718932008-01-06 01:10:31 +0000196 CodeGenDAGPatterns &CGP) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000197 if (NodeHasProperty(N, Property, CGP))
Evan Cheng7b05bd52005-12-23 22:11:47 +0000198 return true;
Evan Cheng51fecc82006-01-09 18:27:06 +0000199
200 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
201 TreePatternNode *Child = N->getChild(i);
Chris Lattner6cefb772008-01-05 22:25:12 +0000202 if (PatternHasProperty(Child, Property, CGP))
Evan Cheng51fecc82006-01-09 18:27:06 +0000203 return true;
Evan Cheng7b05bd52005-12-23 22:11:47 +0000204 }
205
206 return false;
207}
208
Chris Lattnerdc32f982008-01-05 22:43:57 +0000209//===----------------------------------------------------------------------===//
Chris Lattner443e3f92008-01-05 22:54:53 +0000210// Node Transformation emitter implementation.
211//
212void DAGISelEmitter::EmitNodeTransforms(std::ostream &OS) {
213 // Walk the pattern fragments, adding them to a map, which sorts them by
214 // name.
Chris Lattnerfe718932008-01-06 01:10:31 +0000215 typedef std::map<std::string, CodeGenDAGPatterns::NodeXForm> NXsByNameTy;
Chris Lattner443e3f92008-01-05 22:54:53 +0000216 NXsByNameTy NXsByName;
217
Chris Lattnerfe718932008-01-06 01:10:31 +0000218 for (CodeGenDAGPatterns::nx_iterator I = CGP.nx_begin(), E = CGP.nx_end();
Chris Lattner443e3f92008-01-05 22:54:53 +0000219 I != E; ++I)
220 NXsByName.insert(std::make_pair(I->first->getName(), I->second));
221
222 OS << "\n// Node transformations.\n";
223
224 for (NXsByNameTy::iterator I = NXsByName.begin(), E = NXsByName.end();
225 I != E; ++I) {
226 Record *SDNode = I->second.first;
227 std::string Code = I->second.second;
228
229 if (Code.empty()) continue; // Empty code? Skip it.
230
Chris Lattner200c57e2008-01-05 22:58:54 +0000231 std::string ClassName = CGP.getSDNodeInfo(SDNode).getSDClassName();
Chris Lattner443e3f92008-01-05 22:54:53 +0000232 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
233
234 OS << "inline SDOperand Transform_" << I->first << "(SDNode *" << C2
235 << ") {\n";
236 if (ClassName != "SDNode")
237 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
238 OS << Code << "\n}\n";
239 }
240}
241
242//===----------------------------------------------------------------------===//
Chris Lattnerdc32f982008-01-05 22:43:57 +0000243// Predicate emitter implementation.
244//
245
246void DAGISelEmitter::EmitPredicateFunctions(std::ostream &OS) {
247 OS << "\n// Predicate functions.\n";
248
249 // Walk the pattern fragments, adding them to a map, which sorts them by
250 // name.
251 typedef std::map<std::string, std::pair<Record*, TreePattern*> > PFsByNameTy;
252 PFsByNameTy PFsByName;
253
Chris Lattnerfe718932008-01-06 01:10:31 +0000254 for (CodeGenDAGPatterns::pf_iterator I = CGP.pf_begin(), E = CGP.pf_end();
Chris Lattnerdc32f982008-01-05 22:43:57 +0000255 I != E; ++I)
256 PFsByName.insert(std::make_pair(I->first->getName(), *I));
257
258
259 for (PFsByNameTy::iterator I = PFsByName.begin(), E = PFsByName.end();
260 I != E; ++I) {
261 Record *PatFragRecord = I->second.first;// Record that derives from PatFrag.
262 TreePattern *P = I->second.second;
263
264 // If there is a code init for this fragment, emit the predicate code.
265 std::string Code = PatFragRecord->getValueAsCode("Predicate");
266 if (Code.empty()) continue;
267
268 if (P->getOnlyTree()->isLeaf())
269 OS << "inline bool Predicate_" << PatFragRecord->getName()
270 << "(SDNode *N) {\n";
271 else {
272 std::string ClassName =
Chris Lattner200c57e2008-01-05 22:58:54 +0000273 CGP.getSDNodeInfo(P->getOnlyTree()->getOperator()).getSDClassName();
Chris Lattnerdc32f982008-01-05 22:43:57 +0000274 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
275
276 OS << "inline bool Predicate_" << PatFragRecord->getName()
277 << "(SDNode *" << C2 << ") {\n";
278 if (ClassName != "SDNode")
279 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
280 }
281 OS << Code << "\n}\n";
282 }
283
284 OS << "\n\n";
285}
286
287
288//===----------------------------------------------------------------------===//
289// PatternCodeEmitter implementation.
290//
Evan Chengb915f312005-12-09 22:45:35 +0000291class PatternCodeEmitter {
292private:
Chris Lattnerfe718932008-01-06 01:10:31 +0000293 CodeGenDAGPatterns &CGP;
Evan Chengb915f312005-12-09 22:45:35 +0000294
Evan Cheng58e84a62005-12-14 22:02:59 +0000295 // Predicates.
296 ListInit *Predicates;
Evan Cheng59413202006-04-19 18:07:24 +0000297 // Pattern cost.
298 unsigned Cost;
Evan Cheng58e84a62005-12-14 22:02:59 +0000299 // Instruction selector pattern.
300 TreePatternNode *Pattern;
301 // Matched instruction.
302 TreePatternNode *Instruction;
Chris Lattner8a0604b2006-01-28 20:31:24 +0000303
Evan Chengb915f312005-12-09 22:45:35 +0000304 // Node to name mapping
Evan Chengf805c2e2006-01-12 19:35:54 +0000305 std::map<std::string, std::string> VariableMap;
306 // Node to operator mapping
307 std::map<std::string, Record*> OperatorMap;
Evan Chenga58891f2008-02-05 22:50:29 +0000308 // Name of the folded node which produces a flag.
309 std::pair<std::string, unsigned> FoldedFlag;
Evan Chengb915f312005-12-09 22:45:35 +0000310 // Names of all the folded nodes which produce chains.
Evan Cheng1b80f4d2005-12-19 07:18:51 +0000311 std::vector<std::pair<std::string, unsigned> > FoldedChains;
Evan Cheng4326ef52006-10-12 02:08:53 +0000312 // Original input chain(s).
313 std::vector<std::pair<std::string, std::string> > OrigChains;
Evan Chengb4ad33c2006-01-19 01:55:45 +0000314 std::set<std::string> Duplicates;
Evan Chengb915f312005-12-09 22:45:35 +0000315
Dan Gohman69de1932008-02-06 22:27:42 +0000316 /// LSI - Load/Store information.
317 /// Save loads/stores matched by a pattern, and generate a MemOperandSDNode
318 /// for each memory access. This facilitates the use of AliasAnalysis in
319 /// the backend.
320 std::vector<std::string> LSI;
321
Evan Cheng676d7312006-08-26 00:59:04 +0000322 /// GeneratedCode - This is the buffer that we emit code to. The first int
Chris Lattner8a0604b2006-01-28 20:31:24 +0000323 /// indicates whether this is an exit predicate (something that should be
Evan Cheng676d7312006-08-26 00:59:04 +0000324 /// tested, and if true, the match fails) [when 1], or normal code to emit
325 /// [when 0], or initialization code to emit [when 2].
326 std::vector<std::pair<unsigned, std::string> > &GeneratedCode;
Evan Cheng21ad3922006-02-07 00:37:41 +0000327 /// GeneratedDecl - This is the set of all SDOperand declarations needed for
328 /// the set of patterns for each top-level opcode.
Evan Chengf5493192006-08-26 01:02:19 +0000329 std::set<std::string> &GeneratedDecl;
Evan Chengfceb57a2006-07-15 08:45:20 +0000330 /// TargetOpcodes - The target specific opcodes used by the resulting
331 /// instructions.
332 std::vector<std::string> &TargetOpcodes;
Evan Chengf8729402006-07-16 06:12:52 +0000333 std::vector<std::string> &TargetVTs;
Dan Gohmane4c67cd2008-05-31 02:11:25 +0000334 /// OutputIsVariadic - Records whether the instruction output pattern uses
335 /// variable_ops. This requires that the Emit function be passed an
336 /// additional argument to indicate where the input varargs operands
337 /// begin.
338 bool &OutputIsVariadic;
339 /// NumInputRootOps - Records the number of operands the root node of the
340 /// input pattern has. This information is used in the generated code to
341 /// pass to Emit functions when variable_ops processing is needed.
342 unsigned &NumInputRootOps;
Chris Lattner8a0604b2006-01-28 20:31:24 +0000343
Evan Chenge4a8a6e2006-02-03 06:22:41 +0000344 std::string ChainName;
Chris Lattner8a0604b2006-01-28 20:31:24 +0000345 unsigned TmpNo;
Evan Chengfceb57a2006-07-15 08:45:20 +0000346 unsigned OpcNo;
Evan Chengf8729402006-07-16 06:12:52 +0000347 unsigned VTNo;
Chris Lattner8a0604b2006-01-28 20:31:24 +0000348
349 void emitCheck(const std::string &S) {
350 if (!S.empty())
Evan Cheng676d7312006-08-26 00:59:04 +0000351 GeneratedCode.push_back(std::make_pair(1, S));
Chris Lattner8a0604b2006-01-28 20:31:24 +0000352 }
353 void emitCode(const std::string &S) {
354 if (!S.empty())
Evan Cheng676d7312006-08-26 00:59:04 +0000355 GeneratedCode.push_back(std::make_pair(0, S));
356 }
357 void emitInit(const std::string &S) {
358 if (!S.empty())
359 GeneratedCode.push_back(std::make_pair(2, S));
Chris Lattner8a0604b2006-01-28 20:31:24 +0000360 }
Evan Chengf5493192006-08-26 01:02:19 +0000361 void emitDecl(const std::string &S) {
Evan Cheng21ad3922006-02-07 00:37:41 +0000362 assert(!S.empty() && "Invalid declaration");
Evan Chengf5493192006-08-26 01:02:19 +0000363 GeneratedDecl.insert(S);
Evan Cheng21ad3922006-02-07 00:37:41 +0000364 }
Evan Chengfceb57a2006-07-15 08:45:20 +0000365 void emitOpcode(const std::string &Opc) {
366 TargetOpcodes.push_back(Opc);
367 OpcNo++;
368 }
Evan Chengf8729402006-07-16 06:12:52 +0000369 void emitVT(const std::string &VT) {
370 TargetVTs.push_back(VT);
371 VTNo++;
372 }
Evan Chengb915f312005-12-09 22:45:35 +0000373public:
Chris Lattnerfe718932008-01-06 01:10:31 +0000374 PatternCodeEmitter(CodeGenDAGPatterns &cgp, ListInit *preds,
Evan Cheng58e84a62005-12-14 22:02:59 +0000375 TreePatternNode *pattern, TreePatternNode *instr,
Evan Cheng676d7312006-08-26 00:59:04 +0000376 std::vector<std::pair<unsigned, std::string> > &gc,
Evan Chengf5493192006-08-26 01:02:19 +0000377 std::set<std::string> &gd,
Evan Chengfceb57a2006-07-15 08:45:20 +0000378 std::vector<std::string> &to,
Dan Gohmane4c67cd2008-05-31 02:11:25 +0000379 std::vector<std::string> &tv,
380 bool &oiv,
381 unsigned &niro)
Chris Lattner6cefb772008-01-05 22:25:12 +0000382 : CGP(cgp), Predicates(preds), Pattern(pattern), Instruction(instr),
Evan Cheng676d7312006-08-26 00:59:04 +0000383 GeneratedCode(gc), GeneratedDecl(gd),
384 TargetOpcodes(to), TargetVTs(tv),
Dan Gohmane4c67cd2008-05-31 02:11:25 +0000385 OutputIsVariadic(oiv), NumInputRootOps(niro),
Chris Lattner706d2d32006-08-09 16:44:44 +0000386 TmpNo(0), OpcNo(0), VTNo(0) {}
Evan Chengb915f312005-12-09 22:45:35 +0000387
388 /// EmitMatchCode - Emit a matcher for N, going to the label for PatternNo
389 /// if the match fails. At this point, we already know that the opcode for N
390 /// matches, and the SDNode for the result has the RootName specified name.
Evan Cheng13e9e9c2006-10-16 06:33:44 +0000391 void EmitMatchCode(TreePatternNode *N, TreePatternNode *P,
392 const std::string &RootName, const std::string &ChainSuffix,
393 bool &FoundChain) {
Dan Gohman69de1932008-02-06 22:27:42 +0000394
395 // Save loads/stores matched by a pattern.
396 if (!N->isLeaf() && N->getName().empty()) {
Mon P Wang28873102008-06-25 08:15:39 +0000397 if (NodeHasProperty(N, SDNPMemOperand, CGP))
Dan Gohman69de1932008-02-06 22:27:42 +0000398 LSI.push_back(RootName);
Dan Gohman69de1932008-02-06 22:27:42 +0000399 }
400
Evan Chenge41bf822006-02-05 06:43:12 +0000401 bool isRoot = (P == NULL);
Evan Cheng58e84a62005-12-14 22:02:59 +0000402 // Emit instruction predicates. Each predicate is just a string for now.
403 if (isRoot) {
Dan Gohmane4c67cd2008-05-31 02:11:25 +0000404 // Record input varargs info.
405 NumInputRootOps = N->getNumChildren();
406
Chris Lattner8a0604b2006-01-28 20:31:24 +0000407 std::string PredicateCheck;
Evan Cheng58e84a62005-12-14 22:02:59 +0000408 for (unsigned i = 0, e = Predicates->getSize(); i != e; ++i) {
409 if (DefInit *Pred = dynamic_cast<DefInit*>(Predicates->getElement(i))) {
410 Record *Def = Pred->getDef();
Chris Lattner8a0604b2006-01-28 20:31:24 +0000411 if (!Def->isSubClassOf("Predicate")) {
Jim Laskey16d42c62006-07-11 18:25:13 +0000412#ifndef NDEBUG
413 Def->dump();
414#endif
Evan Cheng58e84a62005-12-14 22:02:59 +0000415 assert(0 && "Unknown predicate type!");
416 }
Chris Lattner8a0604b2006-01-28 20:31:24 +0000417 if (!PredicateCheck.empty())
Chris Lattnerbc7fa522006-09-19 00:41:36 +0000418 PredicateCheck += " && ";
Chris Lattner67a202b2006-01-28 20:43:52 +0000419 PredicateCheck += "(" + Def->getValueAsString("CondString") + ")";
Evan Cheng58e84a62005-12-14 22:02:59 +0000420 }
421 }
Chris Lattner8a0604b2006-01-28 20:31:24 +0000422
423 emitCheck(PredicateCheck);
Evan Cheng58e84a62005-12-14 22:02:59 +0000424 }
425
Evan Chengb915f312005-12-09 22:45:35 +0000426 if (N->isLeaf()) {
427 if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
Chris Lattner8a0604b2006-01-28 20:31:24 +0000428 emitCheck("cast<ConstantSDNode>(" + RootName +
Chris Lattner67a202b2006-01-28 20:43:52 +0000429 ")->getSignExtended() == " + itostr(II->getValue()));
Evan Chengb915f312005-12-09 22:45:35 +0000430 return;
431 } else if (!NodeIsComplexPattern(N)) {
432 assert(0 && "Cannot match this as a leaf value!");
433 abort();
434 }
435 }
436
Chris Lattner488580c2006-01-28 19:06:51 +0000437 // If this node has a name associated with it, capture it in VariableMap. If
Evan Chengb915f312005-12-09 22:45:35 +0000438 // we already saw this in the pattern, emit code to verify dagness.
439 if (!N->getName().empty()) {
440 std::string &VarMapEntry = VariableMap[N->getName()];
441 if (VarMapEntry.empty()) {
442 VarMapEntry = RootName;
443 } else {
444 // If we get here, this is a second reference to a specific name. Since
445 // we already have checked that the first reference is valid, we don't
446 // have to recursively match it, just check that it's the same as the
447 // previously named thing.
Chris Lattner67a202b2006-01-28 20:43:52 +0000448 emitCheck(VarMapEntry + " == " + RootName);
Evan Chengb915f312005-12-09 22:45:35 +0000449 return;
450 }
Evan Chengf805c2e2006-01-12 19:35:54 +0000451
452 if (!N->isLeaf())
453 OperatorMap[N->getName()] = N->getOperator();
Evan Chengb915f312005-12-09 22:45:35 +0000454 }
455
456
457 // Emit code to load the child nodes and match their contents recursively.
458 unsigned OpNo = 0;
Chris Lattner6cefb772008-01-05 22:25:12 +0000459 bool NodeHasChain = NodeHasProperty (N, SDNPHasChain, CGP);
460 bool HasChain = PatternHasProperty(N, SDNPHasChain, CGP);
Evan Cheng1feeeec2006-01-26 19:13:45 +0000461 bool EmittedUseCheck = false;
Evan Cheng86217892005-12-12 19:37:43 +0000462 if (HasChain) {
Evan Cheng76356d92006-01-20 01:11:03 +0000463 if (NodeHasChain)
464 OpNo = 1;
Evan Chengb915f312005-12-09 22:45:35 +0000465 if (!isRoot) {
Chris Lattner8a0604b2006-01-28 20:31:24 +0000466 // Multiple uses of actual result?
Chris Lattner67a202b2006-01-28 20:43:52 +0000467 emitCheck(RootName + ".hasOneUse()");
Evan Cheng1feeeec2006-01-26 19:13:45 +0000468 EmittedUseCheck = true;
Evan Chenge41bf822006-02-05 06:43:12 +0000469 if (NodeHasChain) {
Evan Chenge41bf822006-02-05 06:43:12 +0000470 // If the immediate use can somehow reach this node through another
471 // path, then can't fold it either or it will create a cycle.
472 // e.g. In the following diagram, XX can reach ld through YY. If
473 // ld is folded into XX, then YY is both a predecessor and a successor
474 // of XX.
475 //
476 // [ld]
477 // ^ ^
478 // | |
479 // / \---
480 // / [YY]
481 // | ^
482 // [XX]-------|
Evan Cheng13e9e9c2006-10-16 06:33:44 +0000483 bool NeedCheck = false;
484 if (P != Pattern)
485 NeedCheck = true;
486 else {
Chris Lattner6cefb772008-01-05 22:25:12 +0000487 const SDNodeInfo &PInfo = CGP.getSDNodeInfo(P->getOperator());
Evan Cheng13e9e9c2006-10-16 06:33:44 +0000488 NeedCheck =
Chris Lattner6cefb772008-01-05 22:25:12 +0000489 P->getOperator() == CGP.get_intrinsic_void_sdnode() ||
490 P->getOperator() == CGP.get_intrinsic_w_chain_sdnode() ||
491 P->getOperator() == CGP.get_intrinsic_wo_chain_sdnode() ||
Evan Chengce1381a2006-10-14 08:30:15 +0000492 PInfo.getNumOperands() > 1 ||
Evan Cheng94b30402006-10-11 21:02:01 +0000493 PInfo.hasProperty(SDNPHasChain) ||
494 PInfo.hasProperty(SDNPInFlag) ||
Evan Cheng13e9e9c2006-10-16 06:33:44 +0000495 PInfo.hasProperty(SDNPOptInFlag);
496 }
497
498 if (NeedCheck) {
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000499 std::string ParentName(RootName.begin(), RootName.end()-1);
Chris Lattner706d2d32006-08-09 16:44:44 +0000500 emitCheck("CanBeFoldedBy(" + RootName + ".Val, " + ParentName +
Evan Chengce1381a2006-10-14 08:30:15 +0000501 ".Val, N.Val)");
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000502 }
Evan Chenge41bf822006-02-05 06:43:12 +0000503 }
Evan Chengb915f312005-12-09 22:45:35 +0000504 }
Evan Chenge41bf822006-02-05 06:43:12 +0000505
Evan Chengc15d18c2006-01-27 22:13:45 +0000506 if (NodeHasChain) {
Evan Cheng4326ef52006-10-12 02:08:53 +0000507 if (FoundChain) {
508 emitCheck("(" + ChainName + ".Val == " + RootName + ".Val || "
509 "IsChainCompatible(" + ChainName + ".Val, " +
510 RootName + ".Val))");
511 OrigChains.push_back(std::make_pair(ChainName, RootName));
512 } else
Evan Chenge6389932006-07-21 22:19:51 +0000513 FoundChain = true;
Evan Chenge4a8a6e2006-02-03 06:22:41 +0000514 ChainName = "Chain" + ChainSuffix;
Evan Cheng676d7312006-08-26 00:59:04 +0000515 emitInit("SDOperand " + ChainName + " = " + RootName +
Evan Chenge6389932006-07-21 22:19:51 +0000516 ".getOperand(0);");
Evan Cheng1cf6db22006-01-06 00:41:12 +0000517 }
Evan Chengb915f312005-12-09 22:45:35 +0000518 }
519
Evan Cheng54597732006-01-26 00:22:25 +0000520 // Don't fold any node which reads or writes a flag and has multiple uses.
Evan Chenge41bf822006-02-05 06:43:12 +0000521 // FIXME: We really need to separate the concepts of flag and "glue". Those
Evan Cheng54597732006-01-26 00:22:25 +0000522 // real flag results, e.g. X86CMP output, can have multiple uses.
Evan Chenge41bf822006-02-05 06:43:12 +0000523 // FIXME: If the optional incoming flag does not exist. Then it is ok to
524 // fold it.
Evan Cheng1feeeec2006-01-26 19:13:45 +0000525 if (!isRoot &&
Chris Lattner6cefb772008-01-05 22:25:12 +0000526 (PatternHasProperty(N, SDNPInFlag, CGP) ||
527 PatternHasProperty(N, SDNPOptInFlag, CGP) ||
528 PatternHasProperty(N, SDNPOutFlag, CGP))) {
Evan Cheng1feeeec2006-01-26 19:13:45 +0000529 if (!EmittedUseCheck) {
Chris Lattner8a0604b2006-01-28 20:31:24 +0000530 // Multiple uses of actual result?
Chris Lattner67a202b2006-01-28 20:43:52 +0000531 emitCheck(RootName + ".hasOneUse()");
Evan Cheng54597732006-01-26 00:22:25 +0000532 }
533 }
534
Evan Chengd3eea902006-10-09 21:02:17 +0000535 // If there is a node predicate for this, emit the call.
536 if (!N->getPredicateFn().empty())
537 emitCheck(N->getPredicateFn() + "(" + RootName + ".Val)");
538
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000539
Chris Lattner39e73f72006-10-11 04:05:55 +0000540 // If this is an 'and R, 1234' where the operation is AND/OR and the RHS is
541 // a constant without a predicate fn that has more that one bit set, handle
542 // this as a special case. This is usually for targets that have special
543 // handling of certain large constants (e.g. alpha with it's 8/16/32-bit
544 // handling stuff). Using these instructions is often far more efficient
545 // than materializing the constant. Unfortunately, both the instcombiner
546 // and the dag combiner can often infer that bits are dead, and thus drop
547 // them from the mask in the dag. For example, it might turn 'AND X, 255'
548 // into 'AND X, 254' if it knows the low bit is set. Emit code that checks
549 // to handle this.
550 if (!N->isLeaf() &&
551 (N->getOperator()->getName() == "and" ||
552 N->getOperator()->getName() == "or") &&
553 N->getChild(1)->isLeaf() &&
554 N->getChild(1)->getPredicateFn().empty()) {
555 if (IntInit *II = dynamic_cast<IntInit*>(N->getChild(1)->getLeafValue())) {
556 if (!isPowerOf2_32(II->getValue())) { // Don't bother with single bits.
557 emitInit("SDOperand " + RootName + "0" + " = " +
558 RootName + ".getOperand(" + utostr(0) + ");");
559 emitInit("SDOperand " + RootName + "1" + " = " +
560 RootName + ".getOperand(" + utostr(1) + ");");
561
562 emitCheck("isa<ConstantSDNode>(" + RootName + "1)");
563 const char *MaskPredicate = N->getOperator()->getName() == "or"
564 ? "CheckOrMask(" : "CheckAndMask(";
565 emitCheck(MaskPredicate + RootName + "0, cast<ConstantSDNode>(" +
566 RootName + "1), " + itostr(II->getValue()) + ")");
567
Christopher Lamb85356242008-01-31 07:27:46 +0000568 EmitChildMatchCode(N->getChild(0), N, RootName + utostr(0), RootName,
Chris Lattner39e73f72006-10-11 04:05:55 +0000569 ChainSuffix + utostr(0), FoundChain);
570 return;
571 }
572 }
573 }
574
Evan Chengb915f312005-12-09 22:45:35 +0000575 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
Evan Cheng676d7312006-08-26 00:59:04 +0000576 emitInit("SDOperand " + RootName + utostr(OpNo) + " = " +
Chris Lattner8a0604b2006-01-28 20:31:24 +0000577 RootName + ".getOperand(" +utostr(OpNo) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +0000578
Christopher Lamb85356242008-01-31 07:27:46 +0000579 EmitChildMatchCode(N->getChild(i), N, RootName + utostr(OpNo), RootName,
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000580 ChainSuffix + utostr(OpNo), FoundChain);
Evan Chengb915f312005-12-09 22:45:35 +0000581 }
582
Evan Cheng676d7312006-08-26 00:59:04 +0000583 // Handle cases when root is a complex pattern.
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000584 const ComplexPattern *CP;
Chris Lattner6cefb772008-01-05 22:25:12 +0000585 if (isRoot && N->isLeaf() && (CP = NodeGetComplexPattern(N, CGP))) {
Evan Cheng676d7312006-08-26 00:59:04 +0000586 std::string Fn = CP->getSelectFunc();
587 unsigned NumOps = CP->getNumOperands();
588 for (unsigned i = 0; i < NumOps; ++i) {
589 emitDecl("CPTmp" + utostr(i));
590 emitCode("SDOperand CPTmp" + utostr(i) + ";");
591 }
Evan Cheng94b30402006-10-11 21:02:01 +0000592 if (CP->hasProperty(SDNPHasChain)) {
593 emitDecl("CPInChain");
594 emitDecl("Chain" + ChainSuffix);
595 emitCode("SDOperand CPInChain;");
596 emitCode("SDOperand Chain" + ChainSuffix + ";");
597 }
Evan Cheng676d7312006-08-26 00:59:04 +0000598
Evan Cheng811731e2006-11-08 20:31:10 +0000599 std::string Code = Fn + "(" + RootName + ", " + RootName;
Evan Cheng676d7312006-08-26 00:59:04 +0000600 for (unsigned i = 0; i < NumOps; i++)
601 Code += ", CPTmp" + utostr(i);
Evan Cheng94b30402006-10-11 21:02:01 +0000602 if (CP->hasProperty(SDNPHasChain)) {
603 ChainName = "Chain" + ChainSuffix;
604 Code += ", CPInChain, Chain" + ChainSuffix;
605 }
Evan Cheng676d7312006-08-26 00:59:04 +0000606 emitCheck(Code + ")");
607 }
Evan Chengb915f312005-12-09 22:45:35 +0000608 }
Chris Lattner39e73f72006-10-11 04:05:55 +0000609
Evan Cheng13e9e9c2006-10-16 06:33:44 +0000610 void EmitChildMatchCode(TreePatternNode *Child, TreePatternNode *Parent,
Christopher Lamb85356242008-01-31 07:27:46 +0000611 const std::string &RootName,
612 const std::string &ParentRootName,
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000613 const std::string &ChainSuffix, bool &FoundChain) {
614 if (!Child->isLeaf()) {
615 // If it's not a leaf, recursively match.
Chris Lattner6cefb772008-01-05 22:25:12 +0000616 const SDNodeInfo &CInfo = CGP.getSDNodeInfo(Child->getOperator());
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000617 emitCheck(RootName + ".getOpcode() == " +
618 CInfo.getEnumName());
Evan Cheng13e9e9c2006-10-16 06:33:44 +0000619 EmitMatchCode(Child, Parent, RootName, ChainSuffix, FoundChain);
Evan Chenga58891f2008-02-05 22:50:29 +0000620 bool HasChain = false;
621 if (NodeHasProperty(Child, SDNPHasChain, CGP)) {
622 HasChain = true;
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000623 FoldedChains.push_back(std::make_pair(RootName, CInfo.getNumResults()));
Evan Chenga58891f2008-02-05 22:50:29 +0000624 }
625 if (NodeHasProperty(Child, SDNPOutFlag, CGP)) {
626 assert(FoldedFlag.first == "" && FoldedFlag.second == 0 &&
627 "Pattern folded multiple nodes which produce flags?");
628 FoldedFlag = std::make_pair(RootName,
629 CInfo.getNumResults() + (unsigned)HasChain);
630 }
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000631 } else {
632 // If this child has a name associated with it, capture it in VarMap. If
633 // we already saw this in the pattern, emit code to verify dagness.
634 if (!Child->getName().empty()) {
635 std::string &VarMapEntry = VariableMap[Child->getName()];
636 if (VarMapEntry.empty()) {
637 VarMapEntry = RootName;
638 } else {
639 // If we get here, this is a second reference to a specific name.
640 // Since we already have checked that the first reference is valid,
641 // we don't have to recursively match it, just check that it's the
642 // same as the previously named thing.
643 emitCheck(VarMapEntry + " == " + RootName);
644 Duplicates.insert(RootName);
645 return;
646 }
647 }
648
649 // Handle leaves of various types.
650 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
651 Record *LeafRec = DI->getDef();
Chris Lattner646085d2006-11-14 21:18:40 +0000652 if (LeafRec->isSubClassOf("RegisterClass") ||
653 LeafRec->getName() == "ptr_rc") {
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000654 // Handle register references. Nothing to do here.
655 } else if (LeafRec->isSubClassOf("Register")) {
656 // Handle register references.
657 } else if (LeafRec->isSubClassOf("ComplexPattern")) {
658 // Handle complex pattern.
Chris Lattner6cefb772008-01-05 22:25:12 +0000659 const ComplexPattern *CP = NodeGetComplexPattern(Child, CGP);
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000660 std::string Fn = CP->getSelectFunc();
661 unsigned NumOps = CP->getNumOperands();
662 for (unsigned i = 0; i < NumOps; ++i) {
663 emitDecl("CPTmp" + utostr(i));
664 emitCode("SDOperand CPTmp" + utostr(i) + ";");
665 }
Evan Cheng94b30402006-10-11 21:02:01 +0000666 if (CP->hasProperty(SDNPHasChain)) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000667 const SDNodeInfo &PInfo = CGP.getSDNodeInfo(Parent->getOperator());
Evan Cheng94b30402006-10-11 21:02:01 +0000668 FoldedChains.push_back(std::make_pair("CPInChain",
669 PInfo.getNumResults()));
670 ChainName = "Chain" + ChainSuffix;
671 emitDecl("CPInChain");
672 emitDecl(ChainName);
673 emitCode("SDOperand CPInChain;");
674 emitCode("SDOperand " + ChainName + ";");
675 }
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000676
Christopher Lamb85356242008-01-31 07:27:46 +0000677 std::string Code = Fn + "(";
678 if (CP->hasAttribute(CPAttrParentAsRoot)) {
679 Code += ParentRootName + ", ";
680 } else {
681 Code += "N, ";
682 }
Evan Cheng13e9e9c2006-10-16 06:33:44 +0000683 if (CP->hasProperty(SDNPHasChain)) {
684 std::string ParentName(RootName.begin(), RootName.end()-1);
Evan Cheng811731e2006-11-08 20:31:10 +0000685 Code += ParentName + ", ";
Evan Cheng13e9e9c2006-10-16 06:33:44 +0000686 }
687 Code += RootName;
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000688 for (unsigned i = 0; i < NumOps; i++)
689 Code += ", CPTmp" + utostr(i);
Evan Cheng94b30402006-10-11 21:02:01 +0000690 if (CP->hasProperty(SDNPHasChain))
691 Code += ", CPInChain, Chain" + ChainSuffix;
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000692 emitCheck(Code + ")");
693 } else if (LeafRec->getName() == "srcvalue") {
694 // Place holder for SRCVALUE nodes. Nothing to do here.
695 } else if (LeafRec->isSubClassOf("ValueType")) {
696 // Make sure this is the specified value type.
697 emitCheck("cast<VTSDNode>(" + RootName +
698 ")->getVT() == MVT::" + LeafRec->getName());
699 } else if (LeafRec->isSubClassOf("CondCode")) {
700 // Make sure this is the specified cond code.
701 emitCheck("cast<CondCodeSDNode>(" + RootName +
702 ")->get() == ISD::" + LeafRec->getName());
703 } else {
704#ifndef NDEBUG
705 Child->dump();
Bill Wendlingf5da1332006-12-07 22:21:48 +0000706 cerr << " ";
Chris Lattnerbe8e7212006-10-11 03:35:34 +0000707#endif
708 assert(0 && "Unknown leaf type!");
709 }
710
711 // If there is a node predicate for this, emit the call.
712 if (!Child->getPredicateFn().empty())
713 emitCheck(Child->getPredicateFn() + "(" + RootName +
714 ".Val)");
715 } else if (IntInit *II =
716 dynamic_cast<IntInit*>(Child->getLeafValue())) {
717 emitCheck("isa<ConstantSDNode>(" + RootName + ")");
718 unsigned CTmp = TmpNo++;
719 emitCode("int64_t CN"+utostr(CTmp)+" = cast<ConstantSDNode>("+
720 RootName + ")->getSignExtended();");
721
722 emitCheck("CN" + utostr(CTmp) + " == " +itostr(II->getValue()));
723 } else {
724#ifndef NDEBUG
725 Child->dump();
726#endif
727 assert(0 && "Unknown leaf type!");
728 }
729 }
730 }
Evan Chengb915f312005-12-09 22:45:35 +0000731
732 /// EmitResultCode - Emit the action for a pattern. Now that it has matched
733 /// we actually have to build a DAG!
Evan Cheng676d7312006-08-26 00:59:04 +0000734 std::vector<std::string>
Evan Cheng85dbe1a2007-09-12 23:30:14 +0000735 EmitResultCode(TreePatternNode *N, std::vector<Record*> DstRegs,
Evan Cheng676d7312006-08-26 00:59:04 +0000736 bool InFlagDecled, bool ResNodeDecled,
737 bool LikeLeaf = false, bool isRoot = false) {
738 // List of arguments of getTargetNode() or SelectNodeTo().
739 std::vector<std::string> NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +0000740 // This is something selected from the pattern we matched.
741 if (!N->getName().empty()) {
Scott Michel6be48d42008-01-29 02:29:31 +0000742 const std::string &VarName = N->getName();
743 std::string Val = VariableMap[VarName];
744 bool ModifiedVal = false;
Scott Michel0123b7d2008-02-15 23:05:48 +0000745 if (Val.empty()) {
Bill Wendling27926af2008-02-26 10:45:29 +0000746 cerr << "Variable '" << VarName << " referenced but not defined "
747 << "and not caught earlier!\n";
748 abort();
Scott Michel0123b7d2008-02-15 23:05:48 +0000749 }
Evan Chengb915f312005-12-09 22:45:35 +0000750 if (Val[0] == 'T' && Val[1] == 'm' && Val[2] == 'p') {
751 // Already selected this operand, just return the tmpval.
Evan Cheng676d7312006-08-26 00:59:04 +0000752 NodeOps.push_back(Val);
753 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +0000754 }
755
756 const ComplexPattern *CP;
757 unsigned ResNo = TmpNo++;
Evan Chengb915f312005-12-09 22:45:35 +0000758 if (!N->isLeaf() && N->getOperator()->getName() == "imm") {
Nate Begemanb73628b2005-12-30 00:12:56 +0000759 assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
Chris Lattner78593132006-01-29 20:01:35 +0000760 std::string CastType;
Scott Michel6be48d42008-01-29 02:29:31 +0000761 std::string TmpVar = "Tmp" + utostr(ResNo);
Nate Begemanb73628b2005-12-30 00:12:56 +0000762 switch (N->getTypeNum(0)) {
Chris Lattnerd8a17282007-01-17 07:45:12 +0000763 default:
764 cerr << "Cannot handle " << getEnumName(N->getTypeNum(0))
765 << " type as an immediate constant. Aborting\n";
766 abort();
Chris Lattner78593132006-01-29 20:01:35 +0000767 case MVT::i1: CastType = "bool"; break;
768 case MVT::i8: CastType = "unsigned char"; break;
769 case MVT::i16: CastType = "unsigned short"; break;
770 case MVT::i32: CastType = "unsigned"; break;
771 case MVT::i64: CastType = "uint64_t"; break;
Evan Chengb915f312005-12-09 22:45:35 +0000772 }
Scott Michel6be48d42008-01-29 02:29:31 +0000773 emitCode("SDOperand " + TmpVar +
Evan Chengfceb57a2006-07-15 08:45:20 +0000774 " = CurDAG->getTargetConstant(((" + CastType +
775 ") cast<ConstantSDNode>(" + Val + ")->getValue()), " +
776 getEnumName(N->getTypeNum(0)) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +0000777 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
778 // value if used multiple times by this pattern result.
Scott Michel6be48d42008-01-29 02:29:31 +0000779 Val = TmpVar;
780 ModifiedVal = true;
781 NodeOps.push_back(Val);
Nate Begemane1795842008-02-14 08:57:00 +0000782 } else if (!N->isLeaf() && N->getOperator()->getName() == "fpimm") {
783 assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
784 std::string TmpVar = "Tmp" + utostr(ResNo);
785 emitCode("SDOperand " + TmpVar +
786 " = CurDAG->getTargetConstantFP(cast<ConstantFPSDNode>(" +
787 Val + ")->getValueAPF(), cast<ConstantFPSDNode>(" + Val +
788 ")->getValueType(0));");
789 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
790 // value if used multiple times by this pattern result.
791 Val = TmpVar;
792 ModifiedVal = true;
793 NodeOps.push_back(Val);
Evan Chengbb48e332006-01-12 07:54:57 +0000794 } else if (!N->isLeaf() && N->getOperator()->getName() == "texternalsym"){
Evan Chengf805c2e2006-01-12 19:35:54 +0000795 Record *Op = OperatorMap[N->getName()];
796 // Transform ExternalSymbol to TargetExternalSymbol
797 if (Op && Op->getName() == "externalsym") {
Scott Michel6be48d42008-01-29 02:29:31 +0000798 std::string TmpVar = "Tmp"+utostr(ResNo);
799 emitCode("SDOperand " + TmpVar + " = CurDAG->getTarget"
Chris Lattner8a0604b2006-01-28 20:31:24 +0000800 "ExternalSymbol(cast<ExternalSymbolSDNode>(" +
Evan Cheng2618d072006-05-17 20:37:59 +0000801 Val + ")->getSymbol(), " +
Chris Lattner8a0604b2006-01-28 20:31:24 +0000802 getEnumName(N->getTypeNum(0)) + ");");
Chris Lattner64906972006-09-21 18:28:27 +0000803 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select
804 // this value if used multiple times by this pattern result.
Scott Michel6be48d42008-01-29 02:29:31 +0000805 Val = TmpVar;
806 ModifiedVal = true;
Chris Lattner8a0604b2006-01-28 20:31:24 +0000807 }
Scott Michel6be48d42008-01-29 02:29:31 +0000808 NodeOps.push_back(Val);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000809 } else if (!N->isLeaf() && (N->getOperator()->getName() == "tglobaladdr"
810 || N->getOperator()->getName() == "tglobaltlsaddr")) {
Evan Chengf805c2e2006-01-12 19:35:54 +0000811 Record *Op = OperatorMap[N->getName()];
812 // Transform GlobalAddress to TargetGlobalAddress
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000813 if (Op && (Op->getName() == "globaladdr" ||
814 Op->getName() == "globaltlsaddr")) {
Scott Michel6be48d42008-01-29 02:29:31 +0000815 std::string TmpVar = "Tmp" + utostr(ResNo);
816 emitCode("SDOperand " + TmpVar + " = CurDAG->getTarget"
Chris Lattner8a0604b2006-01-28 20:31:24 +0000817 "GlobalAddress(cast<GlobalAddressSDNode>(" + Val +
Evan Cheng2618d072006-05-17 20:37:59 +0000818 ")->getGlobal(), " + getEnumName(N->getTypeNum(0)) +
Chris Lattner8a0604b2006-01-28 20:31:24 +0000819 ");");
Chris Lattner64906972006-09-21 18:28:27 +0000820 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select
821 // this value if used multiple times by this pattern result.
Scott Michel6be48d42008-01-29 02:29:31 +0000822 Val = TmpVar;
823 ModifiedVal = true;
Chris Lattner8a0604b2006-01-28 20:31:24 +0000824 }
Evan Cheng676d7312006-08-26 00:59:04 +0000825 NodeOps.push_back(Val);
Scott Michel6be48d42008-01-29 02:29:31 +0000826 } else if (!N->isLeaf()
827 && (N->getOperator()->getName() == "texternalsym"
828 || N->getOperator()->getName() == "tconstpool")) {
829 // Do not rewrite the variable name, since we don't generate a new
830 // temporary.
Evan Cheng676d7312006-08-26 00:59:04 +0000831 NodeOps.push_back(Val);
Chris Lattner6cefb772008-01-05 22:25:12 +0000832 } else if (N->isLeaf() && (CP = NodeGetComplexPattern(N, CGP))) {
Evan Cheng676d7312006-08-26 00:59:04 +0000833 for (unsigned i = 0; i < CP->getNumOperands(); ++i) {
834 emitCode("AddToISelQueue(CPTmp" + utostr(i) + ");");
835 NodeOps.push_back("CPTmp" + utostr(i));
Evan Chengb0793f92006-05-25 00:21:44 +0000836 }
Evan Chengb915f312005-12-09 22:45:35 +0000837 } else {
Evan Cheng676d7312006-08-26 00:59:04 +0000838 // This node, probably wrapped in a SDNodeXForm, behaves like a leaf
Evan Cheng863bf5a2006-03-20 22:53:06 +0000839 // node even if it isn't one. Don't select it.
Evan Cheng676d7312006-08-26 00:59:04 +0000840 if (!LikeLeaf) {
841 emitCode("AddToISelQueue(" + Val + ");");
Chris Lattner706d2d32006-08-09 16:44:44 +0000842 if (isRoot && N->isLeaf()) {
Evan Cheng676d7312006-08-26 00:59:04 +0000843 emitCode("ReplaceUses(N, " + Val + ");");
Evan Cheng06d64702006-08-11 08:59:35 +0000844 emitCode("return NULL;");
Chris Lattner706d2d32006-08-09 16:44:44 +0000845 }
Evan Cheng83e1a6a2006-03-23 02:35:32 +0000846 }
Evan Cheng676d7312006-08-26 00:59:04 +0000847 NodeOps.push_back(Val);
Evan Chengb915f312005-12-09 22:45:35 +0000848 }
Scott Michel6be48d42008-01-29 02:29:31 +0000849
850 if (ModifiedVal) {
851 VariableMap[VarName] = Val;
852 }
Evan Cheng676d7312006-08-26 00:59:04 +0000853 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +0000854 }
Evan Chengb915f312005-12-09 22:45:35 +0000855 if (N->isLeaf()) {
856 // If this is an explicit register reference, handle it.
857 if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) {
858 unsigned ResNo = TmpNo++;
859 if (DI->getDef()->isSubClassOf("Register")) {
Evan Cheng676d7312006-08-26 00:59:04 +0000860 emitCode("SDOperand Tmp" + utostr(ResNo) + " = CurDAG->getRegister(" +
Chris Lattner6cefb772008-01-05 22:25:12 +0000861 getQualifiedName(DI->getDef()) + ", " +
Chris Lattner8a0604b2006-01-28 20:31:24 +0000862 getEnumName(N->getTypeNum(0)) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +0000863 NodeOps.push_back("Tmp" + utostr(ResNo));
864 return NodeOps;
Evan Cheng7774be42007-07-05 07:19:45 +0000865 } else if (DI->getDef()->getName() == "zero_reg") {
866 emitCode("SDOperand Tmp" + utostr(ResNo) +
867 " = CurDAG->getRegister(0, " +
868 getEnumName(N->getTypeNum(0)) + ");");
869 NodeOps.push_back("Tmp" + utostr(ResNo));
870 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +0000871 }
872 } else if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
873 unsigned ResNo = TmpNo++;
Nate Begemanb73628b2005-12-30 00:12:56 +0000874 assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
Evan Cheng676d7312006-08-26 00:59:04 +0000875 emitCode("SDOperand Tmp" + utostr(ResNo) +
Scott Michel0123b7d2008-02-15 23:05:48 +0000876 " = CurDAG->getTargetConstant(0x" + itohexstr(II->getValue()) +
877 "ULL, " + getEnumName(N->getTypeNum(0)) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +0000878 NodeOps.push_back("Tmp" + utostr(ResNo));
879 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +0000880 }
881
Jim Laskey16d42c62006-07-11 18:25:13 +0000882#ifndef NDEBUG
883 N->dump();
884#endif
Evan Chengb915f312005-12-09 22:45:35 +0000885 assert(0 && "Unknown leaf type!");
Evan Cheng676d7312006-08-26 00:59:04 +0000886 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +0000887 }
888
889 Record *Op = N->getOperator();
890 if (Op->isSubClassOf("Instruction")) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000891 const CodeGenTarget &CGT = CGP.getTargetInfo();
Evan Cheng7b05bd52005-12-23 22:11:47 +0000892 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
Chris Lattner6cefb772008-01-05 22:25:12 +0000893 const DAGInstruction &Inst = CGP.getInstruction(Op);
Chris Lattnerf1ab4f12008-01-06 01:52:22 +0000894 const TreePattern *InstPat = Inst.getPattern();
Evan Chengd23aa5a2007-09-25 01:48:59 +0000895 // FIXME: Assume actual pattern comes before "implicit".
Evan Cheng045953c2006-05-10 00:05:46 +0000896 TreePatternNode *InstPatNode =
Evan Cheng85dbe1a2007-09-12 23:30:14 +0000897 isRoot ? (InstPat ? InstPat->getTree(0) : Pattern)
898 : (InstPat ? InstPat->getTree(0) : NULL);
Evan Cheng045953c2006-05-10 00:05:46 +0000899 if (InstPatNode && InstPatNode->getOperator()->getName() == "set") {
Evan Chengaeb7d4d2007-09-11 19:52:18 +0000900 InstPatNode = InstPatNode->getChild(InstPatNode->getNumChildren()-1);
Evan Cheng045953c2006-05-10 00:05:46 +0000901 }
Dan Gohmane4c67cd2008-05-31 02:11:25 +0000902 bool IsVariadic = isRoot && II.isVariadic;
Evan Cheng85dbe1a2007-09-12 23:30:14 +0000903 // FIXME: fix how we deal with physical register operands.
Evan Cheng045953c2006-05-10 00:05:46 +0000904 bool HasImpInputs = isRoot && Inst.getNumImpOperands() > 0;
Evan Cheng85dbe1a2007-09-12 23:30:14 +0000905 bool HasImpResults = isRoot && DstRegs.size() > 0;
Evan Cheng045953c2006-05-10 00:05:46 +0000906 bool NodeHasOptInFlag = isRoot &&
Chris Lattner6cefb772008-01-05 22:25:12 +0000907 PatternHasProperty(Pattern, SDNPOptInFlag, CGP);
Evan Cheng045953c2006-05-10 00:05:46 +0000908 bool NodeHasInFlag = isRoot &&
Chris Lattner6cefb772008-01-05 22:25:12 +0000909 PatternHasProperty(Pattern, SDNPInFlag, CGP);
Evan Chengef61ed32007-09-07 23:59:02 +0000910 bool NodeHasOutFlag = isRoot &&
Chris Lattner6cefb772008-01-05 22:25:12 +0000911 PatternHasProperty(Pattern, SDNPOutFlag, CGP);
Evan Cheng045953c2006-05-10 00:05:46 +0000912 bool NodeHasChain = InstPatNode &&
Chris Lattner6cefb772008-01-05 22:25:12 +0000913 PatternHasProperty(InstPatNode, SDNPHasChain, CGP);
Evan Cheng3eff89b2006-05-10 02:47:57 +0000914 bool InputHasChain = isRoot &&
Chris Lattner6cefb772008-01-05 22:25:12 +0000915 NodeHasProperty(Pattern, SDNPHasChain, CGP);
Chris Lattnerefe9f4a2006-11-04 05:12:02 +0000916 unsigned NumResults = Inst.getNumResults();
Evan Cheng85dbe1a2007-09-12 23:30:14 +0000917 unsigned NumDstRegs = HasImpResults ? DstRegs.size() : 0;
Evan Cheng4fba2812005-12-20 07:37:41 +0000918
Dan Gohmane4c67cd2008-05-31 02:11:25 +0000919 // Record output varargs info.
920 OutputIsVariadic = IsVariadic;
921
Evan Chengfceb57a2006-07-15 08:45:20 +0000922 if (NodeHasOptInFlag) {
Evan Cheng676d7312006-08-26 00:59:04 +0000923 emitCode("bool HasInFlag = "
Evan Chengf8729402006-07-16 06:12:52 +0000924 "(N.getOperand(N.getNumOperands()-1).getValueType() == MVT::Flag);");
Evan Chengfceb57a2006-07-15 08:45:20 +0000925 }
Dan Gohmane4c67cd2008-05-31 02:11:25 +0000926 if (IsVariadic)
Evan Chengf037ca62006-08-27 08:11:28 +0000927 emitCode("SmallVector<SDOperand, 8> Ops" + utostr(OpcNo) + ";");
Evan Cheng4fba2812005-12-20 07:37:41 +0000928
Evan Cheng823b7522006-01-19 21:57:10 +0000929 // How many results is this pattern expected to produce?
Evan Cheng85dbe1a2007-09-12 23:30:14 +0000930 unsigned NumPatResults = 0;
Evan Cheng823b7522006-01-19 21:57:10 +0000931 for (unsigned i = 0, e = Pattern->getExtTypes().size(); i != e; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000932 MVT::SimpleValueType VT = Pattern->getTypeNum(i);
Evan Cheng823b7522006-01-19 21:57:10 +0000933 if (VT != MVT::isVoid && VT != MVT::Flag)
Evan Cheng85dbe1a2007-09-12 23:30:14 +0000934 NumPatResults++;
Evan Cheng823b7522006-01-19 21:57:10 +0000935 }
936
Evan Cheng4326ef52006-10-12 02:08:53 +0000937 if (OrigChains.size() > 0) {
938 // The original input chain is being ignored. If it is not just
939 // pointing to the op that's being folded, we should create a
940 // TokenFactor with it and the chain of the folded op as the new chain.
941 // We could potentially be doing multiple levels of folding, in that
942 // case, the TokenFactor can have more operands.
943 emitCode("SmallVector<SDOperand, 8> InChains;");
944 for (unsigned i = 0, e = OrigChains.size(); i < e; ++i) {
945 emitCode("if (" + OrigChains[i].first + ".Val != " +
946 OrigChains[i].second + ".Val) {");
947 emitCode(" AddToISelQueue(" + OrigChains[i].first + ");");
948 emitCode(" InChains.push_back(" + OrigChains[i].first + ");");
949 emitCode("}");
950 }
951 emitCode("AddToISelQueue(" + ChainName + ");");
952 emitCode("InChains.push_back(" + ChainName + ");");
953 emitCode(ChainName + " = CurDAG->getNode(ISD::TokenFactor, MVT::Other, "
954 "&InChains[0], InChains.size());");
955 }
956
Chris Lattnerefe9f4a2006-11-04 05:12:02 +0000957 // Loop over all of the operands of the instruction pattern, emitting code
958 // to fill them all in. The node 'N' usually has number children equal to
959 // the number of input operands of the instruction. However, in cases
960 // where there are predicate operands for an instruction, we need to fill
961 // in the 'execute always' values. Match up the node operands to the
962 // instruction operands to do this.
Evan Cheng676d7312006-08-26 00:59:04 +0000963 std::vector<std::string> AllOps;
Chris Lattnerefe9f4a2006-11-04 05:12:02 +0000964 for (unsigned ChildNo = 0, InstOpNo = NumResults;
965 InstOpNo != II.OperandList.size(); ++InstOpNo) {
966 std::vector<std::string> Ops;
967
Dan Gohmand35121a2008-05-29 19:57:41 +0000968 // Determine what to emit for this operand.
Evan Cheng59039632007-05-08 21:04:07 +0000969 Record *OperandNode = II.OperandList[InstOpNo].Rec;
Dan Gohmane4c67cd2008-05-31 02:11:25 +0000970 if ((OperandNode->isSubClassOf("PredicateOperand") ||
971 OperandNode->isSubClassOf("OptionalDefOperand")) &&
972 !CGP.getDefaultOperand(OperandNode).DefaultOps.empty()) {
Dan Gohmand35121a2008-05-29 19:57:41 +0000973 // This is a predicate or optional def operand; emit the
Evan Chenga9559392007-07-06 01:05:26 +0000974 // 'default ops' operands.
975 const DAGDefaultOperand &DefaultOp =
Chris Lattner6cefb772008-01-05 22:25:12 +0000976 CGP.getDefaultOperand(II.OperandList[InstOpNo].Rec);
Evan Chenga9559392007-07-06 01:05:26 +0000977 for (unsigned i = 0, e = DefaultOp.DefaultOps.size(); i != e; ++i) {
Evan Cheng30729b42007-09-17 22:26:41 +0000978 Ops = EmitResultCode(DefaultOp.DefaultOps[i], DstRegs,
Chris Lattnerefe9f4a2006-11-04 05:12:02 +0000979 InFlagDecled, ResNodeDecled);
980 AllOps.insert(AllOps.end(), Ops.begin(), Ops.end());
981 }
Dan Gohmand35121a2008-05-29 19:57:41 +0000982 } else {
983 // Otherwise this is a normal operand or a predicate operand without
984 // 'execute always'; emit it.
985 Ops = EmitResultCode(N->getChild(ChildNo), DstRegs,
986 InFlagDecled, ResNodeDecled);
987 AllOps.insert(AllOps.end(), Ops.begin(), Ops.end());
988 ++ChildNo;
Chris Lattnerefe9f4a2006-11-04 05:12:02 +0000989 }
Evan Chengb915f312005-12-09 22:45:35 +0000990 }
991
Evan Chengb915f312005-12-09 22:45:35 +0000992 // Emit all the chain and CopyToReg stuff.
Evan Cheng045953c2006-05-10 00:05:46 +0000993 bool ChainEmitted = NodeHasChain;
994 if (NodeHasChain)
Evan Cheng676d7312006-08-26 00:59:04 +0000995 emitCode("AddToISelQueue(" + ChainName + ");");
Evan Chengbc6b86a2006-06-14 19:27:50 +0000996 if (NodeHasInFlag || HasImpInputs)
Evan Cheng676d7312006-08-26 00:59:04 +0000997 EmitInFlagSelectCode(Pattern, "N", ChainEmitted,
998 InFlagDecled, ResNodeDecled, true);
Evan Chengf037ca62006-08-27 08:11:28 +0000999 if (NodeHasOptInFlag || NodeHasInFlag || HasImpInputs) {
Evan Cheng676d7312006-08-26 00:59:04 +00001000 if (!InFlagDecled) {
1001 emitCode("SDOperand InFlag(0, 0);");
1002 InFlagDecled = true;
1003 }
Evan Chengf037ca62006-08-27 08:11:28 +00001004 if (NodeHasOptInFlag) {
1005 emitCode("if (HasInFlag) {");
1006 emitCode(" InFlag = N.getOperand(N.getNumOperands()-1);");
1007 emitCode(" AddToISelQueue(InFlag);");
1008 emitCode("}");
1009 }
Evan Chengbc6b86a2006-06-14 19:27:50 +00001010 }
Evan Chengb915f312005-12-09 22:45:35 +00001011
Evan Chengb915f312005-12-09 22:45:35 +00001012 unsigned ResNo = TmpNo++;
Evan Cheng3eff89b2006-05-10 02:47:57 +00001013 if (!isRoot || InputHasChain || NodeHasChain || NodeHasOutFlag ||
Evan Chengef61ed32007-09-07 23:59:02 +00001014 NodeHasOptInFlag || HasImpResults) {
Evan Chenge945f4d2006-06-14 22:22:20 +00001015 std::string Code;
1016 std::string Code2;
1017 std::string NodeName;
1018 if (!isRoot) {
1019 NodeName = "Tmp" + utostr(ResNo);
Dan Gohmana6a1ab32007-07-24 22:58:00 +00001020 Code2 = "SDOperand " + NodeName + "(";
Evan Cheng9789aaa2006-01-24 20:46:50 +00001021 } else {
Evan Chenge945f4d2006-06-14 22:22:20 +00001022 NodeName = "ResNode";
Lauro Ramos Venancio195c6c22007-04-26 17:03:22 +00001023 if (!ResNodeDecled) {
Evan Cheng676d7312006-08-26 00:59:04 +00001024 Code2 = "SDNode *" + NodeName + " = ";
Lauro Ramos Venancio195c6c22007-04-26 17:03:22 +00001025 ResNodeDecled = true;
1026 } else
Evan Cheng676d7312006-08-26 00:59:04 +00001027 Code2 = NodeName + " = ";
Evan Chengbcecf332005-12-17 01:19:28 +00001028 }
Evan Chengf037ca62006-08-27 08:11:28 +00001029
Evan Cheng85dbe1a2007-09-12 23:30:14 +00001030 Code += "CurDAG->getTargetNode(Opc" + utostr(OpcNo);
Evan Chengf037ca62006-08-27 08:11:28 +00001031 unsigned OpsNo = OpcNo;
Evan Chengfceb57a2006-07-15 08:45:20 +00001032 emitOpcode(II.Namespace + "::" + II.TheDef->getName());
Evan Chenge945f4d2006-06-14 22:22:20 +00001033
1034 // Output order: results, chain, flags
1035 // Result types.
Evan Chengf8729402006-07-16 06:12:52 +00001036 if (NumResults > 0 && N->getTypeNum(0) != MVT::isVoid) {
1037 Code += ", VT" + utostr(VTNo);
1038 emitVT(getEnumName(N->getTypeNum(0)));
1039 }
Evan Chengef61ed32007-09-07 23:59:02 +00001040 // Add types for implicit results in physical registers, scheduler will
1041 // care of adding copyfromreg nodes.
Evan Cheng85dbe1a2007-09-12 23:30:14 +00001042 for (unsigned i = 0; i < NumDstRegs; i++) {
1043 Record *RR = DstRegs[i];
1044 if (RR->isSubClassOf("Register")) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001045 MVT::SimpleValueType RVT = getRegisterValueType(RR, CGT);
Evan Cheng85dbe1a2007-09-12 23:30:14 +00001046 Code += ", " + getEnumName(RVT);
Evan Chengef61ed32007-09-07 23:59:02 +00001047 }
1048 }
Evan Chenge945f4d2006-06-14 22:22:20 +00001049 if (NodeHasChain)
1050 Code += ", MVT::Other";
1051 if (NodeHasOutFlag)
1052 Code += ", MVT::Flag";
1053
1054 // Inputs.
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001055 if (IsVariadic) {
Evan Chengf037ca62006-08-27 08:11:28 +00001056 for (unsigned i = 0, e = AllOps.size(); i != e; ++i)
1057 emitCode("Ops" + utostr(OpsNo) + ".push_back(" + AllOps[i] + ");");
1058 AllOps.clear();
Evan Chenge945f4d2006-06-14 22:22:20 +00001059
Chris Lattner7c3a96b2006-11-14 18:41:38 +00001060 // Figure out whether any operands at the end of the op list are not
1061 // part of the variable section.
1062 std::string EndAdjust;
Evan Chenge945f4d2006-06-14 22:22:20 +00001063 if (NodeHasInFlag || HasImpInputs)
Chris Lattner7c3a96b2006-11-14 18:41:38 +00001064 EndAdjust = "-1"; // Always has one flag.
1065 else if (NodeHasOptInFlag)
1066 EndAdjust = "-(HasInFlag?1:0)"; // May have a flag.
1067
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001068 emitCode("for (unsigned i = NumInputRootOps + " + utostr(NodeHasChain) +
Chris Lattner7c3a96b2006-11-14 18:41:38 +00001069 ", e = N.getNumOperands()" + EndAdjust + "; i != e; ++i) {");
1070
Evan Cheng676d7312006-08-26 00:59:04 +00001071 emitCode(" AddToISelQueue(N.getOperand(i));");
Evan Chengf037ca62006-08-27 08:11:28 +00001072 emitCode(" Ops" + utostr(OpsNo) + ".push_back(N.getOperand(i));");
Evan Chenge945f4d2006-06-14 22:22:20 +00001073 emitCode("}");
1074 }
1075
Dan Gohman37cdad32008-06-02 17:40:38 +00001076 // Generate MemOperandSDNodes nodes for each memory accesses covered by
1077 // this pattern.
1078 if (II.isSimpleLoad | II.mayLoad | II.mayStore) {
1079 std::vector<std::string>::const_iterator mi, mie;
1080 for (mi = LSI.begin(), mie = LSI.end(); mi != mie; ++mi) {
1081 emitCode("SDOperand LSI_" + *mi + " = "
Mon P Wang28873102008-06-25 08:15:39 +00001082 "CurDAG->getMemOperand(cast<MemSDNode>(" +
Dan Gohman37cdad32008-06-02 17:40:38 +00001083 *mi + ")->getMemOperand());");
1084 if (IsVariadic)
1085 emitCode("Ops" + utostr(OpsNo) + ".push_back(LSI_" + *mi + ");");
1086 else
1087 AllOps.push_back("LSI_" + *mi);
1088 }
1089 }
1090
Evan Chenge945f4d2006-06-14 22:22:20 +00001091 if (NodeHasChain) {
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001092 if (IsVariadic)
Evan Chengf037ca62006-08-27 08:11:28 +00001093 emitCode("Ops" + utostr(OpsNo) + ".push_back(" + ChainName + ");");
Evan Chenge945f4d2006-06-14 22:22:20 +00001094 else
Evan Chengf037ca62006-08-27 08:11:28 +00001095 AllOps.push_back(ChainName);
Evan Chenge945f4d2006-06-14 22:22:20 +00001096 }
1097
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001098 if (IsVariadic) {
Evan Chengf037ca62006-08-27 08:11:28 +00001099 if (NodeHasInFlag || HasImpInputs)
1100 emitCode("Ops" + utostr(OpsNo) + ".push_back(InFlag);");
1101 else if (NodeHasOptInFlag) {
1102 emitCode("if (HasInFlag)");
1103 emitCode(" Ops" + utostr(OpsNo) + ".push_back(InFlag);");
1104 }
1105 Code += ", &Ops" + utostr(OpsNo) + "[0], Ops" + utostr(OpsNo) +
1106 ".size()";
1107 } else if (NodeHasInFlag || NodeHasOptInFlag || HasImpInputs)
Evan Cheng85dbe1a2007-09-12 23:30:14 +00001108 AllOps.push_back("InFlag");
Evan Chenge945f4d2006-06-14 22:22:20 +00001109
Evan Chengf037ca62006-08-27 08:11:28 +00001110 unsigned NumOps = AllOps.size();
1111 if (NumOps) {
1112 if (!NodeHasOptInFlag && NumOps < 4) {
1113 for (unsigned i = 0; i != NumOps; ++i)
1114 Code += ", " + AllOps[i];
1115 } else {
1116 std::string OpsCode = "SDOperand Ops" + utostr(OpsNo) + "[] = { ";
1117 for (unsigned i = 0; i != NumOps; ++i) {
1118 OpsCode += AllOps[i];
1119 if (i != NumOps-1)
1120 OpsCode += ", ";
1121 }
1122 emitCode(OpsCode + " };");
1123 Code += ", Ops" + utostr(OpsNo) + ", ";
1124 if (NodeHasOptInFlag) {
1125 Code += "HasInFlag ? ";
1126 Code += utostr(NumOps) + " : " + utostr(NumOps-1);
1127 } else
1128 Code += utostr(NumOps);
1129 }
1130 }
1131
Evan Chenge945f4d2006-06-14 22:22:20 +00001132 if (!isRoot)
1133 Code += "), 0";
1134 emitCode(Code2 + Code + ");");
1135
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +00001136 if (NodeHasChain) {
Evan Chenge945f4d2006-06-14 22:22:20 +00001137 // Remember which op produces the chain.
1138 if (!isRoot)
1139 emitCode(ChainName + " = SDOperand(" + NodeName +
Evan Cheng85dbe1a2007-09-12 23:30:14 +00001140 ".Val, " + utostr(NumResults+NumDstRegs) + ");");
Evan Chenge945f4d2006-06-14 22:22:20 +00001141 else
1142 emitCode(ChainName + " = SDOperand(" + NodeName +
Evan Cheng85dbe1a2007-09-12 23:30:14 +00001143 ", " + utostr(NumResults+NumDstRegs) + ");");
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +00001144 }
Evan Cheng1b80f4d2005-12-19 07:18:51 +00001145
Evan Cheng676d7312006-08-26 00:59:04 +00001146 if (!isRoot) {
1147 NodeOps.push_back("Tmp" + utostr(ResNo));
1148 return NodeOps;
1149 }
Evan Cheng045953c2006-05-10 00:05:46 +00001150
Evan Cheng06d64702006-08-11 08:59:35 +00001151 bool NeedReplace = false;
Evan Cheng676d7312006-08-26 00:59:04 +00001152 if (NodeHasOutFlag) {
1153 if (!InFlagDecled) {
Dan Gohmana6a1ab32007-07-24 22:58:00 +00001154 emitCode("SDOperand InFlag(ResNode, " +
Evan Cheng30729b42007-09-17 22:26:41 +00001155 utostr(NumResults+NumDstRegs+(unsigned)NodeHasChain) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +00001156 InFlagDecled = true;
1157 } else
1158 emitCode("InFlag = SDOperand(ResNode, " +
Evan Cheng30729b42007-09-17 22:26:41 +00001159 utostr(NumResults+NumDstRegs+(unsigned)NodeHasChain) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +00001160 }
Evan Cheng4fba2812005-12-20 07:37:41 +00001161
Evan Cheng97938882005-12-22 02:24:50 +00001162 if (FoldedChains.size() > 0) {
Chris Lattner8a0604b2006-01-28 20:31:24 +00001163 std::string Code;
Evan Cheng1b80f4d2005-12-19 07:18:51 +00001164 for (unsigned j = 0, e = FoldedChains.size(); j < e; j++)
Chris Lattner706d2d32006-08-09 16:44:44 +00001165 emitCode("ReplaceUses(SDOperand(" +
Evan Cheng67212a02006-02-09 22:12:27 +00001166 FoldedChains[j].first + ".Val, " +
Chris Lattner706d2d32006-08-09 16:44:44 +00001167 utostr(FoldedChains[j].second) + "), SDOperand(ResNode, " +
Evan Cheng85dbe1a2007-09-12 23:30:14 +00001168 utostr(NumResults+NumDstRegs) + "));");
Evan Cheng06d64702006-08-11 08:59:35 +00001169 NeedReplace = true;
Evan Chengb915f312005-12-09 22:45:35 +00001170 }
Evan Chengf9fc25d2005-12-19 22:40:04 +00001171
Evan Cheng06d64702006-08-11 08:59:35 +00001172 if (NodeHasOutFlag) {
Evan Chenga58891f2008-02-05 22:50:29 +00001173 if (FoldedFlag.first != "") {
1174 emitCode("ReplaceUses(SDOperand(" + FoldedFlag.first + ".Val, " +
1175 utostr(FoldedFlag.second) + "), InFlag);");
1176 } else {
1177 assert(NodeHasProperty(Pattern, SDNPOutFlag, CGP));
1178 emitCode("ReplaceUses(SDOperand(N.Val, " +
1179 utostr(NumPatResults + (unsigned)InputHasChain)
1180 +"), InFlag);");
1181 }
Evan Cheng06d64702006-08-11 08:59:35 +00001182 NeedReplace = true;
1183 }
1184
Evan Cheng30729b42007-09-17 22:26:41 +00001185 if (NeedReplace && InputHasChain)
1186 emitCode("ReplaceUses(SDOperand(N.Val, " +
1187 utostr(NumPatResults) + "), SDOperand(" + ChainName
1188 + ".Val, " + ChainName + ".ResNo" + "));");
Evan Cheng97938882005-12-22 02:24:50 +00001189
Evan Chenged66e852006-03-09 08:19:11 +00001190 // User does not expect the instruction would produce a chain!
Evan Cheng06d64702006-08-11 08:59:35 +00001191 if ((!InputHasChain && NodeHasChain) && NodeHasOutFlag) {
Evan Cheng9ade2182006-08-26 05:34:46 +00001192 ;
Evan Cheng3eff89b2006-05-10 02:47:57 +00001193 } else if (InputHasChain && !NodeHasChain) {
1194 // One of the inner node produces a chain.
Evan Cheng9ade2182006-08-26 05:34:46 +00001195 if (NodeHasOutFlag)
Bill Wendling27926af2008-02-26 10:45:29 +00001196 emitCode("ReplaceUses(SDOperand(N.Val, " + utostr(NumPatResults+1) +
1197 "), SDOperand(ResNode, N.ResNo-1));");
1198 emitCode("ReplaceUses(SDOperand(N.Val, " + utostr(NumPatResults) +
1199 "), " + ChainName + ");");
Evan Cheng4fba2812005-12-20 07:37:41 +00001200 }
Evan Cheng06d64702006-08-11 08:59:35 +00001201
Evan Cheng30729b42007-09-17 22:26:41 +00001202 emitCode("return ResNode;");
Evan Chengb915f312005-12-09 22:45:35 +00001203 } else {
Evan Cheng9ade2182006-08-26 05:34:46 +00001204 std::string Code = "return CurDAG->SelectNodeTo(N.Val, Opc" +
Evan Chengfceb57a2006-07-15 08:45:20 +00001205 utostr(OpcNo);
Nate Begemanb73628b2005-12-30 00:12:56 +00001206 if (N->getTypeNum(0) != MVT::isVoid)
Evan Chengf8729402006-07-16 06:12:52 +00001207 Code += ", VT" + utostr(VTNo);
Evan Cheng54597732006-01-26 00:22:25 +00001208 if (NodeHasOutFlag)
Chris Lattner8a0604b2006-01-28 20:31:24 +00001209 Code += ", MVT::Flag";
Evan Chengf037ca62006-08-27 08:11:28 +00001210
1211 if (NodeHasInFlag || NodeHasOptInFlag || HasImpInputs)
1212 AllOps.push_back("InFlag");
1213
1214 unsigned NumOps = AllOps.size();
1215 if (NumOps) {
1216 if (!NodeHasOptInFlag && NumOps < 4) {
1217 for (unsigned i = 0; i != NumOps; ++i)
1218 Code += ", " + AllOps[i];
1219 } else {
1220 std::string OpsCode = "SDOperand Ops" + utostr(OpcNo) + "[] = { ";
1221 for (unsigned i = 0; i != NumOps; ++i) {
1222 OpsCode += AllOps[i];
1223 if (i != NumOps-1)
1224 OpsCode += ", ";
1225 }
1226 emitCode(OpsCode + " };");
1227 Code += ", Ops" + utostr(OpcNo) + ", ";
1228 Code += utostr(NumOps);
1229 }
1230 }
Evan Cheng95514ba2006-08-26 08:00:10 +00001231 emitCode(Code + ");");
Evan Cheng676d7312006-08-26 00:59:04 +00001232 emitOpcode(II.Namespace + "::" + II.TheDef->getName());
1233 if (N->getTypeNum(0) != MVT::isVoid)
1234 emitVT(getEnumName(N->getTypeNum(0)));
Evan Chengb915f312005-12-09 22:45:35 +00001235 }
Evan Cheng4fba2812005-12-20 07:37:41 +00001236
Evan Cheng676d7312006-08-26 00:59:04 +00001237 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +00001238 } else if (Op->isSubClassOf("SDNodeXForm")) {
1239 assert(N->getNumChildren() == 1 && "node xform should have one child!");
Evan Cheng863bf5a2006-03-20 22:53:06 +00001240 // PatLeaf node - the operand may or may not be a leaf node. But it should
1241 // behave like one.
Evan Cheng676d7312006-08-26 00:59:04 +00001242 std::vector<std::string> Ops =
Evan Cheng30729b42007-09-17 22:26:41 +00001243 EmitResultCode(N->getChild(0), DstRegs, InFlagDecled,
Evan Cheng676d7312006-08-26 00:59:04 +00001244 ResNodeDecled, true);
Evan Chengb915f312005-12-09 22:45:35 +00001245 unsigned ResNo = TmpNo++;
Evan Cheng676d7312006-08-26 00:59:04 +00001246 emitCode("SDOperand Tmp" + utostr(ResNo) + " = Transform_" + Op->getName()
1247 + "(" + Ops.back() + ".Val);");
1248 NodeOps.push_back("Tmp" + utostr(ResNo));
Evan Cheng9ade2182006-08-26 05:34:46 +00001249 if (isRoot)
1250 emitCode("return Tmp" + utostr(ResNo) + ".Val;");
Evan Cheng676d7312006-08-26 00:59:04 +00001251 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +00001252 } else {
1253 N->dump();
Bill Wendlingf5da1332006-12-07 22:21:48 +00001254 cerr << "\n";
Chris Lattner7893f132006-01-11 01:33:49 +00001255 throw std::string("Unknown node in result pattern!");
Evan Chengb915f312005-12-09 22:45:35 +00001256 }
1257 }
1258
Chris Lattner488580c2006-01-28 19:06:51 +00001259 /// InsertOneTypeCheck - Insert a type-check for an unresolved type in 'Pat'
1260 /// and add it to the tree. 'Pat' and 'Other' are isomorphic trees except that
Evan Chengb915f312005-12-09 22:45:35 +00001261 /// 'Pat' may be missing types. If we find an unresolved type to add a check
1262 /// for, this returns true otherwise false if Pat has all types.
1263 bool InsertOneTypeCheck(TreePatternNode *Pat, TreePatternNode *Other,
Chris Lattner706d2d32006-08-09 16:44:44 +00001264 const std::string &Prefix, bool isRoot = false) {
Evan Chengb915f312005-12-09 22:45:35 +00001265 // Did we find one?
Evan Chengd15531b2006-05-19 07:24:32 +00001266 if (Pat->getExtTypes() != Other->getExtTypes()) {
Evan Chengb915f312005-12-09 22:45:35 +00001267 // Move a type over from 'other' to 'pat'.
Nate Begemanb73628b2005-12-30 00:12:56 +00001268 Pat->setTypes(Other->getExtTypes());
Chris Lattner706d2d32006-08-09 16:44:44 +00001269 // The top level node type is checked outside of the select function.
1270 if (!isRoot)
1271 emitCheck(Prefix + ".Val->getValueType(0) == " +
1272 getName(Pat->getTypeNum(0)));
Evan Chengb915f312005-12-09 22:45:35 +00001273 return true;
Evan Chengb915f312005-12-09 22:45:35 +00001274 }
1275
Evan Cheng51fecc82006-01-09 18:27:06 +00001276 unsigned OpNo =
Chris Lattner6cefb772008-01-05 22:25:12 +00001277 (unsigned) NodeHasProperty(Pat, SDNPHasChain, CGP);
Evan Chengb915f312005-12-09 22:45:35 +00001278 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i, ++OpNo)
1279 if (InsertOneTypeCheck(Pat->getChild(i), Other->getChild(i),
1280 Prefix + utostr(OpNo)))
1281 return true;
1282 return false;
1283 }
1284
1285private:
Evan Cheng54597732006-01-26 00:22:25 +00001286 /// EmitInFlagSelectCode - Emit the flag operands for the DAG that is
Evan Chengb915f312005-12-09 22:45:35 +00001287 /// being built.
Evan Cheng54597732006-01-26 00:22:25 +00001288 void EmitInFlagSelectCode(TreePatternNode *N, const std::string &RootName,
Evan Cheng676d7312006-08-26 00:59:04 +00001289 bool &ChainEmitted, bool &InFlagDecled,
1290 bool &ResNodeDecled, bool isRoot = false) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001291 const CodeGenTarget &T = CGP.getTargetInfo();
Evan Cheng51fecc82006-01-09 18:27:06 +00001292 unsigned OpNo =
Chris Lattner6cefb772008-01-05 22:25:12 +00001293 (unsigned) NodeHasProperty(N, SDNPHasChain, CGP);
1294 bool HasInFlag = NodeHasProperty(N, SDNPInFlag, CGP);
Evan Chengb915f312005-12-09 22:45:35 +00001295 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
1296 TreePatternNode *Child = N->getChild(i);
1297 if (!Child->isLeaf()) {
Evan Cheng676d7312006-08-26 00:59:04 +00001298 EmitInFlagSelectCode(Child, RootName + utostr(OpNo), ChainEmitted,
1299 InFlagDecled, ResNodeDecled);
Evan Chengb915f312005-12-09 22:45:35 +00001300 } else {
1301 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
Evan Chengb4ad33c2006-01-19 01:55:45 +00001302 if (!Child->getName().empty()) {
1303 std::string Name = RootName + utostr(OpNo);
1304 if (Duplicates.find(Name) != Duplicates.end())
1305 // A duplicate! Do not emit a copy for this node.
1306 continue;
1307 }
1308
Evan Chengb915f312005-12-09 22:45:35 +00001309 Record *RR = DI->getDef();
1310 if (RR->isSubClassOf("Register")) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001311 MVT::SimpleValueType RVT = getRegisterValueType(RR, T);
Evan Chengbcecf332005-12-17 01:19:28 +00001312 if (RVT == MVT::Flag) {
Evan Cheng676d7312006-08-26 00:59:04 +00001313 if (!InFlagDecled) {
1314 emitCode("SDOperand InFlag = " + RootName + utostr(OpNo) + ";");
1315 InFlagDecled = true;
1316 } else
1317 emitCode("InFlag = " + RootName + utostr(OpNo) + ";");
1318 emitCode("AddToISelQueue(InFlag);");
Evan Chengb2c6d492006-01-11 22:16:13 +00001319 } else {
1320 if (!ChainEmitted) {
Evan Cheng676d7312006-08-26 00:59:04 +00001321 emitCode("SDOperand Chain = CurDAG->getEntryNode();");
Evan Chenge4a8a6e2006-02-03 06:22:41 +00001322 ChainName = "Chain";
Evan Chengb2c6d492006-01-11 22:16:13 +00001323 ChainEmitted = true;
1324 }
Evan Cheng676d7312006-08-26 00:59:04 +00001325 emitCode("AddToISelQueue(" + RootName + utostr(OpNo) + ");");
1326 if (!InFlagDecled) {
1327 emitCode("SDOperand InFlag(0, 0);");
1328 InFlagDecled = true;
1329 }
1330 std::string Decl = (!ResNodeDecled) ? "SDNode *" : "";
1331 emitCode(Decl + "ResNode = CurDAG->getCopyToReg(" + ChainName +
Chris Lattner6cefb772008-01-05 22:25:12 +00001332 ", " + getQualifiedName(RR) +
Evan Cheng7a33db02006-08-26 07:39:28 +00001333 ", " + RootName + utostr(OpNo) + ", InFlag).Val;");
Evan Cheng676d7312006-08-26 00:59:04 +00001334 ResNodeDecled = true;
Evan Cheng67212a02006-02-09 22:12:27 +00001335 emitCode(ChainName + " = SDOperand(ResNode, 0);");
1336 emitCode("InFlag = SDOperand(ResNode, 1);");
Evan Chengb915f312005-12-09 22:45:35 +00001337 }
1338 }
1339 }
1340 }
1341 }
Evan Cheng54597732006-01-26 00:22:25 +00001342
Evan Cheng676d7312006-08-26 00:59:04 +00001343 if (HasInFlag) {
1344 if (!InFlagDecled) {
1345 emitCode("SDOperand InFlag = " + RootName +
1346 ".getOperand(" + utostr(OpNo) + ");");
1347 InFlagDecled = true;
1348 } else
1349 emitCode("InFlag = " + RootName +
1350 ".getOperand(" + utostr(OpNo) + ");");
1351 emitCode("AddToISelQueue(InFlag);");
1352 }
Evan Chengb915f312005-12-09 22:45:35 +00001353 }
1354};
1355
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00001356/// EmitCodeForPattern - Given a pattern to match, emit code to the specified
1357/// stream to match the pattern, and generate the code for the match if it
Chris Lattner355408b2006-01-29 02:43:35 +00001358/// succeeds. Returns true if the pattern is not guaranteed to match.
Chris Lattner60d81392008-01-05 22:30:17 +00001359void DAGISelEmitter::GenerateCodeForPattern(const PatternToMatch &Pattern,
Evan Cheng676d7312006-08-26 00:59:04 +00001360 std::vector<std::pair<unsigned, std::string> > &GeneratedCode,
Evan Chengf5493192006-08-26 01:02:19 +00001361 std::set<std::string> &GeneratedDecl,
Evan Chengfceb57a2006-07-15 08:45:20 +00001362 std::vector<std::string> &TargetOpcodes,
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001363 std::vector<std::string> &TargetVTs,
1364 bool &OutputIsVariadic,
1365 unsigned &NumInputRootOps) {
1366 OutputIsVariadic = false;
1367 NumInputRootOps = 0;
1368
Chris Lattner200c57e2008-01-05 22:58:54 +00001369 PatternCodeEmitter Emitter(CGP, Pattern.getPredicates(),
Evan Cheng58e84a62005-12-14 22:02:59 +00001370 Pattern.getSrcPattern(), Pattern.getDstPattern(),
Evan Chengf8729402006-07-16 06:12:52 +00001371 GeneratedCode, GeneratedDecl,
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001372 TargetOpcodes, TargetVTs,
1373 OutputIsVariadic, NumInputRootOps);
Evan Chengb915f312005-12-09 22:45:35 +00001374
Chris Lattner8fc35682005-09-23 23:16:51 +00001375 // Emit the matcher, capturing named arguments in VariableMap.
Evan Cheng7b05bd52005-12-23 22:11:47 +00001376 bool FoundChain = false;
Evan Cheng13e9e9c2006-10-16 06:33:44 +00001377 Emitter.EmitMatchCode(Pattern.getSrcPattern(), NULL, "N", "", FoundChain);
Evan Chengb915f312005-12-09 22:45:35 +00001378
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001379 // TP - Get *SOME* tree pattern, we don't care which.
Chris Lattner200c57e2008-01-05 22:58:54 +00001380 TreePattern &TP = *CGP.pf_begin()->second;
Chris Lattner296dfe32005-09-24 00:50:51 +00001381
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001382 // At this point, we know that we structurally match the pattern, but the
1383 // types of the nodes may not match. Figure out the fewest number of type
1384 // comparisons we need to emit. For example, if there is only one integer
1385 // type supported by a target, there should be no type comparisons at all for
1386 // integer patterns!
1387 //
1388 // To figure out the fewest number of type checks needed, clone the pattern,
1389 // remove the types, then perform type inference on the pattern as a whole.
1390 // If there are unresolved types, emit an explicit check for those types,
1391 // apply the type to the tree, then rerun type inference. Iterate until all
1392 // types are resolved.
1393 //
Evan Cheng58e84a62005-12-14 22:02:59 +00001394 TreePatternNode *Pat = Pattern.getSrcPattern()->clone();
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001395 RemoveAllTypes(Pat);
Chris Lattner7e82f132005-10-15 21:34:21 +00001396
1397 do {
1398 // Resolve/propagate as many types as possible.
1399 try {
1400 bool MadeChange = true;
1401 while (MadeChange)
Chris Lattner488580c2006-01-28 19:06:51 +00001402 MadeChange = Pat->ApplyTypeConstraints(TP,
1403 true/*Ignore reg constraints*/);
Chris Lattner7e82f132005-10-15 21:34:21 +00001404 } catch (...) {
1405 assert(0 && "Error: could not find consistent types for something we"
1406 " already decided was ok!");
1407 abort();
1408 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001409
Chris Lattner7e82f132005-10-15 21:34:21 +00001410 // Insert a check for an unresolved type and add it to the tree. If we find
1411 // an unresolved type to add a check for, this returns true and we iterate,
1412 // otherwise we are done.
Chris Lattner706d2d32006-08-09 16:44:44 +00001413 } while (Emitter.InsertOneTypeCheck(Pat, Pattern.getSrcPattern(), "N", true));
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001414
Evan Cheng85dbe1a2007-09-12 23:30:14 +00001415 Emitter.EmitResultCode(Pattern.getDstPattern(), Pattern.getDstRegs(),
Evan Cheng30729b42007-09-17 22:26:41 +00001416 false, false, false, true);
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001417 delete Pat;
Chris Lattner3f7e9142005-09-23 20:52:47 +00001418}
1419
Chris Lattner24e00a42006-01-29 04:41:05 +00001420/// EraseCodeLine - Erase one code line from all of the patterns. If removing
1421/// a line causes any of them to be empty, remove them and return true when
1422/// done.
Chris Lattner60d81392008-01-05 22:30:17 +00001423static bool EraseCodeLine(std::vector<std::pair<const PatternToMatch*,
Evan Cheng676d7312006-08-26 00:59:04 +00001424 std::vector<std::pair<unsigned, std::string> > > >
Chris Lattner24e00a42006-01-29 04:41:05 +00001425 &Patterns) {
1426 bool ErasedPatterns = false;
1427 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
1428 Patterns[i].second.pop_back();
1429 if (Patterns[i].second.empty()) {
1430 Patterns.erase(Patterns.begin()+i);
1431 --i; --e;
1432 ErasedPatterns = true;
1433 }
1434 }
1435 return ErasedPatterns;
1436}
1437
Chris Lattner8bc74722006-01-29 04:25:26 +00001438/// EmitPatterns - Emit code for at least one pattern, but try to group common
1439/// code together between the patterns.
Chris Lattner60d81392008-01-05 22:30:17 +00001440void DAGISelEmitter::EmitPatterns(std::vector<std::pair<const PatternToMatch*,
Evan Cheng676d7312006-08-26 00:59:04 +00001441 std::vector<std::pair<unsigned, std::string> > > >
Chris Lattner8bc74722006-01-29 04:25:26 +00001442 &Patterns, unsigned Indent,
1443 std::ostream &OS) {
Evan Cheng676d7312006-08-26 00:59:04 +00001444 typedef std::pair<unsigned, std::string> CodeLine;
Chris Lattner8bc74722006-01-29 04:25:26 +00001445 typedef std::vector<CodeLine> CodeList;
Chris Lattner60d81392008-01-05 22:30:17 +00001446 typedef std::vector<std::pair<const PatternToMatch*, CodeList> > PatternList;
Chris Lattner8bc74722006-01-29 04:25:26 +00001447
1448 if (Patterns.empty()) return;
1449
Chris Lattner24e00a42006-01-29 04:41:05 +00001450 // Figure out how many patterns share the next code line. Explicitly copy
1451 // FirstCodeLine so that we don't invalidate a reference when changing
1452 // Patterns.
1453 const CodeLine FirstCodeLine = Patterns.back().second.back();
Chris Lattner8bc74722006-01-29 04:25:26 +00001454 unsigned LastMatch = Patterns.size()-1;
1455 while (LastMatch != 0 && Patterns[LastMatch-1].second.back() == FirstCodeLine)
1456 --LastMatch;
1457
1458 // If not all patterns share this line, split the list into two pieces. The
1459 // first chunk will use this line, the second chunk won't.
1460 if (LastMatch != 0) {
1461 PatternList Shared(Patterns.begin()+LastMatch, Patterns.end());
1462 PatternList Other(Patterns.begin(), Patterns.begin()+LastMatch);
1463
1464 // FIXME: Emit braces?
1465 if (Shared.size() == 1) {
Chris Lattner60d81392008-01-05 22:30:17 +00001466 const PatternToMatch &Pattern = *Shared.back().first;
Chris Lattner8bc74722006-01-29 04:25:26 +00001467 OS << "\n" << std::string(Indent, ' ') << "// Pattern: ";
1468 Pattern.getSrcPattern()->print(OS);
1469 OS << "\n" << std::string(Indent, ' ') << "// Emits: ";
1470 Pattern.getDstPattern()->print(OS);
1471 OS << "\n";
Evan Chengc81d2a02006-04-19 20:36:09 +00001472 unsigned AddedComplexity = Pattern.getAddedComplexity();
Chris Lattner8bc74722006-01-29 04:25:26 +00001473 OS << std::string(Indent, ' ') << "// Pattern complexity = "
Chris Lattner200c57e2008-01-05 22:58:54 +00001474 << getPatternSize(Pattern.getSrcPattern(), CGP) + AddedComplexity
Evan Cheng59413202006-04-19 18:07:24 +00001475 << " cost = "
Chris Lattner200c57e2008-01-05 22:58:54 +00001476 << getResultPatternCost(Pattern.getDstPattern(), CGP)
Evan Chenge6f32032006-07-19 00:24:41 +00001477 << " size = "
Chris Lattner200c57e2008-01-05 22:58:54 +00001478 << getResultPatternSize(Pattern.getDstPattern(), CGP) << "\n";
Chris Lattner8bc74722006-01-29 04:25:26 +00001479 }
Evan Cheng676d7312006-08-26 00:59:04 +00001480 if (FirstCodeLine.first != 1) {
Chris Lattner8bc74722006-01-29 04:25:26 +00001481 OS << std::string(Indent, ' ') << "{\n";
1482 Indent += 2;
1483 }
1484 EmitPatterns(Shared, Indent, OS);
Evan Cheng676d7312006-08-26 00:59:04 +00001485 if (FirstCodeLine.first != 1) {
Chris Lattner8bc74722006-01-29 04:25:26 +00001486 Indent -= 2;
1487 OS << std::string(Indent, ' ') << "}\n";
1488 }
1489
1490 if (Other.size() == 1) {
Chris Lattner60d81392008-01-05 22:30:17 +00001491 const PatternToMatch &Pattern = *Other.back().first;
Chris Lattner8bc74722006-01-29 04:25:26 +00001492 OS << "\n" << std::string(Indent, ' ') << "// Pattern: ";
1493 Pattern.getSrcPattern()->print(OS);
1494 OS << "\n" << std::string(Indent, ' ') << "// Emits: ";
1495 Pattern.getDstPattern()->print(OS);
1496 OS << "\n";
Evan Chengc81d2a02006-04-19 20:36:09 +00001497 unsigned AddedComplexity = Pattern.getAddedComplexity();
Chris Lattner8bc74722006-01-29 04:25:26 +00001498 OS << std::string(Indent, ' ') << "// Pattern complexity = "
Chris Lattner200c57e2008-01-05 22:58:54 +00001499 << getPatternSize(Pattern.getSrcPattern(), CGP) + AddedComplexity
Evan Cheng59413202006-04-19 18:07:24 +00001500 << " cost = "
Chris Lattner200c57e2008-01-05 22:58:54 +00001501 << getResultPatternCost(Pattern.getDstPattern(), CGP)
Chris Lattner706d2d32006-08-09 16:44:44 +00001502 << " size = "
Chris Lattner200c57e2008-01-05 22:58:54 +00001503 << getResultPatternSize(Pattern.getDstPattern(), CGP) << "\n";
Chris Lattner8bc74722006-01-29 04:25:26 +00001504 }
1505 EmitPatterns(Other, Indent, OS);
1506 return;
1507 }
1508
Chris Lattner24e00a42006-01-29 04:41:05 +00001509 // Remove this code from all of the patterns that share it.
1510 bool ErasedPatterns = EraseCodeLine(Patterns);
1511
Evan Cheng676d7312006-08-26 00:59:04 +00001512 bool isPredicate = FirstCodeLine.first == 1;
Chris Lattner8bc74722006-01-29 04:25:26 +00001513
1514 // Otherwise, every pattern in the list has this line. Emit it.
1515 if (!isPredicate) {
1516 // Normal code.
1517 OS << std::string(Indent, ' ') << FirstCodeLine.second << "\n";
1518 } else {
Chris Lattner24e00a42006-01-29 04:41:05 +00001519 OS << std::string(Indent, ' ') << "if (" << FirstCodeLine.second;
1520
1521 // If the next code line is another predicate, and if all of the pattern
1522 // in this group share the same next line, emit it inline now. Do this
1523 // until we run out of common predicates.
Evan Cheng676d7312006-08-26 00:59:04 +00001524 while (!ErasedPatterns && Patterns.back().second.back().first == 1) {
Chris Lattner24e00a42006-01-29 04:41:05 +00001525 // Check that all of fhe patterns in Patterns end with the same predicate.
1526 bool AllEndWithSamePredicate = true;
1527 for (unsigned i = 0, e = Patterns.size(); i != e; ++i)
1528 if (Patterns[i].second.back() != Patterns.back().second.back()) {
1529 AllEndWithSamePredicate = false;
1530 break;
1531 }
1532 // If all of the predicates aren't the same, we can't share them.
1533 if (!AllEndWithSamePredicate) break;
1534
1535 // Otherwise we can. Emit it shared now.
1536 OS << " &&\n" << std::string(Indent+4, ' ')
1537 << Patterns.back().second.back().second;
1538 ErasedPatterns = EraseCodeLine(Patterns);
Chris Lattner8bc74722006-01-29 04:25:26 +00001539 }
Chris Lattner24e00a42006-01-29 04:41:05 +00001540
1541 OS << ") {\n";
1542 Indent += 2;
Chris Lattner8bc74722006-01-29 04:25:26 +00001543 }
1544
1545 EmitPatterns(Patterns, Indent, OS);
1546
1547 if (isPredicate)
1548 OS << std::string(Indent-2, ' ') << "}\n";
1549}
1550
Chris Lattnerfe718932008-01-06 01:10:31 +00001551static std::string getOpcodeName(Record *Op, CodeGenDAGPatterns &CGP) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001552 return CGP.getSDNodeInfo(Op).getEnumName();
Evan Cheng892aaf82006-11-08 23:01:03 +00001553}
Chris Lattner8bc74722006-01-29 04:25:26 +00001554
Evan Cheng892aaf82006-11-08 23:01:03 +00001555static std::string getLegalCName(std::string OpName) {
1556 std::string::size_type pos = OpName.find("::");
1557 if (pos != std::string::npos)
1558 OpName.replace(pos, 2, "_");
1559 return OpName;
Chris Lattner37481472005-09-26 21:59:35 +00001560}
1561
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001562void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) {
Chris Lattner200c57e2008-01-05 22:58:54 +00001563 const CodeGenTarget &Target = CGP.getTargetInfo();
Chris Lattner6cefb772008-01-05 22:25:12 +00001564
Chris Lattnerf7560ed2006-11-20 18:54:33 +00001565 // Get the namespace to insert instructions into. Make sure not to pick up
1566 // "TargetInstrInfo" by accidentally getting the namespace off the PHI
1567 // instruction or something.
1568 std::string InstNS;
1569 for (CodeGenTarget::inst_iterator i = Target.inst_begin(),
1570 e = Target.inst_end(); i != e; ++i) {
1571 InstNS = i->second.Namespace;
1572 if (InstNS != "TargetInstrInfo")
1573 break;
1574 }
1575
Chris Lattnerb277cbc2005-10-18 04:41:01 +00001576 if (!InstNS.empty()) InstNS += "::";
1577
Chris Lattner602f6922006-01-04 00:25:00 +00001578 // Group the patterns by their top-level opcodes.
Chris Lattner60d81392008-01-05 22:30:17 +00001579 std::map<std::string, std::vector<const PatternToMatch*> > PatternsByOpcode;
Evan Chengfceb57a2006-07-15 08:45:20 +00001580 // All unique target node emission functions.
1581 std::map<std::string, unsigned> EmitFunctions;
Chris Lattnerfe718932008-01-06 01:10:31 +00001582 for (CodeGenDAGPatterns::ptm_iterator I = CGP.ptm_begin(),
Chris Lattner200c57e2008-01-05 22:58:54 +00001583 E = CGP.ptm_end(); I != E; ++I) {
Chris Lattner60d81392008-01-05 22:30:17 +00001584 const PatternToMatch &Pattern = *I;
Chris Lattner6cefb772008-01-05 22:25:12 +00001585
1586 TreePatternNode *Node = Pattern.getSrcPattern();
Chris Lattner602f6922006-01-04 00:25:00 +00001587 if (!Node->isLeaf()) {
Chris Lattner200c57e2008-01-05 22:58:54 +00001588 PatternsByOpcode[getOpcodeName(Node->getOperator(), CGP)].
Chris Lattner6cefb772008-01-05 22:25:12 +00001589 push_back(&Pattern);
Chris Lattner602f6922006-01-04 00:25:00 +00001590 } else {
1591 const ComplexPattern *CP;
Chris Lattner9c5d4de2006-11-03 01:11:05 +00001592 if (dynamic_cast<IntInit*>(Node->getLeafValue())) {
Chris Lattner200c57e2008-01-05 22:58:54 +00001593 PatternsByOpcode[getOpcodeName(CGP.getSDNodeNamed("imm"), CGP)].
Chris Lattner6cefb772008-01-05 22:25:12 +00001594 push_back(&Pattern);
Chris Lattner200c57e2008-01-05 22:58:54 +00001595 } else if ((CP = NodeGetComplexPattern(Node, CGP))) {
Chris Lattner602f6922006-01-04 00:25:00 +00001596 std::vector<Record*> OpNodes = CP->getRootNodes();
1597 for (unsigned j = 0, e = OpNodes.size(); j != e; j++) {
Chris Lattner200c57e2008-01-05 22:58:54 +00001598 PatternsByOpcode[getOpcodeName(OpNodes[j], CGP)]
1599 .insert(PatternsByOpcode[getOpcodeName(OpNodes[j], CGP)].begin(),
Chris Lattner6cefb772008-01-05 22:25:12 +00001600 &Pattern);
Chris Lattner602f6922006-01-04 00:25:00 +00001601 }
1602 } else {
Bill Wendlingf5da1332006-12-07 22:21:48 +00001603 cerr << "Unrecognized opcode '";
Chris Lattner602f6922006-01-04 00:25:00 +00001604 Node->dump();
Bill Wendlingf5da1332006-12-07 22:21:48 +00001605 cerr << "' on tree pattern '";
Chris Lattner6cefb772008-01-05 22:25:12 +00001606 cerr << Pattern.getDstPattern()->getOperator()->getName() << "'!\n";
Chris Lattner602f6922006-01-04 00:25:00 +00001607 exit(1);
1608 }
1609 }
1610 }
Chris Lattner706d2d32006-08-09 16:44:44 +00001611
1612 // For each opcode, there might be multiple select functions, one per
1613 // ValueType of the node (or its first operand if it doesn't produce a
1614 // non-chain result.
1615 std::map<std::string, std::vector<std::string> > OpcodeVTMap;
1616
Chris Lattner602f6922006-01-04 00:25:00 +00001617 // Emit one Select_* method for each top-level opcode. We do this instead of
1618 // emitting one giant switch statement to support compilers where this will
1619 // result in the recursive functions taking less stack space.
Chris Lattner60d81392008-01-05 22:30:17 +00001620 for (std::map<std::string, std::vector<const PatternToMatch*> >::iterator
Evan Cheng892aaf82006-11-08 23:01:03 +00001621 PBOI = PatternsByOpcode.begin(), E = PatternsByOpcode.end();
1622 PBOI != E; ++PBOI) {
1623 const std::string &OpName = PBOI->first;
Chris Lattner60d81392008-01-05 22:30:17 +00001624 std::vector<const PatternToMatch*> &PatternsOfOp = PBOI->second;
Chris Lattner706d2d32006-08-09 16:44:44 +00001625 assert(!PatternsOfOp.empty() && "No patterns but map has entry?");
1626
Chris Lattner602f6922006-01-04 00:25:00 +00001627 // We want to emit all of the matching code now. However, we want to emit
1628 // the matches in order of minimal cost. Sort the patterns so the least
1629 // cost one is at the start.
Chris Lattner706d2d32006-08-09 16:44:44 +00001630 std::stable_sort(PatternsOfOp.begin(), PatternsOfOp.end(),
Chris Lattner200c57e2008-01-05 22:58:54 +00001631 PatternSortingPredicate(CGP));
Evan Cheng21ad3922006-02-07 00:37:41 +00001632
Chris Lattner706d2d32006-08-09 16:44:44 +00001633 // Split them into groups by type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001634 std::map<MVT::SimpleValueType,
1635 std::vector<const PatternToMatch*> > PatternsByType;
Chris Lattner706d2d32006-08-09 16:44:44 +00001636 for (unsigned i = 0, e = PatternsOfOp.size(); i != e; ++i) {
Chris Lattner60d81392008-01-05 22:30:17 +00001637 const PatternToMatch *Pat = PatternsOfOp[i];
Chris Lattner706d2d32006-08-09 16:44:44 +00001638 TreePatternNode *SrcPat = Pat->getSrcPattern();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001639 MVT::SimpleValueType VT = SrcPat->getTypeNum(0);
1640 std::map<MVT::SimpleValueType,
Chris Lattner60d81392008-01-05 22:30:17 +00001641 std::vector<const PatternToMatch*> >::iterator TI =
Chris Lattner706d2d32006-08-09 16:44:44 +00001642 PatternsByType.find(VT);
1643 if (TI != PatternsByType.end())
1644 TI->second.push_back(Pat);
1645 else {
Chris Lattner60d81392008-01-05 22:30:17 +00001646 std::vector<const PatternToMatch*> PVec;
Chris Lattner706d2d32006-08-09 16:44:44 +00001647 PVec.push_back(Pat);
1648 PatternsByType.insert(std::make_pair(VT, PVec));
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001649 }
Chris Lattner706d2d32006-08-09 16:44:44 +00001650 }
1651
Duncan Sands83ec4b62008-06-06 12:08:01 +00001652 for (std::map<MVT::SimpleValueType,
1653 std::vector<const PatternToMatch*> >::iterator
Chris Lattner706d2d32006-08-09 16:44:44 +00001654 II = PatternsByType.begin(), EE = PatternsByType.end(); II != EE;
1655 ++II) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001656 MVT::SimpleValueType OpVT = II->first;
Chris Lattner60d81392008-01-05 22:30:17 +00001657 std::vector<const PatternToMatch*> &Patterns = II->second;
Chris Lattner64906972006-09-21 18:28:27 +00001658 typedef std::vector<std::pair<unsigned,std::string> > CodeList;
1659 typedef std::vector<std::pair<unsigned,std::string> >::iterator CodeListI;
Chris Lattner706d2d32006-08-09 16:44:44 +00001660
Chris Lattner60d81392008-01-05 22:30:17 +00001661 std::vector<std::pair<const PatternToMatch*, CodeList> > CodeForPatterns;
Chris Lattner706d2d32006-08-09 16:44:44 +00001662 std::vector<std::vector<std::string> > PatternOpcodes;
1663 std::vector<std::vector<std::string> > PatternVTs;
Evan Chengf5493192006-08-26 01:02:19 +00001664 std::vector<std::set<std::string> > PatternDecls;
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001665 std::vector<bool> OutputIsVariadicFlags;
1666 std::vector<unsigned> NumInputRootOpsCounts;
Chris Lattner706d2d32006-08-09 16:44:44 +00001667 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
1668 CodeList GeneratedCode;
Evan Chengf5493192006-08-26 01:02:19 +00001669 std::set<std::string> GeneratedDecl;
Chris Lattner706d2d32006-08-09 16:44:44 +00001670 std::vector<std::string> TargetOpcodes;
1671 std::vector<std::string> TargetVTs;
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001672 bool OutputIsVariadic;
1673 unsigned NumInputRootOps;
Chris Lattner706d2d32006-08-09 16:44:44 +00001674 GenerateCodeForPattern(*Patterns[i], GeneratedCode, GeneratedDecl,
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001675 TargetOpcodes, TargetVTs,
1676 OutputIsVariadic, NumInputRootOps);
Chris Lattner706d2d32006-08-09 16:44:44 +00001677 CodeForPatterns.push_back(std::make_pair(Patterns[i], GeneratedCode));
1678 PatternDecls.push_back(GeneratedDecl);
1679 PatternOpcodes.push_back(TargetOpcodes);
1680 PatternVTs.push_back(TargetVTs);
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001681 OutputIsVariadicFlags.push_back(OutputIsVariadic);
1682 NumInputRootOpsCounts.push_back(NumInputRootOps);
Chris Lattner706d2d32006-08-09 16:44:44 +00001683 }
1684
1685 // Scan the code to see if all of the patterns are reachable and if it is
1686 // possible that the last one might not match.
1687 bool mightNotMatch = true;
1688 for (unsigned i = 0, e = CodeForPatterns.size(); i != e; ++i) {
1689 CodeList &GeneratedCode = CodeForPatterns[i].second;
1690 mightNotMatch = false;
1691
1692 for (unsigned j = 0, e = GeneratedCode.size(); j != e; ++j) {
Evan Cheng676d7312006-08-26 00:59:04 +00001693 if (GeneratedCode[j].first == 1) { // predicate.
Chris Lattner706d2d32006-08-09 16:44:44 +00001694 mightNotMatch = true;
1695 break;
1696 }
1697 }
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001698
Chris Lattner706d2d32006-08-09 16:44:44 +00001699 // If this pattern definitely matches, and if it isn't the last one, the
1700 // patterns after it CANNOT ever match. Error out.
1701 if (mightNotMatch == false && i != CodeForPatterns.size()-1) {
Bill Wendlingf5da1332006-12-07 22:21:48 +00001702 cerr << "Pattern '";
1703 CodeForPatterns[i].first->getSrcPattern()->print(*cerr.stream());
1704 cerr << "' is impossible to select!\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00001705 exit(1);
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001706 }
1707 }
1708
Chris Lattner706d2d32006-08-09 16:44:44 +00001709 // Factor target node emission code (emitted by EmitResultCode) into
1710 // separate functions. Uniquing and share them among all instruction
1711 // selection routines.
1712 for (unsigned i = 0, e = CodeForPatterns.size(); i != e; ++i) {
1713 CodeList &GeneratedCode = CodeForPatterns[i].second;
1714 std::vector<std::string> &TargetOpcodes = PatternOpcodes[i];
1715 std::vector<std::string> &TargetVTs = PatternVTs[i];
Evan Chengf5493192006-08-26 01:02:19 +00001716 std::set<std::string> Decls = PatternDecls[i];
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001717 bool OutputIsVariadic = OutputIsVariadicFlags[i];
1718 unsigned NumInputRootOps = NumInputRootOpsCounts[i];
Evan Cheng676d7312006-08-26 00:59:04 +00001719 std::vector<std::string> AddedInits;
Chris Lattner706d2d32006-08-09 16:44:44 +00001720 int CodeSize = (int)GeneratedCode.size();
1721 int LastPred = -1;
1722 for (int j = CodeSize-1; j >= 0; --j) {
Evan Cheng676d7312006-08-26 00:59:04 +00001723 if (LastPred == -1 && GeneratedCode[j].first == 1)
Chris Lattner706d2d32006-08-09 16:44:44 +00001724 LastPred = j;
Evan Cheng676d7312006-08-26 00:59:04 +00001725 else if (LastPred != -1 && GeneratedCode[j].first == 2)
1726 AddedInits.push_back(GeneratedCode[j].second);
Chris Lattner706d2d32006-08-09 16:44:44 +00001727 }
1728
Evan Cheng9ade2182006-08-26 05:34:46 +00001729 std::string CalleeCode = "(const SDOperand &N";
1730 std::string CallerCode = "(N";
Chris Lattner706d2d32006-08-09 16:44:44 +00001731 for (unsigned j = 0, e = TargetOpcodes.size(); j != e; ++j) {
1732 CalleeCode += ", unsigned Opc" + utostr(j);
1733 CallerCode += ", " + TargetOpcodes[j];
1734 }
1735 for (unsigned j = 0, e = TargetVTs.size(); j != e; ++j) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001736 CalleeCode += ", MVT VT" + utostr(j);
Chris Lattner706d2d32006-08-09 16:44:44 +00001737 CallerCode += ", " + TargetVTs[j];
1738 }
Evan Chengf5493192006-08-26 01:02:19 +00001739 for (std::set<std::string>::iterator
Chris Lattner706d2d32006-08-09 16:44:44 +00001740 I = Decls.begin(), E = Decls.end(); I != E; ++I) {
Evan Chengf5493192006-08-26 01:02:19 +00001741 std::string Name = *I;
Evan Cheng676d7312006-08-26 00:59:04 +00001742 CalleeCode += ", SDOperand &" + Name;
1743 CallerCode += ", " + Name;
Chris Lattner706d2d32006-08-09 16:44:44 +00001744 }
Dan Gohmane4c67cd2008-05-31 02:11:25 +00001745
1746 if (OutputIsVariadic) {
1747 CalleeCode += ", unsigned NumInputRootOps";
1748 CallerCode += ", " + utostr(NumInputRootOps);
1749 }
1750
Chris Lattner706d2d32006-08-09 16:44:44 +00001751 CallerCode += ");";
1752 CalleeCode += ") ";
1753 // Prevent emission routines from being inlined to reduce selection
1754 // routines stack frame sizes.
Chris Lattner8dc728e2006-08-27 13:16:24 +00001755 CalleeCode += "DISABLE_INLINE ";
Evan Cheng676d7312006-08-26 00:59:04 +00001756 CalleeCode += "{\n";
1757
1758 for (std::vector<std::string>::const_reverse_iterator
1759 I = AddedInits.rbegin(), E = AddedInits.rend(); I != E; ++I)
1760 CalleeCode += " " + *I + "\n";
1761
Evan Chengf5493192006-08-26 01:02:19 +00001762 for (int j = LastPred+1; j < CodeSize; ++j)
1763 CalleeCode += " " + GeneratedCode[j].second + "\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00001764 for (int j = LastPred+1; j < CodeSize; ++j)
1765 GeneratedCode.pop_back();
1766 CalleeCode += "}\n";
1767
1768 // Uniquing the emission routines.
1769 unsigned EmitFuncNum;
1770 std::map<std::string, unsigned>::iterator EFI =
1771 EmitFunctions.find(CalleeCode);
1772 if (EFI != EmitFunctions.end()) {
1773 EmitFuncNum = EFI->second;
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001774 } else {
Chris Lattner706d2d32006-08-09 16:44:44 +00001775 EmitFuncNum = EmitFunctions.size();
1776 EmitFunctions.insert(std::make_pair(CalleeCode, EmitFuncNum));
Evan Cheng06d64702006-08-11 08:59:35 +00001777 OS << "SDNode *Emit_" << utostr(EmitFuncNum) << CalleeCode;
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001778 }
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001779
Chris Lattner706d2d32006-08-09 16:44:44 +00001780 // Replace the emission code within selection routines with calls to the
1781 // emission functions.
Evan Cheng06d64702006-08-11 08:59:35 +00001782 CallerCode = "return Emit_" + utostr(EmitFuncNum) + CallerCode;
Chris Lattner706d2d32006-08-09 16:44:44 +00001783 GeneratedCode.push_back(std::make_pair(false, CallerCode));
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001784 }
1785
Chris Lattner706d2d32006-08-09 16:44:44 +00001786 // Print function.
Chris Lattnerab51ddd2006-11-14 21:32:01 +00001787 std::string OpVTStr;
Chris Lattner33a40042006-11-14 22:17:10 +00001788 if (OpVT == MVT::iPTR) {
1789 OpVTStr = "_iPTR";
1790 } else if (OpVT == MVT::isVoid) {
1791 // Nodes with a void result actually have a first result type of either
1792 // Other (a chain) or Flag. Since there is no one-to-one mapping from
1793 // void to this case, we handle it specially here.
1794 } else {
1795 OpVTStr = "_" + getEnumName(OpVT).substr(5); // Skip 'MVT::'
1796 }
Chris Lattner706d2d32006-08-09 16:44:44 +00001797 std::map<std::string, std::vector<std::string> >::iterator OpVTI =
1798 OpcodeVTMap.find(OpName);
1799 if (OpVTI == OpcodeVTMap.end()) {
1800 std::vector<std::string> VTSet;
1801 VTSet.push_back(OpVTStr);
1802 OpcodeVTMap.insert(std::make_pair(OpName, VTSet));
1803 } else
1804 OpVTI->second.push_back(OpVTStr);
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001805
Evan Cheng892aaf82006-11-08 23:01:03 +00001806 OS << "SDNode *Select_" << getLegalCName(OpName)
Chris Lattner33a40042006-11-14 22:17:10 +00001807 << OpVTStr << "(const SDOperand &N) {\n";
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001808
Chris Lattner706d2d32006-08-09 16:44:44 +00001809 // Loop through and reverse all of the CodeList vectors, as we will be
1810 // accessing them from their logical front, but accessing the end of a
1811 // vector is more efficient.
1812 for (unsigned i = 0, e = CodeForPatterns.size(); i != e; ++i) {
1813 CodeList &GeneratedCode = CodeForPatterns[i].second;
1814 std::reverse(GeneratedCode.begin(), GeneratedCode.end());
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001815 }
Chris Lattner706d2d32006-08-09 16:44:44 +00001816
1817 // Next, reverse the list of patterns itself for the same reason.
1818 std::reverse(CodeForPatterns.begin(), CodeForPatterns.end());
1819
1820 // Emit all of the patterns now, grouped together to share code.
1821 EmitPatterns(CodeForPatterns, 2, OS);
1822
Chris Lattner64906972006-09-21 18:28:27 +00001823 // If the last pattern has predicates (which could fail) emit code to
1824 // catch the case where nothing handles a pattern.
Chris Lattner706d2d32006-08-09 16:44:44 +00001825 if (mightNotMatch) {
Bill Wendlingf5da1332006-12-07 22:21:48 +00001826 OS << " cerr << \"Cannot yet select: \";\n";
Evan Cheng892aaf82006-11-08 23:01:03 +00001827 if (OpName != "ISD::INTRINSIC_W_CHAIN" &&
1828 OpName != "ISD::INTRINSIC_WO_CHAIN" &&
1829 OpName != "ISD::INTRINSIC_VOID") {
Chris Lattner706d2d32006-08-09 16:44:44 +00001830 OS << " N.Val->dump(CurDAG);\n";
1831 } else {
1832 OS << " unsigned iid = cast<ConstantSDNode>(N.getOperand("
1833 "N.getOperand(0).getValueType() == MVT::Other))->getValue();\n"
Bill Wendlingf5da1332006-12-07 22:21:48 +00001834 << " cerr << \"intrinsic %\"<< "
Chris Lattner706d2d32006-08-09 16:44:44 +00001835 "Intrinsic::getName((Intrinsic::ID)iid);\n";
1836 }
Bill Wendlingf5da1332006-12-07 22:21:48 +00001837 OS << " cerr << '\\n';\n"
Evan Cheng06d64702006-08-11 08:59:35 +00001838 << " abort();\n"
1839 << " return NULL;\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00001840 }
1841 OS << "}\n\n";
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001842 }
Chris Lattner602f6922006-01-04 00:25:00 +00001843 }
1844
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001845 // Emit boilerplate.
Evan Cheng9ade2182006-08-26 05:34:46 +00001846 OS << "SDNode *Select_INLINEASM(SDOperand N) {\n"
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00001847 << " std::vector<SDOperand> Ops(N.Val->op_begin(), N.Val->op_end());\n"
Chris Lattner4ef9b112007-05-15 01:36:44 +00001848 << " SelectInlineAsmMemoryOperands(Ops, *CurDAG);\n\n"
1849
1850 << " // Ensure that the asm operands are themselves selected.\n"
1851 << " for (unsigned j = 0, e = Ops.size(); j != e; ++j)\n"
1852 << " AddToISelQueue(Ops[j]);\n\n"
1853
Duncan Sands83ec4b62008-06-06 12:08:01 +00001854 << " std::vector<MVT> VTs;\n"
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00001855 << " VTs.push_back(MVT::Other);\n"
1856 << " VTs.push_back(MVT::Flag);\n"
Chris Lattner706d2d32006-08-09 16:44:44 +00001857 << " SDOperand New = CurDAG->getNode(ISD::INLINEASM, VTs, &Ops[0], "
1858 "Ops.size());\n"
Evan Cheng9ade2182006-08-26 05:34:46 +00001859 << " return New.Val;\n"
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00001860 << "}\n\n";
Evan Chengda47e6e2008-03-15 00:03:38 +00001861
1862 OS << "SDNode *Select_UNDEF(const SDOperand &N) {\n"
1863 << " return CurDAG->getTargetNode(TargetInstrInfo::IMPLICIT_DEF,\n"
1864 << " N.getValueType());\n"
1865 << "}\n\n";
1866
Evan Chenga844bde2008-02-02 04:07:54 +00001867 OS << "SDNode *Select_DECLARE(const SDOperand &N) {\n"
Evan Chenga844bde2008-02-02 04:07:54 +00001868 << " SDOperand Chain = N.getOperand(0);\n"
1869 << " SDOperand N1 = N.getOperand(1);\n"
1870 << " SDOperand N2 = N.getOperand(2);\n"
1871 << " if (!isa<FrameIndexSDNode>(N1) || !isa<GlobalAddressSDNode>(N2)) {\n"
1872 << " cerr << \"Cannot yet select llvm.dbg.declare: \";\n"
1873 << " N.Val->dump(CurDAG);\n"
1874 << " abort();\n"
1875 << " }\n"
1876 << " int FI = cast<FrameIndexSDNode>(N1)->getIndex();\n"
1877 << " GlobalValue *GV = cast<GlobalAddressSDNode>(N2)->getGlobal();\n"
Evan Chenga844bde2008-02-02 04:07:54 +00001878 << " SDOperand Tmp1 = "
1879 << "CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());\n"
1880 << " SDOperand Tmp2 = "
1881 << "CurDAG->getTargetGlobalAddress(GV, TLI.getPointerTy());\n"
1882 << " AddToISelQueue(Chain);\n"
1883 << " SDOperand Ops[] = { Tmp1, Tmp2, Chain };\n"
1884 << " return CurDAG->getTargetNode(TargetInstrInfo::DECLARE,\n"
1885 << " MVT::Other, Ops, 3);\n"
1886 << "}\n\n";
1887
Christopher Lamb08d52072007-07-26 07:48:21 +00001888 OS << "SDNode *Select_EXTRACT_SUBREG(const SDOperand &N) {\n"
1889 << " SDOperand N0 = N.getOperand(0);\n"
1890 << " SDOperand N1 = N.getOperand(1);\n"
1891 << " unsigned C = cast<ConstantSDNode>(N1)->getValue();\n"
1892 << " SDOperand Tmp = CurDAG->getTargetConstant(C, MVT::i32);\n"
1893 << " AddToISelQueue(N0);\n"
Chris Lattner44f14762007-10-24 06:25:09 +00001894 << " SDOperand Ops[] = { N0, Tmp };\n"
Christopher Lamb08d52072007-07-26 07:48:21 +00001895 << " return CurDAG->getTargetNode(TargetInstrInfo::EXTRACT_SUBREG,\n"
Chris Lattner44f14762007-10-24 06:25:09 +00001896 << " N.getValueType(), Ops, 2);\n"
Christopher Lamb08d52072007-07-26 07:48:21 +00001897 << "}\n\n";
1898
1899 OS << "SDNode *Select_INSERT_SUBREG(const SDOperand &N) {\n"
1900 << " SDOperand N0 = N.getOperand(0);\n"
1901 << " SDOperand N1 = N.getOperand(1);\n"
1902 << " SDOperand N2 = N.getOperand(2);\n"
1903 << " unsigned C = cast<ConstantSDNode>(N2)->getValue();\n"
1904 << " SDOperand Tmp = CurDAG->getTargetConstant(C, MVT::i32);\n"
1905 << " AddToISelQueue(N1);\n"
Chris Lattner44f14762007-10-24 06:25:09 +00001906 << " SDOperand Ops[] = { N0, N1, Tmp };\n"
Christopher Lamb6634e262008-03-13 05:47:01 +00001907 << " AddToISelQueue(N0);\n"
1908 << " return CurDAG->getTargetNode(TargetInstrInfo::INSERT_SUBREG,\n"
1909 << " N.getValueType(), Ops, 3);\n"
Christopher Lamb08d52072007-07-26 07:48:21 +00001910 << "}\n\n";
1911
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001912 OS << "// The main instruction selector code.\n"
Evan Cheng9ade2182006-08-26 05:34:46 +00001913 << "SDNode *SelectCode(SDOperand N) {\n"
Chris Lattner547394c2005-09-23 21:53:45 +00001914 << " if (N.getOpcode() >= ISD::BUILTIN_OP_END &&\n"
Chris Lattnerb277cbc2005-10-18 04:41:01 +00001915 << " N.getOpcode() < (ISD::BUILTIN_OP_END+" << InstNS
Evan Cheng34167212006-02-09 00:37:58 +00001916 << "INSTRUCTION_LIST_END)) {\n"
Evan Cheng06d64702006-08-11 08:59:35 +00001917 << " return NULL; // Already selected.\n"
Evan Cheng34167212006-02-09 00:37:58 +00001918 << " }\n\n"
Duncan Sands83ec4b62008-06-06 12:08:01 +00001919 << " MVT::SimpleValueType NVT = N.Val->getValueType(0).getSimpleVT();\n"
Chris Lattner547394c2005-09-23 21:53:45 +00001920 << " switch (N.getOpcode()) {\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001921 << " default: break;\n"
1922 << " case ISD::EntryToken: // These leaves remain the same.\n"
Chris Lattner5216c692005-12-18 21:05:44 +00001923 << " case ISD::BasicBlock:\n"
Chris Lattner8020a522006-01-11 19:52:27 +00001924 << " case ISD::Register:\n"
Evan Cheng0a83ed52006-02-05 08:46:14 +00001925 << " case ISD::HANDLENODE:\n"
Evan Cheng2216d8a2006-02-05 05:22:18 +00001926 << " case ISD::TargetConstant:\n"
Nate Begemane1795842008-02-14 08:57:00 +00001927 << " case ISD::TargetConstantFP:\n"
Evan Cheng2216d8a2006-02-05 05:22:18 +00001928 << " case ISD::TargetConstantPool:\n"
1929 << " case ISD::TargetFrameIndex:\n"
Chris Lattner4ef9b112007-05-15 01:36:44 +00001930 << " case ISD::TargetExternalSymbol:\n"
Nate Begeman37efe672006-04-22 18:53:45 +00001931 << " case ISD::TargetJumpTable:\n"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001932 << " case ISD::TargetGlobalTLSAddress:\n"
Evan Cheng34167212006-02-09 00:37:58 +00001933 << " case ISD::TargetGlobalAddress: {\n"
Evan Cheng06d64702006-08-11 08:59:35 +00001934 << " return NULL;\n"
Evan Cheng34167212006-02-09 00:37:58 +00001935 << " }\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001936 << " case ISD::AssertSext:\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00001937 << " case ISD::AssertZext: {\n"
Evan Cheng676d7312006-08-26 00:59:04 +00001938 << " AddToISelQueue(N.getOperand(0));\n"
1939 << " ReplaceUses(N, N.getOperand(0));\n"
Evan Cheng06d64702006-08-11 08:59:35 +00001940 << " return NULL;\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00001941 << " }\n"
1942 << " case ISD::TokenFactor:\n"
Chris Lattner706d2d32006-08-09 16:44:44 +00001943 << " case ISD::CopyFromReg:\n"
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00001944 << " case ISD::CopyToReg: {\n"
Dan Gohman44066042008-07-01 00:05:16 +00001945 << " case ISD::DBG_LABEL:\n"
1946 << " case ISD::EH_LABEL:\n"
Evan Cheng676d7312006-08-26 00:59:04 +00001947 << " for (unsigned i = 0, e = N.getNumOperands(); i != e; ++i)\n"
1948 << " AddToISelQueue(N.getOperand(i));\n"
Evan Cheng06d64702006-08-11 08:59:35 +00001949 << " return NULL;\n"
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00001950 << " }\n"
Jim Laskeya683f9b2007-01-26 17:29:20 +00001951 << " case ISD::INLINEASM: return Select_INLINEASM(N);\n"
Evan Chenga844bde2008-02-02 04:07:54 +00001952 << " case ISD::DECLARE: return Select_DECLARE(N);\n"
Christopher Lamb08d52072007-07-26 07:48:21 +00001953 << " case ISD::EXTRACT_SUBREG: return Select_EXTRACT_SUBREG(N);\n"
Evan Chengda47e6e2008-03-15 00:03:38 +00001954 << " case ISD::INSERT_SUBREG: return Select_INSERT_SUBREG(N);\n"
1955 << " case ISD::UNDEF: return Select_UNDEF(N);\n";
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00001956
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001957
Chris Lattner602f6922006-01-04 00:25:00 +00001958 // Loop over all of the case statements, emiting a call to each method we
1959 // emitted above.
Chris Lattner60d81392008-01-05 22:30:17 +00001960 for (std::map<std::string, std::vector<const PatternToMatch*> >::iterator
Evan Cheng892aaf82006-11-08 23:01:03 +00001961 PBOI = PatternsByOpcode.begin(), E = PatternsByOpcode.end();
1962 PBOI != E; ++PBOI) {
1963 const std::string &OpName = PBOI->first;
Chris Lattner706d2d32006-08-09 16:44:44 +00001964 // Potentially multiple versions of select for this opcode. One for each
1965 // ValueType of the node (or its first true operand if it doesn't produce a
1966 // result.
1967 std::map<std::string, std::vector<std::string> >::iterator OpVTI =
1968 OpcodeVTMap.find(OpName);
1969 std::vector<std::string> &OpVTs = OpVTI->second;
Evan Cheng892aaf82006-11-08 23:01:03 +00001970 OS << " case " << OpName << ": {\n";
Evan Cheng425e8c72007-09-04 20:18:28 +00001971 // Keep track of whether we see a pattern that has an iPtr result.
1972 bool HasPtrPattern = false;
1973 bool HasDefaultPattern = false;
Chris Lattner717a6112006-11-14 21:50:27 +00001974
Evan Cheng425e8c72007-09-04 20:18:28 +00001975 OS << " switch (NVT) {\n";
1976 for (unsigned i = 0, e = OpVTs.size(); i < e; ++i) {
1977 std::string &VTStr = OpVTs[i];
1978 if (VTStr.empty()) {
1979 HasDefaultPattern = true;
1980 continue;
1981 }
Chris Lattner717a6112006-11-14 21:50:27 +00001982
Evan Cheng425e8c72007-09-04 20:18:28 +00001983 // If this is a match on iPTR: don't emit it directly, we need special
1984 // code.
1985 if (VTStr == "_iPTR") {
1986 HasPtrPattern = true;
1987 continue;
Chris Lattner706d2d32006-08-09 16:44:44 +00001988 }
Evan Cheng425e8c72007-09-04 20:18:28 +00001989 OS << " case MVT::" << VTStr.substr(1) << ":\n"
1990 << " return Select_" << getLegalCName(OpName)
1991 << VTStr << "(N);\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00001992 }
Evan Cheng425e8c72007-09-04 20:18:28 +00001993 OS << " default:\n";
1994
1995 // If there is an iPTR result version of this pattern, emit it here.
1996 if (HasPtrPattern) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001997 OS << " if (TLI.getPointerTy() == NVT)\n";
Evan Cheng425e8c72007-09-04 20:18:28 +00001998 OS << " return Select_" << getLegalCName(OpName) <<"_iPTR(N);\n";
1999 }
2000 if (HasDefaultPattern) {
2001 OS << " return Select_" << getLegalCName(OpName) << "(N);\n";
2002 }
2003 OS << " break;\n";
2004 OS << " }\n";
2005 OS << " break;\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00002006 OS << " }\n";
Chris Lattner81303322005-09-23 19:36:15 +00002007 }
Chris Lattner81303322005-09-23 19:36:15 +00002008
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002009 OS << " } // end of big switch.\n\n"
Bill Wendlingf5da1332006-12-07 22:21:48 +00002010 << " cerr << \"Cannot yet select: \";\n"
Chris Lattnerb026e702006-03-28 00:41:33 +00002011 << " if (N.getOpcode() != ISD::INTRINSIC_W_CHAIN &&\n"
2012 << " N.getOpcode() != ISD::INTRINSIC_WO_CHAIN &&\n"
2013 << " N.getOpcode() != ISD::INTRINSIC_VOID) {\n"
Chris Lattner9bf2d3e2006-03-25 06:47:53 +00002014 << " N.Val->dump(CurDAG);\n"
2015 << " } else {\n"
2016 << " unsigned iid = cast<ConstantSDNode>(N.getOperand("
2017 "N.getOperand(0).getValueType() == MVT::Other))->getValue();\n"
Bill Wendlingf5da1332006-12-07 22:21:48 +00002018 << " cerr << \"intrinsic %\"<< "
2019 "Intrinsic::getName((Intrinsic::ID)iid);\n"
Chris Lattner9bf2d3e2006-03-25 06:47:53 +00002020 << " }\n"
Bill Wendlingf5da1332006-12-07 22:21:48 +00002021 << " cerr << '\\n';\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002022 << " abort();\n"
Evan Cheng06d64702006-08-11 08:59:35 +00002023 << " return NULL;\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002024 << "}\n";
2025}
2026
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002027void DAGISelEmitter::run(std::ostream &OS) {
Chris Lattner200c57e2008-01-05 22:58:54 +00002028 EmitSourceFileHeader("DAG Instruction Selector for the " +
2029 CGP.getTargetInfo().getName() + " target", OS);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002030
Chris Lattner1f39e292005-09-14 00:09:24 +00002031 OS << "// *** NOTE: This file is #included into the middle of the target\n"
2032 << "// *** instruction selector class. These functions are really "
2033 << "methods.\n\n";
Chris Lattnerf8dc0612008-02-03 06:49:24 +00002034
Roman Levenstein6422e8a2008-05-14 10:17:11 +00002035 OS << "// Include standard, target-independent definitions and methods used\n"
2036 << "// by the instruction selector.\n";
2037 OS << "#include <llvm/CodeGen/DAGISelHeader.h>\n\n";
Chris Lattner296dfe32005-09-24 00:50:51 +00002038
Chris Lattner443e3f92008-01-05 22:54:53 +00002039 EmitNodeTransforms(OS);
Chris Lattnerdc32f982008-01-05 22:43:57 +00002040 EmitPredicateFunctions(OS);
2041
Bill Wendlingf5da1332006-12-07 22:21:48 +00002042 DOUT << "\n\nALL PATTERNS TO MATCH:\n\n";
Chris Lattnerfe718932008-01-06 01:10:31 +00002043 for (CodeGenDAGPatterns::ptm_iterator I = CGP.ptm_begin(), E = CGP.ptm_end();
Chris Lattner6cefb772008-01-05 22:25:12 +00002044 I != E; ++I) {
2045 DOUT << "PATTERN: "; DEBUG(I->getSrcPattern()->dump());
2046 DOUT << "\nRESULT: "; DEBUG(I->getDstPattern()->dump());
Bill Wendlingf5da1332006-12-07 22:21:48 +00002047 DOUT << "\n";
2048 }
Chris Lattnere46e17b2005-09-29 19:28:10 +00002049
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002050 // At this point, we have full information about the 'Patterns' we need to
2051 // parse, both implicitly from instructions as well as from explicit pattern
Chris Lattnere97603f2005-09-28 19:27:25 +00002052 // definitions. Emit the resultant instruction selector.
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002053 EmitInstructionSelector(OS);
2054
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002055}