1 //===-- ARMBaseRegisterInfo.cpp - ARM Register Information ----------------===//
2 //
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 TargetRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "ARMBaseRegisterInfo.h"
15 #include "ARM.h"
16 #include "ARMBaseInstrInfo.h"
17 #include "ARMFrameLowering.h"
18 #include "ARMMachineFunctionInfo.h"
19 #include "ARMSubtarget.h"
20 #include "MCTargetDesc/ARMAddressingModes.h"
21 #include "MCTargetDesc/ARMBaseInfo.h"
22 #include "llvm/ADT/BitVector.h"
23 #include "llvm/ADT/STLExtras.h"
24 #include "llvm/ADT/SmallVector.h"
25 #include "llvm/CodeGen/MachineBasicBlock.h"
26 #include "llvm/CodeGen/MachineConstantPool.h"
27 #include "llvm/CodeGen/MachineFrameInfo.h"
28 #include "llvm/CodeGen/MachineFunction.h"
29 #include "llvm/CodeGen/MachineInstr.h"
30 #include "llvm/CodeGen/MachineInstrBuilder.h"
31 #include "llvm/CodeGen/MachineOperand.h"
32 #include "llvm/CodeGen/MachineRegisterInfo.h"
33 #include "llvm/CodeGen/RegisterScavenging.h"
34 #include "llvm/CodeGen/TargetInstrInfo.h"
35 #include "llvm/CodeGen/TargetRegisterInfo.h"
36 #include "llvm/CodeGen/VirtRegMap.h"
37 #include "llvm/IR/Attributes.h"
38 #include "llvm/IR/Constants.h"
39 #include "llvm/IR/DebugLoc.h"
40 #include "llvm/IR/Function.h"
41 #include "llvm/IR/Type.h"
42 #include "llvm/MC/MCInstrDesc.h"
43 #include "llvm/Support/Debug.h"
44 #include "llvm/Support/ErrorHandling.h"
45 #include "llvm/Support/raw_ostream.h"
46 #include "llvm/Target/TargetMachine.h"
47 #include "llvm/Target/TargetOptions.h"
48 #include <cassert>
49 #include <utility>
50
51 #define DEBUG_TYPE "arm-register-info"
52
53 #define GET_REGINFO_TARGET_DESC
54 #include "ARMGenRegisterInfo.inc"
55
56 using namespace llvm;
57
ARMBaseRegisterInfo()58 ARMBaseRegisterInfo::ARMBaseRegisterInfo()
59 : ARMGenRegisterInfo(ARM::LR, 0, 0, ARM::PC) {}
60
getFramePointerReg(const ARMSubtarget & STI)61 static unsigned getFramePointerReg(const ARMSubtarget &STI) {
62 return STI.useR7AsFramePointer() ? ARM::R7 : ARM::R11;
63 }
64
65 const MCPhysReg*
getCalleeSavedRegs(const MachineFunction * MF) const66 ARMBaseRegisterInfo::getCalleeSavedRegs(const MachineFunction *MF) const {
67 const ARMSubtarget &STI = MF->getSubtarget<ARMSubtarget>();
68 bool UseSplitPush = STI.splitFramePushPop(*MF);
69 const MCPhysReg *RegList =
70 STI.isTargetDarwin()
71 ? CSR_iOS_SaveList
72 : (UseSplitPush ? CSR_AAPCS_SplitPush_SaveList : CSR_AAPCS_SaveList);
73
74 const Function &F = MF->getFunction();
75 if (F.getCallingConv() == CallingConv::GHC) {
76 // GHC set of callee saved regs is empty as all those regs are
77 // used for passing STG regs around
78 return CSR_NoRegs_SaveList;
79 } else if (F.hasFnAttribute("interrupt")) {
80 if (STI.isMClass()) {
81 // M-class CPUs have hardware which saves the registers needed to allow a
82 // function conforming to the AAPCS to function as a handler.
83 return UseSplitPush ? CSR_AAPCS_SplitPush_SaveList : CSR_AAPCS_SaveList;
84 } else if (F.getFnAttribute("interrupt").getValueAsString() == "FIQ") {
85 // Fast interrupt mode gives the handler a private copy of R8-R14, so less
86 // need to be saved to restore user-mode state.
87 return CSR_FIQ_SaveList;
88 } else {
89 // Generally only R13-R14 (i.e. SP, LR) are automatically preserved by
90 // exception handling.
91 return CSR_GenericInt_SaveList;
92 }
93 }
94
95 if (STI.getTargetLowering()->supportSwiftError() &&
96 F.getAttributes().hasAttrSomewhere(Attribute::SwiftError)) {
97 if (STI.isTargetDarwin())
98 return CSR_iOS_SwiftError_SaveList;
99
100 return UseSplitPush ? CSR_AAPCS_SplitPush_SwiftError_SaveList :
101 CSR_AAPCS_SwiftError_SaveList;
102 }
103
104 if (STI.isTargetDarwin() && F.getCallingConv() == CallingConv::CXX_FAST_TLS)
105 return MF->getInfo<ARMFunctionInfo>()->isSplitCSR()
106 ? CSR_iOS_CXX_TLS_PE_SaveList
107 : CSR_iOS_CXX_TLS_SaveList;
108 return RegList;
109 }
110
getCalleeSavedRegsViaCopy(const MachineFunction * MF) const111 const MCPhysReg *ARMBaseRegisterInfo::getCalleeSavedRegsViaCopy(
112 const MachineFunction *MF) const {
113 assert(MF && "Invalid MachineFunction pointer.");
114 if (MF->getFunction().getCallingConv() == CallingConv::CXX_FAST_TLS &&
115 MF->getInfo<ARMFunctionInfo>()->isSplitCSR())
116 return CSR_iOS_CXX_TLS_ViaCopy_SaveList;
117 return nullptr;
118 }
119
120 const uint32_t *
getCallPreservedMask(const MachineFunction & MF,CallingConv::ID CC) const121 ARMBaseRegisterInfo::getCallPreservedMask(const MachineFunction &MF,
122 CallingConv::ID CC) const {
123 const ARMSubtarget &STI = MF.getSubtarget<ARMSubtarget>();
124 if (CC == CallingConv::GHC)
125 // This is academic because all GHC calls are (supposed to be) tail calls
126 return CSR_NoRegs_RegMask;
127
128 if (STI.getTargetLowering()->supportSwiftError() &&
129 MF.getFunction().getAttributes().hasAttrSomewhere(Attribute::SwiftError))
130 return STI.isTargetDarwin() ? CSR_iOS_SwiftError_RegMask
131 : CSR_AAPCS_SwiftError_RegMask;
132
133 if (STI.isTargetDarwin() && CC == CallingConv::CXX_FAST_TLS)
134 return CSR_iOS_CXX_TLS_RegMask;
135 return STI.isTargetDarwin() ? CSR_iOS_RegMask : CSR_AAPCS_RegMask;
136 }
137
138 const uint32_t*
getNoPreservedMask() const139 ARMBaseRegisterInfo::getNoPreservedMask() const {
140 return CSR_NoRegs_RegMask;
141 }
142
143 const uint32_t *
getTLSCallPreservedMask(const MachineFunction & MF) const144 ARMBaseRegisterInfo::getTLSCallPreservedMask(const MachineFunction &MF) const {
145 assert(MF.getSubtarget<ARMSubtarget>().isTargetDarwin() &&
146 "only know about special TLS call on Darwin");
147 return CSR_iOS_TLSCall_RegMask;
148 }
149
150 const uint32_t *
getSjLjDispatchPreservedMask(const MachineFunction & MF) const151 ARMBaseRegisterInfo::getSjLjDispatchPreservedMask(const MachineFunction &MF) const {
152 const ARMSubtarget &STI = MF.getSubtarget<ARMSubtarget>();
153 if (!STI.useSoftFloat() && STI.hasVFP2() && !STI.isThumb1Only())
154 return CSR_NoRegs_RegMask;
155 else
156 return CSR_FPRegs_RegMask;
157 }
158
159 const uint32_t *
getThisReturnPreservedMask(const MachineFunction & MF,CallingConv::ID CC) const160 ARMBaseRegisterInfo::getThisReturnPreservedMask(const MachineFunction &MF,
161 CallingConv::ID CC) const {
162 const ARMSubtarget &STI = MF.getSubtarget<ARMSubtarget>();
163 // This should return a register mask that is the same as that returned by
164 // getCallPreservedMask but that additionally preserves the register used for
165 // the first i32 argument (which must also be the register used to return a
166 // single i32 return value)
167 //
168 // In case that the calling convention does not use the same register for
169 // both or otherwise does not want to enable this optimization, the function
170 // should return NULL
171 if (CC == CallingConv::GHC)
172 // This is academic because all GHC calls are (supposed to be) tail calls
173 return nullptr;
174 return STI.isTargetDarwin() ? CSR_iOS_ThisReturn_RegMask
175 : CSR_AAPCS_ThisReturn_RegMask;
176 }
177
178 BitVector ARMBaseRegisterInfo::
getReservedRegs(const MachineFunction & MF) const179 getReservedRegs(const MachineFunction &MF) const {
180 const ARMSubtarget &STI = MF.getSubtarget<ARMSubtarget>();
181 const ARMFrameLowering *TFI = getFrameLowering(MF);
182
183 // FIXME: avoid re-calculating this every time.
184 BitVector Reserved(getNumRegs());
185 markSuperRegs(Reserved, ARM::SP);
186 markSuperRegs(Reserved, ARM::PC);
187 markSuperRegs(Reserved, ARM::FPSCR);
188 markSuperRegs(Reserved, ARM::APSR_NZCV);
189 if (TFI->hasFP(MF))
190 markSuperRegs(Reserved, getFramePointerReg(STI));
191 if (hasBasePointer(MF))
192 markSuperRegs(Reserved, BasePtr);
193 // Some targets reserve R9.
194 if (STI.isR9Reserved())
195 markSuperRegs(Reserved, ARM::R9);
196 // Reserve D16-D31 if the subtarget doesn't support them.
197 if (!STI.hasVFP3() || STI.hasD16()) {
198 static_assert(ARM::D31 == ARM::D16 + 15, "Register list not consecutive!");
199 for (unsigned R = 0; R < 16; ++R)
200 markSuperRegs(Reserved, ARM::D16 + R);
201 }
202 const TargetRegisterClass &RC = ARM::GPRPairRegClass;
203 for (unsigned Reg : RC)
204 for (MCSubRegIterator SI(Reg, this); SI.isValid(); ++SI)
205 if (Reserved.test(*SI))
206 markSuperRegs(Reserved, Reg);
207
208 assert(checkAllSuperRegsMarked(Reserved));
209 return Reserved;
210 }
211
212 const TargetRegisterClass *
getLargestLegalSuperClass(const TargetRegisterClass * RC,const MachineFunction &) const213 ARMBaseRegisterInfo::getLargestLegalSuperClass(const TargetRegisterClass *RC,
214 const MachineFunction &) const {
215 const TargetRegisterClass *Super = RC;
216 TargetRegisterClass::sc_iterator I = RC->getSuperClasses();
217 do {
218 switch (Super->getID()) {
219 case ARM::GPRRegClassID:
220 case ARM::SPRRegClassID:
221 case ARM::DPRRegClassID:
222 case ARM::QPRRegClassID:
223 case ARM::QQPRRegClassID:
224 case ARM::QQQQPRRegClassID:
225 case ARM::GPRPairRegClassID:
226 return Super;
227 }
228 Super = *I++;
229 } while (Super);
230 return RC;
231 }
232
233 const TargetRegisterClass *
getPointerRegClass(const MachineFunction & MF,unsigned Kind) const234 ARMBaseRegisterInfo::getPointerRegClass(const MachineFunction &MF, unsigned Kind)
235 const {
236 return &ARM::GPRRegClass;
237 }
238
239 const TargetRegisterClass *
getCrossCopyRegClass(const TargetRegisterClass * RC) const240 ARMBaseRegisterInfo::getCrossCopyRegClass(const TargetRegisterClass *RC) const {
241 if (RC == &ARM::CCRRegClass)
242 return &ARM::rGPRRegClass; // Can't copy CCR registers.
243 return RC;
244 }
245
246 unsigned
getRegPressureLimit(const TargetRegisterClass * RC,MachineFunction & MF) const247 ARMBaseRegisterInfo::getRegPressureLimit(const TargetRegisterClass *RC,
248 MachineFunction &MF) const {
249 const ARMSubtarget &STI = MF.getSubtarget<ARMSubtarget>();
250 const ARMFrameLowering *TFI = getFrameLowering(MF);
251
252 switch (RC->getID()) {
253 default:
254 return 0;
255 case ARM::tGPRRegClassID: {
256 // hasFP ends up calling getMaxCallFrameComputed() which may not be
257 // available when getPressureLimit() is called as part of
258 // ScheduleDAGRRList.
259 bool HasFP = MF.getFrameInfo().isMaxCallFrameSizeComputed()
260 ? TFI->hasFP(MF) : true;
261 return 5 - HasFP;
262 }
263 case ARM::GPRRegClassID: {
264 bool HasFP = MF.getFrameInfo().isMaxCallFrameSizeComputed()
265 ? TFI->hasFP(MF) : true;
266 return 10 - HasFP - (STI.isR9Reserved() ? 1 : 0);
267 }
268 case ARM::SPRRegClassID: // Currently not used as 'rep' register class.
269 case ARM::DPRRegClassID:
270 return 32 - 10;
271 }
272 }
273
274 // Get the other register in a GPRPair.
getPairedGPR(unsigned Reg,bool Odd,const MCRegisterInfo * RI)275 static unsigned getPairedGPR(unsigned Reg, bool Odd, const MCRegisterInfo *RI) {
276 for (MCSuperRegIterator Supers(Reg, RI); Supers.isValid(); ++Supers)
277 if (ARM::GPRPairRegClass.contains(*Supers))
278 return RI->getSubReg(*Supers, Odd ? ARM::gsub_1 : ARM::gsub_0);
279 return 0;
280 }
281
282 // Resolve the RegPairEven / RegPairOdd register allocator hints.
283 bool
getRegAllocationHints(unsigned VirtReg,ArrayRef<MCPhysReg> Order,SmallVectorImpl<MCPhysReg> & Hints,const MachineFunction & MF,const VirtRegMap * VRM,const LiveRegMatrix * Matrix) const284 ARMBaseRegisterInfo::getRegAllocationHints(unsigned VirtReg,
285 ArrayRef<MCPhysReg> Order,
286 SmallVectorImpl<MCPhysReg> &Hints,
287 const MachineFunction &MF,
288 const VirtRegMap *VRM,
289 const LiveRegMatrix *Matrix) const {
290 const MachineRegisterInfo &MRI = MF.getRegInfo();
291 std::pair<unsigned, unsigned> Hint = MRI.getRegAllocationHint(VirtReg);
292
293 unsigned Odd;
294 switch (Hint.first) {
295 case ARMRI::RegPairEven:
296 Odd = 0;
297 break;
298 case ARMRI::RegPairOdd:
299 Odd = 1;
300 break;
301 default:
302 TargetRegisterInfo::getRegAllocationHints(VirtReg, Order, Hints, MF, VRM);
303 return false;
304 }
305
306 // This register should preferably be even (Odd == 0) or odd (Odd == 1).
307 // Check if the other part of the pair has already been assigned, and provide
308 // the paired register as the first hint.
309 unsigned Paired = Hint.second;
310 if (Paired == 0)
311 return false;
312
313 unsigned PairedPhys = 0;
314 if (TargetRegisterInfo::isPhysicalRegister(Paired)) {
315 PairedPhys = Paired;
316 } else if (VRM && VRM->hasPhys(Paired)) {
317 PairedPhys = getPairedGPR(VRM->getPhys(Paired), Odd, this);
318 }
319
320 // First prefer the paired physreg.
321 if (PairedPhys && is_contained(Order, PairedPhys))
322 Hints.push_back(PairedPhys);
323
324 // Then prefer even or odd registers.
325 for (unsigned Reg : Order) {
326 if (Reg == PairedPhys || (getEncodingValue(Reg) & 1) != Odd)
327 continue;
328 // Don't provide hints that are paired to a reserved register.
329 unsigned Paired = getPairedGPR(Reg, !Odd, this);
330 if (!Paired || MRI.isReserved(Paired))
331 continue;
332 Hints.push_back(Reg);
333 }
334 return false;
335 }
336
337 void
updateRegAllocHint(unsigned Reg,unsigned NewReg,MachineFunction & MF) const338 ARMBaseRegisterInfo::updateRegAllocHint(unsigned Reg, unsigned NewReg,
339 MachineFunction &MF) const {
340 MachineRegisterInfo *MRI = &MF.getRegInfo();
341 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(Reg);
342 if ((Hint.first == (unsigned)ARMRI::RegPairOdd ||
343 Hint.first == (unsigned)ARMRI::RegPairEven) &&
344 TargetRegisterInfo::isVirtualRegister(Hint.second)) {
345 // If 'Reg' is one of the even / odd register pair and it's now changed
346 // (e.g. coalesced) into a different register. The other register of the
347 // pair allocation hint must be updated to reflect the relationship
348 // change.
349 unsigned OtherReg = Hint.second;
350 Hint = MRI->getRegAllocationHint(OtherReg);
351 // Make sure the pair has not already divorced.
352 if (Hint.second == Reg) {
353 MRI->setRegAllocationHint(OtherReg, Hint.first, NewReg);
354 if (TargetRegisterInfo::isVirtualRegister(NewReg))
355 MRI->setRegAllocationHint(NewReg,
356 Hint.first == (unsigned)ARMRI::RegPairOdd ? ARMRI::RegPairEven
357 : ARMRI::RegPairOdd, OtherReg);
358 }
359 }
360 }
361
hasBasePointer(const MachineFunction & MF) const362 bool ARMBaseRegisterInfo::hasBasePointer(const MachineFunction &MF) const {
363 const MachineFrameInfo &MFI = MF.getFrameInfo();
364 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
365 const ARMFrameLowering *TFI = getFrameLowering(MF);
366
367 // When outgoing call frames are so large that we adjust the stack pointer
368 // around the call, we can no longer use the stack pointer to reach the
369 // emergency spill slot.
370 if (needsStackRealignment(MF) && !TFI->hasReservedCallFrame(MF))
371 return true;
372
373 // Thumb has trouble with negative offsets from the FP. Thumb2 has a limited
374 // negative range for ldr/str (255), and thumb1 is positive offsets only.
375 // It's going to be better to use the SP or Base Pointer instead. When there
376 // are variable sized objects, we can't reference off of the SP, so we
377 // reserve a Base Pointer.
378 if (AFI->isThumbFunction() && MFI.hasVarSizedObjects()) {
379 // Conservatively estimate whether the negative offset from the frame
380 // pointer will be sufficient to reach. If a function has a smallish
381 // frame, it's less likely to have lots of spills and callee saved
382 // space, so it's all more likely to be within range of the frame pointer.
383 // If it's wrong, the scavenger will still enable access to work, it just
384 // won't be optimal.
385 if (AFI->isThumb2Function() && MFI.getLocalFrameSize() < 128)
386 return false;
387 return true;
388 }
389
390 return false;
391 }
392
canRealignStack(const MachineFunction & MF) const393 bool ARMBaseRegisterInfo::canRealignStack(const MachineFunction &MF) const {
394 const MachineRegisterInfo *MRI = &MF.getRegInfo();
395 const ARMFrameLowering *TFI = getFrameLowering(MF);
396 // We can't realign the stack if:
397 // 1. Dynamic stack realignment is explicitly disabled,
398 // 2. There are VLAs in the function and the base pointer is disabled.
399 if (!TargetRegisterInfo::canRealignStack(MF))
400 return false;
401 // Stack realignment requires a frame pointer. If we already started
402 // register allocation with frame pointer elimination, it is too late now.
403 if (!MRI->canReserveReg(getFramePointerReg(MF.getSubtarget<ARMSubtarget>())))
404 return false;
405 // We may also need a base pointer if there are dynamic allocas or stack
406 // pointer adjustments around calls.
407 if (TFI->hasReservedCallFrame(MF))
408 return true;
409 // A base pointer is required and allowed. Check that it isn't too late to
410 // reserve it.
411 return MRI->canReserveReg(BasePtr);
412 }
413
414 bool ARMBaseRegisterInfo::
cannotEliminateFrame(const MachineFunction & MF) const415 cannotEliminateFrame(const MachineFunction &MF) const {
416 const MachineFrameInfo &MFI = MF.getFrameInfo();
417 if (MF.getTarget().Options.DisableFramePointerElim(MF) && MFI.adjustsStack())
418 return true;
419 return MFI.hasVarSizedObjects() || MFI.isFrameAddressTaken()
420 || needsStackRealignment(MF);
421 }
422
423 unsigned
getFrameRegister(const MachineFunction & MF) const424 ARMBaseRegisterInfo::getFrameRegister(const MachineFunction &MF) const {
425 const ARMSubtarget &STI = MF.getSubtarget<ARMSubtarget>();
426 const ARMFrameLowering *TFI = getFrameLowering(MF);
427
428 if (TFI->hasFP(MF))
429 return getFramePointerReg(STI);
430 return ARM::SP;
431 }
432
433 /// emitLoadConstPool - Emits a load from constpool to materialize the
434 /// specified immediate.
emitLoadConstPool(MachineBasicBlock & MBB,MachineBasicBlock::iterator & MBBI,const DebugLoc & dl,unsigned DestReg,unsigned SubIdx,int Val,ARMCC::CondCodes Pred,unsigned PredReg,unsigned MIFlags) const435 void ARMBaseRegisterInfo::emitLoadConstPool(
436 MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI,
437 const DebugLoc &dl, unsigned DestReg, unsigned SubIdx, int Val,
438 ARMCC::CondCodes Pred, unsigned PredReg, unsigned MIFlags) const {
439 MachineFunction &MF = *MBB.getParent();
440 const TargetInstrInfo &TII = *MF.getSubtarget().getInstrInfo();
441 MachineConstantPool *ConstantPool = MF.getConstantPool();
442 const Constant *C =
443 ConstantInt::get(Type::getInt32Ty(MF.getFunction().getContext()), Val);
444 unsigned Idx = ConstantPool->getConstantPoolIndex(C, 4);
445
446 BuildMI(MBB, MBBI, dl, TII.get(ARM::LDRcp))
447 .addReg(DestReg, getDefRegState(true), SubIdx)
448 .addConstantPoolIndex(Idx)
449 .addImm(0)
450 .add(predOps(Pred, PredReg))
451 .setMIFlags(MIFlags);
452 }
453
454 bool ARMBaseRegisterInfo::
requiresRegisterScavenging(const MachineFunction & MF) const455 requiresRegisterScavenging(const MachineFunction &MF) const {
456 return true;
457 }
458
459 bool ARMBaseRegisterInfo::
trackLivenessAfterRegAlloc(const MachineFunction & MF) const460 trackLivenessAfterRegAlloc(const MachineFunction &MF) const {
461 return true;
462 }
463
464 bool ARMBaseRegisterInfo::
requiresFrameIndexScavenging(const MachineFunction & MF) const465 requiresFrameIndexScavenging(const MachineFunction &MF) const {
466 return true;
467 }
468
469 bool ARMBaseRegisterInfo::
requiresVirtualBaseRegisters(const MachineFunction & MF) const470 requiresVirtualBaseRegisters(const MachineFunction &MF) const {
471 return true;
472 }
473
474 int64_t ARMBaseRegisterInfo::
getFrameIndexInstrOffset(const MachineInstr * MI,int Idx) const475 getFrameIndexInstrOffset(const MachineInstr *MI, int Idx) const {
476 const MCInstrDesc &Desc = MI->getDesc();
477 unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
478 int64_t InstrOffs = 0;
479 int Scale = 1;
480 unsigned ImmIdx = 0;
481 switch (AddrMode) {
482 case ARMII::AddrModeT2_i8:
483 case ARMII::AddrModeT2_i12:
484 case ARMII::AddrMode_i12:
485 InstrOffs = MI->getOperand(Idx+1).getImm();
486 Scale = 1;
487 break;
488 case ARMII::AddrMode5: {
489 // VFP address mode.
490 const MachineOperand &OffOp = MI->getOperand(Idx+1);
491 InstrOffs = ARM_AM::getAM5Offset(OffOp.getImm());
492 if (ARM_AM::getAM5Op(OffOp.getImm()) == ARM_AM::sub)
493 InstrOffs = -InstrOffs;
494 Scale = 4;
495 break;
496 }
497 case ARMII::AddrMode2:
498 ImmIdx = Idx+2;
499 InstrOffs = ARM_AM::getAM2Offset(MI->getOperand(ImmIdx).getImm());
500 if (ARM_AM::getAM2Op(MI->getOperand(ImmIdx).getImm()) == ARM_AM::sub)
501 InstrOffs = -InstrOffs;
502 break;
503 case ARMII::AddrMode3:
504 ImmIdx = Idx+2;
505 InstrOffs = ARM_AM::getAM3Offset(MI->getOperand(ImmIdx).getImm());
506 if (ARM_AM::getAM3Op(MI->getOperand(ImmIdx).getImm()) == ARM_AM::sub)
507 InstrOffs = -InstrOffs;
508 break;
509 case ARMII::AddrModeT1_s:
510 ImmIdx = Idx+1;
511 InstrOffs = MI->getOperand(ImmIdx).getImm();
512 Scale = 4;
513 break;
514 default:
515 llvm_unreachable("Unsupported addressing mode!");
516 }
517
518 return InstrOffs * Scale;
519 }
520
521 /// needsFrameBaseReg - Returns true if the instruction's frame index
522 /// reference would be better served by a base register other than FP
523 /// or SP. Used by LocalStackFrameAllocation to determine which frame index
524 /// references it should create new base registers for.
525 bool ARMBaseRegisterInfo::
needsFrameBaseReg(MachineInstr * MI,int64_t Offset) const526 needsFrameBaseReg(MachineInstr *MI, int64_t Offset) const {
527 for (unsigned i = 0; !MI->getOperand(i).isFI(); ++i) {
528 assert(i < MI->getNumOperands() &&"Instr doesn't have FrameIndex operand!");
529 }
530
531 // It's the load/store FI references that cause issues, as it can be difficult
532 // to materialize the offset if it won't fit in the literal field. Estimate
533 // based on the size of the local frame and some conservative assumptions
534 // about the rest of the stack frame (note, this is pre-regalloc, so
535 // we don't know everything for certain yet) whether this offset is likely
536 // to be out of range of the immediate. Return true if so.
537
538 // We only generate virtual base registers for loads and stores, so
539 // return false for everything else.
540 unsigned Opc = MI->getOpcode();
541 switch (Opc) {
542 case ARM::LDRi12: case ARM::LDRH: case ARM::LDRBi12:
543 case ARM::STRi12: case ARM::STRH: case ARM::STRBi12:
544 case ARM::t2LDRi12: case ARM::t2LDRi8:
545 case ARM::t2STRi12: case ARM::t2STRi8:
546 case ARM::VLDRS: case ARM::VLDRD:
547 case ARM::VSTRS: case ARM::VSTRD:
548 case ARM::tSTRspi: case ARM::tLDRspi:
549 break;
550 default:
551 return false;
552 }
553
554 // Without a virtual base register, if the function has variable sized
555 // objects, all fixed-size local references will be via the frame pointer,
556 // Approximate the offset and see if it's legal for the instruction.
557 // Note that the incoming offset is based on the SP value at function entry,
558 // so it'll be negative.
559 MachineFunction &MF = *MI->getParent()->getParent();
560 const ARMFrameLowering *TFI = getFrameLowering(MF);
561 MachineFrameInfo &MFI = MF.getFrameInfo();
562 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
563
564 // Estimate an offset from the frame pointer.
565 // Conservatively assume all callee-saved registers get pushed. R4-R6
566 // will be earlier than the FP, so we ignore those.
567 // R7, LR
568 int64_t FPOffset = Offset - 8;
569 // ARM and Thumb2 functions also need to consider R8-R11 and D8-D15
570 if (!AFI->isThumbFunction() || !AFI->isThumb1OnlyFunction())
571 FPOffset -= 80;
572 // Estimate an offset from the stack pointer.
573 // The incoming offset is relating to the SP at the start of the function,
574 // but when we access the local it'll be relative to the SP after local
575 // allocation, so adjust our SP-relative offset by that allocation size.
576 Offset += MFI.getLocalFrameSize();
577 // Assume that we'll have at least some spill slots allocated.
578 // FIXME: This is a total SWAG number. We should run some statistics
579 // and pick a real one.
580 Offset += 128; // 128 bytes of spill slots
581
582 // If there's a frame pointer and the addressing mode allows it, try using it.
583 // The FP is only available if there is no dynamic realignment. We
584 // don't know for sure yet whether we'll need that, so we guess based
585 // on whether there are any local variables that would trigger it.
586 unsigned StackAlign = TFI->getStackAlignment();
587 if (TFI->hasFP(MF) &&
588 !((MFI.getLocalFrameMaxAlign() > StackAlign) && canRealignStack(MF))) {
589 if (isFrameOffsetLegal(MI, getFrameRegister(MF), FPOffset))
590 return false;
591 }
592 // If we can reference via the stack pointer, try that.
593 // FIXME: This (and the code that resolves the references) can be improved
594 // to only disallow SP relative references in the live range of
595 // the VLA(s). In practice, it's unclear how much difference that
596 // would make, but it may be worth doing.
597 if (!MFI.hasVarSizedObjects() && isFrameOffsetLegal(MI, ARM::SP, Offset))
598 return false;
599
600 // The offset likely isn't legal, we want to allocate a virtual base register.
601 return true;
602 }
603
604 /// materializeFrameBaseRegister - Insert defining instruction(s) for BaseReg to
605 /// be a pointer to FrameIdx at the beginning of the basic block.
606 void ARMBaseRegisterInfo::
materializeFrameBaseRegister(MachineBasicBlock * MBB,unsigned BaseReg,int FrameIdx,int64_t Offset) const607 materializeFrameBaseRegister(MachineBasicBlock *MBB,
608 unsigned BaseReg, int FrameIdx,
609 int64_t Offset) const {
610 ARMFunctionInfo *AFI = MBB->getParent()->getInfo<ARMFunctionInfo>();
611 unsigned ADDriOpc = !AFI->isThumbFunction() ? ARM::ADDri :
612 (AFI->isThumb1OnlyFunction() ? ARM::tADDframe : ARM::t2ADDri);
613
614 MachineBasicBlock::iterator Ins = MBB->begin();
615 DebugLoc DL; // Defaults to "unknown"
616 if (Ins != MBB->end())
617 DL = Ins->getDebugLoc();
618
619 const MachineFunction &MF = *MBB->getParent();
620 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
621 const TargetInstrInfo &TII = *MF.getSubtarget().getInstrInfo();
622 const MCInstrDesc &MCID = TII.get(ADDriOpc);
623 MRI.constrainRegClass(BaseReg, TII.getRegClass(MCID, 0, this, MF));
624
625 MachineInstrBuilder MIB = BuildMI(*MBB, Ins, DL, MCID, BaseReg)
626 .addFrameIndex(FrameIdx).addImm(Offset);
627
628 if (!AFI->isThumb1OnlyFunction())
629 MIB.add(predOps(ARMCC::AL)).add(condCodeOp());
630 }
631
resolveFrameIndex(MachineInstr & MI,unsigned BaseReg,int64_t Offset) const632 void ARMBaseRegisterInfo::resolveFrameIndex(MachineInstr &MI, unsigned BaseReg,
633 int64_t Offset) const {
634 MachineBasicBlock &MBB = *MI.getParent();
635 MachineFunction &MF = *MBB.getParent();
636 const ARMBaseInstrInfo &TII =
637 *static_cast<const ARMBaseInstrInfo *>(MF.getSubtarget().getInstrInfo());
638 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
639 int Off = Offset; // ARM doesn't need the general 64-bit offsets
640 unsigned i = 0;
641
642 assert(!AFI->isThumb1OnlyFunction() &&
643 "This resolveFrameIndex does not support Thumb1!");
644
645 while (!MI.getOperand(i).isFI()) {
646 ++i;
647 assert(i < MI.getNumOperands() && "Instr doesn't have FrameIndex operand!");
648 }
649 bool Done = false;
650 if (!AFI->isThumbFunction())
651 Done = rewriteARMFrameIndex(MI, i, BaseReg, Off, TII);
652 else {
653 assert(AFI->isThumb2Function());
654 Done = rewriteT2FrameIndex(MI, i, BaseReg, Off, TII);
655 }
656 assert(Done && "Unable to resolve frame index!");
657 (void)Done;
658 }
659
isFrameOffsetLegal(const MachineInstr * MI,unsigned BaseReg,int64_t Offset) const660 bool ARMBaseRegisterInfo::isFrameOffsetLegal(const MachineInstr *MI, unsigned BaseReg,
661 int64_t Offset) const {
662 const MCInstrDesc &Desc = MI->getDesc();
663 unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
664 unsigned i = 0;
665 for (; !MI->getOperand(i).isFI(); ++i)
666 assert(i+1 < MI->getNumOperands() && "Instr doesn't have FrameIndex operand!");
667
668 // AddrMode4 and AddrMode6 cannot handle any offset.
669 if (AddrMode == ARMII::AddrMode4 || AddrMode == ARMII::AddrMode6)
670 return Offset == 0;
671
672 unsigned NumBits = 0;
673 unsigned Scale = 1;
674 bool isSigned = true;
675 switch (AddrMode) {
676 case ARMII::AddrModeT2_i8:
677 case ARMII::AddrModeT2_i12:
678 // i8 supports only negative, and i12 supports only positive, so
679 // based on Offset sign, consider the appropriate instruction
680 Scale = 1;
681 if (Offset < 0) {
682 NumBits = 8;
683 Offset = -Offset;
684 } else {
685 NumBits = 12;
686 }
687 break;
688 case ARMII::AddrMode5:
689 // VFP address mode.
690 NumBits = 8;
691 Scale = 4;
692 break;
693 case ARMII::AddrMode_i12:
694 case ARMII::AddrMode2:
695 NumBits = 12;
696 break;
697 case ARMII::AddrMode3:
698 NumBits = 8;
699 break;
700 case ARMII::AddrModeT1_s:
701 NumBits = (BaseReg == ARM::SP ? 8 : 5);
702 Scale = 4;
703 isSigned = false;
704 break;
705 default:
706 llvm_unreachable("Unsupported addressing mode!");
707 }
708
709 Offset += getFrameIndexInstrOffset(MI, i);
710 // Make sure the offset is encodable for instructions that scale the
711 // immediate.
712 if ((Offset & (Scale-1)) != 0)
713 return false;
714
715 if (isSigned && Offset < 0)
716 Offset = -Offset;
717
718 unsigned Mask = (1 << NumBits) - 1;
719 if ((unsigned)Offset <= Mask * Scale)
720 return true;
721
722 return false;
723 }
724
725 void
eliminateFrameIndex(MachineBasicBlock::iterator II,int SPAdj,unsigned FIOperandNum,RegScavenger * RS) const726 ARMBaseRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II,
727 int SPAdj, unsigned FIOperandNum,
728 RegScavenger *RS) const {
729 MachineInstr &MI = *II;
730 MachineBasicBlock &MBB = *MI.getParent();
731 MachineFunction &MF = *MBB.getParent();
732 const ARMBaseInstrInfo &TII =
733 *static_cast<const ARMBaseInstrInfo *>(MF.getSubtarget().getInstrInfo());
734 const ARMFrameLowering *TFI = getFrameLowering(MF);
735 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
736 assert(!AFI->isThumb1OnlyFunction() &&
737 "This eliminateFrameIndex does not support Thumb1!");
738 int FrameIndex = MI.getOperand(FIOperandNum).getIndex();
739 unsigned FrameReg;
740
741 int Offset = TFI->ResolveFrameIndexReference(MF, FrameIndex, FrameReg, SPAdj);
742
743 // PEI::scavengeFrameVirtualRegs() cannot accurately track SPAdj because the
744 // call frame setup/destroy instructions have already been eliminated. That
745 // means the stack pointer cannot be used to access the emergency spill slot
746 // when !hasReservedCallFrame().
747 #ifndef NDEBUG
748 if (RS && FrameReg == ARM::SP && RS->isScavengingFrameIndex(FrameIndex)){
749 assert(TFI->hasReservedCallFrame(MF) &&
750 "Cannot use SP to access the emergency spill slot in "
751 "functions without a reserved call frame");
752 assert(!MF.getFrameInfo().hasVarSizedObjects() &&
753 "Cannot use SP to access the emergency spill slot in "
754 "functions with variable sized frame objects");
755 }
756 #endif // NDEBUG
757
758 assert(!MI.isDebugValue() && "DBG_VALUEs should be handled in target-independent code");
759
760 // Modify MI as necessary to handle as much of 'Offset' as possible
761 bool Done = false;
762 if (!AFI->isThumbFunction())
763 Done = rewriteARMFrameIndex(MI, FIOperandNum, FrameReg, Offset, TII);
764 else {
765 assert(AFI->isThumb2Function());
766 Done = rewriteT2FrameIndex(MI, FIOperandNum, FrameReg, Offset, TII);
767 }
768 if (Done)
769 return;
770
771 // If we get here, the immediate doesn't fit into the instruction. We folded
772 // as much as possible above, handle the rest, providing a register that is
773 // SP+LargeImm.
774 assert((Offset ||
775 (MI.getDesc().TSFlags & ARMII::AddrModeMask) == ARMII::AddrMode4 ||
776 (MI.getDesc().TSFlags & ARMII::AddrModeMask) == ARMII::AddrMode6) &&
777 "This code isn't needed if offset already handled!");
778
779 unsigned ScratchReg = 0;
780 int PIdx = MI.findFirstPredOperandIdx();
781 ARMCC::CondCodes Pred = (PIdx == -1)
782 ? ARMCC::AL : (ARMCC::CondCodes)MI.getOperand(PIdx).getImm();
783 unsigned PredReg = (PIdx == -1) ? 0 : MI.getOperand(PIdx+1).getReg();
784 if (Offset == 0)
785 // Must be addrmode4/6.
786 MI.getOperand(FIOperandNum).ChangeToRegister(FrameReg, false, false, false);
787 else {
788 ScratchReg = MF.getRegInfo().createVirtualRegister(&ARM::GPRRegClass);
789 if (!AFI->isThumbFunction())
790 emitARMRegPlusImmediate(MBB, II, MI.getDebugLoc(), ScratchReg, FrameReg,
791 Offset, Pred, PredReg, TII);
792 else {
793 assert(AFI->isThumb2Function());
794 emitT2RegPlusImmediate(MBB, II, MI.getDebugLoc(), ScratchReg, FrameReg,
795 Offset, Pred, PredReg, TII);
796 }
797 // Update the original instruction to use the scratch register.
798 MI.getOperand(FIOperandNum).ChangeToRegister(ScratchReg, false, false,true);
799 }
800 }
801
shouldCoalesce(MachineInstr * MI,const TargetRegisterClass * SrcRC,unsigned SubReg,const TargetRegisterClass * DstRC,unsigned DstSubReg,const TargetRegisterClass * NewRC,LiveIntervals & LIS) const802 bool ARMBaseRegisterInfo::shouldCoalesce(MachineInstr *MI,
803 const TargetRegisterClass *SrcRC,
804 unsigned SubReg,
805 const TargetRegisterClass *DstRC,
806 unsigned DstSubReg,
807 const TargetRegisterClass *NewRC,
808 LiveIntervals &LIS) const {
809 auto MBB = MI->getParent();
810 auto MF = MBB->getParent();
811 const MachineRegisterInfo &MRI = MF->getRegInfo();
812 // If not copying into a sub-register this should be ok because we shouldn't
813 // need to split the reg.
814 if (!DstSubReg)
815 return true;
816 // Small registers don't frequently cause a problem, so we can coalesce them.
817 if (getRegSizeInBits(*NewRC) < 256 && getRegSizeInBits(*DstRC) < 256 &&
818 getRegSizeInBits(*SrcRC) < 256)
819 return true;
820
821 auto NewRCWeight =
822 MRI.getTargetRegisterInfo()->getRegClassWeight(NewRC);
823 auto SrcRCWeight =
824 MRI.getTargetRegisterInfo()->getRegClassWeight(SrcRC);
825 auto DstRCWeight =
826 MRI.getTargetRegisterInfo()->getRegClassWeight(DstRC);
827 // If the source register class is more expensive than the destination, the
828 // coalescing is probably profitable.
829 if (SrcRCWeight.RegWeight > NewRCWeight.RegWeight)
830 return true;
831 if (DstRCWeight.RegWeight > NewRCWeight.RegWeight)
832 return true;
833
834 // If the register allocator isn't constrained, we can always allow coalescing
835 // unfortunately we don't know yet if we will be constrained.
836 // The goal of this heuristic is to restrict how many expensive registers
837 // we allow to coalesce in a given basic block.
838 auto AFI = MF->getInfo<ARMFunctionInfo>();
839 auto It = AFI->getCoalescedWeight(MBB);
840
841 LLVM_DEBUG(dbgs() << "\tARM::shouldCoalesce - Coalesced Weight: "
842 << It->second << "\n");
843 LLVM_DEBUG(dbgs() << "\tARM::shouldCoalesce - Reg Weight: "
844 << NewRCWeight.RegWeight << "\n");
845
846 // This number is the largest round number that which meets the criteria:
847 // (1) addresses PR18825
848 // (2) generates better code in some test cases (like vldm-shed-a9.ll)
849 // (3) Doesn't regress any test cases (in-tree, test-suite, and SPEC)
850 // In practice the SizeMultiplier will only factor in for straight line code
851 // that uses a lot of NEON vectors, which isn't terribly common.
852 unsigned SizeMultiplier = MBB->size()/100;
853 SizeMultiplier = SizeMultiplier ? SizeMultiplier : 1;
854 if (It->second < NewRCWeight.WeightLimit * SizeMultiplier) {
855 It->second += NewRCWeight.RegWeight;
856 return true;
857 }
858 return false;
859 }
860