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