blob: 320f54a327e53233d4bb98b5c51ae77ae1e4a52a [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
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000040#define GET_INSTRINFO_CTOR_DTOR
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.
Lang Hames18c98a52013-12-20 20:27:51 +0000286 while (isPredicated(I) || I->isTerminator() || I->isDebugValue()) {
Lang Hames24864fe2013-07-19 23:52:47 +0000287
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()) {
Weiming Zhao0da5cc02013-11-13 18:29:49 +0000528 if (getSubtarget().restrictIT())
Joey Goulya5153cb2013-09-09 14:21:49 +0000529 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
Artyom Skrobov1a6cd1d2014-02-26 11:27:28 +0000538template<> bool IsCPSRDead<MachineInstr>(MachineInstr* MI) {
539 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
540 const MachineOperand &MO = MI->getOperand(i);
541 if (!MO.isReg() || MO.isUndef() || MO.isUse())
542 continue;
543 if (MO.getReg() != ARM::CPSR)
544 continue;
545 if (!MO.isDead())
546 return false;
547 }
548 // all definitions of CPSR are dead
549 return true;
550}
551
Chris Lattnerc831fac2009-12-03 06:58:32 +0000552/// FIXME: Works around a gcc miscompilation with -fstrict-aliasing.
Chandler Carruth82058c02010-10-23 08:40:19 +0000553LLVM_ATTRIBUTE_NOINLINE
David Goodwinaf7451b2009-07-08 16:09:28 +0000554static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
Chris Lattnerc831fac2009-12-03 06:58:32 +0000555 unsigned JTI);
David Goodwinaf7451b2009-07-08 16:09:28 +0000556static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
557 unsigned JTI) {
Chris Lattnerc831fac2009-12-03 06:58:32 +0000558 assert(JTI < JT.size());
David Goodwinaf7451b2009-07-08 16:09:28 +0000559 return JT[JTI].MBBs.size();
560}
561
562/// GetInstSize - Return the size of the specified MachineInstr.
563///
564unsigned ARMBaseInstrInfo::GetInstSizeInBytes(const MachineInstr *MI) const {
565 const MachineBasicBlock &MBB = *MI->getParent();
566 const MachineFunction *MF = MBB.getParent();
Chris Lattnere9a75a62009-08-22 21:43:10 +0000567 const MCAsmInfo *MAI = MF->getTarget().getMCAsmInfo();
David Goodwinaf7451b2009-07-08 16:09:28 +0000568
Evan Cheng6cc775f2011-06-28 19:10:37 +0000569 const MCInstrDesc &MCID = MI->getDesc();
Owen Anderson651b2302011-07-13 23:22:26 +0000570 if (MCID.getSize())
571 return MCID.getSize();
David Goodwinaf7451b2009-07-08 16:09:28 +0000572
David Blaikie46a9f012012-01-20 21:51:11 +0000573 // If this machine instr is an inline asm, measure it.
574 if (MI->getOpcode() == ARM::INLINEASM)
575 return getInlineAsmLength(MI->getOperand(0).getSymbolName(), *MAI);
576 if (MI->isLabel())
577 return 0;
578 unsigned Opc = MI->getOpcode();
579 switch (Opc) {
580 case TargetOpcode::IMPLICIT_DEF:
581 case TargetOpcode::KILL:
582 case TargetOpcode::PROLOG_LABEL:
583 case TargetOpcode::EH_LABEL:
584 case TargetOpcode::DBG_VALUE:
585 return 0;
586 case TargetOpcode::BUNDLE:
587 return getInstBundleLength(MI);
588 case ARM::MOVi16_ga_pcrel:
589 case ARM::MOVTi16_ga_pcrel:
590 case ARM::t2MOVi16_ga_pcrel:
591 case ARM::t2MOVTi16_ga_pcrel:
592 return 4;
593 case ARM::MOVi32imm:
594 case ARM::t2MOVi32imm:
595 return 8;
596 case ARM::CONSTPOOL_ENTRY:
597 // If this machine instr is a constant pool entry, its size is recorded as
598 // operand #2.
599 return MI->getOperand(2).getImm();
600 case ARM::Int_eh_sjlj_longjmp:
601 return 16;
602 case ARM::tInt_eh_sjlj_longjmp:
603 return 10;
604 case ARM::Int_eh_sjlj_setjmp:
605 case ARM::Int_eh_sjlj_setjmp_nofp:
606 return 20;
607 case ARM::tInt_eh_sjlj_setjmp:
608 case ARM::t2Int_eh_sjlj_setjmp:
609 case ARM::t2Int_eh_sjlj_setjmp_nofp:
610 return 12;
611 case ARM::BR_JTr:
612 case ARM::BR_JTm:
613 case ARM::BR_JTadd:
614 case ARM::tBR_JTr:
615 case ARM::t2BR_JT:
616 case ARM::t2TBB_JT:
617 case ARM::t2TBH_JT: {
618 // These are jumptable branches, i.e. a branch followed by an inlined
619 // jumptable. The size is 4 + 4 * number of entries. For TBB, each
620 // entry is one byte; TBH two byte each.
621 unsigned EntrySize = (Opc == ARM::t2TBB_JT)
622 ? 1 : ((Opc == ARM::t2TBH_JT) ? 2 : 4);
623 unsigned NumOps = MCID.getNumOperands();
624 MachineOperand JTOP =
625 MI->getOperand(NumOps - (MI->isPredicable() ? 3 : 2));
626 unsigned JTI = JTOP.getIndex();
627 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
628 assert(MJTI != 0);
629 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
630 assert(JTI < JT.size());
631 // Thumb instructions are 2 byte aligned, but JT entries are 4 byte
632 // 4 aligned. The assembler / linker may add 2 byte padding just before
633 // the JT entries. The size does not include this padding; the
634 // constant islands pass does separate bookkeeping for it.
635 // FIXME: If we know the size of the function is less than (1 << 16) *2
636 // bytes, we can use 16-bit entries instead. Then there won't be an
637 // alignment issue.
638 unsigned InstSize = (Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT) ? 2 : 4;
639 unsigned NumEntries = getNumJTEntries(JT, JTI);
640 if (Opc == ARM::t2TBB_JT && (NumEntries & 1))
641 // Make sure the instruction that follows TBB is 2-byte aligned.
642 // FIXME: Constant island pass should insert an "ALIGN" instruction
643 // instead.
644 ++NumEntries;
645 return NumEntries * EntrySize + InstSize;
646 }
647 default:
648 // Otherwise, pseudo-instruction sizes are zero.
649 return 0;
650 }
David Goodwinaf7451b2009-07-08 16:09:28 +0000651}
652
Evan Cheng7fae11b2011-12-14 02:11:42 +0000653unsigned ARMBaseInstrInfo::getInstBundleLength(const MachineInstr *MI) const {
654 unsigned Size = 0;
655 MachineBasicBlock::const_instr_iterator I = MI;
656 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
657 while (++I != E && I->isInsideBundle()) {
658 assert(!I->isBundle() && "No nested bundle!");
659 Size += GetInstSizeInBytes(&*I);
660 }
661 return Size;
662}
663
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000664void ARMBaseInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
665 MachineBasicBlock::iterator I, DebugLoc DL,
666 unsigned DestReg, unsigned SrcReg,
667 bool KillSrc) const {
668 bool GPRDest = ARM::GPRRegClass.contains(DestReg);
Jim Grosbach8815bef2013-10-22 02:29:35 +0000669 bool GPRSrc = ARM::GPRRegClass.contains(SrcReg);
Bob Wilson70aa8d02010-02-16 17:24:15 +0000670
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000671 if (GPRDest && GPRSrc) {
672 AddDefaultCC(AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::MOVr), DestReg)
Jim Grosbach8815bef2013-10-22 02:29:35 +0000673 .addReg(SrcReg, getKillRegState(KillSrc))));
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000674 return;
David Goodwine5b5d8f2009-08-05 21:02:22 +0000675 }
David Goodwinaf7451b2009-07-08 16:09:28 +0000676
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000677 bool SPRDest = ARM::SPRRegClass.contains(DestReg);
Jim Grosbach8815bef2013-10-22 02:29:35 +0000678 bool SPRSrc = ARM::SPRRegClass.contains(SrcReg);
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000679
Chad Rosierbe762512011-08-20 00:17:25 +0000680 unsigned Opc = 0;
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +0000681 if (SPRDest && SPRSrc)
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000682 Opc = ARM::VMOVS;
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +0000683 else if (GPRDest && SPRSrc)
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000684 Opc = ARM::VMOVRS;
685 else if (SPRDest && GPRSrc)
686 Opc = ARM::VMOVSR;
687 else if (ARM::DPRRegClass.contains(DestReg, SrcReg))
688 Opc = ARM::VMOVD;
689 else if (ARM::QPRRegClass.contains(DestReg, SrcReg))
Owen Anderson454e1c72011-07-15 18:46:47 +0000690 Opc = ARM::VORRq;
Jakob Stoklund Olesend7b33002010-07-11 06:33:54 +0000691
Chad Rosierbe762512011-08-20 00:17:25 +0000692 if (Opc) {
693 MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc), DestReg);
Owen Anderson454e1c72011-07-15 18:46:47 +0000694 MIB.addReg(SrcReg, getKillRegState(KillSrc));
Chad Rosierbe762512011-08-20 00:17:25 +0000695 if (Opc == ARM::VORRq)
696 MIB.addReg(SrcReg, getKillRegState(KillSrc));
Chad Rosier61f92ef2011-08-20 00:52:40 +0000697 AddDefaultPred(MIB);
Chad Rosierbe762512011-08-20 00:17:25 +0000698 return;
699 }
700
Jakob Stoklund Olesencaa6bd22012-03-29 21:10:40 +0000701 // Handle register classes that require multiple instructions.
702 unsigned BeginIdx = 0;
703 unsigned SubRegs = 0;
Andrew Trickb57e2252012-08-29 04:41:37 +0000704 int Spacing = 1;
Jakob Stoklund Olesencaa6bd22012-03-29 21:10:40 +0000705
706 // Use VORRq when possible.
Jim Grosbach8815bef2013-10-22 02:29:35 +0000707 if (ARM::QQPRRegClass.contains(DestReg, SrcReg)) {
708 Opc = ARM::VORRq;
709 BeginIdx = ARM::qsub_0;
710 SubRegs = 2;
711 } else if (ARM::QQQQPRRegClass.contains(DestReg, SrcReg)) {
712 Opc = ARM::VORRq;
713 BeginIdx = ARM::qsub_0;
714 SubRegs = 4;
Jakob Stoklund Olesencaa6bd22012-03-29 21:10:40 +0000715 // Fall back to VMOVD.
Jim Grosbach8815bef2013-10-22 02:29:35 +0000716 } else if (ARM::DPairRegClass.contains(DestReg, SrcReg)) {
717 Opc = ARM::VMOVD;
718 BeginIdx = ARM::dsub_0;
719 SubRegs = 2;
720 } else if (ARM::DTripleRegClass.contains(DestReg, SrcReg)) {
721 Opc = ARM::VMOVD;
722 BeginIdx = ARM::dsub_0;
723 SubRegs = 3;
724 } else if (ARM::DQuadRegClass.contains(DestReg, SrcReg)) {
725 Opc = ARM::VMOVD;
726 BeginIdx = ARM::dsub_0;
727 SubRegs = 4;
728 } else if (ARM::GPRPairRegClass.contains(DestReg, SrcReg)) {
Jim Grosbachdba14dd2013-10-22 02:29:37 +0000729 Opc = Subtarget.isThumb2() ? ARM::tMOVr : ARM::MOVr;
Jim Grosbach8815bef2013-10-22 02:29:35 +0000730 BeginIdx = ARM::gsub_0;
731 SubRegs = 2;
732 } else if (ARM::DPairSpcRegClass.contains(DestReg, SrcReg)) {
733 Opc = ARM::VMOVD;
734 BeginIdx = ARM::dsub_0;
735 SubRegs = 2;
736 Spacing = 2;
737 } else if (ARM::DTripleSpcRegClass.contains(DestReg, SrcReg)) {
738 Opc = ARM::VMOVD;
739 BeginIdx = ARM::dsub_0;
740 SubRegs = 3;
741 Spacing = 2;
742 } else if (ARM::DQuadSpcRegClass.contains(DestReg, SrcReg)) {
743 Opc = ARM::VMOVD;
744 BeginIdx = ARM::dsub_0;
745 SubRegs = 4;
746 Spacing = 2;
747 }
Jakob Stoklund Olesencaa6bd22012-03-29 21:10:40 +0000748
Andrew Trickb57e2252012-08-29 04:41:37 +0000749 assert(Opc && "Impossible reg-to-reg copy");
Jakob Stoklund Olesencaa6bd22012-03-29 21:10:40 +0000750
Andrew Trick4cc69492012-08-29 01:58:52 +0000751 const TargetRegisterInfo *TRI = &getRegisterInfo();
752 MachineInstrBuilder Mov;
Andrew Trickbd0073d2012-08-29 01:58:55 +0000753
754 // Copy register tuples backward when the first Dest reg overlaps with SrcReg.
755 if (TRI->regsOverlap(SrcReg, TRI->getSubReg(DestReg, BeginIdx))) {
Jim Grosbach8815bef2013-10-22 02:29:35 +0000756 BeginIdx = BeginIdx + ((SubRegs - 1) * Spacing);
Andrew Trickbd0073d2012-08-29 01:58:55 +0000757 Spacing = -Spacing;
758 }
759#ifndef NDEBUG
760 SmallSet<unsigned, 4> DstRegs;
761#endif
Andrew Trick4cc69492012-08-29 01:58:52 +0000762 for (unsigned i = 0; i != SubRegs; ++i) {
Jim Grosbach8815bef2013-10-22 02:29:35 +0000763 unsigned Dst = TRI->getSubReg(DestReg, BeginIdx + i * Spacing);
764 unsigned Src = TRI->getSubReg(SrcReg, BeginIdx + i * Spacing);
Andrew Trick4cc69492012-08-29 01:58:52 +0000765 assert(Dst && Src && "Bad sub-register");
Andrew Trickbd0073d2012-08-29 01:58:55 +0000766#ifndef NDEBUG
Andrew Trickbd0073d2012-08-29 01:58:55 +0000767 assert(!DstRegs.count(Src) && "destructive vector copy");
Andrew Trickb57e2252012-08-29 04:41:37 +0000768 DstRegs.insert(Dst);
Andrew Trickbd0073d2012-08-29 01:58:55 +0000769#endif
Jim Grosbach8815bef2013-10-22 02:29:35 +0000770 Mov = BuildMI(MBB, I, I->getDebugLoc(), get(Opc), Dst).addReg(Src);
Andrew Trick4cc69492012-08-29 01:58:52 +0000771 // VORR takes two source operands.
772 if (Opc == ARM::VORRq)
773 Mov.addReg(Src);
774 Mov = AddDefaultPred(Mov);
JF Bastien583db652013-07-12 23:33:03 +0000775 // MOVr can set CC.
776 if (Opc == ARM::MOVr)
777 Mov = AddDefaultCC(Mov);
Andrew Trick4cc69492012-08-29 01:58:52 +0000778 }
779 // Add implicit super-register defs and kills to the last instruction.
780 Mov->addRegisterDefined(DestReg, TRI);
781 if (KillSrc)
782 Mov->addRegisterKilled(SrcReg, TRI);
David Goodwinaf7451b2009-07-08 16:09:28 +0000783}
784
Tim Northover798697d2013-04-21 11:57:07 +0000785const MachineInstrBuilder &
786ARMBaseInstrInfo::AddDReg(MachineInstrBuilder &MIB, unsigned Reg,
787 unsigned SubIdx, unsigned State,
788 const TargetRegisterInfo *TRI) const {
Evan Chengddc93c72010-05-07 00:24:52 +0000789 if (!SubIdx)
790 return MIB.addReg(Reg, State);
791
792 if (TargetRegisterInfo::isPhysicalRegister(Reg))
793 return MIB.addReg(TRI->getSubReg(Reg, SubIdx), State);
794 return MIB.addReg(Reg, State, SubIdx);
795}
796
David Goodwinaf7451b2009-07-08 16:09:28 +0000797void ARMBaseInstrInfo::
798storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
799 unsigned SrcReg, bool isKill, int FI,
Evan Chengefb126a2010-05-06 19:06:44 +0000800 const TargetRegisterClass *RC,
801 const TargetRegisterInfo *TRI) const {
Chris Lattner6f306d72010-04-02 20:16:16 +0000802 DebugLoc DL;
David Goodwinaf7451b2009-07-08 16:09:28 +0000803 if (I != MBB.end()) DL = I->getDebugLoc();
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000804 MachineFunction &MF = *MBB.getParent();
805 MachineFrameInfo &MFI = *MF.getFrameInfo();
Jim Grosbacha15c3b72009-11-08 00:27:19 +0000806 unsigned Align = MFI.getObjectAlignment(FI);
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000807
808 MachineMemOperand *MMO =
Jay Foad465101b2011-11-15 07:34:52 +0000809 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
Chris Lattnere3d864b2010-09-21 04:39:43 +0000810 MachineMemOperand::MOStore,
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000811 MFI.getObjectSize(FI),
Jim Grosbacha15c3b72009-11-08 00:27:19 +0000812 Align);
David Goodwinaf7451b2009-07-08 16:09:28 +0000813
Owen Anderson732f82c2011-08-10 17:21:20 +0000814 switch (RC->getSize()) {
815 case 4:
816 if (ARM::GPRRegClass.hasSubClassEq(RC)) {
817 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::STRi12))
David Goodwinaf7451b2009-07-08 16:09:28 +0000818 .addReg(SrcReg, getKillRegState(isKill))
Jim Grosbach338de3e2010-10-27 23:12:14 +0000819 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000820 } else if (ARM::SPRRegClass.hasSubClassEq(RC)) {
821 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRS))
Evan Cheng9d768f42010-05-06 01:34:11 +0000822 .addReg(SrcReg, getKillRegState(isKill))
823 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000824 } else
825 llvm_unreachable("Unknown reg class!");
826 break;
827 case 8:
828 if (ARM::DPRRegClass.hasSubClassEq(RC)) {
829 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRD))
David Goodwinaf7451b2009-07-08 16:09:28 +0000830 .addReg(SrcReg, getKillRegState(isKill))
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000831 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Jakob Stoklund Olesene46a1042012-10-26 21:29:15 +0000832 } else if (ARM::GPRPairRegClass.hasSubClassEq(RC)) {
Tim Northover798697d2013-04-21 11:57:07 +0000833 if (Subtarget.hasV5TEOps()) {
834 MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(ARM::STRD));
835 AddDReg(MIB, SrcReg, ARM::gsub_0, getKillRegState(isKill), TRI);
836 AddDReg(MIB, SrcReg, ARM::gsub_1, 0, TRI);
837 MIB.addFrameIndex(FI).addReg(0).addImm(0).addMemOperand(MMO);
838
839 AddDefaultPred(MIB);
840 } else {
841 // Fallback to STM instruction, which has existed since the dawn of
842 // time.
843 MachineInstrBuilder MIB =
844 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::STMIA))
845 .addFrameIndex(FI).addMemOperand(MMO));
846 AddDReg(MIB, SrcReg, ARM::gsub_0, getKillRegState(isKill), TRI);
847 AddDReg(MIB, SrcReg, ARM::gsub_1, 0, TRI);
848 }
Owen Anderson732f82c2011-08-10 17:21:20 +0000849 } else
850 llvm_unreachable("Unknown reg class!");
851 break;
852 case 16:
Jakob Stoklund Olesen9e512122012-03-28 21:20:32 +0000853 if (ARM::DPairRegClass.hasSubClassEq(RC)) {
Jakob Stoklund Olesend110e2a2012-01-05 00:26:57 +0000854 // Use aligned spills if the stack can be realigned.
855 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
Jim Grosbachc988e0c2012-03-05 19:33:30 +0000856 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1q64))
Bob Wilson4c1ca292010-07-06 21:26:18 +0000857 .addFrameIndex(FI).addImm(16)
Evan Cheng9de7cfe2010-05-13 01:12:06 +0000858 .addReg(SrcReg, getKillRegState(isKill))
859 .addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000860 } else {
861 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMQIA))
Evan Cheng9de7cfe2010-05-13 01:12:06 +0000862 .addReg(SrcReg, getKillRegState(isKill))
863 .addFrameIndex(FI)
Evan Cheng9de7cfe2010-05-13 01:12:06 +0000864 .addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000865 }
866 } else
867 llvm_unreachable("Unknown reg class!");
868 break;
Anton Korobeynikov218aaf62012-08-04 13:16:12 +0000869 case 24:
870 if (ARM::DTripleRegClass.hasSubClassEq(RC)) {
871 // Use aligned spills if the stack can be realigned.
872 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
873 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1d64TPseudo))
874 .addFrameIndex(FI).addImm(16)
875 .addReg(SrcReg, getKillRegState(isKill))
876 .addMemOperand(MMO));
877 } else {
878 MachineInstrBuilder MIB =
879 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
880 .addFrameIndex(FI))
881 .addMemOperand(MMO);
882 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
883 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
884 AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
885 }
886 } else
887 llvm_unreachable("Unknown reg class!");
888 break;
Owen Anderson732f82c2011-08-10 17:21:20 +0000889 case 32:
Anton Korobeynikov218aaf62012-08-04 13:16:12 +0000890 if (ARM::QQPRRegClass.hasSubClassEq(RC) || ARM::DQuadRegClass.hasSubClassEq(RC)) {
Owen Anderson732f82c2011-08-10 17:21:20 +0000891 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
892 // FIXME: It's possible to only store part of the QQ register if the
893 // spilled def has a sub-register index.
894 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1d64QPseudo))
Bob Wilsonb1e9d4b2010-09-15 01:48:05 +0000895 .addFrameIndex(FI).addImm(16)
896 .addReg(SrcReg, getKillRegState(isKill))
897 .addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +0000898 } else {
899 MachineInstrBuilder MIB =
900 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
Bill Wendlinga68e3a52010-11-16 01:16:36 +0000901 .addFrameIndex(FI))
Owen Anderson732f82c2011-08-10 17:21:20 +0000902 .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 AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
907 }
908 } else
909 llvm_unreachable("Unknown reg class!");
910 break;
911 case 64:
912 if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
913 MachineInstrBuilder MIB =
914 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
915 .addFrameIndex(FI))
916 .addMemOperand(MMO);
917 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
918 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
919 MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
920 MIB = AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
921 MIB = AddDReg(MIB, SrcReg, ARM::dsub_4, 0, TRI);
922 MIB = AddDReg(MIB, SrcReg, ARM::dsub_5, 0, TRI);
923 MIB = AddDReg(MIB, SrcReg, ARM::dsub_6, 0, TRI);
924 AddDReg(MIB, SrcReg, ARM::dsub_7, 0, TRI);
925 } else
926 llvm_unreachable("Unknown reg class!");
927 break;
928 default:
929 llvm_unreachable("Unknown reg class!");
David Goodwinaf7451b2009-07-08 16:09:28 +0000930 }
931}
932
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +0000933unsigned
934ARMBaseInstrInfo::isStoreToStackSlot(const MachineInstr *MI,
935 int &FrameIndex) const {
936 switch (MI->getOpcode()) {
937 default: break;
Jim Grosbach338de3e2010-10-27 23:12:14 +0000938 case ARM::STRrs:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +0000939 case ARM::t2STRs: // FIXME: don't use t2STRs to access frame.
940 if (MI->getOperand(1).isFI() &&
941 MI->getOperand(2).isReg() &&
942 MI->getOperand(3).isImm() &&
943 MI->getOperand(2).getReg() == 0 &&
944 MI->getOperand(3).getImm() == 0) {
945 FrameIndex = MI->getOperand(1).getIndex();
946 return MI->getOperand(0).getReg();
947 }
948 break;
Jim Grosbach338de3e2010-10-27 23:12:14 +0000949 case ARM::STRi12:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +0000950 case ARM::t2STRi12:
Jim Grosbachd86f34d2011-06-29 20:26:39 +0000951 case ARM::tSTRspi:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +0000952 case ARM::VSTRD:
953 case ARM::VSTRS:
954 if (MI->getOperand(1).isFI() &&
955 MI->getOperand(2).isImm() &&
956 MI->getOperand(2).getImm() == 0) {
957 FrameIndex = MI->getOperand(1).getIndex();
958 return MI->getOperand(0).getReg();
959 }
960 break;
Jim Grosbachc988e0c2012-03-05 19:33:30 +0000961 case ARM::VST1q64:
Anton Korobeynikov3a4fdfe2012-08-04 13:22:14 +0000962 case ARM::VST1d64TPseudo:
963 case ARM::VST1d64QPseudo:
Jakob Stoklund Olesen33005d12010-09-15 17:27:09 +0000964 if (MI->getOperand(0).isFI() &&
965 MI->getOperand(2).getSubReg() == 0) {
966 FrameIndex = MI->getOperand(0).getIndex();
967 return MI->getOperand(2).getReg();
968 }
Jakob Stoklund Olesenb929c712010-09-15 21:40:09 +0000969 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +0000970 case ARM::VSTMQIA:
Jakob Stoklund Olesen33005d12010-09-15 17:27:09 +0000971 if (MI->getOperand(1).isFI() &&
Jakob Stoklund Olesen33005d12010-09-15 17:27:09 +0000972 MI->getOperand(0).getSubReg() == 0) {
973 FrameIndex = MI->getOperand(1).getIndex();
974 return MI->getOperand(0).getReg();
975 }
976 break;
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +0000977 }
978
979 return 0;
980}
981
Jakob Stoklund Olesenc04a66b2011-08-08 21:45:32 +0000982unsigned ARMBaseInstrInfo::isStoreToStackSlotPostFE(const MachineInstr *MI,
983 int &FrameIndex) const {
984 const MachineMemOperand *Dummy;
Evan Cheng7f8e5632011-12-07 07:15:52 +0000985 return MI->mayStore() && hasStoreToStackSlot(MI, Dummy, FrameIndex);
Jakob Stoklund Olesenc04a66b2011-08-08 21:45:32 +0000986}
987
David Goodwinaf7451b2009-07-08 16:09:28 +0000988void ARMBaseInstrInfo::
989loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
990 unsigned DestReg, int FI,
Evan Chengefb126a2010-05-06 19:06:44 +0000991 const TargetRegisterClass *RC,
992 const TargetRegisterInfo *TRI) const {
Chris Lattner6f306d72010-04-02 20:16:16 +0000993 DebugLoc DL;
David Goodwinaf7451b2009-07-08 16:09:28 +0000994 if (I != MBB.end()) DL = I->getDebugLoc();
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000995 MachineFunction &MF = *MBB.getParent();
996 MachineFrameInfo &MFI = *MF.getFrameInfo();
Jim Grosbacha15c3b72009-11-08 00:27:19 +0000997 unsigned Align = MFI.getObjectAlignment(FI);
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +0000998 MachineMemOperand *MMO =
Chris Lattnere3d864b2010-09-21 04:39:43 +0000999 MF.getMachineMemOperand(
Jay Foad465101b2011-11-15 07:34:52 +00001000 MachinePointerInfo::getFixedStack(FI),
Chris Lattnere3d864b2010-09-21 04:39:43 +00001001 MachineMemOperand::MOLoad,
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +00001002 MFI.getObjectSize(FI),
Jim Grosbacha15c3b72009-11-08 00:27:19 +00001003 Align);
David Goodwinaf7451b2009-07-08 16:09:28 +00001004
Owen Anderson732f82c2011-08-10 17:21:20 +00001005 switch (RC->getSize()) {
1006 case 4:
1007 if (ARM::GPRRegClass.hasSubClassEq(RC)) {
1008 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::LDRi12), DestReg)
1009 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Bob Wilson37f106e2010-02-16 22:01:59 +00001010
Owen Anderson732f82c2011-08-10 17:21:20 +00001011 } else if (ARM::SPRRegClass.hasSubClassEq(RC)) {
1012 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRS), DestReg)
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00001013 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +00001014 } else
1015 llvm_unreachable("Unknown reg class!");
Bob Wilsona92e41a2010-06-18 21:32:42 +00001016 break;
Owen Anderson732f82c2011-08-10 17:21:20 +00001017 case 8:
1018 if (ARM::DPRRegClass.hasSubClassEq(RC)) {
1019 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRD), DestReg)
Evan Cheng9d768f42010-05-06 01:34:11 +00001020 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Jakob Stoklund Olesene46a1042012-10-26 21:29:15 +00001021 } else if (ARM::GPRPairRegClass.hasSubClassEq(RC)) {
Tim Northover798697d2013-04-21 11:57:07 +00001022 MachineInstrBuilder MIB;
1023
1024 if (Subtarget.hasV5TEOps()) {
1025 MIB = BuildMI(MBB, I, DL, get(ARM::LDRD));
1026 AddDReg(MIB, DestReg, ARM::gsub_0, RegState::DefineNoRead, TRI);
1027 AddDReg(MIB, DestReg, ARM::gsub_1, RegState::DefineNoRead, TRI);
1028 MIB.addFrameIndex(FI).addReg(0).addImm(0).addMemOperand(MMO);
1029
1030 AddDefaultPred(MIB);
1031 } else {
1032 // Fallback to LDM instruction, which has existed since the dawn of
1033 // time.
1034 MIB = AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::LDMIA))
1035 .addFrameIndex(FI).addMemOperand(MMO));
1036 MIB = AddDReg(MIB, DestReg, ARM::gsub_0, RegState::DefineNoRead, TRI);
1037 MIB = AddDReg(MIB, DestReg, ARM::gsub_1, RegState::DefineNoRead, TRI);
1038 }
1039
Jakob Stoklund Olesene46a1042012-10-26 21:29:15 +00001040 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1041 MIB.addReg(DestReg, RegState::ImplicitDefine);
Owen Anderson732f82c2011-08-10 17:21:20 +00001042 } else
1043 llvm_unreachable("Unknown reg class!");
Bob Wilsona92e41a2010-06-18 21:32:42 +00001044 break;
Owen Anderson732f82c2011-08-10 17:21:20 +00001045 case 16:
Jakob Stoklund Olesen9e512122012-03-28 21:20:32 +00001046 if (ARM::DPairRegClass.hasSubClassEq(RC)) {
Jakob Stoklund Olesend110e2a2012-01-05 00:26:57 +00001047 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
Jim Grosbachc988e0c2012-03-05 19:33:30 +00001048 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1q64), DestReg)
Bob Wilson4c1ca292010-07-06 21:26:18 +00001049 .addFrameIndex(FI).addImm(16)
Evan Cheng9de7cfe2010-05-13 01:12:06 +00001050 .addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +00001051 } else {
1052 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMQIA), DestReg)
1053 .addFrameIndex(FI)
1054 .addMemOperand(MMO));
1055 }
1056 } else
1057 llvm_unreachable("Unknown reg class!");
Bob Wilsona92e41a2010-06-18 21:32:42 +00001058 break;
Anton Korobeynikov218aaf62012-08-04 13:16:12 +00001059 case 24:
1060 if (ARM::DTripleRegClass.hasSubClassEq(RC)) {
1061 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
1062 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1d64TPseudo), DestReg)
1063 .addFrameIndex(FI).addImm(16)
1064 .addMemOperand(MMO));
1065 } else {
1066 MachineInstrBuilder MIB =
1067 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
1068 .addFrameIndex(FI)
1069 .addMemOperand(MMO));
1070 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
1071 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
1072 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
1073 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1074 MIB.addReg(DestReg, RegState::ImplicitDefine);
1075 }
1076 } else
1077 llvm_unreachable("Unknown reg class!");
1078 break;
1079 case 32:
1080 if (ARM::QQPRRegClass.hasSubClassEq(RC) || ARM::DQuadRegClass.hasSubClassEq(RC)) {
Owen Anderson732f82c2011-08-10 17:21:20 +00001081 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
1082 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1d64QPseudo), DestReg)
Bob Wilsonb1e9d4b2010-09-15 01:48:05 +00001083 .addFrameIndex(FI).addImm(16)
1084 .addMemOperand(MMO));
Owen Anderson732f82c2011-08-10 17:21:20 +00001085 } else {
1086 MachineInstrBuilder MIB =
Bill Wendlinga68e3a52010-11-16 01:16:36 +00001087 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
1088 .addFrameIndex(FI))
Owen Anderson732f82c2011-08-10 17:21:20 +00001089 .addMemOperand(MMO);
Jakob Stoklund Olesenf729cea2012-03-04 18:40:30 +00001090 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
1091 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
1092 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
1093 MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::DefineNoRead, TRI);
Jakob Stoklund Olesend9b427e2012-03-06 02:48:17 +00001094 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1095 MIB.addReg(DestReg, RegState::ImplicitDefine);
Owen Anderson732f82c2011-08-10 17:21:20 +00001096 }
1097 } else
1098 llvm_unreachable("Unknown reg class!");
1099 break;
1100 case 64:
1101 if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
1102 MachineInstrBuilder MIB =
1103 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
1104 .addFrameIndex(FI))
1105 .addMemOperand(MMO);
Jakob Stoklund Olesenf729cea2012-03-04 18:40:30 +00001106 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
1107 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
1108 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
1109 MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::DefineNoRead, TRI);
1110 MIB = AddDReg(MIB, DestReg, ARM::dsub_4, RegState::DefineNoRead, TRI);
1111 MIB = AddDReg(MIB, DestReg, ARM::dsub_5, RegState::DefineNoRead, TRI);
1112 MIB = AddDReg(MIB, DestReg, ARM::dsub_6, RegState::DefineNoRead, TRI);
1113 MIB = AddDReg(MIB, DestReg, ARM::dsub_7, RegState::DefineNoRead, TRI);
Jakob Stoklund Olesend9b427e2012-03-06 02:48:17 +00001114 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1115 MIB.addReg(DestReg, RegState::ImplicitDefine);
Owen Anderson732f82c2011-08-10 17:21:20 +00001116 } else
1117 llvm_unreachable("Unknown reg class!");
Bob Wilsona92e41a2010-06-18 21:32:42 +00001118 break;
Bob Wilsona92e41a2010-06-18 21:32:42 +00001119 default:
1120 llvm_unreachable("Unknown regclass!");
David Goodwinaf7451b2009-07-08 16:09:28 +00001121 }
1122}
1123
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +00001124unsigned
1125ARMBaseInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
1126 int &FrameIndex) const {
1127 switch (MI->getOpcode()) {
1128 default: break;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00001129 case ARM::LDRrs:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +00001130 case ARM::t2LDRs: // FIXME: don't use t2LDRs to access frame.
1131 if (MI->getOperand(1).isFI() &&
1132 MI->getOperand(2).isReg() &&
1133 MI->getOperand(3).isImm() &&
1134 MI->getOperand(2).getReg() == 0 &&
1135 MI->getOperand(3).getImm() == 0) {
1136 FrameIndex = MI->getOperand(1).getIndex();
1137 return MI->getOperand(0).getReg();
1138 }
1139 break;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00001140 case ARM::LDRi12:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +00001141 case ARM::t2LDRi12:
Jim Grosbachd86f34d2011-06-29 20:26:39 +00001142 case ARM::tLDRspi:
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +00001143 case ARM::VLDRD:
1144 case ARM::VLDRS:
1145 if (MI->getOperand(1).isFI() &&
1146 MI->getOperand(2).isImm() &&
1147 MI->getOperand(2).getImm() == 0) {
1148 FrameIndex = MI->getOperand(1).getIndex();
1149 return MI->getOperand(0).getReg();
1150 }
1151 break;
Jim Grosbachc988e0c2012-03-05 19:33:30 +00001152 case ARM::VLD1q64:
Anton Korobeynikov3a4fdfe2012-08-04 13:22:14 +00001153 case ARM::VLD1d64TPseudo:
1154 case ARM::VLD1d64QPseudo:
Jakob Stoklund Olesen33005d12010-09-15 17:27:09 +00001155 if (MI->getOperand(1).isFI() &&
1156 MI->getOperand(0).getSubReg() == 0) {
1157 FrameIndex = MI->getOperand(1).getIndex();
1158 return MI->getOperand(0).getReg();
1159 }
1160 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00001161 case ARM::VLDMQIA:
Jakob Stoklund Olesen44857a32010-09-15 21:40:11 +00001162 if (MI->getOperand(1).isFI() &&
Jakob Stoklund Olesen44857a32010-09-15 21:40:11 +00001163 MI->getOperand(0).getSubReg() == 0) {
1164 FrameIndex = MI->getOperand(1).getIndex();
1165 return MI->getOperand(0).getReg();
1166 }
1167 break;
Jakob Stoklund Olesen11f5be32010-09-15 16:36:26 +00001168 }
1169
1170 return 0;
1171}
1172
Jakob Stoklund Olesenc04a66b2011-08-08 21:45:32 +00001173unsigned ARMBaseInstrInfo::isLoadFromStackSlotPostFE(const MachineInstr *MI,
1174 int &FrameIndex) const {
1175 const MachineMemOperand *Dummy;
Evan Cheng7f8e5632011-12-07 07:15:52 +00001176 return MI->mayLoad() && hasLoadFromStackSlot(MI, Dummy, FrameIndex);
Jakob Stoklund Olesenc04a66b2011-08-08 21:45:32 +00001177}
1178
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +00001179bool ARMBaseInstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const{
1180 // This hook gets to expand COPY instructions before they become
1181 // copyPhysReg() calls. Look for VMOVS instructions that can legally be
1182 // widened to VMOVD. We prefer the VMOVD when possible because it may be
1183 // changed into a VORR that can go down the NEON pipeline.
Silviu Baranga82dd6ac2013-03-15 18:28:25 +00001184 if (!WidenVMOVS || !MI->isCopy() || Subtarget.isCortexA15())
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +00001185 return false;
1186
1187 // Look for a copy between even S-registers. That is where we keep floats
1188 // when using NEON v2f32 instructions for f32 arithmetic.
1189 unsigned DstRegS = MI->getOperand(0).getReg();
1190 unsigned SrcRegS = MI->getOperand(1).getReg();
1191 if (!ARM::SPRRegClass.contains(DstRegS, SrcRegS))
1192 return false;
1193
1194 const TargetRegisterInfo *TRI = &getRegisterInfo();
1195 unsigned DstRegD = TRI->getMatchingSuperReg(DstRegS, ARM::ssub_0,
1196 &ARM::DPRRegClass);
1197 unsigned SrcRegD = TRI->getMatchingSuperReg(SrcRegS, ARM::ssub_0,
1198 &ARM::DPRRegClass);
1199 if (!DstRegD || !SrcRegD)
1200 return false;
1201
1202 // We want to widen this into a DstRegD = VMOVD SrcRegD copy. This is only
1203 // legal if the COPY already defines the full DstRegD, and it isn't a
1204 // sub-register insertion.
1205 if (!MI->definesRegister(DstRegD, TRI) || MI->readsRegister(DstRegD, TRI))
1206 return false;
1207
Jakob Stoklund Olesen39c31a72011-10-12 00:06:23 +00001208 // A dead copy shouldn't show up here, but reject it just in case.
1209 if (MI->getOperand(0).isDead())
1210 return false;
1211
1212 // All clear, widen the COPY.
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +00001213 DEBUG(dbgs() << "widening: " << *MI);
Jakob Stoklund Olesenb159b5f2012-12-19 21:31:56 +00001214 MachineInstrBuilder MIB(*MI->getParent()->getParent(), MI);
Jakob Stoklund Olesen39c31a72011-10-12 00:06:23 +00001215
1216 // Get rid of the old <imp-def> of DstRegD. Leave it if it defines a Q-reg
1217 // or some other super-register.
1218 int ImpDefIdx = MI->findRegisterDefOperandIdx(DstRegD);
1219 if (ImpDefIdx != -1)
1220 MI->RemoveOperand(ImpDefIdx);
1221
1222 // Change the opcode and operands.
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +00001223 MI->setDesc(get(ARM::VMOVD));
1224 MI->getOperand(0).setReg(DstRegD);
1225 MI->getOperand(1).setReg(SrcRegD);
Jakob Stoklund Olesenb159b5f2012-12-19 21:31:56 +00001226 AddDefaultPred(MIB);
Jakob Stoklund Olesen39c31a72011-10-12 00:06:23 +00001227
1228 // We are now reading SrcRegD instead of SrcRegS. This may upset the
1229 // register scavenger and machine verifier, so we need to indicate that we
1230 // are reading an undefined value from SrcRegD, but a proper value from
1231 // SrcRegS.
1232 MI->getOperand(1).setIsUndef();
Jakob Stoklund Olesenb159b5f2012-12-19 21:31:56 +00001233 MIB.addReg(SrcRegS, RegState::Implicit);
Jakob Stoklund Olesen39c31a72011-10-12 00:06:23 +00001234
1235 // SrcRegD may actually contain an unrelated value in the ssub_1
1236 // sub-register. Don't kill it. Only kill the ssub_0 sub-register.
1237 if (MI->getOperand(1).isKill()) {
1238 MI->getOperand(1).setIsKill(false);
1239 MI->addRegisterKilled(SrcRegS, TRI, true);
1240 }
1241
Jakob Stoklund Olesenda7c0f82011-10-11 00:59:06 +00001242 DEBUG(dbgs() << "replaced by: " << *MI);
1243 return true;
1244}
1245
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001246/// Create a copy of a const pool value. Update CPI to the new index and return
1247/// the label UID.
1248static unsigned duplicateCPV(MachineFunction &MF, unsigned &CPI) {
1249 MachineConstantPool *MCP = MF.getConstantPool();
1250 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1251
1252 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI];
1253 assert(MCPE.isMachineConstantPoolEntry() &&
1254 "Expecting a machine constantpool entry!");
1255 ARMConstantPoolValue *ACPV =
1256 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
1257
Evan Chengdfce83c2011-01-17 08:03:18 +00001258 unsigned PCLabelId = AFI->createPICLabelUId();
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001259 ARMConstantPoolValue *NewCPV = 0;
Oliver Stannard8f859942014-01-29 16:01:24 +00001260
Jim Grosbach1f77ee52010-09-10 21:38:22 +00001261 // FIXME: The below assumes PIC relocation model and that the function
1262 // is Thumb mode (t1 or t2). PCAdjustment would be 8 for ARM mode PIC, and
1263 // zero for non-PIC in ARM or Thumb. The callers are all of thumb LDR
1264 // instructions, so that's probably OK, but is PIC always correct when
1265 // we get here?
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001266 if (ACPV->isGlobalValue())
Bill Wendling7753d662011-10-01 08:00:54 +00001267 NewCPV = ARMConstantPoolConstant::
1268 Create(cast<ARMConstantPoolConstant>(ACPV)->getGV(), PCLabelId,
1269 ARMCP::CPValue, 4);
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001270 else if (ACPV->isExtSymbol())
Bill Wendlingc214cb02011-10-01 08:58:29 +00001271 NewCPV = ARMConstantPoolSymbol::
1272 Create(MF.getFunction()->getContext(),
1273 cast<ARMConstantPoolSymbol>(ACPV)->getSymbol(), PCLabelId, 4);
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001274 else if (ACPV->isBlockAddress())
Bill Wendling7753d662011-10-01 08:00:54 +00001275 NewCPV = ARMConstantPoolConstant::
1276 Create(cast<ARMConstantPoolConstant>(ACPV)->getBlockAddress(), PCLabelId,
1277 ARMCP::CPBlockAddress, 4);
Jim Grosbach1f77ee52010-09-10 21:38:22 +00001278 else if (ACPV->isLSDA())
Bill Wendling7753d662011-10-01 08:00:54 +00001279 NewCPV = ARMConstantPoolConstant::Create(MF.getFunction(), PCLabelId,
1280 ARMCP::CPLSDA, 4);
Bill Wendling69bc3de2011-09-29 23:50:42 +00001281 else if (ACPV->isMachineBasicBlock())
Bill Wendling4a4772f2011-10-01 09:30:42 +00001282 NewCPV = ARMConstantPoolMBB::
1283 Create(MF.getFunction()->getContext(),
1284 cast<ARMConstantPoolMBB>(ACPV)->getMBB(), PCLabelId, 4);
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001285 else
1286 llvm_unreachable("Unexpected ARM constantpool value type!!");
1287 CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlignment());
1288 return PCLabelId;
1289}
1290
Evan Chengfe864422009-11-08 00:15:23 +00001291void ARMBaseInstrInfo::
1292reMaterialize(MachineBasicBlock &MBB,
1293 MachineBasicBlock::iterator I,
1294 unsigned DestReg, unsigned SubIdx,
Evan Cheng6ad7da92009-11-14 02:55:43 +00001295 const MachineInstr *Orig,
Jakob Stoklund Olesena8ad9772010-06-02 22:47:25 +00001296 const TargetRegisterInfo &TRI) const {
Evan Chengfe864422009-11-08 00:15:23 +00001297 unsigned Opcode = Orig->getOpcode();
1298 switch (Opcode) {
1299 default: {
1300 MachineInstr *MI = MBB.getParent()->CloneMachineInstr(Orig);
Jakob Stoklund Olesena8ad9772010-06-02 22:47:25 +00001301 MI->substituteRegister(Orig->getOperand(0).getReg(), DestReg, SubIdx, TRI);
Evan Chengfe864422009-11-08 00:15:23 +00001302 MBB.insert(I, MI);
1303 break;
1304 }
1305 case ARM::tLDRpci_pic:
1306 case ARM::t2LDRpci_pic: {
1307 MachineFunction &MF = *MBB.getParent();
Evan Chengfe864422009-11-08 00:15:23 +00001308 unsigned CPI = Orig->getOperand(1).getIndex();
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001309 unsigned PCLabelId = duplicateCPV(MF, CPI);
Evan Chengfe864422009-11-08 00:15:23 +00001310 MachineInstrBuilder MIB = BuildMI(MBB, I, Orig->getDebugLoc(), get(Opcode),
1311 DestReg)
1312 .addConstantPoolIndex(CPI).addImm(PCLabelId);
Chris Lattner1d0c2572011-04-29 05:24:29 +00001313 MIB->setMemRefs(Orig->memoperands_begin(), Orig->memoperands_end());
Evan Chengfe864422009-11-08 00:15:23 +00001314 break;
1315 }
1316 }
Evan Chengfe864422009-11-08 00:15:23 +00001317}
1318
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001319MachineInstr *
1320ARMBaseInstrInfo::duplicate(MachineInstr *Orig, MachineFunction &MF) const {
Jakob Stoklund Olesen9de596e2012-11-28 02:35:17 +00001321 MachineInstr *MI = TargetInstrInfo::duplicate(Orig, MF);
Jakob Stoklund Olesen29a64c92010-01-06 23:47:07 +00001322 switch(Orig->getOpcode()) {
1323 case ARM::tLDRpci_pic:
1324 case ARM::t2LDRpci_pic: {
1325 unsigned CPI = Orig->getOperand(1).getIndex();
1326 unsigned PCLabelId = duplicateCPV(MF, CPI);
1327 Orig->getOperand(1).setIndex(CPI);
1328 Orig->getOperand(2).setImm(PCLabelId);
1329 break;
1330 }
1331 }
1332 return MI;
1333}
1334
Evan Chenge9c46c22010-03-03 01:44:33 +00001335bool ARMBaseInstrInfo::produceSameValue(const MachineInstr *MI0,
Evan Chengb8b0ad82011-01-20 08:34:58 +00001336 const MachineInstr *MI1,
1337 const MachineRegisterInfo *MRI) const {
Evan Chenga8e8a7c2009-11-07 04:04:34 +00001338 int Opcode = MI0->getOpcode();
Evan Cheng028ccbfc2011-01-20 23:55:07 +00001339 if (Opcode == ARM::t2LDRpci ||
Evan Chengbbd50b02009-11-20 02:10:27 +00001340 Opcode == ARM::t2LDRpci_pic ||
1341 Opcode == ARM::tLDRpci ||
Evan Chengb8b0ad82011-01-20 08:34:58 +00001342 Opcode == ARM::tLDRpci_pic ||
Tim Northover72360d22013-12-02 10:35:41 +00001343 Opcode == ARM::LDRLIT_ga_pcrel ||
1344 Opcode == ARM::LDRLIT_ga_pcrel_ldr ||
1345 Opcode == ARM::tLDRLIT_ga_pcrel ||
Evan Cheng2f2435d2011-01-21 18:55:51 +00001346 Opcode == ARM::MOV_ga_pcrel ||
1347 Opcode == ARM::MOV_ga_pcrel_ldr ||
Evan Cheng2f2435d2011-01-21 18:55:51 +00001348 Opcode == ARM::t2MOV_ga_pcrel) {
Evan Chenga8e8a7c2009-11-07 04:04:34 +00001349 if (MI1->getOpcode() != Opcode)
1350 return false;
1351 if (MI0->getNumOperands() != MI1->getNumOperands())
1352 return false;
1353
1354 const MachineOperand &MO0 = MI0->getOperand(1);
1355 const MachineOperand &MO1 = MI1->getOperand(1);
1356 if (MO0.getOffset() != MO1.getOffset())
1357 return false;
1358
Tim Northover72360d22013-12-02 10:35:41 +00001359 if (Opcode == ARM::LDRLIT_ga_pcrel ||
1360 Opcode == ARM::LDRLIT_ga_pcrel_ldr ||
1361 Opcode == ARM::tLDRLIT_ga_pcrel ||
1362 Opcode == ARM::MOV_ga_pcrel ||
Evan Cheng2f2435d2011-01-21 18:55:51 +00001363 Opcode == ARM::MOV_ga_pcrel_ldr ||
Evan Cheng2f2435d2011-01-21 18:55:51 +00001364 Opcode == ARM::t2MOV_ga_pcrel)
Evan Chengb8b0ad82011-01-20 08:34:58 +00001365 // Ignore the PC labels.
1366 return MO0.getGlobal() == MO1.getGlobal();
1367
Evan Chenga8e8a7c2009-11-07 04:04:34 +00001368 const MachineFunction *MF = MI0->getParent()->getParent();
1369 const MachineConstantPool *MCP = MF->getConstantPool();
1370 int CPI0 = MO0.getIndex();
1371 int CPI1 = MO1.getIndex();
1372 const MachineConstantPoolEntry &MCPE0 = MCP->getConstants()[CPI0];
1373 const MachineConstantPoolEntry &MCPE1 = MCP->getConstants()[CPI1];
Evan Chengf098bf12011-03-24 06:20:03 +00001374 bool isARMCP0 = MCPE0.isMachineConstantPoolEntry();
1375 bool isARMCP1 = MCPE1.isMachineConstantPoolEntry();
1376 if (isARMCP0 && isARMCP1) {
1377 ARMConstantPoolValue *ACPV0 =
1378 static_cast<ARMConstantPoolValue*>(MCPE0.Val.MachineCPVal);
1379 ARMConstantPoolValue *ACPV1 =
1380 static_cast<ARMConstantPoolValue*>(MCPE1.Val.MachineCPVal);
1381 return ACPV0->hasSameValue(ACPV1);
1382 } else if (!isARMCP0 && !isARMCP1) {
1383 return MCPE0.Val.ConstVal == MCPE1.Val.ConstVal;
1384 }
1385 return false;
Evan Chengb8b0ad82011-01-20 08:34:58 +00001386 } else if (Opcode == ARM::PICLDR) {
1387 if (MI1->getOpcode() != Opcode)
1388 return false;
1389 if (MI0->getNumOperands() != MI1->getNumOperands())
1390 return false;
1391
1392 unsigned Addr0 = MI0->getOperand(1).getReg();
1393 unsigned Addr1 = MI1->getOperand(1).getReg();
1394 if (Addr0 != Addr1) {
1395 if (!MRI ||
1396 !TargetRegisterInfo::isVirtualRegister(Addr0) ||
1397 !TargetRegisterInfo::isVirtualRegister(Addr1))
1398 return false;
1399
1400 // This assumes SSA form.
1401 MachineInstr *Def0 = MRI->getVRegDef(Addr0);
1402 MachineInstr *Def1 = MRI->getVRegDef(Addr1);
1403 // Check if the loaded value, e.g. a constantpool of a global address, are
1404 // the same.
1405 if (!produceSameValue(Def0, Def1, MRI))
1406 return false;
1407 }
1408
1409 for (unsigned i = 3, e = MI0->getNumOperands(); i != e; ++i) {
1410 // %vreg12<def> = PICLDR %vreg11, 0, pred:14, pred:%noreg
1411 const MachineOperand &MO0 = MI0->getOperand(i);
1412 const MachineOperand &MO1 = MI1->getOperand(i);
1413 if (!MO0.isIdenticalTo(MO1))
1414 return false;
1415 }
1416 return true;
Evan Chenga8e8a7c2009-11-07 04:04:34 +00001417 }
1418
Evan Chenge9c46c22010-03-03 01:44:33 +00001419 return MI0->isIdenticalTo(MI1, MachineInstr::IgnoreVRegDefs);
Evan Chenga8e8a7c2009-11-07 04:04:34 +00001420}
1421
Bill Wendlingf4707472010-06-23 23:00:16 +00001422/// areLoadsFromSameBasePtr - This is used by the pre-regalloc scheduler to
1423/// determine if two loads are loading from the same base address. It should
1424/// only return true if the base pointers are the same and the only differences
1425/// between the two addresses is the offset. It also returns the offsets by
1426/// reference.
Andrew Tricka7714a02012-11-12 19:40:10 +00001427///
1428/// FIXME: remove this in favor of the MachineInstr interface once pre-RA-sched
1429/// is permanently disabled.
Bill Wendlingf4707472010-06-23 23:00:16 +00001430bool ARMBaseInstrInfo::areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
1431 int64_t &Offset1,
1432 int64_t &Offset2) const {
1433 // Don't worry about Thumb: just ARM and Thumb2.
1434 if (Subtarget.isThumb1Only()) return false;
1435
1436 if (!Load1->isMachineOpcode() || !Load2->isMachineOpcode())
1437 return false;
1438
1439 switch (Load1->getMachineOpcode()) {
1440 default:
1441 return false;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00001442 case ARM::LDRi12:
Jim Grosbach5a7c7152010-10-27 00:19:44 +00001443 case ARM::LDRBi12:
Bill Wendlingf4707472010-06-23 23:00:16 +00001444 case ARM::LDRD:
1445 case ARM::LDRH:
1446 case ARM::LDRSB:
1447 case ARM::LDRSH:
1448 case ARM::VLDRD:
1449 case ARM::VLDRS:
1450 case ARM::t2LDRi8:
Renato Golinb184cd92013-08-14 16:35:29 +00001451 case ARM::t2LDRBi8:
Bill Wendlingf4707472010-06-23 23:00:16 +00001452 case ARM::t2LDRDi8:
1453 case ARM::t2LDRSHi8:
1454 case ARM::t2LDRi12:
Renato Golinb184cd92013-08-14 16:35:29 +00001455 case ARM::t2LDRBi12:
Bill Wendlingf4707472010-06-23 23:00:16 +00001456 case ARM::t2LDRSHi12:
1457 break;
1458 }
1459
1460 switch (Load2->getMachineOpcode()) {
1461 default:
1462 return false;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00001463 case ARM::LDRi12:
Jim Grosbach5a7c7152010-10-27 00:19:44 +00001464 case ARM::LDRBi12:
Bill Wendlingf4707472010-06-23 23:00:16 +00001465 case ARM::LDRD:
1466 case ARM::LDRH:
1467 case ARM::LDRSB:
1468 case ARM::LDRSH:
1469 case ARM::VLDRD:
1470 case ARM::VLDRS:
1471 case ARM::t2LDRi8:
Renato Golinb184cd92013-08-14 16:35:29 +00001472 case ARM::t2LDRBi8:
Bill Wendlingf4707472010-06-23 23:00:16 +00001473 case ARM::t2LDRSHi8:
1474 case ARM::t2LDRi12:
Renato Golinb184cd92013-08-14 16:35:29 +00001475 case ARM::t2LDRBi12:
Bill Wendlingf4707472010-06-23 23:00:16 +00001476 case ARM::t2LDRSHi12:
1477 break;
1478 }
1479
1480 // Check if base addresses and chain operands match.
1481 if (Load1->getOperand(0) != Load2->getOperand(0) ||
1482 Load1->getOperand(4) != Load2->getOperand(4))
1483 return false;
1484
1485 // Index should be Reg0.
1486 if (Load1->getOperand(3) != Load2->getOperand(3))
1487 return false;
1488
1489 // Determine the offsets.
1490 if (isa<ConstantSDNode>(Load1->getOperand(1)) &&
1491 isa<ConstantSDNode>(Load2->getOperand(1))) {
1492 Offset1 = cast<ConstantSDNode>(Load1->getOperand(1))->getSExtValue();
1493 Offset2 = cast<ConstantSDNode>(Load2->getOperand(1))->getSExtValue();
1494 return true;
1495 }
1496
1497 return false;
1498}
1499
1500/// shouldScheduleLoadsNear - This is a used by the pre-regalloc scheduler to
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00001501/// determine (in conjunction with areLoadsFromSameBasePtr) if two loads should
Bill Wendlingf4707472010-06-23 23:00:16 +00001502/// be scheduled togther. On some targets if two loads are loading from
1503/// addresses in the same cache line, it's better if they are scheduled
1504/// together. This function takes two integers that represent the load offsets
1505/// from the common base address. It returns true if it decides it's desirable
1506/// to schedule the two loads together. "NumLoads" is the number of loads that
1507/// have already been scheduled after Load1.
Andrew Tricka7714a02012-11-12 19:40:10 +00001508///
1509/// FIXME: remove this in favor of the MachineInstr interface once pre-RA-sched
1510/// is permanently disabled.
Bill Wendlingf4707472010-06-23 23:00:16 +00001511bool ARMBaseInstrInfo::shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
1512 int64_t Offset1, int64_t Offset2,
1513 unsigned NumLoads) const {
1514 // Don't worry about Thumb: just ARM and Thumb2.
1515 if (Subtarget.isThumb1Only()) return false;
1516
1517 assert(Offset2 > Offset1);
1518
1519 if ((Offset2 - Offset1) / 8 > 64)
1520 return false;
1521
Renato Golinb184cd92013-08-14 16:35:29 +00001522 // Check if the machine opcodes are different. If they are different
1523 // then we consider them to not be of the same base address,
1524 // EXCEPT in the case of Thumb2 byte loads where one is LDRBi8 and the other LDRBi12.
1525 // In this case, they are considered to be the same because they are different
1526 // encoding forms of the same basic instruction.
1527 if ((Load1->getMachineOpcode() != Load2->getMachineOpcode()) &&
1528 !((Load1->getMachineOpcode() == ARM::t2LDRBi8 &&
1529 Load2->getMachineOpcode() == ARM::t2LDRBi12) ||
1530 (Load1->getMachineOpcode() == ARM::t2LDRBi12 &&
1531 Load2->getMachineOpcode() == ARM::t2LDRBi8)))
Bill Wendlingf4707472010-06-23 23:00:16 +00001532 return false; // FIXME: overly conservative?
1533
1534 // Four loads in a row should be sufficient.
1535 if (NumLoads >= 3)
1536 return false;
1537
1538 return true;
1539}
1540
Evan Cheng2d51c7c2010-06-18 23:09:54 +00001541bool ARMBaseInstrInfo::isSchedulingBoundary(const MachineInstr *MI,
1542 const MachineBasicBlock *MBB,
1543 const MachineFunction &MF) const {
Jim Grosbachba3ece62010-06-25 18:43:14 +00001544 // Debug info is never a scheduling boundary. It's necessary to be explicit
1545 // due to the special treatment of IT instructions below, otherwise a
1546 // dbg_value followed by an IT will result in the IT instruction being
1547 // considered a scheduling hazard, which is wrong. It should be the actual
1548 // instruction preceding the dbg_value instruction(s), just like it is
1549 // when debug info is not present.
1550 if (MI->isDebugValue())
1551 return false;
1552
Evan Cheng2d51c7c2010-06-18 23:09:54 +00001553 // Terminators and labels can't be scheduled around.
Evan Cheng7f8e5632011-12-07 07:15:52 +00001554 if (MI->isTerminator() || MI->isLabel())
Evan Cheng2d51c7c2010-06-18 23:09:54 +00001555 return true;
1556
1557 // Treat the start of the IT block as a scheduling boundary, but schedule
1558 // t2IT along with all instructions following it.
1559 // FIXME: This is a big hammer. But the alternative is to add all potential
1560 // true and anti dependencies to IT block instructions as implicit operands
1561 // to the t2IT instruction. The added compile time and complexity does not
1562 // seem worth it.
1563 MachineBasicBlock::const_iterator I = MI;
Jim Grosbachba3ece62010-06-25 18:43:14 +00001564 // Make sure to skip any dbg_value instructions
1565 while (++I != MBB->end() && I->isDebugValue())
1566 ;
1567 if (I != MBB->end() && I->getOpcode() == ARM::t2IT)
Evan Cheng2d51c7c2010-06-18 23:09:54 +00001568 return true;
1569
1570 // Don't attempt to schedule around any instruction that defines
1571 // a stack-oriented pointer, as it's unlikely to be profitable. This
1572 // saves compile time, because it doesn't require every single
1573 // stack slot reference to depend on the instruction that does the
1574 // modification.
Jakob Stoklund Olesen6909faa2012-02-21 23:47:43 +00001575 // Calls don't actually change the stack pointer, even if they have imp-defs.
Jakob Stoklund Olesen5f37f1c2012-02-22 01:07:19 +00001576 // No ARM calling conventions change the stack pointer. (X86 calling
1577 // conventions sometimes do).
Jakob Stoklund Olesen6909faa2012-02-21 23:47:43 +00001578 if (!MI->isCall() && MI->definesRegister(ARM::SP))
Evan Cheng2d51c7c2010-06-18 23:09:54 +00001579 return true;
1580
1581 return false;
1582}
1583
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001584bool ARMBaseInstrInfo::
1585isProfitableToIfCvt(MachineBasicBlock &MBB,
1586 unsigned NumCycles, unsigned ExtraPredCycles,
1587 const BranchProbability &Probability) const {
Cameron Zwarich80018502011-04-13 06:39:16 +00001588 if (!NumCycles)
Evan Cheng02b184d2010-06-25 22:42:03 +00001589 return false;
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00001590
Owen Anderson88af7d02010-09-28 18:32:13 +00001591 // Attempt to estimate the relative costs of predication versus branching.
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001592 unsigned UnpredCost = Probability.getNumerator() * NumCycles;
1593 UnpredCost /= Probability.getDenominator();
1594 UnpredCost += 1; // The branch itself
1595 UnpredCost += Subtarget.getMispredictionPenalty() / 10;
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00001596
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001597 return (NumCycles + ExtraPredCycles) <= UnpredCost;
Evan Cheng02b184d2010-06-25 22:42:03 +00001598}
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00001599
Evan Cheng02b184d2010-06-25 22:42:03 +00001600bool ARMBaseInstrInfo::
Evan Chengdebf9c52010-11-03 00:45:17 +00001601isProfitableToIfCvt(MachineBasicBlock &TMBB,
1602 unsigned TCycles, unsigned TExtra,
1603 MachineBasicBlock &FMBB,
1604 unsigned FCycles, unsigned FExtra,
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001605 const BranchProbability &Probability) const {
Evan Chengdebf9c52010-11-03 00:45:17 +00001606 if (!TCycles || !FCycles)
Owen Anderson88af7d02010-09-28 18:32:13 +00001607 return false;
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00001608
Owen Anderson88af7d02010-09-28 18:32:13 +00001609 // Attempt to estimate the relative costs of predication versus branching.
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001610 unsigned TUnpredCost = Probability.getNumerator() * TCycles;
1611 TUnpredCost /= Probability.getDenominator();
Andrew Trick3f1fdf12011-09-21 02:17:37 +00001612
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001613 uint32_t Comp = Probability.getDenominator() - Probability.getNumerator();
1614 unsigned FUnpredCost = Comp * FCycles;
1615 FUnpredCost /= Probability.getDenominator();
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00001616
Jakub Staszak9b07c0a2011-07-10 02:58:07 +00001617 unsigned UnpredCost = TUnpredCost + FUnpredCost;
1618 UnpredCost += 1; // The branch itself
1619 UnpredCost += Subtarget.getMispredictionPenalty() / 10;
1620
1621 return (TCycles + FCycles + TExtra + FExtra) <= UnpredCost;
Evan Cheng02b184d2010-06-25 22:42:03 +00001622}
1623
Bob Wilsone8a549c2012-09-29 21:43:49 +00001624bool
1625ARMBaseInstrInfo::isProfitableToUnpredicate(MachineBasicBlock &TMBB,
1626 MachineBasicBlock &FMBB) const {
1627 // Reduce false anti-dependencies to let Swift's out-of-order execution
1628 // engine do its thing.
1629 return Subtarget.isSwift();
1630}
1631
Evan Cheng2aa91cc2009-08-08 03:20:32 +00001632/// getInstrPredicate - If instruction is predicated, returns its predicate
1633/// condition, otherwise returns AL. It also returns the condition code
1634/// register by reference.
Evan Cheng83e0d482009-09-28 09:14:39 +00001635ARMCC::CondCodes
1636llvm::getInstrPredicate(const MachineInstr *MI, unsigned &PredReg) {
Evan Cheng2aa91cc2009-08-08 03:20:32 +00001637 int PIdx = MI->findFirstPredOperandIdx();
1638 if (PIdx == -1) {
1639 PredReg = 0;
1640 return ARMCC::AL;
1641 }
1642
1643 PredReg = MI->getOperand(PIdx+1).getReg();
1644 return (ARMCC::CondCodes)MI->getOperand(PIdx).getImm();
1645}
1646
1647
Evan Cheng780748d2009-07-28 05:48:47 +00001648int llvm::getMatchingCondBranchOpcode(int Opc) {
Evan Cheng056c6692009-07-27 18:20:05 +00001649 if (Opc == ARM::B)
1650 return ARM::Bcc;
David Blaikie46a9f012012-01-20 21:51:11 +00001651 if (Opc == ARM::tB)
Evan Cheng056c6692009-07-27 18:20:05 +00001652 return ARM::tBcc;
David Blaikie46a9f012012-01-20 21:51:11 +00001653 if (Opc == ARM::t2B)
1654 return ARM::t2Bcc;
Evan Cheng056c6692009-07-27 18:20:05 +00001655
1656 llvm_unreachable("Unknown unconditional branch opcode!");
Evan Cheng056c6692009-07-27 18:20:05 +00001657}
1658
Jakob Stoklund Olesen0a5b72f2012-04-04 18:23:42 +00001659/// commuteInstruction - Handle commutable instructions.
1660MachineInstr *
1661ARMBaseInstrInfo::commuteInstruction(MachineInstr *MI, bool NewMI) const {
1662 switch (MI->getOpcode()) {
1663 case ARM::MOVCCr:
1664 case ARM::t2MOVCCr: {
1665 // MOVCC can be commuted by inverting the condition.
1666 unsigned PredReg = 0;
1667 ARMCC::CondCodes CC = getInstrPredicate(MI, PredReg);
1668 // MOVCC AL can't be inverted. Shouldn't happen.
1669 if (CC == ARMCC::AL || PredReg != ARM::CPSR)
1670 return NULL;
Jakob Stoklund Olesen9de596e2012-11-28 02:35:17 +00001671 MI = TargetInstrInfo::commuteInstruction(MI, NewMI);
Jakob Stoklund Olesen0a5b72f2012-04-04 18:23:42 +00001672 if (!MI)
1673 return NULL;
1674 // After swapping the MOVCC operands, also invert the condition.
1675 MI->getOperand(MI->findFirstPredOperandIdx())
1676 .setImm(ARMCC::getOppositeCondition(CC));
1677 return MI;
1678 }
1679 }
Jakob Stoklund Olesen9de596e2012-11-28 02:35:17 +00001680 return TargetInstrInfo::commuteInstruction(MI, NewMI);
Jakob Stoklund Olesen0a5b72f2012-04-04 18:23:42 +00001681}
Evan Cheng780748d2009-07-28 05:48:47 +00001682
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001683/// Identify instructions that can be folded into a MOVCC instruction, and
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001684/// return the defining instruction.
1685static MachineInstr *canFoldIntoMOVCC(unsigned Reg,
1686 const MachineRegisterInfo &MRI,
1687 const TargetInstrInfo *TII) {
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001688 if (!TargetRegisterInfo::isVirtualRegister(Reg))
1689 return 0;
1690 if (!MRI.hasOneNonDBGUse(Reg))
1691 return 0;
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001692 MachineInstr *MI = MRI.getVRegDef(Reg);
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001693 if (!MI)
1694 return 0;
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001695 // MI is folded into the MOVCC by predicating it.
1696 if (!MI->isPredicable())
1697 return 0;
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001698 // Check if MI has any non-dead defs or physreg uses. This also detects
1699 // predicated instructions which will be reading CPSR.
1700 for (unsigned i = 1, e = MI->getNumOperands(); i != e; ++i) {
1701 const MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesen7b1a2e82012-08-17 20:55:34 +00001702 // Reject frame index operands, PEI can't handle the predicated pseudos.
1703 if (MO.isFI() || MO.isCPI() || MO.isJTI())
1704 return 0;
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001705 if (!MO.isReg())
1706 continue;
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001707 // MI can't have any tied operands, that would conflict with predication.
1708 if (MO.isTied())
1709 return 0;
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001710 if (TargetRegisterInfo::isPhysicalRegister(MO.getReg()))
1711 return 0;
1712 if (MO.isDef() && !MO.isDead())
1713 return 0;
1714 }
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001715 bool DontMoveAcrossStores = true;
1716 if (!MI->isSafeToMove(TII, /* AliasAnalysis = */ 0, DontMoveAcrossStores))
1717 return 0;
1718 return MI;
Jakob Stoklund Olesen6cb96122012-08-15 22:16:39 +00001719}
1720
Jakob Stoklund Olesenc19bf022012-08-16 23:14:20 +00001721bool ARMBaseInstrInfo::analyzeSelect(const MachineInstr *MI,
1722 SmallVectorImpl<MachineOperand> &Cond,
1723 unsigned &TrueOp, unsigned &FalseOp,
1724 bool &Optimizable) const {
1725 assert((MI->getOpcode() == ARM::MOVCCr || MI->getOpcode() == ARM::t2MOVCCr) &&
1726 "Unknown select instruction");
1727 // MOVCC operands:
1728 // 0: Def.
1729 // 1: True use.
1730 // 2: False use.
1731 // 3: Condition code.
1732 // 4: CPSR use.
1733 TrueOp = 1;
1734 FalseOp = 2;
1735 Cond.push_back(MI->getOperand(3));
1736 Cond.push_back(MI->getOperand(4));
1737 // We can always fold a def.
1738 Optimizable = true;
1739 return false;
1740}
1741
1742MachineInstr *ARMBaseInstrInfo::optimizeSelect(MachineInstr *MI,
1743 bool PreferFalse) const {
1744 assert((MI->getOpcode() == ARM::MOVCCr || MI->getOpcode() == ARM::t2MOVCCr) &&
1745 "Unknown select instruction");
Matthias Braun2f169f92013-10-04 16:52:56 +00001746 MachineRegisterInfo &MRI = MI->getParent()->getParent()->getRegInfo();
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001747 MachineInstr *DefMI = canFoldIntoMOVCC(MI->getOperand(2).getReg(), MRI, this);
1748 bool Invert = !DefMI;
1749 if (!DefMI)
1750 DefMI = canFoldIntoMOVCC(MI->getOperand(1).getReg(), MRI, this);
1751 if (!DefMI)
Jakob Stoklund Olesenc19bf022012-08-16 23:14:20 +00001752 return 0;
1753
Matthias Braun2f169f92013-10-04 16:52:56 +00001754 // Find new register class to use.
1755 MachineOperand FalseReg = MI->getOperand(Invert ? 2 : 1);
1756 unsigned DestReg = MI->getOperand(0).getReg();
1757 const TargetRegisterClass *PreviousClass = MRI.getRegClass(FalseReg.getReg());
1758 if (!MRI.constrainRegClass(DestReg, PreviousClass))
1759 return 0;
1760
Jakob Stoklund Olesenc19bf022012-08-16 23:14:20 +00001761 // Create a new predicated version of DefMI.
1762 // Rfalse is the first use.
1763 MachineInstrBuilder NewMI = BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
Matthias Braun2f169f92013-10-04 16:52:56 +00001764 DefMI->getDesc(), DestReg);
Jakob Stoklund Olesenc19bf022012-08-16 23:14:20 +00001765
1766 // Copy all the DefMI operands, excluding its (null) predicate.
1767 const MCInstrDesc &DefDesc = DefMI->getDesc();
1768 for (unsigned i = 1, e = DefDesc.getNumOperands();
1769 i != e && !DefDesc.OpInfo[i].isPredicate(); ++i)
1770 NewMI.addOperand(DefMI->getOperand(i));
1771
1772 unsigned CondCode = MI->getOperand(3).getImm();
1773 if (Invert)
1774 NewMI.addImm(ARMCC::getOppositeCondition(ARMCC::CondCodes(CondCode)));
1775 else
1776 NewMI.addImm(CondCode);
1777 NewMI.addOperand(MI->getOperand(4));
1778
1779 // DefMI is not the -S version that sets CPSR, so add an optional %noreg.
1780 if (NewMI->hasOptionalDef())
1781 AddDefaultCC(NewMI);
1782
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001783 // The output register value when the predicate is false is an implicit
1784 // register operand tied to the first def.
1785 // The tie makes the register allocator ensure the FalseReg is allocated the
1786 // same register as operand 0.
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001787 FalseReg.setImplicit();
Jakob Stoklund Olesen2ea20362012-12-20 22:53:55 +00001788 NewMI.addOperand(FalseReg);
Jakob Stoklund Olesenf8310592012-09-05 23:58:02 +00001789 NewMI->tieOperands(0, NewMI->getNumOperands() - 1);
1790
Jakob Stoklund Olesenc19bf022012-08-16 23:14:20 +00001791 // The caller will erase MI, but not DefMI.
1792 DefMI->eraseFromParent();
1793 return NewMI;
1794}
1795
Andrew Trick924123a2011-09-21 02:20:46 +00001796/// Map pseudo instructions that imply an 'S' bit onto real opcodes. Whether the
1797/// instruction is encoded with an 'S' bit is determined by the optional CPSR
1798/// def operand.
1799///
1800/// This will go away once we can teach tblgen how to set the optional CPSR def
1801/// operand itself.
1802struct AddSubFlagsOpcodePair {
Craig Topper2fbd1302012-05-24 03:59:11 +00001803 uint16_t PseudoOpc;
1804 uint16_t MachineOpc;
Andrew Trick924123a2011-09-21 02:20:46 +00001805};
1806
Craig Topper2fbd1302012-05-24 03:59:11 +00001807static const AddSubFlagsOpcodePair AddSubFlagsOpcodeMap[] = {
Andrew Trick924123a2011-09-21 02:20:46 +00001808 {ARM::ADDSri, ARM::ADDri},
1809 {ARM::ADDSrr, ARM::ADDrr},
1810 {ARM::ADDSrsi, ARM::ADDrsi},
1811 {ARM::ADDSrsr, ARM::ADDrsr},
1812
1813 {ARM::SUBSri, ARM::SUBri},
1814 {ARM::SUBSrr, ARM::SUBrr},
1815 {ARM::SUBSrsi, ARM::SUBrsi},
1816 {ARM::SUBSrsr, ARM::SUBrsr},
1817
1818 {ARM::RSBSri, ARM::RSBri},
Andrew Trick924123a2011-09-21 02:20:46 +00001819 {ARM::RSBSrsi, ARM::RSBrsi},
1820 {ARM::RSBSrsr, ARM::RSBrsr},
1821
1822 {ARM::t2ADDSri, ARM::t2ADDri},
1823 {ARM::t2ADDSrr, ARM::t2ADDrr},
1824 {ARM::t2ADDSrs, ARM::t2ADDrs},
1825
1826 {ARM::t2SUBSri, ARM::t2SUBri},
1827 {ARM::t2SUBSrr, ARM::t2SUBrr},
1828 {ARM::t2SUBSrs, ARM::t2SUBrs},
1829
1830 {ARM::t2RSBSri, ARM::t2RSBri},
1831 {ARM::t2RSBSrs, ARM::t2RSBrs},
1832};
1833
1834unsigned llvm::convertAddSubFlagsOpcode(unsigned OldOpc) {
Craig Topper2fbd1302012-05-24 03:59:11 +00001835 for (unsigned i = 0, e = array_lengthof(AddSubFlagsOpcodeMap); i != e; ++i)
1836 if (OldOpc == AddSubFlagsOpcodeMap[i].PseudoOpc)
1837 return AddSubFlagsOpcodeMap[i].MachineOpc;
Andrew Trick924123a2011-09-21 02:20:46 +00001838 return 0;
1839}
1840
Evan Cheng780748d2009-07-28 05:48:47 +00001841void llvm::emitARMRegPlusImmediate(MachineBasicBlock &MBB,
1842 MachineBasicBlock::iterator &MBBI, DebugLoc dl,
1843 unsigned DestReg, unsigned BaseReg, int NumBytes,
1844 ARMCC::CondCodes Pred, unsigned PredReg,
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001845 const ARMBaseInstrInfo &TII, unsigned MIFlags) {
Tim Northoverc9432eb2013-11-04 23:04:15 +00001846 if (NumBytes == 0 && DestReg != BaseReg) {
1847 BuildMI(MBB, MBBI, dl, TII.get(ARM::MOVr), DestReg)
1848 .addReg(BaseReg, RegState::Kill)
1849 .addImm((unsigned)Pred).addReg(PredReg).addReg(0)
1850 .setMIFlags(MIFlags);
1851 return;
1852 }
1853
Evan Cheng780748d2009-07-28 05:48:47 +00001854 bool isSub = NumBytes < 0;
1855 if (isSub) NumBytes = -NumBytes;
1856
1857 while (NumBytes) {
1858 unsigned RotAmt = ARM_AM::getSOImmValRotate(NumBytes);
1859 unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt);
1860 assert(ThisVal && "Didn't extract field correctly");
1861
1862 // We will handle these bits from offset, clear them.
1863 NumBytes &= ~ThisVal;
1864
1865 assert(ARM_AM::getSOImmVal(ThisVal) != -1 && "Bit extraction didn't work?");
1866
1867 // Build the new ADD / SUB.
1868 unsigned Opc = isSub ? ARM::SUBri : ARM::ADDri;
1869 BuildMI(MBB, MBBI, dl, TII.get(Opc), DestReg)
1870 .addReg(BaseReg, RegState::Kill).addImm(ThisVal)
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001871 .addImm((unsigned)Pred).addReg(PredReg).addReg(0)
1872 .setMIFlags(MIFlags);
Evan Cheng780748d2009-07-28 05:48:47 +00001873 BaseReg = DestReg;
1874 }
1875}
1876
Tim Northoverdee86042013-12-02 14:46:26 +00001877bool llvm::tryFoldSPUpdateIntoPushPop(const ARMSubtarget &Subtarget,
1878 MachineFunction &MF, MachineInstr *MI,
Tim Northover93bcc662013-11-08 17:18:07 +00001879 unsigned NumBytes) {
1880 // This optimisation potentially adds lots of load and store
1881 // micro-operations, it's only really a great benefit to code-size.
Tim Northoverdee86042013-12-02 14:46:26 +00001882 if (!Subtarget.isMinSize())
Tim Northover93bcc662013-11-08 17:18:07 +00001883 return false;
1884
1885 // If only one register is pushed/popped, LLVM can use an LDR/STR
1886 // instead. We can't modify those so make sure we're dealing with an
1887 // instruction we understand.
1888 bool IsPop = isPopOpcode(MI->getOpcode());
1889 bool IsPush = isPushOpcode(MI->getOpcode());
1890 if (!IsPush && !IsPop)
1891 return false;
1892
1893 bool IsVFPPushPop = MI->getOpcode() == ARM::VSTMDDB_UPD ||
1894 MI->getOpcode() == ARM::VLDMDIA_UPD;
1895 bool IsT1PushPop = MI->getOpcode() == ARM::tPUSH ||
1896 MI->getOpcode() == ARM::tPOP ||
1897 MI->getOpcode() == ARM::tPOP_RET;
1898
1899 assert((IsT1PushPop || (MI->getOperand(0).getReg() == ARM::SP &&
1900 MI->getOperand(1).getReg() == ARM::SP)) &&
1901 "trying to fold sp update into non-sp-updating push/pop");
1902
1903 // The VFP push & pop act on D-registers, so we can only fold an adjustment
1904 // by a multiple of 8 bytes in correctly. Similarly rN is 4-bytes. Don't try
1905 // if this is violated.
1906 if (NumBytes % (IsVFPPushPop ? 8 : 4) != 0)
1907 return false;
1908
1909 // ARM and Thumb2 push/pop insts have explicit "sp, sp" operands (+
1910 // pred) so the list starts at 4. Thumb1 starts after the predicate.
1911 int RegListIdx = IsT1PushPop ? 2 : 4;
1912
1913 // Calculate the space we'll need in terms of registers.
1914 unsigned FirstReg = MI->getOperand(RegListIdx).getReg();
1915 unsigned RD0Reg, RegsNeeded;
1916 if (IsVFPPushPop) {
1917 RD0Reg = ARM::D0;
1918 RegsNeeded = NumBytes / 8;
1919 } else {
1920 RD0Reg = ARM::R0;
1921 RegsNeeded = NumBytes / 4;
1922 }
1923
1924 // We're going to have to strip all list operands off before
1925 // re-adding them since the order matters, so save the existing ones
1926 // for later.
1927 SmallVector<MachineOperand, 4> RegList;
1928 for (int i = MI->getNumOperands() - 1; i >= RegListIdx; --i)
1929 RegList.push_back(MI->getOperand(i));
1930
1931 MachineBasicBlock *MBB = MI->getParent();
1932 const TargetRegisterInfo *TRI = MF.getRegInfo().getTargetRegisterInfo();
Tim Northover45479dc2013-12-01 14:16:24 +00001933 const MCPhysReg *CSRegs = TRI->getCalleeSavedRegs(&MF);
Tim Northover93bcc662013-11-08 17:18:07 +00001934
1935 // Now try to find enough space in the reglist to allocate NumBytes.
1936 for (unsigned CurReg = FirstReg - 1; CurReg >= RD0Reg && RegsNeeded;
Tim Northover45479dc2013-12-01 14:16:24 +00001937 --CurReg) {
Tim Northover93bcc662013-11-08 17:18:07 +00001938 if (!IsPop) {
1939 // Pushing any register is completely harmless, mark the
1940 // register involved as undef since we don't care about it in
1941 // the slightest.
1942 RegList.push_back(MachineOperand::CreateReg(CurReg, false, false,
1943 false, false, true));
Tim Northover45479dc2013-12-01 14:16:24 +00001944 --RegsNeeded;
Tim Northover93bcc662013-11-08 17:18:07 +00001945 continue;
1946 }
1947
Tim Northover45479dc2013-12-01 14:16:24 +00001948 // However, we can only pop an extra register if it's not live. For
1949 // registers live within the function we might clobber a return value
1950 // register; the other way a register can be live here is if it's
1951 // callee-saved.
1952 if (isCalleeSavedRegister(CurReg, CSRegs) ||
1953 MBB->computeRegisterLiveness(TRI, CurReg, MI) !=
1954 MachineBasicBlock::LQR_Dead) {
1955 // VFP pops don't allow holes in the register list, so any skip is fatal
1956 // for our transformation. GPR pops do, so we should just keep looking.
1957 if (IsVFPPushPop)
1958 return false;
1959 else
1960 continue;
1961 }
Tim Northover93bcc662013-11-08 17:18:07 +00001962
1963 // Mark the unimportant registers as <def,dead> in the POP.
Lang Hames1ca11232013-11-22 00:46:32 +00001964 RegList.push_back(MachineOperand::CreateReg(CurReg, true, false, false,
1965 true));
Tim Northover45479dc2013-12-01 14:16:24 +00001966 --RegsNeeded;
Tim Northover93bcc662013-11-08 17:18:07 +00001967 }
1968
1969 if (RegsNeeded > 0)
1970 return false;
1971
1972 // Finally we know we can profitably perform the optimisation so go
1973 // ahead: strip all existing registers off and add them back again
1974 // in the right order.
1975 for (int i = MI->getNumOperands() - 1; i >= RegListIdx; --i)
1976 MI->RemoveOperand(i);
1977
1978 // Add the complete list back in.
1979 MachineInstrBuilder MIB(MF, &*MI);
1980 for (int i = RegList.size() - 1; i >= 0; --i)
1981 MIB.addOperand(RegList[i]);
1982
1983 return true;
1984}
1985
Evan Cheng7a37b1a2009-08-27 01:23:50 +00001986bool llvm::rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
1987 unsigned FrameReg, int &Offset,
1988 const ARMBaseInstrInfo &TII) {
Evan Cheng780748d2009-07-28 05:48:47 +00001989 unsigned Opcode = MI.getOpcode();
Evan Cheng6cc775f2011-06-28 19:10:37 +00001990 const MCInstrDesc &Desc = MI.getDesc();
Evan Cheng780748d2009-07-28 05:48:47 +00001991 unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
1992 bool isSub = false;
Jim Grosbachf24f9d92009-08-11 15:33:49 +00001993
Evan Cheng780748d2009-07-28 05:48:47 +00001994 // Memory operands in inline assembly always use AddrMode2.
1995 if (Opcode == ARM::INLINEASM)
1996 AddrMode = ARMII::AddrMode2;
Jim Grosbachf24f9d92009-08-11 15:33:49 +00001997
Evan Cheng780748d2009-07-28 05:48:47 +00001998 if (Opcode == ARM::ADDri) {
1999 Offset += MI.getOperand(FrameRegIdx+1).getImm();
2000 if (Offset == 0) {
2001 // Turn it into a move.
2002 MI.setDesc(TII.get(ARM::MOVr));
2003 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
2004 MI.RemoveOperand(FrameRegIdx+1);
Evan Cheng7a37b1a2009-08-27 01:23:50 +00002005 Offset = 0;
2006 return true;
Evan Cheng780748d2009-07-28 05:48:47 +00002007 } else if (Offset < 0) {
2008 Offset = -Offset;
2009 isSub = true;
2010 MI.setDesc(TII.get(ARM::SUBri));
2011 }
2012
2013 // Common case: small offset, fits into instruction.
2014 if (ARM_AM::getSOImmVal(Offset) != -1) {
2015 // Replace the FrameIndex with sp / fp
2016 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
2017 MI.getOperand(FrameRegIdx+1).ChangeToImmediate(Offset);
Evan Cheng7a37b1a2009-08-27 01:23:50 +00002018 Offset = 0;
2019 return true;
Evan Cheng780748d2009-07-28 05:48:47 +00002020 }
2021
2022 // Otherwise, pull as much of the immedidate into this ADDri/SUBri
2023 // as possible.
2024 unsigned RotAmt = ARM_AM::getSOImmValRotate(Offset);
2025 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xFF, RotAmt);
2026
2027 // We will handle these bits from offset, clear them.
2028 Offset &= ~ThisImmVal;
2029
2030 // Get the properly encoded SOImmVal field.
2031 assert(ARM_AM::getSOImmVal(ThisImmVal) != -1 &&
2032 "Bit extraction didn't work?");
2033 MI.getOperand(FrameRegIdx+1).ChangeToImmediate(ThisImmVal);
2034 } else {
2035 unsigned ImmIdx = 0;
2036 int InstrOffs = 0;
2037 unsigned NumBits = 0;
2038 unsigned Scale = 1;
2039 switch (AddrMode) {
Jim Grosbach1e4d9a12010-10-26 22:37:02 +00002040 case ARMII::AddrMode_i12: {
2041 ImmIdx = FrameRegIdx + 1;
2042 InstrOffs = MI.getOperand(ImmIdx).getImm();
2043 NumBits = 12;
2044 break;
2045 }
Evan Cheng780748d2009-07-28 05:48:47 +00002046 case ARMII::AddrMode2: {
2047 ImmIdx = FrameRegIdx+2;
2048 InstrOffs = ARM_AM::getAM2Offset(MI.getOperand(ImmIdx).getImm());
2049 if (ARM_AM::getAM2Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
2050 InstrOffs *= -1;
2051 NumBits = 12;
2052 break;
2053 }
2054 case ARMII::AddrMode3: {
2055 ImmIdx = FrameRegIdx+2;
2056 InstrOffs = ARM_AM::getAM3Offset(MI.getOperand(ImmIdx).getImm());
2057 if (ARM_AM::getAM3Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
2058 InstrOffs *= -1;
2059 NumBits = 8;
2060 break;
2061 }
Anton Korobeynikov887d05c2009-08-08 13:35:48 +00002062 case ARMII::AddrMode4:
Jim Grosbach01c1cae2009-11-15 21:45:34 +00002063 case ARMII::AddrMode6:
Evan Cheng7a37b1a2009-08-27 01:23:50 +00002064 // Can't fold any offset even if it's zero.
2065 return false;
Evan Cheng780748d2009-07-28 05:48:47 +00002066 case ARMII::AddrMode5: {
2067 ImmIdx = FrameRegIdx+1;
2068 InstrOffs = ARM_AM::getAM5Offset(MI.getOperand(ImmIdx).getImm());
2069 if (ARM_AM::getAM5Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
2070 InstrOffs *= -1;
2071 NumBits = 8;
2072 Scale = 4;
2073 break;
2074 }
2075 default:
2076 llvm_unreachable("Unsupported addressing mode!");
Evan Cheng780748d2009-07-28 05:48:47 +00002077 }
2078
2079 Offset += InstrOffs * Scale;
2080 assert((Offset & (Scale-1)) == 0 && "Can't encode this offset!");
2081 if (Offset < 0) {
2082 Offset = -Offset;
2083 isSub = true;
2084 }
2085
2086 // Attempt to fold address comp. if opcode has offset bits
2087 if (NumBits > 0) {
2088 // Common case: small offset, fits into instruction.
2089 MachineOperand &ImmOp = MI.getOperand(ImmIdx);
2090 int ImmedOffset = Offset / Scale;
2091 unsigned Mask = (1 << NumBits) - 1;
2092 if ((unsigned)Offset <= Mask * Scale) {
2093 // Replace the FrameIndex with sp
2094 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
Jim Grosbach9d2d1f02010-10-27 01:19:41 +00002095 // FIXME: When addrmode2 goes away, this will simplify (like the
2096 // T2 version), as the LDR.i12 versions don't need the encoding
2097 // tricks for the offset value.
2098 if (isSub) {
2099 if (AddrMode == ARMII::AddrMode_i12)
2100 ImmedOffset = -ImmedOffset;
2101 else
2102 ImmedOffset |= 1 << NumBits;
2103 }
Evan Cheng780748d2009-07-28 05:48:47 +00002104 ImmOp.ChangeToImmediate(ImmedOffset);
Evan Cheng7a37b1a2009-08-27 01:23:50 +00002105 Offset = 0;
2106 return true;
Evan Cheng780748d2009-07-28 05:48:47 +00002107 }
Jim Grosbachf24f9d92009-08-11 15:33:49 +00002108
Evan Cheng780748d2009-07-28 05:48:47 +00002109 // Otherwise, it didn't fit. Pull in what we can to simplify the immed.
2110 ImmedOffset = ImmedOffset & Mask;
Jim Grosbach8bf14832010-10-27 16:50:31 +00002111 if (isSub) {
2112 if (AddrMode == ARMII::AddrMode_i12)
2113 ImmedOffset = -ImmedOffset;
2114 else
2115 ImmedOffset |= 1 << NumBits;
2116 }
Evan Cheng780748d2009-07-28 05:48:47 +00002117 ImmOp.ChangeToImmediate(ImmedOffset);
2118 Offset &= ~(Mask*Scale);
2119 }
2120 }
2121
Evan Cheng7a37b1a2009-08-27 01:23:50 +00002122 Offset = (isSub) ? -Offset : Offset;
2123 return Offset == 0;
Evan Cheng780748d2009-07-28 05:48:47 +00002124}
Bill Wendling7de9d522010-08-06 01:32:48 +00002125
Manman Ren6fa76dc2012-06-29 21:33:59 +00002126/// analyzeCompare - For a comparison instruction, return the source registers
2127/// in SrcReg and SrcReg2 if having two register operands, and the value it
2128/// compares against in CmpValue. Return true if the comparison instruction
2129/// can be analyzed.
Bill Wendling7de9d522010-08-06 01:32:48 +00002130bool ARMBaseInstrInfo::
Manman Ren6fa76dc2012-06-29 21:33:59 +00002131analyzeCompare(const MachineInstr *MI, unsigned &SrcReg, unsigned &SrcReg2,
2132 int &CmpMask, int &CmpValue) const {
Bill Wendling7de9d522010-08-06 01:32:48 +00002133 switch (MI->getOpcode()) {
2134 default: break;
Bill Wendling79553ba2010-08-11 00:23:00 +00002135 case ARM::CMPri:
Bill Wendling7de9d522010-08-06 01:32:48 +00002136 case ARM::t2CMPri:
Bill Wendling7de9d522010-08-06 01:32:48 +00002137 SrcReg = MI->getOperand(0).getReg();
Manman Ren6fa76dc2012-06-29 21:33:59 +00002138 SrcReg2 = 0;
Gabor Greifadbbb932010-09-21 12:01:15 +00002139 CmpMask = ~0;
Bill Wendling7de9d522010-08-06 01:32:48 +00002140 CmpValue = MI->getOperand(1).getImm();
2141 return true;
Manman Rendc8ad002012-05-11 01:30:47 +00002142 case ARM::CMPrr:
2143 case ARM::t2CMPrr:
2144 SrcReg = MI->getOperand(0).getReg();
Manman Ren6fa76dc2012-06-29 21:33:59 +00002145 SrcReg2 = MI->getOperand(1).getReg();
Manman Rendc8ad002012-05-11 01:30:47 +00002146 CmpMask = ~0;
2147 CmpValue = 0;
2148 return true;
Gabor Greifadbbb932010-09-21 12:01:15 +00002149 case ARM::TSTri:
2150 case ARM::t2TSTri:
2151 SrcReg = MI->getOperand(0).getReg();
Manman Ren6fa76dc2012-06-29 21:33:59 +00002152 SrcReg2 = 0;
Gabor Greifadbbb932010-09-21 12:01:15 +00002153 CmpMask = MI->getOperand(1).getImm();
2154 CmpValue = 0;
2155 return true;
2156 }
2157
2158 return false;
2159}
2160
Gabor Greifd36e3e82010-09-29 10:12:08 +00002161/// isSuitableForMask - Identify a suitable 'and' instruction that
2162/// operates on the given source register and applies the same mask
2163/// as a 'tst' instruction. Provide a limited look-through for copies.
2164/// When successful, MI will hold the found instruction.
2165static bool isSuitableForMask(MachineInstr *&MI, unsigned SrcReg,
Gabor Greif1a25ae82010-09-21 13:30:57 +00002166 int CmpMask, bool CommonUse) {
Gabor Greifd36e3e82010-09-29 10:12:08 +00002167 switch (MI->getOpcode()) {
Gabor Greifadbbb932010-09-21 12:01:15 +00002168 case ARM::ANDri:
2169 case ARM::t2ANDri:
Gabor Greifd36e3e82010-09-29 10:12:08 +00002170 if (CmpMask != MI->getOperand(2).getImm())
Gabor Greif1a25ae82010-09-21 13:30:57 +00002171 return false;
Gabor Greifd36e3e82010-09-29 10:12:08 +00002172 if (SrcReg == MI->getOperand(CommonUse ? 1 : 0).getReg())
Gabor Greifadbbb932010-09-21 12:01:15 +00002173 return true;
2174 break;
Gabor Greifd36e3e82010-09-29 10:12:08 +00002175 case ARM::COPY: {
2176 // Walk down one instruction which is potentially an 'and'.
2177 const MachineInstr &Copy = *MI;
Michael J. Spencer70ac5fa2010-10-05 06:00:43 +00002178 MachineBasicBlock::iterator AND(
2179 llvm::next(MachineBasicBlock::iterator(MI)));
Gabor Greifd36e3e82010-09-29 10:12:08 +00002180 if (AND == MI->getParent()->end()) return false;
2181 MI = AND;
2182 return isSuitableForMask(MI, Copy.getOperand(0).getReg(),
2183 CmpMask, true);
2184 }
Bill Wendling7de9d522010-08-06 01:32:48 +00002185 }
2186
2187 return false;
2188}
2189
Manman Renb1b3db62012-06-29 22:06:19 +00002190/// getSwappedCondition - assume the flags are set by MI(a,b), return
2191/// the condition code if we modify the instructions such that flags are
2192/// set by MI(b,a).
2193inline static ARMCC::CondCodes getSwappedCondition(ARMCC::CondCodes CC) {
2194 switch (CC) {
2195 default: return ARMCC::AL;
2196 case ARMCC::EQ: return ARMCC::EQ;
2197 case ARMCC::NE: return ARMCC::NE;
2198 case ARMCC::HS: return ARMCC::LS;
2199 case ARMCC::LO: return ARMCC::HI;
2200 case ARMCC::HI: return ARMCC::LO;
2201 case ARMCC::LS: return ARMCC::HS;
2202 case ARMCC::GE: return ARMCC::LE;
2203 case ARMCC::LT: return ARMCC::GT;
2204 case ARMCC::GT: return ARMCC::LT;
2205 case ARMCC::LE: return ARMCC::GE;
2206 }
2207}
2208
2209/// isRedundantFlagInstr - check whether the first instruction, whose only
2210/// purpose is to update flags, can be made redundant.
2211/// CMPrr can be made redundant by SUBrr if the operands are the same.
2212/// CMPri can be made redundant by SUBri if the operands are the same.
2213/// This function can be extended later on.
2214inline static bool isRedundantFlagInstr(MachineInstr *CmpI, unsigned SrcReg,
2215 unsigned SrcReg2, int ImmValue,
2216 MachineInstr *OI) {
2217 if ((CmpI->getOpcode() == ARM::CMPrr ||
2218 CmpI->getOpcode() == ARM::t2CMPrr) &&
2219 (OI->getOpcode() == ARM::SUBrr ||
2220 OI->getOpcode() == ARM::t2SUBrr) &&
2221 ((OI->getOperand(1).getReg() == SrcReg &&
2222 OI->getOperand(2).getReg() == SrcReg2) ||
2223 (OI->getOperand(1).getReg() == SrcReg2 &&
2224 OI->getOperand(2).getReg() == SrcReg)))
2225 return true;
2226
2227 if ((CmpI->getOpcode() == ARM::CMPri ||
2228 CmpI->getOpcode() == ARM::t2CMPri) &&
2229 (OI->getOpcode() == ARM::SUBri ||
2230 OI->getOpcode() == ARM::t2SUBri) &&
2231 OI->getOperand(1).getReg() == SrcReg &&
2232 OI->getOperand(2).getImm() == ImmValue)
2233 return true;
2234 return false;
2235}
2236
Manman Ren6fa76dc2012-06-29 21:33:59 +00002237/// optimizeCompareInstr - Convert the instruction supplying the argument to the
2238/// comparison into one that sets the zero bit in the flags register;
2239/// Remove a redundant Compare instruction if an earlier instruction can set the
2240/// flags in the same way as Compare.
2241/// E.g. SUBrr(r1,r2) and CMPrr(r1,r2). We also handle the case where two
2242/// operands are swapped: SUBrr(r1,r2) and CMPrr(r2,r1), by updating the
2243/// condition code of instructions which use the flags.
Bill Wendling7de9d522010-08-06 01:32:48 +00002244bool ARMBaseInstrInfo::
Manman Ren6fa76dc2012-06-29 21:33:59 +00002245optimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, unsigned SrcReg2,
2246 int CmpMask, int CmpValue,
2247 const MachineRegisterInfo *MRI) const {
Manman Renb1b3db62012-06-29 22:06:19 +00002248 // Get the unique definition of SrcReg.
2249 MachineInstr *MI = MRI->getUniqueVRegDef(SrcReg);
2250 if (!MI) return false;
Bill Wendling04123002010-09-10 23:34:19 +00002251
Gabor Greifadbbb932010-09-21 12:01:15 +00002252 // Masked compares sometimes use the same register as the corresponding 'and'.
2253 if (CmpMask != ~0) {
Jakob Stoklund Olesen8b9dce52012-09-10 19:17:25 +00002254 if (!isSuitableForMask(MI, SrcReg, CmpMask, false) || isPredicated(MI)) {
Gabor Greifadbbb932010-09-21 12:01:15 +00002255 MI = 0;
Bill Wendling337a3112010-10-18 21:22:31 +00002256 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(SrcReg),
2257 UE = MRI->use_end(); UI != UE; ++UI) {
Gabor Greifadbbb932010-09-21 12:01:15 +00002258 if (UI->getParent() != CmpInstr->getParent()) continue;
Gabor Greifd36e3e82010-09-29 10:12:08 +00002259 MachineInstr *PotentialAND = &*UI;
Jakob Stoklund Olesen8b9dce52012-09-10 19:17:25 +00002260 if (!isSuitableForMask(PotentialAND, SrcReg, CmpMask, true) ||
2261 isPredicated(PotentialAND))
Gabor Greifadbbb932010-09-21 12:01:15 +00002262 continue;
Gabor Greifd36e3e82010-09-29 10:12:08 +00002263 MI = PotentialAND;
Gabor Greifadbbb932010-09-21 12:01:15 +00002264 break;
2265 }
2266 if (!MI) return false;
2267 }
2268 }
2269
Manman Rendc8ad002012-05-11 01:30:47 +00002270 // Get ready to iterate backward from CmpInstr.
2271 MachineBasicBlock::iterator I = CmpInstr, E = MI,
2272 B = CmpInstr->getParent()->begin();
Bill Wendling59ebe442010-10-09 00:03:48 +00002273
2274 // Early exit if CmpInstr is at the beginning of the BB.
2275 if (I == B) return false;
2276
Manman Rendc8ad002012-05-11 01:30:47 +00002277 // There are two possible candidates which can be changed to set CPSR:
2278 // One is MI, the other is a SUB instruction.
2279 // For CMPrr(r1,r2), we are looking for SUB(r1,r2) or SUB(r2,r1).
2280 // For CMPri(r1, CmpValue), we are looking for SUBri(r1, CmpValue).
2281 MachineInstr *Sub = NULL;
Manman Ren6fa76dc2012-06-29 21:33:59 +00002282 if (SrcReg2 != 0)
Manman Rendc8ad002012-05-11 01:30:47 +00002283 // MI is not a candidate for CMPrr.
2284 MI = NULL;
Manman Ren6fa76dc2012-06-29 21:33:59 +00002285 else if (MI->getParent() != CmpInstr->getParent() || CmpValue != 0) {
Manman Rendc8ad002012-05-11 01:30:47 +00002286 // Conservatively refuse to convert an instruction which isn't in the same
2287 // BB as the comparison.
2288 // For CMPri, we need to check Sub, thus we can't return here.
Manman Ren0d5ec282012-05-11 15:36:46 +00002289 if (CmpInstr->getOpcode() == ARM::CMPri ||
Manman Rendc8ad002012-05-11 01:30:47 +00002290 CmpInstr->getOpcode() == ARM::t2CMPri)
2291 MI = NULL;
2292 else
2293 return false;
2294 }
2295
2296 // Check that CPSR isn't set between the comparison instruction and the one we
2297 // want to change. At the same time, search for Sub.
Manman Renb1b3db62012-06-29 22:06:19 +00002298 const TargetRegisterInfo *TRI = &getRegisterInfo();
Bill Wendling7de9d522010-08-06 01:32:48 +00002299 --I;
2300 for (; I != E; --I) {
2301 const MachineInstr &Instr = *I;
2302
Manman Renb1b3db62012-06-29 22:06:19 +00002303 if (Instr.modifiesRegister(ARM::CPSR, TRI) ||
2304 Instr.readsRegister(ARM::CPSR, TRI))
Bill Wendlingc6627ee2010-11-01 20:41:43 +00002305 // This instruction modifies or uses CPSR after the one we want to
2306 // change. We can't do this transformation.
Manman Renb1b3db62012-06-29 22:06:19 +00002307 return false;
Evan Chengd757c882010-09-21 23:49:07 +00002308
Manman Renb1b3db62012-06-29 22:06:19 +00002309 // Check whether CmpInstr can be made redundant by the current instruction.
2310 if (isRedundantFlagInstr(CmpInstr, SrcReg, SrcReg2, CmpValue, &*I)) {
Manman Rendc8ad002012-05-11 01:30:47 +00002311 Sub = &*I;
2312 break;
2313 }
2314
Evan Chengd757c882010-09-21 23:49:07 +00002315 if (I == B)
2316 // The 'and' is below the comparison instruction.
2317 return false;
Bill Wendling7de9d522010-08-06 01:32:48 +00002318 }
2319
Manman Rendc8ad002012-05-11 01:30:47 +00002320 // Return false if no candidates exist.
2321 if (!MI && !Sub)
2322 return false;
2323
2324 // The single candidate is called MI.
2325 if (!MI) MI = Sub;
2326
Jakob Stoklund Olesen8b9dce52012-09-10 19:17:25 +00002327 // We can't use a predicated instruction - it doesn't always write the flags.
2328 if (isPredicated(MI))
2329 return false;
2330
Bill Wendling7de9d522010-08-06 01:32:48 +00002331 switch (MI->getOpcode()) {
2332 default: break;
Cameron Zwarich93eae152011-04-15 20:28:28 +00002333 case ARM::RSBrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002334 case ARM::RSBri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002335 case ARM::RSCrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002336 case ARM::RSCri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002337 case ARM::ADDrr:
Bill Wendling79553ba2010-08-11 00:23:00 +00002338 case ARM::ADDri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002339 case ARM::ADCrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002340 case ARM::ADCri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002341 case ARM::SUBrr:
Bill Wendling79553ba2010-08-11 00:23:00 +00002342 case ARM::SUBri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002343 case ARM::SBCrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002344 case ARM::SBCri:
2345 case ARM::t2RSBri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002346 case ARM::t2ADDrr:
Bill Wendling79553ba2010-08-11 00:23:00 +00002347 case ARM::t2ADDri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002348 case ARM::t2ADCrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002349 case ARM::t2ADCri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002350 case ARM::t2SUBrr:
Owen Andersonbdff1c92011-04-06 23:35:59 +00002351 case ARM::t2SUBri:
Cameron Zwarich93eae152011-04-15 20:28:28 +00002352 case ARM::t2SBCrr:
Cameron Zwarich0829b302011-04-15 20:45:00 +00002353 case ARM::t2SBCri:
2354 case ARM::ANDrr:
2355 case ARM::ANDri:
2356 case ARM::t2ANDrr:
Cameron Zwarich9c65e4d2011-04-15 21:24:38 +00002357 case ARM::t2ANDri:
2358 case ARM::ORRrr:
2359 case ARM::ORRri:
2360 case ARM::t2ORRrr:
2361 case ARM::t2ORRri:
2362 case ARM::EORrr:
2363 case ARM::EORri:
2364 case ARM::t2EORrr:
2365 case ARM::t2EORri: {
Manman Rendc8ad002012-05-11 01:30:47 +00002366 // Scan forward for the use of CPSR
2367 // When checking against MI: if it's a conditional code requires
Manman Ren34cb93e2012-07-11 22:51:44 +00002368 // checking of V bit, then this is not safe to do.
2369 // It is safe to remove CmpInstr if CPSR is redefined or killed.
2370 // If we are done with the basic block, we need to check whether CPSR is
2371 // live-out.
Manman Renb1b3db62012-06-29 22:06:19 +00002372 SmallVector<std::pair<MachineOperand*, ARMCC::CondCodes>, 4>
2373 OperandsToUpdate;
Evan Cheng425489d2011-03-23 22:52:04 +00002374 bool isSafe = false;
2375 I = CmpInstr;
Manman Rendc8ad002012-05-11 01:30:47 +00002376 E = CmpInstr->getParent()->end();
Evan Cheng425489d2011-03-23 22:52:04 +00002377 while (!isSafe && ++I != E) {
2378 const MachineInstr &Instr = *I;
2379 for (unsigned IO = 0, EO = Instr.getNumOperands();
2380 !isSafe && IO != EO; ++IO) {
2381 const MachineOperand &MO = Instr.getOperand(IO);
Jakob Stoklund Olesen4fad5b22012-02-17 19:23:15 +00002382 if (MO.isRegMask() && MO.clobbersPhysReg(ARM::CPSR)) {
2383 isSafe = true;
2384 break;
2385 }
Evan Cheng425489d2011-03-23 22:52:04 +00002386 if (!MO.isReg() || MO.getReg() != ARM::CPSR)
2387 continue;
2388 if (MO.isDef()) {
2389 isSafe = true;
2390 break;
2391 }
Weiming Zhao43d8e6c2013-12-06 17:56:48 +00002392 // Condition code is after the operand before CPSR except for VSELs.
2393 ARMCC::CondCodes CC;
2394 bool IsInstrVSel = true;
2395 switch (Instr.getOpcode()) {
2396 default:
2397 IsInstrVSel = false;
2398 CC = (ARMCC::CondCodes)Instr.getOperand(IO - 1).getImm();
2399 break;
2400 case ARM::VSELEQD:
2401 case ARM::VSELEQS:
2402 CC = ARMCC::EQ;
2403 break;
2404 case ARM::VSELGTD:
2405 case ARM::VSELGTS:
2406 CC = ARMCC::GT;
2407 break;
2408 case ARM::VSELGED:
2409 case ARM::VSELGES:
2410 CC = ARMCC::GE;
2411 break;
2412 case ARM::VSELVSS:
2413 case ARM::VSELVSD:
2414 CC = ARMCC::VS;
2415 break;
2416 }
2417
Manman Renb1b3db62012-06-29 22:06:19 +00002418 if (Sub) {
2419 ARMCC::CondCodes NewCC = getSwappedCondition(CC);
2420 if (NewCC == ARMCC::AL)
Manman Rendc8ad002012-05-11 01:30:47 +00002421 return false;
Manman Renb1b3db62012-06-29 22:06:19 +00002422 // If we have SUB(r1, r2) and CMP(r2, r1), the condition code based
2423 // on CMP needs to be updated to be based on SUB.
2424 // Push the condition code operands to OperandsToUpdate.
2425 // If it is safe to remove CmpInstr, the condition code of these
2426 // operands will be modified.
2427 if (SrcReg2 != 0 && Sub->getOperand(1).getReg() == SrcReg2 &&
Weiming Zhao43d8e6c2013-12-06 17:56:48 +00002428 Sub->getOperand(2).getReg() == SrcReg) {
2429 // VSel doesn't support condition code update.
2430 if (IsInstrVSel)
2431 return false;
2432 OperandsToUpdate.push_back(
2433 std::make_pair(&((*I).getOperand(IO - 1)), NewCC));
2434 }
2435 } else
Manman Rendc8ad002012-05-11 01:30:47 +00002436 switch (CC) {
2437 default:
Manman Ren88a0d332012-07-11 23:47:00 +00002438 // CPSR can be used multiple times, we should continue.
Manman Rendc8ad002012-05-11 01:30:47 +00002439 break;
2440 case ARMCC::VS:
2441 case ARMCC::VC:
2442 case ARMCC::GE:
2443 case ARMCC::LT:
2444 case ARMCC::GT:
2445 case ARMCC::LE:
2446 return false;
2447 }
Evan Cheng425489d2011-03-23 22:52:04 +00002448 }
2449 }
2450
Manman Ren34cb93e2012-07-11 22:51:44 +00002451 // If CPSR is not killed nor re-defined, we should check whether it is
2452 // live-out. If it is live-out, do not optimize.
2453 if (!isSafe) {
2454 MachineBasicBlock *MBB = CmpInstr->getParent();
2455 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
2456 SE = MBB->succ_end(); SI != SE; ++SI)
2457 if ((*SI)->isLiveIn(ARM::CPSR))
2458 return false;
2459 }
Evan Cheng425489d2011-03-23 22:52:04 +00002460
Evan Cheng65536472010-11-17 08:06:50 +00002461 // Toggle the optional operand to CPSR.
2462 MI->getOperand(5).setReg(ARM::CPSR);
2463 MI->getOperand(5).setIsDef(true);
Jakob Stoklund Olesen8b9dce52012-09-10 19:17:25 +00002464 assert(!isPredicated(MI) && "Can't use flags from predicated instruction");
Bill Wendling7de9d522010-08-06 01:32:48 +00002465 CmpInstr->eraseFromParent();
Manman Rendc8ad002012-05-11 01:30:47 +00002466
2467 // Modify the condition code of operands in OperandsToUpdate.
2468 // Since we have SUB(r1, r2) and CMP(r2, r1), the condition code needs to
2469 // be changed from r2 > r1 to r1 < r2, from r2 < r1 to r1 > r2, etc.
Manman Renb1b3db62012-06-29 22:06:19 +00002470 for (unsigned i = 0, e = OperandsToUpdate.size(); i < e; i++)
2471 OperandsToUpdate[i].first->setImm(OperandsToUpdate[i].second);
Bill Wendling7de9d522010-08-06 01:32:48 +00002472 return true;
2473 }
Cameron Zwarich0829b302011-04-15 20:45:00 +00002474 }
Bill Wendling7de9d522010-08-06 01:32:48 +00002475
2476 return false;
2477}
Evan Cheng367a5df2010-09-09 18:18:55 +00002478
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00002479bool ARMBaseInstrInfo::FoldImmediate(MachineInstr *UseMI,
2480 MachineInstr *DefMI, unsigned Reg,
2481 MachineRegisterInfo *MRI) const {
2482 // Fold large immediates into add, sub, or, xor.
2483 unsigned DefOpc = DefMI->getOpcode();
2484 if (DefOpc != ARM::t2MOVi32imm && DefOpc != ARM::MOVi32imm)
2485 return false;
2486 if (!DefMI->getOperand(1).isImm())
2487 // Could be t2MOVi32imm <ga:xx>
2488 return false;
2489
2490 if (!MRI->hasOneNonDBGUse(Reg))
2491 return false;
2492
Evan Chenga2b48d92012-03-26 23:31:00 +00002493 const MCInstrDesc &DefMCID = DefMI->getDesc();
2494 if (DefMCID.hasOptionalDef()) {
2495 unsigned NumOps = DefMCID.getNumOperands();
2496 const MachineOperand &MO = DefMI->getOperand(NumOps-1);
2497 if (MO.getReg() == ARM::CPSR && !MO.isDead())
2498 // If DefMI defines CPSR and it is not dead, it's obviously not safe
2499 // to delete DefMI.
2500 return false;
2501 }
2502
2503 const MCInstrDesc &UseMCID = UseMI->getDesc();
2504 if (UseMCID.hasOptionalDef()) {
2505 unsigned NumOps = UseMCID.getNumOperands();
2506 if (UseMI->getOperand(NumOps-1).getReg() == ARM::CPSR)
2507 // If the instruction sets the flag, do not attempt this optimization
2508 // since it may change the semantics of the code.
2509 return false;
2510 }
2511
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00002512 unsigned UseOpc = UseMI->getOpcode();
Evan Cheng2d4e42f2010-11-18 01:43:23 +00002513 unsigned NewUseOpc = 0;
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00002514 uint32_t ImmVal = (uint32_t)DefMI->getOperand(1).getImm();
Evan Cheng2d4e42f2010-11-18 01:43:23 +00002515 uint32_t SOImmValV1 = 0, SOImmValV2 = 0;
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00002516 bool Commute = false;
2517 switch (UseOpc) {
2518 default: return false;
2519 case ARM::SUBrr:
2520 case ARM::ADDrr:
2521 case ARM::ORRrr:
2522 case ARM::EORrr:
2523 case ARM::t2SUBrr:
2524 case ARM::t2ADDrr:
2525 case ARM::t2ORRrr:
2526 case ARM::t2EORrr: {
2527 Commute = UseMI->getOperand(2).getReg() != Reg;
2528 switch (UseOpc) {
2529 default: break;
2530 case ARM::SUBrr: {
2531 if (Commute)
2532 return false;
2533 ImmVal = -ImmVal;
2534 NewUseOpc = ARM::SUBri;
2535 // Fallthrough
2536 }
2537 case ARM::ADDrr:
2538 case ARM::ORRrr:
2539 case ARM::EORrr: {
2540 if (!ARM_AM::isSOImmTwoPartVal(ImmVal))
2541 return false;
2542 SOImmValV1 = (uint32_t)ARM_AM::getSOImmTwoPartFirst(ImmVal);
2543 SOImmValV2 = (uint32_t)ARM_AM::getSOImmTwoPartSecond(ImmVal);
2544 switch (UseOpc) {
2545 default: break;
2546 case ARM::ADDrr: NewUseOpc = ARM::ADDri; break;
2547 case ARM::ORRrr: NewUseOpc = ARM::ORRri; break;
2548 case ARM::EORrr: NewUseOpc = ARM::EORri; break;
2549 }
2550 break;
2551 }
2552 case ARM::t2SUBrr: {
2553 if (Commute)
2554 return false;
2555 ImmVal = -ImmVal;
2556 NewUseOpc = ARM::t2SUBri;
2557 // Fallthrough
2558 }
2559 case ARM::t2ADDrr:
2560 case ARM::t2ORRrr:
2561 case ARM::t2EORrr: {
2562 if (!ARM_AM::isT2SOImmTwoPartVal(ImmVal))
2563 return false;
2564 SOImmValV1 = (uint32_t)ARM_AM::getT2SOImmTwoPartFirst(ImmVal);
2565 SOImmValV2 = (uint32_t)ARM_AM::getT2SOImmTwoPartSecond(ImmVal);
2566 switch (UseOpc) {
2567 default: break;
2568 case ARM::t2ADDrr: NewUseOpc = ARM::t2ADDri; break;
2569 case ARM::t2ORRrr: NewUseOpc = ARM::t2ORRri; break;
2570 case ARM::t2EORrr: NewUseOpc = ARM::t2EORri; break;
2571 }
2572 break;
2573 }
2574 }
2575 }
2576 }
2577
2578 unsigned OpIdx = Commute ? 2 : 1;
2579 unsigned Reg1 = UseMI->getOperand(OpIdx).getReg();
2580 bool isKill = UseMI->getOperand(OpIdx).isKill();
2581 unsigned NewReg = MRI->createVirtualRegister(MRI->getRegClass(Reg));
2582 AddDefaultCC(AddDefaultPred(BuildMI(*UseMI->getParent(),
Evan Cheng7fae11b2011-12-14 02:11:42 +00002583 UseMI, UseMI->getDebugLoc(),
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00002584 get(NewUseOpc), NewReg)
2585 .addReg(Reg1, getKillRegState(isKill))
2586 .addImm(SOImmValV1)));
2587 UseMI->setDesc(get(NewUseOpc));
2588 UseMI->getOperand(1).setReg(NewReg);
2589 UseMI->getOperand(1).setIsKill();
2590 UseMI->getOperand(2).ChangeToImmediate(SOImmValV2);
2591 DefMI->eraseFromParent();
2592 return true;
2593}
2594
Bob Wilsone8a549c2012-09-29 21:43:49 +00002595static unsigned getNumMicroOpsSwiftLdSt(const InstrItineraryData *ItinData,
2596 const MachineInstr *MI) {
2597 switch (MI->getOpcode()) {
2598 default: {
2599 const MCInstrDesc &Desc = MI->getDesc();
2600 int UOps = ItinData->getNumMicroOps(Desc.getSchedClass());
2601 assert(UOps >= 0 && "bad # UOps");
2602 return UOps;
2603 }
2604
2605 case ARM::LDRrs:
2606 case ARM::LDRBrs:
2607 case ARM::STRrs:
2608 case ARM::STRBrs: {
2609 unsigned ShOpVal = MI->getOperand(3).getImm();
2610 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2611 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2612 if (!isSub &&
2613 (ShImm == 0 ||
2614 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2615 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2616 return 1;
2617 return 2;
2618 }
2619
2620 case ARM::LDRH:
2621 case ARM::STRH: {
2622 if (!MI->getOperand(2).getReg())
2623 return 1;
2624
2625 unsigned ShOpVal = MI->getOperand(3).getImm();
2626 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2627 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2628 if (!isSub &&
2629 (ShImm == 0 ||
2630 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2631 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2632 return 1;
2633 return 2;
2634 }
2635
2636 case ARM::LDRSB:
2637 case ARM::LDRSH:
2638 return (ARM_AM::getAM3Op(MI->getOperand(3).getImm()) == ARM_AM::sub) ? 3:2;
2639
2640 case ARM::LDRSB_POST:
2641 case ARM::LDRSH_POST: {
2642 unsigned Rt = MI->getOperand(0).getReg();
2643 unsigned Rm = MI->getOperand(3).getReg();
2644 return (Rt == Rm) ? 4 : 3;
2645 }
2646
2647 case ARM::LDR_PRE_REG:
2648 case ARM::LDRB_PRE_REG: {
2649 unsigned Rt = MI->getOperand(0).getReg();
2650 unsigned Rm = MI->getOperand(3).getReg();
2651 if (Rt == Rm)
2652 return 3;
2653 unsigned ShOpVal = MI->getOperand(4).getImm();
2654 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2655 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2656 if (!isSub &&
2657 (ShImm == 0 ||
2658 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2659 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2660 return 2;
2661 return 3;
2662 }
2663
2664 case ARM::STR_PRE_REG:
2665 case ARM::STRB_PRE_REG: {
2666 unsigned ShOpVal = MI->getOperand(4).getImm();
2667 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2668 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2669 if (!isSub &&
2670 (ShImm == 0 ||
2671 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2672 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2673 return 2;
2674 return 3;
2675 }
2676
2677 case ARM::LDRH_PRE:
2678 case ARM::STRH_PRE: {
2679 unsigned Rt = MI->getOperand(0).getReg();
2680 unsigned Rm = MI->getOperand(3).getReg();
2681 if (!Rm)
2682 return 2;
2683 if (Rt == Rm)
2684 return 3;
2685 return (ARM_AM::getAM3Op(MI->getOperand(4).getImm()) == ARM_AM::sub)
2686 ? 3 : 2;
2687 }
2688
2689 case ARM::LDR_POST_REG:
2690 case ARM::LDRB_POST_REG:
2691 case ARM::LDRH_POST: {
2692 unsigned Rt = MI->getOperand(0).getReg();
2693 unsigned Rm = MI->getOperand(3).getReg();
2694 return (Rt == Rm) ? 3 : 2;
2695 }
2696
2697 case ARM::LDR_PRE_IMM:
2698 case ARM::LDRB_PRE_IMM:
2699 case ARM::LDR_POST_IMM:
2700 case ARM::LDRB_POST_IMM:
2701 case ARM::STRB_POST_IMM:
2702 case ARM::STRB_POST_REG:
2703 case ARM::STRB_PRE_IMM:
2704 case ARM::STRH_POST:
2705 case ARM::STR_POST_IMM:
2706 case ARM::STR_POST_REG:
2707 case ARM::STR_PRE_IMM:
2708 return 2;
2709
2710 case ARM::LDRSB_PRE:
2711 case ARM::LDRSH_PRE: {
2712 unsigned Rm = MI->getOperand(3).getReg();
2713 if (Rm == 0)
2714 return 3;
2715 unsigned Rt = MI->getOperand(0).getReg();
2716 if (Rt == Rm)
2717 return 4;
2718 unsigned ShOpVal = MI->getOperand(4).getImm();
2719 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2720 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2721 if (!isSub &&
2722 (ShImm == 0 ||
2723 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2724 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2725 return 3;
2726 return 4;
2727 }
2728
2729 case ARM::LDRD: {
2730 unsigned Rt = MI->getOperand(0).getReg();
2731 unsigned Rn = MI->getOperand(2).getReg();
2732 unsigned Rm = MI->getOperand(3).getReg();
2733 if (Rm)
2734 return (ARM_AM::getAM3Op(MI->getOperand(4).getImm()) == ARM_AM::sub) ?4:3;
2735 return (Rt == Rn) ? 3 : 2;
2736 }
2737
2738 case ARM::STRD: {
2739 unsigned Rm = MI->getOperand(3).getReg();
2740 if (Rm)
2741 return (ARM_AM::getAM3Op(MI->getOperand(4).getImm()) == ARM_AM::sub) ?4:3;
2742 return 2;
2743 }
2744
2745 case ARM::LDRD_POST:
2746 case ARM::t2LDRD_POST:
2747 return 3;
2748
2749 case ARM::STRD_POST:
2750 case ARM::t2STRD_POST:
2751 return 4;
2752
2753 case ARM::LDRD_PRE: {
2754 unsigned Rt = MI->getOperand(0).getReg();
2755 unsigned Rn = MI->getOperand(3).getReg();
2756 unsigned Rm = MI->getOperand(4).getReg();
2757 if (Rm)
2758 return (ARM_AM::getAM3Op(MI->getOperand(5).getImm()) == ARM_AM::sub) ?5:4;
2759 return (Rt == Rn) ? 4 : 3;
2760 }
2761
2762 case ARM::t2LDRD_PRE: {
2763 unsigned Rt = MI->getOperand(0).getReg();
2764 unsigned Rn = MI->getOperand(3).getReg();
2765 return (Rt == Rn) ? 4 : 3;
2766 }
2767
2768 case ARM::STRD_PRE: {
2769 unsigned Rm = MI->getOperand(4).getReg();
2770 if (Rm)
2771 return (ARM_AM::getAM3Op(MI->getOperand(5).getImm()) == ARM_AM::sub) ?5:4;
2772 return 3;
2773 }
2774
2775 case ARM::t2STRD_PRE:
2776 return 3;
2777
2778 case ARM::t2LDR_POST:
2779 case ARM::t2LDRB_POST:
2780 case ARM::t2LDRB_PRE:
2781 case ARM::t2LDRSBi12:
2782 case ARM::t2LDRSBi8:
2783 case ARM::t2LDRSBpci:
2784 case ARM::t2LDRSBs:
2785 case ARM::t2LDRH_POST:
2786 case ARM::t2LDRH_PRE:
2787 case ARM::t2LDRSBT:
2788 case ARM::t2LDRSB_POST:
2789 case ARM::t2LDRSB_PRE:
2790 case ARM::t2LDRSH_POST:
2791 case ARM::t2LDRSH_PRE:
2792 case ARM::t2LDRSHi12:
2793 case ARM::t2LDRSHi8:
2794 case ARM::t2LDRSHpci:
2795 case ARM::t2LDRSHs:
2796 return 2;
2797
2798 case ARM::t2LDRDi8: {
2799 unsigned Rt = MI->getOperand(0).getReg();
2800 unsigned Rn = MI->getOperand(2).getReg();
2801 return (Rt == Rn) ? 3 : 2;
2802 }
2803
2804 case ARM::t2STRB_POST:
2805 case ARM::t2STRB_PRE:
2806 case ARM::t2STRBs:
2807 case ARM::t2STRDi8:
2808 case ARM::t2STRH_POST:
2809 case ARM::t2STRH_PRE:
2810 case ARM::t2STRHs:
2811 case ARM::t2STR_POST:
2812 case ARM::t2STR_PRE:
2813 case ARM::t2STRs:
2814 return 2;
2815 }
2816}
2817
Andrew Trick2ac6f7d2012-09-14 18:48:46 +00002818// Return the number of 32-bit words loaded by LDM or stored by STM. If this
2819// can't be easily determined return 0 (missing MachineMemOperand).
2820//
2821// FIXME: The current MachineInstr design does not support relying on machine
2822// mem operands to determine the width of a memory access. Instead, we expect
2823// the target to provide this information based on the instruction opcode and
2824// operands. However, using MachineMemOperand is a the best solution now for
2825// two reasons:
2826//
2827// 1) getNumMicroOps tries to infer LDM memory width from the total number of MI
2828// operands. This is much more dangerous than using the MachineMemOperand
2829// sizes because CodeGen passes can insert/remove optional machine operands. In
2830// fact, it's totally incorrect for preRA passes and appears to be wrong for
2831// postRA passes as well.
2832//
2833// 2) getNumLDMAddresses is only used by the scheduling machine model and any
2834// machine model that calls this should handle the unknown (zero size) case.
2835//
2836// Long term, we should require a target hook that verifies MachineMemOperand
2837// sizes during MC lowering. That target hook should be local to MC lowering
2838// because we can't ensure that it is aware of other MI forms. Doing this will
2839// ensure that MachineMemOperands are correctly propagated through all passes.
2840unsigned ARMBaseInstrInfo::getNumLDMAddresses(const MachineInstr *MI) const {
2841 unsigned Size = 0;
2842 for (MachineInstr::mmo_iterator I = MI->memoperands_begin(),
2843 E = MI->memoperands_end(); I != E; ++I) {
2844 Size += (*I)->getSize();
2845 }
2846 return Size / 4;
2847}
2848
Evan Cheng367a5df2010-09-09 18:18:55 +00002849unsigned
Evan Chengdebf9c52010-11-03 00:45:17 +00002850ARMBaseInstrInfo::getNumMicroOps(const InstrItineraryData *ItinData,
2851 const MachineInstr *MI) const {
Evan Chengbf407072010-09-10 01:29:16 +00002852 if (!ItinData || ItinData->isEmpty())
Evan Cheng367a5df2010-09-09 18:18:55 +00002853 return 1;
2854
Evan Cheng6cc775f2011-06-28 19:10:37 +00002855 const MCInstrDesc &Desc = MI->getDesc();
Evan Cheng367a5df2010-09-09 18:18:55 +00002856 unsigned Class = Desc.getSchedClass();
Andrew Trickf161e392012-07-02 18:10:42 +00002857 int ItinUOps = ItinData->getNumMicroOps(Class);
Bob Wilsone8a549c2012-09-29 21:43:49 +00002858 if (ItinUOps >= 0) {
2859 if (Subtarget.isSwift() && (Desc.mayLoad() || Desc.mayStore()))
2860 return getNumMicroOpsSwiftLdSt(ItinData, MI);
2861
Andrew Trickf161e392012-07-02 18:10:42 +00002862 return ItinUOps;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002863 }
Evan Cheng367a5df2010-09-09 18:18:55 +00002864
2865 unsigned Opc = MI->getOpcode();
2866 switch (Opc) {
2867 default:
2868 llvm_unreachable("Unexpected multi-uops instruction!");
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002869 case ARM::VLDMQIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002870 case ARM::VSTMQIA:
Evan Cheng367a5df2010-09-09 18:18:55 +00002871 return 2;
2872
2873 // The number of uOps for load / store multiple are determined by the number
2874 // registers.
Andrew Trickc416ba62010-12-24 04:28:06 +00002875 //
Evan Chengbf407072010-09-10 01:29:16 +00002876 // On Cortex-A8, each pair of register loads / stores can be scheduled on the
2877 // same cycle. The scheduling for the first load / store must be done
Sylvestre Ledru35521e22012-07-23 08:51:15 +00002878 // separately by assuming the address is not 64-bit aligned.
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002879 //
Evan Chengbf407072010-09-10 01:29:16 +00002880 // On Cortex-A9, the formula is simply (#reg / 2) + (#reg % 2). If the address
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002881 // is not 64-bit aligned, then AGU would take an extra cycle. For VFP / NEON
2882 // load / store multiple, the formula is (#reg / 2) + (#reg % 2) + 1.
2883 case ARM::VLDMDIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002884 case ARM::VLDMDIA_UPD:
2885 case ARM::VLDMDDB_UPD:
2886 case ARM::VLDMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002887 case ARM::VLDMSIA_UPD:
2888 case ARM::VLDMSDB_UPD:
2889 case ARM::VSTMDIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002890 case ARM::VSTMDIA_UPD:
2891 case ARM::VSTMDDB_UPD:
2892 case ARM::VSTMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002893 case ARM::VSTMSIA_UPD:
2894 case ARM::VSTMSDB_UPD: {
Evan Cheng367a5df2010-09-09 18:18:55 +00002895 unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands();
2896 return (NumRegs / 2) + (NumRegs % 2) + 1;
2897 }
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002898
2899 case ARM::LDMIA_RET:
2900 case ARM::LDMIA:
2901 case ARM::LDMDA:
2902 case ARM::LDMDB:
2903 case ARM::LDMIB:
2904 case ARM::LDMIA_UPD:
2905 case ARM::LDMDA_UPD:
2906 case ARM::LDMDB_UPD:
2907 case ARM::LDMIB_UPD:
2908 case ARM::STMIA:
2909 case ARM::STMDA:
2910 case ARM::STMDB:
2911 case ARM::STMIB:
2912 case ARM::STMIA_UPD:
2913 case ARM::STMDA_UPD:
2914 case ARM::STMDB_UPD:
2915 case ARM::STMIB_UPD:
2916 case ARM::tLDMIA:
2917 case ARM::tLDMIA_UPD:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002918 case ARM::tSTMIA_UPD:
Evan Cheng367a5df2010-09-09 18:18:55 +00002919 case ARM::tPOP_RET:
2920 case ARM::tPOP:
2921 case ARM::tPUSH:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00002922 case ARM::t2LDMIA_RET:
2923 case ARM::t2LDMIA:
2924 case ARM::t2LDMDB:
2925 case ARM::t2LDMIA_UPD:
2926 case ARM::t2LDMDB_UPD:
2927 case ARM::t2STMIA:
2928 case ARM::t2STMDB:
2929 case ARM::t2STMIA_UPD:
2930 case ARM::t2STMDB_UPD: {
Evan Chengbf407072010-09-10 01:29:16 +00002931 unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands() + 1;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002932 if (Subtarget.isSwift()) {
Bob Wilsone8a549c2012-09-29 21:43:49 +00002933 int UOps = 1 + NumRegs; // One for address computation, one for each ld / st.
2934 switch (Opc) {
2935 default: break;
2936 case ARM::VLDMDIA_UPD:
2937 case ARM::VLDMDDB_UPD:
2938 case ARM::VLDMSIA_UPD:
2939 case ARM::VLDMSDB_UPD:
2940 case ARM::VSTMDIA_UPD:
2941 case ARM::VSTMDDB_UPD:
2942 case ARM::VSTMSIA_UPD:
2943 case ARM::VSTMSDB_UPD:
2944 case ARM::LDMIA_UPD:
2945 case ARM::LDMDA_UPD:
2946 case ARM::LDMDB_UPD:
2947 case ARM::LDMIB_UPD:
2948 case ARM::STMIA_UPD:
2949 case ARM::STMDA_UPD:
2950 case ARM::STMDB_UPD:
2951 case ARM::STMIB_UPD:
2952 case ARM::tLDMIA_UPD:
2953 case ARM::tSTMIA_UPD:
2954 case ARM::t2LDMIA_UPD:
2955 case ARM::t2LDMDB_UPD:
2956 case ARM::t2STMIA_UPD:
2957 case ARM::t2STMDB_UPD:
2958 ++UOps; // One for base register writeback.
2959 break;
2960 case ARM::LDMIA_RET:
2961 case ARM::tPOP_RET:
2962 case ARM::t2LDMIA_RET:
2963 UOps += 2; // One for base reg wb, one for write to pc.
2964 break;
2965 }
2966 return UOps;
2967 } else if (Subtarget.isCortexA8()) {
Evan Chengdebf9c52010-11-03 00:45:17 +00002968 if (NumRegs < 4)
2969 return 2;
2970 // 4 registers would be issued: 2, 2.
2971 // 5 registers would be issued: 2, 2, 1.
Andrew Trickf161e392012-07-02 18:10:42 +00002972 int A8UOps = (NumRegs / 2);
Evan Chengdebf9c52010-11-03 00:45:17 +00002973 if (NumRegs % 2)
Andrew Trickf161e392012-07-02 18:10:42 +00002974 ++A8UOps;
2975 return A8UOps;
Bob Wilsone8a549c2012-09-29 21:43:49 +00002976 } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
Andrew Trickf161e392012-07-02 18:10:42 +00002977 int A9UOps = (NumRegs / 2);
Evan Chengbf407072010-09-10 01:29:16 +00002978 // If there are odd number of registers or if it's not 64-bit aligned,
2979 // then it takes an extra AGU (Address Generation Unit) cycle.
2980 if ((NumRegs % 2) ||
2981 !MI->hasOneMemOperand() ||
2982 (*MI->memoperands_begin())->getAlignment() < 8)
Andrew Trickf161e392012-07-02 18:10:42 +00002983 ++A9UOps;
2984 return A9UOps;
Evan Chengbf407072010-09-10 01:29:16 +00002985 } else {
2986 // Assume the worst.
2987 return NumRegs;
Michael J. Spencere7f00cb2010-10-05 06:00:33 +00002988 }
Evan Cheng367a5df2010-09-09 18:18:55 +00002989 }
2990 }
2991}
Evan Cheng49d4c0b2010-10-06 06:27:31 +00002992
2993int
Evan Cheng412e37b2010-10-07 23:12:15 +00002994ARMBaseInstrInfo::getVLDMDefCycle(const InstrItineraryData *ItinData,
Evan Cheng6cc775f2011-06-28 19:10:37 +00002995 const MCInstrDesc &DefMCID,
Evan Cheng412e37b2010-10-07 23:12:15 +00002996 unsigned DefClass,
2997 unsigned DefIdx, unsigned DefAlign) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +00002998 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
Evan Cheng412e37b2010-10-07 23:12:15 +00002999 if (RegNo <= 0)
3000 // Def is the address writeback.
3001 return ItinData->getOperandCycle(DefClass, DefIdx);
3002
3003 int DefCycle;
3004 if (Subtarget.isCortexA8()) {
3005 // (regno / 2) + (regno % 2) + 1
3006 DefCycle = RegNo / 2 + 1;
3007 if (RegNo % 2)
3008 ++DefCycle;
Bob Wilsone8a549c2012-09-29 21:43:49 +00003009 } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00003010 DefCycle = RegNo;
3011 bool isSLoad = false;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003012
Evan Cheng6cc775f2011-06-28 19:10:37 +00003013 switch (DefMCID.getOpcode()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00003014 default: break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003015 case ARM::VLDMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003016 case ARM::VLDMSIA_UPD:
3017 case ARM::VLDMSDB_UPD:
Evan Cheng412e37b2010-10-07 23:12:15 +00003018 isSLoad = true;
3019 break;
3020 }
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003021
Evan Cheng412e37b2010-10-07 23:12:15 +00003022 // If there are odd number of 'S' registers or if it's not 64-bit aligned,
3023 // then it takes an extra cycle.
3024 if ((isSLoad && (RegNo % 2)) || DefAlign < 8)
3025 ++DefCycle;
3026 } else {
3027 // Assume the worst.
3028 DefCycle = RegNo + 2;
3029 }
3030
3031 return DefCycle;
3032}
3033
3034int
3035ARMBaseInstrInfo::getLDMDefCycle(const InstrItineraryData *ItinData,
Evan Cheng6cc775f2011-06-28 19:10:37 +00003036 const MCInstrDesc &DefMCID,
Evan Cheng412e37b2010-10-07 23:12:15 +00003037 unsigned DefClass,
3038 unsigned DefIdx, unsigned DefAlign) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +00003039 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
Evan Cheng412e37b2010-10-07 23:12:15 +00003040 if (RegNo <= 0)
3041 // Def is the address writeback.
3042 return ItinData->getOperandCycle(DefClass, DefIdx);
3043
3044 int DefCycle;
3045 if (Subtarget.isCortexA8()) {
3046 // 4 registers would be issued: 1, 2, 1.
3047 // 5 registers would be issued: 1, 2, 2.
3048 DefCycle = RegNo / 2;
3049 if (DefCycle < 1)
3050 DefCycle = 1;
3051 // Result latency is issue cycle + 2: E2.
3052 DefCycle += 2;
Bob Wilsone8a549c2012-09-29 21:43:49 +00003053 } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00003054 DefCycle = (RegNo / 2);
3055 // If there are odd number of registers or if it's not 64-bit aligned,
3056 // then it takes an extra AGU (Address Generation Unit) cycle.
3057 if ((RegNo % 2) || DefAlign < 8)
3058 ++DefCycle;
3059 // Result latency is AGU cycles + 2.
3060 DefCycle += 2;
3061 } else {
3062 // Assume the worst.
3063 DefCycle = RegNo + 2;
3064 }
3065
3066 return DefCycle;
3067}
3068
3069int
3070ARMBaseInstrInfo::getVSTMUseCycle(const InstrItineraryData *ItinData,
Evan Cheng6cc775f2011-06-28 19:10:37 +00003071 const MCInstrDesc &UseMCID,
Evan Cheng412e37b2010-10-07 23:12:15 +00003072 unsigned UseClass,
3073 unsigned UseIdx, unsigned UseAlign) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +00003074 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
Evan Cheng412e37b2010-10-07 23:12:15 +00003075 if (RegNo <= 0)
3076 return ItinData->getOperandCycle(UseClass, UseIdx);
3077
3078 int UseCycle;
3079 if (Subtarget.isCortexA8()) {
3080 // (regno / 2) + (regno % 2) + 1
3081 UseCycle = RegNo / 2 + 1;
3082 if (RegNo % 2)
3083 ++UseCycle;
Bob Wilsone8a549c2012-09-29 21:43:49 +00003084 } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00003085 UseCycle = RegNo;
3086 bool isSStore = false;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003087
Evan Cheng6cc775f2011-06-28 19:10:37 +00003088 switch (UseMCID.getOpcode()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00003089 default: break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003090 case ARM::VSTMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003091 case ARM::VSTMSIA_UPD:
3092 case ARM::VSTMSDB_UPD:
Evan Cheng412e37b2010-10-07 23:12:15 +00003093 isSStore = true;
3094 break;
3095 }
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003096
Evan Cheng412e37b2010-10-07 23:12:15 +00003097 // If there are odd number of 'S' registers or if it's not 64-bit aligned,
3098 // then it takes an extra cycle.
3099 if ((isSStore && (RegNo % 2)) || UseAlign < 8)
3100 ++UseCycle;
3101 } else {
3102 // Assume the worst.
3103 UseCycle = RegNo + 2;
3104 }
3105
3106 return UseCycle;
3107}
3108
3109int
3110ARMBaseInstrInfo::getSTMUseCycle(const InstrItineraryData *ItinData,
Evan Cheng6cc775f2011-06-28 19:10:37 +00003111 const MCInstrDesc &UseMCID,
Evan Cheng412e37b2010-10-07 23:12:15 +00003112 unsigned UseClass,
3113 unsigned UseIdx, unsigned UseAlign) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +00003114 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
Evan Cheng412e37b2010-10-07 23:12:15 +00003115 if (RegNo <= 0)
3116 return ItinData->getOperandCycle(UseClass, UseIdx);
3117
3118 int UseCycle;
3119 if (Subtarget.isCortexA8()) {
3120 UseCycle = RegNo / 2;
3121 if (UseCycle < 2)
3122 UseCycle = 2;
3123 // Read in E3.
3124 UseCycle += 2;
Bob Wilsone8a549c2012-09-29 21:43:49 +00003125 } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
Evan Cheng412e37b2010-10-07 23:12:15 +00003126 UseCycle = (RegNo / 2);
3127 // If there are odd number of registers or if it's not 64-bit aligned,
3128 // then it takes an extra AGU (Address Generation Unit) cycle.
3129 if ((RegNo % 2) || UseAlign < 8)
3130 ++UseCycle;
3131 } else {
3132 // Assume the worst.
3133 UseCycle = 1;
3134 }
3135 return UseCycle;
3136}
3137
3138int
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003139ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
Evan Cheng6cc775f2011-06-28 19:10:37 +00003140 const MCInstrDesc &DefMCID,
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003141 unsigned DefIdx, unsigned DefAlign,
Evan Cheng6cc775f2011-06-28 19:10:37 +00003142 const MCInstrDesc &UseMCID,
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003143 unsigned UseIdx, unsigned UseAlign) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +00003144 unsigned DefClass = DefMCID.getSchedClass();
3145 unsigned UseClass = UseMCID.getSchedClass();
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003146
Evan Cheng6cc775f2011-06-28 19:10:37 +00003147 if (DefIdx < DefMCID.getNumDefs() && UseIdx < UseMCID.getNumOperands())
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003148 return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx);
3149
3150 // This may be a def / use of a variable_ops instruction, the operand
3151 // latency might be determinable dynamically. Let the target try to
3152 // figure it out.
Evan Chenge2c211c2010-10-28 02:00:25 +00003153 int DefCycle = -1;
Evan Chengff310732010-10-28 06:47:08 +00003154 bool LdmBypass = false;
Evan Cheng6cc775f2011-06-28 19:10:37 +00003155 switch (DefMCID.getOpcode()) {
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003156 default:
3157 DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
3158 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003159
3160 case ARM::VLDMDIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003161 case ARM::VLDMDIA_UPD:
3162 case ARM::VLDMDDB_UPD:
3163 case ARM::VLDMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003164 case ARM::VLDMSIA_UPD:
3165 case ARM::VLDMSDB_UPD:
Evan Cheng6cc775f2011-06-28 19:10:37 +00003166 DefCycle = getVLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
Evan Cheng1958cef2010-10-07 01:50:48 +00003167 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003168
3169 case ARM::LDMIA_RET:
3170 case ARM::LDMIA:
3171 case ARM::LDMDA:
3172 case ARM::LDMDB:
3173 case ARM::LDMIB:
3174 case ARM::LDMIA_UPD:
3175 case ARM::LDMDA_UPD:
3176 case ARM::LDMDB_UPD:
3177 case ARM::LDMIB_UPD:
3178 case ARM::tLDMIA:
3179 case ARM::tLDMIA_UPD:
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003180 case ARM::tPUSH:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003181 case ARM::t2LDMIA_RET:
3182 case ARM::t2LDMIA:
3183 case ARM::t2LDMDB:
3184 case ARM::t2LDMIA_UPD:
3185 case ARM::t2LDMDB_UPD:
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003186 LdmBypass = 1;
Evan Cheng6cc775f2011-06-28 19:10:37 +00003187 DefCycle = getLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
Evan Cheng412e37b2010-10-07 23:12:15 +00003188 break;
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003189 }
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003190
3191 if (DefCycle == -1)
3192 // We can't seem to determine the result latency of the def, assume it's 2.
3193 DefCycle = 2;
3194
3195 int UseCycle = -1;
Evan Cheng6cc775f2011-06-28 19:10:37 +00003196 switch (UseMCID.getOpcode()) {
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003197 default:
3198 UseCycle = ItinData->getOperandCycle(UseClass, UseIdx);
3199 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003200
3201 case ARM::VSTMDIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003202 case ARM::VSTMDIA_UPD:
3203 case ARM::VSTMDDB_UPD:
3204 case ARM::VSTMSIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003205 case ARM::VSTMSIA_UPD:
3206 case ARM::VSTMSDB_UPD:
Evan Cheng6cc775f2011-06-28 19:10:37 +00003207 UseCycle = getVSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
Evan Cheng1958cef2010-10-07 01:50:48 +00003208 break;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003209
3210 case ARM::STMIA:
3211 case ARM::STMDA:
3212 case ARM::STMDB:
3213 case ARM::STMIB:
3214 case ARM::STMIA_UPD:
3215 case ARM::STMDA_UPD:
3216 case ARM::STMDB_UPD:
3217 case ARM::STMIB_UPD:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003218 case ARM::tSTMIA_UPD:
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003219 case ARM::tPOP_RET:
3220 case ARM::tPOP:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003221 case ARM::t2STMIA:
3222 case ARM::t2STMDB:
3223 case ARM::t2STMIA_UPD:
3224 case ARM::t2STMDB_UPD:
Evan Cheng6cc775f2011-06-28 19:10:37 +00003225 UseCycle = getSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
Evan Cheng1958cef2010-10-07 01:50:48 +00003226 break;
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003227 }
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003228
3229 if (UseCycle == -1)
3230 // Assume it's read in the first stage.
3231 UseCycle = 1;
3232
3233 UseCycle = DefCycle - UseCycle + 1;
3234 if (UseCycle > 0) {
3235 if (LdmBypass) {
3236 // It's a variable_ops instruction so we can't use DefIdx here. Just use
3237 // first def operand.
Evan Cheng6cc775f2011-06-28 19:10:37 +00003238 if (ItinData->hasPipelineForwarding(DefClass, DefMCID.getNumOperands()-1,
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003239 UseClass, UseIdx))
3240 --UseCycle;
3241 } else if (ItinData->hasPipelineForwarding(DefClass, DefIdx,
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003242 UseClass, UseIdx)) {
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003243 --UseCycle;
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003244 }
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003245 }
3246
3247 return UseCycle;
3248}
3249
Evan Cheng7fae11b2011-12-14 02:11:42 +00003250static const MachineInstr *getBundledDefMI(const TargetRegisterInfo *TRI,
Evan Chengda103bf2011-12-14 20:00:08 +00003251 const MachineInstr *MI, unsigned Reg,
Evan Cheng7fae11b2011-12-14 02:11:42 +00003252 unsigned &DefIdx, unsigned &Dist) {
3253 Dist = 0;
3254
3255 MachineBasicBlock::const_iterator I = MI; ++I;
3256 MachineBasicBlock::const_instr_iterator II =
3257 llvm::prior(I.getInstrIterator());
3258 assert(II->isInsideBundle() && "Empty bundle?");
3259
3260 int Idx = -1;
Evan Cheng7fae11b2011-12-14 02:11:42 +00003261 while (II->isInsideBundle()) {
3262 Idx = II->findRegisterDefOperandIdx(Reg, false, true, TRI);
3263 if (Idx != -1)
3264 break;
3265 --II;
3266 ++Dist;
3267 }
3268
3269 assert(Idx != -1 && "Cannot find bundled definition!");
3270 DefIdx = Idx;
3271 return II;
3272}
3273
3274static const MachineInstr *getBundledUseMI(const TargetRegisterInfo *TRI,
Evan Chengda103bf2011-12-14 20:00:08 +00003275 const MachineInstr *MI, unsigned Reg,
Evan Cheng7fae11b2011-12-14 02:11:42 +00003276 unsigned &UseIdx, unsigned &Dist) {
3277 Dist = 0;
3278
3279 MachineBasicBlock::const_instr_iterator II = MI; ++II;
3280 assert(II->isInsideBundle() && "Empty bundle?");
3281 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
3282
3283 // FIXME: This doesn't properly handle multiple uses.
3284 int Idx = -1;
Evan Cheng7fae11b2011-12-14 02:11:42 +00003285 while (II != E && II->isInsideBundle()) {
3286 Idx = II->findRegisterUseOperandIdx(Reg, false, TRI);
3287 if (Idx != -1)
3288 break;
3289 if (II->getOpcode() != ARM::t2IT)
3290 ++Dist;
3291 ++II;
3292 }
3293
Evan Chengda103bf2011-12-14 20:00:08 +00003294 if (Idx == -1) {
3295 Dist = 0;
3296 return 0;
3297 }
3298
Evan Cheng7fae11b2011-12-14 02:11:42 +00003299 UseIdx = Idx;
3300 return II;
3301}
3302
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003303/// Return the number of cycles to add to (or subtract from) the static
3304/// itinerary based on the def opcode and alignment. The caller will ensure that
3305/// adjusted latency is at least one cycle.
3306static int adjustDefLatency(const ARMSubtarget &Subtarget,
3307 const MachineInstr *DefMI,
3308 const MCInstrDesc *DefMCID, unsigned DefAlign) {
3309 int Adjust = 0;
Silviu Barangab47bb942012-09-13 15:05:10 +00003310 if (Subtarget.isCortexA8() || Subtarget.isLikeA9()) {
Evan Chengff310732010-10-28 06:47:08 +00003311 // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
3312 // variants are one cycle cheaper.
Evan Cheng7fae11b2011-12-14 02:11:42 +00003313 switch (DefMCID->getOpcode()) {
Evan Chengff310732010-10-28 06:47:08 +00003314 default: break;
Jakob Stoklund Olesenb3de7b12012-08-28 03:11:27 +00003315 case ARM::LDRrs:
3316 case ARM::LDRBrs: {
Evan Chengff310732010-10-28 06:47:08 +00003317 unsigned ShOpVal = DefMI->getOperand(3).getImm();
3318 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3319 if (ShImm == 0 ||
3320 (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003321 --Adjust;
Evan Chengff310732010-10-28 06:47:08 +00003322 break;
3323 }
Jakob Stoklund Olesenb3de7b12012-08-28 03:11:27 +00003324 case ARM::t2LDRs:
3325 case ARM::t2LDRBs:
3326 case ARM::t2LDRHs:
Evan Chengff310732010-10-28 06:47:08 +00003327 case ARM::t2LDRSHs: {
3328 // Thumb2 mode: lsl only.
3329 unsigned ShAmt = DefMI->getOperand(3).getImm();
3330 if (ShAmt == 0 || ShAmt == 2)
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003331 --Adjust;
Evan Chengff310732010-10-28 06:47:08 +00003332 break;
3333 }
3334 }
Bob Wilsone8a549c2012-09-29 21:43:49 +00003335 } else if (Subtarget.isSwift()) {
3336 // FIXME: Properly handle all of the latency adjustments for address
3337 // writeback.
3338 switch (DefMCID->getOpcode()) {
3339 default: break;
3340 case ARM::LDRrs:
3341 case ARM::LDRBrs: {
3342 unsigned ShOpVal = DefMI->getOperand(3).getImm();
3343 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
3344 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3345 if (!isSub &&
3346 (ShImm == 0 ||
3347 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
3348 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
3349 Adjust -= 2;
3350 else if (!isSub &&
3351 ShImm == 1 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsr)
3352 --Adjust;
3353 break;
3354 }
3355 case ARM::t2LDRs:
3356 case ARM::t2LDRBs:
3357 case ARM::t2LDRHs:
3358 case ARM::t2LDRSHs: {
3359 // Thumb2 mode: lsl only.
3360 unsigned ShAmt = DefMI->getOperand(3).getImm();
3361 if (ShAmt == 0 || ShAmt == 1 || ShAmt == 2 || ShAmt == 3)
3362 Adjust -= 2;
3363 break;
3364 }
3365 }
Evan Chengff310732010-10-28 06:47:08 +00003366 }
3367
Silviu Barangab47bb942012-09-13 15:05:10 +00003368 if (DefAlign < 8 && Subtarget.isLikeA9()) {
Evan Cheng7fae11b2011-12-14 02:11:42 +00003369 switch (DefMCID->getOpcode()) {
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003370 default: break;
3371 case ARM::VLD1q8:
3372 case ARM::VLD1q16:
3373 case ARM::VLD1q32:
3374 case ARM::VLD1q64:
Jim Grosbach2098cb12011-10-24 21:45:13 +00003375 case ARM::VLD1q8wb_fixed:
3376 case ARM::VLD1q16wb_fixed:
3377 case ARM::VLD1q32wb_fixed:
3378 case ARM::VLD1q64wb_fixed:
3379 case ARM::VLD1q8wb_register:
3380 case ARM::VLD1q16wb_register:
3381 case ARM::VLD1q32wb_register:
3382 case ARM::VLD1q64wb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003383 case ARM::VLD2d8:
3384 case ARM::VLD2d16:
3385 case ARM::VLD2d32:
3386 case ARM::VLD2q8:
3387 case ARM::VLD2q16:
3388 case ARM::VLD2q32:
Jim Grosbachd146a022011-12-09 21:28:25 +00003389 case ARM::VLD2d8wb_fixed:
3390 case ARM::VLD2d16wb_fixed:
3391 case ARM::VLD2d32wb_fixed:
3392 case ARM::VLD2q8wb_fixed:
3393 case ARM::VLD2q16wb_fixed:
3394 case ARM::VLD2q32wb_fixed:
3395 case ARM::VLD2d8wb_register:
3396 case ARM::VLD2d16wb_register:
3397 case ARM::VLD2d32wb_register:
3398 case ARM::VLD2q8wb_register:
3399 case ARM::VLD2q16wb_register:
3400 case ARM::VLD2q32wb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003401 case ARM::VLD3d8:
3402 case ARM::VLD3d16:
3403 case ARM::VLD3d32:
3404 case ARM::VLD1d64T:
3405 case ARM::VLD3d8_UPD:
3406 case ARM::VLD3d16_UPD:
3407 case ARM::VLD3d32_UPD:
Jim Grosbach92fd05e2011-10-24 23:26:05 +00003408 case ARM::VLD1d64Twb_fixed:
3409 case ARM::VLD1d64Twb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003410 case ARM::VLD3q8_UPD:
3411 case ARM::VLD3q16_UPD:
3412 case ARM::VLD3q32_UPD:
3413 case ARM::VLD4d8:
3414 case ARM::VLD4d16:
3415 case ARM::VLD4d32:
3416 case ARM::VLD1d64Q:
3417 case ARM::VLD4d8_UPD:
3418 case ARM::VLD4d16_UPD:
3419 case ARM::VLD4d32_UPD:
Jim Grosbach17ec1a12011-10-25 00:14:01 +00003420 case ARM::VLD1d64Qwb_fixed:
3421 case ARM::VLD1d64Qwb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003422 case ARM::VLD4q8_UPD:
3423 case ARM::VLD4q16_UPD:
3424 case ARM::VLD4q32_UPD:
3425 case ARM::VLD1DUPq8:
3426 case ARM::VLD1DUPq16:
3427 case ARM::VLD1DUPq32:
Jim Grosbacha68c9a82011-11-30 19:35:44 +00003428 case ARM::VLD1DUPq8wb_fixed:
3429 case ARM::VLD1DUPq16wb_fixed:
3430 case ARM::VLD1DUPq32wb_fixed:
3431 case ARM::VLD1DUPq8wb_register:
3432 case ARM::VLD1DUPq16wb_register:
3433 case ARM::VLD1DUPq32wb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003434 case ARM::VLD2DUPd8:
3435 case ARM::VLD2DUPd16:
3436 case ARM::VLD2DUPd32:
Jim Grosbachc80a2642011-12-21 19:40:55 +00003437 case ARM::VLD2DUPd8wb_fixed:
3438 case ARM::VLD2DUPd16wb_fixed:
3439 case ARM::VLD2DUPd32wb_fixed:
3440 case ARM::VLD2DUPd8wb_register:
3441 case ARM::VLD2DUPd16wb_register:
3442 case ARM::VLD2DUPd32wb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003443 case ARM::VLD4DUPd8:
3444 case ARM::VLD4DUPd16:
3445 case ARM::VLD4DUPd32:
3446 case ARM::VLD4DUPd8_UPD:
3447 case ARM::VLD4DUPd16_UPD:
3448 case ARM::VLD4DUPd32_UPD:
3449 case ARM::VLD1LNd8:
3450 case ARM::VLD1LNd16:
3451 case ARM::VLD1LNd32:
3452 case ARM::VLD1LNd8_UPD:
3453 case ARM::VLD1LNd16_UPD:
3454 case ARM::VLD1LNd32_UPD:
3455 case ARM::VLD2LNd8:
3456 case ARM::VLD2LNd16:
3457 case ARM::VLD2LNd32:
3458 case ARM::VLD2LNq16:
3459 case ARM::VLD2LNq32:
3460 case ARM::VLD2LNd8_UPD:
3461 case ARM::VLD2LNd16_UPD:
3462 case ARM::VLD2LNd32_UPD:
3463 case ARM::VLD2LNq16_UPD:
3464 case ARM::VLD2LNq32_UPD:
3465 case ARM::VLD4LNd8:
3466 case ARM::VLD4LNd16:
3467 case ARM::VLD4LNd32:
3468 case ARM::VLD4LNq16:
3469 case ARM::VLD4LNq32:
3470 case ARM::VLD4LNd8_UPD:
3471 case ARM::VLD4LNd16_UPD:
3472 case ARM::VLD4LNd32_UPD:
3473 case ARM::VLD4LNq16_UPD:
3474 case ARM::VLD4LNq32_UPD:
3475 // If the address is not 64-bit aligned, the latencies of these
3476 // instructions increases by one.
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003477 ++Adjust;
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003478 break;
3479 }
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003480 }
3481 return Adjust;
3482}
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003483
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003484
3485
3486int
3487ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
3488 const MachineInstr *DefMI, unsigned DefIdx,
3489 const MachineInstr *UseMI,
3490 unsigned UseIdx) const {
3491 // No operand latency. The caller may fall back to getInstrLatency.
3492 if (!ItinData || ItinData->isEmpty())
3493 return -1;
3494
3495 const MachineOperand &DefMO = DefMI->getOperand(DefIdx);
3496 unsigned Reg = DefMO.getReg();
3497 const MCInstrDesc *DefMCID = &DefMI->getDesc();
3498 const MCInstrDesc *UseMCID = &UseMI->getDesc();
3499
3500 unsigned DefAdj = 0;
3501 if (DefMI->isBundle()) {
3502 DefMI = getBundledDefMI(&getRegisterInfo(), DefMI, Reg, DefIdx, DefAdj);
3503 DefMCID = &DefMI->getDesc();
3504 }
3505 if (DefMI->isCopyLike() || DefMI->isInsertSubreg() ||
3506 DefMI->isRegSequence() || DefMI->isImplicitDef()) {
3507 return 1;
3508 }
3509
3510 unsigned UseAdj = 0;
3511 if (UseMI->isBundle()) {
3512 unsigned NewUseIdx;
3513 const MachineInstr *NewUseMI = getBundledUseMI(&getRegisterInfo(), UseMI,
3514 Reg, NewUseIdx, UseAdj);
Andrew Trick77d0b882012-06-22 02:50:33 +00003515 if (!NewUseMI)
3516 return -1;
3517
3518 UseMI = NewUseMI;
3519 UseIdx = NewUseIdx;
3520 UseMCID = &UseMI->getDesc();
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003521 }
3522
3523 if (Reg == ARM::CPSR) {
3524 if (DefMI->getOpcode() == ARM::FMSTAT) {
3525 // fpscr -> cpsr stalls over 20 cycles on A8 (and earlier?)
Silviu Barangab47bb942012-09-13 15:05:10 +00003526 return Subtarget.isLikeA9() ? 1 : 20;
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003527 }
3528
3529 // CPSR set and branch can be paired in the same cycle.
3530 if (UseMI->isBranch())
3531 return 0;
3532
3533 // Otherwise it takes the instruction latency (generally one).
3534 unsigned Latency = getInstrLatency(ItinData, DefMI);
3535
3536 // For Thumb2 and -Os, prefer scheduling CPSR setting instruction close to
3537 // its uses. Instructions which are otherwise scheduled between them may
3538 // incur a code size penalty (not able to use the CPSR setting 16-bit
3539 // instructions).
3540 if (Latency > 0 && Subtarget.isThumb2()) {
3541 const MachineFunction *MF = DefMI->getParent()->getParent();
Bill Wendling698e84f2012-12-30 10:32:01 +00003542 if (MF->getFunction()->getAttributes().
3543 hasAttribute(AttributeSet::FunctionIndex,
3544 Attribute::OptimizeForSize))
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003545 --Latency;
3546 }
3547 return Latency;
3548 }
3549
Andrew Trick77d0b882012-06-22 02:50:33 +00003550 if (DefMO.isImplicit() || UseMI->getOperand(UseIdx).isImplicit())
3551 return -1;
3552
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003553 unsigned DefAlign = DefMI->hasOneMemOperand()
3554 ? (*DefMI->memoperands_begin())->getAlignment() : 0;
3555 unsigned UseAlign = UseMI->hasOneMemOperand()
3556 ? (*UseMI->memoperands_begin())->getAlignment() : 0;
3557
3558 // Get the itinerary's latency if possible, and handle variable_ops.
3559 int Latency = getOperandLatency(ItinData, *DefMCID, DefIdx, DefAlign,
3560 *UseMCID, UseIdx, UseAlign);
3561 // Unable to find operand latency. The caller may resort to getInstrLatency.
3562 if (Latency < 0)
3563 return Latency;
3564
3565 // Adjust for IT block position.
3566 int Adj = DefAdj + UseAdj;
3567
3568 // Adjust for dynamic def-side opcode variants not captured by the itinerary.
3569 Adj += adjustDefLatency(Subtarget, DefMI, DefMCID, DefAlign);
3570 if (Adj >= 0 || (int)Latency > -Adj) {
3571 return Latency + Adj;
3572 }
3573 // Return the itinerary latency, which may be zero but not less than zero.
Evan Chengff310732010-10-28 06:47:08 +00003574 return Latency;
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003575}
3576
3577int
3578ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
3579 SDNode *DefNode, unsigned DefIdx,
3580 SDNode *UseNode, unsigned UseIdx) const {
3581 if (!DefNode->isMachineOpcode())
3582 return 1;
3583
Evan Cheng6cc775f2011-06-28 19:10:37 +00003584 const MCInstrDesc &DefMCID = get(DefNode->getMachineOpcode());
Andrew Trick47ff14b2011-01-21 05:51:33 +00003585
Evan Cheng6cc775f2011-06-28 19:10:37 +00003586 if (isZeroCost(DefMCID.Opcode))
Andrew Trick47ff14b2011-01-21 05:51:33 +00003587 return 0;
3588
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003589 if (!ItinData || ItinData->isEmpty())
Evan Cheng6cc775f2011-06-28 19:10:37 +00003590 return DefMCID.mayLoad() ? 3 : 1;
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003591
Evan Cheng6c1414f2010-10-29 18:09:28 +00003592 if (!UseNode->isMachineOpcode()) {
Evan Cheng6cc775f2011-06-28 19:10:37 +00003593 int Latency = ItinData->getOperandCycle(DefMCID.getSchedClass(), DefIdx);
Bob Wilsone8a549c2012-09-29 21:43:49 +00003594 if (Subtarget.isLikeA9() || Subtarget.isSwift())
Evan Cheng6c1414f2010-10-29 18:09:28 +00003595 return Latency <= 2 ? 1 : Latency - 1;
3596 else
3597 return Latency <= 3 ? 1 : Latency - 2;
3598 }
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003599
Evan Cheng6cc775f2011-06-28 19:10:37 +00003600 const MCInstrDesc &UseMCID = get(UseNode->getMachineOpcode());
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003601 const MachineSDNode *DefMN = dyn_cast<MachineSDNode>(DefNode);
3602 unsigned DefAlign = !DefMN->memoperands_empty()
3603 ? (*DefMN->memoperands_begin())->getAlignment() : 0;
3604 const MachineSDNode *UseMN = dyn_cast<MachineSDNode>(UseNode);
3605 unsigned UseAlign = !UseMN->memoperands_empty()
3606 ? (*UseMN->memoperands_begin())->getAlignment() : 0;
Evan Cheng6cc775f2011-06-28 19:10:37 +00003607 int Latency = getOperandLatency(ItinData, DefMCID, DefIdx, DefAlign,
3608 UseMCID, UseIdx, UseAlign);
Evan Chengff310732010-10-28 06:47:08 +00003609
3610 if (Latency > 1 &&
Silviu Barangab47bb942012-09-13 15:05:10 +00003611 (Subtarget.isCortexA8() || Subtarget.isLikeA9())) {
Evan Chengff310732010-10-28 06:47:08 +00003612 // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
3613 // variants are one cycle cheaper.
Evan Cheng6cc775f2011-06-28 19:10:37 +00003614 switch (DefMCID.getOpcode()) {
Evan Chengff310732010-10-28 06:47:08 +00003615 default: break;
Jakob Stoklund Olesenb3de7b12012-08-28 03:11:27 +00003616 case ARM::LDRrs:
3617 case ARM::LDRBrs: {
Evan Chengff310732010-10-28 06:47:08 +00003618 unsigned ShOpVal =
3619 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
3620 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3621 if (ShImm == 0 ||
3622 (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
3623 --Latency;
3624 break;
3625 }
Jakob Stoklund Olesenb3de7b12012-08-28 03:11:27 +00003626 case ARM::t2LDRs:
3627 case ARM::t2LDRBs:
3628 case ARM::t2LDRHs:
Evan Chengff310732010-10-28 06:47:08 +00003629 case ARM::t2LDRSHs: {
3630 // Thumb2 mode: lsl only.
3631 unsigned ShAmt =
3632 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
3633 if (ShAmt == 0 || ShAmt == 2)
3634 --Latency;
3635 break;
3636 }
3637 }
Bob Wilsone8a549c2012-09-29 21:43:49 +00003638 } else if (DefIdx == 0 && Latency > 2 && Subtarget.isSwift()) {
3639 // FIXME: Properly handle all of the latency adjustments for address
3640 // writeback.
3641 switch (DefMCID.getOpcode()) {
3642 default: break;
3643 case ARM::LDRrs:
3644 case ARM::LDRBrs: {
3645 unsigned ShOpVal =
3646 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
3647 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3648 if (ShImm == 0 ||
3649 ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
3650 ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
3651 Latency -= 2;
3652 else if (ShImm == 1 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsr)
3653 --Latency;
3654 break;
3655 }
3656 case ARM::t2LDRs:
3657 case ARM::t2LDRBs:
3658 case ARM::t2LDRHs:
3659 case ARM::t2LDRSHs: {
3660 // Thumb2 mode: lsl 0-3 only.
3661 Latency -= 2;
3662 break;
3663 }
3664 }
Evan Chengff310732010-10-28 06:47:08 +00003665 }
3666
Silviu Barangab47bb942012-09-13 15:05:10 +00003667 if (DefAlign < 8 && Subtarget.isLikeA9())
Evan Cheng6cc775f2011-06-28 19:10:37 +00003668 switch (DefMCID.getOpcode()) {
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003669 default: break;
Jim Grosbachc988e0c2012-03-05 19:33:30 +00003670 case ARM::VLD1q8:
3671 case ARM::VLD1q16:
3672 case ARM::VLD1q32:
3673 case ARM::VLD1q64:
3674 case ARM::VLD1q8wb_register:
3675 case ARM::VLD1q16wb_register:
3676 case ARM::VLD1q32wb_register:
3677 case ARM::VLD1q64wb_register:
3678 case ARM::VLD1q8wb_fixed:
3679 case ARM::VLD1q16wb_fixed:
3680 case ARM::VLD1q32wb_fixed:
3681 case ARM::VLD1q64wb_fixed:
3682 case ARM::VLD2d8:
3683 case ARM::VLD2d16:
3684 case ARM::VLD2d32:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003685 case ARM::VLD2q8Pseudo:
3686 case ARM::VLD2q16Pseudo:
3687 case ARM::VLD2q32Pseudo:
Jim Grosbachc988e0c2012-03-05 19:33:30 +00003688 case ARM::VLD2d8wb_fixed:
3689 case ARM::VLD2d16wb_fixed:
3690 case ARM::VLD2d32wb_fixed:
Jim Grosbachd146a022011-12-09 21:28:25 +00003691 case ARM::VLD2q8PseudoWB_fixed:
3692 case ARM::VLD2q16PseudoWB_fixed:
3693 case ARM::VLD2q32PseudoWB_fixed:
Jim Grosbachc988e0c2012-03-05 19:33:30 +00003694 case ARM::VLD2d8wb_register:
3695 case ARM::VLD2d16wb_register:
3696 case ARM::VLD2d32wb_register:
Jim Grosbachd146a022011-12-09 21:28:25 +00003697 case ARM::VLD2q8PseudoWB_register:
3698 case ARM::VLD2q16PseudoWB_register:
3699 case ARM::VLD2q32PseudoWB_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003700 case ARM::VLD3d8Pseudo:
3701 case ARM::VLD3d16Pseudo:
3702 case ARM::VLD3d32Pseudo:
3703 case ARM::VLD1d64TPseudo:
Jiangning Liu4df23632014-01-16 09:16:13 +00003704 case ARM::VLD1d64TPseudoWB_fixed:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003705 case ARM::VLD3d8Pseudo_UPD:
3706 case ARM::VLD3d16Pseudo_UPD:
3707 case ARM::VLD3d32Pseudo_UPD:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003708 case ARM::VLD3q8Pseudo_UPD:
3709 case ARM::VLD3q16Pseudo_UPD:
3710 case ARM::VLD3q32Pseudo_UPD:
3711 case ARM::VLD3q8oddPseudo:
3712 case ARM::VLD3q16oddPseudo:
3713 case ARM::VLD3q32oddPseudo:
3714 case ARM::VLD3q8oddPseudo_UPD:
3715 case ARM::VLD3q16oddPseudo_UPD:
3716 case ARM::VLD3q32oddPseudo_UPD:
3717 case ARM::VLD4d8Pseudo:
3718 case ARM::VLD4d16Pseudo:
3719 case ARM::VLD4d32Pseudo:
3720 case ARM::VLD1d64QPseudo:
Jiangning Liu4df23632014-01-16 09:16:13 +00003721 case ARM::VLD1d64QPseudoWB_fixed:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003722 case ARM::VLD4d8Pseudo_UPD:
3723 case ARM::VLD4d16Pseudo_UPD:
3724 case ARM::VLD4d32Pseudo_UPD:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003725 case ARM::VLD4q8Pseudo_UPD:
3726 case ARM::VLD4q16Pseudo_UPD:
3727 case ARM::VLD4q32Pseudo_UPD:
3728 case ARM::VLD4q8oddPseudo:
3729 case ARM::VLD4q16oddPseudo:
3730 case ARM::VLD4q32oddPseudo:
3731 case ARM::VLD4q8oddPseudo_UPD:
3732 case ARM::VLD4q16oddPseudo_UPD:
3733 case ARM::VLD4q32oddPseudo_UPD:
Jim Grosbach13a292c2012-03-06 22:01:44 +00003734 case ARM::VLD1DUPq8:
3735 case ARM::VLD1DUPq16:
3736 case ARM::VLD1DUPq32:
3737 case ARM::VLD1DUPq8wb_fixed:
3738 case ARM::VLD1DUPq16wb_fixed:
3739 case ARM::VLD1DUPq32wb_fixed:
3740 case ARM::VLD1DUPq8wb_register:
3741 case ARM::VLD1DUPq16wb_register:
3742 case ARM::VLD1DUPq32wb_register:
3743 case ARM::VLD2DUPd8:
3744 case ARM::VLD2DUPd16:
3745 case ARM::VLD2DUPd32:
3746 case ARM::VLD2DUPd8wb_fixed:
3747 case ARM::VLD2DUPd16wb_fixed:
3748 case ARM::VLD2DUPd32wb_fixed:
3749 case ARM::VLD2DUPd8wb_register:
3750 case ARM::VLD2DUPd16wb_register:
3751 case ARM::VLD2DUPd32wb_register:
Evan Cheng7d6cd4902011-04-19 01:21:49 +00003752 case ARM::VLD4DUPd8Pseudo:
3753 case ARM::VLD4DUPd16Pseudo:
3754 case ARM::VLD4DUPd32Pseudo:
3755 case ARM::VLD4DUPd8Pseudo_UPD:
3756 case ARM::VLD4DUPd16Pseudo_UPD:
3757 case ARM::VLD4DUPd32Pseudo_UPD:
3758 case ARM::VLD1LNq8Pseudo:
3759 case ARM::VLD1LNq16Pseudo:
3760 case ARM::VLD1LNq32Pseudo:
3761 case ARM::VLD1LNq8Pseudo_UPD:
3762 case ARM::VLD1LNq16Pseudo_UPD:
3763 case ARM::VLD1LNq32Pseudo_UPD:
3764 case ARM::VLD2LNd8Pseudo:
3765 case ARM::VLD2LNd16Pseudo:
3766 case ARM::VLD2LNd32Pseudo:
3767 case ARM::VLD2LNq16Pseudo:
3768 case ARM::VLD2LNq32Pseudo:
3769 case ARM::VLD2LNd8Pseudo_UPD:
3770 case ARM::VLD2LNd16Pseudo_UPD:
3771 case ARM::VLD2LNd32Pseudo_UPD:
3772 case ARM::VLD2LNq16Pseudo_UPD:
3773 case ARM::VLD2LNq32Pseudo_UPD:
3774 case ARM::VLD4LNd8Pseudo:
3775 case ARM::VLD4LNd16Pseudo:
3776 case ARM::VLD4LNd32Pseudo:
3777 case ARM::VLD4LNq16Pseudo:
3778 case ARM::VLD4LNq32Pseudo:
3779 case ARM::VLD4LNd8Pseudo_UPD:
3780 case ARM::VLD4LNd16Pseudo_UPD:
3781 case ARM::VLD4LNd32Pseudo_UPD:
3782 case ARM::VLD4LNq16Pseudo_UPD:
3783 case ARM::VLD4LNq32Pseudo_UPD:
3784 // If the address is not 64-bit aligned, the latencies of these
3785 // instructions increases by one.
3786 ++Latency;
3787 break;
3788 }
3789
Evan Chengff310732010-10-28 06:47:08 +00003790 return Latency;
Evan Cheng49d4c0b2010-10-06 06:27:31 +00003791}
Evan Cheng63c76082010-10-19 18:58:51 +00003792
Arnold Schwaighoferd2f96b92013-09-30 15:28:56 +00003793unsigned ARMBaseInstrInfo::getPredicationCost(const MachineInstr *MI) const {
3794 if (MI->isCopyLike() || MI->isInsertSubreg() ||
3795 MI->isRegSequence() || MI->isImplicitDef())
3796 return 0;
3797
3798 if (MI->isBundle())
3799 return 0;
3800
3801 const MCInstrDesc &MCID = MI->getDesc();
3802
3803 if (MCID.isCall() || MCID.hasImplicitDefOfPhysReg(ARM::CPSR)) {
3804 // When predicated, CPSR is an additional source operand for CPSR updating
3805 // instructions, this apparently increases their latencies.
3806 return 1;
3807 }
3808 return 0;
3809}
3810
Andrew Trick45446062012-06-05 21:11:27 +00003811unsigned ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
3812 const MachineInstr *MI,
3813 unsigned *PredCost) const {
Evan Chengdebf9c52010-11-03 00:45:17 +00003814 if (MI->isCopyLike() || MI->isInsertSubreg() ||
3815 MI->isRegSequence() || MI->isImplicitDef())
3816 return 1;
3817
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003818 // An instruction scheduler typically runs on unbundled instructions, however
3819 // other passes may query the latency of a bundled instruction.
Evan Cheng7fae11b2011-12-14 02:11:42 +00003820 if (MI->isBundle()) {
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003821 unsigned Latency = 0;
Evan Cheng7fae11b2011-12-14 02:11:42 +00003822 MachineBasicBlock::const_instr_iterator I = MI;
3823 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
3824 while (++I != E && I->isInsideBundle()) {
3825 if (I->getOpcode() != ARM::t2IT)
3826 Latency += getInstrLatency(ItinData, I, PredCost);
3827 }
3828 return Latency;
3829 }
3830
Evan Cheng6cc775f2011-06-28 19:10:37 +00003831 const MCInstrDesc &MCID = MI->getDesc();
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003832 if (PredCost && (MCID.isCall() || MCID.hasImplicitDefOfPhysReg(ARM::CPSR))) {
Evan Chengdebf9c52010-11-03 00:45:17 +00003833 // When predicated, CPSR is an additional source operand for CPSR updating
3834 // instructions, this apparently increases their latencies.
3835 *PredCost = 1;
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003836 }
3837 // Be sure to call getStageLatency for an empty itinerary in case it has a
3838 // valid MinLatency property.
3839 if (!ItinData)
3840 return MI->mayLoad() ? 3 : 1;
3841
3842 unsigned Class = MCID.getSchedClass();
3843
3844 // For instructions with variable uops, use uops as latency.
Andrew Trick21cca972012-07-02 19:12:29 +00003845 if (!ItinData->isEmpty() && ItinData->getNumMicroOps(Class) < 0)
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003846 return getNumMicroOps(ItinData, MI);
Andrew Trick21cca972012-07-02 19:12:29 +00003847
Andrew Trickfb1a74c2012-06-07 19:41:55 +00003848 // For the common case, fall back on the itinerary's latency.
Andrew Trick5b1cadf2012-06-07 19:42:00 +00003849 unsigned Latency = ItinData->getStageLatency(Class);
3850
3851 // Adjust for dynamic def-side opcode variants not captured by the itinerary.
3852 unsigned DefAlign = MI->hasOneMemOperand()
3853 ? (*MI->memoperands_begin())->getAlignment() : 0;
3854 int Adj = adjustDefLatency(Subtarget, MI, &MCID, DefAlign);
3855 if (Adj >= 0 || (int)Latency > -Adj) {
3856 return Latency + Adj;
3857 }
3858 return Latency;
Evan Chengdebf9c52010-11-03 00:45:17 +00003859}
3860
3861int ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
3862 SDNode *Node) const {
3863 if (!Node->isMachineOpcode())
3864 return 1;
3865
3866 if (!ItinData || ItinData->isEmpty())
3867 return 1;
3868
3869 unsigned Opcode = Node->getMachineOpcode();
3870 switch (Opcode) {
3871 default:
3872 return ItinData->getStageLatency(get(Opcode).getSchedClass());
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003873 case ARM::VLDMQIA:
Bill Wendlinga68e3a52010-11-16 01:16:36 +00003874 case ARM::VSTMQIA:
Evan Chengdebf9c52010-11-03 00:45:17 +00003875 return 2;
Eric Christopherb006fc92010-11-18 19:40:05 +00003876 }
Evan Chengdebf9c52010-11-03 00:45:17 +00003877}
3878
Evan Cheng63c76082010-10-19 18:58:51 +00003879bool ARMBaseInstrInfo::
3880hasHighOperandLatency(const InstrItineraryData *ItinData,
3881 const MachineRegisterInfo *MRI,
3882 const MachineInstr *DefMI, unsigned DefIdx,
3883 const MachineInstr *UseMI, unsigned UseIdx) const {
3884 unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
3885 unsigned UDomain = UseMI->getDesc().TSFlags & ARMII::DomainMask;
3886 if (Subtarget.isCortexA8() &&
3887 (DDomain == ARMII::DomainVFP || UDomain == ARMII::DomainVFP))
3888 // CortexA8 VFP instructions are not pipelined.
3889 return true;
3890
3891 // Hoist VFP / NEON instructions with 4 or higher latency.
Andrew Trickde2109e2013-06-15 04:49:57 +00003892 int Latency = computeOperandLatency(ItinData, DefMI, DefIdx, UseMI, UseIdx);
Andrew Trick3564bdf2012-06-07 19:41:58 +00003893 if (Latency < 0)
3894 Latency = getInstrLatency(ItinData, DefMI);
Evan Cheng63c76082010-10-19 18:58:51 +00003895 if (Latency <= 3)
3896 return false;
3897 return DDomain == ARMII::DomainVFP || DDomain == ARMII::DomainNEON ||
3898 UDomain == ARMII::DomainVFP || UDomain == ARMII::DomainNEON;
3899}
Evan Chenge96b8d72010-10-26 02:08:50 +00003900
3901bool ARMBaseInstrInfo::
3902hasLowDefLatency(const InstrItineraryData *ItinData,
3903 const MachineInstr *DefMI, unsigned DefIdx) const {
3904 if (!ItinData || ItinData->isEmpty())
3905 return false;
3906
3907 unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
3908 if (DDomain == ARMII::DomainGeneral) {
3909 unsigned DefClass = DefMI->getDesc().getSchedClass();
3910 int DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
3911 return (DefCycle != -1 && DefCycle <= 2);
3912 }
3913 return false;
3914}
Evan Cheng62c7b5b2010-12-05 22:04:16 +00003915
Andrew Trick924123a2011-09-21 02:20:46 +00003916bool ARMBaseInstrInfo::verifyInstruction(const MachineInstr *MI,
3917 StringRef &ErrInfo) const {
3918 if (convertAddSubFlagsOpcode(MI->getOpcode())) {
3919 ErrInfo = "Pseudo flag setting opcodes only exist in Selection DAG";
3920 return false;
3921 }
3922 return true;
3923}
3924
Evan Cheng62c7b5b2010-12-05 22:04:16 +00003925bool
3926ARMBaseInstrInfo::isFpMLxInstruction(unsigned Opcode, unsigned &MulOpc,
3927 unsigned &AddSubOpc,
3928 bool &NegAcc, bool &HasLane) const {
3929 DenseMap<unsigned, unsigned>::const_iterator I = MLxEntryMap.find(Opcode);
3930 if (I == MLxEntryMap.end())
3931 return false;
3932
3933 const ARM_MLxEntry &Entry = ARM_MLxTable[I->second];
3934 MulOpc = Entry.MulOpc;
3935 AddSubOpc = Entry.AddSubOpc;
3936 NegAcc = Entry.NegAcc;
3937 HasLane = Entry.HasLane;
3938 return true;
3939}
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003940
3941//===----------------------------------------------------------------------===//
3942// Execution domains.
3943//===----------------------------------------------------------------------===//
3944//
3945// Some instructions go down the NEON pipeline, some go down the VFP pipeline,
3946// and some can go down both. The vmov instructions go down the VFP pipeline,
3947// but they can be changed to vorr equivalents that are executed by the NEON
3948// pipeline.
3949//
3950// We use the following execution domain numbering:
3951//
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003952enum ARMExeDomain {
3953 ExeGeneric = 0,
3954 ExeVFP = 1,
3955 ExeNEON = 2
3956};
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003957//
3958// Also see ARMInstrFormats.td and Domain* enums in ARMBaseInfo.h
3959//
3960std::pair<uint16_t, uint16_t>
3961ARMBaseInstrInfo::getExecutionDomain(const MachineInstr *MI) const {
Tim Northoverf6618152012-08-17 11:32:52 +00003962 // VMOVD, VMOVRS and VMOVSR are VFP instructions, but can be changed to NEON
3963 // if they are not predicated.
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003964 if (MI->getOpcode() == ARM::VMOVD && !isPredicated(MI))
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003965 return std::make_pair(ExeVFP, (1<<ExeVFP) | (1<<ExeNEON));
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003966
Silviu Barangadc453362013-03-27 12:38:44 +00003967 // CortexA9 is particularly picky about mixing the two and wants these
Tim Northoverf6618152012-08-17 11:32:52 +00003968 // converted.
Silviu Barangadc453362013-03-27 12:38:44 +00003969 if (Subtarget.isCortexA9() && !isPredicated(MI) &&
Tim Northoverf6618152012-08-17 11:32:52 +00003970 (MI->getOpcode() == ARM::VMOVRS ||
Tim Northoverca9f3842012-08-30 10:17:45 +00003971 MI->getOpcode() == ARM::VMOVSR ||
3972 MI->getOpcode() == ARM::VMOVS))
Tim Northoverf6618152012-08-17 11:32:52 +00003973 return std::make_pair(ExeVFP, (1<<ExeVFP) | (1<<ExeNEON));
3974
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003975 // No other instructions can be swizzled, so just determine their domain.
3976 unsigned Domain = MI->getDesc().TSFlags & ARMII::DomainMask;
3977
3978 if (Domain & ARMII::DomainNEON)
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003979 return std::make_pair(ExeNEON, 0);
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003980
3981 // Certain instructions can go either way on Cortex-A8.
3982 // Treat them as NEON instructions.
3983 if ((Domain & ARMII::DomainNEONA8) && Subtarget.isCortexA8())
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003984 return std::make_pair(ExeNEON, 0);
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003985
3986 if (Domain & ARMII::DomainVFP)
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003987 return std::make_pair(ExeVFP, 0);
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003988
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00003989 return std::make_pair(ExeGeneric, 0);
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00003990}
3991
Tim Northover771f1602012-08-29 16:36:07 +00003992static unsigned getCorrespondingDRegAndLane(const TargetRegisterInfo *TRI,
3993 unsigned SReg, unsigned &Lane) {
3994 unsigned DReg = TRI->getMatchingSuperReg(SReg, ARM::ssub_0, &ARM::DPRRegClass);
3995 Lane = 0;
3996
3997 if (DReg != ARM::NoRegister)
3998 return DReg;
3999
4000 Lane = 1;
4001 DReg = TRI->getMatchingSuperReg(SReg, ARM::ssub_1, &ARM::DPRRegClass);
4002
4003 assert(DReg && "S-register with no D super-register?");
4004 return DReg;
4005}
4006
Andrew Trickd9296ec2012-10-10 05:43:01 +00004007/// getImplicitSPRUseForDPRUse - Given a use of a DPR register and lane,
James Molloyea052562012-09-18 08:31:15 +00004008/// set ImplicitSReg to a register number that must be marked as implicit-use or
4009/// zero if no register needs to be defined as implicit-use.
4010///
4011/// If the function cannot determine if an SPR should be marked implicit use or
4012/// not, it returns false.
4013///
4014/// This function handles cases where an instruction is being modified from taking
Andrew Trickd9296ec2012-10-10 05:43:01 +00004015/// an SPR to a DPR[Lane]. A use of the DPR is being added, which may conflict
James Molloyea052562012-09-18 08:31:15 +00004016/// with an earlier def of an SPR corresponding to DPR[Lane^1] (i.e. the other
4017/// lane of the DPR).
4018///
4019/// If the other SPR is defined, an implicit-use of it should be added. Else,
4020/// (including the case where the DPR itself is defined), it should not.
Andrew Trickd9296ec2012-10-10 05:43:01 +00004021///
James Molloyea052562012-09-18 08:31:15 +00004022static bool getImplicitSPRUseForDPRUse(const TargetRegisterInfo *TRI,
4023 MachineInstr *MI,
4024 unsigned DReg, unsigned Lane,
4025 unsigned &ImplicitSReg) {
4026 // If the DPR is defined or used already, the other SPR lane will be chained
4027 // correctly, so there is nothing to be done.
4028 if (MI->definesRegister(DReg, TRI) || MI->readsRegister(DReg, TRI)) {
4029 ImplicitSReg = 0;
4030 return true;
4031 }
4032
4033 // Otherwise we need to go searching to see if the SPR is set explicitly.
4034 ImplicitSReg = TRI->getSubReg(DReg,
4035 (Lane & 1) ? ARM::ssub_0 : ARM::ssub_1);
4036 MachineBasicBlock::LivenessQueryResult LQR =
4037 MI->getParent()->computeRegisterLiveness(TRI, ImplicitSReg, MI);
4038
4039 if (LQR == MachineBasicBlock::LQR_Live)
4040 return true;
4041 else if (LQR == MachineBasicBlock::LQR_Unknown)
4042 return false;
4043
4044 // If the register is known not to be live, there is no need to add an
4045 // implicit-use.
4046 ImplicitSReg = 0;
4047 return true;
4048}
Tim Northover771f1602012-08-29 16:36:07 +00004049
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00004050void
4051ARMBaseInstrInfo::setExecutionDomain(MachineInstr *MI, unsigned Domain) const {
Tim Northoverf6618152012-08-17 11:32:52 +00004052 unsigned DstReg, SrcReg, DReg;
4053 unsigned Lane;
Jakob Stoklund Olesenb159b5f2012-12-19 21:31:56 +00004054 MachineInstrBuilder MIB(*MI->getParent()->getParent(), MI);
Tim Northoverf6618152012-08-17 11:32:52 +00004055 const TargetRegisterInfo *TRI = &getRegisterInfo();
Tim Northoverf6618152012-08-17 11:32:52 +00004056 switch (MI->getOpcode()) {
4057 default:
4058 llvm_unreachable("cannot handle opcode!");
4059 break;
4060 case ARM::VMOVD:
4061 if (Domain != ExeNEON)
4062 break;
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00004063
Tim Northoverf6618152012-08-17 11:32:52 +00004064 // Zap the predicate operands.
4065 assert(!isPredicated(MI) && "Cannot predicate a VORRd");
Jakob Stoklund Olesenf7ad1892011-09-29 02:48:41 +00004066
Tim Northover771f1602012-08-29 16:36:07 +00004067 // Source instruction is %DDst = VMOVD %DSrc, 14, %noreg (; implicits)
4068 DstReg = MI->getOperand(0).getReg();
4069 SrcReg = MI->getOperand(1).getReg();
4070
4071 for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
4072 MI->RemoveOperand(i-1);
4073
4074 // Change to a %DDst = VORRd %DSrc, %DSrc, 14, %noreg (; implicits)
Tim Northoverf6618152012-08-17 11:32:52 +00004075 MI->setDesc(get(ARM::VORRd));
Tim Northover771f1602012-08-29 16:36:07 +00004076 AddDefaultPred(MIB.addReg(DstReg, RegState::Define)
4077 .addReg(SrcReg)
4078 .addReg(SrcReg));
Tim Northoverf6618152012-08-17 11:32:52 +00004079 break;
4080 case ARM::VMOVRS:
4081 if (Domain != ExeNEON)
4082 break;
4083 assert(!isPredicated(MI) && "Cannot predicate a VGETLN");
4084
Tim Northover771f1602012-08-29 16:36:07 +00004085 // Source instruction is %RDst = VMOVRS %SSrc, 14, %noreg (; implicits)
Tim Northoverf6618152012-08-17 11:32:52 +00004086 DstReg = MI->getOperand(0).getReg();
4087 SrcReg = MI->getOperand(1).getReg();
4088
Tim Northover771f1602012-08-29 16:36:07 +00004089 for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
4090 MI->RemoveOperand(i-1);
Tim Northoverf6618152012-08-17 11:32:52 +00004091
Tim Northover771f1602012-08-29 16:36:07 +00004092 DReg = getCorrespondingDRegAndLane(TRI, SrcReg, Lane);
Tim Northoverf6618152012-08-17 11:32:52 +00004093
Tim Northover771f1602012-08-29 16:36:07 +00004094 // Convert to %RDst = VGETLNi32 %DSrc, Lane, 14, %noreg (; imps)
4095 // Note that DSrc has been widened and the other lane may be undef, which
4096 // contaminates the entire register.
Tim Northoverf6618152012-08-17 11:32:52 +00004097 MI->setDesc(get(ARM::VGETLNi32));
Tim Northover771f1602012-08-29 16:36:07 +00004098 AddDefaultPred(MIB.addReg(DstReg, RegState::Define)
4099 .addReg(DReg, RegState::Undef)
4100 .addImm(Lane));
Tim Northoverf6618152012-08-17 11:32:52 +00004101
Tim Northover771f1602012-08-29 16:36:07 +00004102 // The old source should be an implicit use, otherwise we might think it
4103 // was dead before here.
Tim Northoverf6618152012-08-17 11:32:52 +00004104 MIB.addReg(SrcReg, RegState::Implicit);
Tim Northoverf6618152012-08-17 11:32:52 +00004105 break;
James Molloyea052562012-09-18 08:31:15 +00004106 case ARM::VMOVSR: {
Tim Northoverf6618152012-08-17 11:32:52 +00004107 if (Domain != ExeNEON)
4108 break;
4109 assert(!isPredicated(MI) && "Cannot predicate a VSETLN");
4110
Tim Northover771f1602012-08-29 16:36:07 +00004111 // Source instruction is %SDst = VMOVSR %RSrc, 14, %noreg (; implicits)
Tim Northoverf6618152012-08-17 11:32:52 +00004112 DstReg = MI->getOperand(0).getReg();
4113 SrcReg = MI->getOperand(1).getReg();
Tim Northoverf6618152012-08-17 11:32:52 +00004114
Tim Northover771f1602012-08-29 16:36:07 +00004115 DReg = getCorrespondingDRegAndLane(TRI, DstReg, Lane);
4116
James Molloyea052562012-09-18 08:31:15 +00004117 unsigned ImplicitSReg;
4118 if (!getImplicitSPRUseForDPRUse(TRI, MI, DReg, Lane, ImplicitSReg))
4119 break;
Tim Northover726d32c2012-09-01 18:07:29 +00004120
Tim Northoverc8d867d2012-09-05 18:37:53 +00004121 for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
4122 MI->RemoveOperand(i-1);
4123
Tim Northover771f1602012-08-29 16:36:07 +00004124 // Convert to %DDst = VSETLNi32 %DDst, %RSrc, Lane, 14, %noreg (; imps)
4125 // Again DDst may be undefined at the beginning of this instruction.
Tim Northoverf6618152012-08-17 11:32:52 +00004126 MI->setDesc(get(ARM::VSETLNi32));
Tim Northover726d32c2012-09-01 18:07:29 +00004127 MIB.addReg(DReg, RegState::Define)
4128 .addReg(DReg, getUndefRegState(!MI->readsRegister(DReg, TRI)))
4129 .addReg(SrcReg)
4130 .addImm(Lane);
4131 AddDefaultPred(MIB);
Tim Northoverca9f3842012-08-30 10:17:45 +00004132
Tim Northover726d32c2012-09-01 18:07:29 +00004133 // The narrower destination must be marked as set to keep previous chains
4134 // in place.
Tim Northover771f1602012-08-29 16:36:07 +00004135 MIB.addReg(DstReg, RegState::Define | RegState::Implicit);
James Molloyea052562012-09-18 08:31:15 +00004136 if (ImplicitSReg != 0)
4137 MIB.addReg(ImplicitSReg, RegState::Implicit);
Tim Northoverf6618152012-08-17 11:32:52 +00004138 break;
James Molloyea052562012-09-18 08:31:15 +00004139 }
Tim Northoverca9f3842012-08-30 10:17:45 +00004140 case ARM::VMOVS: {
4141 if (Domain != ExeNEON)
4142 break;
4143
4144 // Source instruction is %SDst = VMOVS %SSrc, 14, %noreg (; implicits)
4145 DstReg = MI->getOperand(0).getReg();
4146 SrcReg = MI->getOperand(1).getReg();
4147
Tim Northoverca9f3842012-08-30 10:17:45 +00004148 unsigned DstLane = 0, SrcLane = 0, DDst, DSrc;
4149 DDst = getCorrespondingDRegAndLane(TRI, DstReg, DstLane);
4150 DSrc = getCorrespondingDRegAndLane(TRI, SrcReg, SrcLane);
4151
James Molloyea052562012-09-18 08:31:15 +00004152 unsigned ImplicitSReg;
4153 if (!getImplicitSPRUseForDPRUse(TRI, MI, DSrc, SrcLane, ImplicitSReg))
4154 break;
Tim Northover726d32c2012-09-01 18:07:29 +00004155
Tim Northoverc8d867d2012-09-05 18:37:53 +00004156 for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
4157 MI->RemoveOperand(i-1);
4158
Tim Northoverca9f3842012-08-30 10:17:45 +00004159 if (DSrc == DDst) {
4160 // Destination can be:
4161 // %DDst = VDUPLN32d %DDst, Lane, 14, %noreg (; implicits)
4162 MI->setDesc(get(ARM::VDUPLN32d));
Tim Northover726d32c2012-09-01 18:07:29 +00004163 MIB.addReg(DDst, RegState::Define)
4164 .addReg(DDst, getUndefRegState(!MI->readsRegister(DDst, TRI)))
4165 .addImm(SrcLane);
4166 AddDefaultPred(MIB);
Tim Northoverca9f3842012-08-30 10:17:45 +00004167
4168 // Neither the source or the destination are naturally represented any
4169 // more, so add them in manually.
4170 MIB.addReg(DstReg, RegState::Implicit | RegState::Define);
4171 MIB.addReg(SrcReg, RegState::Implicit);
James Molloyea052562012-09-18 08:31:15 +00004172 if (ImplicitSReg != 0)
4173 MIB.addReg(ImplicitSReg, RegState::Implicit);
Tim Northoverca9f3842012-08-30 10:17:45 +00004174 break;
4175 }
4176
4177 // In general there's no single instruction that can perform an S <-> S
4178 // move in NEON space, but a pair of VEXT instructions *can* do the
4179 // job. It turns out that the VEXTs needed will only use DSrc once, with
4180 // the position based purely on the combination of lane-0 and lane-1
4181 // involved. For example
4182 // vmov s0, s2 -> vext.32 d0, d0, d1, #1 vext.32 d0, d0, d0, #1
4183 // vmov s1, s3 -> vext.32 d0, d1, d0, #1 vext.32 d0, d0, d0, #1
4184 // vmov s0, s3 -> vext.32 d0, d0, d0, #1 vext.32 d0, d1, d0, #1
4185 // vmov s1, s2 -> vext.32 d0, d0, d0, #1 vext.32 d0, d0, d1, #1
4186 //
4187 // Pattern of the MachineInstrs is:
4188 // %DDst = VEXTd32 %DSrc1, %DSrc2, Lane, 14, %noreg (;implicits)
4189 MachineInstrBuilder NewMIB;
4190 NewMIB = BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
4191 get(ARM::VEXTd32), DDst);
Tim Northover726d32c2012-09-01 18:07:29 +00004192
4193 // On the first instruction, both DSrc and DDst may be <undef> if present.
4194 // Specifically when the original instruction didn't have them as an
4195 // <imp-use>.
4196 unsigned CurReg = SrcLane == 1 && DstLane == 1 ? DSrc : DDst;
4197 bool CurUndef = !MI->readsRegister(CurReg, TRI);
4198 NewMIB.addReg(CurReg, getUndefRegState(CurUndef));
4199
4200 CurReg = SrcLane == 0 && DstLane == 0 ? DSrc : DDst;
4201 CurUndef = !MI->readsRegister(CurReg, TRI);
4202 NewMIB.addReg(CurReg, getUndefRegState(CurUndef));
4203
Tim Northoverca9f3842012-08-30 10:17:45 +00004204 NewMIB.addImm(1);
4205 AddDefaultPred(NewMIB);
4206
4207 if (SrcLane == DstLane)
4208 NewMIB.addReg(SrcReg, RegState::Implicit);
4209
4210 MI->setDesc(get(ARM::VEXTd32));
4211 MIB.addReg(DDst, RegState::Define);
Tim Northover726d32c2012-09-01 18:07:29 +00004212
4213 // On the second instruction, DDst has definitely been defined above, so
4214 // it is not <undef>. DSrc, if present, can be <undef> as above.
4215 CurReg = SrcLane == 1 && DstLane == 0 ? DSrc : DDst;
4216 CurUndef = CurReg == DSrc && !MI->readsRegister(CurReg, TRI);
4217 MIB.addReg(CurReg, getUndefRegState(CurUndef));
4218
4219 CurReg = SrcLane == 0 && DstLane == 1 ? DSrc : DDst;
4220 CurUndef = CurReg == DSrc && !MI->readsRegister(CurReg, TRI);
4221 MIB.addReg(CurReg, getUndefRegState(CurUndef));
4222
Tim Northoverca9f3842012-08-30 10:17:45 +00004223 MIB.addImm(1);
4224 AddDefaultPred(MIB);
4225
4226 if (SrcLane != DstLane)
4227 MIB.addReg(SrcReg, RegState::Implicit);
4228
4229 // As before, the original destination is no longer represented, add it
4230 // implicitly.
4231 MIB.addReg(DstReg, RegState::Define | RegState::Implicit);
James Molloyea052562012-09-18 08:31:15 +00004232 if (ImplicitSReg != 0)
4233 MIB.addReg(ImplicitSReg, RegState::Implicit);
Tim Northoverca9f3842012-08-30 10:17:45 +00004234 break;
4235 }
Tim Northoverf6618152012-08-17 11:32:52 +00004236 }
4237
Jakob Stoklund Olesenf9b71a22011-09-27 22:57:21 +00004238}
Jim Grosbach617f84dd2012-02-28 23:53:30 +00004239
Bob Wilsone8a549c2012-09-29 21:43:49 +00004240//===----------------------------------------------------------------------===//
4241// Partial register updates
4242//===----------------------------------------------------------------------===//
4243//
4244// Swift renames NEON registers with 64-bit granularity. That means any
4245// instruction writing an S-reg implicitly reads the containing D-reg. The
4246// problem is mostly avoided by translating f32 operations to v2f32 operations
4247// on D-registers, but f32 loads are still a problem.
4248//
4249// These instructions can load an f32 into a NEON register:
4250//
4251// VLDRS - Only writes S, partial D update.
4252// VLD1LNd32 - Writes all D-regs, explicit partial D update, 2 uops.
4253// VLD1DUPd32 - Writes all D-regs, no partial reg update, 2 uops.
4254//
4255// FCONSTD can be used as a dependency-breaking instruction.
Bob Wilsone8a549c2012-09-29 21:43:49 +00004256unsigned ARMBaseInstrInfo::
4257getPartialRegUpdateClearance(const MachineInstr *MI,
4258 unsigned OpNum,
4259 const TargetRegisterInfo *TRI) const {
Silviu Barangadc453362013-03-27 12:38:44 +00004260 if (!SwiftPartialUpdateClearance ||
4261 !(Subtarget.isSwift() || Subtarget.isCortexA15()))
Bob Wilsone8a549c2012-09-29 21:43:49 +00004262 return 0;
4263
4264 assert(TRI && "Need TRI instance");
4265
4266 const MachineOperand &MO = MI->getOperand(OpNum);
4267 if (MO.readsReg())
4268 return 0;
4269 unsigned Reg = MO.getReg();
4270 int UseOp = -1;
4271
4272 switch(MI->getOpcode()) {
4273 // Normal instructions writing only an S-register.
4274 case ARM::VLDRS:
4275 case ARM::FCONSTS:
4276 case ARM::VMOVSR:
Bob Wilsone8a549c2012-09-29 21:43:49 +00004277 case ARM::VMOVv8i8:
4278 case ARM::VMOVv4i16:
4279 case ARM::VMOVv2i32:
4280 case ARM::VMOVv2f32:
4281 case ARM::VMOVv1i64:
4282 UseOp = MI->findRegisterUseOperandIdx(Reg, false, TRI);
4283 break;
4284
4285 // Explicitly reads the dependency.
4286 case ARM::VLD1LNd32:
Silviu Barangadc453362013-03-27 12:38:44 +00004287 UseOp = 3;
Bob Wilsone8a549c2012-09-29 21:43:49 +00004288 break;
4289 default:
4290 return 0;
4291 }
4292
4293 // If this instruction actually reads a value from Reg, there is no unwanted
4294 // dependency.
4295 if (UseOp != -1 && MI->getOperand(UseOp).readsReg())
4296 return 0;
4297
4298 // We must be able to clobber the whole D-reg.
4299 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
4300 // Virtual register must be a foo:ssub_0<def,undef> operand.
4301 if (!MO.getSubReg() || MI->readsVirtualRegister(Reg))
4302 return 0;
4303 } else if (ARM::SPRRegClass.contains(Reg)) {
4304 // Physical register: MI must define the full D-reg.
4305 unsigned DReg = TRI->getMatchingSuperReg(Reg, ARM::ssub_0,
4306 &ARM::DPRRegClass);
4307 if (!DReg || !MI->definesRegister(DReg, TRI))
4308 return 0;
4309 }
4310
4311 // MI has an unwanted D-register dependency.
4312 // Avoid defs in the previous N instructrions.
4313 return SwiftPartialUpdateClearance;
4314}
4315
4316// Break a partial register dependency after getPartialRegUpdateClearance
4317// returned non-zero.
4318void ARMBaseInstrInfo::
4319breakPartialRegDependency(MachineBasicBlock::iterator MI,
4320 unsigned OpNum,
4321 const TargetRegisterInfo *TRI) const {
4322 assert(MI && OpNum < MI->getDesc().getNumDefs() && "OpNum is not a def");
4323 assert(TRI && "Need TRI instance");
4324
4325 const MachineOperand &MO = MI->getOperand(OpNum);
4326 unsigned Reg = MO.getReg();
4327 assert(TargetRegisterInfo::isPhysicalRegister(Reg) &&
4328 "Can't break virtual register dependencies.");
4329 unsigned DReg = Reg;
4330
4331 // If MI defines an S-reg, find the corresponding D super-register.
4332 if (ARM::SPRRegClass.contains(Reg)) {
4333 DReg = ARM::D0 + (Reg - ARM::S0) / 2;
4334 assert(TRI->isSuperRegister(Reg, DReg) && "Register enums broken");
4335 }
4336
4337 assert(ARM::DPRRegClass.contains(DReg) && "Can only break D-reg deps");
4338 assert(MI->definesRegister(DReg, TRI) && "MI doesn't clobber full D-reg");
4339
4340 // FIXME: In some cases, VLDRS can be changed to a VLD1DUPd32 which defines
4341 // the full D-register by loading the same value to both lanes. The
4342 // instruction is micro-coded with 2 uops, so don't do this until we can
Robert Wilhelm516be562013-09-14 09:34:24 +00004343 // properly schedule micro-coded instructions. The dispatcher stalls cause
Bob Wilsone8a549c2012-09-29 21:43:49 +00004344 // too big regressions.
4345
4346 // Insert the dependency-breaking FCONSTD before MI.
4347 // 96 is the encoding of 0.5, but the actual value doesn't matter here.
4348 AddDefaultPred(BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
4349 get(ARM::FCONSTD), DReg).addImm(96));
4350 MI->addRegisterKilled(DReg, TRI, true);
4351}
4352
Jim Grosbach617f84dd2012-02-28 23:53:30 +00004353bool ARMBaseInstrInfo::hasNOP() const {
4354 return (Subtarget.getFeatureBits() & ARM::HasV6T2Ops) != 0;
4355}
Arnold Schwaighofer5dde1f32013-04-05 04:42:00 +00004356
4357bool ARMBaseInstrInfo::isSwiftFastImmShift(const MachineInstr *MI) const {
Arnold Schwaighofere9375922013-06-05 14:59:36 +00004358 if (MI->getNumOperands() < 4)
4359 return true;
Arnold Schwaighofer5dde1f32013-04-05 04:42:00 +00004360 unsigned ShOpVal = MI->getOperand(3).getImm();
4361 unsigned ShImm = ARM_AM::getSORegOffset(ShOpVal);
4362 // Swift supports faster shifts for: lsl 2, lsl 1, and lsr 1.
4363 if ((ShImm == 1 && ARM_AM::getSORegShOp(ShOpVal) == ARM_AM::lsr) ||
4364 ((ShImm == 1 || ShImm == 2) &&
4365 ARM_AM::getSORegShOp(ShOpVal) == ARM_AM::lsl))
4366 return true;
4367
4368 return false;
4369}