blob: c85a71a5d61e9b3a01ab33761d75230cf458fa8d [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;
798 case 32:
799 if (ARM::QQPRRegClass.hasSubClassEq(RC)) {
800 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
801 // FIXME: It's possible to only store part of the QQ register if the
802 // spilled def has a sub-register index.
803 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1d64QPseudo))
Bob Wilson168f3822010-09-15 01:48:05 +0000804 .addFrameIndex(FI).addImm(16)
805 .addReg(SrcReg, getKillRegState(isKill))
806 .addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000807 } else {
808 MachineInstrBuilder MIB =
809 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
Bill Wendling73fe34a2010-11-16 01:16:36 +0000810 .addFrameIndex(FI))
Owen Andersone66ef2d2011-08-10 17:21:20 +0000811 .addMemOperand(MMO);
812 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
813 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
814 MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
815 AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
816 }
817 } else
818 llvm_unreachable("Unknown reg class!");
819 break;
820 case 64:
821 if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
822 MachineInstrBuilder MIB =
823 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
824 .addFrameIndex(FI))
825 .addMemOperand(MMO);
826 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
827 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
828 MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
829 MIB = AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
830 MIB = AddDReg(MIB, SrcReg, ARM::dsub_4, 0, TRI);
831 MIB = AddDReg(MIB, SrcReg, ARM::dsub_5, 0, TRI);
832 MIB = AddDReg(MIB, SrcReg, ARM::dsub_6, 0, TRI);
833 AddDReg(MIB, SrcReg, ARM::dsub_7, 0, TRI);
834 } else
835 llvm_unreachable("Unknown reg class!");
836 break;
837 default:
838 llvm_unreachable("Unknown reg class!");
David Goodwin334c2642009-07-08 16:09:28 +0000839 }
840}
841
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000842unsigned
843ARMBaseInstrInfo::isStoreToStackSlot(const MachineInstr *MI,
844 int &FrameIndex) const {
845 switch (MI->getOpcode()) {
846 default: break;
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000847 case ARM::STRrs:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000848 case ARM::t2STRs: // FIXME: don't use t2STRs to access frame.
849 if (MI->getOperand(1).isFI() &&
850 MI->getOperand(2).isReg() &&
851 MI->getOperand(3).isImm() &&
852 MI->getOperand(2).getReg() == 0 &&
853 MI->getOperand(3).getImm() == 0) {
854 FrameIndex = MI->getOperand(1).getIndex();
855 return MI->getOperand(0).getReg();
856 }
857 break;
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000858 case ARM::STRi12:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000859 case ARM::t2STRi12:
Jim Grosbach74472b42011-06-29 20:26:39 +0000860 case ARM::tSTRspi:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000861 case ARM::VSTRD:
862 case ARM::VSTRS:
863 if (MI->getOperand(1).isFI() &&
864 MI->getOperand(2).isImm() &&
865 MI->getOperand(2).getImm() == 0) {
866 FrameIndex = MI->getOperand(1).getIndex();
867 return MI->getOperand(0).getReg();
868 }
869 break;
Jim Grosbach28f08c92012-03-05 19:33:30 +0000870 case ARM::VST1q64:
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +0000871 if (MI->getOperand(0).isFI() &&
872 MI->getOperand(2).getSubReg() == 0) {
873 FrameIndex = MI->getOperand(0).getIndex();
874 return MI->getOperand(2).getReg();
875 }
Jakob Stoklund Olesen31bbc512010-09-15 21:40:09 +0000876 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +0000877 case ARM::VSTMQIA:
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +0000878 if (MI->getOperand(1).isFI() &&
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +0000879 MI->getOperand(0).getSubReg() == 0) {
880 FrameIndex = MI->getOperand(1).getIndex();
881 return MI->getOperand(0).getReg();
882 }
883 break;
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000884 }
885
886 return 0;
887}
888
Jakob Stoklund Olesen36ee0e62011-08-08 21:45:32 +0000889unsigned ARMBaseInstrInfo::isStoreToStackSlotPostFE(const MachineInstr *MI,
890 int &FrameIndex) const {
891 const MachineMemOperand *Dummy;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000892 return MI->mayStore() && hasStoreToStackSlot(MI, Dummy, FrameIndex);
Jakob Stoklund Olesen36ee0e62011-08-08 21:45:32 +0000893}
894
David Goodwin334c2642009-07-08 16:09:28 +0000895void ARMBaseInstrInfo::
896loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
897 unsigned DestReg, int FI,
Evan Cheng746ad692010-05-06 19:06:44 +0000898 const TargetRegisterClass *RC,
899 const TargetRegisterInfo *TRI) const {
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000900 DebugLoc DL;
David Goodwin334c2642009-07-08 16:09:28 +0000901 if (I != MBB.end()) DL = I->getDebugLoc();
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000902 MachineFunction &MF = *MBB.getParent();
903 MachineFrameInfo &MFI = *MF.getFrameInfo();
Jim Grosbach31bc8492009-11-08 00:27:19 +0000904 unsigned Align = MFI.getObjectAlignment(FI);
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000905 MachineMemOperand *MMO =
Chris Lattner59db5492010-09-21 04:39:43 +0000906 MF.getMachineMemOperand(
Jay Foad978e0df2011-11-15 07:34:52 +0000907 MachinePointerInfo::getFixedStack(FI),
Chris Lattner59db5492010-09-21 04:39:43 +0000908 MachineMemOperand::MOLoad,
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000909 MFI.getObjectSize(FI),
Jim Grosbach31bc8492009-11-08 00:27:19 +0000910 Align);
David Goodwin334c2642009-07-08 16:09:28 +0000911
Owen Andersone66ef2d2011-08-10 17:21:20 +0000912 switch (RC->getSize()) {
913 case 4:
914 if (ARM::GPRRegClass.hasSubClassEq(RC)) {
915 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::LDRi12), DestReg)
916 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Bob Wilson0eb0c742010-02-16 22:01:59 +0000917
Owen Andersone66ef2d2011-08-10 17:21:20 +0000918 } else if (ARM::SPRRegClass.hasSubClassEq(RC)) {
919 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRS), DestReg)
Jim Grosbach3e556122010-10-26 22:37:02 +0000920 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000921 } else
922 llvm_unreachable("Unknown reg class!");
Bob Wilsonebe99b22010-06-18 21:32:42 +0000923 break;
Owen Andersone66ef2d2011-08-10 17:21:20 +0000924 case 8:
925 if (ARM::DPRRegClass.hasSubClassEq(RC)) {
926 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRD), DestReg)
Evan Chengd31c5492010-05-06 01:34:11 +0000927 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000928 } else
929 llvm_unreachable("Unknown reg class!");
Bob Wilsonebe99b22010-06-18 21:32:42 +0000930 break;
Owen Andersone66ef2d2011-08-10 17:21:20 +0000931 case 16:
Jakob Stoklund Olesen5b2f9132012-03-28 21:20:32 +0000932 if (ARM::DPairRegClass.hasSubClassEq(RC)) {
Jakob Stoklund Olesen7255a4e2012-01-05 00:26:57 +0000933 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
Jim Grosbach28f08c92012-03-05 19:33:30 +0000934 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1q64), DestReg)
Bob Wilsonf967ca02010-07-06 21:26:18 +0000935 .addFrameIndex(FI).addImm(16)
Evan Cheng69b9f982010-05-13 01:12:06 +0000936 .addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000937 } else {
938 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMQIA), DestReg)
939 .addFrameIndex(FI)
940 .addMemOperand(MMO));
941 }
942 } else
943 llvm_unreachable("Unknown reg class!");
Bob Wilsonebe99b22010-06-18 21:32:42 +0000944 break;
Owen Andersone66ef2d2011-08-10 17:21:20 +0000945 case 32:
946 if (ARM::QQPRRegClass.hasSubClassEq(RC)) {
947 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
948 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1d64QPseudo), DestReg)
Bob Wilson168f3822010-09-15 01:48:05 +0000949 .addFrameIndex(FI).addImm(16)
950 .addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000951 } else {
952 MachineInstrBuilder MIB =
Bill Wendling73fe34a2010-11-16 01:16:36 +0000953 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
954 .addFrameIndex(FI))
Owen Andersone66ef2d2011-08-10 17:21:20 +0000955 .addMemOperand(MMO);
Jakob Stoklund Olesenfce711c2012-03-04 18:40:30 +0000956 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
957 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
958 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
959 MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::DefineNoRead, TRI);
Jakob Stoklund Olesen3247af22012-03-06 02:48:17 +0000960 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
961 MIB.addReg(DestReg, RegState::ImplicitDefine);
Owen Andersone66ef2d2011-08-10 17:21:20 +0000962 }
963 } else
964 llvm_unreachable("Unknown reg class!");
965 break;
966 case 64:
967 if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
968 MachineInstrBuilder MIB =
969 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
970 .addFrameIndex(FI))
971 .addMemOperand(MMO);
Jakob Stoklund Olesenfce711c2012-03-04 18:40:30 +0000972 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
973 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
974 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
975 MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::DefineNoRead, TRI);
976 MIB = AddDReg(MIB, DestReg, ARM::dsub_4, RegState::DefineNoRead, TRI);
977 MIB = AddDReg(MIB, DestReg, ARM::dsub_5, RegState::DefineNoRead, TRI);
978 MIB = AddDReg(MIB, DestReg, ARM::dsub_6, RegState::DefineNoRead, TRI);
979 MIB = AddDReg(MIB, DestReg, ARM::dsub_7, RegState::DefineNoRead, TRI);
Jakob Stoklund Olesen3247af22012-03-06 02:48:17 +0000980 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
981 MIB.addReg(DestReg, RegState::ImplicitDefine);
Owen Andersone66ef2d2011-08-10 17:21:20 +0000982 } else
983 llvm_unreachable("Unknown reg class!");
Bob Wilsonebe99b22010-06-18 21:32:42 +0000984 break;
Bob Wilsonebe99b22010-06-18 21:32:42 +0000985 default:
986 llvm_unreachable("Unknown regclass!");
David Goodwin334c2642009-07-08 16:09:28 +0000987 }
988}
989
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000990unsigned
991ARMBaseInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
992 int &FrameIndex) const {
993 switch (MI->getOpcode()) {
994 default: break;
Jim Grosbach3e556122010-10-26 22:37:02 +0000995 case ARM::LDRrs:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000996 case ARM::t2LDRs: // FIXME: don't use t2LDRs to access frame.
997 if (MI->getOperand(1).isFI() &&
998 MI->getOperand(2).isReg() &&
999 MI->getOperand(3).isImm() &&
1000 MI->getOperand(2).getReg() == 0 &&
1001 MI->getOperand(3).getImm() == 0) {
1002 FrameIndex = MI->getOperand(1).getIndex();
1003 return MI->getOperand(0).getReg();
1004 }
1005 break;
Jim Grosbach3e556122010-10-26 22:37:02 +00001006 case ARM::LDRi12:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +00001007 case ARM::t2LDRi12:
Jim Grosbach74472b42011-06-29 20:26:39 +00001008 case ARM::tLDRspi:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +00001009 case ARM::VLDRD:
1010 case ARM::VLDRS:
1011 if (MI->getOperand(1).isFI() &&
1012 MI->getOperand(2).isImm() &&
1013 MI->getOperand(2).getImm() == 0) {
1014 FrameIndex = MI->getOperand(1).getIndex();
1015 return MI->getOperand(0).getReg();
1016 }
1017 break;
Jim Grosbach28f08c92012-03-05 19:33:30 +00001018 case ARM::VLD1q64:
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +00001019 if (MI->getOperand(1).isFI() &&
1020 MI->getOperand(0).getSubReg() == 0) {
1021 FrameIndex = MI->getOperand(1).getIndex();
1022 return MI->getOperand(0).getReg();
1023 }
1024 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00001025 case ARM::VLDMQIA:
Jakob Stoklund Olesen06f264e2010-09-15 21:40:11 +00001026 if (MI->getOperand(1).isFI() &&
Jakob Stoklund Olesen06f264e2010-09-15 21:40:11 +00001027 MI->getOperand(0).getSubReg() == 0) {
1028 FrameIndex = MI->getOperand(1).getIndex();
1029 return MI->getOperand(0).getReg();
1030 }
1031 break;
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +00001032 }
1033
1034 return 0;
1035}
1036
Jakob Stoklund Olesen36ee0e62011-08-08 21:45:32 +00001037unsigned ARMBaseInstrInfo::isLoadFromStackSlotPostFE(const MachineInstr *MI,
1038 int &FrameIndex) const {
1039 const MachineMemOperand *Dummy;
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001040 return MI->mayLoad() && hasLoadFromStackSlot(MI, Dummy, FrameIndex);
Jakob Stoklund Olesen36ee0e62011-08-08 21:45:32 +00001041}
1042
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +00001043bool ARMBaseInstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const{
1044 // This hook gets to expand COPY instructions before they become
1045 // copyPhysReg() calls. Look for VMOVS instructions that can legally be
1046 // widened to VMOVD. We prefer the VMOVD when possible because it may be
1047 // changed into a VORR that can go down the NEON pipeline.
1048 if (!WidenVMOVS || !MI->isCopy())
1049 return false;
1050
1051 // Look for a copy between even S-registers. That is where we keep floats
1052 // when using NEON v2f32 instructions for f32 arithmetic.
1053 unsigned DstRegS = MI->getOperand(0).getReg();
1054 unsigned SrcRegS = MI->getOperand(1).getReg();
1055 if (!ARM::SPRRegClass.contains(DstRegS, SrcRegS))
1056 return false;
1057
1058 const TargetRegisterInfo *TRI = &getRegisterInfo();
1059 unsigned DstRegD = TRI->getMatchingSuperReg(DstRegS, ARM::ssub_0,
1060 &ARM::DPRRegClass);
1061 unsigned SrcRegD = TRI->getMatchingSuperReg(SrcRegS, ARM::ssub_0,
1062 &ARM::DPRRegClass);
1063 if (!DstRegD || !SrcRegD)
1064 return false;
1065
1066 // We want to widen this into a DstRegD = VMOVD SrcRegD copy. This is only
1067 // legal if the COPY already defines the full DstRegD, and it isn't a
1068 // sub-register insertion.
1069 if (!MI->definesRegister(DstRegD, TRI) || MI->readsRegister(DstRegD, TRI))
1070 return false;
1071
Jakob Stoklund Olesen1c062c22011-10-12 00:06:23 +00001072 // A dead copy shouldn't show up here, but reject it just in case.
1073 if (MI->getOperand(0).isDead())
1074 return false;
1075
1076 // All clear, widen the COPY.
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +00001077 DEBUG(dbgs() << "widening: " << *MI);
Jakob Stoklund Olesen1c062c22011-10-12 00:06:23 +00001078
1079 // Get rid of the old <imp-def> of DstRegD. Leave it if it defines a Q-reg
1080 // or some other super-register.
1081 int ImpDefIdx = MI->findRegisterDefOperandIdx(DstRegD);
1082 if (ImpDefIdx != -1)
1083 MI->RemoveOperand(ImpDefIdx);
1084
1085 // Change the opcode and operands.
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +00001086 MI->setDesc(get(ARM::VMOVD));
1087 MI->getOperand(0).setReg(DstRegD);
1088 MI->getOperand(1).setReg(SrcRegD);
1089 AddDefaultPred(MachineInstrBuilder(MI));
Jakob Stoklund Olesen1c062c22011-10-12 00:06:23 +00001090
1091 // We are now reading SrcRegD instead of SrcRegS. This may upset the
1092 // register scavenger and machine verifier, so we need to indicate that we
1093 // are reading an undefined value from SrcRegD, but a proper value from
1094 // SrcRegS.
1095 MI->getOperand(1).setIsUndef();
1096 MachineInstrBuilder(MI).addReg(SrcRegS, RegState::Implicit);
1097
1098 // SrcRegD may actually contain an unrelated value in the ssub_1
1099 // sub-register. Don't kill it. Only kill the ssub_0 sub-register.
1100 if (MI->getOperand(1).isKill()) {
1101 MI->getOperand(1).setIsKill(false);
1102 MI->addRegisterKilled(SrcRegS, TRI, true);
1103 }
1104
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +00001105 DEBUG(dbgs() << "replaced by: " << *MI);
1106 return true;
1107}
1108
Evan Cheng62b50652010-04-26 07:39:25 +00001109MachineInstr*
1110ARMBaseInstrInfo::emitFrameIndexDebugValue(MachineFunction &MF,
Evan Cheng8601a3d2010-04-29 01:13:30 +00001111 int FrameIx, uint64_t Offset,
Evan Cheng62b50652010-04-26 07:39:25 +00001112 const MDNode *MDPtr,
1113 DebugLoc DL) const {
1114 MachineInstrBuilder MIB = BuildMI(MF, DL, get(ARM::DBG_VALUE))
1115 .addFrameIndex(FrameIx).addImm(0).addImm(Offset).addMetadata(MDPtr);
1116 return &*MIB;
1117}
1118
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001119/// Create a copy of a const pool value. Update CPI to the new index and return
1120/// the label UID.
1121static unsigned duplicateCPV(MachineFunction &MF, unsigned &CPI) {
1122 MachineConstantPool *MCP = MF.getConstantPool();
1123 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1124
1125 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI];
1126 assert(MCPE.isMachineConstantPoolEntry() &&
1127 "Expecting a machine constantpool entry!");
1128 ARMConstantPoolValue *ACPV =
1129 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
1130
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001131 unsigned PCLabelId = AFI->createPICLabelUId();
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001132 ARMConstantPoolValue *NewCPV = 0;
Jim Grosbach51f5b672010-09-10 21:38:22 +00001133 // FIXME: The below assumes PIC relocation model and that the function
1134 // is Thumb mode (t1 or t2). PCAdjustment would be 8 for ARM mode PIC, and
1135 // zero for non-PIC in ARM or Thumb. The callers are all of thumb LDR
1136 // instructions, so that's probably OK, but is PIC always correct when
1137 // we get here?
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001138 if (ACPV->isGlobalValue())
Bill Wendling5bb77992011-10-01 08:00:54 +00001139 NewCPV = ARMConstantPoolConstant::
1140 Create(cast<ARMConstantPoolConstant>(ACPV)->getGV(), PCLabelId,
1141 ARMCP::CPValue, 4);
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001142 else if (ACPV->isExtSymbol())
Bill Wendlingfe31e672011-10-01 08:58:29 +00001143 NewCPV = ARMConstantPoolSymbol::
1144 Create(MF.getFunction()->getContext(),
1145 cast<ARMConstantPoolSymbol>(ACPV)->getSymbol(), PCLabelId, 4);
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001146 else if (ACPV->isBlockAddress())
Bill Wendling5bb77992011-10-01 08:00:54 +00001147 NewCPV = ARMConstantPoolConstant::
1148 Create(cast<ARMConstantPoolConstant>(ACPV)->getBlockAddress(), PCLabelId,
1149 ARMCP::CPBlockAddress, 4);
Jim Grosbach51f5b672010-09-10 21:38:22 +00001150 else if (ACPV->isLSDA())
Bill Wendling5bb77992011-10-01 08:00:54 +00001151 NewCPV = ARMConstantPoolConstant::Create(MF.getFunction(), PCLabelId,
1152 ARMCP::CPLSDA, 4);
Bill Wendlinge00897c2011-09-29 23:50:42 +00001153 else if (ACPV->isMachineBasicBlock())
Bill Wendling3320f2a2011-10-01 09:30:42 +00001154 NewCPV = ARMConstantPoolMBB::
1155 Create(MF.getFunction()->getContext(),
1156 cast<ARMConstantPoolMBB>(ACPV)->getMBB(), PCLabelId, 4);
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001157 else
1158 llvm_unreachable("Unexpected ARM constantpool value type!!");
1159 CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlignment());
1160 return PCLabelId;
1161}
1162
Evan Chengfdc83402009-11-08 00:15:23 +00001163void ARMBaseInstrInfo::
1164reMaterialize(MachineBasicBlock &MBB,
1165 MachineBasicBlock::iterator I,
1166 unsigned DestReg, unsigned SubIdx,
Evan Chengd57cdd52009-11-14 02:55:43 +00001167 const MachineInstr *Orig,
Jakob Stoklund Olesen9edf7de2010-06-02 22:47:25 +00001168 const TargetRegisterInfo &TRI) const {
Evan Chengfdc83402009-11-08 00:15:23 +00001169 unsigned Opcode = Orig->getOpcode();
1170 switch (Opcode) {
1171 default: {
1172 MachineInstr *MI = MBB.getParent()->CloneMachineInstr(Orig);
Jakob Stoklund Olesen9edf7de2010-06-02 22:47:25 +00001173 MI->substituteRegister(Orig->getOperand(0).getReg(), DestReg, SubIdx, TRI);
Evan Chengfdc83402009-11-08 00:15:23 +00001174 MBB.insert(I, MI);
1175 break;
1176 }
1177 case ARM::tLDRpci_pic:
1178 case ARM::t2LDRpci_pic: {
1179 MachineFunction &MF = *MBB.getParent();
Evan Chengfdc83402009-11-08 00:15:23 +00001180 unsigned CPI = Orig->getOperand(1).getIndex();
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001181 unsigned PCLabelId = duplicateCPV(MF, CPI);
Evan Chengfdc83402009-11-08 00:15:23 +00001182 MachineInstrBuilder MIB = BuildMI(MBB, I, Orig->getDebugLoc(), get(Opcode),
1183 DestReg)
1184 .addConstantPoolIndex(CPI).addImm(PCLabelId);
Chris Lattnerd7d030a2011-04-29 05:24:29 +00001185 MIB->setMemRefs(Orig->memoperands_begin(), Orig->memoperands_end());
Evan Chengfdc83402009-11-08 00:15:23 +00001186 break;
1187 }
1188 }
Evan Chengfdc83402009-11-08 00:15:23 +00001189}
1190
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001191MachineInstr *
1192ARMBaseInstrInfo::duplicate(MachineInstr *Orig, MachineFunction &MF) const {
1193 MachineInstr *MI = TargetInstrInfoImpl::duplicate(Orig, MF);
1194 switch(Orig->getOpcode()) {
1195 case ARM::tLDRpci_pic:
1196 case ARM::t2LDRpci_pic: {
1197 unsigned CPI = Orig->getOperand(1).getIndex();
1198 unsigned PCLabelId = duplicateCPV(MF, CPI);
1199 Orig->getOperand(1).setIndex(CPI);
1200 Orig->getOperand(2).setImm(PCLabelId);
1201 break;
1202 }
1203 }
1204 return MI;
1205}
1206
Evan Cheng506049f2010-03-03 01:44:33 +00001207bool ARMBaseInstrInfo::produceSameValue(const MachineInstr *MI0,
Evan Cheng9fe20092011-01-20 08:34:58 +00001208 const MachineInstr *MI1,
1209 const MachineRegisterInfo *MRI) const {
Evan Chengd457e6e2009-11-07 04:04:34 +00001210 int Opcode = MI0->getOpcode();
Evan Chengd7e3cc82011-01-20 23:55:07 +00001211 if (Opcode == ARM::t2LDRpci ||
Evan Cheng9b824252009-11-20 02:10:27 +00001212 Opcode == ARM::t2LDRpci_pic ||
1213 Opcode == ARM::tLDRpci ||
Evan Cheng9fe20092011-01-20 08:34:58 +00001214 Opcode == ARM::tLDRpci_pic ||
Evan Cheng53519f02011-01-21 18:55:51 +00001215 Opcode == ARM::MOV_ga_dyn ||
1216 Opcode == ARM::MOV_ga_pcrel ||
1217 Opcode == ARM::MOV_ga_pcrel_ldr ||
1218 Opcode == ARM::t2MOV_ga_dyn ||
1219 Opcode == ARM::t2MOV_ga_pcrel) {
Evan Chengd457e6e2009-11-07 04:04:34 +00001220 if (MI1->getOpcode() != Opcode)
1221 return false;
1222 if (MI0->getNumOperands() != MI1->getNumOperands())
1223 return false;
1224
1225 const MachineOperand &MO0 = MI0->getOperand(1);
1226 const MachineOperand &MO1 = MI1->getOperand(1);
1227 if (MO0.getOffset() != MO1.getOffset())
1228 return false;
1229
Evan Cheng53519f02011-01-21 18:55:51 +00001230 if (Opcode == ARM::MOV_ga_dyn ||
1231 Opcode == ARM::MOV_ga_pcrel ||
1232 Opcode == ARM::MOV_ga_pcrel_ldr ||
1233 Opcode == ARM::t2MOV_ga_dyn ||
1234 Opcode == ARM::t2MOV_ga_pcrel)
Evan Cheng9fe20092011-01-20 08:34:58 +00001235 // Ignore the PC labels.
1236 return MO0.getGlobal() == MO1.getGlobal();
1237
Evan Chengd457e6e2009-11-07 04:04:34 +00001238 const MachineFunction *MF = MI0->getParent()->getParent();
1239 const MachineConstantPool *MCP = MF->getConstantPool();
1240 int CPI0 = MO0.getIndex();
1241 int CPI1 = MO1.getIndex();
1242 const MachineConstantPoolEntry &MCPE0 = MCP->getConstants()[CPI0];
1243 const MachineConstantPoolEntry &MCPE1 = MCP->getConstants()[CPI1];
Evan Chengd7006172011-03-24 06:20:03 +00001244 bool isARMCP0 = MCPE0.isMachineConstantPoolEntry();
1245 bool isARMCP1 = MCPE1.isMachineConstantPoolEntry();
1246 if (isARMCP0 && isARMCP1) {
1247 ARMConstantPoolValue *ACPV0 =
1248 static_cast<ARMConstantPoolValue*>(MCPE0.Val.MachineCPVal);
1249 ARMConstantPoolValue *ACPV1 =
1250 static_cast<ARMConstantPoolValue*>(MCPE1.Val.MachineCPVal);
1251 return ACPV0->hasSameValue(ACPV1);
1252 } else if (!isARMCP0 && !isARMCP1) {
1253 return MCPE0.Val.ConstVal == MCPE1.Val.ConstVal;
1254 }
1255 return false;
Evan Cheng9fe20092011-01-20 08:34:58 +00001256 } else if (Opcode == ARM::PICLDR) {
1257 if (MI1->getOpcode() != Opcode)
1258 return false;
1259 if (MI0->getNumOperands() != MI1->getNumOperands())
1260 return false;
1261
1262 unsigned Addr0 = MI0->getOperand(1).getReg();
1263 unsigned Addr1 = MI1->getOperand(1).getReg();
1264 if (Addr0 != Addr1) {
1265 if (!MRI ||
1266 !TargetRegisterInfo::isVirtualRegister(Addr0) ||
1267 !TargetRegisterInfo::isVirtualRegister(Addr1))
1268 return false;
1269
1270 // This assumes SSA form.
1271 MachineInstr *Def0 = MRI->getVRegDef(Addr0);
1272 MachineInstr *Def1 = MRI->getVRegDef(Addr1);
1273 // Check if the loaded value, e.g. a constantpool of a global address, are
1274 // the same.
1275 if (!produceSameValue(Def0, Def1, MRI))
1276 return false;
1277 }
1278
1279 for (unsigned i = 3, e = MI0->getNumOperands(); i != e; ++i) {
1280 // %vreg12<def> = PICLDR %vreg11, 0, pred:14, pred:%noreg
1281 const MachineOperand &MO0 = MI0->getOperand(i);
1282 const MachineOperand &MO1 = MI1->getOperand(i);
1283 if (!MO0.isIdenticalTo(MO1))
1284 return false;
1285 }
1286 return true;
Evan Chengd457e6e2009-11-07 04:04:34 +00001287 }
1288
Evan Cheng506049f2010-03-03 01:44:33 +00001289 return MI0->isIdenticalTo(MI1, MachineInstr::IgnoreVRegDefs);
Evan Chengd457e6e2009-11-07 04:04:34 +00001290}
1291
Bill Wendling4b722102010-06-23 23:00:16 +00001292/// areLoadsFromSameBasePtr - This is used by the pre-regalloc scheduler to
1293/// determine if two loads are loading from the same base address. It should
1294/// only return true if the base pointers are the same and the only differences
1295/// between the two addresses is the offset. It also returns the offsets by
1296/// reference.
1297bool ARMBaseInstrInfo::areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
1298 int64_t &Offset1,
1299 int64_t &Offset2) const {
1300 // Don't worry about Thumb: just ARM and Thumb2.
1301 if (Subtarget.isThumb1Only()) return false;
1302
1303 if (!Load1->isMachineOpcode() || !Load2->isMachineOpcode())
1304 return false;
1305
1306 switch (Load1->getMachineOpcode()) {
1307 default:
1308 return false;
Jim Grosbach3e556122010-10-26 22:37:02 +00001309 case ARM::LDRi12:
Jim Grosbachc1d30212010-10-27 00:19:44 +00001310 case ARM::LDRBi12:
Bill Wendling4b722102010-06-23 23:00:16 +00001311 case ARM::LDRD:
1312 case ARM::LDRH:
1313 case ARM::LDRSB:
1314 case ARM::LDRSH:
1315 case ARM::VLDRD:
1316 case ARM::VLDRS:
1317 case ARM::t2LDRi8:
1318 case ARM::t2LDRDi8:
1319 case ARM::t2LDRSHi8:
1320 case ARM::t2LDRi12:
1321 case ARM::t2LDRSHi12:
1322 break;
1323 }
1324
1325 switch (Load2->getMachineOpcode()) {
1326 default:
1327 return false;
Jim Grosbach3e556122010-10-26 22:37:02 +00001328 case ARM::LDRi12:
Jim Grosbachc1d30212010-10-27 00:19:44 +00001329 case ARM::LDRBi12:
Bill Wendling4b722102010-06-23 23:00:16 +00001330 case ARM::LDRD:
1331 case ARM::LDRH:
1332 case ARM::LDRSB:
1333 case ARM::LDRSH:
1334 case ARM::VLDRD:
1335 case ARM::VLDRS:
1336 case ARM::t2LDRi8:
1337 case ARM::t2LDRDi8:
1338 case ARM::t2LDRSHi8:
1339 case ARM::t2LDRi12:
1340 case ARM::t2LDRSHi12:
1341 break;
1342 }
1343
1344 // Check if base addresses and chain operands match.
1345 if (Load1->getOperand(0) != Load2->getOperand(0) ||
1346 Load1->getOperand(4) != Load2->getOperand(4))
1347 return false;
1348
1349 // Index should be Reg0.
1350 if (Load1->getOperand(3) != Load2->getOperand(3))
1351 return false;
1352
1353 // Determine the offsets.
1354 if (isa<ConstantSDNode>(Load1->getOperand(1)) &&
1355 isa<ConstantSDNode>(Load2->getOperand(1))) {
1356 Offset1 = cast<ConstantSDNode>(Load1->getOperand(1))->getSExtValue();
1357 Offset2 = cast<ConstantSDNode>(Load2->getOperand(1))->getSExtValue();
1358 return true;
1359 }
1360
1361 return false;
1362}
1363
1364/// shouldScheduleLoadsNear - This is a used by the pre-regalloc scheduler to
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001365/// determine (in conjunction with areLoadsFromSameBasePtr) if two loads should
Bill Wendling4b722102010-06-23 23:00:16 +00001366/// be scheduled togther. On some targets if two loads are loading from
1367/// addresses in the same cache line, it's better if they are scheduled
1368/// together. This function takes two integers that represent the load offsets
1369/// from the common base address. It returns true if it decides it's desirable
1370/// to schedule the two loads together. "NumLoads" is the number of loads that
1371/// have already been scheduled after Load1.
1372bool ARMBaseInstrInfo::shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
1373 int64_t Offset1, int64_t Offset2,
1374 unsigned NumLoads) const {
1375 // Don't worry about Thumb: just ARM and Thumb2.
1376 if (Subtarget.isThumb1Only()) return false;
1377
1378 assert(Offset2 > Offset1);
1379
1380 if ((Offset2 - Offset1) / 8 > 64)
1381 return false;
1382
1383 if (Load1->getMachineOpcode() != Load2->getMachineOpcode())
1384 return false; // FIXME: overly conservative?
1385
1386 // Four loads in a row should be sufficient.
1387 if (NumLoads >= 3)
1388 return false;
1389
1390 return true;
1391}
1392
Evan Cheng86050dc2010-06-18 23:09:54 +00001393bool ARMBaseInstrInfo::isSchedulingBoundary(const MachineInstr *MI,
1394 const MachineBasicBlock *MBB,
1395 const MachineFunction &MF) const {
Jim Grosbach57bb3942010-06-25 18:43:14 +00001396 // Debug info is never a scheduling boundary. It's necessary to be explicit
1397 // due to the special treatment of IT instructions below, otherwise a
1398 // dbg_value followed by an IT will result in the IT instruction being
1399 // considered a scheduling hazard, which is wrong. It should be the actual
1400 // instruction preceding the dbg_value instruction(s), just like it is
1401 // when debug info is not present.
1402 if (MI->isDebugValue())
1403 return false;
1404
Evan Cheng86050dc2010-06-18 23:09:54 +00001405 // Terminators and labels can't be scheduled around.
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001406 if (MI->isTerminator() || MI->isLabel())
Evan Cheng86050dc2010-06-18 23:09:54 +00001407 return true;
1408
1409 // Treat the start of the IT block as a scheduling boundary, but schedule
1410 // t2IT along with all instructions following it.
1411 // FIXME: This is a big hammer. But the alternative is to add all potential
1412 // true and anti dependencies to IT block instructions as implicit operands
1413 // to the t2IT instruction. The added compile time and complexity does not
1414 // seem worth it.
1415 MachineBasicBlock::const_iterator I = MI;
Jim Grosbach57bb3942010-06-25 18:43:14 +00001416 // Make sure to skip any dbg_value instructions
1417 while (++I != MBB->end() && I->isDebugValue())
1418 ;
1419 if (I != MBB->end() && I->getOpcode() == ARM::t2IT)
Evan Cheng86050dc2010-06-18 23:09:54 +00001420 return true;
1421
1422 // Don't attempt to schedule around any instruction that defines
1423 // a stack-oriented pointer, as it's unlikely to be profitable. This
1424 // saves compile time, because it doesn't require every single
1425 // stack slot reference to depend on the instruction that does the
1426 // modification.
Jakob Stoklund Olesena1aa8db2012-02-21 23:47:43 +00001427 // Calls don't actually change the stack pointer, even if they have imp-defs.
Jakob Stoklund Olesen209600b2012-02-22 01:07:19 +00001428 // No ARM calling conventions change the stack pointer. (X86 calling
1429 // conventions sometimes do).
Jakob Stoklund Olesena1aa8db2012-02-21 23:47:43 +00001430 if (!MI->isCall() && MI->definesRegister(ARM::SP))
Evan Cheng86050dc2010-06-18 23:09:54 +00001431 return true;
1432
1433 return false;
1434}
1435
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001436bool ARMBaseInstrInfo::
1437isProfitableToIfCvt(MachineBasicBlock &MBB,
1438 unsigned NumCycles, unsigned ExtraPredCycles,
1439 const BranchProbability &Probability) const {
Cameron Zwarich5876db72011-04-13 06:39:16 +00001440 if (!NumCycles)
Evan Cheng13151432010-06-25 22:42:03 +00001441 return false;
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001442
Owen Andersonb20b8512010-09-28 18:32:13 +00001443 // Attempt to estimate the relative costs of predication versus branching.
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001444 unsigned UnpredCost = Probability.getNumerator() * NumCycles;
1445 UnpredCost /= Probability.getDenominator();
1446 UnpredCost += 1; // The branch itself
1447 UnpredCost += Subtarget.getMispredictionPenalty() / 10;
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001448
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001449 return (NumCycles + ExtraPredCycles) <= UnpredCost;
Evan Cheng13151432010-06-25 22:42:03 +00001450}
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001451
Evan Cheng13151432010-06-25 22:42:03 +00001452bool ARMBaseInstrInfo::
Evan Cheng8239daf2010-11-03 00:45:17 +00001453isProfitableToIfCvt(MachineBasicBlock &TMBB,
1454 unsigned TCycles, unsigned TExtra,
1455 MachineBasicBlock &FMBB,
1456 unsigned FCycles, unsigned FExtra,
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001457 const BranchProbability &Probability) const {
Evan Cheng8239daf2010-11-03 00:45:17 +00001458 if (!TCycles || !FCycles)
Owen Andersonb20b8512010-09-28 18:32:13 +00001459 return false;
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001460
Owen Andersonb20b8512010-09-28 18:32:13 +00001461 // Attempt to estimate the relative costs of predication versus branching.
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001462 unsigned TUnpredCost = Probability.getNumerator() * TCycles;
1463 TUnpredCost /= Probability.getDenominator();
Andrew Tricke23dc9c2011-09-21 02:17:37 +00001464
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001465 uint32_t Comp = Probability.getDenominator() - Probability.getNumerator();
1466 unsigned FUnpredCost = Comp * FCycles;
1467 FUnpredCost /= Probability.getDenominator();
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001468
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001469 unsigned UnpredCost = TUnpredCost + FUnpredCost;
1470 UnpredCost += 1; // The branch itself
1471 UnpredCost += Subtarget.getMispredictionPenalty() / 10;
1472
1473 return (TCycles + FCycles + TExtra + FExtra) <= UnpredCost;
Evan Cheng13151432010-06-25 22:42:03 +00001474}
1475
Evan Cheng8fb90362009-08-08 03:20:32 +00001476/// getInstrPredicate - If instruction is predicated, returns its predicate
1477/// condition, otherwise returns AL. It also returns the condition code
1478/// register by reference.
Evan Cheng5adb66a2009-09-28 09:14:39 +00001479ARMCC::CondCodes
1480llvm::getInstrPredicate(const MachineInstr *MI, unsigned &PredReg) {
Evan Cheng8fb90362009-08-08 03:20:32 +00001481 int PIdx = MI->findFirstPredOperandIdx();
1482 if (PIdx == -1) {
1483 PredReg = 0;
1484 return ARMCC::AL;
1485 }
1486
1487 PredReg = MI->getOperand(PIdx+1).getReg();
1488 return (ARMCC::CondCodes)MI->getOperand(PIdx).getImm();
1489}
1490
1491
Evan Cheng6495f632009-07-28 05:48:47 +00001492int llvm::getMatchingCondBranchOpcode(int Opc) {
Evan Cheng5ca53a72009-07-27 18:20:05 +00001493 if (Opc == ARM::B)
1494 return ARM::Bcc;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001495 if (Opc == ARM::tB)
Evan Cheng5ca53a72009-07-27 18:20:05 +00001496 return ARM::tBcc;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001497 if (Opc == ARM::t2B)
1498 return ARM::t2Bcc;
Evan Cheng5ca53a72009-07-27 18:20:05 +00001499
1500 llvm_unreachable("Unknown unconditional branch opcode!");
Evan Cheng5ca53a72009-07-27 18:20:05 +00001501}
1502
Jakob Stoklund Olesenc5041ca2012-04-04 18:23:42 +00001503/// commuteInstruction - Handle commutable instructions.
1504MachineInstr *
1505ARMBaseInstrInfo::commuteInstruction(MachineInstr *MI, bool NewMI) const {
1506 switch (MI->getOpcode()) {
1507 case ARM::MOVCCr:
1508 case ARM::t2MOVCCr: {
1509 // MOVCC can be commuted by inverting the condition.
1510 unsigned PredReg = 0;
1511 ARMCC::CondCodes CC = getInstrPredicate(MI, PredReg);
1512 // MOVCC AL can't be inverted. Shouldn't happen.
1513 if (CC == ARMCC::AL || PredReg != ARM::CPSR)
1514 return NULL;
1515 MI = TargetInstrInfoImpl::commuteInstruction(MI, NewMI);
1516 if (!MI)
1517 return NULL;
1518 // After swapping the MOVCC operands, also invert the condition.
1519 MI->getOperand(MI->findFirstPredOperandIdx())
1520 .setImm(ARMCC::getOppositeCondition(CC));
1521 return MI;
1522 }
1523 }
1524 return TargetInstrInfoImpl::commuteInstruction(MI, NewMI);
1525}
Evan Cheng6495f632009-07-28 05:48:47 +00001526
Andrew Trick3be654f2011-09-21 02:20:46 +00001527/// Map pseudo instructions that imply an 'S' bit onto real opcodes. Whether the
1528/// instruction is encoded with an 'S' bit is determined by the optional CPSR
1529/// def operand.
1530///
1531/// This will go away once we can teach tblgen how to set the optional CPSR def
1532/// operand itself.
1533struct AddSubFlagsOpcodePair {
Craig Toppercd2859e2012-05-24 03:59:11 +00001534 uint16_t PseudoOpc;
1535 uint16_t MachineOpc;
Andrew Trick3be654f2011-09-21 02:20:46 +00001536};
1537
Craig Toppercd2859e2012-05-24 03:59:11 +00001538static const AddSubFlagsOpcodePair AddSubFlagsOpcodeMap[] = {
Andrew Trick3be654f2011-09-21 02:20:46 +00001539 {ARM::ADDSri, ARM::ADDri},
1540 {ARM::ADDSrr, ARM::ADDrr},
1541 {ARM::ADDSrsi, ARM::ADDrsi},
1542 {ARM::ADDSrsr, ARM::ADDrsr},
1543
1544 {ARM::SUBSri, ARM::SUBri},
1545 {ARM::SUBSrr, ARM::SUBrr},
1546 {ARM::SUBSrsi, ARM::SUBrsi},
1547 {ARM::SUBSrsr, ARM::SUBrsr},
1548
1549 {ARM::RSBSri, ARM::RSBri},
Andrew Trick3be654f2011-09-21 02:20:46 +00001550 {ARM::RSBSrsi, ARM::RSBrsi},
1551 {ARM::RSBSrsr, ARM::RSBrsr},
1552
1553 {ARM::t2ADDSri, ARM::t2ADDri},
1554 {ARM::t2ADDSrr, ARM::t2ADDrr},
1555 {ARM::t2ADDSrs, ARM::t2ADDrs},
1556
1557 {ARM::t2SUBSri, ARM::t2SUBri},
1558 {ARM::t2SUBSrr, ARM::t2SUBrr},
1559 {ARM::t2SUBSrs, ARM::t2SUBrs},
1560
1561 {ARM::t2RSBSri, ARM::t2RSBri},
1562 {ARM::t2RSBSrs, ARM::t2RSBrs},
1563};
1564
1565unsigned llvm::convertAddSubFlagsOpcode(unsigned OldOpc) {
Craig Toppercd2859e2012-05-24 03:59:11 +00001566 for (unsigned i = 0, e = array_lengthof(AddSubFlagsOpcodeMap); i != e; ++i)
1567 if (OldOpc == AddSubFlagsOpcodeMap[i].PseudoOpc)
1568 return AddSubFlagsOpcodeMap[i].MachineOpc;
Andrew Trick3be654f2011-09-21 02:20:46 +00001569 return 0;
1570}
1571
Evan Cheng6495f632009-07-28 05:48:47 +00001572void llvm::emitARMRegPlusImmediate(MachineBasicBlock &MBB,
1573 MachineBasicBlock::iterator &MBBI, DebugLoc dl,
1574 unsigned DestReg, unsigned BaseReg, int NumBytes,
1575 ARMCC::CondCodes Pred, unsigned PredReg,
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001576 const ARMBaseInstrInfo &TII, unsigned MIFlags) {
Evan Cheng6495f632009-07-28 05:48:47 +00001577 bool isSub = NumBytes < 0;
1578 if (isSub) NumBytes = -NumBytes;
1579
1580 while (NumBytes) {
1581 unsigned RotAmt = ARM_AM::getSOImmValRotate(NumBytes);
1582 unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt);
1583 assert(ThisVal && "Didn't extract field correctly");
1584
1585 // We will handle these bits from offset, clear them.
1586 NumBytes &= ~ThisVal;
1587
1588 assert(ARM_AM::getSOImmVal(ThisVal) != -1 && "Bit extraction didn't work?");
1589
1590 // Build the new ADD / SUB.
1591 unsigned Opc = isSub ? ARM::SUBri : ARM::ADDri;
1592 BuildMI(MBB, MBBI, dl, TII.get(Opc), DestReg)
1593 .addReg(BaseReg, RegState::Kill).addImm(ThisVal)
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001594 .addImm((unsigned)Pred).addReg(PredReg).addReg(0)
1595 .setMIFlags(MIFlags);
Evan Cheng6495f632009-07-28 05:48:47 +00001596 BaseReg = DestReg;
1597 }
1598}
1599
Evan Chengcdbb3f52009-08-27 01:23:50 +00001600bool llvm::rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
1601 unsigned FrameReg, int &Offset,
1602 const ARMBaseInstrInfo &TII) {
Evan Cheng6495f632009-07-28 05:48:47 +00001603 unsigned Opcode = MI.getOpcode();
Evan Chenge837dea2011-06-28 19:10:37 +00001604 const MCInstrDesc &Desc = MI.getDesc();
Evan Cheng6495f632009-07-28 05:48:47 +00001605 unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
1606 bool isSub = false;
Jim Grosbach764ab522009-08-11 15:33:49 +00001607
Evan Cheng6495f632009-07-28 05:48:47 +00001608 // Memory operands in inline assembly always use AddrMode2.
1609 if (Opcode == ARM::INLINEASM)
1610 AddrMode = ARMII::AddrMode2;
Jim Grosbach764ab522009-08-11 15:33:49 +00001611
Evan Cheng6495f632009-07-28 05:48:47 +00001612 if (Opcode == ARM::ADDri) {
1613 Offset += MI.getOperand(FrameRegIdx+1).getImm();
1614 if (Offset == 0) {
1615 // Turn it into a move.
1616 MI.setDesc(TII.get(ARM::MOVr));
1617 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1618 MI.RemoveOperand(FrameRegIdx+1);
Evan Chengcdbb3f52009-08-27 01:23:50 +00001619 Offset = 0;
1620 return true;
Evan Cheng6495f632009-07-28 05:48:47 +00001621 } else if (Offset < 0) {
1622 Offset = -Offset;
1623 isSub = true;
1624 MI.setDesc(TII.get(ARM::SUBri));
1625 }
1626
1627 // Common case: small offset, fits into instruction.
1628 if (ARM_AM::getSOImmVal(Offset) != -1) {
1629 // Replace the FrameIndex with sp / fp
1630 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1631 MI.getOperand(FrameRegIdx+1).ChangeToImmediate(Offset);
Evan Chengcdbb3f52009-08-27 01:23:50 +00001632 Offset = 0;
1633 return true;
Evan Cheng6495f632009-07-28 05:48:47 +00001634 }
1635
1636 // Otherwise, pull as much of the immedidate into this ADDri/SUBri
1637 // as possible.
1638 unsigned RotAmt = ARM_AM::getSOImmValRotate(Offset);
1639 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xFF, RotAmt);
1640
1641 // We will handle these bits from offset, clear them.
1642 Offset &= ~ThisImmVal;
1643
1644 // Get the properly encoded SOImmVal field.
1645 assert(ARM_AM::getSOImmVal(ThisImmVal) != -1 &&
1646 "Bit extraction didn't work?");
1647 MI.getOperand(FrameRegIdx+1).ChangeToImmediate(ThisImmVal);
1648 } else {
1649 unsigned ImmIdx = 0;
1650 int InstrOffs = 0;
1651 unsigned NumBits = 0;
1652 unsigned Scale = 1;
1653 switch (AddrMode) {
Jim Grosbach3e556122010-10-26 22:37:02 +00001654 case ARMII::AddrMode_i12: {
1655 ImmIdx = FrameRegIdx + 1;
1656 InstrOffs = MI.getOperand(ImmIdx).getImm();
1657 NumBits = 12;
1658 break;
1659 }
Evan Cheng6495f632009-07-28 05:48:47 +00001660 case ARMII::AddrMode2: {
1661 ImmIdx = FrameRegIdx+2;
1662 InstrOffs = ARM_AM::getAM2Offset(MI.getOperand(ImmIdx).getImm());
1663 if (ARM_AM::getAM2Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1664 InstrOffs *= -1;
1665 NumBits = 12;
1666 break;
1667 }
1668 case ARMII::AddrMode3: {
1669 ImmIdx = FrameRegIdx+2;
1670 InstrOffs = ARM_AM::getAM3Offset(MI.getOperand(ImmIdx).getImm());
1671 if (ARM_AM::getAM3Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1672 InstrOffs *= -1;
1673 NumBits = 8;
1674 break;
1675 }
Anton Korobeynikovbaf31082009-08-08 13:35:48 +00001676 case ARMII::AddrMode4:
Jim Grosbacha4432172009-11-15 21:45:34 +00001677 case ARMII::AddrMode6:
Evan Chengcdbb3f52009-08-27 01:23:50 +00001678 // Can't fold any offset even if it's zero.
1679 return false;
Evan Cheng6495f632009-07-28 05:48:47 +00001680 case ARMII::AddrMode5: {
1681 ImmIdx = FrameRegIdx+1;
1682 InstrOffs = ARM_AM::getAM5Offset(MI.getOperand(ImmIdx).getImm());
1683 if (ARM_AM::getAM5Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1684 InstrOffs *= -1;
1685 NumBits = 8;
1686 Scale = 4;
1687 break;
1688 }
1689 default:
1690 llvm_unreachable("Unsupported addressing mode!");
Evan Cheng6495f632009-07-28 05:48:47 +00001691 }
1692
1693 Offset += InstrOffs * Scale;
1694 assert((Offset & (Scale-1)) == 0 && "Can't encode this offset!");
1695 if (Offset < 0) {
1696 Offset = -Offset;
1697 isSub = true;
1698 }
1699
1700 // Attempt to fold address comp. if opcode has offset bits
1701 if (NumBits > 0) {
1702 // Common case: small offset, fits into instruction.
1703 MachineOperand &ImmOp = MI.getOperand(ImmIdx);
1704 int ImmedOffset = Offset / Scale;
1705 unsigned Mask = (1 << NumBits) - 1;
1706 if ((unsigned)Offset <= Mask * Scale) {
1707 // Replace the FrameIndex with sp
1708 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
Jim Grosbach77aee8e2010-10-27 01:19:41 +00001709 // FIXME: When addrmode2 goes away, this will simplify (like the
1710 // T2 version), as the LDR.i12 versions don't need the encoding
1711 // tricks for the offset value.
1712 if (isSub) {
1713 if (AddrMode == ARMII::AddrMode_i12)
1714 ImmedOffset = -ImmedOffset;
1715 else
1716 ImmedOffset |= 1 << NumBits;
1717 }
Evan Cheng6495f632009-07-28 05:48:47 +00001718 ImmOp.ChangeToImmediate(ImmedOffset);
Evan Chengcdbb3f52009-08-27 01:23:50 +00001719 Offset = 0;
1720 return true;
Evan Cheng6495f632009-07-28 05:48:47 +00001721 }
Jim Grosbach764ab522009-08-11 15:33:49 +00001722
Evan Cheng6495f632009-07-28 05:48:47 +00001723 // Otherwise, it didn't fit. Pull in what we can to simplify the immed.
1724 ImmedOffset = ImmedOffset & Mask;
Jim Grosbach063efbf2010-10-27 16:50:31 +00001725 if (isSub) {
1726 if (AddrMode == ARMII::AddrMode_i12)
1727 ImmedOffset = -ImmedOffset;
1728 else
1729 ImmedOffset |= 1 << NumBits;
1730 }
Evan Cheng6495f632009-07-28 05:48:47 +00001731 ImmOp.ChangeToImmediate(ImmedOffset);
1732 Offset &= ~(Mask*Scale);
1733 }
1734 }
1735
Evan Chengcdbb3f52009-08-27 01:23:50 +00001736 Offset = (isSub) ? -Offset : Offset;
1737 return Offset == 0;
Evan Cheng6495f632009-07-28 05:48:47 +00001738}
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001739
1740bool ARMBaseInstrInfo::
Eric Christophera99c3e92010-09-28 04:18:29 +00001741AnalyzeCompare(const MachineInstr *MI, unsigned &SrcReg, int &CmpMask,
1742 int &CmpValue) const {
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001743 switch (MI->getOpcode()) {
1744 default: break;
Bill Wendling38ae9972010-08-11 00:23:00 +00001745 case ARM::CMPri:
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001746 case ARM::t2CMPri:
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001747 SrcReg = MI->getOperand(0).getReg();
Gabor Greif04ac81d2010-09-21 12:01:15 +00001748 CmpMask = ~0;
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001749 CmpValue = MI->getOperand(1).getImm();
1750 return true;
Manman Ren247c5ab2012-05-11 01:30:47 +00001751 case ARM::CMPrr:
1752 case ARM::t2CMPrr:
1753 SrcReg = MI->getOperand(0).getReg();
1754 CmpMask = ~0;
1755 CmpValue = 0;
1756 return true;
Gabor Greif04ac81d2010-09-21 12:01:15 +00001757 case ARM::TSTri:
1758 case ARM::t2TSTri:
1759 SrcReg = MI->getOperand(0).getReg();
1760 CmpMask = MI->getOperand(1).getImm();
1761 CmpValue = 0;
1762 return true;
1763 }
1764
1765 return false;
1766}
1767
Gabor Greif05642a32010-09-29 10:12:08 +00001768/// isSuitableForMask - Identify a suitable 'and' instruction that
1769/// operates on the given source register and applies the same mask
1770/// as a 'tst' instruction. Provide a limited look-through for copies.
1771/// When successful, MI will hold the found instruction.
1772static bool isSuitableForMask(MachineInstr *&MI, unsigned SrcReg,
Gabor Greif8ff9bb12010-09-21 13:30:57 +00001773 int CmpMask, bool CommonUse) {
Gabor Greif05642a32010-09-29 10:12:08 +00001774 switch (MI->getOpcode()) {
Gabor Greif04ac81d2010-09-21 12:01:15 +00001775 case ARM::ANDri:
1776 case ARM::t2ANDri:
Gabor Greif05642a32010-09-29 10:12:08 +00001777 if (CmpMask != MI->getOperand(2).getImm())
Gabor Greif8ff9bb12010-09-21 13:30:57 +00001778 return false;
Gabor Greif05642a32010-09-29 10:12:08 +00001779 if (SrcReg == MI->getOperand(CommonUse ? 1 : 0).getReg())
Gabor Greif04ac81d2010-09-21 12:01:15 +00001780 return true;
1781 break;
Gabor Greif05642a32010-09-29 10:12:08 +00001782 case ARM::COPY: {
1783 // Walk down one instruction which is potentially an 'and'.
1784 const MachineInstr &Copy = *MI;
Michael J. Spencerf000a7a2010-10-05 06:00:43 +00001785 MachineBasicBlock::iterator AND(
1786 llvm::next(MachineBasicBlock::iterator(MI)));
Gabor Greif05642a32010-09-29 10:12:08 +00001787 if (AND == MI->getParent()->end()) return false;
1788 MI = AND;
1789 return isSuitableForMask(MI, Copy.getOperand(0).getReg(),
1790 CmpMask, true);
1791 }
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001792 }
1793
1794 return false;
1795}
1796
Bill Wendlinga6556862010-09-11 00:13:50 +00001797/// OptimizeCompareInstr - Convert the instruction supplying the argument to the
Manman Ren247c5ab2012-05-11 01:30:47 +00001798/// comparison into one that sets the zero bit in the flags register. Convert
1799/// the SUBrr(r1,r2)|Subri(r1,CmpValue) instruction into one that sets the flags
1800/// register and remove the CMPrr(r1,r2)|CMPrr(r2,r1)|CMPri(r1,CmpValue)
1801/// instruction.
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001802bool ARMBaseInstrInfo::
Gabor Greif04ac81d2010-09-21 12:01:15 +00001803OptimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, int CmpMask,
Evan Chengeb96a2f2010-11-15 21:20:45 +00001804 int CmpValue, const MachineRegisterInfo *MRI) const {
Bill Wendling92ad57f2010-09-10 23:34:19 +00001805
Bill Wendlingb41ee962010-10-18 21:22:31 +00001806 MachineRegisterInfo::def_iterator DI = MRI->def_begin(SrcReg);
1807 if (llvm::next(DI) != MRI->def_end())
Bill Wendling92ad57f2010-09-10 23:34:19 +00001808 // Only support one definition.
1809 return false;
1810
1811 MachineInstr *MI = &*DI;
1812
Gabor Greif04ac81d2010-09-21 12:01:15 +00001813 // Masked compares sometimes use the same register as the corresponding 'and'.
1814 if (CmpMask != ~0) {
Gabor Greif05642a32010-09-29 10:12:08 +00001815 if (!isSuitableForMask(MI, SrcReg, CmpMask, false)) {
Gabor Greif04ac81d2010-09-21 12:01:15 +00001816 MI = 0;
Bill Wendlingb41ee962010-10-18 21:22:31 +00001817 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(SrcReg),
1818 UE = MRI->use_end(); UI != UE; ++UI) {
Gabor Greif04ac81d2010-09-21 12:01:15 +00001819 if (UI->getParent() != CmpInstr->getParent()) continue;
Gabor Greif05642a32010-09-29 10:12:08 +00001820 MachineInstr *PotentialAND = &*UI;
Gabor Greif8ff9bb12010-09-21 13:30:57 +00001821 if (!isSuitableForMask(PotentialAND, SrcReg, CmpMask, true))
Gabor Greif04ac81d2010-09-21 12:01:15 +00001822 continue;
Gabor Greif05642a32010-09-29 10:12:08 +00001823 MI = PotentialAND;
Gabor Greif04ac81d2010-09-21 12:01:15 +00001824 break;
1825 }
1826 if (!MI) return false;
1827 }
1828 }
1829
Manman Ren247c5ab2012-05-11 01:30:47 +00001830 // Get ready to iterate backward from CmpInstr.
1831 MachineBasicBlock::iterator I = CmpInstr, E = MI,
1832 B = CmpInstr->getParent()->begin();
Bill Wendling0aa38b92010-10-09 00:03:48 +00001833
1834 // Early exit if CmpInstr is at the beginning of the BB.
1835 if (I == B) return false;
1836
Manman Ren247c5ab2012-05-11 01:30:47 +00001837 // There are two possible candidates which can be changed to set CPSR:
1838 // One is MI, the other is a SUB instruction.
1839 // For CMPrr(r1,r2), we are looking for SUB(r1,r2) or SUB(r2,r1).
1840 // For CMPri(r1, CmpValue), we are looking for SUBri(r1, CmpValue).
1841 MachineInstr *Sub = NULL;
1842 unsigned SrcReg2 = 0;
1843 if (CmpInstr->getOpcode() == ARM::CMPrr ||
1844 CmpInstr->getOpcode() == ARM::t2CMPrr) {
1845 SrcReg2 = CmpInstr->getOperand(1).getReg();
1846 // MI is not a candidate for CMPrr.
1847 MI = NULL;
1848 } else if (MI->getParent() != CmpInstr->getParent() || CmpValue != 0) {
1849 // Conservatively refuse to convert an instruction which isn't in the same
1850 // BB as the comparison.
1851 // For CMPri, we need to check Sub, thus we can't return here.
Manman Ren4949e982012-05-11 15:36:46 +00001852 if (CmpInstr->getOpcode() == ARM::CMPri ||
Manman Ren247c5ab2012-05-11 01:30:47 +00001853 CmpInstr->getOpcode() == ARM::t2CMPri)
1854 MI = NULL;
1855 else
1856 return false;
1857 }
1858
1859 // Check that CPSR isn't set between the comparison instruction and the one we
1860 // want to change. At the same time, search for Sub.
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001861 --I;
1862 for (; I != E; --I) {
1863 const MachineInstr &Instr = *I;
1864
1865 for (unsigned IO = 0, EO = Instr.getNumOperands(); IO != EO; ++IO) {
1866 const MachineOperand &MO = Instr.getOperand(IO);
Jakob Stoklund Olesen2420b552012-02-17 19:23:15 +00001867 if (MO.isRegMask() && MO.clobbersPhysReg(ARM::CPSR))
1868 return false;
Bill Wendling40a5eb12010-11-01 20:41:43 +00001869 if (!MO.isReg()) continue;
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001870
Bill Wendling40a5eb12010-11-01 20:41:43 +00001871 // This instruction modifies or uses CPSR after the one we want to
1872 // change. We can't do this transformation.
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001873 if (MO.getReg() == ARM::CPSR)
1874 return false;
1875 }
Evan Cheng691e64a2010-09-21 23:49:07 +00001876
Manman Ren247c5ab2012-05-11 01:30:47 +00001877 // Check whether the current instruction is SUB(r1, r2) or SUB(r2, r1).
1878 if (SrcReg2 != 0 && Instr.getOpcode() == ARM::SUBrr &&
1879 ((Instr.getOperand(1).getReg() == SrcReg &&
1880 Instr.getOperand(2).getReg() == SrcReg2) ||
1881 (Instr.getOperand(1).getReg() == SrcReg2 &&
1882 Instr.getOperand(2).getReg() == SrcReg))) {
1883 Sub = &*I;
1884 break;
1885 }
1886
1887 // Check whether the current instruction is SUBri(r1, CmpValue).
1888 if ((CmpInstr->getOpcode() == ARM::CMPri ||
1889 CmpInstr->getOpcode() == ARM::t2CMPri) &&
1890 Instr.getOpcode() == ARM::SUBri && CmpValue != 0 &&
1891 Instr.getOperand(1).getReg() == SrcReg &&
1892 Instr.getOperand(2).getImm() == CmpValue) {
1893 Sub = &*I;
1894 break;
1895 }
1896
Evan Cheng691e64a2010-09-21 23:49:07 +00001897 if (I == B)
1898 // The 'and' is below the comparison instruction.
1899 return false;
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001900 }
1901
Manman Ren247c5ab2012-05-11 01:30:47 +00001902 // Return false if no candidates exist.
1903 if (!MI && !Sub)
1904 return false;
1905
1906 // The single candidate is called MI.
1907 if (!MI) MI = Sub;
1908
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001909 switch (MI->getOpcode()) {
1910 default: break;
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001911 case ARM::RSBrr:
Owen Andersondf298c92011-04-06 23:35:59 +00001912 case ARM::RSBri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001913 case ARM::RSCrr:
Owen Andersondf298c92011-04-06 23:35:59 +00001914 case ARM::RSCri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001915 case ARM::ADDrr:
Bill Wendling38ae9972010-08-11 00:23:00 +00001916 case ARM::ADDri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001917 case ARM::ADCrr:
Owen Andersondf298c92011-04-06 23:35:59 +00001918 case ARM::ADCri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001919 case ARM::SUBrr:
Bill Wendling38ae9972010-08-11 00:23:00 +00001920 case ARM::SUBri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001921 case ARM::SBCrr:
Owen Andersondf298c92011-04-06 23:35:59 +00001922 case ARM::SBCri:
1923 case ARM::t2RSBri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001924 case ARM::t2ADDrr:
Bill Wendling38ae9972010-08-11 00:23:00 +00001925 case ARM::t2ADDri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001926 case ARM::t2ADCrr:
Owen Andersondf298c92011-04-06 23:35:59 +00001927 case ARM::t2ADCri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001928 case ARM::t2SUBrr:
Owen Andersondf298c92011-04-06 23:35:59 +00001929 case ARM::t2SUBri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00001930 case ARM::t2SBCrr:
Cameron Zwarichb485de52011-04-15 20:45:00 +00001931 case ARM::t2SBCri:
1932 case ARM::ANDrr:
1933 case ARM::ANDri:
1934 case ARM::t2ANDrr:
Cameron Zwarich0cb11ac2011-04-15 21:24:38 +00001935 case ARM::t2ANDri:
1936 case ARM::ORRrr:
1937 case ARM::ORRri:
1938 case ARM::t2ORRrr:
1939 case ARM::t2ORRri:
1940 case ARM::EORrr:
1941 case ARM::EORri:
1942 case ARM::t2EORrr:
1943 case ARM::t2EORri: {
Manman Ren247c5ab2012-05-11 01:30:47 +00001944 // Scan forward for the use of CPSR
1945 // When checking against MI: if it's a conditional code requires
Evan Cheng2c339152011-03-23 22:52:04 +00001946 // checking of V bit, then this is not safe to do. If we can't find the
1947 // CPSR use (i.e. used in another block), then it's not safe to perform
1948 // the optimization.
Manman Ren247c5ab2012-05-11 01:30:47 +00001949 // When checking against Sub, we handle the condition codes GE, LT, GT, LE.
1950 SmallVector<MachineOperand*, 4> OperandsToUpdate;
Evan Cheng2c339152011-03-23 22:52:04 +00001951 bool isSafe = false;
1952 I = CmpInstr;
Manman Ren247c5ab2012-05-11 01:30:47 +00001953 E = CmpInstr->getParent()->end();
Evan Cheng2c339152011-03-23 22:52:04 +00001954 while (!isSafe && ++I != E) {
1955 const MachineInstr &Instr = *I;
1956 for (unsigned IO = 0, EO = Instr.getNumOperands();
1957 !isSafe && IO != EO; ++IO) {
1958 const MachineOperand &MO = Instr.getOperand(IO);
Jakob Stoklund Olesen2420b552012-02-17 19:23:15 +00001959 if (MO.isRegMask() && MO.clobbersPhysReg(ARM::CPSR)) {
1960 isSafe = true;
1961 break;
1962 }
Evan Cheng2c339152011-03-23 22:52:04 +00001963 if (!MO.isReg() || MO.getReg() != ARM::CPSR)
1964 continue;
1965 if (MO.isDef()) {
1966 isSafe = true;
1967 break;
1968 }
1969 // Condition code is after the operand before CPSR.
1970 ARMCC::CondCodes CC = (ARMCC::CondCodes)Instr.getOperand(IO-1).getImm();
Manman Ren247c5ab2012-05-11 01:30:47 +00001971 if (Sub)
1972 switch (CC) {
1973 default:
1974 return false;
1975 case ARMCC::GE:
1976 case ARMCC::LT:
1977 case ARMCC::GT:
1978 case ARMCC::LE:
1979 // If we have SUB(r1, r2) and CMP(r2, r1), the condition code based
1980 // on CMP needs to be updated to be based on SUB.
1981 // Push the condition code operands to OperandsToUpdate.
1982 // If it is safe to remove CmpInstr, the condition code of these
1983 // operands will be modified.
1984 if (SrcReg2 != 0 && Sub->getOperand(1).getReg() == SrcReg2 &&
1985 Sub->getOperand(2).getReg() == SrcReg)
1986 OperandsToUpdate.push_back(&((*I).getOperand(IO-1)));
1987 break;
1988 }
1989 else
1990 switch (CC) {
1991 default:
1992 isSafe = true;
1993 break;
1994 case ARMCC::VS:
1995 case ARMCC::VC:
1996 case ARMCC::GE:
1997 case ARMCC::LT:
1998 case ARMCC::GT:
1999 case ARMCC::LE:
2000 return false;
2001 }
Evan Cheng2c339152011-03-23 22:52:04 +00002002 }
2003 }
2004
Manman Ren247c5ab2012-05-11 01:30:47 +00002005 // If the candidate is Sub, we may exit the loop at end of the basic block.
2006 // In that case, it is still safe to remove CmpInstr.
2007 if (!isSafe && !Sub)
Evan Cheng2c339152011-03-23 22:52:04 +00002008 return false;
2009
Evan Cheng3642e642010-11-17 08:06:50 +00002010 // Toggle the optional operand to CPSR.
2011 MI->getOperand(5).setReg(ARM::CPSR);
2012 MI->getOperand(5).setIsDef(true);
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00002013 CmpInstr->eraseFromParent();
Manman Ren247c5ab2012-05-11 01:30:47 +00002014
2015 // Modify the condition code of operands in OperandsToUpdate.
2016 // Since we have SUB(r1, r2) and CMP(r2, r1), the condition code needs to
2017 // be changed from r2 > r1 to r1 < r2, from r2 < r1 to r1 > r2, etc.
2018 for (unsigned i = 0; i < OperandsToUpdate.size(); i++) {
2019 ARMCC::CondCodes CC = (ARMCC::CondCodes)OperandsToUpdate[i]->getImm();
2020 ARMCC::CondCodes NewCC;
Manman Ren4949e982012-05-11 15:36:46 +00002021 switch (CC) {
David Blaikie9cc17872012-05-14 21:48:19 +00002022 default: llvm_unreachable("only expecting less/greater comparisons here");
Manman Ren247c5ab2012-05-11 01:30:47 +00002023 case ARMCC::GE: NewCC = ARMCC::LE; break;
2024 case ARMCC::LT: NewCC = ARMCC::GT; break;
2025 case ARMCC::GT: NewCC = ARMCC::LT; break;
2026 case ARMCC::LE: NewCC = ARMCC::GT; break;
2027 }
2028 OperandsToUpdate[i]->setImm(NewCC);
2029 }
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00002030 return true;
2031 }
Cameron Zwarichb485de52011-04-15 20:45:00 +00002032 }
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00002033
2034 return false;
2035}
Evan Cheng5f54ce32010-09-09 18:18:55 +00002036
Evan Chengc4af4632010-11-17 20:13:28 +00002037bool ARMBaseInstrInfo::FoldImmediate(MachineInstr *UseMI,
2038 MachineInstr *DefMI, unsigned Reg,
2039 MachineRegisterInfo *MRI) const {
2040 // Fold large immediates into add, sub, or, xor.
2041 unsigned DefOpc = DefMI->getOpcode();
2042 if (DefOpc != ARM::t2MOVi32imm && DefOpc != ARM::MOVi32imm)
2043 return false;
2044 if (!DefMI->getOperand(1).isImm())
2045 // Could be t2MOVi32imm <ga:xx>
2046 return false;
2047
2048 if (!MRI->hasOneNonDBGUse(Reg))
2049 return false;
2050
Evan Chenge279f592012-03-26 23:31:00 +00002051 const MCInstrDesc &DefMCID = DefMI->getDesc();
2052 if (DefMCID.hasOptionalDef()) {
2053 unsigned NumOps = DefMCID.getNumOperands();
2054 const MachineOperand &MO = DefMI->getOperand(NumOps-1);
2055 if (MO.getReg() == ARM::CPSR && !MO.isDead())
2056 // If DefMI defines CPSR and it is not dead, it's obviously not safe
2057 // to delete DefMI.
2058 return false;
2059 }
2060
2061 const MCInstrDesc &UseMCID = UseMI->getDesc();
2062 if (UseMCID.hasOptionalDef()) {
2063 unsigned NumOps = UseMCID.getNumOperands();
2064 if (UseMI->getOperand(NumOps-1).getReg() == ARM::CPSR)
2065 // If the instruction sets the flag, do not attempt this optimization
2066 // since it may change the semantics of the code.
2067 return false;
2068 }
2069
Evan Chengc4af4632010-11-17 20:13:28 +00002070 unsigned UseOpc = UseMI->getOpcode();
Evan Cheng5c71c7a2010-11-18 01:43:23 +00002071 unsigned NewUseOpc = 0;
Evan Chengc4af4632010-11-17 20:13:28 +00002072 uint32_t ImmVal = (uint32_t)DefMI->getOperand(1).getImm();
Evan Cheng5c71c7a2010-11-18 01:43:23 +00002073 uint32_t SOImmValV1 = 0, SOImmValV2 = 0;
Evan Chengc4af4632010-11-17 20:13:28 +00002074 bool Commute = false;
2075 switch (UseOpc) {
2076 default: return false;
2077 case ARM::SUBrr:
2078 case ARM::ADDrr:
2079 case ARM::ORRrr:
2080 case ARM::EORrr:
2081 case ARM::t2SUBrr:
2082 case ARM::t2ADDrr:
2083 case ARM::t2ORRrr:
2084 case ARM::t2EORrr: {
2085 Commute = UseMI->getOperand(2).getReg() != Reg;
2086 switch (UseOpc) {
2087 default: break;
2088 case ARM::SUBrr: {
2089 if (Commute)
2090 return false;
2091 ImmVal = -ImmVal;
2092 NewUseOpc = ARM::SUBri;
2093 // Fallthrough
2094 }
2095 case ARM::ADDrr:
2096 case ARM::ORRrr:
2097 case ARM::EORrr: {
2098 if (!ARM_AM::isSOImmTwoPartVal(ImmVal))
2099 return false;
2100 SOImmValV1 = (uint32_t)ARM_AM::getSOImmTwoPartFirst(ImmVal);
2101 SOImmValV2 = (uint32_t)ARM_AM::getSOImmTwoPartSecond(ImmVal);
2102 switch (UseOpc) {
2103 default: break;
2104 case ARM::ADDrr: NewUseOpc = ARM::ADDri; break;
2105 case ARM::ORRrr: NewUseOpc = ARM::ORRri; break;
2106 case ARM::EORrr: NewUseOpc = ARM::EORri; break;
2107 }
2108 break;
2109 }
2110 case ARM::t2SUBrr: {
2111 if (Commute)
2112 return false;
2113 ImmVal = -ImmVal;
2114 NewUseOpc = ARM::t2SUBri;
2115 // Fallthrough
2116 }
2117 case ARM::t2ADDrr:
2118 case ARM::t2ORRrr:
2119 case ARM::t2EORrr: {
2120 if (!ARM_AM::isT2SOImmTwoPartVal(ImmVal))
2121 return false;
2122 SOImmValV1 = (uint32_t)ARM_AM::getT2SOImmTwoPartFirst(ImmVal);
2123 SOImmValV2 = (uint32_t)ARM_AM::getT2SOImmTwoPartSecond(ImmVal);
2124 switch (UseOpc) {
2125 default: break;
2126 case ARM::t2ADDrr: NewUseOpc = ARM::t2ADDri; break;
2127 case ARM::t2ORRrr: NewUseOpc = ARM::t2ORRri; break;
2128 case ARM::t2EORrr: NewUseOpc = ARM::t2EORri; break;
2129 }
2130 break;
2131 }
2132 }
2133 }
2134 }
2135
2136 unsigned OpIdx = Commute ? 2 : 1;
2137 unsigned Reg1 = UseMI->getOperand(OpIdx).getReg();
2138 bool isKill = UseMI->getOperand(OpIdx).isKill();
2139 unsigned NewReg = MRI->createVirtualRegister(MRI->getRegClass(Reg));
2140 AddDefaultCC(AddDefaultPred(BuildMI(*UseMI->getParent(),
Evan Chengddfd1372011-12-14 02:11:42 +00002141 UseMI, UseMI->getDebugLoc(),
Evan Chengc4af4632010-11-17 20:13:28 +00002142 get(NewUseOpc), NewReg)
2143 .addReg(Reg1, getKillRegState(isKill))
2144 .addImm(SOImmValV1)));
2145 UseMI->setDesc(get(NewUseOpc));
2146 UseMI->getOperand(1).setReg(NewReg);
2147 UseMI->getOperand(1).setIsKill();
2148 UseMI->getOperand(2).ChangeToImmediate(SOImmValV2);
2149 DefMI->eraseFromParent();
2150 return true;
2151}
2152
Evan Cheng5f54ce32010-09-09 18:18:55 +00002153unsigned
Evan Cheng8239daf2010-11-03 00:45:17 +00002154ARMBaseInstrInfo::getNumMicroOps(const InstrItineraryData *ItinData,
2155 const MachineInstr *MI) const {
Evan Cheng3ef1c872010-09-10 01:29:16 +00002156 if (!ItinData || ItinData->isEmpty())
Evan Cheng5f54ce32010-09-09 18:18:55 +00002157 return 1;
2158
Evan Chenge837dea2011-06-28 19:10:37 +00002159 const MCInstrDesc &Desc = MI->getDesc();
Evan Cheng5f54ce32010-09-09 18:18:55 +00002160 unsigned Class = Desc.getSchedClass();
Bob Wilson064312d2010-09-15 16:28:21 +00002161 unsigned UOps = ItinData->Itineraries[Class].NumMicroOps;
Evan Cheng5f54ce32010-09-09 18:18:55 +00002162 if (UOps)
2163 return UOps;
2164
2165 unsigned Opc = MI->getOpcode();
2166 switch (Opc) {
2167 default:
2168 llvm_unreachable("Unexpected multi-uops instruction!");
Bill Wendling73fe34a2010-11-16 01:16:36 +00002169 case ARM::VLDMQIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002170 case ARM::VSTMQIA:
Evan Cheng5f54ce32010-09-09 18:18:55 +00002171 return 2;
2172
2173 // The number of uOps for load / store multiple are determined by the number
2174 // registers.
Andrew Trick6e8f4c42010-12-24 04:28:06 +00002175 //
Evan Cheng3ef1c872010-09-10 01:29:16 +00002176 // On Cortex-A8, each pair of register loads / stores can be scheduled on the
2177 // same cycle. The scheduling for the first load / store must be done
2178 // separately by assuming the the address is not 64-bit aligned.
Bill Wendling73fe34a2010-11-16 01:16:36 +00002179 //
Evan Cheng3ef1c872010-09-10 01:29:16 +00002180 // On Cortex-A9, the formula is simply (#reg / 2) + (#reg % 2). If the address
Bill Wendling73fe34a2010-11-16 01:16:36 +00002181 // is not 64-bit aligned, then AGU would take an extra cycle. For VFP / NEON
2182 // load / store multiple, the formula is (#reg / 2) + (#reg % 2) + 1.
2183 case ARM::VLDMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002184 case ARM::VLDMDIA_UPD:
2185 case ARM::VLDMDDB_UPD:
2186 case ARM::VLDMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002187 case ARM::VLDMSIA_UPD:
2188 case ARM::VLDMSDB_UPD:
2189 case ARM::VSTMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002190 case ARM::VSTMDIA_UPD:
2191 case ARM::VSTMDDB_UPD:
2192 case ARM::VSTMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002193 case ARM::VSTMSIA_UPD:
2194 case ARM::VSTMSDB_UPD: {
Evan Cheng5f54ce32010-09-09 18:18:55 +00002195 unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands();
2196 return (NumRegs / 2) + (NumRegs % 2) + 1;
2197 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00002198
2199 case ARM::LDMIA_RET:
2200 case ARM::LDMIA:
2201 case ARM::LDMDA:
2202 case ARM::LDMDB:
2203 case ARM::LDMIB:
2204 case ARM::LDMIA_UPD:
2205 case ARM::LDMDA_UPD:
2206 case ARM::LDMDB_UPD:
2207 case ARM::LDMIB_UPD:
2208 case ARM::STMIA:
2209 case ARM::STMDA:
2210 case ARM::STMDB:
2211 case ARM::STMIB:
2212 case ARM::STMIA_UPD:
2213 case ARM::STMDA_UPD:
2214 case ARM::STMDB_UPD:
2215 case ARM::STMIB_UPD:
2216 case ARM::tLDMIA:
2217 case ARM::tLDMIA_UPD:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002218 case ARM::tSTMIA_UPD:
Evan Cheng5f54ce32010-09-09 18:18:55 +00002219 case ARM::tPOP_RET:
2220 case ARM::tPOP:
2221 case ARM::tPUSH:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002222 case ARM::t2LDMIA_RET:
2223 case ARM::t2LDMIA:
2224 case ARM::t2LDMDB:
2225 case ARM::t2LDMIA_UPD:
2226 case ARM::t2LDMDB_UPD:
2227 case ARM::t2STMIA:
2228 case ARM::t2STMDB:
2229 case ARM::t2STMIA_UPD:
2230 case ARM::t2STMDB_UPD: {
Evan Cheng3ef1c872010-09-10 01:29:16 +00002231 unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands() + 1;
2232 if (Subtarget.isCortexA8()) {
Evan Cheng8239daf2010-11-03 00:45:17 +00002233 if (NumRegs < 4)
2234 return 2;
2235 // 4 registers would be issued: 2, 2.
2236 // 5 registers would be issued: 2, 2, 1.
2237 UOps = (NumRegs / 2);
2238 if (NumRegs % 2)
2239 ++UOps;
2240 return UOps;
Evan Cheng3ef1c872010-09-10 01:29:16 +00002241 } else if (Subtarget.isCortexA9()) {
2242 UOps = (NumRegs / 2);
2243 // If there are odd number of registers or if it's not 64-bit aligned,
2244 // then it takes an extra AGU (Address Generation Unit) cycle.
2245 if ((NumRegs % 2) ||
2246 !MI->hasOneMemOperand() ||
2247 (*MI->memoperands_begin())->getAlignment() < 8)
2248 ++UOps;
2249 return UOps;
2250 } else {
2251 // Assume the worst.
2252 return NumRegs;
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00002253 }
Evan Cheng5f54ce32010-09-09 18:18:55 +00002254 }
2255 }
2256}
Evan Chenga0792de2010-10-06 06:27:31 +00002257
2258int
Evan Cheng344d9db2010-10-07 23:12:15 +00002259ARMBaseInstrInfo::getVLDMDefCycle(const InstrItineraryData *ItinData,
Evan Chenge837dea2011-06-28 19:10:37 +00002260 const MCInstrDesc &DefMCID,
Evan Cheng344d9db2010-10-07 23:12:15 +00002261 unsigned DefClass,
2262 unsigned DefIdx, unsigned DefAlign) const {
Evan Chenge837dea2011-06-28 19:10:37 +00002263 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
Evan Cheng344d9db2010-10-07 23:12:15 +00002264 if (RegNo <= 0)
2265 // Def is the address writeback.
2266 return ItinData->getOperandCycle(DefClass, DefIdx);
2267
2268 int DefCycle;
2269 if (Subtarget.isCortexA8()) {
2270 // (regno / 2) + (regno % 2) + 1
2271 DefCycle = RegNo / 2 + 1;
2272 if (RegNo % 2)
2273 ++DefCycle;
2274 } else if (Subtarget.isCortexA9()) {
2275 DefCycle = RegNo;
2276 bool isSLoad = false;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002277
Evan Chenge837dea2011-06-28 19:10:37 +00002278 switch (DefMCID.getOpcode()) {
Evan Cheng344d9db2010-10-07 23:12:15 +00002279 default: break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002280 case ARM::VLDMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002281 case ARM::VLDMSIA_UPD:
2282 case ARM::VLDMSDB_UPD:
Evan Cheng344d9db2010-10-07 23:12:15 +00002283 isSLoad = true;
2284 break;
2285 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00002286
Evan Cheng344d9db2010-10-07 23:12:15 +00002287 // If there are odd number of 'S' registers or if it's not 64-bit aligned,
2288 // then it takes an extra cycle.
2289 if ((isSLoad && (RegNo % 2)) || DefAlign < 8)
2290 ++DefCycle;
2291 } else {
2292 // Assume the worst.
2293 DefCycle = RegNo + 2;
2294 }
2295
2296 return DefCycle;
2297}
2298
2299int
2300ARMBaseInstrInfo::getLDMDefCycle(const InstrItineraryData *ItinData,
Evan Chenge837dea2011-06-28 19:10:37 +00002301 const MCInstrDesc &DefMCID,
Evan Cheng344d9db2010-10-07 23:12:15 +00002302 unsigned DefClass,
2303 unsigned DefIdx, unsigned DefAlign) const {
Evan Chenge837dea2011-06-28 19:10:37 +00002304 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
Evan Cheng344d9db2010-10-07 23:12:15 +00002305 if (RegNo <= 0)
2306 // Def is the address writeback.
2307 return ItinData->getOperandCycle(DefClass, DefIdx);
2308
2309 int DefCycle;
2310 if (Subtarget.isCortexA8()) {
2311 // 4 registers would be issued: 1, 2, 1.
2312 // 5 registers would be issued: 1, 2, 2.
2313 DefCycle = RegNo / 2;
2314 if (DefCycle < 1)
2315 DefCycle = 1;
2316 // Result latency is issue cycle + 2: E2.
2317 DefCycle += 2;
2318 } else if (Subtarget.isCortexA9()) {
2319 DefCycle = (RegNo / 2);
2320 // If there are odd number of registers or if it's not 64-bit aligned,
2321 // then it takes an extra AGU (Address Generation Unit) cycle.
2322 if ((RegNo % 2) || DefAlign < 8)
2323 ++DefCycle;
2324 // Result latency is AGU cycles + 2.
2325 DefCycle += 2;
2326 } else {
2327 // Assume the worst.
2328 DefCycle = RegNo + 2;
2329 }
2330
2331 return DefCycle;
2332}
2333
2334int
2335ARMBaseInstrInfo::getVSTMUseCycle(const InstrItineraryData *ItinData,
Evan Chenge837dea2011-06-28 19:10:37 +00002336 const MCInstrDesc &UseMCID,
Evan Cheng344d9db2010-10-07 23:12:15 +00002337 unsigned UseClass,
2338 unsigned UseIdx, unsigned UseAlign) const {
Evan Chenge837dea2011-06-28 19:10:37 +00002339 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
Evan Cheng344d9db2010-10-07 23:12:15 +00002340 if (RegNo <= 0)
2341 return ItinData->getOperandCycle(UseClass, UseIdx);
2342
2343 int UseCycle;
2344 if (Subtarget.isCortexA8()) {
2345 // (regno / 2) + (regno % 2) + 1
2346 UseCycle = RegNo / 2 + 1;
2347 if (RegNo % 2)
2348 ++UseCycle;
2349 } else if (Subtarget.isCortexA9()) {
2350 UseCycle = RegNo;
2351 bool isSStore = false;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002352
Evan Chenge837dea2011-06-28 19:10:37 +00002353 switch (UseMCID.getOpcode()) {
Evan Cheng344d9db2010-10-07 23:12:15 +00002354 default: break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002355 case ARM::VSTMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002356 case ARM::VSTMSIA_UPD:
2357 case ARM::VSTMSDB_UPD:
Evan Cheng344d9db2010-10-07 23:12:15 +00002358 isSStore = true;
2359 break;
2360 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00002361
Evan Cheng344d9db2010-10-07 23:12:15 +00002362 // If there are odd number of 'S' registers or if it's not 64-bit aligned,
2363 // then it takes an extra cycle.
2364 if ((isSStore && (RegNo % 2)) || UseAlign < 8)
2365 ++UseCycle;
2366 } else {
2367 // Assume the worst.
2368 UseCycle = RegNo + 2;
2369 }
2370
2371 return UseCycle;
2372}
2373
2374int
2375ARMBaseInstrInfo::getSTMUseCycle(const InstrItineraryData *ItinData,
Evan Chenge837dea2011-06-28 19:10:37 +00002376 const MCInstrDesc &UseMCID,
Evan Cheng344d9db2010-10-07 23:12:15 +00002377 unsigned UseClass,
2378 unsigned UseIdx, unsigned UseAlign) const {
Evan Chenge837dea2011-06-28 19:10:37 +00002379 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
Evan Cheng344d9db2010-10-07 23:12:15 +00002380 if (RegNo <= 0)
2381 return ItinData->getOperandCycle(UseClass, UseIdx);
2382
2383 int UseCycle;
2384 if (Subtarget.isCortexA8()) {
2385 UseCycle = RegNo / 2;
2386 if (UseCycle < 2)
2387 UseCycle = 2;
2388 // Read in E3.
2389 UseCycle += 2;
2390 } else if (Subtarget.isCortexA9()) {
2391 UseCycle = (RegNo / 2);
2392 // If there are odd number of registers or if it's not 64-bit aligned,
2393 // then it takes an extra AGU (Address Generation Unit) cycle.
2394 if ((RegNo % 2) || UseAlign < 8)
2395 ++UseCycle;
2396 } else {
2397 // Assume the worst.
2398 UseCycle = 1;
2399 }
2400 return UseCycle;
2401}
2402
2403int
Evan Chenga0792de2010-10-06 06:27:31 +00002404ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
Evan Chenge837dea2011-06-28 19:10:37 +00002405 const MCInstrDesc &DefMCID,
Evan Chenga0792de2010-10-06 06:27:31 +00002406 unsigned DefIdx, unsigned DefAlign,
Evan Chenge837dea2011-06-28 19:10:37 +00002407 const MCInstrDesc &UseMCID,
Evan Chenga0792de2010-10-06 06:27:31 +00002408 unsigned UseIdx, unsigned UseAlign) const {
Evan Chenge837dea2011-06-28 19:10:37 +00002409 unsigned DefClass = DefMCID.getSchedClass();
2410 unsigned UseClass = UseMCID.getSchedClass();
Evan Chenga0792de2010-10-06 06:27:31 +00002411
Evan Chenge837dea2011-06-28 19:10:37 +00002412 if (DefIdx < DefMCID.getNumDefs() && UseIdx < UseMCID.getNumOperands())
Evan Chenga0792de2010-10-06 06:27:31 +00002413 return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx);
2414
2415 // This may be a def / use of a variable_ops instruction, the operand
2416 // latency might be determinable dynamically. Let the target try to
2417 // figure it out.
Evan Cheng9e08ee52010-10-28 02:00:25 +00002418 int DefCycle = -1;
Evan Cheng7e2fe912010-10-28 06:47:08 +00002419 bool LdmBypass = false;
Evan Chenge837dea2011-06-28 19:10:37 +00002420 switch (DefMCID.getOpcode()) {
Evan Chenga0792de2010-10-06 06:27:31 +00002421 default:
2422 DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
2423 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002424
2425 case ARM::VLDMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002426 case ARM::VLDMDIA_UPD:
2427 case ARM::VLDMDDB_UPD:
2428 case ARM::VLDMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002429 case ARM::VLDMSIA_UPD:
2430 case ARM::VLDMSDB_UPD:
Evan Chenge837dea2011-06-28 19:10:37 +00002431 DefCycle = getVLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
Evan Cheng5a50cee2010-10-07 01:50:48 +00002432 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002433
2434 case ARM::LDMIA_RET:
2435 case ARM::LDMIA:
2436 case ARM::LDMDA:
2437 case ARM::LDMDB:
2438 case ARM::LDMIB:
2439 case ARM::LDMIA_UPD:
2440 case ARM::LDMDA_UPD:
2441 case ARM::LDMDB_UPD:
2442 case ARM::LDMIB_UPD:
2443 case ARM::tLDMIA:
2444 case ARM::tLDMIA_UPD:
Evan Chenga0792de2010-10-06 06:27:31 +00002445 case ARM::tPUSH:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002446 case ARM::t2LDMIA_RET:
2447 case ARM::t2LDMIA:
2448 case ARM::t2LDMDB:
2449 case ARM::t2LDMIA_UPD:
2450 case ARM::t2LDMDB_UPD:
Evan Chenga0792de2010-10-06 06:27:31 +00002451 LdmBypass = 1;
Evan Chenge837dea2011-06-28 19:10:37 +00002452 DefCycle = getLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
Evan Cheng344d9db2010-10-07 23:12:15 +00002453 break;
Evan Chenga0792de2010-10-06 06:27:31 +00002454 }
Evan Chenga0792de2010-10-06 06:27:31 +00002455
2456 if (DefCycle == -1)
2457 // We can't seem to determine the result latency of the def, assume it's 2.
2458 DefCycle = 2;
2459
2460 int UseCycle = -1;
Evan Chenge837dea2011-06-28 19:10:37 +00002461 switch (UseMCID.getOpcode()) {
Evan Chenga0792de2010-10-06 06:27:31 +00002462 default:
2463 UseCycle = ItinData->getOperandCycle(UseClass, UseIdx);
2464 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002465
2466 case ARM::VSTMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002467 case ARM::VSTMDIA_UPD:
2468 case ARM::VSTMDDB_UPD:
2469 case ARM::VSTMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002470 case ARM::VSTMSIA_UPD:
2471 case ARM::VSTMSDB_UPD:
Evan Chenge837dea2011-06-28 19:10:37 +00002472 UseCycle = getVSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
Evan Cheng5a50cee2010-10-07 01:50:48 +00002473 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002474
2475 case ARM::STMIA:
2476 case ARM::STMDA:
2477 case ARM::STMDB:
2478 case ARM::STMIB:
2479 case ARM::STMIA_UPD:
2480 case ARM::STMDA_UPD:
2481 case ARM::STMDB_UPD:
2482 case ARM::STMIB_UPD:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002483 case ARM::tSTMIA_UPD:
Evan Chenga0792de2010-10-06 06:27:31 +00002484 case ARM::tPOP_RET:
2485 case ARM::tPOP:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002486 case ARM::t2STMIA:
2487 case ARM::t2STMDB:
2488 case ARM::t2STMIA_UPD:
2489 case ARM::t2STMDB_UPD:
Evan Chenge837dea2011-06-28 19:10:37 +00002490 UseCycle = getSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
Evan Cheng5a50cee2010-10-07 01:50:48 +00002491 break;
Evan Chenga0792de2010-10-06 06:27:31 +00002492 }
Evan Chenga0792de2010-10-06 06:27:31 +00002493
2494 if (UseCycle == -1)
2495 // Assume it's read in the first stage.
2496 UseCycle = 1;
2497
2498 UseCycle = DefCycle - UseCycle + 1;
2499 if (UseCycle > 0) {
2500 if (LdmBypass) {
2501 // It's a variable_ops instruction so we can't use DefIdx here. Just use
2502 // first def operand.
Evan Chenge837dea2011-06-28 19:10:37 +00002503 if (ItinData->hasPipelineForwarding(DefClass, DefMCID.getNumOperands()-1,
Evan Chenga0792de2010-10-06 06:27:31 +00002504 UseClass, UseIdx))
2505 --UseCycle;
2506 } else if (ItinData->hasPipelineForwarding(DefClass, DefIdx,
Bill Wendling73fe34a2010-11-16 01:16:36 +00002507 UseClass, UseIdx)) {
Evan Chenga0792de2010-10-06 06:27:31 +00002508 --UseCycle;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002509 }
Evan Chenga0792de2010-10-06 06:27:31 +00002510 }
2511
2512 return UseCycle;
2513}
2514
Evan Chengddfd1372011-12-14 02:11:42 +00002515static const MachineInstr *getBundledDefMI(const TargetRegisterInfo *TRI,
Evan Cheng020f4102011-12-14 20:00:08 +00002516 const MachineInstr *MI, unsigned Reg,
Evan Chengddfd1372011-12-14 02:11:42 +00002517 unsigned &DefIdx, unsigned &Dist) {
2518 Dist = 0;
2519
2520 MachineBasicBlock::const_iterator I = MI; ++I;
2521 MachineBasicBlock::const_instr_iterator II =
2522 llvm::prior(I.getInstrIterator());
2523 assert(II->isInsideBundle() && "Empty bundle?");
2524
2525 int Idx = -1;
Evan Chengddfd1372011-12-14 02:11:42 +00002526 while (II->isInsideBundle()) {
2527 Idx = II->findRegisterDefOperandIdx(Reg, false, true, TRI);
2528 if (Idx != -1)
2529 break;
2530 --II;
2531 ++Dist;
2532 }
2533
2534 assert(Idx != -1 && "Cannot find bundled definition!");
2535 DefIdx = Idx;
2536 return II;
2537}
2538
2539static const MachineInstr *getBundledUseMI(const TargetRegisterInfo *TRI,
Evan Cheng020f4102011-12-14 20:00:08 +00002540 const MachineInstr *MI, unsigned Reg,
Evan Chengddfd1372011-12-14 02:11:42 +00002541 unsigned &UseIdx, unsigned &Dist) {
2542 Dist = 0;
2543
2544 MachineBasicBlock::const_instr_iterator II = MI; ++II;
2545 assert(II->isInsideBundle() && "Empty bundle?");
2546 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
2547
2548 // FIXME: This doesn't properly handle multiple uses.
2549 int Idx = -1;
Evan Chengddfd1372011-12-14 02:11:42 +00002550 while (II != E && II->isInsideBundle()) {
2551 Idx = II->findRegisterUseOperandIdx(Reg, false, TRI);
2552 if (Idx != -1)
2553 break;
2554 if (II->getOpcode() != ARM::t2IT)
2555 ++Dist;
2556 ++II;
2557 }
2558
Evan Cheng020f4102011-12-14 20:00:08 +00002559 if (Idx == -1) {
2560 Dist = 0;
2561 return 0;
2562 }
2563
Evan Chengddfd1372011-12-14 02:11:42 +00002564 UseIdx = Idx;
2565 return II;
2566}
2567
Evan Chenga0792de2010-10-06 06:27:31 +00002568int
2569ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
Andrew Trickb7e02892012-06-05 21:11:27 +00002570 const MachineInstr *DefMI, unsigned DefIdx,
2571 const MachineInstr *UseMI,
2572 unsigned UseIdx) const {
Evan Chenga0792de2010-10-06 06:27:31 +00002573 if (DefMI->isCopyLike() || DefMI->isInsertSubreg() ||
Andrew Trickb7e02892012-06-05 21:11:27 +00002574 DefMI->isRegSequence() || DefMI->isImplicitDef()) {
Evan Chenga0792de2010-10-06 06:27:31 +00002575 return 1;
Andrew Trickb7e02892012-06-05 21:11:27 +00002576 }
Andrew Trickf3770712012-06-07 19:41:58 +00002577 // No operand latency. The caller may fall back to getInstrLatency.
Evan Chenga0792de2010-10-06 06:27:31 +00002578 if (!ItinData || ItinData->isEmpty())
Andrew Trickf3770712012-06-07 19:41:58 +00002579 return -1;
Evan Chenga0792de2010-10-06 06:27:31 +00002580
Evan Chengddfd1372011-12-14 02:11:42 +00002581 const MCInstrDesc *DefMCID = &DefMI->getDesc();
2582 const MCInstrDesc *UseMCID = &UseMI->getDesc();
Evan Chengdd9dd6f2010-10-23 02:04:38 +00002583 const MachineOperand &DefMO = DefMI->getOperand(DefIdx);
Evan Cheng020f4102011-12-14 20:00:08 +00002584 unsigned Reg = DefMO.getReg();
2585 if (Reg == ARM::CPSR) {
Evan Chenge09206d2010-10-29 23:16:55 +00002586 if (DefMI->getOpcode() == ARM::FMSTAT) {
2587 // fpscr -> cpsr stalls over 20 cycles on A8 (and earlier?)
2588 return Subtarget.isCortexA9() ? 1 : 20;
2589 }
2590
Evan Chengdd9dd6f2010-10-23 02:04:38 +00002591 // CPSR set and branch can be paired in the same cycle.
Evan Cheng5a96b3d2011-12-07 07:15:52 +00002592 if (UseMI->isBranch())
Evan Chenge09206d2010-10-29 23:16:55 +00002593 return 0;
Evan Chengddfd1372011-12-14 02:11:42 +00002594
2595 // Otherwise it takes the instruction latency (generally one).
Andrew Tricked7a51e2012-06-07 19:41:55 +00002596 unsigned Latency = getInstrLatency(ItinData, DefMI);
Evan Cheng020f4102011-12-14 20:00:08 +00002597
2598 // For Thumb2 and -Os, prefer scheduling CPSR setting instruction close to
2599 // its uses. Instructions which are otherwise scheduled between them may
2600 // incur a code size penalty (not able to use the CPSR setting 16-bit
2601 // instructions).
2602 if (Latency > 0 && Subtarget.isThumb2()) {
2603 const MachineFunction *MF = DefMI->getParent()->getParent();
2604 if (MF->getFunction()->hasFnAttr(Attribute::OptimizeForSize))
2605 --Latency;
2606 }
Evan Chengddfd1372011-12-14 02:11:42 +00002607 return Latency;
Evan Chenge09206d2010-10-29 23:16:55 +00002608 }
Evan Chengdd9dd6f2010-10-23 02:04:38 +00002609
Evan Chenga0792de2010-10-06 06:27:31 +00002610 unsigned DefAlign = DefMI->hasOneMemOperand()
2611 ? (*DefMI->memoperands_begin())->getAlignment() : 0;
2612 unsigned UseAlign = UseMI->hasOneMemOperand()
2613 ? (*UseMI->memoperands_begin())->getAlignment() : 0;
Evan Chengddfd1372011-12-14 02:11:42 +00002614
2615 unsigned DefAdj = 0;
2616 if (DefMI->isBundle()) {
Evan Cheng020f4102011-12-14 20:00:08 +00002617 DefMI = getBundledDefMI(&getRegisterInfo(), DefMI, Reg, DefIdx, DefAdj);
Evan Chengddfd1372011-12-14 02:11:42 +00002618 if (DefMI->isCopyLike() || DefMI->isInsertSubreg() ||
2619 DefMI->isRegSequence() || DefMI->isImplicitDef())
2620 return 1;
2621 DefMCID = &DefMI->getDesc();
2622 }
2623 unsigned UseAdj = 0;
2624 if (UseMI->isBundle()) {
Evan Cheng020f4102011-12-14 20:00:08 +00002625 unsigned NewUseIdx;
2626 const MachineInstr *NewUseMI = getBundledUseMI(&getRegisterInfo(), UseMI,
2627 Reg, NewUseIdx, UseAdj);
2628 if (NewUseMI) {
2629 UseMI = NewUseMI;
2630 UseIdx = NewUseIdx;
2631 UseMCID = &UseMI->getDesc();
2632 }
Evan Chengddfd1372011-12-14 02:11:42 +00002633 }
2634
2635 int Latency = getOperandLatency(ItinData, *DefMCID, DefIdx, DefAlign,
2636 *UseMCID, UseIdx, UseAlign);
2637 int Adj = DefAdj + UseAdj;
2638 if (Adj) {
2639 Latency -= (int)(DefAdj + UseAdj);
2640 if (Latency < 1)
2641 return 1;
2642 }
Evan Cheng7e2fe912010-10-28 06:47:08 +00002643
2644 if (Latency > 1 &&
2645 (Subtarget.isCortexA8() || Subtarget.isCortexA9())) {
2646 // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
2647 // variants are one cycle cheaper.
Evan Chengddfd1372011-12-14 02:11:42 +00002648 switch (DefMCID->getOpcode()) {
Evan Cheng7e2fe912010-10-28 06:47:08 +00002649 default: break;
2650 case ARM::LDRrs:
2651 case ARM::LDRBrs: {
2652 unsigned ShOpVal = DefMI->getOperand(3).getImm();
2653 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2654 if (ShImm == 0 ||
2655 (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
2656 --Latency;
2657 break;
2658 }
2659 case ARM::t2LDRs:
2660 case ARM::t2LDRBs:
2661 case ARM::t2LDRHs:
2662 case ARM::t2LDRSHs: {
2663 // Thumb2 mode: lsl only.
2664 unsigned ShAmt = DefMI->getOperand(3).getImm();
2665 if (ShAmt == 0 || ShAmt == 2)
2666 --Latency;
2667 break;
2668 }
2669 }
2670 }
2671
Evan Cheng75b41f12011-04-19 01:21:49 +00002672 if (DefAlign < 8 && Subtarget.isCortexA9())
Evan Chengddfd1372011-12-14 02:11:42 +00002673 switch (DefMCID->getOpcode()) {
Evan Cheng75b41f12011-04-19 01:21:49 +00002674 default: break;
2675 case ARM::VLD1q8:
2676 case ARM::VLD1q16:
2677 case ARM::VLD1q32:
2678 case ARM::VLD1q64:
Jim Grosbach10b90a92011-10-24 21:45:13 +00002679 case ARM::VLD1q8wb_fixed:
2680 case ARM::VLD1q16wb_fixed:
2681 case ARM::VLD1q32wb_fixed:
2682 case ARM::VLD1q64wb_fixed:
2683 case ARM::VLD1q8wb_register:
2684 case ARM::VLD1q16wb_register:
2685 case ARM::VLD1q32wb_register:
2686 case ARM::VLD1q64wb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002687 case ARM::VLD2d8:
2688 case ARM::VLD2d16:
2689 case ARM::VLD2d32:
2690 case ARM::VLD2q8:
2691 case ARM::VLD2q16:
2692 case ARM::VLD2q32:
Jim Grosbacha4e3c7f2011-12-09 21:28:25 +00002693 case ARM::VLD2d8wb_fixed:
2694 case ARM::VLD2d16wb_fixed:
2695 case ARM::VLD2d32wb_fixed:
2696 case ARM::VLD2q8wb_fixed:
2697 case ARM::VLD2q16wb_fixed:
2698 case ARM::VLD2q32wb_fixed:
2699 case ARM::VLD2d8wb_register:
2700 case ARM::VLD2d16wb_register:
2701 case ARM::VLD2d32wb_register:
2702 case ARM::VLD2q8wb_register:
2703 case ARM::VLD2q16wb_register:
2704 case ARM::VLD2q32wb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002705 case ARM::VLD3d8:
2706 case ARM::VLD3d16:
2707 case ARM::VLD3d32:
2708 case ARM::VLD1d64T:
2709 case ARM::VLD3d8_UPD:
2710 case ARM::VLD3d16_UPD:
2711 case ARM::VLD3d32_UPD:
Jim Grosbach59216752011-10-24 23:26:05 +00002712 case ARM::VLD1d64Twb_fixed:
2713 case ARM::VLD1d64Twb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002714 case ARM::VLD3q8_UPD:
2715 case ARM::VLD3q16_UPD:
2716 case ARM::VLD3q32_UPD:
2717 case ARM::VLD4d8:
2718 case ARM::VLD4d16:
2719 case ARM::VLD4d32:
2720 case ARM::VLD1d64Q:
2721 case ARM::VLD4d8_UPD:
2722 case ARM::VLD4d16_UPD:
2723 case ARM::VLD4d32_UPD:
Jim Grosbach399cdca2011-10-25 00:14:01 +00002724 case ARM::VLD1d64Qwb_fixed:
2725 case ARM::VLD1d64Qwb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002726 case ARM::VLD4q8_UPD:
2727 case ARM::VLD4q16_UPD:
2728 case ARM::VLD4q32_UPD:
2729 case ARM::VLD1DUPq8:
2730 case ARM::VLD1DUPq16:
2731 case ARM::VLD1DUPq32:
Jim Grosbach096334e2011-11-30 19:35:44 +00002732 case ARM::VLD1DUPq8wb_fixed:
2733 case ARM::VLD1DUPq16wb_fixed:
2734 case ARM::VLD1DUPq32wb_fixed:
2735 case ARM::VLD1DUPq8wb_register:
2736 case ARM::VLD1DUPq16wb_register:
2737 case ARM::VLD1DUPq32wb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002738 case ARM::VLD2DUPd8:
2739 case ARM::VLD2DUPd16:
2740 case ARM::VLD2DUPd32:
Jim Grosbache6949b12011-12-21 19:40:55 +00002741 case ARM::VLD2DUPd8wb_fixed:
2742 case ARM::VLD2DUPd16wb_fixed:
2743 case ARM::VLD2DUPd32wb_fixed:
2744 case ARM::VLD2DUPd8wb_register:
2745 case ARM::VLD2DUPd16wb_register:
2746 case ARM::VLD2DUPd32wb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002747 case ARM::VLD4DUPd8:
2748 case ARM::VLD4DUPd16:
2749 case ARM::VLD4DUPd32:
2750 case ARM::VLD4DUPd8_UPD:
2751 case ARM::VLD4DUPd16_UPD:
2752 case ARM::VLD4DUPd32_UPD:
2753 case ARM::VLD1LNd8:
2754 case ARM::VLD1LNd16:
2755 case ARM::VLD1LNd32:
2756 case ARM::VLD1LNd8_UPD:
2757 case ARM::VLD1LNd16_UPD:
2758 case ARM::VLD1LNd32_UPD:
2759 case ARM::VLD2LNd8:
2760 case ARM::VLD2LNd16:
2761 case ARM::VLD2LNd32:
2762 case ARM::VLD2LNq16:
2763 case ARM::VLD2LNq32:
2764 case ARM::VLD2LNd8_UPD:
2765 case ARM::VLD2LNd16_UPD:
2766 case ARM::VLD2LNd32_UPD:
2767 case ARM::VLD2LNq16_UPD:
2768 case ARM::VLD2LNq32_UPD:
2769 case ARM::VLD4LNd8:
2770 case ARM::VLD4LNd16:
2771 case ARM::VLD4LNd32:
2772 case ARM::VLD4LNq16:
2773 case ARM::VLD4LNq32:
2774 case ARM::VLD4LNd8_UPD:
2775 case ARM::VLD4LNd16_UPD:
2776 case ARM::VLD4LNd32_UPD:
2777 case ARM::VLD4LNq16_UPD:
2778 case ARM::VLD4LNq32_UPD:
2779 // If the address is not 64-bit aligned, the latencies of these
2780 // instructions increases by one.
2781 ++Latency;
2782 break;
2783 }
2784
Evan Cheng7e2fe912010-10-28 06:47:08 +00002785 return Latency;
Evan Chenga0792de2010-10-06 06:27:31 +00002786}
2787
2788int
2789ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
2790 SDNode *DefNode, unsigned DefIdx,
2791 SDNode *UseNode, unsigned UseIdx) const {
2792 if (!DefNode->isMachineOpcode())
2793 return 1;
2794
Evan Chenge837dea2011-06-28 19:10:37 +00002795 const MCInstrDesc &DefMCID = get(DefNode->getMachineOpcode());
Andrew Trickc8bfd1d2011-01-21 05:51:33 +00002796
Evan Chenge837dea2011-06-28 19:10:37 +00002797 if (isZeroCost(DefMCID.Opcode))
Andrew Trickc8bfd1d2011-01-21 05:51:33 +00002798 return 0;
2799
Evan Chenga0792de2010-10-06 06:27:31 +00002800 if (!ItinData || ItinData->isEmpty())
Evan Chenge837dea2011-06-28 19:10:37 +00002801 return DefMCID.mayLoad() ? 3 : 1;
Evan Chenga0792de2010-10-06 06:27:31 +00002802
Evan Cheng08975152010-10-29 18:09:28 +00002803 if (!UseNode->isMachineOpcode()) {
Evan Chenge837dea2011-06-28 19:10:37 +00002804 int Latency = ItinData->getOperandCycle(DefMCID.getSchedClass(), DefIdx);
Evan Cheng08975152010-10-29 18:09:28 +00002805 if (Subtarget.isCortexA9())
2806 return Latency <= 2 ? 1 : Latency - 1;
2807 else
2808 return Latency <= 3 ? 1 : Latency - 2;
2809 }
Evan Chenga0792de2010-10-06 06:27:31 +00002810
Evan Chenge837dea2011-06-28 19:10:37 +00002811 const MCInstrDesc &UseMCID = get(UseNode->getMachineOpcode());
Evan Chenga0792de2010-10-06 06:27:31 +00002812 const MachineSDNode *DefMN = dyn_cast<MachineSDNode>(DefNode);
2813 unsigned DefAlign = !DefMN->memoperands_empty()
2814 ? (*DefMN->memoperands_begin())->getAlignment() : 0;
2815 const MachineSDNode *UseMN = dyn_cast<MachineSDNode>(UseNode);
2816 unsigned UseAlign = !UseMN->memoperands_empty()
2817 ? (*UseMN->memoperands_begin())->getAlignment() : 0;
Evan Chenge837dea2011-06-28 19:10:37 +00002818 int Latency = getOperandLatency(ItinData, DefMCID, DefIdx, DefAlign,
2819 UseMCID, UseIdx, UseAlign);
Evan Cheng7e2fe912010-10-28 06:47:08 +00002820
2821 if (Latency > 1 &&
2822 (Subtarget.isCortexA8() || Subtarget.isCortexA9())) {
2823 // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
2824 // variants are one cycle cheaper.
Evan Chenge837dea2011-06-28 19:10:37 +00002825 switch (DefMCID.getOpcode()) {
Evan Cheng7e2fe912010-10-28 06:47:08 +00002826 default: break;
2827 case ARM::LDRrs:
2828 case ARM::LDRBrs: {
2829 unsigned ShOpVal =
2830 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
2831 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2832 if (ShImm == 0 ||
2833 (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
2834 --Latency;
2835 break;
2836 }
2837 case ARM::t2LDRs:
2838 case ARM::t2LDRBs:
2839 case ARM::t2LDRHs:
2840 case ARM::t2LDRSHs: {
2841 // Thumb2 mode: lsl only.
2842 unsigned ShAmt =
2843 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
2844 if (ShAmt == 0 || ShAmt == 2)
2845 --Latency;
2846 break;
2847 }
2848 }
2849 }
2850
Evan Cheng75b41f12011-04-19 01:21:49 +00002851 if (DefAlign < 8 && Subtarget.isCortexA9())
Evan Chenge837dea2011-06-28 19:10:37 +00002852 switch (DefMCID.getOpcode()) {
Evan Cheng75b41f12011-04-19 01:21:49 +00002853 default: break;
Jim Grosbach28f08c92012-03-05 19:33:30 +00002854 case ARM::VLD1q8:
2855 case ARM::VLD1q16:
2856 case ARM::VLD1q32:
2857 case ARM::VLD1q64:
2858 case ARM::VLD1q8wb_register:
2859 case ARM::VLD1q16wb_register:
2860 case ARM::VLD1q32wb_register:
2861 case ARM::VLD1q64wb_register:
2862 case ARM::VLD1q8wb_fixed:
2863 case ARM::VLD1q16wb_fixed:
2864 case ARM::VLD1q32wb_fixed:
2865 case ARM::VLD1q64wb_fixed:
2866 case ARM::VLD2d8:
2867 case ARM::VLD2d16:
2868 case ARM::VLD2d32:
Evan Cheng75b41f12011-04-19 01:21:49 +00002869 case ARM::VLD2q8Pseudo:
2870 case ARM::VLD2q16Pseudo:
2871 case ARM::VLD2q32Pseudo:
Jim Grosbach28f08c92012-03-05 19:33:30 +00002872 case ARM::VLD2d8wb_fixed:
2873 case ARM::VLD2d16wb_fixed:
2874 case ARM::VLD2d32wb_fixed:
Jim Grosbacha4e3c7f2011-12-09 21:28:25 +00002875 case ARM::VLD2q8PseudoWB_fixed:
2876 case ARM::VLD2q16PseudoWB_fixed:
2877 case ARM::VLD2q32PseudoWB_fixed:
Jim Grosbach28f08c92012-03-05 19:33:30 +00002878 case ARM::VLD2d8wb_register:
2879 case ARM::VLD2d16wb_register:
2880 case ARM::VLD2d32wb_register:
Jim Grosbacha4e3c7f2011-12-09 21:28:25 +00002881 case ARM::VLD2q8PseudoWB_register:
2882 case ARM::VLD2q16PseudoWB_register:
2883 case ARM::VLD2q32PseudoWB_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002884 case ARM::VLD3d8Pseudo:
2885 case ARM::VLD3d16Pseudo:
2886 case ARM::VLD3d32Pseudo:
2887 case ARM::VLD1d64TPseudo:
2888 case ARM::VLD3d8Pseudo_UPD:
2889 case ARM::VLD3d16Pseudo_UPD:
2890 case ARM::VLD3d32Pseudo_UPD:
Evan Cheng75b41f12011-04-19 01:21:49 +00002891 case ARM::VLD3q8Pseudo_UPD:
2892 case ARM::VLD3q16Pseudo_UPD:
2893 case ARM::VLD3q32Pseudo_UPD:
2894 case ARM::VLD3q8oddPseudo:
2895 case ARM::VLD3q16oddPseudo:
2896 case ARM::VLD3q32oddPseudo:
2897 case ARM::VLD3q8oddPseudo_UPD:
2898 case ARM::VLD3q16oddPseudo_UPD:
2899 case ARM::VLD3q32oddPseudo_UPD:
2900 case ARM::VLD4d8Pseudo:
2901 case ARM::VLD4d16Pseudo:
2902 case ARM::VLD4d32Pseudo:
2903 case ARM::VLD1d64QPseudo:
2904 case ARM::VLD4d8Pseudo_UPD:
2905 case ARM::VLD4d16Pseudo_UPD:
2906 case ARM::VLD4d32Pseudo_UPD:
Evan Cheng75b41f12011-04-19 01:21:49 +00002907 case ARM::VLD4q8Pseudo_UPD:
2908 case ARM::VLD4q16Pseudo_UPD:
2909 case ARM::VLD4q32Pseudo_UPD:
2910 case ARM::VLD4q8oddPseudo:
2911 case ARM::VLD4q16oddPseudo:
2912 case ARM::VLD4q32oddPseudo:
2913 case ARM::VLD4q8oddPseudo_UPD:
2914 case ARM::VLD4q16oddPseudo_UPD:
2915 case ARM::VLD4q32oddPseudo_UPD:
Jim Grosbachc0fc4502012-03-06 22:01:44 +00002916 case ARM::VLD1DUPq8:
2917 case ARM::VLD1DUPq16:
2918 case ARM::VLD1DUPq32:
2919 case ARM::VLD1DUPq8wb_fixed:
2920 case ARM::VLD1DUPq16wb_fixed:
2921 case ARM::VLD1DUPq32wb_fixed:
2922 case ARM::VLD1DUPq8wb_register:
2923 case ARM::VLD1DUPq16wb_register:
2924 case ARM::VLD1DUPq32wb_register:
2925 case ARM::VLD2DUPd8:
2926 case ARM::VLD2DUPd16:
2927 case ARM::VLD2DUPd32:
2928 case ARM::VLD2DUPd8wb_fixed:
2929 case ARM::VLD2DUPd16wb_fixed:
2930 case ARM::VLD2DUPd32wb_fixed:
2931 case ARM::VLD2DUPd8wb_register:
2932 case ARM::VLD2DUPd16wb_register:
2933 case ARM::VLD2DUPd32wb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002934 case ARM::VLD4DUPd8Pseudo:
2935 case ARM::VLD4DUPd16Pseudo:
2936 case ARM::VLD4DUPd32Pseudo:
2937 case ARM::VLD4DUPd8Pseudo_UPD:
2938 case ARM::VLD4DUPd16Pseudo_UPD:
2939 case ARM::VLD4DUPd32Pseudo_UPD:
2940 case ARM::VLD1LNq8Pseudo:
2941 case ARM::VLD1LNq16Pseudo:
2942 case ARM::VLD1LNq32Pseudo:
2943 case ARM::VLD1LNq8Pseudo_UPD:
2944 case ARM::VLD1LNq16Pseudo_UPD:
2945 case ARM::VLD1LNq32Pseudo_UPD:
2946 case ARM::VLD2LNd8Pseudo:
2947 case ARM::VLD2LNd16Pseudo:
2948 case ARM::VLD2LNd32Pseudo:
2949 case ARM::VLD2LNq16Pseudo:
2950 case ARM::VLD2LNq32Pseudo:
2951 case ARM::VLD2LNd8Pseudo_UPD:
2952 case ARM::VLD2LNd16Pseudo_UPD:
2953 case ARM::VLD2LNd32Pseudo_UPD:
2954 case ARM::VLD2LNq16Pseudo_UPD:
2955 case ARM::VLD2LNq32Pseudo_UPD:
2956 case ARM::VLD4LNd8Pseudo:
2957 case ARM::VLD4LNd16Pseudo:
2958 case ARM::VLD4LNd32Pseudo:
2959 case ARM::VLD4LNq16Pseudo:
2960 case ARM::VLD4LNq32Pseudo:
2961 case ARM::VLD4LNd8Pseudo_UPD:
2962 case ARM::VLD4LNd16Pseudo_UPD:
2963 case ARM::VLD4LNd32Pseudo_UPD:
2964 case ARM::VLD4LNq16Pseudo_UPD:
2965 case ARM::VLD4LNq32Pseudo_UPD:
2966 // If the address is not 64-bit aligned, the latencies of these
2967 // instructions increases by one.
2968 ++Latency;
2969 break;
2970 }
2971
Evan Cheng7e2fe912010-10-28 06:47:08 +00002972 return Latency;
Evan Chenga0792de2010-10-06 06:27:31 +00002973}
Evan Cheng23128422010-10-19 18:58:51 +00002974
Evan Cheng020f4102011-12-14 20:00:08 +00002975unsigned
2976ARMBaseInstrInfo::getOutputLatency(const InstrItineraryData *ItinData,
2977 const MachineInstr *DefMI, unsigned DefIdx,
2978 const MachineInstr *DepMI) const {
2979 unsigned Reg = DefMI->getOperand(DefIdx).getReg();
2980 if (DepMI->readsRegister(Reg, &getRegisterInfo()) || !isPredicated(DepMI))
2981 return 1;
2982
2983 // If the second MI is predicated, then there is an implicit use dependency.
2984 return getOperandLatency(ItinData, DefMI, DefIdx, DepMI,
2985 DepMI->getNumOperands());
2986}
2987
Andrew Trickb7e02892012-06-05 21:11:27 +00002988unsigned ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
2989 const MachineInstr *MI,
2990 unsigned *PredCost) const {
Evan Cheng8239daf2010-11-03 00:45:17 +00002991 if (MI->isCopyLike() || MI->isInsertSubreg() ||
2992 MI->isRegSequence() || MI->isImplicitDef())
2993 return 1;
2994
Andrew Tricked7a51e2012-06-07 19:41:55 +00002995 // An instruction scheduler typically runs on unbundled instructions, however
2996 // other passes may query the latency of a bundled instruction.
Evan Chengddfd1372011-12-14 02:11:42 +00002997 if (MI->isBundle()) {
Andrew Tricked7a51e2012-06-07 19:41:55 +00002998 unsigned Latency = 0;
Evan Chengddfd1372011-12-14 02:11:42 +00002999 MachineBasicBlock::const_instr_iterator I = MI;
3000 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
3001 while (++I != E && I->isInsideBundle()) {
3002 if (I->getOpcode() != ARM::t2IT)
3003 Latency += getInstrLatency(ItinData, I, PredCost);
3004 }
3005 return Latency;
3006 }
3007
Evan Chenge837dea2011-06-28 19:10:37 +00003008 const MCInstrDesc &MCID = MI->getDesc();
Andrew Tricked7a51e2012-06-07 19:41:55 +00003009 if (PredCost && (MCID.isCall() || MCID.hasImplicitDefOfPhysReg(ARM::CPSR))) {
Evan Cheng8239daf2010-11-03 00:45:17 +00003010 // When predicated, CPSR is an additional source operand for CPSR updating
3011 // instructions, this apparently increases their latencies.
3012 *PredCost = 1;
Andrew Tricked7a51e2012-06-07 19:41:55 +00003013 }
3014 // Be sure to call getStageLatency for an empty itinerary in case it has a
3015 // valid MinLatency property.
3016 if (!ItinData)
3017 return MI->mayLoad() ? 3 : 1;
3018
3019 unsigned Class = MCID.getSchedClass();
3020
3021 // For instructions with variable uops, use uops as latency.
3022 if (!ItinData->isEmpty() && !ItinData->Itineraries[Class].NumMicroOps) {
3023 return getNumMicroOps(ItinData, MI);
3024 }
3025 // For the common case, fall back on the itinerary's latency.
3026 return ItinData->getStageLatency(Class);
Evan Cheng8239daf2010-11-03 00:45:17 +00003027}
3028
3029int ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
3030 SDNode *Node) const {
3031 if (!Node->isMachineOpcode())
3032 return 1;
3033
3034 if (!ItinData || ItinData->isEmpty())
3035 return 1;
3036
3037 unsigned Opcode = Node->getMachineOpcode();
3038 switch (Opcode) {
3039 default:
3040 return ItinData->getStageLatency(get(Opcode).getSchedClass());
Bill Wendling73fe34a2010-11-16 01:16:36 +00003041 case ARM::VLDMQIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00003042 case ARM::VSTMQIA:
Evan Cheng8239daf2010-11-03 00:45:17 +00003043 return 2;
Eric Christopher8b3ca622010-11-18 19:40:05 +00003044 }
Evan Cheng8239daf2010-11-03 00:45:17 +00003045}
3046
Evan Cheng23128422010-10-19 18:58:51 +00003047bool ARMBaseInstrInfo::
3048hasHighOperandLatency(const InstrItineraryData *ItinData,
3049 const MachineRegisterInfo *MRI,
3050 const MachineInstr *DefMI, unsigned DefIdx,
3051 const MachineInstr *UseMI, unsigned UseIdx) const {
3052 unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
3053 unsigned UDomain = UseMI->getDesc().TSFlags & ARMII::DomainMask;
3054 if (Subtarget.isCortexA8() &&
3055 (DDomain == ARMII::DomainVFP || UDomain == ARMII::DomainVFP))
3056 // CortexA8 VFP instructions are not pipelined.
3057 return true;
3058
3059 // Hoist VFP / NEON instructions with 4 or higher latency.
3060 int Latency = getOperandLatency(ItinData, DefMI, DefIdx, UseMI, UseIdx);
Andrew Trickf3770712012-06-07 19:41:58 +00003061 if (Latency < 0)
3062 Latency = getInstrLatency(ItinData, DefMI);
Evan Cheng23128422010-10-19 18:58:51 +00003063 if (Latency <= 3)
3064 return false;
3065 return DDomain == ARMII::DomainVFP || DDomain == ARMII::DomainNEON ||
3066 UDomain == ARMII::DomainVFP || UDomain == ARMII::DomainNEON;
3067}
Evan Chengc8141df2010-10-26 02:08:50 +00003068
3069bool ARMBaseInstrInfo::
3070hasLowDefLatency(const InstrItineraryData *ItinData,
3071 const MachineInstr *DefMI, unsigned DefIdx) const {
3072 if (!ItinData || ItinData->isEmpty())
3073 return false;
3074
3075 unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
3076 if (DDomain == ARMII::DomainGeneral) {
3077 unsigned DefClass = DefMI->getDesc().getSchedClass();
3078 int DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
3079 return (DefCycle != -1 && DefCycle <= 2);
3080 }
3081 return false;
3082}
Evan Cheng48575f62010-12-05 22:04:16 +00003083
Andrew Trick3be654f2011-09-21 02:20:46 +00003084bool ARMBaseInstrInfo::verifyInstruction(const MachineInstr *MI,
3085 StringRef &ErrInfo) const {
3086 if (convertAddSubFlagsOpcode(MI->getOpcode())) {
3087 ErrInfo = "Pseudo flag setting opcodes only exist in Selection DAG";
3088 return false;
3089 }
3090 return true;
3091}
3092
Evan Cheng48575f62010-12-05 22:04:16 +00003093bool
3094ARMBaseInstrInfo::isFpMLxInstruction(unsigned Opcode, unsigned &MulOpc,
3095 unsigned &AddSubOpc,
3096 bool &NegAcc, bool &HasLane) const {
3097 DenseMap<unsigned, unsigned>::const_iterator I = MLxEntryMap.find(Opcode);
3098 if (I == MLxEntryMap.end())
3099 return false;
3100
3101 const ARM_MLxEntry &Entry = ARM_MLxTable[I->second];
3102 MulOpc = Entry.MulOpc;
3103 AddSubOpc = Entry.AddSubOpc;
3104 NegAcc = Entry.NegAcc;
3105 HasLane = Entry.HasLane;
3106 return true;
3107}
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003108
3109//===----------------------------------------------------------------------===//
3110// Execution domains.
3111//===----------------------------------------------------------------------===//
3112//
3113// Some instructions go down the NEON pipeline, some go down the VFP pipeline,
3114// and some can go down both. The vmov instructions go down the VFP pipeline,
3115// but they can be changed to vorr equivalents that are executed by the NEON
3116// pipeline.
3117//
3118// We use the following execution domain numbering:
3119//
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003120enum ARMExeDomain {
3121 ExeGeneric = 0,
3122 ExeVFP = 1,
3123 ExeNEON = 2
3124};
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003125//
3126// Also see ARMInstrFormats.td and Domain* enums in ARMBaseInfo.h
3127//
3128std::pair<uint16_t, uint16_t>
3129ARMBaseInstrInfo::getExecutionDomain(const MachineInstr *MI) const {
3130 // VMOVD is a VFP instruction, but can be changed to NEON if it isn't
3131 // predicated.
3132 if (MI->getOpcode() == ARM::VMOVD && !isPredicated(MI))
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003133 return std::make_pair(ExeVFP, (1<<ExeVFP) | (1<<ExeNEON));
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003134
3135 // No other instructions can be swizzled, so just determine their domain.
3136 unsigned Domain = MI->getDesc().TSFlags & ARMII::DomainMask;
3137
3138 if (Domain & ARMII::DomainNEON)
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003139 return std::make_pair(ExeNEON, 0);
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003140
3141 // Certain instructions can go either way on Cortex-A8.
3142 // Treat them as NEON instructions.
3143 if ((Domain & ARMII::DomainNEONA8) && Subtarget.isCortexA8())
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003144 return std::make_pair(ExeNEON, 0);
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003145
3146 if (Domain & ARMII::DomainVFP)
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003147 return std::make_pair(ExeVFP, 0);
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003148
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003149 return std::make_pair(ExeGeneric, 0);
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003150}
3151
3152void
3153ARMBaseInstrInfo::setExecutionDomain(MachineInstr *MI, unsigned Domain) const {
3154 // We only know how to change VMOVD into VORR.
3155 assert(MI->getOpcode() == ARM::VMOVD && "Can only swizzle VMOVD");
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003156 if (Domain != ExeNEON)
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003157 return;
3158
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003159 // Zap the predicate operands.
3160 assert(!isPredicated(MI) && "Cannot predicate a VORRd");
3161 MI->RemoveOperand(3);
3162 MI->RemoveOperand(2);
3163
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003164 // Change to a VORRd which requires two identical use operands.
3165 MI->setDesc(get(ARM::VORRd));
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003166
3167 // Add the extra source operand and new predicates.
3168 // This will go before any implicit ops.
Jakob Stoklund Olesen1c062c22011-10-12 00:06:23 +00003169 AddDefaultPred(MachineInstrBuilder(MI).addOperand(MI->getOperand(1)));
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003170}
Jim Grosbachc01810e2012-02-28 23:53:30 +00003171
3172bool ARMBaseInstrInfo::hasNOP() const {
3173 return (Subtarget.getFeatureBits() & ARM::HasV6T2Ops) != 0;
3174}