blob: 0ea165cdfd46488037f8f9bf77f94bfa944ad22d [file] [log] [blame]
Chris Lattnerda272d12010-02-15 08:04:42 +00001//===- 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 Lattner785d16f2010-02-17 02:16:19 +000013#include "llvm/ADT/SmallVector.h"
Chris Lattnerda272d12010-02-15 08:04:42 +000014#include "llvm/ADT/StringMap.h"
Chris Lattner8e946be2010-02-21 03:22:59 +000015#include <utility>
Chris Lattnerda272d12010-02-15 08:04:42 +000016using namespace llvm;
17
Chris Lattnerc94fa4c2010-02-19 00:27:40 +000018
Chris Lattner8e946be2010-02-21 03:22:59 +000019/// 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.
22static 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 Lattnerc94fa4c2010-02-19 00:27:40 +000038 }
Chris Lattner8e946be2010-02-21 03:22:59 +000039
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
50namespace {
Chris Lattnerda272d12010-02-15 08:04:42 +000051 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 Lattnerc94fa4c2010-02-19 00:27:40 +000064
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 Lattnerda272d12010-02-15 08:04:42 +000068 unsigned NextRecordedOperandNo;
69
Chris Lattner8e946be2010-02-21 03:22:59 +000070 /// 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;
73
74 /// PhysRegInputs - List list has an entry for each explicitly specified
75 /// physreg input to the pattern. The first elt is the Register node, the
76 /// second is the recorded slot number the input pattern match saved it in.
77 SmallVector<std::pair<Record*, unsigned>, 2> PhysRegInputs;
78
79 /// EmittedMergeInputChains - For nodes that match patterns involving
80 /// chains, is set to true if we emitted the "MergeInputChains" operation.
81 bool EmittedMergeInputChains;
Chris Lattner785d16f2010-02-17 02:16:19 +000082
83 /// Matcher - This is the top level of the generated matcher, the result.
Chris Lattner8ef9c792010-02-18 02:49:24 +000084 MatcherNode *Matcher;
Chris Lattner785d16f2010-02-17 02:16:19 +000085
86 /// CurPredicate - As we emit matcher nodes, this points to the latest check
Chris Lattnerbd8227f2010-02-18 02:53:41 +000087 /// which should have future checks stuck into its Next position.
Chris Lattner8ef9c792010-02-18 02:49:24 +000088 MatcherNode *CurPredicate;
Chris Lattnerda272d12010-02-15 08:04:42 +000089 public:
90 MatcherGen(const PatternToMatch &pattern, const CodeGenDAGPatterns &cgp);
91
92 ~MatcherGen() {
93 delete PatWithNoTypes;
94 }
95
96 void EmitMatcherCode();
Chris Lattnerb49985a2010-02-18 06:47:49 +000097 void EmitResultCode();
Chris Lattnerda272d12010-02-15 08:04:42 +000098
Chris Lattner8ef9c792010-02-18 02:49:24 +000099 MatcherNode *GetMatcher() const { return Matcher; }
100 MatcherNode *GetCurPredicate() const { return CurPredicate; }
Chris Lattnerda272d12010-02-15 08:04:42 +0000101 private:
Chris Lattner8ef9c792010-02-18 02:49:24 +0000102 void AddMatcherNode(MatcherNode *NewNode);
Chris Lattnerda272d12010-02-15 08:04:42 +0000103 void InferPossibleTypes();
Chris Lattnerb49985a2010-02-18 06:47:49 +0000104
105 // Matcher Generation.
Chris Lattnerda272d12010-02-15 08:04:42 +0000106 void EmitMatchCode(const TreePatternNode *N, TreePatternNode *NodeNoTypes);
107 void EmitLeafMatchCode(const TreePatternNode *N);
108 void EmitOperatorMatchCode(const TreePatternNode *N,
109 TreePatternNode *NodeNoTypes);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000110
111 // Result Code Generation.
Chris Lattner8e946be2010-02-21 03:22:59 +0000112 unsigned getNamedArgumentSlot(StringRef Name) {
113 unsigned VarMapEntry = VariableMap[Name];
114 assert(VarMapEntry != 0 &&
115 "Variable referenced but not defined and not caught earlier!");
116 return VarMapEntry-1;
117 }
118
119 /// GetInstPatternNode - Get the pattern for an instruction.
120 const TreePatternNode *GetInstPatternNode(const DAGInstruction &Ins,
121 const TreePatternNode *N);
122
Chris Lattnerb49985a2010-02-18 06:47:49 +0000123 void EmitResultOperand(const TreePatternNode *N,
Chris Lattner8e946be2010-02-21 03:22:59 +0000124 SmallVectorImpl<unsigned> &ResultOps);
125 void EmitResultOfNamedOperand(const TreePatternNode *N,
126 SmallVectorImpl<unsigned> &ResultOps);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000127 void EmitResultLeafAsOperand(const TreePatternNode *N,
Chris Lattner8e946be2010-02-21 03:22:59 +0000128 SmallVectorImpl<unsigned> &ResultOps);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000129 void EmitResultInstructionAsOperand(const TreePatternNode *N,
Chris Lattner8e946be2010-02-21 03:22:59 +0000130 SmallVectorImpl<unsigned> &ResultOps);
131 void EmitResultSDNodeXFormAsOperand(const TreePatternNode *N,
132 SmallVectorImpl<unsigned> &ResultOps);
133 };
Chris Lattnerda272d12010-02-15 08:04:42 +0000134
135} // end anon namespace.
136
137MatcherGen::MatcherGen(const PatternToMatch &pattern,
138 const CodeGenDAGPatterns &cgp)
Chris Lattner853b9192010-02-19 00:33:13 +0000139: Pattern(pattern), CGP(cgp), NextRecordedOperandNo(0),
Chris Lattner8e946be2010-02-21 03:22:59 +0000140 EmittedMergeInputChains(false), Matcher(0), CurPredicate(0) {
Chris Lattnerda272d12010-02-15 08:04:42 +0000141 // We need to produce the matcher tree for the patterns source pattern. To do
142 // this we need to match the structure as well as the types. To do the type
143 // matching, we want to figure out the fewest number of type checks we need to
144 // emit. For example, if there is only one integer type supported by a
145 // target, there should be no type comparisons at all for integer patterns!
146 //
147 // To figure out the fewest number of type checks needed, clone the pattern,
148 // remove the types, then perform type inference on the pattern as a whole.
149 // If there are unresolved types, emit an explicit check for those types,
150 // apply the type to the tree, then rerun type inference. Iterate until all
151 // types are resolved.
152 //
153 PatWithNoTypes = Pattern.getSrcPattern()->clone();
154 PatWithNoTypes->RemoveAllTypes();
155
156 // If there are types that are manifestly known, infer them.
157 InferPossibleTypes();
158}
159
160/// InferPossibleTypes - As we emit the pattern, we end up generating type
161/// checks and applying them to the 'PatWithNoTypes' tree. As we do this, we
162/// want to propagate implied types as far throughout the tree as possible so
163/// that we avoid doing redundant type checks. This does the type propagation.
164void MatcherGen::InferPossibleTypes() {
165 // TP - Get *SOME* tree pattern, we don't care which. It is only used for
166 // diagnostics, which we know are impossible at this point.
167 TreePattern &TP = *CGP.pf_begin()->second;
168
169 try {
170 bool MadeChange = true;
171 while (MadeChange)
172 MadeChange = PatWithNoTypes->ApplyTypeConstraints(TP,
173 true/*Ignore reg constraints*/);
174 } catch (...) {
175 errs() << "Type constraint application shouldn't fail!";
176 abort();
177 }
178}
179
180
181/// AddMatcherNode - Add a matcher node to the current graph we're building.
Chris Lattner8ef9c792010-02-18 02:49:24 +0000182void MatcherGen::AddMatcherNode(MatcherNode *NewNode) {
Chris Lattnerda272d12010-02-15 08:04:42 +0000183 if (CurPredicate != 0)
Chris Lattnerbd8227f2010-02-18 02:53:41 +0000184 CurPredicate->setNext(NewNode);
Chris Lattnerda272d12010-02-15 08:04:42 +0000185 else
186 Matcher = NewNode;
187 CurPredicate = NewNode;
188}
189
190
Chris Lattnerb49985a2010-02-18 06:47:49 +0000191//===----------------------------------------------------------------------===//
192// Pattern Match Generation
193//===----------------------------------------------------------------------===//
Chris Lattnerda272d12010-02-15 08:04:42 +0000194
195/// EmitLeafMatchCode - Generate matching code for leaf nodes.
196void MatcherGen::EmitLeafMatchCode(const TreePatternNode *N) {
197 assert(N->isLeaf() && "Not a leaf?");
Chris Lattner8e946be2010-02-21 03:22:59 +0000198
199 // If there are node predicates for this node, generate their checks.
200 for (unsigned i = 0, e = N->getPredicateFns().size(); i != e; ++i)
201 AddMatcherNode(new CheckPredicateMatcherNode(N->getPredicateFns()[i]));
202
Chris Lattnerda272d12010-02-15 08:04:42 +0000203 // Direct match against an integer constant.
204 if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue()))
205 return AddMatcherNode(new CheckIntegerMatcherNode(II->getValue()));
206
207 DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue());
208 if (DI == 0) {
209 errs() << "Unknown leaf kind: " << *DI << "\n";
210 abort();
211 }
212
213 Record *LeafRec = DI->getDef();
214 if (// Handle register references. Nothing to do here, they always match.
215 LeafRec->isSubClassOf("RegisterClass") ||
216 LeafRec->isSubClassOf("PointerLikeRegClass") ||
Chris Lattnerda272d12010-02-15 08:04:42 +0000217 // Place holder for SRCVALUE nodes. Nothing to do here.
218 LeafRec->getName() == "srcvalue")
219 return;
Chris Lattner8e946be2010-02-21 03:22:59 +0000220
221 // If we have a physreg reference like (mul gpr:$src, EAX) then we need to
222 // record the register
223 if (LeafRec->isSubClassOf("Register")) {
224 AddMatcherNode(new RecordMatcherNode("physreg input "+LeafRec->getName()));
225 PhysRegInputs.push_back(std::make_pair(LeafRec, NextRecordedOperandNo++));
226 return;
227 }
Chris Lattnerda272d12010-02-15 08:04:42 +0000228
229 if (LeafRec->isSubClassOf("ValueType"))
230 return AddMatcherNode(new CheckValueTypeMatcherNode(LeafRec->getName()));
231
232 if (LeafRec->isSubClassOf("CondCode"))
233 return AddMatcherNode(new CheckCondCodeMatcherNode(LeafRec->getName()));
234
235 if (LeafRec->isSubClassOf("ComplexPattern")) {
Chris Lattnerc2676b22010-02-17 00:11:30 +0000236 // We can't model ComplexPattern uses that don't have their name taken yet.
237 // The OPC_CheckComplexPattern operation implicitly records the results.
238 if (N->getName().empty()) {
Chris Lattner53a2f602010-02-16 23:16:25 +0000239 errs() << "We expect complex pattern uses to have names: " << *N << "\n";
240 exit(1);
241 }
Chris Lattner1f2ed5f2010-02-22 22:18:05 +0000242
Chris Lattnerda272d12010-02-15 08:04:42 +0000243 // Handle complex pattern.
244 const ComplexPattern &CP = CGP.getComplexPattern(LeafRec);
Chris Lattner1f2ed5f2010-02-22 22:18:05 +0000245
246 // If we're at the root of the pattern, we have to check that the opcode
247 // is a one of the ones requested to be matched.
248 if (N == Pattern.getSrcPattern()) {
249 const std::vector<Record*> &OpNodes = CP.getRootNodes();
250 if (OpNodes.size() == 1) {
251 StringRef OpName = CGP.getSDNodeInfo(OpNodes[0]).getEnumName();
252 AddMatcherNode(new CheckOpcodeMatcherNode(OpName));
253 } else if (!OpNodes.empty()) {
Chris Lattner12a667c2010-02-22 22:30:37 +0000254 SmallVector<StringRef, 4> OpNames;
255 for (unsigned i = 0, e = OpNodes.size(); i != e; i++)
256 OpNames.push_back(CGP.getSDNodeInfo(OpNodes[i]).getEnumName());
257 AddMatcherNode(new CheckMultiOpcodeMatcherNode(OpNames.data(),
258 OpNames.size()));
Chris Lattner1f2ed5f2010-02-22 22:18:05 +0000259 }
260 }
261
Chris Lattner8dc4f2b2010-02-17 06:08:25 +0000262 AddMatcherNode(new CheckComplexPatMatcherNode(CP));
263
264 // If the complex pattern has a chain, then we need to keep track of the
265 // fact that we just recorded a chain input. The chain input will be
266 // matched as the last operand of the predicate if it was successful.
267 if (CP.hasProperty(SDNPHasChain)) {
268 // It is the last operand recorded.
269 assert(NextRecordedOperandNo > 1 &&
270 "Should have recorded input/result chains at least!");
Chris Lattner8e946be2010-02-21 03:22:59 +0000271 MatchedChainNodes.push_back(NextRecordedOperandNo-1);
Chris Lattner9a747f12010-02-17 06:23:39 +0000272
Chris Lattner8e946be2010-02-21 03:22:59 +0000273 // If we need to check chains, do so, see comment for
Chris Lattner9a747f12010-02-17 06:23:39 +0000274 // "NodeHasProperty(SDNPHasChain" below.
Chris Lattner8e946be2010-02-21 03:22:59 +0000275 if (MatchedChainNodes.size() > 1) {
276 // FIXME2: This is broken, we should eliminate this nonsense completely,
Chris Lattner9a747f12010-02-17 06:23:39 +0000277 // but we want to produce the same selections that the old matcher does
278 // for now.
Chris Lattner8e946be2010-02-21 03:22:59 +0000279 unsigned PrevOp = MatchedChainNodes[MatchedChainNodes.size()-2];
Chris Lattner9a747f12010-02-17 06:23:39 +0000280 AddMatcherNode(new CheckChainCompatibleMatcherNode(PrevOp));
281 }
Chris Lattner8dc4f2b2010-02-17 06:08:25 +0000282 }
283 return;
Chris Lattnerda272d12010-02-15 08:04:42 +0000284 }
285
286 errs() << "Unknown leaf kind: " << *N << "\n";
287 abort();
288}
289
290void MatcherGen::EmitOperatorMatchCode(const TreePatternNode *N,
291 TreePatternNode *NodeNoTypes) {
292 assert(!N->isLeaf() && "Not an operator?");
293 const SDNodeInfo &CInfo = CGP.getSDNodeInfo(N->getOperator());
294
295 // If this is an 'and R, 1234' where the operation is AND/OR and the RHS is
296 // a constant without a predicate fn that has more that one bit set, handle
297 // this as a special case. This is usually for targets that have special
298 // handling of certain large constants (e.g. alpha with it's 8/16/32-bit
299 // handling stuff). Using these instructions is often far more efficient
300 // than materializing the constant. Unfortunately, both the instcombiner
301 // and the dag combiner can often infer that bits are dead, and thus drop
302 // them from the mask in the dag. For example, it might turn 'AND X, 255'
303 // into 'AND X, 254' if it knows the low bit is set. Emit code that checks
304 // to handle this.
305 if ((N->getOperator()->getName() == "and" ||
306 N->getOperator()->getName() == "or") &&
Chris Lattner8e946be2010-02-21 03:22:59 +0000307 N->getChild(1)->isLeaf() && N->getChild(1)->getPredicateFns().empty() &&
308 N->getPredicateFns().empty()) {
Chris Lattnerda272d12010-02-15 08:04:42 +0000309 if (IntInit *II = dynamic_cast<IntInit*>(N->getChild(1)->getLeafValue())) {
310 if (!isPowerOf2_32(II->getValue())) { // Don't bother with single bits.
311 if (N->getOperator()->getName() == "and")
312 AddMatcherNode(new CheckAndImmMatcherNode(II->getValue()));
313 else
314 AddMatcherNode(new CheckOrImmMatcherNode(II->getValue()));
315
316 // Match the LHS of the AND as appropriate.
317 AddMatcherNode(new MoveChildMatcherNode(0));
318 EmitMatchCode(N->getChild(0), NodeNoTypes->getChild(0));
319 AddMatcherNode(new MoveParentMatcherNode());
320 return;
321 }
322 }
323 }
324
325 // Check that the current opcode lines up.
326 AddMatcherNode(new CheckOpcodeMatcherNode(CInfo.getEnumName()));
327
Chris Lattner8e946be2010-02-21 03:22:59 +0000328 // If there are node predicates for this node, generate their checks.
329 for (unsigned i = 0, e = N->getPredicateFns().size(); i != e; ++i)
330 AddMatcherNode(new CheckPredicateMatcherNode(N->getPredicateFns()[i]));
331
332
333 // If this node has memory references (i.e. is a load or store), tell the
334 // interpreter to capture them in the memref array.
335 if (N->NodeHasProperty(SDNPMemOperand, CGP))
336 AddMatcherNode(new RecordMemRefMatcherNode());
337
Chris Lattnerda272d12010-02-15 08:04:42 +0000338 // If this node has a chain, then the chain is operand #0 is the SDNode, and
339 // the child numbers of the node are all offset by one.
340 unsigned OpNo = 0;
Chris Lattner6bc1b512010-02-16 19:19:58 +0000341 if (N->NodeHasProperty(SDNPHasChain, CGP)) {
Chris Lattner8e946be2010-02-21 03:22:59 +0000342 // Record the node and remember it in our chained nodes list.
Chris Lattner2f7ecde2010-02-17 01:34:15 +0000343 AddMatcherNode(new RecordMatcherNode("'" + N->getOperator()->getName() +
Chris Lattner8e946be2010-02-21 03:22:59 +0000344 "' chained node"));
Chris Lattner785d16f2010-02-17 02:16:19 +0000345 // Remember all of the input chains our pattern will match.
Chris Lattner8e946be2010-02-21 03:22:59 +0000346 MatchedChainNodes.push_back(NextRecordedOperandNo++);
Chris Lattner785d16f2010-02-17 02:16:19 +0000347
348 // If this is the second (e.g. indbr(load) or store(add(load))) or third
349 // input chain (e.g. (store (add (load, load))) from msp430) we need to make
350 // sure that folding the chain won't induce cycles in the DAG. This could
351 // happen if there were an intermediate node between the indbr and load, for
352 // example.
Chris Lattner8e946be2010-02-21 03:22:59 +0000353 if (MatchedChainNodes.size() > 1) {
354 // FIXME2: This is broken, we should eliminate this nonsense completely,
Chris Lattner9a747f12010-02-17 06:23:39 +0000355 // but we want to produce the same selections that the old matcher does
356 // for now.
Chris Lattner8e946be2010-02-21 03:22:59 +0000357 unsigned PrevOp = MatchedChainNodes[MatchedChainNodes.size()-2];
Chris Lattner9a747f12010-02-17 06:23:39 +0000358 AddMatcherNode(new CheckChainCompatibleMatcherNode(PrevOp));
359 }
Chris Lattner785d16f2010-02-17 02:16:19 +0000360
Chris Lattner2f7ecde2010-02-17 01:34:15 +0000361 // Don't look at the input chain when matching the tree pattern to the
362 // SDNode.
Chris Lattnerda272d12010-02-15 08:04:42 +0000363 OpNo = 1;
364
Chris Lattner6bc1b512010-02-16 19:19:58 +0000365 // If this node is not the root and the subtree underneath it produces a
366 // chain, then the result of matching the node is also produce a chain.
367 // Beyond that, this means that we're also folding (at least) the root node
368 // into the node that produce the chain (for example, matching
369 // "(add reg, (load ptr))" as a add_with_memory on X86). This is
370 // problematic, if the 'reg' node also uses the load (say, its chain).
371 // Graphically:
372 //
373 // [LD]
374 // ^ ^
375 // | \ DAG's like cheese.
376 // / |
377 // / [YY]
378 // | ^
379 // [XX]--/
380 //
381 // It would be invalid to fold XX and LD. In this case, folding the two
382 // nodes together would induce a cycle in the DAG, making it a 'cyclic DAG'
383 // To prevent this, we emit a dynamic check for legality before allowing
384 // this to be folded.
385 //
386 const TreePatternNode *Root = Pattern.getSrcPattern();
387 if (N != Root) { // Not the root of the pattern.
Chris Lattnere39650a2010-02-16 06:10:58 +0000388 // If there is a node between the root and this node, then we definitely
389 // need to emit the check.
390 bool NeedCheck = !Root->hasChild(N);
391
392 // If it *is* an immediate child of the root, we can still need a check if
393 // the root SDNode has multiple inputs. For us, this means that it is an
394 // intrinsic, has multiple operands, or has other inputs like chain or
395 // flag).
396 if (!NeedCheck) {
397 const SDNodeInfo &PInfo = CGP.getSDNodeInfo(Root->getOperator());
398 NeedCheck =
399 Root->getOperator() == CGP.get_intrinsic_void_sdnode() ||
400 Root->getOperator() == CGP.get_intrinsic_w_chain_sdnode() ||
401 Root->getOperator() == CGP.get_intrinsic_wo_chain_sdnode() ||
402 PInfo.getNumOperands() > 1 ||
403 PInfo.hasProperty(SDNPHasChain) ||
404 PInfo.hasProperty(SDNPInFlag) ||
405 PInfo.hasProperty(SDNPOptInFlag);
406 }
407
408 if (NeedCheck)
Chris Lattner21390d72010-02-16 19:15:55 +0000409 AddMatcherNode(new CheckFoldableChainNodeMatcherNode());
Chris Lattnere39650a2010-02-16 06:10:58 +0000410 }
Chris Lattnerda272d12010-02-15 08:04:42 +0000411 }
Chris Lattner8e946be2010-02-21 03:22:59 +0000412
413 // If this node is known to have an input flag or if it *might* have an input
414 // flag, capture it as the flag input of the pattern.
415 if (N->NodeHasProperty(SDNPOptInFlag, CGP) ||
416 N->NodeHasProperty(SDNPInFlag, CGP))
417 AddMatcherNode(new CaptureFlagInputMatcherNode());
Chris Lattnerda272d12010-02-15 08:04:42 +0000418
Chris Lattnerda272d12010-02-15 08:04:42 +0000419 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
420 // Get the code suitable for matching this child. Move to the child, check
421 // it then move back to the parent.
Chris Lattnerc642b842010-02-17 01:27:29 +0000422 AddMatcherNode(new MoveChildMatcherNode(OpNo));
Chris Lattnerda272d12010-02-15 08:04:42 +0000423 EmitMatchCode(N->getChild(i), NodeNoTypes->getChild(i));
424 AddMatcherNode(new MoveParentMatcherNode());
425 }
426}
427
428
429void MatcherGen::EmitMatchCode(const TreePatternNode *N,
430 TreePatternNode *NodeNoTypes) {
431 // If N and NodeNoTypes don't agree on a type, then this is a case where we
432 // need to do a type check. Emit the check, apply the tyep to NodeNoTypes and
433 // reinfer any correlated types.
434 if (NodeNoTypes->getExtTypes() != N->getExtTypes()) {
435 AddMatcherNode(new CheckTypeMatcherNode(N->getTypeNum(0)));
436 NodeNoTypes->setTypes(N->getExtTypes());
437 InferPossibleTypes();
438 }
439
Chris Lattnerda272d12010-02-15 08:04:42 +0000440 // If this node has a name associated with it, capture it in VariableMap. If
441 // we already saw this in the pattern, emit code to verify dagness.
442 if (!N->getName().empty()) {
443 unsigned &VarMapEntry = VariableMap[N->getName()];
444 if (VarMapEntry == 0) {
Chris Lattnere609a512010-02-17 00:31:50 +0000445 VarMapEntry = NextRecordedOperandNo+1;
446
447 unsigned NumRecorded;
Chris Lattner53a2f602010-02-16 23:16:25 +0000448
449 // If this is a complex pattern, the match operation for it will
450 // implicitly record all of the outputs of it (which may be more than
451 // one).
Chris Lattner8e946be2010-02-21 03:22:59 +0000452 if (const ComplexPattern *CP = N->getComplexPatternInfo(CGP)) {
Chris Lattner53a2f602010-02-16 23:16:25 +0000453 // Record the right number of operands.
Chris Lattner8e946be2010-02-21 03:22:59 +0000454 NumRecorded = CP->getNumOperands();
Chris Lattnere609a512010-02-17 00:31:50 +0000455
Chris Lattner8e946be2010-02-21 03:22:59 +0000456 if (CP->hasProperty(SDNPHasChain))
457 ++NumRecorded; // Chained node operand.
Chris Lattner53a2f602010-02-16 23:16:25 +0000458 } else {
459 // If it is a normal named node, we must emit a 'Record' opcode.
Chris Lattnerc642b842010-02-17 01:27:29 +0000460 AddMatcherNode(new RecordMatcherNode("$" + N->getName()));
Chris Lattnere609a512010-02-17 00:31:50 +0000461 NumRecorded = 1;
Chris Lattner53a2f602010-02-16 23:16:25 +0000462 }
Chris Lattnere609a512010-02-17 00:31:50 +0000463 NextRecordedOperandNo += NumRecorded;
Chris Lattner53a2f602010-02-16 23:16:25 +0000464
Chris Lattnerda272d12010-02-15 08:04:42 +0000465 } else {
466 // If we get here, this is a second reference to a specific name. Since
467 // we already have checked that the first reference is valid, we don't
468 // have to recursively match it, just check that it's the same as the
469 // previously named thing.
470 AddMatcherNode(new CheckSameMatcherNode(VarMapEntry-1));
471 return;
472 }
473 }
474
Chris Lattnerda272d12010-02-15 08:04:42 +0000475 if (N->isLeaf())
476 EmitLeafMatchCode(N);
477 else
478 EmitOperatorMatchCode(N, NodeNoTypes);
479}
480
481void MatcherGen::EmitMatcherCode() {
482 // If the pattern has a predicate on it (e.g. only enabled when a subtarget
483 // feature is around, do the check).
484 if (!Pattern.getPredicateCheck().empty())
485 AddMatcherNode(new
486 CheckPatternPredicateMatcherNode(Pattern.getPredicateCheck()));
487
488 // Emit the matcher for the pattern structure and types.
489 EmitMatchCode(Pattern.getSrcPattern(), PatWithNoTypes);
490}
491
492
Chris Lattnerb49985a2010-02-18 06:47:49 +0000493//===----------------------------------------------------------------------===//
494// Node Result Generation
495//===----------------------------------------------------------------------===//
496
Chris Lattner8e946be2010-02-21 03:22:59 +0000497void MatcherGen::EmitResultOfNamedOperand(const TreePatternNode *N,
498 SmallVectorImpl<unsigned> &ResultOps){
499 assert(!N->getName().empty() && "Operand not named!");
500
501 unsigned SlotNo = getNamedArgumentSlot(N->getName());
502
503 // A reference to a complex pattern gets all of the results of the complex
504 // pattern's match.
505 if (const ComplexPattern *CP = N->getComplexPatternInfo(CGP)) {
506 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
507 ResultOps.push_back(SlotNo+i);
508 return;
509 }
510
511 // If this is an 'imm' or 'fpimm' node, make sure to convert it to the target
512 // version of the immediate so that it doesn't get selected due to some other
513 // node use.
514 if (!N->isLeaf()) {
515 StringRef OperatorName = N->getOperator()->getName();
516 if (OperatorName == "imm" || OperatorName == "fpimm") {
517 AddMatcherNode(new EmitConvertToTargetMatcherNode(SlotNo));
518 ResultOps.push_back(NextRecordedOperandNo++);
519 return;
520 }
521 }
522
523 ResultOps.push_back(SlotNo);
524}
525
Chris Lattnerb49985a2010-02-18 06:47:49 +0000526void MatcherGen::EmitResultLeafAsOperand(const TreePatternNode *N,
Chris Lattner8e946be2010-02-21 03:22:59 +0000527 SmallVectorImpl<unsigned> &ResultOps) {
Chris Lattner845c0422010-02-18 22:03:03 +0000528 assert(N->isLeaf() && "Must be a leaf");
529
530 if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
531 AddMatcherNode(new EmitIntegerMatcherNode(II->getValue(),N->getTypeNum(0)));
Chris Lattner8e946be2010-02-21 03:22:59 +0000532 ResultOps.push_back(NextRecordedOperandNo++);
Chris Lattner845c0422010-02-18 22:03:03 +0000533 return;
534 }
535
536 // If this is an explicit register reference, handle it.
537 if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) {
538 if (DI->getDef()->isSubClassOf("Register")) {
539 AddMatcherNode(new EmitRegisterMatcherNode(DI->getDef(),
540 N->getTypeNum(0)));
Chris Lattner8e946be2010-02-21 03:22:59 +0000541 ResultOps.push_back(NextRecordedOperandNo++);
Chris Lattner845c0422010-02-18 22:03:03 +0000542 return;
543 }
544
545 if (DI->getDef()->getName() == "zero_reg") {
546 AddMatcherNode(new EmitRegisterMatcherNode(0, N->getTypeNum(0)));
Chris Lattner8e946be2010-02-21 03:22:59 +0000547 ResultOps.push_back(NextRecordedOperandNo++);
Chris Lattner845c0422010-02-18 22:03:03 +0000548 return;
549 }
550
Chris Lattner8e946be2010-02-21 03:22:59 +0000551 // Handle a reference to a register class. This is used
552 // in COPY_TO_SUBREG instructions.
Chris Lattner845c0422010-02-18 22:03:03 +0000553 if (DI->getDef()->isSubClassOf("RegisterClass")) {
Chris Lattner8e946be2010-02-21 03:22:59 +0000554 std::string Value = getQualifiedName(DI->getDef()) + "RegClassID";
Chris Lattner664012b2010-02-21 20:53:45 +0000555 AddMatcherNode(new EmitStringIntegerMatcherNode(Value, MVT::i32));
Chris Lattner8e946be2010-02-21 03:22:59 +0000556 ResultOps.push_back(NextRecordedOperandNo++);
557 return;
Chris Lattner845c0422010-02-18 22:03:03 +0000558 }
Chris Lattner845c0422010-02-18 22:03:03 +0000559 }
560
Chris Lattnerb49985a2010-02-18 06:47:49 +0000561 errs() << "unhandled leaf node: \n";
562 N->dump();
563}
564
Chris Lattner8e946be2010-02-21 03:22:59 +0000565/// GetInstPatternNode - Get the pattern for an instruction.
566///
567const TreePatternNode *MatcherGen::
568GetInstPatternNode(const DAGInstruction &Inst, const TreePatternNode *N) {
569 const TreePattern *InstPat = Inst.getPattern();
570
571 // FIXME2?: Assume actual pattern comes before "implicit".
572 TreePatternNode *InstPatNode;
573 if (InstPat)
574 InstPatNode = InstPat->getTree(0);
575 else if (/*isRoot*/ N == Pattern.getDstPattern())
576 InstPatNode = Pattern.getSrcPattern();
577 else
578 return 0;
579
580 if (InstPatNode && !InstPatNode->isLeaf() &&
581 InstPatNode->getOperator()->getName() == "set")
582 InstPatNode = InstPatNode->getChild(InstPatNode->getNumChildren()-1);
583
584 return InstPatNode;
585}
586
587void MatcherGen::
588EmitResultInstructionAsOperand(const TreePatternNode *N,
589 SmallVectorImpl<unsigned> &OutputOps) {
Chris Lattnerb49985a2010-02-18 06:47:49 +0000590 Record *Op = N->getOperator();
591 const CodeGenTarget &CGT = CGP.getTargetInfo();
592 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
593 const DAGInstruction &Inst = CGP.getInstruction(Op);
594
Chris Lattner8e946be2010-02-21 03:22:59 +0000595 // If we can, get the pattern for the instruction we're generating. We derive
596 // a variety of information from this pattern, such as whether it has a chain.
597 //
598 // FIXME2: This is extremely dubious for several reasons, not the least of
599 // which it gives special status to instructions with patterns that Pat<>
600 // nodes can't duplicate.
601 const TreePatternNode *InstPatNode = GetInstPatternNode(Inst, N);
602
603 // NodeHasChain - Whether the instruction node we're creating takes chains.
604 bool NodeHasChain = InstPatNode &&
605 InstPatNode->TreeHasProperty(SDNPHasChain, CGP);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000606
Chris Lattner8e946be2010-02-21 03:22:59 +0000607 bool isRoot = N == Pattern.getDstPattern();
608
609 // NodeHasOutFlag - True if this node has a flag.
610 bool NodeHasInFlag = false, NodeHasOutFlag = false;
611 if (isRoot) {
612 const TreePatternNode *SrcPat = Pattern.getSrcPattern();
613 NodeHasInFlag = SrcPat->TreeHasProperty(SDNPOptInFlag, CGP) ||
614 SrcPat->TreeHasProperty(SDNPInFlag, CGP);
615
616 // FIXME2: this is checking the entire pattern, not just the node in
617 // question, doing this just for the root seems like a total hack.
618 NodeHasOutFlag = SrcPat->TreeHasProperty(SDNPOutFlag, CGP);
619 }
620
621 // NumResults - This is the number of results produced by the instruction in
622 // the "outs" list.
Chris Lattnerb49985a2010-02-18 06:47:49 +0000623 unsigned NumResults = Inst.getNumResults();
624
Chris Lattnerb49985a2010-02-18 06:47:49 +0000625 // Loop over all of the operands of the instruction pattern, emitting code
626 // to fill them all in. The node 'N' usually has number children equal to
627 // the number of input operands of the instruction. However, in cases
628 // where there are predicate operands for an instruction, we need to fill
629 // in the 'execute always' values. Match up the node operands to the
630 // instruction operands to do this.
Chris Lattner8e946be2010-02-21 03:22:59 +0000631 SmallVector<unsigned, 8> InstOps;
Chris Lattnerb49985a2010-02-18 06:47:49 +0000632 for (unsigned ChildNo = 0, InstOpNo = NumResults, e = II.OperandList.size();
633 InstOpNo != e; ++InstOpNo) {
634
635 // Determine what to emit for this operand.
636 Record *OperandNode = II.OperandList[InstOpNo].Rec;
637 if ((OperandNode->isSubClassOf("PredicateOperand") ||
638 OperandNode->isSubClassOf("OptionalDefOperand")) &&
639 !CGP.getDefaultOperand(OperandNode).DefaultOps.empty()) {
640 // This is a predicate or optional def operand; emit the
641 // 'default ops' operands.
642 const DAGDefaultOperand &DefaultOp =
643 CGP.getDefaultOperand(II.OperandList[InstOpNo].Rec);
644 for (unsigned i = 0, e = DefaultOp.DefaultOps.size(); i != e; ++i)
Chris Lattner8e946be2010-02-21 03:22:59 +0000645 EmitResultOperand(DefaultOp.DefaultOps[i], InstOps);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000646 continue;
647 }
648
649 // Otherwise this is a normal operand or a predicate operand without
650 // 'execute always'; emit it.
Chris Lattner8e946be2010-02-21 03:22:59 +0000651 EmitResultOperand(N->getChild(ChildNo), InstOps);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000652 ++ChildNo;
653 }
654
Chris Lattner8e946be2010-02-21 03:22:59 +0000655 // Nodes that match patterns with (potentially multiple) chain inputs have to
656 // merge them together into a token factor.
657 if (NodeHasChain && !EmittedMergeInputChains) {
658 // FIXME2: Move this out of emitresult to a top level place.
659 assert(!MatchedChainNodes.empty() &&
660 "How can this node have chain if no inputs do?");
661 // Otherwise, we have to emit an operation to merge the input chains and
662 // set this as the current input chain.
663 AddMatcherNode(new EmitMergeInputChainsMatcherNode
664 (MatchedChainNodes.data(), MatchedChainNodes.size()));
665 EmittedMergeInputChains = true;
666 }
667
668 // If this node has an input flag or explicitly specified input physregs, we
669 // need to add chained and flagged copyfromreg nodes and materialize the flag
670 // input.
671 if (isRoot && !PhysRegInputs.empty()) {
672 // Emit all of the CopyToReg nodes for the input physical registers. These
673 // occur in patterns like (mul:i8 AL:i8, GR8:i8:$src).
674 for (unsigned i = 0, e = PhysRegInputs.size(); i != e; ++i)
675 AddMatcherNode(new EmitCopyToRegMatcherNode(PhysRegInputs[i].second,
676 PhysRegInputs[i].first));
677 // Even if the node has no other flag inputs, the resultant node must be
678 // flagged to the CopyFromReg nodes we just generated.
679 NodeHasInFlag = true;
680 }
681
682 // Result order: node results, chain, flags
683
684 // Determine the result types.
685 SmallVector<MVT::SimpleValueType, 4> ResultVTs;
Chris Lattner565a6f92010-02-21 23:54:05 +0000686 if (NumResults != 0 && N->getTypeNum(0) != MVT::isVoid) {
Chris Lattner8e946be2010-02-21 03:22:59 +0000687 // FIXME2: If the node has multiple results, we should add them. For now,
688 // preserve existing behavior?!
689 ResultVTs.push_back(N->getTypeNum(0));
690 }
691
692
693 // If this is the root instruction of a pattern that has physical registers in
694 // its result pattern, add output VTs for them. For example, X86 has:
695 // (set AL, (mul ...))
696 // This also handles implicit results like:
697 // (implicit EFLAGS)
698 if (isRoot && Pattern.getDstRegs().size() != 0) {
699 for (unsigned i = 0; i != Pattern.getDstRegs().size(); ++i)
700 if (Pattern.getDstRegs()[i]->isSubClassOf("Register"))
701 ResultVTs.push_back(getRegisterValueType(Pattern.getDstRegs()[i], CGT));
702 }
703 if (NodeHasChain)
704 ResultVTs.push_back(MVT::Other);
705 if (NodeHasOutFlag)
706 ResultVTs.push_back(MVT::Flag);
707
708 // FIXME2: Instead of using the isVariadic flag on the instruction, we should
709 // have an SDNP that indicates variadicism. The TargetInstrInfo isVariadic
710 // property should be inferred from this when an instruction has a pattern.
711 int NumFixedArityOperands = -1;
712 if (isRoot && II.isVariadic)
713 NumFixedArityOperands = Pattern.getSrcPattern()->getNumChildren();
714
715 // If this is the root node and any of the nodes matched nodes in the input
716 // pattern have MemRefs in them, have the interpreter collect them and plop
717 // them onto this node.
718 //
719 // FIXME3: This is actively incorrect for result patterns where the root of
720 // the pattern is not the memory reference and is also incorrect when the
721 // result pattern has multiple memory-referencing instructions. For example,
722 // in the X86 backend, this pattern causes the memrefs to get attached to the
723 // CVTSS2SDrr instead of the MOVSSrm:
724 //
725 // def : Pat<(extloadf32 addr:$src),
726 // (CVTSS2SDrr (MOVSSrm addr:$src))>;
727 //
728 bool NodeHasMemRefs =
729 isRoot && Pattern.getSrcPattern()->TreeHasProperty(SDNPMemOperand, CGP);
730
731 // FIXME: Eventually add a SelectNodeTo form. It works if the new node has a
732 // superset of the results of the old node, in the same places. E.g. turning
733 // (add (load)) -> add32rm is ok because result #0 is the result and result #1
734 // is new.
735 AddMatcherNode(new EmitNodeMatcherNode(II.Namespace+"::"+II.TheDef->getName(),
736 ResultVTs.data(), ResultVTs.size(),
737 InstOps.data(), InstOps.size(),
738 NodeHasChain, NodeHasInFlag,
739 NodeHasMemRefs,NumFixedArityOperands));
740
Chris Lattner565a6f92010-02-21 23:54:05 +0000741 // The non-chain and non-flag results of the newly emitted node get recorded.
742 for (unsigned i = 0, e = ResultVTs.size(); i != e; ++i) {
743 if (ResultVTs[i] == MVT::Other || ResultVTs[i] == MVT::Flag) break;
Chris Lattner77f2e272010-02-21 06:03:07 +0000744 OutputOps.push_back(NextRecordedOperandNo++);
Chris Lattner565a6f92010-02-21 23:54:05 +0000745 }
Chris Lattnerb49985a2010-02-18 06:47:49 +0000746
Chris Lattner8e946be2010-02-21 03:22:59 +0000747 // FIXME2: Kill off all the SelectionDAG::SelectNodeTo and getMachineNode
748 // variants. Call MorphNodeTo instead of SelectNodeTo.
749}
750
751void MatcherGen::
752EmitResultSDNodeXFormAsOperand(const TreePatternNode *N,
753 SmallVectorImpl<unsigned> &ResultOps) {
754 assert(N->getOperator()->isSubClassOf("SDNodeXForm") && "Not SDNodeXForm?");
755
756 // Emit the operand.
757 SmallVector<unsigned, 8> InputOps;
Chris Lattnerb49985a2010-02-18 06:47:49 +0000758
Chris Lattner8e946be2010-02-21 03:22:59 +0000759 // FIXME2: Could easily generalize this to support multiple inputs and outputs
760 // to the SDNodeXForm. For now we just support one input and one output like
761 // the old instruction selector.
762 assert(N->getNumChildren() == 1);
763 EmitResultOperand(N->getChild(0), InputOps);
764
765 // The input currently must have produced exactly one result.
766 assert(InputOps.size() == 1 && "Unexpected input to SDNodeXForm");
767
768 AddMatcherNode(new EmitNodeXFormMatcherNode(InputOps[0], N->getOperator()));
769 ResultOps.push_back(NextRecordedOperandNo++);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000770}
771
772void MatcherGen::EmitResultOperand(const TreePatternNode *N,
Chris Lattner8e946be2010-02-21 03:22:59 +0000773 SmallVectorImpl<unsigned> &ResultOps) {
Chris Lattnerb49985a2010-02-18 06:47:49 +0000774 // This is something selected from the pattern we matched.
Chris Lattner8e946be2010-02-21 03:22:59 +0000775 if (!N->getName().empty())
776 return EmitResultOfNamedOperand(N, ResultOps);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000777
778 if (N->isLeaf())
779 return EmitResultLeafAsOperand(N, ResultOps);
780
781 Record *OpRec = N->getOperator();
782 if (OpRec->isSubClassOf("Instruction"))
783 return EmitResultInstructionAsOperand(N, ResultOps);
784 if (OpRec->isSubClassOf("SDNodeXForm"))
Chris Lattner8e946be2010-02-21 03:22:59 +0000785 return EmitResultSDNodeXFormAsOperand(N, ResultOps);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000786 errs() << "Unknown result node to emit code for: " << *N << '\n';
787 throw std::string("Unknown node in result pattern!");
788}
789
790void MatcherGen::EmitResultCode() {
Chris Lattner565a6f92010-02-21 23:54:05 +0000791 // Codegen the root of the result pattern, capturing the resulting values.
Chris Lattner8e946be2010-02-21 03:22:59 +0000792 SmallVector<unsigned, 8> Ops;
Chris Lattnerb49985a2010-02-18 06:47:49 +0000793 EmitResultOperand(Pattern.getDstPattern(), Ops);
Chris Lattner8e946be2010-02-21 03:22:59 +0000794
Chris Lattner565a6f92010-02-21 23:54:05 +0000795 // At this point, we have however many values the result pattern produces.
796 // However, the input pattern might not need all of these. If there are
797 // excess values at the end (such as condition codes etc) just lop them off.
798 // This doesn't need to worry about flags or chains, just explicit results.
799 //
800 // FIXME2: This doesn't work because there is currently no way to get an
801 // accurate count of the # results the source pattern sets. This is because
802 // of the "parallel" construct in X86 land, which looks like this:
803 //
804 //def : Pat<(parallel (X86and_flag GR8:$src1, GR8:$src2),
805 // (implicit EFLAGS)),
806 // (AND8rr GR8:$src1, GR8:$src2)>;
807 //
808 // This idiom means to match the two-result node X86and_flag (which is
809 // declared as returning a single result, because we can't match multi-result
810 // nodes yet). In this case, we would have to know that the input has two
811 // results. However, mul8r is modelled exactly the same way, but without
812 // implicit defs included. The fix is to support multiple results directly
813 // and eliminate 'parallel'.
814 //
815 // FIXME2: When this is fixed, we should revert the terrible hack in the
816 // OPC_EmitNode code in the interpreter.
817#if 0
818 const TreePatternNode *Src = Pattern.getSrcPattern();
819 unsigned NumSrcResults = Src->getTypeNum(0) != MVT::isVoid ? 1 : 0;
820 NumSrcResults += Pattern.getDstRegs().size();
821 assert(Ops.size() >= NumSrcResults && "Didn't provide enough results");
822 Ops.resize(NumSrcResults);
823#endif
824
Chris Lattner8e946be2010-02-21 03:22:59 +0000825 // We know that the resulting pattern has exactly one result/
826 // FIXME2: why? what about something like (set a,b,c, (complexpat))
827 // FIXME2: Implicit results should be pushed here I guess?
Chris Lattner77f2e272010-02-21 06:03:07 +0000828 AddMatcherNode(new CompleteMatchMatcherNode(Ops.data(), Ops.size(), Pattern));
Chris Lattnerb49985a2010-02-18 06:47:49 +0000829}
830
831
Chris Lattnerda272d12010-02-15 08:04:42 +0000832MatcherNode *llvm::ConvertPatternToMatcher(const PatternToMatch &Pattern,
833 const CodeGenDAGPatterns &CGP) {
834 MatcherGen Gen(Pattern, CGP);
835
836 // Generate the code for the matcher.
837 Gen.EmitMatcherCode();
838
Chris Lattner8e946be2010-02-21 03:22:59 +0000839
840 // FIXME2: Kill extra MoveParent commands at the end of the matcher sequence.
841 // FIXME2: Split result code out to another table, and make the matcher end
842 // with an "Emit <index>" command. This allows result generation stuff to be
843 // shared and factored?
844
Chris Lattnerda272d12010-02-15 08:04:42 +0000845 // If the match succeeds, then we generate Pattern.
Chris Lattnerb49985a2010-02-18 06:47:49 +0000846 Gen.EmitResultCode();
Chris Lattnerda272d12010-02-15 08:04:42 +0000847
848 // Unconditional match.
Chris Lattnerb49985a2010-02-18 06:47:49 +0000849 return Gen.GetMatcher();
Chris Lattnerda272d12010-02-15 08:04:42 +0000850}
851
852
853