1 //===- AArch64RegisterInfo.cpp - AArch64 Register Information -------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file contains the AArch64 implementation of the TargetRegisterInfo 10 // class. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "AArch64RegisterInfo.h" 15 #include "AArch64FrameLowering.h" 16 #include "AArch64InstrInfo.h" 17 #include "AArch64MachineFunctionInfo.h" 18 #include "AArch64StackOffset.h" 19 #include "AArch64Subtarget.h" 20 #include "MCTargetDesc/AArch64AddressingModes.h" 21 #include "llvm/ADT/BitVector.h" 22 #include "llvm/ADT/Triple.h" 23 #include "llvm/CodeGen/MachineFrameInfo.h" 24 #include "llvm/CodeGen/MachineInstrBuilder.h" 25 #include "llvm/CodeGen/MachineRegisterInfo.h" 26 #include "llvm/CodeGen/RegisterScavenging.h" 27 #include "llvm/CodeGen/TargetFrameLowering.h" 28 #include "llvm/IR/DiagnosticInfo.h" 29 #include "llvm/IR/Function.h" 30 #include "llvm/Support/raw_ostream.h" 31 #include "llvm/Target/TargetOptions.h" 32 33 using namespace llvm; 34 35 #define GET_REGINFO_TARGET_DESC 36 #include "AArch64GenRegisterInfo.inc" 37 38 AArch64RegisterInfo::AArch64RegisterInfo(const Triple &TT) 39 : AArch64GenRegisterInfo(AArch64::LR), TT(TT) { 40 AArch64_MC::initLLVMToCVRegMapping(this); 41 } 42 43 /// Return whether the register needs a CFI entry. Not all unwinders may know 44 /// about SVE registers, so we assume the lowest common denominator, i.e. the 45 /// callee-saves required by the base ABI. For the SVE registers z8-z15 only the 46 /// lower 64-bits (d8-d15) need to be saved. The lower 64-bits subreg is 47 /// returned in \p RegToUseForCFI. 48 bool AArch64RegisterInfo::regNeedsCFI(unsigned Reg, 49 unsigned &RegToUseForCFI) const { 50 if (AArch64::PPRRegClass.contains(Reg)) 51 return false; 52 53 if (AArch64::ZPRRegClass.contains(Reg)) { 54 RegToUseForCFI = getSubReg(Reg, AArch64::dsub); 55 for (int I = 0; CSR_AArch64_AAPCS_SaveList[I]; ++I) { 56 if (CSR_AArch64_AAPCS_SaveList[I] == RegToUseForCFI) 57 return true; 58 } 59 return false; 60 } 61 62 RegToUseForCFI = Reg; 63 return true; 64 } 65 66 bool AArch64RegisterInfo::hasSVEArgsOrReturn(const MachineFunction *MF) { 67 const Function &F = MF->getFunction(); 68 return isa<ScalableVectorType>(F.getReturnType()) || 69 any_of(F.args(), [](const Argument &Arg) { 70 return isa<ScalableVectorType>(Arg.getType()); 71 }); 72 } 73 74 const MCPhysReg * 75 AArch64RegisterInfo::getCalleeSavedRegs(const MachineFunction *MF) const { 76 assert(MF && "Invalid MachineFunction pointer."); 77 78 if (MF->getFunction().getCallingConv() == CallingConv::GHC) 79 // GHC set of callee saved regs is empty as all those regs are 80 // used for passing STG regs around 81 return CSR_AArch64_NoRegs_SaveList; 82 if (MF->getFunction().getCallingConv() == CallingConv::AnyReg) 83 return CSR_AArch64_AllRegs_SaveList; 84 85 // Darwin has its own CSR_AArch64_AAPCS_SaveList, which means most CSR save 86 // lists depending on that will need to have their Darwin variant as well. 87 if (MF->getSubtarget<AArch64Subtarget>().isTargetDarwin()) 88 return getDarwinCalleeSavedRegs(MF); 89 90 if (MF->getFunction().getCallingConv() == CallingConv::CFGuard_Check) 91 return CSR_Win_AArch64_CFGuard_Check_SaveList; 92 if (MF->getSubtarget<AArch64Subtarget>().isTargetWindows()) 93 return CSR_Win_AArch64_AAPCS_SaveList; 94 if (MF->getFunction().getCallingConv() == CallingConv::AArch64_VectorCall) 95 return CSR_AArch64_AAVPCS_SaveList; 96 if (MF->getFunction().getCallingConv() == CallingConv::AArch64_SVE_VectorCall) 97 return CSR_AArch64_SVE_AAPCS_SaveList; 98 if (MF->getSubtarget<AArch64Subtarget>().getTargetLowering() 99 ->supportSwiftError() && 100 MF->getFunction().getAttributes().hasAttrSomewhere( 101 Attribute::SwiftError)) 102 return CSR_AArch64_AAPCS_SwiftError_SaveList; 103 if (MF->getFunction().getCallingConv() == CallingConv::PreserveMost) 104 return CSR_AArch64_RT_MostRegs_SaveList; 105 if (MF->getFunction().getCallingConv() == CallingConv::Win64) 106 // This is for OSes other than Windows; Windows is a separate case further 107 // above. 108 return CSR_AArch64_AAPCS_X18_SaveList; 109 if (hasSVEArgsOrReturn(MF)) 110 return CSR_AArch64_SVE_AAPCS_SaveList; 111 return CSR_AArch64_AAPCS_SaveList; 112 } 113 114 const MCPhysReg * 115 AArch64RegisterInfo::getDarwinCalleeSavedRegs(const MachineFunction *MF) const { 116 assert(MF && "Invalid MachineFunction pointer."); 117 assert(MF->getSubtarget<AArch64Subtarget>().isTargetDarwin() && 118 "Invalid subtarget for getDarwinCalleeSavedRegs"); 119 120 if (MF->getFunction().getCallingConv() == CallingConv::CFGuard_Check) 121 report_fatal_error( 122 "Calling convention CFGuard_Check is unsupported on Darwin."); 123 if (MF->getFunction().getCallingConv() == CallingConv::AArch64_VectorCall) 124 return CSR_Darwin_AArch64_AAVPCS_SaveList; 125 if (MF->getFunction().getCallingConv() == CallingConv::AArch64_SVE_VectorCall) 126 report_fatal_error( 127 "Calling convention SVE_VectorCall is unsupported on Darwin."); 128 if (MF->getFunction().getCallingConv() == CallingConv::CXX_FAST_TLS) 129 return MF->getInfo<AArch64FunctionInfo>()->isSplitCSR() 130 ? CSR_Darwin_AArch64_CXX_TLS_PE_SaveList 131 : CSR_Darwin_AArch64_CXX_TLS_SaveList; 132 if (MF->getSubtarget<AArch64Subtarget>().getTargetLowering() 133 ->supportSwiftError() && 134 MF->getFunction().getAttributes().hasAttrSomewhere( 135 Attribute::SwiftError)) 136 return CSR_Darwin_AArch64_AAPCS_SwiftError_SaveList; 137 if (MF->getFunction().getCallingConv() == CallingConv::PreserveMost) 138 return CSR_Darwin_AArch64_RT_MostRegs_SaveList; 139 return CSR_Darwin_AArch64_AAPCS_SaveList; 140 } 141 142 const MCPhysReg *AArch64RegisterInfo::getCalleeSavedRegsViaCopy( 143 const MachineFunction *MF) const { 144 assert(MF && "Invalid MachineFunction pointer."); 145 if (MF->getFunction().getCallingConv() == CallingConv::CXX_FAST_TLS && 146 MF->getInfo<AArch64FunctionInfo>()->isSplitCSR()) 147 return CSR_Darwin_AArch64_CXX_TLS_ViaCopy_SaveList; 148 return nullptr; 149 } 150 151 void AArch64RegisterInfo::UpdateCustomCalleeSavedRegs( 152 MachineFunction &MF) const { 153 const MCPhysReg *CSRs = getCalleeSavedRegs(&MF); 154 SmallVector<MCPhysReg, 32> UpdatedCSRs; 155 for (const MCPhysReg *I = CSRs; *I; ++I) 156 UpdatedCSRs.push_back(*I); 157 158 for (size_t i = 0; i < AArch64::GPR64commonRegClass.getNumRegs(); ++i) { 159 if (MF.getSubtarget<AArch64Subtarget>().isXRegCustomCalleeSaved(i)) { 160 UpdatedCSRs.push_back(AArch64::GPR64commonRegClass.getRegister(i)); 161 } 162 } 163 // Register lists are zero-terminated. 164 UpdatedCSRs.push_back(0); 165 MF.getRegInfo().setCalleeSavedRegs(UpdatedCSRs); 166 } 167 168 const TargetRegisterClass * 169 AArch64RegisterInfo::getSubClassWithSubReg(const TargetRegisterClass *RC, 170 unsigned Idx) const { 171 // edge case for GPR/FPR register classes 172 if (RC == &AArch64::GPR32allRegClass && Idx == AArch64::hsub) 173 return &AArch64::FPR32RegClass; 174 else if (RC == &AArch64::GPR64allRegClass && Idx == AArch64::hsub) 175 return &AArch64::FPR64RegClass; 176 177 // Forward to TableGen's default version. 178 return AArch64GenRegisterInfo::getSubClassWithSubReg(RC, Idx); 179 } 180 181 const uint32_t * 182 AArch64RegisterInfo::getDarwinCallPreservedMask(const MachineFunction &MF, 183 CallingConv::ID CC) const { 184 assert(MF.getSubtarget<AArch64Subtarget>().isTargetDarwin() && 185 "Invalid subtarget for getDarwinCallPreservedMask"); 186 187 if (CC == CallingConv::CXX_FAST_TLS) 188 return CSR_Darwin_AArch64_CXX_TLS_RegMask; 189 if (CC == CallingConv::AArch64_VectorCall) 190 return CSR_Darwin_AArch64_AAVPCS_RegMask; 191 if (CC == CallingConv::AArch64_SVE_VectorCall) 192 report_fatal_error( 193 "Calling convention SVE_VectorCall is unsupported on Darwin."); 194 if (CC == CallingConv::CFGuard_Check) 195 report_fatal_error( 196 "Calling convention CFGuard_Check is unsupported on Darwin."); 197 if (MF.getSubtarget<AArch64Subtarget>() 198 .getTargetLowering() 199 ->supportSwiftError() && 200 MF.getFunction().getAttributes().hasAttrSomewhere(Attribute::SwiftError)) 201 return CSR_Darwin_AArch64_AAPCS_SwiftError_RegMask; 202 if (CC == CallingConv::PreserveMost) 203 return CSR_Darwin_AArch64_RT_MostRegs_RegMask; 204 return CSR_Darwin_AArch64_AAPCS_RegMask; 205 } 206 207 const uint32_t * 208 AArch64RegisterInfo::getCallPreservedMask(const MachineFunction &MF, 209 CallingConv::ID CC) const { 210 bool SCS = MF.getFunction().hasFnAttribute(Attribute::ShadowCallStack); 211 if (CC == CallingConv::GHC) 212 // This is academic because all GHC calls are (supposed to be) tail calls 213 return SCS ? CSR_AArch64_NoRegs_SCS_RegMask : CSR_AArch64_NoRegs_RegMask; 214 if (CC == CallingConv::AnyReg) 215 return SCS ? CSR_AArch64_AllRegs_SCS_RegMask : CSR_AArch64_AllRegs_RegMask; 216 217 // All the following calling conventions are handled differently on Darwin. 218 if (MF.getSubtarget<AArch64Subtarget>().isTargetDarwin()) { 219 if (SCS) 220 report_fatal_error("ShadowCallStack attribute not supported on Darwin."); 221 return getDarwinCallPreservedMask(MF, CC); 222 } 223 224 if (CC == CallingConv::AArch64_VectorCall) 225 return SCS ? CSR_AArch64_AAVPCS_SCS_RegMask : CSR_AArch64_AAVPCS_RegMask; 226 if (CC == CallingConv::AArch64_SVE_VectorCall) 227 return SCS ? CSR_AArch64_SVE_AAPCS_SCS_RegMask 228 : CSR_AArch64_SVE_AAPCS_RegMask; 229 if (CC == CallingConv::CFGuard_Check) 230 return CSR_Win_AArch64_CFGuard_Check_RegMask; 231 if (MF.getSubtarget<AArch64Subtarget>().getTargetLowering() 232 ->supportSwiftError() && 233 MF.getFunction().getAttributes().hasAttrSomewhere(Attribute::SwiftError)) 234 return SCS ? CSR_AArch64_AAPCS_SwiftError_SCS_RegMask 235 : CSR_AArch64_AAPCS_SwiftError_RegMask; 236 if (CC == CallingConv::PreserveMost) 237 return SCS ? CSR_AArch64_RT_MostRegs_SCS_RegMask 238 : CSR_AArch64_RT_MostRegs_RegMask; 239 else 240 return SCS ? CSR_AArch64_AAPCS_SCS_RegMask : CSR_AArch64_AAPCS_RegMask; 241 } 242 243 const uint32_t *AArch64RegisterInfo::getCustomEHPadPreservedMask( 244 const MachineFunction &MF) const { 245 if (MF.getSubtarget<AArch64Subtarget>().isTargetLinux()) 246 return CSR_AArch64_AAPCS_RegMask; 247 248 return nullptr; 249 } 250 251 const uint32_t *AArch64RegisterInfo::getTLSCallPreservedMask() const { 252 if (TT.isOSDarwin()) 253 return CSR_Darwin_AArch64_TLS_RegMask; 254 255 assert(TT.isOSBinFormatELF() && "Invalid target"); 256 return CSR_AArch64_TLS_ELF_RegMask; 257 } 258 259 void AArch64RegisterInfo::UpdateCustomCallPreservedMask(MachineFunction &MF, 260 const uint32_t **Mask) const { 261 uint32_t *UpdatedMask = MF.allocateRegMask(); 262 unsigned RegMaskSize = MachineOperand::getRegMaskSize(getNumRegs()); 263 memcpy(UpdatedMask, *Mask, sizeof(UpdatedMask[0]) * RegMaskSize); 264 265 for (size_t i = 0; i < AArch64::GPR64commonRegClass.getNumRegs(); ++i) { 266 if (MF.getSubtarget<AArch64Subtarget>().isXRegCustomCalleeSaved(i)) { 267 for (MCSubRegIterator SubReg(AArch64::GPR64commonRegClass.getRegister(i), 268 this, true); 269 SubReg.isValid(); ++SubReg) { 270 // See TargetRegisterInfo::getCallPreservedMask for how to interpret the 271 // register mask. 272 UpdatedMask[*SubReg / 32] |= 1u << (*SubReg % 32); 273 } 274 } 275 } 276 *Mask = UpdatedMask; 277 } 278 279 const uint32_t *AArch64RegisterInfo::getNoPreservedMask() const { 280 return CSR_AArch64_NoRegs_RegMask; 281 } 282 283 const uint32_t * 284 AArch64RegisterInfo::getThisReturnPreservedMask(const MachineFunction &MF, 285 CallingConv::ID CC) const { 286 // This should return a register mask that is the same as that returned by 287 // getCallPreservedMask but that additionally preserves the register used for 288 // the first i64 argument (which must also be the register used to return a 289 // single i64 return value) 290 // 291 // In case that the calling convention does not use the same register for 292 // both, the function should return NULL (does not currently apply) 293 assert(CC != CallingConv::GHC && "should not be GHC calling convention."); 294 if (MF.getSubtarget<AArch64Subtarget>().isTargetDarwin()) 295 return CSR_Darwin_AArch64_AAPCS_ThisReturn_RegMask; 296 return CSR_AArch64_AAPCS_ThisReturn_RegMask; 297 } 298 299 const uint32_t *AArch64RegisterInfo::getWindowsStackProbePreservedMask() const { 300 return CSR_AArch64_StackProbe_Windows_RegMask; 301 } 302 303 BitVector 304 AArch64RegisterInfo::getReservedRegs(const MachineFunction &MF) const { 305 const AArch64FrameLowering *TFI = getFrameLowering(MF); 306 307 // FIXME: avoid re-calculating this every time. 308 BitVector Reserved(getNumRegs()); 309 markSuperRegs(Reserved, AArch64::WSP); 310 markSuperRegs(Reserved, AArch64::WZR); 311 312 if (TFI->hasFP(MF) || TT.isOSDarwin()) 313 markSuperRegs(Reserved, AArch64::W29); 314 315 for (size_t i = 0; i < AArch64::GPR32commonRegClass.getNumRegs(); ++i) { 316 if (MF.getSubtarget<AArch64Subtarget>().isXRegisterReserved(i)) 317 markSuperRegs(Reserved, AArch64::GPR32commonRegClass.getRegister(i)); 318 } 319 320 if (hasBasePointer(MF)) 321 markSuperRegs(Reserved, AArch64::W19); 322 323 // SLH uses register W16/X16 as the taint register. 324 if (MF.getFunction().hasFnAttribute(Attribute::SpeculativeLoadHardening)) 325 markSuperRegs(Reserved, AArch64::W16); 326 327 assert(checkAllSuperRegsMarked(Reserved)); 328 return Reserved; 329 } 330 331 bool AArch64RegisterInfo::isReservedReg(const MachineFunction &MF, 332 MCRegister Reg) const { 333 return getReservedRegs(MF)[Reg]; 334 } 335 336 bool AArch64RegisterInfo::isAnyArgRegReserved(const MachineFunction &MF) const { 337 return std::any_of(std::begin(*AArch64::GPR64argRegClass.MC), 338 std::end(*AArch64::GPR64argRegClass.MC), 339 [this, &MF](MCPhysReg r){return isReservedReg(MF, r);}); 340 } 341 342 void AArch64RegisterInfo::emitReservedArgRegCallError( 343 const MachineFunction &MF) const { 344 const Function &F = MF.getFunction(); 345 F.getContext().diagnose(DiagnosticInfoUnsupported{F, ("AArch64 doesn't support" 346 " function calls if any of the argument registers is reserved.")}); 347 } 348 349 bool AArch64RegisterInfo::isAsmClobberable(const MachineFunction &MF, 350 MCRegister PhysReg) const { 351 return !isReservedReg(MF, PhysReg); 352 } 353 354 bool AArch64RegisterInfo::isConstantPhysReg(MCRegister PhysReg) const { 355 return PhysReg == AArch64::WZR || PhysReg == AArch64::XZR; 356 } 357 358 const TargetRegisterClass * 359 AArch64RegisterInfo::getPointerRegClass(const MachineFunction &MF, 360 unsigned Kind) const { 361 return &AArch64::GPR64spRegClass; 362 } 363 364 const TargetRegisterClass * 365 AArch64RegisterInfo::getCrossCopyRegClass(const TargetRegisterClass *RC) const { 366 if (RC == &AArch64::CCRRegClass) 367 return &AArch64::GPR64RegClass; // Only MSR & MRS copy NZCV. 368 return RC; 369 } 370 371 unsigned AArch64RegisterInfo::getBaseRegister() const { return AArch64::X19; } 372 373 bool AArch64RegisterInfo::hasBasePointer(const MachineFunction &MF) const { 374 const MachineFrameInfo &MFI = MF.getFrameInfo(); 375 376 // In the presence of variable sized objects or funclets, if the fixed stack 377 // size is large enough that referencing from the FP won't result in things 378 // being in range relatively often, we can use a base pointer to allow access 379 // from the other direction like the SP normally works. 380 // 381 // Furthermore, if both variable sized objects are present, and the 382 // stack needs to be dynamically re-aligned, the base pointer is the only 383 // reliable way to reference the locals. 384 if (MFI.hasVarSizedObjects() || MF.hasEHFunclets()) { 385 if (needsStackRealignment(MF)) 386 return true; 387 388 if (MF.getSubtarget<AArch64Subtarget>().hasSVE()) { 389 const AArch64FunctionInfo *AFI = MF.getInfo<AArch64FunctionInfo>(); 390 // Frames that have variable sized objects and scalable SVE objects, 391 // should always use a basepointer. 392 if (!AFI->hasCalculatedStackSizeSVE() || AFI->getStackSizeSVE()) 393 return true; 394 } 395 396 // Conservatively estimate whether the negative offset from the frame 397 // pointer will be sufficient to reach. If a function has a smallish 398 // frame, it's less likely to have lots of spills and callee saved 399 // space, so it's all more likely to be within range of the frame pointer. 400 // If it's wrong, we'll materialize the constant and still get to the 401 // object; it's just suboptimal. Negative offsets use the unscaled 402 // load/store instructions, which have a 9-bit signed immediate. 403 return MFI.getLocalFrameSize() >= 256; 404 } 405 406 return false; 407 } 408 409 Register 410 AArch64RegisterInfo::getFrameRegister(const MachineFunction &MF) const { 411 const AArch64FrameLowering *TFI = getFrameLowering(MF); 412 return TFI->hasFP(MF) ? AArch64::FP : AArch64::SP; 413 } 414 415 bool AArch64RegisterInfo::requiresRegisterScavenging( 416 const MachineFunction &MF) const { 417 return true; 418 } 419 420 bool AArch64RegisterInfo::requiresVirtualBaseRegisters( 421 const MachineFunction &MF) const { 422 return true; 423 } 424 425 bool 426 AArch64RegisterInfo::useFPForScavengingIndex(const MachineFunction &MF) const { 427 // This function indicates whether the emergency spillslot should be placed 428 // close to the beginning of the stackframe (closer to FP) or the end 429 // (closer to SP). 430 // 431 // The beginning works most reliably if we have a frame pointer. 432 // In the presence of any non-constant space between FP and locals, 433 // (e.g. in case of stack realignment or a scalable SVE area), it is 434 // better to use SP or BP. 435 const AArch64FrameLowering &TFI = *getFrameLowering(MF); 436 const AArch64FunctionInfo *AFI = MF.getInfo<AArch64FunctionInfo>(); 437 assert((!MF.getSubtarget<AArch64Subtarget>().hasSVE() || 438 AFI->hasCalculatedStackSizeSVE()) && 439 "Expected SVE area to be calculated by this point"); 440 return TFI.hasFP(MF) && !needsStackRealignment(MF) && !AFI->getStackSizeSVE(); 441 } 442 443 bool AArch64RegisterInfo::requiresFrameIndexScavenging( 444 const MachineFunction &MF) const { 445 return true; 446 } 447 448 bool 449 AArch64RegisterInfo::cannotEliminateFrame(const MachineFunction &MF) const { 450 const MachineFrameInfo &MFI = MF.getFrameInfo(); 451 if (MF.getTarget().Options.DisableFramePointerElim(MF) && MFI.adjustsStack()) 452 return true; 453 return MFI.hasVarSizedObjects() || MFI.isFrameAddressTaken(); 454 } 455 456 /// needsFrameBaseReg - Returns true if the instruction's frame index 457 /// reference would be better served by a base register other than FP 458 /// or SP. Used by LocalStackFrameAllocation to determine which frame index 459 /// references it should create new base registers for. 460 bool AArch64RegisterInfo::needsFrameBaseReg(MachineInstr *MI, 461 int64_t Offset) const { 462 for (unsigned i = 0; !MI->getOperand(i).isFI(); ++i) 463 assert(i < MI->getNumOperands() && 464 "Instr doesn't have FrameIndex operand!"); 465 466 // It's the load/store FI references that cause issues, as it can be difficult 467 // to materialize the offset if it won't fit in the literal field. Estimate 468 // based on the size of the local frame and some conservative assumptions 469 // about the rest of the stack frame (note, this is pre-regalloc, so 470 // we don't know everything for certain yet) whether this offset is likely 471 // to be out of range of the immediate. Return true if so. 472 473 // We only generate virtual base registers for loads and stores, so 474 // return false for everything else. 475 if (!MI->mayLoad() && !MI->mayStore()) 476 return false; 477 478 // Without a virtual base register, if the function has variable sized 479 // objects, all fixed-size local references will be via the frame pointer, 480 // Approximate the offset and see if it's legal for the instruction. 481 // Note that the incoming offset is based on the SP value at function entry, 482 // so it'll be negative. 483 MachineFunction &MF = *MI->getParent()->getParent(); 484 const AArch64FrameLowering *TFI = getFrameLowering(MF); 485 MachineFrameInfo &MFI = MF.getFrameInfo(); 486 487 // Estimate an offset from the frame pointer. 488 // Conservatively assume all GPR callee-saved registers get pushed. 489 // FP, LR, X19-X28, D8-D15. 64-bits each. 490 int64_t FPOffset = Offset - 16 * 20; 491 // Estimate an offset from the stack pointer. 492 // The incoming offset is relating to the SP at the start of the function, 493 // but when we access the local it'll be relative to the SP after local 494 // allocation, so adjust our SP-relative offset by that allocation size. 495 Offset += MFI.getLocalFrameSize(); 496 // Assume that we'll have at least some spill slots allocated. 497 // FIXME: This is a total SWAG number. We should run some statistics 498 // and pick a real one. 499 Offset += 128; // 128 bytes of spill slots 500 501 // If there is a frame pointer, try using it. 502 // The FP is only available if there is no dynamic realignment. We 503 // don't know for sure yet whether we'll need that, so we guess based 504 // on whether there are any local variables that would trigger it. 505 if (TFI->hasFP(MF) && isFrameOffsetLegal(MI, AArch64::FP, FPOffset)) 506 return false; 507 508 // If we can reference via the stack pointer or base pointer, try that. 509 // FIXME: This (and the code that resolves the references) can be improved 510 // to only disallow SP relative references in the live range of 511 // the VLA(s). In practice, it's unclear how much difference that 512 // would make, but it may be worth doing. 513 if (isFrameOffsetLegal(MI, AArch64::SP, Offset)) 514 return false; 515 516 // If even offset 0 is illegal, we don't want a virtual base register. 517 if (!isFrameOffsetLegal(MI, AArch64::SP, 0)) 518 return false; 519 520 // The offset likely isn't legal; we want to allocate a virtual base register. 521 return true; 522 } 523 524 bool AArch64RegisterInfo::isFrameOffsetLegal(const MachineInstr *MI, 525 Register BaseReg, 526 int64_t Offset) const { 527 assert(MI && "Unable to get the legal offset for nil instruction."); 528 StackOffset SaveOffset(Offset, MVT::i8); 529 return isAArch64FrameOffsetLegal(*MI, SaveOffset) & AArch64FrameOffsetIsLegal; 530 } 531 532 /// Insert defining instruction(s) for BaseReg to be a pointer to FrameIdx 533 /// at the beginning of the basic block. 534 void AArch64RegisterInfo::materializeFrameBaseRegister(MachineBasicBlock *MBB, 535 Register BaseReg, 536 int FrameIdx, 537 int64_t Offset) const { 538 MachineBasicBlock::iterator Ins = MBB->begin(); 539 DebugLoc DL; // Defaults to "unknown" 540 if (Ins != MBB->end()) 541 DL = Ins->getDebugLoc(); 542 const MachineFunction &MF = *MBB->getParent(); 543 const AArch64InstrInfo *TII = 544 MF.getSubtarget<AArch64Subtarget>().getInstrInfo(); 545 const MCInstrDesc &MCID = TII->get(AArch64::ADDXri); 546 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo(); 547 MRI.constrainRegClass(BaseReg, TII->getRegClass(MCID, 0, this, MF)); 548 unsigned Shifter = AArch64_AM::getShifterImm(AArch64_AM::LSL, 0); 549 550 BuildMI(*MBB, Ins, DL, MCID, BaseReg) 551 .addFrameIndex(FrameIdx) 552 .addImm(Offset) 553 .addImm(Shifter); 554 } 555 556 void AArch64RegisterInfo::resolveFrameIndex(MachineInstr &MI, Register BaseReg, 557 int64_t Offset) const { 558 // ARM doesn't need the general 64-bit offsets 559 StackOffset Off(Offset, MVT::i8); 560 561 unsigned i = 0; 562 563 while (!MI.getOperand(i).isFI()) { 564 ++i; 565 assert(i < MI.getNumOperands() && "Instr doesn't have FrameIndex operand!"); 566 } 567 const MachineFunction *MF = MI.getParent()->getParent(); 568 const AArch64InstrInfo *TII = 569 MF->getSubtarget<AArch64Subtarget>().getInstrInfo(); 570 bool Done = rewriteAArch64FrameIndex(MI, i, BaseReg, Off, TII); 571 assert(Done && "Unable to resolve frame index!"); 572 (void)Done; 573 } 574 575 // Create a scratch register for the frame index elimination in an instruction. 576 // This function has special handling of stack tagging loop pseudos, in which 577 // case it can also change the instruction opcode (but not the operands). 578 static Register 579 createScratchRegisterForInstruction(MachineInstr &MI, 580 const AArch64InstrInfo *TII) { 581 // ST*Gloop have a reserved scratch register in operand 1. Use it, and also 582 // replace the instruction with the writeback variant because it will now 583 // satisfy the operand constraints for it. 584 if (MI.getOpcode() == AArch64::STGloop) { 585 MI.setDesc(TII->get(AArch64::STGloop_wback)); 586 return MI.getOperand(1).getReg(); 587 } else if (MI.getOpcode() == AArch64::STZGloop) { 588 MI.setDesc(TII->get(AArch64::STZGloop_wback)); 589 return MI.getOperand(1).getReg(); 590 } else { 591 return MI.getMF()->getRegInfo().createVirtualRegister( 592 &AArch64::GPR64RegClass); 593 } 594 } 595 596 void AArch64RegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II, 597 int SPAdj, unsigned FIOperandNum, 598 RegScavenger *RS) const { 599 assert(SPAdj == 0 && "Unexpected"); 600 601 MachineInstr &MI = *II; 602 MachineBasicBlock &MBB = *MI.getParent(); 603 MachineFunction &MF = *MBB.getParent(); 604 const MachineFrameInfo &MFI = MF.getFrameInfo(); 605 const AArch64InstrInfo *TII = 606 MF.getSubtarget<AArch64Subtarget>().getInstrInfo(); 607 const AArch64FrameLowering *TFI = getFrameLowering(MF); 608 609 int FrameIndex = MI.getOperand(FIOperandNum).getIndex(); 610 bool Tagged = 611 MI.getOperand(FIOperandNum).getTargetFlags() & AArch64II::MO_TAGGED; 612 Register FrameReg; 613 614 // Special handling of dbg_value, stackmap patchpoint statepoint instructions. 615 if (MI.isDebugValue() || MI.getOpcode() == TargetOpcode::STACKMAP || 616 MI.getOpcode() == TargetOpcode::PATCHPOINT || 617 MI.getOpcode() == TargetOpcode::STATEPOINT) { 618 StackOffset Offset = 619 TFI->resolveFrameIndexReference(MF, FrameIndex, FrameReg, 620 /*PreferFP=*/true, 621 /*ForSimm=*/false); 622 Offset += StackOffset(MI.getOperand(FIOperandNum + 1).getImm(), MVT::i8); 623 MI.getOperand(FIOperandNum).ChangeToRegister(FrameReg, false /*isDef*/); 624 MI.getOperand(FIOperandNum + 1).ChangeToImmediate(Offset.getBytes()); 625 return; 626 } 627 628 if (MI.getOpcode() == TargetOpcode::LOCAL_ESCAPE) { 629 MachineOperand &FI = MI.getOperand(FIOperandNum); 630 int Offset = TFI->getNonLocalFrameIndexReference(MF, FrameIndex); 631 FI.ChangeToImmediate(Offset); 632 return; 633 } 634 635 StackOffset Offset; 636 if (MI.getOpcode() == AArch64::TAGPstack) { 637 // TAGPstack must use the virtual frame register in its 3rd operand. 638 const AArch64FunctionInfo *AFI = MF.getInfo<AArch64FunctionInfo>(); 639 FrameReg = MI.getOperand(3).getReg(); 640 Offset = {MFI.getObjectOffset(FrameIndex) + 641 AFI->getTaggedBasePointerOffset(), 642 MVT::i8}; 643 } else if (Tagged) { 644 StackOffset SPOffset = { 645 MFI.getObjectOffset(FrameIndex) + (int64_t)MFI.getStackSize(), MVT::i8}; 646 if (MFI.hasVarSizedObjects() || 647 isAArch64FrameOffsetLegal(MI, SPOffset, nullptr, nullptr, nullptr) != 648 (AArch64FrameOffsetCanUpdate | AArch64FrameOffsetIsLegal)) { 649 // Can't update to SP + offset in place. Precalculate the tagged pointer 650 // in a scratch register. 651 Offset = TFI->resolveFrameIndexReference( 652 MF, FrameIndex, FrameReg, /*PreferFP=*/false, /*ForSimm=*/true); 653 Register ScratchReg = 654 MF.getRegInfo().createVirtualRegister(&AArch64::GPR64RegClass); 655 emitFrameOffset(MBB, II, MI.getDebugLoc(), ScratchReg, FrameReg, Offset, 656 TII); 657 BuildMI(MBB, MI, MI.getDebugLoc(), TII->get(AArch64::LDG), ScratchReg) 658 .addReg(ScratchReg) 659 .addReg(ScratchReg) 660 .addImm(0); 661 MI.getOperand(FIOperandNum) 662 .ChangeToRegister(ScratchReg, false, false, true); 663 return; 664 } 665 FrameReg = AArch64::SP; 666 Offset = {MFI.getObjectOffset(FrameIndex) + (int64_t)MFI.getStackSize(), 667 MVT::i8}; 668 } else { 669 Offset = TFI->resolveFrameIndexReference( 670 MF, FrameIndex, FrameReg, /*PreferFP=*/false, /*ForSimm=*/true); 671 } 672 673 // Modify MI as necessary to handle as much of 'Offset' as possible 674 if (rewriteAArch64FrameIndex(MI, FIOperandNum, FrameReg, Offset, TII)) 675 return; 676 677 assert((!RS || !RS->isScavengingFrameIndex(FrameIndex)) && 678 "Emergency spill slot is out of reach"); 679 680 // If we get here, the immediate doesn't fit into the instruction. We folded 681 // as much as possible above. Handle the rest, providing a register that is 682 // SP+LargeImm. 683 Register ScratchReg = createScratchRegisterForInstruction(MI, TII); 684 emitFrameOffset(MBB, II, MI.getDebugLoc(), ScratchReg, FrameReg, Offset, TII); 685 MI.getOperand(FIOperandNum).ChangeToRegister(ScratchReg, false, false, true); 686 } 687 688 unsigned AArch64RegisterInfo::getRegPressureLimit(const TargetRegisterClass *RC, 689 MachineFunction &MF) const { 690 const AArch64FrameLowering *TFI = getFrameLowering(MF); 691 692 switch (RC->getID()) { 693 default: 694 return 0; 695 case AArch64::GPR32RegClassID: 696 case AArch64::GPR32spRegClassID: 697 case AArch64::GPR32allRegClassID: 698 case AArch64::GPR64spRegClassID: 699 case AArch64::GPR64allRegClassID: 700 case AArch64::GPR64RegClassID: 701 case AArch64::GPR32commonRegClassID: 702 case AArch64::GPR64commonRegClassID: 703 return 32 - 1 // XZR/SP 704 - (TFI->hasFP(MF) || TT.isOSDarwin()) // FP 705 - MF.getSubtarget<AArch64Subtarget>().getNumXRegisterReserved() 706 - hasBasePointer(MF); // X19 707 case AArch64::FPR8RegClassID: 708 case AArch64::FPR16RegClassID: 709 case AArch64::FPR32RegClassID: 710 case AArch64::FPR64RegClassID: 711 case AArch64::FPR128RegClassID: 712 return 32; 713 714 case AArch64::DDRegClassID: 715 case AArch64::DDDRegClassID: 716 case AArch64::DDDDRegClassID: 717 case AArch64::QQRegClassID: 718 case AArch64::QQQRegClassID: 719 case AArch64::QQQQRegClassID: 720 return 32; 721 722 case AArch64::FPR128_loRegClassID: 723 case AArch64::FPR64_loRegClassID: 724 case AArch64::FPR16_loRegClassID: 725 return 16; 726 } 727 } 728 729 unsigned AArch64RegisterInfo::getLocalAddressRegister( 730 const MachineFunction &MF) const { 731 const auto &MFI = MF.getFrameInfo(); 732 if (!MF.hasEHFunclets() && !MFI.hasVarSizedObjects()) 733 return AArch64::SP; 734 else if (needsStackRealignment(MF)) 735 return getBaseRegister(); 736 return getFrameRegister(MF); 737 } 738 739 /// SrcRC and DstRC will be morphed into NewRC if this returns true 740 bool AArch64RegisterInfo::shouldCoalesce( 741 MachineInstr *MI, const TargetRegisterClass *SrcRC, unsigned SubReg, 742 const TargetRegisterClass *DstRC, unsigned DstSubReg, 743 const TargetRegisterClass *NewRC, LiveIntervals &LIS) const { 744 if (MI->isCopy() && 745 ((DstRC->getID() == AArch64::GPR64RegClassID) || 746 (DstRC->getID() == AArch64::GPR64commonRegClassID)) && 747 MI->getOperand(0).getSubReg() && MI->getOperand(1).getSubReg()) 748 // Do not coalesce in the case of a 32-bit subregister copy 749 // which implements a 32 to 64 bit zero extension 750 // which relies on the upper 32 bits being zeroed. 751 return false; 752 return true; 753 } 754