1 //===-- SystemZRegisterInfo.cpp - SystemZ 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 #include "SystemZRegisterInfo.h" 10 #include "SystemZInstrInfo.h" 11 #include "SystemZSubtarget.h" 12 #include "llvm/CodeGen/LiveIntervals.h" 13 #include "llvm/ADT/SmallSet.h" 14 #include "llvm/CodeGen/MachineInstrBuilder.h" 15 #include "llvm/CodeGen/MachineRegisterInfo.h" 16 #include "llvm/CodeGen/TargetFrameLowering.h" 17 #include "llvm/CodeGen/VirtRegMap.h" 18 19 using namespace llvm; 20 21 #define GET_REGINFO_TARGET_DESC 22 #include "SystemZGenRegisterInfo.inc" 23 24 SystemZRegisterInfo::SystemZRegisterInfo() 25 : SystemZGenRegisterInfo(SystemZ::R14D) {} 26 27 // Given that MO is a GRX32 operand, return either GR32 or GRH32 if MO 28 // somehow belongs in it. Otherwise, return GRX32. 29 static const TargetRegisterClass *getRC32(MachineOperand &MO, 30 const VirtRegMap *VRM, 31 const MachineRegisterInfo *MRI) { 32 const TargetRegisterClass *RC = MRI->getRegClass(MO.getReg()); 33 34 if (SystemZ::GR32BitRegClass.hasSubClassEq(RC) || 35 MO.getSubReg() == SystemZ::subreg_l32 || 36 MO.getSubReg() == SystemZ::subreg_hl32) 37 return &SystemZ::GR32BitRegClass; 38 if (SystemZ::GRH32BitRegClass.hasSubClassEq(RC) || 39 MO.getSubReg() == SystemZ::subreg_h32 || 40 MO.getSubReg() == SystemZ::subreg_hh32) 41 return &SystemZ::GRH32BitRegClass; 42 43 if (VRM && VRM->hasPhys(MO.getReg())) { 44 unsigned PhysReg = VRM->getPhys(MO.getReg()); 45 if (SystemZ::GR32BitRegClass.contains(PhysReg)) 46 return &SystemZ::GR32BitRegClass; 47 assert (SystemZ::GRH32BitRegClass.contains(PhysReg) && 48 "Phys reg not in GR32 or GRH32?"); 49 return &SystemZ::GRH32BitRegClass; 50 } 51 52 assert (RC == &SystemZ::GRX32BitRegClass); 53 return RC; 54 } 55 56 // Pass the registers of RC as hints while making sure that if any of these 57 // registers are copy hints (and therefore already in Hints), hint them 58 // first. 59 static void addHints(ArrayRef<MCPhysReg> Order, 60 SmallVectorImpl<MCPhysReg> &Hints, 61 const TargetRegisterClass *RC, 62 const MachineRegisterInfo *MRI) { 63 SmallSet<unsigned, 4> CopyHints; 64 CopyHints.insert(Hints.begin(), Hints.end()); 65 Hints.clear(); 66 for (MCPhysReg Reg : Order) 67 if (CopyHints.count(Reg) && 68 RC->contains(Reg) && !MRI->isReserved(Reg)) 69 Hints.push_back(Reg); 70 for (MCPhysReg Reg : Order) 71 if (!CopyHints.count(Reg) && 72 RC->contains(Reg) && !MRI->isReserved(Reg)) 73 Hints.push_back(Reg); 74 } 75 76 bool 77 SystemZRegisterInfo::getRegAllocationHints(unsigned VirtReg, 78 ArrayRef<MCPhysReg> Order, 79 SmallVectorImpl<MCPhysReg> &Hints, 80 const MachineFunction &MF, 81 const VirtRegMap *VRM, 82 const LiveRegMatrix *Matrix) const { 83 const MachineRegisterInfo *MRI = &MF.getRegInfo(); 84 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); 85 86 bool BaseImplRetVal = TargetRegisterInfo::getRegAllocationHints( 87 VirtReg, Order, Hints, MF, VRM, Matrix); 88 89 if (MRI->getRegClass(VirtReg) == &SystemZ::GRX32BitRegClass) { 90 SmallVector<unsigned, 8> Worklist; 91 SmallSet<unsigned, 4> DoneRegs; 92 Worklist.push_back(VirtReg); 93 while (Worklist.size()) { 94 unsigned Reg = Worklist.pop_back_val(); 95 if (!DoneRegs.insert(Reg).second) 96 continue; 97 98 for (auto &Use : MRI->use_instructions(Reg)) { 99 // For LOCRMux, see if the other operand is already a high or low 100 // register, and in that case give the correpsonding hints for 101 // VirtReg. LOCR instructions need both operands in either high or 102 // low parts. 103 if (Use.getOpcode() == SystemZ::LOCRMux) { 104 MachineOperand &TrueMO = Use.getOperand(1); 105 MachineOperand &FalseMO = Use.getOperand(2); 106 const TargetRegisterClass *RC = 107 TRI->getCommonSubClass(getRC32(FalseMO, VRM, MRI), 108 getRC32(TrueMO, VRM, MRI)); 109 if (RC && RC != &SystemZ::GRX32BitRegClass) { 110 addHints(Order, Hints, RC, MRI); 111 // Return true to make these hints the only regs available to 112 // RA. This may mean extra spilling but since the alternative is 113 // a jump sequence expansion of the LOCRMux, it is preferred. 114 return true; 115 } 116 117 // Add the other operand of the LOCRMux to the worklist. 118 unsigned OtherReg = 119 (TrueMO.getReg() == Reg ? FalseMO.getReg() : TrueMO.getReg()); 120 if (MRI->getRegClass(OtherReg) == &SystemZ::GRX32BitRegClass) 121 Worklist.push_back(OtherReg); 122 } // end LOCRMux 123 else if (Use.getOpcode() == SystemZ::CHIMux || 124 Use.getOpcode() == SystemZ::CFIMux) { 125 if (Use.getOperand(1).getImm() == 0) { 126 bool OnlyLMuxes = true; 127 for (MachineInstr &DefMI : MRI->def_instructions(VirtReg)) 128 if (DefMI.getOpcode() != SystemZ::LMux) 129 OnlyLMuxes = false; 130 if (OnlyLMuxes) { 131 addHints(Order, Hints, &SystemZ::GR32BitRegClass, MRI); 132 // Return false to make these hints preferred but not obligatory. 133 return false; 134 } 135 } 136 } // end CHIMux / CFIMux 137 } 138 } 139 } 140 141 return BaseImplRetVal; 142 } 143 144 const MCPhysReg * 145 SystemZRegisterInfo::getCalleeSavedRegs(const MachineFunction *MF) const { 146 const SystemZSubtarget &Subtarget = MF->getSubtarget<SystemZSubtarget>(); 147 if (MF->getFunction().getCallingConv() == CallingConv::AnyReg) 148 return Subtarget.hasVector()? CSR_SystemZ_AllRegs_Vector_SaveList 149 : CSR_SystemZ_AllRegs_SaveList; 150 if (MF->getSubtarget().getTargetLowering()->supportSwiftError() && 151 MF->getFunction().getAttributes().hasAttrSomewhere( 152 Attribute::SwiftError)) 153 return CSR_SystemZ_SwiftError_SaveList; 154 return CSR_SystemZ_SaveList; 155 } 156 157 const uint32_t * 158 SystemZRegisterInfo::getCallPreservedMask(const MachineFunction &MF, 159 CallingConv::ID CC) const { 160 const SystemZSubtarget &Subtarget = MF.getSubtarget<SystemZSubtarget>(); 161 if (CC == CallingConv::AnyReg) 162 return Subtarget.hasVector()? CSR_SystemZ_AllRegs_Vector_RegMask 163 : CSR_SystemZ_AllRegs_RegMask; 164 if (MF.getSubtarget().getTargetLowering()->supportSwiftError() && 165 MF.getFunction().getAttributes().hasAttrSomewhere( 166 Attribute::SwiftError)) 167 return CSR_SystemZ_SwiftError_RegMask; 168 return CSR_SystemZ_RegMask; 169 } 170 171 BitVector 172 SystemZRegisterInfo::getReservedRegs(const MachineFunction &MF) const { 173 BitVector Reserved(getNumRegs()); 174 const SystemZFrameLowering *TFI = getFrameLowering(MF); 175 176 if (TFI->hasFP(MF)) { 177 // R11D is the frame pointer. Reserve all aliases. 178 Reserved.set(SystemZ::R11D); 179 Reserved.set(SystemZ::R11L); 180 Reserved.set(SystemZ::R11H); 181 Reserved.set(SystemZ::R10Q); 182 } 183 184 // R15D is the stack pointer. Reserve all aliases. 185 Reserved.set(SystemZ::R15D); 186 Reserved.set(SystemZ::R15L); 187 Reserved.set(SystemZ::R15H); 188 Reserved.set(SystemZ::R14Q); 189 190 // A0 and A1 hold the thread pointer. 191 Reserved.set(SystemZ::A0); 192 Reserved.set(SystemZ::A1); 193 194 // FPC is the floating-point control register. 195 Reserved.set(SystemZ::FPC); 196 197 return Reserved; 198 } 199 200 void 201 SystemZRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator MI, 202 int SPAdj, unsigned FIOperandNum, 203 RegScavenger *RS) const { 204 assert(SPAdj == 0 && "Outgoing arguments should be part of the frame"); 205 206 MachineBasicBlock &MBB = *MI->getParent(); 207 MachineFunction &MF = *MBB.getParent(); 208 auto *TII = 209 static_cast<const SystemZInstrInfo *>(MF.getSubtarget().getInstrInfo()); 210 const SystemZFrameLowering *TFI = getFrameLowering(MF); 211 DebugLoc DL = MI->getDebugLoc(); 212 213 // Decompose the frame index into a base and offset. 214 int FrameIndex = MI->getOperand(FIOperandNum).getIndex(); 215 unsigned BasePtr; 216 int64_t Offset = (TFI->getFrameIndexReference(MF, FrameIndex, BasePtr) + 217 MI->getOperand(FIOperandNum + 1).getImm()); 218 219 // Special handling of dbg_value instructions. 220 if (MI->isDebugValue()) { 221 MI->getOperand(FIOperandNum).ChangeToRegister(BasePtr, /*isDef*/ false); 222 MI->getOperand(FIOperandNum + 1).ChangeToImmediate(Offset); 223 return; 224 } 225 226 // See if the offset is in range, or if an equivalent instruction that 227 // accepts the offset exists. 228 unsigned Opcode = MI->getOpcode(); 229 unsigned OpcodeForOffset = TII->getOpcodeForOffset(Opcode, Offset); 230 if (OpcodeForOffset) { 231 if (OpcodeForOffset == SystemZ::LE && 232 MF.getSubtarget<SystemZSubtarget>().hasVector()) { 233 // If LE is ok for offset, use LDE instead on z13. 234 OpcodeForOffset = SystemZ::LDE32; 235 } 236 MI->getOperand(FIOperandNum).ChangeToRegister(BasePtr, false); 237 } 238 else { 239 // Create an anchor point that is in range. Start at 0xffff so that 240 // can use LLILH to load the immediate. 241 int64_t OldOffset = Offset; 242 int64_t Mask = 0xffff; 243 do { 244 Offset = OldOffset & Mask; 245 OpcodeForOffset = TII->getOpcodeForOffset(Opcode, Offset); 246 Mask >>= 1; 247 assert(Mask && "One offset must be OK"); 248 } while (!OpcodeForOffset); 249 250 unsigned ScratchReg = 251 MF.getRegInfo().createVirtualRegister(&SystemZ::ADDR64BitRegClass); 252 int64_t HighOffset = OldOffset - Offset; 253 254 if (MI->getDesc().TSFlags & SystemZII::HasIndex 255 && MI->getOperand(FIOperandNum + 2).getReg() == 0) { 256 // Load the offset into the scratch register and use it as an index. 257 // The scratch register then dies here. 258 TII->loadImmediate(MBB, MI, ScratchReg, HighOffset); 259 MI->getOperand(FIOperandNum).ChangeToRegister(BasePtr, false); 260 MI->getOperand(FIOperandNum + 2).ChangeToRegister(ScratchReg, 261 false, false, true); 262 } else { 263 // Load the anchor address into a scratch register. 264 unsigned LAOpcode = TII->getOpcodeForOffset(SystemZ::LA, HighOffset); 265 if (LAOpcode) 266 BuildMI(MBB, MI, DL, TII->get(LAOpcode),ScratchReg) 267 .addReg(BasePtr).addImm(HighOffset).addReg(0); 268 else { 269 // Load the high offset into the scratch register and use it as 270 // an index. 271 TII->loadImmediate(MBB, MI, ScratchReg, HighOffset); 272 BuildMI(MBB, MI, DL, TII->get(SystemZ::AGR),ScratchReg) 273 .addReg(ScratchReg, RegState::Kill).addReg(BasePtr); 274 } 275 276 // Use the scratch register as the base. It then dies here. 277 MI->getOperand(FIOperandNum).ChangeToRegister(ScratchReg, 278 false, false, true); 279 } 280 } 281 MI->setDesc(TII->get(OpcodeForOffset)); 282 MI->getOperand(FIOperandNum + 1).ChangeToImmediate(Offset); 283 } 284 285 bool SystemZRegisterInfo::shouldCoalesce(MachineInstr *MI, 286 const TargetRegisterClass *SrcRC, 287 unsigned SubReg, 288 const TargetRegisterClass *DstRC, 289 unsigned DstSubReg, 290 const TargetRegisterClass *NewRC, 291 LiveIntervals &LIS) const { 292 assert (MI->isCopy() && "Only expecting COPY instructions"); 293 294 // Coalesce anything which is not a COPY involving a subreg to/from GR128. 295 if (!(NewRC->hasSuperClassEq(&SystemZ::GR128BitRegClass) && 296 (getRegSizeInBits(*SrcRC) <= 64 || getRegSizeInBits(*DstRC) <= 64))) 297 return true; 298 299 // Allow coalescing of a GR128 subreg COPY only if the live ranges are small 300 // and local to one MBB with not too much interferring registers. Otherwise 301 // regalloc may run out of registers. 302 303 unsigned WideOpNo = (getRegSizeInBits(*SrcRC) == 128 ? 1 : 0); 304 unsigned GR128Reg = MI->getOperand(WideOpNo).getReg(); 305 unsigned GRNarReg = MI->getOperand((WideOpNo == 1) ? 0 : 1).getReg(); 306 LiveInterval &IntGR128 = LIS.getInterval(GR128Reg); 307 LiveInterval &IntGRNar = LIS.getInterval(GRNarReg); 308 309 // Check that the two virtual registers are local to MBB. 310 MachineBasicBlock *MBB = MI->getParent(); 311 MachineInstr *FirstMI_GR128 = 312 LIS.getInstructionFromIndex(IntGR128.beginIndex()); 313 MachineInstr *FirstMI_GRNar = 314 LIS.getInstructionFromIndex(IntGRNar.beginIndex()); 315 MachineInstr *LastMI_GR128 = LIS.getInstructionFromIndex(IntGR128.endIndex()); 316 MachineInstr *LastMI_GRNar = LIS.getInstructionFromIndex(IntGRNar.endIndex()); 317 if ((!FirstMI_GR128 || FirstMI_GR128->getParent() != MBB) || 318 (!FirstMI_GRNar || FirstMI_GRNar->getParent() != MBB) || 319 (!LastMI_GR128 || LastMI_GR128->getParent() != MBB) || 320 (!LastMI_GRNar || LastMI_GRNar->getParent() != MBB)) 321 return false; 322 323 MachineBasicBlock::iterator MII = nullptr, MEE = nullptr; 324 if (WideOpNo == 1) { 325 MII = FirstMI_GR128; 326 MEE = LastMI_GRNar; 327 } else { 328 MII = FirstMI_GRNar; 329 MEE = LastMI_GR128; 330 } 331 332 // Check if coalescing seems safe by finding the set of clobbered physreg 333 // pairs in the region. 334 BitVector PhysClobbered(getNumRegs()); 335 MEE++; 336 for (; MII != MEE; ++MII) { 337 for (const MachineOperand &MO : MII->operands()) 338 if (MO.isReg() && isPhysicalRegister(MO.getReg())) { 339 for (MCSuperRegIterator SI(MO.getReg(), this, true/*IncludeSelf*/); 340 SI.isValid(); ++SI) 341 if (NewRC->contains(*SI)) { 342 PhysClobbered.set(*SI); 343 break; 344 } 345 } 346 } 347 348 // Demand an arbitrary margin of free regs. 349 unsigned const DemandedFreeGR128 = 3; 350 if (PhysClobbered.count() > (NewRC->getNumRegs() - DemandedFreeGR128)) 351 return false; 352 353 return true; 354 } 355 356 unsigned 357 SystemZRegisterInfo::getFrameRegister(const MachineFunction &MF) const { 358 const SystemZFrameLowering *TFI = getFrameLowering(MF); 359 return TFI->hasFP(MF) ? SystemZ::R11D : SystemZ::R15D; 360 } 361 362 const TargetRegisterClass * 363 SystemZRegisterInfo::getCrossCopyRegClass(const TargetRegisterClass *RC) const { 364 if (RC == &SystemZ::CCRRegClass) 365 return &SystemZ::GR32BitRegClass; 366 return RC; 367 } 368 369