add a new OPC_SwitchOpcode which is semantically equivalent
[oota-llvm.git] / utils / TableGen / DAGISelMatcherOpt.cpp
1 //===- DAGISelMatcherOpt.cpp - Optimize a DAG 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 // This file implements the DAG Matcher optimizer.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #define DEBUG_TYPE "isel-opt"
15 #include "DAGISelMatcher.h"
16 #include "CodeGenDAGPatterns.h"
17 #include "llvm/ADT/DenseMap.h"
18 #include "llvm/ADT/StringSet.h"
19 #include "llvm/Support/Debug.h"
20 #include "llvm/Support/raw_ostream.h"
21 #include <vector>
22 using namespace llvm;
23
24 /// ContractNodes - Turn multiple matcher node patterns like 'MoveChild+Record'
25 /// into single compound nodes like RecordChild.
26 static void ContractNodes(OwningPtr<Matcher> &MatcherPtr,
27                           const CodeGenDAGPatterns &CGP) {
28   // If we reached the end of the chain, we're done.
29   Matcher *N = MatcherPtr.get();
30   if (N == 0) return;
31   
32   // If we have a scope node, walk down all of the children.
33   if (ScopeMatcher *Scope = dyn_cast<ScopeMatcher>(N)) {
34     for (unsigned i = 0, e = Scope->getNumChildren(); i != e; ++i) {
35       OwningPtr<Matcher> Child(Scope->takeChild(i));
36       ContractNodes(Child, CGP);
37       Scope->resetChild(i, Child.take());
38     }
39     return;
40   }
41   
42   // If we found a movechild node with a node that comes in a 'foochild' form,
43   // transform it.
44   if (MoveChildMatcher *MC = dyn_cast<MoveChildMatcher>(N)) {
45     Matcher *New = 0;
46     if (RecordMatcher *RM = dyn_cast<RecordMatcher>(MC->getNext()))
47       New = new RecordChildMatcher(MC->getChildNo(), RM->getWhatFor(),
48                                    RM->getResultNo());
49     
50     if (CheckTypeMatcher *CT= dyn_cast<CheckTypeMatcher>(MC->getNext()))
51       New = new CheckChildTypeMatcher(MC->getChildNo(), CT->getType());
52     
53     if (New) {
54       // Insert the new node.
55       New->setNext(MatcherPtr.take());
56       MatcherPtr.reset(New);
57       // Remove the old one.
58       MC->setNext(MC->getNext()->takeNext());
59       return ContractNodes(MatcherPtr, CGP);
60     }
61   }
62   
63   // Zap movechild -> moveparent.
64   if (MoveChildMatcher *MC = dyn_cast<MoveChildMatcher>(N))
65     if (MoveParentMatcher *MP = 
66           dyn_cast<MoveParentMatcher>(MC->getNext())) {
67       MatcherPtr.reset(MP->takeNext());
68       return ContractNodes(MatcherPtr, CGP);
69     }
70
71   // Turn EmitNode->MarkFlagResults->CompleteMatch into
72   // MarkFlagResults->EmitNode->CompleteMatch when we can to encourage
73   // MorphNodeTo formation.  This is safe because MarkFlagResults never refers
74   // to the root of the pattern.
75   if (isa<EmitNodeMatcher>(N) && isa<MarkFlagResultsMatcher>(N->getNext()) &&
76       isa<CompleteMatchMatcher>(N->getNext()->getNext())) {
77     // Unlink the two nodes from the list.
78     Matcher *EmitNode = MatcherPtr.take();
79     Matcher *MFR = EmitNode->takeNext();
80     Matcher *Tail = MFR->takeNext();
81         
82     // Relink them.
83     MatcherPtr.reset(MFR);
84     MFR->setNext(EmitNode);
85     EmitNode->setNext(Tail);
86     return ContractNodes(MatcherPtr, CGP);
87   }
88
89   // Turn EmitNode->CompleteMatch into MorphNodeTo if we can.
90   if (EmitNodeMatcher *EN = dyn_cast<EmitNodeMatcher>(N))
91     if (CompleteMatchMatcher *CM =
92           dyn_cast<CompleteMatchMatcher>(EN->getNext())) {
93       // We can only use MorphNodeTo if the result values match up.
94       unsigned RootResultFirst = EN->getFirstResultSlot();
95       bool ResultsMatch = true;
96       for (unsigned i = 0, e = CM->getNumResults(); i != e; ++i)
97         if (CM->getResult(i) != RootResultFirst+i)
98           ResultsMatch = false;
99       
100       // If the selected node defines a subset of the flag/chain results, we
101       // can't use MorphNodeTo.  For example, we can't use MorphNodeTo if the
102       // matched pattern has a chain but the root node doesn't.
103       const PatternToMatch &Pattern = CM->getPattern();
104       
105       if (!EN->hasChain() &&
106           Pattern.getSrcPattern()->NodeHasProperty(SDNPHasChain, CGP))
107         ResultsMatch = false;
108
109       // If the matched node has a flag and the output root doesn't, we can't
110       // use MorphNodeTo.
111       //
112       // NOTE: Strictly speaking, we don't have to check for the flag here
113       // because the code in the pattern generator doesn't handle it right.  We
114       // do it anyway for thoroughness.
115       if (!EN->hasOutFlag() &&
116           Pattern.getSrcPattern()->NodeHasProperty(SDNPOutFlag, CGP))
117         ResultsMatch = false;
118       
119       
120       // If the root result node defines more results than the source root node
121       // *and* has a chain or flag input, then we can't match it because it
122       // would end up replacing the extra result with the chain/flag.
123 #if 0
124       if ((EN->hasFlag() || EN->hasChain()) &&
125           EN->getNumNonChainFlagVTs() > ... need to get no results reliably ...)
126         ResultMatch = false;
127 #endif
128           
129       if (ResultsMatch) {
130         const SmallVectorImpl<MVT::SimpleValueType> &VTs = EN->getVTList();
131         const SmallVectorImpl<unsigned> &Operands = EN->getOperandList();
132         MatcherPtr.reset(new MorphNodeToMatcher(EN->getOpcodeName(),
133                                                 VTs.data(), VTs.size(),
134                                                 Operands.data(),Operands.size(),
135                                                 EN->hasChain(), EN->hasInFlag(),
136                                                 EN->hasOutFlag(),
137                                                 EN->hasMemRefs(),
138                                                 EN->getNumFixedArityOperands(),
139                                                 Pattern));
140         return;
141       }
142
143       // FIXME2: Kill off all the SelectionDAG::MorphNodeTo and getMachineNode
144       // variants.
145     }
146   
147   ContractNodes(N->getNextPtr(), CGP);
148   
149   
150   // If we have a CheckType/CheckChildType/Record node followed by a
151   // CheckOpcode, invert the two nodes.  We prefer to do structural checks
152   // before type checks, as this opens opportunities for factoring on targets
153   // like X86 where many operations are valid on multiple types.
154   if ((isa<CheckTypeMatcher>(N) || isa<CheckChildTypeMatcher>(N) ||
155        isa<RecordMatcher>(N)) &&
156       (isa<CheckOpcodeMatcher>(N->getNext()) ||
157        isa<CheckMultiOpcodeMatcher>(N->getNext()))) {
158     // Unlink the two nodes from the list.
159     Matcher *CheckType = MatcherPtr.take();
160     Matcher *CheckOpcode = CheckType->takeNext();
161     Matcher *Tail = CheckOpcode->takeNext();
162     
163     // Relink them.
164     MatcherPtr.reset(CheckOpcode);
165     CheckOpcode->setNext(CheckType);
166     CheckType->setNext(Tail);
167     return ContractNodes(MatcherPtr, CGP);
168   }
169 }
170
171 /// SinkPatternPredicates - Pattern predicates can be checked at any level of
172 /// the matching tree.  The generator dumps them at the top level of the pattern
173 /// though, which prevents factoring from being able to see past them.  This
174 /// optimization sinks them as far down into the pattern as possible.
175 ///
176 /// Conceptually, we'd like to sink these predicates all the way to the last
177 /// matcher predicate in the series.  However, it turns out that some
178 /// ComplexPatterns have side effects on the graph, so we really don't want to
179 /// run a the complex pattern if the pattern predicate will fail.  For this
180 /// reason, we refuse to sink the pattern predicate past a ComplexPattern.
181 ///
182 static void SinkPatternPredicates(OwningPtr<Matcher> &MatcherPtr) {
183   // Recursively scan for a PatternPredicate.
184   // If we reached the end of the chain, we're done.
185   Matcher *N = MatcherPtr.get();
186   if (N == 0) return;
187   
188   // Walk down all members of a scope node.
189   if (ScopeMatcher *Scope = dyn_cast<ScopeMatcher>(N)) {
190     for (unsigned i = 0, e = Scope->getNumChildren(); i != e; ++i) {
191       OwningPtr<Matcher> Child(Scope->takeChild(i));
192       SinkPatternPredicates(Child);
193       Scope->resetChild(i, Child.take());
194     }
195     return;
196   }
197   
198   // If this node isn't a CheckPatternPredicateMatcher we keep scanning until
199   // we find one.
200   CheckPatternPredicateMatcher *CPPM =dyn_cast<CheckPatternPredicateMatcher>(N);
201   if (CPPM == 0)
202     return SinkPatternPredicates(N->getNextPtr());
203   
204   // Ok, we found one, lets try to sink it. Check if we can sink it past the
205   // next node in the chain.  If not, we won't be able to change anything and
206   // might as well bail.
207   if (!CPPM->getNext()->isSafeToReorderWithPatternPredicate())
208     return;
209   
210   // Okay, we know we can sink it past at least one node.  Unlink it from the
211   // chain and scan for the new insertion point.
212   MatcherPtr.take();  // Don't delete CPPM.
213   MatcherPtr.reset(CPPM->takeNext());
214   
215   N = MatcherPtr.get();
216   while (N->getNext()->isSafeToReorderWithPatternPredicate())
217     N = N->getNext();
218   
219   // At this point, we want to insert CPPM after N.
220   CPPM->setNext(N->takeNext());
221   N->setNext(CPPM);
222 }
223
224 /// FactorNodes - Turn matches like this:
225 ///   Scope
226 ///     OPC_CheckType i32
227 ///       ABC
228 ///     OPC_CheckType i32
229 ///       XYZ
230 /// into:
231 ///   OPC_CheckType i32
232 ///     Scope
233 ///       ABC
234 ///       XYZ
235 ///
236 static void FactorNodes(OwningPtr<Matcher> &MatcherPtr) {
237   // If we reached the end of the chain, we're done.
238   Matcher *N = MatcherPtr.get();
239   if (N == 0) return;
240   
241   // If this is not a push node, just scan for one.
242   ScopeMatcher *Scope = dyn_cast<ScopeMatcher>(N);
243   if (Scope == 0)
244     return FactorNodes(N->getNextPtr());
245   
246   // Okay, pull together the children of the scope node into a vector so we can
247   // inspect it more easily.  While we're at it, bucket them up by the hash
248   // code of their first predicate.
249   SmallVector<Matcher*, 32> OptionsToMatch;
250   
251   for (unsigned i = 0, e = Scope->getNumChildren(); i != e; ++i) {
252     // Factor the subexpression.
253     OwningPtr<Matcher> Child(Scope->takeChild(i));
254     FactorNodes(Child);
255     
256     if (Matcher *N = Child.take())
257       OptionsToMatch.push_back(N);
258   }
259   
260   SmallVector<Matcher*, 32> NewOptionsToMatch;
261   
262   // Loop over options to match, merging neighboring patterns with identical
263   // starting nodes into a shared matcher.
264   for (unsigned OptionIdx = 0, e = OptionsToMatch.size(); OptionIdx != e;) {
265     // Find the set of matchers that start with this node.
266     Matcher *Optn = OptionsToMatch[OptionIdx++];
267
268     if (OptionIdx == e) {
269       NewOptionsToMatch.push_back(Optn);
270       continue;
271     }
272     
273     // See if the next option starts with the same matcher.  If the two
274     // neighbors *do* start with the same matcher, we can factor the matcher out
275     // of at least these two patterns.  See what the maximal set we can merge
276     // together is.
277     SmallVector<Matcher*, 8> EqualMatchers;
278     EqualMatchers.push_back(Optn);
279     
280     // Factor all of the known-equal matchers after this one into the same
281     // group.
282     while (OptionIdx != e && OptionsToMatch[OptionIdx]->isEqual(Optn))
283       EqualMatchers.push_back(OptionsToMatch[OptionIdx++]);
284
285     // If we found a non-equal matcher, see if it is contradictory with the
286     // current node.  If so, we know that the ordering relation between the
287     // current sets of nodes and this node don't matter.  Look past it to see if
288     // we can merge anything else into this matching group.
289     unsigned Scan = OptionIdx;
290     while (1) {
291       while (Scan != e && Optn->isContradictory(OptionsToMatch[Scan]))
292         ++Scan;
293       
294       // Ok, we found something that isn't known to be contradictory.  If it is
295       // equal, we can merge it into the set of nodes to factor, if not, we have
296       // to cease factoring.
297       if (Scan == e || !Optn->isEqual(OptionsToMatch[Scan])) break;
298
299       // If is equal after all, add the option to EqualMatchers and remove it
300       // from OptionsToMatch.
301       EqualMatchers.push_back(OptionsToMatch[Scan]);
302       OptionsToMatch.erase(OptionsToMatch.begin()+Scan);
303       --e;
304     }
305       
306     if (Scan != e &&
307         // Don't print it's obvious nothing extra could be merged anyway.
308         Scan+1 != e) {
309       DEBUG(errs() << "Couldn't merge this:\n";
310             Optn->print(errs(), 4);
311             errs() << "into this:\n";
312             OptionsToMatch[Scan]->print(errs(), 4);
313             if (Scan+1 != e)
314               OptionsToMatch[Scan+1]->printOne(errs());
315             if (Scan+2 < e)
316               OptionsToMatch[Scan+2]->printOne(errs());
317             errs() << "\n");
318     }
319     
320     // If we only found one option starting with this matcher, no factoring is
321     // possible.
322     if (EqualMatchers.size() == 1) {
323       NewOptionsToMatch.push_back(EqualMatchers[0]);
324       continue;
325     }
326     
327     // Factor these checks by pulling the first node off each entry and
328     // discarding it.  Take the first one off the first entry to reuse.
329     Matcher *Shared = Optn;
330     Optn = Optn->takeNext();
331     EqualMatchers[0] = Optn;
332
333     // Remove and delete the first node from the other matchers we're factoring.
334     for (unsigned i = 1, e = EqualMatchers.size(); i != e; ++i) {
335       Matcher *Tmp = EqualMatchers[i]->takeNext();
336       delete EqualMatchers[i];
337       EqualMatchers[i] = Tmp;
338     }
339     
340     Shared->setNext(new ScopeMatcher(&EqualMatchers[0], EqualMatchers.size()));
341
342     // Recursively factor the newly created node.
343     FactorNodes(Shared->getNextPtr());
344     
345     NewOptionsToMatch.push_back(Shared);
346   }
347   
348   // If we're down to a single pattern to match, then we don't need this scope
349   // anymore.
350   if (NewOptionsToMatch.size() == 1) {
351     MatcherPtr.reset(NewOptionsToMatch[0]);
352     return;
353   }
354   
355   // If our factoring failed (didn't achieve anything) see if we can simplify in
356   // other ways.
357   
358   // Check to see if all of the leading entries are now opcode checks.  If so,
359   // we can convert this Scope to be a OpcodeSwitch instead.
360   bool AllOpcodeChecks = true;
361   for (unsigned i = 0, e = NewOptionsToMatch.size(); i != e; ++i) {
362     if (isa<CheckOpcodeMatcher>(NewOptionsToMatch[i])) continue;
363    
364 #if 0
365     if (i > 3) {
366       errs() << "FAILING OPC #" << i << "\n";
367       NewOptionsToMatch[i]->dump();
368     }
369 #endif
370     
371     AllOpcodeChecks = false;
372     break;
373   }
374   
375   // If all the options are CheckOpcode's, we can form the SwitchOpcode, woot.
376   if (AllOpcodeChecks) {
377     StringSet<> Opcodes;
378     SmallVector<std::pair<const SDNodeInfo*, Matcher*>, 8> Cases;
379     for (unsigned i = 0, e = NewOptionsToMatch.size(); i != e; ++i) {
380       CheckOpcodeMatcher *COM =cast<CheckOpcodeMatcher>(NewOptionsToMatch[i]);
381       assert(Opcodes.insert(COM->getOpcode().getEnumName()) &&
382              "Duplicate opcodes not factored?");
383       Cases.push_back(std::make_pair(&COM->getOpcode(), COM->getNext()));
384     }
385     
386     MatcherPtr.reset(new SwitchOpcodeMatcher(&Cases[0], Cases.size()));
387     return;
388   }
389   
390
391   // Reassemble a new Scope node.
392   assert(!NewOptionsToMatch.empty() &&
393          "Where'd all our children go?  Did we really factor everything??");
394   if (NewOptionsToMatch.empty())
395     MatcherPtr.reset(0);
396   else {
397     Scope->setNumChildren(NewOptionsToMatch.size());
398     for (unsigned i = 0, e = NewOptionsToMatch.size(); i != e; ++i)
399       Scope->resetChild(i, NewOptionsToMatch[i]);
400   }
401 }
402
403 Matcher *llvm::OptimizeMatcher(Matcher *TheMatcher,
404                                const CodeGenDAGPatterns &CGP) {
405   OwningPtr<Matcher> MatcherPtr(TheMatcher);
406   ContractNodes(MatcherPtr, CGP);
407   SinkPatternPredicates(MatcherPtr);
408   FactorNodes(MatcherPtr);
409   return MatcherPtr.take();
410 }