1 //===- CodeGenInstruction.h - Instruction Class Wrapper ---------*- 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 defines a wrapper class for the 'Instruction' TableGen class.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_UTILS_TABLEGEN_CODEGENINSTRUCTION_H
15 #define LLVM_UTILS_TABLEGEN_CODEGENINSTRUCTION_H
16 
17 #include "llvm/ADT/StringRef.h"
18 #include "llvm/Support/MachineValueType.h"
19 #include "llvm/Support/SMLoc.h"
20 #include <string>
21 #include <utility>
22 #include <vector>
23 
24 namespace llvm {
25 template <typename T> class ArrayRef;
26   class Record;
27   class DagInit;
28   class CodeGenTarget;
29 
30   class CGIOperandList {
31   public:
32     class ConstraintInfo {
33       enum { None, EarlyClobber, Tied } Kind;
34       unsigned OtherTiedOperand;
35     public:
ConstraintInfo()36       ConstraintInfo() : Kind(None) {}
37 
getEarlyClobber()38       static ConstraintInfo getEarlyClobber() {
39         ConstraintInfo I;
40         I.Kind = EarlyClobber;
41         I.OtherTiedOperand = 0;
42         return I;
43       }
44 
getTied(unsigned Op)45       static ConstraintInfo getTied(unsigned Op) {
46         ConstraintInfo I;
47         I.Kind = Tied;
48         I.OtherTiedOperand = Op;
49         return I;
50       }
51 
isNone()52       bool isNone() const { return Kind == None; }
isEarlyClobber()53       bool isEarlyClobber() const { return Kind == EarlyClobber; }
isTied()54       bool isTied() const { return Kind == Tied; }
55 
getTiedOperand()56       unsigned getTiedOperand() const {
57         assert(isTied());
58         return OtherTiedOperand;
59       }
60 
61       bool operator==(const ConstraintInfo &RHS) const {
62         if (Kind != RHS.Kind)
63           return false;
64         if (Kind == Tied && OtherTiedOperand != RHS.OtherTiedOperand)
65           return false;
66         return true;
67       }
68       bool operator!=(const ConstraintInfo &RHS) const {
69         return !(*this == RHS);
70       }
71     };
72 
73     /// OperandInfo - The information we keep track of for each operand in the
74     /// operand list for a tablegen instruction.
75     struct OperandInfo {
76       /// Rec - The definition this operand is declared as.
77       ///
78       Record *Rec;
79 
80       /// Name - If this operand was assigned a symbolic name, this is it,
81       /// otherwise, it's empty.
82       std::string Name;
83 
84       /// PrinterMethodName - The method used to print operands of this type in
85       /// the asmprinter.
86       std::string PrinterMethodName;
87 
88       /// EncoderMethodName - The method used to get the machine operand value
89       /// for binary encoding. "getMachineOpValue" by default.
90       std::string EncoderMethodName;
91 
92       /// OperandType - A value from MCOI::OperandType representing the type of
93       /// the operand.
94       std::string OperandType;
95 
96       /// MIOperandNo - Currently (this is meant to be phased out), some logical
97       /// operands correspond to multiple MachineInstr operands.  In the X86
98       /// target for example, one address operand is represented as 4
99       /// MachineOperands.  Because of this, the operand number in the
100       /// OperandList may not match the MachineInstr operand num.  Until it
101       /// does, this contains the MI operand index of this operand.
102       unsigned MIOperandNo;
103       unsigned MINumOperands;   // The number of operands.
104 
105       /// DoNotEncode - Bools are set to true in this vector for each operand in
106       /// the DisableEncoding list.  These should not be emitted by the code
107       /// emitter.
108       std::vector<bool> DoNotEncode;
109 
110       /// MIOperandInfo - Default MI operand type. Note an operand may be made
111       /// up of multiple MI operands.
112       DagInit *MIOperandInfo;
113 
114       /// Constraint info for this operand.  This operand can have pieces, so we
115       /// track constraint info for each.
116       std::vector<ConstraintInfo> Constraints;
117 
OperandInfoOperandInfo118       OperandInfo(Record *R, const std::string &N, const std::string &PMN,
119                   const std::string &EMN, const std::string &OT, unsigned MION,
120                   unsigned MINO, DagInit *MIOI)
121       : Rec(R), Name(N), PrinterMethodName(PMN), EncoderMethodName(EMN),
122         OperandType(OT), MIOperandNo(MION), MINumOperands(MINO),
123         MIOperandInfo(MIOI) {}
124 
125 
126       /// getTiedOperand - If this operand is tied to another one, return the
127       /// other operand number.  Otherwise, return -1.
getTiedRegisterOperandInfo128       int getTiedRegister() const {
129         for (unsigned j = 0, e = Constraints.size(); j != e; ++j) {
130           const CGIOperandList::ConstraintInfo &CI = Constraints[j];
131           if (CI.isTied()) return CI.getTiedOperand();
132         }
133         return -1;
134       }
135     };
136 
137     CGIOperandList(Record *D);
138 
139     Record *TheDef;            // The actual record containing this OperandList.
140 
141     /// NumDefs - Number of def operands declared, this is the number of
142     /// elements in the instruction's (outs) list.
143     ///
144     unsigned NumDefs;
145 
146     /// OperandList - The list of declared operands, along with their declared
147     /// type (which is a record).
148     std::vector<OperandInfo> OperandList;
149 
150     // Information gleaned from the operand list.
151     bool isPredicable;
152     bool hasOptionalDef;
153     bool isVariadic;
154 
155     // Provide transparent accessors to the operand list.
empty()156     bool empty() const { return OperandList.empty(); }
size()157     unsigned size() const { return OperandList.size(); }
158     const OperandInfo &operator[](unsigned i) const { return OperandList[i]; }
159     OperandInfo &operator[](unsigned i) { return OperandList[i]; }
back()160     OperandInfo &back() { return OperandList.back(); }
back()161     const OperandInfo &back() const { return OperandList.back(); }
162 
163     typedef std::vector<OperandInfo>::iterator iterator;
164     typedef std::vector<OperandInfo>::const_iterator const_iterator;
begin()165     iterator begin() { return OperandList.begin(); }
begin()166     const_iterator begin() const { return OperandList.begin(); }
end()167     iterator end() { return OperandList.end(); }
end()168     const_iterator end() const { return OperandList.end(); }
169 
170     /// getOperandNamed - Return the index of the operand with the specified
171     /// non-empty name.  If the instruction does not have an operand with the
172     /// specified name, abort.
173     unsigned getOperandNamed(StringRef Name) const;
174 
175     /// hasOperandNamed - Query whether the instruction has an operand of the
176     /// given name. If so, return true and set OpIdx to the index of the
177     /// operand. Otherwise, return false.
178     bool hasOperandNamed(StringRef Name, unsigned &OpIdx) const;
179 
180     /// ParseOperandName - Parse an operand name like "$foo" or "$foo.bar",
181     /// where $foo is a whole operand and $foo.bar refers to a suboperand.
182     /// This aborts if the name is invalid.  If AllowWholeOp is true, references
183     /// to operands with suboperands are allowed, otherwise not.
184     std::pair<unsigned,unsigned> ParseOperandName(const std::string &Op,
185                                                   bool AllowWholeOp = true);
186 
187     /// getFlattenedOperandNumber - Flatten a operand/suboperand pair into a
188     /// flat machineinstr operand #.
getFlattenedOperandNumber(std::pair<unsigned,unsigned> Op)189     unsigned getFlattenedOperandNumber(std::pair<unsigned,unsigned> Op) const {
190       return OperandList[Op.first].MIOperandNo + Op.second;
191     }
192 
193     /// getSubOperandNumber - Unflatten a operand number into an
194     /// operand/suboperand pair.
getSubOperandNumber(unsigned Op)195     std::pair<unsigned,unsigned> getSubOperandNumber(unsigned Op) const {
196       for (unsigned i = 0; ; ++i) {
197         assert(i < OperandList.size() && "Invalid flat operand #");
198         if (OperandList[i].MIOperandNo+OperandList[i].MINumOperands > Op)
199           return std::make_pair(i, Op-OperandList[i].MIOperandNo);
200       }
201     }
202 
203 
204     /// isFlatOperandNotEmitted - Return true if the specified flat operand #
205     /// should not be emitted with the code emitter.
isFlatOperandNotEmitted(unsigned FlatOpNo)206     bool isFlatOperandNotEmitted(unsigned FlatOpNo) const {
207       std::pair<unsigned,unsigned> Op = getSubOperandNumber(FlatOpNo);
208       if (OperandList[Op.first].DoNotEncode.size() > Op.second)
209         return OperandList[Op.first].DoNotEncode[Op.second];
210       return false;
211     }
212 
213     void ProcessDisableEncoding(std::string Value);
214   };
215 
216 
217   class CodeGenInstruction {
218   public:
219     Record *TheDef;            // The actual record defining this instruction.
220     StringRef Namespace;       // The namespace the instruction is in.
221 
222     /// AsmString - The format string used to emit a .s file for the
223     /// instruction.
224     std::string AsmString;
225 
226     /// Operands - This is information about the (ins) and (outs) list specified
227     /// to the instruction.
228     CGIOperandList Operands;
229 
230     /// ImplicitDefs/ImplicitUses - These are lists of registers that are
231     /// implicitly defined and used by the instruction.
232     std::vector<Record*> ImplicitDefs, ImplicitUses;
233 
234     // Various boolean values we track for the instruction.
235     bool isReturn : 1;
236     bool isEHScopeReturn : 1;
237     bool isBranch : 1;
238     bool isIndirectBranch : 1;
239     bool isCompare : 1;
240     bool isMoveImm : 1;
241     bool isMoveReg : 1;
242     bool isBitcast : 1;
243     bool isSelect : 1;
244     bool isBarrier : 1;
245     bool isCall : 1;
246     bool isAdd : 1;
247     bool isTrap : 1;
248     bool canFoldAsLoad : 1;
249     bool mayLoad : 1;
250     bool mayLoad_Unset : 1;
251     bool mayStore : 1;
252     bool mayStore_Unset : 1;
253     bool isPredicable : 1;
254     bool isConvertibleToThreeAddress : 1;
255     bool isCommutable : 1;
256     bool isTerminator : 1;
257     bool isReMaterializable : 1;
258     bool hasDelaySlot : 1;
259     bool usesCustomInserter : 1;
260     bool hasPostISelHook : 1;
261     bool hasCtrlDep : 1;
262     bool isNotDuplicable : 1;
263     bool hasSideEffects : 1;
264     bool hasSideEffects_Unset : 1;
265     bool isAsCheapAsAMove : 1;
266     bool hasExtraSrcRegAllocReq : 1;
267     bool hasExtraDefRegAllocReq : 1;
268     bool isCodeGenOnly : 1;
269     bool isPseudo : 1;
270     bool isRegSequence : 1;
271     bool isExtractSubreg : 1;
272     bool isInsertSubreg : 1;
273     bool isConvergent : 1;
274     bool hasNoSchedulingInfo : 1;
275     bool FastISelShouldIgnore : 1;
276     bool hasChain : 1;
277     bool hasChain_Inferred : 1;
278     bool variadicOpsAreDefs : 1;
279 
280     std::string DeprecatedReason;
281     bool HasComplexDeprecationPredicate;
282 
283     /// Are there any undefined flags?
hasUndefFlags()284     bool hasUndefFlags() const {
285       return mayLoad_Unset || mayStore_Unset || hasSideEffects_Unset;
286     }
287 
288     // The record used to infer instruction flags, or NULL if no flag values
289     // have been inferred.
290     Record *InferredFrom;
291 
292     CodeGenInstruction(Record *R);
293 
294     /// HasOneImplicitDefWithKnownVT - If the instruction has at least one
295     /// implicit def and it has a known VT, return the VT, otherwise return
296     /// MVT::Other.
297     MVT::SimpleValueType
298       HasOneImplicitDefWithKnownVT(const CodeGenTarget &TargetInfo) const;
299 
300 
301     /// FlattenAsmStringVariants - Flatten the specified AsmString to only
302     /// include text from the specified variant, returning the new string.
303     static std::string FlattenAsmStringVariants(StringRef AsmString,
304                                                 unsigned Variant);
305 
306     // Is the specified operand in a generic instruction implicitly a pointer.
307     // This can be used on intructions that use typeN or ptypeN to identify
308     // operands that should be considered as pointers even though SelectionDAG
309     // didn't make a distinction between integer and pointers.
310     bool isOperandAPointer(unsigned i) const;
311   };
312 
313 
314   /// CodeGenInstAlias - This represents an InstAlias definition.
315   class CodeGenInstAlias {
316   public:
317     Record *TheDef;            // The actual record defining this InstAlias.
318 
319     /// AsmString - The format string used to emit a .s file for the
320     /// instruction.
321     std::string AsmString;
322 
323     /// Result - The result instruction.
324     DagInit *Result;
325 
326     /// ResultInst - The instruction generated by the alias (decoded from
327     /// Result).
328     CodeGenInstruction *ResultInst;
329 
330 
331     struct ResultOperand {
332     private:
333       std::string Name;
334       Record *R;
335 
336       int64_t Imm;
337     public:
338       enum {
339         K_Record,
340         K_Imm,
341         K_Reg
342       } Kind;
343 
ResultOperandResultOperand344       ResultOperand(std::string N, Record *r)
345           : Name(std::move(N)), R(r), Kind(K_Record) {}
ResultOperandResultOperand346       ResultOperand(int64_t I) : Imm(I), Kind(K_Imm) {}
ResultOperandResultOperand347       ResultOperand(Record *r) : R(r), Kind(K_Reg) {}
348 
isRecordResultOperand349       bool isRecord() const { return Kind == K_Record; }
isImmResultOperand350       bool isImm() const { return Kind == K_Imm; }
isRegResultOperand351       bool isReg() const { return Kind == K_Reg; }
352 
getNameResultOperand353       StringRef getName() const { assert(isRecord()); return Name; }
getRecordResultOperand354       Record *getRecord() const { assert(isRecord()); return R; }
getImmResultOperand355       int64_t getImm() const { assert(isImm()); return Imm; }
getRegisterResultOperand356       Record *getRegister() const { assert(isReg()); return R; }
357 
358       unsigned getMINumOperands() const;
359     };
360 
361     /// ResultOperands - The decoded operands for the result instruction.
362     std::vector<ResultOperand> ResultOperands;
363 
364     /// ResultInstOperandIndex - For each operand, this vector holds a pair of
365     /// indices to identify the corresponding operand in the result
366     /// instruction.  The first index specifies the operand and the second
367     /// index specifies the suboperand.  If there are no suboperands or if all
368     /// of them are matched by the operand, the second value should be -1.
369     std::vector<std::pair<unsigned, int> > ResultInstOperandIndex;
370 
371     CodeGenInstAlias(Record *R, CodeGenTarget &T);
372 
373     bool tryAliasOpMatch(DagInit *Result, unsigned AliasOpNo,
374                          Record *InstOpRec, bool hasSubOps, ArrayRef<SMLoc> Loc,
375                          CodeGenTarget &T, ResultOperand &ResOp);
376   };
377 }
378 
379 #endif
380