| Jia Liu | b22310f | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 1 | //===-- ARMBaseInstrInfo.h - ARM Base Instruction Information ---*- C++ -*-===// |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 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 Base ARM implementation of the TargetInstrInfo class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 14 | #ifndef LLVM_LIB_TARGET_ARM_ARMBASEINSTRINFO_H |
| 15 | #define LLVM_LIB_TARGET_ARM_ARMBASEINSTRINFO_H |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 16 | |
| Craig Topper | a925326 | 2014-03-22 23:51:00 +0000 | [diff] [blame] | 17 | #include "MCTargetDesc/ARMBaseInfo.h" |
| Evan Cheng | 62c7b5b | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/DenseMap.h" |
| 19 | #include "llvm/ADT/SmallSet.h" |
| Chandler Carruth | 802d755 | 2012-12-04 07:12:27 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| Akira Hatanaka | e5b6e0d | 2014-07-25 19:31:34 +0000 | [diff] [blame] | 21 | #include "llvm/Support/CodeGen.h" |
| Chandler Carruth | 802d755 | 2012-12-04 07:12:27 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetInstrInfo.h" |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 23 | |
| Evan Cheng | 703a0fb | 2011-07-01 17:57:27 +0000 | [diff] [blame] | 24 | #define GET_INSTRINFO_HEADER |
| 25 | #include "ARMGenInstrInfo.inc" |
| 26 | |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 27 | namespace llvm { |
| Chris Lattner | cbe9856 | 2010-07-20 21:17:29 +0000 | [diff] [blame] | 28 | class ARMSubtarget; |
| 29 | class ARMBaseRegisterInfo; |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 30 | |
| Evan Cheng | 703a0fb | 2011-07-01 17:57:27 +0000 | [diff] [blame] | 31 | class ARMBaseInstrInfo : public ARMGenInstrInfo { |
| Chris Lattner | cbe9856 | 2010-07-20 21:17:29 +0000 | [diff] [blame] | 32 | const ARMSubtarget &Subtarget; |
| Evan Cheng | 62c7b5b | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 33 | |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 34 | protected: |
| 35 | // Can be only subclassed. |
| Anton Korobeynikov | 14635da | 2009-11-02 00:10:38 +0000 | [diff] [blame] | 36 | explicit ARMBaseInstrInfo(const ARMSubtarget &STI); |
| Evan Cheng | 62c7b5b | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 37 | |
| Akira Hatanaka | e5b6e0d | 2014-07-25 19:31:34 +0000 | [diff] [blame] | 38 | void expandLoadStackGuardBase(MachineBasicBlock::iterator MI, |
| 39 | unsigned LoadImmOpc, unsigned LoadOpc, |
| 40 | Reloc::Model RM) const; |
| 41 | |
| Quentin Colombet | d358e84 | 2014-08-22 18:05:22 +0000 | [diff] [blame] | 42 | /// Build the equivalent inputs of a REG_SEQUENCE for the given \p MI |
| 43 | /// and \p DefIdx. |
| 44 | /// \p [out] InputRegs of the equivalent REG_SEQUENCE. Each element of |
| 45 | /// the list is modeled as <Reg:SubReg, SubIdx>. |
| 46 | /// E.g., REG_SEQUENCE vreg1:sub1, sub0, vreg2, sub1 would produce |
| 47 | /// two elements: |
| 48 | /// - vreg1:sub1, sub0 |
| 49 | /// - vreg2<:0>, sub1 |
| 50 | /// |
| 51 | /// \returns true if it is possible to build such an input sequence |
| 52 | /// with the pair \p MI, \p DefIdx. False otherwise. |
| 53 | /// |
| 54 | /// \pre MI.isRegSequenceLike(). |
| 55 | bool getRegSequenceLikeInputs( |
| 56 | const MachineInstr &MI, unsigned DefIdx, |
| 57 | SmallVectorImpl<RegSubRegPairAndIdx> &InputRegs) const override; |
| 58 | |
| 59 | /// Build the equivalent inputs of a EXTRACT_SUBREG for the given \p MI |
| 60 | /// and \p DefIdx. |
| 61 | /// \p [out] InputReg of the equivalent EXTRACT_SUBREG. |
| 62 | /// E.g., EXTRACT_SUBREG vreg1:sub1, sub0, sub1 would produce: |
| 63 | /// - vreg1:sub1, sub0 |
| 64 | /// |
| 65 | /// \returns true if it is possible to build such an input sequence |
| 66 | /// with the pair \p MI, \p DefIdx. False otherwise. |
| 67 | /// |
| 68 | /// \pre MI.isExtractSubregLike(). |
| 69 | bool getExtractSubregLikeInputs(const MachineInstr &MI, unsigned DefIdx, |
| 70 | RegSubRegPairAndIdx &InputReg) const override; |
| 71 | |
| 72 | /// Build the equivalent inputs of a INSERT_SUBREG for the given \p MI |
| 73 | /// and \p DefIdx. |
| 74 | /// \p [out] BaseReg and \p [out] InsertedReg contain |
| 75 | /// the equivalent inputs of INSERT_SUBREG. |
| 76 | /// E.g., INSERT_SUBREG vreg0:sub0, vreg1:sub1, sub3 would produce: |
| 77 | /// - BaseReg: vreg0:sub0 |
| 78 | /// - InsertedReg: vreg1:sub1, sub3 |
| 79 | /// |
| 80 | /// \returns true if it is possible to build such an input sequence |
| 81 | /// with the pair \p MI, \p DefIdx. False otherwise. |
| 82 | /// |
| 83 | /// \pre MI.isInsertSubregLike(). |
| 84 | bool |
| 85 | getInsertSubregLikeInputs(const MachineInstr &MI, unsigned DefIdx, |
| 86 | RegSubRegPair &BaseReg, |
| 87 | RegSubRegPairAndIdx &InsertedReg) const override; |
| 88 | |
| Andrew Kaylor | 16c4da0 | 2015-09-28 20:33:22 +0000 | [diff] [blame] | 89 | /// Commutes the operands in the given instruction. |
| 90 | /// The commutable operands are specified by their indices OpIdx1 and OpIdx2. |
| 91 | /// |
| 92 | /// Do not call this method for a non-commutable instruction or for |
| 93 | /// non-commutable pair of operand indices OpIdx1 and OpIdx2. |
| 94 | /// Even though the instruction is commutable, the method may still |
| 95 | /// fail to commute the operands, null pointer is returned in such cases. |
| 96 | MachineInstr *commuteInstructionImpl(MachineInstr *MI, |
| 97 | bool NewMI, |
| 98 | unsigned OpIdx1, |
| 99 | unsigned OpIdx2) const override; |
| 100 | |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 101 | public: |
| Jim Grosbach | 617f84dd | 2012-02-28 23:53:30 +0000 | [diff] [blame] | 102 | // Return whether the target has an explicit NOP encoding. |
| 103 | bool hasNOP() const; |
| 104 | |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 105 | // Return the non-pre/post incrementing version of 'Opc'. Return 0 |
| 106 | // if there is not such an opcode. |
| 107 | virtual unsigned getUnindexedOpcode(unsigned Opc) const =0; |
| 108 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 109 | MachineInstr *convertToThreeAddress(MachineFunction::iterator &MFI, |
| 110 | MachineBasicBlock::iterator &MBBI, |
| 111 | LiveVariables *LV) const override; |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 112 | |
| Bill Wendling | f95178e | 2013-06-07 05:54:19 +0000 | [diff] [blame] | 113 | virtual const ARMBaseRegisterInfo &getRegisterInfo() const = 0; |
| Anton Korobeynikov | 14635da | 2009-11-02 00:10:38 +0000 | [diff] [blame] | 114 | const ARMSubtarget &getSubtarget() const { return Subtarget; } |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 115 | |
| Evan Cheng | 62c7b5b | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 116 | ScheduleHazardRecognizer * |
| Eric Christopher | f047bfd | 2014-06-13 22:38:52 +0000 | [diff] [blame] | 117 | CreateTargetHazardRecognizer(const TargetSubtargetInfo *STI, |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 118 | const ScheduleDAG *DAG) const override; |
| Andrew Trick | 10ffc2b | 2010-12-24 05:03:26 +0000 | [diff] [blame] | 119 | |
| 120 | ScheduleHazardRecognizer * |
| 121 | CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II, |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 122 | const ScheduleDAG *DAG) const override; |
| Evan Cheng | 62c7b5b | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 123 | |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 124 | // Branch analysis. |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 125 | bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, |
| 126 | MachineBasicBlock *&FBB, |
| 127 | SmallVectorImpl<MachineOperand> &Cond, |
| 128 | bool AllowModify = false) const override; |
| 129 | unsigned RemoveBranch(MachineBasicBlock &MBB) const override; |
| 130 | unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, |
| Ahmed Bougacha | c88bf54 | 2015-06-11 19:30:37 +0000 | [diff] [blame] | 131 | MachineBasicBlock *FBB, ArrayRef<MachineOperand> Cond, |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 132 | DebugLoc DL) const override; |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 133 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 134 | bool |
| 135 | ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const override; |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 136 | |
| 137 | // Predication support. |
| Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 138 | bool isPredicated(const MachineInstr &MI) const override; |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 139 | |
| Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 140 | ARMCC::CondCodes getPredicate(const MachineInstr &MI) const { |
| 141 | int PIdx = MI.findFirstPredOperandIdx(); |
| 142 | return PIdx != -1 ? (ARMCC::CondCodes)MI.getOperand(PIdx).getImm() |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 143 | : ARMCC::AL; |
| 144 | } |
| 145 | |
| Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 146 | bool PredicateInstruction(MachineInstr &MI, |
| 147 | ArrayRef<MachineOperand> Pred) const override; |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 148 | |
| Ahmed Bougacha | c88bf54 | 2015-06-11 19:30:37 +0000 | [diff] [blame] | 149 | bool SubsumesPredicate(ArrayRef<MachineOperand> Pred1, |
| 150 | ArrayRef<MachineOperand> Pred2) const override; |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 151 | |
| Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 152 | bool DefinesPredicate(MachineInstr &MI, |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 153 | std::vector<MachineOperand> &Pred) const override; |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 154 | |
| Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 155 | bool isPredicable(MachineInstr &MI) const override; |
| Evan Cheng | a33fc86 | 2009-11-21 06:21:52 +0000 | [diff] [blame] | 156 | |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 157 | /// GetInstSize - Returns the size of the specified MachineInstr. |
| 158 | /// |
| 159 | virtual unsigned GetInstSizeInBytes(const MachineInstr* MI) const; |
| 160 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 161 | unsigned isLoadFromStackSlot(const MachineInstr *MI, |
| 162 | int &FrameIndex) const override; |
| 163 | unsigned isStoreToStackSlot(const MachineInstr *MI, |
| 164 | int &FrameIndex) const override; |
| 165 | unsigned isLoadFromStackSlotPostFE(const MachineInstr *MI, |
| 166 | int &FrameIndex) const override; |
| 167 | unsigned isStoreToStackSlotPostFE(const MachineInstr *MI, |
| 168 | int &FrameIndex) const override; |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 169 | |
| Tim Northover | 5d72c5d | 2014-10-01 19:21:03 +0000 | [diff] [blame] | 170 | void copyToCPSR(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, |
| 171 | unsigned SrcReg, bool KillSrc, |
| 172 | const ARMSubtarget &Subtarget) const; |
| 173 | void copyFromCPSR(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, |
| 174 | unsigned DestReg, bool KillSrc, |
| 175 | const ARMSubtarget &Subtarget) const; |
| 176 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 177 | void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, |
| 178 | DebugLoc DL, unsigned DestReg, unsigned SrcReg, |
| 179 | bool KillSrc) const override; |
| Evan Cheng | c47e109 | 2009-07-27 03:14:20 +0000 | [diff] [blame] | 180 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 181 | void storeRegToStackSlot(MachineBasicBlock &MBB, |
| 182 | MachineBasicBlock::iterator MBBI, |
| 183 | unsigned SrcReg, bool isKill, int FrameIndex, |
| 184 | const TargetRegisterClass *RC, |
| 185 | const TargetRegisterInfo *TRI) const override; |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 186 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 187 | void loadRegFromStackSlot(MachineBasicBlock &MBB, |
| 188 | MachineBasicBlock::iterator MBBI, |
| 189 | unsigned DestReg, int FrameIndex, |
| 190 | const TargetRegisterClass *RC, |
| 191 | const TargetRegisterInfo *TRI) const override; |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 192 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 193 | bool expandPostRAPseudo(MachineBasicBlock::iterator MI) const override; |
| Jakob Stoklund Olesen | da7c0f8 | 2011-10-11 00:59:06 +0000 | [diff] [blame] | 194 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 195 | void reMaterialize(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, |
| 196 | unsigned DestReg, unsigned SubIdx, |
| 197 | const MachineInstr *Orig, |
| 198 | const TargetRegisterInfo &TRI) const override; |
| Evan Cheng | fe86442 | 2009-11-08 00:15:23 +0000 | [diff] [blame] | 199 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 200 | MachineInstr *duplicate(MachineInstr *Orig, |
| 201 | MachineFunction &MF) const override; |
| Jakob Stoklund Olesen | 29a64c9 | 2010-01-06 23:47:07 +0000 | [diff] [blame] | 202 | |
| Tim Northover | 798697d | 2013-04-21 11:57:07 +0000 | [diff] [blame] | 203 | const MachineInstrBuilder &AddDReg(MachineInstrBuilder &MIB, unsigned Reg, |
| 204 | unsigned SubIdx, unsigned State, |
| 205 | const TargetRegisterInfo *TRI) const; |
| 206 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 207 | bool produceSameValue(const MachineInstr *MI0, const MachineInstr *MI1, |
| 208 | const MachineRegisterInfo *MRI) const override; |
| Evan Cheng | 2d51c7c | 2010-06-18 23:09:54 +0000 | [diff] [blame] | 209 | |
| Bill Wendling | f470747 | 2010-06-23 23:00:16 +0000 | [diff] [blame] | 210 | /// areLoadsFromSameBasePtr - This is used by the pre-regalloc scheduler to |
| 211 | /// determine if two loads are loading from the same base address. It should |
| 212 | /// only return true if the base pointers are the same and the only |
| 213 | /// differences between the two addresses is the offset. It also returns the |
| 214 | /// offsets by reference. |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 215 | bool areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2, int64_t &Offset1, |
| 216 | int64_t &Offset2) const override; |
| Bill Wendling | f470747 | 2010-06-23 23:00:16 +0000 | [diff] [blame] | 217 | |
| 218 | /// shouldScheduleLoadsNear - This is a used by the pre-regalloc scheduler to |
| Jim Grosbach | 7ef7ddd | 2011-06-13 22:54:22 +0000 | [diff] [blame] | 219 | /// determine (in conjunction with areLoadsFromSameBasePtr) if two loads |
| 220 | /// should be scheduled togther. On some targets if two loads are loading from |
| Bill Wendling | f470747 | 2010-06-23 23:00:16 +0000 | [diff] [blame] | 221 | /// addresses in the same cache line, it's better if they are scheduled |
| 222 | /// together. This function takes two integers that represent the load offsets |
| 223 | /// from the common base address. It returns true if it decides it's desirable |
| 224 | /// to schedule the two loads together. "NumLoads" is the number of loads that |
| 225 | /// have already been scheduled after Load1. |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 226 | bool shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2, |
| 227 | int64_t Offset1, int64_t Offset2, |
| 228 | unsigned NumLoads) const override; |
| Bill Wendling | f470747 | 2010-06-23 23:00:16 +0000 | [diff] [blame] | 229 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 230 | bool isSchedulingBoundary(const MachineInstr *MI, |
| 231 | const MachineBasicBlock *MBB, |
| 232 | const MachineFunction &MF) const override; |
| Evan Cheng | 02b184d | 2010-06-25 22:42:03 +0000 | [diff] [blame] | 233 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 234 | bool isProfitableToIfCvt(MachineBasicBlock &MBB, |
| 235 | unsigned NumCycles, unsigned ExtraPredCycles, |
| Cong Hou | c536bd9 | 2015-09-10 23:10:42 +0000 | [diff] [blame] | 236 | BranchProbability Probability) const override; |
| Evan Cheng | 02b184d | 2010-06-25 22:42:03 +0000 | [diff] [blame] | 237 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 238 | bool isProfitableToIfCvt(MachineBasicBlock &TMBB, unsigned NumT, |
| 239 | unsigned ExtraT, MachineBasicBlock &FMBB, |
| 240 | unsigned NumF, unsigned ExtraF, |
| Cong Hou | c536bd9 | 2015-09-10 23:10:42 +0000 | [diff] [blame] | 241 | BranchProbability Probability) const override; |
| Evan Cheng | 02b184d | 2010-06-25 22:42:03 +0000 | [diff] [blame] | 242 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 243 | bool isProfitableToDupForIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, |
| Cong Hou | c536bd9 | 2015-09-10 23:10:42 +0000 | [diff] [blame] | 244 | BranchProbability Probability) const override { |
| Cameron Zwarich | 8001850 | 2011-04-13 06:39:16 +0000 | [diff] [blame] | 245 | return NumCycles == 1; |
| Evan Cheng | 02b184d | 2010-06-25 22:42:03 +0000 | [diff] [blame] | 246 | } |
| Bill Wendling | 7de9d52 | 2010-08-06 01:32:48 +0000 | [diff] [blame] | 247 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 248 | bool isProfitableToUnpredicate(MachineBasicBlock &TMBB, |
| 249 | MachineBasicBlock &FMBB) const override; |
| Bob Wilson | e8a549c | 2012-09-29 21:43:49 +0000 | [diff] [blame] | 250 | |
| Manman Ren | 6fa76dc | 2012-06-29 21:33:59 +0000 | [diff] [blame] | 251 | /// analyzeCompare - For a comparison instruction, return the source registers |
| 252 | /// in SrcReg and SrcReg2 if having two register operands, and the value it |
| 253 | /// compares against in CmpValue. Return true if the comparison instruction |
| 254 | /// can be analyzed. |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 255 | bool analyzeCompare(const MachineInstr *MI, unsigned &SrcReg, |
| 256 | unsigned &SrcReg2, int &CmpMask, |
| 257 | int &CmpValue) const override; |
| Bill Wendling | 7de9d52 | 2010-08-06 01:32:48 +0000 | [diff] [blame] | 258 | |
| Manman Ren | 6fa76dc | 2012-06-29 21:33:59 +0000 | [diff] [blame] | 259 | /// optimizeCompareInstr - Convert the instruction to set the zero flag so |
| 260 | /// that we can remove a "comparison with zero"; Remove a redundant CMP |
| 261 | /// instruction if the flags can be updated in the same way by an earlier |
| 262 | /// instruction such as SUB. |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 263 | bool optimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, |
| 264 | unsigned SrcReg2, int CmpMask, int CmpValue, |
| 265 | const MachineRegisterInfo *MRI) const override; |
| Evan Cheng | 367a5df | 2010-09-09 18:18:55 +0000 | [diff] [blame] | 266 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 267 | bool analyzeSelect(const MachineInstr *MI, |
| 268 | SmallVectorImpl<MachineOperand> &Cond, |
| 269 | unsigned &TrueOp, unsigned &FalseOp, |
| 270 | bool &Optimizable) const override; |
| Jakob Stoklund Olesen | c19bf02 | 2012-08-16 23:14:20 +0000 | [diff] [blame] | 271 | |
| Mehdi Amini | 22e5974 | 2015-01-13 07:07:13 +0000 | [diff] [blame] | 272 | MachineInstr *optimizeSelect(MachineInstr *MI, |
| 273 | SmallPtrSetImpl<MachineInstr *> &SeenMIs, |
| 274 | bool) const override; |
| Jakob Stoklund Olesen | c19bf02 | 2012-08-16 23:14:20 +0000 | [diff] [blame] | 275 | |
| Evan Cheng | 7f8ab6e | 2010-11-17 20:13:28 +0000 | [diff] [blame] | 276 | /// FoldImmediate - 'Reg' is known to be defined by a move immediate |
| 277 | /// instruction, try to fold the immediate into the use instruction. |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 278 | bool FoldImmediate(MachineInstr *UseMI, MachineInstr *DefMI, |
| 279 | unsigned Reg, MachineRegisterInfo *MRI) const override; |
| Evan Cheng | 7f8ab6e | 2010-11-17 20:13:28 +0000 | [diff] [blame] | 280 | |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 281 | unsigned getNumMicroOps(const InstrItineraryData *ItinData, |
| 282 | const MachineInstr *MI) const override; |
| Evan Cheng | 49d4c0b | 2010-10-06 06:27:31 +0000 | [diff] [blame] | 283 | |
| Evan Cheng | 49d4c0b | 2010-10-06 06:27:31 +0000 | [diff] [blame] | 284 | int getOperandLatency(const InstrItineraryData *ItinData, |
| 285 | const MachineInstr *DefMI, unsigned DefIdx, |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 286 | const MachineInstr *UseMI, |
| 287 | unsigned UseIdx) const override; |
| Evan Cheng | 49d4c0b | 2010-10-06 06:27:31 +0000 | [diff] [blame] | 288 | int getOperandLatency(const InstrItineraryData *ItinData, |
| 289 | SDNode *DefNode, unsigned DefIdx, |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 290 | SDNode *UseNode, unsigned UseIdx) const override; |
| Jakob Stoklund Olesen | f9b71a2 | 2011-09-27 22:57:21 +0000 | [diff] [blame] | 291 | |
| 292 | /// VFP/NEON execution domains. |
| 293 | std::pair<uint16_t, uint16_t> |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 294 | getExecutionDomain(const MachineInstr *MI) const override; |
| 295 | void setExecutionDomain(MachineInstr *MI, unsigned Domain) const override; |
| Jakob Stoklund Olesen | f9b71a2 | 2011-09-27 22:57:21 +0000 | [diff] [blame] | 296 | |
| Bob Wilson | e8a549c | 2012-09-29 21:43:49 +0000 | [diff] [blame] | 297 | unsigned getPartialRegUpdateClearance(const MachineInstr*, unsigned, |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 298 | const TargetRegisterInfo*) const override; |
| Bob Wilson | e8a549c | 2012-09-29 21:43:49 +0000 | [diff] [blame] | 299 | void breakPartialRegDependency(MachineBasicBlock::iterator, unsigned, |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 300 | const TargetRegisterInfo *TRI) const override; |
| Tom Roeder | 44cb65f | 2014-06-05 19:29:43 +0000 | [diff] [blame] | 301 | |
| Andrew Trick | 2ac6f7d | 2012-09-14 18:48:46 +0000 | [diff] [blame] | 302 | /// Get the number of addresses by LDM or VLDM or zero for unknown. |
| 303 | unsigned getNumLDMAddresses(const MachineInstr *MI) const; |
| 304 | |
| Evan Cheng | 49d4c0b | 2010-10-06 06:27:31 +0000 | [diff] [blame] | 305 | private: |
| Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 306 | unsigned getInstBundleLength(const MachineInstr *MI) const; |
| 307 | |
| Evan Cheng | 412e37b | 2010-10-07 23:12:15 +0000 | [diff] [blame] | 308 | int getVLDMDefCycle(const InstrItineraryData *ItinData, |
| Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 309 | const MCInstrDesc &DefMCID, |
| Evan Cheng | 412e37b | 2010-10-07 23:12:15 +0000 | [diff] [blame] | 310 | unsigned DefClass, |
| 311 | unsigned DefIdx, unsigned DefAlign) const; |
| 312 | int getLDMDefCycle(const InstrItineraryData *ItinData, |
| Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 313 | const MCInstrDesc &DefMCID, |
| Evan Cheng | 412e37b | 2010-10-07 23:12:15 +0000 | [diff] [blame] | 314 | unsigned DefClass, |
| 315 | unsigned DefIdx, unsigned DefAlign) const; |
| 316 | int getVSTMUseCycle(const InstrItineraryData *ItinData, |
| Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 317 | const MCInstrDesc &UseMCID, |
| Evan Cheng | 412e37b | 2010-10-07 23:12:15 +0000 | [diff] [blame] | 318 | unsigned UseClass, |
| 319 | unsigned UseIdx, unsigned UseAlign) const; |
| 320 | int getSTMUseCycle(const InstrItineraryData *ItinData, |
| Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 321 | const MCInstrDesc &UseMCID, |
| Evan Cheng | 412e37b | 2010-10-07 23:12:15 +0000 | [diff] [blame] | 322 | unsigned UseClass, |
| 323 | unsigned UseIdx, unsigned UseAlign) const; |
| Evan Cheng | 49d4c0b | 2010-10-06 06:27:31 +0000 | [diff] [blame] | 324 | int getOperandLatency(const InstrItineraryData *ItinData, |
| Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 325 | const MCInstrDesc &DefMCID, |
| Evan Cheng | 49d4c0b | 2010-10-06 06:27:31 +0000 | [diff] [blame] | 326 | unsigned DefIdx, unsigned DefAlign, |
| Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 327 | const MCInstrDesc &UseMCID, |
| Evan Cheng | 49d4c0b | 2010-10-06 06:27:31 +0000 | [diff] [blame] | 328 | unsigned UseIdx, unsigned UseAlign) const; |
| Evan Cheng | 63c7608 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 329 | |
| Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 330 | unsigned getPredicationCost(const MachineInstr &MI) const override; |
| Arnold Schwaighofer | d2f96b9 | 2013-09-30 15:28:56 +0000 | [diff] [blame] | 331 | |
| Andrew Trick | 4544606 | 2012-06-05 21:11:27 +0000 | [diff] [blame] | 332 | unsigned getInstrLatency(const InstrItineraryData *ItinData, |
| 333 | const MachineInstr *MI, |
| Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 334 | unsigned *PredCost = nullptr) const override; |
| Evan Cheng | debf9c5 | 2010-11-03 00:45:17 +0000 | [diff] [blame] | 335 | |
| 336 | int getInstrLatency(const InstrItineraryData *ItinData, |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 337 | SDNode *Node) const override; |
| Evan Cheng | debf9c5 | 2010-11-03 00:45:17 +0000 | [diff] [blame] | 338 | |
| Matthias Braun | 88e2131 | 2015-06-13 03:42:11 +0000 | [diff] [blame] | 339 | bool hasHighOperandLatency(const TargetSchedModel &SchedModel, |
| Evan Cheng | 63c7608 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 340 | const MachineRegisterInfo *MRI, |
| 341 | const MachineInstr *DefMI, unsigned DefIdx, |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 342 | const MachineInstr *UseMI, |
| 343 | unsigned UseIdx) const override; |
| Matthias Braun | 88e2131 | 2015-06-13 03:42:11 +0000 | [diff] [blame] | 344 | bool hasLowDefLatency(const TargetSchedModel &SchedModel, |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 345 | const MachineInstr *DefMI, |
| 346 | unsigned DefIdx) const override; |
| Evan Cheng | 62c7b5b | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 347 | |
| Andrew Trick | 924123a | 2011-09-21 02:20:46 +0000 | [diff] [blame] | 348 | /// verifyInstruction - Perform target specific instruction verification. |
| Craig Topper | 6bc27bf | 2014-03-10 02:09:33 +0000 | [diff] [blame] | 349 | bool verifyInstruction(const MachineInstr *MI, |
| 350 | StringRef &ErrInfo) const override; |
| Andrew Trick | 924123a | 2011-09-21 02:20:46 +0000 | [diff] [blame] | 351 | |
| Akira Hatanaka | e5b6e0d | 2014-07-25 19:31:34 +0000 | [diff] [blame] | 352 | virtual void expandLoadStackGuard(MachineBasicBlock::iterator MI, |
| 353 | Reloc::Model RM) const = 0; |
| 354 | |
| Scott Douglass | 953f908 | 2015-10-05 14:49:54 +0000 | [diff] [blame] | 355 | void expandMEMCPY(MachineBasicBlock::iterator) const; |
| 356 | |
| Evan Cheng | 62c7b5b | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 357 | private: |
| 358 | /// Modeling special VFP / NEON fp MLA / MLS hazards. |
| 359 | |
| 360 | /// MLxEntryMap - Map fp MLA / MLS to the corresponding entry in the internal |
| 361 | /// MLx table. |
| 362 | DenseMap<unsigned, unsigned> MLxEntryMap; |
| 363 | |
| 364 | /// MLxHazardOpcodes - Set of add / sub and multiply opcodes that would cause |
| 365 | /// stalls when scheduled together with fp MLA / MLS opcodes. |
| 366 | SmallSet<unsigned, 16> MLxHazardOpcodes; |
| 367 | |
| 368 | public: |
| 369 | /// isFpMLxInstruction - Return true if the specified opcode is a fp MLA / MLS |
| 370 | /// instruction. |
| 371 | bool isFpMLxInstruction(unsigned Opcode) const { |
| 372 | return MLxEntryMap.count(Opcode); |
| 373 | } |
| 374 | |
| 375 | /// isFpMLxInstruction - This version also returns the multiply opcode and the |
| 376 | /// addition / subtraction opcode to expand to. Return true for 'HasLane' for |
| 377 | /// the MLX instructions with an extra lane operand. |
| 378 | bool isFpMLxInstruction(unsigned Opcode, unsigned &MulOpc, |
| 379 | unsigned &AddSubOpc, bool &NegAcc, |
| 380 | bool &HasLane) const; |
| 381 | |
| 382 | /// canCauseFpMLxStall - Return true if an instruction of the specified opcode |
| 383 | /// will cause stalls when scheduled after (within 4-cycle window) a fp |
| 384 | /// MLA / MLS instruction. |
| 385 | bool canCauseFpMLxStall(unsigned Opcode) const { |
| 386 | return MLxHazardOpcodes.count(Opcode); |
| 387 | } |
| Arnold Schwaighofer | 5dde1f3 | 2013-04-05 04:42:00 +0000 | [diff] [blame] | 388 | |
| 389 | /// Returns true if the instruction has a shift by immediate that can be |
| 390 | /// executed in one cycle less. |
| 391 | bool isSwiftFastImmShift(const MachineInstr *MI) const; |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 392 | }; |
| Evan Cheng | 780748d | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 393 | |
| 394 | static inline |
| 395 | const MachineInstrBuilder &AddDefaultPred(const MachineInstrBuilder &MIB) { |
| 396 | return MIB.addImm((int64_t)ARMCC::AL).addReg(0); |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 397 | } |
| 398 | |
| Evan Cheng | 780748d | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 399 | static inline |
| 400 | const MachineInstrBuilder &AddDefaultCC(const MachineInstrBuilder &MIB) { |
| 401 | return MIB.addReg(0); |
| 402 | } |
| 403 | |
| 404 | static inline |
| Evan Cheng | 51cbd2d | 2009-08-10 02:37:24 +0000 | [diff] [blame] | 405 | const MachineInstrBuilder &AddDefaultT1CC(const MachineInstrBuilder &MIB, |
| 406 | bool isDead = false) { |
| 407 | return MIB.addReg(ARM::CPSR, getDefRegState(true) | getDeadRegState(isDead)); |
| Evan Cheng | 780748d | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 408 | } |
| 409 | |
| 410 | static inline |
| Evan Cheng | 6ddd7bc | 2009-08-15 07:59:10 +0000 | [diff] [blame] | 411 | const MachineInstrBuilder &AddNoT1CC(const MachineInstrBuilder &MIB) { |
| 412 | return MIB.addReg(0); |
| 413 | } |
| 414 | |
| 415 | static inline |
| Evan Cheng | 780748d | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 416 | bool isUncondBranchOpcode(int Opc) { |
| 417 | return Opc == ARM::B || Opc == ARM::tB || Opc == ARM::t2B; |
| 418 | } |
| 419 | |
| 420 | static inline |
| 421 | bool isCondBranchOpcode(int Opc) { |
| 422 | return Opc == ARM::Bcc || Opc == ARM::tBcc || Opc == ARM::t2Bcc; |
| 423 | } |
| 424 | |
| 425 | static inline |
| 426 | bool isJumpTableBranchOpcode(int Opc) { |
| 427 | return Opc == ARM::BR_JTr || Opc == ARM::BR_JTm || Opc == ARM::BR_JTadd || |
| 428 | Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT; |
| 429 | } |
| 430 | |
| Bob Wilson | 73789b8 | 2009-10-28 18:26:41 +0000 | [diff] [blame] | 431 | static inline |
| 432 | bool isIndirectBranchOpcode(int Opc) { |
| Bill Wendling | 8294a30 | 2010-11-30 00:48:15 +0000 | [diff] [blame] | 433 | return Opc == ARM::BX || Opc == ARM::MOVPCRX || Opc == ARM::tBRIND; |
| Bob Wilson | 73789b8 | 2009-10-28 18:26:41 +0000 | [diff] [blame] | 434 | } |
| 435 | |
| Tim Northover | 93bcc66 | 2013-11-08 17:18:07 +0000 | [diff] [blame] | 436 | static inline bool isPopOpcode(int Opc) { |
| 437 | return Opc == ARM::tPOP_RET || Opc == ARM::LDMIA_RET || |
| 438 | Opc == ARM::t2LDMIA_RET || Opc == ARM::tPOP || Opc == ARM::LDMIA_UPD || |
| 439 | Opc == ARM::t2LDMIA_UPD || Opc == ARM::VLDMDIA_UPD; |
| 440 | } |
| 441 | |
| 442 | static inline bool isPushOpcode(int Opc) { |
| 443 | return Opc == ARM::tPUSH || Opc == ARM::t2STMDB_UPD || |
| 444 | Opc == ARM::STMDB_UPD || Opc == ARM::VSTMDDB_UPD; |
| 445 | } |
| 446 | |
| Evan Cheng | 2aa91cc | 2009-08-08 03:20:32 +0000 | [diff] [blame] | 447 | /// getInstrPredicate - If instruction is predicated, returns its predicate |
| 448 | /// condition, otherwise returns AL. It also returns the condition code |
| 449 | /// register by reference. |
| Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 450 | ARMCC::CondCodes getInstrPredicate(const MachineInstr &MI, unsigned &PredReg); |
| Evan Cheng | 2aa91cc | 2009-08-08 03:20:32 +0000 | [diff] [blame] | 451 | |
| Matthias Braun | fa3872e | 2015-05-18 20:27:55 +0000 | [diff] [blame] | 452 | unsigned getMatchingCondBranchOpcode(unsigned Opc); |
| Evan Cheng | 780748d | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 453 | |
| Jakob Stoklund Olesen | 6cb9612 | 2012-08-15 22:16:39 +0000 | [diff] [blame] | 454 | /// Determine if MI can be folded into an ARM MOVCC instruction, and return the |
| 455 | /// opcode of the SSA instruction representing the conditional MI. |
| 456 | unsigned canFoldARMInstrIntoMOVCC(unsigned Reg, |
| 457 | MachineInstr *&MI, |
| 458 | const MachineRegisterInfo &MRI); |
| Andrew Trick | 924123a | 2011-09-21 02:20:46 +0000 | [diff] [blame] | 459 | |
| 460 | /// Map pseudo instructions that imply an 'S' bit onto real opcodes. Whether |
| 461 | /// the instruction is encoded with an 'S' bit is determined by the optional |
| 462 | /// CPSR def operand. |
| 463 | unsigned convertAddSubFlagsOpcode(unsigned OldOpc); |
| 464 | |
| Evan Cheng | 780748d | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 465 | /// emitARMRegPlusImmediate / emitT2RegPlusImmediate - Emits a series of |
| 466 | /// instructions to materializea destreg = basereg + immediate in ARM / Thumb2 |
| 467 | /// code. |
| 468 | void emitARMRegPlusImmediate(MachineBasicBlock &MBB, |
| 469 | MachineBasicBlock::iterator &MBBI, DebugLoc dl, |
| 470 | unsigned DestReg, unsigned BaseReg, int NumBytes, |
| 471 | ARMCC::CondCodes Pred, unsigned PredReg, |
| Anton Korobeynikov | e7410dd | 2011-03-05 18:43:32 +0000 | [diff] [blame] | 472 | const ARMBaseInstrInfo &TII, unsigned MIFlags = 0); |
| Evan Cheng | 780748d | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 473 | |
| 474 | void emitT2RegPlusImmediate(MachineBasicBlock &MBB, |
| 475 | MachineBasicBlock::iterator &MBBI, DebugLoc dl, |
| 476 | unsigned DestReg, unsigned BaseReg, int NumBytes, |
| 477 | ARMCC::CondCodes Pred, unsigned PredReg, |
| Anton Korobeynikov | e7410dd | 2011-03-05 18:43:32 +0000 | [diff] [blame] | 478 | const ARMBaseInstrInfo &TII, unsigned MIFlags = 0); |
| Jim Grosbach | bbdc5d2 | 2010-10-19 23:27:08 +0000 | [diff] [blame] | 479 | void emitThumbRegPlusImmediate(MachineBasicBlock &MBB, |
| Anton Korobeynikov | e7410dd | 2011-03-05 18:43:32 +0000 | [diff] [blame] | 480 | MachineBasicBlock::iterator &MBBI, DebugLoc dl, |
| Jim Grosbach | bbdc5d2 | 2010-10-19 23:27:08 +0000 | [diff] [blame] | 481 | unsigned DestReg, unsigned BaseReg, |
| 482 | int NumBytes, const TargetInstrInfo &TII, |
| 483 | const ARMBaseRegisterInfo& MRI, |
| Anton Korobeynikov | e7410dd | 2011-03-05 18:43:32 +0000 | [diff] [blame] | 484 | unsigned MIFlags = 0); |
| Evan Cheng | 780748d | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 485 | |
| Tim Northover | 93bcc66 | 2013-11-08 17:18:07 +0000 | [diff] [blame] | 486 | /// Tries to add registers to the reglist of a given base-updating |
| 487 | /// push/pop instruction to adjust the stack by an additional |
| 488 | /// NumBytes. This can save a few bytes per function in code-size, but |
| 489 | /// obviously generates more memory traffic. As such, it only takes |
| 490 | /// effect in functions being optimised for size. |
| Tim Northover | dee8604 | 2013-12-02 14:46:26 +0000 | [diff] [blame] | 491 | bool tryFoldSPUpdateIntoPushPop(const ARMSubtarget &Subtarget, |
| 492 | MachineFunction &MF, MachineInstr *MI, |
| Tim Northover | 93bcc66 | 2013-11-08 17:18:07 +0000 | [diff] [blame] | 493 | unsigned NumBytes); |
| Evan Cheng | 780748d | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 494 | |
| Jim Grosbach | f24f9d9 | 2009-08-11 15:33:49 +0000 | [diff] [blame] | 495 | /// rewriteARMFrameIndex / rewriteT2FrameIndex - |
| Evan Cheng | 7a37b1a | 2009-08-27 01:23:50 +0000 | [diff] [blame] | 496 | /// Rewrite MI to access 'Offset' bytes from the FP. Return false if the |
| 497 | /// offset could not be handled directly in MI, and return the left-over |
| 498 | /// portion by reference. |
| 499 | bool rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx, |
| 500 | unsigned FrameReg, int &Offset, |
| 501 | const ARMBaseInstrInfo &TII); |
| Evan Cheng | 780748d | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 502 | |
| Evan Cheng | 7a37b1a | 2009-08-27 01:23:50 +0000 | [diff] [blame] | 503 | bool rewriteT2FrameIndex(MachineInstr &MI, unsigned FrameRegIdx, |
| 504 | unsigned FrameReg, int &Offset, |
| 505 | const ARMBaseInstrInfo &TII); |
| Evan Cheng | 780748d | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 506 | |
| Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 507 | } // End llvm namespace |
| Evan Cheng | 780748d | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 508 | |
| David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 509 | #endif |