a2603e9683a38e0b4675b40e10cb901cdeb0230e
[oota-llvm.git] / utils / TableGen / DAGISelMatcher.cpp
1 //===- DAGISelMatcher.cpp - Representation of DAG pattern matcher ---------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include "DAGISelMatcher.h"
11 #include "CodeGenDAGPatterns.h"
12 #include "CodeGenTarget.h"
13 #include "Record.h"
14 #include "llvm/Support/raw_ostream.h"
15 #include "llvm/ADT/StringExtras.h"
16 using namespace llvm;
17
18 void Matcher::dump() const {
19   print(errs(), 0);
20 }
21
22 void Matcher::print(raw_ostream &OS, unsigned indent) const {
23   printImpl(OS, indent);
24   if (Next)
25     return Next->print(OS, indent);
26 }
27
28 void Matcher::printOne(raw_ostream &OS) const {
29   printImpl(OS, 0);
30 }
31
32 ScopeMatcher::~ScopeMatcher() {
33   for (unsigned i = 0, e = Children.size(); i != e; ++i)
34     delete Children[i];
35 }
36
37
38 // printImpl methods.
39
40 void ScopeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
41   OS.indent(indent) << "Scope\n";
42   for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
43     if (getChild(i) == 0)
44       OS.indent(indent+1) << "NULL POINTER\n";
45     else
46       getChild(i)->print(OS, indent+2);
47   }
48 }
49
50 void RecordMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
51   OS.indent(indent) << "Record\n";
52 }
53
54 void RecordChildMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
55   OS.indent(indent) << "RecordChild: " << ChildNo << '\n';
56 }
57
58 void RecordMemRefMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
59   OS.indent(indent) << "RecordMemRef\n";
60 }
61
62 void CaptureFlagInputMatcher::printImpl(raw_ostream &OS, unsigned indent) const{
63   OS.indent(indent) << "CaptureFlagInput\n";
64 }
65
66 void MoveChildMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
67   OS.indent(indent) << "MoveChild " << ChildNo << '\n';
68 }
69
70 void MoveParentMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
71   OS.indent(indent) << "MoveParent\n";
72 }
73
74 void CheckSameMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
75   OS.indent(indent) << "CheckSame " << MatchNumber << '\n';
76 }
77
78 void CheckPatternPredicateMatcher::
79 printImpl(raw_ostream &OS, unsigned indent) const {
80   OS.indent(indent) << "CheckPatternPredicate " << Predicate << '\n';
81 }
82
83 void CheckPredicateMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
84   OS.indent(indent) << "CheckPredicate " << PredName << '\n';
85 }
86
87 void CheckOpcodeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
88   OS.indent(indent) << "CheckOpcode " << Opcode.getEnumName() << '\n';
89 }
90
91 void SwitchOpcodeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
92   OS.indent(indent) << "SwitchOpcode: {\n";
93   for (unsigned i = 0, e = Cases.size(); i != e; ++i) {
94     OS.indent(indent) << "case " << Cases[i].first->getEnumName() << ":\n";
95     Cases[i].second->print(OS, indent+2);
96   }
97   OS.indent(indent) << "}\n";
98 }
99
100
101 void CheckTypeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
102   OS.indent(indent) << "CheckType " << getEnumName(Type) << '\n';
103 }
104
105 void CheckChildTypeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
106   OS.indent(indent) << "CheckChildType " << ChildNo << " "
107     << getEnumName(Type) << '\n';
108 }
109
110
111 void CheckIntegerMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
112   OS.indent(indent) << "CheckInteger " << Value << '\n';
113 }
114
115 void CheckCondCodeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
116   OS.indent(indent) << "CheckCondCode ISD::" << CondCodeName << '\n';
117 }
118
119 void CheckValueTypeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
120   OS.indent(indent) << "CheckValueType MVT::" << TypeName << '\n';
121 }
122
123 void CheckComplexPatMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
124   OS.indent(indent) << "CheckComplexPat " << Pattern.getSelectFunc() << '\n';
125 }
126
127 void CheckAndImmMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
128   OS.indent(indent) << "CheckAndImm " << Value << '\n';
129 }
130
131 void CheckOrImmMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
132   OS.indent(indent) << "CheckOrImm " << Value << '\n';
133 }
134
135 void CheckFoldableChainNodeMatcher::printImpl(raw_ostream &OS,
136                                               unsigned indent) const {
137   OS.indent(indent) << "CheckFoldableChainNode\n";
138 }
139
140 void EmitIntegerMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
141   OS.indent(indent) << "EmitInteger " << Val << " VT=" << VT << '\n';
142 }
143
144 void EmitStringIntegerMatcher::
145 printImpl(raw_ostream &OS, unsigned indent) const {
146   OS.indent(indent) << "EmitStringInteger " << Val << " VT=" << VT << '\n';
147 }
148
149 void EmitRegisterMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
150   OS.indent(indent) << "EmitRegister ";
151   if (Reg)
152     OS << Reg->getName();
153   else
154     OS << "zero_reg";
155   OS << " VT=" << VT << '\n';
156 }
157
158 void EmitConvertToTargetMatcher::
159 printImpl(raw_ostream &OS, unsigned indent) const {
160   OS.indent(indent) << "EmitConvertToTarget " << Slot << '\n';
161 }
162
163 void EmitMergeInputChainsMatcher::
164 printImpl(raw_ostream &OS, unsigned indent) const {
165   OS.indent(indent) << "EmitMergeInputChains <todo: args>\n";
166 }
167
168 void EmitCopyToRegMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
169   OS.indent(indent) << "EmitCopyToReg <todo: args>\n";
170 }
171
172 void EmitNodeXFormMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
173   OS.indent(indent) << "EmitNodeXForm " << NodeXForm->getName()
174      << " Slot=" << Slot << '\n';
175 }
176
177
178 void EmitNodeMatcherCommon::printImpl(raw_ostream &OS, unsigned indent) const {
179   OS.indent(indent);
180   OS << (isa<MorphNodeToMatcher>(this) ? "MorphNodeTo: " : "EmitNode: ")
181      << OpcodeName << ": <todo flags> ";
182
183   for (unsigned i = 0, e = VTs.size(); i != e; ++i)
184     OS << ' ' << getEnumName(VTs[i]);
185   OS << '(';
186   for (unsigned i = 0, e = Operands.size(); i != e; ++i)
187     OS << Operands[i] << ' ';
188   OS << ")\n";
189 }
190
191 void MarkFlagResultsMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
192   OS.indent(indent) << "MarkFlagResults <todo: args>\n";
193 }
194
195 void CompleteMatchMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
196   OS.indent(indent) << "CompleteMatch <todo args>\n";
197   OS.indent(indent) << "Src = " << *Pattern.getSrcPattern() << "\n";
198   OS.indent(indent) << "Dst = " << *Pattern.getDstPattern() << "\n";
199 }
200
201 // getHashImpl Implementation.
202
203 unsigned CheckPatternPredicateMatcher::getHashImpl() const {
204   return HashString(Predicate);
205 }
206
207 unsigned CheckPredicateMatcher::getHashImpl() const {
208   return HashString(PredName);
209 }
210
211 unsigned CheckOpcodeMatcher::getHashImpl() const {
212   return HashString(Opcode.getEnumName());
213 }
214
215 unsigned CheckCondCodeMatcher::getHashImpl() const {
216   return HashString(CondCodeName);
217 }
218
219 unsigned CheckValueTypeMatcher::getHashImpl() const {
220   return HashString(TypeName);
221 }
222
223 unsigned EmitStringIntegerMatcher::getHashImpl() const {
224   return HashString(Val) ^ VT;
225 }
226
227 template<typename It>
228 static unsigned HashUnsigneds(It I, It E) {
229   unsigned Result = 0;
230   for (; I != E; ++I)
231     Result = (Result<<3) ^ *I;
232   return Result;
233 }
234
235 unsigned EmitMergeInputChainsMatcher::getHashImpl() const {
236   return HashUnsigneds(ChainNodes.begin(), ChainNodes.end());
237 }
238
239 bool CheckOpcodeMatcher::isEqualImpl(const Matcher *M) const {
240   // Note: pointer equality isn't enough here, we have to check the enum names
241   // to ensure that the nodes are for the same opcode. 
242   return cast<CheckOpcodeMatcher>(M)->Opcode.getEnumName() ==
243           Opcode.getEnumName();
244 }
245
246
247 bool EmitNodeMatcherCommon::isEqualImpl(const Matcher *m) const {
248   const EmitNodeMatcherCommon *M = cast<EmitNodeMatcherCommon>(m);
249   return M->OpcodeName == OpcodeName && M->VTs == VTs &&
250          M->Operands == Operands && M->HasChain == HasChain &&
251          M->HasInFlag == HasInFlag && M->HasOutFlag == HasOutFlag &&
252          M->HasMemRefs == HasMemRefs &&
253          M->NumFixedArityOperands == NumFixedArityOperands;
254 }
255
256 unsigned EmitNodeMatcherCommon::getHashImpl() const {
257   return (HashString(OpcodeName) << 4) | Operands.size();
258 }
259
260
261 unsigned MarkFlagResultsMatcher::getHashImpl() const {
262   return HashUnsigneds(FlagResultNodes.begin(), FlagResultNodes.end());
263 }
264
265 unsigned CompleteMatchMatcher::getHashImpl() const {
266   return HashUnsigneds(Results.begin(), Results.end()) ^ 
267           ((unsigned)(intptr_t)&Pattern << 8);
268 }
269
270 // isContradictoryImpl Implementations.
271
272 static bool TypesAreContradictory(MVT::SimpleValueType T1,
273                                   MVT::SimpleValueType T2) {
274   // If the two types are the same, then they are the same, so they don't
275   // contradict.
276   if (T1 == T2) return false;
277   
278   // If either type is about iPtr, then they don't conflict unless the other
279   // one is not a scalar integer type.
280   if (T1 == MVT::iPTR)
281     return !MVT(T2).isInteger() || MVT(T2).isVector();
282   
283   if (T2 == MVT::iPTR)
284     return !MVT(T1).isInteger() || MVT(T1).isVector();
285   
286   // Otherwise, they are two different non-iPTR types, they conflict.
287   return true;
288 }
289
290 bool CheckOpcodeMatcher::isContradictoryImpl(const Matcher *M) const {
291   if (const CheckOpcodeMatcher *COM = dyn_cast<CheckOpcodeMatcher>(M)) {
292     // One node can't have two different opcodes!
293     // Note: pointer equality isn't enough here, we have to check the enum names
294     // to ensure that the nodes are for the same opcode. 
295     return COM->getOpcode().getEnumName() != getOpcode().getEnumName();
296   }
297   
298   // If the node has a known type, and if the type we're checking for is
299   // different, then we know they contradict.  For example, a check for
300   // ISD::STORE will never be true at the same time a check for Type i32 is.
301   if (const CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(M)) {
302     // FIXME: What result is this referring to?
303     unsigned NodeType;
304     if (getOpcode().getNumResults() == 0)
305       NodeType = MVT::isVoid;
306     else
307       NodeType = getOpcode().getKnownType();
308     if (NodeType != EEVT::isUnknown)
309       return TypesAreContradictory((MVT::SimpleValueType)NodeType,
310                                    CT->getType());
311   }
312   
313   return false;
314 }
315
316 bool CheckTypeMatcher::isContradictoryImpl(const Matcher *M) const {
317   if (const CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(M))
318     return TypesAreContradictory(getType(), CT->getType());
319   return false;
320 }
321
322 bool CheckChildTypeMatcher::isContradictoryImpl(const Matcher *M) const {
323   if (const CheckChildTypeMatcher *CC = dyn_cast<CheckChildTypeMatcher>(M)) {
324     // If the two checks are about different nodes, we don't know if they
325     // conflict!
326     if (CC->getChildNo() != getChildNo())
327       return false;
328     
329     return TypesAreContradictory(getType(), CC->getType());
330   }
331   return false;
332 }
333   
334 bool CheckIntegerMatcher::isContradictoryImpl(const Matcher *M) const {
335   if (const CheckIntegerMatcher *CIM = dyn_cast<CheckIntegerMatcher>(M))
336     return CIM->getValue() != getValue();
337   return false;
338 }