blob: ca8b9a02405a59afc9dfeeb978f6a0241051f722 [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 "llvm/CodeGen/MachineInstrBuilder.h"
19#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng48575f62010-12-05 22:04:16 +000020#include "llvm/ADT/DenseMap.h"
21#include "llvm/ADT/SmallSet.h"
David Goodwin334c2642009-07-08 16:09:28 +000022
23namespace llvm {
Chris Lattner4dbbe342010-07-20 21:17:29 +000024 class ARMSubtarget;
25 class ARMBaseRegisterInfo;
David Goodwin334c2642009-07-08 16:09:28 +000026
27/// ARMII - This namespace holds all of the target specific flags that
28/// instruction info tracks.
29///
30namespace ARMII {
31 enum {
32 //===------------------------------------------------------------------===//
33 // Instruction Flags.
34
35 //===------------------------------------------------------------------===//
36 // This four-bit field describes the addressing mode used.
37
Jim Grosbachd86609f2010-10-05 18:14:55 +000038 AddrModeMask = 0x1f,
David Goodwin334c2642009-07-08 16:09:28 +000039 AddrModeNone = 0,
40 AddrMode1 = 1,
41 AddrMode2 = 2,
42 AddrMode3 = 3,
43 AddrMode4 = 4,
44 AddrMode5 = 5,
45 AddrMode6 = 6,
46 AddrModeT1_1 = 7,
47 AddrModeT1_2 = 8,
48 AddrModeT1_4 = 9,
49 AddrModeT1_s = 10, // i8 * 4 for pc and sp relative data
50 AddrModeT2_i12 = 11,
51 AddrModeT2_i8 = 12,
52 AddrModeT2_so = 13,
53 AddrModeT2_pc = 14, // +/- i12 for pc relative data
54 AddrModeT2_i8s4 = 15, // i8 * 4
Jim Grosbach3e556122010-10-26 22:37:02 +000055 AddrMode_i12 = 16,
David Goodwin334c2642009-07-08 16:09:28 +000056
57 // Size* - Flags to keep track of the size of an instruction.
Jim Grosbachd86609f2010-10-05 18:14:55 +000058 SizeShift = 5,
David Goodwin334c2642009-07-08 16:09:28 +000059 SizeMask = 7 << SizeShift,
60 SizeSpecial = 1, // 0 byte pseudo or special case.
61 Size8Bytes = 2,
62 Size4Bytes = 3,
63 Size2Bytes = 4,
64
Bob Wilsonbffb5b32010-03-13 07:34:35 +000065 // IndexMode - Unindex, pre-indexed, or post-indexed are valid for load
66 // and store ops only. Generic "updating" flag is used for ld/st multiple.
Jim Grosbachd86609f2010-10-05 18:14:55 +000067 IndexModeShift = 8,
David Goodwin334c2642009-07-08 16:09:28 +000068 IndexModeMask = 3 << IndexModeShift,
69 IndexModePre = 1,
70 IndexModePost = 2,
Bob Wilsonbffb5b32010-03-13 07:34:35 +000071 IndexModeUpd = 3,
David Goodwin334c2642009-07-08 16:09:28 +000072
73 //===------------------------------------------------------------------===//
74 // Instruction encoding formats.
75 //
Jim Grosbachd86609f2010-10-05 18:14:55 +000076 FormShift = 10,
David Goodwin334c2642009-07-08 16:09:28 +000077 FormMask = 0x3f << FormShift,
78
79 // Pseudo instructions
80 Pseudo = 0 << FormShift,
81
82 // Multiply instructions
83 MulFrm = 1 << FormShift,
84
85 // Branch instructions
86 BrFrm = 2 << FormShift,
87 BrMiscFrm = 3 << FormShift,
88
89 // Data Processing instructions
90 DPFrm = 4 << FormShift,
91 DPSoRegFrm = 5 << FormShift,
92
93 // Load and Store
94 LdFrm = 6 << FormShift,
95 StFrm = 7 << FormShift,
96 LdMiscFrm = 8 << FormShift,
97 StMiscFrm = 9 << FormShift,
98 LdStMulFrm = 10 << FormShift,
99
Johnny Chen81f04d52010-03-19 17:39:00 +0000100 LdStExFrm = 11 << FormShift,
Jim Grosbach5278eb82009-12-11 01:42:04 +0000101
David Goodwin334c2642009-07-08 16:09:28 +0000102 // Miscellaneous arithmetic instructions
Johnny Chen81f04d52010-03-19 17:39:00 +0000103 ArithMiscFrm = 12 << FormShift,
Bob Wilson9a1c1892010-08-11 00:01:18 +0000104 SatFrm = 13 << FormShift,
David Goodwin334c2642009-07-08 16:09:28 +0000105
106 // Extend instructions
Bob Wilson9a1c1892010-08-11 00:01:18 +0000107 ExtFrm = 14 << FormShift,
David Goodwin334c2642009-07-08 16:09:28 +0000108
109 // VFP formats
Bob Wilson9a1c1892010-08-11 00:01:18 +0000110 VFPUnaryFrm = 15 << FormShift,
111 VFPBinaryFrm = 16 << FormShift,
112 VFPConv1Frm = 17 << FormShift,
113 VFPConv2Frm = 18 << FormShift,
114 VFPConv3Frm = 19 << FormShift,
115 VFPConv4Frm = 20 << FormShift,
116 VFPConv5Frm = 21 << FormShift,
117 VFPLdStFrm = 22 << FormShift,
118 VFPLdStMulFrm = 23 << FormShift,
119 VFPMiscFrm = 24 << FormShift,
David Goodwin334c2642009-07-08 16:09:28 +0000120
121 // Thumb format
Bob Wilson9a1c1892010-08-11 00:01:18 +0000122 ThumbFrm = 25 << FormShift,
David Goodwin334c2642009-07-08 16:09:28 +0000123
Bob Wilson26532632010-06-25 23:45:37 +0000124 // Miscelleaneous format
Bob Wilson9a1c1892010-08-11 00:01:18 +0000125 MiscFrm = 26 << FormShift,
Bob Wilson26532632010-06-25 23:45:37 +0000126
Bob Wilson1a913ed2010-06-11 21:34:50 +0000127 // NEON formats
Bob Wilson9a1c1892010-08-11 00:01:18 +0000128 NGetLnFrm = 27 << FormShift,
129 NSetLnFrm = 28 << FormShift,
130 NDupFrm = 29 << FormShift,
131 NLdStFrm = 30 << FormShift,
132 N1RegModImmFrm= 31 << FormShift,
133 N2RegFrm = 32 << FormShift,
134 NVCVTFrm = 33 << FormShift,
135 NVDupLnFrm = 34 << FormShift,
136 N2RegVShLFrm = 35 << FormShift,
137 N2RegVShRFrm = 36 << FormShift,
138 N3RegFrm = 37 << FormShift,
139 N3RegVShFrm = 38 << FormShift,
140 NVExtFrm = 39 << FormShift,
141 NVMulSLFrm = 40 << FormShift,
142 NVTBLFrm = 41 << FormShift,
David Goodwin334c2642009-07-08 16:09:28 +0000143
144 //===------------------------------------------------------------------===//
145 // Misc flags.
146
147 // UnaryDP - Indicates this is a unary data processing instruction, i.e.
148 // it doesn't have a Rn operand.
Jim Grosbachd86609f2010-10-05 18:14:55 +0000149 UnaryDP = 1 << 16,
David Goodwin334c2642009-07-08 16:09:28 +0000150
151 // Xform16Bit - Indicates this Thumb2 instruction may be transformed into
152 // a 16-bit Thumb instruction if certain conditions are met.
Jim Grosbachd86609f2010-10-05 18:14:55 +0000153 Xform16Bit = 1 << 17,
David Goodwin334c2642009-07-08 16:09:28 +0000154
155 //===------------------------------------------------------------------===//
Anton Korobeynikovf95215f2009-11-02 00:10:38 +0000156 // Code domain.
Jim Grosbachd86609f2010-10-05 18:14:55 +0000157 DomainShift = 18,
Anton Korobeynikovf95215f2009-11-02 00:10:38 +0000158 DomainMask = 3 << DomainShift,
159 DomainGeneral = 0 << DomainShift,
160 DomainVFP = 1 << DomainShift,
161 DomainNEON = 2 << DomainShift,
162
163 //===------------------------------------------------------------------===//
David Goodwin334c2642009-07-08 16:09:28 +0000164 // Field shifts - such shifts are used to set field while generating
165 // machine instructions.
Jim Grosbach42fac8e2010-10-11 23:16:21 +0000166 //
167 // FIXME: This list will need adjusting/fixing as the MC code emitter
168 // takes shape and the ARMCodeEmitter.cpp bits go away.
169 ShiftTypeShift = 4,
170
David Goodwin334c2642009-07-08 16:09:28 +0000171 M_BitShift = 5,
172 ShiftImmShift = 5,
173 ShiftShift = 7,
174 N_BitShift = 7,
175 ImmHiShift = 8,
176 SoRotImmShift = 8,
177 RegRsShift = 8,
178 ExtRotImmShift = 10,
179 RegRdLoShift = 12,
180 RegRdShift = 12,
181 RegRdHiShift = 16,
182 RegRnShift = 16,
183 S_BitShift = 20,
184 W_BitShift = 21,
185 AM3_I_BitShift = 22,
186 D_BitShift = 22,
187 U_BitShift = 23,
188 P_BitShift = 24,
189 I_BitShift = 25,
190 CondShift = 28
191 };
Evan Chengb46aaa32009-07-19 19:16:46 +0000192}
193
David Goodwin334c2642009-07-08 16:09:28 +0000194class ARMBaseInstrInfo : public TargetInstrInfoImpl {
Chris Lattner4dbbe342010-07-20 21:17:29 +0000195 const ARMSubtarget &Subtarget;
Evan Cheng48575f62010-12-05 22:04:16 +0000196
David Goodwin334c2642009-07-08 16:09:28 +0000197protected:
198 // Can be only subclassed.
Anton Korobeynikovf95215f2009-11-02 00:10:38 +0000199 explicit ARMBaseInstrInfo(const ARMSubtarget &STI);
Evan Cheng48575f62010-12-05 22:04:16 +0000200
David Goodwin334c2642009-07-08 16:09:28 +0000201public:
202 // Return the non-pre/post incrementing version of 'Opc'. Return 0
203 // if there is not such an opcode.
204 virtual unsigned getUnindexedOpcode(unsigned Opc) const =0;
205
David Goodwin334c2642009-07-08 16:09:28 +0000206 virtual MachineInstr *convertToThreeAddress(MachineFunction::iterator &MFI,
207 MachineBasicBlock::iterator &MBBI,
208 LiveVariables *LV) const;
209
210 virtual const ARMBaseRegisterInfo &getRegisterInfo() const =0;
Anton Korobeynikovf95215f2009-11-02 00:10:38 +0000211 const ARMSubtarget &getSubtarget() const { return Subtarget; }
David Goodwin334c2642009-07-08 16:09:28 +0000212
Evan Cheng48575f62010-12-05 22:04:16 +0000213 ScheduleHazardRecognizer *
214 CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II) const;
215
David Goodwin334c2642009-07-08 16:09:28 +0000216 // Branch analysis.
217 virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
218 MachineBasicBlock *&FBB,
219 SmallVectorImpl<MachineOperand> &Cond,
Chris Lattner20628752010-07-22 21:27:00 +0000220 bool AllowModify = false) const;
David Goodwin334c2642009-07-08 16:09:28 +0000221 virtual unsigned RemoveBranch(MachineBasicBlock &MBB) const;
222 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
223 MachineBasicBlock *FBB,
Stuart Hastings3bf91252010-06-17 22:43:56 +0000224 const SmallVectorImpl<MachineOperand> &Cond,
225 DebugLoc DL) const;
David Goodwin334c2642009-07-08 16:09:28 +0000226
227 virtual
228 bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const;
229
230 // Predication support.
Evan Chengab331502009-07-10 01:38:27 +0000231 bool isPredicated(const MachineInstr *MI) const {
232 int PIdx = MI->findFirstPredOperandIdx();
233 return PIdx != -1 && MI->getOperand(PIdx).getImm() != ARMCC::AL;
234 }
David Goodwin334c2642009-07-08 16:09:28 +0000235
236 ARMCC::CondCodes getPredicate(const MachineInstr *MI) const {
237 int PIdx = MI->findFirstPredOperandIdx();
238 return PIdx != -1 ? (ARMCC::CondCodes)MI->getOperand(PIdx).getImm()
239 : ARMCC::AL;
240 }
241
242 virtual
243 bool PredicateInstruction(MachineInstr *MI,
244 const SmallVectorImpl<MachineOperand> &Pred) const;
245
246 virtual
247 bool SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
248 const SmallVectorImpl<MachineOperand> &Pred2) const;
249
250 virtual bool DefinesPredicate(MachineInstr *MI,
251 std::vector<MachineOperand> &Pred) const;
252
Evan Chengac0869d2009-11-21 06:21:52 +0000253 virtual bool isPredicable(MachineInstr *MI) const;
254
David Goodwin334c2642009-07-08 16:09:28 +0000255 /// GetInstSize - Returns the size of the specified MachineInstr.
256 ///
257 virtual unsigned GetInstSizeInBytes(const MachineInstr* MI) const;
258
David Goodwin334c2642009-07-08 16:09:28 +0000259 virtual unsigned isLoadFromStackSlot(const MachineInstr *MI,
260 int &FrameIndex) const;
261 virtual unsigned isStoreToStackSlot(const MachineInstr *MI,
262 int &FrameIndex) const;
263
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000264 virtual void copyPhysReg(MachineBasicBlock &MBB,
265 MachineBasicBlock::iterator I, DebugLoc DL,
266 unsigned DestReg, unsigned SrcReg,
267 bool KillSrc) const;
Evan Cheng5732ca02009-07-27 03:14:20 +0000268
David Goodwin334c2642009-07-08 16:09:28 +0000269 virtual void storeRegToStackSlot(MachineBasicBlock &MBB,
270 MachineBasicBlock::iterator MBBI,
271 unsigned SrcReg, bool isKill, int FrameIndex,
Evan Cheng746ad692010-05-06 19:06:44 +0000272 const TargetRegisterClass *RC,
273 const TargetRegisterInfo *TRI) const;
David Goodwin334c2642009-07-08 16:09:28 +0000274
David Goodwin334c2642009-07-08 16:09:28 +0000275 virtual void loadRegFromStackSlot(MachineBasicBlock &MBB,
276 MachineBasicBlock::iterator MBBI,
277 unsigned DestReg, int FrameIndex,
Evan Cheng746ad692010-05-06 19:06:44 +0000278 const TargetRegisterClass *RC,
279 const TargetRegisterInfo *TRI) const;
David Goodwin334c2642009-07-08 16:09:28 +0000280
Evan Cheng62b50652010-04-26 07:39:25 +0000281 virtual MachineInstr *emitFrameIndexDebugValue(MachineFunction &MF,
Evan Cheng8601a3d2010-04-29 01:13:30 +0000282 int FrameIx,
Evan Cheng62b50652010-04-26 07:39:25 +0000283 uint64_t Offset,
284 const MDNode *MDPtr,
285 DebugLoc DL) const;
286
Evan Chengfdc83402009-11-08 00:15:23 +0000287 virtual void reMaterialize(MachineBasicBlock &MBB,
288 MachineBasicBlock::iterator MI,
289 unsigned DestReg, unsigned SubIdx,
Evan Chengd57cdd52009-11-14 02:55:43 +0000290 const MachineInstr *Orig,
Jakob Stoklund Olesen9edf7de2010-06-02 22:47:25 +0000291 const TargetRegisterInfo &TRI) const;
Evan Chengfdc83402009-11-08 00:15:23 +0000292
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +0000293 MachineInstr *duplicate(MachineInstr *Orig, MachineFunction &MF) const;
294
Evan Cheng506049f2010-03-03 01:44:33 +0000295 virtual bool produceSameValue(const MachineInstr *MI0,
296 const MachineInstr *MI1) const;
Evan Cheng86050dc2010-06-18 23:09:54 +0000297
Bill Wendling4b722102010-06-23 23:00:16 +0000298 /// areLoadsFromSameBasePtr - This is used by the pre-regalloc scheduler to
299 /// determine if two loads are loading from the same base address. It should
300 /// only return true if the base pointers are the same and the only
301 /// differences between the two addresses is the offset. It also returns the
302 /// offsets by reference.
303 virtual bool areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
304 int64_t &Offset1, int64_t &Offset2)const;
305
306 /// shouldScheduleLoadsNear - This is a used by the pre-regalloc scheduler to
307 /// determine (in conjuction with areLoadsFromSameBasePtr) if two loads should
308 /// be scheduled togther. On some targets if two loads are loading from
309 /// addresses in the same cache line, it's better if they are scheduled
310 /// together. This function takes two integers that represent the load offsets
311 /// from the common base address. It returns true if it decides it's desirable
312 /// to schedule the two loads together. "NumLoads" is the number of loads that
313 /// have already been scheduled after Load1.
314 virtual bool shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
315 int64_t Offset1, int64_t Offset2,
316 unsigned NumLoads) const;
317
Evan Cheng86050dc2010-06-18 23:09:54 +0000318 virtual bool isSchedulingBoundary(const MachineInstr *MI,
319 const MachineBasicBlock *MBB,
320 const MachineFunction &MF) const;
Evan Cheng13151432010-06-25 22:42:03 +0000321
322 virtual bool isProfitableToIfCvt(MachineBasicBlock &MBB,
Evan Cheng8239daf2010-11-03 00:45:17 +0000323 unsigned NumCyles, unsigned ExtraPredCycles,
Owen Andersone3cc84a2010-10-01 22:45:50 +0000324 float Prob, float Confidence) const;
Evan Cheng13151432010-06-25 22:42:03 +0000325
Evan Cheng8239daf2010-11-03 00:45:17 +0000326 virtual bool isProfitableToIfCvt(MachineBasicBlock &TMBB,
327 unsigned NumT, unsigned ExtraT,
328 MachineBasicBlock &FMBB,
329 unsigned NumF, unsigned ExtraF,
Owen Andersone3cc84a2010-10-01 22:45:50 +0000330 float Probability, float Confidence) const;
Evan Cheng13151432010-06-25 22:42:03 +0000331
332 virtual bool isProfitableToDupForIfCvt(MachineBasicBlock &MBB,
Evan Cheng8239daf2010-11-03 00:45:17 +0000333 unsigned NumCyles,
Owen Andersone3cc84a2010-10-01 22:45:50 +0000334 float Probability,
335 float Confidence) const {
Evan Cheng8239daf2010-11-03 00:45:17 +0000336 return NumCyles == 1;
Evan Cheng13151432010-06-25 22:42:03 +0000337 }
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +0000338
Bill Wendlingc98af332010-08-08 05:04:59 +0000339 /// AnalyzeCompare - For a comparison instruction, return the source register
340 /// in SrcReg and the value it compares against in CmpValue. Return true if
341 /// the comparison instruction can be analyzed.
342 virtual bool AnalyzeCompare(const MachineInstr *MI, unsigned &SrcReg,
Gabor Greif04ac81d2010-09-21 12:01:15 +0000343 int &CmpMask, int &CmpValue) const;
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +0000344
Bill Wendlinga6556862010-09-11 00:13:50 +0000345 /// OptimizeCompareInstr - Convert the instruction to set the zero flag so
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +0000346 /// that we can remove a "comparison with zero".
Bill Wendlinga6556862010-09-11 00:13:50 +0000347 virtual bool OptimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg,
Gabor Greif04ac81d2010-09-21 12:01:15 +0000348 int CmpMask, int CmpValue,
Evan Chengeb96a2f2010-11-15 21:20:45 +0000349 const MachineRegisterInfo *MRI) const;
Evan Cheng5f54ce32010-09-09 18:18:55 +0000350
Evan Chengc4af4632010-11-17 20:13:28 +0000351 /// FoldImmediate - 'Reg' is known to be defined by a move immediate
352 /// instruction, try to fold the immediate into the use instruction.
353 virtual bool FoldImmediate(MachineInstr *UseMI, MachineInstr *DefMI,
354 unsigned Reg, MachineRegisterInfo *MRI) const;
355
Evan Cheng8239daf2010-11-03 00:45:17 +0000356 virtual unsigned getNumMicroOps(const InstrItineraryData *ItinData,
357 const MachineInstr *MI) const;
Evan Chenga0792de2010-10-06 06:27:31 +0000358
359 virtual
360 int getOperandLatency(const InstrItineraryData *ItinData,
361 const MachineInstr *DefMI, unsigned DefIdx,
362 const MachineInstr *UseMI, unsigned UseIdx) const;
363 virtual
364 int getOperandLatency(const InstrItineraryData *ItinData,
365 SDNode *DefNode, unsigned DefIdx,
366 SDNode *UseNode, unsigned UseIdx) const;
367private:
Evan Cheng344d9db2010-10-07 23:12:15 +0000368 int getVLDMDefCycle(const InstrItineraryData *ItinData,
369 const TargetInstrDesc &DefTID,
370 unsigned DefClass,
371 unsigned DefIdx, unsigned DefAlign) const;
372 int getLDMDefCycle(const InstrItineraryData *ItinData,
373 const TargetInstrDesc &DefTID,
374 unsigned DefClass,
375 unsigned DefIdx, unsigned DefAlign) const;
376 int getVSTMUseCycle(const InstrItineraryData *ItinData,
377 const TargetInstrDesc &UseTID,
378 unsigned UseClass,
379 unsigned UseIdx, unsigned UseAlign) const;
380 int getSTMUseCycle(const InstrItineraryData *ItinData,
381 const TargetInstrDesc &UseTID,
382 unsigned UseClass,
383 unsigned UseIdx, unsigned UseAlign) const;
Evan Chenga0792de2010-10-06 06:27:31 +0000384 int getOperandLatency(const InstrItineraryData *ItinData,
385 const TargetInstrDesc &DefTID,
386 unsigned DefIdx, unsigned DefAlign,
387 const TargetInstrDesc &UseTID,
388 unsigned UseIdx, unsigned UseAlign) const;
Evan Cheng23128422010-10-19 18:58:51 +0000389
Evan Cheng8239daf2010-11-03 00:45:17 +0000390 int getInstrLatency(const InstrItineraryData *ItinData,
391 const MachineInstr *MI, unsigned *PredCost = 0) const;
392
393 int getInstrLatency(const InstrItineraryData *ItinData,
394 SDNode *Node) const;
395
Evan Cheng23128422010-10-19 18:58:51 +0000396 bool hasHighOperandLatency(const InstrItineraryData *ItinData,
397 const MachineRegisterInfo *MRI,
398 const MachineInstr *DefMI, unsigned DefIdx,
399 const MachineInstr *UseMI, unsigned UseIdx) const;
Evan Chengc8141df2010-10-26 02:08:50 +0000400 bool hasLowDefLatency(const InstrItineraryData *ItinData,
401 const MachineInstr *DefMI, unsigned DefIdx) const;
Evan Cheng48575f62010-12-05 22:04:16 +0000402
403private:
404 /// Modeling special VFP / NEON fp MLA / MLS hazards.
405
406 /// MLxEntryMap - Map fp MLA / MLS to the corresponding entry in the internal
407 /// MLx table.
408 DenseMap<unsigned, unsigned> MLxEntryMap;
409
410 /// MLxHazardOpcodes - Set of add / sub and multiply opcodes that would cause
411 /// stalls when scheduled together with fp MLA / MLS opcodes.
412 SmallSet<unsigned, 16> MLxHazardOpcodes;
413
414public:
415 /// isFpMLxInstruction - Return true if the specified opcode is a fp MLA / MLS
416 /// instruction.
417 bool isFpMLxInstruction(unsigned Opcode) const {
418 return MLxEntryMap.count(Opcode);
419 }
420
421 /// isFpMLxInstruction - This version also returns the multiply opcode and the
422 /// addition / subtraction opcode to expand to. Return true for 'HasLane' for
423 /// the MLX instructions with an extra lane operand.
424 bool isFpMLxInstruction(unsigned Opcode, unsigned &MulOpc,
425 unsigned &AddSubOpc, bool &NegAcc,
426 bool &HasLane) const;
427
428 /// canCauseFpMLxStall - Return true if an instruction of the specified opcode
429 /// will cause stalls when scheduled after (within 4-cycle window) a fp
430 /// MLA / MLS instruction.
431 bool canCauseFpMLxStall(unsigned Opcode) const {
432 return MLxHazardOpcodes.count(Opcode);
433 }
David Goodwin334c2642009-07-08 16:09:28 +0000434};
Evan Cheng6495f632009-07-28 05:48:47 +0000435
436static inline
437const MachineInstrBuilder &AddDefaultPred(const MachineInstrBuilder &MIB) {
438 return MIB.addImm((int64_t)ARMCC::AL).addReg(0);
David Goodwin334c2642009-07-08 16:09:28 +0000439}
440
Evan Cheng6495f632009-07-28 05:48:47 +0000441static inline
442const MachineInstrBuilder &AddDefaultCC(const MachineInstrBuilder &MIB) {
443 return MIB.addReg(0);
444}
445
446static inline
Evan Chenge8af1f92009-08-10 02:37:24 +0000447const MachineInstrBuilder &AddDefaultT1CC(const MachineInstrBuilder &MIB,
448 bool isDead = false) {
449 return MIB.addReg(ARM::CPSR, getDefRegState(true) | getDeadRegState(isDead));
Evan Cheng6495f632009-07-28 05:48:47 +0000450}
451
452static inline
Evan Chengbc9b7542009-08-15 07:59:10 +0000453const MachineInstrBuilder &AddNoT1CC(const MachineInstrBuilder &MIB) {
454 return MIB.addReg(0);
455}
456
457static inline
Evan Cheng6495f632009-07-28 05:48:47 +0000458bool isUncondBranchOpcode(int Opc) {
459 return Opc == ARM::B || Opc == ARM::tB || Opc == ARM::t2B;
460}
461
462static inline
463bool isCondBranchOpcode(int Opc) {
464 return Opc == ARM::Bcc || Opc == ARM::tBcc || Opc == ARM::t2Bcc;
465}
466
467static inline
468bool isJumpTableBranchOpcode(int Opc) {
469 return Opc == ARM::BR_JTr || Opc == ARM::BR_JTm || Opc == ARM::BR_JTadd ||
470 Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT;
471}
472
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000473static inline
474bool isIndirectBranchOpcode(int Opc) {
Bill Wendling6e46d842010-11-30 00:48:15 +0000475 return Opc == ARM::BX || Opc == ARM::MOVPCRX || Opc == ARM::tBRIND;
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000476}
477
Evan Cheng8fb90362009-08-08 03:20:32 +0000478/// getInstrPredicate - If instruction is predicated, returns its predicate
479/// condition, otherwise returns AL. It also returns the condition code
480/// register by reference.
Evan Cheng5adb66a2009-09-28 09:14:39 +0000481ARMCC::CondCodes getInstrPredicate(const MachineInstr *MI, unsigned &PredReg);
Evan Cheng8fb90362009-08-08 03:20:32 +0000482
Evan Cheng6495f632009-07-28 05:48:47 +0000483int getMatchingCondBranchOpcode(int Opc);
484
485/// emitARMRegPlusImmediate / emitT2RegPlusImmediate - Emits a series of
486/// instructions to materializea destreg = basereg + immediate in ARM / Thumb2
487/// code.
488void emitARMRegPlusImmediate(MachineBasicBlock &MBB,
489 MachineBasicBlock::iterator &MBBI, DebugLoc dl,
490 unsigned DestReg, unsigned BaseReg, int NumBytes,
491 ARMCC::CondCodes Pred, unsigned PredReg,
492 const ARMBaseInstrInfo &TII);
493
494void emitT2RegPlusImmediate(MachineBasicBlock &MBB,
495 MachineBasicBlock::iterator &MBBI, DebugLoc dl,
496 unsigned DestReg, unsigned BaseReg, int NumBytes,
497 ARMCC::CondCodes Pred, unsigned PredReg,
498 const ARMBaseInstrInfo &TII);
Jim Grosbache4ad3872010-10-19 23:27:08 +0000499void emitThumbRegPlusImmediate(MachineBasicBlock &MBB,
500 MachineBasicBlock::iterator &MBBI,
501 unsigned DestReg, unsigned BaseReg,
502 int NumBytes, const TargetInstrInfo &TII,
503 const ARMBaseRegisterInfo& MRI,
504 DebugLoc dl);
Evan Cheng6495f632009-07-28 05:48:47 +0000505
506
Jim Grosbach764ab522009-08-11 15:33:49 +0000507/// rewriteARMFrameIndex / rewriteT2FrameIndex -
Evan Chengcdbb3f52009-08-27 01:23:50 +0000508/// Rewrite MI to access 'Offset' bytes from the FP. Return false if the
509/// offset could not be handled directly in MI, and return the left-over
510/// portion by reference.
511bool rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
512 unsigned FrameReg, int &Offset,
513 const ARMBaseInstrInfo &TII);
Evan Cheng6495f632009-07-28 05:48:47 +0000514
Evan Chengcdbb3f52009-08-27 01:23:50 +0000515bool rewriteT2FrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
516 unsigned FrameReg, int &Offset,
517 const ARMBaseInstrInfo &TII);
Evan Cheng6495f632009-07-28 05:48:47 +0000518
519} // End llvm namespace
520
David Goodwin334c2642009-07-08 16:09:28 +0000521#endif