Jim Grosbach | 31c24bf | 2009-11-07 22:00:39 +0000 | [diff] [blame] | 1 | //===- ARMBaseInstrInfo.h - ARM Base Instruction Information ----*- C++ -*-===// |
David Goodwin | 334c264 | 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 | |
| 14 | #ifndef ARMBASEINSTRUCTIONINFO_H |
| 15 | #define ARMBASEINSTRUCTIONINFO_H |
| 16 | |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 17 | #include "ARM.h" |
Anton Korobeynikov | b8e9ac8 | 2009-07-16 23:26:06 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 19 | #include "llvm/Target/TargetInstrInfo.h" |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 20 | |
| 21 | namespace llvm { |
Chris Lattner | 4dbbe34 | 2010-07-20 21:17:29 +0000 | [diff] [blame] | 22 | class ARMSubtarget; |
| 23 | class ARMBaseRegisterInfo; |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 24 | |
| 25 | /// ARMII - This namespace holds all of the target specific flags that |
| 26 | /// instruction info tracks. |
| 27 | /// |
| 28 | namespace ARMII { |
| 29 | enum { |
| 30 | //===------------------------------------------------------------------===// |
| 31 | // Instruction Flags. |
| 32 | |
| 33 | //===------------------------------------------------------------------===// |
| 34 | // This four-bit field describes the addressing mode used. |
| 35 | |
| 36 | AddrModeMask = 0xf, |
| 37 | AddrModeNone = 0, |
| 38 | AddrMode1 = 1, |
| 39 | AddrMode2 = 2, |
| 40 | AddrMode3 = 3, |
| 41 | AddrMode4 = 4, |
| 42 | AddrMode5 = 5, |
| 43 | AddrMode6 = 6, |
| 44 | AddrModeT1_1 = 7, |
| 45 | AddrModeT1_2 = 8, |
| 46 | AddrModeT1_4 = 9, |
| 47 | AddrModeT1_s = 10, // i8 * 4 for pc and sp relative data |
| 48 | AddrModeT2_i12 = 11, |
| 49 | AddrModeT2_i8 = 12, |
| 50 | AddrModeT2_so = 13, |
| 51 | AddrModeT2_pc = 14, // +/- i12 for pc relative data |
| 52 | AddrModeT2_i8s4 = 15, // i8 * 4 |
| 53 | |
| 54 | // Size* - Flags to keep track of the size of an instruction. |
| 55 | SizeShift = 4, |
| 56 | SizeMask = 7 << SizeShift, |
| 57 | SizeSpecial = 1, // 0 byte pseudo or special case. |
| 58 | Size8Bytes = 2, |
| 59 | Size4Bytes = 3, |
| 60 | Size2Bytes = 4, |
| 61 | |
Bob Wilson | bffb5b3 | 2010-03-13 07:34:35 +0000 | [diff] [blame] | 62 | // IndexMode - Unindex, pre-indexed, or post-indexed are valid for load |
| 63 | // and store ops only. Generic "updating" flag is used for ld/st multiple. |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 64 | IndexModeShift = 7, |
| 65 | IndexModeMask = 3 << IndexModeShift, |
| 66 | IndexModePre = 1, |
| 67 | IndexModePost = 2, |
Bob Wilson | bffb5b3 | 2010-03-13 07:34:35 +0000 | [diff] [blame] | 68 | IndexModeUpd = 3, |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 69 | |
| 70 | //===------------------------------------------------------------------===// |
| 71 | // Instruction encoding formats. |
| 72 | // |
| 73 | FormShift = 9, |
| 74 | FormMask = 0x3f << FormShift, |
| 75 | |
| 76 | // Pseudo instructions |
| 77 | Pseudo = 0 << FormShift, |
| 78 | |
| 79 | // Multiply instructions |
| 80 | MulFrm = 1 << FormShift, |
| 81 | |
| 82 | // Branch instructions |
| 83 | BrFrm = 2 << FormShift, |
| 84 | BrMiscFrm = 3 << FormShift, |
| 85 | |
| 86 | // Data Processing instructions |
| 87 | DPFrm = 4 << FormShift, |
| 88 | DPSoRegFrm = 5 << FormShift, |
| 89 | |
| 90 | // Load and Store |
| 91 | LdFrm = 6 << FormShift, |
| 92 | StFrm = 7 << FormShift, |
| 93 | LdMiscFrm = 8 << FormShift, |
| 94 | StMiscFrm = 9 << FormShift, |
| 95 | LdStMulFrm = 10 << FormShift, |
| 96 | |
Johnny Chen | 81f04d5 | 2010-03-19 17:39:00 +0000 | [diff] [blame] | 97 | LdStExFrm = 11 << FormShift, |
Jim Grosbach | 5278eb8 | 2009-12-11 01:42:04 +0000 | [diff] [blame] | 98 | |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 99 | // Miscellaneous arithmetic instructions |
Johnny Chen | 81f04d5 | 2010-03-19 17:39:00 +0000 | [diff] [blame] | 100 | ArithMiscFrm = 12 << FormShift, |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 101 | |
| 102 | // Extend instructions |
Johnny Chen | 81f04d5 | 2010-03-19 17:39:00 +0000 | [diff] [blame] | 103 | ExtFrm = 13 << FormShift, |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 104 | |
| 105 | // VFP formats |
Johnny Chen | 81f04d5 | 2010-03-19 17:39:00 +0000 | [diff] [blame] | 106 | VFPUnaryFrm = 14 << FormShift, |
| 107 | VFPBinaryFrm = 15 << FormShift, |
| 108 | VFPConv1Frm = 16 << FormShift, |
| 109 | VFPConv2Frm = 17 << FormShift, |
| 110 | VFPConv3Frm = 18 << FormShift, |
| 111 | VFPConv4Frm = 19 << FormShift, |
| 112 | VFPConv5Frm = 20 << FormShift, |
| 113 | VFPLdStFrm = 21 << FormShift, |
| 114 | VFPLdStMulFrm = 22 << FormShift, |
| 115 | VFPMiscFrm = 23 << FormShift, |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 116 | |
| 117 | // Thumb format |
Johnny Chen | 81f04d5 | 2010-03-19 17:39:00 +0000 | [diff] [blame] | 118 | ThumbFrm = 24 << FormShift, |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 119 | |
Bob Wilson | 2653263 | 2010-06-25 23:45:37 +0000 | [diff] [blame] | 120 | // Miscelleaneous format |
| 121 | MiscFrm = 25 << FormShift, |
| 122 | |
Bob Wilson | 1a913ed | 2010-06-11 21:34:50 +0000 | [diff] [blame] | 123 | // NEON formats |
Bob Wilson | 184723d | 2010-06-25 23:56:05 +0000 | [diff] [blame] | 124 | NGetLnFrm = 26 << FormShift, |
| 125 | NSetLnFrm = 27 << FormShift, |
| 126 | NDupFrm = 28 << FormShift, |
Bob Wilson | 80d9bc0 | 2010-06-26 00:05:09 +0000 | [diff] [blame] | 127 | NLdStFrm = 29 << FormShift, |
| 128 | N1RegModImmFrm= 30 << FormShift, |
| 129 | N2RegFrm = 31 << FormShift, |
| 130 | NVCVTFrm = 32 << FormShift, |
| 131 | NVDupLnFrm = 33 << FormShift, |
| 132 | N2RegVShLFrm = 34 << FormShift, |
| 133 | N2RegVShRFrm = 35 << FormShift, |
| 134 | N3RegFrm = 36 << FormShift, |
| 135 | N3RegVShFrm = 37 << FormShift, |
| 136 | NVExtFrm = 38 << FormShift, |
| 137 | NVMulSLFrm = 39 << FormShift, |
| 138 | NVTBLFrm = 40 << FormShift, |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 139 | |
| 140 | //===------------------------------------------------------------------===// |
| 141 | // Misc flags. |
| 142 | |
| 143 | // UnaryDP - Indicates this is a unary data processing instruction, i.e. |
| 144 | // it doesn't have a Rn operand. |
| 145 | UnaryDP = 1 << 15, |
| 146 | |
| 147 | // Xform16Bit - Indicates this Thumb2 instruction may be transformed into |
| 148 | // a 16-bit Thumb instruction if certain conditions are met. |
| 149 | Xform16Bit = 1 << 16, |
| 150 | |
| 151 | //===------------------------------------------------------------------===// |
Anton Korobeynikov | f95215f | 2009-11-02 00:10:38 +0000 | [diff] [blame] | 152 | // Code domain. |
| 153 | DomainShift = 17, |
| 154 | DomainMask = 3 << DomainShift, |
| 155 | DomainGeneral = 0 << DomainShift, |
| 156 | DomainVFP = 1 << DomainShift, |
| 157 | DomainNEON = 2 << DomainShift, |
| 158 | |
| 159 | //===------------------------------------------------------------------===// |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 160 | // Field shifts - such shifts are used to set field while generating |
| 161 | // machine instructions. |
| 162 | M_BitShift = 5, |
| 163 | ShiftImmShift = 5, |
| 164 | ShiftShift = 7, |
| 165 | N_BitShift = 7, |
| 166 | ImmHiShift = 8, |
| 167 | SoRotImmShift = 8, |
| 168 | RegRsShift = 8, |
| 169 | ExtRotImmShift = 10, |
| 170 | RegRdLoShift = 12, |
| 171 | RegRdShift = 12, |
| 172 | RegRdHiShift = 16, |
| 173 | RegRnShift = 16, |
| 174 | S_BitShift = 20, |
| 175 | W_BitShift = 21, |
| 176 | AM3_I_BitShift = 22, |
| 177 | D_BitShift = 22, |
| 178 | U_BitShift = 23, |
| 179 | P_BitShift = 24, |
| 180 | I_BitShift = 25, |
| 181 | CondShift = 28 |
| 182 | }; |
Anton Korobeynikov | 5cdc3a9 | 2009-11-24 00:44:37 +0000 | [diff] [blame] | 183 | |
| 184 | /// Target Operand Flag enum. |
| 185 | enum TOF { |
| 186 | //===------------------------------------------------------------------===// |
| 187 | // ARM Specific MachineOperand flags. |
| 188 | |
| 189 | MO_NO_FLAG, |
| 190 | |
| 191 | /// MO_LO16 - On a symbol operand, this represents a relocation containing |
| 192 | /// lower 16 bit of the address. Used only via movw instruction. |
| 193 | MO_LO16, |
| 194 | |
| 195 | /// MO_HI16 - On a symbol operand, this represents a relocation containing |
| 196 | /// higher 16 bit of the address. Used only via movt instruction. |
| 197 | MO_HI16 |
| 198 | }; |
Evan Cheng | b46aaa3 | 2009-07-19 19:16:46 +0000 | [diff] [blame] | 199 | } |
| 200 | |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 201 | class ARMBaseInstrInfo : public TargetInstrInfoImpl { |
Chris Lattner | 4dbbe34 | 2010-07-20 21:17:29 +0000 | [diff] [blame] | 202 | const ARMSubtarget &Subtarget; |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 203 | protected: |
| 204 | // Can be only subclassed. |
Anton Korobeynikov | f95215f | 2009-11-02 00:10:38 +0000 | [diff] [blame] | 205 | explicit ARMBaseInstrInfo(const ARMSubtarget &STI); |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 206 | public: |
| 207 | // Return the non-pre/post incrementing version of 'Opc'. Return 0 |
| 208 | // if there is not such an opcode. |
| 209 | virtual unsigned getUnindexedOpcode(unsigned Opc) const =0; |
| 210 | |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 211 | virtual MachineInstr *convertToThreeAddress(MachineFunction::iterator &MFI, |
| 212 | MachineBasicBlock::iterator &MBBI, |
| 213 | LiveVariables *LV) const; |
| 214 | |
| 215 | virtual const ARMBaseRegisterInfo &getRegisterInfo() const =0; |
Anton Korobeynikov | f95215f | 2009-11-02 00:10:38 +0000 | [diff] [blame] | 216 | const ARMSubtarget &getSubtarget() const { return Subtarget; } |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 217 | |
Evan Cheng | 2457f2c | 2010-05-22 01:47:14 +0000 | [diff] [blame] | 218 | bool spillCalleeSavedRegisters(MachineBasicBlock &MBB, |
| 219 | MachineBasicBlock::iterator MI, |
| 220 | const std::vector<CalleeSavedInfo> &CSI, |
| 221 | const TargetRegisterInfo *TRI) const; |
| 222 | |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 223 | // Branch analysis. |
| 224 | virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, |
| 225 | MachineBasicBlock *&FBB, |
| 226 | SmallVectorImpl<MachineOperand> &Cond, |
Chris Lattner | 2062875 | 2010-07-22 21:27:00 +0000 | [diff] [blame] | 227 | bool AllowModify = false) const; |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 228 | virtual unsigned RemoveBranch(MachineBasicBlock &MBB) const; |
| 229 | virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, |
| 230 | MachineBasicBlock *FBB, |
Stuart Hastings | 3bf9125 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 231 | const SmallVectorImpl<MachineOperand> &Cond, |
| 232 | DebugLoc DL) const; |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 233 | |
| 234 | virtual |
| 235 | bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const; |
| 236 | |
| 237 | // Predication support. |
Evan Cheng | ab33150 | 2009-07-10 01:38:27 +0000 | [diff] [blame] | 238 | bool isPredicated(const MachineInstr *MI) const { |
| 239 | int PIdx = MI->findFirstPredOperandIdx(); |
| 240 | return PIdx != -1 && MI->getOperand(PIdx).getImm() != ARMCC::AL; |
| 241 | } |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 242 | |
| 243 | ARMCC::CondCodes getPredicate(const MachineInstr *MI) const { |
| 244 | int PIdx = MI->findFirstPredOperandIdx(); |
| 245 | return PIdx != -1 ? (ARMCC::CondCodes)MI->getOperand(PIdx).getImm() |
| 246 | : ARMCC::AL; |
| 247 | } |
| 248 | |
| 249 | virtual |
| 250 | bool PredicateInstruction(MachineInstr *MI, |
| 251 | const SmallVectorImpl<MachineOperand> &Pred) const; |
| 252 | |
| 253 | virtual |
| 254 | bool SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1, |
| 255 | const SmallVectorImpl<MachineOperand> &Pred2) const; |
| 256 | |
| 257 | virtual bool DefinesPredicate(MachineInstr *MI, |
| 258 | std::vector<MachineOperand> &Pred) const; |
| 259 | |
Evan Cheng | ac0869d | 2009-11-21 06:21:52 +0000 | [diff] [blame] | 260 | virtual bool isPredicable(MachineInstr *MI) const; |
| 261 | |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 262 | /// GetInstSize - Returns the size of the specified MachineInstr. |
| 263 | /// |
| 264 | virtual unsigned GetInstSizeInBytes(const MachineInstr* MI) const; |
| 265 | |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 266 | virtual unsigned isLoadFromStackSlot(const MachineInstr *MI, |
| 267 | int &FrameIndex) const; |
| 268 | virtual unsigned isStoreToStackSlot(const MachineInstr *MI, |
| 269 | int &FrameIndex) const; |
| 270 | |
Jakob Stoklund Olesen | ac27366 | 2010-07-11 06:33:54 +0000 | [diff] [blame] | 271 | virtual void copyPhysReg(MachineBasicBlock &MBB, |
| 272 | MachineBasicBlock::iterator I, DebugLoc DL, |
| 273 | unsigned DestReg, unsigned SrcReg, |
| 274 | bool KillSrc) const; |
Evan Cheng | 5732ca0 | 2009-07-27 03:14:20 +0000 | [diff] [blame] | 275 | |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 276 | virtual void storeRegToStackSlot(MachineBasicBlock &MBB, |
| 277 | MachineBasicBlock::iterator MBBI, |
| 278 | unsigned SrcReg, bool isKill, int FrameIndex, |
Evan Cheng | 746ad69 | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 279 | const TargetRegisterClass *RC, |
| 280 | const TargetRegisterInfo *TRI) const; |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 281 | |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 282 | virtual void loadRegFromStackSlot(MachineBasicBlock &MBB, |
| 283 | MachineBasicBlock::iterator MBBI, |
| 284 | unsigned DestReg, int FrameIndex, |
Evan Cheng | 746ad69 | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 285 | const TargetRegisterClass *RC, |
| 286 | const TargetRegisterInfo *TRI) const; |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 287 | |
Evan Cheng | 62b5065 | 2010-04-26 07:39:25 +0000 | [diff] [blame] | 288 | virtual MachineInstr *emitFrameIndexDebugValue(MachineFunction &MF, |
Evan Cheng | 8601a3d | 2010-04-29 01:13:30 +0000 | [diff] [blame] | 289 | int FrameIx, |
Evan Cheng | 62b5065 | 2010-04-26 07:39:25 +0000 | [diff] [blame] | 290 | uint64_t Offset, |
| 291 | const MDNode *MDPtr, |
| 292 | DebugLoc DL) const; |
| 293 | |
Evan Cheng | fdc8340 | 2009-11-08 00:15:23 +0000 | [diff] [blame] | 294 | virtual void reMaterialize(MachineBasicBlock &MBB, |
| 295 | MachineBasicBlock::iterator MI, |
| 296 | unsigned DestReg, unsigned SubIdx, |
Evan Cheng | d57cdd5 | 2009-11-14 02:55:43 +0000 | [diff] [blame] | 297 | const MachineInstr *Orig, |
Jakob Stoklund Olesen | 9edf7de | 2010-06-02 22:47:25 +0000 | [diff] [blame] | 298 | const TargetRegisterInfo &TRI) const; |
Evan Cheng | fdc8340 | 2009-11-08 00:15:23 +0000 | [diff] [blame] | 299 | |
Jakob Stoklund Olesen | 30ac046 | 2010-01-06 23:47:07 +0000 | [diff] [blame] | 300 | MachineInstr *duplicate(MachineInstr *Orig, MachineFunction &MF) const; |
| 301 | |
Evan Cheng | 506049f | 2010-03-03 01:44:33 +0000 | [diff] [blame] | 302 | virtual bool produceSameValue(const MachineInstr *MI0, |
| 303 | const MachineInstr *MI1) const; |
Evan Cheng | 86050dc | 2010-06-18 23:09:54 +0000 | [diff] [blame] | 304 | |
Bill Wendling | 4b72210 | 2010-06-23 23:00:16 +0000 | [diff] [blame] | 305 | /// areLoadsFromSameBasePtr - This is used by the pre-regalloc scheduler to |
| 306 | /// determine if two loads are loading from the same base address. It should |
| 307 | /// only return true if the base pointers are the same and the only |
| 308 | /// differences between the two addresses is the offset. It also returns the |
| 309 | /// offsets by reference. |
| 310 | virtual bool areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2, |
| 311 | int64_t &Offset1, int64_t &Offset2)const; |
| 312 | |
| 313 | /// shouldScheduleLoadsNear - This is a used by the pre-regalloc scheduler to |
| 314 | /// determine (in conjuction with areLoadsFromSameBasePtr) if two loads should |
| 315 | /// be scheduled togther. On some targets if two loads are loading from |
| 316 | /// addresses in the same cache line, it's better if they are scheduled |
| 317 | /// together. This function takes two integers that represent the load offsets |
| 318 | /// from the common base address. It returns true if it decides it's desirable |
| 319 | /// to schedule the two loads together. "NumLoads" is the number of loads that |
| 320 | /// have already been scheduled after Load1. |
| 321 | virtual bool shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2, |
| 322 | int64_t Offset1, int64_t Offset2, |
| 323 | unsigned NumLoads) const; |
| 324 | |
Evan Cheng | 86050dc | 2010-06-18 23:09:54 +0000 | [diff] [blame] | 325 | virtual bool isSchedulingBoundary(const MachineInstr *MI, |
| 326 | const MachineBasicBlock *MBB, |
| 327 | const MachineFunction &MF) const; |
Evan Cheng | 1315143 | 2010-06-25 22:42:03 +0000 | [diff] [blame] | 328 | |
| 329 | virtual bool isProfitableToIfCvt(MachineBasicBlock &MBB, |
| 330 | unsigned NumInstrs) const; |
| 331 | |
| 332 | virtual bool isProfitableToIfCvt(MachineBasicBlock &TMBB,unsigned NumT, |
| 333 | MachineBasicBlock &FMBB,unsigned NumF) const; |
| 334 | |
| 335 | virtual bool isProfitableToDupForIfCvt(MachineBasicBlock &MBB, |
| 336 | unsigned NumInstrs) const { |
| 337 | return NumInstrs && NumInstrs == 1; |
| 338 | } |
Bill Wendling | e4ddbdf | 2010-08-06 01:32:48 +0000 | [diff] [blame] | 339 | |
Bill Wendling | c98af33 | 2010-08-08 05:04:59 +0000 | [diff] [blame^] | 340 | /// AnalyzeCompare - For a comparison instruction, return the source register |
| 341 | /// in SrcReg and the value it compares against in CmpValue. Return true if |
| 342 | /// the comparison instruction can be analyzed. |
| 343 | virtual bool AnalyzeCompare(const MachineInstr *MI, unsigned &SrcReg, |
Bill Wendling | e4ddbdf | 2010-08-06 01:32:48 +0000 | [diff] [blame] | 344 | int &CmpValue) const; |
| 345 | |
Bill Wendling | c98af33 | 2010-08-08 05:04:59 +0000 | [diff] [blame^] | 346 | /// ConvertToSetZeroFlag - Convert the instruction to set the zero flag so |
Bill Wendling | e4ddbdf | 2010-08-06 01:32:48 +0000 | [diff] [blame] | 347 | /// that we can remove a "comparison with zero". |
Bill Wendling | c98af33 | 2010-08-08 05:04:59 +0000 | [diff] [blame^] | 348 | virtual bool ConvertToSetZeroFlag(MachineInstr *Instr, |
Bill Wendling | e4ddbdf | 2010-08-06 01:32:48 +0000 | [diff] [blame] | 349 | MachineInstr *CmpInstr) const; |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 350 | }; |
Evan Cheng | 6495f63 | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 351 | |
| 352 | static inline |
| 353 | const MachineInstrBuilder &AddDefaultPred(const MachineInstrBuilder &MIB) { |
| 354 | return MIB.addImm((int64_t)ARMCC::AL).addReg(0); |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 355 | } |
| 356 | |
Evan Cheng | 6495f63 | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 357 | static inline |
| 358 | const MachineInstrBuilder &AddDefaultCC(const MachineInstrBuilder &MIB) { |
| 359 | return MIB.addReg(0); |
| 360 | } |
| 361 | |
| 362 | static inline |
Evan Cheng | e8af1f9 | 2009-08-10 02:37:24 +0000 | [diff] [blame] | 363 | const MachineInstrBuilder &AddDefaultT1CC(const MachineInstrBuilder &MIB, |
| 364 | bool isDead = false) { |
| 365 | return MIB.addReg(ARM::CPSR, getDefRegState(true) | getDeadRegState(isDead)); |
Evan Cheng | 6495f63 | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | static inline |
Evan Cheng | bc9b754 | 2009-08-15 07:59:10 +0000 | [diff] [blame] | 369 | const MachineInstrBuilder &AddNoT1CC(const MachineInstrBuilder &MIB) { |
| 370 | return MIB.addReg(0); |
| 371 | } |
| 372 | |
| 373 | static inline |
Evan Cheng | 6495f63 | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 374 | bool isUncondBranchOpcode(int Opc) { |
| 375 | return Opc == ARM::B || Opc == ARM::tB || Opc == ARM::t2B; |
| 376 | } |
| 377 | |
| 378 | static inline |
| 379 | bool isCondBranchOpcode(int Opc) { |
| 380 | return Opc == ARM::Bcc || Opc == ARM::tBcc || Opc == ARM::t2Bcc; |
| 381 | } |
| 382 | |
| 383 | static inline |
| 384 | bool isJumpTableBranchOpcode(int Opc) { |
| 385 | return Opc == ARM::BR_JTr || Opc == ARM::BR_JTm || Opc == ARM::BR_JTadd || |
| 386 | Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT; |
| 387 | } |
| 388 | |
Bob Wilson | 8d4de5a | 2009-10-28 18:26:41 +0000 | [diff] [blame] | 389 | static inline |
| 390 | bool isIndirectBranchOpcode(int Opc) { |
Anton Korobeynikov | ce7bf1c | 2010-03-06 19:39:36 +0000 | [diff] [blame] | 391 | return Opc == ARM::BRIND || Opc == ARM::MOVPCRX || Opc == ARM::tBRIND; |
Bob Wilson | 8d4de5a | 2009-10-28 18:26:41 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Evan Cheng | 8fb9036 | 2009-08-08 03:20:32 +0000 | [diff] [blame] | 394 | /// getInstrPredicate - If instruction is predicated, returns its predicate |
| 395 | /// condition, otherwise returns AL. It also returns the condition code |
| 396 | /// register by reference. |
Evan Cheng | 5adb66a | 2009-09-28 09:14:39 +0000 | [diff] [blame] | 397 | ARMCC::CondCodes getInstrPredicate(const MachineInstr *MI, unsigned &PredReg); |
Evan Cheng | 8fb9036 | 2009-08-08 03:20:32 +0000 | [diff] [blame] | 398 | |
Evan Cheng | 6495f63 | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 399 | int getMatchingCondBranchOpcode(int Opc); |
| 400 | |
| 401 | /// emitARMRegPlusImmediate / emitT2RegPlusImmediate - Emits a series of |
| 402 | /// instructions to materializea destreg = basereg + immediate in ARM / Thumb2 |
| 403 | /// code. |
| 404 | void emitARMRegPlusImmediate(MachineBasicBlock &MBB, |
| 405 | MachineBasicBlock::iterator &MBBI, DebugLoc dl, |
| 406 | unsigned DestReg, unsigned BaseReg, int NumBytes, |
| 407 | ARMCC::CondCodes Pred, unsigned PredReg, |
| 408 | const ARMBaseInstrInfo &TII); |
| 409 | |
| 410 | void emitT2RegPlusImmediate(MachineBasicBlock &MBB, |
| 411 | MachineBasicBlock::iterator &MBBI, DebugLoc dl, |
| 412 | unsigned DestReg, unsigned BaseReg, int NumBytes, |
| 413 | ARMCC::CondCodes Pred, unsigned PredReg, |
| 414 | const ARMBaseInstrInfo &TII); |
| 415 | |
| 416 | |
Jim Grosbach | 764ab52 | 2009-08-11 15:33:49 +0000 | [diff] [blame] | 417 | /// rewriteARMFrameIndex / rewriteT2FrameIndex - |
Evan Cheng | cdbb3f5 | 2009-08-27 01:23:50 +0000 | [diff] [blame] | 418 | /// Rewrite MI to access 'Offset' bytes from the FP. Return false if the |
| 419 | /// offset could not be handled directly in MI, and return the left-over |
| 420 | /// portion by reference. |
| 421 | bool rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx, |
| 422 | unsigned FrameReg, int &Offset, |
| 423 | const ARMBaseInstrInfo &TII); |
Evan Cheng | 6495f63 | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 424 | |
Evan Cheng | cdbb3f5 | 2009-08-27 01:23:50 +0000 | [diff] [blame] | 425 | bool rewriteT2FrameIndex(MachineInstr &MI, unsigned FrameRegIdx, |
| 426 | unsigned FrameReg, int &Offset, |
| 427 | const ARMBaseInstrInfo &TII); |
Evan Cheng | 6495f63 | 2009-07-28 05:48:47 +0000 | [diff] [blame] | 428 | |
| 429 | } // End llvm namespace |
| 430 | |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 431 | #endif |