]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.h
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Target / AArch64 / AArch64InstrInfo.h
1 //===- AArch64InstrInfo.h - AArch64 Instruction Information -----*- 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 contains the AArch64 implementation of the TargetInstrInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_LIB_TARGET_AARCH64_AARCH64INSTRINFO_H
15 #define LLVM_LIB_TARGET_AARCH64_AARCH64INSTRINFO_H
16
17 #include "AArch64.h"
18 #include "AArch64RegisterInfo.h"
19 #include "llvm/CodeGen/MachineCombinerPattern.h"
20 #include "llvm/CodeGen/TargetInstrInfo.h"
21
22 #define GET_INSTRINFO_HEADER
23 #include "AArch64GenInstrInfo.inc"
24
25 namespace llvm {
26
27 class AArch64Subtarget;
28 class AArch64TargetMachine;
29
30 static const MachineMemOperand::Flags MOSuppressPair =
31     MachineMemOperand::MOTargetFlag1;
32 static const MachineMemOperand::Flags MOStridedAccess =
33     MachineMemOperand::MOTargetFlag2;
34
35 #define FALKOR_STRIDED_ACCESS_MD "falkor.strided.access"
36
37 class AArch64InstrInfo final : public AArch64GenInstrInfo {
38   const AArch64RegisterInfo RI;
39   const AArch64Subtarget &Subtarget;
40
41 public:
42   explicit AArch64InstrInfo(const AArch64Subtarget &STI);
43
44   /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info.  As
45   /// such, whenever a client has an instance of instruction info, it should
46   /// always be able to get register info as well (through this method).
47   const AArch64RegisterInfo &getRegisterInfo() const { return RI; }
48
49   unsigned getInstSizeInBytes(const MachineInstr &MI) const override;
50
51   bool isAsCheapAsAMove(const MachineInstr &MI) const override;
52
53   bool isCoalescableExtInstr(const MachineInstr &MI, unsigned &SrcReg,
54                              unsigned &DstReg, unsigned &SubIdx) const override;
55
56   bool
57   areMemAccessesTriviallyDisjoint(MachineInstr &MIa, MachineInstr &MIb,
58                                   AliasAnalysis *AA = nullptr) const override;
59
60   unsigned isLoadFromStackSlot(const MachineInstr &MI,
61                                int &FrameIndex) const override;
62   unsigned isStoreToStackSlot(const MachineInstr &MI,
63                               int &FrameIndex) const override;
64
65   /// Does this instruction set its full destination register to zero?
66   static bool isGPRZero(const MachineInstr &MI);
67
68   /// Does this instruction rename a GPR without modifying bits?
69   static bool isGPRCopy(const MachineInstr &MI);
70
71   /// Does this instruction rename an FPR without modifying bits?
72   static bool isFPRCopy(const MachineInstr &MI);
73
74   /// Return true if pairing the given load or store is hinted to be
75   /// unprofitable.
76   static bool isLdStPairSuppressed(const MachineInstr &MI);
77
78   /// Return true if the given load or store is a strided memory access.
79   static bool isStridedAccess(const MachineInstr &MI);
80
81   /// Return true if this is an unscaled load/store.
82   static bool isUnscaledLdSt(unsigned Opc);
83   static bool isUnscaledLdSt(MachineInstr &MI) {
84     return isUnscaledLdSt(MI.getOpcode());
85   }
86
87   /// Return true if pairing the given load or store may be paired with another.
88   static bool isPairableLdStInst(const MachineInstr &MI);
89
90   /// Return the opcode that set flags when possible.  The caller is
91   /// responsible for ensuring the opc has a flag setting equivalent.
92   static unsigned convertToFlagSettingOpc(unsigned Opc, bool &Is64Bit);
93
94   /// Return true if this is a load/store that can be potentially paired/merged.
95   bool isCandidateToMergeOrPair(MachineInstr &MI) const;
96
97   /// Hint that pairing the given load or store is unprofitable.
98   static void suppressLdStPair(MachineInstr &MI);
99
100   bool getMemOperandWithOffset(MachineInstr &MI, MachineOperand *&BaseOp,
101                                int64_t &Offset,
102                                const TargetRegisterInfo *TRI) const override;
103
104   bool getMemOperandWithOffsetWidth(MachineInstr &MI, MachineOperand *&BaseOp,
105                                     int64_t &Offset, unsigned &Width,
106                                     const TargetRegisterInfo *TRI) const;
107
108   /// Return the immediate offset of the base register in a load/store \p LdSt.
109   MachineOperand &getMemOpBaseRegImmOfsOffsetOperand(MachineInstr &LdSt) const;
110
111   /// Returns true if opcode \p Opc is a memory operation. If it is, set
112   /// \p Scale, \p Width, \p MinOffset, and \p MaxOffset accordingly.
113   ///
114   /// For unscaled instructions, \p Scale is set to 1.
115   bool getMemOpInfo(unsigned Opcode, unsigned &Scale, unsigned &Width,
116                     int64_t &MinOffset, int64_t &MaxOffset) const;
117
118   bool shouldClusterMemOps(MachineOperand &BaseOp1, MachineOperand &BaseOp2,
119                            unsigned NumLoads) const override;
120
121   void copyPhysRegTuple(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
122                         const DebugLoc &DL, unsigned DestReg, unsigned SrcReg,
123                         bool KillSrc, unsigned Opcode,
124                         llvm::ArrayRef<unsigned> Indices) const;
125   void copyGPRRegTuple(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
126                        DebugLoc DL, unsigned DestReg, unsigned SrcReg,
127                        bool KillSrc, unsigned Opcode, unsigned ZeroReg,
128                        llvm::ArrayRef<unsigned> Indices) const;
129   void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
130                    const DebugLoc &DL, unsigned DestReg, unsigned SrcReg,
131                    bool KillSrc) const override;
132
133   void storeRegToStackSlot(MachineBasicBlock &MBB,
134                            MachineBasicBlock::iterator MBBI, unsigned SrcReg,
135                            bool isKill, int FrameIndex,
136                            const TargetRegisterClass *RC,
137                            const TargetRegisterInfo *TRI) const override;
138
139   void loadRegFromStackSlot(MachineBasicBlock &MBB,
140                             MachineBasicBlock::iterator MBBI, unsigned DestReg,
141                             int FrameIndex, const TargetRegisterClass *RC,
142                             const TargetRegisterInfo *TRI) const override;
143
144   // This tells target independent code that it is okay to pass instructions
145   // with subreg operands to foldMemoryOperandImpl.
146   bool isSubregFoldable() const override { return true; }
147
148   using TargetInstrInfo::foldMemoryOperandImpl;
149   MachineInstr *
150   foldMemoryOperandImpl(MachineFunction &MF, MachineInstr &MI,
151                         ArrayRef<unsigned> Ops,
152                         MachineBasicBlock::iterator InsertPt, int FrameIndex,
153                         LiveIntervals *LIS = nullptr) const override;
154
155   /// \returns true if a branch from an instruction with opcode \p BranchOpc
156   ///  bytes is capable of jumping to a position \p BrOffset bytes away.
157   bool isBranchOffsetInRange(unsigned BranchOpc,
158                              int64_t BrOffset) const override;
159
160   MachineBasicBlock *getBranchDestBlock(const MachineInstr &MI) const override;
161
162   bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
163                      MachineBasicBlock *&FBB,
164                      SmallVectorImpl<MachineOperand> &Cond,
165                      bool AllowModify = false) const override;
166   unsigned removeBranch(MachineBasicBlock &MBB,
167                         int *BytesRemoved = nullptr) const override;
168   unsigned insertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
169                         MachineBasicBlock *FBB, ArrayRef<MachineOperand> Cond,
170                         const DebugLoc &DL,
171                         int *BytesAdded = nullptr) const override;
172   bool
173   reverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const override;
174   bool canInsertSelect(const MachineBasicBlock &, ArrayRef<MachineOperand> Cond,
175                        unsigned, unsigned, int &, int &, int &) const override;
176   void insertSelect(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
177                     const DebugLoc &DL, unsigned DstReg,
178                     ArrayRef<MachineOperand> Cond, unsigned TrueReg,
179                     unsigned FalseReg) const override;
180   void getNoop(MCInst &NopInst) const override;
181
182   bool isSchedulingBoundary(const MachineInstr &MI,
183                             const MachineBasicBlock *MBB,
184                             const MachineFunction &MF) const override;
185
186   /// analyzeCompare - For a comparison instruction, return the source registers
187   /// in SrcReg and SrcReg2, and the value it compares against in CmpValue.
188   /// Return true if the comparison instruction can be analyzed.
189   bool analyzeCompare(const MachineInstr &MI, unsigned &SrcReg,
190                       unsigned &SrcReg2, int &CmpMask,
191                       int &CmpValue) const override;
192   /// optimizeCompareInstr - Convert the instruction supplying the argument to
193   /// the comparison into one that sets the zero bit in the flags register.
194   bool optimizeCompareInstr(MachineInstr &CmpInstr, unsigned SrcReg,
195                             unsigned SrcReg2, int CmpMask, int CmpValue,
196                             const MachineRegisterInfo *MRI) const override;
197   bool optimizeCondBranch(MachineInstr &MI) const override;
198
199   /// Return true when a code sequence can improve throughput. It
200   /// should be called only for instructions in loops.
201   /// \param Pattern - combiner pattern
202   bool isThroughputPattern(MachineCombinerPattern Pattern) const override;
203   /// Return true when there is potentially a faster code sequence
204   /// for an instruction chain ending in ``Root``. All potential patterns are
205   /// listed in the ``Patterns`` array.
206   bool getMachineCombinerPatterns(
207       MachineInstr &Root,
208       SmallVectorImpl<MachineCombinerPattern> &Patterns) const override;
209   /// Return true when Inst is associative and commutative so that it can be
210   /// reassociated.
211   bool isAssociativeAndCommutative(const MachineInstr &Inst) const override;
212   /// When getMachineCombinerPatterns() finds patterns, this function generates
213   /// the instructions that could replace the original code sequence
214   void genAlternativeCodeSequence(
215       MachineInstr &Root, MachineCombinerPattern Pattern,
216       SmallVectorImpl<MachineInstr *> &InsInstrs,
217       SmallVectorImpl<MachineInstr *> &DelInstrs,
218       DenseMap<unsigned, unsigned> &InstrIdxForVirtReg) const override;
219   /// AArch64 supports MachineCombiner.
220   bool useMachineCombiner() const override;
221
222   bool expandPostRAPseudo(MachineInstr &MI) const override;
223
224   std::pair<unsigned, unsigned>
225   decomposeMachineOperandsTargetFlags(unsigned TF) const override;
226   ArrayRef<std::pair<unsigned, const char *>>
227   getSerializableDirectMachineOperandTargetFlags() const override;
228   ArrayRef<std::pair<unsigned, const char *>>
229   getSerializableBitmaskMachineOperandTargetFlags() const override;
230   ArrayRef<std::pair<MachineMemOperand::Flags, const char *>>
231   getSerializableMachineMemOperandTargetFlags() const override;
232
233   bool isFunctionSafeToOutlineFrom(MachineFunction &MF,
234                                    bool OutlineFromLinkOnceODRs) const override;
235   outliner::OutlinedFunction getOutliningCandidateInfo(
236       std::vector<outliner::Candidate> &RepeatedSequenceLocs) const override;
237   outliner::InstrType
238   getOutliningType(MachineBasicBlock::iterator &MIT, unsigned Flags) const override;
239   bool isMBBSafeToOutlineFrom(MachineBasicBlock &MBB,
240                               unsigned &Flags) const override;
241   void buildOutlinedFrame(MachineBasicBlock &MBB, MachineFunction &MF,
242                           const outliner::OutlinedFunction &OF) const override;
243   MachineBasicBlock::iterator
244   insertOutlinedCall(Module &M, MachineBasicBlock &MBB,
245                      MachineBasicBlock::iterator &It, MachineFunction &MF,
246                      const outliner::Candidate &C) const override;
247   bool shouldOutlineFromFunctionByDefault(MachineFunction &MF) const override;
248   /// Returns true if the instruction has a shift by immediate that can be
249   /// executed in one cycle less.
250   static bool isFalkorShiftExtFast(const MachineInstr &MI);
251   /// Return true if the instructions is a SEH instruciton used for unwinding
252   /// on Windows.
253   static bool isSEHInstruction(const MachineInstr &MI);
254
255 #define GET_INSTRINFO_HELPER_DECLS
256 #include "AArch64GenInstrInfo.inc"
257
258 private:
259   /// Sets the offsets on outlined instructions in \p MBB which use SP
260   /// so that they will be valid post-outlining.
261   ///
262   /// \param MBB A \p MachineBasicBlock in an outlined function.
263   void fixupPostOutline(MachineBasicBlock &MBB) const;
264
265   void instantiateCondBranch(MachineBasicBlock &MBB, const DebugLoc &DL,
266                              MachineBasicBlock *TBB,
267                              ArrayRef<MachineOperand> Cond) const;
268   bool substituteCmpToZero(MachineInstr &CmpInstr, unsigned SrcReg,
269                            const MachineRegisterInfo *MRI) const;
270
271   /// Returns an unused general-purpose register which can be used for
272   /// constructing an outlined call if one exists. Returns 0 otherwise.
273   unsigned findRegisterToSaveLRTo(const outliner::Candidate &C) const;
274 };
275
276 /// emitFrameOffset - Emit instructions as needed to set DestReg to SrcReg
277 /// plus Offset.  This is intended to be used from within the prolog/epilog
278 /// insertion (PEI) pass, where a virtual scratch register may be allocated
279 /// if necessary, to be replaced by the scavenger at the end of PEI.
280 void emitFrameOffset(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
281                      const DebugLoc &DL, unsigned DestReg, unsigned SrcReg,
282                      int Offset, const TargetInstrInfo *TII,
283                      MachineInstr::MIFlag = MachineInstr::NoFlags,
284                      bool SetNZCV = false,  bool NeedsWinCFI = false);
285
286 /// rewriteAArch64FrameIndex - Rewrite MI to access 'Offset' bytes from the
287 /// FP. Return false if the offset could not be handled directly in MI, and
288 /// return the left-over portion by reference.
289 bool rewriteAArch64FrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
290                               unsigned FrameReg, int &Offset,
291                               const AArch64InstrInfo *TII);
292
293 /// Use to report the frame offset status in isAArch64FrameOffsetLegal.
294 enum AArch64FrameOffsetStatus {
295   AArch64FrameOffsetCannotUpdate = 0x0, ///< Offset cannot apply.
296   AArch64FrameOffsetIsLegal = 0x1,      ///< Offset is legal.
297   AArch64FrameOffsetCanUpdate = 0x2     ///< Offset can apply, at least partly.
298 };
299
300 /// Check if the @p Offset is a valid frame offset for @p MI.
301 /// The returned value reports the validity of the frame offset for @p MI.
302 /// It uses the values defined by AArch64FrameOffsetStatus for that.
303 /// If result == AArch64FrameOffsetCannotUpdate, @p MI cannot be updated to
304 /// use an offset.eq
305 /// If result & AArch64FrameOffsetIsLegal, @p Offset can completely be
306 /// rewritten in @p MI.
307 /// If result & AArch64FrameOffsetCanUpdate, @p Offset contains the
308 /// amount that is off the limit of the legal offset.
309 /// If set, @p OutUseUnscaledOp will contain the whether @p MI should be
310 /// turned into an unscaled operator, which opcode is in @p OutUnscaledOp.
311 /// If set, @p EmittableOffset contains the amount that can be set in @p MI
312 /// (possibly with @p OutUnscaledOp if OutUseUnscaledOp is true) and that
313 /// is a legal offset.
314 int isAArch64FrameOffsetLegal(const MachineInstr &MI, int &Offset,
315                               bool *OutUseUnscaledOp = nullptr,
316                               unsigned *OutUnscaledOp = nullptr,
317                               int *EmittableOffset = nullptr);
318
319 static inline bool isUncondBranchOpcode(int Opc) { return Opc == AArch64::B; }
320
321 static inline bool isCondBranchOpcode(int Opc) {
322   switch (Opc) {
323   case AArch64::Bcc:
324   case AArch64::CBZW:
325   case AArch64::CBZX:
326   case AArch64::CBNZW:
327   case AArch64::CBNZX:
328   case AArch64::TBZW:
329   case AArch64::TBZX:
330   case AArch64::TBNZW:
331   case AArch64::TBNZX:
332     return true;
333   default:
334     return false;
335   }
336 }
337
338 static inline bool isIndirectBranchOpcode(int Opc) {
339   return Opc == AArch64::BR;
340 }
341
342 // struct TSFlags {
343 #define TSFLAG_ELEMENT_SIZE_TYPE(X)      (X)       // 3-bits
344 #define TSFLAG_DESTRUCTIVE_INST_TYPE(X) ((X) << 3) // 1-bit
345 // }
346
347 namespace AArch64 {
348
349 enum ElementSizeType {
350   ElementSizeMask = TSFLAG_ELEMENT_SIZE_TYPE(0x7),
351   ElementSizeNone = TSFLAG_ELEMENT_SIZE_TYPE(0x0),
352   ElementSizeB    = TSFLAG_ELEMENT_SIZE_TYPE(0x1),
353   ElementSizeH    = TSFLAG_ELEMENT_SIZE_TYPE(0x2),
354   ElementSizeS    = TSFLAG_ELEMENT_SIZE_TYPE(0x3),
355   ElementSizeD    = TSFLAG_ELEMENT_SIZE_TYPE(0x4),
356 };
357
358 enum DestructiveInstType {
359   DestructiveInstTypeMask = TSFLAG_DESTRUCTIVE_INST_TYPE(0x1),
360   NotDestructive          = TSFLAG_DESTRUCTIVE_INST_TYPE(0x0),
361   Destructive             = TSFLAG_DESTRUCTIVE_INST_TYPE(0x1),
362 };
363
364 #undef TSFLAG_ELEMENT_SIZE_TYPE
365 #undef TSFLAG_DESTRUCTIVE_INST_TYPE
366 }
367
368 } // end namespace llvm
369
370 #endif