blob: f3c9cf4e434c933dab4d8a01c18ec2d9e6685c2b [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +00001//===-- ARMBaseInstrInfo.cpp - ARM Instruction Information ----------------===//
David Goodwin334c2642009-07-08 16:09:28 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the Base ARM implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "ARMBaseInstrInfo.h"
15#include "ARM.h"
Craig Topper0e5233a2012-03-26 00:45:15 +000016#include "ARMBaseRegisterInfo.h"
Evan Chengd457e6e2009-11-07 04:04:34 +000017#include "ARMConstantPoolValue.h"
Evan Cheng48575f62010-12-05 22:04:16 +000018#include "ARMHazardRecognizer.h"
David Goodwin334c2642009-07-08 16:09:28 +000019#include "ARMMachineFunctionInfo.h"
Evan Chengee04a6d2011-07-20 23:34:39 +000020#include "MCTargetDesc/ARMAddressingModes.h"
Evan Chengfdc83402009-11-08 00:15:23 +000021#include "llvm/Constants.h"
22#include "llvm/Function.h"
23#include "llvm/GlobalValue.h"
David Goodwin334c2642009-07-08 16:09:28 +000024#include "llvm/CodeGen/LiveVariables.h"
Evan Chengd457e6e2009-11-07 04:04:34 +000025#include "llvm/CodeGen/MachineConstantPool.h"
David Goodwin334c2642009-07-08 16:09:28 +000026#include "llvm/CodeGen/MachineFrameInfo.h"
27#include "llvm/CodeGen/MachineInstrBuilder.h"
28#include "llvm/CodeGen/MachineJumpTableInfo.h"
Anton Korobeynikov249fb332009-10-07 00:06:35 +000029#include "llvm/CodeGen/MachineMemOperand.h"
Evan Cheng2457f2c2010-05-22 01:47:14 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Chengee04a6d2011-07-20 23:34:39 +000031#include "llvm/CodeGen/SelectionDAGNodes.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000032#include "llvm/MC/MCAsmInfo.h"
Jakub Staszakf81b7f62011-07-10 02:58:07 +000033#include "llvm/Support/BranchProbability.h"
David Goodwin334c2642009-07-08 16:09:28 +000034#include "llvm/Support/CommandLine.h"
Anton Korobeynikovf95215f2009-11-02 00:10:38 +000035#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000036#include "llvm/Support/ErrorHandling.h"
Bill Wendling40a5eb12010-11-01 20:41:43 +000037#include "llvm/ADT/STLExtras.h"
Evan Cheng22fee2d2011-06-28 20:07:07 +000038
Evan Cheng4db3cff2011-07-01 17:57:27 +000039#define GET_INSTRINFO_CTOR
Evan Cheng22fee2d2011-06-28 20:07:07 +000040#include "ARMGenInstrInfo.inc"
41
David Goodwin334c2642009-07-08 16:09:28 +000042using namespace llvm;
43
44static cl::opt<bool>
45EnableARM3Addr("enable-arm-3-addr-conv", cl::Hidden,
46 cl::desc("Enable ARM 2-addr to 3-addr conv"));
47
Jakob Stoklund Olesen61545822011-08-31 17:00:02 +000048static cl::opt<bool>
Jakob Stoklund Olesen3805d852011-11-15 23:53:18 +000049WidenVMOVS("widen-vmovs", cl::Hidden, cl::init(true),
Jakob Stoklund Olesen61545822011-08-31 17:00:02 +000050 cl::desc("Widen ARM vmovs to vmovd when possible"));
51
Evan Cheng48575f62010-12-05 22:04:16 +000052/// ARM_MLxEntry - Record information about MLA / MLS instructions.
53struct ARM_MLxEntry {
Craig Toppercd2859e2012-05-24 03:59:11 +000054 uint16_t MLxOpc; // MLA / MLS opcode
55 uint16_t MulOpc; // Expanded multiplication opcode
56 uint16_t AddSubOpc; // Expanded add / sub opcode
Evan Cheng48575f62010-12-05 22:04:16 +000057 bool NegAcc; // True if the acc is negated before the add / sub.
58 bool HasLane; // True if instruction has an extra "lane" operand.
59};
60
61static const ARM_MLxEntry ARM_MLxTable[] = {
62 // MLxOpc, MulOpc, AddSubOpc, NegAcc, HasLane
63 // fp scalar ops
64 { ARM::VMLAS, ARM::VMULS, ARM::VADDS, false, false },
65 { ARM::VMLSS, ARM::VMULS, ARM::VSUBS, false, false },
66 { ARM::VMLAD, ARM::VMULD, ARM::VADDD, false, false },
67 { ARM::VMLSD, ARM::VMULD, ARM::VSUBD, false, false },
Evan Cheng48575f62010-12-05 22:04:16 +000068 { ARM::VNMLAS, ARM::VNMULS, ARM::VSUBS, true, false },
69 { ARM::VNMLSS, ARM::VMULS, ARM::VSUBS, true, false },
70 { ARM::VNMLAD, ARM::VNMULD, ARM::VSUBD, true, false },
71 { ARM::VNMLSD, ARM::VMULD, ARM::VSUBD, true, false },
72
73 // fp SIMD ops
74 { ARM::VMLAfd, ARM::VMULfd, ARM::VADDfd, false, false },
75 { ARM::VMLSfd, ARM::VMULfd, ARM::VSUBfd, false, false },
76 { ARM::VMLAfq, ARM::VMULfq, ARM::VADDfq, false, false },
77 { ARM::VMLSfq, ARM::VMULfq, ARM::VSUBfq, false, false },
78 { ARM::VMLAslfd, ARM::VMULslfd, ARM::VADDfd, false, true },
79 { ARM::VMLSslfd, ARM::VMULslfd, ARM::VSUBfd, false, true },
80 { ARM::VMLAslfq, ARM::VMULslfq, ARM::VADDfq, false, true },
81 { ARM::VMLSslfq, ARM::VMULslfq, ARM::VSUBfq, false, true },
82};
83
Anton Korobeynikovf95215f2009-11-02 00:10:38 +000084ARMBaseInstrInfo::ARMBaseInstrInfo(const ARMSubtarget& STI)
Evan Cheng4db3cff2011-07-01 17:57:27 +000085 : ARMGenInstrInfo(ARM::ADJCALLSTACKDOWN, ARM::ADJCALLSTACKUP),
Anton Korobeynikovf95215f2009-11-02 00:10:38 +000086 Subtarget(STI) {
Evan Cheng48575f62010-12-05 22:04:16 +000087 for (unsigned i = 0, e = array_lengthof(ARM_MLxTable); i != e; ++i) {
88 if (!MLxEntryMap.insert(std::make_pair(ARM_MLxTable[i].MLxOpc, i)).second)
89 assert(false && "Duplicated entries?");
90 MLxHazardOpcodes.insert(ARM_MLxTable[i].AddSubOpc);
91 MLxHazardOpcodes.insert(ARM_MLxTable[i].MulOpc);
92 }
93}
94
Andrew Trick2da8bc82010-12-24 05:03:26 +000095// Use a ScoreboardHazardRecognizer for prepass ARM scheduling. TargetInstrImpl
96// currently defaults to no prepass hazard recognizer.
Evan Cheng48575f62010-12-05 22:04:16 +000097ScheduleHazardRecognizer *ARMBaseInstrInfo::
Andrew Trick2da8bc82010-12-24 05:03:26 +000098CreateTargetHazardRecognizer(const TargetMachine *TM,
99 const ScheduleDAG *DAG) const {
Andrew Trickc8bfd1d2011-01-21 05:51:33 +0000100 if (usePreRAHazardRecognizer()) {
Andrew Trick2da8bc82010-12-24 05:03:26 +0000101 const InstrItineraryData *II = TM->getInstrItineraryData();
102 return new ScoreboardHazardRecognizer(II, DAG, "pre-RA-sched");
103 }
104 return TargetInstrInfoImpl::CreateTargetHazardRecognizer(TM, DAG);
105}
106
107ScheduleHazardRecognizer *ARMBaseInstrInfo::
108CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
109 const ScheduleDAG *DAG) const {
Evan Cheng48575f62010-12-05 22:04:16 +0000110 if (Subtarget.isThumb2() || Subtarget.hasVFP2())
111 return (ScheduleHazardRecognizer *)
Andrew Trick2da8bc82010-12-24 05:03:26 +0000112 new ARMHazardRecognizer(II, *this, getRegisterInfo(), Subtarget, DAG);
113 return TargetInstrInfoImpl::CreateTargetPostRAHazardRecognizer(II, DAG);
David Goodwin334c2642009-07-08 16:09:28 +0000114}
115
116MachineInstr *
117ARMBaseInstrInfo::convertToThreeAddress(MachineFunction::iterator &MFI,
118 MachineBasicBlock::iterator &MBBI,
119 LiveVariables *LV) const {
Evan Cheng78703dd2009-07-27 18:44:00 +0000120 // FIXME: Thumb2 support.
121
David Goodwin334c2642009-07-08 16:09:28 +0000122 if (!EnableARM3Addr)
123 return NULL;
124
125 MachineInstr *MI = MBBI;
126 MachineFunction &MF = *MI->getParent()->getParent();
Bruno Cardoso Lopes99405df2010-06-08 22:51:23 +0000127 uint64_t TSFlags = MI->getDesc().TSFlags;
David Goodwin334c2642009-07-08 16:09:28 +0000128 bool isPre = false;
129 switch ((TSFlags & ARMII::IndexModeMask) >> ARMII::IndexModeShift) {
130 default: return NULL;
131 case ARMII::IndexModePre:
132 isPre = true;
133 break;
134 case ARMII::IndexModePost:
135 break;
136 }
137
138 // Try splitting an indexed load/store to an un-indexed one plus an add/sub
139 // operation.
140 unsigned MemOpc = getUnindexedOpcode(MI->getOpcode());
141 if (MemOpc == 0)
142 return NULL;
143
144 MachineInstr *UpdateMI = NULL;
145 MachineInstr *MemMI = NULL;
146 unsigned AddrMode = (TSFlags & ARMII::AddrModeMask);
Evan Chenge837dea2011-06-28 19:10:37 +0000147 const MCInstrDesc &MCID = MI->getDesc();
148 unsigned NumOps = MCID.getNumOperands();
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000149 bool isLoad = !MI->mayStore();
David Goodwin334c2642009-07-08 16:09:28 +0000150 const MachineOperand &WB = isLoad ? MI->getOperand(1) : MI->getOperand(0);
151 const MachineOperand &Base = MI->getOperand(2);
152 const MachineOperand &Offset = MI->getOperand(NumOps-3);
153 unsigned WBReg = WB.getReg();
154 unsigned BaseReg = Base.getReg();
155 unsigned OffReg = Offset.getReg();
156 unsigned OffImm = MI->getOperand(NumOps-2).getImm();
157 ARMCC::CondCodes Pred = (ARMCC::CondCodes)MI->getOperand(NumOps-1).getImm();
158 switch (AddrMode) {
Craig Topperbc219812012-02-07 02:50:20 +0000159 default: llvm_unreachable("Unknown indexed op!");
David Goodwin334c2642009-07-08 16:09:28 +0000160 case ARMII::AddrMode2: {
161 bool isSub = ARM_AM::getAM2Op(OffImm) == ARM_AM::sub;
162 unsigned Amt = ARM_AM::getAM2Offset(OffImm);
163 if (OffReg == 0) {
Evan Chenge7cbe412009-07-08 21:03:57 +0000164 if (ARM_AM::getSOImmVal(Amt) == -1)
David Goodwin334c2642009-07-08 16:09:28 +0000165 // Can't encode it in a so_imm operand. This transformation will
166 // add more than 1 instruction. Abandon!
167 return NULL;
168 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng78703dd2009-07-27 18:44:00 +0000169 get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
Evan Chenge7cbe412009-07-08 21:03:57 +0000170 .addReg(BaseReg).addImm(Amt)
David Goodwin334c2642009-07-08 16:09:28 +0000171 .addImm(Pred).addReg(0).addReg(0);
172 } else if (Amt != 0) {
173 ARM_AM::ShiftOpc ShOpc = ARM_AM::getAM2ShiftOpc(OffImm);
174 unsigned SOOpc = ARM_AM::getSORegOpc(ShOpc, Amt);
175 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Owen Anderson92a20222011-07-21 18:54:16 +0000176 get(isSub ? ARM::SUBrsi : ARM::ADDrsi), WBReg)
David Goodwin334c2642009-07-08 16:09:28 +0000177 .addReg(BaseReg).addReg(OffReg).addReg(0).addImm(SOOpc)
178 .addImm(Pred).addReg(0).addReg(0);
179 } else
180 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng78703dd2009-07-27 18:44:00 +0000181 get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
David Goodwin334c2642009-07-08 16:09:28 +0000182 .addReg(BaseReg).addReg(OffReg)
183 .addImm(Pred).addReg(0).addReg(0);
184 break;
185 }
186 case ARMII::AddrMode3 : {
187 bool isSub = ARM_AM::getAM3Op(OffImm) == ARM_AM::sub;
188 unsigned Amt = ARM_AM::getAM3Offset(OffImm);
189 if (OffReg == 0)
190 // Immediate is 8-bits. It's guaranteed to fit in a so_imm operand.
191 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng78703dd2009-07-27 18:44:00 +0000192 get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
David Goodwin334c2642009-07-08 16:09:28 +0000193 .addReg(BaseReg).addImm(Amt)
194 .addImm(Pred).addReg(0).addReg(0);
195 else
196 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng78703dd2009-07-27 18:44:00 +0000197 get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
David Goodwin334c2642009-07-08 16:09:28 +0000198 .addReg(BaseReg).addReg(OffReg)
199 .addImm(Pred).addReg(0).addReg(0);
200 break;
201 }
202 }
203
204 std::vector<MachineInstr*> NewMIs;
205 if (isPre) {
206 if (isLoad)
207 MemMI = BuildMI(MF, MI->getDebugLoc(),
208 get(MemOpc), MI->getOperand(0).getReg())
Jim Grosbach3e556122010-10-26 22:37:02 +0000209 .addReg(WBReg).addImm(0).addImm(Pred);
David Goodwin334c2642009-07-08 16:09:28 +0000210 else
211 MemMI = BuildMI(MF, MI->getDebugLoc(),
212 get(MemOpc)).addReg(MI->getOperand(1).getReg())
213 .addReg(WBReg).addReg(0).addImm(0).addImm(Pred);
214 NewMIs.push_back(MemMI);
215 NewMIs.push_back(UpdateMI);
216 } else {
217 if (isLoad)
218 MemMI = BuildMI(MF, MI->getDebugLoc(),
219 get(MemOpc), MI->getOperand(0).getReg())
Jim Grosbach3e556122010-10-26 22:37:02 +0000220 .addReg(BaseReg).addImm(0).addImm(Pred);
David Goodwin334c2642009-07-08 16:09:28 +0000221 else
222 MemMI = BuildMI(MF, MI->getDebugLoc(),
223 get(MemOpc)).addReg(MI->getOperand(1).getReg())
224 .addReg(BaseReg).addReg(0).addImm(0).addImm(Pred);
225 if (WB.isDead())
226 UpdateMI->getOperand(0).setIsDead();
227 NewMIs.push_back(UpdateMI);
228 NewMIs.push_back(MemMI);
229 }
230
231 // Transfer LiveVariables states, kill / dead info.
232 if (LV) {
233 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
234 MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000235 if (MO.isReg() && TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
David Goodwin334c2642009-07-08 16:09:28 +0000236 unsigned Reg = MO.getReg();
237
238 LiveVariables::VarInfo &VI = LV->getVarInfo(Reg);
239 if (MO.isDef()) {
240 MachineInstr *NewMI = (Reg == WBReg) ? UpdateMI : MemMI;
241 if (MO.isDead())
242 LV->addVirtualRegisterDead(Reg, NewMI);
243 }
244 if (MO.isUse() && MO.isKill()) {
245 for (unsigned j = 0; j < 2; ++j) {
246 // Look at the two new MI's in reverse order.
247 MachineInstr *NewMI = NewMIs[j];
248 if (!NewMI->readsRegister(Reg))
249 continue;
250 LV->addVirtualRegisterKilled(Reg, NewMI);
251 if (VI.removeKill(MI))
252 VI.Kills.push_back(NewMI);
253 break;
254 }
255 }
256 }
257 }
258 }
259
260 MFI->insert(MBBI, NewMIs[1]);
261 MFI->insert(MBBI, NewMIs[0]);
262 return NewMIs[0];
263}
264
265// Branch analysis.
266bool
267ARMBaseInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,MachineBasicBlock *&TBB,
268 MachineBasicBlock *&FBB,
269 SmallVectorImpl<MachineOperand> &Cond,
270 bool AllowModify) const {
271 // If the block has no terminators, it just falls into the block after it.
272 MachineBasicBlock::iterator I = MBB.end();
Dale Johannesen93d6a7e2010-04-02 01:38:09 +0000273 if (I == MBB.begin())
274 return false;
275 --I;
276 while (I->isDebugValue()) {
277 if (I == MBB.begin())
278 return false;
279 --I;
280 }
281 if (!isUnpredicatedTerminator(I))
David Goodwin334c2642009-07-08 16:09:28 +0000282 return false;
283
284 // Get the last instruction in the block.
285 MachineInstr *LastInst = I;
286
287 // If there is only one terminator instruction, process it.
288 unsigned LastOpc = LastInst->getOpcode();
289 if (I == MBB.begin() || !isUnpredicatedTerminator(--I)) {
Evan Cheng5ca53a72009-07-27 18:20:05 +0000290 if (isUncondBranchOpcode(LastOpc)) {
David Goodwin334c2642009-07-08 16:09:28 +0000291 TBB = LastInst->getOperand(0).getMBB();
292 return false;
293 }
Evan Cheng5ca53a72009-07-27 18:20:05 +0000294 if (isCondBranchOpcode(LastOpc)) {
David Goodwin334c2642009-07-08 16:09:28 +0000295 // Block ends with fall-through condbranch.
296 TBB = LastInst->getOperand(0).getMBB();
297 Cond.push_back(LastInst->getOperand(1));
298 Cond.push_back(LastInst->getOperand(2));
299 return false;
300 }
301 return true; // Can't handle indirect branch.
302 }
303
304 // Get the instruction before it if it is a terminator.
305 MachineInstr *SecondLastInst = I;
Evan Cheng108c8722010-09-23 06:54:40 +0000306 unsigned SecondLastOpc = SecondLastInst->getOpcode();
307
308 // If AllowModify is true and the block ends with two or more unconditional
309 // branches, delete all but the first unconditional branch.
310 if (AllowModify && isUncondBranchOpcode(LastOpc)) {
311 while (isUncondBranchOpcode(SecondLastOpc)) {
312 LastInst->eraseFromParent();
313 LastInst = SecondLastInst;
314 LastOpc = LastInst->getOpcode();
Evan Cheng676e2582010-09-23 19:42:03 +0000315 if (I == MBB.begin() || !isUnpredicatedTerminator(--I)) {
316 // Return now the only terminator is an unconditional branch.
317 TBB = LastInst->getOperand(0).getMBB();
318 return false;
319 } else {
Evan Cheng108c8722010-09-23 06:54:40 +0000320 SecondLastInst = I;
321 SecondLastOpc = SecondLastInst->getOpcode();
322 }
323 }
324 }
David Goodwin334c2642009-07-08 16:09:28 +0000325
326 // If there are three terminators, we don't know what sort of block this is.
327 if (SecondLastInst && I != MBB.begin() && isUnpredicatedTerminator(--I))
328 return true;
329
Evan Cheng5ca53a72009-07-27 18:20:05 +0000330 // If the block ends with a B and a Bcc, handle it.
Evan Cheng5ca53a72009-07-27 18:20:05 +0000331 if (isCondBranchOpcode(SecondLastOpc) && isUncondBranchOpcode(LastOpc)) {
David Goodwin334c2642009-07-08 16:09:28 +0000332 TBB = SecondLastInst->getOperand(0).getMBB();
333 Cond.push_back(SecondLastInst->getOperand(1));
334 Cond.push_back(SecondLastInst->getOperand(2));
335 FBB = LastInst->getOperand(0).getMBB();
336 return false;
337 }
338
339 // If the block ends with two unconditional branches, handle it. The second
340 // one is not executed, so remove it.
Evan Cheng5ca53a72009-07-27 18:20:05 +0000341 if (isUncondBranchOpcode(SecondLastOpc) && isUncondBranchOpcode(LastOpc)) {
David Goodwin334c2642009-07-08 16:09:28 +0000342 TBB = SecondLastInst->getOperand(0).getMBB();
343 I = LastInst;
344 if (AllowModify)
345 I->eraseFromParent();
346 return false;
347 }
348
349 // ...likewise if it ends with a branch table followed by an unconditional
350 // branch. The branch folder can create these, and we must get rid of them for
351 // correctness of Thumb constant islands.
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000352 if ((isJumpTableBranchOpcode(SecondLastOpc) ||
353 isIndirectBranchOpcode(SecondLastOpc)) &&
Evan Cheng5ca53a72009-07-27 18:20:05 +0000354 isUncondBranchOpcode(LastOpc)) {
David Goodwin334c2642009-07-08 16:09:28 +0000355 I = LastInst;
356 if (AllowModify)
357 I->eraseFromParent();
358 return true;
359 }
360
361 // Otherwise, can't handle this.
362 return true;
363}
364
365
366unsigned ARMBaseInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
David Goodwin334c2642009-07-08 16:09:28 +0000367 MachineBasicBlock::iterator I = MBB.end();
368 if (I == MBB.begin()) return 0;
369 --I;
Dale Johannesen93d6a7e2010-04-02 01:38:09 +0000370 while (I->isDebugValue()) {
371 if (I == MBB.begin())
372 return 0;
373 --I;
374 }
Evan Cheng5ca53a72009-07-27 18:20:05 +0000375 if (!isUncondBranchOpcode(I->getOpcode()) &&
376 !isCondBranchOpcode(I->getOpcode()))
David Goodwin334c2642009-07-08 16:09:28 +0000377 return 0;
378
379 // Remove the branch.
380 I->eraseFromParent();
381
382 I = MBB.end();
383
384 if (I == MBB.begin()) return 1;
385 --I;
Evan Cheng5ca53a72009-07-27 18:20:05 +0000386 if (!isCondBranchOpcode(I->getOpcode()))
David Goodwin334c2642009-07-08 16:09:28 +0000387 return 1;
388
389 // Remove the branch.
390 I->eraseFromParent();
391 return 2;
392}
393
394unsigned
395ARMBaseInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
Stuart Hastings3bf91252010-06-17 22:43:56 +0000396 MachineBasicBlock *FBB,
397 const SmallVectorImpl<MachineOperand> &Cond,
398 DebugLoc DL) const {
Evan Cheng6495f632009-07-28 05:48:47 +0000399 ARMFunctionInfo *AFI = MBB.getParent()->getInfo<ARMFunctionInfo>();
400 int BOpc = !AFI->isThumbFunction()
401 ? ARM::B : (AFI->isThumb2Function() ? ARM::t2B : ARM::tB);
402 int BccOpc = !AFI->isThumbFunction()
403 ? ARM::Bcc : (AFI->isThumb2Function() ? ARM::t2Bcc : ARM::tBcc);
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000404 bool isThumb = AFI->isThumbFunction() || AFI->isThumb2Function();
Andrew Tricke23dc9c2011-09-21 02:17:37 +0000405
David Goodwin334c2642009-07-08 16:09:28 +0000406 // Shouldn't be a fall through.
407 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
408 assert((Cond.size() == 2 || Cond.size() == 0) &&
409 "ARM branch conditions have two components!");
410
411 if (FBB == 0) {
Owen Anderson112fb732011-09-09 23:13:02 +0000412 if (Cond.empty()) { // Unconditional branch?
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000413 if (isThumb)
414 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB).addImm(ARMCC::AL).addReg(0);
415 else
416 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB);
Owen Anderson112fb732011-09-09 23:13:02 +0000417 } else
Stuart Hastings3bf91252010-06-17 22:43:56 +0000418 BuildMI(&MBB, DL, get(BccOpc)).addMBB(TBB)
David Goodwin334c2642009-07-08 16:09:28 +0000419 .addImm(Cond[0].getImm()).addReg(Cond[1].getReg());
420 return 1;
421 }
422
423 // Two-way conditional branch.
Stuart Hastings3bf91252010-06-17 22:43:56 +0000424 BuildMI(&MBB, DL, get(BccOpc)).addMBB(TBB)
David Goodwin334c2642009-07-08 16:09:28 +0000425 .addImm(Cond[0].getImm()).addReg(Cond[1].getReg());
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000426 if (isThumb)
427 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB).addImm(ARMCC::AL).addReg(0);
428 else
429 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB);
David Goodwin334c2642009-07-08 16:09:28 +0000430 return 2;
431}
432
433bool ARMBaseInstrInfo::
434ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const {
435 ARMCC::CondCodes CC = (ARMCC::CondCodes)(int)Cond[0].getImm();
436 Cond[0].setImm(ARMCC::getOppositeCondition(CC));
437 return false;
438}
439
Evan Chengddfd1372011-12-14 02:11:42 +0000440bool ARMBaseInstrInfo::isPredicated(const MachineInstr *MI) const {
441 if (MI->isBundle()) {
442 MachineBasicBlock::const_instr_iterator I = MI;
443 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
444 while (++I != E && I->isInsideBundle()) {
445 int PIdx = I->findFirstPredOperandIdx();
446 if (PIdx != -1 && I->getOperand(PIdx).getImm() != ARMCC::AL)
447 return true;
448 }
449 return false;
450 }
451
452 int PIdx = MI->findFirstPredOperandIdx();
453 return PIdx != -1 && MI->getOperand(PIdx).getImm() != ARMCC::AL;
454}
455
David Goodwin334c2642009-07-08 16:09:28 +0000456bool ARMBaseInstrInfo::
457PredicateInstruction(MachineInstr *MI,
458 const SmallVectorImpl<MachineOperand> &Pred) const {
459 unsigned Opc = MI->getOpcode();
Evan Cheng5ca53a72009-07-27 18:20:05 +0000460 if (isUncondBranchOpcode(Opc)) {
461 MI->setDesc(get(getMatchingCondBranchOpcode(Opc)));
David Goodwin334c2642009-07-08 16:09:28 +0000462 MI->addOperand(MachineOperand::CreateImm(Pred[0].getImm()));
463 MI->addOperand(MachineOperand::CreateReg(Pred[1].getReg(), false));
464 return true;
465 }
466
467 int PIdx = MI->findFirstPredOperandIdx();
468 if (PIdx != -1) {
469 MachineOperand &PMO = MI->getOperand(PIdx);
470 PMO.setImm(Pred[0].getImm());
471 MI->getOperand(PIdx+1).setReg(Pred[1].getReg());
472 return true;
473 }
474 return false;
475}
476
477bool ARMBaseInstrInfo::
478SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
479 const SmallVectorImpl<MachineOperand> &Pred2) const {
480 if (Pred1.size() > 2 || Pred2.size() > 2)
481 return false;
482
483 ARMCC::CondCodes CC1 = (ARMCC::CondCodes)Pred1[0].getImm();
484 ARMCC::CondCodes CC2 = (ARMCC::CondCodes)Pred2[0].getImm();
485 if (CC1 == CC2)
486 return true;
487
488 switch (CC1) {
489 default:
490 return false;
491 case ARMCC::AL:
492 return true;
493 case ARMCC::HS:
494 return CC2 == ARMCC::HI;
495 case ARMCC::LS:
496 return CC2 == ARMCC::LO || CC2 == ARMCC::EQ;
497 case ARMCC::GE:
498 return CC2 == ARMCC::GT;
499 case ARMCC::LE:
500 return CC2 == ARMCC::LT;
501 }
502}
503
504bool ARMBaseInstrInfo::DefinesPredicate(MachineInstr *MI,
505 std::vector<MachineOperand> &Pred) const {
David Goodwin334c2642009-07-08 16:09:28 +0000506 bool Found = false;
507 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
508 const MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesen2420b552012-02-17 19:23:15 +0000509 if ((MO.isRegMask() && MO.clobbersPhysReg(ARM::CPSR)) ||
510 (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)) {
David Goodwin334c2642009-07-08 16:09:28 +0000511 Pred.push_back(MO);
512 Found = true;
513 }
514 }
515
516 return Found;
517}
518
Evan Chengac0869d2009-11-21 06:21:52 +0000519/// isPredicable - Return true if the specified instruction can be predicated.
520/// By default, this returns true for every instruction with a
521/// PredicateOperand.
522bool ARMBaseInstrInfo::isPredicable(MachineInstr *MI) const {
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000523 if (!MI->isPredicable())
Evan Chengac0869d2009-11-21 06:21:52 +0000524 return false;
525
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000526 if ((MI->getDesc().TSFlags & ARMII::DomainMask) == ARMII::DomainNEON) {
Evan Chengac0869d2009-11-21 06:21:52 +0000527 ARMFunctionInfo *AFI =
528 MI->getParent()->getParent()->getInfo<ARMFunctionInfo>();
Evan Chengd7f08102009-11-24 08:06:15 +0000529 return AFI->isThumb2Function();
Evan Chengac0869d2009-11-21 06:21:52 +0000530 }
531 return true;
532}
David Goodwin334c2642009-07-08 16:09:28 +0000533
Chris Lattner56856b12009-12-03 06:58:32 +0000534/// FIXME: Works around a gcc miscompilation with -fstrict-aliasing.
Chandler Carruth19e57022010-10-23 08:40:19 +0000535LLVM_ATTRIBUTE_NOINLINE
David Goodwin334c2642009-07-08 16:09:28 +0000536static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
Chris Lattner56856b12009-12-03 06:58:32 +0000537 unsigned JTI);
David Goodwin334c2642009-07-08 16:09:28 +0000538static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
539 unsigned JTI) {
Chris Lattner56856b12009-12-03 06:58:32 +0000540 assert(JTI < JT.size());
David Goodwin334c2642009-07-08 16:09:28 +0000541 return JT[JTI].MBBs.size();
542}
543
544/// GetInstSize - Return the size of the specified MachineInstr.
545///
546unsigned ARMBaseInstrInfo::GetInstSizeInBytes(const MachineInstr *MI) const {
547 const MachineBasicBlock &MBB = *MI->getParent();
548 const MachineFunction *MF = MBB.getParent();
Chris Lattner33adcfb2009-08-22 21:43:10 +0000549 const MCAsmInfo *MAI = MF->getTarget().getMCAsmInfo();
David Goodwin334c2642009-07-08 16:09:28 +0000550
Evan Chenge837dea2011-06-28 19:10:37 +0000551 const MCInstrDesc &MCID = MI->getDesc();
Owen Anderson16884412011-07-13 23:22:26 +0000552 if (MCID.getSize())
553 return MCID.getSize();
David Goodwin334c2642009-07-08 16:09:28 +0000554
David Blaikie4d6ccb52012-01-20 21:51:11 +0000555 // If this machine instr is an inline asm, measure it.
556 if (MI->getOpcode() == ARM::INLINEASM)
557 return getInlineAsmLength(MI->getOperand(0).getSymbolName(), *MAI);
558 if (MI->isLabel())
559 return 0;
560 unsigned Opc = MI->getOpcode();
561 switch (Opc) {
562 case TargetOpcode::IMPLICIT_DEF:
563 case TargetOpcode::KILL:
564 case TargetOpcode::PROLOG_LABEL:
565 case TargetOpcode::EH_LABEL:
566 case TargetOpcode::DBG_VALUE:
567 return 0;
568 case TargetOpcode::BUNDLE:
569 return getInstBundleLength(MI);
570 case ARM::MOVi16_ga_pcrel:
571 case ARM::MOVTi16_ga_pcrel:
572 case ARM::t2MOVi16_ga_pcrel:
573 case ARM::t2MOVTi16_ga_pcrel:
574 return 4;
575 case ARM::MOVi32imm:
576 case ARM::t2MOVi32imm:
577 return 8;
578 case ARM::CONSTPOOL_ENTRY:
579 // If this machine instr is a constant pool entry, its size is recorded as
580 // operand #2.
581 return MI->getOperand(2).getImm();
582 case ARM::Int_eh_sjlj_longjmp:
583 return 16;
584 case ARM::tInt_eh_sjlj_longjmp:
585 return 10;
586 case ARM::Int_eh_sjlj_setjmp:
587 case ARM::Int_eh_sjlj_setjmp_nofp:
588 return 20;
589 case ARM::tInt_eh_sjlj_setjmp:
590 case ARM::t2Int_eh_sjlj_setjmp:
591 case ARM::t2Int_eh_sjlj_setjmp_nofp:
592 return 12;
593 case ARM::BR_JTr:
594 case ARM::BR_JTm:
595 case ARM::BR_JTadd:
596 case ARM::tBR_JTr:
597 case ARM::t2BR_JT:
598 case ARM::t2TBB_JT:
599 case ARM::t2TBH_JT: {
600 // These are jumptable branches, i.e. a branch followed by an inlined
601 // jumptable. The size is 4 + 4 * number of entries. For TBB, each
602 // entry is one byte; TBH two byte each.
603 unsigned EntrySize = (Opc == ARM::t2TBB_JT)
604 ? 1 : ((Opc == ARM::t2TBH_JT) ? 2 : 4);
605 unsigned NumOps = MCID.getNumOperands();
606 MachineOperand JTOP =
607 MI->getOperand(NumOps - (MI->isPredicable() ? 3 : 2));
608 unsigned JTI = JTOP.getIndex();
609 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
610 assert(MJTI != 0);
611 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
612 assert(JTI < JT.size());
613 // Thumb instructions are 2 byte aligned, but JT entries are 4 byte
614 // 4 aligned. The assembler / linker may add 2 byte padding just before
615 // the JT entries. The size does not include this padding; the
616 // constant islands pass does separate bookkeeping for it.
617 // FIXME: If we know the size of the function is less than (1 << 16) *2
618 // bytes, we can use 16-bit entries instead. Then there won't be an
619 // alignment issue.
620 unsigned InstSize = (Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT) ? 2 : 4;
621 unsigned NumEntries = getNumJTEntries(JT, JTI);
622 if (Opc == ARM::t2TBB_JT && (NumEntries & 1))
623 // Make sure the instruction that follows TBB is 2-byte aligned.
624 // FIXME: Constant island pass should insert an "ALIGN" instruction
625 // instead.
626 ++NumEntries;
627 return NumEntries * EntrySize + InstSize;
628 }
629 default:
630 // Otherwise, pseudo-instruction sizes are zero.
631 return 0;
632 }
David Goodwin334c2642009-07-08 16:09:28 +0000633}
634
Evan Chengddfd1372011-12-14 02:11:42 +0000635unsigned ARMBaseInstrInfo::getInstBundleLength(const MachineInstr *MI) const {
636 unsigned Size = 0;
637 MachineBasicBlock::const_instr_iterator I = MI;
638 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
639 while (++I != E && I->isInsideBundle()) {
640 assert(!I->isBundle() && "No nested bundle!");
641 Size += GetInstSizeInBytes(&*I);
642 }
643 return Size;
644}
645
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000646void ARMBaseInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
647 MachineBasicBlock::iterator I, DebugLoc DL,
648 unsigned DestReg, unsigned SrcReg,
649 bool KillSrc) const {
650 bool GPRDest = ARM::GPRRegClass.contains(DestReg);
651 bool GPRSrc = ARM::GPRRegClass.contains(SrcReg);
Bob Wilson1665b0a2010-02-16 17:24:15 +0000652
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000653 if (GPRDest && GPRSrc) {
654 AddDefaultCC(AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::MOVr), DestReg)
655 .addReg(SrcReg, getKillRegState(KillSrc))));
656 return;
David Goodwin7bfdca02009-08-05 21:02:22 +0000657 }
David Goodwin334c2642009-07-08 16:09:28 +0000658
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000659 bool SPRDest = ARM::SPRRegClass.contains(DestReg);
660 bool SPRSrc = ARM::SPRRegClass.contains(SrcReg);
661
Chad Rosiere5038e12011-08-20 00:17:25 +0000662 unsigned Opc = 0;
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +0000663 if (SPRDest && SPRSrc)
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000664 Opc = ARM::VMOVS;
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +0000665 else if (GPRDest && SPRSrc)
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000666 Opc = ARM::VMOVRS;
667 else if (SPRDest && GPRSrc)
668 Opc = ARM::VMOVSR;
669 else if (ARM::DPRRegClass.contains(DestReg, SrcReg))
670 Opc = ARM::VMOVD;
671 else if (ARM::QPRRegClass.contains(DestReg, SrcReg))
Owen Anderson43967a92011-07-15 18:46:47 +0000672 Opc = ARM::VORRq;
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000673
Chad Rosiere5038e12011-08-20 00:17:25 +0000674 if (Opc) {
675 MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc), DestReg);
Owen Anderson43967a92011-07-15 18:46:47 +0000676 MIB.addReg(SrcReg, getKillRegState(KillSrc));
Chad Rosiere5038e12011-08-20 00:17:25 +0000677 if (Opc == ARM::VORRq)
678 MIB.addReg(SrcReg, getKillRegState(KillSrc));
Chad Rosierfea95c62011-08-20 00:52:40 +0000679 AddDefaultPred(MIB);
Chad Rosiere5038e12011-08-20 00:17:25 +0000680 return;
681 }
682
Jakob Stoklund Olesen85bdf2e2012-03-29 21:10:40 +0000683 // Handle register classes that require multiple instructions.
684 unsigned BeginIdx = 0;
685 unsigned SubRegs = 0;
686 unsigned Spacing = 1;
687
688 // Use VORRq when possible.
689 if (ARM::QQPRRegClass.contains(DestReg, SrcReg))
690 Opc = ARM::VORRq, BeginIdx = ARM::qsub_0, SubRegs = 2;
691 else if (ARM::QQQQPRRegClass.contains(DestReg, SrcReg))
692 Opc = ARM::VORRq, BeginIdx = ARM::qsub_0, SubRegs = 4;
693 // Fall back to VMOVD.
694 else if (ARM::DPairRegClass.contains(DestReg, SrcReg))
695 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 2;
696 else if (ARM::DTripleRegClass.contains(DestReg, SrcReg))
697 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 3;
698 else if (ARM::DQuadRegClass.contains(DestReg, SrcReg))
699 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 4;
700
701 else if (ARM::DPairSpcRegClass.contains(DestReg, SrcReg))
702 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 2, Spacing = 2;
703 else if (ARM::DTripleSpcRegClass.contains(DestReg, SrcReg))
704 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 3, Spacing = 2;
705 else if (ARM::DQuadSpcRegClass.contains(DestReg, SrcReg))
706 Opc = ARM::VMOVD, BeginIdx = ARM::dsub_0, SubRegs = 4, Spacing = 2;
707
Andrew Trickd79dedd2012-08-29 01:58:52 +0000708 if (!Opc)
709 llvm_unreachable("Impossible reg-to-reg copy");
Jakob Stoklund Olesen85bdf2e2012-03-29 21:10:40 +0000710
Andrew Trickd79dedd2012-08-29 01:58:52 +0000711 const TargetRegisterInfo *TRI = &getRegisterInfo();
712 MachineInstrBuilder Mov;
Andrew Trickf26e43d2012-08-29 01:58:55 +0000713
714 // Copy register tuples backward when the first Dest reg overlaps with SrcReg.
715 if (TRI->regsOverlap(SrcReg, TRI->getSubReg(DestReg, BeginIdx))) {
716 BeginIdx = BeginIdx + ((SubRegs-1)*Spacing);
717 Spacing = -Spacing;
718 }
719#ifndef NDEBUG
720 SmallSet<unsigned, 4> DstRegs;
721#endif
Andrew Trickd79dedd2012-08-29 01:58:52 +0000722 for (unsigned i = 0; i != SubRegs; ++i) {
723 unsigned Dst = TRI->getSubReg(DestReg, BeginIdx + i*Spacing);
724 unsigned Src = TRI->getSubReg(SrcReg, BeginIdx + i*Spacing);
725 assert(Dst && Src && "Bad sub-register");
Andrew Trickf26e43d2012-08-29 01:58:55 +0000726#ifndef NDEBUG
727 DstRegs.insert(Dst);
728 assert(!DstRegs.count(Src) && "destructive vector copy");
729#endif
Andrew Trickd79dedd2012-08-29 01:58:52 +0000730 Mov = BuildMI(MBB, I, I->getDebugLoc(), get(Opc), Dst)
731 .addReg(Src);
732 // VORR takes two source operands.
733 if (Opc == ARM::VORRq)
734 Mov.addReg(Src);
735 Mov = AddDefaultPred(Mov);
736 }
737 // Add implicit super-register defs and kills to the last instruction.
738 Mov->addRegisterDefined(DestReg, TRI);
739 if (KillSrc)
740 Mov->addRegisterKilled(SrcReg, TRI);
David Goodwin334c2642009-07-08 16:09:28 +0000741}
742
Evan Chengc10b5af2010-05-07 00:24:52 +0000743static const
744MachineInstrBuilder &AddDReg(MachineInstrBuilder &MIB,
745 unsigned Reg, unsigned SubIdx, unsigned State,
746 const TargetRegisterInfo *TRI) {
747 if (!SubIdx)
748 return MIB.addReg(Reg, State);
749
750 if (TargetRegisterInfo::isPhysicalRegister(Reg))
751 return MIB.addReg(TRI->getSubReg(Reg, SubIdx), State);
752 return MIB.addReg(Reg, State, SubIdx);
753}
754
David Goodwin334c2642009-07-08 16:09:28 +0000755void ARMBaseInstrInfo::
756storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
757 unsigned SrcReg, bool isKill, int FI,
Evan Cheng746ad692010-05-06 19:06:44 +0000758 const TargetRegisterClass *RC,
759 const TargetRegisterInfo *TRI) const {
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000760 DebugLoc DL;
David Goodwin334c2642009-07-08 16:09:28 +0000761 if (I != MBB.end()) DL = I->getDebugLoc();
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000762 MachineFunction &MF = *MBB.getParent();
763 MachineFrameInfo &MFI = *MF.getFrameInfo();
Jim Grosbach31bc8492009-11-08 00:27:19 +0000764 unsigned Align = MFI.getObjectAlignment(FI);
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000765
766 MachineMemOperand *MMO =
Jay Foad978e0df2011-11-15 07:34:52 +0000767 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
Chris Lattner59db5492010-09-21 04:39:43 +0000768 MachineMemOperand::MOStore,
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000769 MFI.getObjectSize(FI),
Jim Grosbach31bc8492009-11-08 00:27:19 +0000770 Align);
David Goodwin334c2642009-07-08 16:09:28 +0000771
Owen Andersone66ef2d2011-08-10 17:21:20 +0000772 switch (RC->getSize()) {
773 case 4:
774 if (ARM::GPRRegClass.hasSubClassEq(RC)) {
775 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::STRi12))
David Goodwin334c2642009-07-08 16:09:28 +0000776 .addReg(SrcReg, getKillRegState(isKill))
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000777 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000778 } else if (ARM::SPRRegClass.hasSubClassEq(RC)) {
779 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRS))
Evan Chengd31c5492010-05-06 01:34:11 +0000780 .addReg(SrcReg, getKillRegState(isKill))
781 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000782 } else
783 llvm_unreachable("Unknown reg class!");
784 break;
785 case 8:
786 if (ARM::DPRRegClass.hasSubClassEq(RC)) {
787 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRD))
David Goodwin334c2642009-07-08 16:09:28 +0000788 .addReg(SrcReg, getKillRegState(isKill))
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000789 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000790 } else
791 llvm_unreachable("Unknown reg class!");
792 break;
793 case 16:
Jakob Stoklund Olesen5b2f9132012-03-28 21:20:32 +0000794 if (ARM::DPairRegClass.hasSubClassEq(RC)) {
Jakob Stoklund Olesen7255a4e2012-01-05 00:26:57 +0000795 // Use aligned spills if the stack can be realigned.
796 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
Jim Grosbach28f08c92012-03-05 19:33:30 +0000797 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1q64))
Bob Wilsonf967ca02010-07-06 21:26:18 +0000798 .addFrameIndex(FI).addImm(16)
Evan Cheng69b9f982010-05-13 01:12:06 +0000799 .addReg(SrcReg, getKillRegState(isKill))
800 .addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000801 } else {
802 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMQIA))
Evan Cheng69b9f982010-05-13 01:12:06 +0000803 .addReg(SrcReg, getKillRegState(isKill))
804 .addFrameIndex(FI)
Evan Cheng69b9f982010-05-13 01:12:06 +0000805 .addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000806 }
807 } else
808 llvm_unreachable("Unknown reg class!");
809 break;
Anton Korobeynikovb58d7d02012-08-04 13:16:12 +0000810 case 24:
811 if (ARM::DTripleRegClass.hasSubClassEq(RC)) {
812 // Use aligned spills if the stack can be realigned.
813 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
814 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1d64TPseudo))
815 .addFrameIndex(FI).addImm(16)
816 .addReg(SrcReg, getKillRegState(isKill))
817 .addMemOperand(MMO));
818 } else {
819 MachineInstrBuilder MIB =
820 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
821 .addFrameIndex(FI))
822 .addMemOperand(MMO);
823 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
824 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
825 AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
826 }
827 } else
828 llvm_unreachable("Unknown reg class!");
829 break;
Owen Andersone66ef2d2011-08-10 17:21:20 +0000830 case 32:
Anton Korobeynikovb58d7d02012-08-04 13:16:12 +0000831 if (ARM::QQPRRegClass.hasSubClassEq(RC) || ARM::DQuadRegClass.hasSubClassEq(RC)) {
Owen Andersone66ef2d2011-08-10 17:21:20 +0000832 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
833 // FIXME: It's possible to only store part of the QQ register if the
834 // spilled def has a sub-register index.
835 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1d64QPseudo))
Bob Wilson168f3822010-09-15 01:48:05 +0000836 .addFrameIndex(FI).addImm(16)
837 .addReg(SrcReg, getKillRegState(isKill))
838 .addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000839 } else {
840 MachineInstrBuilder MIB =
841 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
Bill Wendling73fe34a2010-11-16 01:16:36 +0000842 .addFrameIndex(FI))
Owen Andersone66ef2d2011-08-10 17:21:20 +0000843 .addMemOperand(MMO);
844 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
845 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
846 MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
847 AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
848 }
849 } else
850 llvm_unreachable("Unknown reg class!");
851 break;
852 case 64:
853 if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
854 MachineInstrBuilder MIB =
855 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
856 .addFrameIndex(FI))
857 .addMemOperand(MMO);
858 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
859 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
860 MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
861 MIB = AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
862 MIB = AddDReg(MIB, SrcReg, ARM::dsub_4, 0, TRI);
863 MIB = AddDReg(MIB, SrcReg, ARM::dsub_5, 0, TRI);
864 MIB = AddDReg(MIB, SrcReg, ARM::dsub_6, 0, TRI);
865 AddDReg(MIB, SrcReg, ARM::dsub_7, 0, TRI);
866 } else
867 llvm_unreachable("Unknown reg class!");
868 break;
869 default:
870 llvm_unreachable("Unknown reg class!");
David Goodwin334c2642009-07-08 16:09:28 +0000871 }
872}
873
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000874unsigned
875ARMBaseInstrInfo::isStoreToStackSlot(const MachineInstr *MI,
876 int &FrameIndex) const {
877 switch (MI->getOpcode()) {
878 default: break;
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000879 case ARM::STRrs:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000880 case ARM::t2STRs: // FIXME: don't use t2STRs to access frame.
881 if (MI->getOperand(1).isFI() &&
882 MI->getOperand(2).isReg() &&
883 MI->getOperand(3).isImm() &&
884 MI->getOperand(2).getReg() == 0 &&
885 MI->getOperand(3).getImm() == 0) {
886 FrameIndex = MI->getOperand(1).getIndex();
887 return MI->getOperand(0).getReg();
888 }
889 break;
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000890 case ARM::STRi12:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000891 case ARM::t2STRi12:
Jim Grosbach74472b42011-06-29 20:26:39 +0000892 case ARM::tSTRspi:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000893 case ARM::VSTRD:
894 case ARM::VSTRS:
895 if (MI->getOperand(1).isFI() &&
896 MI->getOperand(2).isImm() &&
897 MI->getOperand(2).getImm() == 0) {
898 FrameIndex = MI->getOperand(1).getIndex();
899 return MI->getOperand(0).getReg();
900 }
901 break;
Jim Grosbach28f08c92012-03-05 19:33:30 +0000902 case ARM::VST1q64:
Anton Korobeynikov161474d2012-08-04 13:22:14 +0000903 case ARM::VST1d64TPseudo:
904 case ARM::VST1d64QPseudo:
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +0000905 if (MI->getOperand(0).isFI() &&
906 MI->getOperand(2).getSubReg() == 0) {
907 FrameIndex = MI->getOperand(0).getIndex();
908 return MI->getOperand(2).getReg();
909 }
Jakob Stoklund Olesen31bbc512010-09-15 21:40:09 +0000910 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +0000911 case ARM::VSTMQIA:
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +0000912 if (MI->getOperand(1).isFI() &&
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +0000913 MI->getOperand(0).getSubReg() == 0) {
914 FrameIndex = MI->getOperand(1).getIndex();
915 return MI->getOperand(0).getReg();
916 }
917 break;
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000918 }
919
920 return 0;
921}
922
Jakob Stoklund Olesen36ee0e62011-08-08 21:45:32 +0000923unsigned ARMBaseInstrInfo::isStoreToStackSlotPostFE(const MachineInstr *MI,
924 int &FrameIndex) const {
925 const MachineMemOperand *Dummy;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000926 return MI->mayStore() && hasStoreToStackSlot(MI, Dummy, FrameIndex);
Jakob Stoklund Olesen36ee0e62011-08-08 21:45:32 +0000927}
928
David Goodwin334c2642009-07-08 16:09:28 +0000929void ARMBaseInstrInfo::
930loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
931 unsigned DestReg, int FI,
Evan Cheng746ad692010-05-06 19:06:44 +0000932 const TargetRegisterClass *RC,
933 const TargetRegisterInfo *TRI) const {
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000934 DebugLoc DL;
David Goodwin334c2642009-07-08 16:09:28 +0000935 if (I != MBB.end()) DL = I->getDebugLoc();
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000936 MachineFunction &MF = *MBB.getParent();
937 MachineFrameInfo &MFI = *MF.getFrameInfo();
Jim Grosbach31bc8492009-11-08 00:27:19 +0000938 unsigned Align = MFI.getObjectAlignment(FI);
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000939 MachineMemOperand *MMO =
Chris Lattner59db5492010-09-21 04:39:43 +0000940 MF.getMachineMemOperand(
Jay Foad978e0df2011-11-15 07:34:52 +0000941 MachinePointerInfo::getFixedStack(FI),
Chris Lattner59db5492010-09-21 04:39:43 +0000942 MachineMemOperand::MOLoad,
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000943 MFI.getObjectSize(FI),
Jim Grosbach31bc8492009-11-08 00:27:19 +0000944 Align);
David Goodwin334c2642009-07-08 16:09:28 +0000945
Owen Andersone66ef2d2011-08-10 17:21:20 +0000946 switch (RC->getSize()) {
947 case 4:
948 if (ARM::GPRRegClass.hasSubClassEq(RC)) {
949 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::LDRi12), DestReg)
950 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Bob Wilson0eb0c742010-02-16 22:01:59 +0000951
Owen Andersone66ef2d2011-08-10 17:21:20 +0000952 } else if (ARM::SPRRegClass.hasSubClassEq(RC)) {
953 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRS), DestReg)
Jim Grosbach3e556122010-10-26 22:37:02 +0000954 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000955 } else
956 llvm_unreachable("Unknown reg class!");
Bob Wilsonebe99b22010-06-18 21:32:42 +0000957 break;
Owen Andersone66ef2d2011-08-10 17:21:20 +0000958 case 8:
959 if (ARM::DPRRegClass.hasSubClassEq(RC)) {
960 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRD), DestReg)
Evan Chengd31c5492010-05-06 01:34:11 +0000961 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000962 } else
963 llvm_unreachable("Unknown reg class!");
Bob Wilsonebe99b22010-06-18 21:32:42 +0000964 break;
Owen Andersone66ef2d2011-08-10 17:21:20 +0000965 case 16:
Jakob Stoklund Olesen5b2f9132012-03-28 21:20:32 +0000966 if (ARM::DPairRegClass.hasSubClassEq(RC)) {
Jakob Stoklund Olesen7255a4e2012-01-05 00:26:57 +0000967 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
Jim Grosbach28f08c92012-03-05 19:33:30 +0000968 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1q64), DestReg)
Bob Wilsonf967ca02010-07-06 21:26:18 +0000969 .addFrameIndex(FI).addImm(16)
Evan Cheng69b9f982010-05-13 01:12:06 +0000970 .addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +0000971 } else {
972 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMQIA), DestReg)
973 .addFrameIndex(FI)
974 .addMemOperand(MMO));
975 }
976 } else
977 llvm_unreachable("Unknown reg class!");
Bob Wilsonebe99b22010-06-18 21:32:42 +0000978 break;
Anton Korobeynikovb58d7d02012-08-04 13:16:12 +0000979 case 24:
980 if (ARM::DTripleRegClass.hasSubClassEq(RC)) {
981 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
982 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1d64TPseudo), DestReg)
983 .addFrameIndex(FI).addImm(16)
984 .addMemOperand(MMO));
985 } else {
986 MachineInstrBuilder MIB =
987 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
988 .addFrameIndex(FI)
989 .addMemOperand(MMO));
990 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
991 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
992 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
993 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
994 MIB.addReg(DestReg, RegState::ImplicitDefine);
995 }
996 } else
997 llvm_unreachable("Unknown reg class!");
998 break;
999 case 32:
1000 if (ARM::QQPRRegClass.hasSubClassEq(RC) || ARM::DQuadRegClass.hasSubClassEq(RC)) {
Owen Andersone66ef2d2011-08-10 17:21:20 +00001001 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
1002 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1d64QPseudo), DestReg)
Bob Wilson168f3822010-09-15 01:48:05 +00001003 .addFrameIndex(FI).addImm(16)
1004 .addMemOperand(MMO));
Owen Andersone66ef2d2011-08-10 17:21:20 +00001005 } else {
1006 MachineInstrBuilder MIB =
Bill Wendling73fe34a2010-11-16 01:16:36 +00001007 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
1008 .addFrameIndex(FI))
Owen Andersone66ef2d2011-08-10 17:21:20 +00001009 .addMemOperand(MMO);
Jakob Stoklund Olesenfce711c2012-03-04 18:40:30 +00001010 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
1011 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
1012 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
1013 MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::DefineNoRead, TRI);
Jakob Stoklund Olesen3247af22012-03-06 02:48:17 +00001014 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1015 MIB.addReg(DestReg, RegState::ImplicitDefine);
Owen Andersone66ef2d2011-08-10 17:21:20 +00001016 }
1017 } else
1018 llvm_unreachable("Unknown reg class!");
1019 break;
1020 case 64:
1021 if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
1022 MachineInstrBuilder MIB =
1023 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
1024 .addFrameIndex(FI))
1025 .addMemOperand(MMO);
Jakob Stoklund Olesenfce711c2012-03-04 18:40:30 +00001026 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
1027 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
1028 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
1029 MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::DefineNoRead, TRI);
1030 MIB = AddDReg(MIB, DestReg, ARM::dsub_4, RegState::DefineNoRead, TRI);
1031 MIB = AddDReg(MIB, DestReg, ARM::dsub_5, RegState::DefineNoRead, TRI);
1032 MIB = AddDReg(MIB, DestReg, ARM::dsub_6, RegState::DefineNoRead, TRI);
1033 MIB = AddDReg(MIB, DestReg, ARM::dsub_7, RegState::DefineNoRead, TRI);
Jakob Stoklund Olesen3247af22012-03-06 02:48:17 +00001034 if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1035 MIB.addReg(DestReg, RegState::ImplicitDefine);
Owen Andersone66ef2d2011-08-10 17:21:20 +00001036 } else
1037 llvm_unreachable("Unknown reg class!");
Bob Wilsonebe99b22010-06-18 21:32:42 +00001038 break;
Bob Wilsonebe99b22010-06-18 21:32:42 +00001039 default:
1040 llvm_unreachable("Unknown regclass!");
David Goodwin334c2642009-07-08 16:09:28 +00001041 }
1042}
1043
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +00001044unsigned
1045ARMBaseInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
1046 int &FrameIndex) const {
1047 switch (MI->getOpcode()) {
1048 default: break;
Jim Grosbach3e556122010-10-26 22:37:02 +00001049 case ARM::LDRrs:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +00001050 case ARM::t2LDRs: // FIXME: don't use t2LDRs to access frame.
1051 if (MI->getOperand(1).isFI() &&
1052 MI->getOperand(2).isReg() &&
1053 MI->getOperand(3).isImm() &&
1054 MI->getOperand(2).getReg() == 0 &&
1055 MI->getOperand(3).getImm() == 0) {
1056 FrameIndex = MI->getOperand(1).getIndex();
1057 return MI->getOperand(0).getReg();
1058 }
1059 break;
Jim Grosbach3e556122010-10-26 22:37:02 +00001060 case ARM::LDRi12:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +00001061 case ARM::t2LDRi12:
Jim Grosbach74472b42011-06-29 20:26:39 +00001062 case ARM::tLDRspi:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +00001063 case ARM::VLDRD:
1064 case ARM::VLDRS:
1065 if (MI->getOperand(1).isFI() &&
1066 MI->getOperand(2).isImm() &&
1067 MI->getOperand(2).getImm() == 0) {
1068 FrameIndex = MI->getOperand(1).getIndex();
1069 return MI->getOperand(0).getReg();
1070 }
1071 break;
Jim Grosbach28f08c92012-03-05 19:33:30 +00001072 case ARM::VLD1q64:
Anton Korobeynikov161474d2012-08-04 13:22:14 +00001073 case ARM::VLD1d64TPseudo:
1074 case ARM::VLD1d64QPseudo:
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +00001075 if (MI->getOperand(1).isFI() &&
1076 MI->getOperand(0).getSubReg() == 0) {
1077 FrameIndex = MI->getOperand(1).getIndex();
1078 return MI->getOperand(0).getReg();
1079 }
1080 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00001081 case ARM::VLDMQIA:
Jakob Stoklund Olesen06f264e2010-09-15 21:40:11 +00001082 if (MI->getOperand(1).isFI() &&
Jakob Stoklund Olesen06f264e2010-09-15 21:40:11 +00001083 MI->getOperand(0).getSubReg() == 0) {
1084 FrameIndex = MI->getOperand(1).getIndex();
1085 return MI->getOperand(0).getReg();
1086 }
1087 break;
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +00001088 }
1089
1090 return 0;
1091}
1092
Jakob Stoklund Olesen36ee0e62011-08-08 21:45:32 +00001093unsigned ARMBaseInstrInfo::isLoadFromStackSlotPostFE(const MachineInstr *MI,
1094 int &FrameIndex) const {
1095 const MachineMemOperand *Dummy;
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001096 return MI->mayLoad() && hasLoadFromStackSlot(MI, Dummy, FrameIndex);
Jakob Stoklund Olesen36ee0e62011-08-08 21:45:32 +00001097}
1098
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +00001099bool ARMBaseInstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const{
1100 // This hook gets to expand COPY instructions before they become
1101 // copyPhysReg() calls. Look for VMOVS instructions that can legally be
1102 // widened to VMOVD. We prefer the VMOVD when possible because it may be
1103 // changed into a VORR that can go down the NEON pipeline.
1104 if (!WidenVMOVS || !MI->isCopy())
1105 return false;
1106
1107 // Look for a copy between even S-registers. That is where we keep floats
1108 // when using NEON v2f32 instructions for f32 arithmetic.
1109 unsigned DstRegS = MI->getOperand(0).getReg();
1110 unsigned SrcRegS = MI->getOperand(1).getReg();
1111 if (!ARM::SPRRegClass.contains(DstRegS, SrcRegS))
1112 return false;
1113
1114 const TargetRegisterInfo *TRI = &getRegisterInfo();
1115 unsigned DstRegD = TRI->getMatchingSuperReg(DstRegS, ARM::ssub_0,
1116 &ARM::DPRRegClass);
1117 unsigned SrcRegD = TRI->getMatchingSuperReg(SrcRegS, ARM::ssub_0,
1118 &ARM::DPRRegClass);
1119 if (!DstRegD || !SrcRegD)
1120 return false;
1121
1122 // We want to widen this into a DstRegD = VMOVD SrcRegD copy. This is only
1123 // legal if the COPY already defines the full DstRegD, and it isn't a
1124 // sub-register insertion.
1125 if (!MI->definesRegister(DstRegD, TRI) || MI->readsRegister(DstRegD, TRI))
1126 return false;
1127
Jakob Stoklund Olesen1c062c22011-10-12 00:06:23 +00001128 // A dead copy shouldn't show up here, but reject it just in case.
1129 if (MI->getOperand(0).isDead())
1130 return false;
1131
1132 // All clear, widen the COPY.
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +00001133 DEBUG(dbgs() << "widening: " << *MI);
Jakob Stoklund Olesen1c062c22011-10-12 00:06:23 +00001134
1135 // Get rid of the old <imp-def> of DstRegD. Leave it if it defines a Q-reg
1136 // or some other super-register.
1137 int ImpDefIdx = MI->findRegisterDefOperandIdx(DstRegD);
1138 if (ImpDefIdx != -1)
1139 MI->RemoveOperand(ImpDefIdx);
1140
1141 // Change the opcode and operands.
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +00001142 MI->setDesc(get(ARM::VMOVD));
1143 MI->getOperand(0).setReg(DstRegD);
1144 MI->getOperand(1).setReg(SrcRegD);
1145 AddDefaultPred(MachineInstrBuilder(MI));
Jakob Stoklund Olesen1c062c22011-10-12 00:06:23 +00001146
1147 // We are now reading SrcRegD instead of SrcRegS. This may upset the
1148 // register scavenger and machine verifier, so we need to indicate that we
1149 // are reading an undefined value from SrcRegD, but a proper value from
1150 // SrcRegS.
1151 MI->getOperand(1).setIsUndef();
1152 MachineInstrBuilder(MI).addReg(SrcRegS, RegState::Implicit);
1153
1154 // SrcRegD may actually contain an unrelated value in the ssub_1
1155 // sub-register. Don't kill it. Only kill the ssub_0 sub-register.
1156 if (MI->getOperand(1).isKill()) {
1157 MI->getOperand(1).setIsKill(false);
1158 MI->addRegisterKilled(SrcRegS, TRI, true);
1159 }
1160
Jakob Stoklund Olesen142bd1a2011-10-11 00:59:06 +00001161 DEBUG(dbgs() << "replaced by: " << *MI);
1162 return true;
1163}
1164
Evan Cheng62b50652010-04-26 07:39:25 +00001165MachineInstr*
1166ARMBaseInstrInfo::emitFrameIndexDebugValue(MachineFunction &MF,
Evan Cheng8601a3d2010-04-29 01:13:30 +00001167 int FrameIx, uint64_t Offset,
Evan Cheng62b50652010-04-26 07:39:25 +00001168 const MDNode *MDPtr,
1169 DebugLoc DL) const {
1170 MachineInstrBuilder MIB = BuildMI(MF, DL, get(ARM::DBG_VALUE))
1171 .addFrameIndex(FrameIx).addImm(0).addImm(Offset).addMetadata(MDPtr);
1172 return &*MIB;
1173}
1174
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001175/// Create a copy of a const pool value. Update CPI to the new index and return
1176/// the label UID.
1177static unsigned duplicateCPV(MachineFunction &MF, unsigned &CPI) {
1178 MachineConstantPool *MCP = MF.getConstantPool();
1179 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1180
1181 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI];
1182 assert(MCPE.isMachineConstantPoolEntry() &&
1183 "Expecting a machine constantpool entry!");
1184 ARMConstantPoolValue *ACPV =
1185 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
1186
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001187 unsigned PCLabelId = AFI->createPICLabelUId();
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001188 ARMConstantPoolValue *NewCPV = 0;
Jim Grosbach51f5b672010-09-10 21:38:22 +00001189 // FIXME: The below assumes PIC relocation model and that the function
1190 // is Thumb mode (t1 or t2). PCAdjustment would be 8 for ARM mode PIC, and
1191 // zero for non-PIC in ARM or Thumb. The callers are all of thumb LDR
1192 // instructions, so that's probably OK, but is PIC always correct when
1193 // we get here?
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001194 if (ACPV->isGlobalValue())
Bill Wendling5bb77992011-10-01 08:00:54 +00001195 NewCPV = ARMConstantPoolConstant::
1196 Create(cast<ARMConstantPoolConstant>(ACPV)->getGV(), PCLabelId,
1197 ARMCP::CPValue, 4);
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001198 else if (ACPV->isExtSymbol())
Bill Wendlingfe31e672011-10-01 08:58:29 +00001199 NewCPV = ARMConstantPoolSymbol::
1200 Create(MF.getFunction()->getContext(),
1201 cast<ARMConstantPoolSymbol>(ACPV)->getSymbol(), PCLabelId, 4);
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001202 else if (ACPV->isBlockAddress())
Bill Wendling5bb77992011-10-01 08:00:54 +00001203 NewCPV = ARMConstantPoolConstant::
1204 Create(cast<ARMConstantPoolConstant>(ACPV)->getBlockAddress(), PCLabelId,
1205 ARMCP::CPBlockAddress, 4);
Jim Grosbach51f5b672010-09-10 21:38:22 +00001206 else if (ACPV->isLSDA())
Bill Wendling5bb77992011-10-01 08:00:54 +00001207 NewCPV = ARMConstantPoolConstant::Create(MF.getFunction(), PCLabelId,
1208 ARMCP::CPLSDA, 4);
Bill Wendlinge00897c2011-09-29 23:50:42 +00001209 else if (ACPV->isMachineBasicBlock())
Bill Wendling3320f2a2011-10-01 09:30:42 +00001210 NewCPV = ARMConstantPoolMBB::
1211 Create(MF.getFunction()->getContext(),
1212 cast<ARMConstantPoolMBB>(ACPV)->getMBB(), PCLabelId, 4);
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001213 else
1214 llvm_unreachable("Unexpected ARM constantpool value type!!");
1215 CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlignment());
1216 return PCLabelId;
1217}
1218
Evan Chengfdc83402009-11-08 00:15:23 +00001219void ARMBaseInstrInfo::
1220reMaterialize(MachineBasicBlock &MBB,
1221 MachineBasicBlock::iterator I,
1222 unsigned DestReg, unsigned SubIdx,
Evan Chengd57cdd52009-11-14 02:55:43 +00001223 const MachineInstr *Orig,
Jakob Stoklund Olesen9edf7de2010-06-02 22:47:25 +00001224 const TargetRegisterInfo &TRI) const {
Evan Chengfdc83402009-11-08 00:15:23 +00001225 unsigned Opcode = Orig->getOpcode();
1226 switch (Opcode) {
1227 default: {
1228 MachineInstr *MI = MBB.getParent()->CloneMachineInstr(Orig);
Jakob Stoklund Olesen9edf7de2010-06-02 22:47:25 +00001229 MI->substituteRegister(Orig->getOperand(0).getReg(), DestReg, SubIdx, TRI);
Evan Chengfdc83402009-11-08 00:15:23 +00001230 MBB.insert(I, MI);
1231 break;
1232 }
1233 case ARM::tLDRpci_pic:
1234 case ARM::t2LDRpci_pic: {
1235 MachineFunction &MF = *MBB.getParent();
Evan Chengfdc83402009-11-08 00:15:23 +00001236 unsigned CPI = Orig->getOperand(1).getIndex();
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001237 unsigned PCLabelId = duplicateCPV(MF, CPI);
Evan Chengfdc83402009-11-08 00:15:23 +00001238 MachineInstrBuilder MIB = BuildMI(MBB, I, Orig->getDebugLoc(), get(Opcode),
1239 DestReg)
1240 .addConstantPoolIndex(CPI).addImm(PCLabelId);
Chris Lattnerd7d030a2011-04-29 05:24:29 +00001241 MIB->setMemRefs(Orig->memoperands_begin(), Orig->memoperands_end());
Evan Chengfdc83402009-11-08 00:15:23 +00001242 break;
1243 }
1244 }
Evan Chengfdc83402009-11-08 00:15:23 +00001245}
1246
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001247MachineInstr *
1248ARMBaseInstrInfo::duplicate(MachineInstr *Orig, MachineFunction &MF) const {
1249 MachineInstr *MI = TargetInstrInfoImpl::duplicate(Orig, MF);
1250 switch(Orig->getOpcode()) {
1251 case ARM::tLDRpci_pic:
1252 case ARM::t2LDRpci_pic: {
1253 unsigned CPI = Orig->getOperand(1).getIndex();
1254 unsigned PCLabelId = duplicateCPV(MF, CPI);
1255 Orig->getOperand(1).setIndex(CPI);
1256 Orig->getOperand(2).setImm(PCLabelId);
1257 break;
1258 }
1259 }
1260 return MI;
1261}
1262
Evan Cheng506049f2010-03-03 01:44:33 +00001263bool ARMBaseInstrInfo::produceSameValue(const MachineInstr *MI0,
Evan Cheng9fe20092011-01-20 08:34:58 +00001264 const MachineInstr *MI1,
1265 const MachineRegisterInfo *MRI) const {
Evan Chengd457e6e2009-11-07 04:04:34 +00001266 int Opcode = MI0->getOpcode();
Evan Chengd7e3cc82011-01-20 23:55:07 +00001267 if (Opcode == ARM::t2LDRpci ||
Evan Cheng9b824252009-11-20 02:10:27 +00001268 Opcode == ARM::t2LDRpci_pic ||
1269 Opcode == ARM::tLDRpci ||
Evan Cheng9fe20092011-01-20 08:34:58 +00001270 Opcode == ARM::tLDRpci_pic ||
Evan Cheng53519f02011-01-21 18:55:51 +00001271 Opcode == ARM::MOV_ga_dyn ||
1272 Opcode == ARM::MOV_ga_pcrel ||
1273 Opcode == ARM::MOV_ga_pcrel_ldr ||
1274 Opcode == ARM::t2MOV_ga_dyn ||
1275 Opcode == ARM::t2MOV_ga_pcrel) {
Evan Chengd457e6e2009-11-07 04:04:34 +00001276 if (MI1->getOpcode() != Opcode)
1277 return false;
1278 if (MI0->getNumOperands() != MI1->getNumOperands())
1279 return false;
1280
1281 const MachineOperand &MO0 = MI0->getOperand(1);
1282 const MachineOperand &MO1 = MI1->getOperand(1);
1283 if (MO0.getOffset() != MO1.getOffset())
1284 return false;
1285
Evan Cheng53519f02011-01-21 18:55:51 +00001286 if (Opcode == ARM::MOV_ga_dyn ||
1287 Opcode == ARM::MOV_ga_pcrel ||
1288 Opcode == ARM::MOV_ga_pcrel_ldr ||
1289 Opcode == ARM::t2MOV_ga_dyn ||
1290 Opcode == ARM::t2MOV_ga_pcrel)
Evan Cheng9fe20092011-01-20 08:34:58 +00001291 // Ignore the PC labels.
1292 return MO0.getGlobal() == MO1.getGlobal();
1293
Evan Chengd457e6e2009-11-07 04:04:34 +00001294 const MachineFunction *MF = MI0->getParent()->getParent();
1295 const MachineConstantPool *MCP = MF->getConstantPool();
1296 int CPI0 = MO0.getIndex();
1297 int CPI1 = MO1.getIndex();
1298 const MachineConstantPoolEntry &MCPE0 = MCP->getConstants()[CPI0];
1299 const MachineConstantPoolEntry &MCPE1 = MCP->getConstants()[CPI1];
Evan Chengd7006172011-03-24 06:20:03 +00001300 bool isARMCP0 = MCPE0.isMachineConstantPoolEntry();
1301 bool isARMCP1 = MCPE1.isMachineConstantPoolEntry();
1302 if (isARMCP0 && isARMCP1) {
1303 ARMConstantPoolValue *ACPV0 =
1304 static_cast<ARMConstantPoolValue*>(MCPE0.Val.MachineCPVal);
1305 ARMConstantPoolValue *ACPV1 =
1306 static_cast<ARMConstantPoolValue*>(MCPE1.Val.MachineCPVal);
1307 return ACPV0->hasSameValue(ACPV1);
1308 } else if (!isARMCP0 && !isARMCP1) {
1309 return MCPE0.Val.ConstVal == MCPE1.Val.ConstVal;
1310 }
1311 return false;
Evan Cheng9fe20092011-01-20 08:34:58 +00001312 } else if (Opcode == ARM::PICLDR) {
1313 if (MI1->getOpcode() != Opcode)
1314 return false;
1315 if (MI0->getNumOperands() != MI1->getNumOperands())
1316 return false;
1317
1318 unsigned Addr0 = MI0->getOperand(1).getReg();
1319 unsigned Addr1 = MI1->getOperand(1).getReg();
1320 if (Addr0 != Addr1) {
1321 if (!MRI ||
1322 !TargetRegisterInfo::isVirtualRegister(Addr0) ||
1323 !TargetRegisterInfo::isVirtualRegister(Addr1))
1324 return false;
1325
1326 // This assumes SSA form.
1327 MachineInstr *Def0 = MRI->getVRegDef(Addr0);
1328 MachineInstr *Def1 = MRI->getVRegDef(Addr1);
1329 // Check if the loaded value, e.g. a constantpool of a global address, are
1330 // the same.
1331 if (!produceSameValue(Def0, Def1, MRI))
1332 return false;
1333 }
1334
1335 for (unsigned i = 3, e = MI0->getNumOperands(); i != e; ++i) {
1336 // %vreg12<def> = PICLDR %vreg11, 0, pred:14, pred:%noreg
1337 const MachineOperand &MO0 = MI0->getOperand(i);
1338 const MachineOperand &MO1 = MI1->getOperand(i);
1339 if (!MO0.isIdenticalTo(MO1))
1340 return false;
1341 }
1342 return true;
Evan Chengd457e6e2009-11-07 04:04:34 +00001343 }
1344
Evan Cheng506049f2010-03-03 01:44:33 +00001345 return MI0->isIdenticalTo(MI1, MachineInstr::IgnoreVRegDefs);
Evan Chengd457e6e2009-11-07 04:04:34 +00001346}
1347
Bill Wendling4b722102010-06-23 23:00:16 +00001348/// areLoadsFromSameBasePtr - This is used by the pre-regalloc scheduler to
1349/// determine if two loads are loading from the same base address. It should
1350/// only return true if the base pointers are the same and the only differences
1351/// between the two addresses is the offset. It also returns the offsets by
1352/// reference.
1353bool ARMBaseInstrInfo::areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
1354 int64_t &Offset1,
1355 int64_t &Offset2) const {
1356 // Don't worry about Thumb: just ARM and Thumb2.
1357 if (Subtarget.isThumb1Only()) return false;
1358
1359 if (!Load1->isMachineOpcode() || !Load2->isMachineOpcode())
1360 return false;
1361
1362 switch (Load1->getMachineOpcode()) {
1363 default:
1364 return false;
Jim Grosbach3e556122010-10-26 22:37:02 +00001365 case ARM::LDRi12:
Jim Grosbachc1d30212010-10-27 00:19:44 +00001366 case ARM::LDRBi12:
Bill Wendling4b722102010-06-23 23:00:16 +00001367 case ARM::LDRD:
1368 case ARM::LDRH:
1369 case ARM::LDRSB:
1370 case ARM::LDRSH:
1371 case ARM::VLDRD:
1372 case ARM::VLDRS:
1373 case ARM::t2LDRi8:
1374 case ARM::t2LDRDi8:
1375 case ARM::t2LDRSHi8:
1376 case ARM::t2LDRi12:
1377 case ARM::t2LDRSHi12:
1378 break;
1379 }
1380
1381 switch (Load2->getMachineOpcode()) {
1382 default:
1383 return false;
Jim Grosbach3e556122010-10-26 22:37:02 +00001384 case ARM::LDRi12:
Jim Grosbachc1d30212010-10-27 00:19:44 +00001385 case ARM::LDRBi12:
Bill Wendling4b722102010-06-23 23:00:16 +00001386 case ARM::LDRD:
1387 case ARM::LDRH:
1388 case ARM::LDRSB:
1389 case ARM::LDRSH:
1390 case ARM::VLDRD:
1391 case ARM::VLDRS:
1392 case ARM::t2LDRi8:
1393 case ARM::t2LDRDi8:
1394 case ARM::t2LDRSHi8:
1395 case ARM::t2LDRi12:
1396 case ARM::t2LDRSHi12:
1397 break;
1398 }
1399
1400 // Check if base addresses and chain operands match.
1401 if (Load1->getOperand(0) != Load2->getOperand(0) ||
1402 Load1->getOperand(4) != Load2->getOperand(4))
1403 return false;
1404
1405 // Index should be Reg0.
1406 if (Load1->getOperand(3) != Load2->getOperand(3))
1407 return false;
1408
1409 // Determine the offsets.
1410 if (isa<ConstantSDNode>(Load1->getOperand(1)) &&
1411 isa<ConstantSDNode>(Load2->getOperand(1))) {
1412 Offset1 = cast<ConstantSDNode>(Load1->getOperand(1))->getSExtValue();
1413 Offset2 = cast<ConstantSDNode>(Load2->getOperand(1))->getSExtValue();
1414 return true;
1415 }
1416
1417 return false;
1418}
1419
1420/// shouldScheduleLoadsNear - This is a used by the pre-regalloc scheduler to
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001421/// determine (in conjunction with areLoadsFromSameBasePtr) if two loads should
Bill Wendling4b722102010-06-23 23:00:16 +00001422/// be scheduled togther. On some targets if two loads are loading from
1423/// addresses in the same cache line, it's better if they are scheduled
1424/// together. This function takes two integers that represent the load offsets
1425/// from the common base address. It returns true if it decides it's desirable
1426/// to schedule the two loads together. "NumLoads" is the number of loads that
1427/// have already been scheduled after Load1.
1428bool ARMBaseInstrInfo::shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
1429 int64_t Offset1, int64_t Offset2,
1430 unsigned NumLoads) const {
1431 // Don't worry about Thumb: just ARM and Thumb2.
1432 if (Subtarget.isThumb1Only()) return false;
1433
1434 assert(Offset2 > Offset1);
1435
1436 if ((Offset2 - Offset1) / 8 > 64)
1437 return false;
1438
1439 if (Load1->getMachineOpcode() != Load2->getMachineOpcode())
1440 return false; // FIXME: overly conservative?
1441
1442 // Four loads in a row should be sufficient.
1443 if (NumLoads >= 3)
1444 return false;
1445
1446 return true;
1447}
1448
Evan Cheng86050dc2010-06-18 23:09:54 +00001449bool ARMBaseInstrInfo::isSchedulingBoundary(const MachineInstr *MI,
1450 const MachineBasicBlock *MBB,
1451 const MachineFunction &MF) const {
Jim Grosbach57bb3942010-06-25 18:43:14 +00001452 // Debug info is never a scheduling boundary. It's necessary to be explicit
1453 // due to the special treatment of IT instructions below, otherwise a
1454 // dbg_value followed by an IT will result in the IT instruction being
1455 // considered a scheduling hazard, which is wrong. It should be the actual
1456 // instruction preceding the dbg_value instruction(s), just like it is
1457 // when debug info is not present.
1458 if (MI->isDebugValue())
1459 return false;
1460
Evan Cheng86050dc2010-06-18 23:09:54 +00001461 // Terminators and labels can't be scheduled around.
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001462 if (MI->isTerminator() || MI->isLabel())
Evan Cheng86050dc2010-06-18 23:09:54 +00001463 return true;
1464
1465 // Treat the start of the IT block as a scheduling boundary, but schedule
1466 // t2IT along with all instructions following it.
1467 // FIXME: This is a big hammer. But the alternative is to add all potential
1468 // true and anti dependencies to IT block instructions as implicit operands
1469 // to the t2IT instruction. The added compile time and complexity does not
1470 // seem worth it.
1471 MachineBasicBlock::const_iterator I = MI;
Jim Grosbach57bb3942010-06-25 18:43:14 +00001472 // Make sure to skip any dbg_value instructions
1473 while (++I != MBB->end() && I->isDebugValue())
1474 ;
1475 if (I != MBB->end() && I->getOpcode() == ARM::t2IT)
Evan Cheng86050dc2010-06-18 23:09:54 +00001476 return true;
1477
1478 // Don't attempt to schedule around any instruction that defines
1479 // a stack-oriented pointer, as it's unlikely to be profitable. This
1480 // saves compile time, because it doesn't require every single
1481 // stack slot reference to depend on the instruction that does the
1482 // modification.
Jakob Stoklund Olesena1aa8db2012-02-21 23:47:43 +00001483 // Calls don't actually change the stack pointer, even if they have imp-defs.
Jakob Stoklund Olesen209600b2012-02-22 01:07:19 +00001484 // No ARM calling conventions change the stack pointer. (X86 calling
1485 // conventions sometimes do).
Jakob Stoklund Olesena1aa8db2012-02-21 23:47:43 +00001486 if (!MI->isCall() && MI->definesRegister(ARM::SP))
Evan Cheng86050dc2010-06-18 23:09:54 +00001487 return true;
1488
1489 return false;
1490}
1491
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001492bool ARMBaseInstrInfo::
1493isProfitableToIfCvt(MachineBasicBlock &MBB,
1494 unsigned NumCycles, unsigned ExtraPredCycles,
1495 const BranchProbability &Probability) const {
Cameron Zwarich5876db72011-04-13 06:39:16 +00001496 if (!NumCycles)
Evan Cheng13151432010-06-25 22:42:03 +00001497 return false;
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001498
Owen Andersonb20b8512010-09-28 18:32:13 +00001499 // Attempt to estimate the relative costs of predication versus branching.
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001500 unsigned UnpredCost = Probability.getNumerator() * NumCycles;
1501 UnpredCost /= Probability.getDenominator();
1502 UnpredCost += 1; // The branch itself
1503 UnpredCost += Subtarget.getMispredictionPenalty() / 10;
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001504
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001505 return (NumCycles + ExtraPredCycles) <= UnpredCost;
Evan Cheng13151432010-06-25 22:42:03 +00001506}
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001507
Evan Cheng13151432010-06-25 22:42:03 +00001508bool ARMBaseInstrInfo::
Evan Cheng8239daf2010-11-03 00:45:17 +00001509isProfitableToIfCvt(MachineBasicBlock &TMBB,
1510 unsigned TCycles, unsigned TExtra,
1511 MachineBasicBlock &FMBB,
1512 unsigned FCycles, unsigned FExtra,
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001513 const BranchProbability &Probability) const {
Evan Cheng8239daf2010-11-03 00:45:17 +00001514 if (!TCycles || !FCycles)
Owen Andersonb20b8512010-09-28 18:32:13 +00001515 return false;
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001516
Owen Andersonb20b8512010-09-28 18:32:13 +00001517 // Attempt to estimate the relative costs of predication versus branching.
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001518 unsigned TUnpredCost = Probability.getNumerator() * TCycles;
1519 TUnpredCost /= Probability.getDenominator();
Andrew Tricke23dc9c2011-09-21 02:17:37 +00001520
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001521 uint32_t Comp = Probability.getDenominator() - Probability.getNumerator();
1522 unsigned FUnpredCost = Comp * FCycles;
1523 FUnpredCost /= Probability.getDenominator();
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001524
Jakub Staszakf81b7f62011-07-10 02:58:07 +00001525 unsigned UnpredCost = TUnpredCost + FUnpredCost;
1526 UnpredCost += 1; // The branch itself
1527 UnpredCost += Subtarget.getMispredictionPenalty() / 10;
1528
1529 return (TCycles + FCycles + TExtra + FExtra) <= UnpredCost;
Evan Cheng13151432010-06-25 22:42:03 +00001530}
1531
Evan Cheng8fb90362009-08-08 03:20:32 +00001532/// getInstrPredicate - If instruction is predicated, returns its predicate
1533/// condition, otherwise returns AL. It also returns the condition code
1534/// register by reference.
Evan Cheng5adb66a2009-09-28 09:14:39 +00001535ARMCC::CondCodes
1536llvm::getInstrPredicate(const MachineInstr *MI, unsigned &PredReg) {
Evan Cheng8fb90362009-08-08 03:20:32 +00001537 int PIdx = MI->findFirstPredOperandIdx();
1538 if (PIdx == -1) {
1539 PredReg = 0;
1540 return ARMCC::AL;
1541 }
1542
1543 PredReg = MI->getOperand(PIdx+1).getReg();
1544 return (ARMCC::CondCodes)MI->getOperand(PIdx).getImm();
1545}
1546
1547
Evan Cheng6495f632009-07-28 05:48:47 +00001548int llvm::getMatchingCondBranchOpcode(int Opc) {
Evan Cheng5ca53a72009-07-27 18:20:05 +00001549 if (Opc == ARM::B)
1550 return ARM::Bcc;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001551 if (Opc == ARM::tB)
Evan Cheng5ca53a72009-07-27 18:20:05 +00001552 return ARM::tBcc;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001553 if (Opc == ARM::t2B)
1554 return ARM::t2Bcc;
Evan Cheng5ca53a72009-07-27 18:20:05 +00001555
1556 llvm_unreachable("Unknown unconditional branch opcode!");
Evan Cheng5ca53a72009-07-27 18:20:05 +00001557}
1558
Jakob Stoklund Olesenc5041ca2012-04-04 18:23:42 +00001559/// commuteInstruction - Handle commutable instructions.
1560MachineInstr *
1561ARMBaseInstrInfo::commuteInstruction(MachineInstr *MI, bool NewMI) const {
1562 switch (MI->getOpcode()) {
1563 case ARM::MOVCCr:
1564 case ARM::t2MOVCCr: {
1565 // MOVCC can be commuted by inverting the condition.
1566 unsigned PredReg = 0;
1567 ARMCC::CondCodes CC = getInstrPredicate(MI, PredReg);
1568 // MOVCC AL can't be inverted. Shouldn't happen.
1569 if (CC == ARMCC::AL || PredReg != ARM::CPSR)
1570 return NULL;
1571 MI = TargetInstrInfoImpl::commuteInstruction(MI, NewMI);
1572 if (!MI)
1573 return NULL;
1574 // After swapping the MOVCC operands, also invert the condition.
1575 MI->getOperand(MI->findFirstPredOperandIdx())
1576 .setImm(ARMCC::getOppositeCondition(CC));
1577 return MI;
1578 }
1579 }
1580 return TargetInstrInfoImpl::commuteInstruction(MI, NewMI);
1581}
Evan Cheng6495f632009-07-28 05:48:47 +00001582
Jakob Stoklund Olesen2860b7e2012-08-15 22:16:39 +00001583/// Identify instructions that can be folded into a MOVCC instruction, and
1584/// return the corresponding opcode for the predicated pseudo-instruction.
Jakob Stoklund Olesen053b5b02012-08-16 23:14:20 +00001585static unsigned canFoldIntoMOVCC(unsigned Reg, MachineInstr *&MI,
1586 const MachineRegisterInfo &MRI) {
Jakob Stoklund Olesen2860b7e2012-08-15 22:16:39 +00001587 if (!TargetRegisterInfo::isVirtualRegister(Reg))
1588 return 0;
1589 if (!MRI.hasOneNonDBGUse(Reg))
1590 return 0;
1591 MI = MRI.getVRegDef(Reg);
1592 if (!MI)
1593 return 0;
1594 // Check if MI has any non-dead defs or physreg uses. This also detects
1595 // predicated instructions which will be reading CPSR.
1596 for (unsigned i = 1, e = MI->getNumOperands(); i != e; ++i) {
1597 const MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesena7fb3f62012-08-17 20:55:34 +00001598 // Reject frame index operands, PEI can't handle the predicated pseudos.
1599 if (MO.isFI() || MO.isCPI() || MO.isJTI())
1600 return 0;
Jakob Stoklund Olesen2860b7e2012-08-15 22:16:39 +00001601 if (!MO.isReg())
1602 continue;
1603 if (TargetRegisterInfo::isPhysicalRegister(MO.getReg()))
1604 return 0;
1605 if (MO.isDef() && !MO.isDead())
1606 return 0;
1607 }
1608 switch (MI->getOpcode()) {
1609 default: return 0;
1610 case ARM::ANDri: return ARM::ANDCCri;
1611 case ARM::ANDrr: return ARM::ANDCCrr;
1612 case ARM::ANDrsi: return ARM::ANDCCrsi;
1613 case ARM::ANDrsr: return ARM::ANDCCrsr;
1614 case ARM::t2ANDri: return ARM::t2ANDCCri;
1615 case ARM::t2ANDrr: return ARM::t2ANDCCrr;
1616 case ARM::t2ANDrs: return ARM::t2ANDCCrs;
1617 case ARM::EORri: return ARM::EORCCri;
1618 case ARM::EORrr: return ARM::EORCCrr;
1619 case ARM::EORrsi: return ARM::EORCCrsi;
1620 case ARM::EORrsr: return ARM::EORCCrsr;
1621 case ARM::t2EORri: return ARM::t2EORCCri;
1622 case ARM::t2EORrr: return ARM::t2EORCCrr;
1623 case ARM::t2EORrs: return ARM::t2EORCCrs;
1624 case ARM::ORRri: return ARM::ORRCCri;
1625 case ARM::ORRrr: return ARM::ORRCCrr;
1626 case ARM::ORRrsi: return ARM::ORRCCrsi;
1627 case ARM::ORRrsr: return ARM::ORRCCrsr;
1628 case ARM::t2ORRri: return ARM::t2ORRCCri;
1629 case ARM::t2ORRrr: return ARM::t2ORRCCrr;
1630 case ARM::t2ORRrs: return ARM::t2ORRCCrs;
Jakob Stoklund Olesen083b48a2012-08-16 23:21:55 +00001631
1632 // ARM ADD/SUB
1633 case ARM::ADDri: return ARM::ADDCCri;
1634 case ARM::ADDrr: return ARM::ADDCCrr;
1635 case ARM::ADDrsi: return ARM::ADDCCrsi;
1636 case ARM::ADDrsr: return ARM::ADDCCrsr;
1637 case ARM::SUBri: return ARM::SUBCCri;
1638 case ARM::SUBrr: return ARM::SUBCCrr;
1639 case ARM::SUBrsi: return ARM::SUBCCrsi;
1640 case ARM::SUBrsr: return ARM::SUBCCrsr;
1641
1642 // Thumb2 ADD/SUB
1643 case ARM::t2ADDri: return ARM::t2ADDCCri;
1644 case ARM::t2ADDri12: return ARM::t2ADDCCri12;
1645 case ARM::t2ADDrr: return ARM::t2ADDCCrr;
1646 case ARM::t2ADDrs: return ARM::t2ADDCCrs;
1647 case ARM::t2SUBri: return ARM::t2SUBCCri;
1648 case ARM::t2SUBri12: return ARM::t2SUBCCri12;
1649 case ARM::t2SUBrr: return ARM::t2SUBCCrr;
1650 case ARM::t2SUBrs: return ARM::t2SUBCCrs;
Jakob Stoklund Olesen2860b7e2012-08-15 22:16:39 +00001651 }
1652}
1653
Jakob Stoklund Olesen053b5b02012-08-16 23:14:20 +00001654bool ARMBaseInstrInfo::analyzeSelect(const MachineInstr *MI,
1655 SmallVectorImpl<MachineOperand> &Cond,
1656 unsigned &TrueOp, unsigned &FalseOp,
1657 bool &Optimizable) const {
1658 assert((MI->getOpcode() == ARM::MOVCCr || MI->getOpcode() == ARM::t2MOVCCr) &&
1659 "Unknown select instruction");
1660 // MOVCC operands:
1661 // 0: Def.
1662 // 1: True use.
1663 // 2: False use.
1664 // 3: Condition code.
1665 // 4: CPSR use.
1666 TrueOp = 1;
1667 FalseOp = 2;
1668 Cond.push_back(MI->getOperand(3));
1669 Cond.push_back(MI->getOperand(4));
1670 // We can always fold a def.
1671 Optimizable = true;
1672 return false;
1673}
1674
1675MachineInstr *ARMBaseInstrInfo::optimizeSelect(MachineInstr *MI,
1676 bool PreferFalse) const {
1677 assert((MI->getOpcode() == ARM::MOVCCr || MI->getOpcode() == ARM::t2MOVCCr) &&
1678 "Unknown select instruction");
1679 const MachineRegisterInfo &MRI = MI->getParent()->getParent()->getRegInfo();
1680 MachineInstr *DefMI = 0;
1681 unsigned Opc = canFoldIntoMOVCC(MI->getOperand(2).getReg(), DefMI, MRI);
1682 bool Invert = !Opc;
1683 if (!Opc)
1684 Opc = canFoldIntoMOVCC(MI->getOperand(1).getReg(), DefMI, MRI);
1685 if (!Opc)
1686 return 0;
1687
1688 // Create a new predicated version of DefMI.
1689 // Rfalse is the first use.
1690 MachineInstrBuilder NewMI = BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
1691 get(Opc), MI->getOperand(0).getReg())
1692 .addOperand(MI->getOperand(Invert ? 2 : 1));
1693
1694 // Copy all the DefMI operands, excluding its (null) predicate.
1695 const MCInstrDesc &DefDesc = DefMI->getDesc();
1696 for (unsigned i = 1, e = DefDesc.getNumOperands();
1697 i != e && !DefDesc.OpInfo[i].isPredicate(); ++i)
1698 NewMI.addOperand(DefMI->getOperand(i));
1699
1700 unsigned CondCode = MI->getOperand(3).getImm();
1701 if (Invert)
1702 NewMI.addImm(ARMCC::getOppositeCondition(ARMCC::CondCodes(CondCode)));
1703 else
1704 NewMI.addImm(CondCode);
1705 NewMI.addOperand(MI->getOperand(4));
1706
1707 // DefMI is not the -S version that sets CPSR, so add an optional %noreg.
1708 if (NewMI->hasOptionalDef())
1709 AddDefaultCC(NewMI);
1710
1711 // The caller will erase MI, but not DefMI.
1712 DefMI->eraseFromParent();
1713 return NewMI;
1714}
1715
Andrew Trick3be654f2011-09-21 02:20:46 +00001716/// Map pseudo instructions that imply an 'S' bit onto real opcodes. Whether the
1717/// instruction is encoded with an 'S' bit is determined by the optional CPSR
1718/// def operand.
1719///
1720/// This will go away once we can teach tblgen how to set the optional CPSR def
1721/// operand itself.
1722struct AddSubFlagsOpcodePair {
Craig Toppercd2859e2012-05-24 03:59:11 +00001723 uint16_t PseudoOpc;
1724 uint16_t MachineOpc;
Andrew Trick3be654f2011-09-21 02:20:46 +00001725};
1726
Craig Toppercd2859e2012-05-24 03:59:11 +00001727static const AddSubFlagsOpcodePair AddSubFlagsOpcodeMap[] = {
Andrew Trick3be654f2011-09-21 02:20:46 +00001728 {ARM::ADDSri, ARM::ADDri},
1729 {ARM::ADDSrr, ARM::ADDrr},
1730 {ARM::ADDSrsi, ARM::ADDrsi},
1731 {ARM::ADDSrsr, ARM::ADDrsr},
1732
1733 {ARM::SUBSri, ARM::SUBri},
1734 {ARM::SUBSrr, ARM::SUBrr},
1735 {ARM::SUBSrsi, ARM::SUBrsi},
1736 {ARM::SUBSrsr, ARM::SUBrsr},
1737
1738 {ARM::RSBSri, ARM::RSBri},
Andrew Trick3be654f2011-09-21 02:20:46 +00001739 {ARM::RSBSrsi, ARM::RSBrsi},
1740 {ARM::RSBSrsr, ARM::RSBrsr},
1741
1742 {ARM::t2ADDSri, ARM::t2ADDri},
1743 {ARM::t2ADDSrr, ARM::t2ADDrr},
1744 {ARM::t2ADDSrs, ARM::t2ADDrs},
1745
1746 {ARM::t2SUBSri, ARM::t2SUBri},
1747 {ARM::t2SUBSrr, ARM::t2SUBrr},
1748 {ARM::t2SUBSrs, ARM::t2SUBrs},
1749
1750 {ARM::t2RSBSri, ARM::t2RSBri},
1751 {ARM::t2RSBSrs, ARM::t2RSBrs},
1752};
1753
1754unsigned llvm::convertAddSubFlagsOpcode(unsigned OldOpc) {
Craig Toppercd2859e2012-05-24 03:59:11 +00001755 for (unsigned i = 0, e = array_lengthof(AddSubFlagsOpcodeMap); i != e; ++i)
1756 if (OldOpc == AddSubFlagsOpcodeMap[i].PseudoOpc)
1757 return AddSubFlagsOpcodeMap[i].MachineOpc;
Andrew Trick3be654f2011-09-21 02:20:46 +00001758 return 0;
1759}
1760
Evan Cheng6495f632009-07-28 05:48:47 +00001761void llvm::emitARMRegPlusImmediate(MachineBasicBlock &MBB,
1762 MachineBasicBlock::iterator &MBBI, DebugLoc dl,
1763 unsigned DestReg, unsigned BaseReg, int NumBytes,
1764 ARMCC::CondCodes Pred, unsigned PredReg,
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001765 const ARMBaseInstrInfo &TII, unsigned MIFlags) {
Evan Cheng6495f632009-07-28 05:48:47 +00001766 bool isSub = NumBytes < 0;
1767 if (isSub) NumBytes = -NumBytes;
1768
1769 while (NumBytes) {
1770 unsigned RotAmt = ARM_AM::getSOImmValRotate(NumBytes);
1771 unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt);
1772 assert(ThisVal && "Didn't extract field correctly");
1773
1774 // We will handle these bits from offset, clear them.
1775 NumBytes &= ~ThisVal;
1776
1777 assert(ARM_AM::getSOImmVal(ThisVal) != -1 && "Bit extraction didn't work?");
1778
1779 // Build the new ADD / SUB.
1780 unsigned Opc = isSub ? ARM::SUBri : ARM::ADDri;
1781 BuildMI(MBB, MBBI, dl, TII.get(Opc), DestReg)
1782 .addReg(BaseReg, RegState::Kill).addImm(ThisVal)
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001783 .addImm((unsigned)Pred).addReg(PredReg).addReg(0)
1784 .setMIFlags(MIFlags);
Evan Cheng6495f632009-07-28 05:48:47 +00001785 BaseReg = DestReg;
1786 }
1787}
1788
Evan Chengcdbb3f52009-08-27 01:23:50 +00001789bool llvm::rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
1790 unsigned FrameReg, int &Offset,
1791 const ARMBaseInstrInfo &TII) {
Evan Cheng6495f632009-07-28 05:48:47 +00001792 unsigned Opcode = MI.getOpcode();
Evan Chenge837dea2011-06-28 19:10:37 +00001793 const MCInstrDesc &Desc = MI.getDesc();
Evan Cheng6495f632009-07-28 05:48:47 +00001794 unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
1795 bool isSub = false;
Jim Grosbach764ab522009-08-11 15:33:49 +00001796
Evan Cheng6495f632009-07-28 05:48:47 +00001797 // Memory operands in inline assembly always use AddrMode2.
1798 if (Opcode == ARM::INLINEASM)
1799 AddrMode = ARMII::AddrMode2;
Jim Grosbach764ab522009-08-11 15:33:49 +00001800
Evan Cheng6495f632009-07-28 05:48:47 +00001801 if (Opcode == ARM::ADDri) {
1802 Offset += MI.getOperand(FrameRegIdx+1).getImm();
1803 if (Offset == 0) {
1804 // Turn it into a move.
1805 MI.setDesc(TII.get(ARM::MOVr));
1806 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1807 MI.RemoveOperand(FrameRegIdx+1);
Evan Chengcdbb3f52009-08-27 01:23:50 +00001808 Offset = 0;
1809 return true;
Evan Cheng6495f632009-07-28 05:48:47 +00001810 } else if (Offset < 0) {
1811 Offset = -Offset;
1812 isSub = true;
1813 MI.setDesc(TII.get(ARM::SUBri));
1814 }
1815
1816 // Common case: small offset, fits into instruction.
1817 if (ARM_AM::getSOImmVal(Offset) != -1) {
1818 // Replace the FrameIndex with sp / fp
1819 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1820 MI.getOperand(FrameRegIdx+1).ChangeToImmediate(Offset);
Evan Chengcdbb3f52009-08-27 01:23:50 +00001821 Offset = 0;
1822 return true;
Evan Cheng6495f632009-07-28 05:48:47 +00001823 }
1824
1825 // Otherwise, pull as much of the immedidate into this ADDri/SUBri
1826 // as possible.
1827 unsigned RotAmt = ARM_AM::getSOImmValRotate(Offset);
1828 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xFF, RotAmt);
1829
1830 // We will handle these bits from offset, clear them.
1831 Offset &= ~ThisImmVal;
1832
1833 // Get the properly encoded SOImmVal field.
1834 assert(ARM_AM::getSOImmVal(ThisImmVal) != -1 &&
1835 "Bit extraction didn't work?");
1836 MI.getOperand(FrameRegIdx+1).ChangeToImmediate(ThisImmVal);
1837 } else {
1838 unsigned ImmIdx = 0;
1839 int InstrOffs = 0;
1840 unsigned NumBits = 0;
1841 unsigned Scale = 1;
1842 switch (AddrMode) {
Jim Grosbach3e556122010-10-26 22:37:02 +00001843 case ARMII::AddrMode_i12: {
1844 ImmIdx = FrameRegIdx + 1;
1845 InstrOffs = MI.getOperand(ImmIdx).getImm();
1846 NumBits = 12;
1847 break;
1848 }
Evan Cheng6495f632009-07-28 05:48:47 +00001849 case ARMII::AddrMode2: {
1850 ImmIdx = FrameRegIdx+2;
1851 InstrOffs = ARM_AM::getAM2Offset(MI.getOperand(ImmIdx).getImm());
1852 if (ARM_AM::getAM2Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1853 InstrOffs *= -1;
1854 NumBits = 12;
1855 break;
1856 }
1857 case ARMII::AddrMode3: {
1858 ImmIdx = FrameRegIdx+2;
1859 InstrOffs = ARM_AM::getAM3Offset(MI.getOperand(ImmIdx).getImm());
1860 if (ARM_AM::getAM3Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1861 InstrOffs *= -1;
1862 NumBits = 8;
1863 break;
1864 }
Anton Korobeynikovbaf31082009-08-08 13:35:48 +00001865 case ARMII::AddrMode4:
Jim Grosbacha4432172009-11-15 21:45:34 +00001866 case ARMII::AddrMode6:
Evan Chengcdbb3f52009-08-27 01:23:50 +00001867 // Can't fold any offset even if it's zero.
1868 return false;
Evan Cheng6495f632009-07-28 05:48:47 +00001869 case ARMII::AddrMode5: {
1870 ImmIdx = FrameRegIdx+1;
1871 InstrOffs = ARM_AM::getAM5Offset(MI.getOperand(ImmIdx).getImm());
1872 if (ARM_AM::getAM5Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1873 InstrOffs *= -1;
1874 NumBits = 8;
1875 Scale = 4;
1876 break;
1877 }
1878 default:
1879 llvm_unreachable("Unsupported addressing mode!");
Evan Cheng6495f632009-07-28 05:48:47 +00001880 }
1881
1882 Offset += InstrOffs * Scale;
1883 assert((Offset & (Scale-1)) == 0 && "Can't encode this offset!");
1884 if (Offset < 0) {
1885 Offset = -Offset;
1886 isSub = true;
1887 }
1888
1889 // Attempt to fold address comp. if opcode has offset bits
1890 if (NumBits > 0) {
1891 // Common case: small offset, fits into instruction.
1892 MachineOperand &ImmOp = MI.getOperand(ImmIdx);
1893 int ImmedOffset = Offset / Scale;
1894 unsigned Mask = (1 << NumBits) - 1;
1895 if ((unsigned)Offset <= Mask * Scale) {
1896 // Replace the FrameIndex with sp
1897 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
Jim Grosbach77aee8e2010-10-27 01:19:41 +00001898 // FIXME: When addrmode2 goes away, this will simplify (like the
1899 // T2 version), as the LDR.i12 versions don't need the encoding
1900 // tricks for the offset value.
1901 if (isSub) {
1902 if (AddrMode == ARMII::AddrMode_i12)
1903 ImmedOffset = -ImmedOffset;
1904 else
1905 ImmedOffset |= 1 << NumBits;
1906 }
Evan Cheng6495f632009-07-28 05:48:47 +00001907 ImmOp.ChangeToImmediate(ImmedOffset);
Evan Chengcdbb3f52009-08-27 01:23:50 +00001908 Offset = 0;
1909 return true;
Evan Cheng6495f632009-07-28 05:48:47 +00001910 }
Jim Grosbach764ab522009-08-11 15:33:49 +00001911
Evan Cheng6495f632009-07-28 05:48:47 +00001912 // Otherwise, it didn't fit. Pull in what we can to simplify the immed.
1913 ImmedOffset = ImmedOffset & Mask;
Jim Grosbach063efbf2010-10-27 16:50:31 +00001914 if (isSub) {
1915 if (AddrMode == ARMII::AddrMode_i12)
1916 ImmedOffset = -ImmedOffset;
1917 else
1918 ImmedOffset |= 1 << NumBits;
1919 }
Evan Cheng6495f632009-07-28 05:48:47 +00001920 ImmOp.ChangeToImmediate(ImmedOffset);
1921 Offset &= ~(Mask*Scale);
1922 }
1923 }
1924
Evan Chengcdbb3f52009-08-27 01:23:50 +00001925 Offset = (isSub) ? -Offset : Offset;
1926 return Offset == 0;
Evan Cheng6495f632009-07-28 05:48:47 +00001927}
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001928
Manman Rende7266c2012-06-29 21:33:59 +00001929/// analyzeCompare - For a comparison instruction, return the source registers
1930/// in SrcReg and SrcReg2 if having two register operands, and the value it
1931/// compares against in CmpValue. Return true if the comparison instruction
1932/// can be analyzed.
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001933bool ARMBaseInstrInfo::
Manman Rende7266c2012-06-29 21:33:59 +00001934analyzeCompare(const MachineInstr *MI, unsigned &SrcReg, unsigned &SrcReg2,
1935 int &CmpMask, int &CmpValue) const {
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001936 switch (MI->getOpcode()) {
1937 default: break;
Bill Wendling38ae9972010-08-11 00:23:00 +00001938 case ARM::CMPri:
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001939 case ARM::t2CMPri:
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001940 SrcReg = MI->getOperand(0).getReg();
Manman Rende7266c2012-06-29 21:33:59 +00001941 SrcReg2 = 0;
Gabor Greif04ac81d2010-09-21 12:01:15 +00001942 CmpMask = ~0;
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001943 CmpValue = MI->getOperand(1).getImm();
1944 return true;
Manman Ren247c5ab2012-05-11 01:30:47 +00001945 case ARM::CMPrr:
1946 case ARM::t2CMPrr:
1947 SrcReg = MI->getOperand(0).getReg();
Manman Rende7266c2012-06-29 21:33:59 +00001948 SrcReg2 = MI->getOperand(1).getReg();
Manman Ren247c5ab2012-05-11 01:30:47 +00001949 CmpMask = ~0;
1950 CmpValue = 0;
1951 return true;
Gabor Greif04ac81d2010-09-21 12:01:15 +00001952 case ARM::TSTri:
1953 case ARM::t2TSTri:
1954 SrcReg = MI->getOperand(0).getReg();
Manman Rende7266c2012-06-29 21:33:59 +00001955 SrcReg2 = 0;
Gabor Greif04ac81d2010-09-21 12:01:15 +00001956 CmpMask = MI->getOperand(1).getImm();
1957 CmpValue = 0;
1958 return true;
1959 }
1960
1961 return false;
1962}
1963
Gabor Greif05642a32010-09-29 10:12:08 +00001964/// isSuitableForMask - Identify a suitable 'and' instruction that
1965/// operates on the given source register and applies the same mask
1966/// as a 'tst' instruction. Provide a limited look-through for copies.
1967/// When successful, MI will hold the found instruction.
1968static bool isSuitableForMask(MachineInstr *&MI, unsigned SrcReg,
Gabor Greif8ff9bb12010-09-21 13:30:57 +00001969 int CmpMask, bool CommonUse) {
Gabor Greif05642a32010-09-29 10:12:08 +00001970 switch (MI->getOpcode()) {
Gabor Greif04ac81d2010-09-21 12:01:15 +00001971 case ARM::ANDri:
1972 case ARM::t2ANDri:
Gabor Greif05642a32010-09-29 10:12:08 +00001973 if (CmpMask != MI->getOperand(2).getImm())
Gabor Greif8ff9bb12010-09-21 13:30:57 +00001974 return false;
Gabor Greif05642a32010-09-29 10:12:08 +00001975 if (SrcReg == MI->getOperand(CommonUse ? 1 : 0).getReg())
Gabor Greif04ac81d2010-09-21 12:01:15 +00001976 return true;
1977 break;
Gabor Greif05642a32010-09-29 10:12:08 +00001978 case ARM::COPY: {
1979 // Walk down one instruction which is potentially an 'and'.
1980 const MachineInstr &Copy = *MI;
Michael J. Spencerf000a7a2010-10-05 06:00:43 +00001981 MachineBasicBlock::iterator AND(
1982 llvm::next(MachineBasicBlock::iterator(MI)));
Gabor Greif05642a32010-09-29 10:12:08 +00001983 if (AND == MI->getParent()->end()) return false;
1984 MI = AND;
1985 return isSuitableForMask(MI, Copy.getOperand(0).getReg(),
1986 CmpMask, true);
1987 }
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001988 }
1989
1990 return false;
1991}
1992
Manman Ren76c6ccb2012-06-29 22:06:19 +00001993/// getSwappedCondition - assume the flags are set by MI(a,b), return
1994/// the condition code if we modify the instructions such that flags are
1995/// set by MI(b,a).
1996inline static ARMCC::CondCodes getSwappedCondition(ARMCC::CondCodes CC) {
1997 switch (CC) {
1998 default: return ARMCC::AL;
1999 case ARMCC::EQ: return ARMCC::EQ;
2000 case ARMCC::NE: return ARMCC::NE;
2001 case ARMCC::HS: return ARMCC::LS;
2002 case ARMCC::LO: return ARMCC::HI;
2003 case ARMCC::HI: return ARMCC::LO;
2004 case ARMCC::LS: return ARMCC::HS;
2005 case ARMCC::GE: return ARMCC::LE;
2006 case ARMCC::LT: return ARMCC::GT;
2007 case ARMCC::GT: return ARMCC::LT;
2008 case ARMCC::LE: return ARMCC::GE;
2009 }
2010}
2011
2012/// isRedundantFlagInstr - check whether the first instruction, whose only
2013/// purpose is to update flags, can be made redundant.
2014/// CMPrr can be made redundant by SUBrr if the operands are the same.
2015/// CMPri can be made redundant by SUBri if the operands are the same.
2016/// This function can be extended later on.
2017inline static bool isRedundantFlagInstr(MachineInstr *CmpI, unsigned SrcReg,
2018 unsigned SrcReg2, int ImmValue,
2019 MachineInstr *OI) {
2020 if ((CmpI->getOpcode() == ARM::CMPrr ||
2021 CmpI->getOpcode() == ARM::t2CMPrr) &&
2022 (OI->getOpcode() == ARM::SUBrr ||
2023 OI->getOpcode() == ARM::t2SUBrr) &&
2024 ((OI->getOperand(1).getReg() == SrcReg &&
2025 OI->getOperand(2).getReg() == SrcReg2) ||
2026 (OI->getOperand(1).getReg() == SrcReg2 &&
2027 OI->getOperand(2).getReg() == SrcReg)))
2028 return true;
2029
2030 if ((CmpI->getOpcode() == ARM::CMPri ||
2031 CmpI->getOpcode() == ARM::t2CMPri) &&
2032 (OI->getOpcode() == ARM::SUBri ||
2033 OI->getOpcode() == ARM::t2SUBri) &&
2034 OI->getOperand(1).getReg() == SrcReg &&
2035 OI->getOperand(2).getImm() == ImmValue)
2036 return true;
2037 return false;
2038}
2039
Manman Rende7266c2012-06-29 21:33:59 +00002040/// optimizeCompareInstr - Convert the instruction supplying the argument to the
2041/// comparison into one that sets the zero bit in the flags register;
2042/// Remove a redundant Compare instruction if an earlier instruction can set the
2043/// flags in the same way as Compare.
2044/// E.g. SUBrr(r1,r2) and CMPrr(r1,r2). We also handle the case where two
2045/// operands are swapped: SUBrr(r1,r2) and CMPrr(r2,r1), by updating the
2046/// condition code of instructions which use the flags.
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00002047bool ARMBaseInstrInfo::
Manman Rende7266c2012-06-29 21:33:59 +00002048optimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, unsigned SrcReg2,
2049 int CmpMask, int CmpValue,
2050 const MachineRegisterInfo *MRI) const {
Manman Ren76c6ccb2012-06-29 22:06:19 +00002051 // Get the unique definition of SrcReg.
2052 MachineInstr *MI = MRI->getUniqueVRegDef(SrcReg);
2053 if (!MI) return false;
Bill Wendling92ad57f2010-09-10 23:34:19 +00002054
Gabor Greif04ac81d2010-09-21 12:01:15 +00002055 // Masked compares sometimes use the same register as the corresponding 'and'.
2056 if (CmpMask != ~0) {
Gabor Greif05642a32010-09-29 10:12:08 +00002057 if (!isSuitableForMask(MI, SrcReg, CmpMask, false)) {
Gabor Greif04ac81d2010-09-21 12:01:15 +00002058 MI = 0;
Bill Wendlingb41ee962010-10-18 21:22:31 +00002059 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(SrcReg),
2060 UE = MRI->use_end(); UI != UE; ++UI) {
Gabor Greif04ac81d2010-09-21 12:01:15 +00002061 if (UI->getParent() != CmpInstr->getParent()) continue;
Gabor Greif05642a32010-09-29 10:12:08 +00002062 MachineInstr *PotentialAND = &*UI;
Gabor Greif8ff9bb12010-09-21 13:30:57 +00002063 if (!isSuitableForMask(PotentialAND, SrcReg, CmpMask, true))
Gabor Greif04ac81d2010-09-21 12:01:15 +00002064 continue;
Gabor Greif05642a32010-09-29 10:12:08 +00002065 MI = PotentialAND;
Gabor Greif04ac81d2010-09-21 12:01:15 +00002066 break;
2067 }
2068 if (!MI) return false;
2069 }
2070 }
2071
Manman Ren247c5ab2012-05-11 01:30:47 +00002072 // Get ready to iterate backward from CmpInstr.
2073 MachineBasicBlock::iterator I = CmpInstr, E = MI,
2074 B = CmpInstr->getParent()->begin();
Bill Wendling0aa38b92010-10-09 00:03:48 +00002075
2076 // Early exit if CmpInstr is at the beginning of the BB.
2077 if (I == B) return false;
2078
Manman Ren247c5ab2012-05-11 01:30:47 +00002079 // There are two possible candidates which can be changed to set CPSR:
2080 // One is MI, the other is a SUB instruction.
2081 // For CMPrr(r1,r2), we are looking for SUB(r1,r2) or SUB(r2,r1).
2082 // For CMPri(r1, CmpValue), we are looking for SUBri(r1, CmpValue).
2083 MachineInstr *Sub = NULL;
Manman Rende7266c2012-06-29 21:33:59 +00002084 if (SrcReg2 != 0)
Manman Ren247c5ab2012-05-11 01:30:47 +00002085 // MI is not a candidate for CMPrr.
2086 MI = NULL;
Manman Rende7266c2012-06-29 21:33:59 +00002087 else if (MI->getParent() != CmpInstr->getParent() || CmpValue != 0) {
Manman Ren247c5ab2012-05-11 01:30:47 +00002088 // Conservatively refuse to convert an instruction which isn't in the same
2089 // BB as the comparison.
2090 // For CMPri, we need to check Sub, thus we can't return here.
Manman Ren4949e982012-05-11 15:36:46 +00002091 if (CmpInstr->getOpcode() == ARM::CMPri ||
Manman Ren247c5ab2012-05-11 01:30:47 +00002092 CmpInstr->getOpcode() == ARM::t2CMPri)
2093 MI = NULL;
2094 else
2095 return false;
2096 }
2097
2098 // Check that CPSR isn't set between the comparison instruction and the one we
2099 // want to change. At the same time, search for Sub.
Manman Ren76c6ccb2012-06-29 22:06:19 +00002100 const TargetRegisterInfo *TRI = &getRegisterInfo();
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00002101 --I;
2102 for (; I != E; --I) {
2103 const MachineInstr &Instr = *I;
2104
Manman Ren76c6ccb2012-06-29 22:06:19 +00002105 if (Instr.modifiesRegister(ARM::CPSR, TRI) ||
2106 Instr.readsRegister(ARM::CPSR, TRI))
Bill Wendling40a5eb12010-11-01 20:41:43 +00002107 // This instruction modifies or uses CPSR after the one we want to
2108 // change. We can't do this transformation.
Manman Ren76c6ccb2012-06-29 22:06:19 +00002109 return false;
Evan Cheng691e64a2010-09-21 23:49:07 +00002110
Manman Ren76c6ccb2012-06-29 22:06:19 +00002111 // Check whether CmpInstr can be made redundant by the current instruction.
2112 if (isRedundantFlagInstr(CmpInstr, SrcReg, SrcReg2, CmpValue, &*I)) {
Manman Ren247c5ab2012-05-11 01:30:47 +00002113 Sub = &*I;
2114 break;
2115 }
2116
Evan Cheng691e64a2010-09-21 23:49:07 +00002117 if (I == B)
2118 // The 'and' is below the comparison instruction.
2119 return false;
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00002120 }
2121
Manman Ren247c5ab2012-05-11 01:30:47 +00002122 // Return false if no candidates exist.
2123 if (!MI && !Sub)
2124 return false;
2125
2126 // The single candidate is called MI.
2127 if (!MI) MI = Sub;
2128
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00002129 switch (MI->getOpcode()) {
2130 default: break;
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00002131 case ARM::RSBrr:
Owen Andersondf298c92011-04-06 23:35:59 +00002132 case ARM::RSBri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00002133 case ARM::RSCrr:
Owen Andersondf298c92011-04-06 23:35:59 +00002134 case ARM::RSCri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00002135 case ARM::ADDrr:
Bill Wendling38ae9972010-08-11 00:23:00 +00002136 case ARM::ADDri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00002137 case ARM::ADCrr:
Owen Andersondf298c92011-04-06 23:35:59 +00002138 case ARM::ADCri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00002139 case ARM::SUBrr:
Bill Wendling38ae9972010-08-11 00:23:00 +00002140 case ARM::SUBri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00002141 case ARM::SBCrr:
Owen Andersondf298c92011-04-06 23:35:59 +00002142 case ARM::SBCri:
2143 case ARM::t2RSBri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00002144 case ARM::t2ADDrr:
Bill Wendling38ae9972010-08-11 00:23:00 +00002145 case ARM::t2ADDri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00002146 case ARM::t2ADCrr:
Owen Andersondf298c92011-04-06 23:35:59 +00002147 case ARM::t2ADCri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00002148 case ARM::t2SUBrr:
Owen Andersondf298c92011-04-06 23:35:59 +00002149 case ARM::t2SUBri:
Cameron Zwarichca3f6a32011-04-15 20:28:28 +00002150 case ARM::t2SBCrr:
Cameron Zwarichb485de52011-04-15 20:45:00 +00002151 case ARM::t2SBCri:
2152 case ARM::ANDrr:
2153 case ARM::ANDri:
2154 case ARM::t2ANDrr:
Cameron Zwarich0cb11ac2011-04-15 21:24:38 +00002155 case ARM::t2ANDri:
2156 case ARM::ORRrr:
2157 case ARM::ORRri:
2158 case ARM::t2ORRrr:
2159 case ARM::t2ORRri:
2160 case ARM::EORrr:
2161 case ARM::EORri:
2162 case ARM::t2EORrr:
2163 case ARM::t2EORri: {
Manman Ren247c5ab2012-05-11 01:30:47 +00002164 // Scan forward for the use of CPSR
2165 // When checking against MI: if it's a conditional code requires
Manman Ren45ed1942012-07-11 22:51:44 +00002166 // checking of V bit, then this is not safe to do.
2167 // It is safe to remove CmpInstr if CPSR is redefined or killed.
2168 // If we are done with the basic block, we need to check whether CPSR is
2169 // live-out.
Manman Ren76c6ccb2012-06-29 22:06:19 +00002170 SmallVector<std::pair<MachineOperand*, ARMCC::CondCodes>, 4>
2171 OperandsToUpdate;
Evan Cheng2c339152011-03-23 22:52:04 +00002172 bool isSafe = false;
2173 I = CmpInstr;
Manman Ren247c5ab2012-05-11 01:30:47 +00002174 E = CmpInstr->getParent()->end();
Evan Cheng2c339152011-03-23 22:52:04 +00002175 while (!isSafe && ++I != E) {
2176 const MachineInstr &Instr = *I;
2177 for (unsigned IO = 0, EO = Instr.getNumOperands();
2178 !isSafe && IO != EO; ++IO) {
2179 const MachineOperand &MO = Instr.getOperand(IO);
Jakob Stoklund Olesen2420b552012-02-17 19:23:15 +00002180 if (MO.isRegMask() && MO.clobbersPhysReg(ARM::CPSR)) {
2181 isSafe = true;
2182 break;
2183 }
Evan Cheng2c339152011-03-23 22:52:04 +00002184 if (!MO.isReg() || MO.getReg() != ARM::CPSR)
2185 continue;
2186 if (MO.isDef()) {
2187 isSafe = true;
2188 break;
2189 }
2190 // Condition code is after the operand before CPSR.
2191 ARMCC::CondCodes CC = (ARMCC::CondCodes)Instr.getOperand(IO-1).getImm();
Manman Ren76c6ccb2012-06-29 22:06:19 +00002192 if (Sub) {
2193 ARMCC::CondCodes NewCC = getSwappedCondition(CC);
2194 if (NewCC == ARMCC::AL)
Manman Ren247c5ab2012-05-11 01:30:47 +00002195 return false;
Manman Ren76c6ccb2012-06-29 22:06:19 +00002196 // If we have SUB(r1, r2) and CMP(r2, r1), the condition code based
2197 // on CMP needs to be updated to be based on SUB.
2198 // Push the condition code operands to OperandsToUpdate.
2199 // If it is safe to remove CmpInstr, the condition code of these
2200 // operands will be modified.
2201 if (SrcReg2 != 0 && Sub->getOperand(1).getReg() == SrcReg2 &&
2202 Sub->getOperand(2).getReg() == SrcReg)
2203 OperandsToUpdate.push_back(std::make_pair(&((*I).getOperand(IO-1)),
2204 NewCC));
2205 }
Manman Ren247c5ab2012-05-11 01:30:47 +00002206 else
2207 switch (CC) {
2208 default:
Manman Ren9af64302012-07-11 23:47:00 +00002209 // CPSR can be used multiple times, we should continue.
Manman Ren247c5ab2012-05-11 01:30:47 +00002210 break;
2211 case ARMCC::VS:
2212 case ARMCC::VC:
2213 case ARMCC::GE:
2214 case ARMCC::LT:
2215 case ARMCC::GT:
2216 case ARMCC::LE:
2217 return false;
2218 }
Evan Cheng2c339152011-03-23 22:52:04 +00002219 }
2220 }
2221
Manman Ren45ed1942012-07-11 22:51:44 +00002222 // If CPSR is not killed nor re-defined, we should check whether it is
2223 // live-out. If it is live-out, do not optimize.
2224 if (!isSafe) {
2225 MachineBasicBlock *MBB = CmpInstr->getParent();
2226 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
2227 SE = MBB->succ_end(); SI != SE; ++SI)
2228 if ((*SI)->isLiveIn(ARM::CPSR))
2229 return false;
2230 }
Evan Cheng2c339152011-03-23 22:52:04 +00002231
Evan Cheng3642e642010-11-17 08:06:50 +00002232 // Toggle the optional operand to CPSR.
2233 MI->getOperand(5).setReg(ARM::CPSR);
2234 MI->getOperand(5).setIsDef(true);
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00002235 CmpInstr->eraseFromParent();
Manman Ren247c5ab2012-05-11 01:30:47 +00002236
2237 // Modify the condition code of operands in OperandsToUpdate.
2238 // Since we have SUB(r1, r2) and CMP(r2, r1), the condition code needs to
2239 // be changed from r2 > r1 to r1 < r2, from r2 < r1 to r1 > r2, etc.
Manman Ren76c6ccb2012-06-29 22:06:19 +00002240 for (unsigned i = 0, e = OperandsToUpdate.size(); i < e; i++)
2241 OperandsToUpdate[i].first->setImm(OperandsToUpdate[i].second);
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00002242 return true;
2243 }
Cameron Zwarichb485de52011-04-15 20:45:00 +00002244 }
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00002245
2246 return false;
2247}
Evan Cheng5f54ce32010-09-09 18:18:55 +00002248
Evan Chengc4af4632010-11-17 20:13:28 +00002249bool ARMBaseInstrInfo::FoldImmediate(MachineInstr *UseMI,
2250 MachineInstr *DefMI, unsigned Reg,
2251 MachineRegisterInfo *MRI) const {
2252 // Fold large immediates into add, sub, or, xor.
2253 unsigned DefOpc = DefMI->getOpcode();
2254 if (DefOpc != ARM::t2MOVi32imm && DefOpc != ARM::MOVi32imm)
2255 return false;
2256 if (!DefMI->getOperand(1).isImm())
2257 // Could be t2MOVi32imm <ga:xx>
2258 return false;
2259
2260 if (!MRI->hasOneNonDBGUse(Reg))
2261 return false;
2262
Evan Chenge279f592012-03-26 23:31:00 +00002263 const MCInstrDesc &DefMCID = DefMI->getDesc();
2264 if (DefMCID.hasOptionalDef()) {
2265 unsigned NumOps = DefMCID.getNumOperands();
2266 const MachineOperand &MO = DefMI->getOperand(NumOps-1);
2267 if (MO.getReg() == ARM::CPSR && !MO.isDead())
2268 // If DefMI defines CPSR and it is not dead, it's obviously not safe
2269 // to delete DefMI.
2270 return false;
2271 }
2272
2273 const MCInstrDesc &UseMCID = UseMI->getDesc();
2274 if (UseMCID.hasOptionalDef()) {
2275 unsigned NumOps = UseMCID.getNumOperands();
2276 if (UseMI->getOperand(NumOps-1).getReg() == ARM::CPSR)
2277 // If the instruction sets the flag, do not attempt this optimization
2278 // since it may change the semantics of the code.
2279 return false;
2280 }
2281
Evan Chengc4af4632010-11-17 20:13:28 +00002282 unsigned UseOpc = UseMI->getOpcode();
Evan Cheng5c71c7a2010-11-18 01:43:23 +00002283 unsigned NewUseOpc = 0;
Evan Chengc4af4632010-11-17 20:13:28 +00002284 uint32_t ImmVal = (uint32_t)DefMI->getOperand(1).getImm();
Evan Cheng5c71c7a2010-11-18 01:43:23 +00002285 uint32_t SOImmValV1 = 0, SOImmValV2 = 0;
Evan Chengc4af4632010-11-17 20:13:28 +00002286 bool Commute = false;
2287 switch (UseOpc) {
2288 default: return false;
2289 case ARM::SUBrr:
2290 case ARM::ADDrr:
2291 case ARM::ORRrr:
2292 case ARM::EORrr:
2293 case ARM::t2SUBrr:
2294 case ARM::t2ADDrr:
2295 case ARM::t2ORRrr:
2296 case ARM::t2EORrr: {
2297 Commute = UseMI->getOperand(2).getReg() != Reg;
2298 switch (UseOpc) {
2299 default: break;
2300 case ARM::SUBrr: {
2301 if (Commute)
2302 return false;
2303 ImmVal = -ImmVal;
2304 NewUseOpc = ARM::SUBri;
2305 // Fallthrough
2306 }
2307 case ARM::ADDrr:
2308 case ARM::ORRrr:
2309 case ARM::EORrr: {
2310 if (!ARM_AM::isSOImmTwoPartVal(ImmVal))
2311 return false;
2312 SOImmValV1 = (uint32_t)ARM_AM::getSOImmTwoPartFirst(ImmVal);
2313 SOImmValV2 = (uint32_t)ARM_AM::getSOImmTwoPartSecond(ImmVal);
2314 switch (UseOpc) {
2315 default: break;
2316 case ARM::ADDrr: NewUseOpc = ARM::ADDri; break;
2317 case ARM::ORRrr: NewUseOpc = ARM::ORRri; break;
2318 case ARM::EORrr: NewUseOpc = ARM::EORri; break;
2319 }
2320 break;
2321 }
2322 case ARM::t2SUBrr: {
2323 if (Commute)
2324 return false;
2325 ImmVal = -ImmVal;
2326 NewUseOpc = ARM::t2SUBri;
2327 // Fallthrough
2328 }
2329 case ARM::t2ADDrr:
2330 case ARM::t2ORRrr:
2331 case ARM::t2EORrr: {
2332 if (!ARM_AM::isT2SOImmTwoPartVal(ImmVal))
2333 return false;
2334 SOImmValV1 = (uint32_t)ARM_AM::getT2SOImmTwoPartFirst(ImmVal);
2335 SOImmValV2 = (uint32_t)ARM_AM::getT2SOImmTwoPartSecond(ImmVal);
2336 switch (UseOpc) {
2337 default: break;
2338 case ARM::t2ADDrr: NewUseOpc = ARM::t2ADDri; break;
2339 case ARM::t2ORRrr: NewUseOpc = ARM::t2ORRri; break;
2340 case ARM::t2EORrr: NewUseOpc = ARM::t2EORri; break;
2341 }
2342 break;
2343 }
2344 }
2345 }
2346 }
2347
2348 unsigned OpIdx = Commute ? 2 : 1;
2349 unsigned Reg1 = UseMI->getOperand(OpIdx).getReg();
2350 bool isKill = UseMI->getOperand(OpIdx).isKill();
2351 unsigned NewReg = MRI->createVirtualRegister(MRI->getRegClass(Reg));
2352 AddDefaultCC(AddDefaultPred(BuildMI(*UseMI->getParent(),
Evan Chengddfd1372011-12-14 02:11:42 +00002353 UseMI, UseMI->getDebugLoc(),
Evan Chengc4af4632010-11-17 20:13:28 +00002354 get(NewUseOpc), NewReg)
2355 .addReg(Reg1, getKillRegState(isKill))
2356 .addImm(SOImmValV1)));
2357 UseMI->setDesc(get(NewUseOpc));
2358 UseMI->getOperand(1).setReg(NewReg);
2359 UseMI->getOperand(1).setIsKill();
2360 UseMI->getOperand(2).ChangeToImmediate(SOImmValV2);
2361 DefMI->eraseFromParent();
2362 return true;
2363}
2364
Evan Cheng5f54ce32010-09-09 18:18:55 +00002365unsigned
Evan Cheng8239daf2010-11-03 00:45:17 +00002366ARMBaseInstrInfo::getNumMicroOps(const InstrItineraryData *ItinData,
2367 const MachineInstr *MI) const {
Evan Cheng3ef1c872010-09-10 01:29:16 +00002368 if (!ItinData || ItinData->isEmpty())
Evan Cheng5f54ce32010-09-09 18:18:55 +00002369 return 1;
2370
Evan Chenge837dea2011-06-28 19:10:37 +00002371 const MCInstrDesc &Desc = MI->getDesc();
Evan Cheng5f54ce32010-09-09 18:18:55 +00002372 unsigned Class = Desc.getSchedClass();
Andrew Trick218ee742012-07-02 18:10:42 +00002373 int ItinUOps = ItinData->getNumMicroOps(Class);
2374 if (ItinUOps >= 0)
2375 return ItinUOps;
Evan Cheng5f54ce32010-09-09 18:18:55 +00002376
2377 unsigned Opc = MI->getOpcode();
2378 switch (Opc) {
2379 default:
2380 llvm_unreachable("Unexpected multi-uops instruction!");
Bill Wendling73fe34a2010-11-16 01:16:36 +00002381 case ARM::VLDMQIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002382 case ARM::VSTMQIA:
Evan Cheng5f54ce32010-09-09 18:18:55 +00002383 return 2;
2384
2385 // The number of uOps for load / store multiple are determined by the number
2386 // registers.
Andrew Trick6e8f4c42010-12-24 04:28:06 +00002387 //
Evan Cheng3ef1c872010-09-10 01:29:16 +00002388 // On Cortex-A8, each pair of register loads / stores can be scheduled on the
2389 // same cycle. The scheduling for the first load / store must be done
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +00002390 // separately by assuming the address is not 64-bit aligned.
Bill Wendling73fe34a2010-11-16 01:16:36 +00002391 //
Evan Cheng3ef1c872010-09-10 01:29:16 +00002392 // On Cortex-A9, the formula is simply (#reg / 2) + (#reg % 2). If the address
Bill Wendling73fe34a2010-11-16 01:16:36 +00002393 // is not 64-bit aligned, then AGU would take an extra cycle. For VFP / NEON
2394 // load / store multiple, the formula is (#reg / 2) + (#reg % 2) + 1.
2395 case ARM::VLDMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002396 case ARM::VLDMDIA_UPD:
2397 case ARM::VLDMDDB_UPD:
2398 case ARM::VLDMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002399 case ARM::VLDMSIA_UPD:
2400 case ARM::VLDMSDB_UPD:
2401 case ARM::VSTMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002402 case ARM::VSTMDIA_UPD:
2403 case ARM::VSTMDDB_UPD:
2404 case ARM::VSTMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002405 case ARM::VSTMSIA_UPD:
2406 case ARM::VSTMSDB_UPD: {
Evan Cheng5f54ce32010-09-09 18:18:55 +00002407 unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands();
2408 return (NumRegs / 2) + (NumRegs % 2) + 1;
2409 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00002410
2411 case ARM::LDMIA_RET:
2412 case ARM::LDMIA:
2413 case ARM::LDMDA:
2414 case ARM::LDMDB:
2415 case ARM::LDMIB:
2416 case ARM::LDMIA_UPD:
2417 case ARM::LDMDA_UPD:
2418 case ARM::LDMDB_UPD:
2419 case ARM::LDMIB_UPD:
2420 case ARM::STMIA:
2421 case ARM::STMDA:
2422 case ARM::STMDB:
2423 case ARM::STMIB:
2424 case ARM::STMIA_UPD:
2425 case ARM::STMDA_UPD:
2426 case ARM::STMDB_UPD:
2427 case ARM::STMIB_UPD:
2428 case ARM::tLDMIA:
2429 case ARM::tLDMIA_UPD:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002430 case ARM::tSTMIA_UPD:
Evan Cheng5f54ce32010-09-09 18:18:55 +00002431 case ARM::tPOP_RET:
2432 case ARM::tPOP:
2433 case ARM::tPUSH:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002434 case ARM::t2LDMIA_RET:
2435 case ARM::t2LDMIA:
2436 case ARM::t2LDMDB:
2437 case ARM::t2LDMIA_UPD:
2438 case ARM::t2LDMDB_UPD:
2439 case ARM::t2STMIA:
2440 case ARM::t2STMDB:
2441 case ARM::t2STMIA_UPD:
2442 case ARM::t2STMDB_UPD: {
Evan Cheng3ef1c872010-09-10 01:29:16 +00002443 unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands() + 1;
2444 if (Subtarget.isCortexA8()) {
Evan Cheng8239daf2010-11-03 00:45:17 +00002445 if (NumRegs < 4)
2446 return 2;
2447 // 4 registers would be issued: 2, 2.
2448 // 5 registers would be issued: 2, 2, 1.
Andrew Trick218ee742012-07-02 18:10:42 +00002449 int A8UOps = (NumRegs / 2);
Evan Cheng8239daf2010-11-03 00:45:17 +00002450 if (NumRegs % 2)
Andrew Trick218ee742012-07-02 18:10:42 +00002451 ++A8UOps;
2452 return A8UOps;
Evan Cheng3ef1c872010-09-10 01:29:16 +00002453 } else if (Subtarget.isCortexA9()) {
Andrew Trick218ee742012-07-02 18:10:42 +00002454 int A9UOps = (NumRegs / 2);
Evan Cheng3ef1c872010-09-10 01:29:16 +00002455 // If there are odd number of registers or if it's not 64-bit aligned,
2456 // then it takes an extra AGU (Address Generation Unit) cycle.
2457 if ((NumRegs % 2) ||
2458 !MI->hasOneMemOperand() ||
2459 (*MI->memoperands_begin())->getAlignment() < 8)
Andrew Trick218ee742012-07-02 18:10:42 +00002460 ++A9UOps;
2461 return A9UOps;
Evan Cheng3ef1c872010-09-10 01:29:16 +00002462 } else {
2463 // Assume the worst.
2464 return NumRegs;
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00002465 }
Evan Cheng5f54ce32010-09-09 18:18:55 +00002466 }
2467 }
2468}
Evan Chenga0792de2010-10-06 06:27:31 +00002469
2470int
Evan Cheng344d9db2010-10-07 23:12:15 +00002471ARMBaseInstrInfo::getVLDMDefCycle(const InstrItineraryData *ItinData,
Evan Chenge837dea2011-06-28 19:10:37 +00002472 const MCInstrDesc &DefMCID,
Evan Cheng344d9db2010-10-07 23:12:15 +00002473 unsigned DefClass,
2474 unsigned DefIdx, unsigned DefAlign) const {
Evan Chenge837dea2011-06-28 19:10:37 +00002475 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
Evan Cheng344d9db2010-10-07 23:12:15 +00002476 if (RegNo <= 0)
2477 // Def is the address writeback.
2478 return ItinData->getOperandCycle(DefClass, DefIdx);
2479
2480 int DefCycle;
2481 if (Subtarget.isCortexA8()) {
2482 // (regno / 2) + (regno % 2) + 1
2483 DefCycle = RegNo / 2 + 1;
2484 if (RegNo % 2)
2485 ++DefCycle;
2486 } else if (Subtarget.isCortexA9()) {
2487 DefCycle = RegNo;
2488 bool isSLoad = false;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002489
Evan Chenge837dea2011-06-28 19:10:37 +00002490 switch (DefMCID.getOpcode()) {
Evan Cheng344d9db2010-10-07 23:12:15 +00002491 default: break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002492 case ARM::VLDMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002493 case ARM::VLDMSIA_UPD:
2494 case ARM::VLDMSDB_UPD:
Evan Cheng344d9db2010-10-07 23:12:15 +00002495 isSLoad = true;
2496 break;
2497 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00002498
Evan Cheng344d9db2010-10-07 23:12:15 +00002499 // If there are odd number of 'S' registers or if it's not 64-bit aligned,
2500 // then it takes an extra cycle.
2501 if ((isSLoad && (RegNo % 2)) || DefAlign < 8)
2502 ++DefCycle;
2503 } else {
2504 // Assume the worst.
2505 DefCycle = RegNo + 2;
2506 }
2507
2508 return DefCycle;
2509}
2510
2511int
2512ARMBaseInstrInfo::getLDMDefCycle(const InstrItineraryData *ItinData,
Evan Chenge837dea2011-06-28 19:10:37 +00002513 const MCInstrDesc &DefMCID,
Evan Cheng344d9db2010-10-07 23:12:15 +00002514 unsigned DefClass,
2515 unsigned DefIdx, unsigned DefAlign) const {
Evan Chenge837dea2011-06-28 19:10:37 +00002516 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
Evan Cheng344d9db2010-10-07 23:12:15 +00002517 if (RegNo <= 0)
2518 // Def is the address writeback.
2519 return ItinData->getOperandCycle(DefClass, DefIdx);
2520
2521 int DefCycle;
2522 if (Subtarget.isCortexA8()) {
2523 // 4 registers would be issued: 1, 2, 1.
2524 // 5 registers would be issued: 1, 2, 2.
2525 DefCycle = RegNo / 2;
2526 if (DefCycle < 1)
2527 DefCycle = 1;
2528 // Result latency is issue cycle + 2: E2.
2529 DefCycle += 2;
2530 } else if (Subtarget.isCortexA9()) {
2531 DefCycle = (RegNo / 2);
2532 // If there are odd number of registers or if it's not 64-bit aligned,
2533 // then it takes an extra AGU (Address Generation Unit) cycle.
2534 if ((RegNo % 2) || DefAlign < 8)
2535 ++DefCycle;
2536 // Result latency is AGU cycles + 2.
2537 DefCycle += 2;
2538 } else {
2539 // Assume the worst.
2540 DefCycle = RegNo + 2;
2541 }
2542
2543 return DefCycle;
2544}
2545
2546int
2547ARMBaseInstrInfo::getVSTMUseCycle(const InstrItineraryData *ItinData,
Evan Chenge837dea2011-06-28 19:10:37 +00002548 const MCInstrDesc &UseMCID,
Evan Cheng344d9db2010-10-07 23:12:15 +00002549 unsigned UseClass,
2550 unsigned UseIdx, unsigned UseAlign) const {
Evan Chenge837dea2011-06-28 19:10:37 +00002551 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
Evan Cheng344d9db2010-10-07 23:12:15 +00002552 if (RegNo <= 0)
2553 return ItinData->getOperandCycle(UseClass, UseIdx);
2554
2555 int UseCycle;
2556 if (Subtarget.isCortexA8()) {
2557 // (regno / 2) + (regno % 2) + 1
2558 UseCycle = RegNo / 2 + 1;
2559 if (RegNo % 2)
2560 ++UseCycle;
2561 } else if (Subtarget.isCortexA9()) {
2562 UseCycle = RegNo;
2563 bool isSStore = false;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002564
Evan Chenge837dea2011-06-28 19:10:37 +00002565 switch (UseMCID.getOpcode()) {
Evan Cheng344d9db2010-10-07 23:12:15 +00002566 default: break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002567 case ARM::VSTMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002568 case ARM::VSTMSIA_UPD:
2569 case ARM::VSTMSDB_UPD:
Evan Cheng344d9db2010-10-07 23:12:15 +00002570 isSStore = true;
2571 break;
2572 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00002573
Evan Cheng344d9db2010-10-07 23:12:15 +00002574 // If there are odd number of 'S' registers or if it's not 64-bit aligned,
2575 // then it takes an extra cycle.
2576 if ((isSStore && (RegNo % 2)) || UseAlign < 8)
2577 ++UseCycle;
2578 } else {
2579 // Assume the worst.
2580 UseCycle = RegNo + 2;
2581 }
2582
2583 return UseCycle;
2584}
2585
2586int
2587ARMBaseInstrInfo::getSTMUseCycle(const InstrItineraryData *ItinData,
Evan Chenge837dea2011-06-28 19:10:37 +00002588 const MCInstrDesc &UseMCID,
Evan Cheng344d9db2010-10-07 23:12:15 +00002589 unsigned UseClass,
2590 unsigned UseIdx, unsigned UseAlign) const {
Evan Chenge837dea2011-06-28 19:10:37 +00002591 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
Evan Cheng344d9db2010-10-07 23:12:15 +00002592 if (RegNo <= 0)
2593 return ItinData->getOperandCycle(UseClass, UseIdx);
2594
2595 int UseCycle;
2596 if (Subtarget.isCortexA8()) {
2597 UseCycle = RegNo / 2;
2598 if (UseCycle < 2)
2599 UseCycle = 2;
2600 // Read in E3.
2601 UseCycle += 2;
2602 } else if (Subtarget.isCortexA9()) {
2603 UseCycle = (RegNo / 2);
2604 // If there are odd number of registers or if it's not 64-bit aligned,
2605 // then it takes an extra AGU (Address Generation Unit) cycle.
2606 if ((RegNo % 2) || UseAlign < 8)
2607 ++UseCycle;
2608 } else {
2609 // Assume the worst.
2610 UseCycle = 1;
2611 }
2612 return UseCycle;
2613}
2614
2615int
Evan Chenga0792de2010-10-06 06:27:31 +00002616ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
Evan Chenge837dea2011-06-28 19:10:37 +00002617 const MCInstrDesc &DefMCID,
Evan Chenga0792de2010-10-06 06:27:31 +00002618 unsigned DefIdx, unsigned DefAlign,
Evan Chenge837dea2011-06-28 19:10:37 +00002619 const MCInstrDesc &UseMCID,
Evan Chenga0792de2010-10-06 06:27:31 +00002620 unsigned UseIdx, unsigned UseAlign) const {
Evan Chenge837dea2011-06-28 19:10:37 +00002621 unsigned DefClass = DefMCID.getSchedClass();
2622 unsigned UseClass = UseMCID.getSchedClass();
Evan Chenga0792de2010-10-06 06:27:31 +00002623
Evan Chenge837dea2011-06-28 19:10:37 +00002624 if (DefIdx < DefMCID.getNumDefs() && UseIdx < UseMCID.getNumOperands())
Evan Chenga0792de2010-10-06 06:27:31 +00002625 return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx);
2626
2627 // This may be a def / use of a variable_ops instruction, the operand
2628 // latency might be determinable dynamically. Let the target try to
2629 // figure it out.
Evan Cheng9e08ee52010-10-28 02:00:25 +00002630 int DefCycle = -1;
Evan Cheng7e2fe912010-10-28 06:47:08 +00002631 bool LdmBypass = false;
Evan Chenge837dea2011-06-28 19:10:37 +00002632 switch (DefMCID.getOpcode()) {
Evan Chenga0792de2010-10-06 06:27:31 +00002633 default:
2634 DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
2635 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002636
2637 case ARM::VLDMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002638 case ARM::VLDMDIA_UPD:
2639 case ARM::VLDMDDB_UPD:
2640 case ARM::VLDMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002641 case ARM::VLDMSIA_UPD:
2642 case ARM::VLDMSDB_UPD:
Evan Chenge837dea2011-06-28 19:10:37 +00002643 DefCycle = getVLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
Evan Cheng5a50cee2010-10-07 01:50:48 +00002644 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002645
2646 case ARM::LDMIA_RET:
2647 case ARM::LDMIA:
2648 case ARM::LDMDA:
2649 case ARM::LDMDB:
2650 case ARM::LDMIB:
2651 case ARM::LDMIA_UPD:
2652 case ARM::LDMDA_UPD:
2653 case ARM::LDMDB_UPD:
2654 case ARM::LDMIB_UPD:
2655 case ARM::tLDMIA:
2656 case ARM::tLDMIA_UPD:
Evan Chenga0792de2010-10-06 06:27:31 +00002657 case ARM::tPUSH:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002658 case ARM::t2LDMIA_RET:
2659 case ARM::t2LDMIA:
2660 case ARM::t2LDMDB:
2661 case ARM::t2LDMIA_UPD:
2662 case ARM::t2LDMDB_UPD:
Evan Chenga0792de2010-10-06 06:27:31 +00002663 LdmBypass = 1;
Evan Chenge837dea2011-06-28 19:10:37 +00002664 DefCycle = getLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
Evan Cheng344d9db2010-10-07 23:12:15 +00002665 break;
Evan Chenga0792de2010-10-06 06:27:31 +00002666 }
Evan Chenga0792de2010-10-06 06:27:31 +00002667
2668 if (DefCycle == -1)
2669 // We can't seem to determine the result latency of the def, assume it's 2.
2670 DefCycle = 2;
2671
2672 int UseCycle = -1;
Evan Chenge837dea2011-06-28 19:10:37 +00002673 switch (UseMCID.getOpcode()) {
Evan Chenga0792de2010-10-06 06:27:31 +00002674 default:
2675 UseCycle = ItinData->getOperandCycle(UseClass, UseIdx);
2676 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002677
2678 case ARM::VSTMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002679 case ARM::VSTMDIA_UPD:
2680 case ARM::VSTMDDB_UPD:
2681 case ARM::VSTMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002682 case ARM::VSTMSIA_UPD:
2683 case ARM::VSTMSDB_UPD:
Evan Chenge837dea2011-06-28 19:10:37 +00002684 UseCycle = getVSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
Evan Cheng5a50cee2010-10-07 01:50:48 +00002685 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002686
2687 case ARM::STMIA:
2688 case ARM::STMDA:
2689 case ARM::STMDB:
2690 case ARM::STMIB:
2691 case ARM::STMIA_UPD:
2692 case ARM::STMDA_UPD:
2693 case ARM::STMDB_UPD:
2694 case ARM::STMIB_UPD:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002695 case ARM::tSTMIA_UPD:
Evan Chenga0792de2010-10-06 06:27:31 +00002696 case ARM::tPOP_RET:
2697 case ARM::tPOP:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002698 case ARM::t2STMIA:
2699 case ARM::t2STMDB:
2700 case ARM::t2STMIA_UPD:
2701 case ARM::t2STMDB_UPD:
Evan Chenge837dea2011-06-28 19:10:37 +00002702 UseCycle = getSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
Evan Cheng5a50cee2010-10-07 01:50:48 +00002703 break;
Evan Chenga0792de2010-10-06 06:27:31 +00002704 }
Evan Chenga0792de2010-10-06 06:27:31 +00002705
2706 if (UseCycle == -1)
2707 // Assume it's read in the first stage.
2708 UseCycle = 1;
2709
2710 UseCycle = DefCycle - UseCycle + 1;
2711 if (UseCycle > 0) {
2712 if (LdmBypass) {
2713 // It's a variable_ops instruction so we can't use DefIdx here. Just use
2714 // first def operand.
Evan Chenge837dea2011-06-28 19:10:37 +00002715 if (ItinData->hasPipelineForwarding(DefClass, DefMCID.getNumOperands()-1,
Evan Chenga0792de2010-10-06 06:27:31 +00002716 UseClass, UseIdx))
2717 --UseCycle;
2718 } else if (ItinData->hasPipelineForwarding(DefClass, DefIdx,
Bill Wendling73fe34a2010-11-16 01:16:36 +00002719 UseClass, UseIdx)) {
Evan Chenga0792de2010-10-06 06:27:31 +00002720 --UseCycle;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002721 }
Evan Chenga0792de2010-10-06 06:27:31 +00002722 }
2723
2724 return UseCycle;
2725}
2726
Evan Chengddfd1372011-12-14 02:11:42 +00002727static const MachineInstr *getBundledDefMI(const TargetRegisterInfo *TRI,
Evan Cheng020f4102011-12-14 20:00:08 +00002728 const MachineInstr *MI, unsigned Reg,
Evan Chengddfd1372011-12-14 02:11:42 +00002729 unsigned &DefIdx, unsigned &Dist) {
2730 Dist = 0;
2731
2732 MachineBasicBlock::const_iterator I = MI; ++I;
2733 MachineBasicBlock::const_instr_iterator II =
2734 llvm::prior(I.getInstrIterator());
2735 assert(II->isInsideBundle() && "Empty bundle?");
2736
2737 int Idx = -1;
Evan Chengddfd1372011-12-14 02:11:42 +00002738 while (II->isInsideBundle()) {
2739 Idx = II->findRegisterDefOperandIdx(Reg, false, true, TRI);
2740 if (Idx != -1)
2741 break;
2742 --II;
2743 ++Dist;
2744 }
2745
2746 assert(Idx != -1 && "Cannot find bundled definition!");
2747 DefIdx = Idx;
2748 return II;
2749}
2750
2751static const MachineInstr *getBundledUseMI(const TargetRegisterInfo *TRI,
Evan Cheng020f4102011-12-14 20:00:08 +00002752 const MachineInstr *MI, unsigned Reg,
Evan Chengddfd1372011-12-14 02:11:42 +00002753 unsigned &UseIdx, unsigned &Dist) {
2754 Dist = 0;
2755
2756 MachineBasicBlock::const_instr_iterator II = MI; ++II;
2757 assert(II->isInsideBundle() && "Empty bundle?");
2758 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
2759
2760 // FIXME: This doesn't properly handle multiple uses.
2761 int Idx = -1;
Evan Chengddfd1372011-12-14 02:11:42 +00002762 while (II != E && II->isInsideBundle()) {
2763 Idx = II->findRegisterUseOperandIdx(Reg, false, TRI);
2764 if (Idx != -1)
2765 break;
2766 if (II->getOpcode() != ARM::t2IT)
2767 ++Dist;
2768 ++II;
2769 }
2770
Evan Cheng020f4102011-12-14 20:00:08 +00002771 if (Idx == -1) {
2772 Dist = 0;
2773 return 0;
2774 }
2775
Evan Chengddfd1372011-12-14 02:11:42 +00002776 UseIdx = Idx;
2777 return II;
2778}
2779
Andrew Trick68b16542012-06-07 19:42:00 +00002780/// Return the number of cycles to add to (or subtract from) the static
2781/// itinerary based on the def opcode and alignment. The caller will ensure that
2782/// adjusted latency is at least one cycle.
2783static int adjustDefLatency(const ARMSubtarget &Subtarget,
2784 const MachineInstr *DefMI,
2785 const MCInstrDesc *DefMCID, unsigned DefAlign) {
2786 int Adjust = 0;
2787 if (Subtarget.isCortexA8() || Subtarget.isCortexA9()) {
Evan Cheng7e2fe912010-10-28 06:47:08 +00002788 // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
2789 // variants are one cycle cheaper.
Evan Chengddfd1372011-12-14 02:11:42 +00002790 switch (DefMCID->getOpcode()) {
Evan Cheng7e2fe912010-10-28 06:47:08 +00002791 default: break;
Jakob Stoklund Olesencff9baa2012-08-28 03:11:27 +00002792 case ARM::LDRrs:
2793 case ARM::LDRBrs: {
Evan Cheng7e2fe912010-10-28 06:47:08 +00002794 unsigned ShOpVal = DefMI->getOperand(3).getImm();
2795 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2796 if (ShImm == 0 ||
2797 (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
Andrew Trick68b16542012-06-07 19:42:00 +00002798 --Adjust;
Evan Cheng7e2fe912010-10-28 06:47:08 +00002799 break;
2800 }
Jakob Stoklund Olesencff9baa2012-08-28 03:11:27 +00002801 case ARM::t2LDRs:
2802 case ARM::t2LDRBs:
2803 case ARM::t2LDRHs:
Evan Cheng7e2fe912010-10-28 06:47:08 +00002804 case ARM::t2LDRSHs: {
2805 // Thumb2 mode: lsl only.
2806 unsigned ShAmt = DefMI->getOperand(3).getImm();
2807 if (ShAmt == 0 || ShAmt == 2)
Andrew Trick68b16542012-06-07 19:42:00 +00002808 --Adjust;
Evan Cheng7e2fe912010-10-28 06:47:08 +00002809 break;
2810 }
2811 }
2812 }
2813
Andrew Trick68b16542012-06-07 19:42:00 +00002814 if (DefAlign < 8 && Subtarget.isCortexA9()) {
Evan Chengddfd1372011-12-14 02:11:42 +00002815 switch (DefMCID->getOpcode()) {
Evan Cheng75b41f12011-04-19 01:21:49 +00002816 default: break;
2817 case ARM::VLD1q8:
2818 case ARM::VLD1q16:
2819 case ARM::VLD1q32:
2820 case ARM::VLD1q64:
Jim Grosbach10b90a92011-10-24 21:45:13 +00002821 case ARM::VLD1q8wb_fixed:
2822 case ARM::VLD1q16wb_fixed:
2823 case ARM::VLD1q32wb_fixed:
2824 case ARM::VLD1q64wb_fixed:
2825 case ARM::VLD1q8wb_register:
2826 case ARM::VLD1q16wb_register:
2827 case ARM::VLD1q32wb_register:
2828 case ARM::VLD1q64wb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002829 case ARM::VLD2d8:
2830 case ARM::VLD2d16:
2831 case ARM::VLD2d32:
2832 case ARM::VLD2q8:
2833 case ARM::VLD2q16:
2834 case ARM::VLD2q32:
Jim Grosbacha4e3c7f2011-12-09 21:28:25 +00002835 case ARM::VLD2d8wb_fixed:
2836 case ARM::VLD2d16wb_fixed:
2837 case ARM::VLD2d32wb_fixed:
2838 case ARM::VLD2q8wb_fixed:
2839 case ARM::VLD2q16wb_fixed:
2840 case ARM::VLD2q32wb_fixed:
2841 case ARM::VLD2d8wb_register:
2842 case ARM::VLD2d16wb_register:
2843 case ARM::VLD2d32wb_register:
2844 case ARM::VLD2q8wb_register:
2845 case ARM::VLD2q16wb_register:
2846 case ARM::VLD2q32wb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002847 case ARM::VLD3d8:
2848 case ARM::VLD3d16:
2849 case ARM::VLD3d32:
2850 case ARM::VLD1d64T:
2851 case ARM::VLD3d8_UPD:
2852 case ARM::VLD3d16_UPD:
2853 case ARM::VLD3d32_UPD:
Jim Grosbach59216752011-10-24 23:26:05 +00002854 case ARM::VLD1d64Twb_fixed:
2855 case ARM::VLD1d64Twb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002856 case ARM::VLD3q8_UPD:
2857 case ARM::VLD3q16_UPD:
2858 case ARM::VLD3q32_UPD:
2859 case ARM::VLD4d8:
2860 case ARM::VLD4d16:
2861 case ARM::VLD4d32:
2862 case ARM::VLD1d64Q:
2863 case ARM::VLD4d8_UPD:
2864 case ARM::VLD4d16_UPD:
2865 case ARM::VLD4d32_UPD:
Jim Grosbach399cdca2011-10-25 00:14:01 +00002866 case ARM::VLD1d64Qwb_fixed:
2867 case ARM::VLD1d64Qwb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002868 case ARM::VLD4q8_UPD:
2869 case ARM::VLD4q16_UPD:
2870 case ARM::VLD4q32_UPD:
2871 case ARM::VLD1DUPq8:
2872 case ARM::VLD1DUPq16:
2873 case ARM::VLD1DUPq32:
Jim Grosbach096334e2011-11-30 19:35:44 +00002874 case ARM::VLD1DUPq8wb_fixed:
2875 case ARM::VLD1DUPq16wb_fixed:
2876 case ARM::VLD1DUPq32wb_fixed:
2877 case ARM::VLD1DUPq8wb_register:
2878 case ARM::VLD1DUPq16wb_register:
2879 case ARM::VLD1DUPq32wb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002880 case ARM::VLD2DUPd8:
2881 case ARM::VLD2DUPd16:
2882 case ARM::VLD2DUPd32:
Jim Grosbache6949b12011-12-21 19:40:55 +00002883 case ARM::VLD2DUPd8wb_fixed:
2884 case ARM::VLD2DUPd16wb_fixed:
2885 case ARM::VLD2DUPd32wb_fixed:
2886 case ARM::VLD2DUPd8wb_register:
2887 case ARM::VLD2DUPd16wb_register:
2888 case ARM::VLD2DUPd32wb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00002889 case ARM::VLD4DUPd8:
2890 case ARM::VLD4DUPd16:
2891 case ARM::VLD4DUPd32:
2892 case ARM::VLD4DUPd8_UPD:
2893 case ARM::VLD4DUPd16_UPD:
2894 case ARM::VLD4DUPd32_UPD:
2895 case ARM::VLD1LNd8:
2896 case ARM::VLD1LNd16:
2897 case ARM::VLD1LNd32:
2898 case ARM::VLD1LNd8_UPD:
2899 case ARM::VLD1LNd16_UPD:
2900 case ARM::VLD1LNd32_UPD:
2901 case ARM::VLD2LNd8:
2902 case ARM::VLD2LNd16:
2903 case ARM::VLD2LNd32:
2904 case ARM::VLD2LNq16:
2905 case ARM::VLD2LNq32:
2906 case ARM::VLD2LNd8_UPD:
2907 case ARM::VLD2LNd16_UPD:
2908 case ARM::VLD2LNd32_UPD:
2909 case ARM::VLD2LNq16_UPD:
2910 case ARM::VLD2LNq32_UPD:
2911 case ARM::VLD4LNd8:
2912 case ARM::VLD4LNd16:
2913 case ARM::VLD4LNd32:
2914 case ARM::VLD4LNq16:
2915 case ARM::VLD4LNq32:
2916 case ARM::VLD4LNd8_UPD:
2917 case ARM::VLD4LNd16_UPD:
2918 case ARM::VLD4LNd32_UPD:
2919 case ARM::VLD4LNq16_UPD:
2920 case ARM::VLD4LNq32_UPD:
2921 // If the address is not 64-bit aligned, the latencies of these
2922 // instructions increases by one.
Andrew Trick68b16542012-06-07 19:42:00 +00002923 ++Adjust;
Evan Cheng75b41f12011-04-19 01:21:49 +00002924 break;
2925 }
Andrew Trick68b16542012-06-07 19:42:00 +00002926 }
2927 return Adjust;
2928}
Evan Cheng75b41f12011-04-19 01:21:49 +00002929
Andrew Trick68b16542012-06-07 19:42:00 +00002930
2931
2932int
2933ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
2934 const MachineInstr *DefMI, unsigned DefIdx,
2935 const MachineInstr *UseMI,
2936 unsigned UseIdx) const {
2937 // No operand latency. The caller may fall back to getInstrLatency.
2938 if (!ItinData || ItinData->isEmpty())
2939 return -1;
2940
2941 const MachineOperand &DefMO = DefMI->getOperand(DefIdx);
2942 unsigned Reg = DefMO.getReg();
2943 const MCInstrDesc *DefMCID = &DefMI->getDesc();
2944 const MCInstrDesc *UseMCID = &UseMI->getDesc();
2945
2946 unsigned DefAdj = 0;
2947 if (DefMI->isBundle()) {
2948 DefMI = getBundledDefMI(&getRegisterInfo(), DefMI, Reg, DefIdx, DefAdj);
2949 DefMCID = &DefMI->getDesc();
2950 }
2951 if (DefMI->isCopyLike() || DefMI->isInsertSubreg() ||
2952 DefMI->isRegSequence() || DefMI->isImplicitDef()) {
2953 return 1;
2954 }
2955
2956 unsigned UseAdj = 0;
2957 if (UseMI->isBundle()) {
2958 unsigned NewUseIdx;
2959 const MachineInstr *NewUseMI = getBundledUseMI(&getRegisterInfo(), UseMI,
2960 Reg, NewUseIdx, UseAdj);
Andrew Tricke2b32bb2012-06-22 02:50:33 +00002961 if (!NewUseMI)
2962 return -1;
2963
2964 UseMI = NewUseMI;
2965 UseIdx = NewUseIdx;
2966 UseMCID = &UseMI->getDesc();
Andrew Trick68b16542012-06-07 19:42:00 +00002967 }
2968
2969 if (Reg == ARM::CPSR) {
2970 if (DefMI->getOpcode() == ARM::FMSTAT) {
2971 // fpscr -> cpsr stalls over 20 cycles on A8 (and earlier?)
2972 return Subtarget.isCortexA9() ? 1 : 20;
2973 }
2974
2975 // CPSR set and branch can be paired in the same cycle.
2976 if (UseMI->isBranch())
2977 return 0;
2978
2979 // Otherwise it takes the instruction latency (generally one).
2980 unsigned Latency = getInstrLatency(ItinData, DefMI);
2981
2982 // For Thumb2 and -Os, prefer scheduling CPSR setting instruction close to
2983 // its uses. Instructions which are otherwise scheduled between them may
2984 // incur a code size penalty (not able to use the CPSR setting 16-bit
2985 // instructions).
2986 if (Latency > 0 && Subtarget.isThumb2()) {
2987 const MachineFunction *MF = DefMI->getParent()->getParent();
2988 if (MF->getFunction()->hasFnAttr(Attribute::OptimizeForSize))
2989 --Latency;
2990 }
2991 return Latency;
2992 }
2993
Andrew Tricke2b32bb2012-06-22 02:50:33 +00002994 if (DefMO.isImplicit() || UseMI->getOperand(UseIdx).isImplicit())
2995 return -1;
2996
Andrew Trick68b16542012-06-07 19:42:00 +00002997 unsigned DefAlign = DefMI->hasOneMemOperand()
2998 ? (*DefMI->memoperands_begin())->getAlignment() : 0;
2999 unsigned UseAlign = UseMI->hasOneMemOperand()
3000 ? (*UseMI->memoperands_begin())->getAlignment() : 0;
3001
3002 // Get the itinerary's latency if possible, and handle variable_ops.
3003 int Latency = getOperandLatency(ItinData, *DefMCID, DefIdx, DefAlign,
3004 *UseMCID, UseIdx, UseAlign);
3005 // Unable to find operand latency. The caller may resort to getInstrLatency.
3006 if (Latency < 0)
3007 return Latency;
3008
3009 // Adjust for IT block position.
3010 int Adj = DefAdj + UseAdj;
3011
3012 // Adjust for dynamic def-side opcode variants not captured by the itinerary.
3013 Adj += adjustDefLatency(Subtarget, DefMI, DefMCID, DefAlign);
3014 if (Adj >= 0 || (int)Latency > -Adj) {
3015 return Latency + Adj;
3016 }
3017 // Return the itinerary latency, which may be zero but not less than zero.
Evan Cheng7e2fe912010-10-28 06:47:08 +00003018 return Latency;
Evan Chenga0792de2010-10-06 06:27:31 +00003019}
3020
3021int
3022ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
3023 SDNode *DefNode, unsigned DefIdx,
3024 SDNode *UseNode, unsigned UseIdx) const {
3025 if (!DefNode->isMachineOpcode())
3026 return 1;
3027
Evan Chenge837dea2011-06-28 19:10:37 +00003028 const MCInstrDesc &DefMCID = get(DefNode->getMachineOpcode());
Andrew Trickc8bfd1d2011-01-21 05:51:33 +00003029
Evan Chenge837dea2011-06-28 19:10:37 +00003030 if (isZeroCost(DefMCID.Opcode))
Andrew Trickc8bfd1d2011-01-21 05:51:33 +00003031 return 0;
3032
Evan Chenga0792de2010-10-06 06:27:31 +00003033 if (!ItinData || ItinData->isEmpty())
Evan Chenge837dea2011-06-28 19:10:37 +00003034 return DefMCID.mayLoad() ? 3 : 1;
Evan Chenga0792de2010-10-06 06:27:31 +00003035
Evan Cheng08975152010-10-29 18:09:28 +00003036 if (!UseNode->isMachineOpcode()) {
Evan Chenge837dea2011-06-28 19:10:37 +00003037 int Latency = ItinData->getOperandCycle(DefMCID.getSchedClass(), DefIdx);
Evan Cheng08975152010-10-29 18:09:28 +00003038 if (Subtarget.isCortexA9())
3039 return Latency <= 2 ? 1 : Latency - 1;
3040 else
3041 return Latency <= 3 ? 1 : Latency - 2;
3042 }
Evan Chenga0792de2010-10-06 06:27:31 +00003043
Evan Chenge837dea2011-06-28 19:10:37 +00003044 const MCInstrDesc &UseMCID = get(UseNode->getMachineOpcode());
Evan Chenga0792de2010-10-06 06:27:31 +00003045 const MachineSDNode *DefMN = dyn_cast<MachineSDNode>(DefNode);
3046 unsigned DefAlign = !DefMN->memoperands_empty()
3047 ? (*DefMN->memoperands_begin())->getAlignment() : 0;
3048 const MachineSDNode *UseMN = dyn_cast<MachineSDNode>(UseNode);
3049 unsigned UseAlign = !UseMN->memoperands_empty()
3050 ? (*UseMN->memoperands_begin())->getAlignment() : 0;
Evan Chenge837dea2011-06-28 19:10:37 +00003051 int Latency = getOperandLatency(ItinData, DefMCID, DefIdx, DefAlign,
3052 UseMCID, UseIdx, UseAlign);
Evan Cheng7e2fe912010-10-28 06:47:08 +00003053
3054 if (Latency > 1 &&
3055 (Subtarget.isCortexA8() || Subtarget.isCortexA9())) {
3056 // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
3057 // variants are one cycle cheaper.
Evan Chenge837dea2011-06-28 19:10:37 +00003058 switch (DefMCID.getOpcode()) {
Evan Cheng7e2fe912010-10-28 06:47:08 +00003059 default: break;
Jakob Stoklund Olesencff9baa2012-08-28 03:11:27 +00003060 case ARM::LDRrs:
3061 case ARM::LDRBrs: {
Evan Cheng7e2fe912010-10-28 06:47:08 +00003062 unsigned ShOpVal =
3063 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
3064 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3065 if (ShImm == 0 ||
3066 (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
3067 --Latency;
3068 break;
3069 }
Jakob Stoklund Olesencff9baa2012-08-28 03:11:27 +00003070 case ARM::t2LDRs:
3071 case ARM::t2LDRBs:
3072 case ARM::t2LDRHs:
Evan Cheng7e2fe912010-10-28 06:47:08 +00003073 case ARM::t2LDRSHs: {
3074 // Thumb2 mode: lsl only.
3075 unsigned ShAmt =
3076 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
3077 if (ShAmt == 0 || ShAmt == 2)
3078 --Latency;
3079 break;
3080 }
3081 }
3082 }
3083
Evan Cheng75b41f12011-04-19 01:21:49 +00003084 if (DefAlign < 8 && Subtarget.isCortexA9())
Evan Chenge837dea2011-06-28 19:10:37 +00003085 switch (DefMCID.getOpcode()) {
Evan Cheng75b41f12011-04-19 01:21:49 +00003086 default: break;
Jim Grosbach28f08c92012-03-05 19:33:30 +00003087 case ARM::VLD1q8:
3088 case ARM::VLD1q16:
3089 case ARM::VLD1q32:
3090 case ARM::VLD1q64:
3091 case ARM::VLD1q8wb_register:
3092 case ARM::VLD1q16wb_register:
3093 case ARM::VLD1q32wb_register:
3094 case ARM::VLD1q64wb_register:
3095 case ARM::VLD1q8wb_fixed:
3096 case ARM::VLD1q16wb_fixed:
3097 case ARM::VLD1q32wb_fixed:
3098 case ARM::VLD1q64wb_fixed:
3099 case ARM::VLD2d8:
3100 case ARM::VLD2d16:
3101 case ARM::VLD2d32:
Evan Cheng75b41f12011-04-19 01:21:49 +00003102 case ARM::VLD2q8Pseudo:
3103 case ARM::VLD2q16Pseudo:
3104 case ARM::VLD2q32Pseudo:
Jim Grosbach28f08c92012-03-05 19:33:30 +00003105 case ARM::VLD2d8wb_fixed:
3106 case ARM::VLD2d16wb_fixed:
3107 case ARM::VLD2d32wb_fixed:
Jim Grosbacha4e3c7f2011-12-09 21:28:25 +00003108 case ARM::VLD2q8PseudoWB_fixed:
3109 case ARM::VLD2q16PseudoWB_fixed:
3110 case ARM::VLD2q32PseudoWB_fixed:
Jim Grosbach28f08c92012-03-05 19:33:30 +00003111 case ARM::VLD2d8wb_register:
3112 case ARM::VLD2d16wb_register:
3113 case ARM::VLD2d32wb_register:
Jim Grosbacha4e3c7f2011-12-09 21:28:25 +00003114 case ARM::VLD2q8PseudoWB_register:
3115 case ARM::VLD2q16PseudoWB_register:
3116 case ARM::VLD2q32PseudoWB_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00003117 case ARM::VLD3d8Pseudo:
3118 case ARM::VLD3d16Pseudo:
3119 case ARM::VLD3d32Pseudo:
3120 case ARM::VLD1d64TPseudo:
3121 case ARM::VLD3d8Pseudo_UPD:
3122 case ARM::VLD3d16Pseudo_UPD:
3123 case ARM::VLD3d32Pseudo_UPD:
Evan Cheng75b41f12011-04-19 01:21:49 +00003124 case ARM::VLD3q8Pseudo_UPD:
3125 case ARM::VLD3q16Pseudo_UPD:
3126 case ARM::VLD3q32Pseudo_UPD:
3127 case ARM::VLD3q8oddPseudo:
3128 case ARM::VLD3q16oddPseudo:
3129 case ARM::VLD3q32oddPseudo:
3130 case ARM::VLD3q8oddPseudo_UPD:
3131 case ARM::VLD3q16oddPseudo_UPD:
3132 case ARM::VLD3q32oddPseudo_UPD:
3133 case ARM::VLD4d8Pseudo:
3134 case ARM::VLD4d16Pseudo:
3135 case ARM::VLD4d32Pseudo:
3136 case ARM::VLD1d64QPseudo:
3137 case ARM::VLD4d8Pseudo_UPD:
3138 case ARM::VLD4d16Pseudo_UPD:
3139 case ARM::VLD4d32Pseudo_UPD:
Evan Cheng75b41f12011-04-19 01:21:49 +00003140 case ARM::VLD4q8Pseudo_UPD:
3141 case ARM::VLD4q16Pseudo_UPD:
3142 case ARM::VLD4q32Pseudo_UPD:
3143 case ARM::VLD4q8oddPseudo:
3144 case ARM::VLD4q16oddPseudo:
3145 case ARM::VLD4q32oddPseudo:
3146 case ARM::VLD4q8oddPseudo_UPD:
3147 case ARM::VLD4q16oddPseudo_UPD:
3148 case ARM::VLD4q32oddPseudo_UPD:
Jim Grosbachc0fc4502012-03-06 22:01:44 +00003149 case ARM::VLD1DUPq8:
3150 case ARM::VLD1DUPq16:
3151 case ARM::VLD1DUPq32:
3152 case ARM::VLD1DUPq8wb_fixed:
3153 case ARM::VLD1DUPq16wb_fixed:
3154 case ARM::VLD1DUPq32wb_fixed:
3155 case ARM::VLD1DUPq8wb_register:
3156 case ARM::VLD1DUPq16wb_register:
3157 case ARM::VLD1DUPq32wb_register:
3158 case ARM::VLD2DUPd8:
3159 case ARM::VLD2DUPd16:
3160 case ARM::VLD2DUPd32:
3161 case ARM::VLD2DUPd8wb_fixed:
3162 case ARM::VLD2DUPd16wb_fixed:
3163 case ARM::VLD2DUPd32wb_fixed:
3164 case ARM::VLD2DUPd8wb_register:
3165 case ARM::VLD2DUPd16wb_register:
3166 case ARM::VLD2DUPd32wb_register:
Evan Cheng75b41f12011-04-19 01:21:49 +00003167 case ARM::VLD4DUPd8Pseudo:
3168 case ARM::VLD4DUPd16Pseudo:
3169 case ARM::VLD4DUPd32Pseudo:
3170 case ARM::VLD4DUPd8Pseudo_UPD:
3171 case ARM::VLD4DUPd16Pseudo_UPD:
3172 case ARM::VLD4DUPd32Pseudo_UPD:
3173 case ARM::VLD1LNq8Pseudo:
3174 case ARM::VLD1LNq16Pseudo:
3175 case ARM::VLD1LNq32Pseudo:
3176 case ARM::VLD1LNq8Pseudo_UPD:
3177 case ARM::VLD1LNq16Pseudo_UPD:
3178 case ARM::VLD1LNq32Pseudo_UPD:
3179 case ARM::VLD2LNd8Pseudo:
3180 case ARM::VLD2LNd16Pseudo:
3181 case ARM::VLD2LNd32Pseudo:
3182 case ARM::VLD2LNq16Pseudo:
3183 case ARM::VLD2LNq32Pseudo:
3184 case ARM::VLD2LNd8Pseudo_UPD:
3185 case ARM::VLD2LNd16Pseudo_UPD:
3186 case ARM::VLD2LNd32Pseudo_UPD:
3187 case ARM::VLD2LNq16Pseudo_UPD:
3188 case ARM::VLD2LNq32Pseudo_UPD:
3189 case ARM::VLD4LNd8Pseudo:
3190 case ARM::VLD4LNd16Pseudo:
3191 case ARM::VLD4LNd32Pseudo:
3192 case ARM::VLD4LNq16Pseudo:
3193 case ARM::VLD4LNq32Pseudo:
3194 case ARM::VLD4LNd8Pseudo_UPD:
3195 case ARM::VLD4LNd16Pseudo_UPD:
3196 case ARM::VLD4LNd32Pseudo_UPD:
3197 case ARM::VLD4LNq16Pseudo_UPD:
3198 case ARM::VLD4LNq32Pseudo_UPD:
3199 // If the address is not 64-bit aligned, the latencies of these
3200 // instructions increases by one.
3201 ++Latency;
3202 break;
3203 }
3204
Evan Cheng7e2fe912010-10-28 06:47:08 +00003205 return Latency;
Evan Chenga0792de2010-10-06 06:27:31 +00003206}
Evan Cheng23128422010-10-19 18:58:51 +00003207
Evan Cheng020f4102011-12-14 20:00:08 +00003208unsigned
3209ARMBaseInstrInfo::getOutputLatency(const InstrItineraryData *ItinData,
3210 const MachineInstr *DefMI, unsigned DefIdx,
3211 const MachineInstr *DepMI) const {
3212 unsigned Reg = DefMI->getOperand(DefIdx).getReg();
3213 if (DepMI->readsRegister(Reg, &getRegisterInfo()) || !isPredicated(DepMI))
3214 return 1;
3215
3216 // If the second MI is predicated, then there is an implicit use dependency.
Andrew Trickef2d9e52012-06-22 02:50:31 +00003217 return getInstrLatency(ItinData, DefMI);
Evan Cheng020f4102011-12-14 20:00:08 +00003218}
3219
Andrew Trickb7e02892012-06-05 21:11:27 +00003220unsigned ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
3221 const MachineInstr *MI,
3222 unsigned *PredCost) const {
Evan Cheng8239daf2010-11-03 00:45:17 +00003223 if (MI->isCopyLike() || MI->isInsertSubreg() ||
3224 MI->isRegSequence() || MI->isImplicitDef())
3225 return 1;
3226
Andrew Tricked7a51e2012-06-07 19:41:55 +00003227 // An instruction scheduler typically runs on unbundled instructions, however
3228 // other passes may query the latency of a bundled instruction.
Evan Chengddfd1372011-12-14 02:11:42 +00003229 if (MI->isBundle()) {
Andrew Tricked7a51e2012-06-07 19:41:55 +00003230 unsigned Latency = 0;
Evan Chengddfd1372011-12-14 02:11:42 +00003231 MachineBasicBlock::const_instr_iterator I = MI;
3232 MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
3233 while (++I != E && I->isInsideBundle()) {
3234 if (I->getOpcode() != ARM::t2IT)
3235 Latency += getInstrLatency(ItinData, I, PredCost);
3236 }
3237 return Latency;
3238 }
3239
Evan Chenge837dea2011-06-28 19:10:37 +00003240 const MCInstrDesc &MCID = MI->getDesc();
Andrew Tricked7a51e2012-06-07 19:41:55 +00003241 if (PredCost && (MCID.isCall() || MCID.hasImplicitDefOfPhysReg(ARM::CPSR))) {
Evan Cheng8239daf2010-11-03 00:45:17 +00003242 // When predicated, CPSR is an additional source operand for CPSR updating
3243 // instructions, this apparently increases their latencies.
3244 *PredCost = 1;
Andrew Tricked7a51e2012-06-07 19:41:55 +00003245 }
3246 // Be sure to call getStageLatency for an empty itinerary in case it has a
3247 // valid MinLatency property.
3248 if (!ItinData)
3249 return MI->mayLoad() ? 3 : 1;
3250
3251 unsigned Class = MCID.getSchedClass();
3252
3253 // For instructions with variable uops, use uops as latency.
Andrew Trick14ccc7b2012-07-02 19:12:29 +00003254 if (!ItinData->isEmpty() && ItinData->getNumMicroOps(Class) < 0)
Andrew Tricked7a51e2012-06-07 19:41:55 +00003255 return getNumMicroOps(ItinData, MI);
Andrew Trick14ccc7b2012-07-02 19:12:29 +00003256
Andrew Tricked7a51e2012-06-07 19:41:55 +00003257 // For the common case, fall back on the itinerary's latency.
Andrew Trick68b16542012-06-07 19:42:00 +00003258 unsigned Latency = ItinData->getStageLatency(Class);
3259
3260 // Adjust for dynamic def-side opcode variants not captured by the itinerary.
3261 unsigned DefAlign = MI->hasOneMemOperand()
3262 ? (*MI->memoperands_begin())->getAlignment() : 0;
3263 int Adj = adjustDefLatency(Subtarget, MI, &MCID, DefAlign);
3264 if (Adj >= 0 || (int)Latency > -Adj) {
3265 return Latency + Adj;
3266 }
3267 return Latency;
Evan Cheng8239daf2010-11-03 00:45:17 +00003268}
3269
3270int ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
3271 SDNode *Node) const {
3272 if (!Node->isMachineOpcode())
3273 return 1;
3274
3275 if (!ItinData || ItinData->isEmpty())
3276 return 1;
3277
3278 unsigned Opcode = Node->getMachineOpcode();
3279 switch (Opcode) {
3280 default:
3281 return ItinData->getStageLatency(get(Opcode).getSchedClass());
Bill Wendling73fe34a2010-11-16 01:16:36 +00003282 case ARM::VLDMQIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00003283 case ARM::VSTMQIA:
Evan Cheng8239daf2010-11-03 00:45:17 +00003284 return 2;
Eric Christopher8b3ca622010-11-18 19:40:05 +00003285 }
Evan Cheng8239daf2010-11-03 00:45:17 +00003286}
3287
Evan Cheng23128422010-10-19 18:58:51 +00003288bool ARMBaseInstrInfo::
3289hasHighOperandLatency(const InstrItineraryData *ItinData,
3290 const MachineRegisterInfo *MRI,
3291 const MachineInstr *DefMI, unsigned DefIdx,
3292 const MachineInstr *UseMI, unsigned UseIdx) const {
3293 unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
3294 unsigned UDomain = UseMI->getDesc().TSFlags & ARMII::DomainMask;
3295 if (Subtarget.isCortexA8() &&
3296 (DDomain == ARMII::DomainVFP || UDomain == ARMII::DomainVFP))
3297 // CortexA8 VFP instructions are not pipelined.
3298 return true;
3299
3300 // Hoist VFP / NEON instructions with 4 or higher latency.
Andrew Trick397f4e32012-06-07 19:42:04 +00003301 int Latency = computeOperandLatency(ItinData, DefMI, DefIdx, UseMI, UseIdx,
3302 /*FindMin=*/false);
Andrew Trickf3770712012-06-07 19:41:58 +00003303 if (Latency < 0)
3304 Latency = getInstrLatency(ItinData, DefMI);
Evan Cheng23128422010-10-19 18:58:51 +00003305 if (Latency <= 3)
3306 return false;
3307 return DDomain == ARMII::DomainVFP || DDomain == ARMII::DomainNEON ||
3308 UDomain == ARMII::DomainVFP || UDomain == ARMII::DomainNEON;
3309}
Evan Chengc8141df2010-10-26 02:08:50 +00003310
3311bool ARMBaseInstrInfo::
3312hasLowDefLatency(const InstrItineraryData *ItinData,
3313 const MachineInstr *DefMI, unsigned DefIdx) const {
3314 if (!ItinData || ItinData->isEmpty())
3315 return false;
3316
3317 unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
3318 if (DDomain == ARMII::DomainGeneral) {
3319 unsigned DefClass = DefMI->getDesc().getSchedClass();
3320 int DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
3321 return (DefCycle != -1 && DefCycle <= 2);
3322 }
3323 return false;
3324}
Evan Cheng48575f62010-12-05 22:04:16 +00003325
Andrew Trick3be654f2011-09-21 02:20:46 +00003326bool ARMBaseInstrInfo::verifyInstruction(const MachineInstr *MI,
3327 StringRef &ErrInfo) const {
3328 if (convertAddSubFlagsOpcode(MI->getOpcode())) {
3329 ErrInfo = "Pseudo flag setting opcodes only exist in Selection DAG";
3330 return false;
3331 }
3332 return true;
3333}
3334
Evan Cheng48575f62010-12-05 22:04:16 +00003335bool
3336ARMBaseInstrInfo::isFpMLxInstruction(unsigned Opcode, unsigned &MulOpc,
3337 unsigned &AddSubOpc,
3338 bool &NegAcc, bool &HasLane) const {
3339 DenseMap<unsigned, unsigned>::const_iterator I = MLxEntryMap.find(Opcode);
3340 if (I == MLxEntryMap.end())
3341 return false;
3342
3343 const ARM_MLxEntry &Entry = ARM_MLxTable[I->second];
3344 MulOpc = Entry.MulOpc;
3345 AddSubOpc = Entry.AddSubOpc;
3346 NegAcc = Entry.NegAcc;
3347 HasLane = Entry.HasLane;
3348 return true;
3349}
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003350
3351//===----------------------------------------------------------------------===//
3352// Execution domains.
3353//===----------------------------------------------------------------------===//
3354//
3355// Some instructions go down the NEON pipeline, some go down the VFP pipeline,
3356// and some can go down both. The vmov instructions go down the VFP pipeline,
3357// but they can be changed to vorr equivalents that are executed by the NEON
3358// pipeline.
3359//
3360// We use the following execution domain numbering:
3361//
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003362enum ARMExeDomain {
3363 ExeGeneric = 0,
3364 ExeVFP = 1,
3365 ExeNEON = 2
3366};
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003367//
3368// Also see ARMInstrFormats.td and Domain* enums in ARMBaseInfo.h
3369//
3370std::pair<uint16_t, uint16_t>
3371ARMBaseInstrInfo::getExecutionDomain(const MachineInstr *MI) const {
Tim Northover3c8ad922012-08-17 11:32:52 +00003372 // VMOVD, VMOVRS and VMOVSR are VFP instructions, but can be changed to NEON
3373 // if they are not predicated.
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003374 if (MI->getOpcode() == ARM::VMOVD && !isPredicated(MI))
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003375 return std::make_pair(ExeVFP, (1<<ExeVFP) | (1<<ExeNEON));
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003376
Tim Northover3c8ad922012-08-17 11:32:52 +00003377 // Cortex-A9 is particularly picky about mixing the two and wants these
3378 // converted.
3379 if (Subtarget.isCortexA9() && !isPredicated(MI) &&
3380 (MI->getOpcode() == ARM::VMOVRS ||
3381 MI->getOpcode() == ARM::VMOVSR))
3382 return std::make_pair(ExeVFP, (1<<ExeVFP) | (1<<ExeNEON));
3383
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003384 // No other instructions can be swizzled, so just determine their domain.
3385 unsigned Domain = MI->getDesc().TSFlags & ARMII::DomainMask;
3386
3387 if (Domain & ARMII::DomainNEON)
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003388 return std::make_pair(ExeNEON, 0);
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003389
3390 // Certain instructions can go either way on Cortex-A8.
3391 // Treat them as NEON instructions.
3392 if ((Domain & ARMII::DomainNEONA8) && Subtarget.isCortexA8())
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003393 return std::make_pair(ExeNEON, 0);
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003394
3395 if (Domain & ARMII::DomainVFP)
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003396 return std::make_pair(ExeVFP, 0);
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003397
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003398 return std::make_pair(ExeGeneric, 0);
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003399}
3400
3401void
3402ARMBaseInstrInfo::setExecutionDomain(MachineInstr *MI, unsigned Domain) const {
Tim Northover3c8ad922012-08-17 11:32:52 +00003403 unsigned DstReg, SrcReg, DReg;
3404 unsigned Lane;
3405 MachineInstrBuilder MIB(MI);
3406 const TargetRegisterInfo *TRI = &getRegisterInfo();
3407 bool isKill;
3408 switch (MI->getOpcode()) {
3409 default:
3410 llvm_unreachable("cannot handle opcode!");
3411 break;
3412 case ARM::VMOVD:
3413 if (Domain != ExeNEON)
3414 break;
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003415
Tim Northover3c8ad922012-08-17 11:32:52 +00003416 // Zap the predicate operands.
3417 assert(!isPredicated(MI) && "Cannot predicate a VORRd");
3418 MI->RemoveOperand(3);
3419 MI->RemoveOperand(2);
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003420
Tim Northover3c8ad922012-08-17 11:32:52 +00003421 // Change to a VORRd which requires two identical use operands.
3422 MI->setDesc(get(ARM::VORRd));
Jakob Stoklund Olesen8bb3d3c2011-09-29 02:48:41 +00003423
Tim Northover3c8ad922012-08-17 11:32:52 +00003424 // Add the extra source operand and new predicates.
3425 // This will go before any implicit ops.
3426 AddDefaultPred(MachineInstrBuilder(MI).addOperand(MI->getOperand(1)));
3427 break;
3428 case ARM::VMOVRS:
3429 if (Domain != ExeNEON)
3430 break;
3431 assert(!isPredicated(MI) && "Cannot predicate a VGETLN");
3432
3433 DstReg = MI->getOperand(0).getReg();
3434 SrcReg = MI->getOperand(1).getReg();
3435
3436 DReg = TRI->getMatchingSuperReg(SrcReg, ARM::ssub_0, &ARM::DPRRegClass);
3437 Lane = 0;
3438 if (DReg == ARM::NoRegister) {
3439 DReg = TRI->getMatchingSuperReg(SrcReg, ARM::ssub_1, &ARM::DPRRegClass);
3440 Lane = 1;
3441 assert(DReg && "S-register with no D super-register?");
3442 }
3443
3444 MI->RemoveOperand(3);
3445 MI->RemoveOperand(2);
3446 MI->RemoveOperand(1);
3447
3448 MI->setDesc(get(ARM::VGETLNi32));
3449 MIB.addReg(DReg);
3450 MIB.addImm(Lane);
3451
3452 MIB->getOperand(1).setIsUndef();
3453 MIB.addReg(SrcReg, RegState::Implicit);
3454
3455 AddDefaultPred(MIB);
3456 break;
3457 case ARM::VMOVSR:
3458 if (Domain != ExeNEON)
3459 break;
3460 assert(!isPredicated(MI) && "Cannot predicate a VSETLN");
3461
3462 DstReg = MI->getOperand(0).getReg();
3463 SrcReg = MI->getOperand(1).getReg();
3464 DReg = TRI->getMatchingSuperReg(DstReg, ARM::ssub_0, &ARM::DPRRegClass);
3465 Lane = 0;
3466 if (DReg == ARM::NoRegister) {
3467 DReg = TRI->getMatchingSuperReg(DstReg, ARM::ssub_1, &ARM::DPRRegClass);
3468 Lane = 1;
3469 assert(DReg && "S-register with no D super-register?");
3470 }
3471 isKill = MI->getOperand(0).isKill();
3472
3473 MI->RemoveOperand(3);
3474 MI->RemoveOperand(2);
3475 MI->RemoveOperand(1);
3476 MI->RemoveOperand(0);
3477
3478 MI->setDesc(get(ARM::VSETLNi32));
Jakob Stoklund Olesen53799042012-08-21 00:34:53 +00003479 MIB.addReg(DReg, RegState::Define);
3480 MIB.addReg(DReg, RegState::Undef);
Tim Northover3c8ad922012-08-17 11:32:52 +00003481 MIB.addReg(SrcReg);
3482 MIB.addImm(Lane);
3483
Tim Northover3c8ad922012-08-17 11:32:52 +00003484 if (isKill)
3485 MIB->addRegisterKilled(DstReg, TRI, true);
3486 MIB->addRegisterDefined(DstReg, TRI);
3487
3488 AddDefaultPred(MIB);
3489 break;
3490 }
3491
Jakob Stoklund Olesen13fd6012011-09-27 22:57:21 +00003492}
Jim Grosbachc01810e2012-02-28 23:53:30 +00003493
3494bool ARMBaseInstrInfo::hasNOP() const {
3495 return (Subtarget.getFeatureBits() & ARM::HasV6T2Ops) != 0;
3496}