blob: fe18851690b77618369fb80d27e29db26143d84e [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
David Goodwinaf7451b2009-07-08 16:09:28 +000014#include "ARM.h"
Amara Emerson52cfb6a2013-10-03 09:31:51 +000015#include "ARMBaseInstrInfo.h"
Craig Topper5fa0caa2012-03-26 00:45:15 +000016#include "ARMBaseRegisterInfo.h"
Evan Chenga8e8a7c2009-11-07 04:04:34 +000017#include "ARMConstantPoolValue.h"
Amara Emerson52cfb6a2013-10-03 09:31:51 +000018#include "ARMFeatures.h"
Evan Cheng62c7b5b2010-12-05 22:04:16 +000019#include "ARMHazardRecognizer.h"
David Goodwinaf7451b2009-07-08 16:09:28 +000020#include "ARMMachineFunctionInfo.h"
Evan Chenga20cde32011-07-20 23:34:39 +000021#include "MCTargetDesc/ARMAddressingModes.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "llvm/ADT/STLExtras.h"
David Goodwinaf7451b2009-07-08 16:09:28 +000023#include "llvm/CodeGen/LiveVariables.h"
Evan Chenga8e8a7c2009-11-07 04:04:34 +000024#include "llvm/CodeGen/MachineConstantPool.h"
David Goodwinaf7451b2009-07-08 16:09:28 +000025#include "llvm/CodeGen/MachineFrameInfo.h"
26#include "llvm/CodeGen/MachineInstrBuilder.h"
27#include "llvm/CodeGen/MachineJumpTableInfo.h"
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +000028#include "llvm/CodeGen/MachineMemOperand.h"
Evan Cheng168ced92010-05-22 01:47:14 +000029#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Chenga20cde32011-07-20 23:34:39 +000030#include "llvm/CodeGen/SelectionDAGNodes.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000031#include "llvm/IR/Constants.h"
32#include "llvm/IR/Function.h"
33#include "llvm/IR/GlobalValue.h"
Chris Lattner7b26fce2009-08-22 20:48:53 +000034#include "llvm/MC/MCAsmInfo.h"
Jakub Staszak9b07c0a2011-07-10 02:58:07 +000035#include "llvm/Support/BranchProbability.h"
David Goodwinaf7451b2009-07-08 16:09:28 +000036#include "llvm/Support/CommandLine.h"
Anton Korobeynikov14635da2009-11-02 00:10:38 +000037#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000038#include "llvm/Support/ErrorHandling.h"
Evan Cheng1e210d02011-06-28 20:07:07 +000039
Evan Cheng703a0fb2011-07-01 17:57:27 +000040#define GET_INSTRINFO_CTOR
Evan Cheng1e210d02011-06-28 20:07:07 +000041#include "ARMGenInstrInfo.inc"
42
David Goodwinaf7451b2009-07-08 16:09:28 +000043using namespace llvm;
44
45static cl::opt<bool>
46EnableARM3Addr("enable-arm-3-addr-conv", cl::Hidden,
47 cl::desc("Enable ARM 2-addr to 3-addr conv"));
48
Jakob Stoklund Olesencd893392011-08-31 17:00:02 +000049static cl::opt<bool>
Jakob Stoklund Olesen653183f2011-11-15 23:53:18 +000050WidenVMOVS("widen-vmovs", cl::Hidden, cl::init(true),
Jakob Stoklund Olesencd893392011-08-31 17:00:02 +000051 cl::desc("Widen ARM vmovs to vmovd when possible"));
52
Bob Wilsone8a549c2012-09-29 21:43:49 +000053static cl::opt<unsigned>
54SwiftPartialUpdateClearance("swift-partial-update-clearance",
55 cl::Hidden, cl::init(12),
56 cl::desc("Clearance before partial register updates"));
57
Evan Cheng62c7b5b2010-12-05 22:04:16 +000058/// ARM_MLxEntry - Record information about MLA / MLS instructions.
59struct ARM_MLxEntry {
Craig Topper2fbd1302012-05-24 03:59:11 +000060 uint16_t MLxOpc; // MLA / MLS opcode
61 uint16_t MulOpc; // Expanded multiplication opcode
62 uint16_t AddSubOpc; // Expanded add / sub opcode
Evan Cheng62c7b5b2010-12-05 22:04:16 +000063 bool NegAcc; // True if the acc is negated before the add / sub.
64 bool HasLane; // True if instruction has an extra "lane" operand.
65};
66
67static const ARM_MLxEntry ARM_MLxTable[] = {
68 // MLxOpc, MulOpc, AddSubOpc, NegAcc, HasLane
69 // fp scalar ops
70 { ARM::VMLAS, ARM::VMULS, ARM::VADDS, false, false },
71 { ARM::VMLSS, ARM::VMULS, ARM::VSUBS, false, false },
72 { ARM::VMLAD, ARM::VMULD, ARM::VADDD, false, false },
73 { ARM::VMLSD, ARM::VMULD, ARM::VSUBD, false, false },
Evan Cheng62c7b5b2010-12-05 22:04:16 +000074 { ARM::VNMLAS, ARM::VNMULS, ARM::VSUBS, true, false },
75 { ARM::VNMLSS, ARM::VMULS, ARM::VSUBS, true, false },
76 { ARM::VNMLAD, ARM::VNMULD, ARM::VSUBD, true, false },
77 { ARM::VNMLSD, ARM::VMULD, ARM::VSUBD, true, false },
78
79 // fp SIMD ops
80 { ARM::VMLAfd, ARM::VMULfd, ARM::VADDfd, false, false },
81 { ARM::VMLSfd, ARM::VMULfd, ARM::VSUBfd, false, false },
82 { ARM::VMLAfq, ARM::VMULfq, ARM::VADDfq, false, false },
83 { ARM::VMLSfq, ARM::VMULfq, ARM::VSUBfq, false, false },
84 { ARM::VMLAslfd, ARM::VMULslfd, ARM::VADDfd, false, true },
85 { ARM::VMLSslfd, ARM::VMULslfd, ARM::VSUBfd, false, true },
86 { ARM::VMLAslfq, ARM::VMULslfq, ARM::VADDfq, false, true },
87 { ARM::VMLSslfq, ARM::VMULslfq, ARM::VSUBfq, false, true },
88};
89
Anton Korobeynikov14635da2009-11-02 00:10:38 +000090ARMBaseInstrInfo::ARMBaseInstrInfo(const ARMSubtarget& STI)
Evan Cheng703a0fb2011-07-01 17:57:27 +000091 : ARMGenInstrInfo(ARM::ADJCALLSTACKDOWN, ARM::ADJCALLSTACKUP),
Anton Korobeynikov14635da2009-11-02 00:10:38 +000092 Subtarget(STI) {
Evan Cheng62c7b5b2010-12-05 22:04:16 +000093 for (unsigned i = 0, e = array_lengthof(ARM_MLxTable); i != e; ++i) {
94 if (!MLxEntryMap.insert(std::make_pair(ARM_MLxTable[i].MLxOpc, i)).second)
95 assert(false && "Duplicated entries?");
96 MLxHazardOpcodes.insert(ARM_MLxTable[i].AddSubOpc);
97 MLxHazardOpcodes.insert(ARM_MLxTable[i].MulOpc);
98 }
99}
100
Andrew Trick10ffc2b2010-12-24 05:03:26 +0000101// Use a ScoreboardHazardRecognizer for prepass ARM scheduling. TargetInstrImpl
102// currently defaults to no prepass hazard recognizer.
Evan Cheng62c7b5b2010-12-05 22:04:16 +0000103ScheduleHazardRecognizer *ARMBaseInstrInfo::
Andrew Trick10ffc2b2010-12-24 05:03:26 +0000104CreateTargetHazardRecognizer(const TargetMachine *TM,
105 const ScheduleDAG *DAG) const {
Andrew Trick47ff14b2011-01-21 05:51:33 +0000106 if (usePreRAHazardRecognizer()) {
Andrew Trick10ffc2b2010-12-24 05:03:26 +0000107 const InstrItineraryData *II = TM->getInstrItineraryData();
108 return new ScoreboardHazardRecognizer(II, DAG, "pre-RA-sched");
109 }
Jakob Stoklund Olesen9de596e2012-11-28 02:35:17 +0000110 return TargetInstrInfo::CreateTargetHazardRecognizer(TM, DAG);
Andrew Trick10ffc2b2010-12-24 05:03:26 +0000111}
112
113ScheduleHazardRecognizer *ARMBaseInstrInfo::
114CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
115 const ScheduleDAG *DAG) const {
Evan Cheng62c7b5b2010-12-05 22:04:16 +0000116 if (Subtarget.isThumb2() || Subtarget.hasVFP2())
Bill Wendlingf95178e2013-06-07 05:54:19 +0000117 return (ScheduleHazardRecognizer *)new ARMHazardRecognizer(II, DAG);
Jakob Stoklund Olesen9de596e2012-11-28 02:35:17 +0000118 return TargetInstrInfo::CreateTargetPostRAHazardRecognizer(II, DAG);
David Goodwinaf7451b2009-07-08 16:09:28 +0000119}
120
121MachineInstr *
122ARMBaseInstrInfo::convertToThreeAddress(MachineFunction::iterator &MFI,
123 MachineBasicBlock::iterator &MBBI,
124 LiveVariables *LV) const {
Evan Cheng0e075e22009-07-27 18:44:00 +0000125 // FIXME: Thumb2 support.
126
David Goodwinaf7451b2009-07-08 16:09:28 +0000127 if (!EnableARM3Addr)
128 return NULL;
129
130 MachineInstr *MI = MBBI;
131 MachineFunction &MF = *MI->getParent()->getParent();
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000132 uint64_t TSFlags = MI->getDesc().TSFlags;
David Goodwinaf7451b2009-07-08 16:09:28 +0000133 bool isPre = false;
134 switch ((TSFlags & ARMII::IndexModeMask) >> ARMII::IndexModeShift) {
135 default: return NULL;
136 case ARMII::IndexModePre:
137 isPre = true;
138 break;
139 case ARMII::IndexModePost:
140 break;
141 }
142
143 // Try splitting an indexed load/store to an un-indexed one plus an add/sub
144 // operation.
145 unsigned MemOpc = getUnindexedOpcode(MI->getOpcode());
146 if (MemOpc == 0)
147 return NULL;
148
149 MachineInstr *UpdateMI = NULL;
150 MachineInstr *MemMI = NULL;
151 unsigned AddrMode = (TSFlags & ARMII::AddrModeMask);
Evan Cheng6cc775f2011-06-28 19:10:37 +0000152 const MCInstrDesc &MCID = MI->getDesc();
153 unsigned NumOps = MCID.getNumOperands();
Evan Cheng7f8e5632011-12-07 07:15:52 +0000154 bool isLoad = !MI->mayStore();
David Goodwinaf7451b2009-07-08 16:09:28 +0000155 const MachineOperand &WB = isLoad ? MI->getOperand(1) : MI->getOperand(0);
156 const MachineOperand &Base = MI->getOperand(2);
157 const MachineOperand &Offset = MI->getOperand(NumOps-3);
158 unsigned WBReg = WB.getReg();
159 unsigned BaseReg = Base.getReg();
160 unsigned OffReg = Offset.getReg();
161 unsigned OffImm = MI->getOperand(NumOps-2).getImm();
162 ARMCC::CondCodes Pred = (ARMCC::CondCodes)MI->getOperand(NumOps-1).getImm();
163 switch (AddrMode) {
Craig Toppere55c5562012-02-07 02:50:20 +0000164 default: llvm_unreachable("Unknown indexed op!");
David Goodwinaf7451b2009-07-08 16:09:28 +0000165 case ARMII::AddrMode2: {
166 bool isSub = ARM_AM::getAM2Op(OffImm) == ARM_AM::sub;
167 unsigned Amt = ARM_AM::getAM2Offset(OffImm);
168 if (OffReg == 0) {
Evan Chenge3a53c42009-07-08 21:03:57 +0000169 if (ARM_AM::getSOImmVal(Amt) == -1)
David Goodwinaf7451b2009-07-08 16:09:28 +0000170 // Can't encode it in a so_imm operand. This transformation will
171 // add more than 1 instruction. Abandon!
172 return NULL;
173 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng0e075e22009-07-27 18:44:00 +0000174 get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
Evan Chenge3a53c42009-07-08 21:03:57 +0000175 .addReg(BaseReg).addImm(Amt)
David Goodwinaf7451b2009-07-08 16:09:28 +0000176 .addImm(Pred).addReg(0).addReg(0);
177 } else if (Amt != 0) {
178 ARM_AM::ShiftOpc ShOpc = ARM_AM::getAM2ShiftOpc(OffImm);
179 unsigned SOOpc = ARM_AM::getSORegOpc(ShOpc, Amt);
180 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Owen Andersonb595ed02011-07-21 18:54:16 +0000181 get(isSub ? ARM::SUBrsi : ARM::ADDrsi), WBReg)
David Goodwinaf7451b2009-07-08 16:09:28 +0000182 .addReg(BaseReg).addReg(OffReg).addReg(0).addImm(SOOpc)
183 .addImm(Pred).addReg(0).addReg(0);
184 } else
185 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng0e075e22009-07-27 18:44:00 +0000186 get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
David Goodwinaf7451b2009-07-08 16:09:28 +0000187 .addReg(BaseReg).addReg(OffReg)
188 .addImm(Pred).addReg(0).addReg(0);
189 break;
190 }
191 case ARMII::AddrMode3 : {
192 bool isSub = ARM_AM::getAM3Op(OffImm) == ARM_AM::sub;
193 unsigned Amt = ARM_AM::getAM3Offset(OffImm);
194 if (OffReg == 0)
195 // Immediate is 8-bits. It's guaranteed to fit in a so_imm operand.
196 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng0e075e22009-07-27 18:44:00 +0000197 get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
David Goodwinaf7451b2009-07-08 16:09:28 +0000198 .addReg(BaseReg).addImm(Amt)
199 .addImm(Pred).addReg(0).addReg(0);
200 else
201 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng0e075e22009-07-27 18:44:00 +0000202 get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
David Goodwinaf7451b2009-07-08 16:09:28 +0000203 .addReg(BaseReg).addReg(OffReg)
204 .addImm(Pred).addReg(0).addReg(0);
205 break;
206 }
207 }
208
209 std::vector<MachineInstr*> NewMIs;
210 if (isPre) {
211 if (isLoad)
212 MemMI = BuildMI(MF, MI->getDebugLoc(),
213 get(MemOpc), MI->getOperand(0).getReg())
Jim Grosbach1e4d9a12010-10-26 22:37:02 +0000214 .addReg(WBReg).addImm(0).addImm(Pred);
David Goodwinaf7451b2009-07-08 16:09:28 +0000215 else
216 MemMI = BuildMI(MF, MI->getDebugLoc(),
217 get(MemOpc)).addReg(MI->getOperand(1).getReg())
218 .addReg(WBReg).addReg(0).addImm(0).addImm(Pred);
219 NewMIs.push_back(MemMI);
220 NewMIs.push_back(UpdateMI);
221 } else {
222 if (isLoad)
223 MemMI = BuildMI(MF, MI->getDebugLoc(),
224 get(MemOpc), MI->getOperand(0).getReg())
Jim Grosbach1e4d9a12010-10-26 22:37:02 +0000225 .addReg(BaseReg).addImm(0).addImm(Pred);
David Goodwinaf7451b2009-07-08 16:09:28 +0000226 else
227 MemMI = BuildMI(MF, MI->getDebugLoc(),
228 get(MemOpc)).addReg(MI->getOperand(1).getReg())
229 .addReg(BaseReg).addReg(0).addImm(0).addImm(Pred);
230 if (WB.isDead())
231 UpdateMI->getOperand(0).setIsDead();
232 NewMIs.push_back(UpdateMI);
233 NewMIs.push_back(MemMI);
234 }
235
236 // Transfer LiveVariables states, kill / dead info.
237 if (LV) {
238 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
239 MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesen2fb5b312011-01-10 02:58:51 +0000240 if (MO.isReg() && TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
David Goodwinaf7451b2009-07-08 16:09:28 +0000241 unsigned Reg = MO.getReg();
242
243 LiveVariables::VarInfo &VI = LV->getVarInfo(Reg);
244 if (MO.isDef()) {
245 MachineInstr *NewMI = (Reg == WBReg) ? UpdateMI : MemMI;
246 if (MO.isDead())
247 LV->addVirtualRegisterDead(Reg, NewMI);
248 }
249 if (MO.isUse() && MO.isKill()) {
250 for (unsigned j = 0; j < 2; ++j) {
251 // Look at the two new MI's in reverse order.
252 MachineInstr *NewMI = NewMIs[j];
253 if (!NewMI->readsRegister(Reg))
254 continue;
255 LV->addVirtualRegisterKilled(Reg, NewMI);
256 if (VI.removeKill(MI))
257 VI.Kills.push_back(NewMI);
258 break;
259 }
260 }
261 }
262 }
263 }
264
265 MFI->insert(MBBI, NewMIs[1]);
266 MFI->insert(MBBI, NewMIs[0]);
267 return NewMIs[0];
268}
269
270// Branch analysis.
271bool
272ARMBaseInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,MachineBasicBlock *&TBB,
273 MachineBasicBlock *&FBB,
274 SmallVectorImpl<MachineOperand> &Cond,
275 bool AllowModify) const {
Lang Hames24864fe2013-07-19 23:52:47 +0000276 TBB = 0;
277 FBB = 0;
278
David Goodwinaf7451b2009-07-08 16:09:28 +0000279 MachineBasicBlock::iterator I = MBB.end();
Dale Johannesen4244d122010-04-02 01:38:09 +0000280 if (I == MBB.begin())
Lang Hames24864fe2013-07-19 23:52:47 +0000281 return false; // Empty blocks are easy.
Dale Johannesen4244d122010-04-02 01:38:09 +0000282 --I;
Lang Hames24864fe2013-07-19 23:52:47 +0000283
284 // Walk backwards from the end of the basic block until the branch is
285 // analyzed or we give up.
286 while (isPredicated(I) || I->isTerminator()) {
287
288 // Flag to be raised on unanalyzeable instructions. This is useful in cases
289 // where we want to clean up on the end of the basic block before we bail
290 // out.
291 bool CantAnalyze = false;
292
293 // Skip over DEBUG values and predicated nonterminators.
294 while (I->isDebugValue() || !I->isTerminator()) {
295 if (I == MBB.begin())
296 return false;
297 --I;
298 }
299
300 if (isIndirectBranchOpcode(I->getOpcode()) ||
301 isJumpTableBranchOpcode(I->getOpcode())) {
302 // Indirect branches and jump tables can't be analyzed, but we still want
303 // to clean up any instructions at the tail of the basic block.
304 CantAnalyze = true;
305 } else if (isUncondBranchOpcode(I->getOpcode())) {
306 TBB = I->getOperand(0).getMBB();
307 } else if (isCondBranchOpcode(I->getOpcode())) {
308 // Bail out if we encounter multiple conditional branches.
309 if (!Cond.empty())
310 return true;
311
312 assert(!FBB && "FBB should have been null.");
313 FBB = TBB;
314 TBB = I->getOperand(0).getMBB();
315 Cond.push_back(I->getOperand(1));
316 Cond.push_back(I->getOperand(2));
317 } else if (I->isReturn()) {
318 // Returns can't be analyzed, but we should run cleanup.
319 CantAnalyze = !isPredicated(I);
320 } else {
321 // We encountered other unrecognized terminator. Bail out immediately.
322 return true;
323 }
324
325 // Cleanup code - to be run for unpredicated unconditional branches and
326 // returns.
327 if (!isPredicated(I) &&
328 (isUncondBranchOpcode(I->getOpcode()) ||
329 isIndirectBranchOpcode(I->getOpcode()) ||
330 isJumpTableBranchOpcode(I->getOpcode()) ||
331 I->isReturn())) {
332 // Forget any previous condition branch information - it no longer applies.
333 Cond.clear();
334 FBB = 0;
335
336 // If we can modify the function, delete everything below this
337 // unconditional branch.
338 if (AllowModify) {
339 MachineBasicBlock::iterator DI = llvm::next(I);
340 while (DI != MBB.end()) {
341 MachineInstr *InstToDelete = DI;
342 ++DI;
343 InstToDelete->eraseFromParent();
344 }
345 }
346 }
347
348 if (CantAnalyze)
349 return true;
350
Dale Johannesen4244d122010-04-02 01:38:09 +0000351 if (I == MBB.begin())
352 return false;
Lang Hames24864fe2013-07-19 23:52:47 +0000353
Dale Johannesen4244d122010-04-02 01:38:09 +0000354 --I;
355 }
David Goodwinaf7451b2009-07-08 16:09:28 +0000356
Lang Hames24864fe2013-07-19 23:52:47 +0000357 // We made it past the terminators without bailing out - we must have
358 // analyzed this branch successfully.
359 return false;
David Goodwinaf7451b2009-07-08 16:09:28 +0000360}
361
362
363unsigned ARMBaseInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
David Goodwinaf7451b2009-07-08 16:09:28 +0000364 MachineBasicBlock::iterator I = MBB.end();
365 if (I == MBB.begin()) return 0;
366 --I;
Dale Johannesen4244d122010-04-02 01:38:09 +0000367 while (I->isDebugValue()) {
368 if (I == MBB.begin())
369 return 0;
370 --I;
371 }
Evan Cheng056c6692009-07-27 18:20:05 +0000372 if (!isUncondBranchOpcode(I->getOpcode()) &&
373 !isCondBranchOpcode(I->getOpcode()))
David Goodwinaf7451b2009-07-08 16:09:28 +0000374 return 0;
375
376 // Remove the branch.
377 I->eraseFromParent();
378
379 I = MBB.end();
380
381 if (I == MBB.begin()) return 1;
382 --I;
Evan Cheng056c6692009-07-27 18:20:05 +0000383 if (!isCondBranchOpcode(I->getOpcode()))
David Goodwinaf7451b2009-07-08 16:09:28 +0000384 return 1;
385
386 // Remove the branch.
387 I->eraseFromParent();
388 return 2;
389}
390
391unsigned
392ARMBaseInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
Stuart Hastings0125b642010-06-17 22:43:56 +0000393 MachineBasicBlock *FBB,
394 const SmallVectorImpl<MachineOperand> &Cond,
395 DebugLoc DL) const {
Evan Cheng780748d2009-07-28 05:48:47 +0000396 ARMFunctionInfo *AFI = MBB.getParent()->getInfo<ARMFunctionInfo>();
397 int BOpc = !AFI->isThumbFunction()
398 ? ARM::B : (AFI->isThumb2Function() ? ARM::t2B : ARM::tB);
399 int BccOpc = !AFI->isThumbFunction()
400 ? ARM::Bcc : (AFI->isThumb2Function() ? ARM::t2Bcc : ARM::tBcc);
Owen Anderson29cfe6c2011-09-09 21:48:23 +0000401 bool isThumb = AFI->isThumbFunction() || AFI->isThumb2Function();
Andrew Trick3f1fdf12011-09-21 02:17:37 +0000402
David Goodwinaf7451b2009-07-08 16:09:28 +0000403 // Shouldn't be a fall through.
404 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
405 assert((Cond.size() == 2 || Cond.size() == 0) &&
406 "ARM branch conditions have two components!");
407
408 if (FBB == 0) {
Owen Andersoneb3f0fb2011-09-09 23:13:02 +0000409 if (Cond.empty()) { // Unconditional branch?
Owen Anderson29cfe6c2011-09-09 21:48:23 +0000410 if (isThumb)
411 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB).addImm(ARMCC::AL).addReg(0);
412 else
413 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB);
Owen Andersoneb3f0fb2011-09-09 23:13:02 +0000414 } else
Stuart Hastings0125b642010-06-17 22:43:56 +0000415 BuildMI(&MBB, DL, get(BccOpc)).addMBB(TBB)
David Goodwinaf7451b2009-07-08 16:09:28 +0000416 .addImm(Cond[0].getImm()).addReg(Cond[1].getReg());
417 return 1;
418 }
419
420 // Two-way conditional branch.
Stuart Hastings0125b642010-06-17 22:43:56 +0000421 BuildMI(&MBB, DL, get(BccOpc)).addMBB(TBB)
David Goodwinaf7451b2009-07-08 16:09:28 +0000422 .addImm(Cond[0].getImm()).addReg(Cond[1].getReg());
Owen Anderson29cfe6c2011-09-09 21:48:23 +0000423 if (isThumb)
424 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB).addImm(ARMCC::AL).addReg(0);
425 else
426 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB);
David Goodwinaf7451b2009-07-08 16:09:28 +0000427 return 2;
428}
429
430bool ARMBaseInstrInfo::
431ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const {
432 ARMCC::CondCodes CC = (ARMCC::CondCodes)(int)Cond[0].getImm();
433 Cond[0].setImm(ARMCC::getOppositeCondition(CC));
434 return false;
435}
436
Evan Cheng7fae11b2011-12-14 02:11:42 +0000437bool ARMBaseInstrInfo::isPredicated(const MachineInstr *MI) const {
438 if (MI->isBundle()) {
439 MachineBasicBlock::const_instr_iterator I = MI;
440 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
441 while (++I != E && I->isInsideBundle()) {
442 int PIdx = I->findFirstPredOperandIdx();
443 if (PIdx != -1 && I->getOperand(PIdx).getImm() != ARMCC::AL)
444 return true;
445 }
446 return false;
447 }
448
449 int PIdx = MI->findFirstPredOperandIdx();
450 return PIdx != -1 && MI->getOperand(PIdx).getImm() != ARMCC::AL;
451}
452
David Goodwinaf7451b2009-07-08 16:09:28 +0000453bool ARMBaseInstrInfo::
454PredicateInstruction(MachineInstr *MI,
455 const SmallVectorImpl<MachineOperand> &Pred) const {
456 unsigned Opc = MI->getOpcode();
Evan Cheng056c6692009-07-27 18:20:05 +0000457 if (isUncondBranchOpcode(Opc)) {
458 MI->setDesc(get(getMatchingCondBranchOpcode(Opc)));
Jakob Stoklund Olesen2ea20362012-12-20 22:53:55 +0000459 MachineInstrBuilder(*MI->getParent()->getParent(), MI)
460 .addImm(Pred[0].getImm())
461 .addReg(Pred[1].getReg());
David Goodwinaf7451b2009-07-08 16:09:28 +0000462 return true;
463 }
464
465 int PIdx = MI->findFirstPredOperandIdx();
466 if (PIdx != -1) {
467 MachineOperand &PMO = MI->getOperand(PIdx);
468 PMO.setImm(Pred[0].getImm());
469 MI->getOperand(PIdx+1).setReg(Pred[1].getReg());
470 return true;
471 }
472 return false;
473}
474
475bool ARMBaseInstrInfo::
476SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
477 const SmallVectorImpl<MachineOperand> &Pred2) const {
478 if (Pred1.size() > 2 || Pred2.size() > 2)
479 return false;
480
481 ARMCC::CondCodes CC1 = (ARMCC::CondCodes)Pred1[0].getImm();
482 ARMCC::CondCodes CC2 = (ARMCC::CondCodes)Pred2[0].getImm();
483 if (CC1 == CC2)
484 return true;
485
486 switch (CC1) {
487 default:
488 return false;
489 case ARMCC::AL:
490 return true;
491 case ARMCC::HS:
492 return CC2 == ARMCC::HI;
493 case ARMCC::LS:
494 return CC2 == ARMCC::LO || CC2 == ARMCC::EQ;
495 case ARMCC::GE:
496 return CC2 == ARMCC::GT;
497 case ARMCC::LE:
498 return CC2 == ARMCC::LT;
499 }
500}
501
502bool ARMBaseInstrInfo::DefinesPredicate(MachineInstr *MI,
503 std::vector<MachineOperand> &Pred) const {
David Goodwinaf7451b2009-07-08 16:09:28 +0000504 bool Found = false;
505 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
506 const MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesen4fad5b22012-02-17 19:23:15 +0000507 if ((MO.isRegMask() && MO.clobbersPhysReg(ARM::CPSR)) ||
508 (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)) {
David Goodwinaf7451b2009-07-08 16:09:28 +0000509 Pred.push_back(MO);
510 Found = true;
511 }
512 }
513
514 return Found;
515}
516
Evan Chenga33fc862009-11-21 06:21:52 +0000517/// isPredicable - Return true if the specified instruction can be predicated.
518/// By default, this returns true for every instruction with a
519/// PredicateOperand.
520bool ARMBaseInstrInfo::isPredicable(MachineInstr *MI) const {
Evan Cheng7f8e5632011-12-07 07:15:52 +0000521 if (!MI->isPredicable())
Evan Chenga33fc862009-11-21 06:21:52 +0000522 return false;
523
Joey Goulya5153cb2013-09-09 14:21:49 +0000524 ARMFunctionInfo *AFI =
525 MI->getParent()->getParent()->getInfo<ARMFunctionInfo>();
526
527 if (AFI->isThumb2Function()) {
528 if (getSubtarget().hasV8Ops())
529 return isV8EligibleForIT(MI);
530 } else { // non-Thumb
531 if ((MI->getDesc().TSFlags & ARMII::DomainMask) == ARMII::DomainNEON)
532 return false;
Evan Chenga33fc862009-11-21 06:21:52 +0000533 }
Joey Goulya5153cb2013-09-09 14:21:49 +0000534
Evan Chenga33fc862009-11-21 06:21:52 +0000535 return true;
536}
David Goodwinaf7451b2009-07-08 16:09:28 +0000537
Chris Lattnerc831fac2009-12-03 06:58:32 +0000538/// FIXME: Works around a gcc miscompilation with -fstrict-aliasing.
Chandler Carruth82058c02010-10-23 08:40:19 +0000539LLVM_ATTRIBUTE_NOINLINE
David Goodwinaf7451b2009-07-08 16:09:28 +0000540static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
Chris Lattnerc831fac2009-12-03 06:58:32 +0000541 unsigned JTI);
David Goodwinaf7451b2009-07-08 16:09:28 +0000542static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
543 unsigned JTI) {
Chris Lattnerc831fac2009-12-03 06:58:32 +0000544 assert(JTI < JT.size());
David Goodwinaf7451b2009-07-08 16:09:28 +0000545 return JT[JTI].MBBs.size();
546}
547
548/// GetInstSize - Return the size of the specified MachineInstr.
549///
550unsigned ARMBaseInstrInfo::GetInstSizeInBytes(const MachineInstr *MI) const {
551 const MachineBasicBlock &MBB = *MI->getParent();
552 const MachineFunction *MF = MBB.getParent();
Chris Lattnere9a75a62009-08-22 21:43:10 +0000553 const MCAsmInfo *MAI = MF->getTarget().getMCAsmInfo();
David Goodwinaf7451b2009-07-08 16:09:28 +0000554
Evan Cheng6cc775f2011-06-28 19:10:37 +0000555 const MCInstrDesc &MCID = MI->getDesc();
Owen Anderson651b2302011-07-13 23:22:26 +0000556 if (MCID.getSize())
557 return MCID.getSize();
David Goodwinaf7451b2009-07-08 16:09:28 +0000558
David Blaikie46a9f012012-01-20 21:51:11 +0000559 // If this machine instr is an inline asm, measure it.
560 if (MI->getOpcode() == ARM::INLINEASM)
561 return getInlineAsmLength(MI->getOperand(0).getSymbolName(), *MAI);
562 if (MI->isLabel())
563 return 0;
564 unsigned Opc = MI->getOpcode();
565 switch (Opc) {
566 case TargetOpcode::IMPLICIT_DEF:
567 case TargetOpcode::KILL:
568 case TargetOpcode::PROLOG_LABEL:
569 case TargetOpcode::EH_LABEL:
570 case TargetOpcode::DBG_VALUE:
571 return 0;
572 case TargetOpcode::BUNDLE:
573 return getInstBundleLength(MI);
574 case ARM::MOVi16_ga_pcrel:
575 case ARM::MOVTi16_ga_pcrel:
576 case ARM::t2MOVi16_ga_pcrel:
577 case ARM::t2MOVTi16_ga_pcrel:
578 return 4;
579 case ARM::MOVi32imm:
580 case ARM::t2MOVi32imm:
581 return 8;
582 case ARM::CONSTPOOL_ENTRY:
583 // If this machine instr is a constant pool entry, its size is recorded as
584 // operand #2.
585 return MI->getOperand(2).getImm();
586 case ARM::Int_eh_sjlj_longjmp:
587 return 16;
588 case ARM::tInt_eh_sjlj_longjmp:
589 return 10;
590 case ARM::Int_eh_sjlj_setjmp:
591 case ARM::Int_eh_sjlj_setjmp_nofp:
592 return 20;
593 case ARM::tInt_eh_sjlj_setjmp:
594 case ARM::t2Int_eh_sjlj_setjmp:
595 case ARM::t2Int_eh_sjlj_setjmp_nofp:
596 return 12;
597 case ARM::BR_JTr:
598 case ARM::BR_JTm:
599 case ARM::BR_JTadd:
600 case ARM::tBR_JTr:
601 case ARM::t2BR_JT:
602 case ARM::t2TBB_JT:
603 case ARM::t2TBH_JT: {
604 // These are jumptable branches, i.e. a branch followed by an inlined
605 // jumptable. The size is 4 + 4 * number of entries. For TBB, each
606 // entry is one byte; TBH two byte each.
607 unsigned EntrySize = (Opc == ARM::t2TBB_JT)
608 ? 1 : ((Opc == ARM::t2TBH_JT) ? 2 : 4);
609 unsigned NumOps = MCID.getNumOperands();
610 MachineOperand JTOP =
611 MI->getOperand(NumOps - (MI->isPredicable() ? 3 : 2));
612 unsigned JTI = JTOP.getIndex();
613 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
614 assert(MJTI != 0);
615 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
616 assert(JTI < JT.size());
617 // Thumb instructions are 2 byte aligned, but JT entries are 4 byte
618 // 4 aligned. The assembler / linker may add 2 byte padding just before
619 // the JT entries. The size does not include this padding; the
620 // constant islands pass does separate bookkeeping for it.
621 // FIXME: If we know the size of the function is less than (1 << 16) *2
622 // bytes, we can use 16-bit entries instead. Then there won't be an
623 // alignment issue.
624 unsigned InstSize = (Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT) ? 2 : 4;
625 unsigned NumEntries = getNumJTEntries(JT, JTI);
626 if (Opc == ARM::t2TBB_JT && (NumEntries & 1))
627 // Make sure the instruction that follows TBB is 2-byte aligned.
628 // FIXME: Constant island pass should insert an "ALIGN" instruction
629 // instead.
630 ++NumEntries;
631 return NumEntries * EntrySize + InstSize;
632 }
633 default:
634 // Otherwise, pseudo-instruction sizes are zero.
635 return 0;
636 }
David Goodwinaf7451b2009-07-08 16:09:28 +0000637}
638
Evan Cheng7fae11b2011-12-14 02:11:42 +0000639unsigned ARMBaseInstrInfo::getInstBundleLength(const MachineInstr *MI) const {
640 unsigned Size = 0;
641 MachineBasicBlock::const_instr_iterator I = MI;
642 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
643 while (++I != E && I->isInsideBundle()) {
644 assert(!I->isBundle() && "No nested bundle!");
645 Size += GetInstSizeInBytes(&*I);
646 }
647 return Size;
648}
649
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000650void ARMBaseInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
651 MachineBasicBlock::iterator I, DebugLoc DL,
652 unsigned DestReg, unsigned SrcReg,
653 bool KillSrc) const {
654 bool GPRDest = ARM::GPRRegClass.contains(DestReg);
Jim Grosbach8815bef2013-10-22 02:29:35 +0000655 bool GPRSrc = ARM::GPRRegClass.contains(SrcReg);
Bob Wilson70aa8d02010-02-16 17:24:15 +0000656
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000657 if (GPRDest && GPRSrc) {
658 AddDefaultCC(AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::MOVr), DestReg)
Jim Grosbach8815bef2013-10-22 02:29:35 +0000659 .addReg(SrcReg, getKillRegState(KillSrc))));
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000660 return;
David Goodwine5b5d8f2009-08-05 21:02:22 +0000661 }
David Goodwinaf7451b2009-07-08 16:09:28 +0000662
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000663 bool SPRDest = ARM::SPRRegClass.contains(DestReg);
Jim Grosbach8815bef2013-10-22 02:29:35 +0000664 bool SPRSrc = ARM::SPRRegClass.contains(SrcReg);
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000665
Chad Rosierbe762512011-08-20 00:17:25 +0000666 unsigned Opc = 0;
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +0000667 if (SPRDest && SPRSrc)
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000668 Opc = ARM::VMOVS;
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +0000669 else if (GPRDest && SPRSrc)
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000670 Opc = ARM::VMOVRS;
671 else if (SPRDest && GPRSrc)
672 Opc = ARM::VMOVSR;
673 else if (ARM::DPRRegClass.contains(DestReg, SrcReg))
674 Opc = ARM::VMOVD;
675 else if (ARM::QPRRegClass.contains(DestReg, SrcReg))
Owen Anderson454e1c72011-07-15 18:46:47 +0000676 Opc = ARM::VORRq;
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000677
Chad Rosierbe762512011-08-20 00:17:25 +0000678 if (Opc) {
679 MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc), DestReg);
Owen Anderson454e1c72011-07-15 18:46:47 +0000680 MIB.addReg(SrcReg, getKillRegState(KillSrc));
Chad Rosierbe762512011-08-20 00:17:25 +0000681 if (Opc == ARM::VORRq)
682 MIB.addReg(SrcReg, getKillRegState(KillSrc));
Chad Rosier61f92ef2011-08-20 00:52:40 +0000683 AddDefaultPred(MIB);
Chad Rosierbe762512011-08-20 00:17:25 +0000684 return;
685 }
686
Jakob Stoklund Olesencaa6bd22012-03-29 21:10:40 +0000687 // Handle register classes that require multiple instructions.
688 unsigned BeginIdx = 0;
689 unsigned SubRegs = 0;
Andrew Trickb57e2252012-08-29 04:41:37 +0000690 int Spacing = 1;
Jakob Stoklund Olesencaa6bd22012-03-29 21:10:40 +0000691
692 // Use VORRq when possible.
Jim Grosbach8815bef2013-10-22 02:29:35 +0000693 if (ARM::QQPRRegClass.contains(DestReg, SrcReg)) {
694 Opc = ARM::VORRq;
695 BeginIdx = ARM::qsub_0;
696 SubRegs = 2;
697 } else if (ARM::QQQQPRRegClass.contains(DestReg, SrcReg)) {
698 Opc = ARM::VORRq;
699 BeginIdx = ARM::qsub_0;
700 SubRegs = 4;
Jakob Stoklund Olesencaa6bd22012-03-29 21:10:40 +0000701 // Fall back to VMOVD.
Jim Grosbach8815bef2013-10-22 02:29:35 +0000702 } else if (ARM::DPairRegClass.contains(DestReg, SrcReg)) {
703 Opc = ARM::VMOVD;
704 BeginIdx = ARM::dsub_0;
705 SubRegs = 2;
706 } else if (ARM::DTripleRegClass.contains(DestReg, SrcReg)) {
707 Opc = ARM::VMOVD;
708 BeginIdx = ARM::dsub_0;
709 SubRegs = 3;
710 } else if (ARM::DQuadRegClass.contains(DestReg, SrcReg)) {
711 Opc = ARM::VMOVD;
712 BeginIdx = ARM::dsub_0;
713 SubRegs = 4;
714 } else if (ARM::GPRPairRegClass.contains(DestReg, SrcReg)) {
Jim Grosbachdba14dd2013-10-22 02:29:37 +0000715 Opc = Subtarget.isThumb2() ? ARM::tMOVr : ARM::MOVr;
Jim Grosbach8815bef2013-10-22 02:29:35 +0000716 BeginIdx = ARM::gsub_0;
717 SubRegs = 2;
718 } else if (ARM::DPairSpcRegClass.contains(DestReg, SrcReg)) {
719 Opc = ARM::VMOVD;
720 BeginIdx = ARM::dsub_0;
721 SubRegs = 2;
722 Spacing = 2;
723 } else if (ARM::DTripleSpcRegClass.contains(DestReg, SrcReg)) {
724 Opc = ARM::VMOVD;
725 BeginIdx = ARM::dsub_0;
726 SubRegs = 3;
727 Spacing = 2;
728 } else if (ARM::DQuadSpcRegClass.contains(DestReg, SrcReg)) {
729 Opc = ARM::VMOVD;
730 BeginIdx = ARM::dsub_0;
731 SubRegs = 4;
732 Spacing = 2;
733 }
Jakob Stoklund Olesencaa6bd22012-03-29 21:10:40 +0000734
Andrew Trickb57e2252012-08-29 04:41:37 +0000735 assert(Opc && "Impossible reg-to-reg copy");
Jakob Stoklund Olesencaa6bd22012-03-29 21:10:40 +0000736
Andrew Trick4cc69492012-08-29 01:58:52 +0000737 const TargetRegisterInfo *TRI = &getRegisterInfo();
738 MachineInstrBuilder Mov;
Andrew Trickbd0073d2012-08-29 01:58:55 +0000739
740 // Copy register tuples backward when the first Dest reg overlaps with SrcReg.
741 if (TRI->regsOverlap(SrcReg, TRI->getSubReg(DestReg, BeginIdx))) {
Jim Grosbach8815bef2013-10-22 02:29:35 +0000742 BeginIdx = BeginIdx + ((SubRegs - 1) * Spacing);
Andrew Trickbd0073d2012-08-29 01:58:55 +0000743 Spacing = -Spacing;
744 }
745#ifndef NDEBUG
746 SmallSet<unsigned, 4> DstRegs;
747#endif
Andrew Trick4cc69492012-08-29 01:58:52 +0000748 for (unsigned i = 0; i != SubRegs; ++i) {
Jim Grosbach8815bef2013-10-22 02:29:35 +0000749 unsigned Dst = TRI->getSubReg(DestReg, BeginIdx + i * Spacing);
750 unsigned Src = TRI->getSubReg(SrcReg, BeginIdx + i * Spacing);
Andrew Trick4cc69492012-08-29 01:58:52 +0000751 assert(Dst && Src && "Bad sub-register");
Andrew Trickbd0073d2012-08-29 01:58:55 +0000752#ifndef NDEBUG
Andrew Trickbd0073d2012-08-29 01:58:55 +0000753 assert(!DstRegs.count(Src) && "destructive vector copy");
Andrew Trickb57e2252012-08-29 04:41:37 +0000754 DstRegs.insert(Dst);
Andrew Trickbd0073d2012-08-29 01:58:55 +0000755#endif
Jim Grosbach8815bef2013-10-22 02:29:35 +0000756 Mov = BuildMI(MBB, I, I->getDebugLoc(), get(Opc), Dst).addReg(Src);
Andrew Trick4cc69492012-08-29 01:58:52 +0000757 // VORR takes two source operands.
758 if (Opc == ARM::VORRq)
759 Mov.addReg(Src);
760 Mov = AddDefaultPred(Mov);
JF Bastien583db652013-07-12 23:33:03 +0000761 // MOVr can set CC.
762 if (Opc == ARM::MOVr)
763 Mov = AddDefaultCC(Mov);
Andrew Trick4cc69492012-08-29 01:58:52 +0000764 }
765 // Add implicit super-register defs and kills to the last instruction.
766 Mov->addRegisterDefined(DestReg, TRI);
767 if (KillSrc)
768 Mov->addRegisterKilled(SrcReg, TRI);
David Goodwinaf7451b2009-07-08 16:09:28 +0000769}
770
Tim Northover798697d2013-04-21 11:57:07 +0000771const MachineInstrBuilder &
772ARMBaseInstrInfo::AddDReg(MachineInstrBuilder &MIB, unsigned Reg,
773 unsigned SubIdx, unsigned State,
774 const TargetRegisterInfo *TRI) const {
Evan Chengddc93c72010-05-07 00:24:52 +0000775 if (!SubIdx)
776 return MIB.addReg(Reg, State);
777
778 if (TargetRegisterInfo::isPhysicalRegister(Reg))
779 return MIB.addReg(TRI->getSubReg(Reg, SubIdx), State);
780 return MIB.addReg(Reg, State, SubIdx);
781}
782
David Goodwinaf7451b2009-07-08 16:09:28 +0000783void ARMBaseInstrInfo::
784storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
785 unsigned SrcReg, bool isKill, int FI,
Evan Chengefb126a2010-05-06 19:06:44 +0000786 const TargetRegisterClass *RC,
787 const TargetRegisterInfo *TRI) const {
Chris Lattner6f306d72010-04-02 20:16:16 +0000788 DebugLoc DL;
David Goodwinaf7451b2009-07-08 16:09:28 +0000789 if (I != MBB.end()) DL = I->getDebugLoc();
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000790 MachineFunction &MF = *MBB.getParent();
791 MachineFrameInfo &MFI = *MF.getFrameInfo();
Jim Grosbacha15c3b72009-11-08 00:27:19 +0000792 unsigned Align = MFI.getObjectAlignment(FI);
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000793
794 MachineMemOperand *MMO =
Jay Foad465101b2011-11-15 07:34:52 +0000795 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
Chris Lattnere3d864b2010-09-21 04:39:43 +0000796 MachineMemOperand::MOStore,
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000797 MFI.getObjectSize(FI),
Jim Grosbacha15c3b72009-11-08 00:27:19 +0000798 Align);
David Goodwinaf7451b2009-07-08 16:09:28 +0000799
Owen Anderson732f82c2011-08-10 17:21:20 +0000800 switch (RC->getSize()) {
801 case 4:
802 if (ARM::GPRRegClass.hasSubClassEq(RC)) {
803 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::STRi12))
David Goodwinaf7451b2009-07-08 16:09:28 +0000804 .addReg(SrcReg, getKillRegState(isKill))
Jim Grosbach338de3e2010-10-27 23:12:14 +0000805 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000806 } else if (ARM::SPRRegClass.hasSubClassEq(RC)) {
807 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRS))
Evan Cheng9d768f42010-05-06 01:34:11 +0000808 .addReg(SrcReg, getKillRegState(isKill))
809 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000810 } else
811 llvm_unreachable("Unknown reg class!");
812 break;
813 case 8:
814 if (ARM::DPRRegClass.hasSubClassEq(RC)) {
815 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRD))
David Goodwinaf7451b2009-07-08 16:09:28 +0000816 .addReg(SrcReg, getKillRegState(isKill))
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000817 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Jakob Stoklund Olesene46a1042012-10-26 21:29:15 +0000818 } else if (ARM::GPRPairRegClass.hasSubClassEq(RC)) {
Tim Northover798697d2013-04-21 11:57:07 +0000819 if (Subtarget.hasV5TEOps()) {
820 MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(ARM::STRD));
821 AddDReg(MIB, SrcReg, ARM::gsub_0, getKillRegState(isKill), TRI);
822 AddDReg(MIB, SrcReg, ARM::gsub_1, 0, TRI);
823 MIB.addFrameIndex(FI).addReg(0).addImm(0).addMemOperand(MMO);
824
825 AddDefaultPred(MIB);
826 } else {
827 // Fallback to STM instruction, which has existed since the dawn of
828 // time.
829 MachineInstrBuilder MIB =
830 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::STMIA))
831 .addFrameIndex(FI).addMemOperand(MMO));
832 AddDReg(MIB, SrcReg, ARM::gsub_0, getKillRegState(isKill), TRI);
833 AddDReg(MIB, SrcReg, ARM::gsub_1, 0, TRI);
834 }
Owen Anderson732f82c2011-08-10 17:21:20 +0000835 } else
836 llvm_unreachable("Unknown reg class!");
837 break;
838 case 16:
Jakob Stoklund Olesen9e512122012-03-28 21:20:32 +0000839 if (ARM::DPairRegClass.hasSubClassEq(RC)) {
Jakob Stoklund Olesend110e2a2012-01-05 00:26:57 +0000840 // Use aligned spills if the stack can be realigned.
841 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
Jim Grosbachc988e0c2012-03-05 19:33:30 +0000842 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1q64))
Bob Wilson4c1ca292010-07-06 21:26:18 +0000843 .addFrameIndex(FI).addImm(16)
Evan Cheng9de7cfe2010-05-13 01:12:06 +0000844 .addReg(SrcReg, getKillRegState(isKill))
845 .addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000846 } else {
847 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMQIA))
Evan Cheng9de7cfe2010-05-13 01:12:06 +0000848 .addReg(SrcReg, getKillRegState(isKill))
849 .addFrameIndex(FI)
Evan Cheng9de7cfe2010-05-13 01:12:06 +0000850 .addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000851 }
852 } else
853 llvm_unreachable("Unknown reg class!");
854 break;
Anton Korobeynikov218aaf62012-08-04 13:16:12 +0000855 case 24:
856 if (ARM::DTripleRegClass.hasSubClassEq(RC)) {
857 // Use aligned spills if the stack can be realigned.
858 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
859 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1d64TPseudo))
860 .addFrameIndex(FI).addImm(16)
861 .addReg(SrcReg, getKillRegState(isKill))
862 .addMemOperand(MMO));
863 } else {
864 MachineInstrBuilder MIB =
865 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
866 .addFrameIndex(FI))
867 .addMemOperand(MMO);
868 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
869 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
870 AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
871 }
872 } else
873 llvm_unreachable("Unknown reg class!");
874 break;
Owen Anderson732f82c2011-08-10 17:21:20 +0000875 case 32:
Anton Korobeynikov218aaf62012-08-04 13:16:12 +0000876 if (ARM::QQPRRegClass.hasSubClassEq(RC) || ARM::DQuadRegClass.hasSubClassEq(RC)) {
Owen Anderson732f82c2011-08-10 17:21:20 +0000877 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
878 // FIXME: It's possible to only store part of the QQ register if the
879 // spilled def has a sub-register index.
880 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1d64QPseudo))
Bob Wilsonb1e9d4b2010-09-15 01:48:05 +0000881 .addFrameIndex(FI).addImm(16)
882 .addReg(SrcReg, getKillRegState(isKill))
883 .addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000884 } else {
885 MachineInstrBuilder MIB =
886 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
Bill Wendlinga68e3a52010-11-16 01:16:36 +0000887 .addFrameIndex(FI))
Owen Anderson732f82c2011-08-10 17:21:20 +0000888 .addMemOperand(MMO);
889 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
890 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
891 MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
892 AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
893 }
894 } else
895 llvm_unreachable("Unknown reg class!");
896 break;
897 case 64:
898 if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
899 MachineInstrBuilder MIB =
900 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
901 .addFrameIndex(FI))
902 .addMemOperand(MMO);
903 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
904 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
905 MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
906 MIB = AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
907 MIB = AddDReg(MIB, SrcReg, ARM::dsub_4, 0, TRI);
908 MIB = AddDReg(MIB, SrcReg, ARM::dsub_5, 0, TRI);
909 MIB = AddDReg(MIB, SrcReg, ARM::dsub_6, 0, TRI);
910 AddDReg(MIB, SrcReg, ARM::dsub_7, 0, TRI);
911 } else
912 llvm_unreachable("Unknown reg class!");
913 break;
914 default:
915 llvm_unreachable("Unknown reg class!");
David Goodwinaf7451b2009-07-08 16:09:28 +0000916 }
917}
918
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +0000919unsigned
920ARMBaseInstrInfo::isStoreToStackSlot(const MachineInstr *MI,
921 int &FrameIndex) const {
922 switch (MI->getOpcode()) {
923 default: break;
Jim Grosbach338de3e2010-10-27 23:12:14 +0000924 case ARM::STRrs:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +0000925 case ARM::t2STRs: // FIXME: don't use t2STRs to access frame.
926 if (MI->getOperand(1).isFI() &&
927 MI->getOperand(2).isReg() &&
928 MI->getOperand(3).isImm() &&
929 MI->getOperand(2).getReg() == 0 &&
930 MI->getOperand(3).getImm() == 0) {
931 FrameIndex = MI->getOperand(1).getIndex();
932 return MI->getOperand(0).getReg();
933 }
934 break;
Jim Grosbach338de3e2010-10-27 23:12:14 +0000935 case ARM::STRi12:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +0000936 case ARM::t2STRi12:
Jim Grosbachd86f34d2011-06-29 20:26:39 +0000937 case ARM::tSTRspi:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +0000938 case ARM::VSTRD:
939 case ARM::VSTRS:
940 if (MI->getOperand(1).isFI() &&
941 MI->getOperand(2).isImm() &&
942 MI->getOperand(2).getImm() == 0) {
943 FrameIndex = MI->getOperand(1).getIndex();
944 return MI->getOperand(0).getReg();
945 }
946 break;
Jim Grosbachc988e0c2012-03-05 19:33:30 +0000947 case ARM::VST1q64:
Anton Korobeynikov3a4fdfe2012-08-04 13:22:14 +0000948 case ARM::VST1d64TPseudo:
949 case ARM::VST1d64QPseudo:
Jakob Stoklund Olesen33005d12010-09-15 17:27:09 +0000950 if (MI->getOperand(0).isFI() &&
951 MI->getOperand(2).getSubReg() == 0) {
952 FrameIndex = MI->getOperand(0).getIndex();
953 return MI->getOperand(2).getReg();
954 }
Jakob Stoklund Olesenb929c712010-09-15 21:40:09 +0000955 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +0000956 case ARM::VSTMQIA:
Jakob Stoklund Olesen33005d12010-09-15 17:27:09 +0000957 if (MI->getOperand(1).isFI() &&
Jakob Stoklund Olesen33005d12010-09-15 17:27:09 +0000958 MI->getOperand(0).getSubReg() == 0) {
959 FrameIndex = MI->getOperand(1).getIndex();
960 return MI->getOperand(0).getReg();
961 }
962 break;
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +0000963 }
964
965 return 0;
966}
967
Jakob Stoklund Olesenc04a66b2011-08-08 21:45:32 +0000968unsigned ARMBaseInstrInfo::isStoreToStackSlotPostFE(const MachineInstr *MI,
969 int &FrameIndex) const {
970 const MachineMemOperand *Dummy;
Evan Cheng7f8e5632011-12-07 07:15:52 +0000971 return MI->mayStore() && hasStoreToStackSlot(MI, Dummy, FrameIndex);
Jakob Stoklund Olesenc04a66b2011-08-08 21:45:32 +0000972}
973
David Goodwinaf7451b2009-07-08 16:09:28 +0000974void ARMBaseInstrInfo::
975loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
976 unsigned DestReg, int FI,
Evan Chengefb126a2010-05-06 19:06:44 +0000977 const TargetRegisterClass *RC,
978 const TargetRegisterInfo *TRI) const {
Chris Lattner6f306d72010-04-02 20:16:16 +0000979 DebugLoc DL;
David Goodwinaf7451b2009-07-08 16:09:28 +0000980 if (I != MBB.end()) DL = I->getDebugLoc();
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000981 MachineFunction &MF = *MBB.getParent();
982 MachineFrameInfo &MFI = *MF.getFrameInfo();
Jim Grosbacha15c3b72009-11-08 00:27:19 +0000983 unsigned Align = MFI.getObjectAlignment(FI);
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000984 MachineMemOperand *MMO =
Chris Lattnere3d864b2010-09-21 04:39:43 +0000985 MF.getMachineMemOperand(
Jay Foad465101b2011-11-15 07:34:52 +0000986 MachinePointerInfo::getFixedStack(FI),
Chris Lattnere3d864b2010-09-21 04:39:43 +0000987 MachineMemOperand::MOLoad,
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000988 MFI.getObjectSize(FI),
Jim Grosbacha15c3b72009-11-08 00:27:19 +0000989 Align);
David Goodwinaf7451b2009-07-08 16:09:28 +0000990
Owen Anderson732f82c2011-08-10 17:21:20 +0000991 switch (RC->getSize()) {
992 case 4:
993 if (ARM::GPRRegClass.hasSubClassEq(RC)) {
994 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::LDRi12), DestReg)
995 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Bob Wilson37f106e2010-02-16 22:01:59 +0000996
Owen Anderson732f82c2011-08-10 17:21:20 +0000997 } else if (ARM::SPRRegClass.hasSubClassEq(RC)) {
998 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRS), DestReg)
Jim Grosbach1e4d9a12010-10-26 22:37:02 +0000999 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +00001000 } else
1001 llvm_unreachable("Unknown reg class!");
Bob Wilsona92e41a2010-06-18 21:32:42 +00001002 break;
Owen Anderson732f82c2011-08-10 17:21:20 +00001003 case 8:
1004 if (ARM::DPRRegClass.hasSubClassEq(RC)) {
1005 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRD), DestReg)
Evan Cheng9d768f42010-05-06 01:34:11 +00001006 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Jakob Stoklund Olesene46a1042012-10-26 21:29:15 +00001007 } else if (ARM::GPRPairRegClass.hasSubClassEq(RC)) {
Tim Northover798697d2013-04-21 11:57:07 +00001008 MachineInstrBuilder MIB;
1009
1010 if (Subtarget.hasV5TEOps()) {
1011 MIB = BuildMI(MBB, I, DL, get(ARM::LDRD));
1012 AddDReg(MIB, DestReg, ARM::gsub_0, RegState::DefineNoRead, TRI);
1013 AddDReg(MIB, DestReg, ARM::gsub_1, RegState::DefineNoRead, TRI);
1014 MIB.addFrameIndex(FI).addReg(0).addImm(0).addMemOperand(MMO);
1015
1016 AddDefaultPred(MIB);
1017 } else {
1018 // Fallback to LDM instruction, which has existed since the dawn of
1019 // time.
1020 MIB = AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::LDMIA))
1021 .addFrameIndex(FI).addMemOperand(MMO));
1022 MIB = AddDReg(MIB, DestReg, ARM::gsub_0, RegState::DefineNoRead, TRI);
1023 MIB = AddDReg(MIB, DestReg, ARM::gsub_1, RegState::DefineNoRead, TRI);
1024 }
1025
Jakob Stoklund Olesene46a1042012-10-26 21:29:15 +00001026 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1027 MIB.addReg(DestReg, RegState::ImplicitDefine);
Owen Anderson732f82c2011-08-10 17:21:20 +00001028 } else
1029 llvm_unreachable("Unknown reg class!");
Bob Wilsona92e41a2010-06-18 21:32:42 +00001030 break;
Owen Anderson732f82c2011-08-10 17:21:20 +00001031 case 16:
Jakob Stoklund Olesen9e512122012-03-28 21:20:32 +00001032 if (ARM::DPairRegClass.hasSubClassEq(RC)) {
Jakob Stoklund Olesend110e2a2012-01-05 00:26:57 +00001033 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
Jim Grosbachc988e0c2012-03-05 19:33:30 +00001034 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1q64), DestReg)
Bob Wilson4c1ca292010-07-06 21:26:18 +00001035 .addFrameIndex(FI).addImm(16)
Evan Cheng9de7cfe2010-05-13 01:12:06 +00001036 .addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +00001037 } else {
1038 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMQIA), DestReg)
1039 .addFrameIndex(FI)
1040 .addMemOperand(MMO));
1041 }
1042 } else
1043 llvm_unreachable("Unknown reg class!");
Bob Wilsona92e41a2010-06-18 21:32:42 +00001044 break;
Anton Korobeynikov218aaf62012-08-04 13:16:12 +00001045 case 24:
1046 if (ARM::DTripleRegClass.hasSubClassEq(RC)) {
1047 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
1048 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1d64TPseudo), DestReg)
1049 .addFrameIndex(FI).addImm(16)
1050 .addMemOperand(MMO));
1051 } else {
1052 MachineInstrBuilder MIB =
1053 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
1054 .addFrameIndex(FI)
1055 .addMemOperand(MMO));
1056 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
1057 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
1058 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
1059 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1060 MIB.addReg(DestReg, RegState::ImplicitDefine);
1061 }
1062 } else
1063 llvm_unreachable("Unknown reg class!");
1064 break;
1065 case 32:
1066 if (ARM::QQPRRegClass.hasSubClassEq(RC) || ARM::DQuadRegClass.hasSubClassEq(RC)) {
Owen Anderson732f82c2011-08-10 17:21:20 +00001067 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
1068 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1d64QPseudo), DestReg)
Bob Wilsonb1e9d4b2010-09-15 01:48:05 +00001069 .addFrameIndex(FI).addImm(16)
1070 .addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +00001071 } else {
1072 MachineInstrBuilder MIB =
Bill Wendlinga68e3a52010-11-16 01:16:36 +00001073 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
1074 .addFrameIndex(FI))
Owen Anderson732f82c2011-08-10 17:21:20 +00001075 .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);
Jakob Stoklund Olesend9b427e2012-03-06 02:48:17 +00001080 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1081 MIB.addReg(DestReg, RegState::ImplicitDefine);
Owen Anderson732f82c2011-08-10 17:21:20 +00001082 }
1083 } else
1084 llvm_unreachable("Unknown reg class!");
1085 break;
1086 case 64:
1087 if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
1088 MachineInstrBuilder MIB =
1089 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
1090 .addFrameIndex(FI))
1091 .addMemOperand(MMO);
Jakob Stoklund Olesenf729cea2012-03-04 18:40:30 +00001092 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
1093 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
1094 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
1095 MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::DefineNoRead, TRI);
1096 MIB = AddDReg(MIB, DestReg, ARM::dsub_4, RegState::DefineNoRead, TRI);
1097 MIB = AddDReg(MIB, DestReg, ARM::dsub_5, RegState::DefineNoRead, TRI);
1098 MIB = AddDReg(MIB, DestReg, ARM::dsub_6, RegState::DefineNoRead, TRI);
1099 MIB = AddDReg(MIB, DestReg, ARM::dsub_7, RegState::DefineNoRead, TRI);
Jakob Stoklund Olesend9b427e2012-03-06 02:48:17 +00001100 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1101 MIB.addReg(DestReg, RegState::ImplicitDefine);
Owen Anderson732f82c2011-08-10 17:21:20 +00001102 } else
1103 llvm_unreachable("Unknown reg class!");
Bob Wilsona92e41a2010-06-18 21:32:42 +00001104 break;
Bob Wilsona92e41a2010-06-18 21:32:42 +00001105 default:
1106 llvm_unreachable("Unknown regclass!");
David Goodwinaf7451b2009-07-08 16:09:28 +00001107 }
1108}
1109
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +00001110unsigned
1111ARMBaseInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
1112 int &FrameIndex) const {
1113 switch (MI->getOpcode()) {
1114 default: break;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00001115 case ARM::LDRrs:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +00001116 case ARM::t2LDRs: // FIXME: don't use t2LDRs to access frame.
1117 if (MI->getOperand(1).isFI() &&
1118 MI->getOperand(2).isReg() &&
1119 MI->getOperand(3).isImm() &&
1120 MI->getOperand(2).getReg() == 0 &&
1121 MI->getOperand(3).getImm() == 0) {
1122 FrameIndex = MI->getOperand(1).getIndex();
1123 return MI->getOperand(0).getReg();
1124 }
1125 break;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00001126 case ARM::LDRi12:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +00001127 case ARM::t2LDRi12:
Jim Grosbachd86f34d2011-06-29 20:26:39 +00001128 case ARM::tLDRspi:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +00001129 case ARM::VLDRD:
1130 case ARM::VLDRS:
1131 if (MI->getOperand(1).isFI() &&
1132 MI->getOperand(2).isImm() &&
1133 MI->getOperand(2).getImm() == 0) {
1134 FrameIndex = MI->getOperand(1).getIndex();
1135 return MI->getOperand(0).getReg();
1136 }
1137 break;
Jim Grosbachc988e0c2012-03-05 19:33:30 +00001138 case ARM::VLD1q64:
Anton Korobeynikov3a4fdfe2012-08-04 13:22:14 +00001139 case ARM::VLD1d64TPseudo:
1140 case ARM::VLD1d64QPseudo:
Jakob Stoklund Olesen33005d12010-09-15 17:27:09 +00001141 if (MI->getOperand(1).isFI() &&
1142 MI->getOperand(0).getSubReg() == 0) {
1143 FrameIndex = MI->getOperand(1).getIndex();
1144 return MI->getOperand(0).getReg();
1145 }
1146 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00001147 case ARM::VLDMQIA:
Jakob Stoklund Olesen44857a32010-09-15 21:40:11 +00001148 if (MI->getOperand(1).isFI() &&
Jakob Stoklund Olesen44857a32010-09-15 21:40:11 +00001149 MI->getOperand(0).getSubReg() == 0) {
1150 FrameIndex = MI->getOperand(1).getIndex();
1151 return MI->getOperand(0).getReg();
1152 }
1153 break;
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +00001154 }
1155
1156 return 0;
1157}
1158
Jakob Stoklund Olesenc04a66b2011-08-08 21:45:32 +00001159unsigned ARMBaseInstrInfo::isLoadFromStackSlotPostFE(const MachineInstr *MI,
1160 int &FrameIndex) const {
1161 const MachineMemOperand *Dummy;
Evan Cheng7f8e5632011-12-07 07:15:52 +00001162 return MI->mayLoad() && hasLoadFromStackSlot(MI, Dummy, FrameIndex);
Jakob Stoklund Olesenc04a66b2011-08-08 21:45:32 +00001163}
1164
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +00001165bool ARMBaseInstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const{
1166 // This hook gets to expand COPY instructions before they become
1167 // copyPhysReg() calls. Look for VMOVS instructions that can legally be
1168 // widened to VMOVD. We prefer the VMOVD when possible because it may be
1169 // changed into a VORR that can go down the NEON pipeline.
Silviu Baranga82dd6ac2013-03-15 18:28:25 +00001170 if (!WidenVMOVS || !MI->isCopy() || Subtarget.isCortexA15())
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +00001171 return false;
1172
1173 // Look for a copy between even S-registers. That is where we keep floats
1174 // when using NEON v2f32 instructions for f32 arithmetic.
1175 unsigned DstRegS = MI->getOperand(0).getReg();
1176 unsigned SrcRegS = MI->getOperand(1).getReg();
1177 if (!ARM::SPRRegClass.contains(DstRegS, SrcRegS))
1178 return false;
1179
1180 const TargetRegisterInfo *TRI = &getRegisterInfo();
1181 unsigned DstRegD = TRI->getMatchingSuperReg(DstRegS, ARM::ssub_0,
1182 &ARM::DPRRegClass);
1183 unsigned SrcRegD = TRI->getMatchingSuperReg(SrcRegS, ARM::ssub_0,
1184 &ARM::DPRRegClass);
1185 if (!DstRegD || !SrcRegD)
1186 return false;
1187
1188 // We want to widen this into a DstRegD = VMOVD SrcRegD copy. This is only
1189 // legal if the COPY already defines the full DstRegD, and it isn't a
1190 // sub-register insertion.
1191 if (!MI->definesRegister(DstRegD, TRI) || MI->readsRegister(DstRegD, TRI))
1192 return false;
1193
Jakob Stoklund Olesen39c31a72011-10-12 00:06:23 +00001194 // A dead copy shouldn't show up here, but reject it just in case.
1195 if (MI->getOperand(0).isDead())
1196 return false;
1197
1198 // All clear, widen the COPY.
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +00001199 DEBUG(dbgs() << "widening: " << *MI);
Jakob Stoklund Olesenb159b5f2012-12-19 21:31:56 +00001200 MachineInstrBuilder MIB(*MI->getParent()->getParent(), MI);
Jakob Stoklund Olesen39c31a72011-10-12 00:06:23 +00001201
1202 // Get rid of the old <imp-def> of DstRegD. Leave it if it defines a Q-reg
1203 // or some other super-register.
1204 int ImpDefIdx = MI->findRegisterDefOperandIdx(DstRegD);
1205 if (ImpDefIdx != -1)
1206 MI->RemoveOperand(ImpDefIdx);
1207
1208 // Change the opcode and operands.
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +00001209 MI->setDesc(get(ARM::VMOVD));
1210 MI->getOperand(0).setReg(DstRegD);
1211 MI->getOperand(1).setReg(SrcRegD);
Jakob Stoklund Olesenb159b5f2012-12-19 21:31:56 +00001212 AddDefaultPred(MIB);
Jakob Stoklund Olesen39c31a72011-10-12 00:06:23 +00001213
1214 // We are now reading SrcRegD instead of SrcRegS. This may upset the
1215 // register scavenger and machine verifier, so we need to indicate that we
1216 // are reading an undefined value from SrcRegD, but a proper value from
1217 // SrcRegS.
1218 MI->getOperand(1).setIsUndef();
Jakob Stoklund Olesenb159b5f2012-12-19 21:31:56 +00001219 MIB.addReg(SrcRegS, RegState::Implicit);
Jakob Stoklund Olesen39c31a72011-10-12 00:06:23 +00001220
1221 // SrcRegD may actually contain an unrelated value in the ssub_1
1222 // sub-register. Don't kill it. Only kill the ssub_0 sub-register.
1223 if (MI->getOperand(1).isKill()) {
1224 MI->getOperand(1).setIsKill(false);
1225 MI->addRegisterKilled(SrcRegS, TRI, true);
1226 }
1227
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +00001228 DEBUG(dbgs() << "replaced by: " << *MI);
1229 return true;
1230}
1231
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001232/// Create a copy of a const pool value. Update CPI to the new index and return
1233/// the label UID.
1234static unsigned duplicateCPV(MachineFunction &MF, unsigned &CPI) {
1235 MachineConstantPool *MCP = MF.getConstantPool();
1236 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1237
1238 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI];
1239 assert(MCPE.isMachineConstantPoolEntry() &&
1240 "Expecting a machine constantpool entry!");
1241 ARMConstantPoolValue *ACPV =
1242 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
1243
Evan Chengdfce83c2011-01-17 08:03:18 +00001244 unsigned PCLabelId = AFI->createPICLabelUId();
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001245 ARMConstantPoolValue *NewCPV = 0;
Jim Grosbach1f77ee52010-09-10 21:38:22 +00001246 // FIXME: The below assumes PIC relocation model and that the function
1247 // is Thumb mode (t1 or t2). PCAdjustment would be 8 for ARM mode PIC, and
1248 // zero for non-PIC in ARM or Thumb. The callers are all of thumb LDR
1249 // instructions, so that's probably OK, but is PIC always correct when
1250 // we get here?
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001251 if (ACPV->isGlobalValue())
Bill Wendling7753d662011-10-01 08:00:54 +00001252 NewCPV = ARMConstantPoolConstant::
1253 Create(cast<ARMConstantPoolConstant>(ACPV)->getGV(), PCLabelId,
1254 ARMCP::CPValue, 4);
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001255 else if (ACPV->isExtSymbol())
Bill Wendlingc214cb02011-10-01 08:58:29 +00001256 NewCPV = ARMConstantPoolSymbol::
1257 Create(MF.getFunction()->getContext(),
1258 cast<ARMConstantPoolSymbol>(ACPV)->getSymbol(), PCLabelId, 4);
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001259 else if (ACPV->isBlockAddress())
Bill Wendling7753d662011-10-01 08:00:54 +00001260 NewCPV = ARMConstantPoolConstant::
1261 Create(cast<ARMConstantPoolConstant>(ACPV)->getBlockAddress(), PCLabelId,
1262 ARMCP::CPBlockAddress, 4);
Jim Grosbach1f77ee52010-09-10 21:38:22 +00001263 else if (ACPV->isLSDA())
Bill Wendling7753d662011-10-01 08:00:54 +00001264 NewCPV = ARMConstantPoolConstant::Create(MF.getFunction(), PCLabelId,
1265 ARMCP::CPLSDA, 4);
Bill Wendling69bc3de2011-09-29 23:50:42 +00001266 else if (ACPV->isMachineBasicBlock())
Bill Wendling4a4772f2011-10-01 09:30:42 +00001267 NewCPV = ARMConstantPoolMBB::
1268 Create(MF.getFunction()->getContext(),
1269 cast<ARMConstantPoolMBB>(ACPV)->getMBB(), PCLabelId, 4);
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001270 else
1271 llvm_unreachable("Unexpected ARM constantpool value type!!");
1272 CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlignment());
1273 return PCLabelId;
1274}
1275
Evan Chengfe864422009-11-08 00:15:23 +00001276void ARMBaseInstrInfo::
1277reMaterialize(MachineBasicBlock &MBB,
1278 MachineBasicBlock::iterator I,
1279 unsigned DestReg, unsigned SubIdx,
Evan Cheng6ad7da92009-11-14 02:55:43 +00001280 const MachineInstr *Orig,
Jakob Stoklund Olesena8ad9772010-06-02 22:47:25 +00001281 const TargetRegisterInfo &TRI) const {
Evan Chengfe864422009-11-08 00:15:23 +00001282 unsigned Opcode = Orig->getOpcode();
1283 switch (Opcode) {
1284 default: {
1285 MachineInstr *MI = MBB.getParent()->CloneMachineInstr(Orig);
Jakob Stoklund Olesena8ad9772010-06-02 22:47:25 +00001286 MI->substituteRegister(Orig->getOperand(0).getReg(), DestReg, SubIdx, TRI);
Evan Chengfe864422009-11-08 00:15:23 +00001287 MBB.insert(I, MI);
1288 break;
1289 }
1290 case ARM::tLDRpci_pic:
1291 case ARM::t2LDRpci_pic: {
1292 MachineFunction &MF = *MBB.getParent();
Evan Chengfe864422009-11-08 00:15:23 +00001293 unsigned CPI = Orig->getOperand(1).getIndex();
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001294 unsigned PCLabelId = duplicateCPV(MF, CPI);
Evan Chengfe864422009-11-08 00:15:23 +00001295 MachineInstrBuilder MIB = BuildMI(MBB, I, Orig->getDebugLoc(), get(Opcode),
1296 DestReg)
1297 .addConstantPoolIndex(CPI).addImm(PCLabelId);
Chris Lattner1d0c2572011-04-29 05:24:29 +00001298 MIB->setMemRefs(Orig->memoperands_begin(), Orig->memoperands_end());
Evan Chengfe864422009-11-08 00:15:23 +00001299 break;
1300 }
1301 }
Evan Chengfe864422009-11-08 00:15:23 +00001302}
1303
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001304MachineInstr *
1305ARMBaseInstrInfo::duplicate(MachineInstr *Orig, MachineFunction &MF) const {
Jakob Stoklund Olesen9de596e2012-11-28 02:35:17 +00001306 MachineInstr *MI = TargetInstrInfo::duplicate(Orig, MF);
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001307 switch(Orig->getOpcode()) {
1308 case ARM::tLDRpci_pic:
1309 case ARM::t2LDRpci_pic: {
1310 unsigned CPI = Orig->getOperand(1).getIndex();
1311 unsigned PCLabelId = duplicateCPV(MF, CPI);
1312 Orig->getOperand(1).setIndex(CPI);
1313 Orig->getOperand(2).setImm(PCLabelId);
1314 break;
1315 }
1316 }
1317 return MI;
1318}
1319
Evan Chenge9c46c22010-03-03 01:44:33 +00001320bool ARMBaseInstrInfo::produceSameValue(const MachineInstr *MI0,
Evan Chengb8b0ad82011-01-20 08:34:58 +00001321 const MachineInstr *MI1,
1322 const MachineRegisterInfo *MRI) const {
Evan Chenga8e8a7c2009-11-07 04:04:34 +00001323 int Opcode = MI0->getOpcode();
Evan Cheng028ccbfc2011-01-20 23:55:07 +00001324 if (Opcode == ARM::t2LDRpci ||
Evan Chengbbd50b02009-11-20 02:10:27 +00001325 Opcode == ARM::t2LDRpci_pic ||
1326 Opcode == ARM::tLDRpci ||
Evan Chengb8b0ad82011-01-20 08:34:58 +00001327 Opcode == ARM::tLDRpci_pic ||
Evan Cheng2f2435d2011-01-21 18:55:51 +00001328 Opcode == ARM::MOV_ga_dyn ||
1329 Opcode == ARM::MOV_ga_pcrel ||
1330 Opcode == ARM::MOV_ga_pcrel_ldr ||
1331 Opcode == ARM::t2MOV_ga_dyn ||
1332 Opcode == ARM::t2MOV_ga_pcrel) {
Evan Chenga8e8a7c2009-11-07 04:04:34 +00001333 if (MI1->getOpcode() != Opcode)
1334 return false;
1335 if (MI0->getNumOperands() != MI1->getNumOperands())
1336 return false;
1337
1338 const MachineOperand &MO0 = MI0->getOperand(1);
1339 const MachineOperand &MO1 = MI1->getOperand(1);
1340 if (MO0.getOffset() != MO1.getOffset())
1341 return false;
1342
Evan Cheng2f2435d2011-01-21 18:55:51 +00001343 if (Opcode == ARM::MOV_ga_dyn ||
1344 Opcode == ARM::MOV_ga_pcrel ||
1345 Opcode == ARM::MOV_ga_pcrel_ldr ||
1346 Opcode == ARM::t2MOV_ga_dyn ||
1347 Opcode == ARM::t2MOV_ga_pcrel)
Evan Chengb8b0ad82011-01-20 08:34:58 +00001348 // Ignore the PC labels.
1349 return MO0.getGlobal() == MO1.getGlobal();
1350
Evan Chenga8e8a7c2009-11-07 04:04:34 +00001351 const MachineFunction *MF = MI0->getParent()->getParent();
1352 const MachineConstantPool *MCP = MF->getConstantPool();
1353 int CPI0 = MO0.getIndex();
1354 int CPI1 = MO1.getIndex();
1355 const MachineConstantPoolEntry &MCPE0 = MCP->getConstants()[CPI0];
1356 const MachineConstantPoolEntry &MCPE1 = MCP->getConstants()[CPI1];
Evan Chengf098bf12011-03-24 06:20:03 +00001357 bool isARMCP0 = MCPE0.isMachineConstantPoolEntry();
1358 bool isARMCP1 = MCPE1.isMachineConstantPoolEntry();
1359 if (isARMCP0 && isARMCP1) {
1360 ARMConstantPoolValue *ACPV0 =
1361 static_cast<ARMConstantPoolValue*>(MCPE0.Val.MachineCPVal);
1362 ARMConstantPoolValue *ACPV1 =
1363 static_cast<ARMConstantPoolValue*>(MCPE1.Val.MachineCPVal);
1364 return ACPV0->hasSameValue(ACPV1);
1365 } else if (!isARMCP0 && !isARMCP1) {
1366 return MCPE0.Val.ConstVal == MCPE1.Val.ConstVal;
1367 }
1368 return false;
Evan Chengb8b0ad82011-01-20 08:34:58 +00001369 } else if (Opcode == ARM::PICLDR) {
1370 if (MI1->getOpcode() != Opcode)
1371 return false;
1372 if (MI0->getNumOperands() != MI1->getNumOperands())
1373 return false;
1374
1375 unsigned Addr0 = MI0->getOperand(1).getReg();
1376 unsigned Addr1 = MI1->getOperand(1).getReg();
1377 if (Addr0 != Addr1) {
1378 if (!MRI ||
1379 !TargetRegisterInfo::isVirtualRegister(Addr0) ||
1380 !TargetRegisterInfo::isVirtualRegister(Addr1))
1381 return false;
1382
1383 // This assumes SSA form.
1384 MachineInstr *Def0 = MRI->getVRegDef(Addr0);
1385 MachineInstr *Def1 = MRI->getVRegDef(Addr1);
1386 // Check if the loaded value, e.g. a constantpool of a global address, are
1387 // the same.
1388 if (!produceSameValue(Def0, Def1, MRI))
1389 return false;
1390 }
1391
1392 for (unsigned i = 3, e = MI0->getNumOperands(); i != e; ++i) {
1393 // %vreg12<def> = PICLDR %vreg11, 0, pred:14, pred:%noreg
1394 const MachineOperand &MO0 = MI0->getOperand(i);
1395 const MachineOperand &MO1 = MI1->getOperand(i);
1396 if (!MO0.isIdenticalTo(MO1))
1397 return false;
1398 }
1399 return true;
Evan Chenga8e8a7c2009-11-07 04:04:34 +00001400 }
1401
Evan Chenge9c46c22010-03-03 01:44:33 +00001402 return MI0->isIdenticalTo(MI1, MachineInstr::IgnoreVRegDefs);
Evan Chenga8e8a7c2009-11-07 04:04:34 +00001403}
1404
Bill Wendlingf4707472010-06-23 23:00:16 +00001405/// areLoadsFromSameBasePtr - This is used by the pre-regalloc scheduler to
1406/// determine if two loads are loading from the same base address. It should
1407/// only return true if the base pointers are the same and the only differences
1408/// between the two addresses is the offset. It also returns the offsets by
1409/// reference.
Andrew Tricka7714a02012-11-12 19:40:10 +00001410///
1411/// FIXME: remove this in favor of the MachineInstr interface once pre-RA-sched
1412/// is permanently disabled.
Bill Wendlingf4707472010-06-23 23:00:16 +00001413bool ARMBaseInstrInfo::areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
1414 int64_t &Offset1,
1415 int64_t &Offset2) const {
1416 // Don't worry about Thumb: just ARM and Thumb2.
1417 if (Subtarget.isThumb1Only()) return false;
1418
1419 if (!Load1->isMachineOpcode() || !Load2->isMachineOpcode())
1420 return false;
1421
1422 switch (Load1->getMachineOpcode()) {
1423 default:
1424 return false;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00001425 case ARM::LDRi12:
Jim Grosbach5a7c7152010-10-27 00:19:44 +00001426 case ARM::LDRBi12:
Bill Wendlingf4707472010-06-23 23:00:16 +00001427 case ARM::LDRD:
1428 case ARM::LDRH:
1429 case ARM::LDRSB:
1430 case ARM::LDRSH:
1431 case ARM::VLDRD:
1432 case ARM::VLDRS:
1433 case ARM::t2LDRi8:
Renato Golinb184cd92013-08-14 16:35:29 +00001434 case ARM::t2LDRBi8:
Bill Wendlingf4707472010-06-23 23:00:16 +00001435 case ARM::t2LDRDi8:
1436 case ARM::t2LDRSHi8:
1437 case ARM::t2LDRi12:
Renato Golinb184cd92013-08-14 16:35:29 +00001438 case ARM::t2LDRBi12:
Bill Wendlingf4707472010-06-23 23:00:16 +00001439 case ARM::t2LDRSHi12:
1440 break;
1441 }
1442
1443 switch (Load2->getMachineOpcode()) {
1444 default:
1445 return false;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00001446 case ARM::LDRi12:
Jim Grosbach5a7c7152010-10-27 00:19:44 +00001447 case ARM::LDRBi12:
Bill Wendlingf4707472010-06-23 23:00:16 +00001448 case ARM::LDRD:
1449 case ARM::LDRH:
1450 case ARM::LDRSB:
1451 case ARM::LDRSH:
1452 case ARM::VLDRD:
1453 case ARM::VLDRS:
1454 case ARM::t2LDRi8:
Renato Golinb184cd92013-08-14 16:35:29 +00001455 case ARM::t2LDRBi8:
Bill Wendlingf4707472010-06-23 23:00:16 +00001456 case ARM::t2LDRSHi8:
1457 case ARM::t2LDRi12:
Renato Golinb184cd92013-08-14 16:35:29 +00001458 case ARM::t2LDRBi12:
Bill Wendlingf4707472010-06-23 23:00:16 +00001459 case ARM::t2LDRSHi12:
1460 break;
1461 }
1462
1463 // Check if base addresses and chain operands match.
1464 if (Load1->getOperand(0) != Load2->getOperand(0) ||
1465 Load1->getOperand(4) != Load2->getOperand(4))
1466 return false;
1467
1468 // Index should be Reg0.
1469 if (Load1->getOperand(3) != Load2->getOperand(3))
1470 return false;
1471
1472 // Determine the offsets.
1473 if (isa<ConstantSDNode>(Load1->getOperand(1)) &&
1474 isa<ConstantSDNode>(Load2->getOperand(1))) {
1475 Offset1 = cast<ConstantSDNode>(Load1->getOperand(1))->getSExtValue();
1476 Offset2 = cast<ConstantSDNode>(Load2->getOperand(1))->getSExtValue();
1477 return true;
1478 }
1479
1480 return false;
1481}
1482
1483/// shouldScheduleLoadsNear - This is a used by the pre-regalloc scheduler to
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00001484/// determine (in conjunction with areLoadsFromSameBasePtr) if two loads should
Bill Wendlingf4707472010-06-23 23:00:16 +00001485/// be scheduled togther. On some targets if two loads are loading from
1486/// addresses in the same cache line, it's better if they are scheduled
1487/// together. This function takes two integers that represent the load offsets
1488/// from the common base address. It returns true if it decides it's desirable
1489/// to schedule the two loads together. "NumLoads" is the number of loads that
1490/// have already been scheduled after Load1.
Andrew Tricka7714a02012-11-12 19:40:10 +00001491///
1492/// FIXME: remove this in favor of the MachineInstr interface once pre-RA-sched
1493/// is permanently disabled.
Bill Wendlingf4707472010-06-23 23:00:16 +00001494bool ARMBaseInstrInfo::shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
1495 int64_t Offset1, int64_t Offset2,
1496 unsigned NumLoads) const {
1497 // Don't worry about Thumb: just ARM and Thumb2.
1498 if (Subtarget.isThumb1Only()) return false;
1499
1500 assert(Offset2 > Offset1);
1501
1502 if ((Offset2 - Offset1) / 8 > 64)
1503 return false;
1504
Renato Golinb184cd92013-08-14 16:35:29 +00001505 // Check if the machine opcodes are different. If they are different
1506 // then we consider them to not be of the same base address,
1507 // EXCEPT in the case of Thumb2 byte loads where one is LDRBi8 and the other LDRBi12.
1508 // In this case, they are considered to be the same because they are different
1509 // encoding forms of the same basic instruction.
1510 if ((Load1->getMachineOpcode() != Load2->getMachineOpcode()) &&
1511 !((Load1->getMachineOpcode() == ARM::t2LDRBi8 &&
1512 Load2->getMachineOpcode() == ARM::t2LDRBi12) ||
1513 (Load1->getMachineOpcode() == ARM::t2LDRBi12 &&
1514 Load2->getMachineOpcode() == ARM::t2LDRBi8)))
Bill Wendlingf4707472010-06-23 23:00:16 +00001515 return false; // FIXME: overly conservative?
1516
1517 // Four loads in a row should be sufficient.
1518 if (NumLoads >= 3)
1519 return false;
1520
1521 return true;
1522}
1523
Evan Cheng2d51c7c2010-06-18 23:09:54 +00001524bool ARMBaseInstrInfo::isSchedulingBoundary(const MachineInstr *MI,
1525 const MachineBasicBlock *MBB,
1526 const MachineFunction &MF) const {
Jim Grosbachba3ece62010-06-25 18:43:14 +00001527 // Debug info is never a scheduling boundary. It's necessary to be explicit
1528 // due to the special treatment of IT instructions below, otherwise a
1529 // dbg_value followed by an IT will result in the IT instruction being
1530 // considered a scheduling hazard, which is wrong. It should be the actual
1531 // instruction preceding the dbg_value instruction(s), just like it is
1532 // when debug info is not present.
1533 if (MI->isDebugValue())
1534 return false;
1535
Evan Cheng2d51c7c2010-06-18 23:09:54 +00001536 // Terminators and labels can't be scheduled around.
Evan Cheng7f8e5632011-12-07 07:15:52 +00001537 if (MI->isTerminator() || MI->isLabel())
Evan Cheng2d51c7c2010-06-18 23:09:54 +00001538 return true;
1539
1540 // Treat the start of the IT block as a scheduling boundary, but schedule
1541 // t2IT along with all instructions following it.
1542 // FIXME: This is a big hammer. But the alternative is to add all potential
1543 // true and anti dependencies to IT block instructions as implicit operands
1544 // to the t2IT instruction. The added compile time and complexity does not
1545 // seem worth it.
1546 MachineBasicBlock::const_iterator I = MI;
Jim Grosbachba3ece62010-06-25 18:43:14 +00001547 // Make sure to skip any dbg_value instructions
1548 while (++I != MBB->end() && I->isDebugValue())
1549 ;
1550 if (I != MBB->end() && I->getOpcode() == ARM::t2IT)
Evan Cheng2d51c7c2010-06-18 23:09:54 +00001551 return true;
1552
1553 // Don't attempt to schedule around any instruction that defines
1554 // a stack-oriented pointer, as it's unlikely to be profitable. This
1555 // saves compile time, because it doesn't require every single
1556 // stack slot reference to depend on the instruction that does the
1557 // modification.
Jakob Stoklund Olesen6909faa2012-02-21 23:47:43 +00001558 // Calls don't actually change the stack pointer, even if they have imp-defs.
Jakob Stoklund Olesen5f37f1c2012-02-22 01:07:19 +00001559 // No ARM calling conventions change the stack pointer. (X86 calling
1560 // conventions sometimes do).
Jakob Stoklund Olesen6909faa2012-02-21 23:47:43 +00001561 if (!MI->isCall() && MI->definesRegister(ARM::SP))
Evan Cheng2d51c7c2010-06-18 23:09:54 +00001562 return true;
1563
1564 return false;
1565}
1566
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001567bool ARMBaseInstrInfo::
1568isProfitableToIfCvt(MachineBasicBlock &MBB,
1569 unsigned NumCycles, unsigned ExtraPredCycles,
1570 const BranchProbability &Probability) const {
Cameron Zwarich80018502011-04-13 06:39:16 +00001571 if (!NumCycles)
Evan Cheng02b184d2010-06-25 22:42:03 +00001572 return false;
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00001573
Owen Anderson88af7d02010-09-28 18:32:13 +00001574 // Attempt to estimate the relative costs of predication versus branching.
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001575 unsigned UnpredCost = Probability.getNumerator() * NumCycles;
1576 UnpredCost /= Probability.getDenominator();
1577 UnpredCost += 1; // The branch itself
1578 UnpredCost += Subtarget.getMispredictionPenalty() / 10;
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00001579
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001580 return (NumCycles + ExtraPredCycles) <= UnpredCost;
Evan Cheng02b184d2010-06-25 22:42:03 +00001581}
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00001582
Evan Cheng02b184d2010-06-25 22:42:03 +00001583bool ARMBaseInstrInfo::
Evan Chengdebf9c52010-11-03 00:45:17 +00001584isProfitableToIfCvt(MachineBasicBlock &TMBB,
1585 unsigned TCycles, unsigned TExtra,
1586 MachineBasicBlock &FMBB,
1587 unsigned FCycles, unsigned FExtra,
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001588 const BranchProbability &Probability) const {
Evan Chengdebf9c52010-11-03 00:45:17 +00001589 if (!TCycles || !FCycles)
Owen Anderson88af7d02010-09-28 18:32:13 +00001590 return false;
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00001591
Owen Anderson88af7d02010-09-28 18:32:13 +00001592 // Attempt to estimate the relative costs of predication versus branching.
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001593 unsigned TUnpredCost = Probability.getNumerator() * TCycles;
1594 TUnpredCost /= Probability.getDenominator();
Andrew Trick3f1fdf12011-09-21 02:17:37 +00001595
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001596 uint32_t Comp = Probability.getDenominator() - Probability.getNumerator();
1597 unsigned FUnpredCost = Comp * FCycles;
1598 FUnpredCost /= Probability.getDenominator();
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00001599
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001600 unsigned UnpredCost = TUnpredCost + FUnpredCost;
1601 UnpredCost += 1; // The branch itself
1602 UnpredCost += Subtarget.getMispredictionPenalty() / 10;
1603
1604 return (TCycles + FCycles + TExtra + FExtra) <= UnpredCost;
Evan Cheng02b184d2010-06-25 22:42:03 +00001605}
1606
Bob Wilsone8a549c2012-09-29 21:43:49 +00001607bool
1608ARMBaseInstrInfo::isProfitableToUnpredicate(MachineBasicBlock &TMBB,
1609 MachineBasicBlock &FMBB) const {
1610 // Reduce false anti-dependencies to let Swift's out-of-order execution
1611 // engine do its thing.
1612 return Subtarget.isSwift();
1613}
1614
Evan Cheng2aa91cc2009-08-08 03:20:32 +00001615/// getInstrPredicate - If instruction is predicated, returns its predicate
1616/// condition, otherwise returns AL. It also returns the condition code
1617/// register by reference.
Evan Cheng83e0d482009-09-28 09:14:39 +00001618ARMCC::CondCodes
1619llvm::getInstrPredicate(const MachineInstr *MI, unsigned &PredReg) {
Evan Cheng2aa91cc2009-08-08 03:20:32 +00001620 int PIdx = MI->findFirstPredOperandIdx();
1621 if (PIdx == -1) {
1622 PredReg = 0;
1623 return ARMCC::AL;
1624 }
1625
1626 PredReg = MI->getOperand(PIdx+1).getReg();
1627 return (ARMCC::CondCodes)MI->getOperand(PIdx).getImm();
1628}
1629
1630
Evan Cheng780748d2009-07-28 05:48:47 +00001631int llvm::getMatchingCondBranchOpcode(int Opc) {
Evan Cheng056c6692009-07-27 18:20:05 +00001632 if (Opc == ARM::B)
1633 return ARM::Bcc;
David Blaikie46a9f012012-01-20 21:51:11 +00001634 if (Opc == ARM::tB)
Evan Cheng056c6692009-07-27 18:20:05 +00001635 return ARM::tBcc;
David Blaikie46a9f012012-01-20 21:51:11 +00001636 if (Opc == ARM::t2B)
1637 return ARM::t2Bcc;
Evan Cheng056c6692009-07-27 18:20:05 +00001638
1639 llvm_unreachable("Unknown unconditional branch opcode!");
Evan Cheng056c6692009-07-27 18:20:05 +00001640}
1641
Jakob Stoklund Olesen0a5b72f2012-04-04 18:23:42 +00001642/// commuteInstruction - Handle commutable instructions.
1643MachineInstr *
1644ARMBaseInstrInfo::commuteInstruction(MachineInstr *MI, bool NewMI) const {
1645 switch (MI->getOpcode()) {
1646 case ARM::MOVCCr:
1647 case ARM::t2MOVCCr: {
1648 // MOVCC can be commuted by inverting the condition.
1649 unsigned PredReg = 0;
1650 ARMCC::CondCodes CC = getInstrPredicate(MI, PredReg);
1651 // MOVCC AL can't be inverted. Shouldn't happen.
1652 if (CC == ARMCC::AL || PredReg != ARM::CPSR)
1653 return NULL;
Jakob Stoklund Olesen9de596e2012-11-28 02:35:17 +00001654 MI = TargetInstrInfo::commuteInstruction(MI, NewMI);
Jakob Stoklund Olesen0a5b72f2012-04-04 18:23:42 +00001655 if (!MI)
1656 return NULL;
1657 // After swapping the MOVCC operands, also invert the condition.
1658 MI->getOperand(MI->findFirstPredOperandIdx())
1659 .setImm(ARMCC::getOppositeCondition(CC));
1660 return MI;
1661 }
1662 }
Jakob Stoklund Olesen9de596e2012-11-28 02:35:17 +00001663 return TargetInstrInfo::commuteInstruction(MI, NewMI);
Jakob Stoklund Olesen0a5b72f2012-04-04 18:23:42 +00001664}
Evan Cheng780748d2009-07-28 05:48:47 +00001665
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001666/// Identify instructions that can be folded into a MOVCC instruction, and
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001667/// return the defining instruction.
1668static MachineInstr *canFoldIntoMOVCC(unsigned Reg,
1669 const MachineRegisterInfo &MRI,
1670 const TargetInstrInfo *TII) {
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001671 if (!TargetRegisterInfo::isVirtualRegister(Reg))
1672 return 0;
1673 if (!MRI.hasOneNonDBGUse(Reg))
1674 return 0;
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001675 MachineInstr *MI = MRI.getVRegDef(Reg);
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001676 if (!MI)
1677 return 0;
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001678 // MI is folded into the MOVCC by predicating it.
1679 if (!MI->isPredicable())
1680 return 0;
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001681 // Check if MI has any non-dead defs or physreg uses. This also detects
1682 // predicated instructions which will be reading CPSR.
1683 for (unsigned i = 1, e = MI->getNumOperands(); i != e; ++i) {
1684 const MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesen7b1a2e82012-08-17 20:55:34 +00001685 // Reject frame index operands, PEI can't handle the predicated pseudos.
1686 if (MO.isFI() || MO.isCPI() || MO.isJTI())
1687 return 0;
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001688 if (!MO.isReg())
1689 continue;
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001690 // MI can't have any tied operands, that would conflict with predication.
1691 if (MO.isTied())
1692 return 0;
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001693 if (TargetRegisterInfo::isPhysicalRegister(MO.getReg()))
1694 return 0;
1695 if (MO.isDef() && !MO.isDead())
1696 return 0;
1697 }
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001698 bool DontMoveAcrossStores = true;
1699 if (!MI->isSafeToMove(TII, /* AliasAnalysis = */ 0, DontMoveAcrossStores))
1700 return 0;
1701 return MI;
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001702}
1703
Jakob Stoklund Olesenc19bf022012-08-16 23:14:20 +00001704bool ARMBaseInstrInfo::analyzeSelect(const MachineInstr *MI,
1705 SmallVectorImpl<MachineOperand> &Cond,
1706 unsigned &TrueOp, unsigned &FalseOp,
1707 bool &Optimizable) const {
1708 assert((MI->getOpcode() == ARM::MOVCCr || MI->getOpcode() == ARM::t2MOVCCr) &&
1709 "Unknown select instruction");
1710 // MOVCC operands:
1711 // 0: Def.
1712 // 1: True use.
1713 // 2: False use.
1714 // 3: Condition code.
1715 // 4: CPSR use.
1716 TrueOp = 1;
1717 FalseOp = 2;
1718 Cond.push_back(MI->getOperand(3));
1719 Cond.push_back(MI->getOperand(4));
1720 // We can always fold a def.
1721 Optimizable = true;
1722 return false;
1723}
1724
1725MachineInstr *ARMBaseInstrInfo::optimizeSelect(MachineInstr *MI,
1726 bool PreferFalse) const {
1727 assert((MI->getOpcode() == ARM::MOVCCr || MI->getOpcode() == ARM::t2MOVCCr) &&
1728 "Unknown select instruction");
Matthias Braun2f169f92013-10-04 16:52:56 +00001729 MachineRegisterInfo &MRI = MI->getParent()->getParent()->getRegInfo();
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001730 MachineInstr *DefMI = canFoldIntoMOVCC(MI->getOperand(2).getReg(), MRI, this);
1731 bool Invert = !DefMI;
1732 if (!DefMI)
1733 DefMI = canFoldIntoMOVCC(MI->getOperand(1).getReg(), MRI, this);
1734 if (!DefMI)
Jakob Stoklund Olesenc19bf022012-08-16 23:14:20 +00001735 return 0;
1736
Matthias Braun2f169f92013-10-04 16:52:56 +00001737 // Find new register class to use.
1738 MachineOperand FalseReg = MI->getOperand(Invert ? 2 : 1);
1739 unsigned DestReg = MI->getOperand(0).getReg();
1740 const TargetRegisterClass *PreviousClass = MRI.getRegClass(FalseReg.getReg());
1741 if (!MRI.constrainRegClass(DestReg, PreviousClass))
1742 return 0;
1743
Jakob Stoklund Olesenc19bf022012-08-16 23:14:20 +00001744 // Create a new predicated version of DefMI.
1745 // Rfalse is the first use.
1746 MachineInstrBuilder NewMI = BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
Matthias Braun2f169f92013-10-04 16:52:56 +00001747 DefMI->getDesc(), DestReg);
Jakob Stoklund Olesenc19bf022012-08-16 23:14:20 +00001748
1749 // Copy all the DefMI operands, excluding its (null) predicate.
1750 const MCInstrDesc &DefDesc = DefMI->getDesc();
1751 for (unsigned i = 1, e = DefDesc.getNumOperands();
1752 i != e && !DefDesc.OpInfo[i].isPredicate(); ++i)
1753 NewMI.addOperand(DefMI->getOperand(i));
1754
1755 unsigned CondCode = MI->getOperand(3).getImm();
1756 if (Invert)
1757 NewMI.addImm(ARMCC::getOppositeCondition(ARMCC::CondCodes(CondCode)));
1758 else
1759 NewMI.addImm(CondCode);
1760 NewMI.addOperand(MI->getOperand(4));
1761
1762 // DefMI is not the -S version that sets CPSR, so add an optional %noreg.
1763 if (NewMI->hasOptionalDef())
1764 AddDefaultCC(NewMI);
1765
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001766 // The output register value when the predicate is false is an implicit
1767 // register operand tied to the first def.
1768 // The tie makes the register allocator ensure the FalseReg is allocated the
1769 // same register as operand 0.
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001770 FalseReg.setImplicit();
Jakob Stoklund Olesen2ea20362012-12-20 22:53:55 +00001771 NewMI.addOperand(FalseReg);
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001772 NewMI->tieOperands(0, NewMI->getNumOperands() - 1);
1773
Jakob Stoklund Olesenc19bf022012-08-16 23:14:20 +00001774 // The caller will erase MI, but not DefMI.
1775 DefMI->eraseFromParent();
1776 return NewMI;
1777}
1778
Andrew Trick924123a2011-09-21 02:20:46 +00001779/// Map pseudo instructions that imply an 'S' bit onto real opcodes. Whether the
1780/// instruction is encoded with an 'S' bit is determined by the optional CPSR
1781/// def operand.
1782///
1783/// This will go away once we can teach tblgen how to set the optional CPSR def
1784/// operand itself.
1785struct AddSubFlagsOpcodePair {
Craig Topper2fbd1302012-05-24 03:59:11 +00001786 uint16_t PseudoOpc;
1787 uint16_t MachineOpc;
Andrew Trick924123a2011-09-21 02:20:46 +00001788};
1789
Craig Topper2fbd1302012-05-24 03:59:11 +00001790static const AddSubFlagsOpcodePair AddSubFlagsOpcodeMap[] = {
Andrew Trick924123a2011-09-21 02:20:46 +00001791 {ARM::ADDSri, ARM::ADDri},
1792 {ARM::ADDSrr, ARM::ADDrr},
1793 {ARM::ADDSrsi, ARM::ADDrsi},
1794 {ARM::ADDSrsr, ARM::ADDrsr},
1795
1796 {ARM::SUBSri, ARM::SUBri},
1797 {ARM::SUBSrr, ARM::SUBrr},
1798 {ARM::SUBSrsi, ARM::SUBrsi},
1799 {ARM::SUBSrsr, ARM::SUBrsr},
1800
1801 {ARM::RSBSri, ARM::RSBri},
Andrew Trick924123a2011-09-21 02:20:46 +00001802 {ARM::RSBSrsi, ARM::RSBrsi},
1803 {ARM::RSBSrsr, ARM::RSBrsr},
1804
1805 {ARM::t2ADDSri, ARM::t2ADDri},
1806 {ARM::t2ADDSrr, ARM::t2ADDrr},
1807 {ARM::t2ADDSrs, ARM::t2ADDrs},
1808
1809 {ARM::t2SUBSri, ARM::t2SUBri},
1810 {ARM::t2SUBSrr, ARM::t2SUBrr},
1811 {ARM::t2SUBSrs, ARM::t2SUBrs},
1812
1813 {ARM::t2RSBSri, ARM::t2RSBri},
1814 {ARM::t2RSBSrs, ARM::t2RSBrs},
1815};
1816
1817unsigned llvm::convertAddSubFlagsOpcode(unsigned OldOpc) {
Craig Topper2fbd1302012-05-24 03:59:11 +00001818 for (unsigned i = 0, e = array_lengthof(AddSubFlagsOpcodeMap); i != e; ++i)
1819 if (OldOpc == AddSubFlagsOpcodeMap[i].PseudoOpc)
1820 return AddSubFlagsOpcodeMap[i].MachineOpc;
Andrew Trick924123a2011-09-21 02:20:46 +00001821 return 0;
1822}
1823
Evan Cheng780748d2009-07-28 05:48:47 +00001824void llvm::emitARMRegPlusImmediate(MachineBasicBlock &MBB,
1825 MachineBasicBlock::iterator &MBBI, DebugLoc dl,
1826 unsigned DestReg, unsigned BaseReg, int NumBytes,
1827 ARMCC::CondCodes Pred, unsigned PredReg,
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001828 const ARMBaseInstrInfo &TII, unsigned MIFlags) {
Evan Cheng780748d2009-07-28 05:48:47 +00001829 bool isSub = NumBytes < 0;
1830 if (isSub) NumBytes = -NumBytes;
1831
1832 while (NumBytes) {
1833 unsigned RotAmt = ARM_AM::getSOImmValRotate(NumBytes);
1834 unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt);
1835 assert(ThisVal && "Didn't extract field correctly");
1836
1837 // We will handle these bits from offset, clear them.
1838 NumBytes &= ~ThisVal;
1839
1840 assert(ARM_AM::getSOImmVal(ThisVal) != -1 && "Bit extraction didn't work?");
1841
1842 // Build the new ADD / SUB.
1843 unsigned Opc = isSub ? ARM::SUBri : ARM::ADDri;
1844 BuildMI(MBB, MBBI, dl, TII.get(Opc), DestReg)
1845 .addReg(BaseReg, RegState::Kill).addImm(ThisVal)
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001846 .addImm((unsigned)Pred).addReg(PredReg).addReg(0)
1847 .setMIFlags(MIFlags);
Evan Cheng780748d2009-07-28 05:48:47 +00001848 BaseReg = DestReg;
1849 }
1850}
1851
Evan Cheng7a37b1a2009-08-27 01:23:50 +00001852bool llvm::rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
1853 unsigned FrameReg, int &Offset,
1854 const ARMBaseInstrInfo &TII) {
Evan Cheng780748d2009-07-28 05:48:47 +00001855 unsigned Opcode = MI.getOpcode();
Evan Cheng6cc775f2011-06-28 19:10:37 +00001856 const MCInstrDesc &Desc = MI.getDesc();
Evan Cheng780748d2009-07-28 05:48:47 +00001857 unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
1858 bool isSub = false;
Jim Grosbachf24f9d92009-08-11 15:33:49 +00001859
Evan Cheng780748d2009-07-28 05:48:47 +00001860 // Memory operands in inline assembly always use AddrMode2.
1861 if (Opcode == ARM::INLINEASM)
1862 AddrMode = ARMII::AddrMode2;
Jim Grosbachf24f9d92009-08-11 15:33:49 +00001863
Evan Cheng780748d2009-07-28 05:48:47 +00001864 if (Opcode == ARM::ADDri) {
1865 Offset += MI.getOperand(FrameRegIdx+1).getImm();
1866 if (Offset == 0) {
1867 // Turn it into a move.
1868 MI.setDesc(TII.get(ARM::MOVr));
1869 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1870 MI.RemoveOperand(FrameRegIdx+1);
Evan Cheng7a37b1a2009-08-27 01:23:50 +00001871 Offset = 0;
1872 return true;
Evan Cheng780748d2009-07-28 05:48:47 +00001873 } else if (Offset < 0) {
1874 Offset = -Offset;
1875 isSub = true;
1876 MI.setDesc(TII.get(ARM::SUBri));
1877 }
1878
1879 // Common case: small offset, fits into instruction.
1880 if (ARM_AM::getSOImmVal(Offset) != -1) {
1881 // Replace the FrameIndex with sp / fp
1882 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1883 MI.getOperand(FrameRegIdx+1).ChangeToImmediate(Offset);
Evan Cheng7a37b1a2009-08-27 01:23:50 +00001884 Offset = 0;
1885 return true;
Evan Cheng780748d2009-07-28 05:48:47 +00001886 }
1887
1888 // Otherwise, pull as much of the immedidate into this ADDri/SUBri
1889 // as possible.
1890 unsigned RotAmt = ARM_AM::getSOImmValRotate(Offset);
1891 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xFF, RotAmt);
1892
1893 // We will handle these bits from offset, clear them.
1894 Offset &= ~ThisImmVal;
1895
1896 // Get the properly encoded SOImmVal field.
1897 assert(ARM_AM::getSOImmVal(ThisImmVal) != -1 &&
1898 "Bit extraction didn't work?");
1899 MI.getOperand(FrameRegIdx+1).ChangeToImmediate(ThisImmVal);
1900 } else {
1901 unsigned ImmIdx = 0;
1902 int InstrOffs = 0;
1903 unsigned NumBits = 0;
1904 unsigned Scale = 1;
1905 switch (AddrMode) {
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00001906 case ARMII::AddrMode_i12: {
1907 ImmIdx = FrameRegIdx + 1;
1908 InstrOffs = MI.getOperand(ImmIdx).getImm();
1909 NumBits = 12;
1910 break;
1911 }
Evan Cheng780748d2009-07-28 05:48:47 +00001912 case ARMII::AddrMode2: {
1913 ImmIdx = FrameRegIdx+2;
1914 InstrOffs = ARM_AM::getAM2Offset(MI.getOperand(ImmIdx).getImm());
1915 if (ARM_AM::getAM2Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1916 InstrOffs *= -1;
1917 NumBits = 12;
1918 break;
1919 }
1920 case ARMII::AddrMode3: {
1921 ImmIdx = FrameRegIdx+2;
1922 InstrOffs = ARM_AM::getAM3Offset(MI.getOperand(ImmIdx).getImm());
1923 if (ARM_AM::getAM3Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1924 InstrOffs *= -1;
1925 NumBits = 8;
1926 break;
1927 }
Anton Korobeynikov887d05c2009-08-08 13:35:48 +00001928 case ARMII::AddrMode4:
Jim Grosbach01c1cae2009-11-15 21:45:34 +00001929 case ARMII::AddrMode6:
Evan Cheng7a37b1a2009-08-27 01:23:50 +00001930 // Can't fold any offset even if it's zero.
1931 return false;
Evan Cheng780748d2009-07-28 05:48:47 +00001932 case ARMII::AddrMode5: {
1933 ImmIdx = FrameRegIdx+1;
1934 InstrOffs = ARM_AM::getAM5Offset(MI.getOperand(ImmIdx).getImm());
1935 if (ARM_AM::getAM5Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1936 InstrOffs *= -1;
1937 NumBits = 8;
1938 Scale = 4;
1939 break;
1940 }
1941 default:
1942 llvm_unreachable("Unsupported addressing mode!");
Evan Cheng780748d2009-07-28 05:48:47 +00001943 }
1944
1945 Offset += InstrOffs * Scale;
1946 assert((Offset & (Scale-1)) == 0 && "Can't encode this offset!");
1947 if (Offset < 0) {
1948 Offset = -Offset;
1949 isSub = true;
1950 }
1951
1952 // Attempt to fold address comp. if opcode has offset bits
1953 if (NumBits > 0) {
1954 // Common case: small offset, fits into instruction.
1955 MachineOperand &ImmOp = MI.getOperand(ImmIdx);
1956 int ImmedOffset = Offset / Scale;
1957 unsigned Mask = (1 << NumBits) - 1;
1958 if ((unsigned)Offset <= Mask * Scale) {
1959 // Replace the FrameIndex with sp
1960 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
Jim Grosbach9d2d1f02010-10-27 01:19:41 +00001961 // FIXME: When addrmode2 goes away, this will simplify (like the
1962 // T2 version), as the LDR.i12 versions don't need the encoding
1963 // tricks for the offset value.
1964 if (isSub) {
1965 if (AddrMode == ARMII::AddrMode_i12)
1966 ImmedOffset = -ImmedOffset;
1967 else
1968 ImmedOffset |= 1 << NumBits;
1969 }
Evan Cheng780748d2009-07-28 05:48:47 +00001970 ImmOp.ChangeToImmediate(ImmedOffset);
Evan Cheng7a37b1a2009-08-27 01:23:50 +00001971 Offset = 0;
1972 return true;
Evan Cheng780748d2009-07-28 05:48:47 +00001973 }
Jim Grosbachf24f9d92009-08-11 15:33:49 +00001974
Evan Cheng780748d2009-07-28 05:48:47 +00001975 // Otherwise, it didn't fit. Pull in what we can to simplify the immed.
1976 ImmedOffset = ImmedOffset & Mask;
Jim Grosbach8bf14832010-10-27 16:50:31 +00001977 if (isSub) {
1978 if (AddrMode == ARMII::AddrMode_i12)
1979 ImmedOffset = -ImmedOffset;
1980 else
1981 ImmedOffset |= 1 << NumBits;
1982 }
Evan Cheng780748d2009-07-28 05:48:47 +00001983 ImmOp.ChangeToImmediate(ImmedOffset);
1984 Offset &= ~(Mask*Scale);
1985 }
1986 }
1987
Evan Cheng7a37b1a2009-08-27 01:23:50 +00001988 Offset = (isSub) ? -Offset : Offset;
1989 return Offset == 0;
Evan Cheng780748d2009-07-28 05:48:47 +00001990}
Bill Wendling7de9d522010-08-06 01:32:48 +00001991
Manman Ren6fa76dc2012-06-29 21:33:59 +00001992/// analyzeCompare - For a comparison instruction, return the source registers
1993/// in SrcReg and SrcReg2 if having two register operands, and the value it
1994/// compares against in CmpValue. Return true if the comparison instruction
1995/// can be analyzed.
Bill Wendling7de9d522010-08-06 01:32:48 +00001996bool ARMBaseInstrInfo::
Manman Ren6fa76dc2012-06-29 21:33:59 +00001997analyzeCompare(const MachineInstr *MI, unsigned &SrcReg, unsigned &SrcReg2,
1998 int &CmpMask, int &CmpValue) const {
Bill Wendling7de9d522010-08-06 01:32:48 +00001999 switch (MI->getOpcode()) {
2000 default: break;
Bill Wendling79553ba2010-08-11 00:23:00 +00002001 case ARM::CMPri:
Bill Wendling7de9d522010-08-06 01:32:48 +00002002 case ARM::t2CMPri:
Bill Wendling7de9d522010-08-06 01:32:48 +00002003 SrcReg = MI->getOperand(0).getReg();
Manman Ren6fa76dc2012-06-29 21:33:59 +00002004 SrcReg2 = 0;
Gabor Greifadbbb932010-09-21 12:01:15 +00002005 CmpMask = ~0;
Bill Wendling7de9d522010-08-06 01:32:48 +00002006 CmpValue = MI->getOperand(1).getImm();
2007 return true;
Manman Rendc8ad002012-05-11 01:30:47 +00002008 case ARM::CMPrr:
2009 case ARM::t2CMPrr:
2010 SrcReg = MI->getOperand(0).getReg();
Manman Ren6fa76dc2012-06-29 21:33:59 +00002011 SrcReg2 = MI->getOperand(1).getReg();
Manman Rendc8ad002012-05-11 01:30:47 +00002012 CmpMask = ~0;
2013 CmpValue = 0;
2014 return true;
Gabor Greifadbbb932010-09-21 12:01:15 +00002015 case ARM::TSTri:
2016 case ARM::t2TSTri:
2017 SrcReg = MI->getOperand(0).getReg();
Manman Ren6fa76dc2012-06-29 21:33:59 +00002018 SrcReg2 = 0;
Gabor Greifadbbb932010-09-21 12:01:15 +00002019 CmpMask = MI->getOperand(1).getImm();
2020 CmpValue = 0;
2021 return true;
2022 }
2023
2024 return false;
2025}
2026
Gabor Greifd36e3e82010-09-29 10:12:08 +00002027/// isSuitableForMask - Identify a suitable 'and' instruction that
2028/// operates on the given source register and applies the same mask
2029/// as a 'tst' instruction. Provide a limited look-through for copies.
2030/// When successful, MI will hold the found instruction.
2031static bool isSuitableForMask(MachineInstr *&MI, unsigned SrcReg,
Gabor Greif1a25ae82010-09-21 13:30:57 +00002032 int CmpMask, bool CommonUse) {
Gabor Greifd36e3e82010-09-29 10:12:08 +00002033 switch (MI->getOpcode()) {
Gabor Greifadbbb932010-09-21 12:01:15 +00002034 case ARM::ANDri:
2035 case ARM::t2ANDri:
Gabor Greifd36e3e82010-09-29 10:12:08 +00002036 if (CmpMask != MI->getOperand(2).getImm())
Gabor Greif1a25ae82010-09-21 13:30:57 +00002037 return false;
Gabor Greifd36e3e82010-09-29 10:12:08 +00002038 if (SrcReg == MI->getOperand(CommonUse ? 1 : 0).getReg())
Gabor Greifadbbb932010-09-21 12:01:15 +00002039 return true;
2040 break;
Gabor Greifd36e3e82010-09-29 10:12:08 +00002041 case ARM::COPY: {
2042 // Walk down one instruction which is potentially an 'and'.
2043 const MachineInstr &Copy = *MI;
Michael J. Spencer70ac5fa2010-10-05 06:00:43 +00002044 MachineBasicBlock::iterator AND(
2045 llvm::next(MachineBasicBlock::iterator(MI)));
Gabor Greifd36e3e82010-09-29 10:12:08 +00002046 if (AND == MI->getParent()->end()) return false;
2047 MI = AND;
2048 return isSuitableForMask(MI, Copy.getOperand(0).getReg(),
2049 CmpMask, true);
2050 }
Bill Wendling7de9d522010-08-06 01:32:48 +00002051 }
2052
2053 return false;
2054}
2055
Manman Renb1b3db62012-06-29 22:06:19 +00002056/// getSwappedCondition - assume the flags are set by MI(a,b), return
2057/// the condition code if we modify the instructions such that flags are
2058/// set by MI(b,a).
2059inline static ARMCC::CondCodes getSwappedCondition(ARMCC::CondCodes CC) {
2060 switch (CC) {
2061 default: return ARMCC::AL;
2062 case ARMCC::EQ: return ARMCC::EQ;
2063 case ARMCC::NE: return ARMCC::NE;
2064 case ARMCC::HS: return ARMCC::LS;
2065 case ARMCC::LO: return ARMCC::HI;
2066 case ARMCC::HI: return ARMCC::LO;
2067 case ARMCC::LS: return ARMCC::HS;
2068 case ARMCC::GE: return ARMCC::LE;
2069 case ARMCC::LT: return ARMCC::GT;
2070 case ARMCC::GT: return ARMCC::LT;
2071 case ARMCC::LE: return ARMCC::GE;
2072 }
2073}
2074
2075/// isRedundantFlagInstr - check whether the first instruction, whose only
2076/// purpose is to update flags, can be made redundant.
2077/// CMPrr can be made redundant by SUBrr if the operands are the same.
2078/// CMPri can be made redundant by SUBri if the operands are the same.
2079/// This function can be extended later on.
2080inline static bool isRedundantFlagInstr(MachineInstr *CmpI, unsigned SrcReg,
2081 unsigned SrcReg2, int ImmValue,
2082 MachineInstr *OI) {
2083 if ((CmpI->getOpcode() == ARM::CMPrr ||
2084 CmpI->getOpcode() == ARM::t2CMPrr) &&
2085 (OI->getOpcode() == ARM::SUBrr ||
2086 OI->getOpcode() == ARM::t2SUBrr) &&
2087 ((OI->getOperand(1).getReg() == SrcReg &&
2088 OI->getOperand(2).getReg() == SrcReg2) ||
2089 (OI->getOperand(1).getReg() == SrcReg2 &&
2090 OI->getOperand(2).getReg() == SrcReg)))
2091 return true;
2092
2093 if ((CmpI->getOpcode() == ARM::CMPri ||
2094 CmpI->getOpcode() == ARM::t2CMPri) &&
2095 (OI->getOpcode() == ARM::SUBri ||
2096 OI->getOpcode() == ARM::t2SUBri) &&
2097 OI->getOperand(1).getReg() == SrcReg &&
2098 OI->getOperand(2).getImm() == ImmValue)
2099 return true;
2100 return false;
2101}
2102
Manman Ren6fa76dc2012-06-29 21:33:59 +00002103/// optimizeCompareInstr - Convert the instruction supplying the argument to the
2104/// comparison into one that sets the zero bit in the flags register;
2105/// Remove a redundant Compare instruction if an earlier instruction can set the
2106/// flags in the same way as Compare.
2107/// E.g. SUBrr(r1,r2) and CMPrr(r1,r2). We also handle the case where two
2108/// operands are swapped: SUBrr(r1,r2) and CMPrr(r2,r1), by updating the
2109/// condition code of instructions which use the flags.
Bill Wendling7de9d522010-08-06 01:32:48 +00002110bool ARMBaseInstrInfo::
Manman Ren6fa76dc2012-06-29 21:33:59 +00002111optimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, unsigned SrcReg2,
2112 int CmpMask, int CmpValue,
2113 const MachineRegisterInfo *MRI) const {
Manman Renb1b3db62012-06-29 22:06:19 +00002114 // Get the unique definition of SrcReg.
2115 MachineInstr *MI = MRI->getUniqueVRegDef(SrcReg);
2116 if (!MI) return false;
Bill Wendling04123002010-09-10 23:34:19 +00002117
Gabor Greifadbbb932010-09-21 12:01:15 +00002118 // Masked compares sometimes use the same register as the corresponding 'and'.
2119 if (CmpMask != ~0) {
Jakob Stoklund Olesen8b9dce52012-09-10 19:17:25 +00002120 if (!isSuitableForMask(MI, SrcReg, CmpMask, false) || isPredicated(MI)) {
Gabor Greifadbbb932010-09-21 12:01:15 +00002121 MI = 0;
Bill Wendling337a3112010-10-18 21:22:31 +00002122 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(SrcReg),
2123 UE = MRI->use_end(); UI != UE; ++UI) {
Gabor Greifadbbb932010-09-21 12:01:15 +00002124 if (UI->getParent() != CmpInstr->getParent()) continue;
Gabor Greifd36e3e82010-09-29 10:12:08 +00002125 MachineInstr *PotentialAND = &*UI;
Jakob Stoklund Olesen8b9dce52012-09-10 19:17:25 +00002126 if (!isSuitableForMask(PotentialAND, SrcReg, CmpMask, true) ||
2127 isPredicated(PotentialAND))
Gabor Greifadbbb932010-09-21 12:01:15 +00002128 continue;
Gabor Greifd36e3e82010-09-29 10:12:08 +00002129 MI = PotentialAND;
Gabor Greifadbbb932010-09-21 12:01:15 +00002130 break;
2131 }
2132 if (!MI) return false;
2133 }
2134 }
2135
Manman Rendc8ad002012-05-11 01:30:47 +00002136 // Get ready to iterate backward from CmpInstr.
2137 MachineBasicBlock::iterator I = CmpInstr, E = MI,
2138 B = CmpInstr->getParent()->begin();
Bill Wendling59ebe442010-10-09 00:03:48 +00002139
2140 // Early exit if CmpInstr is at the beginning of the BB.
2141 if (I == B) return false;
2142
Manman Rendc8ad002012-05-11 01:30:47 +00002143 // There are two possible candidates which can be changed to set CPSR:
2144 // One is MI, the other is a SUB instruction.
2145 // For CMPrr(r1,r2), we are looking for SUB(r1,r2) or SUB(r2,r1).
2146 // For CMPri(r1, CmpValue), we are looking for SUBri(r1, CmpValue).
2147 MachineInstr *Sub = NULL;
Manman Ren6fa76dc2012-06-29 21:33:59 +00002148 if (SrcReg2 != 0)
Manman Rendc8ad002012-05-11 01:30:47 +00002149 // MI is not a candidate for CMPrr.
2150 MI = NULL;
Manman Ren6fa76dc2012-06-29 21:33:59 +00002151 else if (MI->getParent() != CmpInstr->getParent() || CmpValue != 0) {
Manman Rendc8ad002012-05-11 01:30:47 +00002152 // Conservatively refuse to convert an instruction which isn't in the same
2153 // BB as the comparison.
2154 // For CMPri, we need to check Sub, thus we can't return here.
Manman Ren0d5ec282012-05-11 15:36:46 +00002155 if (CmpInstr->getOpcode() == ARM::CMPri ||
Manman Rendc8ad002012-05-11 01:30:47 +00002156 CmpInstr->getOpcode() == ARM::t2CMPri)
2157 MI = NULL;
2158 else
2159 return false;
2160 }
2161
2162 // Check that CPSR isn't set between the comparison instruction and the one we
2163 // want to change. At the same time, search for Sub.
Manman Renb1b3db62012-06-29 22:06:19 +00002164 const TargetRegisterInfo *TRI = &getRegisterInfo();
Bill Wendling7de9d522010-08-06 01:32:48 +00002165 --I;
2166 for (; I != E; --I) {
2167 const MachineInstr &Instr = *I;
2168
Manman Renb1b3db62012-06-29 22:06:19 +00002169 if (Instr.modifiesRegister(ARM::CPSR, TRI) ||
2170 Instr.readsRegister(ARM::CPSR, TRI))
Bill Wendlingc6627ee2010-11-01 20:41:43 +00002171 // This instruction modifies or uses CPSR after the one we want to
2172 // change. We can't do this transformation.
Manman Renb1b3db62012-06-29 22:06:19 +00002173 return false;
Evan Chengd757c882010-09-21 23:49:07 +00002174
Manman Renb1b3db62012-06-29 22:06:19 +00002175 // Check whether CmpInstr can be made redundant by the current instruction.
2176 if (isRedundantFlagInstr(CmpInstr, SrcReg, SrcReg2, CmpValue, &*I)) {
Manman Rendc8ad002012-05-11 01:30:47 +00002177 Sub = &*I;
2178 break;
2179 }
2180
Evan Chengd757c882010-09-21 23:49:07 +00002181 if (I == B)
2182 // The 'and' is below the comparison instruction.
2183 return false;
Bill Wendling7de9d522010-08-06 01:32:48 +00002184 }
2185
Manman Rendc8ad002012-05-11 01:30:47 +00002186 // Return false if no candidates exist.
2187 if (!MI && !Sub)
2188 return false;
2189
2190 // The single candidate is called MI.
2191 if (!MI) MI = Sub;
2192
Jakob Stoklund Olesen8b9dce52012-09-10 19:17:25 +00002193 // We can't use a predicated instruction - it doesn't always write the flags.
2194 if (isPredicated(MI))
2195 return false;
2196
Bill Wendling7de9d522010-08-06 01:32:48 +00002197 switch (MI->getOpcode()) {
2198 default: break;
Cameron Zwarich93eae152011-04-15 20:28:28 +00002199 case ARM::RSBrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002200 case ARM::RSBri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002201 case ARM::RSCrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002202 case ARM::RSCri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002203 case ARM::ADDrr:
Bill Wendling79553ba2010-08-11 00:23:00 +00002204 case ARM::ADDri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002205 case ARM::ADCrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002206 case ARM::ADCri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002207 case ARM::SUBrr:
Bill Wendling79553ba2010-08-11 00:23:00 +00002208 case ARM::SUBri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002209 case ARM::SBCrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002210 case ARM::SBCri:
2211 case ARM::t2RSBri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002212 case ARM::t2ADDrr:
Bill Wendling79553ba2010-08-11 00:23:00 +00002213 case ARM::t2ADDri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002214 case ARM::t2ADCrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002215 case ARM::t2ADCri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002216 case ARM::t2SUBrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002217 case ARM::t2SUBri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002218 case ARM::t2SBCrr:
Cameron Zwarich0829b302011-04-15 20:45:00 +00002219 case ARM::t2SBCri:
2220 case ARM::ANDrr:
2221 case ARM::ANDri:
2222 case ARM::t2ANDrr:
Cameron Zwarich9c65e4d2011-04-15 21:24:38 +00002223 case ARM::t2ANDri:
2224 case ARM::ORRrr:
2225 case ARM::ORRri:
2226 case ARM::t2ORRrr:
2227 case ARM::t2ORRri:
2228 case ARM::EORrr:
2229 case ARM::EORri:
2230 case ARM::t2EORrr:
2231 case ARM::t2EORri: {
Manman Rendc8ad002012-05-11 01:30:47 +00002232 // Scan forward for the use of CPSR
2233 // When checking against MI: if it's a conditional code requires
Manman Ren34cb93e2012-07-11 22:51:44 +00002234 // checking of V bit, then this is not safe to do.
2235 // It is safe to remove CmpInstr if CPSR is redefined or killed.
2236 // If we are done with the basic block, we need to check whether CPSR is
2237 // live-out.
Manman Renb1b3db62012-06-29 22:06:19 +00002238 SmallVector<std::pair<MachineOperand*, ARMCC::CondCodes>, 4>
2239 OperandsToUpdate;
Evan Cheng425489d2011-03-23 22:52:04 +00002240 bool isSafe = false;
2241 I = CmpInstr;
Manman Rendc8ad002012-05-11 01:30:47 +00002242 E = CmpInstr->getParent()->end();
Evan Cheng425489d2011-03-23 22:52:04 +00002243 while (!isSafe && ++I != E) {
2244 const MachineInstr &Instr = *I;
2245 for (unsigned IO = 0, EO = Instr.getNumOperands();
2246 !isSafe && IO != EO; ++IO) {
2247 const MachineOperand &MO = Instr.getOperand(IO);
Jakob Stoklund Olesen4fad5b22012-02-17 19:23:15 +00002248 if (MO.isRegMask() && MO.clobbersPhysReg(ARM::CPSR)) {
2249 isSafe = true;
2250 break;
2251 }
Evan Cheng425489d2011-03-23 22:52:04 +00002252 if (!MO.isReg() || MO.getReg() != ARM::CPSR)
2253 continue;
2254 if (MO.isDef()) {
2255 isSafe = true;
2256 break;
2257 }
2258 // Condition code is after the operand before CPSR.
2259 ARMCC::CondCodes CC = (ARMCC::CondCodes)Instr.getOperand(IO-1).getImm();
Manman Renb1b3db62012-06-29 22:06:19 +00002260 if (Sub) {
2261 ARMCC::CondCodes NewCC = getSwappedCondition(CC);
2262 if (NewCC == ARMCC::AL)
Manman Rendc8ad002012-05-11 01:30:47 +00002263 return false;
Manman Renb1b3db62012-06-29 22:06:19 +00002264 // If we have SUB(r1, r2) and CMP(r2, r1), the condition code based
2265 // on CMP needs to be updated to be based on SUB.
2266 // Push the condition code operands to OperandsToUpdate.
2267 // If it is safe to remove CmpInstr, the condition code of these
2268 // operands will be modified.
2269 if (SrcReg2 != 0 && Sub->getOperand(1).getReg() == SrcReg2 &&
2270 Sub->getOperand(2).getReg() == SrcReg)
2271 OperandsToUpdate.push_back(std::make_pair(&((*I).getOperand(IO-1)),
2272 NewCC));
2273 }
Manman Rendc8ad002012-05-11 01:30:47 +00002274 else
2275 switch (CC) {
2276 default:
Manman Ren88a0d332012-07-11 23:47:00 +00002277 // CPSR can be used multiple times, we should continue.
Manman Rendc8ad002012-05-11 01:30:47 +00002278 break;
2279 case ARMCC::VS:
2280 case ARMCC::VC:
2281 case ARMCC::GE:
2282 case ARMCC::LT:
2283 case ARMCC::GT:
2284 case ARMCC::LE:
2285 return false;
2286 }
Evan Cheng425489d2011-03-23 22:52:04 +00002287 }
2288 }
2289
Manman Ren34cb93e2012-07-11 22:51:44 +00002290 // If CPSR is not killed nor re-defined, we should check whether it is
2291 // live-out. If it is live-out, do not optimize.
2292 if (!isSafe) {
2293 MachineBasicBlock *MBB = CmpInstr->getParent();
2294 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
2295 SE = MBB->succ_end(); SI != SE; ++SI)
2296 if ((*SI)->isLiveIn(ARM::CPSR))
2297 return false;
2298 }
Evan Cheng425489d2011-03-23 22:52:04 +00002299
Evan Cheng65536472010-11-17 08:06:50 +00002300 // Toggle the optional operand to CPSR.
2301 MI->getOperand(5).setReg(ARM::CPSR);
2302 MI->getOperand(5).setIsDef(true);
Jakob Stoklund Olesen8b9dce52012-09-10 19:17:25 +00002303 assert(!isPredicated(MI) && "Can't use flags from predicated instruction");
Bill Wendling7de9d522010-08-06 01:32:48 +00002304 CmpInstr->eraseFromParent();
Manman Rendc8ad002012-05-11 01:30:47 +00002305
2306 // Modify the condition code of operands in OperandsToUpdate.
2307 // Since we have SUB(r1, r2) and CMP(r2, r1), the condition code needs to
2308 // be changed from r2 > r1 to r1 < r2, from r2 < r1 to r1 > r2, etc.
Manman Renb1b3db62012-06-29 22:06:19 +00002309 for (unsigned i = 0, e = OperandsToUpdate.size(); i < e; i++)
2310 OperandsToUpdate[i].first->setImm(OperandsToUpdate[i].second);
Bill Wendling7de9d522010-08-06 01:32:48 +00002311 return true;
2312 }
Cameron Zwarich0829b302011-04-15 20:45:00 +00002313 }
Bill Wendling7de9d522010-08-06 01:32:48 +00002314
2315 return false;
2316}
Evan Cheng367a5df2010-09-09 18:18:55 +00002317
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00002318bool ARMBaseInstrInfo::FoldImmediate(MachineInstr *UseMI,
2319 MachineInstr *DefMI, unsigned Reg,
2320 MachineRegisterInfo *MRI) const {
2321 // Fold large immediates into add, sub, or, xor.
2322 unsigned DefOpc = DefMI->getOpcode();
2323 if (DefOpc != ARM::t2MOVi32imm && DefOpc != ARM::MOVi32imm)
2324 return false;
2325 if (!DefMI->getOperand(1).isImm())
2326 // Could be t2MOVi32imm <ga:xx>
2327 return false;
2328
2329 if (!MRI->hasOneNonDBGUse(Reg))
2330 return false;
2331
Evan Chenga2b48d92012-03-26 23:31:00 +00002332 const MCInstrDesc &DefMCID = DefMI->getDesc();
2333 if (DefMCID.hasOptionalDef()) {
2334 unsigned NumOps = DefMCID.getNumOperands();
2335 const MachineOperand &MO = DefMI->getOperand(NumOps-1);
2336 if (MO.getReg() == ARM::CPSR && !MO.isDead())
2337 // If DefMI defines CPSR and it is not dead, it's obviously not safe
2338 // to delete DefMI.
2339 return false;
2340 }
2341
2342 const MCInstrDesc &UseMCID = UseMI->getDesc();
2343 if (UseMCID.hasOptionalDef()) {
2344 unsigned NumOps = UseMCID.getNumOperands();
2345 if (UseMI->getOperand(NumOps-1).getReg() == ARM::CPSR)
2346 // If the instruction sets the flag, do not attempt this optimization
2347 // since it may change the semantics of the code.
2348 return false;
2349 }
2350
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00002351 unsigned UseOpc = UseMI->getOpcode();
Evan Cheng2d4e42f2010-11-18 01:43:23 +00002352 unsigned NewUseOpc = 0;
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00002353 uint32_t ImmVal = (uint32_t)DefMI->getOperand(1).getImm();
Evan Cheng2d4e42f2010-11-18 01:43:23 +00002354 uint32_t SOImmValV1 = 0, SOImmValV2 = 0;
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00002355 bool Commute = false;
2356 switch (UseOpc) {
2357 default: return false;
2358 case ARM::SUBrr:
2359 case ARM::ADDrr:
2360 case ARM::ORRrr:
2361 case ARM::EORrr:
2362 case ARM::t2SUBrr:
2363 case ARM::t2ADDrr:
2364 case ARM::t2ORRrr:
2365 case ARM::t2EORrr: {
2366 Commute = UseMI->getOperand(2).getReg() != Reg;
2367 switch (UseOpc) {
2368 default: break;
2369 case ARM::SUBrr: {
2370 if (Commute)
2371 return false;
2372 ImmVal = -ImmVal;
2373 NewUseOpc = ARM::SUBri;
2374 // Fallthrough
2375 }
2376 case ARM::ADDrr:
2377 case ARM::ORRrr:
2378 case ARM::EORrr: {
2379 if (!ARM_AM::isSOImmTwoPartVal(ImmVal))
2380 return false;
2381 SOImmValV1 = (uint32_t)ARM_AM::getSOImmTwoPartFirst(ImmVal);
2382 SOImmValV2 = (uint32_t)ARM_AM::getSOImmTwoPartSecond(ImmVal);
2383 switch (UseOpc) {
2384 default: break;
2385 case ARM::ADDrr: NewUseOpc = ARM::ADDri; break;
2386 case ARM::ORRrr: NewUseOpc = ARM::ORRri; break;
2387 case ARM::EORrr: NewUseOpc = ARM::EORri; break;
2388 }
2389 break;
2390 }
2391 case ARM::t2SUBrr: {
2392 if (Commute)
2393 return false;
2394 ImmVal = -ImmVal;
2395 NewUseOpc = ARM::t2SUBri;
2396 // Fallthrough
2397 }
2398 case ARM::t2ADDrr:
2399 case ARM::t2ORRrr:
2400 case ARM::t2EORrr: {
2401 if (!ARM_AM::isT2SOImmTwoPartVal(ImmVal))
2402 return false;
2403 SOImmValV1 = (uint32_t)ARM_AM::getT2SOImmTwoPartFirst(ImmVal);
2404 SOImmValV2 = (uint32_t)ARM_AM::getT2SOImmTwoPartSecond(ImmVal);
2405 switch (UseOpc) {
2406 default: break;
2407 case ARM::t2ADDrr: NewUseOpc = ARM::t2ADDri; break;
2408 case ARM::t2ORRrr: NewUseOpc = ARM::t2ORRri; break;
2409 case ARM::t2EORrr: NewUseOpc = ARM::t2EORri; break;
2410 }
2411 break;
2412 }
2413 }
2414 }
2415 }
2416
2417 unsigned OpIdx = Commute ? 2 : 1;
2418 unsigned Reg1 = UseMI->getOperand(OpIdx).getReg();
2419 bool isKill = UseMI->getOperand(OpIdx).isKill();
2420 unsigned NewReg = MRI->createVirtualRegister(MRI->getRegClass(Reg));
2421 AddDefaultCC(AddDefaultPred(BuildMI(*UseMI->getParent(),
Evan Cheng7fae11b2011-12-14 02:11:42 +00002422 UseMI, UseMI->getDebugLoc(),
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00002423 get(NewUseOpc), NewReg)
2424 .addReg(Reg1, getKillRegState(isKill))
2425 .addImm(SOImmValV1)));
2426 UseMI->setDesc(get(NewUseOpc));
2427 UseMI->getOperand(1).setReg(NewReg);
2428 UseMI->getOperand(1).setIsKill();
2429 UseMI->getOperand(2).ChangeToImmediate(SOImmValV2);
2430 DefMI->eraseFromParent();
2431 return true;
2432}
2433
Bob Wilsone8a549c2012-09-29 21:43:49 +00002434static unsigned getNumMicroOpsSwiftLdSt(const InstrItineraryData *ItinData,
2435 const MachineInstr *MI) {
2436 switch (MI->getOpcode()) {
2437 default: {
2438 const MCInstrDesc &Desc = MI->getDesc();
2439 int UOps = ItinData->getNumMicroOps(Desc.getSchedClass());
2440 assert(UOps >= 0 && "bad # UOps");
2441 return UOps;
2442 }
2443
2444 case ARM::LDRrs:
2445 case ARM::LDRBrs:
2446 case ARM::STRrs:
2447 case ARM::STRBrs: {
2448 unsigned ShOpVal = MI->getOperand(3).getImm();
2449 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2450 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2451 if (!isSub &&
2452 (ShImm == 0 ||
2453 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2454 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2455 return 1;
2456 return 2;
2457 }
2458
2459 case ARM::LDRH:
2460 case ARM::STRH: {
2461 if (!MI->getOperand(2).getReg())
2462 return 1;
2463
2464 unsigned ShOpVal = MI->getOperand(3).getImm();
2465 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2466 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2467 if (!isSub &&
2468 (ShImm == 0 ||
2469 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2470 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2471 return 1;
2472 return 2;
2473 }
2474
2475 case ARM::LDRSB:
2476 case ARM::LDRSH:
2477 return (ARM_AM::getAM3Op(MI->getOperand(3).getImm()) == ARM_AM::sub) ? 3:2;
2478
2479 case ARM::LDRSB_POST:
2480 case ARM::LDRSH_POST: {
2481 unsigned Rt = MI->getOperand(0).getReg();
2482 unsigned Rm = MI->getOperand(3).getReg();
2483 return (Rt == Rm) ? 4 : 3;
2484 }
2485
2486 case ARM::LDR_PRE_REG:
2487 case ARM::LDRB_PRE_REG: {
2488 unsigned Rt = MI->getOperand(0).getReg();
2489 unsigned Rm = MI->getOperand(3).getReg();
2490 if (Rt == Rm)
2491 return 3;
2492 unsigned ShOpVal = MI->getOperand(4).getImm();
2493 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2494 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2495 if (!isSub &&
2496 (ShImm == 0 ||
2497 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2498 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2499 return 2;
2500 return 3;
2501 }
2502
2503 case ARM::STR_PRE_REG:
2504 case ARM::STRB_PRE_REG: {
2505 unsigned ShOpVal = MI->getOperand(4).getImm();
2506 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2507 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2508 if (!isSub &&
2509 (ShImm == 0 ||
2510 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2511 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2512 return 2;
2513 return 3;
2514 }
2515
2516 case ARM::LDRH_PRE:
2517 case ARM::STRH_PRE: {
2518 unsigned Rt = MI->getOperand(0).getReg();
2519 unsigned Rm = MI->getOperand(3).getReg();
2520 if (!Rm)
2521 return 2;
2522 if (Rt == Rm)
2523 return 3;
2524 return (ARM_AM::getAM3Op(MI->getOperand(4).getImm()) == ARM_AM::sub)
2525 ? 3 : 2;
2526 }
2527
2528 case ARM::LDR_POST_REG:
2529 case ARM::LDRB_POST_REG:
2530 case ARM::LDRH_POST: {
2531 unsigned Rt = MI->getOperand(0).getReg();
2532 unsigned Rm = MI->getOperand(3).getReg();
2533 return (Rt == Rm) ? 3 : 2;
2534 }
2535
2536 case ARM::LDR_PRE_IMM:
2537 case ARM::LDRB_PRE_IMM:
2538 case ARM::LDR_POST_IMM:
2539 case ARM::LDRB_POST_IMM:
2540 case ARM::STRB_POST_IMM:
2541 case ARM::STRB_POST_REG:
2542 case ARM::STRB_PRE_IMM:
2543 case ARM::STRH_POST:
2544 case ARM::STR_POST_IMM:
2545 case ARM::STR_POST_REG:
2546 case ARM::STR_PRE_IMM:
2547 return 2;
2548
2549 case ARM::LDRSB_PRE:
2550 case ARM::LDRSH_PRE: {
2551 unsigned Rm = MI->getOperand(3).getReg();
2552 if (Rm == 0)
2553 return 3;
2554 unsigned Rt = MI->getOperand(0).getReg();
2555 if (Rt == Rm)
2556 return 4;
2557 unsigned ShOpVal = MI->getOperand(4).getImm();
2558 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2559 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2560 if (!isSub &&
2561 (ShImm == 0 ||
2562 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2563 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2564 return 3;
2565 return 4;
2566 }
2567
2568 case ARM::LDRD: {
2569 unsigned Rt = MI->getOperand(0).getReg();
2570 unsigned Rn = MI->getOperand(2).getReg();
2571 unsigned Rm = MI->getOperand(3).getReg();
2572 if (Rm)
2573 return (ARM_AM::getAM3Op(MI->getOperand(4).getImm()) == ARM_AM::sub) ?4:3;
2574 return (Rt == Rn) ? 3 : 2;
2575 }
2576
2577 case ARM::STRD: {
2578 unsigned Rm = MI->getOperand(3).getReg();
2579 if (Rm)
2580 return (ARM_AM::getAM3Op(MI->getOperand(4).getImm()) == ARM_AM::sub) ?4:3;
2581 return 2;
2582 }
2583
2584 case ARM::LDRD_POST:
2585 case ARM::t2LDRD_POST:
2586 return 3;
2587
2588 case ARM::STRD_POST:
2589 case ARM::t2STRD_POST:
2590 return 4;
2591
2592 case ARM::LDRD_PRE: {
2593 unsigned Rt = MI->getOperand(0).getReg();
2594 unsigned Rn = MI->getOperand(3).getReg();
2595 unsigned Rm = MI->getOperand(4).getReg();
2596 if (Rm)
2597 return (ARM_AM::getAM3Op(MI->getOperand(5).getImm()) == ARM_AM::sub) ?5:4;
2598 return (Rt == Rn) ? 4 : 3;
2599 }
2600
2601 case ARM::t2LDRD_PRE: {
2602 unsigned Rt = MI->getOperand(0).getReg();
2603 unsigned Rn = MI->getOperand(3).getReg();
2604 return (Rt == Rn) ? 4 : 3;
2605 }
2606
2607 case ARM::STRD_PRE: {
2608 unsigned Rm = MI->getOperand(4).getReg();
2609 if (Rm)
2610 return (ARM_AM::getAM3Op(MI->getOperand(5).getImm()) == ARM_AM::sub) ?5:4;
2611 return 3;
2612 }
2613
2614 case ARM::t2STRD_PRE:
2615 return 3;
2616
2617 case ARM::t2LDR_POST:
2618 case ARM::t2LDRB_POST:
2619 case ARM::t2LDRB_PRE:
2620 case ARM::t2LDRSBi12:
2621 case ARM::t2LDRSBi8:
2622 case ARM::t2LDRSBpci:
2623 case ARM::t2LDRSBs:
2624 case ARM::t2LDRH_POST:
2625 case ARM::t2LDRH_PRE:
2626 case ARM::t2LDRSBT:
2627 case ARM::t2LDRSB_POST:
2628 case ARM::t2LDRSB_PRE:
2629 case ARM::t2LDRSH_POST:
2630 case ARM::t2LDRSH_PRE:
2631 case ARM::t2LDRSHi12:
2632 case ARM::t2LDRSHi8:
2633 case ARM::t2LDRSHpci:
2634 case ARM::t2LDRSHs:
2635 return 2;
2636
2637 case ARM::t2LDRDi8: {
2638 unsigned Rt = MI->getOperand(0).getReg();
2639 unsigned Rn = MI->getOperand(2).getReg();
2640 return (Rt == Rn) ? 3 : 2;
2641 }
2642
2643 case ARM::t2STRB_POST:
2644 case ARM::t2STRB_PRE:
2645 case ARM::t2STRBs:
2646 case ARM::t2STRDi8:
2647 case ARM::t2STRH_POST:
2648 case ARM::t2STRH_PRE:
2649 case ARM::t2STRHs:
2650 case ARM::t2STR_POST:
2651 case ARM::t2STR_PRE:
2652 case ARM::t2STRs:
2653 return 2;
2654 }
2655}
2656
Andrew Trick2ac6f7d2012-09-14 18:48:46 +00002657// Return the number of 32-bit words loaded by LDM or stored by STM. If this
2658// can't be easily determined return 0 (missing MachineMemOperand).
2659//
2660// FIXME: The current MachineInstr design does not support relying on machine
2661// mem operands to determine the width of a memory access. Instead, we expect
2662// the target to provide this information based on the instruction opcode and
2663// operands. However, using MachineMemOperand is a the best solution now for
2664// two reasons:
2665//
2666// 1) getNumMicroOps tries to infer LDM memory width from the total number of MI
2667// operands. This is much more dangerous than using the MachineMemOperand
2668// sizes because CodeGen passes can insert/remove optional machine operands. In
2669// fact, it's totally incorrect for preRA passes and appears to be wrong for
2670// postRA passes as well.
2671//
2672// 2) getNumLDMAddresses is only used by the scheduling machine model and any
2673// machine model that calls this should handle the unknown (zero size) case.
2674//
2675// Long term, we should require a target hook that verifies MachineMemOperand
2676// sizes during MC lowering. That target hook should be local to MC lowering
2677// because we can't ensure that it is aware of other MI forms. Doing this will
2678// ensure that MachineMemOperands are correctly propagated through all passes.
2679unsigned ARMBaseInstrInfo::getNumLDMAddresses(const MachineInstr *MI) const {
2680 unsigned Size = 0;
2681 for (MachineInstr::mmo_iterator I = MI->memoperands_begin(),
2682 E = MI->memoperands_end(); I != E; ++I) {
2683 Size += (*I)->getSize();
2684 }
2685 return Size / 4;
2686}
2687
Evan Cheng367a5df2010-09-09 18:18:55 +00002688unsigned
Evan Chengdebf9c52010-11-03 00:45:17 +00002689ARMBaseInstrInfo::getNumMicroOps(const InstrItineraryData *ItinData,
2690 const MachineInstr *MI) const {
Evan Chengbf407072010-09-10 01:29:16 +00002691 if (!ItinData || ItinData->isEmpty())
Evan Cheng367a5df2010-09-09 18:18:55 +00002692 return 1;
2693
Evan Cheng6cc775f2011-06-28 19:10:37 +00002694 const MCInstrDesc &Desc = MI->getDesc();
Evan Cheng367a5df2010-09-09 18:18:55 +00002695 unsigned Class = Desc.getSchedClass();
Andrew Trickf161e392012-07-02 18:10:42 +00002696 int ItinUOps = ItinData->getNumMicroOps(Class);
Bob Wilsone8a549c2012-09-29 21:43:49 +00002697 if (ItinUOps >= 0) {
2698 if (Subtarget.isSwift() && (Desc.mayLoad() || Desc.mayStore()))
2699 return getNumMicroOpsSwiftLdSt(ItinData, MI);
2700
Andrew Trickf161e392012-07-02 18:10:42 +00002701 return ItinUOps;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002702 }
Evan Cheng367a5df2010-09-09 18:18:55 +00002703
2704 unsigned Opc = MI->getOpcode();
2705 switch (Opc) {
2706 default:
2707 llvm_unreachable("Unexpected multi-uops instruction!");
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002708 case ARM::VLDMQIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002709 case ARM::VSTMQIA:
Evan Cheng367a5df2010-09-09 18:18:55 +00002710 return 2;
2711
2712 // The number of uOps for load / store multiple are determined by the number
2713 // registers.
Andrew Trickc416ba62010-12-24 04:28:06 +00002714 //
Evan Chengbf407072010-09-10 01:29:16 +00002715 // On Cortex-A8, each pair of register loads / stores can be scheduled on the
2716 // same cycle. The scheduling for the first load / store must be done
Sylvestre Ledru35521e22012-07-23 08:51:15 +00002717 // separately by assuming the address is not 64-bit aligned.
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002718 //
Evan Chengbf407072010-09-10 01:29:16 +00002719 // On Cortex-A9, the formula is simply (#reg / 2) + (#reg % 2). If the address
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002720 // is not 64-bit aligned, then AGU would take an extra cycle. For VFP / NEON
2721 // load / store multiple, the formula is (#reg / 2) + (#reg % 2) + 1.
2722 case ARM::VLDMDIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002723 case ARM::VLDMDIA_UPD:
2724 case ARM::VLDMDDB_UPD:
2725 case ARM::VLDMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002726 case ARM::VLDMSIA_UPD:
2727 case ARM::VLDMSDB_UPD:
2728 case ARM::VSTMDIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002729 case ARM::VSTMDIA_UPD:
2730 case ARM::VSTMDDB_UPD:
2731 case ARM::VSTMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002732 case ARM::VSTMSIA_UPD:
2733 case ARM::VSTMSDB_UPD: {
Evan Cheng367a5df2010-09-09 18:18:55 +00002734 unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands();
2735 return (NumRegs / 2) + (NumRegs % 2) + 1;
2736 }
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002737
2738 case ARM::LDMIA_RET:
2739 case ARM::LDMIA:
2740 case ARM::LDMDA:
2741 case ARM::LDMDB:
2742 case ARM::LDMIB:
2743 case ARM::LDMIA_UPD:
2744 case ARM::LDMDA_UPD:
2745 case ARM::LDMDB_UPD:
2746 case ARM::LDMIB_UPD:
2747 case ARM::STMIA:
2748 case ARM::STMDA:
2749 case ARM::STMDB:
2750 case ARM::STMIB:
2751 case ARM::STMIA_UPD:
2752 case ARM::STMDA_UPD:
2753 case ARM::STMDB_UPD:
2754 case ARM::STMIB_UPD:
2755 case ARM::tLDMIA:
2756 case ARM::tLDMIA_UPD:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002757 case ARM::tSTMIA_UPD:
Evan Cheng367a5df2010-09-09 18:18:55 +00002758 case ARM::tPOP_RET:
2759 case ARM::tPOP:
2760 case ARM::tPUSH:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002761 case ARM::t2LDMIA_RET:
2762 case ARM::t2LDMIA:
2763 case ARM::t2LDMDB:
2764 case ARM::t2LDMIA_UPD:
2765 case ARM::t2LDMDB_UPD:
2766 case ARM::t2STMIA:
2767 case ARM::t2STMDB:
2768 case ARM::t2STMIA_UPD:
2769 case ARM::t2STMDB_UPD: {
Evan Chengbf407072010-09-10 01:29:16 +00002770 unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands() + 1;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002771 if (Subtarget.isSwift()) {
Bob Wilsone8a549c2012-09-29 21:43:49 +00002772 int UOps = 1 + NumRegs; // One for address computation, one for each ld / st.
2773 switch (Opc) {
2774 default: break;
2775 case ARM::VLDMDIA_UPD:
2776 case ARM::VLDMDDB_UPD:
2777 case ARM::VLDMSIA_UPD:
2778 case ARM::VLDMSDB_UPD:
2779 case ARM::VSTMDIA_UPD:
2780 case ARM::VSTMDDB_UPD:
2781 case ARM::VSTMSIA_UPD:
2782 case ARM::VSTMSDB_UPD:
2783 case ARM::LDMIA_UPD:
2784 case ARM::LDMDA_UPD:
2785 case ARM::LDMDB_UPD:
2786 case ARM::LDMIB_UPD:
2787 case ARM::STMIA_UPD:
2788 case ARM::STMDA_UPD:
2789 case ARM::STMDB_UPD:
2790 case ARM::STMIB_UPD:
2791 case ARM::tLDMIA_UPD:
2792 case ARM::tSTMIA_UPD:
2793 case ARM::t2LDMIA_UPD:
2794 case ARM::t2LDMDB_UPD:
2795 case ARM::t2STMIA_UPD:
2796 case ARM::t2STMDB_UPD:
2797 ++UOps; // One for base register writeback.
2798 break;
2799 case ARM::LDMIA_RET:
2800 case ARM::tPOP_RET:
2801 case ARM::t2LDMIA_RET:
2802 UOps += 2; // One for base reg wb, one for write to pc.
2803 break;
2804 }
2805 return UOps;
2806 } else if (Subtarget.isCortexA8()) {
Evan Chengdebf9c52010-11-03 00:45:17 +00002807 if (NumRegs < 4)
2808 return 2;
2809 // 4 registers would be issued: 2, 2.
2810 // 5 registers would be issued: 2, 2, 1.
Andrew Trickf161e392012-07-02 18:10:42 +00002811 int A8UOps = (NumRegs / 2);
Evan Chengdebf9c52010-11-03 00:45:17 +00002812 if (NumRegs % 2)
Andrew Trickf161e392012-07-02 18:10:42 +00002813 ++A8UOps;
2814 return A8UOps;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002815 } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
Andrew Trickf161e392012-07-02 18:10:42 +00002816 int A9UOps = (NumRegs / 2);
Evan Chengbf407072010-09-10 01:29:16 +00002817 // If there are odd number of registers or if it's not 64-bit aligned,
2818 // then it takes an extra AGU (Address Generation Unit) cycle.
2819 if ((NumRegs % 2) ||
2820 !MI->hasOneMemOperand() ||
2821 (*MI->memoperands_begin())->getAlignment() < 8)
Andrew Trickf161e392012-07-02 18:10:42 +00002822 ++A9UOps;
2823 return A9UOps;
Evan Chengbf407072010-09-10 01:29:16 +00002824 } else {
2825 // Assume the worst.
2826 return NumRegs;
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00002827 }
Evan Cheng367a5df2010-09-09 18:18:55 +00002828 }
2829 }
2830}
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002831
2832int
Evan Cheng412e37b2010-10-07 23:12:15 +00002833ARMBaseInstrInfo::getVLDMDefCycle(const InstrItineraryData *ItinData,
Evan Cheng6cc775f2011-06-28 19:10:37 +00002834 const MCInstrDesc &DefMCID,
Evan Cheng412e37b2010-10-07 23:12:15 +00002835 unsigned DefClass,
2836 unsigned DefIdx, unsigned DefAlign) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +00002837 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
Evan Cheng412e37b2010-10-07 23:12:15 +00002838 if (RegNo <= 0)
2839 // Def is the address writeback.
2840 return ItinData->getOperandCycle(DefClass, DefIdx);
2841
2842 int DefCycle;
2843 if (Subtarget.isCortexA8()) {
2844 // (regno / 2) + (regno % 2) + 1
2845 DefCycle = RegNo / 2 + 1;
2846 if (RegNo % 2)
2847 ++DefCycle;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002848 } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00002849 DefCycle = RegNo;
2850 bool isSLoad = false;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002851
Evan Cheng6cc775f2011-06-28 19:10:37 +00002852 switch (DefMCID.getOpcode()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00002853 default: break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002854 case ARM::VLDMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002855 case ARM::VLDMSIA_UPD:
2856 case ARM::VLDMSDB_UPD:
Evan Cheng412e37b2010-10-07 23:12:15 +00002857 isSLoad = true;
2858 break;
2859 }
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002860
Evan Cheng412e37b2010-10-07 23:12:15 +00002861 // If there are odd number of 'S' registers or if it's not 64-bit aligned,
2862 // then it takes an extra cycle.
2863 if ((isSLoad && (RegNo % 2)) || DefAlign < 8)
2864 ++DefCycle;
2865 } else {
2866 // Assume the worst.
2867 DefCycle = RegNo + 2;
2868 }
2869
2870 return DefCycle;
2871}
2872
2873int
2874ARMBaseInstrInfo::getLDMDefCycle(const InstrItineraryData *ItinData,
Evan Cheng6cc775f2011-06-28 19:10:37 +00002875 const MCInstrDesc &DefMCID,
Evan Cheng412e37b2010-10-07 23:12:15 +00002876 unsigned DefClass,
2877 unsigned DefIdx, unsigned DefAlign) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +00002878 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
Evan Cheng412e37b2010-10-07 23:12:15 +00002879 if (RegNo <= 0)
2880 // Def is the address writeback.
2881 return ItinData->getOperandCycle(DefClass, DefIdx);
2882
2883 int DefCycle;
2884 if (Subtarget.isCortexA8()) {
2885 // 4 registers would be issued: 1, 2, 1.
2886 // 5 registers would be issued: 1, 2, 2.
2887 DefCycle = RegNo / 2;
2888 if (DefCycle < 1)
2889 DefCycle = 1;
2890 // Result latency is issue cycle + 2: E2.
2891 DefCycle += 2;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002892 } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00002893 DefCycle = (RegNo / 2);
2894 // If there are odd number of registers or if it's not 64-bit aligned,
2895 // then it takes an extra AGU (Address Generation Unit) cycle.
2896 if ((RegNo % 2) || DefAlign < 8)
2897 ++DefCycle;
2898 // Result latency is AGU cycles + 2.
2899 DefCycle += 2;
2900 } else {
2901 // Assume the worst.
2902 DefCycle = RegNo + 2;
2903 }
2904
2905 return DefCycle;
2906}
2907
2908int
2909ARMBaseInstrInfo::getVSTMUseCycle(const InstrItineraryData *ItinData,
Evan Cheng6cc775f2011-06-28 19:10:37 +00002910 const MCInstrDesc &UseMCID,
Evan Cheng412e37b2010-10-07 23:12:15 +00002911 unsigned UseClass,
2912 unsigned UseIdx, unsigned UseAlign) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +00002913 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
Evan Cheng412e37b2010-10-07 23:12:15 +00002914 if (RegNo <= 0)
2915 return ItinData->getOperandCycle(UseClass, UseIdx);
2916
2917 int UseCycle;
2918 if (Subtarget.isCortexA8()) {
2919 // (regno / 2) + (regno % 2) + 1
2920 UseCycle = RegNo / 2 + 1;
2921 if (RegNo % 2)
2922 ++UseCycle;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002923 } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00002924 UseCycle = RegNo;
2925 bool isSStore = false;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002926
Evan Cheng6cc775f2011-06-28 19:10:37 +00002927 switch (UseMCID.getOpcode()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00002928 default: break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002929 case ARM::VSTMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002930 case ARM::VSTMSIA_UPD:
2931 case ARM::VSTMSDB_UPD:
Evan Cheng412e37b2010-10-07 23:12:15 +00002932 isSStore = true;
2933 break;
2934 }
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002935
Evan Cheng412e37b2010-10-07 23:12:15 +00002936 // If there are odd number of 'S' registers or if it's not 64-bit aligned,
2937 // then it takes an extra cycle.
2938 if ((isSStore && (RegNo % 2)) || UseAlign < 8)
2939 ++UseCycle;
2940 } else {
2941 // Assume the worst.
2942 UseCycle = RegNo + 2;
2943 }
2944
2945 return UseCycle;
2946}
2947
2948int
2949ARMBaseInstrInfo::getSTMUseCycle(const InstrItineraryData *ItinData,
Evan Cheng6cc775f2011-06-28 19:10:37 +00002950 const MCInstrDesc &UseMCID,
Evan Cheng412e37b2010-10-07 23:12:15 +00002951 unsigned UseClass,
2952 unsigned UseIdx, unsigned UseAlign) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +00002953 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
Evan Cheng412e37b2010-10-07 23:12:15 +00002954 if (RegNo <= 0)
2955 return ItinData->getOperandCycle(UseClass, UseIdx);
2956
2957 int UseCycle;
2958 if (Subtarget.isCortexA8()) {
2959 UseCycle = RegNo / 2;
2960 if (UseCycle < 2)
2961 UseCycle = 2;
2962 // Read in E3.
2963 UseCycle += 2;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002964 } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00002965 UseCycle = (RegNo / 2);
2966 // If there are odd number of registers or if it's not 64-bit aligned,
2967 // then it takes an extra AGU (Address Generation Unit) cycle.
2968 if ((RegNo % 2) || UseAlign < 8)
2969 ++UseCycle;
2970 } else {
2971 // Assume the worst.
2972 UseCycle = 1;
2973 }
2974 return UseCycle;
2975}
2976
2977int
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002978ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
Evan Cheng6cc775f2011-06-28 19:10:37 +00002979 const MCInstrDesc &DefMCID,
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002980 unsigned DefIdx, unsigned DefAlign,
Evan Cheng6cc775f2011-06-28 19:10:37 +00002981 const MCInstrDesc &UseMCID,
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002982 unsigned UseIdx, unsigned UseAlign) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +00002983 unsigned DefClass = DefMCID.getSchedClass();
2984 unsigned UseClass = UseMCID.getSchedClass();
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002985
Evan Cheng6cc775f2011-06-28 19:10:37 +00002986 if (DefIdx < DefMCID.getNumDefs() && UseIdx < UseMCID.getNumOperands())
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002987 return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx);
2988
2989 // This may be a def / use of a variable_ops instruction, the operand
2990 // latency might be determinable dynamically. Let the target try to
2991 // figure it out.
Evan Chenge2c211c2010-10-28 02:00:25 +00002992 int DefCycle = -1;
Evan Chengff310732010-10-28 06:47:08 +00002993 bool LdmBypass = false;
Evan Cheng6cc775f2011-06-28 19:10:37 +00002994 switch (DefMCID.getOpcode()) {
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002995 default:
2996 DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
2997 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002998
2999 case ARM::VLDMDIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003000 case ARM::VLDMDIA_UPD:
3001 case ARM::VLDMDDB_UPD:
3002 case ARM::VLDMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003003 case ARM::VLDMSIA_UPD:
3004 case ARM::VLDMSDB_UPD:
Evan Cheng6cc775f2011-06-28 19:10:37 +00003005 DefCycle = getVLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
Evan Cheng1958cef2010-10-07 01:50:48 +00003006 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003007
3008 case ARM::LDMIA_RET:
3009 case ARM::LDMIA:
3010 case ARM::LDMDA:
3011 case ARM::LDMDB:
3012 case ARM::LDMIB:
3013 case ARM::LDMIA_UPD:
3014 case ARM::LDMDA_UPD:
3015 case ARM::LDMDB_UPD:
3016 case ARM::LDMIB_UPD:
3017 case ARM::tLDMIA:
3018 case ARM::tLDMIA_UPD:
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003019 case ARM::tPUSH:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003020 case ARM::t2LDMIA_RET:
3021 case ARM::t2LDMIA:
3022 case ARM::t2LDMDB:
3023 case ARM::t2LDMIA_UPD:
3024 case ARM::t2LDMDB_UPD:
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003025 LdmBypass = 1;
Evan Cheng6cc775f2011-06-28 19:10:37 +00003026 DefCycle = getLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
Evan Cheng412e37b2010-10-07 23:12:15 +00003027 break;
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003028 }
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003029
3030 if (DefCycle == -1)
3031 // We can't seem to determine the result latency of the def, assume it's 2.
3032 DefCycle = 2;
3033
3034 int UseCycle = -1;
Evan Cheng6cc775f2011-06-28 19:10:37 +00003035 switch (UseMCID.getOpcode()) {
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003036 default:
3037 UseCycle = ItinData->getOperandCycle(UseClass, UseIdx);
3038 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003039
3040 case ARM::VSTMDIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003041 case ARM::VSTMDIA_UPD:
3042 case ARM::VSTMDDB_UPD:
3043 case ARM::VSTMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003044 case ARM::VSTMSIA_UPD:
3045 case ARM::VSTMSDB_UPD:
Evan Cheng6cc775f2011-06-28 19:10:37 +00003046 UseCycle = getVSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
Evan Cheng1958cef2010-10-07 01:50:48 +00003047 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003048
3049 case ARM::STMIA:
3050 case ARM::STMDA:
3051 case ARM::STMDB:
3052 case ARM::STMIB:
3053 case ARM::STMIA_UPD:
3054 case ARM::STMDA_UPD:
3055 case ARM::STMDB_UPD:
3056 case ARM::STMIB_UPD:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003057 case ARM::tSTMIA_UPD:
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003058 case ARM::tPOP_RET:
3059 case ARM::tPOP:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003060 case ARM::t2STMIA:
3061 case ARM::t2STMDB:
3062 case ARM::t2STMIA_UPD:
3063 case ARM::t2STMDB_UPD:
Evan Cheng6cc775f2011-06-28 19:10:37 +00003064 UseCycle = getSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
Evan Cheng1958cef2010-10-07 01:50:48 +00003065 break;
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003066 }
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003067
3068 if (UseCycle == -1)
3069 // Assume it's read in the first stage.
3070 UseCycle = 1;
3071
3072 UseCycle = DefCycle - UseCycle + 1;
3073 if (UseCycle > 0) {
3074 if (LdmBypass) {
3075 // It's a variable_ops instruction so we can't use DefIdx here. Just use
3076 // first def operand.
Evan Cheng6cc775f2011-06-28 19:10:37 +00003077 if (ItinData->hasPipelineForwarding(DefClass, DefMCID.getNumOperands()-1,
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003078 UseClass, UseIdx))
3079 --UseCycle;
3080 } else if (ItinData->hasPipelineForwarding(DefClass, DefIdx,
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003081 UseClass, UseIdx)) {
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003082 --UseCycle;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003083 }
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003084 }
3085
3086 return UseCycle;
3087}
3088
Evan Cheng7fae11b2011-12-14 02:11:42 +00003089static const MachineInstr *getBundledDefMI(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 &DefIdx, unsigned &Dist) {
3092 Dist = 0;
3093
3094 MachineBasicBlock::const_iterator I = MI; ++I;
3095 MachineBasicBlock::const_instr_iterator II =
3096 llvm::prior(I.getInstrIterator());
3097 assert(II->isInsideBundle() && "Empty bundle?");
3098
3099 int Idx = -1;
Evan Cheng7fae11b2011-12-14 02:11:42 +00003100 while (II->isInsideBundle()) {
3101 Idx = II->findRegisterDefOperandIdx(Reg, false, true, TRI);
3102 if (Idx != -1)
3103 break;
3104 --II;
3105 ++Dist;
3106 }
3107
3108 assert(Idx != -1 && "Cannot find bundled definition!");
3109 DefIdx = Idx;
3110 return II;
3111}
3112
3113static const MachineInstr *getBundledUseMI(const TargetRegisterInfo *TRI,
Evan Chengda103bf2011-12-14 20:00:08 +00003114 const MachineInstr *MI, unsigned Reg,
Evan Cheng7fae11b2011-12-14 02:11:42 +00003115 unsigned &UseIdx, unsigned &Dist) {
3116 Dist = 0;
3117
3118 MachineBasicBlock::const_instr_iterator II = MI; ++II;
3119 assert(II->isInsideBundle() && "Empty bundle?");
3120 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
3121
3122 // FIXME: This doesn't properly handle multiple uses.
3123 int Idx = -1;
Evan Cheng7fae11b2011-12-14 02:11:42 +00003124 while (II != E && II->isInsideBundle()) {
3125 Idx = II->findRegisterUseOperandIdx(Reg, false, TRI);
3126 if (Idx != -1)
3127 break;
3128 if (II->getOpcode() != ARM::t2IT)
3129 ++Dist;
3130 ++II;
3131 }
3132
Evan Chengda103bf2011-12-14 20:00:08 +00003133 if (Idx == -1) {
3134 Dist = 0;
3135 return 0;
3136 }
3137
Evan Cheng7fae11b2011-12-14 02:11:42 +00003138 UseIdx = Idx;
3139 return II;
3140}
3141
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003142/// Return the number of cycles to add to (or subtract from) the static
3143/// itinerary based on the def opcode and alignment. The caller will ensure that
3144/// adjusted latency is at least one cycle.
3145static int adjustDefLatency(const ARMSubtarget &Subtarget,
3146 const MachineInstr *DefMI,
3147 const MCInstrDesc *DefMCID, unsigned DefAlign) {
3148 int Adjust = 0;
Silviu Barangab47bb942012-09-13 15:05:10 +00003149 if (Subtarget.isCortexA8() || Subtarget.isLikeA9()) {
Evan Chengff310732010-10-28 06:47:08 +00003150 // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
3151 // variants are one cycle cheaper.
Evan Cheng7fae11b2011-12-14 02:11:42 +00003152 switch (DefMCID->getOpcode()) {
Evan Chengff310732010-10-28 06:47:08 +00003153 default: break;
Jakob Stoklund Olesenb3de7b12012-08-28 03:11:27 +00003154 case ARM::LDRrs:
3155 case ARM::LDRBrs: {
Evan Chengff310732010-10-28 06:47:08 +00003156 unsigned ShOpVal = DefMI->getOperand(3).getImm();
3157 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3158 if (ShImm == 0 ||
3159 (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003160 --Adjust;
Evan Chengff310732010-10-28 06:47:08 +00003161 break;
3162 }
Jakob Stoklund Olesenb3de7b12012-08-28 03:11:27 +00003163 case ARM::t2LDRs:
3164 case ARM::t2LDRBs:
3165 case ARM::t2LDRHs:
Evan Chengff310732010-10-28 06:47:08 +00003166 case ARM::t2LDRSHs: {
3167 // Thumb2 mode: lsl only.
3168 unsigned ShAmt = DefMI->getOperand(3).getImm();
3169 if (ShAmt == 0 || ShAmt == 2)
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003170 --Adjust;
Evan Chengff310732010-10-28 06:47:08 +00003171 break;
3172 }
3173 }
Bob Wilsone8a549c2012-09-29 21:43:49 +00003174 } else if (Subtarget.isSwift()) {
3175 // FIXME: Properly handle all of the latency adjustments for address
3176 // writeback.
3177 switch (DefMCID->getOpcode()) {
3178 default: break;
3179 case ARM::LDRrs:
3180 case ARM::LDRBrs: {
3181 unsigned ShOpVal = DefMI->getOperand(3).getImm();
3182 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
3183 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3184 if (!isSub &&
3185 (ShImm == 0 ||
3186 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
3187 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
3188 Adjust -= 2;
3189 else if (!isSub &&
3190 ShImm == 1 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsr)
3191 --Adjust;
3192 break;
3193 }
3194 case ARM::t2LDRs:
3195 case ARM::t2LDRBs:
3196 case ARM::t2LDRHs:
3197 case ARM::t2LDRSHs: {
3198 // Thumb2 mode: lsl only.
3199 unsigned ShAmt = DefMI->getOperand(3).getImm();
3200 if (ShAmt == 0 || ShAmt == 1 || ShAmt == 2 || ShAmt == 3)
3201 Adjust -= 2;
3202 break;
3203 }
3204 }
Evan Chengff310732010-10-28 06:47:08 +00003205 }
3206
Silviu Barangab47bb942012-09-13 15:05:10 +00003207 if (DefAlign < 8 && Subtarget.isLikeA9()) {
Evan Cheng7fae11b2011-12-14 02:11:42 +00003208 switch (DefMCID->getOpcode()) {
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003209 default: break;
3210 case ARM::VLD1q8:
3211 case ARM::VLD1q16:
3212 case ARM::VLD1q32:
3213 case ARM::VLD1q64:
Jim Grosbach2098cb12011-10-24 21:45:13 +00003214 case ARM::VLD1q8wb_fixed:
3215 case ARM::VLD1q16wb_fixed:
3216 case ARM::VLD1q32wb_fixed:
3217 case ARM::VLD1q64wb_fixed:
3218 case ARM::VLD1q8wb_register:
3219 case ARM::VLD1q16wb_register:
3220 case ARM::VLD1q32wb_register:
3221 case ARM::VLD1q64wb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003222 case ARM::VLD2d8:
3223 case ARM::VLD2d16:
3224 case ARM::VLD2d32:
3225 case ARM::VLD2q8:
3226 case ARM::VLD2q16:
3227 case ARM::VLD2q32:
Jim Grosbachd146a022011-12-09 21:28:25 +00003228 case ARM::VLD2d8wb_fixed:
3229 case ARM::VLD2d16wb_fixed:
3230 case ARM::VLD2d32wb_fixed:
3231 case ARM::VLD2q8wb_fixed:
3232 case ARM::VLD2q16wb_fixed:
3233 case ARM::VLD2q32wb_fixed:
3234 case ARM::VLD2d8wb_register:
3235 case ARM::VLD2d16wb_register:
3236 case ARM::VLD2d32wb_register:
3237 case ARM::VLD2q8wb_register:
3238 case ARM::VLD2q16wb_register:
3239 case ARM::VLD2q32wb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003240 case ARM::VLD3d8:
3241 case ARM::VLD3d16:
3242 case ARM::VLD3d32:
3243 case ARM::VLD1d64T:
3244 case ARM::VLD3d8_UPD:
3245 case ARM::VLD3d16_UPD:
3246 case ARM::VLD3d32_UPD:
Jim Grosbach92fd05e2011-10-24 23:26:05 +00003247 case ARM::VLD1d64Twb_fixed:
3248 case ARM::VLD1d64Twb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003249 case ARM::VLD3q8_UPD:
3250 case ARM::VLD3q16_UPD:
3251 case ARM::VLD3q32_UPD:
3252 case ARM::VLD4d8:
3253 case ARM::VLD4d16:
3254 case ARM::VLD4d32:
3255 case ARM::VLD1d64Q:
3256 case ARM::VLD4d8_UPD:
3257 case ARM::VLD4d16_UPD:
3258 case ARM::VLD4d32_UPD:
Jim Grosbach17ec1a12011-10-25 00:14:01 +00003259 case ARM::VLD1d64Qwb_fixed:
3260 case ARM::VLD1d64Qwb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003261 case ARM::VLD4q8_UPD:
3262 case ARM::VLD4q16_UPD:
3263 case ARM::VLD4q32_UPD:
3264 case ARM::VLD1DUPq8:
3265 case ARM::VLD1DUPq16:
3266 case ARM::VLD1DUPq32:
Jim Grosbacha68c9a82011-11-30 19:35:44 +00003267 case ARM::VLD1DUPq8wb_fixed:
3268 case ARM::VLD1DUPq16wb_fixed:
3269 case ARM::VLD1DUPq32wb_fixed:
3270 case ARM::VLD1DUPq8wb_register:
3271 case ARM::VLD1DUPq16wb_register:
3272 case ARM::VLD1DUPq32wb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003273 case ARM::VLD2DUPd8:
3274 case ARM::VLD2DUPd16:
3275 case ARM::VLD2DUPd32:
Jim Grosbachc80a2642011-12-21 19:40:55 +00003276 case ARM::VLD2DUPd8wb_fixed:
3277 case ARM::VLD2DUPd16wb_fixed:
3278 case ARM::VLD2DUPd32wb_fixed:
3279 case ARM::VLD2DUPd8wb_register:
3280 case ARM::VLD2DUPd16wb_register:
3281 case ARM::VLD2DUPd32wb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003282 case ARM::VLD4DUPd8:
3283 case ARM::VLD4DUPd16:
3284 case ARM::VLD4DUPd32:
3285 case ARM::VLD4DUPd8_UPD:
3286 case ARM::VLD4DUPd16_UPD:
3287 case ARM::VLD4DUPd32_UPD:
3288 case ARM::VLD1LNd8:
3289 case ARM::VLD1LNd16:
3290 case ARM::VLD1LNd32:
3291 case ARM::VLD1LNd8_UPD:
3292 case ARM::VLD1LNd16_UPD:
3293 case ARM::VLD1LNd32_UPD:
3294 case ARM::VLD2LNd8:
3295 case ARM::VLD2LNd16:
3296 case ARM::VLD2LNd32:
3297 case ARM::VLD2LNq16:
3298 case ARM::VLD2LNq32:
3299 case ARM::VLD2LNd8_UPD:
3300 case ARM::VLD2LNd16_UPD:
3301 case ARM::VLD2LNd32_UPD:
3302 case ARM::VLD2LNq16_UPD:
3303 case ARM::VLD2LNq32_UPD:
3304 case ARM::VLD4LNd8:
3305 case ARM::VLD4LNd16:
3306 case ARM::VLD4LNd32:
3307 case ARM::VLD4LNq16:
3308 case ARM::VLD4LNq32:
3309 case ARM::VLD4LNd8_UPD:
3310 case ARM::VLD4LNd16_UPD:
3311 case ARM::VLD4LNd32_UPD:
3312 case ARM::VLD4LNq16_UPD:
3313 case ARM::VLD4LNq32_UPD:
3314 // If the address is not 64-bit aligned, the latencies of these
3315 // instructions increases by one.
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003316 ++Adjust;
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003317 break;
3318 }
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003319 }
3320 return Adjust;
3321}
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003322
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003323
3324
3325int
3326ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
3327 const MachineInstr *DefMI, unsigned DefIdx,
3328 const MachineInstr *UseMI,
3329 unsigned UseIdx) const {
3330 // No operand latency. The caller may fall back to getInstrLatency.
3331 if (!ItinData || ItinData->isEmpty())
3332 return -1;
3333
3334 const MachineOperand &DefMO = DefMI->getOperand(DefIdx);
3335 unsigned Reg = DefMO.getReg();
3336 const MCInstrDesc *DefMCID = &DefMI->getDesc();
3337 const MCInstrDesc *UseMCID = &UseMI->getDesc();
3338
3339 unsigned DefAdj = 0;
3340 if (DefMI->isBundle()) {
3341 DefMI = getBundledDefMI(&getRegisterInfo(), DefMI, Reg, DefIdx, DefAdj);
3342 DefMCID = &DefMI->getDesc();
3343 }
3344 if (DefMI->isCopyLike() || DefMI->isInsertSubreg() ||
3345 DefMI->isRegSequence() || DefMI->isImplicitDef()) {
3346 return 1;
3347 }
3348
3349 unsigned UseAdj = 0;
3350 if (UseMI->isBundle()) {
3351 unsigned NewUseIdx;
3352 const MachineInstr *NewUseMI = getBundledUseMI(&getRegisterInfo(), UseMI,
3353 Reg, NewUseIdx, UseAdj);
Andrew Trick77d0b882012-06-22 02:50:33 +00003354 if (!NewUseMI)
3355 return -1;
3356
3357 UseMI = NewUseMI;
3358 UseIdx = NewUseIdx;
3359 UseMCID = &UseMI->getDesc();
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003360 }
3361
3362 if (Reg == ARM::CPSR) {
3363 if (DefMI->getOpcode() == ARM::FMSTAT) {
3364 // fpscr -> cpsr stalls over 20 cycles on A8 (and earlier?)
Silviu Barangab47bb942012-09-13 15:05:10 +00003365 return Subtarget.isLikeA9() ? 1 : 20;
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003366 }
3367
3368 // CPSR set and branch can be paired in the same cycle.
3369 if (UseMI->isBranch())
3370 return 0;
3371
3372 // Otherwise it takes the instruction latency (generally one).
3373 unsigned Latency = getInstrLatency(ItinData, DefMI);
3374
3375 // For Thumb2 and -Os, prefer scheduling CPSR setting instruction close to
3376 // its uses. Instructions which are otherwise scheduled between them may
3377 // incur a code size penalty (not able to use the CPSR setting 16-bit
3378 // instructions).
3379 if (Latency > 0 && Subtarget.isThumb2()) {
3380 const MachineFunction *MF = DefMI->getParent()->getParent();
Bill Wendling698e84f2012-12-30 10:32:01 +00003381 if (MF->getFunction()->getAttributes().
3382 hasAttribute(AttributeSet::FunctionIndex,
3383 Attribute::OptimizeForSize))
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003384 --Latency;
3385 }
3386 return Latency;
3387 }
3388
Andrew Trick77d0b882012-06-22 02:50:33 +00003389 if (DefMO.isImplicit() || UseMI->getOperand(UseIdx).isImplicit())
3390 return -1;
3391
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003392 unsigned DefAlign = DefMI->hasOneMemOperand()
3393 ? (*DefMI->memoperands_begin())->getAlignment() : 0;
3394 unsigned UseAlign = UseMI->hasOneMemOperand()
3395 ? (*UseMI->memoperands_begin())->getAlignment() : 0;
3396
3397 // Get the itinerary's latency if possible, and handle variable_ops.
3398 int Latency = getOperandLatency(ItinData, *DefMCID, DefIdx, DefAlign,
3399 *UseMCID, UseIdx, UseAlign);
3400 // Unable to find operand latency. The caller may resort to getInstrLatency.
3401 if (Latency < 0)
3402 return Latency;
3403
3404 // Adjust for IT block position.
3405 int Adj = DefAdj + UseAdj;
3406
3407 // Adjust for dynamic def-side opcode variants not captured by the itinerary.
3408 Adj += adjustDefLatency(Subtarget, DefMI, DefMCID, DefAlign);
3409 if (Adj >= 0 || (int)Latency > -Adj) {
3410 return Latency + Adj;
3411 }
3412 // Return the itinerary latency, which may be zero but not less than zero.
Evan Chengff310732010-10-28 06:47:08 +00003413 return Latency;
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003414}
3415
3416int
3417ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
3418 SDNode *DefNode, unsigned DefIdx,
3419 SDNode *UseNode, unsigned UseIdx) const {
3420 if (!DefNode->isMachineOpcode())
3421 return 1;
3422
Evan Cheng6cc775f2011-06-28 19:10:37 +00003423 const MCInstrDesc &DefMCID = get(DefNode->getMachineOpcode());
Andrew Trick47ff14b2011-01-21 05:51:33 +00003424
Evan Cheng6cc775f2011-06-28 19:10:37 +00003425 if (isZeroCost(DefMCID.Opcode))
Andrew Trick47ff14b2011-01-21 05:51:33 +00003426 return 0;
3427
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003428 if (!ItinData || ItinData->isEmpty())
Evan Cheng6cc775f2011-06-28 19:10:37 +00003429 return DefMCID.mayLoad() ? 3 : 1;
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003430
Evan Cheng6c1414f2010-10-29 18:09:28 +00003431 if (!UseNode->isMachineOpcode()) {
Evan Cheng6cc775f2011-06-28 19:10:37 +00003432 int Latency = ItinData->getOperandCycle(DefMCID.getSchedClass(), DefIdx);
Bob Wilsone8a549c2012-09-29 21:43:49 +00003433 if (Subtarget.isLikeA9() || Subtarget.isSwift())
Evan Cheng6c1414f2010-10-29 18:09:28 +00003434 return Latency <= 2 ? 1 : Latency - 1;
3435 else
3436 return Latency <= 3 ? 1 : Latency - 2;
3437 }
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003438
Evan Cheng6cc775f2011-06-28 19:10:37 +00003439 const MCInstrDesc &UseMCID = get(UseNode->getMachineOpcode());
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003440 const MachineSDNode *DefMN = dyn_cast<MachineSDNode>(DefNode);
3441 unsigned DefAlign = !DefMN->memoperands_empty()
3442 ? (*DefMN->memoperands_begin())->getAlignment() : 0;
3443 const MachineSDNode *UseMN = dyn_cast<MachineSDNode>(UseNode);
3444 unsigned UseAlign = !UseMN->memoperands_empty()
3445 ? (*UseMN->memoperands_begin())->getAlignment() : 0;
Evan Cheng6cc775f2011-06-28 19:10:37 +00003446 int Latency = getOperandLatency(ItinData, DefMCID, DefIdx, DefAlign,
3447 UseMCID, UseIdx, UseAlign);
Evan Chengff310732010-10-28 06:47:08 +00003448
3449 if (Latency > 1 &&
Silviu Barangab47bb942012-09-13 15:05:10 +00003450 (Subtarget.isCortexA8() || Subtarget.isLikeA9())) {
Evan Chengff310732010-10-28 06:47:08 +00003451 // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
3452 // variants are one cycle cheaper.
Evan Cheng6cc775f2011-06-28 19:10:37 +00003453 switch (DefMCID.getOpcode()) {
Evan Chengff310732010-10-28 06:47:08 +00003454 default: break;
Jakob Stoklund Olesenb3de7b12012-08-28 03:11:27 +00003455 case ARM::LDRrs:
3456 case ARM::LDRBrs: {
Evan Chengff310732010-10-28 06:47:08 +00003457 unsigned ShOpVal =
3458 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
3459 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3460 if (ShImm == 0 ||
3461 (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
3462 --Latency;
3463 break;
3464 }
Jakob Stoklund Olesenb3de7b12012-08-28 03:11:27 +00003465 case ARM::t2LDRs:
3466 case ARM::t2LDRBs:
3467 case ARM::t2LDRHs:
Evan Chengff310732010-10-28 06:47:08 +00003468 case ARM::t2LDRSHs: {
3469 // Thumb2 mode: lsl only.
3470 unsigned ShAmt =
3471 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
3472 if (ShAmt == 0 || ShAmt == 2)
3473 --Latency;
3474 break;
3475 }
3476 }
Bob Wilsone8a549c2012-09-29 21:43:49 +00003477 } else if (DefIdx == 0 && Latency > 2 && Subtarget.isSwift()) {
3478 // FIXME: Properly handle all of the latency adjustments for address
3479 // writeback.
3480 switch (DefMCID.getOpcode()) {
3481 default: break;
3482 case ARM::LDRrs:
3483 case ARM::LDRBrs: {
3484 unsigned ShOpVal =
3485 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
3486 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3487 if (ShImm == 0 ||
3488 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
3489 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
3490 Latency -= 2;
3491 else if (ShImm == 1 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsr)
3492 --Latency;
3493 break;
3494 }
3495 case ARM::t2LDRs:
3496 case ARM::t2LDRBs:
3497 case ARM::t2LDRHs:
3498 case ARM::t2LDRSHs: {
3499 // Thumb2 mode: lsl 0-3 only.
3500 Latency -= 2;
3501 break;
3502 }
3503 }
Evan Chengff310732010-10-28 06:47:08 +00003504 }
3505
Silviu Barangab47bb942012-09-13 15:05:10 +00003506 if (DefAlign < 8 && Subtarget.isLikeA9())
Evan Cheng6cc775f2011-06-28 19:10:37 +00003507 switch (DefMCID.getOpcode()) {
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003508 default: break;
Jim Grosbachc988e0c2012-03-05 19:33:30 +00003509 case ARM::VLD1q8:
3510 case ARM::VLD1q16:
3511 case ARM::VLD1q32:
3512 case ARM::VLD1q64:
3513 case ARM::VLD1q8wb_register:
3514 case ARM::VLD1q16wb_register:
3515 case ARM::VLD1q32wb_register:
3516 case ARM::VLD1q64wb_register:
3517 case ARM::VLD1q8wb_fixed:
3518 case ARM::VLD1q16wb_fixed:
3519 case ARM::VLD1q32wb_fixed:
3520 case ARM::VLD1q64wb_fixed:
3521 case ARM::VLD2d8:
3522 case ARM::VLD2d16:
3523 case ARM::VLD2d32:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003524 case ARM::VLD2q8Pseudo:
3525 case ARM::VLD2q16Pseudo:
3526 case ARM::VLD2q32Pseudo:
Jim Grosbachc988e0c2012-03-05 19:33:30 +00003527 case ARM::VLD2d8wb_fixed:
3528 case ARM::VLD2d16wb_fixed:
3529 case ARM::VLD2d32wb_fixed:
Jim Grosbachd146a022011-12-09 21:28:25 +00003530 case ARM::VLD2q8PseudoWB_fixed:
3531 case ARM::VLD2q16PseudoWB_fixed:
3532 case ARM::VLD2q32PseudoWB_fixed:
Jim Grosbachc988e0c2012-03-05 19:33:30 +00003533 case ARM::VLD2d8wb_register:
3534 case ARM::VLD2d16wb_register:
3535 case ARM::VLD2d32wb_register:
Jim Grosbachd146a022011-12-09 21:28:25 +00003536 case ARM::VLD2q8PseudoWB_register:
3537 case ARM::VLD2q16PseudoWB_register:
3538 case ARM::VLD2q32PseudoWB_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003539 case ARM::VLD3d8Pseudo:
3540 case ARM::VLD3d16Pseudo:
3541 case ARM::VLD3d32Pseudo:
3542 case ARM::VLD1d64TPseudo:
3543 case ARM::VLD3d8Pseudo_UPD:
3544 case ARM::VLD3d16Pseudo_UPD:
3545 case ARM::VLD3d32Pseudo_UPD:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003546 case ARM::VLD3q8Pseudo_UPD:
3547 case ARM::VLD3q16Pseudo_UPD:
3548 case ARM::VLD3q32Pseudo_UPD:
3549 case ARM::VLD3q8oddPseudo:
3550 case ARM::VLD3q16oddPseudo:
3551 case ARM::VLD3q32oddPseudo:
3552 case ARM::VLD3q8oddPseudo_UPD:
3553 case ARM::VLD3q16oddPseudo_UPD:
3554 case ARM::VLD3q32oddPseudo_UPD:
3555 case ARM::VLD4d8Pseudo:
3556 case ARM::VLD4d16Pseudo:
3557 case ARM::VLD4d32Pseudo:
3558 case ARM::VLD1d64QPseudo:
3559 case ARM::VLD4d8Pseudo_UPD:
3560 case ARM::VLD4d16Pseudo_UPD:
3561 case ARM::VLD4d32Pseudo_UPD:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003562 case ARM::VLD4q8Pseudo_UPD:
3563 case ARM::VLD4q16Pseudo_UPD:
3564 case ARM::VLD4q32Pseudo_UPD:
3565 case ARM::VLD4q8oddPseudo:
3566 case ARM::VLD4q16oddPseudo:
3567 case ARM::VLD4q32oddPseudo:
3568 case ARM::VLD4q8oddPseudo_UPD:
3569 case ARM::VLD4q16oddPseudo_UPD:
3570 case ARM::VLD4q32oddPseudo_UPD:
Jim Grosbach13a292c2012-03-06 22:01:44 +00003571 case ARM::VLD1DUPq8:
3572 case ARM::VLD1DUPq16:
3573 case ARM::VLD1DUPq32:
3574 case ARM::VLD1DUPq8wb_fixed:
3575 case ARM::VLD1DUPq16wb_fixed:
3576 case ARM::VLD1DUPq32wb_fixed:
3577 case ARM::VLD1DUPq8wb_register:
3578 case ARM::VLD1DUPq16wb_register:
3579 case ARM::VLD1DUPq32wb_register:
3580 case ARM::VLD2DUPd8:
3581 case ARM::VLD2DUPd16:
3582 case ARM::VLD2DUPd32:
3583 case ARM::VLD2DUPd8wb_fixed:
3584 case ARM::VLD2DUPd16wb_fixed:
3585 case ARM::VLD2DUPd32wb_fixed:
3586 case ARM::VLD2DUPd8wb_register:
3587 case ARM::VLD2DUPd16wb_register:
3588 case ARM::VLD2DUPd32wb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003589 case ARM::VLD4DUPd8Pseudo:
3590 case ARM::VLD4DUPd16Pseudo:
3591 case ARM::VLD4DUPd32Pseudo:
3592 case ARM::VLD4DUPd8Pseudo_UPD:
3593 case ARM::VLD4DUPd16Pseudo_UPD:
3594 case ARM::VLD4DUPd32Pseudo_UPD:
3595 case ARM::VLD1LNq8Pseudo:
3596 case ARM::VLD1LNq16Pseudo:
3597 case ARM::VLD1LNq32Pseudo:
3598 case ARM::VLD1LNq8Pseudo_UPD:
3599 case ARM::VLD1LNq16Pseudo_UPD:
3600 case ARM::VLD1LNq32Pseudo_UPD:
3601 case ARM::VLD2LNd8Pseudo:
3602 case ARM::VLD2LNd16Pseudo:
3603 case ARM::VLD2LNd32Pseudo:
3604 case ARM::VLD2LNq16Pseudo:
3605 case ARM::VLD2LNq32Pseudo:
3606 case ARM::VLD2LNd8Pseudo_UPD:
3607 case ARM::VLD2LNd16Pseudo_UPD:
3608 case ARM::VLD2LNd32Pseudo_UPD:
3609 case ARM::VLD2LNq16Pseudo_UPD:
3610 case ARM::VLD2LNq32Pseudo_UPD:
3611 case ARM::VLD4LNd8Pseudo:
3612 case ARM::VLD4LNd16Pseudo:
3613 case ARM::VLD4LNd32Pseudo:
3614 case ARM::VLD4LNq16Pseudo:
3615 case ARM::VLD4LNq32Pseudo:
3616 case ARM::VLD4LNd8Pseudo_UPD:
3617 case ARM::VLD4LNd16Pseudo_UPD:
3618 case ARM::VLD4LNd32Pseudo_UPD:
3619 case ARM::VLD4LNq16Pseudo_UPD:
3620 case ARM::VLD4LNq32Pseudo_UPD:
3621 // If the address is not 64-bit aligned, the latencies of these
3622 // instructions increases by one.
3623 ++Latency;
3624 break;
3625 }
3626
Evan Chengff310732010-10-28 06:47:08 +00003627 return Latency;
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003628}
Evan Cheng63c76082010-10-19 18:58:51 +00003629
Arnold Schwaighoferd2f96b92013-09-30 15:28:56 +00003630unsigned ARMBaseInstrInfo::getPredicationCost(const MachineInstr *MI) const {
3631 if (MI->isCopyLike() || MI->isInsertSubreg() ||
3632 MI->isRegSequence() || MI->isImplicitDef())
3633 return 0;
3634
3635 if (MI->isBundle())
3636 return 0;
3637
3638 const MCInstrDesc &MCID = MI->getDesc();
3639
3640 if (MCID.isCall() || MCID.hasImplicitDefOfPhysReg(ARM::CPSR)) {
3641 // When predicated, CPSR is an additional source operand for CPSR updating
3642 // instructions, this apparently increases their latencies.
3643 return 1;
3644 }
3645 return 0;
3646}
3647
Andrew Trick45446062012-06-05 21:11:27 +00003648unsigned ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
3649 const MachineInstr *MI,
3650 unsigned *PredCost) const {
Evan Chengdebf9c52010-11-03 00:45:17 +00003651 if (MI->isCopyLike() || MI->isInsertSubreg() ||
3652 MI->isRegSequence() || MI->isImplicitDef())
3653 return 1;
3654
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003655 // An instruction scheduler typically runs on unbundled instructions, however
3656 // other passes may query the latency of a bundled instruction.
Evan Cheng7fae11b2011-12-14 02:11:42 +00003657 if (MI->isBundle()) {
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003658 unsigned Latency = 0;
Evan Cheng7fae11b2011-12-14 02:11:42 +00003659 MachineBasicBlock::const_instr_iterator I = MI;
3660 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
3661 while (++I != E && I->isInsideBundle()) {
3662 if (I->getOpcode() != ARM::t2IT)
3663 Latency += getInstrLatency(ItinData, I, PredCost);
3664 }
3665 return Latency;
3666 }
3667
Evan Cheng6cc775f2011-06-28 19:10:37 +00003668 const MCInstrDesc &MCID = MI->getDesc();
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003669 if (PredCost && (MCID.isCall() || MCID.hasImplicitDefOfPhysReg(ARM::CPSR))) {
Evan Chengdebf9c52010-11-03 00:45:17 +00003670 // When predicated, CPSR is an additional source operand for CPSR updating
3671 // instructions, this apparently increases their latencies.
3672 *PredCost = 1;
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003673 }
3674 // Be sure to call getStageLatency for an empty itinerary in case it has a
3675 // valid MinLatency property.
3676 if (!ItinData)
3677 return MI->mayLoad() ? 3 : 1;
3678
3679 unsigned Class = MCID.getSchedClass();
3680
3681 // For instructions with variable uops, use uops as latency.
Andrew Trick21cca972012-07-02 19:12:29 +00003682 if (!ItinData->isEmpty() && ItinData->getNumMicroOps(Class) < 0)
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003683 return getNumMicroOps(ItinData, MI);
Andrew Trick21cca972012-07-02 19:12:29 +00003684
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003685 // For the common case, fall back on the itinerary's latency.
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003686 unsigned Latency = ItinData->getStageLatency(Class);
3687
3688 // Adjust for dynamic def-side opcode variants not captured by the itinerary.
3689 unsigned DefAlign = MI->hasOneMemOperand()
3690 ? (*MI->memoperands_begin())->getAlignment() : 0;
3691 int Adj = adjustDefLatency(Subtarget, MI, &MCID, DefAlign);
3692 if (Adj >= 0 || (int)Latency > -Adj) {
3693 return Latency + Adj;
3694 }
3695 return Latency;
Evan Chengdebf9c52010-11-03 00:45:17 +00003696}
3697
3698int ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
3699 SDNode *Node) const {
3700 if (!Node->isMachineOpcode())
3701 return 1;
3702
3703 if (!ItinData || ItinData->isEmpty())
3704 return 1;
3705
3706 unsigned Opcode = Node->getMachineOpcode();
3707 switch (Opcode) {
3708 default:
3709 return ItinData->getStageLatency(get(Opcode).getSchedClass());
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003710 case ARM::VLDMQIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003711 case ARM::VSTMQIA:
Evan Chengdebf9c52010-11-03 00:45:17 +00003712 return 2;
Eric Christopherb006fc92010-11-18 19:40:05 +00003713 }
Evan Chengdebf9c52010-11-03 00:45:17 +00003714}
3715
Evan Cheng63c76082010-10-19 18:58:51 +00003716bool ARMBaseInstrInfo::
3717hasHighOperandLatency(const InstrItineraryData *ItinData,
3718 const MachineRegisterInfo *MRI,
3719 const MachineInstr *DefMI, unsigned DefIdx,
3720 const MachineInstr *UseMI, unsigned UseIdx) const {
3721 unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
3722 unsigned UDomain = UseMI->getDesc().TSFlags & ARMII::DomainMask;
3723 if (Subtarget.isCortexA8() &&
3724 (DDomain == ARMII::DomainVFP || UDomain == ARMII::DomainVFP))
3725 // CortexA8 VFP instructions are not pipelined.
3726 return true;
3727
3728 // Hoist VFP / NEON instructions with 4 or higher latency.
Andrew Trickde2109e2013-06-15 04:49:57 +00003729 int Latency = computeOperandLatency(ItinData, DefMI, DefIdx, UseMI, UseIdx);
Andrew Trick3564bdf2012-06-07 19:41:58 +00003730 if (Latency < 0)
3731 Latency = getInstrLatency(ItinData, DefMI);
Evan Cheng63c76082010-10-19 18:58:51 +00003732 if (Latency <= 3)
3733 return false;
3734 return DDomain == ARMII::DomainVFP || DDomain == ARMII::DomainNEON ||
3735 UDomain == ARMII::DomainVFP || UDomain == ARMII::DomainNEON;
3736}
Evan Chenge96b8d72010-10-26 02:08:50 +00003737
3738bool ARMBaseInstrInfo::
3739hasLowDefLatency(const InstrItineraryData *ItinData,
3740 const MachineInstr *DefMI, unsigned DefIdx) const {
3741 if (!ItinData || ItinData->isEmpty())
3742 return false;
3743
3744 unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
3745 if (DDomain == ARMII::DomainGeneral) {
3746 unsigned DefClass = DefMI->getDesc().getSchedClass();
3747 int DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
3748 return (DefCycle != -1 && DefCycle <= 2);
3749 }
3750 return false;
3751}
Evan Cheng62c7b5b2010-12-05 22:04:16 +00003752
Andrew Trick924123a2011-09-21 02:20:46 +00003753bool ARMBaseInstrInfo::verifyInstruction(const MachineInstr *MI,
3754 StringRef &ErrInfo) const {
3755 if (convertAddSubFlagsOpcode(MI->getOpcode())) {
3756 ErrInfo = "Pseudo flag setting opcodes only exist in Selection DAG";
3757 return false;
3758 }
3759 return true;
3760}
3761
Evan Cheng62c7b5b2010-12-05 22:04:16 +00003762bool
3763ARMBaseInstrInfo::isFpMLxInstruction(unsigned Opcode, unsigned &MulOpc,
3764 unsigned &AddSubOpc,
3765 bool &NegAcc, bool &HasLane) const {
3766 DenseMap<unsigned, unsigned>::const_iterator I = MLxEntryMap.find(Opcode);
3767 if (I == MLxEntryMap.end())
3768 return false;
3769
3770 const ARM_MLxEntry &Entry = ARM_MLxTable[I->second];
3771 MulOpc = Entry.MulOpc;
3772 AddSubOpc = Entry.AddSubOpc;
3773 NegAcc = Entry.NegAcc;
3774 HasLane = Entry.HasLane;
3775 return true;
3776}
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003777
3778//===----------------------------------------------------------------------===//
3779// Execution domains.
3780//===----------------------------------------------------------------------===//
3781//
3782// Some instructions go down the NEON pipeline, some go down the VFP pipeline,
3783// and some can go down both. The vmov instructions go down the VFP pipeline,
3784// but they can be changed to vorr equivalents that are executed by the NEON
3785// pipeline.
3786//
3787// We use the following execution domain numbering:
3788//
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003789enum ARMExeDomain {
3790 ExeGeneric = 0,
3791 ExeVFP = 1,
3792 ExeNEON = 2
3793};
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003794//
3795// Also see ARMInstrFormats.td and Domain* enums in ARMBaseInfo.h
3796//
3797std::pair<uint16_t, uint16_t>
3798ARMBaseInstrInfo::getExecutionDomain(const MachineInstr *MI) const {
Tim Northoverf6618152012-08-17 11:32:52 +00003799 // VMOVD, VMOVRS and VMOVSR are VFP instructions, but can be changed to NEON
3800 // if they are not predicated.
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003801 if (MI->getOpcode() == ARM::VMOVD && !isPredicated(MI))
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003802 return std::make_pair(ExeVFP, (1<<ExeVFP) | (1<<ExeNEON));
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003803
Silviu Barangadc453362013-03-27 12:38:44 +00003804 // CortexA9 is particularly picky about mixing the two and wants these
Tim Northoverf6618152012-08-17 11:32:52 +00003805 // converted.
Silviu Barangadc453362013-03-27 12:38:44 +00003806 if (Subtarget.isCortexA9() && !isPredicated(MI) &&
Tim Northoverf6618152012-08-17 11:32:52 +00003807 (MI->getOpcode() == ARM::VMOVRS ||
Tim Northoverca9f3842012-08-30 10:17:45 +00003808 MI->getOpcode() == ARM::VMOVSR ||
3809 MI->getOpcode() == ARM::VMOVS))
Tim Northoverf6618152012-08-17 11:32:52 +00003810 return std::make_pair(ExeVFP, (1<<ExeVFP) | (1<<ExeNEON));
3811
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003812 // No other instructions can be swizzled, so just determine their domain.
3813 unsigned Domain = MI->getDesc().TSFlags & ARMII::DomainMask;
3814
3815 if (Domain & ARMII::DomainNEON)
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003816 return std::make_pair(ExeNEON, 0);
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003817
3818 // Certain instructions can go either way on Cortex-A8.
3819 // Treat them as NEON instructions.
3820 if ((Domain & ARMII::DomainNEONA8) && Subtarget.isCortexA8())
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003821 return std::make_pair(ExeNEON, 0);
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003822
3823 if (Domain & ARMII::DomainVFP)
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003824 return std::make_pair(ExeVFP, 0);
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003825
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003826 return std::make_pair(ExeGeneric, 0);
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003827}
3828
Tim Northover771f1602012-08-29 16:36:07 +00003829static unsigned getCorrespondingDRegAndLane(const TargetRegisterInfo *TRI,
3830 unsigned SReg, unsigned &Lane) {
3831 unsigned DReg = TRI->getMatchingSuperReg(SReg, ARM::ssub_0, &ARM::DPRRegClass);
3832 Lane = 0;
3833
3834 if (DReg != ARM::NoRegister)
3835 return DReg;
3836
3837 Lane = 1;
3838 DReg = TRI->getMatchingSuperReg(SReg, ARM::ssub_1, &ARM::DPRRegClass);
3839
3840 assert(DReg && "S-register with no D super-register?");
3841 return DReg;
3842}
3843
Andrew Trickd9296ec2012-10-10 05:43:01 +00003844/// getImplicitSPRUseForDPRUse - Given a use of a DPR register and lane,
James Molloyea052562012-09-18 08:31:15 +00003845/// set ImplicitSReg to a register number that must be marked as implicit-use or
3846/// zero if no register needs to be defined as implicit-use.
3847///
3848/// If the function cannot determine if an SPR should be marked implicit use or
3849/// not, it returns false.
3850///
3851/// This function handles cases where an instruction is being modified from taking
Andrew Trickd9296ec2012-10-10 05:43:01 +00003852/// an SPR to a DPR[Lane]. A use of the DPR is being added, which may conflict
James Molloyea052562012-09-18 08:31:15 +00003853/// with an earlier def of an SPR corresponding to DPR[Lane^1] (i.e. the other
3854/// lane of the DPR).
3855///
3856/// If the other SPR is defined, an implicit-use of it should be added. Else,
3857/// (including the case where the DPR itself is defined), it should not.
Andrew Trickd9296ec2012-10-10 05:43:01 +00003858///
James Molloyea052562012-09-18 08:31:15 +00003859static bool getImplicitSPRUseForDPRUse(const TargetRegisterInfo *TRI,
3860 MachineInstr *MI,
3861 unsigned DReg, unsigned Lane,
3862 unsigned &ImplicitSReg) {
3863 // If the DPR is defined or used already, the other SPR lane will be chained
3864 // correctly, so there is nothing to be done.
3865 if (MI->definesRegister(DReg, TRI) || MI->readsRegister(DReg, TRI)) {
3866 ImplicitSReg = 0;
3867 return true;
3868 }
3869
3870 // Otherwise we need to go searching to see if the SPR is set explicitly.
3871 ImplicitSReg = TRI->getSubReg(DReg,
3872 (Lane & 1) ? ARM::ssub_0 : ARM::ssub_1);
3873 MachineBasicBlock::LivenessQueryResult LQR =
3874 MI->getParent()->computeRegisterLiveness(TRI, ImplicitSReg, MI);
3875
3876 if (LQR == MachineBasicBlock::LQR_Live)
3877 return true;
3878 else if (LQR == MachineBasicBlock::LQR_Unknown)
3879 return false;
3880
3881 // If the register is known not to be live, there is no need to add an
3882 // implicit-use.
3883 ImplicitSReg = 0;
3884 return true;
3885}
Tim Northover771f1602012-08-29 16:36:07 +00003886
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003887void
3888ARMBaseInstrInfo::setExecutionDomain(MachineInstr *MI, unsigned Domain) const {
Tim Northoverf6618152012-08-17 11:32:52 +00003889 unsigned DstReg, SrcReg, DReg;
3890 unsigned Lane;
Jakob Stoklund Olesenb159b5f2012-12-19 21:31:56 +00003891 MachineInstrBuilder MIB(*MI->getParent()->getParent(), MI);
Tim Northoverf6618152012-08-17 11:32:52 +00003892 const TargetRegisterInfo *TRI = &getRegisterInfo();
Tim Northoverf6618152012-08-17 11:32:52 +00003893 switch (MI->getOpcode()) {
3894 default:
3895 llvm_unreachable("cannot handle opcode!");
3896 break;
3897 case ARM::VMOVD:
3898 if (Domain != ExeNEON)
3899 break;
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003900
Tim Northoverf6618152012-08-17 11:32:52 +00003901 // Zap the predicate operands.
3902 assert(!isPredicated(MI) && "Cannot predicate a VORRd");
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003903
Tim Northover771f1602012-08-29 16:36:07 +00003904 // Source instruction is %DDst = VMOVD %DSrc, 14, %noreg (; implicits)
3905 DstReg = MI->getOperand(0).getReg();
3906 SrcReg = MI->getOperand(1).getReg();
3907
3908 for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
3909 MI->RemoveOperand(i-1);
3910
3911 // Change to a %DDst = VORRd %DSrc, %DSrc, 14, %noreg (; implicits)
Tim Northoverf6618152012-08-17 11:32:52 +00003912 MI->setDesc(get(ARM::VORRd));
Tim Northover771f1602012-08-29 16:36:07 +00003913 AddDefaultPred(MIB.addReg(DstReg, RegState::Define)
3914 .addReg(SrcReg)
3915 .addReg(SrcReg));
Tim Northoverf6618152012-08-17 11:32:52 +00003916 break;
3917 case ARM::VMOVRS:
3918 if (Domain != ExeNEON)
3919 break;
3920 assert(!isPredicated(MI) && "Cannot predicate a VGETLN");
3921
Tim Northover771f1602012-08-29 16:36:07 +00003922 // Source instruction is %RDst = VMOVRS %SSrc, 14, %noreg (; implicits)
Tim Northoverf6618152012-08-17 11:32:52 +00003923 DstReg = MI->getOperand(0).getReg();
3924 SrcReg = MI->getOperand(1).getReg();
3925
Tim Northover771f1602012-08-29 16:36:07 +00003926 for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
3927 MI->RemoveOperand(i-1);
Tim Northoverf6618152012-08-17 11:32:52 +00003928
Tim Northover771f1602012-08-29 16:36:07 +00003929 DReg = getCorrespondingDRegAndLane(TRI, SrcReg, Lane);
Tim Northoverf6618152012-08-17 11:32:52 +00003930
Tim Northover771f1602012-08-29 16:36:07 +00003931 // Convert to %RDst = VGETLNi32 %DSrc, Lane, 14, %noreg (; imps)
3932 // Note that DSrc has been widened and the other lane may be undef, which
3933 // contaminates the entire register.
Tim Northoverf6618152012-08-17 11:32:52 +00003934 MI->setDesc(get(ARM::VGETLNi32));
Tim Northover771f1602012-08-29 16:36:07 +00003935 AddDefaultPred(MIB.addReg(DstReg, RegState::Define)
3936 .addReg(DReg, RegState::Undef)
3937 .addImm(Lane));
Tim Northoverf6618152012-08-17 11:32:52 +00003938
Tim Northover771f1602012-08-29 16:36:07 +00003939 // The old source should be an implicit use, otherwise we might think it
3940 // was dead before here.
Tim Northoverf6618152012-08-17 11:32:52 +00003941 MIB.addReg(SrcReg, RegState::Implicit);
Tim Northoverf6618152012-08-17 11:32:52 +00003942 break;
James Molloyea052562012-09-18 08:31:15 +00003943 case ARM::VMOVSR: {
Tim Northoverf6618152012-08-17 11:32:52 +00003944 if (Domain != ExeNEON)
3945 break;
3946 assert(!isPredicated(MI) && "Cannot predicate a VSETLN");
3947
Tim Northover771f1602012-08-29 16:36:07 +00003948 // Source instruction is %SDst = VMOVSR %RSrc, 14, %noreg (; implicits)
Tim Northoverf6618152012-08-17 11:32:52 +00003949 DstReg = MI->getOperand(0).getReg();
3950 SrcReg = MI->getOperand(1).getReg();
Tim Northoverf6618152012-08-17 11:32:52 +00003951
Tim Northover771f1602012-08-29 16:36:07 +00003952 DReg = getCorrespondingDRegAndLane(TRI, DstReg, Lane);
3953
James Molloyea052562012-09-18 08:31:15 +00003954 unsigned ImplicitSReg;
3955 if (!getImplicitSPRUseForDPRUse(TRI, MI, DReg, Lane, ImplicitSReg))
3956 break;
Tim Northover726d32c2012-09-01 18:07:29 +00003957
Tim Northoverc8d867d2012-09-05 18:37:53 +00003958 for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
3959 MI->RemoveOperand(i-1);
3960
Tim Northover771f1602012-08-29 16:36:07 +00003961 // Convert to %DDst = VSETLNi32 %DDst, %RSrc, Lane, 14, %noreg (; imps)
3962 // Again DDst may be undefined at the beginning of this instruction.
Tim Northoverf6618152012-08-17 11:32:52 +00003963 MI->setDesc(get(ARM::VSETLNi32));
Tim Northover726d32c2012-09-01 18:07:29 +00003964 MIB.addReg(DReg, RegState::Define)
3965 .addReg(DReg, getUndefRegState(!MI->readsRegister(DReg, TRI)))
3966 .addReg(SrcReg)
3967 .addImm(Lane);
3968 AddDefaultPred(MIB);
Tim Northoverca9f3842012-08-30 10:17:45 +00003969
Tim Northover726d32c2012-09-01 18:07:29 +00003970 // The narrower destination must be marked as set to keep previous chains
3971 // in place.
Tim Northover771f1602012-08-29 16:36:07 +00003972 MIB.addReg(DstReg, RegState::Define | RegState::Implicit);
James Molloyea052562012-09-18 08:31:15 +00003973 if (ImplicitSReg != 0)
3974 MIB.addReg(ImplicitSReg, RegState::Implicit);
Tim Northoverf6618152012-08-17 11:32:52 +00003975 break;
James Molloyea052562012-09-18 08:31:15 +00003976 }
Tim Northoverca9f3842012-08-30 10:17:45 +00003977 case ARM::VMOVS: {
3978 if (Domain != ExeNEON)
3979 break;
3980
3981 // Source instruction is %SDst = VMOVS %SSrc, 14, %noreg (; implicits)
3982 DstReg = MI->getOperand(0).getReg();
3983 SrcReg = MI->getOperand(1).getReg();
3984
Tim Northoverca9f3842012-08-30 10:17:45 +00003985 unsigned DstLane = 0, SrcLane = 0, DDst, DSrc;
3986 DDst = getCorrespondingDRegAndLane(TRI, DstReg, DstLane);
3987 DSrc = getCorrespondingDRegAndLane(TRI, SrcReg, SrcLane);
3988
James Molloyea052562012-09-18 08:31:15 +00003989 unsigned ImplicitSReg;
3990 if (!getImplicitSPRUseForDPRUse(TRI, MI, DSrc, SrcLane, ImplicitSReg))
3991 break;
Tim Northover726d32c2012-09-01 18:07:29 +00003992
Tim Northoverc8d867d2012-09-05 18:37:53 +00003993 for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
3994 MI->RemoveOperand(i-1);
3995
Tim Northoverca9f3842012-08-30 10:17:45 +00003996 if (DSrc == DDst) {
3997 // Destination can be:
3998 // %DDst = VDUPLN32d %DDst, Lane, 14, %noreg (; implicits)
3999 MI->setDesc(get(ARM::VDUPLN32d));
Tim Northover726d32c2012-09-01 18:07:29 +00004000 MIB.addReg(DDst, RegState::Define)
4001 .addReg(DDst, getUndefRegState(!MI->readsRegister(DDst, TRI)))
4002 .addImm(SrcLane);
4003 AddDefaultPred(MIB);
Tim Northoverca9f3842012-08-30 10:17:45 +00004004
4005 // Neither the source or the destination are naturally represented any
4006 // more, so add them in manually.
4007 MIB.addReg(DstReg, RegState::Implicit | RegState::Define);
4008 MIB.addReg(SrcReg, RegState::Implicit);
James Molloyea052562012-09-18 08:31:15 +00004009 if (ImplicitSReg != 0)
4010 MIB.addReg(ImplicitSReg, RegState::Implicit);
Tim Northoverca9f3842012-08-30 10:17:45 +00004011 break;
4012 }
4013
4014 // In general there's no single instruction that can perform an S <-> S
4015 // move in NEON space, but a pair of VEXT instructions *can* do the
4016 // job. It turns out that the VEXTs needed will only use DSrc once, with
4017 // the position based purely on the combination of lane-0 and lane-1
4018 // involved. For example
4019 // vmov s0, s2 -> vext.32 d0, d0, d1, #1 vext.32 d0, d0, d0, #1
4020 // vmov s1, s3 -> vext.32 d0, d1, d0, #1 vext.32 d0, d0, d0, #1
4021 // vmov s0, s3 -> vext.32 d0, d0, d0, #1 vext.32 d0, d1, d0, #1
4022 // vmov s1, s2 -> vext.32 d0, d0, d0, #1 vext.32 d0, d0, d1, #1
4023 //
4024 // Pattern of the MachineInstrs is:
4025 // %DDst = VEXTd32 %DSrc1, %DSrc2, Lane, 14, %noreg (;implicits)
4026 MachineInstrBuilder NewMIB;
4027 NewMIB = BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
4028 get(ARM::VEXTd32), DDst);
Tim Northover726d32c2012-09-01 18:07:29 +00004029
4030 // On the first instruction, both DSrc and DDst may be <undef> if present.
4031 // Specifically when the original instruction didn't have them as an
4032 // <imp-use>.
4033 unsigned CurReg = SrcLane == 1 && DstLane == 1 ? DSrc : DDst;
4034 bool CurUndef = !MI->readsRegister(CurReg, TRI);
4035 NewMIB.addReg(CurReg, getUndefRegState(CurUndef));
4036
4037 CurReg = SrcLane == 0 && DstLane == 0 ? DSrc : DDst;
4038 CurUndef = !MI->readsRegister(CurReg, TRI);
4039 NewMIB.addReg(CurReg, getUndefRegState(CurUndef));
4040
Tim Northoverca9f3842012-08-30 10:17:45 +00004041 NewMIB.addImm(1);
4042 AddDefaultPred(NewMIB);
4043
4044 if (SrcLane == DstLane)
4045 NewMIB.addReg(SrcReg, RegState::Implicit);
4046
4047 MI->setDesc(get(ARM::VEXTd32));
4048 MIB.addReg(DDst, RegState::Define);
Tim Northover726d32c2012-09-01 18:07:29 +00004049
4050 // On the second instruction, DDst has definitely been defined above, so
4051 // it is not <undef>. DSrc, if present, can be <undef> as above.
4052 CurReg = SrcLane == 1 && DstLane == 0 ? DSrc : DDst;
4053 CurUndef = CurReg == DSrc && !MI->readsRegister(CurReg, TRI);
4054 MIB.addReg(CurReg, getUndefRegState(CurUndef));
4055
4056 CurReg = SrcLane == 0 && DstLane == 1 ? DSrc : DDst;
4057 CurUndef = CurReg == DSrc && !MI->readsRegister(CurReg, TRI);
4058 MIB.addReg(CurReg, getUndefRegState(CurUndef));
4059
Tim Northoverca9f3842012-08-30 10:17:45 +00004060 MIB.addImm(1);
4061 AddDefaultPred(MIB);
4062
4063 if (SrcLane != DstLane)
4064 MIB.addReg(SrcReg, RegState::Implicit);
4065
4066 // As before, the original destination is no longer represented, add it
4067 // implicitly.
4068 MIB.addReg(DstReg, RegState::Define | RegState::Implicit);
James Molloyea052562012-09-18 08:31:15 +00004069 if (ImplicitSReg != 0)
4070 MIB.addReg(ImplicitSReg, RegState::Implicit);
Tim Northoverca9f3842012-08-30 10:17:45 +00004071 break;
4072 }
Tim Northoverf6618152012-08-17 11:32:52 +00004073 }
4074
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00004075}
Jim Grosbach617f84dd2012-02-28 23:53:30 +00004076
Bob Wilsone8a549c2012-09-29 21:43:49 +00004077//===----------------------------------------------------------------------===//
4078// Partial register updates
4079//===----------------------------------------------------------------------===//
4080//
4081// Swift renames NEON registers with 64-bit granularity. That means any
4082// instruction writing an S-reg implicitly reads the containing D-reg. The
4083// problem is mostly avoided by translating f32 operations to v2f32 operations
4084// on D-registers, but f32 loads are still a problem.
4085//
4086// These instructions can load an f32 into a NEON register:
4087//
4088// VLDRS - Only writes S, partial D update.
4089// VLD1LNd32 - Writes all D-regs, explicit partial D update, 2 uops.
4090// VLD1DUPd32 - Writes all D-regs, no partial reg update, 2 uops.
4091//
4092// FCONSTD can be used as a dependency-breaking instruction.
Bob Wilsone8a549c2012-09-29 21:43:49 +00004093unsigned ARMBaseInstrInfo::
4094getPartialRegUpdateClearance(const MachineInstr *MI,
4095 unsigned OpNum,
4096 const TargetRegisterInfo *TRI) const {
Silviu Barangadc453362013-03-27 12:38:44 +00004097 if (!SwiftPartialUpdateClearance ||
4098 !(Subtarget.isSwift() || Subtarget.isCortexA15()))
Bob Wilsone8a549c2012-09-29 21:43:49 +00004099 return 0;
4100
4101 assert(TRI && "Need TRI instance");
4102
4103 const MachineOperand &MO = MI->getOperand(OpNum);
4104 if (MO.readsReg())
4105 return 0;
4106 unsigned Reg = MO.getReg();
4107 int UseOp = -1;
4108
4109 switch(MI->getOpcode()) {
4110 // Normal instructions writing only an S-register.
4111 case ARM::VLDRS:
4112 case ARM::FCONSTS:
4113 case ARM::VMOVSR:
Bob Wilsone8a549c2012-09-29 21:43:49 +00004114 case ARM::VMOVv8i8:
4115 case ARM::VMOVv4i16:
4116 case ARM::VMOVv2i32:
4117 case ARM::VMOVv2f32:
4118 case ARM::VMOVv1i64:
4119 UseOp = MI->findRegisterUseOperandIdx(Reg, false, TRI);
4120 break;
4121
4122 // Explicitly reads the dependency.
4123 case ARM::VLD1LNd32:
Silviu Barangadc453362013-03-27 12:38:44 +00004124 UseOp = 3;
Bob Wilsone8a549c2012-09-29 21:43:49 +00004125 break;
4126 default:
4127 return 0;
4128 }
4129
4130 // If this instruction actually reads a value from Reg, there is no unwanted
4131 // dependency.
4132 if (UseOp != -1 && MI->getOperand(UseOp).readsReg())
4133 return 0;
4134
4135 // We must be able to clobber the whole D-reg.
4136 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
4137 // Virtual register must be a foo:ssub_0<def,undef> operand.
4138 if (!MO.getSubReg() || MI->readsVirtualRegister(Reg))
4139 return 0;
4140 } else if (ARM::SPRRegClass.contains(Reg)) {
4141 // Physical register: MI must define the full D-reg.
4142 unsigned DReg = TRI->getMatchingSuperReg(Reg, ARM::ssub_0,
4143 &ARM::DPRRegClass);
4144 if (!DReg || !MI->definesRegister(DReg, TRI))
4145 return 0;
4146 }
4147
4148 // MI has an unwanted D-register dependency.
4149 // Avoid defs in the previous N instructrions.
4150 return SwiftPartialUpdateClearance;
4151}
4152
4153// Break a partial register dependency after getPartialRegUpdateClearance
4154// returned non-zero.
4155void ARMBaseInstrInfo::
4156breakPartialRegDependency(MachineBasicBlock::iterator MI,
4157 unsigned OpNum,
4158 const TargetRegisterInfo *TRI) const {
4159 assert(MI && OpNum < MI->getDesc().getNumDefs() && "OpNum is not a def");
4160 assert(TRI && "Need TRI instance");
4161
4162 const MachineOperand &MO = MI->getOperand(OpNum);
4163 unsigned Reg = MO.getReg();
4164 assert(TargetRegisterInfo::isPhysicalRegister(Reg) &&
4165 "Can't break virtual register dependencies.");
4166 unsigned DReg = Reg;
4167
4168 // If MI defines an S-reg, find the corresponding D super-register.
4169 if (ARM::SPRRegClass.contains(Reg)) {
4170 DReg = ARM::D0 + (Reg - ARM::S0) / 2;
4171 assert(TRI->isSuperRegister(Reg, DReg) && "Register enums broken");
4172 }
4173
4174 assert(ARM::DPRRegClass.contains(DReg) && "Can only break D-reg deps");
4175 assert(MI->definesRegister(DReg, TRI) && "MI doesn't clobber full D-reg");
4176
4177 // FIXME: In some cases, VLDRS can be changed to a VLD1DUPd32 which defines
4178 // the full D-register by loading the same value to both lanes. The
4179 // instruction is micro-coded with 2 uops, so don't do this until we can
Robert Wilhelm516be562013-09-14 09:34:24 +00004180 // properly schedule micro-coded instructions. The dispatcher stalls cause
Bob Wilsone8a549c2012-09-29 21:43:49 +00004181 // too big regressions.
4182
4183 // Insert the dependency-breaking FCONSTD before MI.
4184 // 96 is the encoding of 0.5, but the actual value doesn't matter here.
4185 AddDefaultPred(BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
4186 get(ARM::FCONSTD), DReg).addImm(96));
4187 MI->addRegisterKilled(DReg, TRI, true);
4188}
4189
Jim Grosbach617f84dd2012-02-28 23:53:30 +00004190bool ARMBaseInstrInfo::hasNOP() const {
4191 return (Subtarget.getFeatureBits() & ARM::HasV6T2Ops) != 0;
4192}
Arnold Schwaighofer5dde1f32013-04-05 04:42:00 +00004193
4194bool ARMBaseInstrInfo::isSwiftFastImmShift(const MachineInstr *MI) const {
Arnold Schwaighofere9375922013-06-05 14:59:36 +00004195 if (MI->getNumOperands() < 4)
4196 return true;
Arnold Schwaighofer5dde1f32013-04-05 04:42:00 +00004197 unsigned ShOpVal = MI->getOperand(3).getImm();
4198 unsigned ShImm = ARM_AM::getSORegOffset(ShOpVal);
4199 // Swift supports faster shifts for: lsl 2, lsl 1, and lsr 1.
4200 if ((ShImm == 1 && ARM_AM::getSORegShOp(ShOpVal) == ARM_AM::lsr) ||
4201 ((ShImm == 1 || ShImm == 2) &&
4202 ARM_AM::getSORegShOp(ShOpVal) == ARM_AM::lsl))
4203 return true;
4204
4205 return false;
4206}