d169acfecc1e49b157e0c70a14f0a6ffa5a95946
[oota-llvm.git] / utils / TableGen / DAGISelEmitter.h
1 //===- DAGISelEmitter.h - Generate an instruction selector ------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Chris Lattner and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This tablegen backend emits a DAG instruction selector.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef DAGISEL_EMITTER_H
15 #define DAGISEL_EMITTER_H
16
17 #include "TableGenBackend.h"
18 #include "CodeGenTarget.h"
19
20 namespace llvm {
21   class Record;
22   struct Init;
23   class ListInit;
24   class DagInit;
25   class SDNodeInfo;
26   class TreePattern;
27   class TreePatternNode;
28   class DAGISelEmitter;
29   
30   /// SDTypeConstraint - This is a discriminated union of constraints,
31   /// corresponding to the SDTypeConstraint tablegen class in Target.td.
32   struct SDTypeConstraint {
33     SDTypeConstraint(Record *R);
34     
35     unsigned OperandNo;   // The operand # this constraint applies to.
36     enum { 
37       SDTCisVT, SDTCisInt, SDTCisFP, SDTCisSameAs, SDTCisVTSmallerThanOp
38     } ConstraintType;
39     
40     union {   // The discriminated union.
41       struct {
42         MVT::ValueType VT;
43       } SDTCisVT_Info;
44       struct {
45         unsigned OtherOperandNum;
46       } SDTCisSameAs_Info;
47       struct {
48         unsigned OtherOperandNum;
49       } SDTCisVTSmallerThanOp_Info;
50     } x;
51
52     /// ApplyTypeConstraint - Given a node in a pattern, apply this type
53     /// constraint to the nodes operands.  This returns true if it makes a
54     /// change, false otherwise.  If a type contradiction is found, throw an
55     /// exception.
56     bool ApplyTypeConstraint(TreePatternNode *N, const SDNodeInfo &NodeInfo,
57                              TreePattern &TP) const;
58     
59     /// getOperandNum - Return the node corresponding to operand #OpNo in tree
60     /// N, which has NumResults results.
61     TreePatternNode *getOperandNum(unsigned OpNo, TreePatternNode *N,
62                                    unsigned NumResults) const;
63   };
64   
65   /// SDNodeInfo - One of these records is created for each SDNode instance in
66   /// the target .td file.  This represents the various dag nodes we will be
67   /// processing.
68   class SDNodeInfo {
69     Record *Def;
70     std::string EnumName;
71     std::string SDClassName;
72     unsigned Properties;
73     unsigned NumResults;
74     int NumOperands;
75     std::vector<SDTypeConstraint> TypeConstraints;
76   public:
77     SDNodeInfo(Record *R);  // Parse the specified record.
78     
79     unsigned getNumResults() const { return NumResults; }
80     int getNumOperands() const { return NumOperands; }
81     Record *getRecord() const { return Def; }
82     const std::string &getEnumName() const { return EnumName; }
83     const std::string &getSDClassName() const { return SDClassName; }
84     
85     const std::vector<SDTypeConstraint> &getTypeConstraints() const {
86       return TypeConstraints;
87     }
88     
89     // SelectionDAG node properties.
90     enum SDNP { SDNPCommutative };
91
92     /// hasProperty - Return true if this node has the specified property.
93     ///
94     bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
95
96     /// ApplyTypeConstraints - Given a node in a pattern, apply the type
97     /// constraints for this node to the operands of the node.  This returns
98     /// true if it makes a change, false otherwise.  If a type contradiction is
99     /// found, throw an exception.
100     bool ApplyTypeConstraints(TreePatternNode *N, TreePattern &TP) const {
101       bool MadeChange = false;
102       for (unsigned i = 0, e = TypeConstraints.size(); i != e; ++i)
103         MadeChange |= TypeConstraints[i].ApplyTypeConstraint(N, *this, TP);
104       return MadeChange;
105     }
106   };
107
108   /// FIXME: TreePatternNode's can be shared in some cases (due to dag-shaped
109   /// patterns), and as such should be ref counted.  We currently just leak all
110   /// TreePatternNode objects!
111   class TreePatternNode {
112     /// The inferred type for this node, or MVT::LAST_VALUETYPE if it hasn't
113     /// been determined yet.
114     MVT::ValueType Ty;
115
116     /// Operator - The Record for the operator if this is an interior node (not
117     /// a leaf).
118     Record *Operator;
119     
120     /// Val - The init value (e.g. the "GPRC" record, or "7") for a leaf.
121     ///
122     Init *Val;
123     
124     /// Name - The name given to this node with the :$foo notation.
125     ///
126     std::string Name;
127     
128     /// PredicateFn - The predicate function to execute on this node to check
129     /// for a match.  If this string is empty, no predicate is involved.
130     std::string PredicateFn;
131     
132     /// TransformFn - The transformation function to execute on this node before
133     /// it can be substituted into the resulting instruction on a pattern match.
134     Record *TransformFn;
135     
136     std::vector<TreePatternNode*> Children;
137   public:
138     TreePatternNode(Record *Op, const std::vector<TreePatternNode*> &Ch) 
139       : Ty(MVT::LAST_VALUETYPE), Operator(Op), Val(0), TransformFn(0),
140         Children(Ch) {}
141     TreePatternNode(Init *val)    // leaf ctor
142       : Ty(MVT::LAST_VALUETYPE), Operator(0), Val(val), TransformFn(0) {}
143     ~TreePatternNode();
144     
145     const std::string &getName() const { return Name; }
146     void setName(const std::string &N) { Name = N; }
147     
148     bool isLeaf() const { return Val != 0; }
149     bool hasTypeSet() const { return Ty != MVT::LAST_VALUETYPE; }
150     MVT::ValueType getType() const { return Ty; }
151     void setType(MVT::ValueType VT) { Ty = VT; }
152     
153     Init *getLeafValue() const { assert(isLeaf()); return Val; }
154     Record *getOperator() const { assert(!isLeaf()); return Operator; }
155     
156     unsigned getNumChildren() const { return Children.size(); }
157     TreePatternNode *getChild(unsigned N) const { return Children[N]; }
158     void setChild(unsigned i, TreePatternNode *N) {
159       Children[i] = N;
160     }
161     
162     const std::string &getPredicateFn() const { return PredicateFn; }
163     void setPredicateFn(const std::string &Fn) { PredicateFn = Fn; }
164
165     Record *getTransformFn() const { return TransformFn; }
166     void setTransformFn(Record *Fn) { TransformFn = Fn; }
167     
168     void print(std::ostream &OS) const;
169     void dump() const;
170     
171   public:   // Higher level manipulation routines.
172
173     /// clone - Return a new copy of this tree.
174     ///
175     TreePatternNode *clone() const;
176     
177     /// SubstituteFormalArguments - Replace the formal arguments in this tree
178     /// with actual values specified by ArgMap.
179     void SubstituteFormalArguments(std::map<std::string,
180                                             TreePatternNode*> &ArgMap);
181
182     /// InlinePatternFragments - If this pattern refers to any pattern
183     /// fragments, inline them into place, giving us a pattern without any
184     /// PatFrag references.
185     TreePatternNode *InlinePatternFragments(TreePattern &TP);
186     
187     /// ApplyTypeConstraints - Apply all of the type constraints relevent to
188     /// this node and its children in the tree.  This returns true if it makes a
189     /// change, false otherwise.  If a type contradiction is found, throw an
190     /// exception.
191     bool ApplyTypeConstraints(TreePattern &TP);
192     
193     /// UpdateNodeType - Set the node type of N to VT if VT contains
194     /// information.  If N already contains a conflicting type, then throw an
195     /// exception.  This returns true if any information was updated.
196     ///
197     bool UpdateNodeType(MVT::ValueType VT, TreePattern &TP);
198     
199     /// ContainsUnresolvedType - Return true if this tree contains any
200     /// unresolved types.
201     bool ContainsUnresolvedType() const {
202       if (Ty == MVT::LAST_VALUETYPE) return true;
203       for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
204         if (getChild(i)->ContainsUnresolvedType()) return true;
205       return false;
206     }
207     
208     /// canPatternMatch - Return false if it is impossible for this pattern to
209     /// match on this target.
210     bool canPatternMatch(std::string &Reason, DAGISelEmitter &ISE);
211   };
212   
213   
214   /// TreePattern - Represent a pattern, used for instructions, pattern
215   /// fragments, etc.
216   ///
217   class TreePattern {
218     /// Trees - The list of pattern trees which corresponds to this pattern.
219     /// Note that PatFrag's only have a single tree.
220     ///
221     std::vector<TreePatternNode*> Trees;
222     
223     /// TheRecord - The actual TableGen record corresponding to this pattern.
224     ///
225     Record *TheRecord;
226       
227     /// Args - This is a list of all of the arguments to this pattern (for
228     /// PatFrag patterns), which are the 'node' markers in this pattern.
229     std::vector<std::string> Args;
230     
231     /// ISE - the DAG isel emitter coordinating this madness.
232     ///
233     DAGISelEmitter &ISE;
234   public:
235       
236     /// TreePattern constructor - Parse the specified DagInits into the
237     /// current record.
238     TreePattern(Record *TheRec, ListInit *RawPat, DAGISelEmitter &ise);
239     TreePattern(Record *TheRec, DagInit *Pat, DAGISelEmitter &ise);
240     TreePattern(Record *TheRec, TreePatternNode *Pat, DAGISelEmitter &ise);
241         
242     /// getTrees - Return the tree patterns which corresponds to this pattern.
243     ///
244     const std::vector<TreePatternNode*> &getTrees() const { return Trees; }
245     unsigned getNumTrees() const { return Trees.size(); }
246     TreePatternNode *getTree(unsigned i) const { return Trees[i]; }
247     TreePatternNode *getOnlyTree() const {
248       assert(Trees.size() == 1 && "Doesn't have exactly one pattern!");
249       return Trees[0];
250     }
251         
252     /// getRecord - Return the actual TableGen record corresponding to this
253     /// pattern.
254     ///
255     Record *getRecord() const { return TheRecord; }
256     
257     unsigned getNumArgs() const { return Args.size(); }
258     const std::string &getArgName(unsigned i) const {
259       assert(i < Args.size() && "Argument reference out of range!");
260       return Args[i];
261     }
262     std::vector<std::string> &getArgList() { return Args; }
263     
264     DAGISelEmitter &getDAGISelEmitter() const { return ISE; }
265
266     /// InlinePatternFragments - If this pattern refers to any pattern
267     /// fragments, inline them into place, giving us a pattern without any
268     /// PatFrag references.
269     void InlinePatternFragments() {
270       for (unsigned i = 0, e = Trees.size(); i != e; ++i)
271         Trees[i] = Trees[i]->InlinePatternFragments(*this);
272     }
273     
274     /// InferAllTypes - Infer/propagate as many types throughout the expression
275     /// patterns as possible.  Return true if all types are infered, false
276     /// otherwise.  Throw an exception if a type contradiction is found.
277     bool InferAllTypes();
278     
279     /// error - Throw an exception, prefixing it with information about this
280     /// pattern.
281     void error(const std::string &Msg) const;
282     
283     void print(std::ostream &OS) const;
284     void dump() const;
285     
286   private:
287     MVT::ValueType getIntrinsicType(Record *R) const;
288     TreePatternNode *ParseTreePattern(DagInit *DI);
289   };
290
291
292   class DAGInstruction {
293     TreePattern *Pattern;
294     unsigned NumResults;
295     unsigned NumOperands;
296     std::vector<MVT::ValueType> ResultTypes;
297     std::vector<MVT::ValueType> OperandTypes;
298     TreePatternNode *ResultPattern;
299   public:
300     DAGInstruction(TreePattern *TP,
301                    const std::vector<MVT::ValueType> &resultTypes,
302                    const std::vector<MVT::ValueType> &operandTypes)
303       : Pattern(TP), ResultTypes(resultTypes), OperandTypes(operandTypes), 
304         ResultPattern(0) {}
305
306     TreePattern *getPattern() const { return Pattern; }
307     unsigned getNumResults() const { return ResultTypes.size(); }
308     unsigned getNumOperands() const { return OperandTypes.size(); }
309     
310     void setResultPattern(TreePatternNode *R) { ResultPattern = R; }
311     
312     MVT::ValueType getResultType(unsigned RN) const {
313       assert(RN < ResultTypes.size());
314       return ResultTypes[RN];
315     }
316     
317     MVT::ValueType getOperandType(unsigned ON) const {
318       assert(ON < OperandTypes.size());
319       return OperandTypes[ON];
320     }
321     TreePatternNode *getResultPattern() const { return ResultPattern; }
322   };
323   
324   
325 /// InstrSelectorEmitter - The top-level class which coordinates construction
326 /// and emission of the instruction selector.
327 ///
328 class DAGISelEmitter : public TableGenBackend {
329 public:
330   typedef std::pair<TreePatternNode*, TreePatternNode*> PatternToMatch;
331 private:
332   RecordKeeper &Records;
333   CodeGenTarget Target;
334
335   std::map<Record*, SDNodeInfo> SDNodes;
336   std::map<Record*, std::pair<Record*, std::string> > SDNodeXForms;
337   std::map<Record*, TreePattern*> PatternFragments;
338   std::map<Record*, DAGInstruction> Instructions;
339   
340   /// PatternsToMatch - All of the things we are matching on the DAG.  The first
341   /// value is the pattern to match, the second pattern is the result to
342   /// emit.
343   std::vector<PatternToMatch> PatternsToMatch;
344 public:
345   DAGISelEmitter(RecordKeeper &R) : Records(R) {}
346
347   // run - Output the isel, returning true on failure.
348   void run(std::ostream &OS);
349   
350   const SDNodeInfo &getSDNodeInfo(Record *R) const {
351     assert(SDNodes.count(R) && "Unknown node!");
352     return SDNodes.find(R)->second;
353   }
354
355   TreePattern *getPatternFragment(Record *R) const {
356     assert(PatternFragments.count(R) && "Invalid pattern fragment request!");
357     return PatternFragments.find(R)->second;
358   }
359   
360   const std::pair<Record*, std::string> &getSDNodeTransform(Record *R) const {
361     assert(SDNodeXForms.count(R) && "Invalid transform!");
362     return SDNodeXForms.find(R)->second;
363   }
364   
365   const DAGInstruction &getInstruction(Record *R) const {
366     assert(Instructions.count(R) && "Unknown instruction!");
367     return Instructions.find(R)->second;
368   }
369   
370 private:
371   void ParseNodeInfo();
372   void ParseNodeTransforms(std::ostream &OS);
373   void ParsePatternFragments(std::ostream &OS);
374   void ParseInstructions();
375   void ParsePatterns();
376   void GenerateVariants();
377   void FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
378                                    std::map<std::string,
379                                             TreePatternNode*> &InstInputs,
380                                    std::map<std::string, Record*> &InstResults);
381   void EmitMatchForPattern(TreePatternNode *N, const std::string &RootName,
382                            std::map<std::string,std::string> &VarMap,
383                            unsigned PatternNo, std::ostream &OS);
384   unsigned CodeGenPatternResult(TreePatternNode *N, unsigned &Ctr,
385                                 std::map<std::string,std::string> &VariableMap, 
386                                 std::ostream &OS);      
387   void EmitCodeForPattern(PatternToMatch &Pattern, std::ostream &OS);
388   void EmitInstructionSelector(std::ostream &OS);
389 };
390
391 } // End llvm namespace
392
393 #endif