CodeGenDAGPatterns.h revision 61131ab15fd593a2e295d79fe2714e7bc21f2ec8
1//===- CodeGenDAGPatterns.h - Read DAG patterns from .td file ---*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file declares the CodeGenDAGPatterns class, which is used to read and
11// represent the patterns present in a .td file for instructions.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef CODEGEN_DAGPATTERNS_H
16#define CODEGEN_DAGPATTERNS_H
17
18#include "CodeGenTarget.h"
19#include "CodeGenIntrinsics.h"
20#include "llvm/ADT/SmallVector.h"
21#include "llvm/ADT/StringMap.h"
22#include "llvm/Support/ErrorHandling.h"
23#include <set>
24#include <algorithm>
25#include <vector>
26#include <map>
27
28namespace llvm {
29  class Record;
30  class Init;
31  class ListInit;
32  class DagInit;
33  class SDNodeInfo;
34  class TreePattern;
35  class TreePatternNode;
36  class CodeGenDAGPatterns;
37  class ComplexPattern;
38
39/// EEVT::DAGISelGenValueType - These are some extended forms of
40/// MVT::SimpleValueType that we use as lattice values during type inference.
41/// The existing MVT iAny, fAny and vAny types suffice to represent
42/// arbitrary integer, floating-point, and vector types, so only an unknown
43/// value is needed.
44namespace EEVT {
45  /// TypeSet - This is either empty if it's completely unknown, or holds a set
46  /// of types.  It is used during type inference because register classes can
47  /// have multiple possible types and we don't know which one they get until
48  /// type inference is complete.
49  ///
50  /// TypeSet can have three states:
51  ///    Vector is empty: The type is completely unknown, it can be any valid
52  ///       target type.
53  ///    Vector has multiple constrained types: (e.g. v4i32 + v4f32) it is one
54  ///       of those types only.
55  ///    Vector has one concrete type: The type is completely known.
56  ///
57  class TypeSet {
58    SmallVector<MVT::SimpleValueType, 4> TypeVec;
59  public:
60    TypeSet() {}
61    TypeSet(MVT::SimpleValueType VT, TreePattern &TP);
62    TypeSet(const std::vector<MVT::SimpleValueType> &VTList);
63
64    bool isCompletelyUnknown() const { return TypeVec.empty(); }
65
66    bool isConcrete() const {
67      if (TypeVec.size() != 1) return false;
68      unsigned char T = TypeVec[0]; (void)T;
69      assert(T < MVT::LAST_VALUETYPE || T == MVT::iPTR || T == MVT::iPTRAny);
70      return true;
71    }
72
73    MVT::SimpleValueType getConcrete() const {
74      assert(isConcrete() && "Type isn't concrete yet");
75      return (MVT::SimpleValueType)TypeVec[0];
76    }
77
78    bool isDynamicallyResolved() const {
79      return getConcrete() == MVT::iPTR || getConcrete() == MVT::iPTRAny;
80    }
81
82    const SmallVectorImpl<MVT::SimpleValueType> &getTypeList() const {
83      assert(!TypeVec.empty() && "Not a type list!");
84      return TypeVec;
85    }
86
87    bool isVoid() const {
88      return TypeVec.size() == 1 && TypeVec[0] == MVT::isVoid;
89    }
90
91    /// hasIntegerTypes - Return true if this TypeSet contains any integer value
92    /// types.
93    bool hasIntegerTypes() const;
94
95    /// hasFloatingPointTypes - Return true if this TypeSet contains an fAny or
96    /// a floating point value type.
97    bool hasFloatingPointTypes() const;
98
99    /// hasVectorTypes - Return true if this TypeSet contains a vector value
100    /// type.
101    bool hasVectorTypes() const;
102
103    /// getName() - Return this TypeSet as a string.
104    std::string getName() const;
105
106    /// MergeInTypeInfo - This merges in type information from the specified
107    /// argument.  If 'this' changes, it returns true.  If the two types are
108    /// contradictory (e.g. merge f32 into i32) then this flags an error.
109    bool MergeInTypeInfo(const EEVT::TypeSet &InVT, TreePattern &TP);
110
111    bool MergeInTypeInfo(MVT::SimpleValueType InVT, TreePattern &TP) {
112      return MergeInTypeInfo(EEVT::TypeSet(InVT, TP), TP);
113    }
114
115    /// Force this type list to only contain integer types.
116    bool EnforceInteger(TreePattern &TP);
117
118    /// Force this type list to only contain floating point types.
119    bool EnforceFloatingPoint(TreePattern &TP);
120
121    /// EnforceScalar - Remove all vector types from this type list.
122    bool EnforceScalar(TreePattern &TP);
123
124    /// EnforceVector - Remove all non-vector types from this type list.
125    bool EnforceVector(TreePattern &TP);
126
127    /// EnforceSmallerThan - 'this' must be a smaller VT than Other.  Update
128    /// this an other based on this information.
129    bool EnforceSmallerThan(EEVT::TypeSet &Other, TreePattern &TP);
130
131    /// EnforceVectorEltTypeIs - 'this' is now constrainted to be a vector type
132    /// whose element is VT.
133    bool EnforceVectorEltTypeIs(EEVT::TypeSet &VT, TreePattern &TP);
134
135    /// EnforceVectorSubVectorTypeIs - 'this' is now constrainted to
136    /// be a vector type VT.
137    bool EnforceVectorSubVectorTypeIs(EEVT::TypeSet &VT, TreePattern &TP);
138
139    bool operator!=(const TypeSet &RHS) const { return TypeVec != RHS.TypeVec; }
140    bool operator==(const TypeSet &RHS) const { return TypeVec == RHS.TypeVec; }
141
142  private:
143    /// FillWithPossibleTypes - Set to all legal types and return true, only
144    /// valid on completely unknown type sets.  If Pred is non-null, only MVTs
145    /// that pass the predicate are added.
146    bool FillWithPossibleTypes(TreePattern &TP,
147                               bool (*Pred)(MVT::SimpleValueType) = 0,
148                               const char *PredicateName = 0);
149  };
150}
151
152/// Set type used to track multiply used variables in patterns
153typedef std::set<std::string> MultipleUseVarSet;
154
155/// SDTypeConstraint - This is a discriminated union of constraints,
156/// corresponding to the SDTypeConstraint tablegen class in Target.td.
157struct SDTypeConstraint {
158  SDTypeConstraint(Record *R);
159
160  unsigned OperandNo;   // The operand # this constraint applies to.
161  enum {
162    SDTCisVT, SDTCisPtrTy, SDTCisInt, SDTCisFP, SDTCisVec, SDTCisSameAs,
163    SDTCisVTSmallerThanOp, SDTCisOpSmallerThanOp, SDTCisEltOfVec,
164    SDTCisSubVecOfVec
165  } ConstraintType;
166
167  union {   // The discriminated union.
168    struct {
169      MVT::SimpleValueType VT;
170    } SDTCisVT_Info;
171    struct {
172      unsigned OtherOperandNum;
173    } SDTCisSameAs_Info;
174    struct {
175      unsigned OtherOperandNum;
176    } SDTCisVTSmallerThanOp_Info;
177    struct {
178      unsigned BigOperandNum;
179    } SDTCisOpSmallerThanOp_Info;
180    struct {
181      unsigned OtherOperandNum;
182    } SDTCisEltOfVec_Info;
183    struct {
184      unsigned OtherOperandNum;
185    } SDTCisSubVecOfVec_Info;
186  } x;
187
188  /// ApplyTypeConstraint - Given a node in a pattern, apply this type
189  /// constraint to the nodes operands.  This returns true if it makes a
190  /// change, false otherwise.  If a type contradiction is found, an error
191  /// is flagged.
192  bool ApplyTypeConstraint(TreePatternNode *N, const SDNodeInfo &NodeInfo,
193                           TreePattern &TP) const;
194};
195
196/// SDNodeInfo - One of these records is created for each SDNode instance in
197/// the target .td file.  This represents the various dag nodes we will be
198/// processing.
199class SDNodeInfo {
200  Record *Def;
201  std::string EnumName;
202  std::string SDClassName;
203  unsigned Properties;
204  unsigned NumResults;
205  int NumOperands;
206  std::vector<SDTypeConstraint> TypeConstraints;
207public:
208  SDNodeInfo(Record *R);  // Parse the specified record.
209
210  unsigned getNumResults() const { return NumResults; }
211
212  /// getNumOperands - This is the number of operands required or -1 if
213  /// variadic.
214  int getNumOperands() const { return NumOperands; }
215  Record *getRecord() const { return Def; }
216  const std::string &getEnumName() const { return EnumName; }
217  const std::string &getSDClassName() const { return SDClassName; }
218
219  const std::vector<SDTypeConstraint> &getTypeConstraints() const {
220    return TypeConstraints;
221  }
222
223  /// getKnownType - If the type constraints on this node imply a fixed type
224  /// (e.g. all stores return void, etc), then return it as an
225  /// MVT::SimpleValueType.  Otherwise, return MVT::Other.
226  MVT::SimpleValueType getKnownType(unsigned ResNo) const;
227
228  /// hasProperty - Return true if this node has the specified property.
229  ///
230  bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
231
232  /// ApplyTypeConstraints - Given a node in a pattern, apply the type
233  /// constraints for this node to the operands of the node.  This returns
234  /// true if it makes a change, false otherwise.  If a type contradiction is
235  /// found, an error is flagged.
236  bool ApplyTypeConstraints(TreePatternNode *N, TreePattern &TP) const {
237    bool MadeChange = false;
238    for (unsigned i = 0, e = TypeConstraints.size(); i != e; ++i)
239      MadeChange |= TypeConstraints[i].ApplyTypeConstraint(N, *this, TP);
240    return MadeChange;
241  }
242};
243
244/// TreePredicateFn - This is an abstraction that represents the predicates on
245/// a PatFrag node.  This is a simple one-word wrapper around a pointer to
246/// provide nice accessors.
247class TreePredicateFn {
248  /// PatFragRec - This is the TreePattern for the PatFrag that we
249  /// originally came from.
250  TreePattern *PatFragRec;
251public:
252  /// TreePredicateFn constructor.  Here 'N' is a subclass of PatFrag.
253  TreePredicateFn(TreePattern *N);
254
255
256  TreePattern *getOrigPatFragRecord() const { return PatFragRec; }
257
258  /// isAlwaysTrue - Return true if this is a noop predicate.
259  bool isAlwaysTrue() const;
260
261  bool isImmediatePattern() const { return !getImmCode().empty(); }
262
263  /// getImmediatePredicateCode - Return the code that evaluates this pattern if
264  /// this is an immediate predicate.  It is an error to call this on a
265  /// non-immediate pattern.
266  std::string getImmediatePredicateCode() const {
267    std::string Result = getImmCode();
268    assert(!Result.empty() && "Isn't an immediate pattern!");
269    return Result;
270  }
271
272
273  bool operator==(const TreePredicateFn &RHS) const {
274    return PatFragRec == RHS.PatFragRec;
275  }
276
277  bool operator!=(const TreePredicateFn &RHS) const { return !(*this == RHS); }
278
279  /// Return the name to use in the generated code to reference this, this is
280  /// "Predicate_foo" if from a pattern fragment "foo".
281  std::string getFnName() const;
282
283  /// getCodeToRunOnSDNode - Return the code for the function body that
284  /// evaluates this predicate.  The argument is expected to be in "Node",
285  /// not N.  This handles casting and conversion to a concrete node type as
286  /// appropriate.
287  std::string getCodeToRunOnSDNode() const;
288
289private:
290  std::string getPredCode() const;
291  std::string getImmCode() const;
292};
293
294
295/// FIXME: TreePatternNode's can be shared in some cases (due to dag-shaped
296/// patterns), and as such should be ref counted.  We currently just leak all
297/// TreePatternNode objects!
298class TreePatternNode {
299  /// The type of each node result.  Before and during type inference, each
300  /// result may be a set of possible types.  After (successful) type inference,
301  /// each is a single concrete type.
302  SmallVector<EEVT::TypeSet, 1> Types;
303
304  /// Operator - The Record for the operator if this is an interior node (not
305  /// a leaf).
306  Record *Operator;
307
308  /// Val - The init value (e.g. the "GPRC" record, or "7") for a leaf.
309  ///
310  Init *Val;
311
312  /// Name - The name given to this node with the :$foo notation.
313  ///
314  std::string Name;
315
316  /// PredicateFns - The predicate functions to execute on this node to check
317  /// for a match.  If this list is empty, no predicate is involved.
318  std::vector<TreePredicateFn> PredicateFns;
319
320  /// TransformFn - The transformation function to execute on this node before
321  /// it can be substituted into the resulting instruction on a pattern match.
322  Record *TransformFn;
323
324  std::vector<TreePatternNode*> Children;
325public:
326  TreePatternNode(Record *Op, const std::vector<TreePatternNode*> &Ch,
327                  unsigned NumResults)
328    : Operator(Op), Val(0), TransformFn(0), Children(Ch) {
329    Types.resize(NumResults);
330  }
331  TreePatternNode(Init *val, unsigned NumResults)    // leaf ctor
332    : Operator(0), Val(val), TransformFn(0) {
333    Types.resize(NumResults);
334  }
335  ~TreePatternNode();
336
337  const std::string &getName() const { return Name; }
338  void setName(StringRef N) { Name.assign(N.begin(), N.end()); }
339
340  bool isLeaf() const { return Val != 0; }
341
342  // Type accessors.
343  unsigned getNumTypes() const { return Types.size(); }
344  MVT::SimpleValueType getType(unsigned ResNo) const {
345    return Types[ResNo].getConcrete();
346  }
347  const SmallVectorImpl<EEVT::TypeSet> &getExtTypes() const { return Types; }
348  const EEVT::TypeSet &getExtType(unsigned ResNo) const { return Types[ResNo]; }
349  EEVT::TypeSet &getExtType(unsigned ResNo) { return Types[ResNo]; }
350  void setType(unsigned ResNo, const EEVT::TypeSet &T) { Types[ResNo] = T; }
351
352  bool hasTypeSet(unsigned ResNo) const {
353    return Types[ResNo].isConcrete();
354  }
355  bool isTypeCompletelyUnknown(unsigned ResNo) const {
356    return Types[ResNo].isCompletelyUnknown();
357  }
358  bool isTypeDynamicallyResolved(unsigned ResNo) const {
359    return Types[ResNo].isDynamicallyResolved();
360  }
361
362  Init *getLeafValue() const { assert(isLeaf()); return Val; }
363  Record *getOperator() const { assert(!isLeaf()); return Operator; }
364
365  unsigned getNumChildren() const { return Children.size(); }
366  TreePatternNode *getChild(unsigned N) const { return Children[N]; }
367  void setChild(unsigned i, TreePatternNode *N) {
368    Children[i] = N;
369  }
370
371  /// hasChild - Return true if N is any of our children.
372  bool hasChild(const TreePatternNode *N) const {
373    for (unsigned i = 0, e = Children.size(); i != e; ++i)
374      if (Children[i] == N) return true;
375    return false;
376  }
377
378  bool hasAnyPredicate() const { return !PredicateFns.empty(); }
379
380  const std::vector<TreePredicateFn> &getPredicateFns() const {
381    return PredicateFns;
382  }
383  void clearPredicateFns() { PredicateFns.clear(); }
384  void setPredicateFns(const std::vector<TreePredicateFn> &Fns) {
385    assert(PredicateFns.empty() && "Overwriting non-empty predicate list!");
386    PredicateFns = Fns;
387  }
388  void addPredicateFn(const TreePredicateFn &Fn) {
389    assert(!Fn.isAlwaysTrue() && "Empty predicate string!");
390    if (std::find(PredicateFns.begin(), PredicateFns.end(), Fn) ==
391          PredicateFns.end())
392      PredicateFns.push_back(Fn);
393  }
394
395  Record *getTransformFn() const { return TransformFn; }
396  void setTransformFn(Record *Fn) { TransformFn = Fn; }
397
398  /// getIntrinsicInfo - If this node corresponds to an intrinsic, return the
399  /// CodeGenIntrinsic information for it, otherwise return a null pointer.
400  const CodeGenIntrinsic *getIntrinsicInfo(const CodeGenDAGPatterns &CDP) const;
401
402  /// getComplexPatternInfo - If this node corresponds to a ComplexPattern,
403  /// return the ComplexPattern information, otherwise return null.
404  const ComplexPattern *
405  getComplexPatternInfo(const CodeGenDAGPatterns &CGP) const;
406
407  /// NodeHasProperty - Return true if this node has the specified property.
408  bool NodeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const;
409
410  /// TreeHasProperty - Return true if any node in this tree has the specified
411  /// property.
412  bool TreeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const;
413
414  /// isCommutativeIntrinsic - Return true if the node is an intrinsic which is
415  /// marked isCommutative.
416  bool isCommutativeIntrinsic(const CodeGenDAGPatterns &CDP) const;
417
418  void print(raw_ostream &OS) const;
419  void dump() const;
420
421public:   // Higher level manipulation routines.
422
423  /// clone - Return a new copy of this tree.
424  ///
425  TreePatternNode *clone() const;
426
427  /// RemoveAllTypes - Recursively strip all the types of this tree.
428  void RemoveAllTypes();
429
430  /// isIsomorphicTo - Return true if this node is recursively isomorphic to
431  /// the specified node.  For this comparison, all of the state of the node
432  /// is considered, except for the assigned name.  Nodes with differing names
433  /// that are otherwise identical are considered isomorphic.
434  bool isIsomorphicTo(const TreePatternNode *N,
435                      const MultipleUseVarSet &DepVars) const;
436
437  /// SubstituteFormalArguments - Replace the formal arguments in this tree
438  /// with actual values specified by ArgMap.
439  void SubstituteFormalArguments(std::map<std::string,
440                                          TreePatternNode*> &ArgMap);
441
442  /// InlinePatternFragments - If this pattern refers to any pattern
443  /// fragments, inline them into place, giving us a pattern without any
444  /// PatFrag references.
445  TreePatternNode *InlinePatternFragments(TreePattern &TP);
446
447  /// ApplyTypeConstraints - Apply all of the type constraints relevant to
448  /// this node and its children in the tree.  This returns true if it makes a
449  /// change, false otherwise.  If a type contradiction is found, flag an error.
450  bool ApplyTypeConstraints(TreePattern &TP, bool NotRegisters);
451
452  /// UpdateNodeType - Set the node type of N to VT if VT contains
453  /// information.  If N already contains a conflicting type, then flag an
454  /// error.  This returns true if any information was updated.
455  ///
456  bool UpdateNodeType(unsigned ResNo, const EEVT::TypeSet &InTy,
457                      TreePattern &TP) {
458    return Types[ResNo].MergeInTypeInfo(InTy, TP);
459  }
460
461  bool UpdateNodeType(unsigned ResNo, MVT::SimpleValueType InTy,
462                      TreePattern &TP) {
463    return Types[ResNo].MergeInTypeInfo(EEVT::TypeSet(InTy, TP), TP);
464  }
465
466  /// ContainsUnresolvedType - Return true if this tree contains any
467  /// unresolved types.
468  bool ContainsUnresolvedType() const {
469    for (unsigned i = 0, e = Types.size(); i != e; ++i)
470      if (!Types[i].isConcrete()) return true;
471
472    for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
473      if (getChild(i)->ContainsUnresolvedType()) return true;
474    return false;
475  }
476
477  /// canPatternMatch - If it is impossible for this pattern to match on this
478  /// target, fill in Reason and return false.  Otherwise, return true.
479  bool canPatternMatch(std::string &Reason, const CodeGenDAGPatterns &CDP);
480};
481
482inline raw_ostream &operator<<(raw_ostream &OS, const TreePatternNode &TPN) {
483  TPN.print(OS);
484  return OS;
485}
486
487
488/// TreePattern - Represent a pattern, used for instructions, pattern
489/// fragments, etc.
490///
491class TreePattern {
492  /// Trees - The list of pattern trees which corresponds to this pattern.
493  /// Note that PatFrag's only have a single tree.
494  ///
495  std::vector<TreePatternNode*> Trees;
496
497  /// NamedNodes - This is all of the nodes that have names in the trees in this
498  /// pattern.
499  StringMap<SmallVector<TreePatternNode*,1> > NamedNodes;
500
501  /// TheRecord - The actual TableGen record corresponding to this pattern.
502  ///
503  Record *TheRecord;
504
505  /// Args - This is a list of all of the arguments to this pattern (for
506  /// PatFrag patterns), which are the 'node' markers in this pattern.
507  std::vector<std::string> Args;
508
509  /// CDP - the top-level object coordinating this madness.
510  ///
511  CodeGenDAGPatterns &CDP;
512
513  /// isInputPattern - True if this is an input pattern, something to match.
514  /// False if this is an output pattern, something to emit.
515  bool isInputPattern;
516
517  /// hasError - True if the currently processed nodes have unresolvable types
518  /// or other non-fatal errors
519  bool HasError;
520public:
521
522  /// TreePattern constructor - Parse the specified DagInits into the
523  /// current record.
524  TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
525              CodeGenDAGPatterns &ise);
526  TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
527              CodeGenDAGPatterns &ise);
528  TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
529              CodeGenDAGPatterns &ise);
530
531  /// getTrees - Return the tree patterns which corresponds to this pattern.
532  ///
533  const std::vector<TreePatternNode*> &getTrees() const { return Trees; }
534  unsigned getNumTrees() const { return Trees.size(); }
535  TreePatternNode *getTree(unsigned i) const { return Trees[i]; }
536  TreePatternNode *getOnlyTree() const {
537    assert(Trees.size() == 1 && "Doesn't have exactly one pattern!");
538    return Trees[0];
539  }
540
541  const StringMap<SmallVector<TreePatternNode*,1> > &getNamedNodesMap() {
542    if (NamedNodes.empty())
543      ComputeNamedNodes();
544    return NamedNodes;
545  }
546
547  /// getRecord - Return the actual TableGen record corresponding to this
548  /// pattern.
549  ///
550  Record *getRecord() const { return TheRecord; }
551
552  unsigned getNumArgs() const { return Args.size(); }
553  const std::string &getArgName(unsigned i) const {
554    assert(i < Args.size() && "Argument reference out of range!");
555    return Args[i];
556  }
557  std::vector<std::string> &getArgList() { return Args; }
558
559  CodeGenDAGPatterns &getDAGPatterns() const { return CDP; }
560
561  /// InlinePatternFragments - If this pattern refers to any pattern
562  /// fragments, inline them into place, giving us a pattern without any
563  /// PatFrag references.
564  void InlinePatternFragments() {
565    for (unsigned i = 0, e = Trees.size(); i != e; ++i)
566      Trees[i] = Trees[i]->InlinePatternFragments(*this);
567  }
568
569  /// InferAllTypes - Infer/propagate as many types throughout the expression
570  /// patterns as possible.  Return true if all types are inferred, false
571  /// otherwise.  Bail out if a type contradiction is found.
572  bool InferAllTypes(const StringMap<SmallVector<TreePatternNode*,1> >
573                          *NamedTypes=0);
574
575  /// error - If this is the first error in the current resolution step,
576  /// print it and set the error flag.  Otherwise, continue silently.
577  void error(const std::string &Msg);
578  bool hasError() const {
579    return HasError;
580  }
581  void resetError() {
582    HasError = false;
583  }
584
585  void print(raw_ostream &OS) const;
586  void dump() const;
587
588private:
589  TreePatternNode *ParseTreePattern(Init *DI, StringRef OpName);
590  void ComputeNamedNodes();
591  void ComputeNamedNodes(TreePatternNode *N);
592};
593
594/// DAGDefaultOperand - One of these is created for each OperandWithDefaultOps
595/// that has a set ExecuteAlways / DefaultOps field.
596struct DAGDefaultOperand {
597  std::vector<TreePatternNode*> DefaultOps;
598};
599
600class DAGInstruction {
601  TreePattern *Pattern;
602  std::vector<Record*> Results;
603  std::vector<Record*> Operands;
604  std::vector<Record*> ImpResults;
605  TreePatternNode *ResultPattern;
606public:
607  DAGInstruction(TreePattern *TP,
608                 const std::vector<Record*> &results,
609                 const std::vector<Record*> &operands,
610                 const std::vector<Record*> &impresults)
611    : Pattern(TP), Results(results), Operands(operands),
612      ImpResults(impresults), ResultPattern(0) {}
613
614  TreePattern *getPattern() const { return Pattern; }
615  unsigned getNumResults() const { return Results.size(); }
616  unsigned getNumOperands() const { return Operands.size(); }
617  unsigned getNumImpResults() const { return ImpResults.size(); }
618  const std::vector<Record*>& getImpResults() const { return ImpResults; }
619
620  void setResultPattern(TreePatternNode *R) { ResultPattern = R; }
621
622  Record *getResult(unsigned RN) const {
623    assert(RN < Results.size());
624    return Results[RN];
625  }
626
627  Record *getOperand(unsigned ON) const {
628    assert(ON < Operands.size());
629    return Operands[ON];
630  }
631
632  Record *getImpResult(unsigned RN) const {
633    assert(RN < ImpResults.size());
634    return ImpResults[RN];
635  }
636
637  TreePatternNode *getResultPattern() const { return ResultPattern; }
638};
639
640/// PatternToMatch - Used by CodeGenDAGPatterns to keep tab of patterns
641/// processed to produce isel.
642class PatternToMatch {
643public:
644  PatternToMatch(Record *srcrecord, ListInit *preds,
645                 TreePatternNode *src, TreePatternNode *dst,
646                 const std::vector<Record*> &dstregs,
647                 unsigned complexity, unsigned uid)
648    : SrcRecord(srcrecord), Predicates(preds), SrcPattern(src), DstPattern(dst),
649      Dstregs(dstregs), AddedComplexity(complexity), ID(uid) {}
650
651  Record          *SrcRecord;   // Originating Record for the pattern.
652  ListInit        *Predicates;  // Top level predicate conditions to match.
653  TreePatternNode *SrcPattern;  // Source pattern to match.
654  TreePatternNode *DstPattern;  // Resulting pattern.
655  std::vector<Record*> Dstregs; // Physical register defs being matched.
656  unsigned         AddedComplexity; // Add to matching pattern complexity.
657  unsigned         ID;          // Unique ID for the record.
658
659  Record          *getSrcRecord()  const { return SrcRecord; }
660  ListInit        *getPredicates() const { return Predicates; }
661  TreePatternNode *getSrcPattern() const { return SrcPattern; }
662  TreePatternNode *getDstPattern() const { return DstPattern; }
663  const std::vector<Record*> &getDstRegs() const { return Dstregs; }
664  unsigned         getAddedComplexity() const { return AddedComplexity; }
665
666  std::string getPredicateCheck() const;
667
668  /// Compute the complexity metric for the input pattern.  This roughly
669  /// corresponds to the number of nodes that are covered.
670  unsigned getPatternComplexity(const CodeGenDAGPatterns &CGP) const;
671};
672
673class CodeGenDAGPatterns {
674  RecordKeeper &Records;
675  CodeGenTarget Target;
676  std::vector<CodeGenIntrinsic> Intrinsics;
677  std::vector<CodeGenIntrinsic> TgtIntrinsics;
678
679  std::map<Record*, SDNodeInfo, LessRecordByID> SDNodes;
680  std::map<Record*, std::pair<Record*, std::string>, LessRecordByID> SDNodeXForms;
681  std::map<Record*, ComplexPattern, LessRecordByID> ComplexPatterns;
682  std::map<Record*, TreePattern*, LessRecordByID> PatternFragments;
683  std::map<Record*, DAGDefaultOperand, LessRecordByID> DefaultOperands;
684  std::map<Record*, DAGInstruction, LessRecordByID> Instructions;
685
686  // Specific SDNode definitions:
687  Record *intrinsic_void_sdnode;
688  Record *intrinsic_w_chain_sdnode, *intrinsic_wo_chain_sdnode;
689
690  /// PatternsToMatch - All of the things we are matching on the DAG.  The first
691  /// value is the pattern to match, the second pattern is the result to
692  /// emit.
693  std::vector<PatternToMatch> PatternsToMatch;
694public:
695  CodeGenDAGPatterns(RecordKeeper &R);
696  ~CodeGenDAGPatterns();
697
698  CodeGenTarget &getTargetInfo() { return Target; }
699  const CodeGenTarget &getTargetInfo() const { return Target; }
700
701  Record *getSDNodeNamed(const std::string &Name) const;
702
703  const SDNodeInfo &getSDNodeInfo(Record *R) const {
704    assert(SDNodes.count(R) && "Unknown node!");
705    return SDNodes.find(R)->second;
706  }
707
708  // Node transformation lookups.
709  typedef std::pair<Record*, std::string> NodeXForm;
710  const NodeXForm &getSDNodeTransform(Record *R) const {
711    assert(SDNodeXForms.count(R) && "Invalid transform!");
712    return SDNodeXForms.find(R)->second;
713  }
714
715  typedef std::map<Record*, NodeXForm, LessRecordByID>::const_iterator
716          nx_iterator;
717  nx_iterator nx_begin() const { return SDNodeXForms.begin(); }
718  nx_iterator nx_end() const { return SDNodeXForms.end(); }
719
720
721  const ComplexPattern &getComplexPattern(Record *R) const {
722    assert(ComplexPatterns.count(R) && "Unknown addressing mode!");
723    return ComplexPatterns.find(R)->second;
724  }
725
726  const CodeGenIntrinsic &getIntrinsic(Record *R) const {
727    for (unsigned i = 0, e = Intrinsics.size(); i != e; ++i)
728      if (Intrinsics[i].TheDef == R) return Intrinsics[i];
729    for (unsigned i = 0, e = TgtIntrinsics.size(); i != e; ++i)
730      if (TgtIntrinsics[i].TheDef == R) return TgtIntrinsics[i];
731    llvm_unreachable("Unknown intrinsic!");
732  }
733
734  const CodeGenIntrinsic &getIntrinsicInfo(unsigned IID) const {
735    if (IID-1 < Intrinsics.size())
736      return Intrinsics[IID-1];
737    if (IID-Intrinsics.size()-1 < TgtIntrinsics.size())
738      return TgtIntrinsics[IID-Intrinsics.size()-1];
739    llvm_unreachable("Bad intrinsic ID!");
740  }
741
742  unsigned getIntrinsicID(Record *R) const {
743    for (unsigned i = 0, e = Intrinsics.size(); i != e; ++i)
744      if (Intrinsics[i].TheDef == R) return i;
745    for (unsigned i = 0, e = TgtIntrinsics.size(); i != e; ++i)
746      if (TgtIntrinsics[i].TheDef == R) return i + Intrinsics.size();
747    llvm_unreachable("Unknown intrinsic!");
748  }
749
750  const DAGDefaultOperand &getDefaultOperand(Record *R) const {
751    assert(DefaultOperands.count(R) &&"Isn't an analyzed default operand!");
752    return DefaultOperands.find(R)->second;
753  }
754
755  // Pattern Fragment information.
756  TreePattern *getPatternFragment(Record *R) const {
757    assert(PatternFragments.count(R) && "Invalid pattern fragment request!");
758    return PatternFragments.find(R)->second;
759  }
760  TreePattern *getPatternFragmentIfRead(Record *R) const {
761    if (!PatternFragments.count(R)) return 0;
762    return PatternFragments.find(R)->second;
763  }
764
765  typedef std::map<Record*, TreePattern*, LessRecordByID>::const_iterator
766          pf_iterator;
767  pf_iterator pf_begin() const { return PatternFragments.begin(); }
768  pf_iterator pf_end() const { return PatternFragments.end(); }
769
770  // Patterns to match information.
771  typedef std::vector<PatternToMatch>::const_iterator ptm_iterator;
772  ptm_iterator ptm_begin() const { return PatternsToMatch.begin(); }
773  ptm_iterator ptm_end() const { return PatternsToMatch.end(); }
774
775
776
777  const DAGInstruction &getInstruction(Record *R) const {
778    assert(Instructions.count(R) && "Unknown instruction!");
779    return Instructions.find(R)->second;
780  }
781
782  Record *get_intrinsic_void_sdnode() const {
783    return intrinsic_void_sdnode;
784  }
785  Record *get_intrinsic_w_chain_sdnode() const {
786    return intrinsic_w_chain_sdnode;
787  }
788  Record *get_intrinsic_wo_chain_sdnode() const {
789    return intrinsic_wo_chain_sdnode;
790  }
791
792  bool hasTargetIntrinsics() { return !TgtIntrinsics.empty(); }
793
794private:
795  void ParseNodeInfo();
796  void ParseNodeTransforms();
797  void ParseComplexPatterns();
798  void ParsePatternFragments();
799  void ParseDefaultOperands();
800  void ParseInstructions();
801  void ParsePatterns();
802  void InferInstructionFlags();
803  void GenerateVariants();
804  void VerifyInstructionFlags();
805
806  void AddPatternToMatch(TreePattern *Pattern, const PatternToMatch &PTM);
807  void FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
808                                   std::map<std::string,
809                                   TreePatternNode*> &InstInputs,
810                                   std::map<std::string,
811                                   TreePatternNode*> &InstResults,
812                                   std::vector<Record*> &InstImpResults);
813};
814} // end namespace llvm
815
816#endif
817