Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 1 | //===- DAGISelMatcherGen.cpp - Matcher generator --------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "DAGISelMatcher.h" |
| 11 | #include "CodeGenDAGPatterns.h" |
| 12 | #include "Record.h" |
Chris Lattner | 785d16f | 2010-02-17 02:16:19 +0000 | [diff] [blame] | 13 | #include "llvm/ADT/SmallVector.h" |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/StringMap.h" |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 15 | #include <utility> |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 16 | using namespace llvm; |
| 17 | |
Chris Lattner | c94fa4c | 2010-02-19 00:27:40 +0000 | [diff] [blame] | 18 | |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 19 | /// getRegisterValueType - Look up and return the ValueType of the specified |
| 20 | /// register. If the register is a member of multiple register classes which |
| 21 | /// have different associated types, return MVT::Other. |
| 22 | static MVT::SimpleValueType getRegisterValueType(Record *R, |
| 23 | const CodeGenTarget &T) { |
| 24 | bool FoundRC = false; |
| 25 | MVT::SimpleValueType VT = MVT::Other; |
| 26 | const std::vector<CodeGenRegisterClass> &RCs = T.getRegisterClasses(); |
| 27 | std::vector<Record*>::const_iterator Element; |
| 28 | |
| 29 | for (unsigned rc = 0, e = RCs.size(); rc != e; ++rc) { |
| 30 | const CodeGenRegisterClass &RC = RCs[rc]; |
| 31 | if (!std::count(RC.Elements.begin(), RC.Elements.end(), R)) |
| 32 | continue; |
| 33 | |
| 34 | if (!FoundRC) { |
| 35 | FoundRC = true; |
| 36 | VT = RC.getValueTypeNum(0); |
| 37 | continue; |
Chris Lattner | c94fa4c | 2010-02-19 00:27:40 +0000 | [diff] [blame] | 38 | } |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 39 | |
| 40 | // In multiple RC's. If the Types of the RC's do not agree, return |
| 41 | // MVT::Other. The target is responsible for handling this. |
| 42 | if (VT != RC.getValueTypeNum(0)) |
| 43 | // FIXME2: when does this happen? Abort? |
| 44 | return MVT::Other; |
| 45 | } |
| 46 | return VT; |
| 47 | } |
| 48 | |
| 49 | |
| 50 | namespace { |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 51 | class MatcherGen { |
| 52 | const PatternToMatch &Pattern; |
| 53 | const CodeGenDAGPatterns &CGP; |
| 54 | |
| 55 | /// PatWithNoTypes - This is a clone of Pattern.getSrcPattern() that starts |
| 56 | /// out with all of the types removed. This allows us to insert type checks |
| 57 | /// as we scan the tree. |
| 58 | TreePatternNode *PatWithNoTypes; |
| 59 | |
| 60 | /// VariableMap - A map from variable names ('$dst') to the recorded operand |
| 61 | /// number that they were captured as. These are biased by 1 to make |
| 62 | /// insertion easier. |
| 63 | StringMap<unsigned> VariableMap; |
Chris Lattner | c94fa4c | 2010-02-19 00:27:40 +0000 | [diff] [blame] | 64 | |
| 65 | /// NextRecordedOperandNo - As we emit opcodes to record matched values in |
| 66 | /// the RecordedNodes array, this keeps track of which slot will be next to |
| 67 | /// record into. |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 68 | unsigned NextRecordedOperandNo; |
| 69 | |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 70 | /// MatchedChainNodes - This maintains the position in the recorded nodes |
| 71 | /// array of all of the recorded input nodes that have chains. |
| 72 | SmallVector<unsigned, 2> MatchedChainNodes; |
Chris Lattner | 02f7358 | 2010-02-24 05:33:42 +0000 | [diff] [blame] | 73 | |
| 74 | /// MatchedFlagResultNodes - This maintains the position in the recorded |
| 75 | /// nodes array of all of the recorded input nodes that have flag results. |
| 76 | SmallVector<unsigned, 2> MatchedFlagResultNodes; |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 77 | |
| 78 | /// PhysRegInputs - List list has an entry for each explicitly specified |
| 79 | /// physreg input to the pattern. The first elt is the Register node, the |
| 80 | /// second is the recorded slot number the input pattern match saved it in. |
| 81 | SmallVector<std::pair<Record*, unsigned>, 2> PhysRegInputs; |
| 82 | |
| 83 | /// EmittedMergeInputChains - For nodes that match patterns involving |
| 84 | /// chains, is set to true if we emitted the "MergeInputChains" operation. |
| 85 | bool EmittedMergeInputChains; |
Chris Lattner | 785d16f | 2010-02-17 02:16:19 +0000 | [diff] [blame] | 86 | |
| 87 | /// Matcher - This is the top level of the generated matcher, the result. |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 88 | Matcher *TheMatcher; |
Chris Lattner | 785d16f | 2010-02-17 02:16:19 +0000 | [diff] [blame] | 89 | |
| 90 | /// CurPredicate - As we emit matcher nodes, this points to the latest check |
Chris Lattner | bd8227f | 2010-02-18 02:53:41 +0000 | [diff] [blame] | 91 | /// which should have future checks stuck into its Next position. |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 92 | Matcher *CurPredicate; |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 93 | public: |
| 94 | MatcherGen(const PatternToMatch &pattern, const CodeGenDAGPatterns &cgp); |
| 95 | |
| 96 | ~MatcherGen() { |
| 97 | delete PatWithNoTypes; |
| 98 | } |
| 99 | |
| 100 | void EmitMatcherCode(); |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 101 | void EmitResultCode(); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 102 | |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 103 | Matcher *GetMatcher() const { return TheMatcher; } |
| 104 | Matcher *GetCurPredicate() const { return CurPredicate; } |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 105 | private: |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 106 | void AddMatcher(Matcher *NewNode); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 107 | void InferPossibleTypes(); |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 108 | |
| 109 | // Matcher Generation. |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 110 | void EmitMatchCode(const TreePatternNode *N, TreePatternNode *NodeNoTypes); |
| 111 | void EmitLeafMatchCode(const TreePatternNode *N); |
| 112 | void EmitOperatorMatchCode(const TreePatternNode *N, |
| 113 | TreePatternNode *NodeNoTypes); |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 114 | |
| 115 | // Result Code Generation. |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 116 | unsigned getNamedArgumentSlot(StringRef Name) { |
| 117 | unsigned VarMapEntry = VariableMap[Name]; |
| 118 | assert(VarMapEntry != 0 && |
| 119 | "Variable referenced but not defined and not caught earlier!"); |
| 120 | return VarMapEntry-1; |
| 121 | } |
| 122 | |
| 123 | /// GetInstPatternNode - Get the pattern for an instruction. |
| 124 | const TreePatternNode *GetInstPatternNode(const DAGInstruction &Ins, |
| 125 | const TreePatternNode *N); |
| 126 | |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 127 | void EmitResultOperand(const TreePatternNode *N, |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 128 | SmallVectorImpl<unsigned> &ResultOps); |
| 129 | void EmitResultOfNamedOperand(const TreePatternNode *N, |
| 130 | SmallVectorImpl<unsigned> &ResultOps); |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 131 | void EmitResultLeafAsOperand(const TreePatternNode *N, |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 132 | SmallVectorImpl<unsigned> &ResultOps); |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 133 | void EmitResultInstructionAsOperand(const TreePatternNode *N, |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 134 | SmallVectorImpl<unsigned> &ResultOps); |
| 135 | void EmitResultSDNodeXFormAsOperand(const TreePatternNode *N, |
| 136 | SmallVectorImpl<unsigned> &ResultOps); |
| 137 | }; |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 138 | |
| 139 | } // end anon namespace. |
| 140 | |
| 141 | MatcherGen::MatcherGen(const PatternToMatch &pattern, |
| 142 | const CodeGenDAGPatterns &cgp) |
Chris Lattner | 853b919 | 2010-02-19 00:33:13 +0000 | [diff] [blame] | 143 | : Pattern(pattern), CGP(cgp), NextRecordedOperandNo(0), |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 144 | EmittedMergeInputChains(false), TheMatcher(0), CurPredicate(0) { |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 145 | // We need to produce the matcher tree for the patterns source pattern. To do |
| 146 | // this we need to match the structure as well as the types. To do the type |
| 147 | // matching, we want to figure out the fewest number of type checks we need to |
| 148 | // emit. For example, if there is only one integer type supported by a |
| 149 | // target, there should be no type comparisons at all for integer patterns! |
| 150 | // |
| 151 | // To figure out the fewest number of type checks needed, clone the pattern, |
| 152 | // remove the types, then perform type inference on the pattern as a whole. |
| 153 | // If there are unresolved types, emit an explicit check for those types, |
| 154 | // apply the type to the tree, then rerun type inference. Iterate until all |
| 155 | // types are resolved. |
| 156 | // |
| 157 | PatWithNoTypes = Pattern.getSrcPattern()->clone(); |
| 158 | PatWithNoTypes->RemoveAllTypes(); |
| 159 | |
| 160 | // If there are types that are manifestly known, infer them. |
| 161 | InferPossibleTypes(); |
| 162 | } |
| 163 | |
| 164 | /// InferPossibleTypes - As we emit the pattern, we end up generating type |
| 165 | /// checks and applying them to the 'PatWithNoTypes' tree. As we do this, we |
| 166 | /// want to propagate implied types as far throughout the tree as possible so |
| 167 | /// that we avoid doing redundant type checks. This does the type propagation. |
| 168 | void MatcherGen::InferPossibleTypes() { |
| 169 | // TP - Get *SOME* tree pattern, we don't care which. It is only used for |
| 170 | // diagnostics, which we know are impossible at this point. |
| 171 | TreePattern &TP = *CGP.pf_begin()->second; |
| 172 | |
| 173 | try { |
| 174 | bool MadeChange = true; |
| 175 | while (MadeChange) |
| 176 | MadeChange = PatWithNoTypes->ApplyTypeConstraints(TP, |
| 177 | true/*Ignore reg constraints*/); |
| 178 | } catch (...) { |
| 179 | errs() << "Type constraint application shouldn't fail!"; |
| 180 | abort(); |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 185 | /// AddMatcher - Add a matcher node to the current graph we're building. |
| 186 | void MatcherGen::AddMatcher(Matcher *NewNode) { |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 187 | if (CurPredicate != 0) |
Chris Lattner | bd8227f | 2010-02-18 02:53:41 +0000 | [diff] [blame] | 188 | CurPredicate->setNext(NewNode); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 189 | else |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 190 | TheMatcher = NewNode; |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 191 | CurPredicate = NewNode; |
| 192 | } |
| 193 | |
| 194 | |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 195 | //===----------------------------------------------------------------------===// |
| 196 | // Pattern Match Generation |
| 197 | //===----------------------------------------------------------------------===// |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 198 | |
| 199 | /// EmitLeafMatchCode - Generate matching code for leaf nodes. |
| 200 | void MatcherGen::EmitLeafMatchCode(const TreePatternNode *N) { |
| 201 | assert(N->isLeaf() && "Not a leaf?"); |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 202 | |
| 203 | // If there are node predicates for this node, generate their checks. |
| 204 | for (unsigned i = 0, e = N->getPredicateFns().size(); i != e; ++i) |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 205 | AddMatcher(new CheckPredicateMatcher(N->getPredicateFns()[i])); |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 206 | |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 207 | // Direct match against an integer constant. |
| 208 | if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 209 | return AddMatcher(new CheckIntegerMatcher(II->getValue())); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 210 | |
| 211 | DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue()); |
| 212 | if (DI == 0) { |
| 213 | errs() << "Unknown leaf kind: " << *DI << "\n"; |
| 214 | abort(); |
| 215 | } |
| 216 | |
| 217 | Record *LeafRec = DI->getDef(); |
| 218 | if (// Handle register references. Nothing to do here, they always match. |
| 219 | LeafRec->isSubClassOf("RegisterClass") || |
| 220 | LeafRec->isSubClassOf("PointerLikeRegClass") || |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 221 | // Place holder for SRCVALUE nodes. Nothing to do here. |
| 222 | LeafRec->getName() == "srcvalue") |
| 223 | return; |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 224 | |
| 225 | // If we have a physreg reference like (mul gpr:$src, EAX) then we need to |
| 226 | // record the register |
| 227 | if (LeafRec->isSubClassOf("Register")) { |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 228 | AddMatcher(new RecordMatcher("physreg input "+LeafRec->getName())); |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 229 | PhysRegInputs.push_back(std::make_pair(LeafRec, NextRecordedOperandNo++)); |
| 230 | return; |
| 231 | } |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 232 | |
| 233 | if (LeafRec->isSubClassOf("ValueType")) |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 234 | return AddMatcher(new CheckValueTypeMatcher(LeafRec->getName())); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 235 | |
| 236 | if (LeafRec->isSubClassOf("CondCode")) |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 237 | return AddMatcher(new CheckCondCodeMatcher(LeafRec->getName())); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 238 | |
| 239 | if (LeafRec->isSubClassOf("ComplexPattern")) { |
Chris Lattner | c2676b2 | 2010-02-17 00:11:30 +0000 | [diff] [blame] | 240 | // We can't model ComplexPattern uses that don't have their name taken yet. |
| 241 | // The OPC_CheckComplexPattern operation implicitly records the results. |
| 242 | if (N->getName().empty()) { |
Chris Lattner | 53a2f60 | 2010-02-16 23:16:25 +0000 | [diff] [blame] | 243 | errs() << "We expect complex pattern uses to have names: " << *N << "\n"; |
| 244 | exit(1); |
| 245 | } |
Chris Lattner | 1f2ed5f | 2010-02-22 22:18:05 +0000 | [diff] [blame] | 246 | |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 247 | // Handle complex pattern. |
| 248 | const ComplexPattern &CP = CGP.getComplexPattern(LeafRec); |
Chris Lattner | 1f2ed5f | 2010-02-22 22:18:05 +0000 | [diff] [blame] | 249 | |
| 250 | // If we're at the root of the pattern, we have to check that the opcode |
| 251 | // is a one of the ones requested to be matched. |
| 252 | if (N == Pattern.getSrcPattern()) { |
| 253 | const std::vector<Record*> &OpNodes = CP.getRootNodes(); |
| 254 | if (OpNodes.size() == 1) { |
| 255 | StringRef OpName = CGP.getSDNodeInfo(OpNodes[0]).getEnumName(); |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 256 | AddMatcher(new CheckOpcodeMatcher(OpName)); |
Chris Lattner | 1f2ed5f | 2010-02-22 22:18:05 +0000 | [diff] [blame] | 257 | } else if (!OpNodes.empty()) { |
Chris Lattner | 12a667c | 2010-02-22 22:30:37 +0000 | [diff] [blame] | 258 | SmallVector<StringRef, 4> OpNames; |
| 259 | for (unsigned i = 0, e = OpNodes.size(); i != e; i++) |
| 260 | OpNames.push_back(CGP.getSDNodeInfo(OpNodes[i]).getEnumName()); |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 261 | AddMatcher(new CheckMultiOpcodeMatcher(OpNames.data(), |
Chris Lattner | 12a667c | 2010-02-22 22:30:37 +0000 | [diff] [blame] | 262 | OpNames.size())); |
Chris Lattner | 1f2ed5f | 2010-02-22 22:18:05 +0000 | [diff] [blame] | 263 | } |
| 264 | } |
| 265 | |
Chris Lattner | 20df242 | 2010-02-22 23:33:44 +0000 | [diff] [blame] | 266 | // Emit a CheckComplexPat operation, which does the match (aborting if it |
| 267 | // fails) and pushes the matched operands onto the recorded nodes list. |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 268 | AddMatcher(new CheckComplexPatMatcher(CP)); |
Chris Lattner | 8dc4f2b | 2010-02-17 06:08:25 +0000 | [diff] [blame] | 269 | |
Chris Lattner | 20df242 | 2010-02-22 23:33:44 +0000 | [diff] [blame] | 270 | // Record the right number of operands. |
| 271 | NextRecordedOperandNo += CP.getNumOperands(); |
| 272 | if (CP.hasProperty(SDNPHasChain)) |
| 273 | ++NextRecordedOperandNo; // Chained node operand. |
| 274 | |
Chris Lattner | 8dc4f2b | 2010-02-17 06:08:25 +0000 | [diff] [blame] | 275 | // If the complex pattern has a chain, then we need to keep track of the |
| 276 | // fact that we just recorded a chain input. The chain input will be |
| 277 | // matched as the last operand of the predicate if it was successful. |
| 278 | if (CP.hasProperty(SDNPHasChain)) { |
| 279 | // It is the last operand recorded. |
| 280 | assert(NextRecordedOperandNo > 1 && |
| 281 | "Should have recorded input/result chains at least!"); |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 282 | MatchedChainNodes.push_back(NextRecordedOperandNo-1); |
Chris Lattner | 9a747f1 | 2010-02-17 06:23:39 +0000 | [diff] [blame] | 283 | |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 284 | // If we need to check chains, do so, see comment for |
Chris Lattner | 9a747f1 | 2010-02-17 06:23:39 +0000 | [diff] [blame] | 285 | // "NodeHasProperty(SDNPHasChain" below. |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 286 | if (MatchedChainNodes.size() > 1) { |
| 287 | // FIXME2: This is broken, we should eliminate this nonsense completely, |
Chris Lattner | 9a747f1 | 2010-02-17 06:23:39 +0000 | [diff] [blame] | 288 | // but we want to produce the same selections that the old matcher does |
| 289 | // for now. |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 290 | unsigned PrevOp = MatchedChainNodes[MatchedChainNodes.size()-2]; |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 291 | AddMatcher(new CheckChainCompatibleMatcher(PrevOp)); |
Chris Lattner | 9a747f1 | 2010-02-17 06:23:39 +0000 | [diff] [blame] | 292 | } |
Chris Lattner | 8dc4f2b | 2010-02-17 06:08:25 +0000 | [diff] [blame] | 293 | } |
Chris Lattner | 02f7358 | 2010-02-24 05:33:42 +0000 | [diff] [blame] | 294 | |
| 295 | // TODO: Complex patterns can't have output flags, if they did, we'd want |
| 296 | // to record them. |
Chris Lattner | 8dc4f2b | 2010-02-17 06:08:25 +0000 | [diff] [blame] | 297 | return; |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | errs() << "Unknown leaf kind: " << *N << "\n"; |
| 301 | abort(); |
| 302 | } |
| 303 | |
| 304 | void MatcherGen::EmitOperatorMatchCode(const TreePatternNode *N, |
| 305 | TreePatternNode *NodeNoTypes) { |
| 306 | assert(!N->isLeaf() && "Not an operator?"); |
| 307 | const SDNodeInfo &CInfo = CGP.getSDNodeInfo(N->getOperator()); |
| 308 | |
| 309 | // If this is an 'and R, 1234' where the operation is AND/OR and the RHS is |
| 310 | // a constant without a predicate fn that has more that one bit set, handle |
| 311 | // this as a special case. This is usually for targets that have special |
| 312 | // handling of certain large constants (e.g. alpha with it's 8/16/32-bit |
| 313 | // handling stuff). Using these instructions is often far more efficient |
| 314 | // than materializing the constant. Unfortunately, both the instcombiner |
| 315 | // and the dag combiner can often infer that bits are dead, and thus drop |
| 316 | // them from the mask in the dag. For example, it might turn 'AND X, 255' |
| 317 | // into 'AND X, 254' if it knows the low bit is set. Emit code that checks |
| 318 | // to handle this. |
| 319 | if ((N->getOperator()->getName() == "and" || |
| 320 | N->getOperator()->getName() == "or") && |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 321 | N->getChild(1)->isLeaf() && N->getChild(1)->getPredicateFns().empty() && |
| 322 | N->getPredicateFns().empty()) { |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 323 | if (IntInit *II = dynamic_cast<IntInit*>(N->getChild(1)->getLeafValue())) { |
| 324 | if (!isPowerOf2_32(II->getValue())) { // Don't bother with single bits. |
| 325 | if (N->getOperator()->getName() == "and") |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 326 | AddMatcher(new CheckAndImmMatcher(II->getValue())); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 327 | else |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 328 | AddMatcher(new CheckOrImmMatcher(II->getValue())); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 329 | |
| 330 | // Match the LHS of the AND as appropriate. |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 331 | AddMatcher(new MoveChildMatcher(0)); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 332 | EmitMatchCode(N->getChild(0), NodeNoTypes->getChild(0)); |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 333 | AddMatcher(new MoveParentMatcher()); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 334 | return; |
| 335 | } |
| 336 | } |
| 337 | } |
| 338 | |
| 339 | // Check that the current opcode lines up. |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 340 | AddMatcher(new CheckOpcodeMatcher(CInfo.getEnumName())); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 341 | |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 342 | // If there are node predicates for this node, generate their checks. |
| 343 | for (unsigned i = 0, e = N->getPredicateFns().size(); i != e; ++i) |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 344 | AddMatcher(new CheckPredicateMatcher(N->getPredicateFns()[i])); |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 345 | |
| 346 | |
| 347 | // If this node has memory references (i.e. is a load or store), tell the |
| 348 | // interpreter to capture them in the memref array. |
| 349 | if (N->NodeHasProperty(SDNPMemOperand, CGP)) |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 350 | AddMatcher(new RecordMemRefMatcher()); |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 351 | |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 352 | // If this node has a chain, then the chain is operand #0 is the SDNode, and |
| 353 | // the child numbers of the node are all offset by one. |
| 354 | unsigned OpNo = 0; |
Chris Lattner | 6bc1b51 | 2010-02-16 19:19:58 +0000 | [diff] [blame] | 355 | if (N->NodeHasProperty(SDNPHasChain, CGP)) { |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 356 | // Record the node and remember it in our chained nodes list. |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 357 | AddMatcher(new RecordMatcher("'" + N->getOperator()->getName() + |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 358 | "' chained node")); |
Chris Lattner | 785d16f | 2010-02-17 02:16:19 +0000 | [diff] [blame] | 359 | // Remember all of the input chains our pattern will match. |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 360 | MatchedChainNodes.push_back(NextRecordedOperandNo++); |
Chris Lattner | 785d16f | 2010-02-17 02:16:19 +0000 | [diff] [blame] | 361 | |
| 362 | // If this is the second (e.g. indbr(load) or store(add(load))) or third |
| 363 | // input chain (e.g. (store (add (load, load))) from msp430) we need to make |
| 364 | // sure that folding the chain won't induce cycles in the DAG. This could |
| 365 | // happen if there were an intermediate node between the indbr and load, for |
| 366 | // example. |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 367 | if (MatchedChainNodes.size() > 1) { |
| 368 | // FIXME2: This is broken, we should eliminate this nonsense completely, |
Chris Lattner | 9a747f1 | 2010-02-17 06:23:39 +0000 | [diff] [blame] | 369 | // but we want to produce the same selections that the old matcher does |
| 370 | // for now. |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 371 | unsigned PrevOp = MatchedChainNodes[MatchedChainNodes.size()-2]; |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 372 | AddMatcher(new CheckChainCompatibleMatcher(PrevOp)); |
Chris Lattner | 9a747f1 | 2010-02-17 06:23:39 +0000 | [diff] [blame] | 373 | } |
Chris Lattner | 785d16f | 2010-02-17 02:16:19 +0000 | [diff] [blame] | 374 | |
Chris Lattner | 2f7ecde | 2010-02-17 01:34:15 +0000 | [diff] [blame] | 375 | // Don't look at the input chain when matching the tree pattern to the |
| 376 | // SDNode. |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 377 | OpNo = 1; |
| 378 | |
Chris Lattner | 6bc1b51 | 2010-02-16 19:19:58 +0000 | [diff] [blame] | 379 | // If this node is not the root and the subtree underneath it produces a |
| 380 | // chain, then the result of matching the node is also produce a chain. |
| 381 | // Beyond that, this means that we're also folding (at least) the root node |
| 382 | // into the node that produce the chain (for example, matching |
| 383 | // "(add reg, (load ptr))" as a add_with_memory on X86). This is |
| 384 | // problematic, if the 'reg' node also uses the load (say, its chain). |
| 385 | // Graphically: |
| 386 | // |
| 387 | // [LD] |
| 388 | // ^ ^ |
| 389 | // | \ DAG's like cheese. |
| 390 | // / | |
| 391 | // / [YY] |
| 392 | // | ^ |
| 393 | // [XX]--/ |
| 394 | // |
| 395 | // It would be invalid to fold XX and LD. In this case, folding the two |
| 396 | // nodes together would induce a cycle in the DAG, making it a 'cyclic DAG' |
| 397 | // To prevent this, we emit a dynamic check for legality before allowing |
| 398 | // this to be folded. |
| 399 | // |
| 400 | const TreePatternNode *Root = Pattern.getSrcPattern(); |
| 401 | if (N != Root) { // Not the root of the pattern. |
Chris Lattner | e39650a | 2010-02-16 06:10:58 +0000 | [diff] [blame] | 402 | // If there is a node between the root and this node, then we definitely |
| 403 | // need to emit the check. |
| 404 | bool NeedCheck = !Root->hasChild(N); |
| 405 | |
| 406 | // If it *is* an immediate child of the root, we can still need a check if |
| 407 | // the root SDNode has multiple inputs. For us, this means that it is an |
| 408 | // intrinsic, has multiple operands, or has other inputs like chain or |
| 409 | // flag). |
| 410 | if (!NeedCheck) { |
| 411 | const SDNodeInfo &PInfo = CGP.getSDNodeInfo(Root->getOperator()); |
| 412 | NeedCheck = |
| 413 | Root->getOperator() == CGP.get_intrinsic_void_sdnode() || |
| 414 | Root->getOperator() == CGP.get_intrinsic_w_chain_sdnode() || |
| 415 | Root->getOperator() == CGP.get_intrinsic_wo_chain_sdnode() || |
| 416 | PInfo.getNumOperands() > 1 || |
| 417 | PInfo.hasProperty(SDNPHasChain) || |
| 418 | PInfo.hasProperty(SDNPInFlag) || |
| 419 | PInfo.hasProperty(SDNPOptInFlag); |
| 420 | } |
| 421 | |
| 422 | if (NeedCheck) |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 423 | AddMatcher(new CheckFoldableChainNodeMatcher()); |
Chris Lattner | e39650a | 2010-02-16 06:10:58 +0000 | [diff] [blame] | 424 | } |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 425 | } |
Chris Lattner | 02f7358 | 2010-02-24 05:33:42 +0000 | [diff] [blame] | 426 | |
| 427 | // If this node has an output flag and isn't the root, remember it. |
| 428 | if (N->NodeHasProperty(SDNPOutFlag, CGP) && |
| 429 | N != Pattern.getSrcPattern()) { |
| 430 | // TODO: This redundantly records nodes with both flags and chains. |
| 431 | |
| 432 | // Record the node and remember it in our chained nodes list. |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 433 | AddMatcher(new RecordMatcher("'" + N->getOperator()->getName() + |
Chris Lattner | 02f7358 | 2010-02-24 05:33:42 +0000 | [diff] [blame] | 434 | "' flag output node")); |
| 435 | // Remember all of the nodes with output flags our pattern will match. |
| 436 | MatchedFlagResultNodes.push_back(NextRecordedOperandNo++); |
| 437 | } |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 438 | |
| 439 | // If this node is known to have an input flag or if it *might* have an input |
| 440 | // flag, capture it as the flag input of the pattern. |
| 441 | if (N->NodeHasProperty(SDNPOptInFlag, CGP) || |
| 442 | N->NodeHasProperty(SDNPInFlag, CGP)) |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 443 | AddMatcher(new CaptureFlagInputMatcher()); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 444 | |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 445 | for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) { |
| 446 | // Get the code suitable for matching this child. Move to the child, check |
| 447 | // it then move back to the parent. |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 448 | AddMatcher(new MoveChildMatcher(OpNo)); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 449 | EmitMatchCode(N->getChild(i), NodeNoTypes->getChild(i)); |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 450 | AddMatcher(new MoveParentMatcher()); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 451 | } |
| 452 | } |
| 453 | |
| 454 | |
| 455 | void MatcherGen::EmitMatchCode(const TreePatternNode *N, |
| 456 | TreePatternNode *NodeNoTypes) { |
| 457 | // If N and NodeNoTypes don't agree on a type, then this is a case where we |
| 458 | // need to do a type check. Emit the check, apply the tyep to NodeNoTypes and |
| 459 | // reinfer any correlated types. |
| 460 | if (NodeNoTypes->getExtTypes() != N->getExtTypes()) { |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 461 | AddMatcher(new CheckTypeMatcher(N->getTypeNum(0))); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 462 | NodeNoTypes->setTypes(N->getExtTypes()); |
| 463 | InferPossibleTypes(); |
| 464 | } |
| 465 | |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 466 | // If this node has a name associated with it, capture it in VariableMap. If |
| 467 | // we already saw this in the pattern, emit code to verify dagness. |
| 468 | if (!N->getName().empty()) { |
| 469 | unsigned &VarMapEntry = VariableMap[N->getName()]; |
| 470 | if (VarMapEntry == 0) { |
Chris Lattner | 20df242 | 2010-02-22 23:33:44 +0000 | [diff] [blame] | 471 | // If it is a named node, we must emit a 'Record' opcode. |
| 472 | VarMapEntry = ++NextRecordedOperandNo; |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 473 | AddMatcher(new RecordMatcher("$" + N->getName())); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 474 | } else { |
| 475 | // If we get here, this is a second reference to a specific name. Since |
| 476 | // we already have checked that the first reference is valid, we don't |
| 477 | // have to recursively match it, just check that it's the same as the |
| 478 | // previously named thing. |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 479 | AddMatcher(new CheckSameMatcher(VarMapEntry-1)); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 480 | return; |
| 481 | } |
| 482 | } |
| 483 | |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 484 | if (N->isLeaf()) |
| 485 | EmitLeafMatchCode(N); |
| 486 | else |
| 487 | EmitOperatorMatchCode(N, NodeNoTypes); |
| 488 | } |
| 489 | |
| 490 | void MatcherGen::EmitMatcherCode() { |
| 491 | // If the pattern has a predicate on it (e.g. only enabled when a subtarget |
| 492 | // feature is around, do the check). |
Chris Lattner | 2a1263b | 2010-02-25 00:03:03 +0000 | [diff] [blame] | 493 | // FIXME: This should get emitted after the match code below to encourage |
| 494 | // sharing. This can't happen until we get an X86ISD::AddrMode node made by |
| 495 | // dag combine, eliminating the horrible side-effect-full stuff from |
| 496 | // X86's MatchAddress. |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 497 | if (!Pattern.getPredicateCheck().empty()) |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 498 | AddMatcher(new |
| 499 | CheckPatternPredicateMatcher(Pattern.getPredicateCheck())); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 500 | |
| 501 | // Emit the matcher for the pattern structure and types. |
| 502 | EmitMatchCode(Pattern.getSrcPattern(), PatWithNoTypes); |
| 503 | } |
| 504 | |
| 505 | |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 506 | //===----------------------------------------------------------------------===// |
| 507 | // Node Result Generation |
| 508 | //===----------------------------------------------------------------------===// |
| 509 | |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 510 | void MatcherGen::EmitResultOfNamedOperand(const TreePatternNode *N, |
| 511 | SmallVectorImpl<unsigned> &ResultOps){ |
| 512 | assert(!N->getName().empty() && "Operand not named!"); |
| 513 | |
| 514 | unsigned SlotNo = getNamedArgumentSlot(N->getName()); |
| 515 | |
| 516 | // A reference to a complex pattern gets all of the results of the complex |
| 517 | // pattern's match. |
| 518 | if (const ComplexPattern *CP = N->getComplexPatternInfo(CGP)) { |
Chris Lattner | 20df242 | 2010-02-22 23:33:44 +0000 | [diff] [blame] | 519 | // The first slot entry is the node itself, the subsequent entries are the |
| 520 | // matched values. |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 521 | for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i) |
Chris Lattner | 20df242 | 2010-02-22 23:33:44 +0000 | [diff] [blame] | 522 | ResultOps.push_back(SlotNo+i+1); |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 523 | return; |
| 524 | } |
| 525 | |
| 526 | // If this is an 'imm' or 'fpimm' node, make sure to convert it to the target |
| 527 | // version of the immediate so that it doesn't get selected due to some other |
| 528 | // node use. |
| 529 | if (!N->isLeaf()) { |
| 530 | StringRef OperatorName = N->getOperator()->getName(); |
| 531 | if (OperatorName == "imm" || OperatorName == "fpimm") { |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 532 | AddMatcher(new EmitConvertToTargetMatcher(SlotNo)); |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 533 | ResultOps.push_back(NextRecordedOperandNo++); |
| 534 | return; |
| 535 | } |
| 536 | } |
| 537 | |
| 538 | ResultOps.push_back(SlotNo); |
| 539 | } |
| 540 | |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 541 | void MatcherGen::EmitResultLeafAsOperand(const TreePatternNode *N, |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 542 | SmallVectorImpl<unsigned> &ResultOps) { |
Chris Lattner | 845c042 | 2010-02-18 22:03:03 +0000 | [diff] [blame] | 543 | assert(N->isLeaf() && "Must be a leaf"); |
| 544 | |
| 545 | if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) { |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 546 | AddMatcher(new EmitIntegerMatcher(II->getValue(),N->getTypeNum(0))); |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 547 | ResultOps.push_back(NextRecordedOperandNo++); |
Chris Lattner | 845c042 | 2010-02-18 22:03:03 +0000 | [diff] [blame] | 548 | return; |
| 549 | } |
| 550 | |
| 551 | // If this is an explicit register reference, handle it. |
| 552 | if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) { |
| 553 | if (DI->getDef()->isSubClassOf("Register")) { |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 554 | AddMatcher(new EmitRegisterMatcher(DI->getDef(), |
Chris Lattner | 845c042 | 2010-02-18 22:03:03 +0000 | [diff] [blame] | 555 | N->getTypeNum(0))); |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 556 | ResultOps.push_back(NextRecordedOperandNo++); |
Chris Lattner | 845c042 | 2010-02-18 22:03:03 +0000 | [diff] [blame] | 557 | return; |
| 558 | } |
| 559 | |
| 560 | if (DI->getDef()->getName() == "zero_reg") { |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 561 | AddMatcher(new EmitRegisterMatcher(0, N->getTypeNum(0))); |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 562 | ResultOps.push_back(NextRecordedOperandNo++); |
Chris Lattner | 845c042 | 2010-02-18 22:03:03 +0000 | [diff] [blame] | 563 | return; |
| 564 | } |
| 565 | |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 566 | // Handle a reference to a register class. This is used |
| 567 | // in COPY_TO_SUBREG instructions. |
Chris Lattner | 845c042 | 2010-02-18 22:03:03 +0000 | [diff] [blame] | 568 | if (DI->getDef()->isSubClassOf("RegisterClass")) { |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 569 | std::string Value = getQualifiedName(DI->getDef()) + "RegClassID"; |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 570 | AddMatcher(new EmitStringIntegerMatcher(Value, MVT::i32)); |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 571 | ResultOps.push_back(NextRecordedOperandNo++); |
| 572 | return; |
Chris Lattner | 845c042 | 2010-02-18 22:03:03 +0000 | [diff] [blame] | 573 | } |
Chris Lattner | 845c042 | 2010-02-18 22:03:03 +0000 | [diff] [blame] | 574 | } |
| 575 | |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 576 | errs() << "unhandled leaf node: \n"; |
| 577 | N->dump(); |
| 578 | } |
| 579 | |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 580 | /// GetInstPatternNode - Get the pattern for an instruction. |
| 581 | /// |
| 582 | const TreePatternNode *MatcherGen:: |
| 583 | GetInstPatternNode(const DAGInstruction &Inst, const TreePatternNode *N) { |
| 584 | const TreePattern *InstPat = Inst.getPattern(); |
| 585 | |
| 586 | // FIXME2?: Assume actual pattern comes before "implicit". |
| 587 | TreePatternNode *InstPatNode; |
| 588 | if (InstPat) |
| 589 | InstPatNode = InstPat->getTree(0); |
| 590 | else if (/*isRoot*/ N == Pattern.getDstPattern()) |
| 591 | InstPatNode = Pattern.getSrcPattern(); |
| 592 | else |
| 593 | return 0; |
| 594 | |
| 595 | if (InstPatNode && !InstPatNode->isLeaf() && |
| 596 | InstPatNode->getOperator()->getName() == "set") |
| 597 | InstPatNode = InstPatNode->getChild(InstPatNode->getNumChildren()-1); |
| 598 | |
| 599 | return InstPatNode; |
| 600 | } |
| 601 | |
| 602 | void MatcherGen:: |
| 603 | EmitResultInstructionAsOperand(const TreePatternNode *N, |
| 604 | SmallVectorImpl<unsigned> &OutputOps) { |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 605 | Record *Op = N->getOperator(); |
| 606 | const CodeGenTarget &CGT = CGP.getTargetInfo(); |
| 607 | CodeGenInstruction &II = CGT.getInstruction(Op->getName()); |
| 608 | const DAGInstruction &Inst = CGP.getInstruction(Op); |
| 609 | |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 610 | // If we can, get the pattern for the instruction we're generating. We derive |
| 611 | // a variety of information from this pattern, such as whether it has a chain. |
| 612 | // |
| 613 | // FIXME2: This is extremely dubious for several reasons, not the least of |
| 614 | // which it gives special status to instructions with patterns that Pat<> |
| 615 | // nodes can't duplicate. |
| 616 | const TreePatternNode *InstPatNode = GetInstPatternNode(Inst, N); |
| 617 | |
| 618 | // NodeHasChain - Whether the instruction node we're creating takes chains. |
| 619 | bool NodeHasChain = InstPatNode && |
| 620 | InstPatNode->TreeHasProperty(SDNPHasChain, CGP); |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 621 | |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 622 | bool isRoot = N == Pattern.getDstPattern(); |
| 623 | |
Chris Lattner | 02f7358 | 2010-02-24 05:33:42 +0000 | [diff] [blame] | 624 | // TreeHasOutFlag - True if this tree has a flag. |
| 625 | bool TreeHasInFlag = false, TreeHasOutFlag = false; |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 626 | if (isRoot) { |
| 627 | const TreePatternNode *SrcPat = Pattern.getSrcPattern(); |
Chris Lattner | 02f7358 | 2010-02-24 05:33:42 +0000 | [diff] [blame] | 628 | TreeHasInFlag = SrcPat->TreeHasProperty(SDNPOptInFlag, CGP) || |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 629 | SrcPat->TreeHasProperty(SDNPInFlag, CGP); |
| 630 | |
| 631 | // FIXME2: this is checking the entire pattern, not just the node in |
| 632 | // question, doing this just for the root seems like a total hack. |
Chris Lattner | 02f7358 | 2010-02-24 05:33:42 +0000 | [diff] [blame] | 633 | TreeHasOutFlag = SrcPat->TreeHasProperty(SDNPOutFlag, CGP); |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 634 | } |
| 635 | |
| 636 | // NumResults - This is the number of results produced by the instruction in |
| 637 | // the "outs" list. |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 638 | unsigned NumResults = Inst.getNumResults(); |
| 639 | |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 640 | // Loop over all of the operands of the instruction pattern, emitting code |
| 641 | // to fill them all in. The node 'N' usually has number children equal to |
| 642 | // the number of input operands of the instruction. However, in cases |
| 643 | // where there are predicate operands for an instruction, we need to fill |
| 644 | // in the 'execute always' values. Match up the node operands to the |
| 645 | // instruction operands to do this. |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 646 | SmallVector<unsigned, 8> InstOps; |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 647 | for (unsigned ChildNo = 0, InstOpNo = NumResults, e = II.OperandList.size(); |
| 648 | InstOpNo != e; ++InstOpNo) { |
| 649 | |
| 650 | // Determine what to emit for this operand. |
| 651 | Record *OperandNode = II.OperandList[InstOpNo].Rec; |
| 652 | if ((OperandNode->isSubClassOf("PredicateOperand") || |
| 653 | OperandNode->isSubClassOf("OptionalDefOperand")) && |
| 654 | !CGP.getDefaultOperand(OperandNode).DefaultOps.empty()) { |
| 655 | // This is a predicate or optional def operand; emit the |
| 656 | // 'default ops' operands. |
| 657 | const DAGDefaultOperand &DefaultOp = |
| 658 | CGP.getDefaultOperand(II.OperandList[InstOpNo].Rec); |
| 659 | for (unsigned i = 0, e = DefaultOp.DefaultOps.size(); i != e; ++i) |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 660 | EmitResultOperand(DefaultOp.DefaultOps[i], InstOps); |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 661 | continue; |
| 662 | } |
| 663 | |
| 664 | // Otherwise this is a normal operand or a predicate operand without |
| 665 | // 'execute always'; emit it. |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 666 | EmitResultOperand(N->getChild(ChildNo), InstOps); |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 667 | ++ChildNo; |
| 668 | } |
| 669 | |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 670 | // Nodes that match patterns with (potentially multiple) chain inputs have to |
| 671 | // merge them together into a token factor. |
| 672 | if (NodeHasChain && !EmittedMergeInputChains) { |
| 673 | // FIXME2: Move this out of emitresult to a top level place. |
| 674 | assert(!MatchedChainNodes.empty() && |
| 675 | "How can this node have chain if no inputs do?"); |
| 676 | // Otherwise, we have to emit an operation to merge the input chains and |
| 677 | // set this as the current input chain. |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 678 | AddMatcher(new EmitMergeInputChainsMatcher |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 679 | (MatchedChainNodes.data(), MatchedChainNodes.size())); |
| 680 | EmittedMergeInputChains = true; |
| 681 | } |
| 682 | |
| 683 | // If this node has an input flag or explicitly specified input physregs, we |
| 684 | // need to add chained and flagged copyfromreg nodes and materialize the flag |
| 685 | // input. |
| 686 | if (isRoot && !PhysRegInputs.empty()) { |
| 687 | // Emit all of the CopyToReg nodes for the input physical registers. These |
| 688 | // occur in patterns like (mul:i8 AL:i8, GR8:i8:$src). |
| 689 | for (unsigned i = 0, e = PhysRegInputs.size(); i != e; ++i) |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 690 | AddMatcher(new EmitCopyToRegMatcher(PhysRegInputs[i].second, |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 691 | PhysRegInputs[i].first)); |
| 692 | // Even if the node has no other flag inputs, the resultant node must be |
| 693 | // flagged to the CopyFromReg nodes we just generated. |
Chris Lattner | 02f7358 | 2010-02-24 05:33:42 +0000 | [diff] [blame] | 694 | TreeHasInFlag = true; |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 695 | } |
| 696 | |
| 697 | // Result order: node results, chain, flags |
| 698 | |
| 699 | // Determine the result types. |
| 700 | SmallVector<MVT::SimpleValueType, 4> ResultVTs; |
Chris Lattner | 565a6f9 | 2010-02-21 23:54:05 +0000 | [diff] [blame] | 701 | if (NumResults != 0 && N->getTypeNum(0) != MVT::isVoid) { |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 702 | // FIXME2: If the node has multiple results, we should add them. For now, |
| 703 | // preserve existing behavior?! |
| 704 | ResultVTs.push_back(N->getTypeNum(0)); |
| 705 | } |
| 706 | |
| 707 | |
| 708 | // If this is the root instruction of a pattern that has physical registers in |
| 709 | // its result pattern, add output VTs for them. For example, X86 has: |
| 710 | // (set AL, (mul ...)) |
| 711 | // This also handles implicit results like: |
| 712 | // (implicit EFLAGS) |
| 713 | if (isRoot && Pattern.getDstRegs().size() != 0) { |
| 714 | for (unsigned i = 0; i != Pattern.getDstRegs().size(); ++i) |
| 715 | if (Pattern.getDstRegs()[i]->isSubClassOf("Register")) |
| 716 | ResultVTs.push_back(getRegisterValueType(Pattern.getDstRegs()[i], CGT)); |
| 717 | } |
| 718 | if (NodeHasChain) |
| 719 | ResultVTs.push_back(MVT::Other); |
Chris Lattner | 02f7358 | 2010-02-24 05:33:42 +0000 | [diff] [blame] | 720 | if (TreeHasOutFlag) |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 721 | ResultVTs.push_back(MVT::Flag); |
| 722 | |
| 723 | // FIXME2: Instead of using the isVariadic flag on the instruction, we should |
| 724 | // have an SDNP that indicates variadicism. The TargetInstrInfo isVariadic |
| 725 | // property should be inferred from this when an instruction has a pattern. |
| 726 | int NumFixedArityOperands = -1; |
| 727 | if (isRoot && II.isVariadic) |
| 728 | NumFixedArityOperands = Pattern.getSrcPattern()->getNumChildren(); |
| 729 | |
| 730 | // If this is the root node and any of the nodes matched nodes in the input |
| 731 | // pattern have MemRefs in them, have the interpreter collect them and plop |
| 732 | // them onto this node. |
| 733 | // |
| 734 | // FIXME3: This is actively incorrect for result patterns where the root of |
| 735 | // the pattern is not the memory reference and is also incorrect when the |
| 736 | // result pattern has multiple memory-referencing instructions. For example, |
| 737 | // in the X86 backend, this pattern causes the memrefs to get attached to the |
| 738 | // CVTSS2SDrr instead of the MOVSSrm: |
| 739 | // |
| 740 | // def : Pat<(extloadf32 addr:$src), |
| 741 | // (CVTSS2SDrr (MOVSSrm addr:$src))>; |
| 742 | // |
| 743 | bool NodeHasMemRefs = |
| 744 | isRoot && Pattern.getSrcPattern()->TreeHasProperty(SDNPMemOperand, CGP); |
| 745 | |
| 746 | // FIXME: Eventually add a SelectNodeTo form. It works if the new node has a |
| 747 | // superset of the results of the old node, in the same places. E.g. turning |
| 748 | // (add (load)) -> add32rm is ok because result #0 is the result and result #1 |
| 749 | // is new. |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 750 | AddMatcher(new EmitNodeMatcher(II.Namespace+"::"+II.TheDef->getName(), |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 751 | ResultVTs.data(), ResultVTs.size(), |
| 752 | InstOps.data(), InstOps.size(), |
Chris Lattner | 02f7358 | 2010-02-24 05:33:42 +0000 | [diff] [blame] | 753 | NodeHasChain, TreeHasInFlag, |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 754 | NodeHasMemRefs,NumFixedArityOperands)); |
| 755 | |
Chris Lattner | 565a6f9 | 2010-02-21 23:54:05 +0000 | [diff] [blame] | 756 | // The non-chain and non-flag results of the newly emitted node get recorded. |
| 757 | for (unsigned i = 0, e = ResultVTs.size(); i != e; ++i) { |
| 758 | if (ResultVTs[i] == MVT::Other || ResultVTs[i] == MVT::Flag) break; |
Chris Lattner | 77f2e27 | 2010-02-21 06:03:07 +0000 | [diff] [blame] | 759 | OutputOps.push_back(NextRecordedOperandNo++); |
Chris Lattner | 565a6f9 | 2010-02-21 23:54:05 +0000 | [diff] [blame] | 760 | } |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 761 | |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 762 | // FIXME2: Kill off all the SelectionDAG::SelectNodeTo and getMachineNode |
| 763 | // variants. Call MorphNodeTo instead of SelectNodeTo. |
| 764 | } |
| 765 | |
| 766 | void MatcherGen:: |
| 767 | EmitResultSDNodeXFormAsOperand(const TreePatternNode *N, |
| 768 | SmallVectorImpl<unsigned> &ResultOps) { |
| 769 | assert(N->getOperator()->isSubClassOf("SDNodeXForm") && "Not SDNodeXForm?"); |
| 770 | |
| 771 | // Emit the operand. |
| 772 | SmallVector<unsigned, 8> InputOps; |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 773 | |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 774 | // FIXME2: Could easily generalize this to support multiple inputs and outputs |
| 775 | // to the SDNodeXForm. For now we just support one input and one output like |
| 776 | // the old instruction selector. |
| 777 | assert(N->getNumChildren() == 1); |
| 778 | EmitResultOperand(N->getChild(0), InputOps); |
| 779 | |
| 780 | // The input currently must have produced exactly one result. |
| 781 | assert(InputOps.size() == 1 && "Unexpected input to SDNodeXForm"); |
| 782 | |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 783 | AddMatcher(new EmitNodeXFormMatcher(InputOps[0], N->getOperator())); |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 784 | ResultOps.push_back(NextRecordedOperandNo++); |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 785 | } |
| 786 | |
| 787 | void MatcherGen::EmitResultOperand(const TreePatternNode *N, |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 788 | SmallVectorImpl<unsigned> &ResultOps) { |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 789 | // This is something selected from the pattern we matched. |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 790 | if (!N->getName().empty()) |
| 791 | return EmitResultOfNamedOperand(N, ResultOps); |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 792 | |
| 793 | if (N->isLeaf()) |
| 794 | return EmitResultLeafAsOperand(N, ResultOps); |
| 795 | |
| 796 | Record *OpRec = N->getOperator(); |
| 797 | if (OpRec->isSubClassOf("Instruction")) |
| 798 | return EmitResultInstructionAsOperand(N, ResultOps); |
| 799 | if (OpRec->isSubClassOf("SDNodeXForm")) |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 800 | return EmitResultSDNodeXFormAsOperand(N, ResultOps); |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 801 | errs() << "Unknown result node to emit code for: " << *N << '\n'; |
| 802 | throw std::string("Unknown node in result pattern!"); |
| 803 | } |
| 804 | |
| 805 | void MatcherGen::EmitResultCode() { |
Chris Lattner | 565a6f9 | 2010-02-21 23:54:05 +0000 | [diff] [blame] | 806 | // Codegen the root of the result pattern, capturing the resulting values. |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 807 | SmallVector<unsigned, 8> Ops; |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 808 | EmitResultOperand(Pattern.getDstPattern(), Ops); |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 809 | |
Chris Lattner | 565a6f9 | 2010-02-21 23:54:05 +0000 | [diff] [blame] | 810 | // At this point, we have however many values the result pattern produces. |
| 811 | // However, the input pattern might not need all of these. If there are |
| 812 | // excess values at the end (such as condition codes etc) just lop them off. |
| 813 | // This doesn't need to worry about flags or chains, just explicit results. |
| 814 | // |
| 815 | // FIXME2: This doesn't work because there is currently no way to get an |
| 816 | // accurate count of the # results the source pattern sets. This is because |
| 817 | // of the "parallel" construct in X86 land, which looks like this: |
| 818 | // |
| 819 | //def : Pat<(parallel (X86and_flag GR8:$src1, GR8:$src2), |
| 820 | // (implicit EFLAGS)), |
| 821 | // (AND8rr GR8:$src1, GR8:$src2)>; |
| 822 | // |
| 823 | // This idiom means to match the two-result node X86and_flag (which is |
| 824 | // declared as returning a single result, because we can't match multi-result |
| 825 | // nodes yet). In this case, we would have to know that the input has two |
| 826 | // results. However, mul8r is modelled exactly the same way, but without |
| 827 | // implicit defs included. The fix is to support multiple results directly |
| 828 | // and eliminate 'parallel'. |
| 829 | // |
| 830 | // FIXME2: When this is fixed, we should revert the terrible hack in the |
| 831 | // OPC_EmitNode code in the interpreter. |
| 832 | #if 0 |
| 833 | const TreePatternNode *Src = Pattern.getSrcPattern(); |
| 834 | unsigned NumSrcResults = Src->getTypeNum(0) != MVT::isVoid ? 1 : 0; |
| 835 | NumSrcResults += Pattern.getDstRegs().size(); |
| 836 | assert(Ops.size() >= NumSrcResults && "Didn't provide enough results"); |
| 837 | Ops.resize(NumSrcResults); |
| 838 | #endif |
Chris Lattner | 02f7358 | 2010-02-24 05:33:42 +0000 | [diff] [blame] | 839 | |
| 840 | // If the matched pattern covers nodes which define a flag result, emit a node |
| 841 | // that tells the matcher about them so that it can update their results. |
| 842 | if (!MatchedFlagResultNodes.empty()) |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 843 | AddMatcher(new MarkFlagResultsMatcher(MatchedFlagResultNodes.data(), |
Chris Lattner | 02f7358 | 2010-02-24 05:33:42 +0000 | [diff] [blame] | 844 | MatchedFlagResultNodes.size())); |
| 845 | |
Chris Lattner | 565a6f9 | 2010-02-21 23:54:05 +0000 | [diff] [blame] | 846 | |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 847 | // We know that the resulting pattern has exactly one result/ |
| 848 | // FIXME2: why? what about something like (set a,b,c, (complexpat)) |
| 849 | // FIXME2: Implicit results should be pushed here I guess? |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 850 | AddMatcher(new CompleteMatchMatcher(Ops.data(), Ops.size(), Pattern)); |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 851 | } |
| 852 | |
| 853 | |
Chris Lattner | b21ba71 | 2010-02-25 02:04:40 +0000 | [diff] [blame^] | 854 | Matcher *llvm::ConvertPatternToMatcher(const PatternToMatch &Pattern, |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 855 | const CodeGenDAGPatterns &CGP) { |
| 856 | MatcherGen Gen(Pattern, CGP); |
| 857 | |
| 858 | // Generate the code for the matcher. |
| 859 | Gen.EmitMatcherCode(); |
| 860 | |
Chris Lattner | 8e946be | 2010-02-21 03:22:59 +0000 | [diff] [blame] | 861 | |
| 862 | // FIXME2: Kill extra MoveParent commands at the end of the matcher sequence. |
| 863 | // FIXME2: Split result code out to another table, and make the matcher end |
| 864 | // with an "Emit <index>" command. This allows result generation stuff to be |
| 865 | // shared and factored? |
| 866 | |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 867 | // If the match succeeds, then we generate Pattern. |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 868 | Gen.EmitResultCode(); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 869 | |
| 870 | // Unconditional match. |
Chris Lattner | b49985a | 2010-02-18 06:47:49 +0000 | [diff] [blame] | 871 | return Gen.GetMatcher(); |
Chris Lattner | da272d1 | 2010-02-15 08:04:42 +0000 | [diff] [blame] | 872 | } |
| 873 | |
| 874 | |
| 875 | |