blob: 3ec1d41c527af45763afcb474f0f2c46f81047de [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
61 // IndexMode - Unindex, pre-indexed, or post-indexed. Only valid for load
62 // and store ops
63 IndexModeShift = 7,
64 IndexModeMask = 3 << IndexModeShift,
65 IndexModePre = 1,
66 IndexModePost = 2,
67
68 //===------------------------------------------------------------------===//
69 // Instruction encoding formats.
70 //
71 FormShift = 9,
72 FormMask = 0x3f << FormShift,
73
74 // Pseudo instructions
75 Pseudo = 0 << FormShift,
76
77 // Multiply instructions
78 MulFrm = 1 << FormShift,
79
80 // Branch instructions
81 BrFrm = 2 << FormShift,
82 BrMiscFrm = 3 << FormShift,
83
84 // Data Processing instructions
85 DPFrm = 4 << FormShift,
86 DPSoRegFrm = 5 << FormShift,
87
88 // Load and Store
89 LdFrm = 6 << FormShift,
90 StFrm = 7 << FormShift,
91 LdMiscFrm = 8 << FormShift,
92 StMiscFrm = 9 << FormShift,
93 LdStMulFrm = 10 << FormShift,
94
95 // Miscellaneous arithmetic instructions
96 ArithMiscFrm = 11 << FormShift,
97
98 // Extend instructions
99 ExtFrm = 12 << FormShift,
100
101 // VFP formats
102 VFPUnaryFrm = 13 << FormShift,
103 VFPBinaryFrm = 14 << FormShift,
104 VFPConv1Frm = 15 << FormShift,
105 VFPConv2Frm = 16 << FormShift,
106 VFPConv3Frm = 17 << FormShift,
107 VFPConv4Frm = 18 << FormShift,
108 VFPConv5Frm = 19 << FormShift,
109 VFPLdStFrm = 20 << FormShift,
110 VFPLdStMulFrm = 21 << FormShift,
111 VFPMiscFrm = 22 << FormShift,
112
113 // Thumb format
114 ThumbFrm = 23 << FormShift,
115
116 // NEON format
117 NEONFrm = 24 << FormShift,
118 NEONGetLnFrm = 25 << FormShift,
119 NEONSetLnFrm = 26 << FormShift,
120 NEONDupFrm = 27 << FormShift,
121
122 //===------------------------------------------------------------------===//
123 // Misc flags.
124
125 // UnaryDP - Indicates this is a unary data processing instruction, i.e.
126 // it doesn't have a Rn operand.
127 UnaryDP = 1 << 15,
128
129 // Xform16Bit - Indicates this Thumb2 instruction may be transformed into
130 // a 16-bit Thumb instruction if certain conditions are met.
131 Xform16Bit = 1 << 16,
132
133 //===------------------------------------------------------------------===//
Anton Korobeynikovf95215f2009-11-02 00:10:38 +0000134 // Code domain.
135 DomainShift = 17,
136 DomainMask = 3 << DomainShift,
137 DomainGeneral = 0 << DomainShift,
138 DomainVFP = 1 << DomainShift,
139 DomainNEON = 2 << DomainShift,
140
141 //===------------------------------------------------------------------===//
David Goodwin334c2642009-07-08 16:09:28 +0000142 // Field shifts - such shifts are used to set field while generating
143 // machine instructions.
144 M_BitShift = 5,
145 ShiftImmShift = 5,
146 ShiftShift = 7,
147 N_BitShift = 7,
148 ImmHiShift = 8,
149 SoRotImmShift = 8,
150 RegRsShift = 8,
151 ExtRotImmShift = 10,
152 RegRdLoShift = 12,
153 RegRdShift = 12,
154 RegRdHiShift = 16,
155 RegRnShift = 16,
156 S_BitShift = 20,
157 W_BitShift = 21,
158 AM3_I_BitShift = 22,
159 D_BitShift = 22,
160 U_BitShift = 23,
161 P_BitShift = 24,
162 I_BitShift = 25,
163 CondShift = 28
164 };
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +0000165
166 /// Target Operand Flag enum.
167 enum TOF {
168 //===------------------------------------------------------------------===//
169 // ARM Specific MachineOperand flags.
170
171 MO_NO_FLAG,
172
173 /// MO_LO16 - On a symbol operand, this represents a relocation containing
174 /// lower 16 bit of the address. Used only via movw instruction.
175 MO_LO16,
176
177 /// MO_HI16 - On a symbol operand, this represents a relocation containing
178 /// higher 16 bit of the address. Used only via movt instruction.
179 MO_HI16
180 };
Evan Chengb46aaa32009-07-19 19:16:46 +0000181}
182
David Goodwin334c2642009-07-08 16:09:28 +0000183class ARMBaseInstrInfo : public TargetInstrInfoImpl {
Anton Korobeynikovf95215f2009-11-02 00:10:38 +0000184 const ARMSubtarget& Subtarget;
David Goodwin334c2642009-07-08 16:09:28 +0000185protected:
186 // Can be only subclassed.
Anton Korobeynikovf95215f2009-11-02 00:10:38 +0000187 explicit ARMBaseInstrInfo(const ARMSubtarget &STI);
David Goodwin334c2642009-07-08 16:09:28 +0000188public:
189 // Return the non-pre/post incrementing version of 'Opc'. Return 0
190 // if there is not such an opcode.
191 virtual unsigned getUnindexedOpcode(unsigned Opc) const =0;
192
David Goodwin334c2642009-07-08 16:09:28 +0000193 virtual MachineInstr *convertToThreeAddress(MachineFunction::iterator &MFI,
194 MachineBasicBlock::iterator &MBBI,
195 LiveVariables *LV) const;
196
197 virtual const ARMBaseRegisterInfo &getRegisterInfo() const =0;
Anton Korobeynikovf95215f2009-11-02 00:10:38 +0000198 const ARMSubtarget &getSubtarget() const { return Subtarget; }
David Goodwin334c2642009-07-08 16:09:28 +0000199
200 // Branch analysis.
201 virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
202 MachineBasicBlock *&FBB,
203 SmallVectorImpl<MachineOperand> &Cond,
204 bool AllowModify) const;
205 virtual unsigned RemoveBranch(MachineBasicBlock &MBB) const;
206 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
207 MachineBasicBlock *FBB,
208 const SmallVectorImpl<MachineOperand> &Cond) const;
209
210 virtual
211 bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const;
212
213 // Predication support.
Evan Chengab331502009-07-10 01:38:27 +0000214 bool isPredicated(const MachineInstr *MI) const {
215 int PIdx = MI->findFirstPredOperandIdx();
216 return PIdx != -1 && MI->getOperand(PIdx).getImm() != ARMCC::AL;
217 }
David Goodwin334c2642009-07-08 16:09:28 +0000218
219 ARMCC::CondCodes getPredicate(const MachineInstr *MI) const {
220 int PIdx = MI->findFirstPredOperandIdx();
221 return PIdx != -1 ? (ARMCC::CondCodes)MI->getOperand(PIdx).getImm()
222 : ARMCC::AL;
223 }
224
225 virtual
226 bool PredicateInstruction(MachineInstr *MI,
227 const SmallVectorImpl<MachineOperand> &Pred) const;
228
229 virtual
230 bool SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
231 const SmallVectorImpl<MachineOperand> &Pred2) const;
232
233 virtual bool DefinesPredicate(MachineInstr *MI,
234 std::vector<MachineOperand> &Pred) const;
235
Evan Chengac0869d2009-11-21 06:21:52 +0000236 virtual bool isPredicable(MachineInstr *MI) const;
237
David Goodwin334c2642009-07-08 16:09:28 +0000238 /// GetInstSize - Returns the size of the specified MachineInstr.
239 ///
240 virtual unsigned GetInstSizeInBytes(const MachineInstr* MI) const;
241
242 /// Return true if the instruction is a register to register move and return
243 /// the source and dest operands and their sub-register indices by reference.
244 virtual bool isMoveInstr(const MachineInstr &MI,
245 unsigned &SrcReg, unsigned &DstReg,
246 unsigned &SrcSubIdx, unsigned &DstSubIdx) const;
247
248 virtual unsigned isLoadFromStackSlot(const MachineInstr *MI,
249 int &FrameIndex) const;
250 virtual unsigned isStoreToStackSlot(const MachineInstr *MI,
251 int &FrameIndex) const;
252
253 virtual bool copyRegToReg(MachineBasicBlock &MBB,
254 MachineBasicBlock::iterator I,
255 unsigned DestReg, unsigned SrcReg,
256 const TargetRegisterClass *DestRC,
257 const TargetRegisterClass *SrcRC) const;
Evan Cheng5732ca02009-07-27 03:14:20 +0000258
David Goodwin334c2642009-07-08 16:09:28 +0000259 virtual void storeRegToStackSlot(MachineBasicBlock &MBB,
260 MachineBasicBlock::iterator MBBI,
261 unsigned SrcReg, bool isKill, int FrameIndex,
262 const TargetRegisterClass *RC) const;
263
David Goodwin334c2642009-07-08 16:09:28 +0000264 virtual void loadRegFromStackSlot(MachineBasicBlock &MBB,
265 MachineBasicBlock::iterator MBBI,
266 unsigned DestReg, int FrameIndex,
267 const TargetRegisterClass *RC) const;
268
David Goodwin334c2642009-07-08 16:09:28 +0000269 virtual bool canFoldMemoryOperand(const MachineInstr *MI,
270 const SmallVectorImpl<unsigned> &Ops) const;
Jim Grosbach764ab522009-08-11 15:33:49 +0000271
David Goodwin334c2642009-07-08 16:09:28 +0000272 virtual MachineInstr* foldMemoryOperandImpl(MachineFunction &MF,
273 MachineInstr* MI,
274 const SmallVectorImpl<unsigned> &Ops,
275 int FrameIndex) const;
276
277 virtual MachineInstr* foldMemoryOperandImpl(MachineFunction &MF,
278 MachineInstr* MI,
Evan Chengb9803a82009-11-06 23:52:48 +0000279 const SmallVectorImpl<unsigned> &Ops,
David Goodwin334c2642009-07-08 16:09:28 +0000280 MachineInstr* LoadMI) const;
Evan Chengd457e6e2009-11-07 04:04:34 +0000281
Evan Chengfdc83402009-11-08 00:15:23 +0000282 virtual void reMaterialize(MachineBasicBlock &MBB,
283 MachineBasicBlock::iterator MI,
284 unsigned DestReg, unsigned SubIdx,
Evan Chengd57cdd52009-11-14 02:55:43 +0000285 const MachineInstr *Orig,
286 const TargetRegisterInfo *TRI) const;
Evan Chengfdc83402009-11-08 00:15:23 +0000287
Evan Chengd457e6e2009-11-07 04:04:34 +0000288 virtual bool isIdentical(const MachineInstr *MI, const MachineInstr *Other,
289 const MachineRegisterInfo *MRI) const;
David Goodwin334c2642009-07-08 16:09:28 +0000290};
Evan Cheng6495f632009-07-28 05:48:47 +0000291
292static inline
293const MachineInstrBuilder &AddDefaultPred(const MachineInstrBuilder &MIB) {
294 return MIB.addImm((int64_t)ARMCC::AL).addReg(0);
David Goodwin334c2642009-07-08 16:09:28 +0000295}
296
Evan Cheng6495f632009-07-28 05:48:47 +0000297static inline
298const MachineInstrBuilder &AddDefaultCC(const MachineInstrBuilder &MIB) {
299 return MIB.addReg(0);
300}
301
302static inline
Evan Chenge8af1f92009-08-10 02:37:24 +0000303const MachineInstrBuilder &AddDefaultT1CC(const MachineInstrBuilder &MIB,
304 bool isDead = false) {
305 return MIB.addReg(ARM::CPSR, getDefRegState(true) | getDeadRegState(isDead));
Evan Cheng6495f632009-07-28 05:48:47 +0000306}
307
308static inline
Evan Chengbc9b7542009-08-15 07:59:10 +0000309const MachineInstrBuilder &AddNoT1CC(const MachineInstrBuilder &MIB) {
310 return MIB.addReg(0);
311}
312
313static inline
Evan Cheng6495f632009-07-28 05:48:47 +0000314bool isUncondBranchOpcode(int Opc) {
315 return Opc == ARM::B || Opc == ARM::tB || Opc == ARM::t2B;
316}
317
318static inline
319bool isCondBranchOpcode(int Opc) {
320 return Opc == ARM::Bcc || Opc == ARM::tBcc || Opc == ARM::t2Bcc;
321}
322
323static inline
324bool isJumpTableBranchOpcode(int Opc) {
325 return Opc == ARM::BR_JTr || Opc == ARM::BR_JTm || Opc == ARM::BR_JTadd ||
326 Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT;
327}
328
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000329static inline
330bool isIndirectBranchOpcode(int Opc) {
331 return Opc == ARM::BRIND || Opc == ARM::tBRIND;
332}
333
Evan Cheng8fb90362009-08-08 03:20:32 +0000334/// getInstrPredicate - If instruction is predicated, returns its predicate
335/// condition, otherwise returns AL. It also returns the condition code
336/// register by reference.
Evan Cheng5adb66a2009-09-28 09:14:39 +0000337ARMCC::CondCodes getInstrPredicate(const MachineInstr *MI, unsigned &PredReg);
Evan Cheng8fb90362009-08-08 03:20:32 +0000338
Evan Cheng6495f632009-07-28 05:48:47 +0000339int getMatchingCondBranchOpcode(int Opc);
340
341/// emitARMRegPlusImmediate / emitT2RegPlusImmediate - Emits a series of
342/// instructions to materializea destreg = basereg + immediate in ARM / Thumb2
343/// code.
344void emitARMRegPlusImmediate(MachineBasicBlock &MBB,
345 MachineBasicBlock::iterator &MBBI, DebugLoc dl,
346 unsigned DestReg, unsigned BaseReg, int NumBytes,
347 ARMCC::CondCodes Pred, unsigned PredReg,
348 const ARMBaseInstrInfo &TII);
349
350void emitT2RegPlusImmediate(MachineBasicBlock &MBB,
351 MachineBasicBlock::iterator &MBBI, DebugLoc dl,
352 unsigned DestReg, unsigned BaseReg, int NumBytes,
353 ARMCC::CondCodes Pred, unsigned PredReg,
354 const ARMBaseInstrInfo &TII);
355
356
Jim Grosbach764ab522009-08-11 15:33:49 +0000357/// rewriteARMFrameIndex / rewriteT2FrameIndex -
Evan Chengcdbb3f52009-08-27 01:23:50 +0000358/// Rewrite MI to access 'Offset' bytes from the FP. Return false if the
359/// offset could not be handled directly in MI, and return the left-over
360/// portion by reference.
361bool rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
362 unsigned FrameReg, int &Offset,
363 const ARMBaseInstrInfo &TII);
Evan Cheng6495f632009-07-28 05:48:47 +0000364
Evan Chengcdbb3f52009-08-27 01:23:50 +0000365bool rewriteT2FrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
366 unsigned FrameReg, int &Offset,
367 const ARMBaseInstrInfo &TII);
Evan Cheng6495f632009-07-28 05:48:47 +0000368
369} // End llvm namespace
370
David Goodwin334c2642009-07-08 16:09:28 +0000371#endif