blob: 7a5630ea37c5fedb9ea786f60b956240d679a39d [file] [log] [blame]
Jim Grosbach31c24bf2009-11-07 22:00:39 +00001//===- ARMBaseInstrInfo.h - ARM Base Instruction Information ----*- C++ -*-===//
David Goodwin334c2642009-07-08 16:09:28 +00002//
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 Goodwin334c2642009-07-08 16:09:28 +000017#include "ARM.h"
Anton Korobeynikovb8e9ac82009-07-16 23:26:06 +000018#include "ARMRegisterInfo.h"
19#include "llvm/CodeGen/MachineInstrBuilder.h"
20#include "llvm/Target/TargetInstrInfo.h"
David Goodwin334c2642009-07-08 16:09:28 +000021
22namespace llvm {
David Goodwin334c2642009-07-08 16:09:28 +000023
24/// ARMII - This namespace holds all of the target specific flags that
25/// instruction info tracks.
26///
27namespace ARMII {
28 enum {
29 //===------------------------------------------------------------------===//
30 // Instruction Flags.
31
32 //===------------------------------------------------------------------===//
33 // This four-bit field describes the addressing mode used.
34
35 AddrModeMask = 0xf,
36 AddrModeNone = 0,
37 AddrMode1 = 1,
38 AddrMode2 = 2,
39 AddrMode3 = 3,
40 AddrMode4 = 4,
41 AddrMode5 = 5,
42 AddrMode6 = 6,
43 AddrModeT1_1 = 7,
44 AddrModeT1_2 = 8,
45 AddrModeT1_4 = 9,
46 AddrModeT1_s = 10, // i8 * 4 for pc and sp relative data
47 AddrModeT2_i12 = 11,
48 AddrModeT2_i8 = 12,
49 AddrModeT2_so = 13,
50 AddrModeT2_pc = 14, // +/- i12 for pc relative data
51 AddrModeT2_i8s4 = 15, // i8 * 4
52
53 // Size* - Flags to keep track of the size of an instruction.
54 SizeShift = 4,
55 SizeMask = 7 << SizeShift,
56 SizeSpecial = 1, // 0 byte pseudo or special case.
57 Size8Bytes = 2,
58 Size4Bytes = 3,
59 Size2Bytes = 4,
60
Bob Wilsonbffb5b32010-03-13 07:34:35 +000061 // IndexMode - Unindex, pre-indexed, or post-indexed are valid for load
62 // and store ops only. Generic "updating" flag is used for ld/st multiple.
David Goodwin334c2642009-07-08 16:09:28 +000063 IndexModeShift = 7,
64 IndexModeMask = 3 << IndexModeShift,
65 IndexModePre = 1,
66 IndexModePost = 2,
Bob Wilsonbffb5b32010-03-13 07:34:35 +000067 IndexModeUpd = 3,
David Goodwin334c2642009-07-08 16:09:28 +000068
69 //===------------------------------------------------------------------===//
70 // Instruction encoding formats.
71 //
72 FormShift = 9,
73 FormMask = 0x3f << FormShift,
74
75 // Pseudo instructions
76 Pseudo = 0 << FormShift,
77
78 // Multiply instructions
79 MulFrm = 1 << FormShift,
80
81 // Branch instructions
82 BrFrm = 2 << FormShift,
83 BrMiscFrm = 3 << FormShift,
84
85 // Data Processing instructions
86 DPFrm = 4 << FormShift,
87 DPSoRegFrm = 5 << FormShift,
88
89 // Load and Store
90 LdFrm = 6 << FormShift,
91 StFrm = 7 << FormShift,
92 LdMiscFrm = 8 << FormShift,
93 StMiscFrm = 9 << FormShift,
94 LdStMulFrm = 10 << FormShift,
95
Johnny Chen81f04d52010-03-19 17:39:00 +000096 LdStExFrm = 11 << FormShift,
Jim Grosbach5278eb82009-12-11 01:42:04 +000097
David Goodwin334c2642009-07-08 16:09:28 +000098 // Miscellaneous arithmetic instructions
Johnny Chen81f04d52010-03-19 17:39:00 +000099 ArithMiscFrm = 12 << FormShift,
David Goodwin334c2642009-07-08 16:09:28 +0000100
101 // Extend instructions
Johnny Chen81f04d52010-03-19 17:39:00 +0000102 ExtFrm = 13 << FormShift,
David Goodwin334c2642009-07-08 16:09:28 +0000103
104 // VFP formats
Johnny Chen81f04d52010-03-19 17:39:00 +0000105 VFPUnaryFrm = 14 << FormShift,
106 VFPBinaryFrm = 15 << FormShift,
107 VFPConv1Frm = 16 << FormShift,
108 VFPConv2Frm = 17 << FormShift,
109 VFPConv3Frm = 18 << FormShift,
110 VFPConv4Frm = 19 << FormShift,
111 VFPConv5Frm = 20 << FormShift,
112 VFPLdStFrm = 21 << FormShift,
113 VFPLdStMulFrm = 22 << FormShift,
114 VFPMiscFrm = 23 << FormShift,
David Goodwin334c2642009-07-08 16:09:28 +0000115
116 // Thumb format
Johnny Chen81f04d52010-03-19 17:39:00 +0000117 ThumbFrm = 24 << FormShift,
David Goodwin334c2642009-07-08 16:09:28 +0000118
119 // NEON format
Johnny Chen81f04d52010-03-19 17:39:00 +0000120 NEONFrm = 25 << FormShift,
121 NEONGetLnFrm = 26 << FormShift,
122 NEONSetLnFrm = 27 << FormShift,
123 NEONDupFrm = 28 << FormShift,
David Goodwin334c2642009-07-08 16:09:28 +0000124
125 //===------------------------------------------------------------------===//
126 // Misc flags.
127
128 // UnaryDP - Indicates this is a unary data processing instruction, i.e.
129 // it doesn't have a Rn operand.
130 UnaryDP = 1 << 15,
131
132 // Xform16Bit - Indicates this Thumb2 instruction may be transformed into
133 // a 16-bit Thumb instruction if certain conditions are met.
134 Xform16Bit = 1 << 16,
135
136 //===------------------------------------------------------------------===//
Anton Korobeynikovf95215f2009-11-02 00:10:38 +0000137 // Code domain.
138 DomainShift = 17,
139 DomainMask = 3 << DomainShift,
140 DomainGeneral = 0 << DomainShift,
141 DomainVFP = 1 << DomainShift,
142 DomainNEON = 2 << DomainShift,
143
144 //===------------------------------------------------------------------===//
David Goodwin334c2642009-07-08 16:09:28 +0000145 // Field shifts - such shifts are used to set field while generating
146 // machine instructions.
147 M_BitShift = 5,
148 ShiftImmShift = 5,
149 ShiftShift = 7,
150 N_BitShift = 7,
151 ImmHiShift = 8,
152 SoRotImmShift = 8,
153 RegRsShift = 8,
154 ExtRotImmShift = 10,
155 RegRdLoShift = 12,
156 RegRdShift = 12,
157 RegRdHiShift = 16,
158 RegRnShift = 16,
159 S_BitShift = 20,
160 W_BitShift = 21,
161 AM3_I_BitShift = 22,
162 D_BitShift = 22,
163 U_BitShift = 23,
164 P_BitShift = 24,
165 I_BitShift = 25,
166 CondShift = 28
167 };
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +0000168
169 /// Target Operand Flag enum.
170 enum TOF {
171 //===------------------------------------------------------------------===//
172 // ARM Specific MachineOperand flags.
173
174 MO_NO_FLAG,
175
176 /// MO_LO16 - On a symbol operand, this represents a relocation containing
177 /// lower 16 bit of the address. Used only via movw instruction.
178 MO_LO16,
179
180 /// MO_HI16 - On a symbol operand, this represents a relocation containing
181 /// higher 16 bit of the address. Used only via movt instruction.
182 MO_HI16
183 };
Evan Chengb46aaa32009-07-19 19:16:46 +0000184}
185
David Goodwin334c2642009-07-08 16:09:28 +0000186class ARMBaseInstrInfo : public TargetInstrInfoImpl {
Anton Korobeynikovf95215f2009-11-02 00:10:38 +0000187 const ARMSubtarget& Subtarget;
David Goodwin334c2642009-07-08 16:09:28 +0000188protected:
189 // Can be only subclassed.
Anton Korobeynikovf95215f2009-11-02 00:10:38 +0000190 explicit ARMBaseInstrInfo(const ARMSubtarget &STI);
David Goodwin334c2642009-07-08 16:09:28 +0000191public:
192 // Return the non-pre/post incrementing version of 'Opc'. Return 0
193 // if there is not such an opcode.
194 virtual unsigned getUnindexedOpcode(unsigned Opc) const =0;
195
David Goodwin334c2642009-07-08 16:09:28 +0000196 virtual MachineInstr *convertToThreeAddress(MachineFunction::iterator &MFI,
197 MachineBasicBlock::iterator &MBBI,
198 LiveVariables *LV) const;
199
200 virtual const ARMBaseRegisterInfo &getRegisterInfo() const =0;
Anton Korobeynikovf95215f2009-11-02 00:10:38 +0000201 const ARMSubtarget &getSubtarget() const { return Subtarget; }
David Goodwin334c2642009-07-08 16:09:28 +0000202
203 // Branch analysis.
204 virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
205 MachineBasicBlock *&FBB,
206 SmallVectorImpl<MachineOperand> &Cond,
207 bool AllowModify) const;
208 virtual unsigned RemoveBranch(MachineBasicBlock &MBB) const;
209 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
210 MachineBasicBlock *FBB,
211 const SmallVectorImpl<MachineOperand> &Cond) const;
212
213 virtual
214 bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const;
215
216 // Predication support.
Evan Chengab331502009-07-10 01:38:27 +0000217 bool isPredicated(const MachineInstr *MI) const {
218 int PIdx = MI->findFirstPredOperandIdx();
219 return PIdx != -1 && MI->getOperand(PIdx).getImm() != ARMCC::AL;
220 }
David Goodwin334c2642009-07-08 16:09:28 +0000221
222 ARMCC::CondCodes getPredicate(const MachineInstr *MI) const {
223 int PIdx = MI->findFirstPredOperandIdx();
224 return PIdx != -1 ? (ARMCC::CondCodes)MI->getOperand(PIdx).getImm()
225 : ARMCC::AL;
226 }
227
228 virtual
229 bool PredicateInstruction(MachineInstr *MI,
230 const SmallVectorImpl<MachineOperand> &Pred) const;
231
232 virtual
233 bool SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
234 const SmallVectorImpl<MachineOperand> &Pred2) const;
235
236 virtual bool DefinesPredicate(MachineInstr *MI,
237 std::vector<MachineOperand> &Pred) const;
238
Evan Chengac0869d2009-11-21 06:21:52 +0000239 virtual bool isPredicable(MachineInstr *MI) const;
240
David Goodwin334c2642009-07-08 16:09:28 +0000241 /// GetInstSize - Returns the size of the specified MachineInstr.
242 ///
243 virtual unsigned GetInstSizeInBytes(const MachineInstr* MI) const;
244
245 /// Return true if the instruction is a register to register move and return
246 /// the source and dest operands and their sub-register indices by reference.
247 virtual bool isMoveInstr(const MachineInstr &MI,
248 unsigned &SrcReg, unsigned &DstReg,
249 unsigned &SrcSubIdx, unsigned &DstSubIdx) const;
250
251 virtual unsigned isLoadFromStackSlot(const MachineInstr *MI,
252 int &FrameIndex) const;
253 virtual unsigned isStoreToStackSlot(const MachineInstr *MI,
254 int &FrameIndex) const;
255
256 virtual bool copyRegToReg(MachineBasicBlock &MBB,
257 MachineBasicBlock::iterator I,
258 unsigned DestReg, unsigned SrcReg,
259 const TargetRegisterClass *DestRC,
260 const TargetRegisterClass *SrcRC) const;
Evan Cheng5732ca02009-07-27 03:14:20 +0000261
David Goodwin334c2642009-07-08 16:09:28 +0000262 virtual void storeRegToStackSlot(MachineBasicBlock &MBB,
263 MachineBasicBlock::iterator MBBI,
264 unsigned SrcReg, bool isKill, int FrameIndex,
265 const TargetRegisterClass *RC) const;
266
David Goodwin334c2642009-07-08 16:09:28 +0000267 virtual void loadRegFromStackSlot(MachineBasicBlock &MBB,
268 MachineBasicBlock::iterator MBBI,
269 unsigned DestReg, int FrameIndex,
270 const TargetRegisterClass *RC) const;
271
Evan Cheng62b50652010-04-26 07:39:25 +0000272 virtual MachineInstr *emitFrameIndexDebugValue(MachineFunction &MF,
Evan Cheng8601a3d2010-04-29 01:13:30 +0000273 int FrameIx,
Evan Cheng62b50652010-04-26 07:39:25 +0000274 uint64_t Offset,
275 const MDNode *MDPtr,
276 DebugLoc DL) const;
277
David Goodwin334c2642009-07-08 16:09:28 +0000278 virtual bool canFoldMemoryOperand(const MachineInstr *MI,
279 const SmallVectorImpl<unsigned> &Ops) const;
Jim Grosbach764ab522009-08-11 15:33:49 +0000280
David Goodwin334c2642009-07-08 16:09:28 +0000281 virtual MachineInstr* foldMemoryOperandImpl(MachineFunction &MF,
282 MachineInstr* MI,
283 const SmallVectorImpl<unsigned> &Ops,
284 int FrameIndex) const;
285
286 virtual MachineInstr* foldMemoryOperandImpl(MachineFunction &MF,
287 MachineInstr* MI,
Evan Chengb9803a82009-11-06 23:52:48 +0000288 const SmallVectorImpl<unsigned> &Ops,
David Goodwin334c2642009-07-08 16:09:28 +0000289 MachineInstr* LoadMI) const;
Evan Chengd457e6e2009-11-07 04:04:34 +0000290
Evan Chengfdc83402009-11-08 00:15:23 +0000291 virtual void reMaterialize(MachineBasicBlock &MBB,
292 MachineBasicBlock::iterator MI,
293 unsigned DestReg, unsigned SubIdx,
Evan Chengd57cdd52009-11-14 02:55:43 +0000294 const MachineInstr *Orig,
295 const TargetRegisterInfo *TRI) const;
Evan Chengfdc83402009-11-08 00:15:23 +0000296
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +0000297 MachineInstr *duplicate(MachineInstr *Orig, MachineFunction &MF) const;
298
Evan Cheng506049f2010-03-03 01:44:33 +0000299 virtual bool produceSameValue(const MachineInstr *MI0,
300 const MachineInstr *MI1) const;
David Goodwin334c2642009-07-08 16:09:28 +0000301};
Evan Cheng6495f632009-07-28 05:48:47 +0000302
303static inline
304const MachineInstrBuilder &AddDefaultPred(const MachineInstrBuilder &MIB) {
305 return MIB.addImm((int64_t)ARMCC::AL).addReg(0);
David Goodwin334c2642009-07-08 16:09:28 +0000306}
307
Evan Cheng6495f632009-07-28 05:48:47 +0000308static inline
309const MachineInstrBuilder &AddDefaultCC(const MachineInstrBuilder &MIB) {
310 return MIB.addReg(0);
311}
312
313static inline
Evan Chenge8af1f92009-08-10 02:37:24 +0000314const MachineInstrBuilder &AddDefaultT1CC(const MachineInstrBuilder &MIB,
315 bool isDead = false) {
316 return MIB.addReg(ARM::CPSR, getDefRegState(true) | getDeadRegState(isDead));
Evan Cheng6495f632009-07-28 05:48:47 +0000317}
318
319static inline
Evan Chengbc9b7542009-08-15 07:59:10 +0000320const MachineInstrBuilder &AddNoT1CC(const MachineInstrBuilder &MIB) {
321 return MIB.addReg(0);
322}
323
324static inline
Evan Cheng6495f632009-07-28 05:48:47 +0000325bool isUncondBranchOpcode(int Opc) {
326 return Opc == ARM::B || Opc == ARM::tB || Opc == ARM::t2B;
327}
328
329static inline
330bool isCondBranchOpcode(int Opc) {
331 return Opc == ARM::Bcc || Opc == ARM::tBcc || Opc == ARM::t2Bcc;
332}
333
334static inline
335bool isJumpTableBranchOpcode(int Opc) {
336 return Opc == ARM::BR_JTr || Opc == ARM::BR_JTm || Opc == ARM::BR_JTadd ||
337 Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT;
338}
339
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000340static inline
341bool isIndirectBranchOpcode(int Opc) {
Anton Korobeynikovce7bf1c2010-03-06 19:39:36 +0000342 return Opc == ARM::BRIND || Opc == ARM::MOVPCRX || Opc == ARM::tBRIND;
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000343}
344
Evan Cheng8fb90362009-08-08 03:20:32 +0000345/// getInstrPredicate - If instruction is predicated, returns its predicate
346/// condition, otherwise returns AL. It also returns the condition code
347/// register by reference.
Evan Cheng5adb66a2009-09-28 09:14:39 +0000348ARMCC::CondCodes getInstrPredicate(const MachineInstr *MI, unsigned &PredReg);
Evan Cheng8fb90362009-08-08 03:20:32 +0000349
Evan Cheng6495f632009-07-28 05:48:47 +0000350int getMatchingCondBranchOpcode(int Opc);
351
352/// emitARMRegPlusImmediate / emitT2RegPlusImmediate - Emits a series of
353/// instructions to materializea destreg = basereg + immediate in ARM / Thumb2
354/// code.
355void emitARMRegPlusImmediate(MachineBasicBlock &MBB,
356 MachineBasicBlock::iterator &MBBI, DebugLoc dl,
357 unsigned DestReg, unsigned BaseReg, int NumBytes,
358 ARMCC::CondCodes Pred, unsigned PredReg,
359 const ARMBaseInstrInfo &TII);
360
361void emitT2RegPlusImmediate(MachineBasicBlock &MBB,
362 MachineBasicBlock::iterator &MBBI, DebugLoc dl,
363 unsigned DestReg, unsigned BaseReg, int NumBytes,
364 ARMCC::CondCodes Pred, unsigned PredReg,
365 const ARMBaseInstrInfo &TII);
366
367
Jim Grosbach764ab522009-08-11 15:33:49 +0000368/// rewriteARMFrameIndex / rewriteT2FrameIndex -
Evan Chengcdbb3f52009-08-27 01:23:50 +0000369/// Rewrite MI to access 'Offset' bytes from the FP. Return false if the
370/// offset could not be handled directly in MI, and return the left-over
371/// portion by reference.
372bool rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
373 unsigned FrameReg, int &Offset,
374 const ARMBaseInstrInfo &TII);
Evan Cheng6495f632009-07-28 05:48:47 +0000375
Evan Chengcdbb3f52009-08-27 01:23:50 +0000376bool rewriteT2FrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
377 unsigned FrameReg, int &Offset,
378 const ARMBaseInstrInfo &TII);
Evan Cheng6495f632009-07-28 05:48:47 +0000379
380} // End llvm namespace
381
David Goodwin334c2642009-07-08 16:09:28 +0000382#endif