1 //===-- ARMBaseRegisterInfo.cpp - ARM Register Information ----------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains the base ARM implementation of TargetRegisterInfo class.
12 //===----------------------------------------------------------------------===//
14 #include "ARMBaseRegisterInfo.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"
51 #define DEBUG_TYPE "arm-register-info"
53 #define GET_REGINFO_TARGET_DESC
54 #include "ARMGenRegisterInfo.inc"
58 ARMBaseRegisterInfo::ARMBaseRegisterInfo()
59 : ARMGenRegisterInfo(ARM::LR
, 0, 0, ARM::PC
) {}
61 static unsigned getFramePointerReg(const ARMSubtarget
&STI
) {
62 return STI
.useR7AsFramePointer() ? ARM::R7
: ARM::R11
;
66 ARMBaseRegisterInfo::getCalleeSavedRegs(const MachineFunction
*MF
) const {
67 const ARMSubtarget
&STI
= MF
->getSubtarget
<ARMSubtarget
>();
68 bool UseSplitPush
= STI
.splitFramePushPop(*MF
);
69 const MCPhysReg
*RegList
=
72 : (UseSplitPush
? CSR_AAPCS_SplitPush_SaveList
: CSR_AAPCS_SaveList
);
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")) {
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
;
89 // Generally only R13-R14 (i.e. SP, LR) are automatically preserved by
90 // exception handling.
91 return CSR_GenericInt_SaveList
;
95 if (STI
.getTargetLowering()->supportSwiftError() &&
96 F
.getAttributes().hasAttrSomewhere(Attribute::SwiftError
)) {
97 if (STI
.isTargetDarwin())
98 return CSR_iOS_SwiftError_SaveList
;
100 return UseSplitPush
? CSR_AAPCS_SplitPush_SwiftError_SaveList
:
101 CSR_AAPCS_SwiftError_SaveList
;
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
;
111 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
;
121 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
;
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
;
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
;
139 ARMBaseRegisterInfo::getNoPreservedMask() const {
140 return CSR_NoRegs_RegMask
;
144 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
;
151 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
;
156 return CSR_FPRegs_RegMask
;
160 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)
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
174 return STI
.isTargetDarwin() ? CSR_iOS_ThisReturn_RegMask
175 : CSR_AAPCS_ThisReturn_RegMask
;
178 BitVector
ARMBaseRegisterInfo::
179 getReservedRegs(const MachineFunction
&MF
) const {
180 const ARMSubtarget
&STI
= MF
.getSubtarget
<ARMSubtarget
>();
181 const ARMFrameLowering
*TFI
= getFrameLowering(MF
);
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
);
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
);
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
);
208 assert(checkAllSuperRegsMarked(Reserved
));
212 const TargetRegisterClass
*
213 ARMBaseRegisterInfo::getLargestLegalSuperClass(const TargetRegisterClass
*RC
,
214 const MachineFunction
&) const {
215 const TargetRegisterClass
*Super
= RC
;
216 TargetRegisterClass::sc_iterator I
= RC
->getSuperClasses();
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
:
233 const TargetRegisterClass
*
234 ARMBaseRegisterInfo::getPointerRegClass(const MachineFunction
&MF
, unsigned Kind
)
236 return &ARM::GPRRegClass
;
239 const TargetRegisterClass
*
240 ARMBaseRegisterInfo::getCrossCopyRegClass(const TargetRegisterClass
*RC
) const {
241 if (RC
== &ARM::CCRRegClass
)
242 return &ARM::rGPRRegClass
; // Can't copy CCR registers.
247 ARMBaseRegisterInfo::getRegPressureLimit(const TargetRegisterClass
*RC
,
248 MachineFunction
&MF
) const {
249 const ARMSubtarget
&STI
= MF
.getSubtarget
<ARMSubtarget
>();
250 const ARMFrameLowering
*TFI
= getFrameLowering(MF
);
252 switch (RC
->getID()) {
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;
263 case ARM::GPRRegClassID
: {
264 bool HasFP
= MF
.getFrameInfo().isMaxCallFrameSizeComputed()
265 ? TFI
->hasFP(MF
) : true;
266 return 10 - HasFP
- (STI
.isR9Reserved() ? 1 : 0);
268 case ARM::SPRRegClassID
: // Currently not used as 'rep' register class.
269 case ARM::DPRRegClassID
:
274 // Get the other register in a GPRPair.
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
);
282 // Resolve the RegPairEven / RegPairOdd register allocator hints.
284 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
);
294 switch (Hint
.first
) {
295 case ARMRI::RegPairEven
:
298 case ARMRI::RegPairOdd
:
302 TargetRegisterInfo::getRegAllocationHints(VirtReg
, Order
, Hints
, MF
, VRM
);
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
;
313 unsigned PairedPhys
= 0;
314 if (TargetRegisterInfo::isPhysicalRegister(Paired
)) {
316 } else if (VRM
&& VRM
->hasPhys(Paired
)) {
317 PairedPhys
= getPairedGPR(VRM
->getPhys(Paired
), Odd
, this);
320 // First prefer the paired physreg.
321 if (PairedPhys
&& is_contained(Order
, PairedPhys
))
322 Hints
.push_back(PairedPhys
);
324 // Then prefer even or odd registers.
325 for (unsigned Reg
: Order
) {
326 if (Reg
== PairedPhys
|| (getEncodingValue(Reg
) & 1) != Odd
)
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
))
332 Hints
.push_back(Reg
);
338 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
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
);
362 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
);
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
))
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
385 if (AFI
->isThumb2Function() && MFI
.getLocalFrameSize() < 128)
393 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
))
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
>())))
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
))
409 // A base pointer is required and allowed. Check that it isn't too late to
411 return MRI
->canReserveReg(BasePtr
);
414 bool ARMBaseRegisterInfo::
415 cannotEliminateFrame(const MachineFunction
&MF
) const {
416 const MachineFrameInfo
&MFI
= MF
.getFrameInfo();
417 if (MF
.getTarget().Options
.DisableFramePointerElim(MF
) && MFI
.adjustsStack())
419 return MFI
.hasVarSizedObjects() || MFI
.isFrameAddressTaken()
420 || needsStackRealignment(MF
);
424 ARMBaseRegisterInfo::getFrameRegister(const MachineFunction
&MF
) const {
425 const ARMSubtarget
&STI
= MF
.getSubtarget
<ARMSubtarget
>();
426 const ARMFrameLowering
*TFI
= getFrameLowering(MF
);
429 return getFramePointerReg(STI
);
433 /// emitLoadConstPool - Emits a load from constpool to materialize the
434 /// specified immediate.
435 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();
443 ConstantInt::get(Type::getInt32Ty(MF
.getFunction().getContext()), Val
);
444 unsigned Idx
= ConstantPool
->getConstantPoolIndex(C
, 4);
446 BuildMI(MBB
, MBBI
, dl
, TII
.get(ARM::LDRcp
))
447 .addReg(DestReg
, getDefRegState(true), SubIdx
)
448 .addConstantPoolIndex(Idx
)
450 .add(predOps(Pred
, PredReg
))
451 .setMIFlags(MIFlags
);
454 bool ARMBaseRegisterInfo::
455 requiresRegisterScavenging(const MachineFunction
&MF
) const {
459 bool ARMBaseRegisterInfo::
460 trackLivenessAfterRegAlloc(const MachineFunction
&MF
) const {
464 bool ARMBaseRegisterInfo::
465 requiresFrameIndexScavenging(const MachineFunction
&MF
) const {
469 bool ARMBaseRegisterInfo::
470 requiresVirtualBaseRegisters(const MachineFunction
&MF
) const {
474 int64_t ARMBaseRegisterInfo::
475 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;
482 case ARMII::AddrModeT2_i8
:
483 case ARMII::AddrModeT2_i12
:
484 case ARMII::AddrMode_i12
:
485 InstrOffs
= MI
->getOperand(Idx
+1).getImm();
488 case ARMII::AddrMode5
: {
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
;
497 case ARMII::AddrMode2
:
499 InstrOffs
= ARM_AM::getAM2Offset(MI
->getOperand(ImmIdx
).getImm());
500 if (ARM_AM::getAM2Op(MI
->getOperand(ImmIdx
).getImm()) == ARM_AM::sub
)
501 InstrOffs
= -InstrOffs
;
503 case ARMII::AddrMode3
:
505 InstrOffs
= ARM_AM::getAM3Offset(MI
->getOperand(ImmIdx
).getImm());
506 if (ARM_AM::getAM3Op(MI
->getOperand(ImmIdx
).getImm()) == ARM_AM::sub
)
507 InstrOffs
= -InstrOffs
;
509 case ARMII::AddrModeT1_s
:
511 InstrOffs
= MI
->getOperand(ImmIdx
).getImm();
515 llvm_unreachable("Unsupported addressing mode!");
518 return InstrOffs
* Scale
;
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::
526 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!");
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.
538 // We only generate virtual base registers for loads and stores, so
539 // return false for everything else.
540 unsigned Opc
= MI
->getOpcode();
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
:
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
>();
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.
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())
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
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
))
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
))
600 // The offset likely isn't legal, we want to allocate a virtual base register.
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::
607 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
);
614 MachineBasicBlock::iterator Ins
= MBB
->begin();
615 DebugLoc DL
; // Defaults to "unknown"
616 if (Ins
!= MBB
->end())
617 DL
= Ins
->getDebugLoc();
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
));
625 MachineInstrBuilder MIB
= BuildMI(*MBB
, Ins
, DL
, MCID
, BaseReg
)
626 .addFrameIndex(FrameIdx
).addImm(Offset
);
628 if (!AFI
->isThumb1OnlyFunction())
629 MIB
.add(predOps(ARMCC::AL
)).add(condCodeOp());
632 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
642 assert(!AFI
->isThumb1OnlyFunction() &&
643 "This resolveFrameIndex does not support Thumb1!");
645 while (!MI
.getOperand(i
).isFI()) {
647 assert(i
< MI
.getNumOperands() && "Instr doesn't have FrameIndex operand!");
650 if (!AFI
->isThumbFunction())
651 Done
= rewriteARMFrameIndex(MI
, i
, BaseReg
, Off
, TII
);
653 assert(AFI
->isThumb2Function());
654 Done
= rewriteT2FrameIndex(MI
, i
, BaseReg
, Off
, TII
);
656 assert(Done
&& "Unable to resolve frame index!");
660 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
);
665 for (; !MI
->getOperand(i
).isFI(); ++i
)
666 assert(i
+1 < MI
->getNumOperands() && "Instr doesn't have FrameIndex operand!");
668 // AddrMode4 and AddrMode6 cannot handle any offset.
669 if (AddrMode
== ARMII::AddrMode4
|| AddrMode
== ARMII::AddrMode6
)
672 unsigned NumBits
= 0;
674 bool isSigned
= true;
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
688 case ARMII::AddrMode5
:
693 case ARMII::AddrMode_i12
:
694 case ARMII::AddrMode2
:
697 case ARMII::AddrMode3
:
700 case ARMII::AddrModeT1_s
:
701 NumBits
= (BaseReg
== ARM::SP
? 8 : 5);
706 llvm_unreachable("Unsupported addressing mode!");
709 Offset
+= getFrameIndexInstrOffset(MI
, i
);
710 // Make sure the offset is encodable for instructions that scale the
712 if ((Offset
& (Scale
-1)) != 0)
715 if (isSigned
&& Offset
< 0)
718 unsigned Mask
= (1 << NumBits
) - 1;
719 if ((unsigned)Offset
<= Mask
* Scale
)
726 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();
741 int Offset
= TFI
->ResolveFrameIndexReference(MF
, FrameIndex
, FrameReg
, SPAdj
);
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().
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");
758 assert(!MI
.isDebugValue() && "DBG_VALUEs should be handled in target-independent code");
760 // Modify MI as necessary to handle as much of 'Offset' as possible
762 if (!AFI
->isThumbFunction())
763 Done
= rewriteARMFrameIndex(MI
, FIOperandNum
, FrameReg
, Offset
, TII
);
765 assert(AFI
->isThumb2Function());
766 Done
= rewriteT2FrameIndex(MI
, FIOperandNum
, FrameReg
, Offset
, TII
);
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
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!");
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();
785 // Must be addrmode4/6.
786 MI
.getOperand(FIOperandNum
).ChangeToRegister(FrameReg
, false, false, false);
788 ScratchReg
= MF
.getRegInfo().createVirtualRegister(&ARM::GPRRegClass
);
789 if (!AFI
->isThumbFunction())
790 emitARMRegPlusImmediate(MBB
, II
, MI
.getDebugLoc(), ScratchReg
, FrameReg
,
791 Offset
, Pred
, PredReg
, TII
);
793 assert(AFI
->isThumb2Function());
794 emitT2RegPlusImmediate(MBB
, II
, MI
.getDebugLoc(), ScratchReg
, FrameReg
,
795 Offset
, Pred
, PredReg
, TII
);
797 // Update the original instruction to use the scratch register.
798 MI
.getOperand(FIOperandNum
).ChangeToRegister(ScratchReg
, false, false,true);
802 bool ARMBaseRegisterInfo::shouldCoalesce(MachineInstr
*MI
,
803 const TargetRegisterClass
*SrcRC
,
805 const TargetRegisterClass
*DstRC
,
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.
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)
822 MRI
.getTargetRegisterInfo()->getRegClassWeight(NewRC
);
824 MRI
.getTargetRegisterInfo()->getRegClassWeight(SrcRC
);
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
)
831 if (DstRCWeight
.RegWeight
> NewRCWeight
.RegWeight
)
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
);
841 LLVM_DEBUG(dbgs() << "\tARM::shouldCoalesce - Coalesced Weight: "
842 << It
->second
<< "\n");
843 LLVM_DEBUG(dbgs() << "\tARM::shouldCoalesce - Reg Weight: "
844 << NewRCWeight
.RegWeight
<< "\n");
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
;