LLVM  8.0.1
AArch64InstrInfo.h
Go to the documentation of this file.
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"
21 
22 #define GET_INSTRINFO_HEADER
23 #include "AArch64GenInstrInfo.inc"
24 
25 namespace llvm {
26 
27 class AArch64Subtarget;
28 class AArch64TargetMachine;
29 
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
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 
101  int64_t &Offset,
102  const TargetRegisterInfo *TRI) const override;
103 
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.
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 
122  const DebugLoc &DL, unsigned DestReg, unsigned SrcReg,
123  bool KillSrc, unsigned Opcode,
124  llvm::ArrayRef<unsigned> Indices) const;
126  DebugLoc DL, unsigned DestReg, unsigned SrcReg,
127  bool KillSrc, unsigned Opcode, unsigned ZeroReg,
128  llvm::ArrayRef<unsigned> Indices) const;
130  const DebugLoc &DL, unsigned DestReg, unsigned SrcReg,
131  bool KillSrc) const override;
132 
134  MachineBasicBlock::iterator MBBI, unsigned SrcReg,
135  bool isKill, int FrameIndex,
136  const TargetRegisterClass *RC,
137  const TargetRegisterInfo *TRI) const override;
138 
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 
149  MachineInstr *
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 
163  MachineBasicBlock *&FBB,
165  bool AllowModify = false) const override;
166  unsigned removeBranch(MachineBasicBlock &MBB,
167  int *BytesRemoved = nullptr) const override;
170  const DebugLoc &DL,
171  int *BytesAdded = nullptr) const override;
172  bool
175  unsigned, unsigned, int &, int &, int &) const override;
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.
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
215  MachineInstr &Root, MachineCombinerPattern Pattern,
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;
232 
234  bool OutlineFromLinkOnceODRs) const override;
236  std::vector<outliner::Candidate> &RepeatedSequenceLocs) const override;
238  getOutliningType(MachineBasicBlock::iterator &MIT, unsigned Flags) const override;
240  unsigned &Flags) const override;
242  const outliner::OutlinedFunction &OF) const override;
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,
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.
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.
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 
356 };
357 
362 };
363 
364 #undef TSFLAG_ELEMENT_SIZE_TYPE
365 #undef TSFLAG_DESTRUCTIVE_INST_TYPE
366 }
367 
368 } // end namespace llvm
369 
370 #endif
bool getMemOperandWithOffsetWidth(MachineInstr &MI, MachineOperand *&BaseOp, int64_t &Offset, unsigned &Width, const TargetRegisterInfo *TRI) const
uint64_t CallInst * C
static bool isStridedAccess(const MachineInstr &MI)
Return true if the given load or store is a strided memory access.
ArrayRef< std::pair< unsigned, const char * > > getSerializableBitmaskMachineOperandTargetFlags() const override
static bool isFPRCopy(const MachineInstr &MI)
Does this instruction rename an FPR without modifying bits?
This class represents lattice values for constants.
Definition: AllocatorList.h:24
A Module instance is used to store all the information related to an LLVM module. ...
Definition: Module.h:65
static bool isGPRCopy(const MachineInstr &MI)
Does this instruction rename a GPR without modifying bits?
MachineInstr * foldMemoryOperandImpl(MachineFunction &MF, MachineInstr &MI, ArrayRef< unsigned > Ops, MachineBasicBlock::iterator InsertPt, int FrameIndex, LiveIntervals *LIS=nullptr) const override
Offset can apply, at least partly.
unsigned const TargetRegisterInfo * TRI
A debug info location.
Definition: DebugLoc.h:34
An individual sequence of instructions to be replaced with a call to an outlined function.
static bool isLdStPairSuppressed(const MachineInstr &MI)
Return true if pairing the given load or store is hinted to be unprofitable.
static bool isUnscaledLdSt(unsigned Opc)
Return true if this is an unscaled load/store.
bool isAssociativeAndCommutative(const MachineInstr &Inst) const override
Return true when Inst is associative and commutative so that it can be reassociated.
static bool isSEHInstruction(const MachineInstr &MI)
Return true if the instructions is a SEH instruciton used for unwinding on Windows.
const HexagonInstrInfo * TII
static void suppressLdStPair(MachineInstr &MI)
Hint that pairing the given load or store is unprofitable.
static bool isPairableLdStInst(const MachineInstr &MI)
Return true if pairing the given load or store may be paired with another.
void emitFrameOffset(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, const DebugLoc &DL, unsigned DestReg, unsigned SrcReg, int Offset, const TargetInstrInfo *TII, MachineInstr::MIFlag=MachineInstr::NoFlags, bool SetNZCV=false, bool NeedsWinCFI=false)
emitFrameOffset - Emit instructions as needed to set DestReg to SrcReg plus Offset.
bool getMemOpInfo(unsigned Opcode, unsigned &Scale, unsigned &Width, int64_t &MinOffset, int64_t &MaxOffset) const
Returns true if opcode Opc is a memory operation.
MachineBasicBlock::iterator insertOutlinedCall(Module &M, MachineBasicBlock &MBB, MachineBasicBlock::iterator &It, MachineFunction &MF, const outliner::Candidate &C) const override
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: APFloat.h:42
bool useMachineCombiner() const override
AArch64 supports MachineCombiner.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
Definition: MachineInstr.h:409
static bool isFalkorShiftExtFast(const MachineInstr &MI)
Returns true if the instruction has a shift by immediate that can be executed in one cycle less...
#define TSFLAG_DESTRUCTIVE_INST_TYPE(X)
int isAArch64FrameOffsetLegal(const MachineInstr &MI, int &Offset, bool *OutUseUnscaledOp=nullptr, unsigned *OutUnscaledOp=nullptr, int *EmittableOffset=nullptr)
Check if the Offset is a valid frame offset for MI.
AArch64InstrInfo(const AArch64Subtarget &STI)
virtual MachineInstr * foldMemoryOperandImpl(MachineFunction &MF, MachineInstr &MI, ArrayRef< unsigned > Ops, MachineBasicBlock::iterator InsertPt, int FrameIndex, LiveIntervals *LIS=nullptr) const
Target-dependent implementation for foldMemoryOperand.
unsigned getInstSizeInBytes(const MachineInstr &MI) const override
GetInstSize - Return the number of bytes of code the specified instruction may be.
bool canInsertSelect(const MachineBasicBlock &, ArrayRef< MachineOperand > Cond, unsigned, unsigned, int &, int &, int &) const override
unsigned removeBranch(MachineBasicBlock &MBB, int *BytesRemoved=nullptr) const override
static const MachineMemOperand::Flags MOSuppressPair
#define TSFLAG_ELEMENT_SIZE_TYPE(X)
bool isMBBSafeToOutlineFrom(MachineBasicBlock &MBB, unsigned &Flags) const override
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:161
static bool isUnscaledLdSt(MachineInstr &MI)
void copyGPRRegTuple(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, DebugLoc DL, unsigned DestReg, unsigned SrcReg, bool KillSrc, unsigned Opcode, unsigned ZeroReg, llvm::ArrayRef< unsigned > Indices) const
static bool isCondBranchOpcode(int Opc)
bool getMemOperandWithOffset(MachineInstr &MI, MachineOperand *&BaseOp, int64_t &Offset, const TargetRegisterInfo *TRI) const override
MachineInstrBundleIterator< MachineInstr > iterator
const AArch64RegisterInfo & getRegisterInfo() const
getRegisterInfo - TargetInstrInfo is a superset of MRegister info.
Control flow instructions. These all have token chains.
Definition: ISDOpcodes.h:629
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
unsigned const MachineRegisterInfo * MRI
bool shouldClusterMemOps(MachineOperand &BaseOp1, MachineOperand &BaseOp2, unsigned NumLoads) const override
Detect opportunities for ldp/stp formation.
InstrType
Represents how an instruction should be mapped by the outliner.
void genAlternativeCodeSequence(MachineInstr &Root, MachineCombinerPattern Pattern, SmallVectorImpl< MachineInstr *> &InsInstrs, SmallVectorImpl< MachineInstr *> &DelInstrs, DenseMap< unsigned, unsigned > &InstrIdxForVirtReg) const override
When getMachineCombinerPatterns() finds patterns, this function generates the instructions that could...
bool reverseBranchCondition(SmallVectorImpl< MachineOperand > &Cond) const override
The information necessary to create an outlined function for some class of candidate.
bool rewriteAArch64FrameIndex(MachineInstr &MI, unsigned FrameRegIdx, unsigned FrameReg, int &Offset, const AArch64InstrInfo *TII)
rewriteAArch64FrameIndex - Rewrite MI to access &#39;Offset&#39; bytes from the FP.
bool areMemAccessesTriviallyDisjoint(MachineInstr &MIa, MachineInstr &MIb, AliasAnalysis *AA=nullptr) const override
bool isBranchOffsetInRange(unsigned BranchOpc, int64_t BrOffset) const override
bool isAsCheapAsAMove(const MachineInstr &MI) const override
bool expandPostRAPseudo(MachineInstr &MI) const override
bool isThroughputPattern(MachineCombinerPattern Pattern) const override
Return true when a code sequence can improve throughput.
MachineCombinerPattern
These are instruction patterns matched by the machine combiner pass.
bool getMachineCombinerPatterns(MachineInstr &Root, SmallVectorImpl< MachineCombinerPattern > &Patterns) const override
Return true when there is potentially a faster code sequence for an instruction chain ending in Root...
bool isSchedulingBoundary(const MachineInstr &MI, const MachineBasicBlock *MBB, const MachineFunction &MF) const override
ArrayRef< std::pair< unsigned, const char * > > getSerializableDirectMachineOperandTargetFlags() const override
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, const DebugLoc &DL, unsigned DestReg, unsigned SrcReg, bool KillSrc) const override
void insertSelect(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const DebugLoc &DL, unsigned DstReg, ArrayRef< MachineOperand > Cond, unsigned TrueReg, unsigned FalseReg) const override
bool isCoalescableExtInstr(const MachineInstr &MI, unsigned &SrcReg, unsigned &DstReg, unsigned &SubIdx) const override
AArch64FrameOffsetStatus
Use to report the frame offset status in isAArch64FrameOffsetLegal.
unsigned isLoadFromStackSlot(const MachineInstr &MI, int &FrameIndex) const override
ArrayRef< std::pair< MachineMemOperand::Flags, const char * > > getSerializableMachineMemOperandTargetFlags() const override
static bool isIndirectBranchOpcode(int Opc)
static bool isUncondBranchOpcode(int Opc)
void getNoop(MCInst &NopInst) const override
bool shouldOutlineFromFunctionByDefault(MachineFunction &MF) const override
unsigned insertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB, ArrayRef< MachineOperand > Cond, const DebugLoc &DL, int *BytesAdded=nullptr) const override
MachineOperand class - Representation of each machine instruction operand.
outliner::InstrType getOutliningType(MachineBasicBlock::iterator &MIT, unsigned Flags) const override
bool optimizeCondBranch(MachineInstr &MI) const override
Replace csincr-branch sequence by simple conditional branch.
unsigned isStoreToStackSlot(const MachineInstr &MI, int &FrameIndex) const override
bool isCandidateToMergeOrPair(MachineInstr &MI) const
Return true if this is a load/store that can be potentially paired/merged.
bool isSubregFoldable() const override
static unsigned convertToFlagSettingOpc(unsigned Opc, bool &Is64Bit)
Return the opcode that set flags when possible.
Flags
Flags values. These may be or&#39;d together.
MachineRegisterInfo - Keep track of information for virtual and physical registers, including vreg register classes, use/def chains for registers, etc.
Representation of each machine instruction.
Definition: MachineInstr.h:64
bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB, SmallVectorImpl< MachineOperand > &Cond, bool AllowModify=false) const override
static bool isGPRZero(const MachineInstr &MI)
Does this instruction set its full destination register to zero?
bool optimizeCompareInstr(MachineInstr &CmpInstr, unsigned SrcReg, unsigned SrcReg2, int CmpMask, int CmpValue, const MachineRegisterInfo *MRI) const override
optimizeCompareInstr - Convert the instruction supplying the argument to the comparison into one that...
bool analyzeCompare(const MachineInstr &MI, unsigned &SrcReg, unsigned &SrcReg2, int &CmpMask, int &CmpValue) const override
analyzeCompare - For a comparison instruction, return the source registers in SrcReg and SrcReg2...
void copyPhysRegTuple(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, const DebugLoc &DL, unsigned DestReg, unsigned SrcReg, bool KillSrc, unsigned Opcode, llvm::ArrayRef< unsigned > Indices) const
void storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, unsigned SrcReg, bool isKill, int FrameIndex, const TargetRegisterClass *RC, const TargetRegisterInfo *TRI) const override
#define I(x, y, z)
Definition: MD5.cpp:58
bool isFunctionSafeToOutlineFrom(MachineFunction &MF, bool OutlineFromLinkOnceODRs) const override
void loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, unsigned DestReg, int FrameIndex, const TargetRegisterClass *RC, const TargetRegisterInfo *TRI) const override
MachineBasicBlock * getBranchDestBlock(const MachineInstr &MI) const override
std::pair< unsigned, unsigned > decomposeMachineOperandsTargetFlags(unsigned TF) const override
IRTranslator LLVM IR MI
MachineOperand & getMemOpBaseRegImmOfsOffsetOperand(MachineInstr &LdSt) const
Return the immediate offset of the base register in a load/store LdSt.
outliner::OutlinedFunction getOutliningCandidateInfo(std::vector< outliner::Candidate > &RepeatedSequenceLocs) const override
static const MachineMemOperand::Flags MOStridedAccess
void buildOutlinedFrame(MachineBasicBlock &MBB, MachineFunction &MF, const outliner::OutlinedFunction &OF) const override