blob: e91fd1e7ddee0a703b3452d99f612e4a0351b0b9 [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"
Jim Grosbach4a6d7352011-03-11 02:19:02 +000012#include "CodeGenRegisters.h"
Jim Grosbach4a6d7352011-03-11 02:19:02 +000013#include "llvm/ADT/DenseMap.h"
Chris Lattner785d16f2010-02-17 02:16:19 +000014#include "llvm/ADT/SmallVector.h"
Chris Lattnerda272d12010-02-15 08:04:42 +000015#include "llvm/ADT/StringMap.h"
Chandler Carruth4ffd89f2012-12-04 10:37:14 +000016#include "llvm/TableGen/Error.h"
17#include "llvm/TableGen/Record.h"
Chris Lattner8e946be2010-02-21 03:22:59 +000018#include <utility>
Chris Lattnerda272d12010-02-15 08:04:42 +000019using namespace llvm;
20
Chris Lattnerc94fa4c2010-02-19 00:27:40 +000021
Chris Lattner8e946be2010-02-21 03:22:59 +000022/// getRegisterValueType - Look up and return the ValueType of the specified
23/// register. If the register is a member of multiple register classes which
24/// have different associated types, return MVT::Other.
25static MVT::SimpleValueType getRegisterValueType(Record *R,
26 const CodeGenTarget &T) {
27 bool FoundRC = false;
28 MVT::SimpleValueType VT = MVT::Other;
Jakob Stoklund Olesenae1920b2011-06-15 04:50:36 +000029 const CodeGenRegister *Reg = T.getRegBank().getReg(R);
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +000030 ArrayRef<CodeGenRegisterClass*> RCs = T.getRegBank().getRegClasses();
Jim Grosbachfbadcd02010-12-21 16:16:00 +000031
Chris Lattner8e946be2010-02-21 03:22:59 +000032 for (unsigned rc = 0, e = RCs.size(); rc != e; ++rc) {
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +000033 const CodeGenRegisterClass &RC = *RCs[rc];
Jakob Stoklund Olesenae1920b2011-06-15 04:50:36 +000034 if (!RC.contains(Reg))
Chris Lattner8e946be2010-02-21 03:22:59 +000035 continue;
Jim Grosbachfbadcd02010-12-21 16:16:00 +000036
Chris Lattner8e946be2010-02-21 03:22:59 +000037 if (!FoundRC) {
38 FoundRC = true;
39 VT = RC.getValueTypeNum(0);
40 continue;
Chris Lattnerc94fa4c2010-02-19 00:27:40 +000041 }
Chris Lattner67ea6a72010-03-01 22:49:06 +000042
43 // If this occurs in multiple register classes, they all have to agree.
44 assert(VT == RC.getValueTypeNum(0));
Chris Lattner8e946be2010-02-21 03:22:59 +000045 }
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;
Jim Grosbachfbadcd02010-12-21 16:16:00 +000054
Chris Lattnerda272d12010-02-15 08:04:42 +000055 /// 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;
Jim Grosbachfbadcd02010-12-21 16:16:00 +000059
Chris Lattnerda272d12010-02-15 08:04:42 +000060 /// 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;
Jim Grosbachfbadcd02010-12-21 16:16:00 +000064
Chris Lattnerc94fa4c2010-02-19 00:27:40 +000065 /// 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;
Jim Grosbachfbadcd02010-12-21 16:16:00 +000069
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;
Chris Lattner02f73582010-02-24 05:33:42 +000073
Chris Lattner8950bca2010-12-23 17:03:20 +000074 /// MatchedGlueResultNodes - This maintains the position in the recorded
75 /// nodes array of all of the recorded input nodes that have glue results.
76 SmallVector<unsigned, 2> MatchedGlueResultNodes;
Jim Grosbachfbadcd02010-12-21 16:16:00 +000077
Chris Lattner57bf8a42010-03-04 01:23:08 +000078 /// MatchedComplexPatterns - This maintains a list of all of the
79 /// ComplexPatterns that we need to check. The patterns are known to have
80 /// names which were recorded. The second element of each pair is the first
81 /// slot number that the OPC_CheckComplexPat opcode drops the matched
82 /// results into.
83 SmallVector<std::pair<const TreePatternNode*,
84 unsigned>, 2> MatchedComplexPatterns;
Jim Grosbachfbadcd02010-12-21 16:16:00 +000085
Chris Lattner8e946be2010-02-21 03:22:59 +000086 /// PhysRegInputs - List list has an entry for each explicitly specified
87 /// physreg input to the pattern. The first elt is the Register node, the
88 /// second is the recorded slot number the input pattern match saved it in.
89 SmallVector<std::pair<Record*, unsigned>, 2> PhysRegInputs;
Jim Grosbachfbadcd02010-12-21 16:16:00 +000090
Chris Lattner785d16f2010-02-17 02:16:19 +000091 /// Matcher - This is the top level of the generated matcher, the result.
Chris Lattnerb21ba712010-02-25 02:04:40 +000092 Matcher *TheMatcher;
Jim Grosbachfbadcd02010-12-21 16:16:00 +000093
Chris Lattner785d16f2010-02-17 02:16:19 +000094 /// CurPredicate - As we emit matcher nodes, this points to the latest check
Chris Lattnerbd8227f2010-02-18 02:53:41 +000095 /// which should have future checks stuck into its Next position.
Chris Lattnerb21ba712010-02-25 02:04:40 +000096 Matcher *CurPredicate;
Chris Lattnerda272d12010-02-15 08:04:42 +000097 public:
98 MatcherGen(const PatternToMatch &pattern, const CodeGenDAGPatterns &cgp);
Jim Grosbachfbadcd02010-12-21 16:16:00 +000099
Chris Lattnerda272d12010-02-15 08:04:42 +0000100 ~MatcherGen() {
101 delete PatWithNoTypes;
102 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000103
Chris Lattnerfa342fa2010-03-01 07:17:40 +0000104 bool EmitMatcherCode(unsigned Variant);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000105 void EmitResultCode();
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000106
Chris Lattnerb21ba712010-02-25 02:04:40 +0000107 Matcher *GetMatcher() const { return TheMatcher; }
Chris Lattnerda272d12010-02-15 08:04:42 +0000108 private:
Chris Lattnerb21ba712010-02-25 02:04:40 +0000109 void AddMatcher(Matcher *NewNode);
Chris Lattnerda272d12010-02-15 08:04:42 +0000110 void InferPossibleTypes();
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000111
Chris Lattnerb49985a2010-02-18 06:47:49 +0000112 // Matcher Generation.
Chris Lattnerda272d12010-02-15 08:04:42 +0000113 void EmitMatchCode(const TreePatternNode *N, TreePatternNode *NodeNoTypes);
114 void EmitLeafMatchCode(const TreePatternNode *N);
115 void EmitOperatorMatchCode(const TreePatternNode *N,
116 TreePatternNode *NodeNoTypes);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000117
Chris Lattnerb49985a2010-02-18 06:47:49 +0000118 // Result Code Generation.
Chris Lattner8e946be2010-02-21 03:22:59 +0000119 unsigned getNamedArgumentSlot(StringRef Name) {
120 unsigned VarMapEntry = VariableMap[Name];
121 assert(VarMapEntry != 0 &&
122 "Variable referenced but not defined and not caught earlier!");
123 return VarMapEntry-1;
124 }
125
126 /// GetInstPatternNode - Get the pattern for an instruction.
127 const TreePatternNode *GetInstPatternNode(const DAGInstruction &Ins,
128 const TreePatternNode *N);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000129
Chris Lattnerb49985a2010-02-18 06:47:49 +0000130 void EmitResultOperand(const TreePatternNode *N,
Chris Lattner8e946be2010-02-21 03:22:59 +0000131 SmallVectorImpl<unsigned> &ResultOps);
132 void EmitResultOfNamedOperand(const TreePatternNode *N,
133 SmallVectorImpl<unsigned> &ResultOps);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000134 void EmitResultLeafAsOperand(const TreePatternNode *N,
Chris Lattner8e946be2010-02-21 03:22:59 +0000135 SmallVectorImpl<unsigned> &ResultOps);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000136 void EmitResultInstructionAsOperand(const TreePatternNode *N,
Chris Lattner8e946be2010-02-21 03:22:59 +0000137 SmallVectorImpl<unsigned> &ResultOps);
138 void EmitResultSDNodeXFormAsOperand(const TreePatternNode *N,
139 SmallVectorImpl<unsigned> &ResultOps);
140 };
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000141
Chris Lattnerda272d12010-02-15 08:04:42 +0000142} // end anon namespace.
143
144MatcherGen::MatcherGen(const PatternToMatch &pattern,
145 const CodeGenDAGPatterns &cgp)
Chris Lattner853b9192010-02-19 00:33:13 +0000146: Pattern(pattern), CGP(cgp), NextRecordedOperandNo(0),
Chris Lattner01bcd942010-03-01 22:46:42 +0000147 TheMatcher(0), CurPredicate(0) {
Chris Lattnerda272d12010-02-15 08:04:42 +0000148 // We need to produce the matcher tree for the patterns source pattern. To do
149 // this we need to match the structure as well as the types. To do the type
150 // matching, we want to figure out the fewest number of type checks we need to
151 // emit. For example, if there is only one integer type supported by a
152 // target, there should be no type comparisons at all for integer patterns!
153 //
154 // To figure out the fewest number of type checks needed, clone the pattern,
155 // remove the types, then perform type inference on the pattern as a whole.
156 // If there are unresolved types, emit an explicit check for those types,
157 // apply the type to the tree, then rerun type inference. Iterate until all
158 // types are resolved.
159 //
160 PatWithNoTypes = Pattern.getSrcPattern()->clone();
161 PatWithNoTypes->RemoveAllTypes();
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000162
Chris Lattnerda272d12010-02-15 08:04:42 +0000163 // If there are types that are manifestly known, infer them.
164 InferPossibleTypes();
165}
166
167/// InferPossibleTypes - As we emit the pattern, we end up generating type
168/// checks and applying them to the 'PatWithNoTypes' tree. As we do this, we
169/// want to propagate implied types as far throughout the tree as possible so
170/// that we avoid doing redundant type checks. This does the type propagation.
171void MatcherGen::InferPossibleTypes() {
172 // TP - Get *SOME* tree pattern, we don't care which. It is only used for
173 // diagnostics, which we know are impossible at this point.
174 TreePattern &TP = *CGP.pf_begin()->second;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000175
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000176 bool MadeChange = true;
177 while (MadeChange)
178 MadeChange = PatWithNoTypes->ApplyTypeConstraints(TP,
179 true/*Ignore reg constraints*/);
Chris Lattnerda272d12010-02-15 08:04:42 +0000180}
181
182
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000183/// AddMatcher - Add a matcher node to the current graph we're building.
Chris Lattnerb21ba712010-02-25 02:04:40 +0000184void MatcherGen::AddMatcher(Matcher *NewNode) {
Chris Lattnerda272d12010-02-15 08:04:42 +0000185 if (CurPredicate != 0)
Chris Lattnerbd8227f2010-02-18 02:53:41 +0000186 CurPredicate->setNext(NewNode);
Chris Lattnerda272d12010-02-15 08:04:42 +0000187 else
Chris Lattnerb21ba712010-02-25 02:04:40 +0000188 TheMatcher = NewNode;
Chris Lattnerda272d12010-02-15 08:04:42 +0000189 CurPredicate = NewNode;
190}
191
192
Chris Lattnerb49985a2010-02-18 06:47:49 +0000193//===----------------------------------------------------------------------===//
194// Pattern Match Generation
195//===----------------------------------------------------------------------===//
Chris Lattnerda272d12010-02-15 08:04:42 +0000196
197/// EmitLeafMatchCode - Generate matching code for leaf nodes.
198void MatcherGen::EmitLeafMatchCode(const TreePatternNode *N) {
199 assert(N->isLeaf() && "Not a leaf?");
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000200
Chris Lattnerda272d12010-02-15 08:04:42 +0000201 // Direct match against an integer constant.
Sean Silva6cfc8062012-10-10 20:24:43 +0000202 if (IntInit *II = dyn_cast<IntInit>(N->getLeafValue())) {
Chris Lattnerbd8965a2010-03-01 07:27:07 +0000203 // If this is the root of the dag we're matching, we emit a redundant opcode
204 // check to ensure that this gets folded into the normal top-level
205 // OpcodeSwitch.
206 if (N == Pattern.getSrcPattern()) {
207 const SDNodeInfo &NI = CGP.getSDNodeInfo(CGP.getSDNodeNamed("imm"));
208 AddMatcher(new CheckOpcodeMatcher(NI));
209 }
210
Chris Lattnerb21ba712010-02-25 02:04:40 +0000211 return AddMatcher(new CheckIntegerMatcher(II->getValue()));
Chris Lattnerbd8965a2010-03-01 07:27:07 +0000212 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000213
Sean Silva6cfc8062012-10-10 20:24:43 +0000214 DefInit *DI = dyn_cast<DefInit>(N->getLeafValue());
Chris Lattnerda272d12010-02-15 08:04:42 +0000215 if (DI == 0) {
Chris Lattneref18cd32012-03-26 19:11:51 +0000216 errs() << "Unknown leaf kind: " << *N << "\n";
Chris Lattnerda272d12010-02-15 08:04:42 +0000217 abort();
218 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000219
Chris Lattnerda272d12010-02-15 08:04:42 +0000220 Record *LeafRec = DI->getDef();
Jakob Stoklund Olesenf0a804d2013-03-23 20:35:01 +0000221
222 // A ValueType leaf node can represent a register when named, or itself when
223 // unnamed.
224 if (LeafRec->isSubClassOf("ValueType")) {
225 // A named ValueType leaf always matches: (add i32:$a, i32:$b).
226 if (N->hasName())
227 return;
228 // An unnamed ValueType as in (sext_inreg GPR:$foo, i8).
229 return AddMatcher(new CheckValueTypeMatcher(LeafRec->getName()));
230 }
231
Chris Lattnerda272d12010-02-15 08:04:42 +0000232 if (// Handle register references. Nothing to do here, they always match.
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000233 LeafRec->isSubClassOf("RegisterClass") ||
Owen Andersonbea6f612011-06-27 21:06:21 +0000234 LeafRec->isSubClassOf("RegisterOperand") ||
Chris Lattnerda272d12010-02-15 08:04:42 +0000235 LeafRec->isSubClassOf("PointerLikeRegClass") ||
Jakob Stoklund Olesen73ea7bf2010-05-24 14:48:12 +0000236 LeafRec->isSubClassOf("SubRegIndex") ||
Chris Lattnerda272d12010-02-15 08:04:42 +0000237 // Place holder for SRCVALUE nodes. Nothing to do here.
238 LeafRec->getName() == "srcvalue")
239 return;
Chris Lattner8e946be2010-02-21 03:22:59 +0000240
241 // If we have a physreg reference like (mul gpr:$src, EAX) then we need to
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000242 // record the register
Chris Lattner8e946be2010-02-21 03:22:59 +0000243 if (LeafRec->isSubClassOf("Register")) {
Chris Lattner0cebe612010-03-01 02:24:17 +0000244 AddMatcher(new RecordMatcher("physreg input "+LeafRec->getName(),
245 NextRecordedOperandNo));
Chris Lattner8e946be2010-02-21 03:22:59 +0000246 PhysRegInputs.push_back(std::make_pair(LeafRec, NextRecordedOperandNo++));
247 return;
248 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000249
Chris Lattnerda272d12010-02-15 08:04:42 +0000250 if (LeafRec->isSubClassOf("CondCode"))
Chris Lattnerb21ba712010-02-25 02:04:40 +0000251 return AddMatcher(new CheckCondCodeMatcher(LeafRec->getName()));
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000252
Chris Lattnerda272d12010-02-15 08:04:42 +0000253 if (LeafRec->isSubClassOf("ComplexPattern")) {
Chris Lattnerc2676b22010-02-17 00:11:30 +0000254 // We can't model ComplexPattern uses that don't have their name taken yet.
255 // The OPC_CheckComplexPattern operation implicitly records the results.
256 if (N->getName().empty()) {
Chris Lattner53a2f602010-02-16 23:16:25 +0000257 errs() << "We expect complex pattern uses to have names: " << *N << "\n";
258 exit(1);
259 }
Chris Lattner1f2ed5f2010-02-22 22:18:05 +0000260
Chris Lattner57bf8a42010-03-04 01:23:08 +0000261 // Remember this ComplexPattern so that we can emit it after all the other
262 // structural matches are done.
263 MatchedComplexPatterns.push_back(std::make_pair(N, 0));
Chris Lattner8dc4f2b2010-02-17 06:08:25 +0000264 return;
Chris Lattnerda272d12010-02-15 08:04:42 +0000265 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000266
Chris Lattnerda272d12010-02-15 08:04:42 +0000267 errs() << "Unknown leaf kind: " << *N << "\n";
268 abort();
269}
270
271void MatcherGen::EmitOperatorMatchCode(const TreePatternNode *N,
272 TreePatternNode *NodeNoTypes) {
273 assert(!N->isLeaf() && "Not an operator?");
274 const SDNodeInfo &CInfo = CGP.getSDNodeInfo(N->getOperator());
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000275
Chris Lattnerda272d12010-02-15 08:04:42 +0000276 // If this is an 'and R, 1234' where the operation is AND/OR and the RHS is
277 // a constant without a predicate fn that has more that one bit set, handle
278 // this as a special case. This is usually for targets that have special
279 // handling of certain large constants (e.g. alpha with it's 8/16/32-bit
280 // handling stuff). Using these instructions is often far more efficient
281 // than materializing the constant. Unfortunately, both the instcombiner
282 // and the dag combiner can often infer that bits are dead, and thus drop
283 // them from the mask in the dag. For example, it might turn 'AND X, 255'
284 // into 'AND X, 254' if it knows the low bit is set. Emit code that checks
285 // to handle this.
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000286 if ((N->getOperator()->getName() == "and" ||
Chris Lattnerda272d12010-02-15 08:04:42 +0000287 N->getOperator()->getName() == "or") &&
Chris Lattner8e946be2010-02-21 03:22:59 +0000288 N->getChild(1)->isLeaf() && N->getChild(1)->getPredicateFns().empty() &&
289 N->getPredicateFns().empty()) {
Sean Silva6cfc8062012-10-10 20:24:43 +0000290 if (IntInit *II = dyn_cast<IntInit>(N->getChild(1)->getLeafValue())) {
Chris Lattnerda272d12010-02-15 08:04:42 +0000291 if (!isPowerOf2_32(II->getValue())) { // Don't bother with single bits.
Chris Lattnere9eeda82010-03-01 02:15:34 +0000292 // If this is at the root of the pattern, we emit a redundant
293 // CheckOpcode so that the following checks get factored properly under
294 // a single opcode check.
295 if (N == Pattern.getSrcPattern())
296 AddMatcher(new CheckOpcodeMatcher(CInfo));
297
298 // Emit the CheckAndImm/CheckOrImm node.
Chris Lattnerda272d12010-02-15 08:04:42 +0000299 if (N->getOperator()->getName() == "and")
Chris Lattnerb21ba712010-02-25 02:04:40 +0000300 AddMatcher(new CheckAndImmMatcher(II->getValue()));
Chris Lattnerda272d12010-02-15 08:04:42 +0000301 else
Chris Lattnerb21ba712010-02-25 02:04:40 +0000302 AddMatcher(new CheckOrImmMatcher(II->getValue()));
Chris Lattnerda272d12010-02-15 08:04:42 +0000303
304 // Match the LHS of the AND as appropriate.
Chris Lattnerb21ba712010-02-25 02:04:40 +0000305 AddMatcher(new MoveChildMatcher(0));
Chris Lattnerda272d12010-02-15 08:04:42 +0000306 EmitMatchCode(N->getChild(0), NodeNoTypes->getChild(0));
Chris Lattnerb21ba712010-02-25 02:04:40 +0000307 AddMatcher(new MoveParentMatcher());
Chris Lattnerda272d12010-02-15 08:04:42 +0000308 return;
309 }
310 }
311 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000312
Chris Lattnerda272d12010-02-15 08:04:42 +0000313 // Check that the current opcode lines up.
Chris Lattnera230f962010-02-27 21:48:43 +0000314 AddMatcher(new CheckOpcodeMatcher(CInfo));
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000315
Chris Lattner8e946be2010-02-21 03:22:59 +0000316 // If this node has memory references (i.e. is a load or store), tell the
317 // interpreter to capture them in the memref array.
318 if (N->NodeHasProperty(SDNPMemOperand, CGP))
Chris Lattnerb21ba712010-02-25 02:04:40 +0000319 AddMatcher(new RecordMemRefMatcher());
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000320
Chris Lattnerda272d12010-02-15 08:04:42 +0000321 // If this node has a chain, then the chain is operand #0 is the SDNode, and
322 // the child numbers of the node are all offset by one.
323 unsigned OpNo = 0;
Chris Lattner6bc1b512010-02-16 19:19:58 +0000324 if (N->NodeHasProperty(SDNPHasChain, CGP)) {
Chris Lattner8e946be2010-02-21 03:22:59 +0000325 // Record the node and remember it in our chained nodes list.
Chris Lattnerb21ba712010-02-25 02:04:40 +0000326 AddMatcher(new RecordMatcher("'" + N->getOperator()->getName() +
Chris Lattner0cebe612010-03-01 02:24:17 +0000327 "' chained node",
328 NextRecordedOperandNo));
Chris Lattner785d16f2010-02-17 02:16:19 +0000329 // Remember all of the input chains our pattern will match.
Chris Lattner8e946be2010-02-21 03:22:59 +0000330 MatchedChainNodes.push_back(NextRecordedOperandNo++);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000331
Chris Lattner2f7ecde2010-02-17 01:34:15 +0000332 // Don't look at the input chain when matching the tree pattern to the
333 // SDNode.
Chris Lattnerda272d12010-02-15 08:04:42 +0000334 OpNo = 1;
335
Chris Lattner6bc1b512010-02-16 19:19:58 +0000336 // If this node is not the root and the subtree underneath it produces a
337 // chain, then the result of matching the node is also produce a chain.
338 // Beyond that, this means that we're also folding (at least) the root node
339 // into the node that produce the chain (for example, matching
340 // "(add reg, (load ptr))" as a add_with_memory on X86). This is
341 // problematic, if the 'reg' node also uses the load (say, its chain).
342 // Graphically:
343 //
344 // [LD]
345 // ^ ^
346 // | \ DAG's like cheese.
347 // / |
348 // / [YY]
349 // | ^
350 // [XX]--/
351 //
352 // It would be invalid to fold XX and LD. In this case, folding the two
353 // nodes together would induce a cycle in the DAG, making it a 'cyclic DAG'
354 // To prevent this, we emit a dynamic check for legality before allowing
355 // this to be folded.
356 //
357 const TreePatternNode *Root = Pattern.getSrcPattern();
358 if (N != Root) { // Not the root of the pattern.
Chris Lattnere39650a2010-02-16 06:10:58 +0000359 // If there is a node between the root and this node, then we definitely
360 // need to emit the check.
361 bool NeedCheck = !Root->hasChild(N);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000362
Chris Lattnere39650a2010-02-16 06:10:58 +0000363 // If it *is* an immediate child of the root, we can still need a check if
364 // the root SDNode has multiple inputs. For us, this means that it is an
365 // intrinsic, has multiple operands, or has other inputs like chain or
Chris Lattner8950bca2010-12-23 17:03:20 +0000366 // glue).
Chris Lattnere39650a2010-02-16 06:10:58 +0000367 if (!NeedCheck) {
368 const SDNodeInfo &PInfo = CGP.getSDNodeInfo(Root->getOperator());
369 NeedCheck =
370 Root->getOperator() == CGP.get_intrinsic_void_sdnode() ||
371 Root->getOperator() == CGP.get_intrinsic_w_chain_sdnode() ||
372 Root->getOperator() == CGP.get_intrinsic_wo_chain_sdnode() ||
373 PInfo.getNumOperands() > 1 ||
374 PInfo.hasProperty(SDNPHasChain) ||
Chris Lattner036609b2010-12-23 18:28:41 +0000375 PInfo.hasProperty(SDNPInGlue) ||
376 PInfo.hasProperty(SDNPOptInGlue);
Chris Lattnere39650a2010-02-16 06:10:58 +0000377 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000378
Chris Lattnere39650a2010-02-16 06:10:58 +0000379 if (NeedCheck)
Chris Lattnerb21ba712010-02-25 02:04:40 +0000380 AddMatcher(new CheckFoldableChainNodeMatcher());
Chris Lattnere39650a2010-02-16 06:10:58 +0000381 }
Chris Lattnerda272d12010-02-15 08:04:42 +0000382 }
Chris Lattner02f73582010-02-24 05:33:42 +0000383
Chris Lattner8950bca2010-12-23 17:03:20 +0000384 // If this node has an output glue and isn't the root, remember it.
Chris Lattner036609b2010-12-23 18:28:41 +0000385 if (N->NodeHasProperty(SDNPOutGlue, CGP) &&
Chris Lattner02f73582010-02-24 05:33:42 +0000386 N != Pattern.getSrcPattern()) {
Chris Lattner8950bca2010-12-23 17:03:20 +0000387 // TODO: This redundantly records nodes with both glues and chains.
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000388
Chris Lattner02f73582010-02-24 05:33:42 +0000389 // Record the node and remember it in our chained nodes list.
Chris Lattnerb21ba712010-02-25 02:04:40 +0000390 AddMatcher(new RecordMatcher("'" + N->getOperator()->getName() +
Chris Lattner8950bca2010-12-23 17:03:20 +0000391 "' glue output node",
Chris Lattner0cebe612010-03-01 02:24:17 +0000392 NextRecordedOperandNo));
Chris Lattner8950bca2010-12-23 17:03:20 +0000393 // Remember all of the nodes with output glue our pattern will match.
394 MatchedGlueResultNodes.push_back(NextRecordedOperandNo++);
Chris Lattner02f73582010-02-24 05:33:42 +0000395 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000396
Chris Lattner8950bca2010-12-23 17:03:20 +0000397 // If this node is known to have an input glue or if it *might* have an input
398 // glue, capture it as the glue input of the pattern.
Chris Lattner036609b2010-12-23 18:28:41 +0000399 if (N->NodeHasProperty(SDNPOptInGlue, CGP) ||
400 N->NodeHasProperty(SDNPInGlue, CGP))
Chris Lattner8950bca2010-12-23 17:03:20 +0000401 AddMatcher(new CaptureGlueInputMatcher());
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000402
Chris Lattnerda272d12010-02-15 08:04:42 +0000403 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
404 // Get the code suitable for matching this child. Move to the child, check
405 // it then move back to the parent.
Chris Lattnerb21ba712010-02-25 02:04:40 +0000406 AddMatcher(new MoveChildMatcher(OpNo));
Chris Lattnerda272d12010-02-15 08:04:42 +0000407 EmitMatchCode(N->getChild(i), NodeNoTypes->getChild(i));
Chris Lattnerb21ba712010-02-25 02:04:40 +0000408 AddMatcher(new MoveParentMatcher());
Chris Lattnerda272d12010-02-15 08:04:42 +0000409 }
410}
411
412
413void MatcherGen::EmitMatchCode(const TreePatternNode *N,
414 TreePatternNode *NodeNoTypes) {
415 // If N and NodeNoTypes don't agree on a type, then this is a case where we
416 // need to do a type check. Emit the check, apply the tyep to NodeNoTypes and
417 // reinfer any correlated types.
Chris Lattner084df622010-03-24 00:41:19 +0000418 SmallVector<unsigned, 2> ResultsToTypeCheck;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000419
Chris Lattner084df622010-03-24 00:41:19 +0000420 for (unsigned i = 0, e = NodeNoTypes->getNumTypes(); i != e; ++i) {
421 if (NodeNoTypes->getExtType(i) == N->getExtType(i)) continue;
422 NodeNoTypes->setType(i, N->getExtType(i));
Chris Lattnerda272d12010-02-15 08:04:42 +0000423 InferPossibleTypes();
Chris Lattner084df622010-03-24 00:41:19 +0000424 ResultsToTypeCheck.push_back(i);
Chris Lattnerda272d12010-02-15 08:04:42 +0000425 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000426
Chris Lattnerda272d12010-02-15 08:04:42 +0000427 // If this node has a name associated with it, capture it in VariableMap. If
428 // we already saw this in the pattern, emit code to verify dagness.
429 if (!N->getName().empty()) {
430 unsigned &VarMapEntry = VariableMap[N->getName()];
431 if (VarMapEntry == 0) {
Chris Lattner20df2422010-02-22 23:33:44 +0000432 // If it is a named node, we must emit a 'Record' opcode.
Chris Lattner0cebe612010-03-01 02:24:17 +0000433 AddMatcher(new RecordMatcher("$" + N->getName(), NextRecordedOperandNo));
Chris Lattner20df2422010-02-22 23:33:44 +0000434 VarMapEntry = ++NextRecordedOperandNo;
Chris Lattnerda272d12010-02-15 08:04:42 +0000435 } else {
436 // If we get here, this is a second reference to a specific name. Since
437 // we already have checked that the first reference is valid, we don't
438 // have to recursively match it, just check that it's the same as the
439 // previously named thing.
Chris Lattnerb21ba712010-02-25 02:04:40 +0000440 AddMatcher(new CheckSameMatcher(VarMapEntry-1));
Chris Lattnerda272d12010-02-15 08:04:42 +0000441 return;
442 }
443 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000444
Chris Lattnerda272d12010-02-15 08:04:42 +0000445 if (N->isLeaf())
446 EmitLeafMatchCode(N);
447 else
448 EmitOperatorMatchCode(N, NodeNoTypes);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000449
Chris Lattner6fd326b2010-03-07 07:20:49 +0000450 // If there are node predicates for this node, generate their checks.
451 for (unsigned i = 0, e = N->getPredicateFns().size(); i != e; ++i)
452 AddMatcher(new CheckPredicateMatcher(N->getPredicateFns()[i]));
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000453
Chris Lattner084df622010-03-24 00:41:19 +0000454 for (unsigned i = 0, e = ResultsToTypeCheck.size(); i != e; ++i)
455 AddMatcher(new CheckTypeMatcher(N->getType(ResultsToTypeCheck[i]),
456 ResultsToTypeCheck[i]));
Chris Lattnerda272d12010-02-15 08:04:42 +0000457}
458
Chris Lattnerfa342fa2010-03-01 07:17:40 +0000459/// EmitMatcherCode - Generate the code that matches the predicate of this
460/// pattern for the specified Variant. If the variant is invalid this returns
461/// true and does not generate code, if it is valid, it returns false.
462bool MatcherGen::EmitMatcherCode(unsigned Variant) {
463 // If the root of the pattern is a ComplexPattern and if it is specified to
464 // match some number of root opcodes, these are considered to be our variants.
465 // Depending on which variant we're generating code for, emit the root opcode
466 // check.
467 if (const ComplexPattern *CP =
468 Pattern.getSrcPattern()->getComplexPatternInfo(CGP)) {
Chris Lattnerfa342fa2010-03-01 07:17:40 +0000469 const std::vector<Record*> &OpNodes = CP->getRootNodes();
Chris Lattner405f1252010-03-01 22:29:19 +0000470 assert(!OpNodes.empty() &&"Complex Pattern must specify what it can match");
471 if (Variant >= OpNodes.size()) return true;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000472
Chris Lattner405f1252010-03-01 22:29:19 +0000473 AddMatcher(new CheckOpcodeMatcher(CGP.getSDNodeInfo(OpNodes[Variant])));
Chris Lattnerfa342fa2010-03-01 07:17:40 +0000474 } else {
475 if (Variant != 0) return true;
476 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000477
Chris Lattner9752fb12010-03-04 01:25:36 +0000478 // Emit the matcher for the pattern structure and types.
479 EmitMatchCode(Pattern.getSrcPattern(), PatWithNoTypes);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000480
Chris Lattnerda272d12010-02-15 08:04:42 +0000481 // If the pattern has a predicate on it (e.g. only enabled when a subtarget
482 // feature is around, do the check).
483 if (!Pattern.getPredicateCheck().empty())
Chris Lattnerfa342fa2010-03-01 07:17:40 +0000484 AddMatcher(new CheckPatternPredicateMatcher(Pattern.getPredicateCheck()));
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000485
Chris Lattner57bf8a42010-03-04 01:23:08 +0000486 // Now that we've completed the structural type match, emit any ComplexPattern
487 // checks (e.g. addrmode matches). We emit this after the structural match
488 // because they are generally more expensive to evaluate and more difficult to
489 // factor.
Chris Lattner57bf8a42010-03-04 01:23:08 +0000490 for (unsigned i = 0, e = MatchedComplexPatterns.size(); i != e; ++i) {
491 const TreePatternNode *N = MatchedComplexPatterns[i].first;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000492
Chris Lattner57bf8a42010-03-04 01:23:08 +0000493 // Remember where the results of this match get stuck.
494 MatchedComplexPatterns[i].second = NextRecordedOperandNo;
495
496 // Get the slot we recorded the value in from the name on the node.
497 unsigned RecNodeEntry = VariableMap[N->getName()];
498 assert(!N->getName().empty() && RecNodeEntry &&
499 "Complex pattern should have a name and slot");
500 --RecNodeEntry; // Entries in VariableMap are biased.
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000501
Chris Lattner57bf8a42010-03-04 01:23:08 +0000502 const ComplexPattern &CP =
David Greene05bce0b2011-07-29 22:43:06 +0000503 CGP.getComplexPattern(((DefInit*)N->getLeafValue())->getDef());
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000504
Chris Lattner57bf8a42010-03-04 01:23:08 +0000505 // Emit a CheckComplexPat operation, which does the match (aborting if it
506 // fails) and pushes the matched operands onto the recorded nodes list.
507 AddMatcher(new CheckComplexPatMatcher(CP, RecNodeEntry,
508 N->getName(), NextRecordedOperandNo));
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000509
Chris Lattner57bf8a42010-03-04 01:23:08 +0000510 // Record the right number of operands.
511 NextRecordedOperandNo += CP.getNumOperands();
512 if (CP.hasProperty(SDNPHasChain)) {
513 // If the complex pattern has a chain, then we need to keep track of the
514 // fact that we just recorded a chain input. The chain input will be
515 // matched as the last operand of the predicate if it was successful.
516 ++NextRecordedOperandNo; // Chained node operand.
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000517
Chris Lattner57bf8a42010-03-04 01:23:08 +0000518 // It is the last operand recorded.
519 assert(NextRecordedOperandNo > 1 &&
520 "Should have recorded input/result chains at least!");
521 MatchedChainNodes.push_back(NextRecordedOperandNo-1);
522 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000523
Chris Lattner8950bca2010-12-23 17:03:20 +0000524 // TODO: Complex patterns can't have output glues, if they did, we'd want
Chris Lattner57bf8a42010-03-04 01:23:08 +0000525 // to record them.
526 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000527
Chris Lattnerfa342fa2010-03-01 07:17:40 +0000528 return false;
Chris Lattnerda272d12010-02-15 08:04:42 +0000529}
530
531
Chris Lattnerb49985a2010-02-18 06:47:49 +0000532//===----------------------------------------------------------------------===//
533// Node Result Generation
534//===----------------------------------------------------------------------===//
535
Chris Lattner8e946be2010-02-21 03:22:59 +0000536void MatcherGen::EmitResultOfNamedOperand(const TreePatternNode *N,
537 SmallVectorImpl<unsigned> &ResultOps){
538 assert(!N->getName().empty() && "Operand not named!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000539
Chris Lattner8e946be2010-02-21 03:22:59 +0000540 // A reference to a complex pattern gets all of the results of the complex
541 // pattern's match.
542 if (const ComplexPattern *CP = N->getComplexPatternInfo(CGP)) {
Chris Lattner57bf8a42010-03-04 01:23:08 +0000543 unsigned SlotNo = 0;
544 for (unsigned i = 0, e = MatchedComplexPatterns.size(); i != e; ++i)
545 if (MatchedComplexPatterns[i].first->getName() == N->getName()) {
546 SlotNo = MatchedComplexPatterns[i].second;
547 break;
548 }
549 assert(SlotNo != 0 && "Didn't get a slot number assigned?");
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000550
Chris Lattner20df2422010-02-22 23:33:44 +0000551 // The first slot entry is the node itself, the subsequent entries are the
552 // matched values.
Chris Lattner8e946be2010-02-21 03:22:59 +0000553 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
Chris Lattner57bf8a42010-03-04 01:23:08 +0000554 ResultOps.push_back(SlotNo+i);
Chris Lattner8e946be2010-02-21 03:22:59 +0000555 return;
556 }
557
Chris Lattner57bf8a42010-03-04 01:23:08 +0000558 unsigned SlotNo = getNamedArgumentSlot(N->getName());
559
Chris Lattner8e946be2010-02-21 03:22:59 +0000560 // If this is an 'imm' or 'fpimm' node, make sure to convert it to the target
561 // version of the immediate so that it doesn't get selected due to some other
562 // node use.
563 if (!N->isLeaf()) {
564 StringRef OperatorName = N->getOperator()->getName();
565 if (OperatorName == "imm" || OperatorName == "fpimm") {
Chris Lattnerb21ba712010-02-25 02:04:40 +0000566 AddMatcher(new EmitConvertToTargetMatcher(SlotNo));
Chris Lattner8e946be2010-02-21 03:22:59 +0000567 ResultOps.push_back(NextRecordedOperandNo++);
568 return;
569 }
570 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000571
Chris Lattner8e946be2010-02-21 03:22:59 +0000572 ResultOps.push_back(SlotNo);
573}
574
Chris Lattnerb49985a2010-02-18 06:47:49 +0000575void MatcherGen::EmitResultLeafAsOperand(const TreePatternNode *N,
Chris Lattner8e946be2010-02-21 03:22:59 +0000576 SmallVectorImpl<unsigned> &ResultOps) {
Chris Lattner845c0422010-02-18 22:03:03 +0000577 assert(N->isLeaf() && "Must be a leaf");
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000578
Sean Silva6cfc8062012-10-10 20:24:43 +0000579 if (IntInit *II = dyn_cast<IntInit>(N->getLeafValue())) {
Chris Lattnerd7349192010-03-19 21:37:09 +0000580 AddMatcher(new EmitIntegerMatcher(II->getValue(), N->getType(0)));
Chris Lattner8e946be2010-02-21 03:22:59 +0000581 ResultOps.push_back(NextRecordedOperandNo++);
Chris Lattner845c0422010-02-18 22:03:03 +0000582 return;
583 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000584
Chris Lattner845c0422010-02-18 22:03:03 +0000585 // If this is an explicit register reference, handle it.
Sean Silva6cfc8062012-10-10 20:24:43 +0000586 if (DefInit *DI = dyn_cast<DefInit>(N->getLeafValue())) {
Owen Andersonbea6f612011-06-27 21:06:21 +0000587 Record *Def = DI->getDef();
588 if (Def->isSubClassOf("Register")) {
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +0000589 const CodeGenRegister *Reg =
Owen Andersonbea6f612011-06-27 21:06:21 +0000590 CGP.getTargetInfo().getRegBank().getReg(Def);
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +0000591 AddMatcher(new EmitRegisterMatcher(Reg, N->getType(0)));
Chris Lattner8e946be2010-02-21 03:22:59 +0000592 ResultOps.push_back(NextRecordedOperandNo++);
Chris Lattner845c0422010-02-18 22:03:03 +0000593 return;
594 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000595
Owen Andersonbea6f612011-06-27 21:06:21 +0000596 if (Def->getName() == "zero_reg") {
Chris Lattnerd7349192010-03-19 21:37:09 +0000597 AddMatcher(new EmitRegisterMatcher(0, N->getType(0)));
Chris Lattner8e946be2010-02-21 03:22:59 +0000598 ResultOps.push_back(NextRecordedOperandNo++);
Chris Lattner845c0422010-02-18 22:03:03 +0000599 return;
600 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000601
Chris Lattner8e946be2010-02-21 03:22:59 +0000602 // Handle a reference to a register class. This is used
603 // in COPY_TO_SUBREG instructions.
Owen Andersonbea6f612011-06-27 21:06:21 +0000604 if (Def->isSubClassOf("RegisterOperand"))
605 Def = Def->getValueAsDef("RegClass");
606 if (Def->isSubClassOf("RegisterClass")) {
607 std::string Value = getQualifiedName(Def) + "RegClassID";
Chris Lattnerb21ba712010-02-25 02:04:40 +0000608 AddMatcher(new EmitStringIntegerMatcher(Value, MVT::i32));
Chris Lattner8e946be2010-02-21 03:22:59 +0000609 ResultOps.push_back(NextRecordedOperandNo++);
610 return;
Chris Lattner845c0422010-02-18 22:03:03 +0000611 }
Jakob Stoklund Olesen73ea7bf2010-05-24 14:48:12 +0000612
613 // Handle a subregister index. This is used for INSERT_SUBREG etc.
Owen Andersonbea6f612011-06-27 21:06:21 +0000614 if (Def->isSubClassOf("SubRegIndex")) {
615 std::string Value = getQualifiedName(Def);
Jakob Stoklund Olesen73ea7bf2010-05-24 14:48:12 +0000616 AddMatcher(new EmitStringIntegerMatcher(Value, MVT::i32));
617 ResultOps.push_back(NextRecordedOperandNo++);
618 return;
619 }
Chris Lattner845c0422010-02-18 22:03:03 +0000620 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000621
Chris Lattnerb49985a2010-02-18 06:47:49 +0000622 errs() << "unhandled leaf node: \n";
623 N->dump();
624}
625
Chris Lattner8e946be2010-02-21 03:22:59 +0000626/// GetInstPatternNode - Get the pattern for an instruction.
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000627///
Chris Lattner8e946be2010-02-21 03:22:59 +0000628const TreePatternNode *MatcherGen::
629GetInstPatternNode(const DAGInstruction &Inst, const TreePatternNode *N) {
630 const TreePattern *InstPat = Inst.getPattern();
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000631
Chris Lattner8e946be2010-02-21 03:22:59 +0000632 // FIXME2?: Assume actual pattern comes before "implicit".
633 TreePatternNode *InstPatNode;
634 if (InstPat)
635 InstPatNode = InstPat->getTree(0);
636 else if (/*isRoot*/ N == Pattern.getDstPattern())
637 InstPatNode = Pattern.getSrcPattern();
638 else
639 return 0;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000640
Chris Lattner8e946be2010-02-21 03:22:59 +0000641 if (InstPatNode && !InstPatNode->isLeaf() &&
642 InstPatNode->getOperator()->getName() == "set")
643 InstPatNode = InstPatNode->getChild(InstPatNode->getNumChildren()-1);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000644
Chris Lattner8e946be2010-02-21 03:22:59 +0000645 return InstPatNode;
646}
647
Cameron Zwarich3a2d2552011-05-19 21:13:30 +0000648static bool
649mayInstNodeLoadOrStore(const TreePatternNode *N,
650 const CodeGenDAGPatterns &CGP) {
651 Record *Op = N->getOperator();
652 const CodeGenTarget &CGT = CGP.getTargetInfo();
653 CodeGenInstruction &II = CGT.getInstruction(Op);
654 return II.mayLoad || II.mayStore;
655}
656
657static unsigned
658numNodesThatMayLoadOrStore(const TreePatternNode *N,
659 const CodeGenDAGPatterns &CGP) {
660 if (N->isLeaf())
661 return 0;
662
663 Record *OpRec = N->getOperator();
664 if (!OpRec->isSubClassOf("Instruction"))
665 return 0;
666
667 unsigned Count = 0;
668 if (mayInstNodeLoadOrStore(N, CGP))
669 ++Count;
670
671 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
672 Count += numNodesThatMayLoadOrStore(N->getChild(i), CGP);
673
674 return Count;
675}
676
Chris Lattner8e946be2010-02-21 03:22:59 +0000677void MatcherGen::
678EmitResultInstructionAsOperand(const TreePatternNode *N,
679 SmallVectorImpl<unsigned> &OutputOps) {
Chris Lattnerb49985a2010-02-18 06:47:49 +0000680 Record *Op = N->getOperator();
681 const CodeGenTarget &CGT = CGP.getTargetInfo();
Chris Lattnerf30187a2010-03-19 00:07:20 +0000682 CodeGenInstruction &II = CGT.getInstruction(Op);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000683 const DAGInstruction &Inst = CGP.getInstruction(Op);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000684
Chris Lattner8e946be2010-02-21 03:22:59 +0000685 // If we can, get the pattern for the instruction we're generating. We derive
686 // a variety of information from this pattern, such as whether it has a chain.
687 //
688 // FIXME2: This is extremely dubious for several reasons, not the least of
689 // which it gives special status to instructions with patterns that Pat<>
690 // nodes can't duplicate.
691 const TreePatternNode *InstPatNode = GetInstPatternNode(Inst, N);
692
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000693 // NodeHasChain - Whether the instruction node we're creating takes chains.
Chris Lattner8e946be2010-02-21 03:22:59 +0000694 bool NodeHasChain = InstPatNode &&
695 InstPatNode->TreeHasProperty(SDNPHasChain, CGP);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000696
Tim Northoverca578e72012-06-26 18:46:28 +0000697 // Instructions which load and store from memory should have a chain,
698 // regardless of whether they happen to have an internal pattern saying so.
699 if (Pattern.getSrcPattern()->TreeHasProperty(SDNPHasChain, CGP)
700 && (II.hasCtrlDep || II.mayLoad || II.mayStore || II.canFoldAsLoad ||
701 II.hasSideEffects))
702 NodeHasChain = true;
703
Chris Lattner8e946be2010-02-21 03:22:59 +0000704 bool isRoot = N == Pattern.getDstPattern();
705
Chris Lattner8950bca2010-12-23 17:03:20 +0000706 // TreeHasOutGlue - True if this tree has glue.
707 bool TreeHasInGlue = false, TreeHasOutGlue = false;
Chris Lattner8e946be2010-02-21 03:22:59 +0000708 if (isRoot) {
709 const TreePatternNode *SrcPat = Pattern.getSrcPattern();
Chris Lattner036609b2010-12-23 18:28:41 +0000710 TreeHasInGlue = SrcPat->TreeHasProperty(SDNPOptInGlue, CGP) ||
711 SrcPat->TreeHasProperty(SDNPInGlue, CGP);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000712
Chris Lattner8e946be2010-02-21 03:22:59 +0000713 // FIXME2: this is checking the entire pattern, not just the node in
714 // question, doing this just for the root seems like a total hack.
Chris Lattner036609b2010-12-23 18:28:41 +0000715 TreeHasOutGlue = SrcPat->TreeHasProperty(SDNPOutGlue, CGP);
Chris Lattner8e946be2010-02-21 03:22:59 +0000716 }
717
718 // NumResults - This is the number of results produced by the instruction in
719 // the "outs" list.
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000720 unsigned NumResults = Inst.getNumResults();
Chris Lattnerb49985a2010-02-18 06:47:49 +0000721
Chris Lattnerb49985a2010-02-18 06:47:49 +0000722 // Loop over all of the operands of the instruction pattern, emitting code
723 // to fill them all in. The node 'N' usually has number children equal to
724 // the number of input operands of the instruction. However, in cases
725 // where there are predicate operands for an instruction, we need to fill
726 // in the 'execute always' values. Match up the node operands to the
727 // instruction operands to do this.
Chris Lattner8e946be2010-02-21 03:22:59 +0000728 SmallVector<unsigned, 8> InstOps;
Chris Lattnerc240bb02010-11-01 04:03:32 +0000729 for (unsigned ChildNo = 0, InstOpNo = NumResults, e = II.Operands.size();
Chris Lattnerb49985a2010-02-18 06:47:49 +0000730 InstOpNo != e; ++InstOpNo) {
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000731
Chris Lattnerb49985a2010-02-18 06:47:49 +0000732 // Determine what to emit for this operand.
Chris Lattnerc240bb02010-11-01 04:03:32 +0000733 Record *OperandNode = II.Operands[InstOpNo].Rec;
Tom Stellard6d3d7652012-09-06 14:15:52 +0000734 if (OperandNode->isSubClassOf("OperandWithDefaultOps") &&
Chris Lattnerb49985a2010-02-18 06:47:49 +0000735 !CGP.getDefaultOperand(OperandNode).DefaultOps.empty()) {
736 // This is a predicate or optional def operand; emit the
737 // 'default ops' operands.
Eric Christopherae321ed2010-08-10 23:46:20 +0000738 const DAGDefaultOperand &DefaultOp
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000739 = CGP.getDefaultOperand(OperandNode);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000740 for (unsigned i = 0, e = DefaultOp.DefaultOps.size(); i != e; ++i)
Chris Lattner8e946be2010-02-21 03:22:59 +0000741 EmitResultOperand(DefaultOp.DefaultOps[i], InstOps);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000742 continue;
743 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000744
Chris Lattnerb49985a2010-02-18 06:47:49 +0000745 // Otherwise this is a normal operand or a predicate operand without
746 // 'execute always'; emit it.
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000747
Ulrich Weigandec8d1a52013-03-19 19:51:09 +0000748 // For operands with multiple sub-operands we may need to emit
749 // multiple child patterns to cover them all. However, ComplexPattern
750 // children may themselves emit multiple MI operands.
751 unsigned NumSubOps = 1;
752 if (OperandNode->isSubClassOf("Operand")) {
753 DagInit *MIOpInfo = OperandNode->getValueAsDag("MIOperandInfo");
754 if (unsigned NumArgs = MIOpInfo->getNumArgs())
755 NumSubOps = NumArgs;
756 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000757
Ulrich Weigandec8d1a52013-03-19 19:51:09 +0000758 unsigned FinalNumOps = InstOps.size() + NumSubOps;
759 while (InstOps.size() < FinalNumOps) {
760 const TreePatternNode *Child = N->getChild(ChildNo);
761 unsigned BeforeAddingNumOps = InstOps.size();
762 EmitResultOperand(Child, InstOps);
763 assert(InstOps.size() > BeforeAddingNumOps && "Didn't add any operands");
764
765 // If the operand is an instruction and it produced multiple results, just
766 // take the first one.
767 if (!Child->isLeaf() && Child->getOperator()->isSubClassOf("Instruction"))
768 InstOps.resize(BeforeAddingNumOps+1);
769
770 ++ChildNo;
771 }
Chris Lattnerb49985a2010-02-18 06:47:49 +0000772 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000773
Chris Lattner8950bca2010-12-23 17:03:20 +0000774 // If this node has input glue or explicitly specified input physregs, we
775 // need to add chained and glued copyfromreg nodes and materialize the glue
Chris Lattner8e946be2010-02-21 03:22:59 +0000776 // input.
777 if (isRoot && !PhysRegInputs.empty()) {
778 // Emit all of the CopyToReg nodes for the input physical registers. These
779 // occur in patterns like (mul:i8 AL:i8, GR8:i8:$src).
780 for (unsigned i = 0, e = PhysRegInputs.size(); i != e; ++i)
Chris Lattnerb21ba712010-02-25 02:04:40 +0000781 AddMatcher(new EmitCopyToRegMatcher(PhysRegInputs[i].second,
Chris Lattner92879532010-03-18 23:57:40 +0000782 PhysRegInputs[i].first));
Chris Lattner8950bca2010-12-23 17:03:20 +0000783 // Even if the node has no other glue inputs, the resultant node must be
784 // glued to the CopyFromReg nodes we just generated.
785 TreeHasInGlue = true;
Chris Lattner8e946be2010-02-21 03:22:59 +0000786 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000787
Chris Lattner8950bca2010-12-23 17:03:20 +0000788 // Result order: node results, chain, glue
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000789
Chris Lattner8e946be2010-02-21 03:22:59 +0000790 // Determine the result types.
791 SmallVector<MVT::SimpleValueType, 4> ResultVTs;
Chris Lattner0be6fe72010-03-27 19:15:02 +0000792 for (unsigned i = 0, e = N->getNumTypes(); i != e; ++i)
793 ResultVTs.push_back(N->getType(i));
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000794
Chris Lattner8e946be2010-02-21 03:22:59 +0000795 // If this is the root instruction of a pattern that has physical registers in
796 // its result pattern, add output VTs for them. For example, X86 has:
797 // (set AL, (mul ...))
798 // This also handles implicit results like:
799 // (implicit EFLAGS)
Chris Lattnerb4a52b02010-03-27 20:45:15 +0000800 if (isRoot && !Pattern.getDstRegs().empty()) {
Chris Lattner92879532010-03-18 23:57:40 +0000801 // If the root came from an implicit def in the instruction handling stuff,
802 // don't re-add it.
803 Record *HandledReg = 0;
Chris Lattner9414ae52010-03-27 20:09:24 +0000804 if (II.HasOneImplicitDefWithKnownVT(CGT) != MVT::Other)
Chris Lattner92879532010-03-18 23:57:40 +0000805 HandledReg = II.ImplicitDefs[0];
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000806
Chris Lattner92879532010-03-18 23:57:40 +0000807 for (unsigned i = 0; i != Pattern.getDstRegs().size(); ++i) {
808 Record *Reg = Pattern.getDstRegs()[i];
809 if (!Reg->isSubClassOf("Register") || Reg == HandledReg) continue;
810 ResultVTs.push_back(getRegisterValueType(Reg, CGT));
811 }
Chris Lattner8e946be2010-02-21 03:22:59 +0000812 }
Chris Lattner8e946be2010-02-21 03:22:59 +0000813
Chris Lattner1e506312010-03-19 05:34:15 +0000814 // If this is the root of the pattern and the pattern we're matching includes
815 // a node that is variadic, mark the generated node as variadic so that it
816 // gets the excess operands from the input DAG.
Chris Lattner8e946be2010-02-21 03:22:59 +0000817 int NumFixedArityOperands = -1;
Chris Lattner1e506312010-03-19 05:34:15 +0000818 if (isRoot &&
819 (Pattern.getSrcPattern()->NodeHasProperty(SDNPVariadic, CGP)))
Chris Lattner8e946be2010-02-21 03:22:59 +0000820 NumFixedArityOperands = Pattern.getSrcPattern()->getNumChildren();
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000821
Cameron Zwarich3a2d2552011-05-19 21:13:30 +0000822 // If this is the root node and multiple matched nodes in the input pattern
823 // have MemRefs in them, have the interpreter collect them and plop them onto
824 // this node. If there is just one node with MemRefs, leave them on that node
825 // even if it is not the root.
Chris Lattner8e946be2010-02-21 03:22:59 +0000826 //
Cameron Zwarich3a2d2552011-05-19 21:13:30 +0000827 // FIXME3: This is actively incorrect for result patterns with multiple
828 // memory-referencing instructions.
829 bool PatternHasMemOperands =
830 Pattern.getSrcPattern()->TreeHasProperty(SDNPMemOperand, CGP);
831
832 bool NodeHasMemRefs = false;
833 if (PatternHasMemOperands) {
834 unsigned NumNodesThatLoadOrStore =
835 numNodesThatMayLoadOrStore(Pattern.getDstPattern(), CGP);
836 bool NodeIsUniqueLoadOrStore = mayInstNodeLoadOrStore(N, CGP) &&
837 NumNodesThatLoadOrStore == 1;
838 NodeHasMemRefs =
839 NodeIsUniqueLoadOrStore || (isRoot && (mayInstNodeLoadOrStore(N, CGP) ||
840 NumNodesThatLoadOrStore != 1));
841 }
Chris Lattner8e946be2010-02-21 03:22:59 +0000842
Chris Lattner8950bca2010-12-23 17:03:20 +0000843 assert((!ResultVTs.empty() || TreeHasOutGlue || NodeHasChain) &&
Chris Lattner0be6fe72010-03-27 19:15:02 +0000844 "Node has no result");
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000845
Chris Lattnerb21ba712010-02-25 02:04:40 +0000846 AddMatcher(new EmitNodeMatcher(II.Namespace+"::"+II.TheDef->getName(),
Chris Lattnere86097a2010-02-28 02:31:26 +0000847 ResultVTs.data(), ResultVTs.size(),
848 InstOps.data(), InstOps.size(),
Chris Lattner8950bca2010-12-23 17:03:20 +0000849 NodeHasChain, TreeHasInGlue, TreeHasOutGlue,
Chris Lattner6281cda2010-02-28 02:41:25 +0000850 NodeHasMemRefs, NumFixedArityOperands,
851 NextRecordedOperandNo));
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000852
Chris Lattner8950bca2010-12-23 17:03:20 +0000853 // The non-chain and non-glue results of the newly emitted node get recorded.
Chris Lattner565a6f92010-02-21 23:54:05 +0000854 for (unsigned i = 0, e = ResultVTs.size(); i != e; ++i) {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000855 if (ResultVTs[i] == MVT::Other || ResultVTs[i] == MVT::Glue) break;
Chris Lattner77f2e272010-02-21 06:03:07 +0000856 OutputOps.push_back(NextRecordedOperandNo++);
Chris Lattner565a6f92010-02-21 23:54:05 +0000857 }
Chris Lattner8e946be2010-02-21 03:22:59 +0000858}
859
860void MatcherGen::
861EmitResultSDNodeXFormAsOperand(const TreePatternNode *N,
862 SmallVectorImpl<unsigned> &ResultOps) {
863 assert(N->getOperator()->isSubClassOf("SDNodeXForm") && "Not SDNodeXForm?");
864
865 // Emit the operand.
866 SmallVector<unsigned, 8> InputOps;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000867
Chris Lattner8e946be2010-02-21 03:22:59 +0000868 // FIXME2: Could easily generalize this to support multiple inputs and outputs
869 // to the SDNodeXForm. For now we just support one input and one output like
870 // the old instruction selector.
871 assert(N->getNumChildren() == 1);
872 EmitResultOperand(N->getChild(0), InputOps);
873
874 // The input currently must have produced exactly one result.
875 assert(InputOps.size() == 1 && "Unexpected input to SDNodeXForm");
876
Chris Lattnerb21ba712010-02-25 02:04:40 +0000877 AddMatcher(new EmitNodeXFormMatcher(InputOps[0], N->getOperator()));
Chris Lattner8e946be2010-02-21 03:22:59 +0000878 ResultOps.push_back(NextRecordedOperandNo++);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000879}
880
881void MatcherGen::EmitResultOperand(const TreePatternNode *N,
Chris Lattner8e946be2010-02-21 03:22:59 +0000882 SmallVectorImpl<unsigned> &ResultOps) {
Chris Lattnerb49985a2010-02-18 06:47:49 +0000883 // This is something selected from the pattern we matched.
Chris Lattner8e946be2010-02-21 03:22:59 +0000884 if (!N->getName().empty())
885 return EmitResultOfNamedOperand(N, ResultOps);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000886
887 if (N->isLeaf())
888 return EmitResultLeafAsOperand(N, ResultOps);
889
890 Record *OpRec = N->getOperator();
891 if (OpRec->isSubClassOf("Instruction"))
892 return EmitResultInstructionAsOperand(N, ResultOps);
893 if (OpRec->isSubClassOf("SDNodeXForm"))
Chris Lattner8e946be2010-02-21 03:22:59 +0000894 return EmitResultSDNodeXFormAsOperand(N, ResultOps);
Chris Lattnerb49985a2010-02-18 06:47:49 +0000895 errs() << "Unknown result node to emit code for: " << *N << '\n';
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000896 PrintFatalError("Unknown node in result pattern!");
Chris Lattnerb49985a2010-02-18 06:47:49 +0000897}
898
899void MatcherGen::EmitResultCode() {
Chris Lattner01bcd942010-03-01 22:46:42 +0000900 // Patterns that match nodes with (potentially multiple) chain inputs have to
901 // merge them together into a token factor. This informs the generated code
902 // what all the chained nodes are.
903 if (!MatchedChainNodes.empty())
904 AddMatcher(new EmitMergeInputChainsMatcher
905 (MatchedChainNodes.data(), MatchedChainNodes.size()));
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000906
Chris Lattner565a6f92010-02-21 23:54:05 +0000907 // Codegen the root of the result pattern, capturing the resulting values.
Chris Lattner8e946be2010-02-21 03:22:59 +0000908 SmallVector<unsigned, 8> Ops;
Chris Lattnerb49985a2010-02-18 06:47:49 +0000909 EmitResultOperand(Pattern.getDstPattern(), Ops);
Chris Lattner8e946be2010-02-21 03:22:59 +0000910
Chris Lattner565a6f92010-02-21 23:54:05 +0000911 // At this point, we have however many values the result pattern produces.
912 // However, the input pattern might not need all of these. If there are
Chris Lattnerb4a52b02010-03-27 20:45:15 +0000913 // excess values at the end (such as implicit defs of condition codes etc)
Chris Lattner8950bca2010-12-23 17:03:20 +0000914 // just lop them off. This doesn't need to worry about glue or chains, just
Chris Lattnerb4a52b02010-03-27 20:45:15 +0000915 // explicit results.
Chris Lattner565a6f92010-02-21 23:54:05 +0000916 //
Chris Lattnerb4a52b02010-03-27 20:45:15 +0000917 unsigned NumSrcResults = Pattern.getSrcPattern()->getNumTypes();
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000918
Chris Lattnerb4a52b02010-03-27 20:45:15 +0000919 // If the pattern also has (implicit) results, count them as well.
920 if (!Pattern.getDstRegs().empty()) {
921 // If the root came from an implicit def in the instruction handling stuff,
922 // don't re-add it.
923 Record *HandledReg = 0;
924 const TreePatternNode *DstPat = Pattern.getDstPattern();
925 if (!DstPat->isLeaf() &&DstPat->getOperator()->isSubClassOf("Instruction")){
926 const CodeGenTarget &CGT = CGP.getTargetInfo();
927 CodeGenInstruction &II = CGT.getInstruction(DstPat->getOperator());
928
929 if (II.HasOneImplicitDefWithKnownVT(CGT) != MVT::Other)
930 HandledReg = II.ImplicitDefs[0];
931 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000932
Chris Lattnerb4a52b02010-03-27 20:45:15 +0000933 for (unsigned i = 0; i != Pattern.getDstRegs().size(); ++i) {
934 Record *Reg = Pattern.getDstRegs()[i];
935 if (!Reg->isSubClassOf("Register") || Reg == HandledReg) continue;
936 ++NumSrcResults;
937 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000938 }
939
Chris Lattner565a6f92010-02-21 23:54:05 +0000940 assert(Ops.size() >= NumSrcResults && "Didn't provide enough results");
941 Ops.resize(NumSrcResults);
Chris Lattner02f73582010-02-24 05:33:42 +0000942
Chris Lattner8950bca2010-12-23 17:03:20 +0000943 // If the matched pattern covers nodes which define a glue result, emit a node
Chris Lattner02f73582010-02-24 05:33:42 +0000944 // that tells the matcher about them so that it can update their results.
Chris Lattner8950bca2010-12-23 17:03:20 +0000945 if (!MatchedGlueResultNodes.empty())
946 AddMatcher(new MarkGlueResultsMatcher(MatchedGlueResultNodes.data(),
947 MatchedGlueResultNodes.size()));
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000948
Chris Lattnerb21ba712010-02-25 02:04:40 +0000949 AddMatcher(new CompleteMatchMatcher(Ops.data(), Ops.size(), Pattern));
Chris Lattnerb49985a2010-02-18 06:47:49 +0000950}
951
952
Chris Lattnerfa342fa2010-03-01 07:17:40 +0000953/// ConvertPatternToMatcher - Create the matcher for the specified pattern with
954/// the specified variant. If the variant number is invalid, this returns null.
Chris Lattnerb21ba712010-02-25 02:04:40 +0000955Matcher *llvm::ConvertPatternToMatcher(const PatternToMatch &Pattern,
Chris Lattnerfa342fa2010-03-01 07:17:40 +0000956 unsigned Variant,
Chris Lattnerc78f2a32010-02-28 20:49:53 +0000957 const CodeGenDAGPatterns &CGP) {
Chris Lattnerda272d12010-02-15 08:04:42 +0000958 MatcherGen Gen(Pattern, CGP);
959
960 // Generate the code for the matcher.
Chris Lattnerfa342fa2010-03-01 07:17:40 +0000961 if (Gen.EmitMatcherCode(Variant))
962 return 0;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000963
Chris Lattner8e946be2010-02-21 03:22:59 +0000964 // FIXME2: Kill extra MoveParent commands at the end of the matcher sequence.
965 // FIXME2: Split result code out to another table, and make the matcher end
966 // with an "Emit <index>" command. This allows result generation stuff to be
967 // shared and factored?
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000968
Chris Lattnerda272d12010-02-15 08:04:42 +0000969 // If the match succeeds, then we generate Pattern.
Chris Lattnerb49985a2010-02-18 06:47:49 +0000970 Gen.EmitResultCode();
Chris Lattnerda272d12010-02-15 08:04:42 +0000971
972 // Unconditional match.
Chris Lattnerb49985a2010-02-18 06:47:49 +0000973 return Gen.GetMatcher();
Chris Lattnerda272d12010-02-15 08:04:42 +0000974}