blob: ad1447503fd2e1767d732c567646e896b7eb56c8 [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- ARMBaseInstrInfo.cpp - ARM Instruction Information ----------------===//
David Goodwinaf7451b2009-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 Topper5fa0caa2012-03-26 00:45:15 +000016#include "ARMBaseRegisterInfo.h"
Evan Chenga8e8a7c2009-11-07 04:04:34 +000017#include "ARMConstantPoolValue.h"
Evan Cheng62c7b5b2010-12-05 22:04:16 +000018#include "ARMHazardRecognizer.h"
David Goodwinaf7451b2009-07-08 16:09:28 +000019#include "ARMMachineFunctionInfo.h"
Evan Chenga20cde32011-07-20 23:34:39 +000020#include "MCTargetDesc/ARMAddressingModes.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/ADT/STLExtras.h"
David Goodwinaf7451b2009-07-08 16:09:28 +000022#include "llvm/CodeGen/LiveVariables.h"
Evan Chenga8e8a7c2009-11-07 04:04:34 +000023#include "llvm/CodeGen/MachineConstantPool.h"
David Goodwinaf7451b2009-07-08 16:09:28 +000024#include "llvm/CodeGen/MachineFrameInfo.h"
25#include "llvm/CodeGen/MachineInstrBuilder.h"
26#include "llvm/CodeGen/MachineJumpTableInfo.h"
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +000027#include "llvm/CodeGen/MachineMemOperand.h"
Evan Cheng168ced92010-05-22 01:47:14 +000028#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Chenga20cde32011-07-20 23:34:39 +000029#include "llvm/CodeGen/SelectionDAGNodes.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/Constants.h"
31#include "llvm/IR/Function.h"
32#include "llvm/IR/GlobalValue.h"
Chris Lattner7b26fce2009-08-22 20:48:53 +000033#include "llvm/MC/MCAsmInfo.h"
Jakub Staszak9b07c0a2011-07-10 02:58:07 +000034#include "llvm/Support/BranchProbability.h"
David Goodwinaf7451b2009-07-08 16:09:28 +000035#include "llvm/Support/CommandLine.h"
Anton Korobeynikov14635da2009-11-02 00:10:38 +000036#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000037#include "llvm/Support/ErrorHandling.h"
Evan Cheng1e210d02011-06-28 20:07:07 +000038
Evan Cheng703a0fb2011-07-01 17:57:27 +000039#define GET_INSTRINFO_CTOR
Evan Cheng1e210d02011-06-28 20:07:07 +000040#include "ARMGenInstrInfo.inc"
41
David Goodwinaf7451b2009-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 Olesencd893392011-08-31 17:00:02 +000048static cl::opt<bool>
Jakob Stoklund Olesen653183f2011-11-15 23:53:18 +000049WidenVMOVS("widen-vmovs", cl::Hidden, cl::init(true),
Jakob Stoklund Olesencd893392011-08-31 17:00:02 +000050 cl::desc("Widen ARM vmovs to vmovd when possible"));
51
Bob Wilsone8a549c2012-09-29 21:43:49 +000052static cl::opt<unsigned>
53SwiftPartialUpdateClearance("swift-partial-update-clearance",
54 cl::Hidden, cl::init(12),
55 cl::desc("Clearance before partial register updates"));
56
Evan Cheng62c7b5b2010-12-05 22:04:16 +000057/// ARM_MLxEntry - Record information about MLA / MLS instructions.
58struct ARM_MLxEntry {
Craig Topper2fbd1302012-05-24 03:59:11 +000059 uint16_t MLxOpc; // MLA / MLS opcode
60 uint16_t MulOpc; // Expanded multiplication opcode
61 uint16_t AddSubOpc; // Expanded add / sub opcode
Evan Cheng62c7b5b2010-12-05 22:04:16 +000062 bool NegAcc; // True if the acc is negated before the add / sub.
63 bool HasLane; // True if instruction has an extra "lane" operand.
64};
65
66static const ARM_MLxEntry ARM_MLxTable[] = {
67 // MLxOpc, MulOpc, AddSubOpc, NegAcc, HasLane
68 // fp scalar ops
69 { ARM::VMLAS, ARM::VMULS, ARM::VADDS, false, false },
70 { ARM::VMLSS, ARM::VMULS, ARM::VSUBS, false, false },
71 { ARM::VMLAD, ARM::VMULD, ARM::VADDD, false, false },
72 { ARM::VMLSD, ARM::VMULD, ARM::VSUBD, false, false },
Evan Cheng62c7b5b2010-12-05 22:04:16 +000073 { ARM::VNMLAS, ARM::VNMULS, ARM::VSUBS, true, false },
74 { ARM::VNMLSS, ARM::VMULS, ARM::VSUBS, true, false },
75 { ARM::VNMLAD, ARM::VNMULD, ARM::VSUBD, true, false },
76 { ARM::VNMLSD, ARM::VMULD, ARM::VSUBD, true, false },
77
78 // fp SIMD ops
79 { ARM::VMLAfd, ARM::VMULfd, ARM::VADDfd, false, false },
80 { ARM::VMLSfd, ARM::VMULfd, ARM::VSUBfd, false, false },
81 { ARM::VMLAfq, ARM::VMULfq, ARM::VADDfq, false, false },
82 { ARM::VMLSfq, ARM::VMULfq, ARM::VSUBfq, false, false },
83 { ARM::VMLAslfd, ARM::VMULslfd, ARM::VADDfd, false, true },
84 { ARM::VMLSslfd, ARM::VMULslfd, ARM::VSUBfd, false, true },
85 { ARM::VMLAslfq, ARM::VMULslfq, ARM::VADDfq, false, true },
86 { ARM::VMLSslfq, ARM::VMULslfq, ARM::VSUBfq, false, true },
87};
88
Anton Korobeynikov14635da2009-11-02 00:10:38 +000089ARMBaseInstrInfo::ARMBaseInstrInfo(const ARMSubtarget& STI)
Evan Cheng703a0fb2011-07-01 17:57:27 +000090 : ARMGenInstrInfo(ARM::ADJCALLSTACKDOWN, ARM::ADJCALLSTACKUP),
Anton Korobeynikov14635da2009-11-02 00:10:38 +000091 Subtarget(STI) {
Evan Cheng62c7b5b2010-12-05 22:04:16 +000092 for (unsigned i = 0, e = array_lengthof(ARM_MLxTable); i != e; ++i) {
93 if (!MLxEntryMap.insert(std::make_pair(ARM_MLxTable[i].MLxOpc, i)).second)
94 assert(false && "Duplicated entries?");
95 MLxHazardOpcodes.insert(ARM_MLxTable[i].AddSubOpc);
96 MLxHazardOpcodes.insert(ARM_MLxTable[i].MulOpc);
97 }
98}
99
Andrew Trick10ffc2b2010-12-24 05:03:26 +0000100// Use a ScoreboardHazardRecognizer for prepass ARM scheduling. TargetInstrImpl
101// currently defaults to no prepass hazard recognizer.
Evan Cheng62c7b5b2010-12-05 22:04:16 +0000102ScheduleHazardRecognizer *ARMBaseInstrInfo::
Andrew Trick10ffc2b2010-12-24 05:03:26 +0000103CreateTargetHazardRecognizer(const TargetMachine *TM,
104 const ScheduleDAG *DAG) const {
Andrew Trick47ff14b2011-01-21 05:51:33 +0000105 if (usePreRAHazardRecognizer()) {
Andrew Trick10ffc2b2010-12-24 05:03:26 +0000106 const InstrItineraryData *II = TM->getInstrItineraryData();
107 return new ScoreboardHazardRecognizer(II, DAG, "pre-RA-sched");
108 }
Jakob Stoklund Olesen9de596e2012-11-28 02:35:17 +0000109 return TargetInstrInfo::CreateTargetHazardRecognizer(TM, DAG);
Andrew Trick10ffc2b2010-12-24 05:03:26 +0000110}
111
112ScheduleHazardRecognizer *ARMBaseInstrInfo::
113CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
114 const ScheduleDAG *DAG) const {
Evan Cheng62c7b5b2010-12-05 22:04:16 +0000115 if (Subtarget.isThumb2() || Subtarget.hasVFP2())
Bill Wendlingf95178e2013-06-07 05:54:19 +0000116 return (ScheduleHazardRecognizer *)new ARMHazardRecognizer(II, DAG);
Jakob Stoklund Olesen9de596e2012-11-28 02:35:17 +0000117 return TargetInstrInfo::CreateTargetPostRAHazardRecognizer(II, DAG);
David Goodwinaf7451b2009-07-08 16:09:28 +0000118}
119
120MachineInstr *
121ARMBaseInstrInfo::convertToThreeAddress(MachineFunction::iterator &MFI,
122 MachineBasicBlock::iterator &MBBI,
123 LiveVariables *LV) const {
Evan Cheng0e075e22009-07-27 18:44:00 +0000124 // FIXME: Thumb2 support.
125
David Goodwinaf7451b2009-07-08 16:09:28 +0000126 if (!EnableARM3Addr)
127 return NULL;
128
129 MachineInstr *MI = MBBI;
130 MachineFunction &MF = *MI->getParent()->getParent();
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000131 uint64_t TSFlags = MI->getDesc().TSFlags;
David Goodwinaf7451b2009-07-08 16:09:28 +0000132 bool isPre = false;
133 switch ((TSFlags & ARMII::IndexModeMask) >> ARMII::IndexModeShift) {
134 default: return NULL;
135 case ARMII::IndexModePre:
136 isPre = true;
137 break;
138 case ARMII::IndexModePost:
139 break;
140 }
141
142 // Try splitting an indexed load/store to an un-indexed one plus an add/sub
143 // operation.
144 unsigned MemOpc = getUnindexedOpcode(MI->getOpcode());
145 if (MemOpc == 0)
146 return NULL;
147
148 MachineInstr *UpdateMI = NULL;
149 MachineInstr *MemMI = NULL;
150 unsigned AddrMode = (TSFlags & ARMII::AddrModeMask);
Evan Cheng6cc775f2011-06-28 19:10:37 +0000151 const MCInstrDesc &MCID = MI->getDesc();
152 unsigned NumOps = MCID.getNumOperands();
Evan Cheng7f8e5632011-12-07 07:15:52 +0000153 bool isLoad = !MI->mayStore();
David Goodwinaf7451b2009-07-08 16:09:28 +0000154 const MachineOperand &WB = isLoad ? MI->getOperand(1) : MI->getOperand(0);
155 const MachineOperand &Base = MI->getOperand(2);
156 const MachineOperand &Offset = MI->getOperand(NumOps-3);
157 unsigned WBReg = WB.getReg();
158 unsigned BaseReg = Base.getReg();
159 unsigned OffReg = Offset.getReg();
160 unsigned OffImm = MI->getOperand(NumOps-2).getImm();
161 ARMCC::CondCodes Pred = (ARMCC::CondCodes)MI->getOperand(NumOps-1).getImm();
162 switch (AddrMode) {
Craig Toppere55c5562012-02-07 02:50:20 +0000163 default: llvm_unreachable("Unknown indexed op!");
David Goodwinaf7451b2009-07-08 16:09:28 +0000164 case ARMII::AddrMode2: {
165 bool isSub = ARM_AM::getAM2Op(OffImm) == ARM_AM::sub;
166 unsigned Amt = ARM_AM::getAM2Offset(OffImm);
167 if (OffReg == 0) {
Evan Chenge3a53c42009-07-08 21:03:57 +0000168 if (ARM_AM::getSOImmVal(Amt) == -1)
David Goodwinaf7451b2009-07-08 16:09:28 +0000169 // Can't encode it in a so_imm operand. This transformation will
170 // add more than 1 instruction. Abandon!
171 return NULL;
172 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng0e075e22009-07-27 18:44:00 +0000173 get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
Evan Chenge3a53c42009-07-08 21:03:57 +0000174 .addReg(BaseReg).addImm(Amt)
David Goodwinaf7451b2009-07-08 16:09:28 +0000175 .addImm(Pred).addReg(0).addReg(0);
176 } else if (Amt != 0) {
177 ARM_AM::ShiftOpc ShOpc = ARM_AM::getAM2ShiftOpc(OffImm);
178 unsigned SOOpc = ARM_AM::getSORegOpc(ShOpc, Amt);
179 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Owen Andersonb595ed02011-07-21 18:54:16 +0000180 get(isSub ? ARM::SUBrsi : ARM::ADDrsi), WBReg)
David Goodwinaf7451b2009-07-08 16:09:28 +0000181 .addReg(BaseReg).addReg(OffReg).addReg(0).addImm(SOOpc)
182 .addImm(Pred).addReg(0).addReg(0);
183 } else
184 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng0e075e22009-07-27 18:44:00 +0000185 get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
David Goodwinaf7451b2009-07-08 16:09:28 +0000186 .addReg(BaseReg).addReg(OffReg)
187 .addImm(Pred).addReg(0).addReg(0);
188 break;
189 }
190 case ARMII::AddrMode3 : {
191 bool isSub = ARM_AM::getAM3Op(OffImm) == ARM_AM::sub;
192 unsigned Amt = ARM_AM::getAM3Offset(OffImm);
193 if (OffReg == 0)
194 // Immediate is 8-bits. It's guaranteed to fit in a so_imm operand.
195 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng0e075e22009-07-27 18:44:00 +0000196 get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
David Goodwinaf7451b2009-07-08 16:09:28 +0000197 .addReg(BaseReg).addImm(Amt)
198 .addImm(Pred).addReg(0).addReg(0);
199 else
200 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng0e075e22009-07-27 18:44:00 +0000201 get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
David Goodwinaf7451b2009-07-08 16:09:28 +0000202 .addReg(BaseReg).addReg(OffReg)
203 .addImm(Pred).addReg(0).addReg(0);
204 break;
205 }
206 }
207
208 std::vector<MachineInstr*> NewMIs;
209 if (isPre) {
210 if (isLoad)
211 MemMI = BuildMI(MF, MI->getDebugLoc(),
212 get(MemOpc), MI->getOperand(0).getReg())
Jim Grosbach1e4d9a12010-10-26 22:37:02 +0000213 .addReg(WBReg).addImm(0).addImm(Pred);
David Goodwinaf7451b2009-07-08 16:09:28 +0000214 else
215 MemMI = BuildMI(MF, MI->getDebugLoc(),
216 get(MemOpc)).addReg(MI->getOperand(1).getReg())
217 .addReg(WBReg).addReg(0).addImm(0).addImm(Pred);
218 NewMIs.push_back(MemMI);
219 NewMIs.push_back(UpdateMI);
220 } else {
221 if (isLoad)
222 MemMI = BuildMI(MF, MI->getDebugLoc(),
223 get(MemOpc), MI->getOperand(0).getReg())
Jim Grosbach1e4d9a12010-10-26 22:37:02 +0000224 .addReg(BaseReg).addImm(0).addImm(Pred);
David Goodwinaf7451b2009-07-08 16:09:28 +0000225 else
226 MemMI = BuildMI(MF, MI->getDebugLoc(),
227 get(MemOpc)).addReg(MI->getOperand(1).getReg())
228 .addReg(BaseReg).addReg(0).addImm(0).addImm(Pred);
229 if (WB.isDead())
230 UpdateMI->getOperand(0).setIsDead();
231 NewMIs.push_back(UpdateMI);
232 NewMIs.push_back(MemMI);
233 }
234
235 // Transfer LiveVariables states, kill / dead info.
236 if (LV) {
237 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
238 MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesen2fb5b312011-01-10 02:58:51 +0000239 if (MO.isReg() && TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
David Goodwinaf7451b2009-07-08 16:09:28 +0000240 unsigned Reg = MO.getReg();
241
242 LiveVariables::VarInfo &VI = LV->getVarInfo(Reg);
243 if (MO.isDef()) {
244 MachineInstr *NewMI = (Reg == WBReg) ? UpdateMI : MemMI;
245 if (MO.isDead())
246 LV->addVirtualRegisterDead(Reg, NewMI);
247 }
248 if (MO.isUse() && MO.isKill()) {
249 for (unsigned j = 0; j < 2; ++j) {
250 // Look at the two new MI's in reverse order.
251 MachineInstr *NewMI = NewMIs[j];
252 if (!NewMI->readsRegister(Reg))
253 continue;
254 LV->addVirtualRegisterKilled(Reg, NewMI);
255 if (VI.removeKill(MI))
256 VI.Kills.push_back(NewMI);
257 break;
258 }
259 }
260 }
261 }
262 }
263
264 MFI->insert(MBBI, NewMIs[1]);
265 MFI->insert(MBBI, NewMIs[0]);
266 return NewMIs[0];
267}
268
269// Branch analysis.
270bool
271ARMBaseInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,MachineBasicBlock *&TBB,
272 MachineBasicBlock *&FBB,
273 SmallVectorImpl<MachineOperand> &Cond,
274 bool AllowModify) const {
275 // If the block has no terminators, it just falls into the block after it.
276 MachineBasicBlock::iterator I = MBB.end();
Dale Johannesen4244d122010-04-02 01:38:09 +0000277 if (I == MBB.begin())
278 return false;
279 --I;
280 while (I->isDebugValue()) {
281 if (I == MBB.begin())
282 return false;
283 --I;
284 }
David Goodwinaf7451b2009-07-08 16:09:28 +0000285
286 // Get the last instruction in the block.
287 MachineInstr *LastInst = I;
Evan Cheng9fad6352013-05-05 18:06:32 +0000288 unsigned LastOpc = LastInst->getOpcode();
289
290 // Check if it's an indirect branch first, this should return 'unanalyzable'
291 // even if it's predicated.
292 if (isIndirectBranchOpcode(LastOpc))
293 return true;
294
295 if (!isUnpredicatedTerminator(I))
296 return false;
David Goodwinaf7451b2009-07-08 16:09:28 +0000297
298 // If there is only one terminator instruction, process it.
David Goodwinaf7451b2009-07-08 16:09:28 +0000299 if (I == MBB.begin() || !isUnpredicatedTerminator(--I)) {
Evan Cheng056c6692009-07-27 18:20:05 +0000300 if (isUncondBranchOpcode(LastOpc)) {
David Goodwinaf7451b2009-07-08 16:09:28 +0000301 TBB = LastInst->getOperand(0).getMBB();
302 return false;
303 }
Evan Cheng056c6692009-07-27 18:20:05 +0000304 if (isCondBranchOpcode(LastOpc)) {
David Goodwinaf7451b2009-07-08 16:09:28 +0000305 // Block ends with fall-through condbranch.
306 TBB = LastInst->getOperand(0).getMBB();
307 Cond.push_back(LastInst->getOperand(1));
308 Cond.push_back(LastInst->getOperand(2));
309 return false;
310 }
311 return true; // Can't handle indirect branch.
312 }
313
314 // Get the instruction before it if it is a terminator.
315 MachineInstr *SecondLastInst = I;
Evan Cheng66c8cd22010-09-23 06:54:40 +0000316 unsigned SecondLastOpc = SecondLastInst->getOpcode();
317
318 // If AllowModify is true and the block ends with two or more unconditional
319 // branches, delete all but the first unconditional branch.
320 if (AllowModify && isUncondBranchOpcode(LastOpc)) {
321 while (isUncondBranchOpcode(SecondLastOpc)) {
322 LastInst->eraseFromParent();
323 LastInst = SecondLastInst;
324 LastOpc = LastInst->getOpcode();
Evan Cheng1596f7f2010-09-23 19:42:03 +0000325 if (I == MBB.begin() || !isUnpredicatedTerminator(--I)) {
326 // Return now the only terminator is an unconditional branch.
327 TBB = LastInst->getOperand(0).getMBB();
328 return false;
329 } else {
Evan Cheng66c8cd22010-09-23 06:54:40 +0000330 SecondLastInst = I;
331 SecondLastOpc = SecondLastInst->getOpcode();
332 }
333 }
334 }
David Goodwinaf7451b2009-07-08 16:09:28 +0000335
336 // If there are three terminators, we don't know what sort of block this is.
337 if (SecondLastInst && I != MBB.begin() && isUnpredicatedTerminator(--I))
338 return true;
339
Evan Cheng056c6692009-07-27 18:20:05 +0000340 // If the block ends with a B and a Bcc, handle it.
Evan Cheng056c6692009-07-27 18:20:05 +0000341 if (isCondBranchOpcode(SecondLastOpc) && isUncondBranchOpcode(LastOpc)) {
David Goodwinaf7451b2009-07-08 16:09:28 +0000342 TBB = SecondLastInst->getOperand(0).getMBB();
343 Cond.push_back(SecondLastInst->getOperand(1));
344 Cond.push_back(SecondLastInst->getOperand(2));
345 FBB = LastInst->getOperand(0).getMBB();
346 return false;
347 }
348
349 // If the block ends with two unconditional branches, handle it. The second
350 // one is not executed, so remove it.
Evan Cheng056c6692009-07-27 18:20:05 +0000351 if (isUncondBranchOpcode(SecondLastOpc) && isUncondBranchOpcode(LastOpc)) {
David Goodwinaf7451b2009-07-08 16:09:28 +0000352 TBB = SecondLastInst->getOperand(0).getMBB();
353 I = LastInst;
354 if (AllowModify)
355 I->eraseFromParent();
356 return false;
357 }
358
359 // ...likewise if it ends with a branch table followed by an unconditional
360 // branch. The branch folder can create these, and we must get rid of them for
361 // correctness of Thumb constant islands.
Bob Wilson73789b82009-10-28 18:26:41 +0000362 if ((isJumpTableBranchOpcode(SecondLastOpc) ||
363 isIndirectBranchOpcode(SecondLastOpc)) &&
Evan Cheng056c6692009-07-27 18:20:05 +0000364 isUncondBranchOpcode(LastOpc)) {
David Goodwinaf7451b2009-07-08 16:09:28 +0000365 I = LastInst;
366 if (AllowModify)
367 I->eraseFromParent();
368 return true;
369 }
370
371 // Otherwise, can't handle this.
372 return true;
373}
374
375
376unsigned ARMBaseInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
David Goodwinaf7451b2009-07-08 16:09:28 +0000377 MachineBasicBlock::iterator I = MBB.end();
378 if (I == MBB.begin()) return 0;
379 --I;
Dale Johannesen4244d122010-04-02 01:38:09 +0000380 while (I->isDebugValue()) {
381 if (I == MBB.begin())
382 return 0;
383 --I;
384 }
Evan Cheng056c6692009-07-27 18:20:05 +0000385 if (!isUncondBranchOpcode(I->getOpcode()) &&
386 !isCondBranchOpcode(I->getOpcode()))
David Goodwinaf7451b2009-07-08 16:09:28 +0000387 return 0;
388
389 // Remove the branch.
390 I->eraseFromParent();
391
392 I = MBB.end();
393
394 if (I == MBB.begin()) return 1;
395 --I;
Evan Cheng056c6692009-07-27 18:20:05 +0000396 if (!isCondBranchOpcode(I->getOpcode()))
David Goodwinaf7451b2009-07-08 16:09:28 +0000397 return 1;
398
399 // Remove the branch.
400 I->eraseFromParent();
401 return 2;
402}
403
404unsigned
405ARMBaseInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
Stuart Hastings0125b642010-06-17 22:43:56 +0000406 MachineBasicBlock *FBB,
407 const SmallVectorImpl<MachineOperand> &Cond,
408 DebugLoc DL) const {
Evan Cheng780748d2009-07-28 05:48:47 +0000409 ARMFunctionInfo *AFI = MBB.getParent()->getInfo<ARMFunctionInfo>();
410 int BOpc = !AFI->isThumbFunction()
411 ? ARM::B : (AFI->isThumb2Function() ? ARM::t2B : ARM::tB);
412 int BccOpc = !AFI->isThumbFunction()
413 ? ARM::Bcc : (AFI->isThumb2Function() ? ARM::t2Bcc : ARM::tBcc);
Owen Anderson29cfe6c2011-09-09 21:48:23 +0000414 bool isThumb = AFI->isThumbFunction() || AFI->isThumb2Function();
Andrew Trick3f1fdf12011-09-21 02:17:37 +0000415
David Goodwinaf7451b2009-07-08 16:09:28 +0000416 // Shouldn't be a fall through.
417 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
418 assert((Cond.size() == 2 || Cond.size() == 0) &&
419 "ARM branch conditions have two components!");
420
421 if (FBB == 0) {
Owen Andersoneb3f0fb2011-09-09 23:13:02 +0000422 if (Cond.empty()) { // Unconditional branch?
Owen Anderson29cfe6c2011-09-09 21:48:23 +0000423 if (isThumb)
424 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB).addImm(ARMCC::AL).addReg(0);
425 else
426 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB);
Owen Andersoneb3f0fb2011-09-09 23:13:02 +0000427 } else
Stuart Hastings0125b642010-06-17 22:43:56 +0000428 BuildMI(&MBB, DL, get(BccOpc)).addMBB(TBB)
David Goodwinaf7451b2009-07-08 16:09:28 +0000429 .addImm(Cond[0].getImm()).addReg(Cond[1].getReg());
430 return 1;
431 }
432
433 // Two-way conditional branch.
Stuart Hastings0125b642010-06-17 22:43:56 +0000434 BuildMI(&MBB, DL, get(BccOpc)).addMBB(TBB)
David Goodwinaf7451b2009-07-08 16:09:28 +0000435 .addImm(Cond[0].getImm()).addReg(Cond[1].getReg());
Owen Anderson29cfe6c2011-09-09 21:48:23 +0000436 if (isThumb)
437 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB).addImm(ARMCC::AL).addReg(0);
438 else
439 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB);
David Goodwinaf7451b2009-07-08 16:09:28 +0000440 return 2;
441}
442
443bool ARMBaseInstrInfo::
444ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const {
445 ARMCC::CondCodes CC = (ARMCC::CondCodes)(int)Cond[0].getImm();
446 Cond[0].setImm(ARMCC::getOppositeCondition(CC));
447 return false;
448}
449
Evan Cheng7fae11b2011-12-14 02:11:42 +0000450bool ARMBaseInstrInfo::isPredicated(const MachineInstr *MI) const {
451 if (MI->isBundle()) {
452 MachineBasicBlock::const_instr_iterator I = MI;
453 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
454 while (++I != E && I->isInsideBundle()) {
455 int PIdx = I->findFirstPredOperandIdx();
456 if (PIdx != -1 && I->getOperand(PIdx).getImm() != ARMCC::AL)
457 return true;
458 }
459 return false;
460 }
461
462 int PIdx = MI->findFirstPredOperandIdx();
463 return PIdx != -1 && MI->getOperand(PIdx).getImm() != ARMCC::AL;
464}
465
David Goodwinaf7451b2009-07-08 16:09:28 +0000466bool ARMBaseInstrInfo::
467PredicateInstruction(MachineInstr *MI,
468 const SmallVectorImpl<MachineOperand> &Pred) const {
469 unsigned Opc = MI->getOpcode();
Evan Cheng056c6692009-07-27 18:20:05 +0000470 if (isUncondBranchOpcode(Opc)) {
471 MI->setDesc(get(getMatchingCondBranchOpcode(Opc)));
Jakob Stoklund Olesen2ea20362012-12-20 22:53:55 +0000472 MachineInstrBuilder(*MI->getParent()->getParent(), MI)
473 .addImm(Pred[0].getImm())
474 .addReg(Pred[1].getReg());
David Goodwinaf7451b2009-07-08 16:09:28 +0000475 return true;
476 }
477
478 int PIdx = MI->findFirstPredOperandIdx();
479 if (PIdx != -1) {
480 MachineOperand &PMO = MI->getOperand(PIdx);
481 PMO.setImm(Pred[0].getImm());
482 MI->getOperand(PIdx+1).setReg(Pred[1].getReg());
483 return true;
484 }
485 return false;
486}
487
488bool ARMBaseInstrInfo::
489SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
490 const SmallVectorImpl<MachineOperand> &Pred2) const {
491 if (Pred1.size() > 2 || Pred2.size() > 2)
492 return false;
493
494 ARMCC::CondCodes CC1 = (ARMCC::CondCodes)Pred1[0].getImm();
495 ARMCC::CondCodes CC2 = (ARMCC::CondCodes)Pred2[0].getImm();
496 if (CC1 == CC2)
497 return true;
498
499 switch (CC1) {
500 default:
501 return false;
502 case ARMCC::AL:
503 return true;
504 case ARMCC::HS:
505 return CC2 == ARMCC::HI;
506 case ARMCC::LS:
507 return CC2 == ARMCC::LO || CC2 == ARMCC::EQ;
508 case ARMCC::GE:
509 return CC2 == ARMCC::GT;
510 case ARMCC::LE:
511 return CC2 == ARMCC::LT;
512 }
513}
514
515bool ARMBaseInstrInfo::DefinesPredicate(MachineInstr *MI,
516 std::vector<MachineOperand> &Pred) const {
David Goodwinaf7451b2009-07-08 16:09:28 +0000517 bool Found = false;
518 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
519 const MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesen4fad5b22012-02-17 19:23:15 +0000520 if ((MO.isRegMask() && MO.clobbersPhysReg(ARM::CPSR)) ||
521 (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)) {
David Goodwinaf7451b2009-07-08 16:09:28 +0000522 Pred.push_back(MO);
523 Found = true;
524 }
525 }
526
527 return Found;
528}
529
Evan Chenga33fc862009-11-21 06:21:52 +0000530/// isPredicable - Return true if the specified instruction can be predicated.
531/// By default, this returns true for every instruction with a
532/// PredicateOperand.
533bool ARMBaseInstrInfo::isPredicable(MachineInstr *MI) const {
Evan Cheng7f8e5632011-12-07 07:15:52 +0000534 if (!MI->isPredicable())
Evan Chenga33fc862009-11-21 06:21:52 +0000535 return false;
536
Evan Cheng7f8e5632011-12-07 07:15:52 +0000537 if ((MI->getDesc().TSFlags & ARMII::DomainMask) == ARMII::DomainNEON) {
Evan Chenga33fc862009-11-21 06:21:52 +0000538 ARMFunctionInfo *AFI =
539 MI->getParent()->getParent()->getInfo<ARMFunctionInfo>();
Evan Cheng184ec262009-11-24 08:06:15 +0000540 return AFI->isThumb2Function();
Evan Chenga33fc862009-11-21 06:21:52 +0000541 }
542 return true;
543}
David Goodwinaf7451b2009-07-08 16:09:28 +0000544
Chris Lattnerc831fac2009-12-03 06:58:32 +0000545/// FIXME: Works around a gcc miscompilation with -fstrict-aliasing.
Chandler Carruth82058c02010-10-23 08:40:19 +0000546LLVM_ATTRIBUTE_NOINLINE
David Goodwinaf7451b2009-07-08 16:09:28 +0000547static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
Chris Lattnerc831fac2009-12-03 06:58:32 +0000548 unsigned JTI);
David Goodwinaf7451b2009-07-08 16:09:28 +0000549static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
550 unsigned JTI) {
Chris Lattnerc831fac2009-12-03 06:58:32 +0000551 assert(JTI < JT.size());
David Goodwinaf7451b2009-07-08 16:09:28 +0000552 return JT[JTI].MBBs.size();
553}
554
555/// GetInstSize - Return the size of the specified MachineInstr.
556///
557unsigned ARMBaseInstrInfo::GetInstSizeInBytes(const MachineInstr *MI) const {
558 const MachineBasicBlock &MBB = *MI->getParent();
559 const MachineFunction *MF = MBB.getParent();
Chris Lattnere9a75a62009-08-22 21:43:10 +0000560 const MCAsmInfo *MAI = MF->getTarget().getMCAsmInfo();
David Goodwinaf7451b2009-07-08 16:09:28 +0000561
Evan Cheng6cc775f2011-06-28 19:10:37 +0000562 const MCInstrDesc &MCID = MI->getDesc();
Owen Anderson651b2302011-07-13 23:22:26 +0000563 if (MCID.getSize())
564 return MCID.getSize();
David Goodwinaf7451b2009-07-08 16:09:28 +0000565
David Blaikie46a9f012012-01-20 21:51:11 +0000566 // If this machine instr is an inline asm, measure it.
567 if (MI->getOpcode() == ARM::INLINEASM)
568 return getInlineAsmLength(MI->getOperand(0).getSymbolName(), *MAI);
569 if (MI->isLabel())
570 return 0;
571 unsigned Opc = MI->getOpcode();
572 switch (Opc) {
573 case TargetOpcode::IMPLICIT_DEF:
574 case TargetOpcode::KILL:
575 case TargetOpcode::PROLOG_LABEL:
576 case TargetOpcode::EH_LABEL:
577 case TargetOpcode::DBG_VALUE:
578 return 0;
579 case TargetOpcode::BUNDLE:
580 return getInstBundleLength(MI);
581 case ARM::MOVi16_ga_pcrel:
582 case ARM::MOVTi16_ga_pcrel:
583 case ARM::t2MOVi16_ga_pcrel:
584 case ARM::t2MOVTi16_ga_pcrel:
585 return 4;
586 case ARM::MOVi32imm:
587 case ARM::t2MOVi32imm:
588 return 8;
589 case ARM::CONSTPOOL_ENTRY:
590 // If this machine instr is a constant pool entry, its size is recorded as
591 // operand #2.
592 return MI->getOperand(2).getImm();
593 case ARM::Int_eh_sjlj_longjmp:
594 return 16;
595 case ARM::tInt_eh_sjlj_longjmp:
596 return 10;
597 case ARM::Int_eh_sjlj_setjmp:
598 case ARM::Int_eh_sjlj_setjmp_nofp:
599 return 20;
600 case ARM::tInt_eh_sjlj_setjmp:
601 case ARM::t2Int_eh_sjlj_setjmp:
602 case ARM::t2Int_eh_sjlj_setjmp_nofp:
603 return 12;
604 case ARM::BR_JTr:
605 case ARM::BR_JTm:
606 case ARM::BR_JTadd:
607 case ARM::tBR_JTr:
608 case ARM::t2BR_JT:
609 case ARM::t2TBB_JT:
610 case ARM::t2TBH_JT: {
611 // These are jumptable branches, i.e. a branch followed by an inlined
612 // jumptable. The size is 4 + 4 * number of entries. For TBB, each
613 // entry is one byte; TBH two byte each.
614 unsigned EntrySize = (Opc == ARM::t2TBB_JT)
615 ? 1 : ((Opc == ARM::t2TBH_JT) ? 2 : 4);
616 unsigned NumOps = MCID.getNumOperands();
617 MachineOperand JTOP =
618 MI->getOperand(NumOps - (MI->isPredicable() ? 3 : 2));
619 unsigned JTI = JTOP.getIndex();
620 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
621 assert(MJTI != 0);
622 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
623 assert(JTI < JT.size());
624 // Thumb instructions are 2 byte aligned, but JT entries are 4 byte
625 // 4 aligned. The assembler / linker may add 2 byte padding just before
626 // the JT entries. The size does not include this padding; the
627 // constant islands pass does separate bookkeeping for it.
628 // FIXME: If we know the size of the function is less than (1 << 16) *2
629 // bytes, we can use 16-bit entries instead. Then there won't be an
630 // alignment issue.
631 unsigned InstSize = (Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT) ? 2 : 4;
632 unsigned NumEntries = getNumJTEntries(JT, JTI);
633 if (Opc == ARM::t2TBB_JT && (NumEntries & 1))
634 // Make sure the instruction that follows TBB is 2-byte aligned.
635 // FIXME: Constant island pass should insert an "ALIGN" instruction
636 // instead.
637 ++NumEntries;
638 return NumEntries * EntrySize + InstSize;
639 }
640 default:
641 // Otherwise, pseudo-instruction sizes are zero.
642 return 0;
643 }
David Goodwinaf7451b2009-07-08 16:09:28 +0000644}
645
Evan Cheng7fae11b2011-12-14 02:11:42 +0000646unsigned ARMBaseInstrInfo::getInstBundleLength(const MachineInstr *MI) const {
647 unsigned Size = 0;
648 MachineBasicBlock::const_instr_iterator I = MI;
649 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
650 while (++I != E && I->isInsideBundle()) {
651 assert(!I->isBundle() && "No nested bundle!");
652 Size += GetInstSizeInBytes(&*I);
653 }
654 return Size;
655}
656
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000657void ARMBaseInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
658 MachineBasicBlock::iterator I, DebugLoc DL,
659 unsigned DestReg, unsigned SrcReg,
660 bool KillSrc) const {
661 bool GPRDest = ARM::GPRRegClass.contains(DestReg);
662 bool GPRSrc = ARM::GPRRegClass.contains(SrcReg);
Bob Wilson70aa8d02010-02-16 17:24:15 +0000663
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000664 if (GPRDest && GPRSrc) {
665 AddDefaultCC(AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::MOVr), DestReg)
666 .addReg(SrcReg, getKillRegState(KillSrc))));
667 return;
David Goodwine5b5d8f2009-08-05 21:02:22 +0000668 }
David Goodwinaf7451b2009-07-08 16:09:28 +0000669
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000670 bool SPRDest = ARM::SPRRegClass.contains(DestReg);
671 bool SPRSrc = ARM::SPRRegClass.contains(SrcReg);
672
Chad Rosierbe762512011-08-20 00:17:25 +0000673 unsigned Opc = 0;
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +0000674 if (SPRDest && SPRSrc)
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000675 Opc = ARM::VMOVS;
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +0000676 else if (GPRDest && SPRSrc)
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000677 Opc = ARM::VMOVRS;
678 else if (SPRDest && GPRSrc)
679 Opc = ARM::VMOVSR;
680 else if (ARM::DPRRegClass.contains(DestReg, SrcReg))
681 Opc = ARM::VMOVD;
682 else if (ARM::QPRRegClass.contains(DestReg, SrcReg))
Owen Anderson454e1c72011-07-15 18:46:47 +0000683 Opc = ARM::VORRq;
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000684
Chad Rosierbe762512011-08-20 00:17:25 +0000685 if (Opc) {
686 MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc), DestReg);
Owen Anderson454e1c72011-07-15 18:46:47 +0000687 MIB.addReg(SrcReg, getKillRegState(KillSrc));
Chad Rosierbe762512011-08-20 00:17:25 +0000688 if (Opc == ARM::VORRq)
689 MIB.addReg(SrcReg, getKillRegState(KillSrc));
Chad Rosier61f92ef2011-08-20 00:52:40 +0000690 AddDefaultPred(MIB);
Chad Rosierbe762512011-08-20 00:17:25 +0000691 return;
692 }
693
Jakob Stoklund Olesencaa6bd22012-03-29 21:10:40 +0000694 // Handle register classes that require multiple instructions.
695 unsigned BeginIdx = 0;
696 unsigned SubRegs = 0;
Andrew Trickb57e2252012-08-29 04:41:37 +0000697 int Spacing = 1;
Jakob Stoklund Olesencaa6bd22012-03-29 21:10:40 +0000698
699 // Use VORRq when possible.
700 if (ARM::QQPRRegClass.contains(DestReg, SrcReg))
701 Opc = ARM::VORRq, BeginIdx = ARM::qsub_0, SubRegs = 2;
702 else if (ARM::QQQQPRRegClass.contains(DestReg, SrcReg))
703 Opc = ARM::VORRq, BeginIdx = ARM::qsub_0, SubRegs = 4;
704 // Fall back to VMOVD.
705 else if (ARM::DPairRegClass.contains(DestReg, SrcReg))
706 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 2;
707 else if (ARM::DTripleRegClass.contains(DestReg, SrcReg))
708 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 3;
709 else if (ARM::DQuadRegClass.contains(DestReg, SrcReg))
710 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 4;
Jakob Stoklund Olesene46a1042012-10-26 21:29:15 +0000711 else if (ARM::GPRPairRegClass.contains(DestReg, SrcReg))
712 Opc = ARM::MOVr, BeginIdx = ARM::gsub_0, SubRegs = 2;
Jakob Stoklund Olesencaa6bd22012-03-29 21:10:40 +0000713
714 else if (ARM::DPairSpcRegClass.contains(DestReg, SrcReg))
715 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 2, Spacing = 2;
716 else if (ARM::DTripleSpcRegClass.contains(DestReg, SrcReg))
717 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 3, Spacing = 2;
718 else if (ARM::DQuadSpcRegClass.contains(DestReg, SrcReg))
719 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 4, Spacing = 2;
720
Andrew Trickb57e2252012-08-29 04:41:37 +0000721 assert(Opc && "Impossible reg-to-reg copy");
Jakob Stoklund Olesencaa6bd22012-03-29 21:10:40 +0000722
Andrew Trick4cc69492012-08-29 01:58:52 +0000723 const TargetRegisterInfo *TRI = &getRegisterInfo();
724 MachineInstrBuilder Mov;
Andrew Trickbd0073d2012-08-29 01:58:55 +0000725
726 // Copy register tuples backward when the first Dest reg overlaps with SrcReg.
727 if (TRI->regsOverlap(SrcReg, TRI->getSubReg(DestReg, BeginIdx))) {
728 BeginIdx = BeginIdx + ((SubRegs-1)*Spacing);
729 Spacing = -Spacing;
730 }
731#ifndef NDEBUG
732 SmallSet<unsigned, 4> DstRegs;
733#endif
Andrew Trick4cc69492012-08-29 01:58:52 +0000734 for (unsigned i = 0; i != SubRegs; ++i) {
735 unsigned Dst = TRI->getSubReg(DestReg, BeginIdx + i*Spacing);
736 unsigned Src = TRI->getSubReg(SrcReg, BeginIdx + i*Spacing);
737 assert(Dst && Src && "Bad sub-register");
Andrew Trickbd0073d2012-08-29 01:58:55 +0000738#ifndef NDEBUG
Andrew Trickbd0073d2012-08-29 01:58:55 +0000739 assert(!DstRegs.count(Src) && "destructive vector copy");
Andrew Trickb57e2252012-08-29 04:41:37 +0000740 DstRegs.insert(Dst);
Andrew Trickbd0073d2012-08-29 01:58:55 +0000741#endif
Andrew Trick4cc69492012-08-29 01:58:52 +0000742 Mov = BuildMI(MBB, I, I->getDebugLoc(), get(Opc), Dst)
743 .addReg(Src);
744 // VORR takes two source operands.
745 if (Opc == ARM::VORRq)
746 Mov.addReg(Src);
747 Mov = AddDefaultPred(Mov);
748 }
749 // Add implicit super-register defs and kills to the last instruction.
750 Mov->addRegisterDefined(DestReg, TRI);
751 if (KillSrc)
752 Mov->addRegisterKilled(SrcReg, TRI);
David Goodwinaf7451b2009-07-08 16:09:28 +0000753}
754
Tim Northover798697d2013-04-21 11:57:07 +0000755const MachineInstrBuilder &
756ARMBaseInstrInfo::AddDReg(MachineInstrBuilder &MIB, unsigned Reg,
757 unsigned SubIdx, unsigned State,
758 const TargetRegisterInfo *TRI) const {
Evan Chengddc93c72010-05-07 00:24:52 +0000759 if (!SubIdx)
760 return MIB.addReg(Reg, State);
761
762 if (TargetRegisterInfo::isPhysicalRegister(Reg))
763 return MIB.addReg(TRI->getSubReg(Reg, SubIdx), State);
764 return MIB.addReg(Reg, State, SubIdx);
765}
766
David Goodwinaf7451b2009-07-08 16:09:28 +0000767void ARMBaseInstrInfo::
768storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
769 unsigned SrcReg, bool isKill, int FI,
Evan Chengefb126a2010-05-06 19:06:44 +0000770 const TargetRegisterClass *RC,
771 const TargetRegisterInfo *TRI) const {
Chris Lattner6f306d72010-04-02 20:16:16 +0000772 DebugLoc DL;
David Goodwinaf7451b2009-07-08 16:09:28 +0000773 if (I != MBB.end()) DL = I->getDebugLoc();
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000774 MachineFunction &MF = *MBB.getParent();
775 MachineFrameInfo &MFI = *MF.getFrameInfo();
Jim Grosbacha15c3b72009-11-08 00:27:19 +0000776 unsigned Align = MFI.getObjectAlignment(FI);
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000777
778 MachineMemOperand *MMO =
Jay Foad465101b2011-11-15 07:34:52 +0000779 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
Chris Lattnere3d864b2010-09-21 04:39:43 +0000780 MachineMemOperand::MOStore,
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000781 MFI.getObjectSize(FI),
Jim Grosbacha15c3b72009-11-08 00:27:19 +0000782 Align);
David Goodwinaf7451b2009-07-08 16:09:28 +0000783
Owen Anderson732f82c2011-08-10 17:21:20 +0000784 switch (RC->getSize()) {
785 case 4:
786 if (ARM::GPRRegClass.hasSubClassEq(RC)) {
787 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::STRi12))
David Goodwinaf7451b2009-07-08 16:09:28 +0000788 .addReg(SrcReg, getKillRegState(isKill))
Jim Grosbach338de3e2010-10-27 23:12:14 +0000789 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000790 } else if (ARM::SPRRegClass.hasSubClassEq(RC)) {
791 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRS))
Evan Cheng9d768f42010-05-06 01:34:11 +0000792 .addReg(SrcReg, getKillRegState(isKill))
793 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000794 } else
795 llvm_unreachable("Unknown reg class!");
796 break;
797 case 8:
798 if (ARM::DPRRegClass.hasSubClassEq(RC)) {
799 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRD))
David Goodwinaf7451b2009-07-08 16:09:28 +0000800 .addReg(SrcReg, getKillRegState(isKill))
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000801 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Jakob Stoklund Olesene46a1042012-10-26 21:29:15 +0000802 } else if (ARM::GPRPairRegClass.hasSubClassEq(RC)) {
Tim Northover798697d2013-04-21 11:57:07 +0000803 if (Subtarget.hasV5TEOps()) {
804 MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(ARM::STRD));
805 AddDReg(MIB, SrcReg, ARM::gsub_0, getKillRegState(isKill), TRI);
806 AddDReg(MIB, SrcReg, ARM::gsub_1, 0, TRI);
807 MIB.addFrameIndex(FI).addReg(0).addImm(0).addMemOperand(MMO);
808
809 AddDefaultPred(MIB);
810 } else {
811 // Fallback to STM instruction, which has existed since the dawn of
812 // time.
813 MachineInstrBuilder MIB =
814 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::STMIA))
815 .addFrameIndex(FI).addMemOperand(MMO));
816 AddDReg(MIB, SrcReg, ARM::gsub_0, getKillRegState(isKill), TRI);
817 AddDReg(MIB, SrcReg, ARM::gsub_1, 0, TRI);
818 }
Owen Anderson732f82c2011-08-10 17:21:20 +0000819 } else
820 llvm_unreachable("Unknown reg class!");
821 break;
822 case 16:
Jakob Stoklund Olesen9e512122012-03-28 21:20:32 +0000823 if (ARM::DPairRegClass.hasSubClassEq(RC)) {
Jakob Stoklund Olesend110e2a2012-01-05 00:26:57 +0000824 // Use aligned spills if the stack can be realigned.
825 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
Jim Grosbachc988e0c2012-03-05 19:33:30 +0000826 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1q64))
Bob Wilson4c1ca292010-07-06 21:26:18 +0000827 .addFrameIndex(FI).addImm(16)
Evan Cheng9de7cfe2010-05-13 01:12:06 +0000828 .addReg(SrcReg, getKillRegState(isKill))
829 .addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000830 } else {
831 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMQIA))
Evan Cheng9de7cfe2010-05-13 01:12:06 +0000832 .addReg(SrcReg, getKillRegState(isKill))
833 .addFrameIndex(FI)
Evan Cheng9de7cfe2010-05-13 01:12:06 +0000834 .addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000835 }
836 } else
837 llvm_unreachable("Unknown reg class!");
838 break;
Anton Korobeynikov218aaf62012-08-04 13:16:12 +0000839 case 24:
840 if (ARM::DTripleRegClass.hasSubClassEq(RC)) {
841 // Use aligned spills if the stack can be realigned.
842 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
843 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1d64TPseudo))
844 .addFrameIndex(FI).addImm(16)
845 .addReg(SrcReg, getKillRegState(isKill))
846 .addMemOperand(MMO));
847 } else {
848 MachineInstrBuilder MIB =
849 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
850 .addFrameIndex(FI))
851 .addMemOperand(MMO);
852 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
853 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
854 AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
855 }
856 } else
857 llvm_unreachable("Unknown reg class!");
858 break;
Owen Anderson732f82c2011-08-10 17:21:20 +0000859 case 32:
Anton Korobeynikov218aaf62012-08-04 13:16:12 +0000860 if (ARM::QQPRRegClass.hasSubClassEq(RC) || ARM::DQuadRegClass.hasSubClassEq(RC)) {
Owen Anderson732f82c2011-08-10 17:21:20 +0000861 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
862 // FIXME: It's possible to only store part of the QQ register if the
863 // spilled def has a sub-register index.
864 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1d64QPseudo))
Bob Wilsonb1e9d4b2010-09-15 01:48:05 +0000865 .addFrameIndex(FI).addImm(16)
866 .addReg(SrcReg, getKillRegState(isKill))
867 .addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000868 } else {
869 MachineInstrBuilder MIB =
870 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
Bill Wendlinga68e3a52010-11-16 01:16:36 +0000871 .addFrameIndex(FI))
Owen Anderson732f82c2011-08-10 17:21:20 +0000872 .addMemOperand(MMO);
873 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
874 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
875 MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
876 AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
877 }
878 } else
879 llvm_unreachable("Unknown reg class!");
880 break;
881 case 64:
882 if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
883 MachineInstrBuilder MIB =
884 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
885 .addFrameIndex(FI))
886 .addMemOperand(MMO);
887 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
888 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
889 MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
890 MIB = AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
891 MIB = AddDReg(MIB, SrcReg, ARM::dsub_4, 0, TRI);
892 MIB = AddDReg(MIB, SrcReg, ARM::dsub_5, 0, TRI);
893 MIB = AddDReg(MIB, SrcReg, ARM::dsub_6, 0, TRI);
894 AddDReg(MIB, SrcReg, ARM::dsub_7, 0, TRI);
895 } else
896 llvm_unreachable("Unknown reg class!");
897 break;
898 default:
899 llvm_unreachable("Unknown reg class!");
David Goodwinaf7451b2009-07-08 16:09:28 +0000900 }
901}
902
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +0000903unsigned
904ARMBaseInstrInfo::isStoreToStackSlot(const MachineInstr *MI,
905 int &FrameIndex) const {
906 switch (MI->getOpcode()) {
907 default: break;
Jim Grosbach338de3e2010-10-27 23:12:14 +0000908 case ARM::STRrs:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +0000909 case ARM::t2STRs: // FIXME: don't use t2STRs to access frame.
910 if (MI->getOperand(1).isFI() &&
911 MI->getOperand(2).isReg() &&
912 MI->getOperand(3).isImm() &&
913 MI->getOperand(2).getReg() == 0 &&
914 MI->getOperand(3).getImm() == 0) {
915 FrameIndex = MI->getOperand(1).getIndex();
916 return MI->getOperand(0).getReg();
917 }
918 break;
Jim Grosbach338de3e2010-10-27 23:12:14 +0000919 case ARM::STRi12:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +0000920 case ARM::t2STRi12:
Jim Grosbachd86f34d2011-06-29 20:26:39 +0000921 case ARM::tSTRspi:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +0000922 case ARM::VSTRD:
923 case ARM::VSTRS:
924 if (MI->getOperand(1).isFI() &&
925 MI->getOperand(2).isImm() &&
926 MI->getOperand(2).getImm() == 0) {
927 FrameIndex = MI->getOperand(1).getIndex();
928 return MI->getOperand(0).getReg();
929 }
930 break;
Jim Grosbachc988e0c2012-03-05 19:33:30 +0000931 case ARM::VST1q64:
Anton Korobeynikov3a4fdfe2012-08-04 13:22:14 +0000932 case ARM::VST1d64TPseudo:
933 case ARM::VST1d64QPseudo:
Jakob Stoklund Olesen33005d12010-09-15 17:27:09 +0000934 if (MI->getOperand(0).isFI() &&
935 MI->getOperand(2).getSubReg() == 0) {
936 FrameIndex = MI->getOperand(0).getIndex();
937 return MI->getOperand(2).getReg();
938 }
Jakob Stoklund Olesenb929c712010-09-15 21:40:09 +0000939 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +0000940 case ARM::VSTMQIA:
Jakob Stoklund Olesen33005d12010-09-15 17:27:09 +0000941 if (MI->getOperand(1).isFI() &&
Jakob Stoklund Olesen33005d12010-09-15 17:27:09 +0000942 MI->getOperand(0).getSubReg() == 0) {
943 FrameIndex = MI->getOperand(1).getIndex();
944 return MI->getOperand(0).getReg();
945 }
946 break;
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +0000947 }
948
949 return 0;
950}
951
Jakob Stoklund Olesenc04a66b2011-08-08 21:45:32 +0000952unsigned ARMBaseInstrInfo::isStoreToStackSlotPostFE(const MachineInstr *MI,
953 int &FrameIndex) const {
954 const MachineMemOperand *Dummy;
Evan Cheng7f8e5632011-12-07 07:15:52 +0000955 return MI->mayStore() && hasStoreToStackSlot(MI, Dummy, FrameIndex);
Jakob Stoklund Olesenc04a66b2011-08-08 21:45:32 +0000956}
957
David Goodwinaf7451b2009-07-08 16:09:28 +0000958void ARMBaseInstrInfo::
959loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
960 unsigned DestReg, int FI,
Evan Chengefb126a2010-05-06 19:06:44 +0000961 const TargetRegisterClass *RC,
962 const TargetRegisterInfo *TRI) const {
Chris Lattner6f306d72010-04-02 20:16:16 +0000963 DebugLoc DL;
David Goodwinaf7451b2009-07-08 16:09:28 +0000964 if (I != MBB.end()) DL = I->getDebugLoc();
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000965 MachineFunction &MF = *MBB.getParent();
966 MachineFrameInfo &MFI = *MF.getFrameInfo();
Jim Grosbacha15c3b72009-11-08 00:27:19 +0000967 unsigned Align = MFI.getObjectAlignment(FI);
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000968 MachineMemOperand *MMO =
Chris Lattnere3d864b2010-09-21 04:39:43 +0000969 MF.getMachineMemOperand(
Jay Foad465101b2011-11-15 07:34:52 +0000970 MachinePointerInfo::getFixedStack(FI),
Chris Lattnere3d864b2010-09-21 04:39:43 +0000971 MachineMemOperand::MOLoad,
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000972 MFI.getObjectSize(FI),
Jim Grosbacha15c3b72009-11-08 00:27:19 +0000973 Align);
David Goodwinaf7451b2009-07-08 16:09:28 +0000974
Owen Anderson732f82c2011-08-10 17:21:20 +0000975 switch (RC->getSize()) {
976 case 4:
977 if (ARM::GPRRegClass.hasSubClassEq(RC)) {
978 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::LDRi12), DestReg)
979 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Bob Wilson37f106e2010-02-16 22:01:59 +0000980
Owen Anderson732f82c2011-08-10 17:21:20 +0000981 } else if (ARM::SPRRegClass.hasSubClassEq(RC)) {
982 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRS), DestReg)
Jim Grosbach1e4d9a12010-10-26 22:37:02 +0000983 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000984 } else
985 llvm_unreachable("Unknown reg class!");
Bob Wilsona92e41a2010-06-18 21:32:42 +0000986 break;
Owen Anderson732f82c2011-08-10 17:21:20 +0000987 case 8:
988 if (ARM::DPRRegClass.hasSubClassEq(RC)) {
989 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRD), DestReg)
Evan Cheng9d768f42010-05-06 01:34:11 +0000990 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Jakob Stoklund Olesene46a1042012-10-26 21:29:15 +0000991 } else if (ARM::GPRPairRegClass.hasSubClassEq(RC)) {
Tim Northover798697d2013-04-21 11:57:07 +0000992 MachineInstrBuilder MIB;
993
994 if (Subtarget.hasV5TEOps()) {
995 MIB = BuildMI(MBB, I, DL, get(ARM::LDRD));
996 AddDReg(MIB, DestReg, ARM::gsub_0, RegState::DefineNoRead, TRI);
997 AddDReg(MIB, DestReg, ARM::gsub_1, RegState::DefineNoRead, TRI);
998 MIB.addFrameIndex(FI).addReg(0).addImm(0).addMemOperand(MMO);
999
1000 AddDefaultPred(MIB);
1001 } else {
1002 // Fallback to LDM instruction, which has existed since the dawn of
1003 // time.
1004 MIB = AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::LDMIA))
1005 .addFrameIndex(FI).addMemOperand(MMO));
1006 MIB = AddDReg(MIB, DestReg, ARM::gsub_0, RegState::DefineNoRead, TRI);
1007 MIB = AddDReg(MIB, DestReg, ARM::gsub_1, RegState::DefineNoRead, TRI);
1008 }
1009
Jakob Stoklund Olesene46a1042012-10-26 21:29:15 +00001010 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1011 MIB.addReg(DestReg, RegState::ImplicitDefine);
Owen Anderson732f82c2011-08-10 17:21:20 +00001012 } else
1013 llvm_unreachable("Unknown reg class!");
Bob Wilsona92e41a2010-06-18 21:32:42 +00001014 break;
Owen Anderson732f82c2011-08-10 17:21:20 +00001015 case 16:
Jakob Stoklund Olesen9e512122012-03-28 21:20:32 +00001016 if (ARM::DPairRegClass.hasSubClassEq(RC)) {
Jakob Stoklund Olesend110e2a2012-01-05 00:26:57 +00001017 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
Jim Grosbachc988e0c2012-03-05 19:33:30 +00001018 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1q64), DestReg)
Bob Wilson4c1ca292010-07-06 21:26:18 +00001019 .addFrameIndex(FI).addImm(16)
Evan Cheng9de7cfe2010-05-13 01:12:06 +00001020 .addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +00001021 } else {
1022 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMQIA), DestReg)
1023 .addFrameIndex(FI)
1024 .addMemOperand(MMO));
1025 }
1026 } else
1027 llvm_unreachable("Unknown reg class!");
Bob Wilsona92e41a2010-06-18 21:32:42 +00001028 break;
Anton Korobeynikov218aaf62012-08-04 13:16:12 +00001029 case 24:
1030 if (ARM::DTripleRegClass.hasSubClassEq(RC)) {
1031 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
1032 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1d64TPseudo), DestReg)
1033 .addFrameIndex(FI).addImm(16)
1034 .addMemOperand(MMO));
1035 } else {
1036 MachineInstrBuilder MIB =
1037 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
1038 .addFrameIndex(FI)
1039 .addMemOperand(MMO));
1040 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
1041 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
1042 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
1043 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1044 MIB.addReg(DestReg, RegState::ImplicitDefine);
1045 }
1046 } else
1047 llvm_unreachable("Unknown reg class!");
1048 break;
1049 case 32:
1050 if (ARM::QQPRRegClass.hasSubClassEq(RC) || ARM::DQuadRegClass.hasSubClassEq(RC)) {
Owen Anderson732f82c2011-08-10 17:21:20 +00001051 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
1052 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1d64QPseudo), DestReg)
Bob Wilsonb1e9d4b2010-09-15 01:48:05 +00001053 .addFrameIndex(FI).addImm(16)
1054 .addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +00001055 } else {
1056 MachineInstrBuilder MIB =
Bill Wendlinga68e3a52010-11-16 01:16:36 +00001057 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
1058 .addFrameIndex(FI))
Owen Anderson732f82c2011-08-10 17:21:20 +00001059 .addMemOperand(MMO);
Jakob Stoklund Olesenf729cea2012-03-04 18:40:30 +00001060 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
1061 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
1062 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
1063 MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::DefineNoRead, TRI);
Jakob Stoklund Olesend9b427e2012-03-06 02:48:17 +00001064 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1065 MIB.addReg(DestReg, RegState::ImplicitDefine);
Owen Anderson732f82c2011-08-10 17:21:20 +00001066 }
1067 } else
1068 llvm_unreachable("Unknown reg class!");
1069 break;
1070 case 64:
1071 if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
1072 MachineInstrBuilder MIB =
1073 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
1074 .addFrameIndex(FI))
1075 .addMemOperand(MMO);
Jakob Stoklund Olesenf729cea2012-03-04 18:40:30 +00001076 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
1077 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
1078 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
1079 MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::DefineNoRead, TRI);
1080 MIB = AddDReg(MIB, DestReg, ARM::dsub_4, RegState::DefineNoRead, TRI);
1081 MIB = AddDReg(MIB, DestReg, ARM::dsub_5, RegState::DefineNoRead, TRI);
1082 MIB = AddDReg(MIB, DestReg, ARM::dsub_6, RegState::DefineNoRead, TRI);
1083 MIB = AddDReg(MIB, DestReg, ARM::dsub_7, RegState::DefineNoRead, TRI);
Jakob Stoklund Olesend9b427e2012-03-06 02:48:17 +00001084 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1085 MIB.addReg(DestReg, RegState::ImplicitDefine);
Owen Anderson732f82c2011-08-10 17:21:20 +00001086 } else
1087 llvm_unreachable("Unknown reg class!");
Bob Wilsona92e41a2010-06-18 21:32:42 +00001088 break;
Bob Wilsona92e41a2010-06-18 21:32:42 +00001089 default:
1090 llvm_unreachable("Unknown regclass!");
David Goodwinaf7451b2009-07-08 16:09:28 +00001091 }
1092}
1093
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +00001094unsigned
1095ARMBaseInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
1096 int &FrameIndex) const {
1097 switch (MI->getOpcode()) {
1098 default: break;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00001099 case ARM::LDRrs:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +00001100 case ARM::t2LDRs: // FIXME: don't use t2LDRs to access frame.
1101 if (MI->getOperand(1).isFI() &&
1102 MI->getOperand(2).isReg() &&
1103 MI->getOperand(3).isImm() &&
1104 MI->getOperand(2).getReg() == 0 &&
1105 MI->getOperand(3).getImm() == 0) {
1106 FrameIndex = MI->getOperand(1).getIndex();
1107 return MI->getOperand(0).getReg();
1108 }
1109 break;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00001110 case ARM::LDRi12:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +00001111 case ARM::t2LDRi12:
Jim Grosbachd86f34d2011-06-29 20:26:39 +00001112 case ARM::tLDRspi:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +00001113 case ARM::VLDRD:
1114 case ARM::VLDRS:
1115 if (MI->getOperand(1).isFI() &&
1116 MI->getOperand(2).isImm() &&
1117 MI->getOperand(2).getImm() == 0) {
1118 FrameIndex = MI->getOperand(1).getIndex();
1119 return MI->getOperand(0).getReg();
1120 }
1121 break;
Jim Grosbachc988e0c2012-03-05 19:33:30 +00001122 case ARM::VLD1q64:
Anton Korobeynikov3a4fdfe2012-08-04 13:22:14 +00001123 case ARM::VLD1d64TPseudo:
1124 case ARM::VLD1d64QPseudo:
Jakob Stoklund Olesen33005d12010-09-15 17:27:09 +00001125 if (MI->getOperand(1).isFI() &&
1126 MI->getOperand(0).getSubReg() == 0) {
1127 FrameIndex = MI->getOperand(1).getIndex();
1128 return MI->getOperand(0).getReg();
1129 }
1130 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00001131 case ARM::VLDMQIA:
Jakob Stoklund Olesen44857a32010-09-15 21:40:11 +00001132 if (MI->getOperand(1).isFI() &&
Jakob Stoklund Olesen44857a32010-09-15 21:40:11 +00001133 MI->getOperand(0).getSubReg() == 0) {
1134 FrameIndex = MI->getOperand(1).getIndex();
1135 return MI->getOperand(0).getReg();
1136 }
1137 break;
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +00001138 }
1139
1140 return 0;
1141}
1142
Jakob Stoklund Olesenc04a66b2011-08-08 21:45:32 +00001143unsigned ARMBaseInstrInfo::isLoadFromStackSlotPostFE(const MachineInstr *MI,
1144 int &FrameIndex) const {
1145 const MachineMemOperand *Dummy;
Evan Cheng7f8e5632011-12-07 07:15:52 +00001146 return MI->mayLoad() && hasLoadFromStackSlot(MI, Dummy, FrameIndex);
Jakob Stoklund Olesenc04a66b2011-08-08 21:45:32 +00001147}
1148
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +00001149bool ARMBaseInstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const{
1150 // This hook gets to expand COPY instructions before they become
1151 // copyPhysReg() calls. Look for VMOVS instructions that can legally be
1152 // widened to VMOVD. We prefer the VMOVD when possible because it may be
1153 // changed into a VORR that can go down the NEON pipeline.
Silviu Baranga82dd6ac2013-03-15 18:28:25 +00001154 if (!WidenVMOVS || !MI->isCopy() || Subtarget.isCortexA15())
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +00001155 return false;
1156
1157 // Look for a copy between even S-registers. That is where we keep floats
1158 // when using NEON v2f32 instructions for f32 arithmetic.
1159 unsigned DstRegS = MI->getOperand(0).getReg();
1160 unsigned SrcRegS = MI->getOperand(1).getReg();
1161 if (!ARM::SPRRegClass.contains(DstRegS, SrcRegS))
1162 return false;
1163
1164 const TargetRegisterInfo *TRI = &getRegisterInfo();
1165 unsigned DstRegD = TRI->getMatchingSuperReg(DstRegS, ARM::ssub_0,
1166 &ARM::DPRRegClass);
1167 unsigned SrcRegD = TRI->getMatchingSuperReg(SrcRegS, ARM::ssub_0,
1168 &ARM::DPRRegClass);
1169 if (!DstRegD || !SrcRegD)
1170 return false;
1171
1172 // We want to widen this into a DstRegD = VMOVD SrcRegD copy. This is only
1173 // legal if the COPY already defines the full DstRegD, and it isn't a
1174 // sub-register insertion.
1175 if (!MI->definesRegister(DstRegD, TRI) || MI->readsRegister(DstRegD, TRI))
1176 return false;
1177
Jakob Stoklund Olesen39c31a72011-10-12 00:06:23 +00001178 // A dead copy shouldn't show up here, but reject it just in case.
1179 if (MI->getOperand(0).isDead())
1180 return false;
1181
1182 // All clear, widen the COPY.
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +00001183 DEBUG(dbgs() << "widening: " << *MI);
Jakob Stoklund Olesenb159b5f2012-12-19 21:31:56 +00001184 MachineInstrBuilder MIB(*MI->getParent()->getParent(), MI);
Jakob Stoklund Olesen39c31a72011-10-12 00:06:23 +00001185
1186 // Get rid of the old <imp-def> of DstRegD. Leave it if it defines a Q-reg
1187 // or some other super-register.
1188 int ImpDefIdx = MI->findRegisterDefOperandIdx(DstRegD);
1189 if (ImpDefIdx != -1)
1190 MI->RemoveOperand(ImpDefIdx);
1191
1192 // Change the opcode and operands.
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +00001193 MI->setDesc(get(ARM::VMOVD));
1194 MI->getOperand(0).setReg(DstRegD);
1195 MI->getOperand(1).setReg(SrcRegD);
Jakob Stoklund Olesenb159b5f2012-12-19 21:31:56 +00001196 AddDefaultPred(MIB);
Jakob Stoklund Olesen39c31a72011-10-12 00:06:23 +00001197
1198 // We are now reading SrcRegD instead of SrcRegS. This may upset the
1199 // register scavenger and machine verifier, so we need to indicate that we
1200 // are reading an undefined value from SrcRegD, but a proper value from
1201 // SrcRegS.
1202 MI->getOperand(1).setIsUndef();
Jakob Stoklund Olesenb159b5f2012-12-19 21:31:56 +00001203 MIB.addReg(SrcRegS, RegState::Implicit);
Jakob Stoklund Olesen39c31a72011-10-12 00:06:23 +00001204
1205 // SrcRegD may actually contain an unrelated value in the ssub_1
1206 // sub-register. Don't kill it. Only kill the ssub_0 sub-register.
1207 if (MI->getOperand(1).isKill()) {
1208 MI->getOperand(1).setIsKill(false);
1209 MI->addRegisterKilled(SrcRegS, TRI, true);
1210 }
1211
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +00001212 DEBUG(dbgs() << "replaced by: " << *MI);
1213 return true;
1214}
1215
Evan Chengbcb99ecc2010-04-26 07:39:25 +00001216MachineInstr*
1217ARMBaseInstrInfo::emitFrameIndexDebugValue(MachineFunction &MF,
Evan Cheng250e9172010-04-29 01:13:30 +00001218 int FrameIx, uint64_t Offset,
Evan Chengbcb99ecc2010-04-26 07:39:25 +00001219 const MDNode *MDPtr,
1220 DebugLoc DL) const {
1221 MachineInstrBuilder MIB = BuildMI(MF, DL, get(ARM::DBG_VALUE))
1222 .addFrameIndex(FrameIx).addImm(0).addImm(Offset).addMetadata(MDPtr);
1223 return &*MIB;
1224}
1225
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001226/// Create a copy of a const pool value. Update CPI to the new index and return
1227/// the label UID.
1228static unsigned duplicateCPV(MachineFunction &MF, unsigned &CPI) {
1229 MachineConstantPool *MCP = MF.getConstantPool();
1230 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1231
1232 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI];
1233 assert(MCPE.isMachineConstantPoolEntry() &&
1234 "Expecting a machine constantpool entry!");
1235 ARMConstantPoolValue *ACPV =
1236 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
1237
Evan Chengdfce83c2011-01-17 08:03:18 +00001238 unsigned PCLabelId = AFI->createPICLabelUId();
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001239 ARMConstantPoolValue *NewCPV = 0;
Jim Grosbach1f77ee52010-09-10 21:38:22 +00001240 // FIXME: The below assumes PIC relocation model and that the function
1241 // is Thumb mode (t1 or t2). PCAdjustment would be 8 for ARM mode PIC, and
1242 // zero for non-PIC in ARM or Thumb. The callers are all of thumb LDR
1243 // instructions, so that's probably OK, but is PIC always correct when
1244 // we get here?
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001245 if (ACPV->isGlobalValue())
Bill Wendling7753d662011-10-01 08:00:54 +00001246 NewCPV = ARMConstantPoolConstant::
1247 Create(cast<ARMConstantPoolConstant>(ACPV)->getGV(), PCLabelId,
1248 ARMCP::CPValue, 4);
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001249 else if (ACPV->isExtSymbol())
Bill Wendlingc214cb02011-10-01 08:58:29 +00001250 NewCPV = ARMConstantPoolSymbol::
1251 Create(MF.getFunction()->getContext(),
1252 cast<ARMConstantPoolSymbol>(ACPV)->getSymbol(), PCLabelId, 4);
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001253 else if (ACPV->isBlockAddress())
Bill Wendling7753d662011-10-01 08:00:54 +00001254 NewCPV = ARMConstantPoolConstant::
1255 Create(cast<ARMConstantPoolConstant>(ACPV)->getBlockAddress(), PCLabelId,
1256 ARMCP::CPBlockAddress, 4);
Jim Grosbach1f77ee52010-09-10 21:38:22 +00001257 else if (ACPV->isLSDA())
Bill Wendling7753d662011-10-01 08:00:54 +00001258 NewCPV = ARMConstantPoolConstant::Create(MF.getFunction(), PCLabelId,
1259 ARMCP::CPLSDA, 4);
Bill Wendling69bc3de2011-09-29 23:50:42 +00001260 else if (ACPV->isMachineBasicBlock())
Bill Wendling4a4772f2011-10-01 09:30:42 +00001261 NewCPV = ARMConstantPoolMBB::
1262 Create(MF.getFunction()->getContext(),
1263 cast<ARMConstantPoolMBB>(ACPV)->getMBB(), PCLabelId, 4);
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001264 else
1265 llvm_unreachable("Unexpected ARM constantpool value type!!");
1266 CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlignment());
1267 return PCLabelId;
1268}
1269
Evan Chengfe864422009-11-08 00:15:23 +00001270void ARMBaseInstrInfo::
1271reMaterialize(MachineBasicBlock &MBB,
1272 MachineBasicBlock::iterator I,
1273 unsigned DestReg, unsigned SubIdx,
Evan Cheng6ad7da92009-11-14 02:55:43 +00001274 const MachineInstr *Orig,
Jakob Stoklund Olesena8ad9772010-06-02 22:47:25 +00001275 const TargetRegisterInfo &TRI) const {
Evan Chengfe864422009-11-08 00:15:23 +00001276 unsigned Opcode = Orig->getOpcode();
1277 switch (Opcode) {
1278 default: {
1279 MachineInstr *MI = MBB.getParent()->CloneMachineInstr(Orig);
Jakob Stoklund Olesena8ad9772010-06-02 22:47:25 +00001280 MI->substituteRegister(Orig->getOperand(0).getReg(), DestReg, SubIdx, TRI);
Evan Chengfe864422009-11-08 00:15:23 +00001281 MBB.insert(I, MI);
1282 break;
1283 }
1284 case ARM::tLDRpci_pic:
1285 case ARM::t2LDRpci_pic: {
1286 MachineFunction &MF = *MBB.getParent();
Evan Chengfe864422009-11-08 00:15:23 +00001287 unsigned CPI = Orig->getOperand(1).getIndex();
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001288 unsigned PCLabelId = duplicateCPV(MF, CPI);
Evan Chengfe864422009-11-08 00:15:23 +00001289 MachineInstrBuilder MIB = BuildMI(MBB, I, Orig->getDebugLoc(), get(Opcode),
1290 DestReg)
1291 .addConstantPoolIndex(CPI).addImm(PCLabelId);
Chris Lattner1d0c2572011-04-29 05:24:29 +00001292 MIB->setMemRefs(Orig->memoperands_begin(), Orig->memoperands_end());
Evan Chengfe864422009-11-08 00:15:23 +00001293 break;
1294 }
1295 }
Evan Chengfe864422009-11-08 00:15:23 +00001296}
1297
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001298MachineInstr *
1299ARMBaseInstrInfo::duplicate(MachineInstr *Orig, MachineFunction &MF) const {
Jakob Stoklund Olesen9de596e2012-11-28 02:35:17 +00001300 MachineInstr *MI = TargetInstrInfo::duplicate(Orig, MF);
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001301 switch(Orig->getOpcode()) {
1302 case ARM::tLDRpci_pic:
1303 case ARM::t2LDRpci_pic: {
1304 unsigned CPI = Orig->getOperand(1).getIndex();
1305 unsigned PCLabelId = duplicateCPV(MF, CPI);
1306 Orig->getOperand(1).setIndex(CPI);
1307 Orig->getOperand(2).setImm(PCLabelId);
1308 break;
1309 }
1310 }
1311 return MI;
1312}
1313
Evan Chenge9c46c22010-03-03 01:44:33 +00001314bool ARMBaseInstrInfo::produceSameValue(const MachineInstr *MI0,
Evan Chengb8b0ad82011-01-20 08:34:58 +00001315 const MachineInstr *MI1,
1316 const MachineRegisterInfo *MRI) const {
Evan Chenga8e8a7c2009-11-07 04:04:34 +00001317 int Opcode = MI0->getOpcode();
Evan Cheng028ccbfc2011-01-20 23:55:07 +00001318 if (Opcode == ARM::t2LDRpci ||
Evan Chengbbd50b02009-11-20 02:10:27 +00001319 Opcode == ARM::t2LDRpci_pic ||
1320 Opcode == ARM::tLDRpci ||
Evan Chengb8b0ad82011-01-20 08:34:58 +00001321 Opcode == ARM::tLDRpci_pic ||
Evan Cheng2f2435d2011-01-21 18:55:51 +00001322 Opcode == ARM::MOV_ga_dyn ||
1323 Opcode == ARM::MOV_ga_pcrel ||
1324 Opcode == ARM::MOV_ga_pcrel_ldr ||
1325 Opcode == ARM::t2MOV_ga_dyn ||
1326 Opcode == ARM::t2MOV_ga_pcrel) {
Evan Chenga8e8a7c2009-11-07 04:04:34 +00001327 if (MI1->getOpcode() != Opcode)
1328 return false;
1329 if (MI0->getNumOperands() != MI1->getNumOperands())
1330 return false;
1331
1332 const MachineOperand &MO0 = MI0->getOperand(1);
1333 const MachineOperand &MO1 = MI1->getOperand(1);
1334 if (MO0.getOffset() != MO1.getOffset())
1335 return false;
1336
Evan Cheng2f2435d2011-01-21 18:55:51 +00001337 if (Opcode == ARM::MOV_ga_dyn ||
1338 Opcode == ARM::MOV_ga_pcrel ||
1339 Opcode == ARM::MOV_ga_pcrel_ldr ||
1340 Opcode == ARM::t2MOV_ga_dyn ||
1341 Opcode == ARM::t2MOV_ga_pcrel)
Evan Chengb8b0ad82011-01-20 08:34:58 +00001342 // Ignore the PC labels.
1343 return MO0.getGlobal() == MO1.getGlobal();
1344
Evan Chenga8e8a7c2009-11-07 04:04:34 +00001345 const MachineFunction *MF = MI0->getParent()->getParent();
1346 const MachineConstantPool *MCP = MF->getConstantPool();
1347 int CPI0 = MO0.getIndex();
1348 int CPI1 = MO1.getIndex();
1349 const MachineConstantPoolEntry &MCPE0 = MCP->getConstants()[CPI0];
1350 const MachineConstantPoolEntry &MCPE1 = MCP->getConstants()[CPI1];
Evan Chengf098bf12011-03-24 06:20:03 +00001351 bool isARMCP0 = MCPE0.isMachineConstantPoolEntry();
1352 bool isARMCP1 = MCPE1.isMachineConstantPoolEntry();
1353 if (isARMCP0 && isARMCP1) {
1354 ARMConstantPoolValue *ACPV0 =
1355 static_cast<ARMConstantPoolValue*>(MCPE0.Val.MachineCPVal);
1356 ARMConstantPoolValue *ACPV1 =
1357 static_cast<ARMConstantPoolValue*>(MCPE1.Val.MachineCPVal);
1358 return ACPV0->hasSameValue(ACPV1);
1359 } else if (!isARMCP0 && !isARMCP1) {
1360 return MCPE0.Val.ConstVal == MCPE1.Val.ConstVal;
1361 }
1362 return false;
Evan Chengb8b0ad82011-01-20 08:34:58 +00001363 } else if (Opcode == ARM::PICLDR) {
1364 if (MI1->getOpcode() != Opcode)
1365 return false;
1366 if (MI0->getNumOperands() != MI1->getNumOperands())
1367 return false;
1368
1369 unsigned Addr0 = MI0->getOperand(1).getReg();
1370 unsigned Addr1 = MI1->getOperand(1).getReg();
1371 if (Addr0 != Addr1) {
1372 if (!MRI ||
1373 !TargetRegisterInfo::isVirtualRegister(Addr0) ||
1374 !TargetRegisterInfo::isVirtualRegister(Addr1))
1375 return false;
1376
1377 // This assumes SSA form.
1378 MachineInstr *Def0 = MRI->getVRegDef(Addr0);
1379 MachineInstr *Def1 = MRI->getVRegDef(Addr1);
1380 // Check if the loaded value, e.g. a constantpool of a global address, are
1381 // the same.
1382 if (!produceSameValue(Def0, Def1, MRI))
1383 return false;
1384 }
1385
1386 for (unsigned i = 3, e = MI0->getNumOperands(); i != e; ++i) {
1387 // %vreg12<def> = PICLDR %vreg11, 0, pred:14, pred:%noreg
1388 const MachineOperand &MO0 = MI0->getOperand(i);
1389 const MachineOperand &MO1 = MI1->getOperand(i);
1390 if (!MO0.isIdenticalTo(MO1))
1391 return false;
1392 }
1393 return true;
Evan Chenga8e8a7c2009-11-07 04:04:34 +00001394 }
1395
Evan Chenge9c46c22010-03-03 01:44:33 +00001396 return MI0->isIdenticalTo(MI1, MachineInstr::IgnoreVRegDefs);
Evan Chenga8e8a7c2009-11-07 04:04:34 +00001397}
1398
Bill Wendlingf4707472010-06-23 23:00:16 +00001399/// areLoadsFromSameBasePtr - This is used by the pre-regalloc scheduler to
1400/// determine if two loads are loading from the same base address. It should
1401/// only return true if the base pointers are the same and the only differences
1402/// between the two addresses is the offset. It also returns the offsets by
1403/// reference.
Andrew Tricka7714a02012-11-12 19:40:10 +00001404///
1405/// FIXME: remove this in favor of the MachineInstr interface once pre-RA-sched
1406/// is permanently disabled.
Bill Wendlingf4707472010-06-23 23:00:16 +00001407bool ARMBaseInstrInfo::areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
1408 int64_t &Offset1,
1409 int64_t &Offset2) const {
1410 // Don't worry about Thumb: just ARM and Thumb2.
1411 if (Subtarget.isThumb1Only()) return false;
1412
1413 if (!Load1->isMachineOpcode() || !Load2->isMachineOpcode())
1414 return false;
1415
1416 switch (Load1->getMachineOpcode()) {
1417 default:
1418 return false;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00001419 case ARM::LDRi12:
Jim Grosbach5a7c7152010-10-27 00:19:44 +00001420 case ARM::LDRBi12:
Bill Wendlingf4707472010-06-23 23:00:16 +00001421 case ARM::LDRD:
1422 case ARM::LDRH:
1423 case ARM::LDRSB:
1424 case ARM::LDRSH:
1425 case ARM::VLDRD:
1426 case ARM::VLDRS:
1427 case ARM::t2LDRi8:
1428 case ARM::t2LDRDi8:
1429 case ARM::t2LDRSHi8:
1430 case ARM::t2LDRi12:
1431 case ARM::t2LDRSHi12:
1432 break;
1433 }
1434
1435 switch (Load2->getMachineOpcode()) {
1436 default:
1437 return false;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00001438 case ARM::LDRi12:
Jim Grosbach5a7c7152010-10-27 00:19:44 +00001439 case ARM::LDRBi12:
Bill Wendlingf4707472010-06-23 23:00:16 +00001440 case ARM::LDRD:
1441 case ARM::LDRH:
1442 case ARM::LDRSB:
1443 case ARM::LDRSH:
1444 case ARM::VLDRD:
1445 case ARM::VLDRS:
1446 case ARM::t2LDRi8:
Bill Wendlingf4707472010-06-23 23:00:16 +00001447 case ARM::t2LDRSHi8:
1448 case ARM::t2LDRi12:
1449 case ARM::t2LDRSHi12:
1450 break;
1451 }
1452
1453 // Check if base addresses and chain operands match.
1454 if (Load1->getOperand(0) != Load2->getOperand(0) ||
1455 Load1->getOperand(4) != Load2->getOperand(4))
1456 return false;
1457
1458 // Index should be Reg0.
1459 if (Load1->getOperand(3) != Load2->getOperand(3))
1460 return false;
1461
1462 // Determine the offsets.
1463 if (isa<ConstantSDNode>(Load1->getOperand(1)) &&
1464 isa<ConstantSDNode>(Load2->getOperand(1))) {
1465 Offset1 = cast<ConstantSDNode>(Load1->getOperand(1))->getSExtValue();
1466 Offset2 = cast<ConstantSDNode>(Load2->getOperand(1))->getSExtValue();
1467 return true;
1468 }
1469
1470 return false;
1471}
1472
1473/// shouldScheduleLoadsNear - This is a used by the pre-regalloc scheduler to
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00001474/// determine (in conjunction with areLoadsFromSameBasePtr) if two loads should
Bill Wendlingf4707472010-06-23 23:00:16 +00001475/// be scheduled togther. On some targets if two loads are loading from
1476/// addresses in the same cache line, it's better if they are scheduled
1477/// together. This function takes two integers that represent the load offsets
1478/// from the common base address. It returns true if it decides it's desirable
1479/// to schedule the two loads together. "NumLoads" is the number of loads that
1480/// have already been scheduled after Load1.
Andrew Tricka7714a02012-11-12 19:40:10 +00001481///
1482/// FIXME: remove this in favor of the MachineInstr interface once pre-RA-sched
1483/// is permanently disabled.
Bill Wendlingf4707472010-06-23 23:00:16 +00001484bool ARMBaseInstrInfo::shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
1485 int64_t Offset1, int64_t Offset2,
1486 unsigned NumLoads) const {
1487 // Don't worry about Thumb: just ARM and Thumb2.
1488 if (Subtarget.isThumb1Only()) return false;
1489
1490 assert(Offset2 > Offset1);
1491
1492 if ((Offset2 - Offset1) / 8 > 64)
1493 return false;
1494
1495 if (Load1->getMachineOpcode() != Load2->getMachineOpcode())
1496 return false; // FIXME: overly conservative?
1497
1498 // Four loads in a row should be sufficient.
1499 if (NumLoads >= 3)
1500 return false;
1501
1502 return true;
1503}
1504
Evan Cheng2d51c7c2010-06-18 23:09:54 +00001505bool ARMBaseInstrInfo::isSchedulingBoundary(const MachineInstr *MI,
1506 const MachineBasicBlock *MBB,
1507 const MachineFunction &MF) const {
Jim Grosbachba3ece62010-06-25 18:43:14 +00001508 // Debug info is never a scheduling boundary. It's necessary to be explicit
1509 // due to the special treatment of IT instructions below, otherwise a
1510 // dbg_value followed by an IT will result in the IT instruction being
1511 // considered a scheduling hazard, which is wrong. It should be the actual
1512 // instruction preceding the dbg_value instruction(s), just like it is
1513 // when debug info is not present.
1514 if (MI->isDebugValue())
1515 return false;
1516
Evan Cheng2d51c7c2010-06-18 23:09:54 +00001517 // Terminators and labels can't be scheduled around.
Evan Cheng7f8e5632011-12-07 07:15:52 +00001518 if (MI->isTerminator() || MI->isLabel())
Evan Cheng2d51c7c2010-06-18 23:09:54 +00001519 return true;
1520
1521 // Treat the start of the IT block as a scheduling boundary, but schedule
1522 // t2IT along with all instructions following it.
1523 // FIXME: This is a big hammer. But the alternative is to add all potential
1524 // true and anti dependencies to IT block instructions as implicit operands
1525 // to the t2IT instruction. The added compile time and complexity does not
1526 // seem worth it.
1527 MachineBasicBlock::const_iterator I = MI;
Jim Grosbachba3ece62010-06-25 18:43:14 +00001528 // Make sure to skip any dbg_value instructions
1529 while (++I != MBB->end() && I->isDebugValue())
1530 ;
1531 if (I != MBB->end() && I->getOpcode() == ARM::t2IT)
Evan Cheng2d51c7c2010-06-18 23:09:54 +00001532 return true;
1533
1534 // Don't attempt to schedule around any instruction that defines
1535 // a stack-oriented pointer, as it's unlikely to be profitable. This
1536 // saves compile time, because it doesn't require every single
1537 // stack slot reference to depend on the instruction that does the
1538 // modification.
Jakob Stoklund Olesen6909faa2012-02-21 23:47:43 +00001539 // Calls don't actually change the stack pointer, even if they have imp-defs.
Jakob Stoklund Olesen5f37f1c2012-02-22 01:07:19 +00001540 // No ARM calling conventions change the stack pointer. (X86 calling
1541 // conventions sometimes do).
Jakob Stoklund Olesen6909faa2012-02-21 23:47:43 +00001542 if (!MI->isCall() && MI->definesRegister(ARM::SP))
Evan Cheng2d51c7c2010-06-18 23:09:54 +00001543 return true;
1544
1545 return false;
1546}
1547
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001548bool ARMBaseInstrInfo::
1549isProfitableToIfCvt(MachineBasicBlock &MBB,
1550 unsigned NumCycles, unsigned ExtraPredCycles,
1551 const BranchProbability &Probability) const {
Cameron Zwarich80018502011-04-13 06:39:16 +00001552 if (!NumCycles)
Evan Cheng02b184d2010-06-25 22:42:03 +00001553 return false;
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00001554
Owen Anderson88af7d02010-09-28 18:32:13 +00001555 // Attempt to estimate the relative costs of predication versus branching.
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001556 unsigned UnpredCost = Probability.getNumerator() * NumCycles;
1557 UnpredCost /= Probability.getDenominator();
1558 UnpredCost += 1; // The branch itself
1559 UnpredCost += Subtarget.getMispredictionPenalty() / 10;
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00001560
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001561 return (NumCycles + ExtraPredCycles) <= UnpredCost;
Evan Cheng02b184d2010-06-25 22:42:03 +00001562}
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00001563
Evan Cheng02b184d2010-06-25 22:42:03 +00001564bool ARMBaseInstrInfo::
Evan Chengdebf9c52010-11-03 00:45:17 +00001565isProfitableToIfCvt(MachineBasicBlock &TMBB,
1566 unsigned TCycles, unsigned TExtra,
1567 MachineBasicBlock &FMBB,
1568 unsigned FCycles, unsigned FExtra,
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001569 const BranchProbability &Probability) const {
Evan Chengdebf9c52010-11-03 00:45:17 +00001570 if (!TCycles || !FCycles)
Owen Anderson88af7d02010-09-28 18:32:13 +00001571 return false;
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00001572
Owen Anderson88af7d02010-09-28 18:32:13 +00001573 // Attempt to estimate the relative costs of predication versus branching.
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001574 unsigned TUnpredCost = Probability.getNumerator() * TCycles;
1575 TUnpredCost /= Probability.getDenominator();
Andrew Trick3f1fdf12011-09-21 02:17:37 +00001576
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001577 uint32_t Comp = Probability.getDenominator() - Probability.getNumerator();
1578 unsigned FUnpredCost = Comp * FCycles;
1579 FUnpredCost /= Probability.getDenominator();
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00001580
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001581 unsigned UnpredCost = TUnpredCost + FUnpredCost;
1582 UnpredCost += 1; // The branch itself
1583 UnpredCost += Subtarget.getMispredictionPenalty() / 10;
1584
1585 return (TCycles + FCycles + TExtra + FExtra) <= UnpredCost;
Evan Cheng02b184d2010-06-25 22:42:03 +00001586}
1587
Bob Wilsone8a549c2012-09-29 21:43:49 +00001588bool
1589ARMBaseInstrInfo::isProfitableToUnpredicate(MachineBasicBlock &TMBB,
1590 MachineBasicBlock &FMBB) const {
1591 // Reduce false anti-dependencies to let Swift's out-of-order execution
1592 // engine do its thing.
1593 return Subtarget.isSwift();
1594}
1595
Evan Cheng2aa91cc2009-08-08 03:20:32 +00001596/// getInstrPredicate - If instruction is predicated, returns its predicate
1597/// condition, otherwise returns AL. It also returns the condition code
1598/// register by reference.
Evan Cheng83e0d482009-09-28 09:14:39 +00001599ARMCC::CondCodes
1600llvm::getInstrPredicate(const MachineInstr *MI, unsigned &PredReg) {
Evan Cheng2aa91cc2009-08-08 03:20:32 +00001601 int PIdx = MI->findFirstPredOperandIdx();
1602 if (PIdx == -1) {
1603 PredReg = 0;
1604 return ARMCC::AL;
1605 }
1606
1607 PredReg = MI->getOperand(PIdx+1).getReg();
1608 return (ARMCC::CondCodes)MI->getOperand(PIdx).getImm();
1609}
1610
1611
Evan Cheng780748d2009-07-28 05:48:47 +00001612int llvm::getMatchingCondBranchOpcode(int Opc) {
Evan Cheng056c6692009-07-27 18:20:05 +00001613 if (Opc == ARM::B)
1614 return ARM::Bcc;
David Blaikie46a9f012012-01-20 21:51:11 +00001615 if (Opc == ARM::tB)
Evan Cheng056c6692009-07-27 18:20:05 +00001616 return ARM::tBcc;
David Blaikie46a9f012012-01-20 21:51:11 +00001617 if (Opc == ARM::t2B)
1618 return ARM::t2Bcc;
Evan Cheng056c6692009-07-27 18:20:05 +00001619
1620 llvm_unreachable("Unknown unconditional branch opcode!");
Evan Cheng056c6692009-07-27 18:20:05 +00001621}
1622
Jakob Stoklund Olesen0a5b72f2012-04-04 18:23:42 +00001623/// commuteInstruction - Handle commutable instructions.
1624MachineInstr *
1625ARMBaseInstrInfo::commuteInstruction(MachineInstr *MI, bool NewMI) const {
1626 switch (MI->getOpcode()) {
1627 case ARM::MOVCCr:
1628 case ARM::t2MOVCCr: {
1629 // MOVCC can be commuted by inverting the condition.
1630 unsigned PredReg = 0;
1631 ARMCC::CondCodes CC = getInstrPredicate(MI, PredReg);
1632 // MOVCC AL can't be inverted. Shouldn't happen.
1633 if (CC == ARMCC::AL || PredReg != ARM::CPSR)
1634 return NULL;
Jakob Stoklund Olesen9de596e2012-11-28 02:35:17 +00001635 MI = TargetInstrInfo::commuteInstruction(MI, NewMI);
Jakob Stoklund Olesen0a5b72f2012-04-04 18:23:42 +00001636 if (!MI)
1637 return NULL;
1638 // After swapping the MOVCC operands, also invert the condition.
1639 MI->getOperand(MI->findFirstPredOperandIdx())
1640 .setImm(ARMCC::getOppositeCondition(CC));
1641 return MI;
1642 }
1643 }
Jakob Stoklund Olesen9de596e2012-11-28 02:35:17 +00001644 return TargetInstrInfo::commuteInstruction(MI, NewMI);
Jakob Stoklund Olesen0a5b72f2012-04-04 18:23:42 +00001645}
Evan Cheng780748d2009-07-28 05:48:47 +00001646
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001647/// Identify instructions that can be folded into a MOVCC instruction, and
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001648/// return the defining instruction.
1649static MachineInstr *canFoldIntoMOVCC(unsigned Reg,
1650 const MachineRegisterInfo &MRI,
1651 const TargetInstrInfo *TII) {
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001652 if (!TargetRegisterInfo::isVirtualRegister(Reg))
1653 return 0;
1654 if (!MRI.hasOneNonDBGUse(Reg))
1655 return 0;
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001656 MachineInstr *MI = MRI.getVRegDef(Reg);
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001657 if (!MI)
1658 return 0;
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001659 // MI is folded into the MOVCC by predicating it.
1660 if (!MI->isPredicable())
1661 return 0;
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001662 // Check if MI has any non-dead defs or physreg uses. This also detects
1663 // predicated instructions which will be reading CPSR.
1664 for (unsigned i = 1, e = MI->getNumOperands(); i != e; ++i) {
1665 const MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesen7b1a2e82012-08-17 20:55:34 +00001666 // Reject frame index operands, PEI can't handle the predicated pseudos.
1667 if (MO.isFI() || MO.isCPI() || MO.isJTI())
1668 return 0;
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001669 if (!MO.isReg())
1670 continue;
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001671 // MI can't have any tied operands, that would conflict with predication.
1672 if (MO.isTied())
1673 return 0;
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001674 if (TargetRegisterInfo::isPhysicalRegister(MO.getReg()))
1675 return 0;
1676 if (MO.isDef() && !MO.isDead())
1677 return 0;
1678 }
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001679 bool DontMoveAcrossStores = true;
1680 if (!MI->isSafeToMove(TII, /* AliasAnalysis = */ 0, DontMoveAcrossStores))
1681 return 0;
1682 return MI;
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001683}
1684
Jakob Stoklund Olesenc19bf022012-08-16 23:14:20 +00001685bool ARMBaseInstrInfo::analyzeSelect(const MachineInstr *MI,
1686 SmallVectorImpl<MachineOperand> &Cond,
1687 unsigned &TrueOp, unsigned &FalseOp,
1688 bool &Optimizable) const {
1689 assert((MI->getOpcode() == ARM::MOVCCr || MI->getOpcode() == ARM::t2MOVCCr) &&
1690 "Unknown select instruction");
1691 // MOVCC operands:
1692 // 0: Def.
1693 // 1: True use.
1694 // 2: False use.
1695 // 3: Condition code.
1696 // 4: CPSR use.
1697 TrueOp = 1;
1698 FalseOp = 2;
1699 Cond.push_back(MI->getOperand(3));
1700 Cond.push_back(MI->getOperand(4));
1701 // We can always fold a def.
1702 Optimizable = true;
1703 return false;
1704}
1705
1706MachineInstr *ARMBaseInstrInfo::optimizeSelect(MachineInstr *MI,
1707 bool PreferFalse) const {
1708 assert((MI->getOpcode() == ARM::MOVCCr || MI->getOpcode() == ARM::t2MOVCCr) &&
1709 "Unknown select instruction");
1710 const MachineRegisterInfo &MRI = MI->getParent()->getParent()->getRegInfo();
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001711 MachineInstr *DefMI = canFoldIntoMOVCC(MI->getOperand(2).getReg(), MRI, this);
1712 bool Invert = !DefMI;
1713 if (!DefMI)
1714 DefMI = canFoldIntoMOVCC(MI->getOperand(1).getReg(), MRI, this);
1715 if (!DefMI)
Jakob Stoklund Olesenc19bf022012-08-16 23:14:20 +00001716 return 0;
1717
1718 // Create a new predicated version of DefMI.
1719 // Rfalse is the first use.
1720 MachineInstrBuilder NewMI = BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001721 DefMI->getDesc(),
1722 MI->getOperand(0).getReg());
Jakob Stoklund Olesenc19bf022012-08-16 23:14:20 +00001723
1724 // Copy all the DefMI operands, excluding its (null) predicate.
1725 const MCInstrDesc &DefDesc = DefMI->getDesc();
1726 for (unsigned i = 1, e = DefDesc.getNumOperands();
1727 i != e && !DefDesc.OpInfo[i].isPredicate(); ++i)
1728 NewMI.addOperand(DefMI->getOperand(i));
1729
1730 unsigned CondCode = MI->getOperand(3).getImm();
1731 if (Invert)
1732 NewMI.addImm(ARMCC::getOppositeCondition(ARMCC::CondCodes(CondCode)));
1733 else
1734 NewMI.addImm(CondCode);
1735 NewMI.addOperand(MI->getOperand(4));
1736
1737 // DefMI is not the -S version that sets CPSR, so add an optional %noreg.
1738 if (NewMI->hasOptionalDef())
1739 AddDefaultCC(NewMI);
1740
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001741 // The output register value when the predicate is false is an implicit
1742 // register operand tied to the first def.
1743 // The tie makes the register allocator ensure the FalseReg is allocated the
1744 // same register as operand 0.
1745 MachineOperand FalseReg = MI->getOperand(Invert ? 2 : 1);
1746 FalseReg.setImplicit();
Jakob Stoklund Olesen2ea20362012-12-20 22:53:55 +00001747 NewMI.addOperand(FalseReg);
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001748 NewMI->tieOperands(0, NewMI->getNumOperands() - 1);
1749
Jakob Stoklund Olesenc19bf022012-08-16 23:14:20 +00001750 // The caller will erase MI, but not DefMI.
1751 DefMI->eraseFromParent();
1752 return NewMI;
1753}
1754
Andrew Trick924123a2011-09-21 02:20:46 +00001755/// Map pseudo instructions that imply an 'S' bit onto real opcodes. Whether the
1756/// instruction is encoded with an 'S' bit is determined by the optional CPSR
1757/// def operand.
1758///
1759/// This will go away once we can teach tblgen how to set the optional CPSR def
1760/// operand itself.
1761struct AddSubFlagsOpcodePair {
Craig Topper2fbd1302012-05-24 03:59:11 +00001762 uint16_t PseudoOpc;
1763 uint16_t MachineOpc;
Andrew Trick924123a2011-09-21 02:20:46 +00001764};
1765
Craig Topper2fbd1302012-05-24 03:59:11 +00001766static const AddSubFlagsOpcodePair AddSubFlagsOpcodeMap[] = {
Andrew Trick924123a2011-09-21 02:20:46 +00001767 {ARM::ADDSri, ARM::ADDri},
1768 {ARM::ADDSrr, ARM::ADDrr},
1769 {ARM::ADDSrsi, ARM::ADDrsi},
1770 {ARM::ADDSrsr, ARM::ADDrsr},
1771
1772 {ARM::SUBSri, ARM::SUBri},
1773 {ARM::SUBSrr, ARM::SUBrr},
1774 {ARM::SUBSrsi, ARM::SUBrsi},
1775 {ARM::SUBSrsr, ARM::SUBrsr},
1776
1777 {ARM::RSBSri, ARM::RSBri},
Andrew Trick924123a2011-09-21 02:20:46 +00001778 {ARM::RSBSrsi, ARM::RSBrsi},
1779 {ARM::RSBSrsr, ARM::RSBrsr},
1780
1781 {ARM::t2ADDSri, ARM::t2ADDri},
1782 {ARM::t2ADDSrr, ARM::t2ADDrr},
1783 {ARM::t2ADDSrs, ARM::t2ADDrs},
1784
1785 {ARM::t2SUBSri, ARM::t2SUBri},
1786 {ARM::t2SUBSrr, ARM::t2SUBrr},
1787 {ARM::t2SUBSrs, ARM::t2SUBrs},
1788
1789 {ARM::t2RSBSri, ARM::t2RSBri},
1790 {ARM::t2RSBSrs, ARM::t2RSBrs},
1791};
1792
1793unsigned llvm::convertAddSubFlagsOpcode(unsigned OldOpc) {
Craig Topper2fbd1302012-05-24 03:59:11 +00001794 for (unsigned i = 0, e = array_lengthof(AddSubFlagsOpcodeMap); i != e; ++i)
1795 if (OldOpc == AddSubFlagsOpcodeMap[i].PseudoOpc)
1796 return AddSubFlagsOpcodeMap[i].MachineOpc;
Andrew Trick924123a2011-09-21 02:20:46 +00001797 return 0;
1798}
1799
Evan Cheng780748d2009-07-28 05:48:47 +00001800void llvm::emitARMRegPlusImmediate(MachineBasicBlock &MBB,
1801 MachineBasicBlock::iterator &MBBI, DebugLoc dl,
1802 unsigned DestReg, unsigned BaseReg, int NumBytes,
1803 ARMCC::CondCodes Pred, unsigned PredReg,
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001804 const ARMBaseInstrInfo &TII, unsigned MIFlags) {
Evan Cheng780748d2009-07-28 05:48:47 +00001805 bool isSub = NumBytes < 0;
1806 if (isSub) NumBytes = -NumBytes;
1807
1808 while (NumBytes) {
1809 unsigned RotAmt = ARM_AM::getSOImmValRotate(NumBytes);
1810 unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt);
1811 assert(ThisVal && "Didn't extract field correctly");
1812
1813 // We will handle these bits from offset, clear them.
1814 NumBytes &= ~ThisVal;
1815
1816 assert(ARM_AM::getSOImmVal(ThisVal) != -1 && "Bit extraction didn't work?");
1817
1818 // Build the new ADD / SUB.
1819 unsigned Opc = isSub ? ARM::SUBri : ARM::ADDri;
1820 BuildMI(MBB, MBBI, dl, TII.get(Opc), DestReg)
1821 .addReg(BaseReg, RegState::Kill).addImm(ThisVal)
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001822 .addImm((unsigned)Pred).addReg(PredReg).addReg(0)
1823 .setMIFlags(MIFlags);
Evan Cheng780748d2009-07-28 05:48:47 +00001824 BaseReg = DestReg;
1825 }
1826}
1827
Evan Cheng7a37b1a2009-08-27 01:23:50 +00001828bool llvm::rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
1829 unsigned FrameReg, int &Offset,
1830 const ARMBaseInstrInfo &TII) {
Evan Cheng780748d2009-07-28 05:48:47 +00001831 unsigned Opcode = MI.getOpcode();
Evan Cheng6cc775f2011-06-28 19:10:37 +00001832 const MCInstrDesc &Desc = MI.getDesc();
Evan Cheng780748d2009-07-28 05:48:47 +00001833 unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
1834 bool isSub = false;
Jim Grosbachf24f9d92009-08-11 15:33:49 +00001835
Evan Cheng780748d2009-07-28 05:48:47 +00001836 // Memory operands in inline assembly always use AddrMode2.
1837 if (Opcode == ARM::INLINEASM)
1838 AddrMode = ARMII::AddrMode2;
Jim Grosbachf24f9d92009-08-11 15:33:49 +00001839
Evan Cheng780748d2009-07-28 05:48:47 +00001840 if (Opcode == ARM::ADDri) {
1841 Offset += MI.getOperand(FrameRegIdx+1).getImm();
1842 if (Offset == 0) {
1843 // Turn it into a move.
1844 MI.setDesc(TII.get(ARM::MOVr));
1845 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1846 MI.RemoveOperand(FrameRegIdx+1);
Evan Cheng7a37b1a2009-08-27 01:23:50 +00001847 Offset = 0;
1848 return true;
Evan Cheng780748d2009-07-28 05:48:47 +00001849 } else if (Offset < 0) {
1850 Offset = -Offset;
1851 isSub = true;
1852 MI.setDesc(TII.get(ARM::SUBri));
1853 }
1854
1855 // Common case: small offset, fits into instruction.
1856 if (ARM_AM::getSOImmVal(Offset) != -1) {
1857 // Replace the FrameIndex with sp / fp
1858 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1859 MI.getOperand(FrameRegIdx+1).ChangeToImmediate(Offset);
Evan Cheng7a37b1a2009-08-27 01:23:50 +00001860 Offset = 0;
1861 return true;
Evan Cheng780748d2009-07-28 05:48:47 +00001862 }
1863
1864 // Otherwise, pull as much of the immedidate into this ADDri/SUBri
1865 // as possible.
1866 unsigned RotAmt = ARM_AM::getSOImmValRotate(Offset);
1867 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xFF, RotAmt);
1868
1869 // We will handle these bits from offset, clear them.
1870 Offset &= ~ThisImmVal;
1871
1872 // Get the properly encoded SOImmVal field.
1873 assert(ARM_AM::getSOImmVal(ThisImmVal) != -1 &&
1874 "Bit extraction didn't work?");
1875 MI.getOperand(FrameRegIdx+1).ChangeToImmediate(ThisImmVal);
1876 } else {
1877 unsigned ImmIdx = 0;
1878 int InstrOffs = 0;
1879 unsigned NumBits = 0;
1880 unsigned Scale = 1;
1881 switch (AddrMode) {
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00001882 case ARMII::AddrMode_i12: {
1883 ImmIdx = FrameRegIdx + 1;
1884 InstrOffs = MI.getOperand(ImmIdx).getImm();
1885 NumBits = 12;
1886 break;
1887 }
Evan Cheng780748d2009-07-28 05:48:47 +00001888 case ARMII::AddrMode2: {
1889 ImmIdx = FrameRegIdx+2;
1890 InstrOffs = ARM_AM::getAM2Offset(MI.getOperand(ImmIdx).getImm());
1891 if (ARM_AM::getAM2Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1892 InstrOffs *= -1;
1893 NumBits = 12;
1894 break;
1895 }
1896 case ARMII::AddrMode3: {
1897 ImmIdx = FrameRegIdx+2;
1898 InstrOffs = ARM_AM::getAM3Offset(MI.getOperand(ImmIdx).getImm());
1899 if (ARM_AM::getAM3Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1900 InstrOffs *= -1;
1901 NumBits = 8;
1902 break;
1903 }
Anton Korobeynikov887d05c2009-08-08 13:35:48 +00001904 case ARMII::AddrMode4:
Jim Grosbach01c1cae2009-11-15 21:45:34 +00001905 case ARMII::AddrMode6:
Evan Cheng7a37b1a2009-08-27 01:23:50 +00001906 // Can't fold any offset even if it's zero.
1907 return false;
Evan Cheng780748d2009-07-28 05:48:47 +00001908 case ARMII::AddrMode5: {
1909 ImmIdx = FrameRegIdx+1;
1910 InstrOffs = ARM_AM::getAM5Offset(MI.getOperand(ImmIdx).getImm());
1911 if (ARM_AM::getAM5Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1912 InstrOffs *= -1;
1913 NumBits = 8;
1914 Scale = 4;
1915 break;
1916 }
1917 default:
1918 llvm_unreachable("Unsupported addressing mode!");
Evan Cheng780748d2009-07-28 05:48:47 +00001919 }
1920
1921 Offset += InstrOffs * Scale;
1922 assert((Offset & (Scale-1)) == 0 && "Can't encode this offset!");
1923 if (Offset < 0) {
1924 Offset = -Offset;
1925 isSub = true;
1926 }
1927
1928 // Attempt to fold address comp. if opcode has offset bits
1929 if (NumBits > 0) {
1930 // Common case: small offset, fits into instruction.
1931 MachineOperand &ImmOp = MI.getOperand(ImmIdx);
1932 int ImmedOffset = Offset / Scale;
1933 unsigned Mask = (1 << NumBits) - 1;
1934 if ((unsigned)Offset <= Mask * Scale) {
1935 // Replace the FrameIndex with sp
1936 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
Jim Grosbach9d2d1f02010-10-27 01:19:41 +00001937 // FIXME: When addrmode2 goes away, this will simplify (like the
1938 // T2 version), as the LDR.i12 versions don't need the encoding
1939 // tricks for the offset value.
1940 if (isSub) {
1941 if (AddrMode == ARMII::AddrMode_i12)
1942 ImmedOffset = -ImmedOffset;
1943 else
1944 ImmedOffset |= 1 << NumBits;
1945 }
Evan Cheng780748d2009-07-28 05:48:47 +00001946 ImmOp.ChangeToImmediate(ImmedOffset);
Evan Cheng7a37b1a2009-08-27 01:23:50 +00001947 Offset = 0;
1948 return true;
Evan Cheng780748d2009-07-28 05:48:47 +00001949 }
Jim Grosbachf24f9d92009-08-11 15:33:49 +00001950
Evan Cheng780748d2009-07-28 05:48:47 +00001951 // Otherwise, it didn't fit. Pull in what we can to simplify the immed.
1952 ImmedOffset = ImmedOffset & Mask;
Jim Grosbach8bf14832010-10-27 16:50:31 +00001953 if (isSub) {
1954 if (AddrMode == ARMII::AddrMode_i12)
1955 ImmedOffset = -ImmedOffset;
1956 else
1957 ImmedOffset |= 1 << NumBits;
1958 }
Evan Cheng780748d2009-07-28 05:48:47 +00001959 ImmOp.ChangeToImmediate(ImmedOffset);
1960 Offset &= ~(Mask*Scale);
1961 }
1962 }
1963
Evan Cheng7a37b1a2009-08-27 01:23:50 +00001964 Offset = (isSub) ? -Offset : Offset;
1965 return Offset == 0;
Evan Cheng780748d2009-07-28 05:48:47 +00001966}
Bill Wendling7de9d522010-08-06 01:32:48 +00001967
Manman Ren6fa76dc2012-06-29 21:33:59 +00001968/// analyzeCompare - For a comparison instruction, return the source registers
1969/// in SrcReg and SrcReg2 if having two register operands, and the value it
1970/// compares against in CmpValue. Return true if the comparison instruction
1971/// can be analyzed.
Bill Wendling7de9d522010-08-06 01:32:48 +00001972bool ARMBaseInstrInfo::
Manman Ren6fa76dc2012-06-29 21:33:59 +00001973analyzeCompare(const MachineInstr *MI, unsigned &SrcReg, unsigned &SrcReg2,
1974 int &CmpMask, int &CmpValue) const {
Bill Wendling7de9d522010-08-06 01:32:48 +00001975 switch (MI->getOpcode()) {
1976 default: break;
Bill Wendling79553ba2010-08-11 00:23:00 +00001977 case ARM::CMPri:
Bill Wendling7de9d522010-08-06 01:32:48 +00001978 case ARM::t2CMPri:
Bill Wendling7de9d522010-08-06 01:32:48 +00001979 SrcReg = MI->getOperand(0).getReg();
Manman Ren6fa76dc2012-06-29 21:33:59 +00001980 SrcReg2 = 0;
Gabor Greifadbbb932010-09-21 12:01:15 +00001981 CmpMask = ~0;
Bill Wendling7de9d522010-08-06 01:32:48 +00001982 CmpValue = MI->getOperand(1).getImm();
1983 return true;
Manman Rendc8ad002012-05-11 01:30:47 +00001984 case ARM::CMPrr:
1985 case ARM::t2CMPrr:
1986 SrcReg = MI->getOperand(0).getReg();
Manman Ren6fa76dc2012-06-29 21:33:59 +00001987 SrcReg2 = MI->getOperand(1).getReg();
Manman Rendc8ad002012-05-11 01:30:47 +00001988 CmpMask = ~0;
1989 CmpValue = 0;
1990 return true;
Gabor Greifadbbb932010-09-21 12:01:15 +00001991 case ARM::TSTri:
1992 case ARM::t2TSTri:
1993 SrcReg = MI->getOperand(0).getReg();
Manman Ren6fa76dc2012-06-29 21:33:59 +00001994 SrcReg2 = 0;
Gabor Greifadbbb932010-09-21 12:01:15 +00001995 CmpMask = MI->getOperand(1).getImm();
1996 CmpValue = 0;
1997 return true;
1998 }
1999
2000 return false;
2001}
2002
Gabor Greifd36e3e82010-09-29 10:12:08 +00002003/// isSuitableForMask - Identify a suitable 'and' instruction that
2004/// operates on the given source register and applies the same mask
2005/// as a 'tst' instruction. Provide a limited look-through for copies.
2006/// When successful, MI will hold the found instruction.
2007static bool isSuitableForMask(MachineInstr *&MI, unsigned SrcReg,
Gabor Greif1a25ae82010-09-21 13:30:57 +00002008 int CmpMask, bool CommonUse) {
Gabor Greifd36e3e82010-09-29 10:12:08 +00002009 switch (MI->getOpcode()) {
Gabor Greifadbbb932010-09-21 12:01:15 +00002010 case ARM::ANDri:
2011 case ARM::t2ANDri:
Gabor Greifd36e3e82010-09-29 10:12:08 +00002012 if (CmpMask != MI->getOperand(2).getImm())
Gabor Greif1a25ae82010-09-21 13:30:57 +00002013 return false;
Gabor Greifd36e3e82010-09-29 10:12:08 +00002014 if (SrcReg == MI->getOperand(CommonUse ? 1 : 0).getReg())
Gabor Greifadbbb932010-09-21 12:01:15 +00002015 return true;
2016 break;
Gabor Greifd36e3e82010-09-29 10:12:08 +00002017 case ARM::COPY: {
2018 // Walk down one instruction which is potentially an 'and'.
2019 const MachineInstr &Copy = *MI;
Michael J. Spencer70ac5fa2010-10-05 06:00:43 +00002020 MachineBasicBlock::iterator AND(
2021 llvm::next(MachineBasicBlock::iterator(MI)));
Gabor Greifd36e3e82010-09-29 10:12:08 +00002022 if (AND == MI->getParent()->end()) return false;
2023 MI = AND;
2024 return isSuitableForMask(MI, Copy.getOperand(0).getReg(),
2025 CmpMask, true);
2026 }
Bill Wendling7de9d522010-08-06 01:32:48 +00002027 }
2028
2029 return false;
2030}
2031
Manman Renb1b3db62012-06-29 22:06:19 +00002032/// getSwappedCondition - assume the flags are set by MI(a,b), return
2033/// the condition code if we modify the instructions such that flags are
2034/// set by MI(b,a).
2035inline static ARMCC::CondCodes getSwappedCondition(ARMCC::CondCodes CC) {
2036 switch (CC) {
2037 default: return ARMCC::AL;
2038 case ARMCC::EQ: return ARMCC::EQ;
2039 case ARMCC::NE: return ARMCC::NE;
2040 case ARMCC::HS: return ARMCC::LS;
2041 case ARMCC::LO: return ARMCC::HI;
2042 case ARMCC::HI: return ARMCC::LO;
2043 case ARMCC::LS: return ARMCC::HS;
2044 case ARMCC::GE: return ARMCC::LE;
2045 case ARMCC::LT: return ARMCC::GT;
2046 case ARMCC::GT: return ARMCC::LT;
2047 case ARMCC::LE: return ARMCC::GE;
2048 }
2049}
2050
2051/// isRedundantFlagInstr - check whether the first instruction, whose only
2052/// purpose is to update flags, can be made redundant.
2053/// CMPrr can be made redundant by SUBrr if the operands are the same.
2054/// CMPri can be made redundant by SUBri if the operands are the same.
2055/// This function can be extended later on.
2056inline static bool isRedundantFlagInstr(MachineInstr *CmpI, unsigned SrcReg,
2057 unsigned SrcReg2, int ImmValue,
2058 MachineInstr *OI) {
2059 if ((CmpI->getOpcode() == ARM::CMPrr ||
2060 CmpI->getOpcode() == ARM::t2CMPrr) &&
2061 (OI->getOpcode() == ARM::SUBrr ||
2062 OI->getOpcode() == ARM::t2SUBrr) &&
2063 ((OI->getOperand(1).getReg() == SrcReg &&
2064 OI->getOperand(2).getReg() == SrcReg2) ||
2065 (OI->getOperand(1).getReg() == SrcReg2 &&
2066 OI->getOperand(2).getReg() == SrcReg)))
2067 return true;
2068
2069 if ((CmpI->getOpcode() == ARM::CMPri ||
2070 CmpI->getOpcode() == ARM::t2CMPri) &&
2071 (OI->getOpcode() == ARM::SUBri ||
2072 OI->getOpcode() == ARM::t2SUBri) &&
2073 OI->getOperand(1).getReg() == SrcReg &&
2074 OI->getOperand(2).getImm() == ImmValue)
2075 return true;
2076 return false;
2077}
2078
Manman Ren6fa76dc2012-06-29 21:33:59 +00002079/// optimizeCompareInstr - Convert the instruction supplying the argument to the
2080/// comparison into one that sets the zero bit in the flags register;
2081/// Remove a redundant Compare instruction if an earlier instruction can set the
2082/// flags in the same way as Compare.
2083/// E.g. SUBrr(r1,r2) and CMPrr(r1,r2). We also handle the case where two
2084/// operands are swapped: SUBrr(r1,r2) and CMPrr(r2,r1), by updating the
2085/// condition code of instructions which use the flags.
Bill Wendling7de9d522010-08-06 01:32:48 +00002086bool ARMBaseInstrInfo::
Manman Ren6fa76dc2012-06-29 21:33:59 +00002087optimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, unsigned SrcReg2,
2088 int CmpMask, int CmpValue,
2089 const MachineRegisterInfo *MRI) const {
Manman Renb1b3db62012-06-29 22:06:19 +00002090 // Get the unique definition of SrcReg.
2091 MachineInstr *MI = MRI->getUniqueVRegDef(SrcReg);
2092 if (!MI) return false;
Bill Wendling04123002010-09-10 23:34:19 +00002093
Gabor Greifadbbb932010-09-21 12:01:15 +00002094 // Masked compares sometimes use the same register as the corresponding 'and'.
2095 if (CmpMask != ~0) {
Jakob Stoklund Olesen8b9dce52012-09-10 19:17:25 +00002096 if (!isSuitableForMask(MI, SrcReg, CmpMask, false) || isPredicated(MI)) {
Gabor Greifadbbb932010-09-21 12:01:15 +00002097 MI = 0;
Bill Wendling337a3112010-10-18 21:22:31 +00002098 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(SrcReg),
2099 UE = MRI->use_end(); UI != UE; ++UI) {
Gabor Greifadbbb932010-09-21 12:01:15 +00002100 if (UI->getParent() != CmpInstr->getParent()) continue;
Gabor Greifd36e3e82010-09-29 10:12:08 +00002101 MachineInstr *PotentialAND = &*UI;
Jakob Stoklund Olesen8b9dce52012-09-10 19:17:25 +00002102 if (!isSuitableForMask(PotentialAND, SrcReg, CmpMask, true) ||
2103 isPredicated(PotentialAND))
Gabor Greifadbbb932010-09-21 12:01:15 +00002104 continue;
Gabor Greifd36e3e82010-09-29 10:12:08 +00002105 MI = PotentialAND;
Gabor Greifadbbb932010-09-21 12:01:15 +00002106 break;
2107 }
2108 if (!MI) return false;
2109 }
2110 }
2111
Manman Rendc8ad002012-05-11 01:30:47 +00002112 // Get ready to iterate backward from CmpInstr.
2113 MachineBasicBlock::iterator I = CmpInstr, E = MI,
2114 B = CmpInstr->getParent()->begin();
Bill Wendling59ebe442010-10-09 00:03:48 +00002115
2116 // Early exit if CmpInstr is at the beginning of the BB.
2117 if (I == B) return false;
2118
Manman Rendc8ad002012-05-11 01:30:47 +00002119 // There are two possible candidates which can be changed to set CPSR:
2120 // One is MI, the other is a SUB instruction.
2121 // For CMPrr(r1,r2), we are looking for SUB(r1,r2) or SUB(r2,r1).
2122 // For CMPri(r1, CmpValue), we are looking for SUBri(r1, CmpValue).
2123 MachineInstr *Sub = NULL;
Manman Ren6fa76dc2012-06-29 21:33:59 +00002124 if (SrcReg2 != 0)
Manman Rendc8ad002012-05-11 01:30:47 +00002125 // MI is not a candidate for CMPrr.
2126 MI = NULL;
Manman Ren6fa76dc2012-06-29 21:33:59 +00002127 else if (MI->getParent() != CmpInstr->getParent() || CmpValue != 0) {
Manman Rendc8ad002012-05-11 01:30:47 +00002128 // Conservatively refuse to convert an instruction which isn't in the same
2129 // BB as the comparison.
2130 // For CMPri, we need to check Sub, thus we can't return here.
Manman Ren0d5ec282012-05-11 15:36:46 +00002131 if (CmpInstr->getOpcode() == ARM::CMPri ||
Manman Rendc8ad002012-05-11 01:30:47 +00002132 CmpInstr->getOpcode() == ARM::t2CMPri)
2133 MI = NULL;
2134 else
2135 return false;
2136 }
2137
2138 // Check that CPSR isn't set between the comparison instruction and the one we
2139 // want to change. At the same time, search for Sub.
Manman Renb1b3db62012-06-29 22:06:19 +00002140 const TargetRegisterInfo *TRI = &getRegisterInfo();
Bill Wendling7de9d522010-08-06 01:32:48 +00002141 --I;
2142 for (; I != E; --I) {
2143 const MachineInstr &Instr = *I;
2144
Manman Renb1b3db62012-06-29 22:06:19 +00002145 if (Instr.modifiesRegister(ARM::CPSR, TRI) ||
2146 Instr.readsRegister(ARM::CPSR, TRI))
Bill Wendlingc6627ee2010-11-01 20:41:43 +00002147 // This instruction modifies or uses CPSR after the one we want to
2148 // change. We can't do this transformation.
Manman Renb1b3db62012-06-29 22:06:19 +00002149 return false;
Evan Chengd757c882010-09-21 23:49:07 +00002150
Manman Renb1b3db62012-06-29 22:06:19 +00002151 // Check whether CmpInstr can be made redundant by the current instruction.
2152 if (isRedundantFlagInstr(CmpInstr, SrcReg, SrcReg2, CmpValue, &*I)) {
Manman Rendc8ad002012-05-11 01:30:47 +00002153 Sub = &*I;
2154 break;
2155 }
2156
Evan Chengd757c882010-09-21 23:49:07 +00002157 if (I == B)
2158 // The 'and' is below the comparison instruction.
2159 return false;
Bill Wendling7de9d522010-08-06 01:32:48 +00002160 }
2161
Manman Rendc8ad002012-05-11 01:30:47 +00002162 // Return false if no candidates exist.
2163 if (!MI && !Sub)
2164 return false;
2165
2166 // The single candidate is called MI.
2167 if (!MI) MI = Sub;
2168
Jakob Stoklund Olesen8b9dce52012-09-10 19:17:25 +00002169 // We can't use a predicated instruction - it doesn't always write the flags.
2170 if (isPredicated(MI))
2171 return false;
2172
Bill Wendling7de9d522010-08-06 01:32:48 +00002173 switch (MI->getOpcode()) {
2174 default: break;
Cameron Zwarich93eae152011-04-15 20:28:28 +00002175 case ARM::RSBrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002176 case ARM::RSBri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002177 case ARM::RSCrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002178 case ARM::RSCri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002179 case ARM::ADDrr:
Bill Wendling79553ba2010-08-11 00:23:00 +00002180 case ARM::ADDri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002181 case ARM::ADCrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002182 case ARM::ADCri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002183 case ARM::SUBrr:
Bill Wendling79553ba2010-08-11 00:23:00 +00002184 case ARM::SUBri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002185 case ARM::SBCrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002186 case ARM::SBCri:
2187 case ARM::t2RSBri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002188 case ARM::t2ADDrr:
Bill Wendling79553ba2010-08-11 00:23:00 +00002189 case ARM::t2ADDri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002190 case ARM::t2ADCrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002191 case ARM::t2ADCri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002192 case ARM::t2SUBrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002193 case ARM::t2SUBri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002194 case ARM::t2SBCrr:
Cameron Zwarich0829b302011-04-15 20:45:00 +00002195 case ARM::t2SBCri:
2196 case ARM::ANDrr:
2197 case ARM::ANDri:
2198 case ARM::t2ANDrr:
Cameron Zwarich9c65e4d2011-04-15 21:24:38 +00002199 case ARM::t2ANDri:
2200 case ARM::ORRrr:
2201 case ARM::ORRri:
2202 case ARM::t2ORRrr:
2203 case ARM::t2ORRri:
2204 case ARM::EORrr:
2205 case ARM::EORri:
2206 case ARM::t2EORrr:
2207 case ARM::t2EORri: {
Manman Rendc8ad002012-05-11 01:30:47 +00002208 // Scan forward for the use of CPSR
2209 // When checking against MI: if it's a conditional code requires
Manman Ren34cb93e2012-07-11 22:51:44 +00002210 // checking of V bit, then this is not safe to do.
2211 // It is safe to remove CmpInstr if CPSR is redefined or killed.
2212 // If we are done with the basic block, we need to check whether CPSR is
2213 // live-out.
Manman Renb1b3db62012-06-29 22:06:19 +00002214 SmallVector<std::pair<MachineOperand*, ARMCC::CondCodes>, 4>
2215 OperandsToUpdate;
Evan Cheng425489d2011-03-23 22:52:04 +00002216 bool isSafe = false;
2217 I = CmpInstr;
Manman Rendc8ad002012-05-11 01:30:47 +00002218 E = CmpInstr->getParent()->end();
Evan Cheng425489d2011-03-23 22:52:04 +00002219 while (!isSafe && ++I != E) {
2220 const MachineInstr &Instr = *I;
2221 for (unsigned IO = 0, EO = Instr.getNumOperands();
2222 !isSafe && IO != EO; ++IO) {
2223 const MachineOperand &MO = Instr.getOperand(IO);
Jakob Stoklund Olesen4fad5b22012-02-17 19:23:15 +00002224 if (MO.isRegMask() && MO.clobbersPhysReg(ARM::CPSR)) {
2225 isSafe = true;
2226 break;
2227 }
Evan Cheng425489d2011-03-23 22:52:04 +00002228 if (!MO.isReg() || MO.getReg() != ARM::CPSR)
2229 continue;
2230 if (MO.isDef()) {
2231 isSafe = true;
2232 break;
2233 }
2234 // Condition code is after the operand before CPSR.
2235 ARMCC::CondCodes CC = (ARMCC::CondCodes)Instr.getOperand(IO-1).getImm();
Manman Renb1b3db62012-06-29 22:06:19 +00002236 if (Sub) {
2237 ARMCC::CondCodes NewCC = getSwappedCondition(CC);
2238 if (NewCC == ARMCC::AL)
Manman Rendc8ad002012-05-11 01:30:47 +00002239 return false;
Manman Renb1b3db62012-06-29 22:06:19 +00002240 // If we have SUB(r1, r2) and CMP(r2, r1), the condition code based
2241 // on CMP needs to be updated to be based on SUB.
2242 // Push the condition code operands to OperandsToUpdate.
2243 // If it is safe to remove CmpInstr, the condition code of these
2244 // operands will be modified.
2245 if (SrcReg2 != 0 && Sub->getOperand(1).getReg() == SrcReg2 &&
2246 Sub->getOperand(2).getReg() == SrcReg)
2247 OperandsToUpdate.push_back(std::make_pair(&((*I).getOperand(IO-1)),
2248 NewCC));
2249 }
Manman Rendc8ad002012-05-11 01:30:47 +00002250 else
2251 switch (CC) {
2252 default:
Manman Ren88a0d332012-07-11 23:47:00 +00002253 // CPSR can be used multiple times, we should continue.
Manman Rendc8ad002012-05-11 01:30:47 +00002254 break;
2255 case ARMCC::VS:
2256 case ARMCC::VC:
2257 case ARMCC::GE:
2258 case ARMCC::LT:
2259 case ARMCC::GT:
2260 case ARMCC::LE:
2261 return false;
2262 }
Evan Cheng425489d2011-03-23 22:52:04 +00002263 }
2264 }
2265
Manman Ren34cb93e2012-07-11 22:51:44 +00002266 // If CPSR is not killed nor re-defined, we should check whether it is
2267 // live-out. If it is live-out, do not optimize.
2268 if (!isSafe) {
2269 MachineBasicBlock *MBB = CmpInstr->getParent();
2270 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
2271 SE = MBB->succ_end(); SI != SE; ++SI)
2272 if ((*SI)->isLiveIn(ARM::CPSR))
2273 return false;
2274 }
Evan Cheng425489d2011-03-23 22:52:04 +00002275
Evan Cheng65536472010-11-17 08:06:50 +00002276 // Toggle the optional operand to CPSR.
2277 MI->getOperand(5).setReg(ARM::CPSR);
2278 MI->getOperand(5).setIsDef(true);
Jakob Stoklund Olesen8b9dce52012-09-10 19:17:25 +00002279 assert(!isPredicated(MI) && "Can't use flags from predicated instruction");
Bill Wendling7de9d522010-08-06 01:32:48 +00002280 CmpInstr->eraseFromParent();
Manman Rendc8ad002012-05-11 01:30:47 +00002281
2282 // Modify the condition code of operands in OperandsToUpdate.
2283 // Since we have SUB(r1, r2) and CMP(r2, r1), the condition code needs to
2284 // be changed from r2 > r1 to r1 < r2, from r2 < r1 to r1 > r2, etc.
Manman Renb1b3db62012-06-29 22:06:19 +00002285 for (unsigned i = 0, e = OperandsToUpdate.size(); i < e; i++)
2286 OperandsToUpdate[i].first->setImm(OperandsToUpdate[i].second);
Bill Wendling7de9d522010-08-06 01:32:48 +00002287 return true;
2288 }
Cameron Zwarich0829b302011-04-15 20:45:00 +00002289 }
Bill Wendling7de9d522010-08-06 01:32:48 +00002290
2291 return false;
2292}
Evan Cheng367a5df2010-09-09 18:18:55 +00002293
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00002294bool ARMBaseInstrInfo::FoldImmediate(MachineInstr *UseMI,
2295 MachineInstr *DefMI, unsigned Reg,
2296 MachineRegisterInfo *MRI) const {
2297 // Fold large immediates into add, sub, or, xor.
2298 unsigned DefOpc = DefMI->getOpcode();
2299 if (DefOpc != ARM::t2MOVi32imm && DefOpc != ARM::MOVi32imm)
2300 return false;
2301 if (!DefMI->getOperand(1).isImm())
2302 // Could be t2MOVi32imm <ga:xx>
2303 return false;
2304
2305 if (!MRI->hasOneNonDBGUse(Reg))
2306 return false;
2307
Evan Chenga2b48d92012-03-26 23:31:00 +00002308 const MCInstrDesc &DefMCID = DefMI->getDesc();
2309 if (DefMCID.hasOptionalDef()) {
2310 unsigned NumOps = DefMCID.getNumOperands();
2311 const MachineOperand &MO = DefMI->getOperand(NumOps-1);
2312 if (MO.getReg() == ARM::CPSR && !MO.isDead())
2313 // If DefMI defines CPSR and it is not dead, it's obviously not safe
2314 // to delete DefMI.
2315 return false;
2316 }
2317
2318 const MCInstrDesc &UseMCID = UseMI->getDesc();
2319 if (UseMCID.hasOptionalDef()) {
2320 unsigned NumOps = UseMCID.getNumOperands();
2321 if (UseMI->getOperand(NumOps-1).getReg() == ARM::CPSR)
2322 // If the instruction sets the flag, do not attempt this optimization
2323 // since it may change the semantics of the code.
2324 return false;
2325 }
2326
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00002327 unsigned UseOpc = UseMI->getOpcode();
Evan Cheng2d4e42f2010-11-18 01:43:23 +00002328 unsigned NewUseOpc = 0;
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00002329 uint32_t ImmVal = (uint32_t)DefMI->getOperand(1).getImm();
Evan Cheng2d4e42f2010-11-18 01:43:23 +00002330 uint32_t SOImmValV1 = 0, SOImmValV2 = 0;
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00002331 bool Commute = false;
2332 switch (UseOpc) {
2333 default: return false;
2334 case ARM::SUBrr:
2335 case ARM::ADDrr:
2336 case ARM::ORRrr:
2337 case ARM::EORrr:
2338 case ARM::t2SUBrr:
2339 case ARM::t2ADDrr:
2340 case ARM::t2ORRrr:
2341 case ARM::t2EORrr: {
2342 Commute = UseMI->getOperand(2).getReg() != Reg;
2343 switch (UseOpc) {
2344 default: break;
2345 case ARM::SUBrr: {
2346 if (Commute)
2347 return false;
2348 ImmVal = -ImmVal;
2349 NewUseOpc = ARM::SUBri;
2350 // Fallthrough
2351 }
2352 case ARM::ADDrr:
2353 case ARM::ORRrr:
2354 case ARM::EORrr: {
2355 if (!ARM_AM::isSOImmTwoPartVal(ImmVal))
2356 return false;
2357 SOImmValV1 = (uint32_t)ARM_AM::getSOImmTwoPartFirst(ImmVal);
2358 SOImmValV2 = (uint32_t)ARM_AM::getSOImmTwoPartSecond(ImmVal);
2359 switch (UseOpc) {
2360 default: break;
2361 case ARM::ADDrr: NewUseOpc = ARM::ADDri; break;
2362 case ARM::ORRrr: NewUseOpc = ARM::ORRri; break;
2363 case ARM::EORrr: NewUseOpc = ARM::EORri; break;
2364 }
2365 break;
2366 }
2367 case ARM::t2SUBrr: {
2368 if (Commute)
2369 return false;
2370 ImmVal = -ImmVal;
2371 NewUseOpc = ARM::t2SUBri;
2372 // Fallthrough
2373 }
2374 case ARM::t2ADDrr:
2375 case ARM::t2ORRrr:
2376 case ARM::t2EORrr: {
2377 if (!ARM_AM::isT2SOImmTwoPartVal(ImmVal))
2378 return false;
2379 SOImmValV1 = (uint32_t)ARM_AM::getT2SOImmTwoPartFirst(ImmVal);
2380 SOImmValV2 = (uint32_t)ARM_AM::getT2SOImmTwoPartSecond(ImmVal);
2381 switch (UseOpc) {
2382 default: break;
2383 case ARM::t2ADDrr: NewUseOpc = ARM::t2ADDri; break;
2384 case ARM::t2ORRrr: NewUseOpc = ARM::t2ORRri; break;
2385 case ARM::t2EORrr: NewUseOpc = ARM::t2EORri; break;
2386 }
2387 break;
2388 }
2389 }
2390 }
2391 }
2392
2393 unsigned OpIdx = Commute ? 2 : 1;
2394 unsigned Reg1 = UseMI->getOperand(OpIdx).getReg();
2395 bool isKill = UseMI->getOperand(OpIdx).isKill();
2396 unsigned NewReg = MRI->createVirtualRegister(MRI->getRegClass(Reg));
2397 AddDefaultCC(AddDefaultPred(BuildMI(*UseMI->getParent(),
Evan Cheng7fae11b2011-12-14 02:11:42 +00002398 UseMI, UseMI->getDebugLoc(),
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00002399 get(NewUseOpc), NewReg)
2400 .addReg(Reg1, getKillRegState(isKill))
2401 .addImm(SOImmValV1)));
2402 UseMI->setDesc(get(NewUseOpc));
2403 UseMI->getOperand(1).setReg(NewReg);
2404 UseMI->getOperand(1).setIsKill();
2405 UseMI->getOperand(2).ChangeToImmediate(SOImmValV2);
2406 DefMI->eraseFromParent();
2407 return true;
2408}
2409
Bob Wilsone8a549c2012-09-29 21:43:49 +00002410static unsigned getNumMicroOpsSwiftLdSt(const InstrItineraryData *ItinData,
2411 const MachineInstr *MI) {
2412 switch (MI->getOpcode()) {
2413 default: {
2414 const MCInstrDesc &Desc = MI->getDesc();
2415 int UOps = ItinData->getNumMicroOps(Desc.getSchedClass());
2416 assert(UOps >= 0 && "bad # UOps");
2417 return UOps;
2418 }
2419
2420 case ARM::LDRrs:
2421 case ARM::LDRBrs:
2422 case ARM::STRrs:
2423 case ARM::STRBrs: {
2424 unsigned ShOpVal = MI->getOperand(3).getImm();
2425 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2426 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2427 if (!isSub &&
2428 (ShImm == 0 ||
2429 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2430 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2431 return 1;
2432 return 2;
2433 }
2434
2435 case ARM::LDRH:
2436 case ARM::STRH: {
2437 if (!MI->getOperand(2).getReg())
2438 return 1;
2439
2440 unsigned ShOpVal = MI->getOperand(3).getImm();
2441 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2442 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2443 if (!isSub &&
2444 (ShImm == 0 ||
2445 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2446 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2447 return 1;
2448 return 2;
2449 }
2450
2451 case ARM::LDRSB:
2452 case ARM::LDRSH:
2453 return (ARM_AM::getAM3Op(MI->getOperand(3).getImm()) == ARM_AM::sub) ? 3:2;
2454
2455 case ARM::LDRSB_POST:
2456 case ARM::LDRSH_POST: {
2457 unsigned Rt = MI->getOperand(0).getReg();
2458 unsigned Rm = MI->getOperand(3).getReg();
2459 return (Rt == Rm) ? 4 : 3;
2460 }
2461
2462 case ARM::LDR_PRE_REG:
2463 case ARM::LDRB_PRE_REG: {
2464 unsigned Rt = MI->getOperand(0).getReg();
2465 unsigned Rm = MI->getOperand(3).getReg();
2466 if (Rt == Rm)
2467 return 3;
2468 unsigned ShOpVal = MI->getOperand(4).getImm();
2469 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2470 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2471 if (!isSub &&
2472 (ShImm == 0 ||
2473 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2474 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2475 return 2;
2476 return 3;
2477 }
2478
2479 case ARM::STR_PRE_REG:
2480 case ARM::STRB_PRE_REG: {
2481 unsigned ShOpVal = MI->getOperand(4).getImm();
2482 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2483 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2484 if (!isSub &&
2485 (ShImm == 0 ||
2486 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2487 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2488 return 2;
2489 return 3;
2490 }
2491
2492 case ARM::LDRH_PRE:
2493 case ARM::STRH_PRE: {
2494 unsigned Rt = MI->getOperand(0).getReg();
2495 unsigned Rm = MI->getOperand(3).getReg();
2496 if (!Rm)
2497 return 2;
2498 if (Rt == Rm)
2499 return 3;
2500 return (ARM_AM::getAM3Op(MI->getOperand(4).getImm()) == ARM_AM::sub)
2501 ? 3 : 2;
2502 }
2503
2504 case ARM::LDR_POST_REG:
2505 case ARM::LDRB_POST_REG:
2506 case ARM::LDRH_POST: {
2507 unsigned Rt = MI->getOperand(0).getReg();
2508 unsigned Rm = MI->getOperand(3).getReg();
2509 return (Rt == Rm) ? 3 : 2;
2510 }
2511
2512 case ARM::LDR_PRE_IMM:
2513 case ARM::LDRB_PRE_IMM:
2514 case ARM::LDR_POST_IMM:
2515 case ARM::LDRB_POST_IMM:
2516 case ARM::STRB_POST_IMM:
2517 case ARM::STRB_POST_REG:
2518 case ARM::STRB_PRE_IMM:
2519 case ARM::STRH_POST:
2520 case ARM::STR_POST_IMM:
2521 case ARM::STR_POST_REG:
2522 case ARM::STR_PRE_IMM:
2523 return 2;
2524
2525 case ARM::LDRSB_PRE:
2526 case ARM::LDRSH_PRE: {
2527 unsigned Rm = MI->getOperand(3).getReg();
2528 if (Rm == 0)
2529 return 3;
2530 unsigned Rt = MI->getOperand(0).getReg();
2531 if (Rt == Rm)
2532 return 4;
2533 unsigned ShOpVal = MI->getOperand(4).getImm();
2534 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2535 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2536 if (!isSub &&
2537 (ShImm == 0 ||
2538 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2539 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2540 return 3;
2541 return 4;
2542 }
2543
2544 case ARM::LDRD: {
2545 unsigned Rt = MI->getOperand(0).getReg();
2546 unsigned Rn = MI->getOperand(2).getReg();
2547 unsigned Rm = MI->getOperand(3).getReg();
2548 if (Rm)
2549 return (ARM_AM::getAM3Op(MI->getOperand(4).getImm()) == ARM_AM::sub) ?4:3;
2550 return (Rt == Rn) ? 3 : 2;
2551 }
2552
2553 case ARM::STRD: {
2554 unsigned Rm = MI->getOperand(3).getReg();
2555 if (Rm)
2556 return (ARM_AM::getAM3Op(MI->getOperand(4).getImm()) == ARM_AM::sub) ?4:3;
2557 return 2;
2558 }
2559
2560 case ARM::LDRD_POST:
2561 case ARM::t2LDRD_POST:
2562 return 3;
2563
2564 case ARM::STRD_POST:
2565 case ARM::t2STRD_POST:
2566 return 4;
2567
2568 case ARM::LDRD_PRE: {
2569 unsigned Rt = MI->getOperand(0).getReg();
2570 unsigned Rn = MI->getOperand(3).getReg();
2571 unsigned Rm = MI->getOperand(4).getReg();
2572 if (Rm)
2573 return (ARM_AM::getAM3Op(MI->getOperand(5).getImm()) == ARM_AM::sub) ?5:4;
2574 return (Rt == Rn) ? 4 : 3;
2575 }
2576
2577 case ARM::t2LDRD_PRE: {
2578 unsigned Rt = MI->getOperand(0).getReg();
2579 unsigned Rn = MI->getOperand(3).getReg();
2580 return (Rt == Rn) ? 4 : 3;
2581 }
2582
2583 case ARM::STRD_PRE: {
2584 unsigned Rm = MI->getOperand(4).getReg();
2585 if (Rm)
2586 return (ARM_AM::getAM3Op(MI->getOperand(5).getImm()) == ARM_AM::sub) ?5:4;
2587 return 3;
2588 }
2589
2590 case ARM::t2STRD_PRE:
2591 return 3;
2592
2593 case ARM::t2LDR_POST:
2594 case ARM::t2LDRB_POST:
2595 case ARM::t2LDRB_PRE:
2596 case ARM::t2LDRSBi12:
2597 case ARM::t2LDRSBi8:
2598 case ARM::t2LDRSBpci:
2599 case ARM::t2LDRSBs:
2600 case ARM::t2LDRH_POST:
2601 case ARM::t2LDRH_PRE:
2602 case ARM::t2LDRSBT:
2603 case ARM::t2LDRSB_POST:
2604 case ARM::t2LDRSB_PRE:
2605 case ARM::t2LDRSH_POST:
2606 case ARM::t2LDRSH_PRE:
2607 case ARM::t2LDRSHi12:
2608 case ARM::t2LDRSHi8:
2609 case ARM::t2LDRSHpci:
2610 case ARM::t2LDRSHs:
2611 return 2;
2612
2613 case ARM::t2LDRDi8: {
2614 unsigned Rt = MI->getOperand(0).getReg();
2615 unsigned Rn = MI->getOperand(2).getReg();
2616 return (Rt == Rn) ? 3 : 2;
2617 }
2618
2619 case ARM::t2STRB_POST:
2620 case ARM::t2STRB_PRE:
2621 case ARM::t2STRBs:
2622 case ARM::t2STRDi8:
2623 case ARM::t2STRH_POST:
2624 case ARM::t2STRH_PRE:
2625 case ARM::t2STRHs:
2626 case ARM::t2STR_POST:
2627 case ARM::t2STR_PRE:
2628 case ARM::t2STRs:
2629 return 2;
2630 }
2631}
2632
Andrew Trick2ac6f7d2012-09-14 18:48:46 +00002633// Return the number of 32-bit words loaded by LDM or stored by STM. If this
2634// can't be easily determined return 0 (missing MachineMemOperand).
2635//
2636// FIXME: The current MachineInstr design does not support relying on machine
2637// mem operands to determine the width of a memory access. Instead, we expect
2638// the target to provide this information based on the instruction opcode and
2639// operands. However, using MachineMemOperand is a the best solution now for
2640// two reasons:
2641//
2642// 1) getNumMicroOps tries to infer LDM memory width from the total number of MI
2643// operands. This is much more dangerous than using the MachineMemOperand
2644// sizes because CodeGen passes can insert/remove optional machine operands. In
2645// fact, it's totally incorrect for preRA passes and appears to be wrong for
2646// postRA passes as well.
2647//
2648// 2) getNumLDMAddresses is only used by the scheduling machine model and any
2649// machine model that calls this should handle the unknown (zero size) case.
2650//
2651// Long term, we should require a target hook that verifies MachineMemOperand
2652// sizes during MC lowering. That target hook should be local to MC lowering
2653// because we can't ensure that it is aware of other MI forms. Doing this will
2654// ensure that MachineMemOperands are correctly propagated through all passes.
2655unsigned ARMBaseInstrInfo::getNumLDMAddresses(const MachineInstr *MI) const {
2656 unsigned Size = 0;
2657 for (MachineInstr::mmo_iterator I = MI->memoperands_begin(),
2658 E = MI->memoperands_end(); I != E; ++I) {
2659 Size += (*I)->getSize();
2660 }
2661 return Size / 4;
2662}
2663
Evan Cheng367a5df2010-09-09 18:18:55 +00002664unsigned
Evan Chengdebf9c52010-11-03 00:45:17 +00002665ARMBaseInstrInfo::getNumMicroOps(const InstrItineraryData *ItinData,
2666 const MachineInstr *MI) const {
Evan Chengbf407072010-09-10 01:29:16 +00002667 if (!ItinData || ItinData->isEmpty())
Evan Cheng367a5df2010-09-09 18:18:55 +00002668 return 1;
2669
Evan Cheng6cc775f2011-06-28 19:10:37 +00002670 const MCInstrDesc &Desc = MI->getDesc();
Evan Cheng367a5df2010-09-09 18:18:55 +00002671 unsigned Class = Desc.getSchedClass();
Andrew Trickf161e392012-07-02 18:10:42 +00002672 int ItinUOps = ItinData->getNumMicroOps(Class);
Bob Wilsone8a549c2012-09-29 21:43:49 +00002673 if (ItinUOps >= 0) {
2674 if (Subtarget.isSwift() && (Desc.mayLoad() || Desc.mayStore()))
2675 return getNumMicroOpsSwiftLdSt(ItinData, MI);
2676
Andrew Trickf161e392012-07-02 18:10:42 +00002677 return ItinUOps;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002678 }
Evan Cheng367a5df2010-09-09 18:18:55 +00002679
2680 unsigned Opc = MI->getOpcode();
2681 switch (Opc) {
2682 default:
2683 llvm_unreachable("Unexpected multi-uops instruction!");
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002684 case ARM::VLDMQIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002685 case ARM::VSTMQIA:
Evan Cheng367a5df2010-09-09 18:18:55 +00002686 return 2;
2687
2688 // The number of uOps for load / store multiple are determined by the number
2689 // registers.
Andrew Trickc416ba62010-12-24 04:28:06 +00002690 //
Evan Chengbf407072010-09-10 01:29:16 +00002691 // On Cortex-A8, each pair of register loads / stores can be scheduled on the
2692 // same cycle. The scheduling for the first load / store must be done
Sylvestre Ledru35521e22012-07-23 08:51:15 +00002693 // separately by assuming the address is not 64-bit aligned.
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002694 //
Evan Chengbf407072010-09-10 01:29:16 +00002695 // On Cortex-A9, the formula is simply (#reg / 2) + (#reg % 2). If the address
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002696 // is not 64-bit aligned, then AGU would take an extra cycle. For VFP / NEON
2697 // load / store multiple, the formula is (#reg / 2) + (#reg % 2) + 1.
2698 case ARM::VLDMDIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002699 case ARM::VLDMDIA_UPD:
2700 case ARM::VLDMDDB_UPD:
2701 case ARM::VLDMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002702 case ARM::VLDMSIA_UPD:
2703 case ARM::VLDMSDB_UPD:
2704 case ARM::VSTMDIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002705 case ARM::VSTMDIA_UPD:
2706 case ARM::VSTMDDB_UPD:
2707 case ARM::VSTMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002708 case ARM::VSTMSIA_UPD:
2709 case ARM::VSTMSDB_UPD: {
Evan Cheng367a5df2010-09-09 18:18:55 +00002710 unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands();
2711 return (NumRegs / 2) + (NumRegs % 2) + 1;
2712 }
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002713
2714 case ARM::LDMIA_RET:
2715 case ARM::LDMIA:
2716 case ARM::LDMDA:
2717 case ARM::LDMDB:
2718 case ARM::LDMIB:
2719 case ARM::LDMIA_UPD:
2720 case ARM::LDMDA_UPD:
2721 case ARM::LDMDB_UPD:
2722 case ARM::LDMIB_UPD:
2723 case ARM::STMIA:
2724 case ARM::STMDA:
2725 case ARM::STMDB:
2726 case ARM::STMIB:
2727 case ARM::STMIA_UPD:
2728 case ARM::STMDA_UPD:
2729 case ARM::STMDB_UPD:
2730 case ARM::STMIB_UPD:
2731 case ARM::tLDMIA:
2732 case ARM::tLDMIA_UPD:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002733 case ARM::tSTMIA_UPD:
Evan Cheng367a5df2010-09-09 18:18:55 +00002734 case ARM::tPOP_RET:
2735 case ARM::tPOP:
2736 case ARM::tPUSH:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002737 case ARM::t2LDMIA_RET:
2738 case ARM::t2LDMIA:
2739 case ARM::t2LDMDB:
2740 case ARM::t2LDMIA_UPD:
2741 case ARM::t2LDMDB_UPD:
2742 case ARM::t2STMIA:
2743 case ARM::t2STMDB:
2744 case ARM::t2STMIA_UPD:
2745 case ARM::t2STMDB_UPD: {
Evan Chengbf407072010-09-10 01:29:16 +00002746 unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands() + 1;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002747 if (Subtarget.isSwift()) {
Bob Wilsone8a549c2012-09-29 21:43:49 +00002748 int UOps = 1 + NumRegs; // One for address computation, one for each ld / st.
2749 switch (Opc) {
2750 default: break;
2751 case ARM::VLDMDIA_UPD:
2752 case ARM::VLDMDDB_UPD:
2753 case ARM::VLDMSIA_UPD:
2754 case ARM::VLDMSDB_UPD:
2755 case ARM::VSTMDIA_UPD:
2756 case ARM::VSTMDDB_UPD:
2757 case ARM::VSTMSIA_UPD:
2758 case ARM::VSTMSDB_UPD:
2759 case ARM::LDMIA_UPD:
2760 case ARM::LDMDA_UPD:
2761 case ARM::LDMDB_UPD:
2762 case ARM::LDMIB_UPD:
2763 case ARM::STMIA_UPD:
2764 case ARM::STMDA_UPD:
2765 case ARM::STMDB_UPD:
2766 case ARM::STMIB_UPD:
2767 case ARM::tLDMIA_UPD:
2768 case ARM::tSTMIA_UPD:
2769 case ARM::t2LDMIA_UPD:
2770 case ARM::t2LDMDB_UPD:
2771 case ARM::t2STMIA_UPD:
2772 case ARM::t2STMDB_UPD:
2773 ++UOps; // One for base register writeback.
2774 break;
2775 case ARM::LDMIA_RET:
2776 case ARM::tPOP_RET:
2777 case ARM::t2LDMIA_RET:
2778 UOps += 2; // One for base reg wb, one for write to pc.
2779 break;
2780 }
2781 return UOps;
2782 } else if (Subtarget.isCortexA8()) {
Evan Chengdebf9c52010-11-03 00:45:17 +00002783 if (NumRegs < 4)
2784 return 2;
2785 // 4 registers would be issued: 2, 2.
2786 // 5 registers would be issued: 2, 2, 1.
Andrew Trickf161e392012-07-02 18:10:42 +00002787 int A8UOps = (NumRegs / 2);
Evan Chengdebf9c52010-11-03 00:45:17 +00002788 if (NumRegs % 2)
Andrew Trickf161e392012-07-02 18:10:42 +00002789 ++A8UOps;
2790 return A8UOps;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002791 } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
Andrew Trickf161e392012-07-02 18:10:42 +00002792 int A9UOps = (NumRegs / 2);
Evan Chengbf407072010-09-10 01:29:16 +00002793 // If there are odd number of registers or if it's not 64-bit aligned,
2794 // then it takes an extra AGU (Address Generation Unit) cycle.
2795 if ((NumRegs % 2) ||
2796 !MI->hasOneMemOperand() ||
2797 (*MI->memoperands_begin())->getAlignment() < 8)
Andrew Trickf161e392012-07-02 18:10:42 +00002798 ++A9UOps;
2799 return A9UOps;
Evan Chengbf407072010-09-10 01:29:16 +00002800 } else {
2801 // Assume the worst.
2802 return NumRegs;
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00002803 }
Evan Cheng367a5df2010-09-09 18:18:55 +00002804 }
2805 }
2806}
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002807
2808int
Evan Cheng412e37b2010-10-07 23:12:15 +00002809ARMBaseInstrInfo::getVLDMDefCycle(const InstrItineraryData *ItinData,
Evan Cheng6cc775f2011-06-28 19:10:37 +00002810 const MCInstrDesc &DefMCID,
Evan Cheng412e37b2010-10-07 23:12:15 +00002811 unsigned DefClass,
2812 unsigned DefIdx, unsigned DefAlign) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +00002813 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
Evan Cheng412e37b2010-10-07 23:12:15 +00002814 if (RegNo <= 0)
2815 // Def is the address writeback.
2816 return ItinData->getOperandCycle(DefClass, DefIdx);
2817
2818 int DefCycle;
2819 if (Subtarget.isCortexA8()) {
2820 // (regno / 2) + (regno % 2) + 1
2821 DefCycle = RegNo / 2 + 1;
2822 if (RegNo % 2)
2823 ++DefCycle;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002824 } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00002825 DefCycle = RegNo;
2826 bool isSLoad = false;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002827
Evan Cheng6cc775f2011-06-28 19:10:37 +00002828 switch (DefMCID.getOpcode()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00002829 default: break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002830 case ARM::VLDMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002831 case ARM::VLDMSIA_UPD:
2832 case ARM::VLDMSDB_UPD:
Evan Cheng412e37b2010-10-07 23:12:15 +00002833 isSLoad = true;
2834 break;
2835 }
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002836
Evan Cheng412e37b2010-10-07 23:12:15 +00002837 // If there are odd number of 'S' registers or if it's not 64-bit aligned,
2838 // then it takes an extra cycle.
2839 if ((isSLoad && (RegNo % 2)) || DefAlign < 8)
2840 ++DefCycle;
2841 } else {
2842 // Assume the worst.
2843 DefCycle = RegNo + 2;
2844 }
2845
2846 return DefCycle;
2847}
2848
2849int
2850ARMBaseInstrInfo::getLDMDefCycle(const InstrItineraryData *ItinData,
Evan Cheng6cc775f2011-06-28 19:10:37 +00002851 const MCInstrDesc &DefMCID,
Evan Cheng412e37b2010-10-07 23:12:15 +00002852 unsigned DefClass,
2853 unsigned DefIdx, unsigned DefAlign) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +00002854 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
Evan Cheng412e37b2010-10-07 23:12:15 +00002855 if (RegNo <= 0)
2856 // Def is the address writeback.
2857 return ItinData->getOperandCycle(DefClass, DefIdx);
2858
2859 int DefCycle;
2860 if (Subtarget.isCortexA8()) {
2861 // 4 registers would be issued: 1, 2, 1.
2862 // 5 registers would be issued: 1, 2, 2.
2863 DefCycle = RegNo / 2;
2864 if (DefCycle < 1)
2865 DefCycle = 1;
2866 // Result latency is issue cycle + 2: E2.
2867 DefCycle += 2;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002868 } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00002869 DefCycle = (RegNo / 2);
2870 // If there are odd number of registers or if it's not 64-bit aligned,
2871 // then it takes an extra AGU (Address Generation Unit) cycle.
2872 if ((RegNo % 2) || DefAlign < 8)
2873 ++DefCycle;
2874 // Result latency is AGU cycles + 2.
2875 DefCycle += 2;
2876 } else {
2877 // Assume the worst.
2878 DefCycle = RegNo + 2;
2879 }
2880
2881 return DefCycle;
2882}
2883
2884int
2885ARMBaseInstrInfo::getVSTMUseCycle(const InstrItineraryData *ItinData,
Evan Cheng6cc775f2011-06-28 19:10:37 +00002886 const MCInstrDesc &UseMCID,
Evan Cheng412e37b2010-10-07 23:12:15 +00002887 unsigned UseClass,
2888 unsigned UseIdx, unsigned UseAlign) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +00002889 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
Evan Cheng412e37b2010-10-07 23:12:15 +00002890 if (RegNo <= 0)
2891 return ItinData->getOperandCycle(UseClass, UseIdx);
2892
2893 int UseCycle;
2894 if (Subtarget.isCortexA8()) {
2895 // (regno / 2) + (regno % 2) + 1
2896 UseCycle = RegNo / 2 + 1;
2897 if (RegNo % 2)
2898 ++UseCycle;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002899 } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00002900 UseCycle = RegNo;
2901 bool isSStore = false;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002902
Evan Cheng6cc775f2011-06-28 19:10:37 +00002903 switch (UseMCID.getOpcode()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00002904 default: break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002905 case ARM::VSTMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002906 case ARM::VSTMSIA_UPD:
2907 case ARM::VSTMSDB_UPD:
Evan Cheng412e37b2010-10-07 23:12:15 +00002908 isSStore = true;
2909 break;
2910 }
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002911
Evan Cheng412e37b2010-10-07 23:12:15 +00002912 // If there are odd number of 'S' registers or if it's not 64-bit aligned,
2913 // then it takes an extra cycle.
2914 if ((isSStore && (RegNo % 2)) || UseAlign < 8)
2915 ++UseCycle;
2916 } else {
2917 // Assume the worst.
2918 UseCycle = RegNo + 2;
2919 }
2920
2921 return UseCycle;
2922}
2923
2924int
2925ARMBaseInstrInfo::getSTMUseCycle(const InstrItineraryData *ItinData,
Evan Cheng6cc775f2011-06-28 19:10:37 +00002926 const MCInstrDesc &UseMCID,
Evan Cheng412e37b2010-10-07 23:12:15 +00002927 unsigned UseClass,
2928 unsigned UseIdx, unsigned UseAlign) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +00002929 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
Evan Cheng412e37b2010-10-07 23:12:15 +00002930 if (RegNo <= 0)
2931 return ItinData->getOperandCycle(UseClass, UseIdx);
2932
2933 int UseCycle;
2934 if (Subtarget.isCortexA8()) {
2935 UseCycle = RegNo / 2;
2936 if (UseCycle < 2)
2937 UseCycle = 2;
2938 // Read in E3.
2939 UseCycle += 2;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002940 } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00002941 UseCycle = (RegNo / 2);
2942 // If there are odd number of registers or if it's not 64-bit aligned,
2943 // then it takes an extra AGU (Address Generation Unit) cycle.
2944 if ((RegNo % 2) || UseAlign < 8)
2945 ++UseCycle;
2946 } else {
2947 // Assume the worst.
2948 UseCycle = 1;
2949 }
2950 return UseCycle;
2951}
2952
2953int
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002954ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
Evan Cheng6cc775f2011-06-28 19:10:37 +00002955 const MCInstrDesc &DefMCID,
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002956 unsigned DefIdx, unsigned DefAlign,
Evan Cheng6cc775f2011-06-28 19:10:37 +00002957 const MCInstrDesc &UseMCID,
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002958 unsigned UseIdx, unsigned UseAlign) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +00002959 unsigned DefClass = DefMCID.getSchedClass();
2960 unsigned UseClass = UseMCID.getSchedClass();
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002961
Evan Cheng6cc775f2011-06-28 19:10:37 +00002962 if (DefIdx < DefMCID.getNumDefs() && UseIdx < UseMCID.getNumOperands())
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002963 return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx);
2964
2965 // This may be a def / use of a variable_ops instruction, the operand
2966 // latency might be determinable dynamically. Let the target try to
2967 // figure it out.
Evan Chenge2c211c2010-10-28 02:00:25 +00002968 int DefCycle = -1;
Evan Chengff310732010-10-28 06:47:08 +00002969 bool LdmBypass = false;
Evan Cheng6cc775f2011-06-28 19:10:37 +00002970 switch (DefMCID.getOpcode()) {
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002971 default:
2972 DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
2973 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002974
2975 case ARM::VLDMDIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002976 case ARM::VLDMDIA_UPD:
2977 case ARM::VLDMDDB_UPD:
2978 case ARM::VLDMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002979 case ARM::VLDMSIA_UPD:
2980 case ARM::VLDMSDB_UPD:
Evan Cheng6cc775f2011-06-28 19:10:37 +00002981 DefCycle = getVLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
Evan Cheng1958cef2010-10-07 01:50:48 +00002982 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002983
2984 case ARM::LDMIA_RET:
2985 case ARM::LDMIA:
2986 case ARM::LDMDA:
2987 case ARM::LDMDB:
2988 case ARM::LDMIB:
2989 case ARM::LDMIA_UPD:
2990 case ARM::LDMDA_UPD:
2991 case ARM::LDMDB_UPD:
2992 case ARM::LDMIB_UPD:
2993 case ARM::tLDMIA:
2994 case ARM::tLDMIA_UPD:
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002995 case ARM::tPUSH:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002996 case ARM::t2LDMIA_RET:
2997 case ARM::t2LDMIA:
2998 case ARM::t2LDMDB:
2999 case ARM::t2LDMIA_UPD:
3000 case ARM::t2LDMDB_UPD:
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003001 LdmBypass = 1;
Evan Cheng6cc775f2011-06-28 19:10:37 +00003002 DefCycle = getLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
Evan Cheng412e37b2010-10-07 23:12:15 +00003003 break;
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003004 }
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003005
3006 if (DefCycle == -1)
3007 // We can't seem to determine the result latency of the def, assume it's 2.
3008 DefCycle = 2;
3009
3010 int UseCycle = -1;
Evan Cheng6cc775f2011-06-28 19:10:37 +00003011 switch (UseMCID.getOpcode()) {
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003012 default:
3013 UseCycle = ItinData->getOperandCycle(UseClass, UseIdx);
3014 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003015
3016 case ARM::VSTMDIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003017 case ARM::VSTMDIA_UPD:
3018 case ARM::VSTMDDB_UPD:
3019 case ARM::VSTMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003020 case ARM::VSTMSIA_UPD:
3021 case ARM::VSTMSDB_UPD:
Evan Cheng6cc775f2011-06-28 19:10:37 +00003022 UseCycle = getVSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
Evan Cheng1958cef2010-10-07 01:50:48 +00003023 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003024
3025 case ARM::STMIA:
3026 case ARM::STMDA:
3027 case ARM::STMDB:
3028 case ARM::STMIB:
3029 case ARM::STMIA_UPD:
3030 case ARM::STMDA_UPD:
3031 case ARM::STMDB_UPD:
3032 case ARM::STMIB_UPD:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003033 case ARM::tSTMIA_UPD:
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003034 case ARM::tPOP_RET:
3035 case ARM::tPOP:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003036 case ARM::t2STMIA:
3037 case ARM::t2STMDB:
3038 case ARM::t2STMIA_UPD:
3039 case ARM::t2STMDB_UPD:
Evan Cheng6cc775f2011-06-28 19:10:37 +00003040 UseCycle = getSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
Evan Cheng1958cef2010-10-07 01:50:48 +00003041 break;
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003042 }
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003043
3044 if (UseCycle == -1)
3045 // Assume it's read in the first stage.
3046 UseCycle = 1;
3047
3048 UseCycle = DefCycle - UseCycle + 1;
3049 if (UseCycle > 0) {
3050 if (LdmBypass) {
3051 // It's a variable_ops instruction so we can't use DefIdx here. Just use
3052 // first def operand.
Evan Cheng6cc775f2011-06-28 19:10:37 +00003053 if (ItinData->hasPipelineForwarding(DefClass, DefMCID.getNumOperands()-1,
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003054 UseClass, UseIdx))
3055 --UseCycle;
3056 } else if (ItinData->hasPipelineForwarding(DefClass, DefIdx,
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003057 UseClass, UseIdx)) {
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003058 --UseCycle;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003059 }
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003060 }
3061
3062 return UseCycle;
3063}
3064
Evan Cheng7fae11b2011-12-14 02:11:42 +00003065static const MachineInstr *getBundledDefMI(const TargetRegisterInfo *TRI,
Evan Chengda103bf2011-12-14 20:00:08 +00003066 const MachineInstr *MI, unsigned Reg,
Evan Cheng7fae11b2011-12-14 02:11:42 +00003067 unsigned &DefIdx, unsigned &Dist) {
3068 Dist = 0;
3069
3070 MachineBasicBlock::const_iterator I = MI; ++I;
3071 MachineBasicBlock::const_instr_iterator II =
3072 llvm::prior(I.getInstrIterator());
3073 assert(II->isInsideBundle() && "Empty bundle?");
3074
3075 int Idx = -1;
Evan Cheng7fae11b2011-12-14 02:11:42 +00003076 while (II->isInsideBundle()) {
3077 Idx = II->findRegisterDefOperandIdx(Reg, false, true, TRI);
3078 if (Idx != -1)
3079 break;
3080 --II;
3081 ++Dist;
3082 }
3083
3084 assert(Idx != -1 && "Cannot find bundled definition!");
3085 DefIdx = Idx;
3086 return II;
3087}
3088
3089static const MachineInstr *getBundledUseMI(const TargetRegisterInfo *TRI,
Evan Chengda103bf2011-12-14 20:00:08 +00003090 const MachineInstr *MI, unsigned Reg,
Evan Cheng7fae11b2011-12-14 02:11:42 +00003091 unsigned &UseIdx, unsigned &Dist) {
3092 Dist = 0;
3093
3094 MachineBasicBlock::const_instr_iterator II = MI; ++II;
3095 assert(II->isInsideBundle() && "Empty bundle?");
3096 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
3097
3098 // FIXME: This doesn't properly handle multiple uses.
3099 int Idx = -1;
Evan Cheng7fae11b2011-12-14 02:11:42 +00003100 while (II != E && II->isInsideBundle()) {
3101 Idx = II->findRegisterUseOperandIdx(Reg, false, TRI);
3102 if (Idx != -1)
3103 break;
3104 if (II->getOpcode() != ARM::t2IT)
3105 ++Dist;
3106 ++II;
3107 }
3108
Evan Chengda103bf2011-12-14 20:00:08 +00003109 if (Idx == -1) {
3110 Dist = 0;
3111 return 0;
3112 }
3113
Evan Cheng7fae11b2011-12-14 02:11:42 +00003114 UseIdx = Idx;
3115 return II;
3116}
3117
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003118/// Return the number of cycles to add to (or subtract from) the static
3119/// itinerary based on the def opcode and alignment. The caller will ensure that
3120/// adjusted latency is at least one cycle.
3121static int adjustDefLatency(const ARMSubtarget &Subtarget,
3122 const MachineInstr *DefMI,
3123 const MCInstrDesc *DefMCID, unsigned DefAlign) {
3124 int Adjust = 0;
Silviu Barangab47bb942012-09-13 15:05:10 +00003125 if (Subtarget.isCortexA8() || Subtarget.isLikeA9()) {
Evan Chengff310732010-10-28 06:47:08 +00003126 // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
3127 // variants are one cycle cheaper.
Evan Cheng7fae11b2011-12-14 02:11:42 +00003128 switch (DefMCID->getOpcode()) {
Evan Chengff310732010-10-28 06:47:08 +00003129 default: break;
Jakob Stoklund Olesenb3de7b12012-08-28 03:11:27 +00003130 case ARM::LDRrs:
3131 case ARM::LDRBrs: {
Evan Chengff310732010-10-28 06:47:08 +00003132 unsigned ShOpVal = DefMI->getOperand(3).getImm();
3133 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3134 if (ShImm == 0 ||
3135 (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003136 --Adjust;
Evan Chengff310732010-10-28 06:47:08 +00003137 break;
3138 }
Jakob Stoklund Olesenb3de7b12012-08-28 03:11:27 +00003139 case ARM::t2LDRs:
3140 case ARM::t2LDRBs:
3141 case ARM::t2LDRHs:
Evan Chengff310732010-10-28 06:47:08 +00003142 case ARM::t2LDRSHs: {
3143 // Thumb2 mode: lsl only.
3144 unsigned ShAmt = DefMI->getOperand(3).getImm();
3145 if (ShAmt == 0 || ShAmt == 2)
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003146 --Adjust;
Evan Chengff310732010-10-28 06:47:08 +00003147 break;
3148 }
3149 }
Bob Wilsone8a549c2012-09-29 21:43:49 +00003150 } else if (Subtarget.isSwift()) {
3151 // FIXME: Properly handle all of the latency adjustments for address
3152 // writeback.
3153 switch (DefMCID->getOpcode()) {
3154 default: break;
3155 case ARM::LDRrs:
3156 case ARM::LDRBrs: {
3157 unsigned ShOpVal = DefMI->getOperand(3).getImm();
3158 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
3159 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3160 if (!isSub &&
3161 (ShImm == 0 ||
3162 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
3163 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
3164 Adjust -= 2;
3165 else if (!isSub &&
3166 ShImm == 1 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsr)
3167 --Adjust;
3168 break;
3169 }
3170 case ARM::t2LDRs:
3171 case ARM::t2LDRBs:
3172 case ARM::t2LDRHs:
3173 case ARM::t2LDRSHs: {
3174 // Thumb2 mode: lsl only.
3175 unsigned ShAmt = DefMI->getOperand(3).getImm();
3176 if (ShAmt == 0 || ShAmt == 1 || ShAmt == 2 || ShAmt == 3)
3177 Adjust -= 2;
3178 break;
3179 }
3180 }
Evan Chengff310732010-10-28 06:47:08 +00003181 }
3182
Silviu Barangab47bb942012-09-13 15:05:10 +00003183 if (DefAlign < 8 && Subtarget.isLikeA9()) {
Evan Cheng7fae11b2011-12-14 02:11:42 +00003184 switch (DefMCID->getOpcode()) {
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003185 default: break;
3186 case ARM::VLD1q8:
3187 case ARM::VLD1q16:
3188 case ARM::VLD1q32:
3189 case ARM::VLD1q64:
Jim Grosbach2098cb12011-10-24 21:45:13 +00003190 case ARM::VLD1q8wb_fixed:
3191 case ARM::VLD1q16wb_fixed:
3192 case ARM::VLD1q32wb_fixed:
3193 case ARM::VLD1q64wb_fixed:
3194 case ARM::VLD1q8wb_register:
3195 case ARM::VLD1q16wb_register:
3196 case ARM::VLD1q32wb_register:
3197 case ARM::VLD1q64wb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003198 case ARM::VLD2d8:
3199 case ARM::VLD2d16:
3200 case ARM::VLD2d32:
3201 case ARM::VLD2q8:
3202 case ARM::VLD2q16:
3203 case ARM::VLD2q32:
Jim Grosbachd146a022011-12-09 21:28:25 +00003204 case ARM::VLD2d8wb_fixed:
3205 case ARM::VLD2d16wb_fixed:
3206 case ARM::VLD2d32wb_fixed:
3207 case ARM::VLD2q8wb_fixed:
3208 case ARM::VLD2q16wb_fixed:
3209 case ARM::VLD2q32wb_fixed:
3210 case ARM::VLD2d8wb_register:
3211 case ARM::VLD2d16wb_register:
3212 case ARM::VLD2d32wb_register:
3213 case ARM::VLD2q8wb_register:
3214 case ARM::VLD2q16wb_register:
3215 case ARM::VLD2q32wb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003216 case ARM::VLD3d8:
3217 case ARM::VLD3d16:
3218 case ARM::VLD3d32:
3219 case ARM::VLD1d64T:
3220 case ARM::VLD3d8_UPD:
3221 case ARM::VLD3d16_UPD:
3222 case ARM::VLD3d32_UPD:
Jim Grosbach92fd05e2011-10-24 23:26:05 +00003223 case ARM::VLD1d64Twb_fixed:
3224 case ARM::VLD1d64Twb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003225 case ARM::VLD3q8_UPD:
3226 case ARM::VLD3q16_UPD:
3227 case ARM::VLD3q32_UPD:
3228 case ARM::VLD4d8:
3229 case ARM::VLD4d16:
3230 case ARM::VLD4d32:
3231 case ARM::VLD1d64Q:
3232 case ARM::VLD4d8_UPD:
3233 case ARM::VLD4d16_UPD:
3234 case ARM::VLD4d32_UPD:
Jim Grosbach17ec1a12011-10-25 00:14:01 +00003235 case ARM::VLD1d64Qwb_fixed:
3236 case ARM::VLD1d64Qwb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003237 case ARM::VLD4q8_UPD:
3238 case ARM::VLD4q16_UPD:
3239 case ARM::VLD4q32_UPD:
3240 case ARM::VLD1DUPq8:
3241 case ARM::VLD1DUPq16:
3242 case ARM::VLD1DUPq32:
Jim Grosbacha68c9a82011-11-30 19:35:44 +00003243 case ARM::VLD1DUPq8wb_fixed:
3244 case ARM::VLD1DUPq16wb_fixed:
3245 case ARM::VLD1DUPq32wb_fixed:
3246 case ARM::VLD1DUPq8wb_register:
3247 case ARM::VLD1DUPq16wb_register:
3248 case ARM::VLD1DUPq32wb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003249 case ARM::VLD2DUPd8:
3250 case ARM::VLD2DUPd16:
3251 case ARM::VLD2DUPd32:
Jim Grosbachc80a2642011-12-21 19:40:55 +00003252 case ARM::VLD2DUPd8wb_fixed:
3253 case ARM::VLD2DUPd16wb_fixed:
3254 case ARM::VLD2DUPd32wb_fixed:
3255 case ARM::VLD2DUPd8wb_register:
3256 case ARM::VLD2DUPd16wb_register:
3257 case ARM::VLD2DUPd32wb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003258 case ARM::VLD4DUPd8:
3259 case ARM::VLD4DUPd16:
3260 case ARM::VLD4DUPd32:
3261 case ARM::VLD4DUPd8_UPD:
3262 case ARM::VLD4DUPd16_UPD:
3263 case ARM::VLD4DUPd32_UPD:
3264 case ARM::VLD1LNd8:
3265 case ARM::VLD1LNd16:
3266 case ARM::VLD1LNd32:
3267 case ARM::VLD1LNd8_UPD:
3268 case ARM::VLD1LNd16_UPD:
3269 case ARM::VLD1LNd32_UPD:
3270 case ARM::VLD2LNd8:
3271 case ARM::VLD2LNd16:
3272 case ARM::VLD2LNd32:
3273 case ARM::VLD2LNq16:
3274 case ARM::VLD2LNq32:
3275 case ARM::VLD2LNd8_UPD:
3276 case ARM::VLD2LNd16_UPD:
3277 case ARM::VLD2LNd32_UPD:
3278 case ARM::VLD2LNq16_UPD:
3279 case ARM::VLD2LNq32_UPD:
3280 case ARM::VLD4LNd8:
3281 case ARM::VLD4LNd16:
3282 case ARM::VLD4LNd32:
3283 case ARM::VLD4LNq16:
3284 case ARM::VLD4LNq32:
3285 case ARM::VLD4LNd8_UPD:
3286 case ARM::VLD4LNd16_UPD:
3287 case ARM::VLD4LNd32_UPD:
3288 case ARM::VLD4LNq16_UPD:
3289 case ARM::VLD4LNq32_UPD:
3290 // If the address is not 64-bit aligned, the latencies of these
3291 // instructions increases by one.
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003292 ++Adjust;
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003293 break;
3294 }
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003295 }
3296 return Adjust;
3297}
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003298
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003299
3300
3301int
3302ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
3303 const MachineInstr *DefMI, unsigned DefIdx,
3304 const MachineInstr *UseMI,
3305 unsigned UseIdx) const {
3306 // No operand latency. The caller may fall back to getInstrLatency.
3307 if (!ItinData || ItinData->isEmpty())
3308 return -1;
3309
3310 const MachineOperand &DefMO = DefMI->getOperand(DefIdx);
3311 unsigned Reg = DefMO.getReg();
3312 const MCInstrDesc *DefMCID = &DefMI->getDesc();
3313 const MCInstrDesc *UseMCID = &UseMI->getDesc();
3314
3315 unsigned DefAdj = 0;
3316 if (DefMI->isBundle()) {
3317 DefMI = getBundledDefMI(&getRegisterInfo(), DefMI, Reg, DefIdx, DefAdj);
3318 DefMCID = &DefMI->getDesc();
3319 }
3320 if (DefMI->isCopyLike() || DefMI->isInsertSubreg() ||
3321 DefMI->isRegSequence() || DefMI->isImplicitDef()) {
3322 return 1;
3323 }
3324
3325 unsigned UseAdj = 0;
3326 if (UseMI->isBundle()) {
3327 unsigned NewUseIdx;
3328 const MachineInstr *NewUseMI = getBundledUseMI(&getRegisterInfo(), UseMI,
3329 Reg, NewUseIdx, UseAdj);
Andrew Trick77d0b882012-06-22 02:50:33 +00003330 if (!NewUseMI)
3331 return -1;
3332
3333 UseMI = NewUseMI;
3334 UseIdx = NewUseIdx;
3335 UseMCID = &UseMI->getDesc();
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003336 }
3337
3338 if (Reg == ARM::CPSR) {
3339 if (DefMI->getOpcode() == ARM::FMSTAT) {
3340 // fpscr -> cpsr stalls over 20 cycles on A8 (and earlier?)
Silviu Barangab47bb942012-09-13 15:05:10 +00003341 return Subtarget.isLikeA9() ? 1 : 20;
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003342 }
3343
3344 // CPSR set and branch can be paired in the same cycle.
3345 if (UseMI->isBranch())
3346 return 0;
3347
3348 // Otherwise it takes the instruction latency (generally one).
3349 unsigned Latency = getInstrLatency(ItinData, DefMI);
3350
3351 // For Thumb2 and -Os, prefer scheduling CPSR setting instruction close to
3352 // its uses. Instructions which are otherwise scheduled between them may
3353 // incur a code size penalty (not able to use the CPSR setting 16-bit
3354 // instructions).
3355 if (Latency > 0 && Subtarget.isThumb2()) {
3356 const MachineFunction *MF = DefMI->getParent()->getParent();
Bill Wendling698e84f2012-12-30 10:32:01 +00003357 if (MF->getFunction()->getAttributes().
3358 hasAttribute(AttributeSet::FunctionIndex,
3359 Attribute::OptimizeForSize))
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003360 --Latency;
3361 }
3362 return Latency;
3363 }
3364
Andrew Trick77d0b882012-06-22 02:50:33 +00003365 if (DefMO.isImplicit() || UseMI->getOperand(UseIdx).isImplicit())
3366 return -1;
3367
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003368 unsigned DefAlign = DefMI->hasOneMemOperand()
3369 ? (*DefMI->memoperands_begin())->getAlignment() : 0;
3370 unsigned UseAlign = UseMI->hasOneMemOperand()
3371 ? (*UseMI->memoperands_begin())->getAlignment() : 0;
3372
3373 // Get the itinerary's latency if possible, and handle variable_ops.
3374 int Latency = getOperandLatency(ItinData, *DefMCID, DefIdx, DefAlign,
3375 *UseMCID, UseIdx, UseAlign);
3376 // Unable to find operand latency. The caller may resort to getInstrLatency.
3377 if (Latency < 0)
3378 return Latency;
3379
3380 // Adjust for IT block position.
3381 int Adj = DefAdj + UseAdj;
3382
3383 // Adjust for dynamic def-side opcode variants not captured by the itinerary.
3384 Adj += adjustDefLatency(Subtarget, DefMI, DefMCID, DefAlign);
3385 if (Adj >= 0 || (int)Latency > -Adj) {
3386 return Latency + Adj;
3387 }
3388 // Return the itinerary latency, which may be zero but not less than zero.
Evan Chengff310732010-10-28 06:47:08 +00003389 return Latency;
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003390}
3391
3392int
3393ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
3394 SDNode *DefNode, unsigned DefIdx,
3395 SDNode *UseNode, unsigned UseIdx) const {
3396 if (!DefNode->isMachineOpcode())
3397 return 1;
3398
Evan Cheng6cc775f2011-06-28 19:10:37 +00003399 const MCInstrDesc &DefMCID = get(DefNode->getMachineOpcode());
Andrew Trick47ff14b2011-01-21 05:51:33 +00003400
Evan Cheng6cc775f2011-06-28 19:10:37 +00003401 if (isZeroCost(DefMCID.Opcode))
Andrew Trick47ff14b2011-01-21 05:51:33 +00003402 return 0;
3403
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003404 if (!ItinData || ItinData->isEmpty())
Evan Cheng6cc775f2011-06-28 19:10:37 +00003405 return DefMCID.mayLoad() ? 3 : 1;
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003406
Evan Cheng6c1414f2010-10-29 18:09:28 +00003407 if (!UseNode->isMachineOpcode()) {
Evan Cheng6cc775f2011-06-28 19:10:37 +00003408 int Latency = ItinData->getOperandCycle(DefMCID.getSchedClass(), DefIdx);
Bob Wilsone8a549c2012-09-29 21:43:49 +00003409 if (Subtarget.isLikeA9() || Subtarget.isSwift())
Evan Cheng6c1414f2010-10-29 18:09:28 +00003410 return Latency <= 2 ? 1 : Latency - 1;
3411 else
3412 return Latency <= 3 ? 1 : Latency - 2;
3413 }
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003414
Evan Cheng6cc775f2011-06-28 19:10:37 +00003415 const MCInstrDesc &UseMCID = get(UseNode->getMachineOpcode());
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003416 const MachineSDNode *DefMN = dyn_cast<MachineSDNode>(DefNode);
3417 unsigned DefAlign = !DefMN->memoperands_empty()
3418 ? (*DefMN->memoperands_begin())->getAlignment() : 0;
3419 const MachineSDNode *UseMN = dyn_cast<MachineSDNode>(UseNode);
3420 unsigned UseAlign = !UseMN->memoperands_empty()
3421 ? (*UseMN->memoperands_begin())->getAlignment() : 0;
Evan Cheng6cc775f2011-06-28 19:10:37 +00003422 int Latency = getOperandLatency(ItinData, DefMCID, DefIdx, DefAlign,
3423 UseMCID, UseIdx, UseAlign);
Evan Chengff310732010-10-28 06:47:08 +00003424
3425 if (Latency > 1 &&
Silviu Barangab47bb942012-09-13 15:05:10 +00003426 (Subtarget.isCortexA8() || Subtarget.isLikeA9())) {
Evan Chengff310732010-10-28 06:47:08 +00003427 // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
3428 // variants are one cycle cheaper.
Evan Cheng6cc775f2011-06-28 19:10:37 +00003429 switch (DefMCID.getOpcode()) {
Evan Chengff310732010-10-28 06:47:08 +00003430 default: break;
Jakob Stoklund Olesenb3de7b12012-08-28 03:11:27 +00003431 case ARM::LDRrs:
3432 case ARM::LDRBrs: {
Evan Chengff310732010-10-28 06:47:08 +00003433 unsigned ShOpVal =
3434 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
3435 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3436 if (ShImm == 0 ||
3437 (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
3438 --Latency;
3439 break;
3440 }
Jakob Stoklund Olesenb3de7b12012-08-28 03:11:27 +00003441 case ARM::t2LDRs:
3442 case ARM::t2LDRBs:
3443 case ARM::t2LDRHs:
Evan Chengff310732010-10-28 06:47:08 +00003444 case ARM::t2LDRSHs: {
3445 // Thumb2 mode: lsl only.
3446 unsigned ShAmt =
3447 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
3448 if (ShAmt == 0 || ShAmt == 2)
3449 --Latency;
3450 break;
3451 }
3452 }
Bob Wilsone8a549c2012-09-29 21:43:49 +00003453 } else if (DefIdx == 0 && Latency > 2 && Subtarget.isSwift()) {
3454 // FIXME: Properly handle all of the latency adjustments for address
3455 // writeback.
3456 switch (DefMCID.getOpcode()) {
3457 default: break;
3458 case ARM::LDRrs:
3459 case ARM::LDRBrs: {
3460 unsigned ShOpVal =
3461 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
3462 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3463 if (ShImm == 0 ||
3464 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
3465 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
3466 Latency -= 2;
3467 else if (ShImm == 1 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsr)
3468 --Latency;
3469 break;
3470 }
3471 case ARM::t2LDRs:
3472 case ARM::t2LDRBs:
3473 case ARM::t2LDRHs:
3474 case ARM::t2LDRSHs: {
3475 // Thumb2 mode: lsl 0-3 only.
3476 Latency -= 2;
3477 break;
3478 }
3479 }
Evan Chengff310732010-10-28 06:47:08 +00003480 }
3481
Silviu Barangab47bb942012-09-13 15:05:10 +00003482 if (DefAlign < 8 && Subtarget.isLikeA9())
Evan Cheng6cc775f2011-06-28 19:10:37 +00003483 switch (DefMCID.getOpcode()) {
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003484 default: break;
Jim Grosbachc988e0c2012-03-05 19:33:30 +00003485 case ARM::VLD1q8:
3486 case ARM::VLD1q16:
3487 case ARM::VLD1q32:
3488 case ARM::VLD1q64:
3489 case ARM::VLD1q8wb_register:
3490 case ARM::VLD1q16wb_register:
3491 case ARM::VLD1q32wb_register:
3492 case ARM::VLD1q64wb_register:
3493 case ARM::VLD1q8wb_fixed:
3494 case ARM::VLD1q16wb_fixed:
3495 case ARM::VLD1q32wb_fixed:
3496 case ARM::VLD1q64wb_fixed:
3497 case ARM::VLD2d8:
3498 case ARM::VLD2d16:
3499 case ARM::VLD2d32:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003500 case ARM::VLD2q8Pseudo:
3501 case ARM::VLD2q16Pseudo:
3502 case ARM::VLD2q32Pseudo:
Jim Grosbachc988e0c2012-03-05 19:33:30 +00003503 case ARM::VLD2d8wb_fixed:
3504 case ARM::VLD2d16wb_fixed:
3505 case ARM::VLD2d32wb_fixed:
Jim Grosbachd146a022011-12-09 21:28:25 +00003506 case ARM::VLD2q8PseudoWB_fixed:
3507 case ARM::VLD2q16PseudoWB_fixed:
3508 case ARM::VLD2q32PseudoWB_fixed:
Jim Grosbachc988e0c2012-03-05 19:33:30 +00003509 case ARM::VLD2d8wb_register:
3510 case ARM::VLD2d16wb_register:
3511 case ARM::VLD2d32wb_register:
Jim Grosbachd146a022011-12-09 21:28:25 +00003512 case ARM::VLD2q8PseudoWB_register:
3513 case ARM::VLD2q16PseudoWB_register:
3514 case ARM::VLD2q32PseudoWB_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003515 case ARM::VLD3d8Pseudo:
3516 case ARM::VLD3d16Pseudo:
3517 case ARM::VLD3d32Pseudo:
3518 case ARM::VLD1d64TPseudo:
3519 case ARM::VLD3d8Pseudo_UPD:
3520 case ARM::VLD3d16Pseudo_UPD:
3521 case ARM::VLD3d32Pseudo_UPD:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003522 case ARM::VLD3q8Pseudo_UPD:
3523 case ARM::VLD3q16Pseudo_UPD:
3524 case ARM::VLD3q32Pseudo_UPD:
3525 case ARM::VLD3q8oddPseudo:
3526 case ARM::VLD3q16oddPseudo:
3527 case ARM::VLD3q32oddPseudo:
3528 case ARM::VLD3q8oddPseudo_UPD:
3529 case ARM::VLD3q16oddPseudo_UPD:
3530 case ARM::VLD3q32oddPseudo_UPD:
3531 case ARM::VLD4d8Pseudo:
3532 case ARM::VLD4d16Pseudo:
3533 case ARM::VLD4d32Pseudo:
3534 case ARM::VLD1d64QPseudo:
3535 case ARM::VLD4d8Pseudo_UPD:
3536 case ARM::VLD4d16Pseudo_UPD:
3537 case ARM::VLD4d32Pseudo_UPD:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003538 case ARM::VLD4q8Pseudo_UPD:
3539 case ARM::VLD4q16Pseudo_UPD:
3540 case ARM::VLD4q32Pseudo_UPD:
3541 case ARM::VLD4q8oddPseudo:
3542 case ARM::VLD4q16oddPseudo:
3543 case ARM::VLD4q32oddPseudo:
3544 case ARM::VLD4q8oddPseudo_UPD:
3545 case ARM::VLD4q16oddPseudo_UPD:
3546 case ARM::VLD4q32oddPseudo_UPD:
Jim Grosbach13a292c2012-03-06 22:01:44 +00003547 case ARM::VLD1DUPq8:
3548 case ARM::VLD1DUPq16:
3549 case ARM::VLD1DUPq32:
3550 case ARM::VLD1DUPq8wb_fixed:
3551 case ARM::VLD1DUPq16wb_fixed:
3552 case ARM::VLD1DUPq32wb_fixed:
3553 case ARM::VLD1DUPq8wb_register:
3554 case ARM::VLD1DUPq16wb_register:
3555 case ARM::VLD1DUPq32wb_register:
3556 case ARM::VLD2DUPd8:
3557 case ARM::VLD2DUPd16:
3558 case ARM::VLD2DUPd32:
3559 case ARM::VLD2DUPd8wb_fixed:
3560 case ARM::VLD2DUPd16wb_fixed:
3561 case ARM::VLD2DUPd32wb_fixed:
3562 case ARM::VLD2DUPd8wb_register:
3563 case ARM::VLD2DUPd16wb_register:
3564 case ARM::VLD2DUPd32wb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003565 case ARM::VLD4DUPd8Pseudo:
3566 case ARM::VLD4DUPd16Pseudo:
3567 case ARM::VLD4DUPd32Pseudo:
3568 case ARM::VLD4DUPd8Pseudo_UPD:
3569 case ARM::VLD4DUPd16Pseudo_UPD:
3570 case ARM::VLD4DUPd32Pseudo_UPD:
3571 case ARM::VLD1LNq8Pseudo:
3572 case ARM::VLD1LNq16Pseudo:
3573 case ARM::VLD1LNq32Pseudo:
3574 case ARM::VLD1LNq8Pseudo_UPD:
3575 case ARM::VLD1LNq16Pseudo_UPD:
3576 case ARM::VLD1LNq32Pseudo_UPD:
3577 case ARM::VLD2LNd8Pseudo:
3578 case ARM::VLD2LNd16Pseudo:
3579 case ARM::VLD2LNd32Pseudo:
3580 case ARM::VLD2LNq16Pseudo:
3581 case ARM::VLD2LNq32Pseudo:
3582 case ARM::VLD2LNd8Pseudo_UPD:
3583 case ARM::VLD2LNd16Pseudo_UPD:
3584 case ARM::VLD2LNd32Pseudo_UPD:
3585 case ARM::VLD2LNq16Pseudo_UPD:
3586 case ARM::VLD2LNq32Pseudo_UPD:
3587 case ARM::VLD4LNd8Pseudo:
3588 case ARM::VLD4LNd16Pseudo:
3589 case ARM::VLD4LNd32Pseudo:
3590 case ARM::VLD4LNq16Pseudo:
3591 case ARM::VLD4LNq32Pseudo:
3592 case ARM::VLD4LNd8Pseudo_UPD:
3593 case ARM::VLD4LNd16Pseudo_UPD:
3594 case ARM::VLD4LNd32Pseudo_UPD:
3595 case ARM::VLD4LNq16Pseudo_UPD:
3596 case ARM::VLD4LNq32Pseudo_UPD:
3597 // If the address is not 64-bit aligned, the latencies of these
3598 // instructions increases by one.
3599 ++Latency;
3600 break;
3601 }
3602
Evan Chengff310732010-10-28 06:47:08 +00003603 return Latency;
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003604}
Evan Cheng63c76082010-10-19 18:58:51 +00003605
Andrew Trick45446062012-06-05 21:11:27 +00003606unsigned ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
3607 const MachineInstr *MI,
3608 unsigned *PredCost) const {
Evan Chengdebf9c52010-11-03 00:45:17 +00003609 if (MI->isCopyLike() || MI->isInsertSubreg() ||
3610 MI->isRegSequence() || MI->isImplicitDef())
3611 return 1;
3612
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003613 // An instruction scheduler typically runs on unbundled instructions, however
3614 // other passes may query the latency of a bundled instruction.
Evan Cheng7fae11b2011-12-14 02:11:42 +00003615 if (MI->isBundle()) {
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003616 unsigned Latency = 0;
Evan Cheng7fae11b2011-12-14 02:11:42 +00003617 MachineBasicBlock::const_instr_iterator I = MI;
3618 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
3619 while (++I != E && I->isInsideBundle()) {
3620 if (I->getOpcode() != ARM::t2IT)
3621 Latency += getInstrLatency(ItinData, I, PredCost);
3622 }
3623 return Latency;
3624 }
3625
Evan Cheng6cc775f2011-06-28 19:10:37 +00003626 const MCInstrDesc &MCID = MI->getDesc();
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003627 if (PredCost && (MCID.isCall() || MCID.hasImplicitDefOfPhysReg(ARM::CPSR))) {
Evan Chengdebf9c52010-11-03 00:45:17 +00003628 // When predicated, CPSR is an additional source operand for CPSR updating
3629 // instructions, this apparently increases their latencies.
3630 *PredCost = 1;
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003631 }
3632 // Be sure to call getStageLatency for an empty itinerary in case it has a
3633 // valid MinLatency property.
3634 if (!ItinData)
3635 return MI->mayLoad() ? 3 : 1;
3636
3637 unsigned Class = MCID.getSchedClass();
3638
3639 // For instructions with variable uops, use uops as latency.
Andrew Trick21cca972012-07-02 19:12:29 +00003640 if (!ItinData->isEmpty() && ItinData->getNumMicroOps(Class) < 0)
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003641 return getNumMicroOps(ItinData, MI);
Andrew Trick21cca972012-07-02 19:12:29 +00003642
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003643 // For the common case, fall back on the itinerary's latency.
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003644 unsigned Latency = ItinData->getStageLatency(Class);
3645
3646 // Adjust for dynamic def-side opcode variants not captured by the itinerary.
3647 unsigned DefAlign = MI->hasOneMemOperand()
3648 ? (*MI->memoperands_begin())->getAlignment() : 0;
3649 int Adj = adjustDefLatency(Subtarget, MI, &MCID, DefAlign);
3650 if (Adj >= 0 || (int)Latency > -Adj) {
3651 return Latency + Adj;
3652 }
3653 return Latency;
Evan Chengdebf9c52010-11-03 00:45:17 +00003654}
3655
3656int ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
3657 SDNode *Node) const {
3658 if (!Node->isMachineOpcode())
3659 return 1;
3660
3661 if (!ItinData || ItinData->isEmpty())
3662 return 1;
3663
3664 unsigned Opcode = Node->getMachineOpcode();
3665 switch (Opcode) {
3666 default:
3667 return ItinData->getStageLatency(get(Opcode).getSchedClass());
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003668 case ARM::VLDMQIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003669 case ARM::VSTMQIA:
Evan Chengdebf9c52010-11-03 00:45:17 +00003670 return 2;
Eric Christopherb006fc92010-11-18 19:40:05 +00003671 }
Evan Chengdebf9c52010-11-03 00:45:17 +00003672}
3673
Evan Cheng63c76082010-10-19 18:58:51 +00003674bool ARMBaseInstrInfo::
3675hasHighOperandLatency(const InstrItineraryData *ItinData,
3676 const MachineRegisterInfo *MRI,
3677 const MachineInstr *DefMI, unsigned DefIdx,
3678 const MachineInstr *UseMI, unsigned UseIdx) const {
3679 unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
3680 unsigned UDomain = UseMI->getDesc().TSFlags & ARMII::DomainMask;
3681 if (Subtarget.isCortexA8() &&
3682 (DDomain == ARMII::DomainVFP || UDomain == ARMII::DomainVFP))
3683 // CortexA8 VFP instructions are not pipelined.
3684 return true;
3685
3686 // Hoist VFP / NEON instructions with 4 or higher latency.
Andrew Tricka5d24ca2012-06-07 19:42:04 +00003687 int Latency = computeOperandLatency(ItinData, DefMI, DefIdx, UseMI, UseIdx,
3688 /*FindMin=*/false);
Andrew Trick3564bdf2012-06-07 19:41:58 +00003689 if (Latency < 0)
3690 Latency = getInstrLatency(ItinData, DefMI);
Evan Cheng63c76082010-10-19 18:58:51 +00003691 if (Latency <= 3)
3692 return false;
3693 return DDomain == ARMII::DomainVFP || DDomain == ARMII::DomainNEON ||
3694 UDomain == ARMII::DomainVFP || UDomain == ARMII::DomainNEON;
3695}
Evan Chenge96b8d72010-10-26 02:08:50 +00003696
3697bool ARMBaseInstrInfo::
3698hasLowDefLatency(const InstrItineraryData *ItinData,
3699 const MachineInstr *DefMI, unsigned DefIdx) const {
3700 if (!ItinData || ItinData->isEmpty())
3701 return false;
3702
3703 unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
3704 if (DDomain == ARMII::DomainGeneral) {
3705 unsigned DefClass = DefMI->getDesc().getSchedClass();
3706 int DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
3707 return (DefCycle != -1 && DefCycle <= 2);
3708 }
3709 return false;
3710}
Evan Cheng62c7b5b2010-12-05 22:04:16 +00003711
Andrew Trick924123a2011-09-21 02:20:46 +00003712bool ARMBaseInstrInfo::verifyInstruction(const MachineInstr *MI,
3713 StringRef &ErrInfo) const {
3714 if (convertAddSubFlagsOpcode(MI->getOpcode())) {
3715 ErrInfo = "Pseudo flag setting opcodes only exist in Selection DAG";
3716 return false;
3717 }
3718 return true;
3719}
3720
Evan Cheng62c7b5b2010-12-05 22:04:16 +00003721bool
3722ARMBaseInstrInfo::isFpMLxInstruction(unsigned Opcode, unsigned &MulOpc,
3723 unsigned &AddSubOpc,
3724 bool &NegAcc, bool &HasLane) const {
3725 DenseMap<unsigned, unsigned>::const_iterator I = MLxEntryMap.find(Opcode);
3726 if (I == MLxEntryMap.end())
3727 return false;
3728
3729 const ARM_MLxEntry &Entry = ARM_MLxTable[I->second];
3730 MulOpc = Entry.MulOpc;
3731 AddSubOpc = Entry.AddSubOpc;
3732 NegAcc = Entry.NegAcc;
3733 HasLane = Entry.HasLane;
3734 return true;
3735}
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003736
3737//===----------------------------------------------------------------------===//
3738// Execution domains.
3739//===----------------------------------------------------------------------===//
3740//
3741// Some instructions go down the NEON pipeline, some go down the VFP pipeline,
3742// and some can go down both. The vmov instructions go down the VFP pipeline,
3743// but they can be changed to vorr equivalents that are executed by the NEON
3744// pipeline.
3745//
3746// We use the following execution domain numbering:
3747//
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003748enum ARMExeDomain {
3749 ExeGeneric = 0,
3750 ExeVFP = 1,
3751 ExeNEON = 2
3752};
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003753//
3754// Also see ARMInstrFormats.td and Domain* enums in ARMBaseInfo.h
3755//
3756std::pair<uint16_t, uint16_t>
3757ARMBaseInstrInfo::getExecutionDomain(const MachineInstr *MI) const {
Tim Northoverf6618152012-08-17 11:32:52 +00003758 // VMOVD, VMOVRS and VMOVSR are VFP instructions, but can be changed to NEON
3759 // if they are not predicated.
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003760 if (MI->getOpcode() == ARM::VMOVD && !isPredicated(MI))
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003761 return std::make_pair(ExeVFP, (1<<ExeVFP) | (1<<ExeNEON));
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003762
Silviu Barangadc453362013-03-27 12:38:44 +00003763 // CortexA9 is particularly picky about mixing the two and wants these
Tim Northoverf6618152012-08-17 11:32:52 +00003764 // converted.
Silviu Barangadc453362013-03-27 12:38:44 +00003765 if (Subtarget.isCortexA9() && !isPredicated(MI) &&
Tim Northoverf6618152012-08-17 11:32:52 +00003766 (MI->getOpcode() == ARM::VMOVRS ||
Tim Northoverca9f3842012-08-30 10:17:45 +00003767 MI->getOpcode() == ARM::VMOVSR ||
3768 MI->getOpcode() == ARM::VMOVS))
Tim Northoverf6618152012-08-17 11:32:52 +00003769 return std::make_pair(ExeVFP, (1<<ExeVFP) | (1<<ExeNEON));
3770
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003771 // No other instructions can be swizzled, so just determine their domain.
3772 unsigned Domain = MI->getDesc().TSFlags & ARMII::DomainMask;
3773
3774 if (Domain & ARMII::DomainNEON)
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003775 return std::make_pair(ExeNEON, 0);
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003776
3777 // Certain instructions can go either way on Cortex-A8.
3778 // Treat them as NEON instructions.
3779 if ((Domain & ARMII::DomainNEONA8) && Subtarget.isCortexA8())
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003780 return std::make_pair(ExeNEON, 0);
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003781
3782 if (Domain & ARMII::DomainVFP)
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003783 return std::make_pair(ExeVFP, 0);
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003784
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003785 return std::make_pair(ExeGeneric, 0);
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003786}
3787
Tim Northover771f1602012-08-29 16:36:07 +00003788static unsigned getCorrespondingDRegAndLane(const TargetRegisterInfo *TRI,
3789 unsigned SReg, unsigned &Lane) {
3790 unsigned DReg = TRI->getMatchingSuperReg(SReg, ARM::ssub_0, &ARM::DPRRegClass);
3791 Lane = 0;
3792
3793 if (DReg != ARM::NoRegister)
3794 return DReg;
3795
3796 Lane = 1;
3797 DReg = TRI->getMatchingSuperReg(SReg, ARM::ssub_1, &ARM::DPRRegClass);
3798
3799 assert(DReg && "S-register with no D super-register?");
3800 return DReg;
3801}
3802
Andrew Trickd9296ec2012-10-10 05:43:01 +00003803/// getImplicitSPRUseForDPRUse - Given a use of a DPR register and lane,
James Molloyea052562012-09-18 08:31:15 +00003804/// set ImplicitSReg to a register number that must be marked as implicit-use or
3805/// zero if no register needs to be defined as implicit-use.
3806///
3807/// If the function cannot determine if an SPR should be marked implicit use or
3808/// not, it returns false.
3809///
3810/// This function handles cases where an instruction is being modified from taking
Andrew Trickd9296ec2012-10-10 05:43:01 +00003811/// an SPR to a DPR[Lane]. A use of the DPR is being added, which may conflict
James Molloyea052562012-09-18 08:31:15 +00003812/// with an earlier def of an SPR corresponding to DPR[Lane^1] (i.e. the other
3813/// lane of the DPR).
3814///
3815/// If the other SPR is defined, an implicit-use of it should be added. Else,
3816/// (including the case where the DPR itself is defined), it should not.
Andrew Trickd9296ec2012-10-10 05:43:01 +00003817///
James Molloyea052562012-09-18 08:31:15 +00003818static bool getImplicitSPRUseForDPRUse(const TargetRegisterInfo *TRI,
3819 MachineInstr *MI,
3820 unsigned DReg, unsigned Lane,
3821 unsigned &ImplicitSReg) {
3822 // If the DPR is defined or used already, the other SPR lane will be chained
3823 // correctly, so there is nothing to be done.
3824 if (MI->definesRegister(DReg, TRI) || MI->readsRegister(DReg, TRI)) {
3825 ImplicitSReg = 0;
3826 return true;
3827 }
3828
3829 // Otherwise we need to go searching to see if the SPR is set explicitly.
3830 ImplicitSReg = TRI->getSubReg(DReg,
3831 (Lane & 1) ? ARM::ssub_0 : ARM::ssub_1);
3832 MachineBasicBlock::LivenessQueryResult LQR =
3833 MI->getParent()->computeRegisterLiveness(TRI, ImplicitSReg, MI);
3834
3835 if (LQR == MachineBasicBlock::LQR_Live)
3836 return true;
3837 else if (LQR == MachineBasicBlock::LQR_Unknown)
3838 return false;
3839
3840 // If the register is known not to be live, there is no need to add an
3841 // implicit-use.
3842 ImplicitSReg = 0;
3843 return true;
3844}
Tim Northover771f1602012-08-29 16:36:07 +00003845
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003846void
3847ARMBaseInstrInfo::setExecutionDomain(MachineInstr *MI, unsigned Domain) const {
Tim Northoverf6618152012-08-17 11:32:52 +00003848 unsigned DstReg, SrcReg, DReg;
3849 unsigned Lane;
Jakob Stoklund Olesenb159b5f2012-12-19 21:31:56 +00003850 MachineInstrBuilder MIB(*MI->getParent()->getParent(), MI);
Tim Northoverf6618152012-08-17 11:32:52 +00003851 const TargetRegisterInfo *TRI = &getRegisterInfo();
Tim Northoverf6618152012-08-17 11:32:52 +00003852 switch (MI->getOpcode()) {
3853 default:
3854 llvm_unreachable("cannot handle opcode!");
3855 break;
3856 case ARM::VMOVD:
3857 if (Domain != ExeNEON)
3858 break;
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003859
Tim Northoverf6618152012-08-17 11:32:52 +00003860 // Zap the predicate operands.
3861 assert(!isPredicated(MI) && "Cannot predicate a VORRd");
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003862
Tim Northover771f1602012-08-29 16:36:07 +00003863 // Source instruction is %DDst = VMOVD %DSrc, 14, %noreg (; implicits)
3864 DstReg = MI->getOperand(0).getReg();
3865 SrcReg = MI->getOperand(1).getReg();
3866
3867 for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
3868 MI->RemoveOperand(i-1);
3869
3870 // Change to a %DDst = VORRd %DSrc, %DSrc, 14, %noreg (; implicits)
Tim Northoverf6618152012-08-17 11:32:52 +00003871 MI->setDesc(get(ARM::VORRd));
Tim Northover771f1602012-08-29 16:36:07 +00003872 AddDefaultPred(MIB.addReg(DstReg, RegState::Define)
3873 .addReg(SrcReg)
3874 .addReg(SrcReg));
Tim Northoverf6618152012-08-17 11:32:52 +00003875 break;
3876 case ARM::VMOVRS:
3877 if (Domain != ExeNEON)
3878 break;
3879 assert(!isPredicated(MI) && "Cannot predicate a VGETLN");
3880
Tim Northover771f1602012-08-29 16:36:07 +00003881 // Source instruction is %RDst = VMOVRS %SSrc, 14, %noreg (; implicits)
Tim Northoverf6618152012-08-17 11:32:52 +00003882 DstReg = MI->getOperand(0).getReg();
3883 SrcReg = MI->getOperand(1).getReg();
3884
Tim Northover771f1602012-08-29 16:36:07 +00003885 for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
3886 MI->RemoveOperand(i-1);
Tim Northoverf6618152012-08-17 11:32:52 +00003887
Tim Northover771f1602012-08-29 16:36:07 +00003888 DReg = getCorrespondingDRegAndLane(TRI, SrcReg, Lane);
Tim Northoverf6618152012-08-17 11:32:52 +00003889
Tim Northover771f1602012-08-29 16:36:07 +00003890 // Convert to %RDst = VGETLNi32 %DSrc, Lane, 14, %noreg (; imps)
3891 // Note that DSrc has been widened and the other lane may be undef, which
3892 // contaminates the entire register.
Tim Northoverf6618152012-08-17 11:32:52 +00003893 MI->setDesc(get(ARM::VGETLNi32));
Tim Northover771f1602012-08-29 16:36:07 +00003894 AddDefaultPred(MIB.addReg(DstReg, RegState::Define)
3895 .addReg(DReg, RegState::Undef)
3896 .addImm(Lane));
Tim Northoverf6618152012-08-17 11:32:52 +00003897
Tim Northover771f1602012-08-29 16:36:07 +00003898 // The old source should be an implicit use, otherwise we might think it
3899 // was dead before here.
Tim Northoverf6618152012-08-17 11:32:52 +00003900 MIB.addReg(SrcReg, RegState::Implicit);
Tim Northoverf6618152012-08-17 11:32:52 +00003901 break;
James Molloyea052562012-09-18 08:31:15 +00003902 case ARM::VMOVSR: {
Tim Northoverf6618152012-08-17 11:32:52 +00003903 if (Domain != ExeNEON)
3904 break;
3905 assert(!isPredicated(MI) && "Cannot predicate a VSETLN");
3906
Tim Northover771f1602012-08-29 16:36:07 +00003907 // Source instruction is %SDst = VMOVSR %RSrc, 14, %noreg (; implicits)
Tim Northoverf6618152012-08-17 11:32:52 +00003908 DstReg = MI->getOperand(0).getReg();
3909 SrcReg = MI->getOperand(1).getReg();
Tim Northoverf6618152012-08-17 11:32:52 +00003910
Tim Northover771f1602012-08-29 16:36:07 +00003911 DReg = getCorrespondingDRegAndLane(TRI, DstReg, Lane);
3912
James Molloyea052562012-09-18 08:31:15 +00003913 unsigned ImplicitSReg;
3914 if (!getImplicitSPRUseForDPRUse(TRI, MI, DReg, Lane, ImplicitSReg))
3915 break;
Tim Northover726d32c2012-09-01 18:07:29 +00003916
Tim Northoverc8d867d2012-09-05 18:37:53 +00003917 for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
3918 MI->RemoveOperand(i-1);
3919
Tim Northover771f1602012-08-29 16:36:07 +00003920 // Convert to %DDst = VSETLNi32 %DDst, %RSrc, Lane, 14, %noreg (; imps)
3921 // Again DDst may be undefined at the beginning of this instruction.
Tim Northoverf6618152012-08-17 11:32:52 +00003922 MI->setDesc(get(ARM::VSETLNi32));
Tim Northover726d32c2012-09-01 18:07:29 +00003923 MIB.addReg(DReg, RegState::Define)
3924 .addReg(DReg, getUndefRegState(!MI->readsRegister(DReg, TRI)))
3925 .addReg(SrcReg)
3926 .addImm(Lane);
3927 AddDefaultPred(MIB);
Tim Northoverca9f3842012-08-30 10:17:45 +00003928
Tim Northover726d32c2012-09-01 18:07:29 +00003929 // The narrower destination must be marked as set to keep previous chains
3930 // in place.
Tim Northover771f1602012-08-29 16:36:07 +00003931 MIB.addReg(DstReg, RegState::Define | RegState::Implicit);
James Molloyea052562012-09-18 08:31:15 +00003932 if (ImplicitSReg != 0)
3933 MIB.addReg(ImplicitSReg, RegState::Implicit);
Tim Northoverf6618152012-08-17 11:32:52 +00003934 break;
James Molloyea052562012-09-18 08:31:15 +00003935 }
Tim Northoverca9f3842012-08-30 10:17:45 +00003936 case ARM::VMOVS: {
3937 if (Domain != ExeNEON)
3938 break;
3939
3940 // Source instruction is %SDst = VMOVS %SSrc, 14, %noreg (; implicits)
3941 DstReg = MI->getOperand(0).getReg();
3942 SrcReg = MI->getOperand(1).getReg();
3943
Tim Northoverca9f3842012-08-30 10:17:45 +00003944 unsigned DstLane = 0, SrcLane = 0, DDst, DSrc;
3945 DDst = getCorrespondingDRegAndLane(TRI, DstReg, DstLane);
3946 DSrc = getCorrespondingDRegAndLane(TRI, SrcReg, SrcLane);
3947
James Molloyea052562012-09-18 08:31:15 +00003948 unsigned ImplicitSReg;
3949 if (!getImplicitSPRUseForDPRUse(TRI, MI, DSrc, SrcLane, ImplicitSReg))
3950 break;
Tim Northover726d32c2012-09-01 18:07:29 +00003951
Tim Northoverc8d867d2012-09-05 18:37:53 +00003952 for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
3953 MI->RemoveOperand(i-1);
3954
Tim Northoverca9f3842012-08-30 10:17:45 +00003955 if (DSrc == DDst) {
3956 // Destination can be:
3957 // %DDst = VDUPLN32d %DDst, Lane, 14, %noreg (; implicits)
3958 MI->setDesc(get(ARM::VDUPLN32d));
Tim Northover726d32c2012-09-01 18:07:29 +00003959 MIB.addReg(DDst, RegState::Define)
3960 .addReg(DDst, getUndefRegState(!MI->readsRegister(DDst, TRI)))
3961 .addImm(SrcLane);
3962 AddDefaultPred(MIB);
Tim Northoverca9f3842012-08-30 10:17:45 +00003963
3964 // Neither the source or the destination are naturally represented any
3965 // more, so add them in manually.
3966 MIB.addReg(DstReg, RegState::Implicit | RegState::Define);
3967 MIB.addReg(SrcReg, RegState::Implicit);
James Molloyea052562012-09-18 08:31:15 +00003968 if (ImplicitSReg != 0)
3969 MIB.addReg(ImplicitSReg, RegState::Implicit);
Tim Northoverca9f3842012-08-30 10:17:45 +00003970 break;
3971 }
3972
3973 // In general there's no single instruction that can perform an S <-> S
3974 // move in NEON space, but a pair of VEXT instructions *can* do the
3975 // job. It turns out that the VEXTs needed will only use DSrc once, with
3976 // the position based purely on the combination of lane-0 and lane-1
3977 // involved. For example
3978 // vmov s0, s2 -> vext.32 d0, d0, d1, #1 vext.32 d0, d0, d0, #1
3979 // vmov s1, s3 -> vext.32 d0, d1, d0, #1 vext.32 d0, d0, d0, #1
3980 // vmov s0, s3 -> vext.32 d0, d0, d0, #1 vext.32 d0, d1, d0, #1
3981 // vmov s1, s2 -> vext.32 d0, d0, d0, #1 vext.32 d0, d0, d1, #1
3982 //
3983 // Pattern of the MachineInstrs is:
3984 // %DDst = VEXTd32 %DSrc1, %DSrc2, Lane, 14, %noreg (;implicits)
3985 MachineInstrBuilder NewMIB;
3986 NewMIB = BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
3987 get(ARM::VEXTd32), DDst);
Tim Northover726d32c2012-09-01 18:07:29 +00003988
3989 // On the first instruction, both DSrc and DDst may be <undef> if present.
3990 // Specifically when the original instruction didn't have them as an
3991 // <imp-use>.
3992 unsigned CurReg = SrcLane == 1 && DstLane == 1 ? DSrc : DDst;
3993 bool CurUndef = !MI->readsRegister(CurReg, TRI);
3994 NewMIB.addReg(CurReg, getUndefRegState(CurUndef));
3995
3996 CurReg = SrcLane == 0 && DstLane == 0 ? DSrc : DDst;
3997 CurUndef = !MI->readsRegister(CurReg, TRI);
3998 NewMIB.addReg(CurReg, getUndefRegState(CurUndef));
3999
Tim Northoverca9f3842012-08-30 10:17:45 +00004000 NewMIB.addImm(1);
4001 AddDefaultPred(NewMIB);
4002
4003 if (SrcLane == DstLane)
4004 NewMIB.addReg(SrcReg, RegState::Implicit);
4005
4006 MI->setDesc(get(ARM::VEXTd32));
4007 MIB.addReg(DDst, RegState::Define);
Tim Northover726d32c2012-09-01 18:07:29 +00004008
4009 // On the second instruction, DDst has definitely been defined above, so
4010 // it is not <undef>. DSrc, if present, can be <undef> as above.
4011 CurReg = SrcLane == 1 && DstLane == 0 ? DSrc : DDst;
4012 CurUndef = CurReg == DSrc && !MI->readsRegister(CurReg, TRI);
4013 MIB.addReg(CurReg, getUndefRegState(CurUndef));
4014
4015 CurReg = SrcLane == 0 && DstLane == 1 ? DSrc : DDst;
4016 CurUndef = CurReg == DSrc && !MI->readsRegister(CurReg, TRI);
4017 MIB.addReg(CurReg, getUndefRegState(CurUndef));
4018
Tim Northoverca9f3842012-08-30 10:17:45 +00004019 MIB.addImm(1);
4020 AddDefaultPred(MIB);
4021
4022 if (SrcLane != DstLane)
4023 MIB.addReg(SrcReg, RegState::Implicit);
4024
4025 // As before, the original destination is no longer represented, add it
4026 // implicitly.
4027 MIB.addReg(DstReg, RegState::Define | RegState::Implicit);
James Molloyea052562012-09-18 08:31:15 +00004028 if (ImplicitSReg != 0)
4029 MIB.addReg(ImplicitSReg, RegState::Implicit);
Tim Northoverca9f3842012-08-30 10:17:45 +00004030 break;
4031 }
Tim Northoverf6618152012-08-17 11:32:52 +00004032 }
4033
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00004034}
Jim Grosbach617f84dd2012-02-28 23:53:30 +00004035
Bob Wilsone8a549c2012-09-29 21:43:49 +00004036//===----------------------------------------------------------------------===//
4037// Partial register updates
4038//===----------------------------------------------------------------------===//
4039//
4040// Swift renames NEON registers with 64-bit granularity. That means any
4041// instruction writing an S-reg implicitly reads the containing D-reg. The
4042// problem is mostly avoided by translating f32 operations to v2f32 operations
4043// on D-registers, but f32 loads are still a problem.
4044//
4045// These instructions can load an f32 into a NEON register:
4046//
4047// VLDRS - Only writes S, partial D update.
4048// VLD1LNd32 - Writes all D-regs, explicit partial D update, 2 uops.
4049// VLD1DUPd32 - Writes all D-regs, no partial reg update, 2 uops.
4050//
4051// FCONSTD can be used as a dependency-breaking instruction.
Bob Wilsone8a549c2012-09-29 21:43:49 +00004052unsigned ARMBaseInstrInfo::
4053getPartialRegUpdateClearance(const MachineInstr *MI,
4054 unsigned OpNum,
4055 const TargetRegisterInfo *TRI) const {
Silviu Barangadc453362013-03-27 12:38:44 +00004056 if (!SwiftPartialUpdateClearance ||
4057 !(Subtarget.isSwift() || Subtarget.isCortexA15()))
Bob Wilsone8a549c2012-09-29 21:43:49 +00004058 return 0;
4059
4060 assert(TRI && "Need TRI instance");
4061
4062 const MachineOperand &MO = MI->getOperand(OpNum);
4063 if (MO.readsReg())
4064 return 0;
4065 unsigned Reg = MO.getReg();
4066 int UseOp = -1;
4067
4068 switch(MI->getOpcode()) {
4069 // Normal instructions writing only an S-register.
4070 case ARM::VLDRS:
4071 case ARM::FCONSTS:
4072 case ARM::VMOVSR:
Bob Wilsone8a549c2012-09-29 21:43:49 +00004073 case ARM::VMOVv8i8:
4074 case ARM::VMOVv4i16:
4075 case ARM::VMOVv2i32:
4076 case ARM::VMOVv2f32:
4077 case ARM::VMOVv1i64:
4078 UseOp = MI->findRegisterUseOperandIdx(Reg, false, TRI);
4079 break;
4080
4081 // Explicitly reads the dependency.
4082 case ARM::VLD1LNd32:
Silviu Barangadc453362013-03-27 12:38:44 +00004083 UseOp = 3;
Bob Wilsone8a549c2012-09-29 21:43:49 +00004084 break;
4085 default:
4086 return 0;
4087 }
4088
4089 // If this instruction actually reads a value from Reg, there is no unwanted
4090 // dependency.
4091 if (UseOp != -1 && MI->getOperand(UseOp).readsReg())
4092 return 0;
4093
4094 // We must be able to clobber the whole D-reg.
4095 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
4096 // Virtual register must be a foo:ssub_0<def,undef> operand.
4097 if (!MO.getSubReg() || MI->readsVirtualRegister(Reg))
4098 return 0;
4099 } else if (ARM::SPRRegClass.contains(Reg)) {
4100 // Physical register: MI must define the full D-reg.
4101 unsigned DReg = TRI->getMatchingSuperReg(Reg, ARM::ssub_0,
4102 &ARM::DPRRegClass);
4103 if (!DReg || !MI->definesRegister(DReg, TRI))
4104 return 0;
4105 }
4106
4107 // MI has an unwanted D-register dependency.
4108 // Avoid defs in the previous N instructrions.
4109 return SwiftPartialUpdateClearance;
4110}
4111
4112// Break a partial register dependency after getPartialRegUpdateClearance
4113// returned non-zero.
4114void ARMBaseInstrInfo::
4115breakPartialRegDependency(MachineBasicBlock::iterator MI,
4116 unsigned OpNum,
4117 const TargetRegisterInfo *TRI) const {
4118 assert(MI && OpNum < MI->getDesc().getNumDefs() && "OpNum is not a def");
4119 assert(TRI && "Need TRI instance");
4120
4121 const MachineOperand &MO = MI->getOperand(OpNum);
4122 unsigned Reg = MO.getReg();
4123 assert(TargetRegisterInfo::isPhysicalRegister(Reg) &&
4124 "Can't break virtual register dependencies.");
4125 unsigned DReg = Reg;
4126
4127 // If MI defines an S-reg, find the corresponding D super-register.
4128 if (ARM::SPRRegClass.contains(Reg)) {
4129 DReg = ARM::D0 + (Reg - ARM::S0) / 2;
4130 assert(TRI->isSuperRegister(Reg, DReg) && "Register enums broken");
4131 }
4132
4133 assert(ARM::DPRRegClass.contains(DReg) && "Can only break D-reg deps");
4134 assert(MI->definesRegister(DReg, TRI) && "MI doesn't clobber full D-reg");
4135
4136 // FIXME: In some cases, VLDRS can be changed to a VLD1DUPd32 which defines
4137 // the full D-register by loading the same value to both lanes. The
4138 // instruction is micro-coded with 2 uops, so don't do this until we can
4139 // properly schedule micro-coded instuctions. The dispatcher stalls cause
4140 // too big regressions.
4141
4142 // Insert the dependency-breaking FCONSTD before MI.
4143 // 96 is the encoding of 0.5, but the actual value doesn't matter here.
4144 AddDefaultPred(BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
4145 get(ARM::FCONSTD), DReg).addImm(96));
4146 MI->addRegisterKilled(DReg, TRI, true);
4147}
4148
Jim Grosbach617f84dd2012-02-28 23:53:30 +00004149bool ARMBaseInstrInfo::hasNOP() const {
4150 return (Subtarget.getFeatureBits() & ARM::HasV6T2Ops) != 0;
4151}
Arnold Schwaighofer5dde1f32013-04-05 04:42:00 +00004152
4153bool ARMBaseInstrInfo::isSwiftFastImmShift(const MachineInstr *MI) const {
Arnold Schwaighofere9375922013-06-05 14:59:36 +00004154 if (MI->getNumOperands() < 4)
4155 return true;
Arnold Schwaighofer5dde1f32013-04-05 04:42:00 +00004156 unsigned ShOpVal = MI->getOperand(3).getImm();
4157 unsigned ShImm = ARM_AM::getSORegOffset(ShOpVal);
4158 // Swift supports faster shifts for: lsl 2, lsl 1, and lsr 1.
4159 if ((ShImm == 1 && ARM_AM::getSORegShOp(ShOpVal) == ARM_AM::lsr) ||
4160 ((ShImm == 1 || ShImm == 2) &&
4161 ARM_AM::getSORegShOp(ShOpVal) == ARM_AM::lsl))
4162 return true;
4163
4164 return false;
4165}