blob: fc523c3401178ca36bf742c7b4426d39928e5968 [file] [log] [blame]
Chris Lattner36e646c2010-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
Chris Lattnerddfd5ab2010-02-27 07:49:13 +000014#define DEBUG_TYPE "isel-opt"
Chris Lattner36e646c2010-02-24 07:06:50 +000015#include "DAGISelMatcher.h"
Chris Lattner5cc7a832010-02-28 20:49:53 +000016#include "CodeGenDAGPatterns.h"
Chris Lattnerc4188ac2010-03-03 06:28:15 +000017#include "llvm/ADT/DenseSet.h"
Chris Lattner2e9e6842010-03-01 06:59:22 +000018#include "llvm/ADT/StringSet.h"
Chris Lattnerddfd5ab2010-02-27 07:49:13 +000019#include "llvm/Support/Debug.h"
20#include "llvm/Support/raw_ostream.h"
Chris Lattnercd632fb2010-02-25 07:45:24 +000021#include <vector>
Chris Lattner36e646c2010-02-24 07:06:50 +000022using namespace llvm;
23
Chris Lattnerf4950d02010-02-27 06:22:57 +000024/// ContractNodes - Turn multiple matcher node patterns like 'MoveChild+Record'
25/// into single compound nodes like RecordChild.
Chris Lattner5cc7a832010-02-28 20:49:53 +000026static void ContractNodes(OwningPtr<Matcher> &MatcherPtr,
27 const CodeGenDAGPatterns &CGP) {
Chris Lattner3ee1bc42010-02-24 07:31:45 +000028 // If we reached the end of the chain, we're done.
Chris Lattner9a515172010-02-25 02:04:40 +000029 Matcher *N = MatcherPtr.get();
Chris Lattner3ee1bc42010-02-24 07:31:45 +000030 if (N == 0) return;
31
Chris Lattner42363662010-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) {
35 OwningPtr<Matcher> Child(Scope->takeChild(i));
Chris Lattner5cc7a832010-02-28 20:49:53 +000036 ContractNodes(Child, CGP);
Chris Lattner42363662010-02-25 19:00:39 +000037 Scope->resetChild(i, Child.take());
38 }
39 return;
40 }
Chris Lattner3ee1bc42010-02-24 07:31:45 +000041
Chris Lattner9feb1e32010-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 Lattner9a515172010-02-25 02:04:40 +000044 if (MoveChildMatcher *MC = dyn_cast<MoveChildMatcher>(N)) {
45 Matcher *New = 0;
46 if (RecordMatcher *RM = dyn_cast<RecordMatcher>(MC->getNext()))
Chris Lattner5377f912010-03-01 02:24:17 +000047 New = new RecordChildMatcher(MC->getChildNo(), RM->getWhatFor(),
48 RM->getResultNo());
Chris Lattner3c664b32010-02-24 20:15:25 +000049
Chris Lattner9a515172010-02-25 02:04:40 +000050 if (CheckTypeMatcher *CT= dyn_cast<CheckTypeMatcher>(MC->getNext()))
51 New = new CheckChildTypeMatcher(MC->getChildNo(), CT->getType());
Chris Lattner3c664b32010-02-24 20:15:25 +000052
53 if (New) {
54 // Insert the new node.
Chris Lattnerac10e4f2010-02-25 01:56:48 +000055 New->setNext(MatcherPtr.take());
56 MatcherPtr.reset(New);
Chris Lattner3c664b32010-02-24 20:15:25 +000057 // Remove the old one.
58 MC->setNext(MC->getNext()->takeNext());
Chris Lattner5cc7a832010-02-28 20:49:53 +000059 return ContractNodes(MatcherPtr, CGP);
Chris Lattner9feb1e32010-02-24 19:52:48 +000060 }
Chris Lattner3ee1bc42010-02-24 07:31:45 +000061 }
Chris Lattner9feb1e32010-02-24 19:52:48 +000062
Chris Lattner7a1dab42010-02-28 02:31:26 +000063 // Zap movechild -> moveparent.
Chris Lattner9a515172010-02-25 02:04:40 +000064 if (MoveChildMatcher *MC = dyn_cast<MoveChildMatcher>(N))
65 if (MoveParentMatcher *MP =
66 dyn_cast<MoveParentMatcher>(MC->getNext())) {
Chris Lattnerac10e4f2010-02-25 01:56:48 +000067 MatcherPtr.reset(MP->takeNext());
Chris Lattner5cc7a832010-02-28 20:49:53 +000068 return ContractNodes(MatcherPtr, CGP);
Chris Lattner9feb1e32010-02-24 19:52:48 +000069 }
Chris Lattner1f5ca1e2010-02-28 23:00:47 +000070
Chris Lattner304a3e12010-03-01 02:33:14 +000071 // 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 }
Chris Lattner1f5ca1e2010-02-28 23:00:47 +000088
Chris Lattner7dae4af2010-02-28 20:55:18 +000089 // Turn EmitNode->CompleteMatch into MorphNodeTo if we can.
Chris Lattner7a1dab42010-02-28 02:31:26 +000090 if (EmitNodeMatcher *EN = dyn_cast<EmitNodeMatcher>(N))
Chris Lattner19a1fbe2010-02-28 02:41:25 +000091 if (CompleteMatchMatcher *CM =
92 dyn_cast<CompleteMatchMatcher>(EN->getNext())) {
Chris Lattner7dae4af2010-02-28 20:55:18 +000093 // We can only use MorphNodeTo if the result values match up.
Chris Lattner5cc7a832010-02-28 20:49:53 +000094 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
Chris Lattner7dae4af2010-02-28 20:55:18 +0000101 // can't use MorphNodeTo. For example, we can't use MorphNodeTo if the
Chris Lattner5cc7a832010-02-28 20:49:53 +0000102 // 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
Chris Lattner7dae4af2010-02-28 20:55:18 +0000110 // use MorphNodeTo.
Chris Lattner5cc7a832010-02-28 20:49:53 +0000111 //
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.
Chris Lattner414bac82010-02-28 21:53:42 +0000115 if (!EN->hasOutFlag() &&
Chris Lattner5cc7a832010-02-28 20:49:53 +0000116 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();
Chris Lattner7dae4af2010-02-28 20:55:18 +0000132 MatcherPtr.reset(new MorphNodeToMatcher(EN->getOpcodeName(),
Chris Lattner414bac82010-02-28 21:53:42 +0000133 VTs.data(), VTs.size(),
Chris Lattner7dae4af2010-02-28 20:55:18 +0000134 Operands.data(),Operands.size(),
Chris Lattner414bac82010-02-28 21:53:42 +0000135 EN->hasChain(), EN->hasInFlag(),
136 EN->hasOutFlag(),
Chris Lattner7dae4af2010-02-28 20:55:18 +0000137 EN->hasMemRefs(),
138 EN->getNumFixedArityOperands(),
139 Pattern));
Chris Lattner5cc7a832010-02-28 20:49:53 +0000140 return;
141 }
142
Chris Lattner43249322010-03-01 22:29:19 +0000143 // FIXME2: Kill off all the SelectionDAG::SelectNodeTo and getMachineNode
Chris Lattner7dae4af2010-02-28 20:55:18 +0000144 // variants.
Chris Lattner7a1dab42010-02-28 02:31:26 +0000145 }
146
Chris Lattner5cc7a832010-02-28 20:49:53 +0000147 ContractNodes(N->getNextPtr(), CGP);
Chris Lattnere0b45db2010-03-01 02:15:34 +0000148
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)) &&
Chris Lattner220b9682010-03-01 07:17:40 +0000156 isa<CheckOpcodeMatcher>(N->getNext())) {
Chris Lattnere0b45db2010-03-01 02:15:34 +0000157 // Unlink the two nodes from the list.
158 Matcher *CheckType = MatcherPtr.take();
159 Matcher *CheckOpcode = CheckType->takeNext();
160 Matcher *Tail = CheckOpcode->takeNext();
161
162 // Relink them.
163 MatcherPtr.reset(CheckOpcode);
164 CheckOpcode->setNext(CheckType);
165 CheckType->setNext(Tail);
166 return ContractNodes(MatcherPtr, CGP);
167 }
Chris Lattner3ee1bc42010-02-24 07:31:45 +0000168}
169
Chris Lattnerf4950d02010-02-27 06:22:57 +0000170/// SinkPatternPredicates - Pattern predicates can be checked at any level of
171/// the matching tree. The generator dumps them at the top level of the pattern
172/// though, which prevents factoring from being able to see past them. This
173/// optimization sinks them as far down into the pattern as possible.
174///
175/// Conceptually, we'd like to sink these predicates all the way to the last
176/// matcher predicate in the series. However, it turns out that some
177/// ComplexPatterns have side effects on the graph, so we really don't want to
178/// run a the complex pattern if the pattern predicate will fail. For this
179/// reason, we refuse to sink the pattern predicate past a ComplexPattern.
180///
181static void SinkPatternPredicates(OwningPtr<Matcher> &MatcherPtr) {
182 // Recursively scan for a PatternPredicate.
183 // If we reached the end of the chain, we're done.
184 Matcher *N = MatcherPtr.get();
185 if (N == 0) return;
186
187 // Walk down all members of a scope node.
188 if (ScopeMatcher *Scope = dyn_cast<ScopeMatcher>(N)) {
189 for (unsigned i = 0, e = Scope->getNumChildren(); i != e; ++i) {
190 OwningPtr<Matcher> Child(Scope->takeChild(i));
191 SinkPatternPredicates(Child);
192 Scope->resetChild(i, Child.take());
193 }
194 return;
195 }
196
197 // If this node isn't a CheckPatternPredicateMatcher we keep scanning until
198 // we find one.
199 CheckPatternPredicateMatcher *CPPM =dyn_cast<CheckPatternPredicateMatcher>(N);
200 if (CPPM == 0)
201 return SinkPatternPredicates(N->getNextPtr());
202
203 // Ok, we found one, lets try to sink it. Check if we can sink it past the
204 // next node in the chain. If not, we won't be able to change anything and
205 // might as well bail.
206 if (!CPPM->getNext()->isSafeToReorderWithPatternPredicate())
207 return;
208
209 // Okay, we know we can sink it past at least one node. Unlink it from the
210 // chain and scan for the new insertion point.
211 MatcherPtr.take(); // Don't delete CPPM.
212 MatcherPtr.reset(CPPM->takeNext());
213
214 N = MatcherPtr.get();
215 while (N->getNext()->isSafeToReorderWithPatternPredicate())
216 N = N->getNext();
217
218 // At this point, we want to insert CPPM after N.
219 CPPM->setNext(N->takeNext());
220 N->setNext(CPPM);
221}
222
Chris Lattnercabd0652010-03-07 07:01:28 +0000223/// FindCheckType - Scan a series of matchers looking for a CheckType that can
224/// be pulled up to the start of the matcher. Return null if we didn't find one
225/// otherwise return the matcher.
226static CheckTypeMatcher *FindCheckType(Matcher *M) {
227 for (; M; M = M->getNext())
228 if (CheckTypeMatcher *CTM = dyn_cast<CheckTypeMatcher>(M))
229 return CTM;
230 return 0;
231}
232
233
Chris Lattnerf4950d02010-02-27 06:22:57 +0000234/// FactorNodes - Turn matches like this:
235/// Scope
236/// OPC_CheckType i32
237/// ABC
238/// OPC_CheckType i32
239/// XYZ
240/// into:
241/// OPC_CheckType i32
242/// Scope
243/// ABC
244/// XYZ
245///
Chris Lattner9a515172010-02-25 02:04:40 +0000246static void FactorNodes(OwningPtr<Matcher> &MatcherPtr) {
Chris Lattner0acf2ba2010-02-25 01:57:41 +0000247 // If we reached the end of the chain, we're done.
Chris Lattner9a515172010-02-25 02:04:40 +0000248 Matcher *N = MatcherPtr.get();
Chris Lattner0acf2ba2010-02-25 01:57:41 +0000249 if (N == 0) return;
250
251 // If this is not a push node, just scan for one.
Chris Lattner42363662010-02-25 19:00:39 +0000252 ScopeMatcher *Scope = dyn_cast<ScopeMatcher>(N);
253 if (Scope == 0)
Chris Lattner0acf2ba2010-02-25 01:57:41 +0000254 return FactorNodes(N->getNextPtr());
255
Chris Lattner42363662010-02-25 19:00:39 +0000256 // Okay, pull together the children of the scope node into a vector so we can
Chris Lattnercd632fb2010-02-25 07:45:24 +0000257 // inspect it more easily. While we're at it, bucket them up by the hash
258 // code of their first predicate.
Chris Lattner9a515172010-02-25 02:04:40 +0000259 SmallVector<Matcher*, 32> OptionsToMatch;
Chris Lattner0acf2ba2010-02-25 01:57:41 +0000260
Chris Lattner42363662010-02-25 19:00:39 +0000261 for (unsigned i = 0, e = Scope->getNumChildren(); i != e; ++i) {
Chris Lattnercd632fb2010-02-25 07:45:24 +0000262 // Factor the subexpression.
Chris Lattner42363662010-02-25 19:00:39 +0000263 OwningPtr<Matcher> Child(Scope->takeChild(i));
264 FactorNodes(Child);
265
Chris Lattner92a22462010-02-26 08:08:41 +0000266 if (Matcher *N = Child.take())
Chris Lattner42363662010-02-25 19:00:39 +0000267 OptionsToMatch.push_back(N);
Chris Lattnercd632fb2010-02-25 07:45:24 +0000268 }
Chris Lattner0acf2ba2010-02-25 01:57:41 +0000269
Chris Lattnercd632fb2010-02-25 07:45:24 +0000270 SmallVector<Matcher*, 32> NewOptionsToMatch;
Chris Lattner2e9e6842010-03-01 06:59:22 +0000271
Chris Lattner92a22462010-02-26 08:08:41 +0000272 // Loop over options to match, merging neighboring patterns with identical
273 // starting nodes into a shared matcher.
Chris Lattnerddfd5ab2010-02-27 07:49:13 +0000274 for (unsigned OptionIdx = 0, e = OptionsToMatch.size(); OptionIdx != e;) {
Chris Lattnercd632fb2010-02-25 07:45:24 +0000275 // Find the set of matchers that start with this node.
Chris Lattnerddfd5ab2010-02-27 07:49:13 +0000276 Matcher *Optn = OptionsToMatch[OptionIdx++];
277
278 if (OptionIdx == e) {
Chris Lattnercd632fb2010-02-25 07:45:24 +0000279 NewOptionsToMatch.push_back(Optn);
280 continue;
281 }
282
Chris Lattnerddfd5ab2010-02-27 07:49:13 +0000283 // See if the next option starts with the same matcher. If the two
284 // neighbors *do* start with the same matcher, we can factor the matcher out
285 // of at least these two patterns. See what the maximal set we can merge
286 // together is.
Chris Lattner92a22462010-02-26 08:08:41 +0000287 SmallVector<Matcher*, 8> EqualMatchers;
288 EqualMatchers.push_back(Optn);
Chris Lattner92a22462010-02-26 08:08:41 +0000289
Chris Lattnerddfd5ab2010-02-27 07:49:13 +0000290 // Factor all of the known-equal matchers after this one into the same
291 // group.
292 while (OptionIdx != e && OptionsToMatch[OptionIdx]->isEqual(Optn))
293 EqualMatchers.push_back(OptionsToMatch[OptionIdx++]);
294
295 // If we found a non-equal matcher, see if it is contradictory with the
296 // current node. If so, we know that the ordering relation between the
297 // current sets of nodes and this node don't matter. Look past it to see if
298 // we can merge anything else into this matching group.
299 unsigned Scan = OptionIdx;
300 while (1) {
Chris Lattnercabd0652010-03-07 07:01:28 +0000301 // If we ran out of stuff to scan, we're done.
302 if (Scan == e) break;
Chris Lattnerddfd5ab2010-02-27 07:49:13 +0000303
Chris Lattnercabd0652010-03-07 07:01:28 +0000304 // If we found an entry that matches out matcher, merge it into the set to
305 // handle.
306 if (Optn->isEqual(OptionsToMatch[Scan])) {
307 // If is equal after all, add the option to EqualMatchers and remove it
308 // from OptionsToMatch.
309 EqualMatchers.push_back(OptionsToMatch[Scan]);
310 OptionsToMatch.erase(OptionsToMatch.begin()+Scan);
311 --e;
312 continue;
313 }
314
315 // If the option we're checking for contradicts the start of the list,
316 // skip over it.
317 if (Optn->isContradictory(OptionsToMatch[Scan])) {
318 ++Scan;
319 continue;
320 }
Chris Lattnerddfd5ab2010-02-27 07:49:13 +0000321
Chris Lattnercabd0652010-03-07 07:01:28 +0000322 // If we're scannig for a type comparison and the type comparison got
323 // moved late, see if we can pull it up.
324 if (isa<CheckTypeMatcher>(Optn)) {
325 CheckTypeMatcher *CTM = FindCheckType(OptionsToMatch[Scan]);
326 if (CTM != 0 && CTM != OptionsToMatch[Scan] &&
327 CTM->canMoveBefore(OptionsToMatch[Scan])) {
328 Matcher *MatcherWithoutCTM = OptionsToMatch[Scan]->unlinkNode(CTM);
329 CTM->setNext(MatcherWithoutCTM);
330 OptionsToMatch[Scan] = CTM;
331 continue;
332 }
333 }
334
335 // Otherwise, we don't know how to handle this entry, we have to bail.
336 break;
Chris Lattnerddfd5ab2010-02-27 07:49:13 +0000337 }
338
Chris Lattnere9f720b2010-02-27 21:48:43 +0000339 if (Scan != e &&
340 // Don't print it's obvious nothing extra could be merged anyway.
341 Scan+1 != e) {
Chris Lattner086af322010-02-27 08:11:15 +0000342 DEBUG(errs() << "Couldn't merge this:\n";
343 Optn->print(errs(), 4);
344 errs() << "into this:\n";
345 OptionsToMatch[Scan]->print(errs(), 4);
Chris Lattner53d3ec92010-02-27 08:13:23 +0000346 if (Scan+1 != e)
Chris Lattner086af322010-02-27 08:11:15 +0000347 OptionsToMatch[Scan+1]->printOne(errs());
Chris Lattner53d3ec92010-02-27 08:13:23 +0000348 if (Scan+2 < e)
Chris Lattner086af322010-02-27 08:11:15 +0000349 OptionsToMatch[Scan+2]->printOne(errs());
Chris Lattnerddfd5ab2010-02-27 07:49:13 +0000350 errs() << "\n");
351 }
352
353 // If we only found one option starting with this matcher, no factoring is
354 // possible.
355 if (EqualMatchers.size() == 1) {
356 NewOptionsToMatch.push_back(EqualMatchers[0]);
357 continue;
358 }
Chris Lattner92a22462010-02-26 08:08:41 +0000359
Chris Lattnercd632fb2010-02-25 07:45:24 +0000360 // Factor these checks by pulling the first node off each entry and
Chris Lattnerb0e68102010-02-26 07:36:37 +0000361 // discarding it. Take the first one off the first entry to reuse.
362 Matcher *Shared = Optn;
363 Optn = Optn->takeNext();
364 EqualMatchers[0] = Optn;
365
Chris Lattner92a22462010-02-26 08:08:41 +0000366 // Remove and delete the first node from the other matchers we're factoring.
367 for (unsigned i = 1, e = EqualMatchers.size(); i != e; ++i) {
368 Matcher *Tmp = EqualMatchers[i]->takeNext();
369 delete EqualMatchers[i];
370 EqualMatchers[i] = Tmp;
371 }
Chris Lattnercd632fb2010-02-25 07:45:24 +0000372
Chris Lattnerb0e68102010-02-26 07:36:37 +0000373 Shared->setNext(new ScopeMatcher(&EqualMatchers[0], EqualMatchers.size()));
374
375 // Recursively factor the newly created node.
376 FactorNodes(Shared->getNextPtr());
377
378 NewOptionsToMatch.push_back(Shared);
Chris Lattnercd632fb2010-02-25 07:45:24 +0000379 }
Chris Lattner2e9e6842010-03-01 06:59:22 +0000380
381 // If we're down to a single pattern to match, then we don't need this scope
382 // anymore.
383 if (NewOptionsToMatch.size() == 1) {
384 MatcherPtr.reset(NewOptionsToMatch[0]);
385 return;
386 }
387
Chris Lattnerb43eb8b2010-03-01 22:04:33 +0000388 if (NewOptionsToMatch.empty()) {
389 MatcherPtr.reset(0);
390 return;
391 }
392
Chris Lattner2e9e6842010-03-01 06:59:22 +0000393 // If our factoring failed (didn't achieve anything) see if we can simplify in
394 // other ways.
395
396 // Check to see if all of the leading entries are now opcode checks. If so,
397 // we can convert this Scope to be a OpcodeSwitch instead.
Chris Lattnerc4188ac2010-03-03 06:28:15 +0000398 bool AllOpcodeChecks = true, AllTypeChecks = true;
Chris Lattner2e9e6842010-03-01 06:59:22 +0000399 for (unsigned i = 0, e = NewOptionsToMatch.size(); i != e; ++i) {
Chris Lattnercabd0652010-03-07 07:01:28 +0000400 // Check to see if this breaks a series of CheckOpcodeMatchers.
401 if (AllOpcodeChecks &&
402 !isa<CheckOpcodeMatcher>(NewOptionsToMatch[i])) {
Chris Lattner2e9e6842010-03-01 06:59:22 +0000403#if 0
Chris Lattnercabd0652010-03-07 07:01:28 +0000404 if (i > 3) {
Chris Lattnerc4188ac2010-03-03 06:28:15 +0000405 errs() << "FAILING OPC #" << i << "\n";
406 NewOptionsToMatch[i]->dump();
407 }
Chris Lattner2e9e6842010-03-01 06:59:22 +0000408#endif
Chris Lattnerc4188ac2010-03-03 06:28:15 +0000409 AllOpcodeChecks = false;
410 }
411
Chris Lattnercabd0652010-03-07 07:01:28 +0000412 // Check to see if this breaks a series of CheckTypeMatcher's.
413 if (AllTypeChecks) {
414 CheckTypeMatcher *CTM = FindCheckType(NewOptionsToMatch[i]);
415 if (CTM == 0 ||
416 // iPTR checks could alias any other case without us knowing, don't
417 // bother with them.
418 CTM->getType() == MVT::iPTR ||
419 // If the CheckType isn't at the start of the list, see if we can move
420 // it there.
421 !CTM->canMoveBefore(NewOptionsToMatch[i])) {
Chris Lattnerc4188ac2010-03-03 06:28:15 +0000422#if 0
Chris Lattnercabd0652010-03-07 07:01:28 +0000423 if (i > 3 && AllTypeChecks) {
424 errs() << "FAILING TYPE #" << i << "\n";
425 NewOptionsToMatch[i]->dump();
426 }
Chris Lattnerc4188ac2010-03-03 06:28:15 +0000427#endif
Chris Lattnercabd0652010-03-07 07:01:28 +0000428 AllTypeChecks = false;
429 }
Chris Lattnerc4188ac2010-03-03 06:28:15 +0000430 }
Chris Lattner2e9e6842010-03-01 06:59:22 +0000431 }
432
433 // If all the options are CheckOpcode's, we can form the SwitchOpcode, woot.
434 if (AllOpcodeChecks) {
435 StringSet<> Opcodes;
436 SmallVector<std::pair<const SDNodeInfo*, Matcher*>, 8> Cases;
437 for (unsigned i = 0, e = NewOptionsToMatch.size(); i != e; ++i) {
Chris Lattnerc4188ac2010-03-03 06:28:15 +0000438 CheckOpcodeMatcher *COM = cast<CheckOpcodeMatcher>(NewOptionsToMatch[i]);
Chris Lattner2e9e6842010-03-01 06:59:22 +0000439 assert(Opcodes.insert(COM->getOpcode().getEnumName()) &&
440 "Duplicate opcodes not factored?");
441 Cases.push_back(std::make_pair(&COM->getOpcode(), COM->getNext()));
442 }
443
444 MatcherPtr.reset(new SwitchOpcodeMatcher(&Cases[0], Cases.size()));
445 return;
446 }
447
Chris Lattnerc4188ac2010-03-03 06:28:15 +0000448 // If all the options are CheckType's, we can form the SwitchType, woot.
449 if (AllTypeChecks) {
Chris Lattnercabd0652010-03-07 07:01:28 +0000450 DenseMap<unsigned, unsigned> TypeEntry;
Chris Lattnerc4188ac2010-03-03 06:28:15 +0000451 SmallVector<std::pair<MVT::SimpleValueType, Matcher*>, 8> Cases;
452 for (unsigned i = 0, e = NewOptionsToMatch.size(); i != e; ++i) {
Chris Lattnercabd0652010-03-07 07:01:28 +0000453 CheckTypeMatcher *CTM = FindCheckType(NewOptionsToMatch[i]);
454 Matcher *MatcherWithoutCTM = NewOptionsToMatch[i]->unlinkNode(CTM);
455 MVT::SimpleValueType CTMTy = CTM->getType();
456 delete CTM;
457
458 unsigned &Entry = TypeEntry[CTMTy];
459 if (Entry != 0) {
460 // If we have unfactored duplicate types, then we should factor them.
461 Matcher *PrevMatcher = Cases[Entry-1].second;
462 if (ScopeMatcher *SM = dyn_cast<ScopeMatcher>(PrevMatcher)) {
463 SM->setNumChildren(SM->getNumChildren()+1);
464 SM->resetChild(SM->getNumChildren()-1, MatcherWithoutCTM);
465 continue;
466 }
467
468 Matcher *Entries[2] = { PrevMatcher, MatcherWithoutCTM };
469 Cases[Entry-1].second = new ScopeMatcher(Entries, 2);
470 continue;
471 }
472
473 Entry = Cases.size()+1;
474 Cases.push_back(std::make_pair(CTMTy, MatcherWithoutCTM));
Chris Lattnerc4188ac2010-03-03 06:28:15 +0000475 }
476
Chris Lattnercabd0652010-03-07 07:01:28 +0000477 if (Cases.size() != 1) {
478 MatcherPtr.reset(new SwitchTypeMatcher(&Cases[0], Cases.size()));
479 } else {
480 // If we factored and ended up with one case, create it now.
481 MatcherPtr.reset(new CheckTypeMatcher(Cases[0].first));
482 MatcherPtr->setNext(Cases[0].second);
483 }
Chris Lattnerc4188ac2010-03-03 06:28:15 +0000484 return;
485 }
486
Chris Lattnercd632fb2010-02-25 07:45:24 +0000487
Chris Lattner1edfe362010-03-01 22:19:47 +0000488 // Reassemble the Scope node with the adjusted children.
489 Scope->setNumChildren(NewOptionsToMatch.size());
490 for (unsigned i = 0, e = NewOptionsToMatch.size(); i != e; ++i)
491 Scope->resetChild(i, NewOptionsToMatch[i]);
Chris Lattner0acf2ba2010-02-25 01:57:41 +0000492}
493
Chris Lattner5cc7a832010-02-28 20:49:53 +0000494Matcher *llvm::OptimizeMatcher(Matcher *TheMatcher,
495 const CodeGenDAGPatterns &CGP) {
Chris Lattner9a515172010-02-25 02:04:40 +0000496 OwningPtr<Matcher> MatcherPtr(TheMatcher);
Chris Lattner5cc7a832010-02-28 20:49:53 +0000497 ContractNodes(MatcherPtr, CGP);
Chris Lattnerf4950d02010-02-27 06:22:57 +0000498 SinkPatternPredicates(MatcherPtr);
Chris Lattner0acf2ba2010-02-25 01:57:41 +0000499 FactorNodes(MatcherPtr);
Chris Lattner3ee1bc42010-02-24 07:31:45 +0000500 return MatcherPtr.take();
Chris Lattner36e646c2010-02-24 07:06:50 +0000501}