1 //===- ARMBaseInstrInfo.h - ARM Base Instruction Information -------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains the Base ARM implementation of the TargetInstrInfo class.
12 //===----------------------------------------------------------------------===//
14 #ifndef ARMBASEINSTRUCTIONINFO_H
15 #define ARMBASEINSTRUCTIONINFO_H
18 #include "ARMRegisterInfo.h"
19 #include "llvm/CodeGen/MachineInstrBuilder.h"
20 #include "llvm/Target/TargetInstrInfo.h"
24 /// ARMII - This namespace holds all of the target specific flags that
25 /// instruction info tracks.
29 //===------------------------------------------------------------------===//
32 //===------------------------------------------------------------------===//
33 // This four-bit field describes the addressing mode used.
46 AddrModeT1_s
= 10, // i8 * 4 for pc and sp relative data
50 AddrModeT2_pc
= 14, // +/- i12 for pc relative data
51 AddrModeT2_i8s4
= 15, // i8 * 4
53 // Size* - Flags to keep track of the size of an instruction.
55 SizeMask
= 7 << SizeShift
,
56 SizeSpecial
= 1, // 0 byte pseudo or special case.
61 // IndexMode - Unindex, pre-indexed, or post-indexed. Only valid for load
64 IndexModeMask
= 3 << IndexModeShift
,
68 //===------------------------------------------------------------------===//
69 // Instruction encoding formats.
72 FormMask
= 0x3f << FormShift
,
74 // Pseudo instructions
75 Pseudo
= 0 << FormShift
,
77 // Multiply instructions
78 MulFrm
= 1 << FormShift
,
80 // Branch instructions
81 BrFrm
= 2 << FormShift
,
82 BrMiscFrm
= 3 << FormShift
,
84 // Data Processing instructions
85 DPFrm
= 4 << FormShift
,
86 DPSoRegFrm
= 5 << FormShift
,
89 LdFrm
= 6 << FormShift
,
90 StFrm
= 7 << FormShift
,
91 LdMiscFrm
= 8 << FormShift
,
92 StMiscFrm
= 9 << FormShift
,
93 LdStMulFrm
= 10 << FormShift
,
95 // Miscellaneous arithmetic instructions
96 ArithMiscFrm
= 11 << FormShift
,
98 // Extend instructions
99 ExtFrm
= 12 << FormShift
,
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
,
114 ThumbFrm
= 23 << FormShift
,
117 NEONFrm
= 24 << FormShift
,
118 NEONGetLnFrm
= 25 << FormShift
,
119 NEONSetLnFrm
= 26 << FormShift
,
120 NEONDupFrm
= 27 << FormShift
,
122 //===------------------------------------------------------------------===//
125 // UnaryDP - Indicates this is a unary data processing instruction, i.e.
126 // it doesn't have a Rn operand.
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,
133 //===------------------------------------------------------------------===//
134 // Field shifts - such shifts are used to set field while generating
135 // machine instructions.
159 class ARMBaseInstrInfo
: public TargetInstrInfoImpl
{
161 // Can be only subclassed.
162 explicit ARMBaseInstrInfo();
164 // Return the non-pre/post incrementing version of 'Opc'. Return 0
165 // if there is not such an opcode.
166 virtual unsigned getUnindexedOpcode(unsigned Opc
) const =0;
168 // Return true if the block does not fall through.
169 virtual bool BlockHasNoFallThrough(const MachineBasicBlock
&MBB
) const =0;
171 virtual MachineInstr
*convertToThreeAddress(MachineFunction::iterator
&MFI
,
172 MachineBasicBlock::iterator
&MBBI
,
173 LiveVariables
*LV
) const;
175 virtual const ARMBaseRegisterInfo
&getRegisterInfo() const =0;
178 virtual bool AnalyzeBranch(MachineBasicBlock
&MBB
, MachineBasicBlock
*&TBB
,
179 MachineBasicBlock
*&FBB
,
180 SmallVectorImpl
<MachineOperand
> &Cond
,
181 bool AllowModify
) const;
182 virtual unsigned RemoveBranch(MachineBasicBlock
&MBB
) const;
183 virtual unsigned InsertBranch(MachineBasicBlock
&MBB
, MachineBasicBlock
*TBB
,
184 MachineBasicBlock
*FBB
,
185 const SmallVectorImpl
<MachineOperand
> &Cond
) const;
188 bool ReverseBranchCondition(SmallVectorImpl
<MachineOperand
> &Cond
) const;
190 // Predication support.
191 bool isPredicated(const MachineInstr
*MI
) const {
192 int PIdx
= MI
->findFirstPredOperandIdx();
193 return PIdx
!= -1 && MI
->getOperand(PIdx
).getImm() != ARMCC::AL
;
196 ARMCC::CondCodes
getPredicate(const MachineInstr
*MI
) const {
197 int PIdx
= MI
->findFirstPredOperandIdx();
198 return PIdx
!= -1 ? (ARMCC::CondCodes
)MI
->getOperand(PIdx
).getImm()
203 bool PredicateInstruction(MachineInstr
*MI
,
204 const SmallVectorImpl
<MachineOperand
> &Pred
) const;
207 bool SubsumesPredicate(const SmallVectorImpl
<MachineOperand
> &Pred1
,
208 const SmallVectorImpl
<MachineOperand
> &Pred2
) const;
210 virtual bool DefinesPredicate(MachineInstr
*MI
,
211 std::vector
<MachineOperand
> &Pred
) const;
213 /// GetInstSize - Returns the size of the specified MachineInstr.
215 virtual unsigned GetInstSizeInBytes(const MachineInstr
* MI
) const;
217 /// Return true if the instruction is a register to register move and return
218 /// the source and dest operands and their sub-register indices by reference.
219 virtual bool isMoveInstr(const MachineInstr
&MI
,
220 unsigned &SrcReg
, unsigned &DstReg
,
221 unsigned &SrcSubIdx
, unsigned &DstSubIdx
) const;
223 virtual unsigned isLoadFromStackSlot(const MachineInstr
*MI
,
224 int &FrameIndex
) const;
225 virtual unsigned isStoreToStackSlot(const MachineInstr
*MI
,
226 int &FrameIndex
) const;
228 virtual bool copyRegToReg(MachineBasicBlock
&MBB
,
229 MachineBasicBlock::iterator I
,
230 unsigned DestReg
, unsigned SrcReg
,
231 const TargetRegisterClass
*DestRC
,
232 const TargetRegisterClass
*SrcRC
) const;
234 virtual void storeRegToStackSlot(MachineBasicBlock
&MBB
,
235 MachineBasicBlock::iterator MBBI
,
236 unsigned SrcReg
, bool isKill
, int FrameIndex
,
237 const TargetRegisterClass
*RC
) const;
239 virtual void loadRegFromStackSlot(MachineBasicBlock
&MBB
,
240 MachineBasicBlock::iterator MBBI
,
241 unsigned DestReg
, int FrameIndex
,
242 const TargetRegisterClass
*RC
) const;
244 virtual bool canFoldMemoryOperand(const MachineInstr
*MI
,
245 const SmallVectorImpl
<unsigned> &Ops
) const;
247 virtual MachineInstr
* foldMemoryOperandImpl(MachineFunction
&MF
,
249 const SmallVectorImpl
<unsigned> &Ops
,
250 int FrameIndex
) const;
252 virtual MachineInstr
* foldMemoryOperandImpl(MachineFunction
&MF
,
254 const SmallVectorImpl
<unsigned> &Ops
,
255 MachineInstr
* LoadMI
) const;
260 const MachineInstrBuilder
&AddDefaultPred(const MachineInstrBuilder
&MIB
) {
261 return MIB
.addImm((int64_t)ARMCC::AL
).addReg(0);
265 const MachineInstrBuilder
&AddDefaultCC(const MachineInstrBuilder
&MIB
) {
266 return MIB
.addReg(0);
270 const MachineInstrBuilder
&AddDefaultT1CC(const MachineInstrBuilder
&MIB
,
271 bool isDead
= false) {
272 return MIB
.addReg(ARM::CPSR
, getDefRegState(true) | getDeadRegState(isDead
));
276 const MachineInstrBuilder
&AddNoT1CC(const MachineInstrBuilder
&MIB
) {
277 return MIB
.addReg(0);
281 bool isUncondBranchOpcode(int Opc
) {
282 return Opc
== ARM::B
|| Opc
== ARM::tB
|| Opc
== ARM::t2B
;
286 bool isCondBranchOpcode(int Opc
) {
287 return Opc
== ARM::Bcc
|| Opc
== ARM::tBcc
|| Opc
== ARM::t2Bcc
;
291 bool isJumpTableBranchOpcode(int Opc
) {
292 return Opc
== ARM::BR_JTr
|| Opc
== ARM::BR_JTm
|| Opc
== ARM::BR_JTadd
||
293 Opc
== ARM::tBR_JTr
|| Opc
== ARM::t2BR_JT
;
296 /// getInstrPredicate - If instruction is predicated, returns its predicate
297 /// condition, otherwise returns AL. It also returns the condition code
298 /// register by reference.
299 ARMCC::CondCodes
getInstrPredicate(MachineInstr
*MI
, unsigned &PredReg
);
301 int getMatchingCondBranchOpcode(int Opc
);
303 /// emitARMRegPlusImmediate / emitT2RegPlusImmediate - Emits a series of
304 /// instructions to materializea destreg = basereg + immediate in ARM / Thumb2
306 void emitARMRegPlusImmediate(MachineBasicBlock
&MBB
,
307 MachineBasicBlock::iterator
&MBBI
, DebugLoc dl
,
308 unsigned DestReg
, unsigned BaseReg
, int NumBytes
,
309 ARMCC::CondCodes Pred
, unsigned PredReg
,
310 const ARMBaseInstrInfo
&TII
);
312 void emitT2RegPlusImmediate(MachineBasicBlock
&MBB
,
313 MachineBasicBlock::iterator
&MBBI
, DebugLoc dl
,
314 unsigned DestReg
, unsigned BaseReg
, int NumBytes
,
315 ARMCC::CondCodes Pred
, unsigned PredReg
,
316 const ARMBaseInstrInfo
&TII
);
319 /// rewriteARMFrameIndex / rewriteT2FrameIndex -
320 /// Rewrite MI to access 'Offset' bytes from the FP. Return false if the
321 /// offset could not be handled directly in MI, and return the left-over
322 /// portion by reference.
323 bool rewriteARMFrameIndex(MachineInstr
&MI
, unsigned FrameRegIdx
,
324 unsigned FrameReg
, int &Offset
,
325 const ARMBaseInstrInfo
&TII
);
327 bool rewriteT2FrameIndex(MachineInstr
&MI
, unsigned FrameRegIdx
,
328 unsigned FrameReg
, int &Offset
,
329 const ARMBaseInstrInfo
&TII
);
331 } // End llvm namespace