blob: fdc5b9eea4689fd3715fa917cf00f6c371c99446 [file] [log] [blame]
Jim Grosbach31c24bf2009-11-07 22:00:39 +00001//===- ARMBaseInstrInfo.cpp - ARM Instruction Information -------*- C++ -*-===//
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"
16#include "ARMAddressingModes.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"
Anton Korobeynikovf95215f2009-11-02 00:10:38 +000020#include "ARMRegisterInfo.h"
Chris Lattner4dbbe342010-07-20 21:17:29 +000021#include "ARMGenInstrInfo.inc"
Evan Chengfdc83402009-11-08 00:15:23 +000022#include "llvm/Constants.h"
23#include "llvm/Function.h"
24#include "llvm/GlobalValue.h"
David Goodwin334c2642009-07-08 16:09:28 +000025#include "llvm/CodeGen/LiveVariables.h"
Evan Chengd457e6e2009-11-07 04:04:34 +000026#include "llvm/CodeGen/MachineConstantPool.h"
David Goodwin334c2642009-07-08 16:09:28 +000027#include "llvm/CodeGen/MachineFrameInfo.h"
28#include "llvm/CodeGen/MachineInstrBuilder.h"
29#include "llvm/CodeGen/MachineJumpTableInfo.h"
Anton Korobeynikov249fb332009-10-07 00:06:35 +000030#include "llvm/CodeGen/MachineMemOperand.h"
Evan Cheng2457f2c2010-05-22 01:47:14 +000031#include "llvm/CodeGen/MachineRegisterInfo.h"
Anton Korobeynikov249fb332009-10-07 00:06:35 +000032#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000033#include "llvm/MC/MCAsmInfo.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"
David Goodwin334c2642009-07-08 16:09:28 +000038using namespace llvm;
39
40static cl::opt<bool>
41EnableARM3Addr("enable-arm-3-addr-conv", cl::Hidden,
42 cl::desc("Enable ARM 2-addr to 3-addr conv"));
43
Evan Cheng48575f62010-12-05 22:04:16 +000044/// ARM_MLxEntry - Record information about MLA / MLS instructions.
45struct ARM_MLxEntry {
46 unsigned MLxOpc; // MLA / MLS opcode
47 unsigned MulOpc; // Expanded multiplication opcode
48 unsigned AddSubOpc; // Expanded add / sub opcode
49 bool NegAcc; // True if the acc is negated before the add / sub.
50 bool HasLane; // True if instruction has an extra "lane" operand.
51};
52
53static const ARM_MLxEntry ARM_MLxTable[] = {
54 // MLxOpc, MulOpc, AddSubOpc, NegAcc, HasLane
55 // fp scalar ops
56 { ARM::VMLAS, ARM::VMULS, ARM::VADDS, false, false },
57 { ARM::VMLSS, ARM::VMULS, ARM::VSUBS, false, false },
58 { ARM::VMLAD, ARM::VMULD, ARM::VADDD, false, false },
59 { ARM::VMLSD, ARM::VMULD, ARM::VSUBD, false, false },
Evan Cheng48575f62010-12-05 22:04:16 +000060 { ARM::VNMLAS, ARM::VNMULS, ARM::VSUBS, true, false },
61 { ARM::VNMLSS, ARM::VMULS, ARM::VSUBS, true, false },
62 { ARM::VNMLAD, ARM::VNMULD, ARM::VSUBD, true, false },
63 { ARM::VNMLSD, ARM::VMULD, ARM::VSUBD, true, false },
64
65 // fp SIMD ops
66 { ARM::VMLAfd, ARM::VMULfd, ARM::VADDfd, false, false },
67 { ARM::VMLSfd, ARM::VMULfd, ARM::VSUBfd, false, false },
68 { ARM::VMLAfq, ARM::VMULfq, ARM::VADDfq, false, false },
69 { ARM::VMLSfq, ARM::VMULfq, ARM::VSUBfq, false, false },
70 { ARM::VMLAslfd, ARM::VMULslfd, ARM::VADDfd, false, true },
71 { ARM::VMLSslfd, ARM::VMULslfd, ARM::VSUBfd, false, true },
72 { ARM::VMLAslfq, ARM::VMULslfq, ARM::VADDfq, false, true },
73 { ARM::VMLSslfq, ARM::VMULslfq, ARM::VSUBfq, false, true },
74};
75
Anton Korobeynikovf95215f2009-11-02 00:10:38 +000076ARMBaseInstrInfo::ARMBaseInstrInfo(const ARMSubtarget& STI)
77 : TargetInstrInfoImpl(ARMInsts, array_lengthof(ARMInsts)),
78 Subtarget(STI) {
Evan Cheng48575f62010-12-05 22:04:16 +000079 for (unsigned i = 0, e = array_lengthof(ARM_MLxTable); i != e; ++i) {
80 if (!MLxEntryMap.insert(std::make_pair(ARM_MLxTable[i].MLxOpc, i)).second)
81 assert(false && "Duplicated entries?");
82 MLxHazardOpcodes.insert(ARM_MLxTable[i].AddSubOpc);
83 MLxHazardOpcodes.insert(ARM_MLxTable[i].MulOpc);
84 }
85}
86
Andrew Trick2da8bc82010-12-24 05:03:26 +000087// Use a ScoreboardHazardRecognizer for prepass ARM scheduling. TargetInstrImpl
88// currently defaults to no prepass hazard recognizer.
Evan Cheng48575f62010-12-05 22:04:16 +000089ScheduleHazardRecognizer *ARMBaseInstrInfo::
Andrew Trick2da8bc82010-12-24 05:03:26 +000090CreateTargetHazardRecognizer(const TargetMachine *TM,
91 const ScheduleDAG *DAG) const {
Andrew Trickc8bfd1d2011-01-21 05:51:33 +000092 if (usePreRAHazardRecognizer()) {
Andrew Trick2da8bc82010-12-24 05:03:26 +000093 const InstrItineraryData *II = TM->getInstrItineraryData();
94 return new ScoreboardHazardRecognizer(II, DAG, "pre-RA-sched");
95 }
96 return TargetInstrInfoImpl::CreateTargetHazardRecognizer(TM, DAG);
97}
98
99ScheduleHazardRecognizer *ARMBaseInstrInfo::
100CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
101 const ScheduleDAG *DAG) const {
Evan Cheng48575f62010-12-05 22:04:16 +0000102 if (Subtarget.isThumb2() || Subtarget.hasVFP2())
103 return (ScheduleHazardRecognizer *)
Andrew Trick2da8bc82010-12-24 05:03:26 +0000104 new ARMHazardRecognizer(II, *this, getRegisterInfo(), Subtarget, DAG);
105 return TargetInstrInfoImpl::CreateTargetPostRAHazardRecognizer(II, DAG);
David Goodwin334c2642009-07-08 16:09:28 +0000106}
107
108MachineInstr *
109ARMBaseInstrInfo::convertToThreeAddress(MachineFunction::iterator &MFI,
110 MachineBasicBlock::iterator &MBBI,
111 LiveVariables *LV) const {
Evan Cheng78703dd2009-07-27 18:44:00 +0000112 // FIXME: Thumb2 support.
113
David Goodwin334c2642009-07-08 16:09:28 +0000114 if (!EnableARM3Addr)
115 return NULL;
116
117 MachineInstr *MI = MBBI;
118 MachineFunction &MF = *MI->getParent()->getParent();
Bruno Cardoso Lopes99405df2010-06-08 22:51:23 +0000119 uint64_t TSFlags = MI->getDesc().TSFlags;
David Goodwin334c2642009-07-08 16:09:28 +0000120 bool isPre = false;
121 switch ((TSFlags & ARMII::IndexModeMask) >> ARMII::IndexModeShift) {
122 default: return NULL;
123 case ARMII::IndexModePre:
124 isPre = true;
125 break;
126 case ARMII::IndexModePost:
127 break;
128 }
129
130 // Try splitting an indexed load/store to an un-indexed one plus an add/sub
131 // operation.
132 unsigned MemOpc = getUnindexedOpcode(MI->getOpcode());
133 if (MemOpc == 0)
134 return NULL;
135
136 MachineInstr *UpdateMI = NULL;
137 MachineInstr *MemMI = NULL;
138 unsigned AddrMode = (TSFlags & ARMII::AddrModeMask);
139 const TargetInstrDesc &TID = MI->getDesc();
140 unsigned NumOps = TID.getNumOperands();
141 bool isLoad = !TID.mayStore();
142 const MachineOperand &WB = isLoad ? MI->getOperand(1) : MI->getOperand(0);
143 const MachineOperand &Base = MI->getOperand(2);
144 const MachineOperand &Offset = MI->getOperand(NumOps-3);
145 unsigned WBReg = WB.getReg();
146 unsigned BaseReg = Base.getReg();
147 unsigned OffReg = Offset.getReg();
148 unsigned OffImm = MI->getOperand(NumOps-2).getImm();
149 ARMCC::CondCodes Pred = (ARMCC::CondCodes)MI->getOperand(NumOps-1).getImm();
150 switch (AddrMode) {
151 default:
152 assert(false && "Unknown indexed op!");
153 return NULL;
154 case ARMII::AddrMode2: {
155 bool isSub = ARM_AM::getAM2Op(OffImm) == ARM_AM::sub;
156 unsigned Amt = ARM_AM::getAM2Offset(OffImm);
157 if (OffReg == 0) {
Evan Chenge7cbe412009-07-08 21:03:57 +0000158 if (ARM_AM::getSOImmVal(Amt) == -1)
David Goodwin334c2642009-07-08 16:09:28 +0000159 // Can't encode it in a so_imm operand. This transformation will
160 // add more than 1 instruction. Abandon!
161 return NULL;
162 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng78703dd2009-07-27 18:44:00 +0000163 get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
Evan Chenge7cbe412009-07-08 21:03:57 +0000164 .addReg(BaseReg).addImm(Amt)
David Goodwin334c2642009-07-08 16:09:28 +0000165 .addImm(Pred).addReg(0).addReg(0);
166 } else if (Amt != 0) {
167 ARM_AM::ShiftOpc ShOpc = ARM_AM::getAM2ShiftOpc(OffImm);
168 unsigned SOOpc = ARM_AM::getSORegOpc(ShOpc, Amt);
169 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng78703dd2009-07-27 18:44:00 +0000170 get(isSub ? ARM::SUBrs : ARM::ADDrs), WBReg)
David Goodwin334c2642009-07-08 16:09:28 +0000171 .addReg(BaseReg).addReg(OffReg).addReg(0).addImm(SOOpc)
172 .addImm(Pred).addReg(0).addReg(0);
173 } else
174 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng78703dd2009-07-27 18:44:00 +0000175 get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
David Goodwin334c2642009-07-08 16:09:28 +0000176 .addReg(BaseReg).addReg(OffReg)
177 .addImm(Pred).addReg(0).addReg(0);
178 break;
179 }
180 case ARMII::AddrMode3 : {
181 bool isSub = ARM_AM::getAM3Op(OffImm) == ARM_AM::sub;
182 unsigned Amt = ARM_AM::getAM3Offset(OffImm);
183 if (OffReg == 0)
184 // Immediate is 8-bits. It's guaranteed to fit in a so_imm operand.
185 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng78703dd2009-07-27 18:44:00 +0000186 get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
David Goodwin334c2642009-07-08 16:09:28 +0000187 .addReg(BaseReg).addImm(Amt)
188 .addImm(Pred).addReg(0).addReg(0);
189 else
190 UpdateMI = BuildMI(MF, MI->getDebugLoc(),
Evan Cheng78703dd2009-07-27 18:44:00 +0000191 get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
David Goodwin334c2642009-07-08 16:09:28 +0000192 .addReg(BaseReg).addReg(OffReg)
193 .addImm(Pred).addReg(0).addReg(0);
194 break;
195 }
196 }
197
198 std::vector<MachineInstr*> NewMIs;
199 if (isPre) {
200 if (isLoad)
201 MemMI = BuildMI(MF, MI->getDebugLoc(),
202 get(MemOpc), MI->getOperand(0).getReg())
Jim Grosbach3e556122010-10-26 22:37:02 +0000203 .addReg(WBReg).addImm(0).addImm(Pred);
David Goodwin334c2642009-07-08 16:09:28 +0000204 else
205 MemMI = BuildMI(MF, MI->getDebugLoc(),
206 get(MemOpc)).addReg(MI->getOperand(1).getReg())
207 .addReg(WBReg).addReg(0).addImm(0).addImm(Pred);
208 NewMIs.push_back(MemMI);
209 NewMIs.push_back(UpdateMI);
210 } else {
211 if (isLoad)
212 MemMI = BuildMI(MF, MI->getDebugLoc(),
213 get(MemOpc), MI->getOperand(0).getReg())
Jim Grosbach3e556122010-10-26 22:37:02 +0000214 .addReg(BaseReg).addImm(0).addImm(Pred);
David Goodwin334c2642009-07-08 16:09:28 +0000215 else
216 MemMI = BuildMI(MF, MI->getDebugLoc(),
217 get(MemOpc)).addReg(MI->getOperand(1).getReg())
218 .addReg(BaseReg).addReg(0).addImm(0).addImm(Pred);
219 if (WB.isDead())
220 UpdateMI->getOperand(0).setIsDead();
221 NewMIs.push_back(UpdateMI);
222 NewMIs.push_back(MemMI);
223 }
224
225 // Transfer LiveVariables states, kill / dead info.
226 if (LV) {
227 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
228 MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000229 if (MO.isReg() && TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
David Goodwin334c2642009-07-08 16:09:28 +0000230 unsigned Reg = MO.getReg();
231
232 LiveVariables::VarInfo &VI = LV->getVarInfo(Reg);
233 if (MO.isDef()) {
234 MachineInstr *NewMI = (Reg == WBReg) ? UpdateMI : MemMI;
235 if (MO.isDead())
236 LV->addVirtualRegisterDead(Reg, NewMI);
237 }
238 if (MO.isUse() && MO.isKill()) {
239 for (unsigned j = 0; j < 2; ++j) {
240 // Look at the two new MI's in reverse order.
241 MachineInstr *NewMI = NewMIs[j];
242 if (!NewMI->readsRegister(Reg))
243 continue;
244 LV->addVirtualRegisterKilled(Reg, NewMI);
245 if (VI.removeKill(MI))
246 VI.Kills.push_back(NewMI);
247 break;
248 }
249 }
250 }
251 }
252 }
253
254 MFI->insert(MBBI, NewMIs[1]);
255 MFI->insert(MBBI, NewMIs[0]);
256 return NewMIs[0];
257}
258
259// Branch analysis.
260bool
261ARMBaseInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,MachineBasicBlock *&TBB,
262 MachineBasicBlock *&FBB,
263 SmallVectorImpl<MachineOperand> &Cond,
264 bool AllowModify) const {
265 // If the block has no terminators, it just falls into the block after it.
266 MachineBasicBlock::iterator I = MBB.end();
Dale Johannesen93d6a7e2010-04-02 01:38:09 +0000267 if (I == MBB.begin())
268 return false;
269 --I;
270 while (I->isDebugValue()) {
271 if (I == MBB.begin())
272 return false;
273 --I;
274 }
275 if (!isUnpredicatedTerminator(I))
David Goodwin334c2642009-07-08 16:09:28 +0000276 return false;
277
278 // Get the last instruction in the block.
279 MachineInstr *LastInst = I;
280
281 // If there is only one terminator instruction, process it.
282 unsigned LastOpc = LastInst->getOpcode();
283 if (I == MBB.begin() || !isUnpredicatedTerminator(--I)) {
Evan Cheng5ca53a72009-07-27 18:20:05 +0000284 if (isUncondBranchOpcode(LastOpc)) {
David Goodwin334c2642009-07-08 16:09:28 +0000285 TBB = LastInst->getOperand(0).getMBB();
286 return false;
287 }
Evan Cheng5ca53a72009-07-27 18:20:05 +0000288 if (isCondBranchOpcode(LastOpc)) {
David Goodwin334c2642009-07-08 16:09:28 +0000289 // Block ends with fall-through condbranch.
290 TBB = LastInst->getOperand(0).getMBB();
291 Cond.push_back(LastInst->getOperand(1));
292 Cond.push_back(LastInst->getOperand(2));
293 return false;
294 }
295 return true; // Can't handle indirect branch.
296 }
297
298 // Get the instruction before it if it is a terminator.
299 MachineInstr *SecondLastInst = I;
Evan Cheng108c8722010-09-23 06:54:40 +0000300 unsigned SecondLastOpc = SecondLastInst->getOpcode();
301
302 // If AllowModify is true and the block ends with two or more unconditional
303 // branches, delete all but the first unconditional branch.
304 if (AllowModify && isUncondBranchOpcode(LastOpc)) {
305 while (isUncondBranchOpcode(SecondLastOpc)) {
306 LastInst->eraseFromParent();
307 LastInst = SecondLastInst;
308 LastOpc = LastInst->getOpcode();
Evan Cheng676e2582010-09-23 19:42:03 +0000309 if (I == MBB.begin() || !isUnpredicatedTerminator(--I)) {
310 // Return now the only terminator is an unconditional branch.
311 TBB = LastInst->getOperand(0).getMBB();
312 return false;
313 } else {
Evan Cheng108c8722010-09-23 06:54:40 +0000314 SecondLastInst = I;
315 SecondLastOpc = SecondLastInst->getOpcode();
316 }
317 }
318 }
David Goodwin334c2642009-07-08 16:09:28 +0000319
320 // If there are three terminators, we don't know what sort of block this is.
321 if (SecondLastInst && I != MBB.begin() && isUnpredicatedTerminator(--I))
322 return true;
323
Evan Cheng5ca53a72009-07-27 18:20:05 +0000324 // If the block ends with a B and a Bcc, handle it.
Evan Cheng5ca53a72009-07-27 18:20:05 +0000325 if (isCondBranchOpcode(SecondLastOpc) && isUncondBranchOpcode(LastOpc)) {
David Goodwin334c2642009-07-08 16:09:28 +0000326 TBB = SecondLastInst->getOperand(0).getMBB();
327 Cond.push_back(SecondLastInst->getOperand(1));
328 Cond.push_back(SecondLastInst->getOperand(2));
329 FBB = LastInst->getOperand(0).getMBB();
330 return false;
331 }
332
333 // If the block ends with two unconditional branches, handle it. The second
334 // one is not executed, so remove it.
Evan Cheng5ca53a72009-07-27 18:20:05 +0000335 if (isUncondBranchOpcode(SecondLastOpc) && isUncondBranchOpcode(LastOpc)) {
David Goodwin334c2642009-07-08 16:09:28 +0000336 TBB = SecondLastInst->getOperand(0).getMBB();
337 I = LastInst;
338 if (AllowModify)
339 I->eraseFromParent();
340 return false;
341 }
342
343 // ...likewise if it ends with a branch table followed by an unconditional
344 // branch. The branch folder can create these, and we must get rid of them for
345 // correctness of Thumb constant islands.
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000346 if ((isJumpTableBranchOpcode(SecondLastOpc) ||
347 isIndirectBranchOpcode(SecondLastOpc)) &&
Evan Cheng5ca53a72009-07-27 18:20:05 +0000348 isUncondBranchOpcode(LastOpc)) {
David Goodwin334c2642009-07-08 16:09:28 +0000349 I = LastInst;
350 if (AllowModify)
351 I->eraseFromParent();
352 return true;
353 }
354
355 // Otherwise, can't handle this.
356 return true;
357}
358
359
360unsigned ARMBaseInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
David Goodwin334c2642009-07-08 16:09:28 +0000361 MachineBasicBlock::iterator I = MBB.end();
362 if (I == MBB.begin()) return 0;
363 --I;
Dale Johannesen93d6a7e2010-04-02 01:38:09 +0000364 while (I->isDebugValue()) {
365 if (I == MBB.begin())
366 return 0;
367 --I;
368 }
Evan Cheng5ca53a72009-07-27 18:20:05 +0000369 if (!isUncondBranchOpcode(I->getOpcode()) &&
370 !isCondBranchOpcode(I->getOpcode()))
David Goodwin334c2642009-07-08 16:09:28 +0000371 return 0;
372
373 // Remove the branch.
374 I->eraseFromParent();
375
376 I = MBB.end();
377
378 if (I == MBB.begin()) return 1;
379 --I;
Evan Cheng5ca53a72009-07-27 18:20:05 +0000380 if (!isCondBranchOpcode(I->getOpcode()))
David Goodwin334c2642009-07-08 16:09:28 +0000381 return 1;
382
383 // Remove the branch.
384 I->eraseFromParent();
385 return 2;
386}
387
388unsigned
389ARMBaseInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
Stuart Hastings3bf91252010-06-17 22:43:56 +0000390 MachineBasicBlock *FBB,
391 const SmallVectorImpl<MachineOperand> &Cond,
392 DebugLoc DL) const {
Evan Cheng6495f632009-07-28 05:48:47 +0000393 ARMFunctionInfo *AFI = MBB.getParent()->getInfo<ARMFunctionInfo>();
394 int BOpc = !AFI->isThumbFunction()
395 ? ARM::B : (AFI->isThumb2Function() ? ARM::t2B : ARM::tB);
396 int BccOpc = !AFI->isThumbFunction()
397 ? ARM::Bcc : (AFI->isThumb2Function() ? ARM::t2Bcc : ARM::tBcc);
David Goodwin334c2642009-07-08 16:09:28 +0000398
399 // Shouldn't be a fall through.
400 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
401 assert((Cond.size() == 2 || Cond.size() == 0) &&
402 "ARM branch conditions have two components!");
403
404 if (FBB == 0) {
405 if (Cond.empty()) // Unconditional branch?
Stuart Hastings3bf91252010-06-17 22:43:56 +0000406 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB);
David Goodwin334c2642009-07-08 16:09:28 +0000407 else
Stuart Hastings3bf91252010-06-17 22:43:56 +0000408 BuildMI(&MBB, DL, get(BccOpc)).addMBB(TBB)
David Goodwin334c2642009-07-08 16:09:28 +0000409 .addImm(Cond[0].getImm()).addReg(Cond[1].getReg());
410 return 1;
411 }
412
413 // Two-way conditional branch.
Stuart Hastings3bf91252010-06-17 22:43:56 +0000414 BuildMI(&MBB, DL, get(BccOpc)).addMBB(TBB)
David Goodwin334c2642009-07-08 16:09:28 +0000415 .addImm(Cond[0].getImm()).addReg(Cond[1].getReg());
Stuart Hastings3bf91252010-06-17 22:43:56 +0000416 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB);
David Goodwin334c2642009-07-08 16:09:28 +0000417 return 2;
418}
419
420bool ARMBaseInstrInfo::
421ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const {
422 ARMCC::CondCodes CC = (ARMCC::CondCodes)(int)Cond[0].getImm();
423 Cond[0].setImm(ARMCC::getOppositeCondition(CC));
424 return false;
425}
426
David Goodwin334c2642009-07-08 16:09:28 +0000427bool ARMBaseInstrInfo::
428PredicateInstruction(MachineInstr *MI,
429 const SmallVectorImpl<MachineOperand> &Pred) const {
430 unsigned Opc = MI->getOpcode();
Evan Cheng5ca53a72009-07-27 18:20:05 +0000431 if (isUncondBranchOpcode(Opc)) {
432 MI->setDesc(get(getMatchingCondBranchOpcode(Opc)));
David Goodwin334c2642009-07-08 16:09:28 +0000433 MI->addOperand(MachineOperand::CreateImm(Pred[0].getImm()));
434 MI->addOperand(MachineOperand::CreateReg(Pred[1].getReg(), false));
435 return true;
436 }
437
438 int PIdx = MI->findFirstPredOperandIdx();
439 if (PIdx != -1) {
440 MachineOperand &PMO = MI->getOperand(PIdx);
441 PMO.setImm(Pred[0].getImm());
442 MI->getOperand(PIdx+1).setReg(Pred[1].getReg());
443 return true;
444 }
445 return false;
446}
447
448bool ARMBaseInstrInfo::
449SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
450 const SmallVectorImpl<MachineOperand> &Pred2) const {
451 if (Pred1.size() > 2 || Pred2.size() > 2)
452 return false;
453
454 ARMCC::CondCodes CC1 = (ARMCC::CondCodes)Pred1[0].getImm();
455 ARMCC::CondCodes CC2 = (ARMCC::CondCodes)Pred2[0].getImm();
456 if (CC1 == CC2)
457 return true;
458
459 switch (CC1) {
460 default:
461 return false;
462 case ARMCC::AL:
463 return true;
464 case ARMCC::HS:
465 return CC2 == ARMCC::HI;
466 case ARMCC::LS:
467 return CC2 == ARMCC::LO || CC2 == ARMCC::EQ;
468 case ARMCC::GE:
469 return CC2 == ARMCC::GT;
470 case ARMCC::LE:
471 return CC2 == ARMCC::LT;
472 }
473}
474
475bool ARMBaseInstrInfo::DefinesPredicate(MachineInstr *MI,
476 std::vector<MachineOperand> &Pred) const {
Evan Cheng8fb90362009-08-08 03:20:32 +0000477 // FIXME: This confuses implicit_def with optional CPSR def.
David Goodwin334c2642009-07-08 16:09:28 +0000478 const TargetInstrDesc &TID = MI->getDesc();
479 if (!TID.getImplicitDefs() && !TID.hasOptionalDef())
480 return false;
481
482 bool Found = false;
483 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
484 const MachineOperand &MO = MI->getOperand(i);
485 if (MO.isReg() && MO.getReg() == ARM::CPSR) {
486 Pred.push_back(MO);
487 Found = true;
488 }
489 }
490
491 return Found;
492}
493
Evan Chengac0869d2009-11-21 06:21:52 +0000494/// isPredicable - Return true if the specified instruction can be predicated.
495/// By default, this returns true for every instruction with a
496/// PredicateOperand.
497bool ARMBaseInstrInfo::isPredicable(MachineInstr *MI) const {
498 const TargetInstrDesc &TID = MI->getDesc();
499 if (!TID.isPredicable())
500 return false;
501
502 if ((TID.TSFlags & ARMII::DomainMask) == ARMII::DomainNEON) {
503 ARMFunctionInfo *AFI =
504 MI->getParent()->getParent()->getInfo<ARMFunctionInfo>();
Evan Chengd7f08102009-11-24 08:06:15 +0000505 return AFI->isThumb2Function();
Evan Chengac0869d2009-11-21 06:21:52 +0000506 }
507 return true;
508}
David Goodwin334c2642009-07-08 16:09:28 +0000509
Chris Lattner56856b12009-12-03 06:58:32 +0000510/// FIXME: Works around a gcc miscompilation with -fstrict-aliasing.
Chandler Carruth19e57022010-10-23 08:40:19 +0000511LLVM_ATTRIBUTE_NOINLINE
David Goodwin334c2642009-07-08 16:09:28 +0000512static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
Chris Lattner56856b12009-12-03 06:58:32 +0000513 unsigned JTI);
David Goodwin334c2642009-07-08 16:09:28 +0000514static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
515 unsigned JTI) {
Chris Lattner56856b12009-12-03 06:58:32 +0000516 assert(JTI < JT.size());
David Goodwin334c2642009-07-08 16:09:28 +0000517 return JT[JTI].MBBs.size();
518}
519
520/// GetInstSize - Return the size of the specified MachineInstr.
521///
522unsigned ARMBaseInstrInfo::GetInstSizeInBytes(const MachineInstr *MI) const {
523 const MachineBasicBlock &MBB = *MI->getParent();
524 const MachineFunction *MF = MBB.getParent();
Chris Lattner33adcfb2009-08-22 21:43:10 +0000525 const MCAsmInfo *MAI = MF->getTarget().getMCAsmInfo();
David Goodwin334c2642009-07-08 16:09:28 +0000526
527 // Basic size info comes from the TSFlags field.
528 const TargetInstrDesc &TID = MI->getDesc();
Bruno Cardoso Lopes99405df2010-06-08 22:51:23 +0000529 uint64_t TSFlags = TID.TSFlags;
David Goodwin334c2642009-07-08 16:09:28 +0000530
Evan Chenga0ee8622009-07-31 22:22:22 +0000531 unsigned Opc = MI->getOpcode();
David Goodwin334c2642009-07-08 16:09:28 +0000532 switch ((TSFlags & ARMII::SizeMask) >> ARMII::SizeShift) {
533 default: {
534 // If this machine instr is an inline asm, measure it.
535 if (MI->getOpcode() == ARM::INLINEASM)
Chris Lattner33adcfb2009-08-22 21:43:10 +0000536 return getInlineAsmLength(MI->getOperand(0).getSymbolName(), *MAI);
David Goodwin334c2642009-07-08 16:09:28 +0000537 if (MI->isLabel())
538 return 0;
Evan Chenga0ee8622009-07-31 22:22:22 +0000539 switch (Opc) {
David Goodwin334c2642009-07-08 16:09:28 +0000540 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000541 llvm_unreachable("Unknown or unset size field for instr!");
Chris Lattner518bb532010-02-09 19:54:29 +0000542 case TargetOpcode::IMPLICIT_DEF:
543 case TargetOpcode::KILL:
Bill Wendling7431bea2010-07-16 22:20:36 +0000544 case TargetOpcode::PROLOG_LABEL:
Chris Lattner518bb532010-02-09 19:54:29 +0000545 case TargetOpcode::EH_LABEL:
Dale Johannesen375be772010-04-07 19:51:44 +0000546 case TargetOpcode::DBG_VALUE:
David Goodwin334c2642009-07-08 16:09:28 +0000547 return 0;
548 }
549 break;
550 }
Evan Cheng78947622009-07-24 18:20:44 +0000551 case ARMII::Size8Bytes: return 8; // ARM instruction x 2.
552 case ARMII::Size4Bytes: return 4; // ARM / Thumb2 instruction.
553 case ARMII::Size2Bytes: return 2; // Thumb1 instruction.
David Goodwin334c2642009-07-08 16:09:28 +0000554 case ARMII::SizeSpecial: {
Evan Chenga0ee8622009-07-31 22:22:22 +0000555 switch (Opc) {
Evan Cheng53519f02011-01-21 18:55:51 +0000556 case ARM::MOVi16_ga_pcrel:
557 case ARM::MOVTi16_ga_pcrel:
558 case ARM::t2MOVi16_ga_pcrel:
559 case ARM::t2MOVTi16_ga_pcrel:
Evan Cheng5de5d4b2011-01-17 08:03:18 +0000560 return 4;
Jim Grosbach3c38f962010-10-06 22:01:26 +0000561 case ARM::MOVi32imm:
562 case ARM::t2MOVi32imm:
563 return 8;
David Goodwin334c2642009-07-08 16:09:28 +0000564 case ARM::CONSTPOOL_ENTRY:
565 // If this machine instr is a constant pool entry, its size is recorded as
566 // operand #2.
567 return MI->getOperand(2).getImm();
Jim Grosbach5eb19512010-05-22 01:06:18 +0000568 case ARM::Int_eh_sjlj_longjmp:
569 return 16;
570 case ARM::tInt_eh_sjlj_longjmp:
571 return 10;
Evan Cheng78947622009-07-24 18:20:44 +0000572 case ARM::Int_eh_sjlj_setjmp:
Jim Grosbachd1007552010-04-28 20:33:09 +0000573 case ARM::Int_eh_sjlj_setjmp_nofp:
Jim Grosbach0798edd2010-05-27 23:49:24 +0000574 return 20;
Jim Grosbachd1228742009-12-01 18:10:36 +0000575 case ARM::tInt_eh_sjlj_setjmp:
Jim Grosbach5aa16842009-08-11 19:42:21 +0000576 case ARM::t2Int_eh_sjlj_setjmp:
Jim Grosbachd1007552010-04-28 20:33:09 +0000577 case ARM::t2Int_eh_sjlj_setjmp_nofp:
Jim Grosbach0798edd2010-05-27 23:49:24 +0000578 return 12;
David Goodwin334c2642009-07-08 16:09:28 +0000579 case ARM::BR_JTr:
580 case ARM::BR_JTm:
581 case ARM::BR_JTadd:
Evan Chenga0ee8622009-07-31 22:22:22 +0000582 case ARM::tBR_JTr:
Evan Chengd26b14c2009-07-31 18:28:05 +0000583 case ARM::t2BR_JT:
Jim Grosbachd092a872010-11-29 21:28:32 +0000584 case ARM::t2TBB_JT:
585 case ARM::t2TBH_JT: {
David Goodwin334c2642009-07-08 16:09:28 +0000586 // These are jumptable branches, i.e. a branch followed by an inlined
Evan Chengd26b14c2009-07-31 18:28:05 +0000587 // jumptable. The size is 4 + 4 * number of entries. For TBB, each
588 // entry is one byte; TBH two byte each.
Jim Grosbachd092a872010-11-29 21:28:32 +0000589 unsigned EntrySize = (Opc == ARM::t2TBB_JT)
590 ? 1 : ((Opc == ARM::t2TBH_JT) ? 2 : 4);
David Goodwin334c2642009-07-08 16:09:28 +0000591 unsigned NumOps = TID.getNumOperands();
592 MachineOperand JTOP =
593 MI->getOperand(NumOps - (TID.isPredicable() ? 3 : 2));
594 unsigned JTI = JTOP.getIndex();
595 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
Chris Lattnerb1e80392010-01-25 23:22:00 +0000596 assert(MJTI != 0);
David Goodwin334c2642009-07-08 16:09:28 +0000597 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
598 assert(JTI < JT.size());
599 // Thumb instructions are 2 byte aligned, but JT entries are 4 byte
600 // 4 aligned. The assembler / linker may add 2 byte padding just before
601 // the JT entries. The size does not include this padding; the
602 // constant islands pass does separate bookkeeping for it.
603 // FIXME: If we know the size of the function is less than (1 << 16) *2
604 // bytes, we can use 16-bit entries instead. Then there won't be an
605 // alignment issue.
Evan Cheng25f7cfc2009-08-01 06:13:52 +0000606 unsigned InstSize = (Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT) ? 2 : 4;
607 unsigned NumEntries = getNumJTEntries(JT, JTI);
Jim Grosbachd092a872010-11-29 21:28:32 +0000608 if (Opc == ARM::t2TBB_JT && (NumEntries & 1))
Evan Cheng25f7cfc2009-08-01 06:13:52 +0000609 // Make sure the instruction that follows TBB is 2-byte aligned.
610 // FIXME: Constant island pass should insert an "ALIGN" instruction
611 // instead.
612 ++NumEntries;
613 return NumEntries * EntrySize + InstSize;
David Goodwin334c2642009-07-08 16:09:28 +0000614 }
615 default:
616 // Otherwise, pseudo-instruction sizes are zero.
617 return 0;
618 }
619 }
620 }
621 return 0; // Not reached
622}
623
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000624void ARMBaseInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
625 MachineBasicBlock::iterator I, DebugLoc DL,
626 unsigned DestReg, unsigned SrcReg,
627 bool KillSrc) const {
628 bool GPRDest = ARM::GPRRegClass.contains(DestReg);
629 bool GPRSrc = ARM::GPRRegClass.contains(SrcReg);
Bob Wilson1665b0a2010-02-16 17:24:15 +0000630
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000631 if (GPRDest && GPRSrc) {
632 AddDefaultCC(AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::MOVr), DestReg)
633 .addReg(SrcReg, getKillRegState(KillSrc))));
634 return;
David Goodwin7bfdca02009-08-05 21:02:22 +0000635 }
David Goodwin334c2642009-07-08 16:09:28 +0000636
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +0000637 bool SPRDest = ARM::SPRRegClass.contains(DestReg);
638 bool SPRSrc = ARM::SPRRegClass.contains(SrcReg);
639
640 unsigned Opc;
641 if (SPRDest && SPRSrc)
642 Opc = ARM::VMOVS;
643 else if (GPRDest && SPRSrc)
644 Opc = ARM::VMOVRS;
645 else if (SPRDest && GPRSrc)
646 Opc = ARM::VMOVSR;
647 else if (ARM::DPRRegClass.contains(DestReg, SrcReg))
648 Opc = ARM::VMOVD;
649 else if (ARM::QPRRegClass.contains(DestReg, SrcReg))
650 Opc = ARM::VMOVQ;
651 else if (ARM::QQPRRegClass.contains(DestReg, SrcReg))
652 Opc = ARM::VMOVQQ;
653 else if (ARM::QQQQPRRegClass.contains(DestReg, SrcReg))
654 Opc = ARM::VMOVQQQQ;
655 else
656 llvm_unreachable("Impossible reg-to-reg copy");
657
658 MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc), DestReg);
659 MIB.addReg(SrcReg, getKillRegState(KillSrc));
660 if (Opc != ARM::VMOVQQ && Opc != ARM::VMOVQQQQ)
661 AddDefaultPred(MIB);
David Goodwin334c2642009-07-08 16:09:28 +0000662}
663
Evan Chengc10b5af2010-05-07 00:24:52 +0000664static const
665MachineInstrBuilder &AddDReg(MachineInstrBuilder &MIB,
666 unsigned Reg, unsigned SubIdx, unsigned State,
667 const TargetRegisterInfo *TRI) {
668 if (!SubIdx)
669 return MIB.addReg(Reg, State);
670
671 if (TargetRegisterInfo::isPhysicalRegister(Reg))
672 return MIB.addReg(TRI->getSubReg(Reg, SubIdx), State);
673 return MIB.addReg(Reg, State, SubIdx);
674}
675
David Goodwin334c2642009-07-08 16:09:28 +0000676void ARMBaseInstrInfo::
677storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
678 unsigned SrcReg, bool isKill, int FI,
Evan Cheng746ad692010-05-06 19:06:44 +0000679 const TargetRegisterClass *RC,
680 const TargetRegisterInfo *TRI) const {
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000681 DebugLoc DL;
David Goodwin334c2642009-07-08 16:09:28 +0000682 if (I != MBB.end()) DL = I->getDebugLoc();
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000683 MachineFunction &MF = *MBB.getParent();
684 MachineFrameInfo &MFI = *MF.getFrameInfo();
Jim Grosbach31bc8492009-11-08 00:27:19 +0000685 unsigned Align = MFI.getObjectAlignment(FI);
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000686
687 MachineMemOperand *MMO =
Chris Lattner59db5492010-09-21 04:39:43 +0000688 MF.getMachineMemOperand(MachinePointerInfo(
689 PseudoSourceValue::getFixedStack(FI)),
690 MachineMemOperand::MOStore,
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000691 MFI.getObjectSize(FI),
Jim Grosbach31bc8492009-11-08 00:27:19 +0000692 Align);
David Goodwin334c2642009-07-08 16:09:28 +0000693
Bob Wilson0eb0c742010-02-16 22:01:59 +0000694 // tGPR is used sometimes in ARM instructions that need to avoid using
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000695 // certain registers. Just treat it as GPR here. Likewise, rGPR.
696 if (RC == ARM::tGPRRegisterClass || RC == ARM::tcGPRRegisterClass
697 || RC == ARM::rGPRRegisterClass)
Bob Wilson0eb0c742010-02-16 22:01:59 +0000698 RC = ARM::GPRRegisterClass;
699
Bob Wilsonebe99b22010-06-18 21:32:42 +0000700 switch (RC->getID()) {
701 case ARM::GPRRegClassID:
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000702 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::STRi12))
David Goodwin334c2642009-07-08 16:09:28 +0000703 .addReg(SrcReg, getKillRegState(isKill))
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000704 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Bob Wilsonebe99b22010-06-18 21:32:42 +0000705 break;
706 case ARM::SPRRegClassID:
Evan Chengd31c5492010-05-06 01:34:11 +0000707 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRS))
708 .addReg(SrcReg, getKillRegState(isKill))
709 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Bob Wilsonebe99b22010-06-18 21:32:42 +0000710 break;
711 case ARM::DPRRegClassID:
712 case ARM::DPR_VFP2RegClassID:
713 case ARM::DPR_8RegClassID:
Jim Grosbache5165492009-11-09 00:11:35 +0000714 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRD))
David Goodwin334c2642009-07-08 16:09:28 +0000715 .addReg(SrcReg, getKillRegState(isKill))
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000716 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Bob Wilsonebe99b22010-06-18 21:32:42 +0000717 break;
718 case ARM::QPRRegClassID:
719 case ARM::QPR_VFP2RegClassID:
720 case ARM::QPR_8RegClassID:
Jim Grosbach0cfcf932010-09-08 00:26:59 +0000721 if (Align >= 16 && getRegisterInfo().needsStackRealignment(MF)) {
Bob Wilson168f3822010-09-15 01:48:05 +0000722 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1q64Pseudo))
Bob Wilsonf967ca02010-07-06 21:26:18 +0000723 .addFrameIndex(FI).addImm(16)
Evan Cheng69b9f982010-05-13 01:12:06 +0000724 .addReg(SrcReg, getKillRegState(isKill))
725 .addMemOperand(MMO));
Jim Grosbach31bc8492009-11-08 00:27:19 +0000726 } else {
Bill Wendling73fe34a2010-11-16 01:16:36 +0000727 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMQIA))
Evan Cheng69b9f982010-05-13 01:12:06 +0000728 .addReg(SrcReg, getKillRegState(isKill))
729 .addFrameIndex(FI)
Evan Cheng69b9f982010-05-13 01:12:06 +0000730 .addMemOperand(MMO));
Jim Grosbach31bc8492009-11-08 00:27:19 +0000731 }
Bob Wilsonebe99b22010-06-18 21:32:42 +0000732 break;
733 case ARM::QQPRRegClassID:
734 case ARM::QQPR_VFP2RegClassID:
Evan Cheng435d4992010-05-07 02:04:02 +0000735 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
Evan Cheng22c687b2010-05-14 02:13:41 +0000736 // FIXME: It's possible to only store part of the QQ register if the
737 // spilled def has a sub-register index.
Bob Wilson168f3822010-09-15 01:48:05 +0000738 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1d64QPseudo))
739 .addFrameIndex(FI).addImm(16)
740 .addReg(SrcReg, getKillRegState(isKill))
741 .addMemOperand(MMO));
Evan Cheng435d4992010-05-07 02:04:02 +0000742 } else {
743 MachineInstrBuilder MIB =
Bill Wendling73fe34a2010-11-16 01:16:36 +0000744 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
745 .addFrameIndex(FI))
Evan Cheng435d4992010-05-07 02:04:02 +0000746 .addMemOperand(MMO);
Jakob Stoklund Olesen558661d2010-05-24 16:54:32 +0000747 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
748 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
749 MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
750 AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
Evan Cheng435d4992010-05-07 02:04:02 +0000751 }
Bob Wilsonebe99b22010-06-18 21:32:42 +0000752 break;
753 case ARM::QQQQPRRegClassID: {
Evan Cheng22c687b2010-05-14 02:13:41 +0000754 MachineInstrBuilder MIB =
Bill Wendling73fe34a2010-11-16 01:16:36 +0000755 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
756 .addFrameIndex(FI))
Evan Cheng22c687b2010-05-14 02:13:41 +0000757 .addMemOperand(MMO);
Jakob Stoklund Olesen558661d2010-05-24 16:54:32 +0000758 MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
759 MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
760 MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
761 MIB = AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
762 MIB = AddDReg(MIB, SrcReg, ARM::dsub_4, 0, TRI);
763 MIB = AddDReg(MIB, SrcReg, ARM::dsub_5, 0, TRI);
764 MIB = AddDReg(MIB, SrcReg, ARM::dsub_6, 0, TRI);
765 AddDReg(MIB, SrcReg, ARM::dsub_7, 0, TRI);
Bob Wilsonebe99b22010-06-18 21:32:42 +0000766 break;
767 }
768 default:
769 llvm_unreachable("Unknown regclass!");
David Goodwin334c2642009-07-08 16:09:28 +0000770 }
771}
772
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000773unsigned
774ARMBaseInstrInfo::isStoreToStackSlot(const MachineInstr *MI,
775 int &FrameIndex) const {
776 switch (MI->getOpcode()) {
777 default: break;
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000778 case ARM::STRrs:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000779 case ARM::t2STRs: // FIXME: don't use t2STRs to access frame.
780 if (MI->getOperand(1).isFI() &&
781 MI->getOperand(2).isReg() &&
782 MI->getOperand(3).isImm() &&
783 MI->getOperand(2).getReg() == 0 &&
784 MI->getOperand(3).getImm() == 0) {
785 FrameIndex = MI->getOperand(1).getIndex();
786 return MI->getOperand(0).getReg();
787 }
788 break;
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000789 case ARM::STRi12:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000790 case ARM::t2STRi12:
791 case ARM::tSpill:
792 case ARM::VSTRD:
793 case ARM::VSTRS:
794 if (MI->getOperand(1).isFI() &&
795 MI->getOperand(2).isImm() &&
796 MI->getOperand(2).getImm() == 0) {
797 FrameIndex = MI->getOperand(1).getIndex();
798 return MI->getOperand(0).getReg();
799 }
800 break;
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +0000801 case ARM::VST1q64Pseudo:
802 if (MI->getOperand(0).isFI() &&
803 MI->getOperand(2).getSubReg() == 0) {
804 FrameIndex = MI->getOperand(0).getIndex();
805 return MI->getOperand(2).getReg();
806 }
Jakob Stoklund Olesen31bbc512010-09-15 21:40:09 +0000807 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +0000808 case ARM::VSTMQIA:
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +0000809 if (MI->getOperand(1).isFI() &&
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +0000810 MI->getOperand(0).getSubReg() == 0) {
811 FrameIndex = MI->getOperand(1).getIndex();
812 return MI->getOperand(0).getReg();
813 }
814 break;
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000815 }
816
817 return 0;
818}
819
David Goodwin334c2642009-07-08 16:09:28 +0000820void ARMBaseInstrInfo::
821loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
822 unsigned DestReg, int FI,
Evan Cheng746ad692010-05-06 19:06:44 +0000823 const TargetRegisterClass *RC,
824 const TargetRegisterInfo *TRI) const {
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000825 DebugLoc DL;
David Goodwin334c2642009-07-08 16:09:28 +0000826 if (I != MBB.end()) DL = I->getDebugLoc();
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000827 MachineFunction &MF = *MBB.getParent();
828 MachineFrameInfo &MFI = *MF.getFrameInfo();
Jim Grosbach31bc8492009-11-08 00:27:19 +0000829 unsigned Align = MFI.getObjectAlignment(FI);
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000830 MachineMemOperand *MMO =
Chris Lattner59db5492010-09-21 04:39:43 +0000831 MF.getMachineMemOperand(
832 MachinePointerInfo(PseudoSourceValue::getFixedStack(FI)),
833 MachineMemOperand::MOLoad,
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000834 MFI.getObjectSize(FI),
Jim Grosbach31bc8492009-11-08 00:27:19 +0000835 Align);
David Goodwin334c2642009-07-08 16:09:28 +0000836
Bob Wilson0eb0c742010-02-16 22:01:59 +0000837 // tGPR is used sometimes in ARM instructions that need to avoid using
838 // certain registers. Just treat it as GPR here.
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000839 if (RC == ARM::tGPRRegisterClass || RC == ARM::tcGPRRegisterClass
840 || RC == ARM::rGPRRegisterClass)
Bob Wilson0eb0c742010-02-16 22:01:59 +0000841 RC = ARM::GPRRegisterClass;
842
Bob Wilsonebe99b22010-06-18 21:32:42 +0000843 switch (RC->getID()) {
844 case ARM::GPRRegClassID:
Jim Grosbach3e556122010-10-26 22:37:02 +0000845 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::LDRi12), DestReg)
846 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Bob Wilsonebe99b22010-06-18 21:32:42 +0000847 break;
848 case ARM::SPRRegClassID:
Evan Chengd31c5492010-05-06 01:34:11 +0000849 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRS), DestReg)
850 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Bob Wilsonebe99b22010-06-18 21:32:42 +0000851 break;
852 case ARM::DPRRegClassID:
853 case ARM::DPR_VFP2RegClassID:
854 case ARM::DPR_8RegClassID:
Jim Grosbache5165492009-11-09 00:11:35 +0000855 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRD), DestReg)
Anton Korobeynikov249fb332009-10-07 00:06:35 +0000856 .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
Bob Wilsonebe99b22010-06-18 21:32:42 +0000857 break;
858 case ARM::QPRRegClassID:
859 case ARM::QPR_VFP2RegClassID:
860 case ARM::QPR_8RegClassID:
Jim Grosbach0cfcf932010-09-08 00:26:59 +0000861 if (Align >= 16 && getRegisterInfo().needsStackRealignment(MF)) {
Bob Wilson168f3822010-09-15 01:48:05 +0000862 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1q64Pseudo), DestReg)
Bob Wilsonf967ca02010-07-06 21:26:18 +0000863 .addFrameIndex(FI).addImm(16)
Evan Cheng69b9f982010-05-13 01:12:06 +0000864 .addMemOperand(MMO));
Jim Grosbach31bc8492009-11-08 00:27:19 +0000865 } else {
Bill Wendling73fe34a2010-11-16 01:16:36 +0000866 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMQIA), DestReg)
Evan Cheng69b9f982010-05-13 01:12:06 +0000867 .addFrameIndex(FI)
Evan Cheng69b9f982010-05-13 01:12:06 +0000868 .addMemOperand(MMO));
Jim Grosbach31bc8492009-11-08 00:27:19 +0000869 }
Bob Wilsonebe99b22010-06-18 21:32:42 +0000870 break;
871 case ARM::QQPRRegClassID:
872 case ARM::QQPR_VFP2RegClassID:
Evan Cheng435d4992010-05-07 02:04:02 +0000873 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
Bob Wilson168f3822010-09-15 01:48:05 +0000874 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1d64QPseudo), DestReg)
875 .addFrameIndex(FI).addImm(16)
876 .addMemOperand(MMO));
Evan Cheng435d4992010-05-07 02:04:02 +0000877 } else {
878 MachineInstrBuilder MIB =
Bill Wendling73fe34a2010-11-16 01:16:36 +0000879 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
880 .addFrameIndex(FI))
Evan Cheng435d4992010-05-07 02:04:02 +0000881 .addMemOperand(MMO);
Jakob Stoklund Olesen558661d2010-05-24 16:54:32 +0000882 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::Define, TRI);
883 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::Define, TRI);
884 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::Define, TRI);
885 AddDReg(MIB, DestReg, ARM::dsub_3, RegState::Define, TRI);
Evan Cheng435d4992010-05-07 02:04:02 +0000886 }
Bob Wilsonebe99b22010-06-18 21:32:42 +0000887 break;
888 case ARM::QQQQPRRegClassID: {
889 MachineInstrBuilder MIB =
Bill Wendling73fe34a2010-11-16 01:16:36 +0000890 AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
891 .addFrameIndex(FI))
Bob Wilsonebe99b22010-06-18 21:32:42 +0000892 .addMemOperand(MMO);
893 MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::Define, TRI);
894 MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::Define, TRI);
895 MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::Define, TRI);
896 MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::Define, TRI);
897 MIB = AddDReg(MIB, DestReg, ARM::dsub_4, RegState::Define, TRI);
898 MIB = AddDReg(MIB, DestReg, ARM::dsub_5, RegState::Define, TRI);
899 MIB = AddDReg(MIB, DestReg, ARM::dsub_6, RegState::Define, TRI);
900 AddDReg(MIB, DestReg, ARM::dsub_7, RegState::Define, TRI);
901 break;
902 }
903 default:
904 llvm_unreachable("Unknown regclass!");
David Goodwin334c2642009-07-08 16:09:28 +0000905 }
906}
907
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000908unsigned
909ARMBaseInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
910 int &FrameIndex) const {
911 switch (MI->getOpcode()) {
912 default: break;
Jim Grosbach3e556122010-10-26 22:37:02 +0000913 case ARM::LDRrs:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000914 case ARM::t2LDRs: // FIXME: don't use t2LDRs to access frame.
915 if (MI->getOperand(1).isFI() &&
916 MI->getOperand(2).isReg() &&
917 MI->getOperand(3).isImm() &&
918 MI->getOperand(2).getReg() == 0 &&
919 MI->getOperand(3).getImm() == 0) {
920 FrameIndex = MI->getOperand(1).getIndex();
921 return MI->getOperand(0).getReg();
922 }
923 break;
Jim Grosbach3e556122010-10-26 22:37:02 +0000924 case ARM::LDRi12:
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000925 case ARM::t2LDRi12:
926 case ARM::tRestore:
927 case ARM::VLDRD:
928 case ARM::VLDRS:
929 if (MI->getOperand(1).isFI() &&
930 MI->getOperand(2).isImm() &&
931 MI->getOperand(2).getImm() == 0) {
932 FrameIndex = MI->getOperand(1).getIndex();
933 return MI->getOperand(0).getReg();
934 }
935 break;
Jakob Stoklund Olesend64816a2010-09-15 17:27:09 +0000936 case ARM::VLD1q64Pseudo:
937 if (MI->getOperand(1).isFI() &&
938 MI->getOperand(0).getSubReg() == 0) {
939 FrameIndex = MI->getOperand(1).getIndex();
940 return MI->getOperand(0).getReg();
941 }
942 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +0000943 case ARM::VLDMQIA:
Jakob Stoklund Olesen06f264e2010-09-15 21:40:11 +0000944 if (MI->getOperand(1).isFI() &&
Jakob Stoklund Olesen06f264e2010-09-15 21:40:11 +0000945 MI->getOperand(0).getSubReg() == 0) {
946 FrameIndex = MI->getOperand(1).getIndex();
947 return MI->getOperand(0).getReg();
948 }
949 break;
Jakob Stoklund Olesen34327852010-09-15 16:36:26 +0000950 }
951
952 return 0;
953}
954
Evan Cheng62b50652010-04-26 07:39:25 +0000955MachineInstr*
956ARMBaseInstrInfo::emitFrameIndexDebugValue(MachineFunction &MF,
Evan Cheng8601a3d2010-04-29 01:13:30 +0000957 int FrameIx, uint64_t Offset,
Evan Cheng62b50652010-04-26 07:39:25 +0000958 const MDNode *MDPtr,
959 DebugLoc DL) const {
960 MachineInstrBuilder MIB = BuildMI(MF, DL, get(ARM::DBG_VALUE))
961 .addFrameIndex(FrameIx).addImm(0).addImm(Offset).addMetadata(MDPtr);
962 return &*MIB;
963}
964
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +0000965/// Create a copy of a const pool value. Update CPI to the new index and return
966/// the label UID.
967static unsigned duplicateCPV(MachineFunction &MF, unsigned &CPI) {
968 MachineConstantPool *MCP = MF.getConstantPool();
969 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
970
971 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI];
972 assert(MCPE.isMachineConstantPoolEntry() &&
973 "Expecting a machine constantpool entry!");
974 ARMConstantPoolValue *ACPV =
975 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
976
Evan Cheng5de5d4b2011-01-17 08:03:18 +0000977 unsigned PCLabelId = AFI->createPICLabelUId();
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +0000978 ARMConstantPoolValue *NewCPV = 0;
Jim Grosbach51f5b672010-09-10 21:38:22 +0000979 // FIXME: The below assumes PIC relocation model and that the function
980 // is Thumb mode (t1 or t2). PCAdjustment would be 8 for ARM mode PIC, and
981 // zero for non-PIC in ARM or Thumb. The callers are all of thumb LDR
982 // instructions, so that's probably OK, but is PIC always correct when
983 // we get here?
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +0000984 if (ACPV->isGlobalValue())
985 NewCPV = new ARMConstantPoolValue(ACPV->getGV(), PCLabelId,
986 ARMCP::CPValue, 4);
987 else if (ACPV->isExtSymbol())
988 NewCPV = new ARMConstantPoolValue(MF.getFunction()->getContext(),
989 ACPV->getSymbol(), PCLabelId, 4);
990 else if (ACPV->isBlockAddress())
991 NewCPV = new ARMConstantPoolValue(ACPV->getBlockAddress(), PCLabelId,
992 ARMCP::CPBlockAddress, 4);
Jim Grosbach51f5b672010-09-10 21:38:22 +0000993 else if (ACPV->isLSDA())
994 NewCPV = new ARMConstantPoolValue(MF.getFunction(), PCLabelId,
995 ARMCP::CPLSDA, 4);
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +0000996 else
997 llvm_unreachable("Unexpected ARM constantpool value type!!");
998 CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlignment());
999 return PCLabelId;
1000}
1001
Evan Chengfdc83402009-11-08 00:15:23 +00001002void ARMBaseInstrInfo::
1003reMaterialize(MachineBasicBlock &MBB,
1004 MachineBasicBlock::iterator I,
1005 unsigned DestReg, unsigned SubIdx,
Evan Chengd57cdd52009-11-14 02:55:43 +00001006 const MachineInstr *Orig,
Jakob Stoklund Olesen9edf7de2010-06-02 22:47:25 +00001007 const TargetRegisterInfo &TRI) const {
Evan Chengfdc83402009-11-08 00:15:23 +00001008 unsigned Opcode = Orig->getOpcode();
1009 switch (Opcode) {
1010 default: {
1011 MachineInstr *MI = MBB.getParent()->CloneMachineInstr(Orig);
Jakob Stoklund Olesen9edf7de2010-06-02 22:47:25 +00001012 MI->substituteRegister(Orig->getOperand(0).getReg(), DestReg, SubIdx, TRI);
Evan Chengfdc83402009-11-08 00:15:23 +00001013 MBB.insert(I, MI);
1014 break;
1015 }
1016 case ARM::tLDRpci_pic:
1017 case ARM::t2LDRpci_pic: {
1018 MachineFunction &MF = *MBB.getParent();
Evan Chengfdc83402009-11-08 00:15:23 +00001019 unsigned CPI = Orig->getOperand(1).getIndex();
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001020 unsigned PCLabelId = duplicateCPV(MF, CPI);
Evan Chengfdc83402009-11-08 00:15:23 +00001021 MachineInstrBuilder MIB = BuildMI(MBB, I, Orig->getDebugLoc(), get(Opcode),
1022 DestReg)
1023 .addConstantPoolIndex(CPI).addImm(PCLabelId);
1024 (*MIB).setMemRefs(Orig->memoperands_begin(), Orig->memoperands_end());
1025 break;
1026 }
1027 }
Evan Chengfdc83402009-11-08 00:15:23 +00001028}
1029
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +00001030MachineInstr *
1031ARMBaseInstrInfo::duplicate(MachineInstr *Orig, MachineFunction &MF) const {
1032 MachineInstr *MI = TargetInstrInfoImpl::duplicate(Orig, MF);
1033 switch(Orig->getOpcode()) {
1034 case ARM::tLDRpci_pic:
1035 case ARM::t2LDRpci_pic: {
1036 unsigned CPI = Orig->getOperand(1).getIndex();
1037 unsigned PCLabelId = duplicateCPV(MF, CPI);
1038 Orig->getOperand(1).setIndex(CPI);
1039 Orig->getOperand(2).setImm(PCLabelId);
1040 break;
1041 }
1042 }
1043 return MI;
1044}
1045
Evan Cheng506049f2010-03-03 01:44:33 +00001046bool ARMBaseInstrInfo::produceSameValue(const MachineInstr *MI0,
Evan Cheng9fe20092011-01-20 08:34:58 +00001047 const MachineInstr *MI1,
1048 const MachineRegisterInfo *MRI) const {
Evan Chengd457e6e2009-11-07 04:04:34 +00001049 int Opcode = MI0->getOpcode();
Evan Chengd7e3cc82011-01-20 23:55:07 +00001050 if (Opcode == ARM::t2LDRpci ||
Evan Cheng9b824252009-11-20 02:10:27 +00001051 Opcode == ARM::t2LDRpci_pic ||
1052 Opcode == ARM::tLDRpci ||
Evan Cheng9fe20092011-01-20 08:34:58 +00001053 Opcode == ARM::tLDRpci_pic ||
Evan Cheng53519f02011-01-21 18:55:51 +00001054 Opcode == ARM::MOV_ga_dyn ||
1055 Opcode == ARM::MOV_ga_pcrel ||
1056 Opcode == ARM::MOV_ga_pcrel_ldr ||
1057 Opcode == ARM::t2MOV_ga_dyn ||
1058 Opcode == ARM::t2MOV_ga_pcrel) {
Evan Chengd457e6e2009-11-07 04:04:34 +00001059 if (MI1->getOpcode() != Opcode)
1060 return false;
1061 if (MI0->getNumOperands() != MI1->getNumOperands())
1062 return false;
1063
1064 const MachineOperand &MO0 = MI0->getOperand(1);
1065 const MachineOperand &MO1 = MI1->getOperand(1);
1066 if (MO0.getOffset() != MO1.getOffset())
1067 return false;
1068
Evan Cheng53519f02011-01-21 18:55:51 +00001069 if (Opcode == ARM::MOV_ga_dyn ||
1070 Opcode == ARM::MOV_ga_pcrel ||
1071 Opcode == ARM::MOV_ga_pcrel_ldr ||
1072 Opcode == ARM::t2MOV_ga_dyn ||
1073 Opcode == ARM::t2MOV_ga_pcrel)
Evan Cheng9fe20092011-01-20 08:34:58 +00001074 // Ignore the PC labels.
1075 return MO0.getGlobal() == MO1.getGlobal();
1076
Evan Chengd457e6e2009-11-07 04:04:34 +00001077 const MachineFunction *MF = MI0->getParent()->getParent();
1078 const MachineConstantPool *MCP = MF->getConstantPool();
1079 int CPI0 = MO0.getIndex();
1080 int CPI1 = MO1.getIndex();
1081 const MachineConstantPoolEntry &MCPE0 = MCP->getConstants()[CPI0];
1082 const MachineConstantPoolEntry &MCPE1 = MCP->getConstants()[CPI1];
Evan Chengd7006172011-03-24 06:20:03 +00001083 bool isARMCP0 = MCPE0.isMachineConstantPoolEntry();
1084 bool isARMCP1 = MCPE1.isMachineConstantPoolEntry();
1085 if (isARMCP0 && isARMCP1) {
1086 ARMConstantPoolValue *ACPV0 =
1087 static_cast<ARMConstantPoolValue*>(MCPE0.Val.MachineCPVal);
1088 ARMConstantPoolValue *ACPV1 =
1089 static_cast<ARMConstantPoolValue*>(MCPE1.Val.MachineCPVal);
1090 return ACPV0->hasSameValue(ACPV1);
1091 } else if (!isARMCP0 && !isARMCP1) {
1092 return MCPE0.Val.ConstVal == MCPE1.Val.ConstVal;
1093 }
1094 return false;
Evan Cheng9fe20092011-01-20 08:34:58 +00001095 } else if (Opcode == ARM::PICLDR) {
1096 if (MI1->getOpcode() != Opcode)
1097 return false;
1098 if (MI0->getNumOperands() != MI1->getNumOperands())
1099 return false;
1100
1101 unsigned Addr0 = MI0->getOperand(1).getReg();
1102 unsigned Addr1 = MI1->getOperand(1).getReg();
1103 if (Addr0 != Addr1) {
1104 if (!MRI ||
1105 !TargetRegisterInfo::isVirtualRegister(Addr0) ||
1106 !TargetRegisterInfo::isVirtualRegister(Addr1))
1107 return false;
1108
1109 // This assumes SSA form.
1110 MachineInstr *Def0 = MRI->getVRegDef(Addr0);
1111 MachineInstr *Def1 = MRI->getVRegDef(Addr1);
1112 // Check if the loaded value, e.g. a constantpool of a global address, are
1113 // the same.
1114 if (!produceSameValue(Def0, Def1, MRI))
1115 return false;
1116 }
1117
1118 for (unsigned i = 3, e = MI0->getNumOperands(); i != e; ++i) {
1119 // %vreg12<def> = PICLDR %vreg11, 0, pred:14, pred:%noreg
1120 const MachineOperand &MO0 = MI0->getOperand(i);
1121 const MachineOperand &MO1 = MI1->getOperand(i);
1122 if (!MO0.isIdenticalTo(MO1))
1123 return false;
1124 }
1125 return true;
Evan Chengd457e6e2009-11-07 04:04:34 +00001126 }
1127
Evan Cheng506049f2010-03-03 01:44:33 +00001128 return MI0->isIdenticalTo(MI1, MachineInstr::IgnoreVRegDefs);
Evan Chengd457e6e2009-11-07 04:04:34 +00001129}
1130
Bill Wendling4b722102010-06-23 23:00:16 +00001131/// areLoadsFromSameBasePtr - This is used by the pre-regalloc scheduler to
1132/// determine if two loads are loading from the same base address. It should
1133/// only return true if the base pointers are the same and the only differences
1134/// between the two addresses is the offset. It also returns the offsets by
1135/// reference.
1136bool ARMBaseInstrInfo::areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
1137 int64_t &Offset1,
1138 int64_t &Offset2) const {
1139 // Don't worry about Thumb: just ARM and Thumb2.
1140 if (Subtarget.isThumb1Only()) return false;
1141
1142 if (!Load1->isMachineOpcode() || !Load2->isMachineOpcode())
1143 return false;
1144
1145 switch (Load1->getMachineOpcode()) {
1146 default:
1147 return false;
Jim Grosbach3e556122010-10-26 22:37:02 +00001148 case ARM::LDRi12:
Jim Grosbachc1d30212010-10-27 00:19:44 +00001149 case ARM::LDRBi12:
Bill Wendling4b722102010-06-23 23:00:16 +00001150 case ARM::LDRD:
1151 case ARM::LDRH:
1152 case ARM::LDRSB:
1153 case ARM::LDRSH:
1154 case ARM::VLDRD:
1155 case ARM::VLDRS:
1156 case ARM::t2LDRi8:
1157 case ARM::t2LDRDi8:
1158 case ARM::t2LDRSHi8:
1159 case ARM::t2LDRi12:
1160 case ARM::t2LDRSHi12:
1161 break;
1162 }
1163
1164 switch (Load2->getMachineOpcode()) {
1165 default:
1166 return false;
Jim Grosbach3e556122010-10-26 22:37:02 +00001167 case ARM::LDRi12:
Jim Grosbachc1d30212010-10-27 00:19:44 +00001168 case ARM::LDRBi12:
Bill Wendling4b722102010-06-23 23:00:16 +00001169 case ARM::LDRD:
1170 case ARM::LDRH:
1171 case ARM::LDRSB:
1172 case ARM::LDRSH:
1173 case ARM::VLDRD:
1174 case ARM::VLDRS:
1175 case ARM::t2LDRi8:
1176 case ARM::t2LDRDi8:
1177 case ARM::t2LDRSHi8:
1178 case ARM::t2LDRi12:
1179 case ARM::t2LDRSHi12:
1180 break;
1181 }
1182
1183 // Check if base addresses and chain operands match.
1184 if (Load1->getOperand(0) != Load2->getOperand(0) ||
1185 Load1->getOperand(4) != Load2->getOperand(4))
1186 return false;
1187
1188 // Index should be Reg0.
1189 if (Load1->getOperand(3) != Load2->getOperand(3))
1190 return false;
1191
1192 // Determine the offsets.
1193 if (isa<ConstantSDNode>(Load1->getOperand(1)) &&
1194 isa<ConstantSDNode>(Load2->getOperand(1))) {
1195 Offset1 = cast<ConstantSDNode>(Load1->getOperand(1))->getSExtValue();
1196 Offset2 = cast<ConstantSDNode>(Load2->getOperand(1))->getSExtValue();
1197 return true;
1198 }
1199
1200 return false;
1201}
1202
1203/// shouldScheduleLoadsNear - This is a used by the pre-regalloc scheduler to
1204/// determine (in conjuction with areLoadsFromSameBasePtr) if two loads should
1205/// be scheduled togther. On some targets if two loads are loading from
1206/// addresses in the same cache line, it's better if they are scheduled
1207/// together. This function takes two integers that represent the load offsets
1208/// from the common base address. It returns true if it decides it's desirable
1209/// to schedule the two loads together. "NumLoads" is the number of loads that
1210/// have already been scheduled after Load1.
1211bool ARMBaseInstrInfo::shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
1212 int64_t Offset1, int64_t Offset2,
1213 unsigned NumLoads) const {
1214 // Don't worry about Thumb: just ARM and Thumb2.
1215 if (Subtarget.isThumb1Only()) return false;
1216
1217 assert(Offset2 > Offset1);
1218
1219 if ((Offset2 - Offset1) / 8 > 64)
1220 return false;
1221
1222 if (Load1->getMachineOpcode() != Load2->getMachineOpcode())
1223 return false; // FIXME: overly conservative?
1224
1225 // Four loads in a row should be sufficient.
1226 if (NumLoads >= 3)
1227 return false;
1228
1229 return true;
1230}
1231
Evan Cheng86050dc2010-06-18 23:09:54 +00001232bool ARMBaseInstrInfo::isSchedulingBoundary(const MachineInstr *MI,
1233 const MachineBasicBlock *MBB,
1234 const MachineFunction &MF) const {
Jim Grosbach57bb3942010-06-25 18:43:14 +00001235 // Debug info is never a scheduling boundary. It's necessary to be explicit
1236 // due to the special treatment of IT instructions below, otherwise a
1237 // dbg_value followed by an IT will result in the IT instruction being
1238 // considered a scheduling hazard, which is wrong. It should be the actual
1239 // instruction preceding the dbg_value instruction(s), just like it is
1240 // when debug info is not present.
1241 if (MI->isDebugValue())
1242 return false;
1243
Evan Cheng86050dc2010-06-18 23:09:54 +00001244 // Terminators and labels can't be scheduled around.
1245 if (MI->getDesc().isTerminator() || MI->isLabel())
1246 return true;
1247
1248 // Treat the start of the IT block as a scheduling boundary, but schedule
1249 // t2IT along with all instructions following it.
1250 // FIXME: This is a big hammer. But the alternative is to add all potential
1251 // true and anti dependencies to IT block instructions as implicit operands
1252 // to the t2IT instruction. The added compile time and complexity does not
1253 // seem worth it.
1254 MachineBasicBlock::const_iterator I = MI;
Jim Grosbach57bb3942010-06-25 18:43:14 +00001255 // Make sure to skip any dbg_value instructions
1256 while (++I != MBB->end() && I->isDebugValue())
1257 ;
1258 if (I != MBB->end() && I->getOpcode() == ARM::t2IT)
Evan Cheng86050dc2010-06-18 23:09:54 +00001259 return true;
1260
1261 // Don't attempt to schedule around any instruction that defines
1262 // a stack-oriented pointer, as it's unlikely to be profitable. This
1263 // saves compile time, because it doesn't require every single
1264 // stack slot reference to depend on the instruction that does the
1265 // modification.
1266 if (MI->definesRegister(ARM::SP))
1267 return true;
1268
1269 return false;
1270}
1271
Owen Andersonb20b8512010-09-28 18:32:13 +00001272bool ARMBaseInstrInfo::isProfitableToIfCvt(MachineBasicBlock &MBB,
Cameron Zwarich5876db72011-04-13 06:39:16 +00001273 unsigned NumCycles,
Evan Cheng8239daf2010-11-03 00:45:17 +00001274 unsigned ExtraPredCycles,
Owen Andersone3cc84a2010-10-01 22:45:50 +00001275 float Probability,
1276 float Confidence) const {
Cameron Zwarich5876db72011-04-13 06:39:16 +00001277 if (!NumCycles)
Evan Cheng13151432010-06-25 22:42:03 +00001278 return false;
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001279
Owen Andersonb20b8512010-09-28 18:32:13 +00001280 // Attempt to estimate the relative costs of predication versus branching.
Cameron Zwarich5876db72011-04-13 06:39:16 +00001281 float UnpredCost = Probability * NumCycles;
Owen Anderson654d5442010-09-28 21:57:50 +00001282 UnpredCost += 1.0; // The branch itself
Owen Andersone3cc84a2010-10-01 22:45:50 +00001283 UnpredCost += (1.0 - Confidence) * Subtarget.getMispredictionPenalty();
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001284
Cameron Zwarich5876db72011-04-13 06:39:16 +00001285 return (float)(NumCycles + ExtraPredCycles) < UnpredCost;
Evan Cheng13151432010-06-25 22:42:03 +00001286}
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001287
Evan Cheng13151432010-06-25 22:42:03 +00001288bool ARMBaseInstrInfo::
Evan Cheng8239daf2010-11-03 00:45:17 +00001289isProfitableToIfCvt(MachineBasicBlock &TMBB,
1290 unsigned TCycles, unsigned TExtra,
1291 MachineBasicBlock &FMBB,
1292 unsigned FCycles, unsigned FExtra,
Owen Andersone3cc84a2010-10-01 22:45:50 +00001293 float Probability, float Confidence) const {
Evan Cheng8239daf2010-11-03 00:45:17 +00001294 if (!TCycles || !FCycles)
Owen Andersonb20b8512010-09-28 18:32:13 +00001295 return false;
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001296
Owen Andersonb20b8512010-09-28 18:32:13 +00001297 // Attempt to estimate the relative costs of predication versus branching.
Evan Cheng8239daf2010-11-03 00:45:17 +00001298 float UnpredCost = Probability * TCycles + (1.0 - Probability) * FCycles;
Owen Anderson654d5442010-09-28 21:57:50 +00001299 UnpredCost += 1.0; // The branch itself
Owen Andersone3cc84a2010-10-01 22:45:50 +00001300 UnpredCost += (1.0 - Confidence) * Subtarget.getMispredictionPenalty();
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001301
Evan Cheng8239daf2010-11-03 00:45:17 +00001302 return (float)(TCycles + FCycles + TExtra + FExtra) < UnpredCost;
Evan Cheng13151432010-06-25 22:42:03 +00001303}
1304
Evan Cheng8fb90362009-08-08 03:20:32 +00001305/// getInstrPredicate - If instruction is predicated, returns its predicate
1306/// condition, otherwise returns AL. It also returns the condition code
1307/// register by reference.
Evan Cheng5adb66a2009-09-28 09:14:39 +00001308ARMCC::CondCodes
1309llvm::getInstrPredicate(const MachineInstr *MI, unsigned &PredReg) {
Evan Cheng8fb90362009-08-08 03:20:32 +00001310 int PIdx = MI->findFirstPredOperandIdx();
1311 if (PIdx == -1) {
1312 PredReg = 0;
1313 return ARMCC::AL;
1314 }
1315
1316 PredReg = MI->getOperand(PIdx+1).getReg();
1317 return (ARMCC::CondCodes)MI->getOperand(PIdx).getImm();
1318}
1319
1320
Evan Cheng6495f632009-07-28 05:48:47 +00001321int llvm::getMatchingCondBranchOpcode(int Opc) {
Evan Cheng5ca53a72009-07-27 18:20:05 +00001322 if (Opc == ARM::B)
1323 return ARM::Bcc;
1324 else if (Opc == ARM::tB)
1325 return ARM::tBcc;
1326 else if (Opc == ARM::t2B)
1327 return ARM::t2Bcc;
1328
1329 llvm_unreachable("Unknown unconditional branch opcode!");
1330 return 0;
1331}
1332
Evan Cheng6495f632009-07-28 05:48:47 +00001333
1334void llvm::emitARMRegPlusImmediate(MachineBasicBlock &MBB,
1335 MachineBasicBlock::iterator &MBBI, DebugLoc dl,
1336 unsigned DestReg, unsigned BaseReg, int NumBytes,
1337 ARMCC::CondCodes Pred, unsigned PredReg,
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001338 const ARMBaseInstrInfo &TII, unsigned MIFlags) {
Evan Cheng6495f632009-07-28 05:48:47 +00001339 bool isSub = NumBytes < 0;
1340 if (isSub) NumBytes = -NumBytes;
1341
1342 while (NumBytes) {
1343 unsigned RotAmt = ARM_AM::getSOImmValRotate(NumBytes);
1344 unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt);
1345 assert(ThisVal && "Didn't extract field correctly");
1346
1347 // We will handle these bits from offset, clear them.
1348 NumBytes &= ~ThisVal;
1349
1350 assert(ARM_AM::getSOImmVal(ThisVal) != -1 && "Bit extraction didn't work?");
1351
1352 // Build the new ADD / SUB.
1353 unsigned Opc = isSub ? ARM::SUBri : ARM::ADDri;
1354 BuildMI(MBB, MBBI, dl, TII.get(Opc), DestReg)
1355 .addReg(BaseReg, RegState::Kill).addImm(ThisVal)
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001356 .addImm((unsigned)Pred).addReg(PredReg).addReg(0)
1357 .setMIFlags(MIFlags);
Evan Cheng6495f632009-07-28 05:48:47 +00001358 BaseReg = DestReg;
1359 }
1360}
1361
Evan Chengcdbb3f52009-08-27 01:23:50 +00001362bool llvm::rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
1363 unsigned FrameReg, int &Offset,
1364 const ARMBaseInstrInfo &TII) {
Evan Cheng6495f632009-07-28 05:48:47 +00001365 unsigned Opcode = MI.getOpcode();
1366 const TargetInstrDesc &Desc = MI.getDesc();
1367 unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
1368 bool isSub = false;
Jim Grosbach764ab522009-08-11 15:33:49 +00001369
Evan Cheng6495f632009-07-28 05:48:47 +00001370 // Memory operands in inline assembly always use AddrMode2.
1371 if (Opcode == ARM::INLINEASM)
1372 AddrMode = ARMII::AddrMode2;
Jim Grosbach764ab522009-08-11 15:33:49 +00001373
Evan Cheng6495f632009-07-28 05:48:47 +00001374 if (Opcode == ARM::ADDri) {
1375 Offset += MI.getOperand(FrameRegIdx+1).getImm();
1376 if (Offset == 0) {
1377 // Turn it into a move.
1378 MI.setDesc(TII.get(ARM::MOVr));
1379 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1380 MI.RemoveOperand(FrameRegIdx+1);
Evan Chengcdbb3f52009-08-27 01:23:50 +00001381 Offset = 0;
1382 return true;
Evan Cheng6495f632009-07-28 05:48:47 +00001383 } else if (Offset < 0) {
1384 Offset = -Offset;
1385 isSub = true;
1386 MI.setDesc(TII.get(ARM::SUBri));
1387 }
1388
1389 // Common case: small offset, fits into instruction.
1390 if (ARM_AM::getSOImmVal(Offset) != -1) {
1391 // Replace the FrameIndex with sp / fp
1392 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1393 MI.getOperand(FrameRegIdx+1).ChangeToImmediate(Offset);
Evan Chengcdbb3f52009-08-27 01:23:50 +00001394 Offset = 0;
1395 return true;
Evan Cheng6495f632009-07-28 05:48:47 +00001396 }
1397
1398 // Otherwise, pull as much of the immedidate into this ADDri/SUBri
1399 // as possible.
1400 unsigned RotAmt = ARM_AM::getSOImmValRotate(Offset);
1401 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xFF, RotAmt);
1402
1403 // We will handle these bits from offset, clear them.
1404 Offset &= ~ThisImmVal;
1405
1406 // Get the properly encoded SOImmVal field.
1407 assert(ARM_AM::getSOImmVal(ThisImmVal) != -1 &&
1408 "Bit extraction didn't work?");
1409 MI.getOperand(FrameRegIdx+1).ChangeToImmediate(ThisImmVal);
1410 } else {
1411 unsigned ImmIdx = 0;
1412 int InstrOffs = 0;
1413 unsigned NumBits = 0;
1414 unsigned Scale = 1;
1415 switch (AddrMode) {
Jim Grosbach3e556122010-10-26 22:37:02 +00001416 case ARMII::AddrMode_i12: {
1417 ImmIdx = FrameRegIdx + 1;
1418 InstrOffs = MI.getOperand(ImmIdx).getImm();
1419 NumBits = 12;
1420 break;
1421 }
Evan Cheng6495f632009-07-28 05:48:47 +00001422 case ARMII::AddrMode2: {
1423 ImmIdx = FrameRegIdx+2;
1424 InstrOffs = ARM_AM::getAM2Offset(MI.getOperand(ImmIdx).getImm());
1425 if (ARM_AM::getAM2Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1426 InstrOffs *= -1;
1427 NumBits = 12;
1428 break;
1429 }
1430 case ARMII::AddrMode3: {
1431 ImmIdx = FrameRegIdx+2;
1432 InstrOffs = ARM_AM::getAM3Offset(MI.getOperand(ImmIdx).getImm());
1433 if (ARM_AM::getAM3Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1434 InstrOffs *= -1;
1435 NumBits = 8;
1436 break;
1437 }
Anton Korobeynikovbaf31082009-08-08 13:35:48 +00001438 case ARMII::AddrMode4:
Jim Grosbacha4432172009-11-15 21:45:34 +00001439 case ARMII::AddrMode6:
Evan Chengcdbb3f52009-08-27 01:23:50 +00001440 // Can't fold any offset even if it's zero.
1441 return false;
Evan Cheng6495f632009-07-28 05:48:47 +00001442 case ARMII::AddrMode5: {
1443 ImmIdx = FrameRegIdx+1;
1444 InstrOffs = ARM_AM::getAM5Offset(MI.getOperand(ImmIdx).getImm());
1445 if (ARM_AM::getAM5Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1446 InstrOffs *= -1;
1447 NumBits = 8;
1448 Scale = 4;
1449 break;
1450 }
1451 default:
1452 llvm_unreachable("Unsupported addressing mode!");
1453 break;
1454 }
1455
1456 Offset += InstrOffs * Scale;
1457 assert((Offset & (Scale-1)) == 0 && "Can't encode this offset!");
1458 if (Offset < 0) {
1459 Offset = -Offset;
1460 isSub = true;
1461 }
1462
1463 // Attempt to fold address comp. if opcode has offset bits
1464 if (NumBits > 0) {
1465 // Common case: small offset, fits into instruction.
1466 MachineOperand &ImmOp = MI.getOperand(ImmIdx);
1467 int ImmedOffset = Offset / Scale;
1468 unsigned Mask = (1 << NumBits) - 1;
1469 if ((unsigned)Offset <= Mask * Scale) {
1470 // Replace the FrameIndex with sp
1471 MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
Jim Grosbach77aee8e2010-10-27 01:19:41 +00001472 // FIXME: When addrmode2 goes away, this will simplify (like the
1473 // T2 version), as the LDR.i12 versions don't need the encoding
1474 // tricks for the offset value.
1475 if (isSub) {
1476 if (AddrMode == ARMII::AddrMode_i12)
1477 ImmedOffset = -ImmedOffset;
1478 else
1479 ImmedOffset |= 1 << NumBits;
1480 }
Evan Cheng6495f632009-07-28 05:48:47 +00001481 ImmOp.ChangeToImmediate(ImmedOffset);
Evan Chengcdbb3f52009-08-27 01:23:50 +00001482 Offset = 0;
1483 return true;
Evan Cheng6495f632009-07-28 05:48:47 +00001484 }
Jim Grosbach764ab522009-08-11 15:33:49 +00001485
Evan Cheng6495f632009-07-28 05:48:47 +00001486 // Otherwise, it didn't fit. Pull in what we can to simplify the immed.
1487 ImmedOffset = ImmedOffset & Mask;
Jim Grosbach063efbf2010-10-27 16:50:31 +00001488 if (isSub) {
1489 if (AddrMode == ARMII::AddrMode_i12)
1490 ImmedOffset = -ImmedOffset;
1491 else
1492 ImmedOffset |= 1 << NumBits;
1493 }
Evan Cheng6495f632009-07-28 05:48:47 +00001494 ImmOp.ChangeToImmediate(ImmedOffset);
1495 Offset &= ~(Mask*Scale);
1496 }
1497 }
1498
Evan Chengcdbb3f52009-08-27 01:23:50 +00001499 Offset = (isSub) ? -Offset : Offset;
1500 return Offset == 0;
Evan Cheng6495f632009-07-28 05:48:47 +00001501}
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001502
1503bool ARMBaseInstrInfo::
Eric Christophera99c3e92010-09-28 04:18:29 +00001504AnalyzeCompare(const MachineInstr *MI, unsigned &SrcReg, int &CmpMask,
1505 int &CmpValue) const {
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001506 switch (MI->getOpcode()) {
1507 default: break;
Bill Wendling38ae9972010-08-11 00:23:00 +00001508 case ARM::CMPri:
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001509 case ARM::t2CMPri:
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001510 SrcReg = MI->getOperand(0).getReg();
Gabor Greif04ac81d2010-09-21 12:01:15 +00001511 CmpMask = ~0;
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001512 CmpValue = MI->getOperand(1).getImm();
1513 return true;
Gabor Greif04ac81d2010-09-21 12:01:15 +00001514 case ARM::TSTri:
1515 case ARM::t2TSTri:
1516 SrcReg = MI->getOperand(0).getReg();
1517 CmpMask = MI->getOperand(1).getImm();
1518 CmpValue = 0;
1519 return true;
1520 }
1521
1522 return false;
1523}
1524
Gabor Greif05642a32010-09-29 10:12:08 +00001525/// isSuitableForMask - Identify a suitable 'and' instruction that
1526/// operates on the given source register and applies the same mask
1527/// as a 'tst' instruction. Provide a limited look-through for copies.
1528/// When successful, MI will hold the found instruction.
1529static bool isSuitableForMask(MachineInstr *&MI, unsigned SrcReg,
Gabor Greif8ff9bb12010-09-21 13:30:57 +00001530 int CmpMask, bool CommonUse) {
Gabor Greif05642a32010-09-29 10:12:08 +00001531 switch (MI->getOpcode()) {
Gabor Greif04ac81d2010-09-21 12:01:15 +00001532 case ARM::ANDri:
1533 case ARM::t2ANDri:
Gabor Greif05642a32010-09-29 10:12:08 +00001534 if (CmpMask != MI->getOperand(2).getImm())
Gabor Greif8ff9bb12010-09-21 13:30:57 +00001535 return false;
Gabor Greif05642a32010-09-29 10:12:08 +00001536 if (SrcReg == MI->getOperand(CommonUse ? 1 : 0).getReg())
Gabor Greif04ac81d2010-09-21 12:01:15 +00001537 return true;
1538 break;
Gabor Greif05642a32010-09-29 10:12:08 +00001539 case ARM::COPY: {
1540 // Walk down one instruction which is potentially an 'and'.
1541 const MachineInstr &Copy = *MI;
Michael J. Spencerf000a7a2010-10-05 06:00:43 +00001542 MachineBasicBlock::iterator AND(
1543 llvm::next(MachineBasicBlock::iterator(MI)));
Gabor Greif05642a32010-09-29 10:12:08 +00001544 if (AND == MI->getParent()->end()) return false;
1545 MI = AND;
1546 return isSuitableForMask(MI, Copy.getOperand(0).getReg(),
1547 CmpMask, true);
1548 }
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001549 }
1550
1551 return false;
1552}
1553
Bill Wendlinga6556862010-09-11 00:13:50 +00001554/// OptimizeCompareInstr - Convert the instruction supplying the argument to the
Evan Chengeb96a2f2010-11-15 21:20:45 +00001555/// comparison into one that sets the zero bit in the flags register.
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001556bool ARMBaseInstrInfo::
Gabor Greif04ac81d2010-09-21 12:01:15 +00001557OptimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, int CmpMask,
Evan Chengeb96a2f2010-11-15 21:20:45 +00001558 int CmpValue, const MachineRegisterInfo *MRI) const {
Bill Wendling36656612010-09-10 23:46:12 +00001559 if (CmpValue != 0)
Bill Wendling92ad57f2010-09-10 23:34:19 +00001560 return false;
1561
Bill Wendlingb41ee962010-10-18 21:22:31 +00001562 MachineRegisterInfo::def_iterator DI = MRI->def_begin(SrcReg);
1563 if (llvm::next(DI) != MRI->def_end())
Bill Wendling92ad57f2010-09-10 23:34:19 +00001564 // Only support one definition.
1565 return false;
1566
1567 MachineInstr *MI = &*DI;
1568
Gabor Greif04ac81d2010-09-21 12:01:15 +00001569 // Masked compares sometimes use the same register as the corresponding 'and'.
1570 if (CmpMask != ~0) {
Gabor Greif05642a32010-09-29 10:12:08 +00001571 if (!isSuitableForMask(MI, SrcReg, CmpMask, false)) {
Gabor Greif04ac81d2010-09-21 12:01:15 +00001572 MI = 0;
Bill Wendlingb41ee962010-10-18 21:22:31 +00001573 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(SrcReg),
1574 UE = MRI->use_end(); UI != UE; ++UI) {
Gabor Greif04ac81d2010-09-21 12:01:15 +00001575 if (UI->getParent() != CmpInstr->getParent()) continue;
Gabor Greif05642a32010-09-29 10:12:08 +00001576 MachineInstr *PotentialAND = &*UI;
Gabor Greif8ff9bb12010-09-21 13:30:57 +00001577 if (!isSuitableForMask(PotentialAND, SrcReg, CmpMask, true))
Gabor Greif04ac81d2010-09-21 12:01:15 +00001578 continue;
Gabor Greif05642a32010-09-29 10:12:08 +00001579 MI = PotentialAND;
Gabor Greif04ac81d2010-09-21 12:01:15 +00001580 break;
1581 }
1582 if (!MI) return false;
1583 }
1584 }
1585
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001586 // Conservatively refuse to convert an instruction which isn't in the same BB
1587 // as the comparison.
1588 if (MI->getParent() != CmpInstr->getParent())
1589 return false;
1590
1591 // Check that CPSR isn't set between the comparison instruction and the one we
1592 // want to change.
Evan Cheng691e64a2010-09-21 23:49:07 +00001593 MachineBasicBlock::const_iterator I = CmpInstr, E = MI,
1594 B = MI->getParent()->begin();
Bill Wendling0aa38b92010-10-09 00:03:48 +00001595
1596 // Early exit if CmpInstr is at the beginning of the BB.
1597 if (I == B) return false;
1598
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001599 --I;
1600 for (; I != E; --I) {
1601 const MachineInstr &Instr = *I;
1602
1603 for (unsigned IO = 0, EO = Instr.getNumOperands(); IO != EO; ++IO) {
1604 const MachineOperand &MO = Instr.getOperand(IO);
Bill Wendling40a5eb12010-11-01 20:41:43 +00001605 if (!MO.isReg()) continue;
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001606
Bill Wendling40a5eb12010-11-01 20:41:43 +00001607 // This instruction modifies or uses CPSR after the one we want to
1608 // change. We can't do this transformation.
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001609 if (MO.getReg() == ARM::CPSR)
1610 return false;
1611 }
Evan Cheng691e64a2010-09-21 23:49:07 +00001612
1613 if (I == B)
1614 // The 'and' is below the comparison instruction.
1615 return false;
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001616 }
1617
1618 // Set the "zero" bit in CPSR.
1619 switch (MI->getOpcode()) {
1620 default: break;
Owen Andersondf298c92011-04-06 23:35:59 +00001621 case ARM::RSBri:
1622 case ARM::RSCri:
Bill Wendling38ae9972010-08-11 00:23:00 +00001623 case ARM::ADDri:
Owen Andersondf298c92011-04-06 23:35:59 +00001624 case ARM::ADCri:
Bill Wendling38ae9972010-08-11 00:23:00 +00001625 case ARM::SUBri:
Owen Andersondf298c92011-04-06 23:35:59 +00001626 case ARM::SBCri:
1627 case ARM::t2RSBri:
Bill Wendling38ae9972010-08-11 00:23:00 +00001628 case ARM::t2ADDri:
Owen Andersondf298c92011-04-06 23:35:59 +00001629 case ARM::t2ADCri:
1630 case ARM::t2SUBri:
1631 case ARM::t2SBCri: {
Evan Cheng2c339152011-03-23 22:52:04 +00001632 // Scan forward for the use of CPSR, if it's a conditional code requires
1633 // checking of V bit, then this is not safe to do. If we can't find the
1634 // CPSR use (i.e. used in another block), then it's not safe to perform
1635 // the optimization.
1636 bool isSafe = false;
1637 I = CmpInstr;
1638 E = MI->getParent()->end();
1639 while (!isSafe && ++I != E) {
1640 const MachineInstr &Instr = *I;
1641 for (unsigned IO = 0, EO = Instr.getNumOperands();
1642 !isSafe && IO != EO; ++IO) {
1643 const MachineOperand &MO = Instr.getOperand(IO);
1644 if (!MO.isReg() || MO.getReg() != ARM::CPSR)
1645 continue;
1646 if (MO.isDef()) {
1647 isSafe = true;
1648 break;
1649 }
1650 // Condition code is after the operand before CPSR.
1651 ARMCC::CondCodes CC = (ARMCC::CondCodes)Instr.getOperand(IO-1).getImm();
1652 switch (CC) {
1653 default:
1654 isSafe = true;
1655 break;
1656 case ARMCC::VS:
1657 case ARMCC::VC:
1658 case ARMCC::GE:
1659 case ARMCC::LT:
1660 case ARMCC::GT:
1661 case ARMCC::LE:
1662 return false;
1663 }
1664 }
1665 }
1666
1667 if (!isSafe)
1668 return false;
1669
1670 // fallthrough
1671 }
1672 case ARM::ANDri:
1673 case ARM::t2ANDri:
Evan Cheng3642e642010-11-17 08:06:50 +00001674 // Toggle the optional operand to CPSR.
1675 MI->getOperand(5).setReg(ARM::CPSR);
1676 MI->getOperand(5).setIsDef(true);
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001677 CmpInstr->eraseFromParent();
1678 return true;
1679 }
Bill Wendlinge4ddbdf2010-08-06 01:32:48 +00001680
1681 return false;
1682}
Evan Cheng5f54ce32010-09-09 18:18:55 +00001683
Evan Chengc4af4632010-11-17 20:13:28 +00001684bool ARMBaseInstrInfo::FoldImmediate(MachineInstr *UseMI,
1685 MachineInstr *DefMI, unsigned Reg,
1686 MachineRegisterInfo *MRI) const {
1687 // Fold large immediates into add, sub, or, xor.
1688 unsigned DefOpc = DefMI->getOpcode();
1689 if (DefOpc != ARM::t2MOVi32imm && DefOpc != ARM::MOVi32imm)
1690 return false;
1691 if (!DefMI->getOperand(1).isImm())
1692 // Could be t2MOVi32imm <ga:xx>
1693 return false;
1694
1695 if (!MRI->hasOneNonDBGUse(Reg))
1696 return false;
1697
1698 unsigned UseOpc = UseMI->getOpcode();
Evan Cheng5c71c7a2010-11-18 01:43:23 +00001699 unsigned NewUseOpc = 0;
Evan Chengc4af4632010-11-17 20:13:28 +00001700 uint32_t ImmVal = (uint32_t)DefMI->getOperand(1).getImm();
Evan Cheng5c71c7a2010-11-18 01:43:23 +00001701 uint32_t SOImmValV1 = 0, SOImmValV2 = 0;
Evan Chengc4af4632010-11-17 20:13:28 +00001702 bool Commute = false;
1703 switch (UseOpc) {
1704 default: return false;
1705 case ARM::SUBrr:
1706 case ARM::ADDrr:
1707 case ARM::ORRrr:
1708 case ARM::EORrr:
1709 case ARM::t2SUBrr:
1710 case ARM::t2ADDrr:
1711 case ARM::t2ORRrr:
1712 case ARM::t2EORrr: {
1713 Commute = UseMI->getOperand(2).getReg() != Reg;
1714 switch (UseOpc) {
1715 default: break;
1716 case ARM::SUBrr: {
1717 if (Commute)
1718 return false;
1719 ImmVal = -ImmVal;
1720 NewUseOpc = ARM::SUBri;
1721 // Fallthrough
1722 }
1723 case ARM::ADDrr:
1724 case ARM::ORRrr:
1725 case ARM::EORrr: {
1726 if (!ARM_AM::isSOImmTwoPartVal(ImmVal))
1727 return false;
1728 SOImmValV1 = (uint32_t)ARM_AM::getSOImmTwoPartFirst(ImmVal);
1729 SOImmValV2 = (uint32_t)ARM_AM::getSOImmTwoPartSecond(ImmVal);
1730 switch (UseOpc) {
1731 default: break;
1732 case ARM::ADDrr: NewUseOpc = ARM::ADDri; break;
1733 case ARM::ORRrr: NewUseOpc = ARM::ORRri; break;
1734 case ARM::EORrr: NewUseOpc = ARM::EORri; break;
1735 }
1736 break;
1737 }
1738 case ARM::t2SUBrr: {
1739 if (Commute)
1740 return false;
1741 ImmVal = -ImmVal;
1742 NewUseOpc = ARM::t2SUBri;
1743 // Fallthrough
1744 }
1745 case ARM::t2ADDrr:
1746 case ARM::t2ORRrr:
1747 case ARM::t2EORrr: {
1748 if (!ARM_AM::isT2SOImmTwoPartVal(ImmVal))
1749 return false;
1750 SOImmValV1 = (uint32_t)ARM_AM::getT2SOImmTwoPartFirst(ImmVal);
1751 SOImmValV2 = (uint32_t)ARM_AM::getT2SOImmTwoPartSecond(ImmVal);
1752 switch (UseOpc) {
1753 default: break;
1754 case ARM::t2ADDrr: NewUseOpc = ARM::t2ADDri; break;
1755 case ARM::t2ORRrr: NewUseOpc = ARM::t2ORRri; break;
1756 case ARM::t2EORrr: NewUseOpc = ARM::t2EORri; break;
1757 }
1758 break;
1759 }
1760 }
1761 }
1762 }
1763
1764 unsigned OpIdx = Commute ? 2 : 1;
1765 unsigned Reg1 = UseMI->getOperand(OpIdx).getReg();
1766 bool isKill = UseMI->getOperand(OpIdx).isKill();
1767 unsigned NewReg = MRI->createVirtualRegister(MRI->getRegClass(Reg));
1768 AddDefaultCC(AddDefaultPred(BuildMI(*UseMI->getParent(),
1769 *UseMI, UseMI->getDebugLoc(),
1770 get(NewUseOpc), NewReg)
1771 .addReg(Reg1, getKillRegState(isKill))
1772 .addImm(SOImmValV1)));
1773 UseMI->setDesc(get(NewUseOpc));
1774 UseMI->getOperand(1).setReg(NewReg);
1775 UseMI->getOperand(1).setIsKill();
1776 UseMI->getOperand(2).ChangeToImmediate(SOImmValV2);
1777 DefMI->eraseFromParent();
1778 return true;
1779}
1780
Evan Cheng5f54ce32010-09-09 18:18:55 +00001781unsigned
Evan Cheng8239daf2010-11-03 00:45:17 +00001782ARMBaseInstrInfo::getNumMicroOps(const InstrItineraryData *ItinData,
1783 const MachineInstr *MI) const {
Evan Cheng3ef1c872010-09-10 01:29:16 +00001784 if (!ItinData || ItinData->isEmpty())
Evan Cheng5f54ce32010-09-09 18:18:55 +00001785 return 1;
1786
1787 const TargetInstrDesc &Desc = MI->getDesc();
1788 unsigned Class = Desc.getSchedClass();
Bob Wilson064312d2010-09-15 16:28:21 +00001789 unsigned UOps = ItinData->Itineraries[Class].NumMicroOps;
Evan Cheng5f54ce32010-09-09 18:18:55 +00001790 if (UOps)
1791 return UOps;
1792
1793 unsigned Opc = MI->getOpcode();
1794 switch (Opc) {
1795 default:
1796 llvm_unreachable("Unexpected multi-uops instruction!");
1797 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00001798 case ARM::VLDMQIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00001799 case ARM::VSTMQIA:
Evan Cheng5f54ce32010-09-09 18:18:55 +00001800 return 2;
1801
1802 // The number of uOps for load / store multiple are determined by the number
1803 // registers.
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001804 //
Evan Cheng3ef1c872010-09-10 01:29:16 +00001805 // On Cortex-A8, each pair of register loads / stores can be scheduled on the
1806 // same cycle. The scheduling for the first load / store must be done
1807 // separately by assuming the the address is not 64-bit aligned.
Bill Wendling73fe34a2010-11-16 01:16:36 +00001808 //
Evan Cheng3ef1c872010-09-10 01:29:16 +00001809 // On Cortex-A9, the formula is simply (#reg / 2) + (#reg % 2). If the address
Bill Wendling73fe34a2010-11-16 01:16:36 +00001810 // is not 64-bit aligned, then AGU would take an extra cycle. For VFP / NEON
1811 // load / store multiple, the formula is (#reg / 2) + (#reg % 2) + 1.
1812 case ARM::VLDMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00001813 case ARM::VLDMDIA_UPD:
1814 case ARM::VLDMDDB_UPD:
1815 case ARM::VLDMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00001816 case ARM::VLDMSIA_UPD:
1817 case ARM::VLDMSDB_UPD:
1818 case ARM::VSTMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00001819 case ARM::VSTMDIA_UPD:
1820 case ARM::VSTMDDB_UPD:
1821 case ARM::VSTMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00001822 case ARM::VSTMSIA_UPD:
1823 case ARM::VSTMSDB_UPD: {
Evan Cheng5f54ce32010-09-09 18:18:55 +00001824 unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands();
1825 return (NumRegs / 2) + (NumRegs % 2) + 1;
1826 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00001827
1828 case ARM::LDMIA_RET:
1829 case ARM::LDMIA:
1830 case ARM::LDMDA:
1831 case ARM::LDMDB:
1832 case ARM::LDMIB:
1833 case ARM::LDMIA_UPD:
1834 case ARM::LDMDA_UPD:
1835 case ARM::LDMDB_UPD:
1836 case ARM::LDMIB_UPD:
1837 case ARM::STMIA:
1838 case ARM::STMDA:
1839 case ARM::STMDB:
1840 case ARM::STMIB:
1841 case ARM::STMIA_UPD:
1842 case ARM::STMDA_UPD:
1843 case ARM::STMDB_UPD:
1844 case ARM::STMIB_UPD:
1845 case ARM::tLDMIA:
1846 case ARM::tLDMIA_UPD:
1847 case ARM::tSTMIA:
1848 case ARM::tSTMIA_UPD:
Evan Cheng5f54ce32010-09-09 18:18:55 +00001849 case ARM::tPOP_RET:
1850 case ARM::tPOP:
1851 case ARM::tPUSH:
Bill Wendling73fe34a2010-11-16 01:16:36 +00001852 case ARM::t2LDMIA_RET:
1853 case ARM::t2LDMIA:
1854 case ARM::t2LDMDB:
1855 case ARM::t2LDMIA_UPD:
1856 case ARM::t2LDMDB_UPD:
1857 case ARM::t2STMIA:
1858 case ARM::t2STMDB:
1859 case ARM::t2STMIA_UPD:
1860 case ARM::t2STMDB_UPD: {
Evan Cheng3ef1c872010-09-10 01:29:16 +00001861 unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands() + 1;
1862 if (Subtarget.isCortexA8()) {
Evan Cheng8239daf2010-11-03 00:45:17 +00001863 if (NumRegs < 4)
1864 return 2;
1865 // 4 registers would be issued: 2, 2.
1866 // 5 registers would be issued: 2, 2, 1.
1867 UOps = (NumRegs / 2);
1868 if (NumRegs % 2)
1869 ++UOps;
1870 return UOps;
Evan Cheng3ef1c872010-09-10 01:29:16 +00001871 } else if (Subtarget.isCortexA9()) {
1872 UOps = (NumRegs / 2);
1873 // If there are odd number of registers or if it's not 64-bit aligned,
1874 // then it takes an extra AGU (Address Generation Unit) cycle.
1875 if ((NumRegs % 2) ||
1876 !MI->hasOneMemOperand() ||
1877 (*MI->memoperands_begin())->getAlignment() < 8)
1878 ++UOps;
1879 return UOps;
1880 } else {
1881 // Assume the worst.
1882 return NumRegs;
Michael J. Spencer2bbb7692010-10-05 06:00:33 +00001883 }
Evan Cheng5f54ce32010-09-09 18:18:55 +00001884 }
1885 }
1886}
Evan Chenga0792de2010-10-06 06:27:31 +00001887
1888int
Evan Cheng344d9db2010-10-07 23:12:15 +00001889ARMBaseInstrInfo::getVLDMDefCycle(const InstrItineraryData *ItinData,
1890 const TargetInstrDesc &DefTID,
1891 unsigned DefClass,
1892 unsigned DefIdx, unsigned DefAlign) const {
1893 int RegNo = (int)(DefIdx+1) - DefTID.getNumOperands() + 1;
1894 if (RegNo <= 0)
1895 // Def is the address writeback.
1896 return ItinData->getOperandCycle(DefClass, DefIdx);
1897
1898 int DefCycle;
1899 if (Subtarget.isCortexA8()) {
1900 // (regno / 2) + (regno % 2) + 1
1901 DefCycle = RegNo / 2 + 1;
1902 if (RegNo % 2)
1903 ++DefCycle;
1904 } else if (Subtarget.isCortexA9()) {
1905 DefCycle = RegNo;
1906 bool isSLoad = false;
Bill Wendling73fe34a2010-11-16 01:16:36 +00001907
Evan Cheng344d9db2010-10-07 23:12:15 +00001908 switch (DefTID.getOpcode()) {
1909 default: break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00001910 case ARM::VLDMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00001911 case ARM::VLDMSIA_UPD:
1912 case ARM::VLDMSDB_UPD:
Evan Cheng344d9db2010-10-07 23:12:15 +00001913 isSLoad = true;
1914 break;
1915 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00001916
Evan Cheng344d9db2010-10-07 23:12:15 +00001917 // If there are odd number of 'S' registers or if it's not 64-bit aligned,
1918 // then it takes an extra cycle.
1919 if ((isSLoad && (RegNo % 2)) || DefAlign < 8)
1920 ++DefCycle;
1921 } else {
1922 // Assume the worst.
1923 DefCycle = RegNo + 2;
1924 }
1925
1926 return DefCycle;
1927}
1928
1929int
1930ARMBaseInstrInfo::getLDMDefCycle(const InstrItineraryData *ItinData,
1931 const TargetInstrDesc &DefTID,
1932 unsigned DefClass,
1933 unsigned DefIdx, unsigned DefAlign) const {
1934 int RegNo = (int)(DefIdx+1) - DefTID.getNumOperands() + 1;
1935 if (RegNo <= 0)
1936 // Def is the address writeback.
1937 return ItinData->getOperandCycle(DefClass, DefIdx);
1938
1939 int DefCycle;
1940 if (Subtarget.isCortexA8()) {
1941 // 4 registers would be issued: 1, 2, 1.
1942 // 5 registers would be issued: 1, 2, 2.
1943 DefCycle = RegNo / 2;
1944 if (DefCycle < 1)
1945 DefCycle = 1;
1946 // Result latency is issue cycle + 2: E2.
1947 DefCycle += 2;
1948 } else if (Subtarget.isCortexA9()) {
1949 DefCycle = (RegNo / 2);
1950 // If there are odd number of registers or if it's not 64-bit aligned,
1951 // then it takes an extra AGU (Address Generation Unit) cycle.
1952 if ((RegNo % 2) || DefAlign < 8)
1953 ++DefCycle;
1954 // Result latency is AGU cycles + 2.
1955 DefCycle += 2;
1956 } else {
1957 // Assume the worst.
1958 DefCycle = RegNo + 2;
1959 }
1960
1961 return DefCycle;
1962}
1963
1964int
1965ARMBaseInstrInfo::getVSTMUseCycle(const InstrItineraryData *ItinData,
1966 const TargetInstrDesc &UseTID,
1967 unsigned UseClass,
1968 unsigned UseIdx, unsigned UseAlign) const {
1969 int RegNo = (int)(UseIdx+1) - UseTID.getNumOperands() + 1;
1970 if (RegNo <= 0)
1971 return ItinData->getOperandCycle(UseClass, UseIdx);
1972
1973 int UseCycle;
1974 if (Subtarget.isCortexA8()) {
1975 // (regno / 2) + (regno % 2) + 1
1976 UseCycle = RegNo / 2 + 1;
1977 if (RegNo % 2)
1978 ++UseCycle;
1979 } else if (Subtarget.isCortexA9()) {
1980 UseCycle = RegNo;
1981 bool isSStore = false;
Bill Wendling73fe34a2010-11-16 01:16:36 +00001982
Evan Cheng344d9db2010-10-07 23:12:15 +00001983 switch (UseTID.getOpcode()) {
1984 default: break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00001985 case ARM::VSTMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00001986 case ARM::VSTMSIA_UPD:
1987 case ARM::VSTMSDB_UPD:
Evan Cheng344d9db2010-10-07 23:12:15 +00001988 isSStore = true;
1989 break;
1990 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00001991
Evan Cheng344d9db2010-10-07 23:12:15 +00001992 // If there are odd number of 'S' registers or if it's not 64-bit aligned,
1993 // then it takes an extra cycle.
1994 if ((isSStore && (RegNo % 2)) || UseAlign < 8)
1995 ++UseCycle;
1996 } else {
1997 // Assume the worst.
1998 UseCycle = RegNo + 2;
1999 }
2000
2001 return UseCycle;
2002}
2003
2004int
2005ARMBaseInstrInfo::getSTMUseCycle(const InstrItineraryData *ItinData,
2006 const TargetInstrDesc &UseTID,
2007 unsigned UseClass,
2008 unsigned UseIdx, unsigned UseAlign) const {
2009 int RegNo = (int)(UseIdx+1) - UseTID.getNumOperands() + 1;
2010 if (RegNo <= 0)
2011 return ItinData->getOperandCycle(UseClass, UseIdx);
2012
2013 int UseCycle;
2014 if (Subtarget.isCortexA8()) {
2015 UseCycle = RegNo / 2;
2016 if (UseCycle < 2)
2017 UseCycle = 2;
2018 // Read in E3.
2019 UseCycle += 2;
2020 } else if (Subtarget.isCortexA9()) {
2021 UseCycle = (RegNo / 2);
2022 // If there are odd number of registers or if it's not 64-bit aligned,
2023 // then it takes an extra AGU (Address Generation Unit) cycle.
2024 if ((RegNo % 2) || UseAlign < 8)
2025 ++UseCycle;
2026 } else {
2027 // Assume the worst.
2028 UseCycle = 1;
2029 }
2030 return UseCycle;
2031}
2032
2033int
Evan Chenga0792de2010-10-06 06:27:31 +00002034ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
2035 const TargetInstrDesc &DefTID,
2036 unsigned DefIdx, unsigned DefAlign,
2037 const TargetInstrDesc &UseTID,
2038 unsigned UseIdx, unsigned UseAlign) const {
2039 unsigned DefClass = DefTID.getSchedClass();
2040 unsigned UseClass = UseTID.getSchedClass();
2041
2042 if (DefIdx < DefTID.getNumDefs() && UseIdx < UseTID.getNumOperands())
2043 return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx);
2044
2045 // This may be a def / use of a variable_ops instruction, the operand
2046 // latency might be determinable dynamically. Let the target try to
2047 // figure it out.
Evan Cheng9e08ee52010-10-28 02:00:25 +00002048 int DefCycle = -1;
Evan Cheng7e2fe912010-10-28 06:47:08 +00002049 bool LdmBypass = false;
Evan Chenga0792de2010-10-06 06:27:31 +00002050 switch (DefTID.getOpcode()) {
2051 default:
2052 DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
2053 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002054
2055 case ARM::VLDMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002056 case ARM::VLDMDIA_UPD:
2057 case ARM::VLDMDDB_UPD:
2058 case ARM::VLDMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002059 case ARM::VLDMSIA_UPD:
2060 case ARM::VLDMSDB_UPD:
Evan Cheng344d9db2010-10-07 23:12:15 +00002061 DefCycle = getVLDMDefCycle(ItinData, DefTID, DefClass, DefIdx, DefAlign);
Evan Cheng5a50cee2010-10-07 01:50:48 +00002062 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002063
2064 case ARM::LDMIA_RET:
2065 case ARM::LDMIA:
2066 case ARM::LDMDA:
2067 case ARM::LDMDB:
2068 case ARM::LDMIB:
2069 case ARM::LDMIA_UPD:
2070 case ARM::LDMDA_UPD:
2071 case ARM::LDMDB_UPD:
2072 case ARM::LDMIB_UPD:
2073 case ARM::tLDMIA:
2074 case ARM::tLDMIA_UPD:
Evan Chenga0792de2010-10-06 06:27:31 +00002075 case ARM::tPUSH:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002076 case ARM::t2LDMIA_RET:
2077 case ARM::t2LDMIA:
2078 case ARM::t2LDMDB:
2079 case ARM::t2LDMIA_UPD:
2080 case ARM::t2LDMDB_UPD:
Evan Chenga0792de2010-10-06 06:27:31 +00002081 LdmBypass = 1;
Evan Cheng344d9db2010-10-07 23:12:15 +00002082 DefCycle = getLDMDefCycle(ItinData, DefTID, DefClass, DefIdx, DefAlign);
2083 break;
Evan Chenga0792de2010-10-06 06:27:31 +00002084 }
Evan Chenga0792de2010-10-06 06:27:31 +00002085
2086 if (DefCycle == -1)
2087 // We can't seem to determine the result latency of the def, assume it's 2.
2088 DefCycle = 2;
2089
2090 int UseCycle = -1;
2091 switch (UseTID.getOpcode()) {
2092 default:
2093 UseCycle = ItinData->getOperandCycle(UseClass, UseIdx);
2094 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002095
2096 case ARM::VSTMDIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002097 case ARM::VSTMDIA_UPD:
2098 case ARM::VSTMDDB_UPD:
2099 case ARM::VSTMSIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002100 case ARM::VSTMSIA_UPD:
2101 case ARM::VSTMSDB_UPD:
Evan Cheng344d9db2010-10-07 23:12:15 +00002102 UseCycle = getVSTMUseCycle(ItinData, UseTID, UseClass, UseIdx, UseAlign);
Evan Cheng5a50cee2010-10-07 01:50:48 +00002103 break;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002104
2105 case ARM::STMIA:
2106 case ARM::STMDA:
2107 case ARM::STMDB:
2108 case ARM::STMIB:
2109 case ARM::STMIA_UPD:
2110 case ARM::STMDA_UPD:
2111 case ARM::STMDB_UPD:
2112 case ARM::STMIB_UPD:
2113 case ARM::tSTMIA:
2114 case ARM::tSTMIA_UPD:
Evan Chenga0792de2010-10-06 06:27:31 +00002115 case ARM::tPOP_RET:
2116 case ARM::tPOP:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002117 case ARM::t2STMIA:
2118 case ARM::t2STMDB:
2119 case ARM::t2STMIA_UPD:
2120 case ARM::t2STMDB_UPD:
Evan Cheng344d9db2010-10-07 23:12:15 +00002121 UseCycle = getSTMUseCycle(ItinData, UseTID, UseClass, UseIdx, UseAlign);
Evan Cheng5a50cee2010-10-07 01:50:48 +00002122 break;
Evan Chenga0792de2010-10-06 06:27:31 +00002123 }
Evan Chenga0792de2010-10-06 06:27:31 +00002124
2125 if (UseCycle == -1)
2126 // Assume it's read in the first stage.
2127 UseCycle = 1;
2128
2129 UseCycle = DefCycle - UseCycle + 1;
2130 if (UseCycle > 0) {
2131 if (LdmBypass) {
2132 // It's a variable_ops instruction so we can't use DefIdx here. Just use
2133 // first def operand.
2134 if (ItinData->hasPipelineForwarding(DefClass, DefTID.getNumOperands()-1,
2135 UseClass, UseIdx))
2136 --UseCycle;
2137 } else if (ItinData->hasPipelineForwarding(DefClass, DefIdx,
Bill Wendling73fe34a2010-11-16 01:16:36 +00002138 UseClass, UseIdx)) {
Evan Chenga0792de2010-10-06 06:27:31 +00002139 --UseCycle;
Bill Wendling73fe34a2010-11-16 01:16:36 +00002140 }
Evan Chenga0792de2010-10-06 06:27:31 +00002141 }
2142
2143 return UseCycle;
2144}
2145
2146int
2147ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
2148 const MachineInstr *DefMI, unsigned DefIdx,
2149 const MachineInstr *UseMI, unsigned UseIdx) const {
2150 if (DefMI->isCopyLike() || DefMI->isInsertSubreg() ||
2151 DefMI->isRegSequence() || DefMI->isImplicitDef())
2152 return 1;
2153
2154 const TargetInstrDesc &DefTID = DefMI->getDesc();
2155 if (!ItinData || ItinData->isEmpty())
2156 return DefTID.mayLoad() ? 3 : 1;
2157
2158 const TargetInstrDesc &UseTID = UseMI->getDesc();
Evan Chengdd9dd6f2010-10-23 02:04:38 +00002159 const MachineOperand &DefMO = DefMI->getOperand(DefIdx);
Evan Chenge09206d2010-10-29 23:16:55 +00002160 if (DefMO.getReg() == ARM::CPSR) {
2161 if (DefMI->getOpcode() == ARM::FMSTAT) {
2162 // fpscr -> cpsr stalls over 20 cycles on A8 (and earlier?)
2163 return Subtarget.isCortexA9() ? 1 : 20;
2164 }
2165
Evan Chengdd9dd6f2010-10-23 02:04:38 +00002166 // CPSR set and branch can be paired in the same cycle.
Evan Chenge09206d2010-10-29 23:16:55 +00002167 if (UseTID.isBranch())
2168 return 0;
2169 }
Evan Chengdd9dd6f2010-10-23 02:04:38 +00002170
Evan Chenga0792de2010-10-06 06:27:31 +00002171 unsigned DefAlign = DefMI->hasOneMemOperand()
2172 ? (*DefMI->memoperands_begin())->getAlignment() : 0;
2173 unsigned UseAlign = UseMI->hasOneMemOperand()
2174 ? (*UseMI->memoperands_begin())->getAlignment() : 0;
Evan Cheng7e2fe912010-10-28 06:47:08 +00002175 int Latency = getOperandLatency(ItinData, DefTID, DefIdx, DefAlign,
2176 UseTID, UseIdx, UseAlign);
2177
2178 if (Latency > 1 &&
2179 (Subtarget.isCortexA8() || Subtarget.isCortexA9())) {
2180 // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
2181 // variants are one cycle cheaper.
2182 switch (DefTID.getOpcode()) {
2183 default: break;
2184 case ARM::LDRrs:
2185 case ARM::LDRBrs: {
2186 unsigned ShOpVal = DefMI->getOperand(3).getImm();
2187 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2188 if (ShImm == 0 ||
2189 (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
2190 --Latency;
2191 break;
2192 }
2193 case ARM::t2LDRs:
2194 case ARM::t2LDRBs:
2195 case ARM::t2LDRHs:
2196 case ARM::t2LDRSHs: {
2197 // Thumb2 mode: lsl only.
2198 unsigned ShAmt = DefMI->getOperand(3).getImm();
2199 if (ShAmt == 0 || ShAmt == 2)
2200 --Latency;
2201 break;
2202 }
2203 }
2204 }
2205
2206 return Latency;
Evan Chenga0792de2010-10-06 06:27:31 +00002207}
2208
2209int
2210ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
2211 SDNode *DefNode, unsigned DefIdx,
2212 SDNode *UseNode, unsigned UseIdx) const {
2213 if (!DefNode->isMachineOpcode())
2214 return 1;
2215
2216 const TargetInstrDesc &DefTID = get(DefNode->getMachineOpcode());
Andrew Trickc8bfd1d2011-01-21 05:51:33 +00002217
2218 if (isZeroCost(DefTID.Opcode))
2219 return 0;
2220
Evan Chenga0792de2010-10-06 06:27:31 +00002221 if (!ItinData || ItinData->isEmpty())
2222 return DefTID.mayLoad() ? 3 : 1;
2223
Evan Cheng08975152010-10-29 18:09:28 +00002224 if (!UseNode->isMachineOpcode()) {
2225 int Latency = ItinData->getOperandCycle(DefTID.getSchedClass(), DefIdx);
2226 if (Subtarget.isCortexA9())
2227 return Latency <= 2 ? 1 : Latency - 1;
2228 else
2229 return Latency <= 3 ? 1 : Latency - 2;
2230 }
Evan Chenga0792de2010-10-06 06:27:31 +00002231
2232 const TargetInstrDesc &UseTID = get(UseNode->getMachineOpcode());
2233 const MachineSDNode *DefMN = dyn_cast<MachineSDNode>(DefNode);
2234 unsigned DefAlign = !DefMN->memoperands_empty()
2235 ? (*DefMN->memoperands_begin())->getAlignment() : 0;
2236 const MachineSDNode *UseMN = dyn_cast<MachineSDNode>(UseNode);
2237 unsigned UseAlign = !UseMN->memoperands_empty()
2238 ? (*UseMN->memoperands_begin())->getAlignment() : 0;
Evan Cheng7e2fe912010-10-28 06:47:08 +00002239 int Latency = getOperandLatency(ItinData, DefTID, DefIdx, DefAlign,
2240 UseTID, UseIdx, UseAlign);
2241
2242 if (Latency > 1 &&
2243 (Subtarget.isCortexA8() || Subtarget.isCortexA9())) {
2244 // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
2245 // variants are one cycle cheaper.
2246 switch (DefTID.getOpcode()) {
2247 default: break;
2248 case ARM::LDRrs:
2249 case ARM::LDRBrs: {
2250 unsigned ShOpVal =
2251 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
2252 unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2253 if (ShImm == 0 ||
2254 (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
2255 --Latency;
2256 break;
2257 }
2258 case ARM::t2LDRs:
2259 case ARM::t2LDRBs:
2260 case ARM::t2LDRHs:
2261 case ARM::t2LDRSHs: {
2262 // Thumb2 mode: lsl only.
2263 unsigned ShAmt =
2264 cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
2265 if (ShAmt == 0 || ShAmt == 2)
2266 --Latency;
2267 break;
2268 }
2269 }
2270 }
2271
2272 return Latency;
Evan Chenga0792de2010-10-06 06:27:31 +00002273}
Evan Cheng23128422010-10-19 18:58:51 +00002274
Evan Cheng8239daf2010-11-03 00:45:17 +00002275int ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
2276 const MachineInstr *MI,
2277 unsigned *PredCost) const {
2278 if (MI->isCopyLike() || MI->isInsertSubreg() ||
2279 MI->isRegSequence() || MI->isImplicitDef())
2280 return 1;
2281
2282 if (!ItinData || ItinData->isEmpty())
2283 return 1;
2284
2285 const TargetInstrDesc &TID = MI->getDesc();
2286 unsigned Class = TID.getSchedClass();
2287 unsigned UOps = ItinData->Itineraries[Class].NumMicroOps;
2288 if (PredCost && TID.hasImplicitDefOfPhysReg(ARM::CPSR))
2289 // When predicated, CPSR is an additional source operand for CPSR updating
2290 // instructions, this apparently increases their latencies.
2291 *PredCost = 1;
2292 if (UOps)
2293 return ItinData->getStageLatency(Class);
2294 return getNumMicroOps(ItinData, MI);
2295}
2296
2297int ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
2298 SDNode *Node) const {
2299 if (!Node->isMachineOpcode())
2300 return 1;
2301
2302 if (!ItinData || ItinData->isEmpty())
2303 return 1;
2304
2305 unsigned Opcode = Node->getMachineOpcode();
2306 switch (Opcode) {
2307 default:
2308 return ItinData->getStageLatency(get(Opcode).getSchedClass());
Bill Wendling73fe34a2010-11-16 01:16:36 +00002309 case ARM::VLDMQIA:
Bill Wendling73fe34a2010-11-16 01:16:36 +00002310 case ARM::VSTMQIA:
Evan Cheng8239daf2010-11-03 00:45:17 +00002311 return 2;
Eric Christopher8b3ca622010-11-18 19:40:05 +00002312 }
Evan Cheng8239daf2010-11-03 00:45:17 +00002313}
2314
Evan Cheng23128422010-10-19 18:58:51 +00002315bool ARMBaseInstrInfo::
2316hasHighOperandLatency(const InstrItineraryData *ItinData,
2317 const MachineRegisterInfo *MRI,
2318 const MachineInstr *DefMI, unsigned DefIdx,
2319 const MachineInstr *UseMI, unsigned UseIdx) const {
2320 unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
2321 unsigned UDomain = UseMI->getDesc().TSFlags & ARMII::DomainMask;
2322 if (Subtarget.isCortexA8() &&
2323 (DDomain == ARMII::DomainVFP || UDomain == ARMII::DomainVFP))
2324 // CortexA8 VFP instructions are not pipelined.
2325 return true;
2326
2327 // Hoist VFP / NEON instructions with 4 or higher latency.
2328 int Latency = getOperandLatency(ItinData, DefMI, DefIdx, UseMI, UseIdx);
2329 if (Latency <= 3)
2330 return false;
2331 return DDomain == ARMII::DomainVFP || DDomain == ARMII::DomainNEON ||
2332 UDomain == ARMII::DomainVFP || UDomain == ARMII::DomainNEON;
2333}
Evan Chengc8141df2010-10-26 02:08:50 +00002334
2335bool ARMBaseInstrInfo::
2336hasLowDefLatency(const InstrItineraryData *ItinData,
2337 const MachineInstr *DefMI, unsigned DefIdx) const {
2338 if (!ItinData || ItinData->isEmpty())
2339 return false;
2340
2341 unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
2342 if (DDomain == ARMII::DomainGeneral) {
2343 unsigned DefClass = DefMI->getDesc().getSchedClass();
2344 int DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
2345 return (DefCycle != -1 && DefCycle <= 2);
2346 }
2347 return false;
2348}
Evan Cheng48575f62010-12-05 22:04:16 +00002349
2350bool
2351ARMBaseInstrInfo::isFpMLxInstruction(unsigned Opcode, unsigned &MulOpc,
2352 unsigned &AddSubOpc,
2353 bool &NegAcc, bool &HasLane) const {
2354 DenseMap<unsigned, unsigned>::const_iterator I = MLxEntryMap.find(Opcode);
2355 if (I == MLxEntryMap.end())
2356 return false;
2357
2358 const ARM_MLxEntry &Entry = ARM_MLxTable[I->second];
2359 MulOpc = Entry.MulOpc;
2360 AddSubOpc = Entry.AddSubOpc;
2361 NegAcc = Entry.NegAcc;
2362 HasLane = Entry.HasLane;
2363 return true;
2364}