blob: d44bfc93375e8cb27cb3336c42ced9c4db4a0479 [file] [log] [blame]
Chris Lattnerfe718932008-01-06 01:10:31 +00001//===- CodeGenDAGPatterns.h - Read DAG patterns from .td file ---*- C++ -*-===//
Chris Lattner6cefb772008-01-05 22:25:12 +00002//
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//
Chris Lattnerfe718932008-01-06 01:10:31 +000010// This file declares the CodeGenDAGPatterns class, which is used to read and
Chris Lattner6cefb772008-01-05 22:25:12 +000011// represent the patterns present in a .td file for instructions.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef CODEGEN_DAGPATTERNS_H
16#define CODEGEN_DAGPATTERNS_H
17
Scott Michel327d0652008-03-05 17:49:05 +000018#include <set>
Dan Gohman0540e172008-10-15 06:17:21 +000019#include <algorithm>
20#include <vector>
Scott Michel327d0652008-03-05 17:49:05 +000021
Chris Lattner6cefb772008-01-05 22:25:12 +000022#include "CodeGenTarget.h"
23#include "CodeGenIntrinsics.h"
24
25namespace llvm {
26 class Record;
27 struct Init;
28 class ListInit;
29 class DagInit;
30 class SDNodeInfo;
31 class TreePattern;
32 class TreePatternNode;
Chris Lattnerfe718932008-01-06 01:10:31 +000033 class CodeGenDAGPatterns;
Chris Lattner6cefb772008-01-05 22:25:12 +000034 class ComplexPattern;
35
Duncan Sands83ec4b62008-06-06 12:08:01 +000036/// EMVT::DAGISelGenValueType - These are some extended forms of
37/// MVT::SimpleValueType that we use as lattice values during type inference.
38namespace EMVT {
Chris Lattner6cefb772008-01-05 22:25:12 +000039 enum DAGISelGenValueType {
40 isFP = MVT::LAST_VALUETYPE,
41 isInt,
42 isUnknown
43 };
Duncan Sands83ec4b62008-06-06 12:08:01 +000044
Chris Lattner6cefb772008-01-05 22:25:12 +000045 /// isExtIntegerVT - Return true if the specified extended value type vector
46 /// contains isInt or an integer value type.
47 bool isExtIntegerInVTs(const std::vector<unsigned char> &EVTs);
48
49 /// isExtFloatingPointVT - Return true if the specified extended value type
50 /// vector contains isFP or a FP value type.
51 bool isExtFloatingPointInVTs(const std::vector<unsigned char> &EVTs);
52}
53
Scott Michel327d0652008-03-05 17:49:05 +000054/// Set type used to track multiply used variables in patterns
55typedef std::set<std::string> MultipleUseVarSet;
56
Chris Lattner6cefb772008-01-05 22:25:12 +000057/// SDTypeConstraint - This is a discriminated union of constraints,
58/// corresponding to the SDTypeConstraint tablegen class in Target.td.
59struct SDTypeConstraint {
60 SDTypeConstraint(Record *R);
61
62 unsigned OperandNo; // The operand # this constraint applies to.
63 enum {
64 SDTCisVT, SDTCisPtrTy, SDTCisInt, SDTCisFP, SDTCisSameAs,
Nate Begemanb5af3342008-02-09 01:37:05 +000065 SDTCisVTSmallerThanOp, SDTCisOpSmallerThanOp, SDTCisIntVectorOfSameSize,
66 SDTCisEltOfVec
Chris Lattner6cefb772008-01-05 22:25:12 +000067 } ConstraintType;
68
69 union { // The discriminated union.
70 struct {
Duncan Sands83ec4b62008-06-06 12:08:01 +000071 unsigned char VT;
Chris Lattner6cefb772008-01-05 22:25:12 +000072 } SDTCisVT_Info;
73 struct {
74 unsigned OtherOperandNum;
75 } SDTCisSameAs_Info;
76 struct {
77 unsigned OtherOperandNum;
78 } SDTCisVTSmallerThanOp_Info;
79 struct {
80 unsigned BigOperandNum;
81 } SDTCisOpSmallerThanOp_Info;
82 struct {
83 unsigned OtherOperandNum;
84 } SDTCisIntVectorOfSameSize_Info;
Nate Begemanb5af3342008-02-09 01:37:05 +000085 struct {
86 unsigned OtherOperandNum;
87 } SDTCisEltOfVec_Info;
Chris Lattner6cefb772008-01-05 22:25:12 +000088 } x;
89
90 /// ApplyTypeConstraint - Given a node in a pattern, apply this type
91 /// constraint to the nodes operands. This returns true if it makes a
92 /// change, false otherwise. If a type contradiction is found, throw an
93 /// exception.
94 bool ApplyTypeConstraint(TreePatternNode *N, const SDNodeInfo &NodeInfo,
95 TreePattern &TP) const;
96
97 /// getOperandNum - Return the node corresponding to operand #OpNo in tree
98 /// N, which has NumResults results.
99 TreePatternNode *getOperandNum(unsigned OpNo, TreePatternNode *N,
100 unsigned NumResults) const;
101};
102
103/// SDNodeInfo - One of these records is created for each SDNode instance in
104/// the target .td file. This represents the various dag nodes we will be
105/// processing.
106class SDNodeInfo {
107 Record *Def;
108 std::string EnumName;
109 std::string SDClassName;
110 unsigned Properties;
111 unsigned NumResults;
112 int NumOperands;
113 std::vector<SDTypeConstraint> TypeConstraints;
114public:
115 SDNodeInfo(Record *R); // Parse the specified record.
116
117 unsigned getNumResults() const { return NumResults; }
118 int getNumOperands() const { return NumOperands; }
119 Record *getRecord() const { return Def; }
120 const std::string &getEnumName() const { return EnumName; }
121 const std::string &getSDClassName() const { return SDClassName; }
122
123 const std::vector<SDTypeConstraint> &getTypeConstraints() const {
124 return TypeConstraints;
125 }
126
127 /// hasProperty - Return true if this node has the specified property.
128 ///
129 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
130
131 /// ApplyTypeConstraints - Given a node in a pattern, apply the type
132 /// constraints for this node to the operands of the node. This returns
133 /// true if it makes a change, false otherwise. If a type contradiction is
134 /// found, throw an exception.
135 bool ApplyTypeConstraints(TreePatternNode *N, TreePattern &TP) const {
136 bool MadeChange = false;
137 for (unsigned i = 0, e = TypeConstraints.size(); i != e; ++i)
138 MadeChange |= TypeConstraints[i].ApplyTypeConstraint(N, *this, TP);
139 return MadeChange;
140 }
141};
142
143/// FIXME: TreePatternNode's can be shared in some cases (due to dag-shaped
144/// patterns), and as such should be ref counted. We currently just leak all
145/// TreePatternNode objects!
146class TreePatternNode {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000147 /// The inferred type for this node, or EMVT::isUnknown if it hasn't
Chris Lattner6cefb772008-01-05 22:25:12 +0000148 /// been determined yet.
149 std::vector<unsigned char> Types;
150
151 /// Operator - The Record for the operator if this is an interior node (not
152 /// a leaf).
153 Record *Operator;
154
155 /// Val - The init value (e.g. the "GPRC" record, or "7") for a leaf.
156 ///
157 Init *Val;
158
159 /// Name - The name given to this node with the :$foo notation.
160 ///
161 std::string Name;
162
Dan Gohman0540e172008-10-15 06:17:21 +0000163 /// PredicateFns - The predicate functions to execute on this node to check
164 /// for a match. If this list is empty, no predicate is involved.
165 std::vector<std::string> PredicateFns;
Chris Lattner6cefb772008-01-05 22:25:12 +0000166
167 /// TransformFn - The transformation function to execute on this node before
168 /// it can be substituted into the resulting instruction on a pattern match.
169 Record *TransformFn;
170
171 std::vector<TreePatternNode*> Children;
172public:
173 TreePatternNode(Record *Op, const std::vector<TreePatternNode*> &Ch)
174 : Types(), Operator(Op), Val(0), TransformFn(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +0000175 Children(Ch) { Types.push_back(EMVT::isUnknown); }
Chris Lattner6cefb772008-01-05 22:25:12 +0000176 TreePatternNode(Init *val) // leaf ctor
177 : Types(), Operator(0), Val(val), TransformFn(0) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000178 Types.push_back(EMVT::isUnknown);
Chris Lattner6cefb772008-01-05 22:25:12 +0000179 }
180 ~TreePatternNode();
181
182 const std::string &getName() const { return Name; }
183 void setName(const std::string &N) { Name = N; }
184
185 bool isLeaf() const { return Val != 0; }
186 bool hasTypeSet() const {
Mon P Wange3b3a722008-07-30 04:36:53 +0000187 return (Types[0] < MVT::LAST_VALUETYPE) || (Types[0] == MVT::iPTR) ||
188 (Types[0] == MVT::iPTRAny);
Chris Lattner6cefb772008-01-05 22:25:12 +0000189 }
190 bool isTypeCompletelyUnknown() const {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000191 return Types[0] == EMVT::isUnknown;
Chris Lattner6cefb772008-01-05 22:25:12 +0000192 }
193 bool isTypeDynamicallyResolved() const {
Mon P Wange3b3a722008-07-30 04:36:53 +0000194 return (Types[0] == MVT::iPTR) || (Types[0] == MVT::iPTRAny);
Chris Lattner6cefb772008-01-05 22:25:12 +0000195 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000196 MVT::SimpleValueType getTypeNum(unsigned Num) const {
Chris Lattner6cefb772008-01-05 22:25:12 +0000197 assert(hasTypeSet() && "Doesn't have a type yet!");
198 assert(Types.size() > Num && "Type num out of range!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000199 return (MVT::SimpleValueType)Types[Num];
Chris Lattner6cefb772008-01-05 22:25:12 +0000200 }
201 unsigned char getExtTypeNum(unsigned Num) const {
202 assert(Types.size() > Num && "Extended type num out of range!");
203 return Types[Num];
204 }
205 const std::vector<unsigned char> &getExtTypes() const { return Types; }
206 void setTypes(const std::vector<unsigned char> &T) { Types = T; }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000207 void removeTypes() { Types = std::vector<unsigned char>(1, EMVT::isUnknown); }
Chris Lattner6cefb772008-01-05 22:25:12 +0000208
209 Init *getLeafValue() const { assert(isLeaf()); return Val; }
210 Record *getOperator() const { assert(!isLeaf()); return Operator; }
211
212 unsigned getNumChildren() const { return Children.size(); }
213 TreePatternNode *getChild(unsigned N) const { return Children[N]; }
214 void setChild(unsigned i, TreePatternNode *N) {
215 Children[i] = N;
216 }
Chris Lattnere67bde52008-01-06 05:36:50 +0000217
Dan Gohman0540e172008-10-15 06:17:21 +0000218 const std::vector<std::string> &getPredicateFns() const { return PredicateFns; }
219 void clearPredicateFns() { PredicateFns.clear(); }
220 void setPredicateFns(const std::vector<std::string> &Fns) {
221 assert(PredicateFns.empty() && "Overwriting non-empty predicate list!");
222 PredicateFns = Fns;
223 }
224 void addPredicateFn(const std::string &Fn) {
225 assert(!Fn.empty() && "Empty predicate string!");
226 if (std::find(PredicateFns.begin(), PredicateFns.end(), Fn) ==
227 PredicateFns.end())
228 PredicateFns.push_back(Fn);
229 }
Chris Lattner6cefb772008-01-05 22:25:12 +0000230
231 Record *getTransformFn() const { return TransformFn; }
232 void setTransformFn(Record *Fn) { TransformFn = Fn; }
233
Chris Lattnere67bde52008-01-06 05:36:50 +0000234 /// getIntrinsicInfo - If this node corresponds to an intrinsic, return the
235 /// CodeGenIntrinsic information for it, otherwise return a null pointer.
236 const CodeGenIntrinsic *getIntrinsicInfo(const CodeGenDAGPatterns &CDP) const;
Evan Cheng6bd95672008-06-16 20:29:38 +0000237
238 /// isCommutativeIntrinsic - Return true if the node is an intrinsic which is
239 /// marked isCommutative.
240 bool isCommutativeIntrinsic(const CodeGenDAGPatterns &CDP) const;
Chris Lattnere67bde52008-01-06 05:36:50 +0000241
Chris Lattner6cefb772008-01-05 22:25:12 +0000242 void print(std::ostream &OS) const;
243 void dump() const;
244
245public: // Higher level manipulation routines.
246
247 /// clone - Return a new copy of this tree.
248 ///
249 TreePatternNode *clone() const;
250
251 /// isIsomorphicTo - Return true if this node is recursively isomorphic to
252 /// the specified node. For this comparison, all of the state of the node
253 /// is considered, except for the assigned name. Nodes with differing names
254 /// that are otherwise identical are considered isomorphic.
Scott Michel327d0652008-03-05 17:49:05 +0000255 bool isIsomorphicTo(const TreePatternNode *N,
256 const MultipleUseVarSet &DepVars) const;
Chris Lattner6cefb772008-01-05 22:25:12 +0000257
258 /// SubstituteFormalArguments - Replace the formal arguments in this tree
259 /// with actual values specified by ArgMap.
260 void SubstituteFormalArguments(std::map<std::string,
261 TreePatternNode*> &ArgMap);
262
263 /// InlinePatternFragments - If this pattern refers to any pattern
264 /// fragments, inline them into place, giving us a pattern without any
265 /// PatFrag references.
266 TreePatternNode *InlinePatternFragments(TreePattern &TP);
267
Bob Wilson6c01ca92009-01-05 17:23:09 +0000268 /// ApplyTypeConstraints - Apply all of the type constraints relevant to
Chris Lattner6cefb772008-01-05 22:25:12 +0000269 /// this node and its children in the tree. This returns true if it makes a
270 /// change, false otherwise. If a type contradiction is found, throw an
271 /// exception.
272 bool ApplyTypeConstraints(TreePattern &TP, bool NotRegisters);
273
274 /// UpdateNodeType - Set the node type of N to VT if VT contains
275 /// information. If N already contains a conflicting type, then throw an
276 /// exception. This returns true if any information was updated.
277 ///
278 bool UpdateNodeType(const std::vector<unsigned char> &ExtVTs,
279 TreePattern &TP);
280 bool UpdateNodeType(unsigned char ExtVT, TreePattern &TP) {
281 std::vector<unsigned char> ExtVTs(1, ExtVT);
282 return UpdateNodeType(ExtVTs, TP);
283 }
284
285 /// ContainsUnresolvedType - Return true if this tree contains any
286 /// unresolved types.
287 bool ContainsUnresolvedType() const {
288 if (!hasTypeSet() && !isTypeDynamicallyResolved()) return true;
289 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
290 if (getChild(i)->ContainsUnresolvedType()) return true;
291 return false;
292 }
293
294 /// canPatternMatch - If it is impossible for this pattern to match on this
295 /// target, fill in Reason and return false. Otherwise, return true.
Dan Gohmanee4fa192008-04-03 00:02:49 +0000296 bool canPatternMatch(std::string &Reason, const CodeGenDAGPatterns &CDP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000297};
298
299
300/// TreePattern - Represent a pattern, used for instructions, pattern
301/// fragments, etc.
302///
303class TreePattern {
304 /// Trees - The list of pattern trees which corresponds to this pattern.
305 /// Note that PatFrag's only have a single tree.
306 ///
307 std::vector<TreePatternNode*> Trees;
308
309 /// TheRecord - The actual TableGen record corresponding to this pattern.
310 ///
311 Record *TheRecord;
312
313 /// Args - This is a list of all of the arguments to this pattern (for
314 /// PatFrag patterns), which are the 'node' markers in this pattern.
315 std::vector<std::string> Args;
316
317 /// CDP - the top-level object coordinating this madness.
318 ///
Chris Lattnerfe718932008-01-06 01:10:31 +0000319 CodeGenDAGPatterns &CDP;
Chris Lattner6cefb772008-01-05 22:25:12 +0000320
321 /// isInputPattern - True if this is an input pattern, something to match.
322 /// False if this is an output pattern, something to emit.
323 bool isInputPattern;
324public:
325
326 /// TreePattern constructor - Parse the specified DagInits into the
327 /// current record.
328 TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
Chris Lattnerfe718932008-01-06 01:10:31 +0000329 CodeGenDAGPatterns &ise);
Chris Lattner6cefb772008-01-05 22:25:12 +0000330 TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
Chris Lattnerfe718932008-01-06 01:10:31 +0000331 CodeGenDAGPatterns &ise);
Chris Lattner6cefb772008-01-05 22:25:12 +0000332 TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
Chris Lattnerfe718932008-01-06 01:10:31 +0000333 CodeGenDAGPatterns &ise);
Chris Lattner6cefb772008-01-05 22:25:12 +0000334
335 /// getTrees - Return the tree patterns which corresponds to this pattern.
336 ///
337 const std::vector<TreePatternNode*> &getTrees() const { return Trees; }
338 unsigned getNumTrees() const { return Trees.size(); }
339 TreePatternNode *getTree(unsigned i) const { return Trees[i]; }
340 TreePatternNode *getOnlyTree() const {
341 assert(Trees.size() == 1 && "Doesn't have exactly one pattern!");
342 return Trees[0];
343 }
344
345 /// getRecord - Return the actual TableGen record corresponding to this
346 /// pattern.
347 ///
348 Record *getRecord() const { return TheRecord; }
349
350 unsigned getNumArgs() const { return Args.size(); }
351 const std::string &getArgName(unsigned i) const {
352 assert(i < Args.size() && "Argument reference out of range!");
353 return Args[i];
354 }
355 std::vector<std::string> &getArgList() { return Args; }
356
Chris Lattnerfe718932008-01-06 01:10:31 +0000357 CodeGenDAGPatterns &getDAGPatterns() const { return CDP; }
Chris Lattner6cefb772008-01-05 22:25:12 +0000358
359 /// InlinePatternFragments - If this pattern refers to any pattern
360 /// fragments, inline them into place, giving us a pattern without any
361 /// PatFrag references.
362 void InlinePatternFragments() {
363 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
364 Trees[i] = Trees[i]->InlinePatternFragments(*this);
365 }
366
367 /// InferAllTypes - Infer/propagate as many types throughout the expression
368 /// patterns as possible. Return true if all types are infered, false
369 /// otherwise. Throw an exception if a type contradiction is found.
370 bool InferAllTypes();
371
372 /// error - Throw an exception, prefixing it with information about this
373 /// pattern.
374 void error(const std::string &Msg) const;
375
376 void print(std::ostream &OS) const;
377 void dump() const;
378
379private:
380 TreePatternNode *ParseTreePattern(DagInit *DI);
381};
382
383/// DAGDefaultOperand - One of these is created for each PredicateOperand
384/// or OptionalDefOperand that has a set ExecuteAlways / DefaultOps field.
385struct DAGDefaultOperand {
386 std::vector<TreePatternNode*> DefaultOps;
387};
388
389class DAGInstruction {
390 TreePattern *Pattern;
391 std::vector<Record*> Results;
392 std::vector<Record*> Operands;
393 std::vector<Record*> ImpResults;
394 std::vector<Record*> ImpOperands;
395 TreePatternNode *ResultPattern;
396public:
397 DAGInstruction(TreePattern *TP,
398 const std::vector<Record*> &results,
399 const std::vector<Record*> &operands,
400 const std::vector<Record*> &impresults,
401 const std::vector<Record*> &impoperands)
402 : Pattern(TP), Results(results), Operands(operands),
403 ImpResults(impresults), ImpOperands(impoperands),
404 ResultPattern(0) {}
405
Chris Lattnerf1ab4f12008-01-06 01:52:22 +0000406 const TreePattern *getPattern() const { return Pattern; }
Chris Lattner6cefb772008-01-05 22:25:12 +0000407 unsigned getNumResults() const { return Results.size(); }
408 unsigned getNumOperands() const { return Operands.size(); }
409 unsigned getNumImpResults() const { return ImpResults.size(); }
410 unsigned getNumImpOperands() const { return ImpOperands.size(); }
411 const std::vector<Record*>& getImpResults() const { return ImpResults; }
412
413 void setResultPattern(TreePatternNode *R) { ResultPattern = R; }
414
415 Record *getResult(unsigned RN) const {
416 assert(RN < Results.size());
417 return Results[RN];
418 }
419
420 Record *getOperand(unsigned ON) const {
421 assert(ON < Operands.size());
422 return Operands[ON];
423 }
424
425 Record *getImpResult(unsigned RN) const {
426 assert(RN < ImpResults.size());
427 return ImpResults[RN];
428 }
429
430 Record *getImpOperand(unsigned ON) const {
431 assert(ON < ImpOperands.size());
432 return ImpOperands[ON];
433 }
434
435 TreePatternNode *getResultPattern() const { return ResultPattern; }
436};
437
Chris Lattnerfe718932008-01-06 01:10:31 +0000438/// PatternToMatch - Used by CodeGenDAGPatterns to keep tab of patterns
Chris Lattner6cefb772008-01-05 22:25:12 +0000439/// processed to produce isel.
440struct PatternToMatch {
441 PatternToMatch(ListInit *preds,
442 TreePatternNode *src, TreePatternNode *dst,
443 const std::vector<Record*> &dstregs,
444 unsigned complexity):
445 Predicates(preds), SrcPattern(src), DstPattern(dst), Dstregs(dstregs),
446 AddedComplexity(complexity) {};
447
448 ListInit *Predicates; // Top level predicate conditions to match.
449 TreePatternNode *SrcPattern; // Source pattern to match.
450 TreePatternNode *DstPattern; // Resulting pattern.
451 std::vector<Record*> Dstregs; // Physical register defs being matched.
452 unsigned AddedComplexity; // Add to matching pattern complexity.
453
454 ListInit *getPredicates() const { return Predicates; }
455 TreePatternNode *getSrcPattern() const { return SrcPattern; }
456 TreePatternNode *getDstPattern() const { return DstPattern; }
457 const std::vector<Record*> &getDstRegs() const { return Dstregs; }
458 unsigned getAddedComplexity() const { return AddedComplexity; }
Dan Gohman22bb3112008-08-22 00:20:26 +0000459
460 std::string getPredicateCheck() const;
Chris Lattner6cefb772008-01-05 22:25:12 +0000461};
462
463
Chris Lattnerfe718932008-01-06 01:10:31 +0000464class CodeGenDAGPatterns {
Chris Lattner6cefb772008-01-05 22:25:12 +0000465 RecordKeeper &Records;
466 CodeGenTarget Target;
467 std::vector<CodeGenIntrinsic> Intrinsics;
468
469 std::map<Record*, SDNodeInfo> SDNodes;
470 std::map<Record*, std::pair<Record*, std::string> > SDNodeXForms;
471 std::map<Record*, ComplexPattern> ComplexPatterns;
472 std::map<Record*, TreePattern*> PatternFragments;
473 std::map<Record*, DAGDefaultOperand> DefaultOperands;
474 std::map<Record*, DAGInstruction> Instructions;
475
476 // Specific SDNode definitions:
477 Record *intrinsic_void_sdnode;
478 Record *intrinsic_w_chain_sdnode, *intrinsic_wo_chain_sdnode;
479
480 /// PatternsToMatch - All of the things we are matching on the DAG. The first
481 /// value is the pattern to match, the second pattern is the result to
482 /// emit.
483 std::vector<PatternToMatch> PatternsToMatch;
484public:
Chris Lattnerfe718932008-01-06 01:10:31 +0000485 CodeGenDAGPatterns(RecordKeeper &R);
486 ~CodeGenDAGPatterns();
Chris Lattner6cefb772008-01-05 22:25:12 +0000487
Dan Gohmanee4fa192008-04-03 00:02:49 +0000488 CodeGenTarget &getTargetInfo() { return Target; }
Chris Lattner6cefb772008-01-05 22:25:12 +0000489 const CodeGenTarget &getTargetInfo() const { return Target; }
490
491 Record *getSDNodeNamed(const std::string &Name) const;
492
493 const SDNodeInfo &getSDNodeInfo(Record *R) const {
494 assert(SDNodes.count(R) && "Unknown node!");
495 return SDNodes.find(R)->second;
496 }
497
Chris Lattner443e3f92008-01-05 22:54:53 +0000498 // Node transformation lookups.
499 typedef std::pair<Record*, std::string> NodeXForm;
500 const NodeXForm &getSDNodeTransform(Record *R) const {
Chris Lattner6cefb772008-01-05 22:25:12 +0000501 assert(SDNodeXForms.count(R) && "Invalid transform!");
502 return SDNodeXForms.find(R)->second;
503 }
504
Chris Lattner443e3f92008-01-05 22:54:53 +0000505 typedef std::map<Record*, NodeXForm>::const_iterator nx_iterator;
506 nx_iterator nx_begin() const { return SDNodeXForms.begin(); }
507 nx_iterator nx_end() const { return SDNodeXForms.end(); }
508
509
Chris Lattner6cefb772008-01-05 22:25:12 +0000510 const ComplexPattern &getComplexPattern(Record *R) const {
511 assert(ComplexPatterns.count(R) && "Unknown addressing mode!");
512 return ComplexPatterns.find(R)->second;
513 }
514
515 const CodeGenIntrinsic &getIntrinsic(Record *R) const {
516 for (unsigned i = 0, e = Intrinsics.size(); i != e; ++i)
517 if (Intrinsics[i].TheDef == R) return Intrinsics[i];
518 assert(0 && "Unknown intrinsic!");
519 abort();
520 }
521
522 const CodeGenIntrinsic &getIntrinsicInfo(unsigned IID) const {
523 assert(IID-1 < Intrinsics.size() && "Bad intrinsic ID!");
524 return Intrinsics[IID-1];
525 }
526
527 unsigned getIntrinsicID(Record *R) const {
528 for (unsigned i = 0, e = Intrinsics.size(); i != e; ++i)
529 if (Intrinsics[i].TheDef == R) return i;
530 assert(0 && "Unknown intrinsic!");
531 abort();
532 }
533
534 const DAGDefaultOperand &getDefaultOperand(Record *R) {
535 assert(DefaultOperands.count(R) &&"Isn't an analyzed default operand!");
536 return DefaultOperands.find(R)->second;
537 }
538
539 // Pattern Fragment information.
540 TreePattern *getPatternFragment(Record *R) const {
541 assert(PatternFragments.count(R) && "Invalid pattern fragment request!");
542 return PatternFragments.find(R)->second;
543 }
544 typedef std::map<Record*, TreePattern*>::const_iterator pf_iterator;
545 pf_iterator pf_begin() const { return PatternFragments.begin(); }
546 pf_iterator pf_end() const { return PatternFragments.end(); }
547
548 // Patterns to match information.
Chris Lattner60d81392008-01-05 22:30:17 +0000549 typedef std::vector<PatternToMatch>::const_iterator ptm_iterator;
550 ptm_iterator ptm_begin() const { return PatternsToMatch.begin(); }
551 ptm_iterator ptm_end() const { return PatternsToMatch.end(); }
Chris Lattner6cefb772008-01-05 22:25:12 +0000552
553
554
555 const DAGInstruction &getInstruction(Record *R) const {
556 assert(Instructions.count(R) && "Unknown instruction!");
557 return Instructions.find(R)->second;
558 }
559
560 Record *get_intrinsic_void_sdnode() const {
561 return intrinsic_void_sdnode;
562 }
563 Record *get_intrinsic_w_chain_sdnode() const {
564 return intrinsic_w_chain_sdnode;
565 }
566 Record *get_intrinsic_wo_chain_sdnode() const {
567 return intrinsic_wo_chain_sdnode;
568 }
569
570private:
571 void ParseNodeInfo();
Chris Lattner443e3f92008-01-05 22:54:53 +0000572 void ParseNodeTransforms();
Chris Lattner6cefb772008-01-05 22:25:12 +0000573 void ParseComplexPatterns();
Chris Lattnerdc32f982008-01-05 22:43:57 +0000574 void ParsePatternFragments();
Chris Lattner6cefb772008-01-05 22:25:12 +0000575 void ParseDefaultOperands();
576 void ParseInstructions();
577 void ParsePatterns();
Dan Gohmanee4fa192008-04-03 00:02:49 +0000578 void InferInstructionFlags();
Chris Lattner6cefb772008-01-05 22:25:12 +0000579 void GenerateVariants();
580
581 void FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
582 std::map<std::string,
583 TreePatternNode*> &InstInputs,
584 std::map<std::string,
585 TreePatternNode*> &InstResults,
586 std::vector<Record*> &InstImpInputs,
587 std::vector<Record*> &InstImpResults);
588};
589} // end namespace llvm
590
591#endif