blob: 057fd718fdb5d06eb586007170811a6e6e39a6ed [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +00001//===-- ARMBaseInstrInfo.cpp - ARM Instruction Information ----------------===//
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#include "ARMBaseInstrInfo.h"
15#include "ARM.h"
Craig Topper0e5233a2012-03-26 00:45:15 +000016#include "ARMBaseRegisterInfo.h"
Evan Chengd457e6e2009-11-07 04:04:34 +000017#include "ARMConstantPoolValue.h"
Evan Cheng48575f62010-12-05 22:04:16 +000018#include "ARMHazardRecognizer.h"
David Goodwin334c2642009-07-08 16:09:28 +000019#include "ARMMachineFunctionInfo.h"
Evan Chengee04a6d2011-07-20 23:34:39 +000020#include "MCTargetDesc/ARMAddressingModes.h"
Evan Chengfdc83402009-11-08 00:15:23 +000021#include "llvm/Constants.h"
22#include "llvm/Function.h"
23#include "llvm/GlobalValue.h"
David Goodwin334c2642009-07-08 16:09:28 +000024#include "llvm/CodeGen/LiveVariables.h"
Evan Chengd457e6e2009-11-07 04:04:34 +000025#include "llvm/CodeGen/MachineConstantPool.h"
David Goodwin334c2642009-07-08 16:09:28 +000026#include "llvm/CodeGen/MachineFrameInfo.h"
27#include "llvm/CodeGen/MachineInstrBuilder.h"
28#include "llvm/CodeGen/MachineJumpTableInfo.h"
Anton Korobeynikov249fb332009-10-07 00:06:35 +000029#include "llvm/CodeGen/MachineMemOperand.h"
Evan Cheng2457f2c2010-05-22 01:47:14 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Chengee04a6d2011-07-20 23:34:39 +000031#include "llvm/CodeGen/SelectionDAGNodes.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000032#include "llvm/MC/MCAsmInfo.h"
Jakub Staszakf81b7f62011-07-10 02:58:07 +000033#include "llvm/Support/BranchProbability.h"
David Goodwin334c2642009-07-08 16:09:28 +000034#include "llvm/Support/CommandLine.h"
Anton Korobeynikovf95215f2009-11-02 00:10:38 +000035#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000036#include "llvm/Support/ErrorHandling.h"
Bill Wendling40a5eb12010-11-01 20:41:43 +000037#include "llvm/ADT/STLExtras.h"
Evan Cheng22fee2d2011-06-28 20:07:07 +000038
Evan Cheng4db3cff2011-07-01 17:57:27 +000039#define GET_INSTRINFO_CTOR
Evan Cheng22fee2d2011-06-28 20:07:07 +000040#include "ARMGenInstrInfo.inc"
41
David Goodwin334c2642009-07-08 16:09:28 +000042using namespace llvm;
43
44static cl::opt<bool>
45EnableARM3Addr("enable-arm-3-addr-conv", cl::Hidden,
46 cl::desc("Enable ARM 2-addr to 3-addr conv"));
47
Jakob Stoklund Olesen61545822011-08-31 17:00:02 +000048static cl::opt<bool>
Jakob Stoklund Olesen3805d852011-11-15 23:53:18 +000049WidenVMOVS("widen-vmovs", cl::Hidden, cl::init(true),
Jakob Stoklund Olesen61545822011-08-31 17:00:02 +000050 cl::desc("Widen ARM vmovs to vmovd when possible"));
51
Evan Cheng48575f62010-12-05 22:04:16 +000052/// ARM_MLxEntry - Record information about MLA / MLS instructions.
53struct ARM_MLxEntry {
Craig Toppercd2859e2012-05-24 03:59:11 +000054 uint16_t MLxOpc; // MLA / MLS opcode
55 uint16_t MulOpc; // Expanded multiplication opcode
56 uint16_t AddSubOpc; // Expanded add / sub opcode
Evan Cheng48575f62010-12-05 22:04:16 +000057 bool NegAcc; // True if the acc is negated before the add / sub.
58 bool HasLane; // True if instruction has an extra "lane" operand.
59};
60
61static const ARM_MLxEntry ARM_MLxTable[] = {
62 // MLxOpc, MulOpc, AddSubOpc, NegAcc, HasLane
63 // fp scalar ops
64 { ARM::VMLAS, ARM::VMULS, ARM::VADDS, false, false },
65 { ARM::VMLSS, ARM::VMULS, ARM::VSUBS, false, false },
66 { ARM::VMLAD, ARM::VMULD, ARM::VADDD, false, false },
67 { ARM::VMLSD, ARM::VMULD, ARM::VSUBD, false, false },
Evan Cheng48575f62010-12-05 22:04:16 +000068 { ARM::VNMLAS, ARM::VNMULS, ARM::VSUBS, true, false },
69 { ARM::VNMLSS, ARM::VMULS, ARM::VSUBS, true, false },
70 { ARM::VNMLAD, ARM::VNMULD, ARM::VSUBD, true, false },
71 { ARM::VNMLSD, ARM::VMULD, ARM::VSUBD, true, false },
72
73 // fp SIMD ops
74 { ARM::VMLAfd, ARM::VMULfd, ARM::VADDfd, false, false },
75 { ARM::VMLSfd, ARM::VMULfd, ARM::VSUBfd, false, false },
76 { ARM::VMLAfq, ARM::VMULfq, ARM::VADDfq, false, false },
77 { ARM::VMLSfq, ARM::VMULfq, ARM::VSUBfq, false, false },
78 { ARM::VMLAslfd, ARM::VMULslfd, ARM::VADDfd, false, true },
79 { ARM::VMLSslfd, ARM::VMULslfd, ARM::VSUBfd, false, true },
80 { ARM::VMLAslfq, ARM::VMULslfq, ARM::VADDfq, false, true },
81 { ARM::VMLSslfq, ARM::VMULslfq, ARM::VSUBfq, false, true },
82};
83
Anton Korobeynikovf95215f2009-11-02 00:10:38 +000084ARMBaseInstrInfo::ARMBaseInstrInfo(const ARMSubtarget& STI)
Evan Cheng4db3cff2011-07-01 17:57:27 +000085 : ARMGenInstrInfo(ARM::ADJCALLSTACKDOWN, ARM::ADJCALLSTACKUP),
Anton Korobeynikovf95215f2009-11-02 00:10:38 +000086 Subtarget(STI) {
Evan Cheng48575f62010-12-05 22:04:16 +000087 for (unsigned i = 0, e = array_lengthof(ARM_MLxTable); i != e; ++i) {
88 if (!MLxEntryMap.insert(std::make_pair(ARM_MLxTable[i].MLxOpc, i)).second)
89 assert(false && "Duplicated entries?");
90 MLxHazardOpcodes.insert(ARM_MLxTable[i].AddSubOpc);
91 MLxHazardOpcodes.insert(ARM_MLxTable[i].MulOpc);
92 }
93}
94
Andrew Trick2da8bc82010-12-24 05:03:26 +000095// Use a ScoreboardHazardRecognizer for prepass ARM scheduling. TargetInstrImpl
96// currently defaults to no prepass hazard recognizer.
Evan Cheng48575f62010-12-05 22:04:16 +000097ScheduleHazardRecognizer *ARMBaseInstrInfo::
Andrew Trick2da8bc82010-12-24 05:03:26 +000098CreateTargetHazardRecognizer(const TargetMachine *TM,
99 const ScheduleDAG *DAG) const {
Andrew Trickc8bfd1d2011-01-21 05:51:33 +0000100 if (usePreRAHazardRecognizer()) {
Andrew Trick2da8bc82010-12-24 05:03:26 +0000101 const InstrItineraryData *II = TM->getInstrItineraryData();
102 return new ScoreboardHazardRecognizer(II, DAG, "pre-RA-sched");
103 }
104 return TargetInstrInfoImpl::CreateTargetHazardRecognizer(TM, DAG);
105}
106
107ScheduleHazardRecognizer *ARMBaseInstrInfo::
108CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
109 const ScheduleDAG *DAG) const {
Evan Cheng48575f62010-12-05 22:04:16 +0000110 if (Subtarget.isThumb2() || Subtarget.hasVFP2())
111 return (ScheduleHazardRecognizer *)
Andrew Trick2da8bc82010-12-24 05:03:26 +0000112 new ARMHazardRecognizer(II, *this, getRegisterInfo(), Subtarget, DAG);
113 return TargetInstrInfoImpl::CreateTargetPostRAHazardRecognizer(II, DAG);
David Goodwin334c2642009-07-08 16:09:28 +0000114}
115
116MachineInstr *
117ARMBaseInstrInfo::convertToThreeAddress(MachineFunction::iterator &MFI,
118 MachineBasicBlock::iterator &MBBI,
119 LiveVariables *LV) const {
Evan Cheng78703dd2009-07-27 18:44:00 +0000120 // FIXME: Thumb2 support.
121
David Goodwin334c2642009-07-08 16:09:28 +0000122 if (!EnableARM3Addr)
123 return NULL;
124
125 MachineInstr *MI = MBBI;
126 MachineFunction &MF = *MI->getParent()->getParent();
Bruno Cardoso Lopes99405df2010-06-08 22:51:23 +0000127 uint64_t TSFlags = MI->getDesc().TSFlags;
David Goodwin334c2642009-07-08 16:09:28 +0000128 bool isPre = false;
129 switch ((TSFlags & ARMII::IndexModeMask) >> ARMII::IndexModeShift) {
130 default: return NULL;
131 case ARMII::IndexModePre:
132 isPre = true;
133 break;
134 case ARMII::IndexModePost:
135 break;
136 }
137
138 // Try splitting an indexed load/store to an un-indexed one plus an add/sub
139 // operation.
140 unsigned MemOpc = getUnindexedOpcode(MI->getOpcode());
141 if (MemOpc == 0)
142 return NULL;
143
144 MachineInstr *UpdateMI = NULL;
145 MachineInstr *MemMI = NULL;
146 unsigned AddrMode = (TSFlags & ARMII::AddrModeMask);
Evan Chenge837dea2011-06-28 19:10:37 +0000147 const MCInstrDesc &MCID = MI->getDesc();
148 unsigned NumOps = MCID.getNumOperands();
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000149 bool isLoad = !MI->mayStore();
David Goodwin334c2642009-07-08 16:09:28 +0000150 const MachineOperand &WB = isLoad ? MI->getOperand(1) : MI->getOperand(0);
151 const MachineOperand &Base = MI->getOperand(2);
152 const MachineOperand &Offset = MI->getOperand(NumOps-3);
153 unsigned WBReg = WB.getReg();
154 unsigned BaseReg = Base.getReg();
155 unsigned OffReg = Offset.getReg();
156 unsigned OffImm = MI->getOperand(NumOps-2).getImm();
157 ARMCC::CondCodes Pred = (ARMCC::CondCodes)MI->getOperand(NumOps-1).getImm();
158 switch (AddrMode) {
Craig Topperbc219812012-02-07 02:50:20 +0000159 default: llvm_unreachable("Unknown indexed op!");
David Goodwin334c2642009-07-08 16:09:28 +0000160 case ARMII::AddrMode2: {
161 bool isSub = ARM_AM::getAM2Op(OffImm) == ARM_AM::sub;
162 unsigned Amt = ARM_AM::getAM2Offset(OffImm);
163 if (OffReg == 0) {
Evan Chenge7cbe412009-07-08 21:03:57 +0000164 if (ARM_AM::getSOImmVal(Amt) == -1)
David Goodwin334c2642009-07-08 16:09:28 +0000165 // Can't encode it in a so_imm operand. This transformation will
166 // add more than 1 instruction. Abandon!
167 return NULL;
168 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng78703dd2009-07-27 18:44:00 +0000169 get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
Evan Chenge7cbe412009-07-08 21:03:57 +0000170 .addReg(BaseReg).addImm(Amt)
David Goodwin334c2642009-07-08 16:09:28 +0000171 .addImm(Pred).addReg(0).addReg(0);
172 } else if (Amt != 0) {
173 ARM_AM::ShiftOpc ShOpc = ARM_AM::getAM2ShiftOpc(OffImm);
174 unsigned SOOpc = ARM_AM::getSORegOpc(ShOpc, Amt);
175 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Owen Anderson92a20222011-07-21 18:54:16 +0000176 get(isSub ? ARM::SUBrsi : ARM::ADDrsi), WBReg)
David Goodwin334c2642009-07-08 16:09:28 +0000177 .addReg(BaseReg).addReg(OffReg).addReg(0).addImm(SOOpc)
178 .addImm(Pred).addReg(0).addReg(0);
179 } else
180 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng78703dd2009-07-27 18:44:00 +0000181 get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
David Goodwin334c2642009-07-08 16:09:28 +0000182 .addReg(BaseReg).addReg(OffReg)
183 .addImm(Pred).addReg(0).addReg(0);
184 break;
185 }
186 case ARMII::AddrMode3 : {
187 bool isSub = ARM_AM::getAM3Op(OffImm) == ARM_AM::sub;
188 unsigned Amt = ARM_AM::getAM3Offset(OffImm);
189 if (OffReg == 0)
190 // Immediate is 8-bits. It's guaranteed to fit in a so_imm operand.
191 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng78703dd2009-07-27 18:44:00 +0000192 get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
David Goodwin334c2642009-07-08 16:09:28 +0000193 .addReg(BaseReg).addImm(Amt)
194 .addImm(Pred).addReg(0).addReg(0);
195 else
196 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng78703dd2009-07-27 18:44:00 +0000197 get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
David Goodwin334c2642009-07-08 16:09:28 +0000198 .addReg(BaseReg).addReg(OffReg)
199 .addImm(Pred).addReg(0).addReg(0);
200 break;
201 }
202 }
203
204 std::vector<MachineInstr*> NewMIs;
205 if (isPre) {
206 if (isLoad)
207 MemMI = BuildMI(MF, MI->getDebugLoc(),
208 get(MemOpc), MI->getOperand(0).getReg())
Jim Grosbach3e556122010-10-26 22:37:02 +0000209 .addReg(WBReg).addImm(0).addImm(Pred);
David Goodwin334c2642009-07-08 16:09:28 +0000210 else
211 MemMI = BuildMI(MF, MI->getDebugLoc(),
212 get(MemOpc)).addReg(MI->getOperand(1).getReg())
213 .addReg(WBReg).addReg(0).addImm(0).addImm(Pred);
214 NewMIs.push_back(MemMI);
215 NewMIs.push_back(UpdateMI);
216 } else {
217 if (isLoad)
218 MemMI = BuildMI(MF, MI->getDebugLoc(),
219 get(MemOpc), MI->getOperand(0).getReg())
Jim Grosbach3e556122010-10-26 22:37:02 +0000220 .addReg(BaseReg).addImm(0).addImm(Pred);
David Goodwin334c2642009-07-08 16:09:28 +0000221 else
222 MemMI = BuildMI(MF, MI->getDebugLoc(),
223 get(MemOpc)).addReg(MI->getOperand(1).getReg())
224 .addReg(BaseReg).addReg(0).addImm(0).addImm(Pred);
225 if (WB.isDead())
226 UpdateMI->getOperand(0).setIsDead();
227 NewMIs.push_back(UpdateMI);
228 NewMIs.push_back(MemMI);
229 }
230
231 // Transfer LiveVariables states, kill / dead info.
232 if (LV) {
233 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
234 MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000235 if (MO.isReg() && TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
David Goodwin334c2642009-07-08 16:09:28 +0000236 unsigned Reg = MO.getReg();
237
238 LiveVariables::VarInfo &VI = LV->getVarInfo(Reg);
239 if (MO.isDef()) {
240 MachineInstr *NewMI = (Reg == WBReg) ? UpdateMI : MemMI;
241 if (MO.isDead())
242 LV->addVirtualRegisterDead(Reg, NewMI);
243 }
244 if (MO.isUse() && MO.isKill()) {
245 for (unsigned j = 0; j < 2; ++j) {
246 // Look at the two new MI's in reverse order.
247 MachineInstr *NewMI = NewMIs[j];
248 if (!NewMI->readsRegister(Reg))
249 continue;
250 LV->addVirtualRegisterKilled(Reg, NewMI);
251 if (VI.removeKill(MI))
252 VI.Kills.push_back(NewMI);
253 break;
254 }
255 }
256 }
257 }
258 }
259
260 MFI->insert(MBBI, NewMIs[1]);
261 MFI->insert(MBBI, NewMIs[0]);
262 return NewMIs[0];
263}
264
265// Branch analysis.
266bool
267ARMBaseInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,MachineBasicBlock *&TBB,
268 MachineBasicBlock *&FBB,
269 SmallVectorImpl<MachineOperand> &Cond,
270 bool AllowModify) const {
271 // If the block has no terminators, it just falls into the block after it.
272 MachineBasicBlock::iterator I = MBB.end();
Dale Johannesen93d6a7e2010-04-02 01:38:09 +0000273 if (I == MBB.begin())
274 return false;
275 --I;
276 while (I->isDebugValue()) {
277 if (I == MBB.begin())
278 return false;
279 --I;
280 }
281 if (!isUnpredicatedTerminator(I))
David Goodwin334c2642009-07-08 16:09:28 +0000282 return false;
283
284 // Get the last instruction in the block.
285 MachineInstr *LastInst = I;
286
287 // If there is only one terminator instruction, process it.
288 unsigned LastOpc = LastInst->getOpcode();
289 if (I == MBB.begin() || !isUnpredicatedTerminator(--I)) {
Evan Cheng5ca53a72009-07-27 18:20:05 +0000290 if (isUncondBranchOpcode(LastOpc)) {
David Goodwin334c2642009-07-08 16:09:28 +0000291 TBB = LastInst->getOperand(0).getMBB();
292 return false;
293 }
Evan Cheng5ca53a72009-07-27 18:20:05 +0000294 if (isCondBranchOpcode(LastOpc)) {
David Goodwin334c2642009-07-08 16:09:28 +0000295 // Block ends with fall-through condbranch.
296 TBB = LastInst->getOperand(0).getMBB();
297 Cond.push_back(LastInst->getOperand(1));
298 Cond.push_back(LastInst->getOperand(2));
299 return false;
300 }
301 return true; // Can't handle indirect branch.
302 }
303
304 // Get the instruction before it if it is a terminator.
305 MachineInstr *SecondLastInst = I;
Evan Cheng108c8722010-09-23 06:54:40 +0000306 unsigned SecondLastOpc = SecondLastInst->getOpcode();
307
308 // If AllowModify is true and the block ends with two or more unconditional
309 // branches, delete all but the first unconditional branch.
310 if (AllowModify && isUncondBranchOpcode(LastOpc)) {
311 while (isUncondBranchOpcode(SecondLastOpc)) {
312 LastInst->eraseFromParent();
313 LastInst = SecondLastInst;
314 LastOpc = LastInst->getOpcode();
Evan Cheng676e2582010-09-23 19:42:03 +0000315 if (I == MBB.begin() || !isUnpredicatedTerminator(--I)) {
316 // Return now the only terminator is an unconditional branch.
317 TBB = LastInst->getOperand(0).getMBB();
318 return false;
319 } else {
Evan Cheng108c8722010-09-23 06:54:40 +0000320 SecondLastInst = I;
321 SecondLastOpc = SecondLastInst->getOpcode();
322 }
323 }
324 }
David Goodwin334c2642009-07-08 16:09:28 +0000325
326 // If there are three terminators, we don't know what sort of block this is.
327 if (SecondLastInst && I != MBB.begin() && isUnpredicatedTerminator(--I))
328 return true;
329
Evan Cheng5ca53a72009-07-27 18:20:05 +0000330 // If the block ends with a B and a Bcc, handle it.
Evan Cheng5ca53a72009-07-27 18:20:05 +0000331 if (isCondBranchOpcode(SecondLastOpc) && isUncondBranchOpcode(LastOpc)) {
David Goodwin334c2642009-07-08 16:09:28 +0000332 TBB = SecondLastInst->getOperand(0).getMBB();
333 Cond.push_back(SecondLastInst->getOperand(1));
334 Cond.push_back(SecondLastInst->getOperand(2));
335 FBB = LastInst->getOperand(0).getMBB();
336 return false;
337 }
338
339 // If the block ends with two unconditional branches, handle it. The second
340 // one is not executed, so remove it.
Evan Cheng5ca53a72009-07-27 18:20:05 +0000341 if (isUncondBranchOpcode(SecondLastOpc) && isUncondBranchOpcode(LastOpc)) {
David Goodwin334c2642009-07-08 16:09:28 +0000342 TBB = SecondLastInst->getOperand(0).getMBB();
343 I = LastInst;
344 if (AllowModify)
345 I->eraseFromParent();
346 return false;
347 }
348
349 // ...likewise if it ends with a branch table followed by an unconditional
350 // branch. The branch folder can create these, and we must get rid of them for
351 // correctness of Thumb constant islands.
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000352 if ((isJumpTableBranchOpcode(SecondLastOpc) ||
353 isIndirectBranchOpcode(SecondLastOpc)) &&
Evan Cheng5ca53a72009-07-27 18:20:05 +0000354 isUncondBranchOpcode(LastOpc)) {
David Goodwin334c2642009-07-08 16:09:28 +0000355 I = LastInst;
356 if (AllowModify)
357 I->eraseFromParent();
358 return true;
359 }
360
361 // Otherwise, can't handle this.
362 return true;
363}
364
365
366unsigned ARMBaseInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
David Goodwin334c2642009-07-08 16:09:28 +0000367 MachineBasicBlock::iterator I = MBB.end();
368 if (I == MBB.begin()) return 0;
369 --I;
Dale Johannesen93d6a7e2010-04-02 01:38:09 +0000370 while (I->isDebugValue()) {
371 if (I == MBB.begin())
372 return 0;
373 --I;
374 }
Evan Cheng5ca53a72009-07-27 18:20:05 +0000375 if (!isUncondBranchOpcode(I->getOpcode()) &&
376 !isCondBranchOpcode(I->getOpcode()))
David Goodwin334c2642009-07-08 16:09:28 +0000377 return 0;
378
379 // Remove the branch.
380 I->eraseFromParent();
381
382 I = MBB.end();
383
384 if (I == MBB.begin()) return 1;
385 --I;
Evan Cheng5ca53a72009-07-27 18:20:05 +0000386 if (!isCondBranchOpcode(I->getOpcode()))
David Goodwin334c2642009-07-08 16:09:28 +0000387 return 1;
388
389 // Remove the branch.
390 I->eraseFromParent();
391 return 2;
392}
393
394unsigned
395ARMBaseInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
Stuart Hastings3bf91252010-06-17 22:43:56 +0000396 MachineBasicBlock *FBB,
397 const SmallVectorImpl<MachineOperand> &Cond,
398 DebugLoc DL) const {
Evan Cheng6495f632009-07-28 05:48:47 +0000399 ARMFunctionInfo *AFI = MBB.getParent()->getInfo<ARMFunctionInfo>();
400 int BOpc = !AFI->isThumbFunction()
401 ? ARM::B : (AFI->isThumb2Function() ? ARM::t2B : ARM::tB);
402 int BccOpc = !AFI->isThumbFunction()
403 ? ARM::Bcc : (AFI->isThumb2Function() ? ARM::t2Bcc : ARM::tBcc);
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000404 bool isThumb = AFI->isThumbFunction() || AFI->isThumb2Function();
Andrew Tricke23dc9c2011-09-21 02:17:37 +0000405
David Goodwin334c2642009-07-08 16:09:28 +0000406 // Shouldn't be a fall through.
407 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
408 assert((Cond.size() == 2 || Cond.size() == 0) &&
409 "ARM branch conditions have two components!");
410
411 if (FBB == 0) {
Owen Anderson112fb732011-09-09 23:13:02 +0000412 if (Cond.empty()) { // Unconditional branch?
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000413 if (isThumb)
414 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB).addImm(ARMCC::AL).addReg(0);
415 else
416 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB);
Owen Anderson112fb732011-09-09 23:13:02 +0000417 } else
Stuart Hastings3bf91252010-06-17 22:43:56 +0000418 BuildMI(&MBB, DL, get(BccOpc)).addMBB(TBB)
David Goodwin334c2642009-07-08 16:09:28 +0000419 .addImm(Cond[0].getImm()).addReg(Cond[1].getReg());
420 return 1;
421 }
422
423 // Two-way conditional branch.
Stuart Hastings3bf91252010-06-17 22:43:56 +0000424 BuildMI(&MBB, DL, get(BccOpc)).addMBB(TBB)
David Goodwin334c2642009-07-08 16:09:28 +0000425 .addImm(Cond[0].getImm()).addReg(Cond[1].getReg());
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000426 if (isThumb)
427 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB).addImm(ARMCC::AL).addReg(0);
428 else
429 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB);
David Goodwin334c2642009-07-08 16:09:28 +0000430 return 2;
431}
432
433bool ARMBaseInstrInfo::
434ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const {
435 ARMCC::CondCodes CC = (ARMCC::CondCodes)(int)Cond[0].getImm();
436 Cond[0].setImm(ARMCC::getOppositeCondition(CC));
437 return false;
438}
439
Evan Chengddfd1372011-12-14 02:11:42 +0000440bool ARMBaseInstrInfo::isPredicated(const MachineInstr *MI) const {
441 if (MI->isBundle()) {
442 MachineBasicBlock::const_instr_iterator I = MI;
443 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
444 while (++I != E && I->isInsideBundle()) {
445 int PIdx = I->findFirstPredOperandIdx();
446 if (PIdx != -1 && I->getOperand(PIdx).getImm() != ARMCC::AL)
447 return true;
448 }
449 return false;
450 }
451
452 int PIdx = MI->findFirstPredOperandIdx();
453 return PIdx != -1 && MI->getOperand(PIdx).getImm() != ARMCC::AL;
454}
455
David Goodwin334c2642009-07-08 16:09:28 +0000456bool ARMBaseInstrInfo::
457PredicateInstruction(MachineInstr *MI,
458 const SmallVectorImpl<MachineOperand> &Pred) const {
459 unsigned Opc = MI->getOpcode();
Evan Cheng5ca53a72009-07-27 18:20:05 +0000460 if (isUncondBranchOpcode(Opc)) {
461 MI->setDesc(get(getMatchingCondBranchOpcode(Opc)));
David Goodwin334c2642009-07-08 16:09:28 +0000462 MI->addOperand(MachineOperand::CreateImm(Pred[0].getImm()));
463 MI->addOperand(MachineOperand::CreateReg(Pred[1].getReg(), false));
464 return true;
465 }
466
467 int PIdx = MI->findFirstPredOperandIdx();
468 if (PIdx != -1) {
469 MachineOperand &PMO = MI->getOperand(PIdx);
470 PMO.setImm(Pred[0].getImm());
471 MI->getOperand(PIdx+1).setReg(Pred[1].getReg());
472 return true;
473 }
474 return false;
475}
476
477bool ARMBaseInstrInfo::
478SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
479 const SmallVectorImpl<MachineOperand> &Pred2) const {
480 if (Pred1.size() > 2 || Pred2.size() > 2)
481 return false;
482
483 ARMCC::CondCodes CC1 = (ARMCC::CondCodes)Pred1[0].getImm();
484 ARMCC::CondCodes CC2 = (ARMCC::CondCodes)Pred2[0].getImm();
485 if (CC1 == CC2)
486 return true;
487
488 switch (CC1) {
489 default:
490 return false;
491 case ARMCC::AL:
492 return true;
493 case ARMCC::HS:
494 return CC2 == ARMCC::HI;
495 case ARMCC::LS:
496 return CC2 == ARMCC::LO || CC2 == ARMCC::EQ;
497 case ARMCC::GE:
498 return CC2 == ARMCC::GT;
499 case ARMCC::LE:
500 return CC2 == ARMCC::LT;
501 }
502}
503
504bool ARMBaseInstrInfo::DefinesPredicate(MachineInstr *MI,
505 std::vector<MachineOperand> &Pred) const {
David Goodwin334c2642009-07-08 16:09:28 +0000506 bool Found = false;
507 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
508 const MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesen2420b552012-02-17 19:23:15 +0000509 if ((MO.isRegMask() && MO.clobbersPhysReg(ARM::CPSR)) ||
510 (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)) {
David Goodwin334c2642009-07-08 16:09:28 +0000511 Pred.push_back(MO);
512 Found = true;
513 }
514 }
515
516 return Found;
517}
518
Evan Chengac0869d2009-11-21 06:21:52 +0000519/// isPredicable - Return true if the specified instruction can be predicated.
520/// By default, this returns true for every instruction with a
521/// PredicateOperand.
522bool ARMBaseInstrInfo::isPredicable(MachineInstr *MI) const {
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000523 if (!MI->isPredicable())
Evan Chengac0869d2009-11-21 06:21:52 +0000524 return false;
525
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000526 if ((MI->getDesc().TSFlags & ARMII::DomainMask) == ARMII::DomainNEON) {
Evan Chengac0869d2009-11-21 06:21:52 +0000527 ARMFunctionInfo *AFI =
528 MI->getParent()->getParent()->getInfo<ARMFunctionInfo>();
Evan Chengd7f08102009-11-24 08:06:15 +0000529 return AFI->isThumb2Function();
Evan Chengac0869d2009-11-21 06:21:52 +0000530 }
531 return true;
532}
David Goodwin334c2642009-07-08 16:09:28 +0000533
Chris Lattner56856b12009-12-03 06:58:32 +0000534/// FIXME: Works around a gcc miscompilation with -fstrict-aliasing.
Chandler Carruth19e57022010-10-23 08:40:19 +0000535LLVM_ATTRIBUTE_NOINLINE
David Goodwin334c2642009-07-08 16:09:28 +0000536static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
Chris Lattner56856b12009-12-03 06:58:32 +0000537 unsigned JTI);
David Goodwin334c2642009-07-08 16:09:28 +0000538static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
539 unsigned JTI) {
Chris Lattner56856b12009-12-03 06:58:32 +0000540 assert(JTI < JT.size());
David Goodwin334c2642009-07-08 16:09:28 +0000541 return JT[JTI].MBBs.size();
542}
543
544/// GetInstSize - Return the size of the specified MachineInstr.
545///
546unsigned ARMBaseInstrInfo::GetInstSizeInBytes(const MachineInstr *MI) const {
547 const MachineBasicBlock &MBB = *MI->getParent();
548 const MachineFunction *MF = MBB.getParent();
Chris Lattner33adcfb2009-08-22 21:43:10 +0000549 const MCAsmInfo *MAI = MF->getTarget().getMCAsmInfo();
David Goodwin334c2642009-07-08 16:09:28 +0000550
Evan Chenge837dea2011-06-28 19:10:37 +0000551 const MCInstrDesc &MCID = MI->getDesc();
Owen Anderson16884412011-07-13 23:22:26 +0000552 if (MCID.getSize())
553 return MCID.getSize();
David Goodwin334c2642009-07-08 16:09:28 +0000554
David Blaikie4d6ccb52012-01-20 21:51:11 +0000555 // If this machine instr is an inline asm, measure it.
556 if (MI->getOpcode() == ARM::INLINEASM)
557 return getInlineAsmLength(MI->getOperand(0).getSymbolName(), *MAI);
558 if (MI->isLabel())
559 return 0;
560 unsigned Opc = MI->getOpcode();
561 switch (Opc) {
562 case TargetOpcode::IMPLICIT_DEF:
563 case TargetOpcode::KILL:
564 case TargetOpcode::PROLOG_LABEL:
565 case TargetOpcode::EH_LABEL:
566 case TargetOpcode::DBG_VALUE:
567 return 0;
568 case TargetOpcode::BUNDLE:
569 return getInstBundleLength(MI);
570 case ARM::MOVi16_ga_pcrel:
571 case ARM::MOVTi16_ga_pcrel:
572 case ARM::t2MOVi16_ga_pcrel:
573 case ARM::t2MOVTi16_ga_pcrel:
574 return 4;
575 case ARM::MOVi32imm:
576 case ARM::t2MOVi32imm:
577 return 8;
578 case ARM::CONSTPOOL_ENTRY:
579 // If this machine instr is a constant pool entry, its size is recorded as
580 // operand #2.
581 return MI->getOperand(2).getImm();
582 case ARM::Int_eh_sjlj_longjmp:
583 return 16;
584 case ARM::tInt_eh_sjlj_longjmp:
585 return 10;
586 case ARM::Int_eh_sjlj_setjmp:
587 case ARM::Int_eh_sjlj_setjmp_nofp:
588 return 20;
589 case ARM::tInt_eh_sjlj_setjmp:
590 case ARM::t2Int_eh_sjlj_setjmp:
591 case ARM::t2Int_eh_sjlj_setjmp_nofp:
592 return 12;
593 case ARM::BR_JTr:
594 case ARM::BR_JTm:
595 case ARM::BR_JTadd:
596 case ARM::tBR_JTr:
597 case ARM::t2BR_JT:
598 case ARM::t2TBB_JT:
599 case ARM::t2TBH_JT: {
600 // These are jumptable branches, i.e. a branch followed by an inlined
601 // jumptable. The size is 4 + 4 * number of entries. For TBB, each
602 // entry is one byte; TBH two byte each.
603 unsigned EntrySize = (Opc == ARM::t2TBB_JT)
604 ? 1 : ((Opc == ARM::t2TBH_JT) ? 2 : 4);
605 unsigned NumOps = MCID.getNumOperands();
606 MachineOperand JTOP =
607 MI->getOperand(NumOps - (MI->isPredicable() ? 3 : 2));
608 unsigned JTI = JTOP.getIndex();
609 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
610 assert(MJTI != 0);
611 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
612 assert(JTI < JT.size());
613 // Thumb instructions are 2 byte aligned, but JT entries are 4 byte
614 // 4 aligned. The assembler / linker may add 2 byte padding just before
615 // the JT entries. The size does not include this padding; the
616 // constant islands pass does separate bookkeeping for it.
617 // FIXME: If we know the size of the function is less than (1 << 16) *2
618 // bytes, we can use 16-bit entries instead. Then there won't be an
619 // alignment issue.
620 unsigned InstSize = (Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT) ? 2 : 4;
621 unsigned NumEntries = getNumJTEntries(JT, JTI);
622 if (Opc == ARM::t2TBB_JT && (NumEntries & 1))
623 // Make sure the instruction that follows TBB is 2-byte aligned.
624 // FIXME: Constant island pass should insert an "ALIGN" instruction
625 // instead.
626 ++NumEntries;
627 return NumEntries * EntrySize + InstSize;
628 }
629 default:
630 // Otherwise, pseudo-instruction sizes are zero.
631 return 0;
632 }
David Goodwin334c2642009-07-08 16:09:28 +0000633}
634
Evan Chengddfd1372011-12-14 02:11:42 +0000635unsigned ARMBaseInstrInfo::getInstBundleLength(const MachineInstr *MI) const {
636 unsigned Size = 0;
637 MachineBasicBlock::const_instr_iterator I = MI;
638 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
639 while (++I != E && I->isInsideBundle()) {
640 assert(!I->isBundle() && "No nested bundle!");
641 Size += GetInstSizeInBytes(&*I);
642 }
643 return Size;
644}
645
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000646void ARMBaseInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
647 MachineBasicBlock::iterator I, DebugLoc DL,
648 unsigned DestReg, unsigned SrcReg,
649 bool KillSrc) const {
650 bool GPRDest = ARM::GPRRegClass.contains(DestReg);
651 bool GPRSrc = ARM::GPRRegClass.contains(SrcReg);
Bob Wilson1665b0a2010-02-16 17:24:15 +0000652
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000653 if (GPRDest && GPRSrc) {
654 AddDefaultCC(AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::MOVr), DestReg)
655 .addReg(SrcReg, getKillRegState(KillSrc))));
656 return;
David Goodwin7bfdca02009-08-05 21:02:22 +0000657 }
David Goodwin334c2642009-07-08 16:09:28 +0000658
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000659 bool SPRDest = ARM::SPRRegClass.contains(DestReg);
660 bool SPRSrc = ARM::SPRRegClass.contains(SrcReg);
661
Chad Rosiere5038e12011-08-20 00:17:25 +0000662 unsigned Opc = 0;
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +0000663 if (SPRDest && SPRSrc)
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000664 Opc = ARM::VMOVS;
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +0000665 else if (GPRDest && SPRSrc)
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000666 Opc = ARM::VMOVRS;
667 else if (SPRDest && GPRSrc)
668 Opc = ARM::VMOVSR;
669 else if (ARM::DPRRegClass.contains(DestReg, SrcReg))
670 Opc = ARM::VMOVD;
671 else if (ARM::QPRRegClass.contains(DestReg, SrcReg))
Owen Anderson43967a92011-07-15 18:46:47 +0000672 Opc = ARM::VORRq;
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000673
Chad Rosiere5038e12011-08-20 00:17:25 +0000674 if (Opc) {
675 MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc), DestReg);
Owen Anderson43967a92011-07-15 18:46:47 +0000676 MIB.addReg(SrcReg, getKillRegState(KillSrc));
Chad Rosiere5038e12011-08-20 00:17:25 +0000677 if (Opc == ARM::VORRq)
678 MIB.addReg(SrcReg, getKillRegState(KillSrc));
Chad Rosierfea95c62011-08-20 00:52:40 +0000679 AddDefaultPred(MIB);
Chad Rosiere5038e12011-08-20 00:17:25 +0000680 return;
681 }
682
Jakob Stoklund Olesen85bdf2e2012-03-29 21:10:40 +0000683 // Handle register classes that require multiple instructions.
684 unsigned BeginIdx = 0;
685 unsigned SubRegs = 0;
686 unsigned Spacing = 1;
687
688 // Use VORRq when possible.
689 if (ARM::QQPRRegClass.contains(DestReg, SrcReg))
690 Opc = ARM::VORRq, BeginIdx = ARM::qsub_0, SubRegs = 2;
691 else if (ARM::QQQQPRRegClass.contains(DestReg, SrcReg))
692 Opc = ARM::VORRq, BeginIdx = ARM::qsub_0, SubRegs = 4;
693 // Fall back to VMOVD.
694 else if (ARM::DPairRegClass.contains(DestReg, SrcReg))
695 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 2;
696 else if (ARM::DTripleRegClass.contains(DestReg, SrcReg))
697 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 3;
698 else if (ARM::DQuadRegClass.contains(DestReg, SrcReg))
699 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 4;
700
701 else if (ARM::DPairSpcRegClass.contains(DestReg, SrcReg))
702 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 2, Spacing = 2;
703 else if (ARM::DTripleSpcRegClass.contains(DestReg, SrcReg))
704 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 3, Spacing = 2;
705 else if (ARM::DQuadSpcRegClass.contains(DestReg, SrcReg))
706 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 4, Spacing = 2;
707
708 if (Opc) {
Chad Rosiere5038e12011-08-20 00:17:25 +0000709 const TargetRegisterInfo *TRI = &getRegisterInfo();
Jakob Stoklund Olesen85bdf2e2012-03-29 21:10:40 +0000710 MachineInstrBuilder Mov;
711 for (unsigned i = 0; i != SubRegs; ++i) {
712 unsigned Dst = TRI->getSubReg(DestReg, BeginIdx + i*Spacing);
713 unsigned Src = TRI->getSubReg(SrcReg, BeginIdx + i*Spacing);
714 assert(Dst && Src && "Bad sub-register");
715 Mov = AddDefaultPred(BuildMI(MBB, I, I->getDebugLoc(), get(Opc), Dst)
716 .addReg(Src));
717 // VORR takes two source operands.
718 if (Opc == ARM::VORRq)
719 Mov.addReg(Src);
Chad Rosiere5038e12011-08-20 00:17:25 +0000720 }
Jakob Stoklund Olesen85bdf2e2012-03-29 21:10:40 +0000721 // Add implicit super-register defs and kills to the last instruction.
722 Mov->addRegisterDefined(DestReg, TRI);
723 if (KillSrc)
724 Mov->addRegisterKilled(SrcReg, TRI);
Chad Rosiere5038e12011-08-20 00:17:25 +0000725 return;
726 }
Jakob Stoklund Olesen85bdf2e2012-03-29 21:10:40 +0000727
Chad Rosiere5038e12011-08-20 00:17:25 +0000728 llvm_unreachable("Impossible reg-to-reg copy");
David Goodwin334c2642009-07-08 16:09:28 +0000729}
730
Evan Chengc10b5af2010-05-07 00:24:52 +0000731static const
732MachineInstrBuilder &AddDReg(MachineInstrBuilder &MIB,
733 unsigned Reg, unsigned SubIdx, unsigned State,
734 const TargetRegisterInfo *TRI) {
735 if (!SubIdx)
736 return MIB.addReg(Reg, State);
737
738 if (TargetRegisterInfo::isPhysicalRegister(Reg))
739 return MIB.addReg(TRI->getSubReg(Reg, SubIdx), State);
740 return MIB.addReg(Reg, State, SubIdx);
741}
742
David Goodwin334c2642009-07-08 16:09:28 +0000743void ARMBaseInstrInfo::
744storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
745 unsigned SrcReg, bool isKill, int FI,
Evan Cheng746ad692010-05-06 19:06:44 +0000746 const TargetRegisterClass *RC,
747 const TargetRegisterInfo *TRI) const {
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000748 DebugLoc DL;
David Goodwin334c2642009-07-08 16:09:28 +0000749 if (I != MBB.end()) DL = I->getDebugLoc();
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000750 MachineFunction &MF = *MBB.getParent();
751 MachineFrameInfo &MFI = *MF.getFrameInfo();
Jim Grosbach31bc8492009-11-08 00:27:19 +0000752 unsigned Align = MFI.getObjectAlignment(FI);
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000753
754 MachineMemOperand *MMO =
Jay Foad978e0df2011-11-15 07:34:52 +0000755 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
Chris Lattner59db5492010-09-21 04:39:43 +0000756 MachineMemOperand::MOStore,
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000757 MFI.getObjectSize(FI),
Jim Grosbach31bc8492009-11-08 00:27:19 +0000758 Align);
David Goodwin334c2642009-07-08 16:09:28 +0000759
Owen Andersone66ef2d2011-08-10 17:21:20 +0000760 switch (RC->getSize()) {
761 case 4:
762 if (ARM::GPRRegClass.hasSubClassEq(RC)) {
763 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::STRi12))
David Goodwin334c2642009-07-08 16:09:28 +0000764 .addReg(SrcReg, getKillRegState(isKill))
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000765 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000766 } else if (ARM::SPRRegClass.hasSubClassEq(RC)) {
767 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRS))
Evan Chengd31c5492010-05-06 01:34:11 +0000768 .addReg(SrcReg, getKillRegState(isKill))
769 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000770 } else
771 llvm_unreachable("Unknown reg class!");
772 break;
773 case 8:
774 if (ARM::DPRRegClass.hasSubClassEq(RC)) {
775 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRD))
David Goodwin334c2642009-07-08 16:09:28 +0000776 .addReg(SrcReg, getKillRegState(isKill))
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000777 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000778 } else
779 llvm_unreachable("Unknown reg class!");
780 break;
781 case 16:
Jakob Stoklund Olesen5b2f9132012-03-28 21:20:32 +0000782 if (ARM::DPairRegClass.hasSubClassEq(RC)) {
Jakob Stoklund Olesen7255a4e2012-01-05 00:26:57 +0000783 // Use aligned spills if the stack can be realigned.
784 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
Jim Grosbach28f08c92012-03-05 19:33:30 +0000785 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1q64))
Bob Wilsonf967ca02010-07-06 21:26:18 +0000786 .addFrameIndex(FI).addImm(16)
Evan Cheng69b9f982010-05-13 01:12:06 +0000787 .addReg(SrcReg, getKillRegState(isKill))
788 .addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000789 } else {
790 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMQIA))
Evan Cheng69b9f982010-05-13 01:12:06 +0000791 .addReg(SrcReg, getKillRegState(isKill))
792 .addFrameIndex(FI)
Evan Cheng69b9f982010-05-13 01:12:06 +0000793 .addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000794 }
795 } else
796 llvm_unreachable("Unknown reg class!");
797 break;
Anton Korobeynikovb58d7d02012-08-04 13:16:12 +0000798 case 24:
799 if (ARM::DTripleRegClass.hasSubClassEq(RC)) {
800 // Use aligned spills if the stack can be realigned.
801 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
802 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1d64TPseudo))
803 .addFrameIndex(FI).addImm(16)
804 .addReg(SrcReg, getKillRegState(isKill))
805 .addMemOperand(MMO));
806 } else {
807 MachineInstrBuilder MIB =
808 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
809 .addFrameIndex(FI))
810 .addMemOperand(MMO);
811 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
812 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
813 AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
814 }
815 } else
816 llvm_unreachable("Unknown reg class!");
817 break;
Owen Andersone66ef2d2011-08-10 17:21:20 +0000818 case 32:
Anton Korobeynikovb58d7d02012-08-04 13:16:12 +0000819 if (ARM::QQPRRegClass.hasSubClassEq(RC) || ARM::DQuadRegClass.hasSubClassEq(RC)) {
Owen Andersone66ef2d2011-08-10 17:21:20 +0000820 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
821 // FIXME: It's possible to only store part of the QQ register if the
822 // spilled def has a sub-register index.
823 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1d64QPseudo))
Bob Wilson168f3822010-09-15 01:48:05 +0000824 .addFrameIndex(FI).addImm(16)
825 .addReg(SrcReg, getKillRegState(isKill))
826 .addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000827 } else {
828 MachineInstrBuilder MIB =
829 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
Bill Wendling73fe34a2010-11-16 01:16:36 +0000830 .addFrameIndex(FI))
Owen Andersone66ef2d2011-08-10 17:21:20 +0000831 .addMemOperand(MMO);
832 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
833 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
834 MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
835 AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
836 }
837 } else
838 llvm_unreachable("Unknown reg class!");
839 break;
840 case 64:
841 if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
842 MachineInstrBuilder MIB =
843 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
844 .addFrameIndex(FI))
845 .addMemOperand(MMO);
846 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
847 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
848 MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
849 MIB = AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
850 MIB = AddDReg(MIB, SrcReg, ARM::dsub_4, 0, TRI);
851 MIB = AddDReg(MIB, SrcReg, ARM::dsub_5, 0, TRI);
852 MIB = AddDReg(MIB, SrcReg, ARM::dsub_6, 0, TRI);
853 AddDReg(MIB, SrcReg, ARM::dsub_7, 0, TRI);
854 } else
855 llvm_unreachable("Unknown reg class!");
856 break;
857 default:
858 llvm_unreachable("Unknown reg class!");
David Goodwin334c2642009-07-08 16:09:28 +0000859 }
860}
861
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000862unsigned
863ARMBaseInstrInfo::isStoreToStackSlot(const MachineInstr *MI,
864 int &FrameIndex) const {
865 switch (MI->getOpcode()) {
866 default: break;
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000867 case ARM::STRrs:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000868 case ARM::t2STRs: // FIXME: don't use t2STRs to access frame.
869 if (MI->getOperand(1).isFI() &&
870 MI->getOperand(2).isReg() &&
871 MI->getOperand(3).isImm() &&
872 MI->getOperand(2).getReg() == 0 &&
873 MI->getOperand(3).getImm() == 0) {
874 FrameIndex = MI->getOperand(1).getIndex();
875 return MI->getOperand(0).getReg();
876 }
877 break;
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000878 case ARM::STRi12:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000879 case ARM::t2STRi12:
Jim Grosbach74472b42011-06-29 20:26:39 +0000880 case ARM::tSTRspi:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000881 case ARM::VSTRD:
882 case ARM::VSTRS:
883 if (MI->getOperand(1).isFI() &&
884 MI->getOperand(2).isImm() &&
885 MI->getOperand(2).getImm() == 0) {
886 FrameIndex = MI->getOperand(1).getIndex();
887 return MI->getOperand(0).getReg();
888 }
889 break;
Jim Grosbach28f08c92012-03-05 19:33:30 +0000890 case ARM::VST1q64:
Anton Korobeynikov161474d2012-08-04 13:22:14 +0000891 case ARM::VST1d64TPseudo:
892 case ARM::VST1d64QPseudo:
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +0000893 if (MI->getOperand(0).isFI() &&
894 MI->getOperand(2).getSubReg() == 0) {
895 FrameIndex = MI->getOperand(0).getIndex();
896 return MI->getOperand(2).getReg();
897 }
Jakob Stoklund Olesen31bbc512010-09-15 21:40:09 +0000898 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +0000899 case ARM::VSTMQIA:
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +0000900 if (MI->getOperand(1).isFI() &&
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +0000901 MI->getOperand(0).getSubReg() == 0) {
902 FrameIndex = MI->getOperand(1).getIndex();
903 return MI->getOperand(0).getReg();
904 }
905 break;
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000906 }
907
908 return 0;
909}
910
Jakob Stoklund Olesen36ee0e62011-08-08 21:45:32 +0000911unsigned ARMBaseInstrInfo::isStoreToStackSlotPostFE(const MachineInstr *MI,
912 int &FrameIndex) const {
913 const MachineMemOperand *Dummy;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000914 return MI->mayStore() && hasStoreToStackSlot(MI, Dummy, FrameIndex);
Jakob Stoklund Olesen36ee0e62011-08-08 21:45:32 +0000915}
916
David Goodwin334c2642009-07-08 16:09:28 +0000917void ARMBaseInstrInfo::
918loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
919 unsigned DestReg, int FI,
Evan Cheng746ad692010-05-06 19:06:44 +0000920 const TargetRegisterClass *RC,
921 const TargetRegisterInfo *TRI) const {
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000922 DebugLoc DL;
David Goodwin334c2642009-07-08 16:09:28 +0000923 if (I != MBB.end()) DL = I->getDebugLoc();
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000924 MachineFunction &MF = *MBB.getParent();
925 MachineFrameInfo &MFI = *MF.getFrameInfo();
Jim Grosbach31bc8492009-11-08 00:27:19 +0000926 unsigned Align = MFI.getObjectAlignment(FI);
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000927 MachineMemOperand *MMO =
Chris Lattner59db5492010-09-21 04:39:43 +0000928 MF.getMachineMemOperand(
Jay Foad978e0df2011-11-15 07:34:52 +0000929 MachinePointerInfo::getFixedStack(FI),
Chris Lattner59db5492010-09-21 04:39:43 +0000930 MachineMemOperand::MOLoad,
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000931 MFI.getObjectSize(FI),
Jim Grosbach31bc8492009-11-08 00:27:19 +0000932 Align);
David Goodwin334c2642009-07-08 16:09:28 +0000933
Owen Andersone66ef2d2011-08-10 17:21:20 +0000934 switch (RC->getSize()) {
935 case 4:
936 if (ARM::GPRRegClass.hasSubClassEq(RC)) {
937 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::LDRi12), DestReg)
938 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Bob Wilson0eb0c742010-02-16 22:01:59 +0000939
Owen Andersone66ef2d2011-08-10 17:21:20 +0000940 } else if (ARM::SPRRegClass.hasSubClassEq(RC)) {
941 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRS), DestReg)
Jim Grosbach3e556122010-10-26 22:37:02 +0000942 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000943 } else
944 llvm_unreachable("Unknown reg class!");
Bob Wilsonebe99b22010-06-18 21:32:42 +0000945 break;
Owen Andersone66ef2d2011-08-10 17:21:20 +0000946 case 8:
947 if (ARM::DPRRegClass.hasSubClassEq(RC)) {
948 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRD), DestReg)
Evan Chengd31c5492010-05-06 01:34:11 +0000949 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000950 } else
951 llvm_unreachable("Unknown reg class!");
Bob Wilsonebe99b22010-06-18 21:32:42 +0000952 break;
Owen Andersone66ef2d2011-08-10 17:21:20 +0000953 case 16:
Jakob Stoklund Olesen5b2f9132012-03-28 21:20:32 +0000954 if (ARM::DPairRegClass.hasSubClassEq(RC)) {
Jakob Stoklund Olesen7255a4e2012-01-05 00:26:57 +0000955 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
Jim Grosbach28f08c92012-03-05 19:33:30 +0000956 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1q64), DestReg)
Bob Wilsonf967ca02010-07-06 21:26:18 +0000957 .addFrameIndex(FI).addImm(16)
Evan Cheng69b9f982010-05-13 01:12:06 +0000958 .addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000959 } else {
960 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMQIA), DestReg)
961 .addFrameIndex(FI)
962 .addMemOperand(MMO));
963 }
964 } else
965 llvm_unreachable("Unknown reg class!");
Bob Wilsonebe99b22010-06-18 21:32:42 +0000966 break;
Anton Korobeynikovb58d7d02012-08-04 13:16:12 +0000967 case 24:
968 if (ARM::DTripleRegClass.hasSubClassEq(RC)) {
969 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
970 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1d64TPseudo), DestReg)
971 .addFrameIndex(FI).addImm(16)
972 .addMemOperand(MMO));
973 } else {
974 MachineInstrBuilder MIB =
975 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
976 .addFrameIndex(FI)
977 .addMemOperand(MMO));
978 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
979 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
980 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
981 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
982 MIB.addReg(DestReg, RegState::ImplicitDefine);
983 }
984 } else
985 llvm_unreachable("Unknown reg class!");
986 break;
987 case 32:
988 if (ARM::QQPRRegClass.hasSubClassEq(RC) || ARM::DQuadRegClass.hasSubClassEq(RC)) {
Owen Andersone66ef2d2011-08-10 17:21:20 +0000989 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
990 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1d64QPseudo), DestReg)
Bob Wilson168f3822010-09-15 01:48:05 +0000991 .addFrameIndex(FI).addImm(16)
992 .addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000993 } else {
994 MachineInstrBuilder MIB =
Bill Wendling73fe34a2010-11-16 01:16:36 +0000995 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
996 .addFrameIndex(FI))
Owen Andersone66ef2d2011-08-10 17:21:20 +0000997 .addMemOperand(MMO);
Jakob Stoklund Olesenfce711c2012-03-04 18:40:30 +0000998 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
999 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
1000 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
1001 MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::DefineNoRead, TRI);
Jakob Stoklund Olesen3247af22012-03-06 02:48:17 +00001002 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1003 MIB.addReg(DestReg, RegState::ImplicitDefine);
Owen Andersone66ef2d2011-08-10 17:21:20 +00001004 }
1005 } else
1006 llvm_unreachable("Unknown reg class!");
1007 break;
1008 case 64:
1009 if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
1010 MachineInstrBuilder MIB =
1011 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
1012 .addFrameIndex(FI))
1013 .addMemOperand(MMO);
Jakob Stoklund Olesenfce711c2012-03-04 18:40:30 +00001014 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
1015 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
1016 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
1017 MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::DefineNoRead, TRI);
1018 MIB = AddDReg(MIB, DestReg, ARM::dsub_4, RegState::DefineNoRead, TRI);
1019 MIB = AddDReg(MIB, DestReg, ARM::dsub_5, RegState::DefineNoRead, TRI);
1020 MIB = AddDReg(MIB, DestReg, ARM::dsub_6, RegState::DefineNoRead, TRI);
1021 MIB = AddDReg(MIB, DestReg, ARM::dsub_7, RegState::DefineNoRead, TRI);
Jakob Stoklund Olesen3247af22012-03-06 02:48:17 +00001022 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1023 MIB.addReg(DestReg, RegState::ImplicitDefine);
Owen Andersone66ef2d2011-08-10 17:21:20 +00001024 } else
1025 llvm_unreachable("Unknown reg class!");
Bob Wilsonebe99b22010-06-18 21:32:42 +00001026 break;
Bob Wilsonebe99b22010-06-18 21:32:42 +00001027 default:
1028 llvm_unreachable("Unknown regclass!");
David Goodwin334c2642009-07-08 16:09:28 +00001029 }
1030}
1031
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +00001032unsigned
1033ARMBaseInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
1034 int &FrameIndex) const {
1035 switch (MI->getOpcode()) {
1036 default: break;
Jim Grosbach3e556122010-10-26 22:37:02 +00001037 case ARM::LDRrs:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +00001038 case ARM::t2LDRs: // FIXME: don't use t2LDRs to access frame.
1039 if (MI->getOperand(1).isFI() &&
1040 MI->getOperand(2).isReg() &&
1041 MI->getOperand(3).isImm() &&
1042 MI->getOperand(2).getReg() == 0 &&
1043 MI->getOperand(3).getImm() == 0) {
1044 FrameIndex = MI->getOperand(1).getIndex();
1045 return MI->getOperand(0).getReg();
1046 }
1047 break;
Jim Grosbach3e556122010-10-26 22:37:02 +00001048 case ARM::LDRi12:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +00001049 case ARM::t2LDRi12:
Jim Grosbach74472b42011-06-29 20:26:39 +00001050 case ARM::tLDRspi:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +00001051 case ARM::VLDRD:
1052 case ARM::VLDRS:
1053 if (MI->getOperand(1).isFI() &&
1054 MI->getOperand(2).isImm() &&
1055 MI->getOperand(2).getImm() == 0) {
1056 FrameIndex = MI->getOperand(1).getIndex();
1057 return MI->getOperand(0).getReg();
1058 }
1059 break;
Jim Grosbach28f08c92012-03-05 19:33:30 +00001060 case ARM::VLD1q64:
Anton Korobeynikov161474d2012-08-04 13:22:14 +00001061 case ARM::VLD1d64TPseudo:
1062 case ARM::VLD1d64QPseudo:
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +00001063 if (MI->getOperand(1).isFI() &&
1064 MI->getOperand(0).getSubReg() == 0) {
1065 FrameIndex = MI->getOperand(1).getIndex();
1066 return MI->getOperand(0).getReg();
1067 }
1068 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00001069 case ARM::VLDMQIA:
Jakob Stoklund Olesen06f264e2010-09-15 21:40:11 +00001070 if (MI->getOperand(1).isFI() &&
Jakob Stoklund Olesen06f264e2010-09-15 21:40:11 +00001071 MI->getOperand(0).getSubReg() == 0) {
1072 FrameIndex = MI->getOperand(1).getIndex();
1073 return MI->getOperand(0).getReg();
1074 }
1075 break;
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +00001076 }
1077
1078 return 0;
1079}
1080
Jakob Stoklund Olesen36ee0e62011-08-08 21:45:32 +00001081unsigned ARMBaseInstrInfo::isLoadFromStackSlotPostFE(const MachineInstr *MI,
1082 int &FrameIndex) const {
1083 const MachineMemOperand *Dummy;
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001084 return MI->mayLoad() && hasLoadFromStackSlot(MI, Dummy, FrameIndex);
Jakob Stoklund Olesen36ee0e62011-08-08 21:45:32 +00001085}
1086
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +00001087bool ARMBaseInstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const{
1088 // This hook gets to expand COPY instructions before they become
1089 // copyPhysReg() calls. Look for VMOVS instructions that can legally be
1090 // widened to VMOVD. We prefer the VMOVD when possible because it may be
1091 // changed into a VORR that can go down the NEON pipeline.
1092 if (!WidenVMOVS || !MI->isCopy())
1093 return false;
1094
1095 // Look for a copy between even S-registers. That is where we keep floats
1096 // when using NEON v2f32 instructions for f32 arithmetic.
1097 unsigned DstRegS = MI->getOperand(0).getReg();
1098 unsigned SrcRegS = MI->getOperand(1).getReg();
1099 if (!ARM::SPRRegClass.contains(DstRegS, SrcRegS))
1100 return false;
1101
1102 const TargetRegisterInfo *TRI = &getRegisterInfo();
1103 unsigned DstRegD = TRI->getMatchingSuperReg(DstRegS, ARM::ssub_0,
1104 &ARM::DPRRegClass);
1105 unsigned SrcRegD = TRI->getMatchingSuperReg(SrcRegS, ARM::ssub_0,
1106 &ARM::DPRRegClass);
1107 if (!DstRegD || !SrcRegD)
1108 return false;
1109
1110 // We want to widen this into a DstRegD = VMOVD SrcRegD copy. This is only
1111 // legal if the COPY already defines the full DstRegD, and it isn't a
1112 // sub-register insertion.
1113 if (!MI->definesRegister(DstRegD, TRI) || MI->readsRegister(DstRegD, TRI))
1114 return false;
1115
Jakob Stoklund Olesen1c062c22011-10-12 00:06:23 +00001116 // A dead copy shouldn't show up here, but reject it just in case.
1117 if (MI->getOperand(0).isDead())
1118 return false;
1119
1120 // All clear, widen the COPY.
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +00001121 DEBUG(dbgs() << "widening: " << *MI);
Jakob Stoklund Olesen1c062c22011-10-12 00:06:23 +00001122
1123 // Get rid of the old <imp-def> of DstRegD. Leave it if it defines a Q-reg
1124 // or some other super-register.
1125 int ImpDefIdx = MI->findRegisterDefOperandIdx(DstRegD);
1126 if (ImpDefIdx != -1)
1127 MI->RemoveOperand(ImpDefIdx);
1128
1129 // Change the opcode and operands.
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +00001130 MI->setDesc(get(ARM::VMOVD));
1131 MI->getOperand(0).setReg(DstRegD);
1132 MI->getOperand(1).setReg(SrcRegD);
1133 AddDefaultPred(MachineInstrBuilder(MI));
Jakob Stoklund Olesen1c062c22011-10-12 00:06:23 +00001134
1135 // We are now reading SrcRegD instead of SrcRegS. This may upset the
1136 // register scavenger and machine verifier, so we need to indicate that we
1137 // are reading an undefined value from SrcRegD, but a proper value from
1138 // SrcRegS.
1139 MI->getOperand(1).setIsUndef();
1140 MachineInstrBuilder(MI).addReg(SrcRegS, RegState::Implicit);
1141
1142 // SrcRegD may actually contain an unrelated value in the ssub_1
1143 // sub-register. Don't kill it. Only kill the ssub_0 sub-register.
1144 if (MI->getOperand(1).isKill()) {
1145 MI->getOperand(1).setIsKill(false);
1146 MI->addRegisterKilled(SrcRegS, TRI, true);
1147 }
1148
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +00001149 DEBUG(dbgs() << "replaced by: " << *MI);
1150 return true;
1151}
1152
Evan Cheng62b50652010-04-26 07:39:25 +00001153MachineInstr*
1154ARMBaseInstrInfo::emitFrameIndexDebugValue(MachineFunction &MF,
Evan Cheng8601a3d2010-04-29 01:13:30 +00001155 int FrameIx, uint64_t Offset,
Evan Cheng62b50652010-04-26 07:39:25 +00001156 const MDNode *MDPtr,
1157 DebugLoc DL) const {
1158 MachineInstrBuilder MIB = BuildMI(MF, DL, get(ARM::DBG_VALUE))
1159 .addFrameIndex(FrameIx).addImm(0).addImm(Offset).addMetadata(MDPtr);
1160 return &*MIB;
1161}
1162
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001163/// Create a copy of a const pool value. Update CPI to the new index and return
1164/// the label UID.
1165static unsigned duplicateCPV(MachineFunction &MF, unsigned &CPI) {
1166 MachineConstantPool *MCP = MF.getConstantPool();
1167 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1168
1169 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI];
1170 assert(MCPE.isMachineConstantPoolEntry() &&
1171 "Expecting a machine constantpool entry!");
1172 ARMConstantPoolValue *ACPV =
1173 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
1174
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001175 unsigned PCLabelId = AFI->createPICLabelUId();
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001176 ARMConstantPoolValue *NewCPV = 0;
Jim Grosbach51f5b672010-09-10 21:38:22 +00001177 // FIXME: The below assumes PIC relocation model and that the function
1178 // is Thumb mode (t1 or t2). PCAdjustment would be 8 for ARM mode PIC, and
1179 // zero for non-PIC in ARM or Thumb. The callers are all of thumb LDR
1180 // instructions, so that's probably OK, but is PIC always correct when
1181 // we get here?
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001182 if (ACPV->isGlobalValue())
Bill Wendling5bb77992011-10-01 08:00:54 +00001183 NewCPV = ARMConstantPoolConstant::
1184 Create(cast<ARMConstantPoolConstant>(ACPV)->getGV(), PCLabelId,
1185 ARMCP::CPValue, 4);
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001186 else if (ACPV->isExtSymbol())
Bill Wendlingfe31e672011-10-01 08:58:29 +00001187 NewCPV = ARMConstantPoolSymbol::
1188 Create(MF.getFunction()->getContext(),
1189 cast<ARMConstantPoolSymbol>(ACPV)->getSymbol(), PCLabelId, 4);
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001190 else if (ACPV->isBlockAddress())
Bill Wendling5bb77992011-10-01 08:00:54 +00001191 NewCPV = ARMConstantPoolConstant::
1192 Create(cast<ARMConstantPoolConstant>(ACPV)->getBlockAddress(), PCLabelId,
1193 ARMCP::CPBlockAddress, 4);
Jim Grosbach51f5b672010-09-10 21:38:22 +00001194 else if (ACPV->isLSDA())
Bill Wendling5bb77992011-10-01 08:00:54 +00001195 NewCPV = ARMConstantPoolConstant::Create(MF.getFunction(), PCLabelId,
1196 ARMCP::CPLSDA, 4);
Bill Wendlinge00897c2011-09-29 23:50:42 +00001197 else if (ACPV->isMachineBasicBlock())
Bill Wendling3320f2a2011-10-01 09:30:42 +00001198 NewCPV = ARMConstantPoolMBB::
1199 Create(MF.getFunction()->getContext(),
1200 cast<ARMConstantPoolMBB>(ACPV)->getMBB(), PCLabelId, 4);
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001201 else
1202 llvm_unreachable("Unexpected ARM constantpool value type!!");
1203 CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlignment());
1204 return PCLabelId;
1205}
1206
Evan Chengfdc83402009-11-08 00:15:23 +00001207void ARMBaseInstrInfo::
1208reMaterialize(MachineBasicBlock &MBB,
1209 MachineBasicBlock::iterator I,
1210 unsigned DestReg, unsigned SubIdx,
Evan Chengd57cdd52009-11-14 02:55:43 +00001211 const MachineInstr *Orig,
Jakob Stoklund Olesen9edf7de2010-06-02 22:47:25 +00001212 const TargetRegisterInfo &TRI) const {
Evan Chengfdc83402009-11-08 00:15:23 +00001213 unsigned Opcode = Orig->getOpcode();
1214 switch (Opcode) {
1215 default: {
1216 MachineInstr *MI = MBB.getParent()->CloneMachineInstr(Orig);
Jakob Stoklund Olesen9edf7de2010-06-02 22:47:25 +00001217 MI->substituteRegister(Orig->getOperand(0).getReg(), DestReg, SubIdx, TRI);
Evan Chengfdc83402009-11-08 00:15:23 +00001218 MBB.insert(I, MI);
1219 break;
1220 }
1221 case ARM::tLDRpci_pic:
1222 case ARM::t2LDRpci_pic: {
1223 MachineFunction &MF = *MBB.getParent();
Evan Chengfdc83402009-11-08 00:15:23 +00001224 unsigned CPI = Orig->getOperand(1).getIndex();
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001225 unsigned PCLabelId = duplicateCPV(MF, CPI);
Evan Chengfdc83402009-11-08 00:15:23 +00001226 MachineInstrBuilder MIB = BuildMI(MBB, I, Orig->getDebugLoc(), get(Opcode),
1227 DestReg)
1228 .addConstantPoolIndex(CPI).addImm(PCLabelId);
Chris Lattnerd7d030a2011-04-29 05:24:29 +00001229 MIB->setMemRefs(Orig->memoperands_begin(), Orig->memoperands_end());
Evan Chengfdc83402009-11-08 00:15:23 +00001230 break;
1231 }
1232 }
Evan Chengfdc83402009-11-08 00:15:23 +00001233}
1234
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001235MachineInstr *
1236ARMBaseInstrInfo::duplicate(MachineInstr *Orig, MachineFunction &MF) const {
1237 MachineInstr *MI = TargetInstrInfoImpl::duplicate(Orig, MF);
1238 switch(Orig->getOpcode()) {
1239 case ARM::tLDRpci_pic:
1240 case ARM::t2LDRpci_pic: {
1241 unsigned CPI = Orig->getOperand(1).getIndex();
1242 unsigned PCLabelId = duplicateCPV(MF, CPI);
1243 Orig->getOperand(1).setIndex(CPI);
1244 Orig->getOperand(2).setImm(PCLabelId);
1245 break;
1246 }
1247 }
1248 return MI;
1249}
1250
Evan Cheng506049f2010-03-03 01:44:33 +00001251bool ARMBaseInstrInfo::produceSameValue(const MachineInstr *MI0,
Evan Cheng9fe20092011-01-20 08:34:58 +00001252 const MachineInstr *MI1,
1253 const MachineRegisterInfo *MRI) const {
Evan Chengd457e6e2009-11-07 04:04:34 +00001254 int Opcode = MI0->getOpcode();
Evan Chengd7e3cc82011-01-20 23:55:07 +00001255 if (Opcode == ARM::t2LDRpci ||
Evan Cheng9b824252009-11-20 02:10:27 +00001256 Opcode == ARM::t2LDRpci_pic ||
1257 Opcode == ARM::tLDRpci ||
Evan Cheng9fe20092011-01-20 08:34:58 +00001258 Opcode == ARM::tLDRpci_pic ||
Evan Cheng53519f02011-01-21 18:55:51 +00001259 Opcode == ARM::MOV_ga_dyn ||
1260 Opcode == ARM::MOV_ga_pcrel ||
1261 Opcode == ARM::MOV_ga_pcrel_ldr ||
1262 Opcode == ARM::t2MOV_ga_dyn ||
1263 Opcode == ARM::t2MOV_ga_pcrel) {
Evan Chengd457e6e2009-11-07 04:04:34 +00001264 if (MI1->getOpcode() != Opcode)
1265 return false;
1266 if (MI0->getNumOperands() != MI1->getNumOperands())
1267 return false;
1268
1269 const MachineOperand &MO0 = MI0->getOperand(1);
1270 const MachineOperand &MO1 = MI1->getOperand(1);
1271 if (MO0.getOffset() != MO1.getOffset())
1272 return false;
1273
Evan Cheng53519f02011-01-21 18:55:51 +00001274 if (Opcode == ARM::MOV_ga_dyn ||
1275 Opcode == ARM::MOV_ga_pcrel ||
1276 Opcode == ARM::MOV_ga_pcrel_ldr ||
1277 Opcode == ARM::t2MOV_ga_dyn ||
1278 Opcode == ARM::t2MOV_ga_pcrel)
Evan Cheng9fe20092011-01-20 08:34:58 +00001279 // Ignore the PC labels.
1280 return MO0.getGlobal() == MO1.getGlobal();
1281
Evan Chengd457e6e2009-11-07 04:04:34 +00001282 const MachineFunction *MF = MI0->getParent()->getParent();
1283 const MachineConstantPool *MCP = MF->getConstantPool();
1284 int CPI0 = MO0.getIndex();
1285 int CPI1 = MO1.getIndex();
1286 const MachineConstantPoolEntry &MCPE0 = MCP->getConstants()[CPI0];
1287 const MachineConstantPoolEntry &MCPE1 = MCP->getConstants()[CPI1];
Evan Chengd7006172011-03-24 06:20:03 +00001288 bool isARMCP0 = MCPE0.isMachineConstantPoolEntry();
1289 bool isARMCP1 = MCPE1.isMachineConstantPoolEntry();
1290 if (isARMCP0 && isARMCP1) {
1291 ARMConstantPoolValue *ACPV0 =
1292 static_cast<ARMConstantPoolValue*>(MCPE0.Val.MachineCPVal);
1293 ARMConstantPoolValue *ACPV1 =
1294 static_cast<ARMConstantPoolValue*>(MCPE1.Val.MachineCPVal);
1295 return ACPV0->hasSameValue(ACPV1);
1296 } else if (!isARMCP0 && !isARMCP1) {
1297 return MCPE0.Val.ConstVal == MCPE1.Val.ConstVal;
1298 }
1299 return false;
Evan Cheng9fe20092011-01-20 08:34:58 +00001300 } else if (Opcode == ARM::PICLDR) {
1301 if (MI1->getOpcode() != Opcode)
1302 return false;
1303 if (MI0->getNumOperands() != MI1->getNumOperands())
1304 return false;
1305
1306 unsigned Addr0 = MI0->getOperand(1).getReg();
1307 unsigned Addr1 = MI1->getOperand(1).getReg();
1308 if (Addr0 != Addr1) {
1309 if (!MRI ||
1310 !TargetRegisterInfo::isVirtualRegister(Addr0) ||
1311 !TargetRegisterInfo::isVirtualRegister(Addr1))
1312 return false;
1313
1314 // This assumes SSA form.
1315 MachineInstr *Def0 = MRI->getVRegDef(Addr0);
1316 MachineInstr *Def1 = MRI->getVRegDef(Addr1);
1317 // Check if the loaded value, e.g. a constantpool of a global address, are
1318 // the same.
1319 if (!produceSameValue(Def0, Def1, MRI))
1320 return false;
1321 }
1322
1323 for (unsigned i = 3, e = MI0->getNumOperands(); i != e; ++i) {
1324 // %vreg12<def> = PICLDR %vreg11, 0, pred:14, pred:%noreg
1325 const MachineOperand &MO0 = MI0->getOperand(i);
1326 const MachineOperand &MO1 = MI1->getOperand(i);
1327 if (!MO0.isIdenticalTo(MO1))
1328 return false;
1329 }
1330 return true;
Evan Chengd457e6e2009-11-07 04:04:34 +00001331 }
1332
Evan Cheng506049f2010-03-03 01:44:33 +00001333 return MI0->isIdenticalTo(MI1, MachineInstr::IgnoreVRegDefs);
Evan Chengd457e6e2009-11-07 04:04:34 +00001334}
1335
Bill Wendling4b722102010-06-23 23:00:16 +00001336/// areLoadsFromSameBasePtr - This is used by the pre-regalloc scheduler to
1337/// determine if two loads are loading from the same base address. It should
1338/// only return true if the base pointers are the same and the only differences
1339/// between the two addresses is the offset. It also returns the offsets by
1340/// reference.
1341bool ARMBaseInstrInfo::areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
1342 int64_t &Offset1,
1343 int64_t &Offset2) const {
1344 // Don't worry about Thumb: just ARM and Thumb2.
1345 if (Subtarget.isThumb1Only()) return false;
1346
1347 if (!Load1->isMachineOpcode() || !Load2->isMachineOpcode())
1348 return false;
1349
1350 switch (Load1->getMachineOpcode()) {
1351 default:
1352 return false;
Jim Grosbach3e556122010-10-26 22:37:02 +00001353 case ARM::LDRi12:
Jim Grosbachc1d30212010-10-27 00:19:44 +00001354 case ARM::LDRBi12:
Bill Wendling4b722102010-06-23 23:00:16 +00001355 case ARM::LDRD:
1356 case ARM::LDRH:
1357 case ARM::LDRSB:
1358 case ARM::LDRSH:
1359 case ARM::VLDRD:
1360 case ARM::VLDRS:
1361 case ARM::t2LDRi8:
1362 case ARM::t2LDRDi8:
1363 case ARM::t2LDRSHi8:
1364 case ARM::t2LDRi12:
1365 case ARM::t2LDRSHi12:
1366 break;
1367 }
1368
1369 switch (Load2->getMachineOpcode()) {
1370 default:
1371 return false;
Jim Grosbach3e556122010-10-26 22:37:02 +00001372 case ARM::LDRi12:
Jim Grosbachc1d30212010-10-27 00:19:44 +00001373 case ARM::LDRBi12:
Bill Wendling4b722102010-06-23 23:00:16 +00001374 case ARM::LDRD:
1375 case ARM::LDRH:
1376 case ARM::LDRSB:
1377 case ARM::LDRSH:
1378 case ARM::VLDRD:
1379 case ARM::VLDRS:
1380 case ARM::t2LDRi8:
1381 case ARM::t2LDRDi8:
1382 case ARM::t2LDRSHi8:
1383 case ARM::t2LDRi12:
1384 case ARM::t2LDRSHi12:
1385 break;
1386 }
1387
1388 // Check if base addresses and chain operands match.
1389 if (Load1->getOperand(0) != Load2->getOperand(0) ||
1390 Load1->getOperand(4) != Load2->getOperand(4))
1391 return false;
1392
1393 // Index should be Reg0.
1394 if (Load1->getOperand(3) != Load2->getOperand(3))
1395 return false;
1396
1397 // Determine the offsets.
1398 if (isa<ConstantSDNode>(Load1->getOperand(1)) &&
1399 isa<ConstantSDNode>(Load2->getOperand(1))) {
1400 Offset1 = cast<ConstantSDNode>(Load1->getOperand(1))->getSExtValue();
1401 Offset2 = cast<ConstantSDNode>(Load2->getOperand(1))->getSExtValue();
1402 return true;
1403 }
1404
1405 return false;
1406}
1407
1408/// shouldScheduleLoadsNear - This is a used by the pre-regalloc scheduler to
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001409/// determine (in conjunction with areLoadsFromSameBasePtr) if two loads should
Bill Wendling4b722102010-06-23 23:00:16 +00001410/// be scheduled togther. On some targets if two loads are loading from
1411/// addresses in the same cache line, it's better if they are scheduled
1412/// together. This function takes two integers that represent the load offsets
1413/// from the common base address. It returns true if it decides it's desirable
1414/// to schedule the two loads together. "NumLoads" is the number of loads that
1415/// have already been scheduled after Load1.
1416bool ARMBaseInstrInfo::shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
1417 int64_t Offset1, int64_t Offset2,
1418 unsigned NumLoads) const {
1419 // Don't worry about Thumb: just ARM and Thumb2.
1420 if (Subtarget.isThumb1Only()) return false;
1421
1422 assert(Offset2 > Offset1);
1423
1424 if ((Offset2 - Offset1) / 8 > 64)
1425 return false;
1426
1427 if (Load1->getMachineOpcode() != Load2->getMachineOpcode())
1428 return false; // FIXME: overly conservative?
1429
1430 // Four loads in a row should be sufficient.
1431 if (NumLoads >= 3)
1432 return false;
1433
1434 return true;
1435}
1436
Evan Cheng86050dc2010-06-18 23:09:54 +00001437bool ARMBaseInstrInfo::isSchedulingBoundary(const MachineInstr *MI,
1438 const MachineBasicBlock *MBB,
1439 const MachineFunction &MF) const {
Jim Grosbach57bb3942010-06-25 18:43:14 +00001440 // Debug info is never a scheduling boundary. It's necessary to be explicit
1441 // due to the special treatment of IT instructions below, otherwise a
1442 // dbg_value followed by an IT will result in the IT instruction being
1443 // considered a scheduling hazard, which is wrong. It should be the actual
1444 // instruction preceding the dbg_value instruction(s), just like it is
1445 // when debug info is not present.
1446 if (MI->isDebugValue())
1447 return false;
1448
Evan Cheng86050dc2010-06-18 23:09:54 +00001449 // Terminators and labels can't be scheduled around.
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001450 if (MI->isTerminator() || MI->isLabel())
Evan Cheng86050dc2010-06-18 23:09:54 +00001451 return true;
1452
1453 // Treat the start of the IT block as a scheduling boundary, but schedule
1454 // t2IT along with all instructions following it.
1455 // FIXME: This is a big hammer. But the alternative is to add all potential
1456 // true and anti dependencies to IT block instructions as implicit operands
1457 // to the t2IT instruction. The added compile time and complexity does not
1458 // seem worth it.
1459 MachineBasicBlock::const_iterator I = MI;
Jim Grosbach57bb3942010-06-25 18:43:14 +00001460 // Make sure to skip any dbg_value instructions
1461 while (++I != MBB->end() && I->isDebugValue())
1462 ;
1463 if (I != MBB->end() && I->getOpcode() == ARM::t2IT)
Evan Cheng86050dc2010-06-18 23:09:54 +00001464 return true;
1465
1466 // Don't attempt to schedule around any instruction that defines
1467 // a stack-oriented pointer, as it's unlikely to be profitable. This
1468 // saves compile time, because it doesn't require every single
1469 // stack slot reference to depend on the instruction that does the
1470 // modification.
Jakob Stoklund Olesena1aa8db2012-02-21 23:47:43 +00001471 // Calls don't actually change the stack pointer, even if they have imp-defs.
Jakob Stoklund Olesen209600b2012-02-22 01:07:19 +00001472 // No ARM calling conventions change the stack pointer. (X86 calling
1473 // conventions sometimes do).
Jakob Stoklund Olesena1aa8db2012-02-21 23:47:43 +00001474 if (!MI->isCall() && MI->definesRegister(ARM::SP))
Evan Cheng86050dc2010-06-18 23:09:54 +00001475 return true;
1476
1477 return false;
1478}
1479
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001480bool ARMBaseInstrInfo::
1481isProfitableToIfCvt(MachineBasicBlock &MBB,
1482 unsigned NumCycles, unsigned ExtraPredCycles,
1483 const BranchProbability &Probability) const {
Cameron Zwarich5876db72011-04-13 06:39:16 +00001484 if (!NumCycles)
Evan Cheng13151432010-06-25 22:42:03 +00001485 return false;
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001486
Owen Andersonb20b8512010-09-28 18:32:13 +00001487 // Attempt to estimate the relative costs of predication versus branching.
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001488 unsigned UnpredCost = Probability.getNumerator() * NumCycles;
1489 UnpredCost /= Probability.getDenominator();
1490 UnpredCost += 1; // The branch itself
1491 UnpredCost += Subtarget.getMispredictionPenalty() / 10;
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001492
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001493 return (NumCycles + ExtraPredCycles) <= UnpredCost;
Evan Cheng13151432010-06-25 22:42:03 +00001494}
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001495
Evan Cheng13151432010-06-25 22:42:03 +00001496bool ARMBaseInstrInfo::
Evan Cheng8239daf2010-11-03 00:45:17 +00001497isProfitableToIfCvt(MachineBasicBlock &TMBB,
1498 unsigned TCycles, unsigned TExtra,
1499 MachineBasicBlock &FMBB,
1500 unsigned FCycles, unsigned FExtra,
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001501 const BranchProbability &Probability) const {
Evan Cheng8239daf2010-11-03 00:45:17 +00001502 if (!TCycles || !FCycles)
Owen Andersonb20b8512010-09-28 18:32:13 +00001503 return false;
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001504
Owen Andersonb20b8512010-09-28 18:32:13 +00001505 // Attempt to estimate the relative costs of predication versus branching.
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001506 unsigned TUnpredCost = Probability.getNumerator() * TCycles;
1507 TUnpredCost /= Probability.getDenominator();
Andrew Tricke23dc9c2011-09-21 02:17:37 +00001508
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001509 uint32_t Comp = Probability.getDenominator() - Probability.getNumerator();
1510 unsigned FUnpredCost = Comp * FCycles;
1511 FUnpredCost /= Probability.getDenominator();
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001512
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001513 unsigned UnpredCost = TUnpredCost + FUnpredCost;
1514 UnpredCost += 1; // The branch itself
1515 UnpredCost += Subtarget.getMispredictionPenalty() / 10;
1516
1517 return (TCycles + FCycles + TExtra + FExtra) <= UnpredCost;
Evan Cheng13151432010-06-25 22:42:03 +00001518}
1519
Evan Cheng8fb90362009-08-08 03:20:32 +00001520/// getInstrPredicate - If instruction is predicated, returns its predicate
1521/// condition, otherwise returns AL. It also returns the condition code
1522/// register by reference.
Evan Cheng5adb66a2009-09-28 09:14:39 +00001523ARMCC::CondCodes
1524llvm::getInstrPredicate(const MachineInstr *MI, unsigned &PredReg) {
Evan Cheng8fb90362009-08-08 03:20:32 +00001525 int PIdx = MI->findFirstPredOperandIdx();
1526 if (PIdx == -1) {
1527 PredReg = 0;
1528 return ARMCC::AL;
1529 }
1530
1531 PredReg = MI->getOperand(PIdx+1).getReg();
1532 return (ARMCC::CondCodes)MI->getOperand(PIdx).getImm();
1533}
1534
1535
Evan Cheng6495f632009-07-28 05:48:47 +00001536int llvm::getMatchingCondBranchOpcode(int Opc) {
Evan Cheng5ca53a72009-07-27 18:20:05 +00001537 if (Opc == ARM::B)
1538 return ARM::Bcc;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001539 if (Opc == ARM::tB)
Evan Cheng5ca53a72009-07-27 18:20:05 +00001540 return ARM::tBcc;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001541 if (Opc == ARM::t2B)
1542 return ARM::t2Bcc;
Evan Cheng5ca53a72009-07-27 18:20:05 +00001543
1544 llvm_unreachable("Unknown unconditional branch opcode!");
Evan Cheng5ca53a72009-07-27 18:20:05 +00001545}
1546
Jakob Stoklund Olesenc5041ca2012-04-04 18:23:42 +00001547/// commuteInstruction - Handle commutable instructions.
1548MachineInstr *
1549ARMBaseInstrInfo::commuteInstruction(MachineInstr *MI, bool NewMI) const {
1550 switch (MI->getOpcode()) {
1551 case ARM::MOVCCr:
1552 case ARM::t2MOVCCr: {
1553 // MOVCC can be commuted by inverting the condition.
1554 unsigned PredReg = 0;
1555 ARMCC::CondCodes CC = getInstrPredicate(MI, PredReg);
1556 // MOVCC AL can't be inverted. Shouldn't happen.
1557 if (CC == ARMCC::AL || PredReg != ARM::CPSR)
1558 return NULL;
1559 MI = TargetInstrInfoImpl::commuteInstruction(MI, NewMI);
1560 if (!MI)
1561 return NULL;
1562 // After swapping the MOVCC operands, also invert the condition.
1563 MI->getOperand(MI->findFirstPredOperandIdx())
1564 .setImm(ARMCC::getOppositeCondition(CC));
1565 return MI;
1566 }
1567 }
1568 return TargetInstrInfoImpl::commuteInstruction(MI, NewMI);
1569}
Evan Cheng6495f632009-07-28 05:48:47 +00001570
Andrew Trick3be654f2011-09-21 02:20:46 +00001571/// Map pseudo instructions that imply an 'S' bit onto real opcodes. Whether the
1572/// instruction is encoded with an 'S' bit is determined by the optional CPSR
1573/// def operand.
1574///
1575/// This will go away once we can teach tblgen how to set the optional CPSR def
1576/// operand itself.
1577struct AddSubFlagsOpcodePair {
Craig Toppercd2859e2012-05-24 03:59:11 +00001578 uint16_t PseudoOpc;
1579 uint16_t MachineOpc;
Andrew Trick3be654f2011-09-21 02:20:46 +00001580};
1581
Craig Toppercd2859e2012-05-24 03:59:11 +00001582static const AddSubFlagsOpcodePair AddSubFlagsOpcodeMap[] = {
Andrew Trick3be654f2011-09-21 02:20:46 +00001583 {ARM::ADDSri, ARM::ADDri},
1584 {ARM::ADDSrr, ARM::ADDrr},
1585 {ARM::ADDSrsi, ARM::ADDrsi},
1586 {ARM::ADDSrsr, ARM::ADDrsr},
1587
1588 {ARM::SUBSri, ARM::SUBri},
1589 {ARM::SUBSrr, ARM::SUBrr},
1590 {ARM::SUBSrsi, ARM::SUBrsi},
1591 {ARM::SUBSrsr, ARM::SUBrsr},
1592
1593 {ARM::RSBSri, ARM::RSBri},
Andrew Trick3be654f2011-09-21 02:20:46 +00001594 {ARM::RSBSrsi, ARM::RSBrsi},
1595 {ARM::RSBSrsr, ARM::RSBrsr},
1596
1597 {ARM::t2ADDSri, ARM::t2ADDri},
1598 {ARM::t2ADDSrr, ARM::t2ADDrr},
1599 {ARM::t2ADDSrs, ARM::t2ADDrs},
1600
1601 {ARM::t2SUBSri, ARM::t2SUBri},
1602 {ARM::t2SUBSrr, ARM::t2SUBrr},
1603 {ARM::t2SUBSrs, ARM::t2SUBrs},
1604
1605 {ARM::t2RSBSri, ARM::t2RSBri},
1606 {ARM::t2RSBSrs, ARM::t2RSBrs},
1607};
1608
1609unsigned llvm::convertAddSubFlagsOpcode(unsigned OldOpc) {
Craig Toppercd2859e2012-05-24 03:59:11 +00001610 for (unsigned i = 0, e = array_lengthof(AddSubFlagsOpcodeMap); i != e; ++i)
1611 if (OldOpc == AddSubFlagsOpcodeMap[i].PseudoOpc)
1612 return AddSubFlagsOpcodeMap[i].MachineOpc;
Andrew Trick3be654f2011-09-21 02:20:46 +00001613 return 0;
1614}
1615
Evan Cheng6495f632009-07-28 05:48:47 +00001616void llvm::emitARMRegPlusImmediate(MachineBasicBlock &MBB,
1617 MachineBasicBlock::iterator &MBBI, DebugLoc dl,
1618 unsigned DestReg, unsigned BaseReg, int NumBytes,
1619 ARMCC::CondCodes Pred, unsigned PredReg,
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001620 const ARMBaseInstrInfo &TII, unsigned MIFlags) {
Evan Cheng6495f632009-07-28 05:48:47 +00001621 bool isSub = NumBytes < 0;
1622 if (isSub) NumBytes = -NumBytes;
1623
1624 while (NumBytes) {
1625 unsigned RotAmt = ARM_AM::getSOImmValRotate(NumBytes);
1626 unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt);
1627 assert(ThisVal && "Didn't extract field correctly");
1628
1629 // We will handle these bits from offset, clear them.
1630 NumBytes &= ~ThisVal;
1631
1632 assert(ARM_AM::getSOImmVal(ThisVal) != -1 && "Bit extraction didn't work?");
1633
1634 // Build the new ADD / SUB.
1635 unsigned Opc = isSub ? ARM::SUBri : ARM::ADDri;
1636 BuildMI(MBB, MBBI, dl, TII.get(Opc), DestReg)
1637 .addReg(BaseReg, RegState::Kill).addImm(ThisVal)
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001638 .addImm((unsigned)Pred).addReg(PredReg).addReg(0)
1639 .setMIFlags(MIFlags);
Evan Cheng6495f632009-07-28 05:48:47 +00001640 BaseReg = DestReg;
1641 }
1642}
1643
Evan Chengcdbb3f52009-08-27 01:23:50 +00001644bool llvm::rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
1645 unsigned FrameReg, int &Offset,
1646 const ARMBaseInstrInfo &TII) {
Evan Cheng6495f632009-07-28 05:48:47 +00001647 unsigned Opcode = MI.getOpcode();
Evan Chenge837dea2011-06-28 19:10:37 +00001648 const MCInstrDesc &Desc = MI.getDesc();
Evan Cheng6495f632009-07-28 05:48:47 +00001649 unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
1650 bool isSub = false;
Jim Grosbach764ab522009-08-11 15:33:49 +00001651
Evan Cheng6495f632009-07-28 05:48:47 +00001652 // Memory operands in inline assembly always use AddrMode2.
1653 if (Opcode == ARM::INLINEASM)
1654 AddrMode = ARMII::AddrMode2;
Jim Grosbach764ab522009-08-11 15:33:49 +00001655
Evan Cheng6495f632009-07-28 05:48:47 +00001656 if (Opcode == ARM::ADDri) {
1657 Offset += MI.getOperand(FrameRegIdx+1).getImm();
1658 if (Offset == 0) {
1659 // Turn it into a move.
1660 MI.setDesc(TII.get(ARM::MOVr));
1661 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1662 MI.RemoveOperand(FrameRegIdx+1);
Evan Chengcdbb3f52009-08-27 01:23:50 +00001663 Offset = 0;
1664 return true;
Evan Cheng6495f632009-07-28 05:48:47 +00001665 } else if (Offset < 0) {
1666 Offset = -Offset;
1667 isSub = true;
1668 MI.setDesc(TII.get(ARM::SUBri));
1669 }
1670
1671 // Common case: small offset, fits into instruction.
1672 if (ARM_AM::getSOImmVal(Offset) != -1) {
1673 // Replace the FrameIndex with sp / fp
1674 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1675 MI.getOperand(FrameRegIdx+1).ChangeToImmediate(Offset);
Evan Chengcdbb3f52009-08-27 01:23:50 +00001676 Offset = 0;
1677 return true;
Evan Cheng6495f632009-07-28 05:48:47 +00001678 }
1679
1680 // Otherwise, pull as much of the immedidate into this ADDri/SUBri
1681 // as possible.
1682 unsigned RotAmt = ARM_AM::getSOImmValRotate(Offset);
1683 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xFF, RotAmt);
1684
1685 // We will handle these bits from offset, clear them.
1686 Offset &= ~ThisImmVal;
1687
1688 // Get the properly encoded SOImmVal field.
1689 assert(ARM_AM::getSOImmVal(ThisImmVal) != -1 &&
1690 "Bit extraction didn't work?");
1691 MI.getOperand(FrameRegIdx+1).ChangeToImmediate(ThisImmVal);
1692 } else {
1693 unsigned ImmIdx = 0;
1694 int InstrOffs = 0;
1695 unsigned NumBits = 0;
1696 unsigned Scale = 1;
1697 switch (AddrMode) {
Jim Grosbach3e556122010-10-26 22:37:02 +00001698 case ARMII::AddrMode_i12: {
1699 ImmIdx = FrameRegIdx + 1;
1700 InstrOffs = MI.getOperand(ImmIdx).getImm();
1701 NumBits = 12;
1702 break;
1703 }
Evan Cheng6495f632009-07-28 05:48:47 +00001704 case ARMII::AddrMode2: {
1705 ImmIdx = FrameRegIdx+2;
1706 InstrOffs = ARM_AM::getAM2Offset(MI.getOperand(ImmIdx).getImm());
1707 if (ARM_AM::getAM2Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1708 InstrOffs *= -1;
1709 NumBits = 12;
1710 break;
1711 }
1712 case ARMII::AddrMode3: {
1713 ImmIdx = FrameRegIdx+2;
1714 InstrOffs = ARM_AM::getAM3Offset(MI.getOperand(ImmIdx).getImm());
1715 if (ARM_AM::getAM3Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1716 InstrOffs *= -1;
1717 NumBits = 8;
1718 break;
1719 }
Anton Korobeynikovbaf31082009-08-08 13:35:48 +00001720 case ARMII::AddrMode4:
Jim Grosbacha4432172009-11-15 21:45:34 +00001721 case ARMII::AddrMode6:
Evan Chengcdbb3f52009-08-27 01:23:50 +00001722 // Can't fold any offset even if it's zero.
1723 return false;
Evan Cheng6495f632009-07-28 05:48:47 +00001724 case ARMII::AddrMode5: {
1725 ImmIdx = FrameRegIdx+1;
1726 InstrOffs = ARM_AM::getAM5Offset(MI.getOperand(ImmIdx).getImm());
1727 if (ARM_AM::getAM5Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1728 InstrOffs *= -1;
1729 NumBits = 8;
1730 Scale = 4;
1731 break;
1732 }
1733 default:
1734 llvm_unreachable("Unsupported addressing mode!");
Evan Cheng6495f632009-07-28 05:48:47 +00001735 }
1736
1737 Offset += InstrOffs * Scale;
1738 assert((Offset & (Scale-1)) == 0 && "Can't encode this offset!");
1739 if (Offset < 0) {
1740 Offset = -Offset;
1741 isSub = true;
1742 }
1743
1744 // Attempt to fold address comp. if opcode has offset bits
1745 if (NumBits > 0) {
1746 // Common case: small offset, fits into instruction.
1747 MachineOperand &ImmOp = MI.getOperand(ImmIdx);
1748 int ImmedOffset = Offset / Scale;
1749 unsigned Mask = (1 << NumBits) - 1;
1750 if ((unsigned)Offset <= Mask * Scale) {
1751 // Replace the FrameIndex with sp
1752 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
Jim Grosbach77aee8e2010-10-27 01:19:41 +00001753 // FIXME: When addrmode2 goes away, this will simplify (like the
1754 // T2 version), as the LDR.i12 versions don't need the encoding
1755 // tricks for the offset value.
1756 if (isSub) {
1757 if (AddrMode == ARMII::AddrMode_i12)
1758 ImmedOffset = -ImmedOffset;
1759 else
1760 ImmedOffset |= 1 << NumBits;
1761 }
Evan Cheng6495f632009-07-28 05:48:47 +00001762 ImmOp.ChangeToImmediate(ImmedOffset);
Evan Chengcdbb3f52009-08-27 01:23:50 +00001763 Offset = 0;
1764 return true;
Evan Cheng6495f632009-07-28 05:48:47 +00001765 }
Jim Grosbach764ab522009-08-11 15:33:49 +00001766
Evan Cheng6495f632009-07-28 05:48:47 +00001767 // Otherwise, it didn't fit. Pull in what we can to simplify the immed.
1768 ImmedOffset = ImmedOffset & Mask;
Jim Grosbach063efbf2010-10-27 16:50:31 +00001769 if (isSub) {
1770 if (AddrMode == ARMII::AddrMode_i12)
1771 ImmedOffset = -ImmedOffset;
1772 else
1773 ImmedOffset |= 1 << NumBits;
1774 }
Evan Cheng6495f632009-07-28 05:48:47 +00001775 ImmOp.ChangeToImmediate(ImmedOffset);
1776 Offset &= ~(Mask*Scale);
1777 }
1778 }
1779
Evan Chengcdbb3f52009-08-27 01:23:50 +00001780 Offset = (isSub) ? -Offset : Offset;
1781 return Offset == 0;
Evan Cheng6495f632009-07-28 05:48:47 +00001782}
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001783
Manman Rende7266c2012-06-29 21:33:59 +00001784/// analyzeCompare - For a comparison instruction, return the source registers
1785/// in SrcReg and SrcReg2 if having two register operands, and the value it
1786/// compares against in CmpValue. Return true if the comparison instruction
1787/// can be analyzed.
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001788bool ARMBaseInstrInfo::
Manman Rende7266c2012-06-29 21:33:59 +00001789analyzeCompare(const MachineInstr *MI, unsigned &SrcReg, unsigned &SrcReg2,
1790 int &CmpMask, int &CmpValue) const {
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001791 switch (MI->getOpcode()) {
1792 default: break;
Bill Wendling38ae9972010-08-11 00:23:00 +00001793 case ARM::CMPri:
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001794 case ARM::t2CMPri:
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001795 SrcReg = MI->getOperand(0).getReg();
Manman Rende7266c2012-06-29 21:33:59 +00001796 SrcReg2 = 0;
Gabor Greif04ac81d2010-09-21 12:01:15 +00001797 CmpMask = ~0;
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001798 CmpValue = MI->getOperand(1).getImm();
1799 return true;
Manman Ren247c5ab2012-05-11 01:30:47 +00001800 case ARM::CMPrr:
1801 case ARM::t2CMPrr:
1802 SrcReg = MI->getOperand(0).getReg();
Manman Rende7266c2012-06-29 21:33:59 +00001803 SrcReg2 = MI->getOperand(1).getReg();
Manman Ren247c5ab2012-05-11 01:30:47 +00001804 CmpMask = ~0;
1805 CmpValue = 0;
1806 return true;
Gabor Greif04ac81d2010-09-21 12:01:15 +00001807 case ARM::TSTri:
1808 case ARM::t2TSTri:
1809 SrcReg = MI->getOperand(0).getReg();
Manman Rende7266c2012-06-29 21:33:59 +00001810 SrcReg2 = 0;
Gabor Greif04ac81d2010-09-21 12:01:15 +00001811 CmpMask = MI->getOperand(1).getImm();
1812 CmpValue = 0;
1813 return true;
1814 }
1815
1816 return false;
1817}
1818
Gabor Greif05642a32010-09-29 10:12:08 +00001819/// isSuitableForMask - Identify a suitable 'and' instruction that
1820/// operates on the given source register and applies the same mask
1821/// as a 'tst' instruction. Provide a limited look-through for copies.
1822/// When successful, MI will hold the found instruction.
1823static bool isSuitableForMask(MachineInstr *&MI, unsigned SrcReg,
Gabor Greif8ff9bb12010-09-21 13:30:57 +00001824 int CmpMask, bool CommonUse) {
Gabor Greif05642a32010-09-29 10:12:08 +00001825 switch (MI->getOpcode()) {
Gabor Greif04ac81d2010-09-21 12:01:15 +00001826 case ARM::ANDri:
1827 case ARM::t2ANDri:
Gabor Greif05642a32010-09-29 10:12:08 +00001828 if (CmpMask != MI->getOperand(2).getImm())
Gabor Greif8ff9bb12010-09-21 13:30:57 +00001829 return false;
Gabor Greif05642a32010-09-29 10:12:08 +00001830 if (SrcReg == MI->getOperand(CommonUse ? 1 : 0).getReg())
Gabor Greif04ac81d2010-09-21 12:01:15 +00001831 return true;
1832 break;
Gabor Greif05642a32010-09-29 10:12:08 +00001833 case ARM::COPY: {
1834 // Walk down one instruction which is potentially an 'and'.
1835 const MachineInstr &Copy = *MI;
Michael J. Spencerf000a7a2010-10-05 06:00:43 +00001836 MachineBasicBlock::iterator AND(
1837 llvm::next(MachineBasicBlock::iterator(MI)));
Gabor Greif05642a32010-09-29 10:12:08 +00001838 if (AND == MI->getParent()->end()) return false;
1839 MI = AND;
1840 return isSuitableForMask(MI, Copy.getOperand(0).getReg(),
1841 CmpMask, true);
1842 }
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001843 }
1844
1845 return false;
1846}
1847
Manman Ren76c6ccb2012-06-29 22:06:19 +00001848/// getSwappedCondition - assume the flags are set by MI(a,b), return
1849/// the condition code if we modify the instructions such that flags are
1850/// set by MI(b,a).
1851inline static ARMCC::CondCodes getSwappedCondition(ARMCC::CondCodes CC) {
1852 switch (CC) {
1853 default: return ARMCC::AL;
1854 case ARMCC::EQ: return ARMCC::EQ;
1855 case ARMCC::NE: return ARMCC::NE;
1856 case ARMCC::HS: return ARMCC::LS;
1857 case ARMCC::LO: return ARMCC::HI;
1858 case ARMCC::HI: return ARMCC::LO;
1859 case ARMCC::LS: return ARMCC::HS;
1860 case ARMCC::GE: return ARMCC::LE;
1861 case ARMCC::LT: return ARMCC::GT;
1862 case ARMCC::GT: return ARMCC::LT;
1863 case ARMCC::LE: return ARMCC::GE;
1864 }
1865}
1866
1867/// isRedundantFlagInstr - check whether the first instruction, whose only
1868/// purpose is to update flags, can be made redundant.
1869/// CMPrr can be made redundant by SUBrr if the operands are the same.
1870/// CMPri can be made redundant by SUBri if the operands are the same.
1871/// This function can be extended later on.
1872inline static bool isRedundantFlagInstr(MachineInstr *CmpI, unsigned SrcReg,
1873 unsigned SrcReg2, int ImmValue,
1874 MachineInstr *OI) {
1875 if ((CmpI->getOpcode() == ARM::CMPrr ||
1876 CmpI->getOpcode() == ARM::t2CMPrr) &&
1877 (OI->getOpcode() == ARM::SUBrr ||
1878 OI->getOpcode() == ARM::t2SUBrr) &&
1879 ((OI->getOperand(1).getReg() == SrcReg &&
1880 OI->getOperand(2).getReg() == SrcReg2) ||
1881 (OI->getOperand(1).getReg() == SrcReg2 &&
1882 OI->getOperand(2).getReg() == SrcReg)))
1883 return true;
1884
1885 if ((CmpI->getOpcode() == ARM::CMPri ||
1886 CmpI->getOpcode() == ARM::t2CMPri) &&
1887 (OI->getOpcode() == ARM::SUBri ||
1888 OI->getOpcode() == ARM::t2SUBri) &&
1889 OI->getOperand(1).getReg() == SrcReg &&
1890 OI->getOperand(2).getImm() == ImmValue)
1891 return true;
1892 return false;
1893}
1894
Manman Rende7266c2012-06-29 21:33:59 +00001895/// optimizeCompareInstr - Convert the instruction supplying the argument to the
1896/// comparison into one that sets the zero bit in the flags register;
1897/// Remove a redundant Compare instruction if an earlier instruction can set the
1898/// flags in the same way as Compare.
1899/// E.g. SUBrr(r1,r2) and CMPrr(r1,r2). We also handle the case where two
1900/// operands are swapped: SUBrr(r1,r2) and CMPrr(r2,r1), by updating the
1901/// condition code of instructions which use the flags.
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001902bool ARMBaseInstrInfo::
Manman Rende7266c2012-06-29 21:33:59 +00001903optimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, unsigned SrcReg2,
1904 int CmpMask, int CmpValue,
1905 const MachineRegisterInfo *MRI) const {
Manman Ren76c6ccb2012-06-29 22:06:19 +00001906 // Get the unique definition of SrcReg.
1907 MachineInstr *MI = MRI->getUniqueVRegDef(SrcReg);
1908 if (!MI) return false;
Bill Wendling92ad57f2010-09-10 23:34:19 +00001909
Gabor Greif04ac81d2010-09-21 12:01:15 +00001910 // Masked compares sometimes use the same register as the corresponding 'and'.
1911 if (CmpMask != ~0) {
Gabor Greif05642a32010-09-29 10:12:08 +00001912 if (!isSuitableForMask(MI, SrcReg, CmpMask, false)) {
Gabor Greif04ac81d2010-09-21 12:01:15 +00001913 MI = 0;
Bill Wendlingb41ee962010-10-18 21:22:31 +00001914 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(SrcReg),
1915 UE = MRI->use_end(); UI != UE; ++UI) {
Gabor Greif04ac81d2010-09-21 12:01:15 +00001916 if (UI->getParent() != CmpInstr->getParent()) continue;
Gabor Greif05642a32010-09-29 10:12:08 +00001917 MachineInstr *PotentialAND = &*UI;
Gabor Greif8ff9bb12010-09-21 13:30:57 +00001918 if (!isSuitableForMask(PotentialAND, SrcReg, CmpMask, true))
Gabor Greif04ac81d2010-09-21 12:01:15 +00001919 continue;
Gabor Greif05642a32010-09-29 10:12:08 +00001920 MI = PotentialAND;
Gabor Greif04ac81d2010-09-21 12:01:15 +00001921 break;
1922 }
1923 if (!MI) return false;
1924 }
1925 }
1926
Manman Ren247c5ab2012-05-11 01:30:47 +00001927 // Get ready to iterate backward from CmpInstr.
1928 MachineBasicBlock::iterator I = CmpInstr, E = MI,
1929 B = CmpInstr->getParent()->begin();
Bill Wendling0aa38b92010-10-09 00:03:48 +00001930
1931 // Early exit if CmpInstr is at the beginning of the BB.
1932 if (I == B) return false;
1933
Manman Ren247c5ab2012-05-11 01:30:47 +00001934 // There are two possible candidates which can be changed to set CPSR:
1935 // One is MI, the other is a SUB instruction.
1936 // For CMPrr(r1,r2), we are looking for SUB(r1,r2) or SUB(r2,r1).
1937 // For CMPri(r1, CmpValue), we are looking for SUBri(r1, CmpValue).
1938 MachineInstr *Sub = NULL;
Manman Rende7266c2012-06-29 21:33:59 +00001939 if (SrcReg2 != 0)
Manman Ren247c5ab2012-05-11 01:30:47 +00001940 // MI is not a candidate for CMPrr.
1941 MI = NULL;
Manman Rende7266c2012-06-29 21:33:59 +00001942 else if (MI->getParent() != CmpInstr->getParent() || CmpValue != 0) {
Manman Ren247c5ab2012-05-11 01:30:47 +00001943 // Conservatively refuse to convert an instruction which isn't in the same
1944 // BB as the comparison.
1945 // For CMPri, we need to check Sub, thus we can't return here.
Manman Ren4949e982012-05-11 15:36:46 +00001946 if (CmpInstr->getOpcode() == ARM::CMPri ||
Manman Ren247c5ab2012-05-11 01:30:47 +00001947 CmpInstr->getOpcode() == ARM::t2CMPri)
1948 MI = NULL;
1949 else
1950 return false;
1951 }
1952
1953 // Check that CPSR isn't set between the comparison instruction and the one we
1954 // want to change. At the same time, search for Sub.
Manman Ren76c6ccb2012-06-29 22:06:19 +00001955 const TargetRegisterInfo *TRI = &getRegisterInfo();
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001956 --I;
1957 for (; I != E; --I) {
1958 const MachineInstr &Instr = *I;
1959
Manman Ren76c6ccb2012-06-29 22:06:19 +00001960 if (Instr.modifiesRegister(ARM::CPSR, TRI) ||
1961 Instr.readsRegister(ARM::CPSR, TRI))
Bill Wendling40a5eb12010-11-01 20:41:43 +00001962 // This instruction modifies or uses CPSR after the one we want to
1963 // change. We can't do this transformation.
Manman Ren76c6ccb2012-06-29 22:06:19 +00001964 return false;
Evan Cheng691e64a2010-09-21 23:49:07 +00001965
Manman Ren76c6ccb2012-06-29 22:06:19 +00001966 // Check whether CmpInstr can be made redundant by the current instruction.
1967 if (isRedundantFlagInstr(CmpInstr, SrcReg, SrcReg2, CmpValue, &*I)) {
Manman Ren247c5ab2012-05-11 01:30:47 +00001968 Sub = &*I;
1969 break;
1970 }
1971
Evan Cheng691e64a2010-09-21 23:49:07 +00001972 if (I == B)
1973 // The 'and' is below the comparison instruction.
1974 return false;
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001975 }
1976
Manman Ren247c5ab2012-05-11 01:30:47 +00001977 // Return false if no candidates exist.
1978 if (!MI && !Sub)
1979 return false;
1980
1981 // The single candidate is called MI.
1982 if (!MI) MI = Sub;
1983
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001984 switch (MI->getOpcode()) {
1985 default: break;
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001986 case ARM::RSBrr:
Owen Andersondf298c92011-04-06 23:35:59 +00001987 case ARM::RSBri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001988 case ARM::RSCrr:
Owen Andersondf298c92011-04-06 23:35:59 +00001989 case ARM::RSCri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001990 case ARM::ADDrr:
Bill Wendling38ae9972010-08-11 00:23:00 +00001991 case ARM::ADDri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001992 case ARM::ADCrr:
Owen Andersondf298c92011-04-06 23:35:59 +00001993 case ARM::ADCri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001994 case ARM::SUBrr:
Bill Wendling38ae9972010-08-11 00:23:00 +00001995 case ARM::SUBri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001996 case ARM::SBCrr:
Owen Andersondf298c92011-04-06 23:35:59 +00001997 case ARM::SBCri:
1998 case ARM::t2RSBri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001999 case ARM::t2ADDrr:
Bill Wendling38ae9972010-08-11 00:23:00 +00002000 case ARM::t2ADDri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00002001 case ARM::t2ADCrr:
Owen Andersondf298c92011-04-06 23:35:59 +00002002 case ARM::t2ADCri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00002003 case ARM::t2SUBrr:
Owen Andersondf298c92011-04-06 23:35:59 +00002004 case ARM::t2SUBri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00002005 case ARM::t2SBCrr:
Cameron Zwarichb485de52011-04-15 20:45:00 +00002006 case ARM::t2SBCri:
2007 case ARM::ANDrr:
2008 case ARM::ANDri:
2009 case ARM::t2ANDrr:
Cameron Zwarich0cb11ac2011-04-15 21:24:38 +00002010 case ARM::t2ANDri:
2011 case ARM::ORRrr:
2012 case ARM::ORRri:
2013 case ARM::t2ORRrr:
2014 case ARM::t2ORRri:
2015 case ARM::EORrr:
2016 case ARM::EORri:
2017 case ARM::t2EORrr:
2018 case ARM::t2EORri: {
Manman Ren247c5ab2012-05-11 01:30:47 +00002019 // Scan forward for the use of CPSR
2020 // When checking against MI: if it's a conditional code requires
Manman Ren45ed1942012-07-11 22:51:44 +00002021 // checking of V bit, then this is not safe to do.
2022 // It is safe to remove CmpInstr if CPSR is redefined or killed.
2023 // If we are done with the basic block, we need to check whether CPSR is
2024 // live-out.
Manman Ren76c6ccb2012-06-29 22:06:19 +00002025 SmallVector<std::pair<MachineOperand*, ARMCC::CondCodes>, 4>
2026 OperandsToUpdate;
Evan Cheng2c339152011-03-23 22:52:04 +00002027 bool isSafe = false;
2028 I = CmpInstr;
Manman Ren247c5ab2012-05-11 01:30:47 +00002029 E = CmpInstr->getParent()->end();
Evan Cheng2c339152011-03-23 22:52:04 +00002030 while (!isSafe && ++I != E) {
2031 const MachineInstr &Instr = *I;
2032 for (unsigned IO = 0, EO = Instr.getNumOperands();
2033 !isSafe && IO != EO; ++IO) {
2034 const MachineOperand &MO = Instr.getOperand(IO);
Jakob Stoklund Olesen2420b552012-02-17 19:23:15 +00002035 if (MO.isRegMask() && MO.clobbersPhysReg(ARM::CPSR)) {
2036 isSafe = true;
2037 break;
2038 }
Evan Cheng2c339152011-03-23 22:52:04 +00002039 if (!MO.isReg() || MO.getReg() != ARM::CPSR)
2040 continue;
2041 if (MO.isDef()) {
2042 isSafe = true;
2043 break;
2044 }
2045 // Condition code is after the operand before CPSR.
2046 ARMCC::CondCodes CC = (ARMCC::CondCodes)Instr.getOperand(IO-1).getImm();
Manman Ren76c6ccb2012-06-29 22:06:19 +00002047 if (Sub) {
2048 ARMCC::CondCodes NewCC = getSwappedCondition(CC);
2049 if (NewCC == ARMCC::AL)
Manman Ren247c5ab2012-05-11 01:30:47 +00002050 return false;
Manman Ren76c6ccb2012-06-29 22:06:19 +00002051 // If we have SUB(r1, r2) and CMP(r2, r1), the condition code based
2052 // on CMP needs to be updated to be based on SUB.
2053 // Push the condition code operands to OperandsToUpdate.
2054 // If it is safe to remove CmpInstr, the condition code of these
2055 // operands will be modified.
2056 if (SrcReg2 != 0 && Sub->getOperand(1).getReg() == SrcReg2 &&
2057 Sub->getOperand(2).getReg() == SrcReg)
2058 OperandsToUpdate.push_back(std::make_pair(&((*I).getOperand(IO-1)),
2059 NewCC));
2060 }
Manman Ren247c5ab2012-05-11 01:30:47 +00002061 else
2062 switch (CC) {
2063 default:
Manman Ren9af64302012-07-11 23:47:00 +00002064 // CPSR can be used multiple times, we should continue.
Manman Ren247c5ab2012-05-11 01:30:47 +00002065 break;
2066 case ARMCC::VS:
2067 case ARMCC::VC:
2068 case ARMCC::GE:
2069 case ARMCC::LT:
2070 case ARMCC::GT:
2071 case ARMCC::LE:
2072 return false;
2073 }
Evan Cheng2c339152011-03-23 22:52:04 +00002074 }
2075 }
2076
Manman Ren45ed1942012-07-11 22:51:44 +00002077 // If CPSR is not killed nor re-defined, we should check whether it is
2078 // live-out. If it is live-out, do not optimize.
2079 if (!isSafe) {
2080 MachineBasicBlock *MBB = CmpInstr->getParent();
2081 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
2082 SE = MBB->succ_end(); SI != SE; ++SI)
2083 if ((*SI)->isLiveIn(ARM::CPSR))
2084 return false;
2085 }
Evan Cheng2c339152011-03-23 22:52:04 +00002086
Evan Cheng3642e642010-11-17 08:06:50 +00002087 // Toggle the optional operand to CPSR.
2088 MI->getOperand(5).setReg(ARM::CPSR);
2089 MI->getOperand(5).setIsDef(true);
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00002090 CmpInstr->eraseFromParent();
Manman Ren247c5ab2012-05-11 01:30:47 +00002091
2092 // Modify the condition code of operands in OperandsToUpdate.
2093 // Since we have SUB(r1, r2) and CMP(r2, r1), the condition code needs to
2094 // be changed from r2 > r1 to r1 < r2, from r2 < r1 to r1 > r2, etc.
Manman Ren76c6ccb2012-06-29 22:06:19 +00002095 for (unsigned i = 0, e = OperandsToUpdate.size(); i < e; i++)
2096 OperandsToUpdate[i].first->setImm(OperandsToUpdate[i].second);
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00002097 return true;
2098 }
Cameron Zwarichb485de52011-04-15 20:45:00 +00002099 }
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00002100
2101 return false;
2102}
Evan Cheng5f54ce32010-09-09 18:18:55 +00002103
Evan Chengc4af4632010-11-17 20:13:28 +00002104bool ARMBaseInstrInfo::FoldImmediate(MachineInstr *UseMI,
2105 MachineInstr *DefMI, unsigned Reg,
2106 MachineRegisterInfo *MRI) const {
2107 // Fold large immediates into add, sub, or, xor.
2108 unsigned DefOpc = DefMI->getOpcode();
2109 if (DefOpc != ARM::t2MOVi32imm && DefOpc != ARM::MOVi32imm)
2110 return false;
2111 if (!DefMI->getOperand(1).isImm())
2112 // Could be t2MOVi32imm <ga:xx>
2113 return false;
2114
2115 if (!MRI->hasOneNonDBGUse(Reg))
2116 return false;
2117
Evan Chenge279f592012-03-26 23:31:00 +00002118 const MCInstrDesc &DefMCID = DefMI->getDesc();
2119 if (DefMCID.hasOptionalDef()) {
2120 unsigned NumOps = DefMCID.getNumOperands();
2121 const MachineOperand &MO = DefMI->getOperand(NumOps-1);
2122 if (MO.getReg() == ARM::CPSR && !MO.isDead())
2123 // If DefMI defines CPSR and it is not dead, it's obviously not safe
2124 // to delete DefMI.
2125 return false;
2126 }
2127
2128 const MCInstrDesc &UseMCID = UseMI->getDesc();
2129 if (UseMCID.hasOptionalDef()) {
2130 unsigned NumOps = UseMCID.getNumOperands();
2131 if (UseMI->getOperand(NumOps-1).getReg() == ARM::CPSR)
2132 // If the instruction sets the flag, do not attempt this optimization
2133 // since it may change the semantics of the code.
2134 return false;
2135 }
2136
Evan Chengc4af4632010-11-17 20:13:28 +00002137 unsigned UseOpc = UseMI->getOpcode();
Evan Cheng5c71c7a2010-11-18 01:43:23 +00002138 unsigned NewUseOpc = 0;
Evan Chengc4af4632010-11-17 20:13:28 +00002139 uint32_t ImmVal = (uint32_t)DefMI->getOperand(1).getImm();
Evan Cheng5c71c7a2010-11-18 01:43:23 +00002140 uint32_t SOImmValV1 = 0, SOImmValV2 = 0;
Evan Chengc4af4632010-11-17 20:13:28 +00002141 bool Commute = false;
2142 switch (UseOpc) {
2143 default: return false;
2144 case ARM::SUBrr:
2145 case ARM::ADDrr:
2146 case ARM::ORRrr:
2147 case ARM::EORrr:
2148 case ARM::t2SUBrr:
2149 case ARM::t2ADDrr:
2150 case ARM::t2ORRrr:
2151 case ARM::t2EORrr: {
2152 Commute = UseMI->getOperand(2).getReg() != Reg;
2153 switch (UseOpc) {
2154 default: break;
2155 case ARM::SUBrr: {
2156 if (Commute)
2157 return false;
2158 ImmVal = -ImmVal;
2159 NewUseOpc = ARM::SUBri;
2160 // Fallthrough
2161 }
2162 case ARM::ADDrr:
2163 case ARM::ORRrr:
2164 case ARM::EORrr: {
2165 if (!ARM_AM::isSOImmTwoPartVal(ImmVal))
2166 return false;
2167 SOImmValV1 = (uint32_t)ARM_AM::getSOImmTwoPartFirst(ImmVal);
2168 SOImmValV2 = (uint32_t)ARM_AM::getSOImmTwoPartSecond(ImmVal);
2169 switch (UseOpc) {
2170 default: break;
2171 case ARM::ADDrr: NewUseOpc = ARM::ADDri; break;
2172 case ARM::ORRrr: NewUseOpc = ARM::ORRri; break;
2173 case ARM::EORrr: NewUseOpc = ARM::EORri; break;
2174 }
2175 break;
2176 }
2177 case ARM::t2SUBrr: {
2178 if (Commute)
2179 return false;
2180 ImmVal = -ImmVal;
2181 NewUseOpc = ARM::t2SUBri;
2182 // Fallthrough
2183 }
2184 case ARM::t2ADDrr:
2185 case ARM::t2ORRrr:
2186 case ARM::t2EORrr: {
2187 if (!ARM_AM::isT2SOImmTwoPartVal(ImmVal))
2188 return false;
2189 SOImmValV1 = (uint32_t)ARM_AM::getT2SOImmTwoPartFirst(ImmVal);
2190 SOImmValV2 = (uint32_t)ARM_AM::getT2SOImmTwoPartSecond(ImmVal);
2191 switch (UseOpc) {
2192 default: break;
2193 case ARM::t2ADDrr: NewUseOpc = ARM::t2ADDri; break;
2194 case ARM::t2ORRrr: NewUseOpc = ARM::t2ORRri; break;
2195 case ARM::t2EORrr: NewUseOpc = ARM::t2EORri; break;
2196 }
2197 break;
2198 }
2199 }
2200 }
2201 }
2202
2203 unsigned OpIdx = Commute ? 2 : 1;
2204 unsigned Reg1 = UseMI->getOperand(OpIdx).getReg();
2205 bool isKill = UseMI->getOperand(OpIdx).isKill();
2206 unsigned NewReg = MRI->createVirtualRegister(MRI->getRegClass(Reg));
2207 AddDefaultCC(AddDefaultPred(BuildMI(*UseMI->getParent(),
Evan Chengddfd1372011-12-14 02:11:42 +00002208 UseMI, UseMI->getDebugLoc(),
Evan Chengc4af4632010-11-17 20:13:28 +00002209 get(NewUseOpc), NewReg)
2210 .addReg(Reg1, getKillRegState(isKill))
2211 .addImm(SOImmValV1)));
2212 UseMI->setDesc(get(NewUseOpc));
2213 UseMI->getOperand(1).setReg(NewReg);
2214 UseMI->getOperand(1).setIsKill();
2215 UseMI->getOperand(2).ChangeToImmediate(SOImmValV2);
2216 DefMI->eraseFromParent();
2217 return true;
2218}
2219
Evan Cheng5f54ce32010-09-09 18:18:55 +00002220unsigned
Evan Cheng8239daf2010-11-03 00:45:17 +00002221ARMBaseInstrInfo::getNumMicroOps(const InstrItineraryData *ItinData,
2222 const MachineInstr *MI) const {
Evan Cheng3ef1c872010-09-10 01:29:16 +00002223 if (!ItinData || ItinData->isEmpty())
Evan Cheng5f54ce32010-09-09 18:18:55 +00002224 return 1;
2225
Evan Chenge837dea2011-06-28 19:10:37 +00002226 const MCInstrDesc &Desc = MI->getDesc();
Evan Cheng5f54ce32010-09-09 18:18:55 +00002227 unsigned Class = Desc.getSchedClass();
Andrew Trick218ee742012-07-02 18:10:42 +00002228 int ItinUOps = ItinData->getNumMicroOps(Class);
2229 if (ItinUOps >= 0)
2230 return ItinUOps;
Evan Cheng5f54ce32010-09-09 18:18:55 +00002231
2232 unsigned Opc = MI->getOpcode();
2233 switch (Opc) {
2234 default:
2235 llvm_unreachable("Unexpected multi-uops instruction!");
Bill Wendling73fe34a2010-11-16 01:16:36 +00002236 case ARM::VLDMQIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002237 case ARM::VSTMQIA:
Evan Cheng5f54ce32010-09-09 18:18:55 +00002238 return 2;
2239
2240 // The number of uOps for load / store multiple are determined by the number
2241 // registers.
Andrew Trick6e8f4c42010-12-24 04:28:06 +00002242 //
Evan Cheng3ef1c872010-09-10 01:29:16 +00002243 // On Cortex-A8, each pair of register loads / stores can be scheduled on the
2244 // same cycle. The scheduling for the first load / store must be done
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +00002245 // separately by assuming the address is not 64-bit aligned.
Bill Wendling73fe34a2010-11-16 01:16:36 +00002246 //
Evan Cheng3ef1c872010-09-10 01:29:16 +00002247 // On Cortex-A9, the formula is simply (#reg / 2) + (#reg % 2). If the address
Bill Wendling73fe34a2010-11-16 01:16:36 +00002248 // is not 64-bit aligned, then AGU would take an extra cycle. For VFP / NEON
2249 // load / store multiple, the formula is (#reg / 2) + (#reg % 2) + 1.
2250 case ARM::VLDMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002251 case ARM::VLDMDIA_UPD:
2252 case ARM::VLDMDDB_UPD:
2253 case ARM::VLDMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002254 case ARM::VLDMSIA_UPD:
2255 case ARM::VLDMSDB_UPD:
2256 case ARM::VSTMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002257 case ARM::VSTMDIA_UPD:
2258 case ARM::VSTMDDB_UPD:
2259 case ARM::VSTMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002260 case ARM::VSTMSIA_UPD:
2261 case ARM::VSTMSDB_UPD: {
Evan Cheng5f54ce32010-09-09 18:18:55 +00002262 unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands();
2263 return (NumRegs / 2) + (NumRegs % 2) + 1;
2264 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00002265
2266 case ARM::LDMIA_RET:
2267 case ARM::LDMIA:
2268 case ARM::LDMDA:
2269 case ARM::LDMDB:
2270 case ARM::LDMIB:
2271 case ARM::LDMIA_UPD:
2272 case ARM::LDMDA_UPD:
2273 case ARM::LDMDB_UPD:
2274 case ARM::LDMIB_UPD:
2275 case ARM::STMIA:
2276 case ARM::STMDA:
2277 case ARM::STMDB:
2278 case ARM::STMIB:
2279 case ARM::STMIA_UPD:
2280 case ARM::STMDA_UPD:
2281 case ARM::STMDB_UPD:
2282 case ARM::STMIB_UPD:
2283 case ARM::tLDMIA:
2284 case ARM::tLDMIA_UPD:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002285 case ARM::tSTMIA_UPD:
Evan Cheng5f54ce32010-09-09 18:18:55 +00002286 case ARM::tPOP_RET:
2287 case ARM::tPOP:
2288 case ARM::tPUSH:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002289 case ARM::t2LDMIA_RET:
2290 case ARM::t2LDMIA:
2291 case ARM::t2LDMDB:
2292 case ARM::t2LDMIA_UPD:
2293 case ARM::t2LDMDB_UPD:
2294 case ARM::t2STMIA:
2295 case ARM::t2STMDB:
2296 case ARM::t2STMIA_UPD:
2297 case ARM::t2STMDB_UPD: {
Evan Cheng3ef1c872010-09-10 01:29:16 +00002298 unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands() + 1;
2299 if (Subtarget.isCortexA8()) {
Evan Cheng8239daf2010-11-03 00:45:17 +00002300 if (NumRegs < 4)
2301 return 2;
2302 // 4 registers would be issued: 2, 2.
2303 // 5 registers would be issued: 2, 2, 1.
Andrew Trick218ee742012-07-02 18:10:42 +00002304 int A8UOps = (NumRegs / 2);
Evan Cheng8239daf2010-11-03 00:45:17 +00002305 if (NumRegs % 2)
Andrew Trick218ee742012-07-02 18:10:42 +00002306 ++A8UOps;
2307 return A8UOps;
Evan Cheng3ef1c872010-09-10 01:29:16 +00002308 } else if (Subtarget.isCortexA9()) {
Andrew Trick218ee742012-07-02 18:10:42 +00002309 int A9UOps = (NumRegs / 2);
Evan Cheng3ef1c872010-09-10 01:29:16 +00002310 // If there are odd number of registers or if it's not 64-bit aligned,
2311 // then it takes an extra AGU (Address Generation Unit) cycle.
2312 if ((NumRegs % 2) ||
2313 !MI->hasOneMemOperand() ||
2314 (*MI->memoperands_begin())->getAlignment() < 8)
Andrew Trick218ee742012-07-02 18:10:42 +00002315 ++A9UOps;
2316 return A9UOps;
Evan Cheng3ef1c872010-09-10 01:29:16 +00002317 } else {
2318 // Assume the worst.
2319 return NumRegs;
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00002320 }
Evan Cheng5f54ce32010-09-09 18:18:55 +00002321 }
2322 }
2323}
Evan Chenga0792de2010-10-06 06:27:31 +00002324
2325int
Evan Cheng344d9db2010-10-07 23:12:15 +00002326ARMBaseInstrInfo::getVLDMDefCycle(const InstrItineraryData *ItinData,
Evan Chenge837dea2011-06-28 19:10:37 +00002327 const MCInstrDesc &DefMCID,
Evan Cheng344d9db2010-10-07 23:12:15 +00002328 unsigned DefClass,
2329 unsigned DefIdx, unsigned DefAlign) const {
Evan Chenge837dea2011-06-28 19:10:37 +00002330 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
Evan Cheng344d9db2010-10-07 23:12:15 +00002331 if (RegNo <= 0)
2332 // Def is the address writeback.
2333 return ItinData->getOperandCycle(DefClass, DefIdx);
2334
2335 int DefCycle;
2336 if (Subtarget.isCortexA8()) {
2337 // (regno / 2) + (regno % 2) + 1
2338 DefCycle = RegNo / 2 + 1;
2339 if (RegNo % 2)
2340 ++DefCycle;
2341 } else if (Subtarget.isCortexA9()) {
2342 DefCycle = RegNo;
2343 bool isSLoad = false;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002344
Evan Chenge837dea2011-06-28 19:10:37 +00002345 switch (DefMCID.getOpcode()) {
Evan Cheng344d9db2010-10-07 23:12:15 +00002346 default: break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002347 case ARM::VLDMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002348 case ARM::VLDMSIA_UPD:
2349 case ARM::VLDMSDB_UPD:
Evan Cheng344d9db2010-10-07 23:12:15 +00002350 isSLoad = true;
2351 break;
2352 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00002353
Evan Cheng344d9db2010-10-07 23:12:15 +00002354 // If there are odd number of 'S' registers or if it's not 64-bit aligned,
2355 // then it takes an extra cycle.
2356 if ((isSLoad && (RegNo % 2)) || DefAlign < 8)
2357 ++DefCycle;
2358 } else {
2359 // Assume the worst.
2360 DefCycle = RegNo + 2;
2361 }
2362
2363 return DefCycle;
2364}
2365
2366int
2367ARMBaseInstrInfo::getLDMDefCycle(const InstrItineraryData *ItinData,
Evan Chenge837dea2011-06-28 19:10:37 +00002368 const MCInstrDesc &DefMCID,
Evan Cheng344d9db2010-10-07 23:12:15 +00002369 unsigned DefClass,
2370 unsigned DefIdx, unsigned DefAlign) const {
Evan Chenge837dea2011-06-28 19:10:37 +00002371 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
Evan Cheng344d9db2010-10-07 23:12:15 +00002372 if (RegNo <= 0)
2373 // Def is the address writeback.
2374 return ItinData->getOperandCycle(DefClass, DefIdx);
2375
2376 int DefCycle;
2377 if (Subtarget.isCortexA8()) {
2378 // 4 registers would be issued: 1, 2, 1.
2379 // 5 registers would be issued: 1, 2, 2.
2380 DefCycle = RegNo / 2;
2381 if (DefCycle < 1)
2382 DefCycle = 1;
2383 // Result latency is issue cycle + 2: E2.
2384 DefCycle += 2;
2385 } else if (Subtarget.isCortexA9()) {
2386 DefCycle = (RegNo / 2);
2387 // If there are odd number of registers or if it's not 64-bit aligned,
2388 // then it takes an extra AGU (Address Generation Unit) cycle.
2389 if ((RegNo % 2) || DefAlign < 8)
2390 ++DefCycle;
2391 // Result latency is AGU cycles + 2.
2392 DefCycle += 2;
2393 } else {
2394 // Assume the worst.
2395 DefCycle = RegNo + 2;
2396 }
2397
2398 return DefCycle;
2399}
2400
2401int
2402ARMBaseInstrInfo::getVSTMUseCycle(const InstrItineraryData *ItinData,
Evan Chenge837dea2011-06-28 19:10:37 +00002403 const MCInstrDesc &UseMCID,
Evan Cheng344d9db2010-10-07 23:12:15 +00002404 unsigned UseClass,
2405 unsigned UseIdx, unsigned UseAlign) const {
Evan Chenge837dea2011-06-28 19:10:37 +00002406 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
Evan Cheng344d9db2010-10-07 23:12:15 +00002407 if (RegNo <= 0)
2408 return ItinData->getOperandCycle(UseClass, UseIdx);
2409
2410 int UseCycle;
2411 if (Subtarget.isCortexA8()) {
2412 // (regno / 2) + (regno % 2) + 1
2413 UseCycle = RegNo / 2 + 1;
2414 if (RegNo % 2)
2415 ++UseCycle;
2416 } else if (Subtarget.isCortexA9()) {
2417 UseCycle = RegNo;
2418 bool isSStore = false;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002419
Evan Chenge837dea2011-06-28 19:10:37 +00002420 switch (UseMCID.getOpcode()) {
Evan Cheng344d9db2010-10-07 23:12:15 +00002421 default: break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002422 case ARM::VSTMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002423 case ARM::VSTMSIA_UPD:
2424 case ARM::VSTMSDB_UPD:
Evan Cheng344d9db2010-10-07 23:12:15 +00002425 isSStore = true;
2426 break;
2427 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00002428
Evan Cheng344d9db2010-10-07 23:12:15 +00002429 // If there are odd number of 'S' registers or if it's not 64-bit aligned,
2430 // then it takes an extra cycle.
2431 if ((isSStore && (RegNo % 2)) || UseAlign < 8)
2432 ++UseCycle;
2433 } else {
2434 // Assume the worst.
2435 UseCycle = RegNo + 2;
2436 }
2437
2438 return UseCycle;
2439}
2440
2441int
2442ARMBaseInstrInfo::getSTMUseCycle(const InstrItineraryData *ItinData,
Evan Chenge837dea2011-06-28 19:10:37 +00002443 const MCInstrDesc &UseMCID,
Evan Cheng344d9db2010-10-07 23:12:15 +00002444 unsigned UseClass,
2445 unsigned UseIdx, unsigned UseAlign) const {
Evan Chenge837dea2011-06-28 19:10:37 +00002446 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
Evan Cheng344d9db2010-10-07 23:12:15 +00002447 if (RegNo <= 0)
2448 return ItinData->getOperandCycle(UseClass, UseIdx);
2449
2450 int UseCycle;
2451 if (Subtarget.isCortexA8()) {
2452 UseCycle = RegNo / 2;
2453 if (UseCycle < 2)
2454 UseCycle = 2;
2455 // Read in E3.
2456 UseCycle += 2;
2457 } else if (Subtarget.isCortexA9()) {
2458 UseCycle = (RegNo / 2);
2459 // If there are odd number of registers or if it's not 64-bit aligned,
2460 // then it takes an extra AGU (Address Generation Unit) cycle.
2461 if ((RegNo % 2) || UseAlign < 8)
2462 ++UseCycle;
2463 } else {
2464 // Assume the worst.
2465 UseCycle = 1;
2466 }
2467 return UseCycle;
2468}
2469
2470int
Evan Chenga0792de2010-10-06 06:27:31 +00002471ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
Evan Chenge837dea2011-06-28 19:10:37 +00002472 const MCInstrDesc &DefMCID,
Evan Chenga0792de2010-10-06 06:27:31 +00002473 unsigned DefIdx, unsigned DefAlign,
Evan Chenge837dea2011-06-28 19:10:37 +00002474 const MCInstrDesc &UseMCID,
Evan Chenga0792de2010-10-06 06:27:31 +00002475 unsigned UseIdx, unsigned UseAlign) const {
Evan Chenge837dea2011-06-28 19:10:37 +00002476 unsigned DefClass = DefMCID.getSchedClass();
2477 unsigned UseClass = UseMCID.getSchedClass();
Evan Chenga0792de2010-10-06 06:27:31 +00002478
Evan Chenge837dea2011-06-28 19:10:37 +00002479 if (DefIdx < DefMCID.getNumDefs() && UseIdx < UseMCID.getNumOperands())
Evan Chenga0792de2010-10-06 06:27:31 +00002480 return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx);
2481
2482 // This may be a def / use of a variable_ops instruction, the operand
2483 // latency might be determinable dynamically. Let the target try to
2484 // figure it out.
Evan Cheng9e08ee52010-10-28 02:00:25 +00002485 int DefCycle = -1;
Evan Cheng7e2fe912010-10-28 06:47:08 +00002486 bool LdmBypass = false;
Evan Chenge837dea2011-06-28 19:10:37 +00002487 switch (DefMCID.getOpcode()) {
Evan Chenga0792de2010-10-06 06:27:31 +00002488 default:
2489 DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
2490 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002491
2492 case ARM::VLDMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002493 case ARM::VLDMDIA_UPD:
2494 case ARM::VLDMDDB_UPD:
2495 case ARM::VLDMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002496 case ARM::VLDMSIA_UPD:
2497 case ARM::VLDMSDB_UPD:
Evan Chenge837dea2011-06-28 19:10:37 +00002498 DefCycle = getVLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
Evan Cheng5a50cee2010-10-07 01:50:48 +00002499 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002500
2501 case ARM::LDMIA_RET:
2502 case ARM::LDMIA:
2503 case ARM::LDMDA:
2504 case ARM::LDMDB:
2505 case ARM::LDMIB:
2506 case ARM::LDMIA_UPD:
2507 case ARM::LDMDA_UPD:
2508 case ARM::LDMDB_UPD:
2509 case ARM::LDMIB_UPD:
2510 case ARM::tLDMIA:
2511 case ARM::tLDMIA_UPD:
Evan Chenga0792de2010-10-06 06:27:31 +00002512 case ARM::tPUSH:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002513 case ARM::t2LDMIA_RET:
2514 case ARM::t2LDMIA:
2515 case ARM::t2LDMDB:
2516 case ARM::t2LDMIA_UPD:
2517 case ARM::t2LDMDB_UPD:
Evan Chenga0792de2010-10-06 06:27:31 +00002518 LdmBypass = 1;
Evan Chenge837dea2011-06-28 19:10:37 +00002519 DefCycle = getLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
Evan Cheng344d9db2010-10-07 23:12:15 +00002520 break;
Evan Chenga0792de2010-10-06 06:27:31 +00002521 }
Evan Chenga0792de2010-10-06 06:27:31 +00002522
2523 if (DefCycle == -1)
2524 // We can't seem to determine the result latency of the def, assume it's 2.
2525 DefCycle = 2;
2526
2527 int UseCycle = -1;
Evan Chenge837dea2011-06-28 19:10:37 +00002528 switch (UseMCID.getOpcode()) {
Evan Chenga0792de2010-10-06 06:27:31 +00002529 default:
2530 UseCycle = ItinData->getOperandCycle(UseClass, UseIdx);
2531 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002532
2533 case ARM::VSTMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002534 case ARM::VSTMDIA_UPD:
2535 case ARM::VSTMDDB_UPD:
2536 case ARM::VSTMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002537 case ARM::VSTMSIA_UPD:
2538 case ARM::VSTMSDB_UPD:
Evan Chenge837dea2011-06-28 19:10:37 +00002539 UseCycle = getVSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
Evan Cheng5a50cee2010-10-07 01:50:48 +00002540 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002541
2542 case ARM::STMIA:
2543 case ARM::STMDA:
2544 case ARM::STMDB:
2545 case ARM::STMIB:
2546 case ARM::STMIA_UPD:
2547 case ARM::STMDA_UPD:
2548 case ARM::STMDB_UPD:
2549 case ARM::STMIB_UPD:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002550 case ARM::tSTMIA_UPD:
Evan Chenga0792de2010-10-06 06:27:31 +00002551 case ARM::tPOP_RET:
2552 case ARM::tPOP:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002553 case ARM::t2STMIA:
2554 case ARM::t2STMDB:
2555 case ARM::t2STMIA_UPD:
2556 case ARM::t2STMDB_UPD:
Evan Chenge837dea2011-06-28 19:10:37 +00002557 UseCycle = getSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
Evan Cheng5a50cee2010-10-07 01:50:48 +00002558 break;
Evan Chenga0792de2010-10-06 06:27:31 +00002559 }
Evan Chenga0792de2010-10-06 06:27:31 +00002560
2561 if (UseCycle == -1)
2562 // Assume it's read in the first stage.
2563 UseCycle = 1;
2564
2565 UseCycle = DefCycle - UseCycle + 1;
2566 if (UseCycle > 0) {
2567 if (LdmBypass) {
2568 // It's a variable_ops instruction so we can't use DefIdx here. Just use
2569 // first def operand.
Evan Chenge837dea2011-06-28 19:10:37 +00002570 if (ItinData->hasPipelineForwarding(DefClass, DefMCID.getNumOperands()-1,
Evan Chenga0792de2010-10-06 06:27:31 +00002571 UseClass, UseIdx))
2572 --UseCycle;
2573 } else if (ItinData->hasPipelineForwarding(DefClass, DefIdx,
Bill Wendling73fe34a2010-11-16 01:16:36 +00002574 UseClass, UseIdx)) {
Evan Chenga0792de2010-10-06 06:27:31 +00002575 --UseCycle;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002576 }
Evan Chenga0792de2010-10-06 06:27:31 +00002577 }
2578
2579 return UseCycle;
2580}
2581
Evan Chengddfd1372011-12-14 02:11:42 +00002582static const MachineInstr *getBundledDefMI(const TargetRegisterInfo *TRI,
Evan Cheng020f4102011-12-14 20:00:08 +00002583 const MachineInstr *MI, unsigned Reg,
Evan Chengddfd1372011-12-14 02:11:42 +00002584 unsigned &DefIdx, unsigned &Dist) {
2585 Dist = 0;
2586
2587 MachineBasicBlock::const_iterator I = MI; ++I;
2588 MachineBasicBlock::const_instr_iterator II =
2589 llvm::prior(I.getInstrIterator());
2590 assert(II->isInsideBundle() && "Empty bundle?");
2591
2592 int Idx = -1;
Evan Chengddfd1372011-12-14 02:11:42 +00002593 while (II->isInsideBundle()) {
2594 Idx = II->findRegisterDefOperandIdx(Reg, false, true, TRI);
2595 if (Idx != -1)
2596 break;
2597 --II;
2598 ++Dist;
2599 }
2600
2601 assert(Idx != -1 && "Cannot find bundled definition!");
2602 DefIdx = Idx;
2603 return II;
2604}
2605
2606static const MachineInstr *getBundledUseMI(const TargetRegisterInfo *TRI,
Evan Cheng020f4102011-12-14 20:00:08 +00002607 const MachineInstr *MI, unsigned Reg,
Evan Chengddfd1372011-12-14 02:11:42 +00002608 unsigned &UseIdx, unsigned &Dist) {
2609 Dist = 0;
2610
2611 MachineBasicBlock::const_instr_iterator II = MI; ++II;
2612 assert(II->isInsideBundle() && "Empty bundle?");
2613 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
2614
2615 // FIXME: This doesn't properly handle multiple uses.
2616 int Idx = -1;
Evan Chengddfd1372011-12-14 02:11:42 +00002617 while (II != E && II->isInsideBundle()) {
2618 Idx = II->findRegisterUseOperandIdx(Reg, false, TRI);
2619 if (Idx != -1)
2620 break;
2621 if (II->getOpcode() != ARM::t2IT)
2622 ++Dist;
2623 ++II;
2624 }
2625
Evan Cheng020f4102011-12-14 20:00:08 +00002626 if (Idx == -1) {
2627 Dist = 0;
2628 return 0;
2629 }
2630
Evan Chengddfd1372011-12-14 02:11:42 +00002631 UseIdx = Idx;
2632 return II;
2633}
2634
Andrew Trick68b16542012-06-07 19:42:00 +00002635/// Return the number of cycles to add to (or subtract from) the static
2636/// itinerary based on the def opcode and alignment. The caller will ensure that
2637/// adjusted latency is at least one cycle.
2638static int adjustDefLatency(const ARMSubtarget &Subtarget,
2639 const MachineInstr *DefMI,
2640 const MCInstrDesc *DefMCID, unsigned DefAlign) {
2641 int Adjust = 0;
2642 if (Subtarget.isCortexA8() || Subtarget.isCortexA9()) {
Evan Cheng7e2fe912010-10-28 06:47:08 +00002643 // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
2644 // variants are one cycle cheaper.
Evan Chengddfd1372011-12-14 02:11:42 +00002645 switch (DefMCID->getOpcode()) {
Evan Cheng7e2fe912010-10-28 06:47:08 +00002646 default: break;
2647 case ARM::LDRrs:
2648 case ARM::LDRBrs: {
2649 unsigned ShOpVal = DefMI->getOperand(3).getImm();
2650 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2651 if (ShImm == 0 ||
2652 (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
Andrew Trick68b16542012-06-07 19:42:00 +00002653 --Adjust;
Evan Cheng7e2fe912010-10-28 06:47:08 +00002654 break;
2655 }
2656 case ARM::t2LDRs:
2657 case ARM::t2LDRBs:
2658 case ARM::t2LDRHs:
2659 case ARM::t2LDRSHs: {
2660 // Thumb2 mode: lsl only.
2661 unsigned ShAmt = DefMI->getOperand(3).getImm();
2662 if (ShAmt == 0 || ShAmt == 2)
Andrew Trick68b16542012-06-07 19:42:00 +00002663 --Adjust;
Evan Cheng7e2fe912010-10-28 06:47:08 +00002664 break;
2665 }
2666 }
2667 }
2668
Andrew Trick68b16542012-06-07 19:42:00 +00002669 if (DefAlign < 8 && Subtarget.isCortexA9()) {
Evan Chengddfd1372011-12-14 02:11:42 +00002670 switch (DefMCID->getOpcode()) {
Evan Cheng75b41f12011-04-19 01:21:49 +00002671 default: break;
2672 case ARM::VLD1q8:
2673 case ARM::VLD1q16:
2674 case ARM::VLD1q32:
2675 case ARM::VLD1q64:
Jim Grosbach10b90a92011-10-24 21:45:13 +00002676 case ARM::VLD1q8wb_fixed:
2677 case ARM::VLD1q16wb_fixed:
2678 case ARM::VLD1q32wb_fixed:
2679 case ARM::VLD1q64wb_fixed:
2680 case ARM::VLD1q8wb_register:
2681 case ARM::VLD1q16wb_register:
2682 case ARM::VLD1q32wb_register:
2683 case ARM::VLD1q64wb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002684 case ARM::VLD2d8:
2685 case ARM::VLD2d16:
2686 case ARM::VLD2d32:
2687 case ARM::VLD2q8:
2688 case ARM::VLD2q16:
2689 case ARM::VLD2q32:
Jim Grosbacha4e3c7f2011-12-09 21:28:25 +00002690 case ARM::VLD2d8wb_fixed:
2691 case ARM::VLD2d16wb_fixed:
2692 case ARM::VLD2d32wb_fixed:
2693 case ARM::VLD2q8wb_fixed:
2694 case ARM::VLD2q16wb_fixed:
2695 case ARM::VLD2q32wb_fixed:
2696 case ARM::VLD2d8wb_register:
2697 case ARM::VLD2d16wb_register:
2698 case ARM::VLD2d32wb_register:
2699 case ARM::VLD2q8wb_register:
2700 case ARM::VLD2q16wb_register:
2701 case ARM::VLD2q32wb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002702 case ARM::VLD3d8:
2703 case ARM::VLD3d16:
2704 case ARM::VLD3d32:
2705 case ARM::VLD1d64T:
2706 case ARM::VLD3d8_UPD:
2707 case ARM::VLD3d16_UPD:
2708 case ARM::VLD3d32_UPD:
Jim Grosbach59216752011-10-24 23:26:05 +00002709 case ARM::VLD1d64Twb_fixed:
2710 case ARM::VLD1d64Twb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002711 case ARM::VLD3q8_UPD:
2712 case ARM::VLD3q16_UPD:
2713 case ARM::VLD3q32_UPD:
2714 case ARM::VLD4d8:
2715 case ARM::VLD4d16:
2716 case ARM::VLD4d32:
2717 case ARM::VLD1d64Q:
2718 case ARM::VLD4d8_UPD:
2719 case ARM::VLD4d16_UPD:
2720 case ARM::VLD4d32_UPD:
Jim Grosbach399cdca2011-10-25 00:14:01 +00002721 case ARM::VLD1d64Qwb_fixed:
2722 case ARM::VLD1d64Qwb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002723 case ARM::VLD4q8_UPD:
2724 case ARM::VLD4q16_UPD:
2725 case ARM::VLD4q32_UPD:
2726 case ARM::VLD1DUPq8:
2727 case ARM::VLD1DUPq16:
2728 case ARM::VLD1DUPq32:
Jim Grosbach096334e2011-11-30 19:35:44 +00002729 case ARM::VLD1DUPq8wb_fixed:
2730 case ARM::VLD1DUPq16wb_fixed:
2731 case ARM::VLD1DUPq32wb_fixed:
2732 case ARM::VLD1DUPq8wb_register:
2733 case ARM::VLD1DUPq16wb_register:
2734 case ARM::VLD1DUPq32wb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002735 case ARM::VLD2DUPd8:
2736 case ARM::VLD2DUPd16:
2737 case ARM::VLD2DUPd32:
Jim Grosbache6949b12011-12-21 19:40:55 +00002738 case ARM::VLD2DUPd8wb_fixed:
2739 case ARM::VLD2DUPd16wb_fixed:
2740 case ARM::VLD2DUPd32wb_fixed:
2741 case ARM::VLD2DUPd8wb_register:
2742 case ARM::VLD2DUPd16wb_register:
2743 case ARM::VLD2DUPd32wb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002744 case ARM::VLD4DUPd8:
2745 case ARM::VLD4DUPd16:
2746 case ARM::VLD4DUPd32:
2747 case ARM::VLD4DUPd8_UPD:
2748 case ARM::VLD4DUPd16_UPD:
2749 case ARM::VLD4DUPd32_UPD:
2750 case ARM::VLD1LNd8:
2751 case ARM::VLD1LNd16:
2752 case ARM::VLD1LNd32:
2753 case ARM::VLD1LNd8_UPD:
2754 case ARM::VLD1LNd16_UPD:
2755 case ARM::VLD1LNd32_UPD:
2756 case ARM::VLD2LNd8:
2757 case ARM::VLD2LNd16:
2758 case ARM::VLD2LNd32:
2759 case ARM::VLD2LNq16:
2760 case ARM::VLD2LNq32:
2761 case ARM::VLD2LNd8_UPD:
2762 case ARM::VLD2LNd16_UPD:
2763 case ARM::VLD2LNd32_UPD:
2764 case ARM::VLD2LNq16_UPD:
2765 case ARM::VLD2LNq32_UPD:
2766 case ARM::VLD4LNd8:
2767 case ARM::VLD4LNd16:
2768 case ARM::VLD4LNd32:
2769 case ARM::VLD4LNq16:
2770 case ARM::VLD4LNq32:
2771 case ARM::VLD4LNd8_UPD:
2772 case ARM::VLD4LNd16_UPD:
2773 case ARM::VLD4LNd32_UPD:
2774 case ARM::VLD4LNq16_UPD:
2775 case ARM::VLD4LNq32_UPD:
2776 // If the address is not 64-bit aligned, the latencies of these
2777 // instructions increases by one.
Andrew Trick68b16542012-06-07 19:42:00 +00002778 ++Adjust;
Evan Cheng75b41f12011-04-19 01:21:49 +00002779 break;
2780 }
Andrew Trick68b16542012-06-07 19:42:00 +00002781 }
2782 return Adjust;
2783}
Evan Cheng75b41f12011-04-19 01:21:49 +00002784
Andrew Trick68b16542012-06-07 19:42:00 +00002785
2786
2787int
2788ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
2789 const MachineInstr *DefMI, unsigned DefIdx,
2790 const MachineInstr *UseMI,
2791 unsigned UseIdx) const {
2792 // No operand latency. The caller may fall back to getInstrLatency.
2793 if (!ItinData || ItinData->isEmpty())
2794 return -1;
2795
2796 const MachineOperand &DefMO = DefMI->getOperand(DefIdx);
2797 unsigned Reg = DefMO.getReg();
2798 const MCInstrDesc *DefMCID = &DefMI->getDesc();
2799 const MCInstrDesc *UseMCID = &UseMI->getDesc();
2800
2801 unsigned DefAdj = 0;
2802 if (DefMI->isBundle()) {
2803 DefMI = getBundledDefMI(&getRegisterInfo(), DefMI, Reg, DefIdx, DefAdj);
2804 DefMCID = &DefMI->getDesc();
2805 }
2806 if (DefMI->isCopyLike() || DefMI->isInsertSubreg() ||
2807 DefMI->isRegSequence() || DefMI->isImplicitDef()) {
2808 return 1;
2809 }
2810
2811 unsigned UseAdj = 0;
2812 if (UseMI->isBundle()) {
2813 unsigned NewUseIdx;
2814 const MachineInstr *NewUseMI = getBundledUseMI(&getRegisterInfo(), UseMI,
2815 Reg, NewUseIdx, UseAdj);
Andrew Tricke2b32bb2012-06-22 02:50:33 +00002816 if (!NewUseMI)
2817 return -1;
2818
2819 UseMI = NewUseMI;
2820 UseIdx = NewUseIdx;
2821 UseMCID = &UseMI->getDesc();
Andrew Trick68b16542012-06-07 19:42:00 +00002822 }
2823
2824 if (Reg == ARM::CPSR) {
2825 if (DefMI->getOpcode() == ARM::FMSTAT) {
2826 // fpscr -> cpsr stalls over 20 cycles on A8 (and earlier?)
2827 return Subtarget.isCortexA9() ? 1 : 20;
2828 }
2829
2830 // CPSR set and branch can be paired in the same cycle.
2831 if (UseMI->isBranch())
2832 return 0;
2833
2834 // Otherwise it takes the instruction latency (generally one).
2835 unsigned Latency = getInstrLatency(ItinData, DefMI);
2836
2837 // For Thumb2 and -Os, prefer scheduling CPSR setting instruction close to
2838 // its uses. Instructions which are otherwise scheduled between them may
2839 // incur a code size penalty (not able to use the CPSR setting 16-bit
2840 // instructions).
2841 if (Latency > 0 && Subtarget.isThumb2()) {
2842 const MachineFunction *MF = DefMI->getParent()->getParent();
2843 if (MF->getFunction()->hasFnAttr(Attribute::OptimizeForSize))
2844 --Latency;
2845 }
2846 return Latency;
2847 }
2848
Andrew Tricke2b32bb2012-06-22 02:50:33 +00002849 if (DefMO.isImplicit() || UseMI->getOperand(UseIdx).isImplicit())
2850 return -1;
2851
Andrew Trick68b16542012-06-07 19:42:00 +00002852 unsigned DefAlign = DefMI->hasOneMemOperand()
2853 ? (*DefMI->memoperands_begin())->getAlignment() : 0;
2854 unsigned UseAlign = UseMI->hasOneMemOperand()
2855 ? (*UseMI->memoperands_begin())->getAlignment() : 0;
2856
2857 // Get the itinerary's latency if possible, and handle variable_ops.
2858 int Latency = getOperandLatency(ItinData, *DefMCID, DefIdx, DefAlign,
2859 *UseMCID, UseIdx, UseAlign);
2860 // Unable to find operand latency. The caller may resort to getInstrLatency.
2861 if (Latency < 0)
2862 return Latency;
2863
2864 // Adjust for IT block position.
2865 int Adj = DefAdj + UseAdj;
2866
2867 // Adjust for dynamic def-side opcode variants not captured by the itinerary.
2868 Adj += adjustDefLatency(Subtarget, DefMI, DefMCID, DefAlign);
2869 if (Adj >= 0 || (int)Latency > -Adj) {
2870 return Latency + Adj;
2871 }
2872 // Return the itinerary latency, which may be zero but not less than zero.
Evan Cheng7e2fe912010-10-28 06:47:08 +00002873 return Latency;
Evan Chenga0792de2010-10-06 06:27:31 +00002874}
2875
2876int
2877ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
2878 SDNode *DefNode, unsigned DefIdx,
2879 SDNode *UseNode, unsigned UseIdx) const {
2880 if (!DefNode->isMachineOpcode())
2881 return 1;
2882
Evan Chenge837dea2011-06-28 19:10:37 +00002883 const MCInstrDesc &DefMCID = get(DefNode->getMachineOpcode());
Andrew Trickc8bfd1d2011-01-21 05:51:33 +00002884
Evan Chenge837dea2011-06-28 19:10:37 +00002885 if (isZeroCost(DefMCID.Opcode))
Andrew Trickc8bfd1d2011-01-21 05:51:33 +00002886 return 0;
2887
Evan Chenga0792de2010-10-06 06:27:31 +00002888 if (!ItinData || ItinData->isEmpty())
Evan Chenge837dea2011-06-28 19:10:37 +00002889 return DefMCID.mayLoad() ? 3 : 1;
Evan Chenga0792de2010-10-06 06:27:31 +00002890
Evan Cheng08975152010-10-29 18:09:28 +00002891 if (!UseNode->isMachineOpcode()) {
Evan Chenge837dea2011-06-28 19:10:37 +00002892 int Latency = ItinData->getOperandCycle(DefMCID.getSchedClass(), DefIdx);
Evan Cheng08975152010-10-29 18:09:28 +00002893 if (Subtarget.isCortexA9())
2894 return Latency <= 2 ? 1 : Latency - 1;
2895 else
2896 return Latency <= 3 ? 1 : Latency - 2;
2897 }
Evan Chenga0792de2010-10-06 06:27:31 +00002898
Evan Chenge837dea2011-06-28 19:10:37 +00002899 const MCInstrDesc &UseMCID = get(UseNode->getMachineOpcode());
Evan Chenga0792de2010-10-06 06:27:31 +00002900 const MachineSDNode *DefMN = dyn_cast<MachineSDNode>(DefNode);
2901 unsigned DefAlign = !DefMN->memoperands_empty()
2902 ? (*DefMN->memoperands_begin())->getAlignment() : 0;
2903 const MachineSDNode *UseMN = dyn_cast<MachineSDNode>(UseNode);
2904 unsigned UseAlign = !UseMN->memoperands_empty()
2905 ? (*UseMN->memoperands_begin())->getAlignment() : 0;
Evan Chenge837dea2011-06-28 19:10:37 +00002906 int Latency = getOperandLatency(ItinData, DefMCID, DefIdx, DefAlign,
2907 UseMCID, UseIdx, UseAlign);
Evan Cheng7e2fe912010-10-28 06:47:08 +00002908
2909 if (Latency > 1 &&
2910 (Subtarget.isCortexA8() || Subtarget.isCortexA9())) {
2911 // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
2912 // variants are one cycle cheaper.
Evan Chenge837dea2011-06-28 19:10:37 +00002913 switch (DefMCID.getOpcode()) {
Evan Cheng7e2fe912010-10-28 06:47:08 +00002914 default: break;
2915 case ARM::LDRrs:
2916 case ARM::LDRBrs: {
2917 unsigned ShOpVal =
2918 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
2919 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2920 if (ShImm == 0 ||
2921 (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
2922 --Latency;
2923 break;
2924 }
2925 case ARM::t2LDRs:
2926 case ARM::t2LDRBs:
2927 case ARM::t2LDRHs:
2928 case ARM::t2LDRSHs: {
2929 // Thumb2 mode: lsl only.
2930 unsigned ShAmt =
2931 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
2932 if (ShAmt == 0 || ShAmt == 2)
2933 --Latency;
2934 break;
2935 }
2936 }
2937 }
2938
Evan Cheng75b41f12011-04-19 01:21:49 +00002939 if (DefAlign < 8 && Subtarget.isCortexA9())
Evan Chenge837dea2011-06-28 19:10:37 +00002940 switch (DefMCID.getOpcode()) {
Evan Cheng75b41f12011-04-19 01:21:49 +00002941 default: break;
Jim Grosbach28f08c92012-03-05 19:33:30 +00002942 case ARM::VLD1q8:
2943 case ARM::VLD1q16:
2944 case ARM::VLD1q32:
2945 case ARM::VLD1q64:
2946 case ARM::VLD1q8wb_register:
2947 case ARM::VLD1q16wb_register:
2948 case ARM::VLD1q32wb_register:
2949 case ARM::VLD1q64wb_register:
2950 case ARM::VLD1q8wb_fixed:
2951 case ARM::VLD1q16wb_fixed:
2952 case ARM::VLD1q32wb_fixed:
2953 case ARM::VLD1q64wb_fixed:
2954 case ARM::VLD2d8:
2955 case ARM::VLD2d16:
2956 case ARM::VLD2d32:
Evan Cheng75b41f12011-04-19 01:21:49 +00002957 case ARM::VLD2q8Pseudo:
2958 case ARM::VLD2q16Pseudo:
2959 case ARM::VLD2q32Pseudo:
Jim Grosbach28f08c92012-03-05 19:33:30 +00002960 case ARM::VLD2d8wb_fixed:
2961 case ARM::VLD2d16wb_fixed:
2962 case ARM::VLD2d32wb_fixed:
Jim Grosbacha4e3c7f2011-12-09 21:28:25 +00002963 case ARM::VLD2q8PseudoWB_fixed:
2964 case ARM::VLD2q16PseudoWB_fixed:
2965 case ARM::VLD2q32PseudoWB_fixed:
Jim Grosbach28f08c92012-03-05 19:33:30 +00002966 case ARM::VLD2d8wb_register:
2967 case ARM::VLD2d16wb_register:
2968 case ARM::VLD2d32wb_register:
Jim Grosbacha4e3c7f2011-12-09 21:28:25 +00002969 case ARM::VLD2q8PseudoWB_register:
2970 case ARM::VLD2q16PseudoWB_register:
2971 case ARM::VLD2q32PseudoWB_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002972 case ARM::VLD3d8Pseudo:
2973 case ARM::VLD3d16Pseudo:
2974 case ARM::VLD3d32Pseudo:
2975 case ARM::VLD1d64TPseudo:
2976 case ARM::VLD3d8Pseudo_UPD:
2977 case ARM::VLD3d16Pseudo_UPD:
2978 case ARM::VLD3d32Pseudo_UPD:
Evan Cheng75b41f12011-04-19 01:21:49 +00002979 case ARM::VLD3q8Pseudo_UPD:
2980 case ARM::VLD3q16Pseudo_UPD:
2981 case ARM::VLD3q32Pseudo_UPD:
2982 case ARM::VLD3q8oddPseudo:
2983 case ARM::VLD3q16oddPseudo:
2984 case ARM::VLD3q32oddPseudo:
2985 case ARM::VLD3q8oddPseudo_UPD:
2986 case ARM::VLD3q16oddPseudo_UPD:
2987 case ARM::VLD3q32oddPseudo_UPD:
2988 case ARM::VLD4d8Pseudo:
2989 case ARM::VLD4d16Pseudo:
2990 case ARM::VLD4d32Pseudo:
2991 case ARM::VLD1d64QPseudo:
2992 case ARM::VLD4d8Pseudo_UPD:
2993 case ARM::VLD4d16Pseudo_UPD:
2994 case ARM::VLD4d32Pseudo_UPD:
Evan Cheng75b41f12011-04-19 01:21:49 +00002995 case ARM::VLD4q8Pseudo_UPD:
2996 case ARM::VLD4q16Pseudo_UPD:
2997 case ARM::VLD4q32Pseudo_UPD:
2998 case ARM::VLD4q8oddPseudo:
2999 case ARM::VLD4q16oddPseudo:
3000 case ARM::VLD4q32oddPseudo:
3001 case ARM::VLD4q8oddPseudo_UPD:
3002 case ARM::VLD4q16oddPseudo_UPD:
3003 case ARM::VLD4q32oddPseudo_UPD:
Jim Grosbachc0fc4502012-03-06 22:01:44 +00003004 case ARM::VLD1DUPq8:
3005 case ARM::VLD1DUPq16:
3006 case ARM::VLD1DUPq32:
3007 case ARM::VLD1DUPq8wb_fixed:
3008 case ARM::VLD1DUPq16wb_fixed:
3009 case ARM::VLD1DUPq32wb_fixed:
3010 case ARM::VLD1DUPq8wb_register:
3011 case ARM::VLD1DUPq16wb_register:
3012 case ARM::VLD1DUPq32wb_register:
3013 case ARM::VLD2DUPd8:
3014 case ARM::VLD2DUPd16:
3015 case ARM::VLD2DUPd32:
3016 case ARM::VLD2DUPd8wb_fixed:
3017 case ARM::VLD2DUPd16wb_fixed:
3018 case ARM::VLD2DUPd32wb_fixed:
3019 case ARM::VLD2DUPd8wb_register:
3020 case ARM::VLD2DUPd16wb_register:
3021 case ARM::VLD2DUPd32wb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00003022 case ARM::VLD4DUPd8Pseudo:
3023 case ARM::VLD4DUPd16Pseudo:
3024 case ARM::VLD4DUPd32Pseudo:
3025 case ARM::VLD4DUPd8Pseudo_UPD:
3026 case ARM::VLD4DUPd16Pseudo_UPD:
3027 case ARM::VLD4DUPd32Pseudo_UPD:
3028 case ARM::VLD1LNq8Pseudo:
3029 case ARM::VLD1LNq16Pseudo:
3030 case ARM::VLD1LNq32Pseudo:
3031 case ARM::VLD1LNq8Pseudo_UPD:
3032 case ARM::VLD1LNq16Pseudo_UPD:
3033 case ARM::VLD1LNq32Pseudo_UPD:
3034 case ARM::VLD2LNd8Pseudo:
3035 case ARM::VLD2LNd16Pseudo:
3036 case ARM::VLD2LNd32Pseudo:
3037 case ARM::VLD2LNq16Pseudo:
3038 case ARM::VLD2LNq32Pseudo:
3039 case ARM::VLD2LNd8Pseudo_UPD:
3040 case ARM::VLD2LNd16Pseudo_UPD:
3041 case ARM::VLD2LNd32Pseudo_UPD:
3042 case ARM::VLD2LNq16Pseudo_UPD:
3043 case ARM::VLD2LNq32Pseudo_UPD:
3044 case ARM::VLD4LNd8Pseudo:
3045 case ARM::VLD4LNd16Pseudo:
3046 case ARM::VLD4LNd32Pseudo:
3047 case ARM::VLD4LNq16Pseudo:
3048 case ARM::VLD4LNq32Pseudo:
3049 case ARM::VLD4LNd8Pseudo_UPD:
3050 case ARM::VLD4LNd16Pseudo_UPD:
3051 case ARM::VLD4LNd32Pseudo_UPD:
3052 case ARM::VLD4LNq16Pseudo_UPD:
3053 case ARM::VLD4LNq32Pseudo_UPD:
3054 // If the address is not 64-bit aligned, the latencies of these
3055 // instructions increases by one.
3056 ++Latency;
3057 break;
3058 }
3059
Evan Cheng7e2fe912010-10-28 06:47:08 +00003060 return Latency;
Evan Chenga0792de2010-10-06 06:27:31 +00003061}
Evan Cheng23128422010-10-19 18:58:51 +00003062
Evan Cheng020f4102011-12-14 20:00:08 +00003063unsigned
3064ARMBaseInstrInfo::getOutputLatency(const InstrItineraryData *ItinData,
3065 const MachineInstr *DefMI, unsigned DefIdx,
3066 const MachineInstr *DepMI) const {
3067 unsigned Reg = DefMI->getOperand(DefIdx).getReg();
3068 if (DepMI->readsRegister(Reg, &getRegisterInfo()) || !isPredicated(DepMI))
3069 return 1;
3070
3071 // If the second MI is predicated, then there is an implicit use dependency.
Andrew Trickef2d9e52012-06-22 02:50:31 +00003072 return getInstrLatency(ItinData, DefMI);
Evan Cheng020f4102011-12-14 20:00:08 +00003073}
3074
Andrew Trickb7e02892012-06-05 21:11:27 +00003075unsigned ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
3076 const MachineInstr *MI,
3077 unsigned *PredCost) const {
Evan Cheng8239daf2010-11-03 00:45:17 +00003078 if (MI->isCopyLike() || MI->isInsertSubreg() ||
3079 MI->isRegSequence() || MI->isImplicitDef())
3080 return 1;
3081
Andrew Tricked7a51e2012-06-07 19:41:55 +00003082 // An instruction scheduler typically runs on unbundled instructions, however
3083 // other passes may query the latency of a bundled instruction.
Evan Chengddfd1372011-12-14 02:11:42 +00003084 if (MI->isBundle()) {
Andrew Tricked7a51e2012-06-07 19:41:55 +00003085 unsigned Latency = 0;
Evan Chengddfd1372011-12-14 02:11:42 +00003086 MachineBasicBlock::const_instr_iterator I = MI;
3087 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
3088 while (++I != E && I->isInsideBundle()) {
3089 if (I->getOpcode() != ARM::t2IT)
3090 Latency += getInstrLatency(ItinData, I, PredCost);
3091 }
3092 return Latency;
3093 }
3094
Evan Chenge837dea2011-06-28 19:10:37 +00003095 const MCInstrDesc &MCID = MI->getDesc();
Andrew Tricked7a51e2012-06-07 19:41:55 +00003096 if (PredCost && (MCID.isCall() || MCID.hasImplicitDefOfPhysReg(ARM::CPSR))) {
Evan Cheng8239daf2010-11-03 00:45:17 +00003097 // When predicated, CPSR is an additional source operand for CPSR updating
3098 // instructions, this apparently increases their latencies.
3099 *PredCost = 1;
Andrew Tricked7a51e2012-06-07 19:41:55 +00003100 }
3101 // Be sure to call getStageLatency for an empty itinerary in case it has a
3102 // valid MinLatency property.
3103 if (!ItinData)
3104 return MI->mayLoad() ? 3 : 1;
3105
3106 unsigned Class = MCID.getSchedClass();
3107
3108 // For instructions with variable uops, use uops as latency.
Andrew Trick14ccc7b2012-07-02 19:12:29 +00003109 if (!ItinData->isEmpty() && ItinData->getNumMicroOps(Class) < 0)
Andrew Tricked7a51e2012-06-07 19:41:55 +00003110 return getNumMicroOps(ItinData, MI);
Andrew Trick14ccc7b2012-07-02 19:12:29 +00003111
Andrew Tricked7a51e2012-06-07 19:41:55 +00003112 // For the common case, fall back on the itinerary's latency.
Andrew Trick68b16542012-06-07 19:42:00 +00003113 unsigned Latency = ItinData->getStageLatency(Class);
3114
3115 // Adjust for dynamic def-side opcode variants not captured by the itinerary.
3116 unsigned DefAlign = MI->hasOneMemOperand()
3117 ? (*MI->memoperands_begin())->getAlignment() : 0;
3118 int Adj = adjustDefLatency(Subtarget, MI, &MCID, DefAlign);
3119 if (Adj >= 0 || (int)Latency > -Adj) {
3120 return Latency + Adj;
3121 }
3122 return Latency;
Evan Cheng8239daf2010-11-03 00:45:17 +00003123}
3124
3125int ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
3126 SDNode *Node) const {
3127 if (!Node->isMachineOpcode())
3128 return 1;
3129
3130 if (!ItinData || ItinData->isEmpty())
3131 return 1;
3132
3133 unsigned Opcode = Node->getMachineOpcode();
3134 switch (Opcode) {
3135 default:
3136 return ItinData->getStageLatency(get(Opcode).getSchedClass());
Bill Wendling73fe34a2010-11-16 01:16:36 +00003137 case ARM::VLDMQIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00003138 case ARM::VSTMQIA:
Evan Cheng8239daf2010-11-03 00:45:17 +00003139 return 2;
Eric Christopher8b3ca622010-11-18 19:40:05 +00003140 }
Evan Cheng8239daf2010-11-03 00:45:17 +00003141}
3142
Evan Cheng23128422010-10-19 18:58:51 +00003143bool ARMBaseInstrInfo::
3144hasHighOperandLatency(const InstrItineraryData *ItinData,
3145 const MachineRegisterInfo *MRI,
3146 const MachineInstr *DefMI, unsigned DefIdx,
3147 const MachineInstr *UseMI, unsigned UseIdx) const {
3148 unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
3149 unsigned UDomain = UseMI->getDesc().TSFlags & ARMII::DomainMask;
3150 if (Subtarget.isCortexA8() &&
3151 (DDomain == ARMII::DomainVFP || UDomain == ARMII::DomainVFP))
3152 // CortexA8 VFP instructions are not pipelined.
3153 return true;
3154
3155 // Hoist VFP / NEON instructions with 4 or higher latency.
Andrew Trick397f4e32012-06-07 19:42:04 +00003156 int Latency = computeOperandLatency(ItinData, DefMI, DefIdx, UseMI, UseIdx,
3157 /*FindMin=*/false);
Andrew Trickf3770712012-06-07 19:41:58 +00003158 if (Latency < 0)
3159 Latency = getInstrLatency(ItinData, DefMI);
Evan Cheng23128422010-10-19 18:58:51 +00003160 if (Latency <= 3)
3161 return false;
3162 return DDomain == ARMII::DomainVFP || DDomain == ARMII::DomainNEON ||
3163 UDomain == ARMII::DomainVFP || UDomain == ARMII::DomainNEON;
3164}
Evan Chengc8141df2010-10-26 02:08:50 +00003165
3166bool ARMBaseInstrInfo::
3167hasLowDefLatency(const InstrItineraryData *ItinData,
3168 const MachineInstr *DefMI, unsigned DefIdx) const {
3169 if (!ItinData || ItinData->isEmpty())
3170 return false;
3171
3172 unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
3173 if (DDomain == ARMII::DomainGeneral) {
3174 unsigned DefClass = DefMI->getDesc().getSchedClass();
3175 int DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
3176 return (DefCycle != -1 && DefCycle <= 2);
3177 }
3178 return false;
3179}
Evan Cheng48575f62010-12-05 22:04:16 +00003180
Andrew Trick3be654f2011-09-21 02:20:46 +00003181bool ARMBaseInstrInfo::verifyInstruction(const MachineInstr *MI,
3182 StringRef &ErrInfo) const {
3183 if (convertAddSubFlagsOpcode(MI->getOpcode())) {
3184 ErrInfo = "Pseudo flag setting opcodes only exist in Selection DAG";
3185 return false;
3186 }
3187 return true;
3188}
3189
Evan Cheng48575f62010-12-05 22:04:16 +00003190bool
3191ARMBaseInstrInfo::isFpMLxInstruction(unsigned Opcode, unsigned &MulOpc,
3192 unsigned &AddSubOpc,
3193 bool &NegAcc, bool &HasLane) const {
3194 DenseMap<unsigned, unsigned>::const_iterator I = MLxEntryMap.find(Opcode);
3195 if (I == MLxEntryMap.end())
3196 return false;
3197
3198 const ARM_MLxEntry &Entry = ARM_MLxTable[I->second];
3199 MulOpc = Entry.MulOpc;
3200 AddSubOpc = Entry.AddSubOpc;
3201 NegAcc = Entry.NegAcc;
3202 HasLane = Entry.HasLane;
3203 return true;
3204}
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003205
3206//===----------------------------------------------------------------------===//
3207// Execution domains.
3208//===----------------------------------------------------------------------===//
3209//
3210// Some instructions go down the NEON pipeline, some go down the VFP pipeline,
3211// and some can go down both. The vmov instructions go down the VFP pipeline,
3212// but they can be changed to vorr equivalents that are executed by the NEON
3213// pipeline.
3214//
3215// We use the following execution domain numbering:
3216//
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003217enum ARMExeDomain {
3218 ExeGeneric = 0,
3219 ExeVFP = 1,
3220 ExeNEON = 2
3221};
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003222//
3223// Also see ARMInstrFormats.td and Domain* enums in ARMBaseInfo.h
3224//
3225std::pair<uint16_t, uint16_t>
3226ARMBaseInstrInfo::getExecutionDomain(const MachineInstr *MI) const {
3227 // VMOVD is a VFP instruction, but can be changed to NEON if it isn't
3228 // predicated.
3229 if (MI->getOpcode() == ARM::VMOVD && !isPredicated(MI))
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003230 return std::make_pair(ExeVFP, (1<<ExeVFP) | (1<<ExeNEON));
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003231
3232 // No other instructions can be swizzled, so just determine their domain.
3233 unsigned Domain = MI->getDesc().TSFlags & ARMII::DomainMask;
3234
3235 if (Domain & ARMII::DomainNEON)
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003236 return std::make_pair(ExeNEON, 0);
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003237
3238 // Certain instructions can go either way on Cortex-A8.
3239 // Treat them as NEON instructions.
3240 if ((Domain & ARMII::DomainNEONA8) && Subtarget.isCortexA8())
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003241 return std::make_pair(ExeNEON, 0);
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003242
3243 if (Domain & ARMII::DomainVFP)
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003244 return std::make_pair(ExeVFP, 0);
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003245
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003246 return std::make_pair(ExeGeneric, 0);
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003247}
3248
3249void
3250ARMBaseInstrInfo::setExecutionDomain(MachineInstr *MI, unsigned Domain) const {
3251 // We only know how to change VMOVD into VORR.
3252 assert(MI->getOpcode() == ARM::VMOVD && "Can only swizzle VMOVD");
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003253 if (Domain != ExeNEON)
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003254 return;
3255
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003256 // Zap the predicate operands.
3257 assert(!isPredicated(MI) && "Cannot predicate a VORRd");
3258 MI->RemoveOperand(3);
3259 MI->RemoveOperand(2);
3260
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003261 // Change to a VORRd which requires two identical use operands.
3262 MI->setDesc(get(ARM::VORRd));
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003263
3264 // Add the extra source operand and new predicates.
3265 // This will go before any implicit ops.
Jakob Stoklund Olesen1c062c22011-10-12 00:06:23 +00003266 AddDefaultPred(MachineInstrBuilder(MI).addOperand(MI->getOperand(1)));
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003267}
Jim Grosbachc01810e2012-02-28 23:53:30 +00003268
3269bool ARMBaseInstrInfo::hasNOP() const {
3270 return (Subtarget.getFeatureBits() & ARM::HasV6T2Ops) != 0;
3271}