blob: da6a9577a7707110700eca20af25706ec261f76e [file] [log] [blame]
Chris Lattnere7327432010-02-24 07:06:50 +00001//===- 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#include "DAGISelMatcher.h"
Chris Lattner102a8a02010-02-28 20:49:53 +000015#include "CodeGenDAGPatterns.h"
Chris Lattner3e1ffd02010-03-03 06:28:15 +000016#include "llvm/ADT/DenseSet.h"
Chris Lattnerf4d17752010-03-01 06:59:22 +000017#include "llvm/ADT/StringSet.h"
Chris Lattnerc577b812010-02-27 07:49:13 +000018#include "llvm/Support/Debug.h"
19#include "llvm/Support/raw_ostream.h"
Chris Lattnere7327432010-02-24 07:06:50 +000020using namespace llvm;
21
Chandler Carruth97acce22014-04-22 03:06:00 +000022#define DEBUG_TYPE "isel-opt"
23
Chris Lattnerd9e1e832010-02-27 06:22:57 +000024/// ContractNodes - Turn multiple matcher node patterns like 'MoveChild+Record'
25/// into single compound nodes like RecordChild.
Ahmed Charles56440fd2014-03-06 05:51:42 +000026static void ContractNodes(std::unique_ptr<Matcher> &MatcherPtr,
Chris Lattner102a8a02010-02-28 20:49:53 +000027 const CodeGenDAGPatterns &CGP) {
Chris Lattnerab417562010-02-24 07:31:45 +000028 // If we reached the end of the chain, we're done.
Chris Lattner2c3f6492010-02-25 02:04:40 +000029 Matcher *N = MatcherPtr.get();
Craig Topper24064772014-04-15 07:20:03 +000030 if (!N) return;
Chris Lattnerab417562010-02-24 07:31:45 +000031
Chris Lattnerf7fc2d82010-02-25 19:00:39 +000032 // 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) {
Ahmed Charles56440fd2014-03-06 05:51:42 +000035 std::unique_ptr<Matcher> Child(Scope->takeChild(i));
Chris Lattner102a8a02010-02-28 20:49:53 +000036 ContractNodes(Child, CGP);
Ahmed Charles96c9d952014-03-05 10:19:29 +000037 Scope->resetChild(i, Child.release());
Chris Lattnerf7fc2d82010-02-25 19:00:39 +000038 }
39 return;
40 }
Chris Lattnerab417562010-02-24 07:31:45 +000041
Chris Lattner6b792322010-02-24 19:52:48 +000042 // If we found a movechild node with a node that comes in a 'foochild' form,
43 // transform it.
Chris Lattner2c3f6492010-02-25 02:04:40 +000044 if (MoveChildMatcher *MC = dyn_cast<MoveChildMatcher>(N)) {
Craig Topper24064772014-04-15 07:20:03 +000045 Matcher *New = nullptr;
Chris Lattner2c3f6492010-02-25 02:04:40 +000046 if (RecordMatcher *RM = dyn_cast<RecordMatcher>(MC->getNext()))
Chris Lattnerf57437a2010-03-16 00:35:11 +000047 if (MC->getChildNo() < 8) // Only have RecordChild0...7
48 New = new RecordChildMatcher(MC->getChildNo(), RM->getWhatFor(),
49 RM->getResultNo());
Craig Topper7ca1d182014-02-05 05:44:28 +000050
Chris Lattner6c2d1782010-03-24 00:41:19 +000051 if (CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(MC->getNext()))
52 if (MC->getChildNo() < 8 && // Only have CheckChildType0...7
53 CT->getResNo() == 0) // CheckChildType checks res #0
Chris Lattnerf57437a2010-03-16 00:35:11 +000054 New = new CheckChildTypeMatcher(MC->getChildNo(), CT->getType());
Craig Toppera1bbc322013-10-05 05:38:16 +000055
56 if (CheckSameMatcher *CS = dyn_cast<CheckSameMatcher>(MC->getNext()))
57 if (MC->getChildNo() < 4) // Only have CheckChildSame0...3
58 New = new CheckChildSameMatcher(MC->getChildNo(), CS->getMatchNumber());
59
Craig Topper7ca1d182014-02-05 05:44:28 +000060 if (CheckIntegerMatcher *CS = dyn_cast<CheckIntegerMatcher>(MC->getNext()))
61 if (MC->getChildNo() < 5) // Only have CheckChildInteger0...4
62 New = new CheckChildIntegerMatcher(MC->getChildNo(), CS->getValue());
63
Chris Lattner0c95baa2010-02-24 20:15:25 +000064 if (New) {
65 // Insert the new node.
Ahmed Charles96c9d952014-03-05 10:19:29 +000066 New->setNext(MatcherPtr.release());
Chris Lattnerac55f9d2010-02-25 01:56:48 +000067 MatcherPtr.reset(New);
Chris Lattner0c95baa2010-02-24 20:15:25 +000068 // Remove the old one.
69 MC->setNext(MC->getNext()->takeNext());
Chris Lattner102a8a02010-02-28 20:49:53 +000070 return ContractNodes(MatcherPtr, CGP);
Chris Lattner6b792322010-02-24 19:52:48 +000071 }
Chris Lattnerab417562010-02-24 07:31:45 +000072 }
Chris Lattner6b792322010-02-24 19:52:48 +000073
Chris Lattnerc3f80e02010-02-28 02:31:26 +000074 // Zap movechild -> moveparent.
Chris Lattner2c3f6492010-02-25 02:04:40 +000075 if (MoveChildMatcher *MC = dyn_cast<MoveChildMatcher>(N))
76 if (MoveParentMatcher *MP =
77 dyn_cast<MoveParentMatcher>(MC->getNext())) {
Chris Lattnerac55f9d2010-02-25 01:56:48 +000078 MatcherPtr.reset(MP->takeNext());
Chris Lattner102a8a02010-02-28 20:49:53 +000079 return ContractNodes(MatcherPtr, CGP);
Chris Lattner6b792322010-02-24 19:52:48 +000080 }
Chris Lattner560169d2010-02-28 23:00:47 +000081
Chris Lattnerdb5b73a2010-03-01 02:33:14 +000082 // Turn EmitNode->MarkFlagResults->CompleteMatch into
83 // MarkFlagResults->EmitNode->CompleteMatch when we can to encourage
84 // MorphNodeTo formation. This is safe because MarkFlagResults never refers
85 // to the root of the pattern.
Chris Lattnerf7f9e8c2010-12-23 17:03:20 +000086 if (isa<EmitNodeMatcher>(N) && isa<MarkGlueResultsMatcher>(N->getNext()) &&
Chris Lattnerdb5b73a2010-03-01 02:33:14 +000087 isa<CompleteMatchMatcher>(N->getNext()->getNext())) {
88 // Unlink the two nodes from the list.
Ahmed Charles96c9d952014-03-05 10:19:29 +000089 Matcher *EmitNode = MatcherPtr.release();
Chris Lattnerdb5b73a2010-03-01 02:33:14 +000090 Matcher *MFR = EmitNode->takeNext();
91 Matcher *Tail = MFR->takeNext();
92
93 // Relink them.
94 MatcherPtr.reset(MFR);
95 MFR->setNext(EmitNode);
96 EmitNode->setNext(Tail);
97 return ContractNodes(MatcherPtr, CGP);
98 }
Chris Lattner560169d2010-02-28 23:00:47 +000099
Chris Lattner9d67dca2010-02-28 20:55:18 +0000100 // Turn EmitNode->CompleteMatch into MorphNodeTo if we can.
Chris Lattnerc3f80e02010-02-28 02:31:26 +0000101 if (EmitNodeMatcher *EN = dyn_cast<EmitNodeMatcher>(N))
Chris Lattnerabb1c792010-02-28 02:41:25 +0000102 if (CompleteMatchMatcher *CM =
103 dyn_cast<CompleteMatchMatcher>(EN->getNext())) {
Chris Lattner9d67dca2010-02-28 20:55:18 +0000104 // We can only use MorphNodeTo if the result values match up.
Chris Lattner102a8a02010-02-28 20:49:53 +0000105 unsigned RootResultFirst = EN->getFirstResultSlot();
106 bool ResultsMatch = true;
107 for (unsigned i = 0, e = CM->getNumResults(); i != e; ++i)
108 if (CM->getResult(i) != RootResultFirst+i)
109 ResultsMatch = false;
110
Chris Lattnerf7f9e8c2010-12-23 17:03:20 +0000111 // If the selected node defines a subset of the glue/chain results, we
Chris Lattner9d67dca2010-02-28 20:55:18 +0000112 // can't use MorphNodeTo. For example, we can't use MorphNodeTo if the
Chris Lattner102a8a02010-02-28 20:49:53 +0000113 // matched pattern has a chain but the root node doesn't.
114 const PatternToMatch &Pattern = CM->getPattern();
115
116 if (!EN->hasChain() &&
117 Pattern.getSrcPattern()->NodeHasProperty(SDNPHasChain, CGP))
118 ResultsMatch = false;
119
Chris Lattnerf7f9e8c2010-12-23 17:03:20 +0000120 // If the matched node has glue and the output root doesn't, we can't
Chris Lattner9d67dca2010-02-28 20:55:18 +0000121 // use MorphNodeTo.
Chris Lattner102a8a02010-02-28 20:49:53 +0000122 //
Chris Lattnerf7f9e8c2010-12-23 17:03:20 +0000123 // NOTE: Strictly speaking, we don't have to check for glue here
Chris Lattner102a8a02010-02-28 20:49:53 +0000124 // because the code in the pattern generator doesn't handle it right. We
125 // do it anyway for thoroughness.
Chris Lattnera8382642010-02-28 21:53:42 +0000126 if (!EN->hasOutFlag() &&
Chris Lattner2a0a3b42010-12-23 18:28:41 +0000127 Pattern.getSrcPattern()->NodeHasProperty(SDNPOutGlue, CGP))
Chris Lattner102a8a02010-02-28 20:49:53 +0000128 ResultsMatch = false;
129
130
131 // If the root result node defines more results than the source root node
Chris Lattnerf7f9e8c2010-12-23 17:03:20 +0000132 // *and* has a chain or glue input, then we can't match it because it
133 // would end up replacing the extra result with the chain/glue.
Chris Lattner102a8a02010-02-28 20:49:53 +0000134#if 0
Chris Lattnerf7f9e8c2010-12-23 17:03:20 +0000135 if ((EN->hasGlue() || EN->hasChain()) &&
136 EN->getNumNonChainGlueVTs() > ... need to get no results reliably ...)
Chris Lattner102a8a02010-02-28 20:49:53 +0000137 ResultMatch = false;
138#endif
139
140 if (ResultsMatch) {
141 const SmallVectorImpl<MVT::SimpleValueType> &VTs = EN->getVTList();
142 const SmallVectorImpl<unsigned> &Operands = EN->getOperandList();
Chris Lattner9d67dca2010-02-28 20:55:18 +0000143 MatcherPtr.reset(new MorphNodeToMatcher(EN->getOpcodeName(),
Craig Toppera2c60192014-01-21 07:20:05 +0000144 VTs, Operands,
Chris Lattnera8382642010-02-28 21:53:42 +0000145 EN->hasChain(), EN->hasInFlag(),
146 EN->hasOutFlag(),
Chris Lattner9d67dca2010-02-28 20:55:18 +0000147 EN->hasMemRefs(),
148 EN->getNumFixedArityOperands(),
149 Pattern));
Chris Lattner102a8a02010-02-28 20:49:53 +0000150 return;
151 }
152
Chris Lattner1e634e32010-03-01 22:29:19 +0000153 // FIXME2: Kill off all the SelectionDAG::SelectNodeTo and getMachineNode
Chris Lattner9d67dca2010-02-28 20:55:18 +0000154 // variants.
Chris Lattnerc3f80e02010-02-28 02:31:26 +0000155 }
156
Chris Lattner102a8a02010-02-28 20:49:53 +0000157 ContractNodes(N->getNextPtr(), CGP);
Chris Lattner90b1b9d2010-03-01 02:15:34 +0000158
159
160 // If we have a CheckType/CheckChildType/Record node followed by a
161 // CheckOpcode, invert the two nodes. We prefer to do structural checks
162 // before type checks, as this opens opportunities for factoring on targets
163 // like X86 where many operations are valid on multiple types.
164 if ((isa<CheckTypeMatcher>(N) || isa<CheckChildTypeMatcher>(N) ||
165 isa<RecordMatcher>(N)) &&
Chris Lattner053a28a2010-03-01 07:17:40 +0000166 isa<CheckOpcodeMatcher>(N->getNext())) {
Chris Lattner90b1b9d2010-03-01 02:15:34 +0000167 // Unlink the two nodes from the list.
Ahmed Charles96c9d952014-03-05 10:19:29 +0000168 Matcher *CheckType = MatcherPtr.release();
Chris Lattner90b1b9d2010-03-01 02:15:34 +0000169 Matcher *CheckOpcode = CheckType->takeNext();
170 Matcher *Tail = CheckOpcode->takeNext();
171
172 // Relink them.
173 MatcherPtr.reset(CheckOpcode);
174 CheckOpcode->setNext(CheckType);
175 CheckType->setNext(Tail);
176 return ContractNodes(MatcherPtr, CGP);
177 }
Chris Lattnerab417562010-02-24 07:31:45 +0000178}
179
Chris Lattnerd9e1e832010-02-27 06:22:57 +0000180/// SinkPatternPredicates - Pattern predicates can be checked at any level of
181/// the matching tree. The generator dumps them at the top level of the pattern
182/// though, which prevents factoring from being able to see past them. This
183/// optimization sinks them as far down into the pattern as possible.
184///
185/// Conceptually, we'd like to sink these predicates all the way to the last
186/// matcher predicate in the series. However, it turns out that some
187/// ComplexPatterns have side effects on the graph, so we really don't want to
188/// run a the complex pattern if the pattern predicate will fail. For this
189/// reason, we refuse to sink the pattern predicate past a ComplexPattern.
190///
Ahmed Charles56440fd2014-03-06 05:51:42 +0000191static void SinkPatternPredicates(std::unique_ptr<Matcher> &MatcherPtr) {
Chris Lattnerd9e1e832010-02-27 06:22:57 +0000192 // Recursively scan for a PatternPredicate.
193 // If we reached the end of the chain, we're done.
194 Matcher *N = MatcherPtr.get();
Craig Topper24064772014-04-15 07:20:03 +0000195 if (!N) return;
Chris Lattnerd9e1e832010-02-27 06:22:57 +0000196
197 // Walk down all members of a scope node.
198 if (ScopeMatcher *Scope = dyn_cast<ScopeMatcher>(N)) {
199 for (unsigned i = 0, e = Scope->getNumChildren(); i != e; ++i) {
Ahmed Charles56440fd2014-03-06 05:51:42 +0000200 std::unique_ptr<Matcher> Child(Scope->takeChild(i));
Chris Lattnerd9e1e832010-02-27 06:22:57 +0000201 SinkPatternPredicates(Child);
Ahmed Charles96c9d952014-03-05 10:19:29 +0000202 Scope->resetChild(i, Child.release());
Chris Lattnerd9e1e832010-02-27 06:22:57 +0000203 }
204 return;
205 }
206
207 // If this node isn't a CheckPatternPredicateMatcher we keep scanning until
208 // we find one.
209 CheckPatternPredicateMatcher *CPPM =dyn_cast<CheckPatternPredicateMatcher>(N);
Craig Topper24064772014-04-15 07:20:03 +0000210 if (!CPPM)
Chris Lattnerd9e1e832010-02-27 06:22:57 +0000211 return SinkPatternPredicates(N->getNextPtr());
212
213 // Ok, we found one, lets try to sink it. Check if we can sink it past the
214 // next node in the chain. If not, we won't be able to change anything and
215 // might as well bail.
216 if (!CPPM->getNext()->isSafeToReorderWithPatternPredicate())
217 return;
218
219 // Okay, we know we can sink it past at least one node. Unlink it from the
220 // chain and scan for the new insertion point.
Ahmed Charles96c9d952014-03-05 10:19:29 +0000221 MatcherPtr.release(); // Don't delete CPPM.
Chris Lattnerd9e1e832010-02-27 06:22:57 +0000222 MatcherPtr.reset(CPPM->takeNext());
223
224 N = MatcherPtr.get();
225 while (N->getNext()->isSafeToReorderWithPatternPredicate())
226 N = N->getNext();
227
228 // At this point, we want to insert CPPM after N.
229 CPPM->setNext(N->takeNext());
230 N->setNext(CPPM);
231}
232
Chris Lattnera1603892010-03-07 07:20:49 +0000233/// FindNodeWithKind - Scan a series of matchers looking for a matcher with a
234/// specified kind. Return null if we didn't find one otherwise return the
235/// matcher.
236static Matcher *FindNodeWithKind(Matcher *M, Matcher::KindTy Kind) {
Chris Lattnerb9071a22010-03-07 07:01:28 +0000237 for (; M; M = M->getNext())
Chris Lattnera1603892010-03-07 07:20:49 +0000238 if (M->getKind() == Kind)
239 return M;
Craig Topper24064772014-04-15 07:20:03 +0000240 return nullptr;
Chris Lattnerb9071a22010-03-07 07:01:28 +0000241}
242
243
Chris Lattnerd9e1e832010-02-27 06:22:57 +0000244/// FactorNodes - Turn matches like this:
245/// Scope
246/// OPC_CheckType i32
247/// ABC
248/// OPC_CheckType i32
249/// XYZ
250/// into:
251/// OPC_CheckType i32
252/// Scope
253/// ABC
254/// XYZ
255///
Ahmed Charles56440fd2014-03-06 05:51:42 +0000256static void FactorNodes(std::unique_ptr<Matcher> &MatcherPtr) {
Chris Lattnerc36ab922010-02-25 01:57:41 +0000257 // If we reached the end of the chain, we're done.
Chris Lattner2c3f6492010-02-25 02:04:40 +0000258 Matcher *N = MatcherPtr.get();
Craig Topper24064772014-04-15 07:20:03 +0000259 if (!N) return;
Chris Lattnerc36ab922010-02-25 01:57:41 +0000260
261 // If this is not a push node, just scan for one.
Chris Lattnerf7fc2d82010-02-25 19:00:39 +0000262 ScopeMatcher *Scope = dyn_cast<ScopeMatcher>(N);
Craig Topper24064772014-04-15 07:20:03 +0000263 if (!Scope)
Chris Lattnerc36ab922010-02-25 01:57:41 +0000264 return FactorNodes(N->getNextPtr());
265
Chris Lattnerf7fc2d82010-02-25 19:00:39 +0000266 // Okay, pull together the children of the scope node into a vector so we can
Chris Lattner62702da02010-02-25 07:45:24 +0000267 // inspect it more easily. While we're at it, bucket them up by the hash
268 // code of their first predicate.
Chris Lattner2c3f6492010-02-25 02:04:40 +0000269 SmallVector<Matcher*, 32> OptionsToMatch;
Chris Lattnerc36ab922010-02-25 01:57:41 +0000270
Chris Lattnerf7fc2d82010-02-25 19:00:39 +0000271 for (unsigned i = 0, e = Scope->getNumChildren(); i != e; ++i) {
Chris Lattner62702da02010-02-25 07:45:24 +0000272 // Factor the subexpression.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000273 std::unique_ptr<Matcher> Child(Scope->takeChild(i));
Chris Lattnerf7fc2d82010-02-25 19:00:39 +0000274 FactorNodes(Child);
275
Ahmed Charles96c9d952014-03-05 10:19:29 +0000276 if (Matcher *N = Child.release())
Chris Lattnerf7fc2d82010-02-25 19:00:39 +0000277 OptionsToMatch.push_back(N);
Chris Lattner62702da02010-02-25 07:45:24 +0000278 }
Chris Lattnerc36ab922010-02-25 01:57:41 +0000279
Chris Lattner62702da02010-02-25 07:45:24 +0000280 SmallVector<Matcher*, 32> NewOptionsToMatch;
Chris Lattnerf4d17752010-03-01 06:59:22 +0000281
Chris Lattner4f9a6712010-02-26 08:08:41 +0000282 // Loop over options to match, merging neighboring patterns with identical
283 // starting nodes into a shared matcher.
Chris Lattnerc577b812010-02-27 07:49:13 +0000284 for (unsigned OptionIdx = 0, e = OptionsToMatch.size(); OptionIdx != e;) {
Chris Lattner62702da02010-02-25 07:45:24 +0000285 // Find the set of matchers that start with this node.
Chris Lattnerc577b812010-02-27 07:49:13 +0000286 Matcher *Optn = OptionsToMatch[OptionIdx++];
287
288 if (OptionIdx == e) {
Chris Lattner62702da02010-02-25 07:45:24 +0000289 NewOptionsToMatch.push_back(Optn);
290 continue;
291 }
292
Chris Lattnerc577b812010-02-27 07:49:13 +0000293 // See if the next option starts with the same matcher. If the two
294 // neighbors *do* start with the same matcher, we can factor the matcher out
295 // of at least these two patterns. See what the maximal set we can merge
296 // together is.
Chris Lattner4f9a6712010-02-26 08:08:41 +0000297 SmallVector<Matcher*, 8> EqualMatchers;
298 EqualMatchers.push_back(Optn);
Chris Lattner4f9a6712010-02-26 08:08:41 +0000299
Chris Lattnerc577b812010-02-27 07:49:13 +0000300 // Factor all of the known-equal matchers after this one into the same
301 // group.
302 while (OptionIdx != e && OptionsToMatch[OptionIdx]->isEqual(Optn))
303 EqualMatchers.push_back(OptionsToMatch[OptionIdx++]);
304
305 // If we found a non-equal matcher, see if it is contradictory with the
306 // current node. If so, we know that the ordering relation between the
307 // current sets of nodes and this node don't matter. Look past it to see if
308 // we can merge anything else into this matching group.
309 unsigned Scan = OptionIdx;
310 while (1) {
Chris Lattnerb9071a22010-03-07 07:01:28 +0000311 // If we ran out of stuff to scan, we're done.
312 if (Scan == e) break;
Chris Lattnerc577b812010-02-27 07:49:13 +0000313
Chris Lattnera1603892010-03-07 07:20:49 +0000314 Matcher *ScanMatcher = OptionsToMatch[Scan];
315
Chris Lattnerb9071a22010-03-07 07:01:28 +0000316 // If we found an entry that matches out matcher, merge it into the set to
317 // handle.
Chris Lattnera1603892010-03-07 07:20:49 +0000318 if (Optn->isEqual(ScanMatcher)) {
Chris Lattnerb9071a22010-03-07 07:01:28 +0000319 // If is equal after all, add the option to EqualMatchers and remove it
320 // from OptionsToMatch.
Chris Lattnera1603892010-03-07 07:20:49 +0000321 EqualMatchers.push_back(ScanMatcher);
Chris Lattnerb9071a22010-03-07 07:01:28 +0000322 OptionsToMatch.erase(OptionsToMatch.begin()+Scan);
323 --e;
324 continue;
325 }
326
327 // If the option we're checking for contradicts the start of the list,
328 // skip over it.
Chris Lattnera1603892010-03-07 07:20:49 +0000329 if (Optn->isContradictory(ScanMatcher)) {
Chris Lattnerb9071a22010-03-07 07:01:28 +0000330 ++Scan;
331 continue;
332 }
Chris Lattnerc577b812010-02-27 07:49:13 +0000333
Chris Lattnera1603892010-03-07 07:20:49 +0000334 // If we're scanning for a simple node, see if it occurs later in the
335 // sequence. If so, and if we can move it up, it might be contradictory
336 // or the same as what we're looking for. If so, reorder it.
337 if (Optn->isSimplePredicateOrRecordNode()) {
338 Matcher *M2 = FindNodeWithKind(ScanMatcher, Optn->getKind());
Craig Topper24064772014-04-15 07:20:03 +0000339 if (M2 && M2 != ScanMatcher &&
Chris Lattnera1603892010-03-07 07:20:49 +0000340 M2->canMoveBefore(ScanMatcher) &&
341 (M2->isEqual(Optn) || M2->isContradictory(Optn))) {
342 Matcher *MatcherWithoutM2 = ScanMatcher->unlinkNode(M2);
343 M2->setNext(MatcherWithoutM2);
344 OptionsToMatch[Scan] = M2;
Chris Lattnerb9071a22010-03-07 07:01:28 +0000345 continue;
346 }
347 }
348
349 // Otherwise, we don't know how to handle this entry, we have to bail.
350 break;
Chris Lattnerc577b812010-02-27 07:49:13 +0000351 }
352
Chris Lattner278606b2010-02-27 21:48:43 +0000353 if (Scan != e &&
354 // Don't print it's obvious nothing extra could be merged anyway.
355 Scan+1 != e) {
Chris Lattnerc95d58d2010-03-07 07:21:24 +0000356 DEBUG(errs() << "Couldn't merge this:\n";
Chris Lattner2586c862010-02-27 08:11:15 +0000357 Optn->print(errs(), 4);
358 errs() << "into this:\n";
359 OptionsToMatch[Scan]->print(errs(), 4);
Chris Lattner21a7bf32010-02-27 08:13:23 +0000360 if (Scan+1 != e)
Chris Lattner2586c862010-02-27 08:11:15 +0000361 OptionsToMatch[Scan+1]->printOne(errs());
Chris Lattner21a7bf32010-02-27 08:13:23 +0000362 if (Scan+2 < e)
Chris Lattner2586c862010-02-27 08:11:15 +0000363 OptionsToMatch[Scan+2]->printOne(errs());
Chris Lattnerc95d58d2010-03-07 07:21:24 +0000364 errs() << "\n");
Chris Lattnerc577b812010-02-27 07:49:13 +0000365 }
366
367 // If we only found one option starting with this matcher, no factoring is
368 // possible.
369 if (EqualMatchers.size() == 1) {
370 NewOptionsToMatch.push_back(EqualMatchers[0]);
371 continue;
372 }
Chris Lattner4f9a6712010-02-26 08:08:41 +0000373
Chris Lattner62702da02010-02-25 07:45:24 +0000374 // Factor these checks by pulling the first node off each entry and
Chris Lattnerbe5b6342010-02-26 07:36:37 +0000375 // discarding it. Take the first one off the first entry to reuse.
376 Matcher *Shared = Optn;
377 Optn = Optn->takeNext();
378 EqualMatchers[0] = Optn;
379
Chris Lattner4f9a6712010-02-26 08:08:41 +0000380 // Remove and delete the first node from the other matchers we're factoring.
381 for (unsigned i = 1, e = EqualMatchers.size(); i != e; ++i) {
382 Matcher *Tmp = EqualMatchers[i]->takeNext();
383 delete EqualMatchers[i];
384 EqualMatchers[i] = Tmp;
385 }
Chris Lattner62702da02010-02-25 07:45:24 +0000386
Craig Toppera2c60192014-01-21 07:20:05 +0000387 Shared->setNext(new ScopeMatcher(EqualMatchers));
Chris Lattnerbe5b6342010-02-26 07:36:37 +0000388
389 // Recursively factor the newly created node.
390 FactorNodes(Shared->getNextPtr());
391
392 NewOptionsToMatch.push_back(Shared);
Chris Lattner62702da02010-02-25 07:45:24 +0000393 }
Chris Lattnerf4d17752010-03-01 06:59:22 +0000394
395 // If we're down to a single pattern to match, then we don't need this scope
396 // anymore.
397 if (NewOptionsToMatch.size() == 1) {
398 MatcherPtr.reset(NewOptionsToMatch[0]);
399 return;
400 }
401
Chris Lattner664ac982010-03-01 22:04:33 +0000402 if (NewOptionsToMatch.empty()) {
David Blaikieb61064e2014-07-19 01:05:11 +0000403 MatcherPtr.reset();
Chris Lattner664ac982010-03-01 22:04:33 +0000404 return;
405 }
406
Chris Lattnerf4d17752010-03-01 06:59:22 +0000407 // If our factoring failed (didn't achieve anything) see if we can simplify in
408 // other ways.
409
410 // Check to see if all of the leading entries are now opcode checks. If so,
411 // we can convert this Scope to be a OpcodeSwitch instead.
Chris Lattner3e1ffd02010-03-03 06:28:15 +0000412 bool AllOpcodeChecks = true, AllTypeChecks = true;
Chris Lattnerf4d17752010-03-01 06:59:22 +0000413 for (unsigned i = 0, e = NewOptionsToMatch.size(); i != e; ++i) {
Chris Lattnerb9071a22010-03-07 07:01:28 +0000414 // Check to see if this breaks a series of CheckOpcodeMatchers.
415 if (AllOpcodeChecks &&
416 !isa<CheckOpcodeMatcher>(NewOptionsToMatch[i])) {
Chris Lattnerf4d17752010-03-01 06:59:22 +0000417#if 0
Chris Lattnerb9071a22010-03-07 07:01:28 +0000418 if (i > 3) {
Chris Lattner3e1ffd02010-03-03 06:28:15 +0000419 errs() << "FAILING OPC #" << i << "\n";
420 NewOptionsToMatch[i]->dump();
421 }
Chris Lattnerf4d17752010-03-01 06:59:22 +0000422#endif
Chris Lattner3e1ffd02010-03-03 06:28:15 +0000423 AllOpcodeChecks = false;
424 }
425
Chris Lattnerb9071a22010-03-07 07:01:28 +0000426 // Check to see if this breaks a series of CheckTypeMatcher's.
427 if (AllTypeChecks) {
Chris Lattnera1603892010-03-07 07:20:49 +0000428 CheckTypeMatcher *CTM =
429 cast_or_null<CheckTypeMatcher>(FindNodeWithKind(NewOptionsToMatch[i],
430 Matcher::CheckType));
Craig Topper24064772014-04-15 07:20:03 +0000431 if (!CTM ||
Chris Lattnerb9071a22010-03-07 07:01:28 +0000432 // iPTR checks could alias any other case without us knowing, don't
433 // bother with them.
434 CTM->getType() == MVT::iPTR ||
Chris Lattner6c2d1782010-03-24 00:41:19 +0000435 // SwitchType only works for result #0.
436 CTM->getResNo() != 0 ||
Chris Lattnerb9071a22010-03-07 07:01:28 +0000437 // If the CheckType isn't at the start of the list, see if we can move
438 // it there.
439 !CTM->canMoveBefore(NewOptionsToMatch[i])) {
Chris Lattner3e1ffd02010-03-03 06:28:15 +0000440#if 0
Chris Lattnerb9071a22010-03-07 07:01:28 +0000441 if (i > 3 && AllTypeChecks) {
442 errs() << "FAILING TYPE #" << i << "\n";
443 NewOptionsToMatch[i]->dump();
444 }
Chris Lattner3e1ffd02010-03-03 06:28:15 +0000445#endif
Chris Lattnerb9071a22010-03-07 07:01:28 +0000446 AllTypeChecks = false;
447 }
Chris Lattner3e1ffd02010-03-03 06:28:15 +0000448 }
Chris Lattnerf4d17752010-03-01 06:59:22 +0000449 }
450
451 // If all the options are CheckOpcode's, we can form the SwitchOpcode, woot.
452 if (AllOpcodeChecks) {
453 StringSet<> Opcodes;
454 SmallVector<std::pair<const SDNodeInfo*, Matcher*>, 8> Cases;
455 for (unsigned i = 0, e = NewOptionsToMatch.size(); i != e; ++i) {
Chris Lattner3e1ffd02010-03-03 06:28:15 +0000456 CheckOpcodeMatcher *COM = cast<CheckOpcodeMatcher>(NewOptionsToMatch[i]);
Chris Lattnerf4d17752010-03-01 06:59:22 +0000457 assert(Opcodes.insert(COM->getOpcode().getEnumName()) &&
458 "Duplicate opcodes not factored?");
459 Cases.push_back(std::make_pair(&COM->getOpcode(), COM->getNext()));
460 }
461
Craig Toppera2c60192014-01-21 07:20:05 +0000462 MatcherPtr.reset(new SwitchOpcodeMatcher(Cases));
Chris Lattnerf4d17752010-03-01 06:59:22 +0000463 return;
464 }
465
Chris Lattner3e1ffd02010-03-03 06:28:15 +0000466 // If all the options are CheckType's, we can form the SwitchType, woot.
467 if (AllTypeChecks) {
Chris Lattnerb9071a22010-03-07 07:01:28 +0000468 DenseMap<unsigned, unsigned> TypeEntry;
Chris Lattner3e1ffd02010-03-03 06:28:15 +0000469 SmallVector<std::pair<MVT::SimpleValueType, Matcher*>, 8> Cases;
470 for (unsigned i = 0, e = NewOptionsToMatch.size(); i != e; ++i) {
Chris Lattnera1603892010-03-07 07:20:49 +0000471 CheckTypeMatcher *CTM =
472 cast_or_null<CheckTypeMatcher>(FindNodeWithKind(NewOptionsToMatch[i],
473 Matcher::CheckType));
Chris Lattnerb9071a22010-03-07 07:01:28 +0000474 Matcher *MatcherWithoutCTM = NewOptionsToMatch[i]->unlinkNode(CTM);
475 MVT::SimpleValueType CTMTy = CTM->getType();
476 delete CTM;
477
478 unsigned &Entry = TypeEntry[CTMTy];
479 if (Entry != 0) {
480 // If we have unfactored duplicate types, then we should factor them.
481 Matcher *PrevMatcher = Cases[Entry-1].second;
482 if (ScopeMatcher *SM = dyn_cast<ScopeMatcher>(PrevMatcher)) {
483 SM->setNumChildren(SM->getNumChildren()+1);
484 SM->resetChild(SM->getNumChildren()-1, MatcherWithoutCTM);
485 continue;
486 }
487
488 Matcher *Entries[2] = { PrevMatcher, MatcherWithoutCTM };
Craig Toppera2c60192014-01-21 07:20:05 +0000489 Cases[Entry-1].second = new ScopeMatcher(Entries);
Chris Lattnerb9071a22010-03-07 07:01:28 +0000490 continue;
491 }
492
493 Entry = Cases.size()+1;
494 Cases.push_back(std::make_pair(CTMTy, MatcherWithoutCTM));
Chris Lattner3e1ffd02010-03-03 06:28:15 +0000495 }
496
Chris Lattnerb9071a22010-03-07 07:01:28 +0000497 if (Cases.size() != 1) {
Craig Toppera2c60192014-01-21 07:20:05 +0000498 MatcherPtr.reset(new SwitchTypeMatcher(Cases));
Chris Lattnerb9071a22010-03-07 07:01:28 +0000499 } else {
500 // If we factored and ended up with one case, create it now.
Chris Lattner6c2d1782010-03-24 00:41:19 +0000501 MatcherPtr.reset(new CheckTypeMatcher(Cases[0].first, 0));
Chris Lattnerb9071a22010-03-07 07:01:28 +0000502 MatcherPtr->setNext(Cases[0].second);
503 }
Chris Lattner3e1ffd02010-03-03 06:28:15 +0000504 return;
505 }
506
Chris Lattner62702da02010-02-25 07:45:24 +0000507
Chris Lattner00f2e4b2010-03-01 22:19:47 +0000508 // Reassemble the Scope node with the adjusted children.
509 Scope->setNumChildren(NewOptionsToMatch.size());
510 for (unsigned i = 0, e = NewOptionsToMatch.size(); i != e; ++i)
511 Scope->resetChild(i, NewOptionsToMatch[i]);
Chris Lattnerc36ab922010-02-25 01:57:41 +0000512}
513
Chris Lattner102a8a02010-02-28 20:49:53 +0000514Matcher *llvm::OptimizeMatcher(Matcher *TheMatcher,
515 const CodeGenDAGPatterns &CGP) {
Ahmed Charles56440fd2014-03-06 05:51:42 +0000516 std::unique_ptr<Matcher> MatcherPtr(TheMatcher);
Chris Lattner102a8a02010-02-28 20:49:53 +0000517 ContractNodes(MatcherPtr, CGP);
Chris Lattnerd9e1e832010-02-27 06:22:57 +0000518 SinkPatternPredicates(MatcherPtr);
Chris Lattnerc36ab922010-02-25 01:57:41 +0000519 FactorNodes(MatcherPtr);
Ahmed Charles96c9d952014-03-05 10:19:29 +0000520 return MatcherPtr.release();
Chris Lattnere7327432010-02-24 07:06:50 +0000521}