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