1 //==- llvm/CodeGen/GlobalISel/RegBankSelect.cpp - RegBankSelect --*- C++ -*-==// 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 /// \file 9 /// This file implements the RegBankSelect class. 10 //===----------------------------------------------------------------------===// 11 12 #include "llvm/CodeGen/GlobalISel/RegBankSelect.h" 13 #include "llvm/ADT/PostOrderIterator.h" 14 #include "llvm/ADT/STLExtras.h" 15 #include "llvm/ADT/SmallVector.h" 16 #include "llvm/CodeGen/GlobalISel/LegalizerInfo.h" 17 #include "llvm/CodeGen/GlobalISel/Utils.h" 18 #include "llvm/CodeGen/MachineBasicBlock.h" 19 #include "llvm/CodeGen/MachineBlockFrequencyInfo.h" 20 #include "llvm/CodeGen/MachineBranchProbabilityInfo.h" 21 #include "llvm/CodeGen/MachineFunction.h" 22 #include "llvm/CodeGen/MachineInstr.h" 23 #include "llvm/CodeGen/MachineOperand.h" 24 #include "llvm/CodeGen/MachineOptimizationRemarkEmitter.h" 25 #include "llvm/CodeGen/MachineRegisterInfo.h" 26 #include "llvm/CodeGen/RegisterBank.h" 27 #include "llvm/CodeGen/RegisterBankInfo.h" 28 #include "llvm/CodeGen/TargetOpcodes.h" 29 #include "llvm/CodeGen/TargetPassConfig.h" 30 #include "llvm/CodeGen/TargetRegisterInfo.h" 31 #include "llvm/CodeGen/TargetSubtargetInfo.h" 32 #include "llvm/Config/llvm-config.h" 33 #include "llvm/IR/Function.h" 34 #include "llvm/InitializePasses.h" 35 #include "llvm/Pass.h" 36 #include "llvm/Support/BlockFrequency.h" 37 #include "llvm/Support/CommandLine.h" 38 #include "llvm/Support/Compiler.h" 39 #include "llvm/Support/Debug.h" 40 #include "llvm/Support/ErrorHandling.h" 41 #include "llvm/Support/raw_ostream.h" 42 #include <algorithm> 43 #include <cassert> 44 #include <cstdint> 45 #include <limits> 46 #include <memory> 47 #include <utility> 48 49 #define DEBUG_TYPE "regbankselect" 50 51 using namespace llvm; 52 53 static cl::opt<RegBankSelect::Mode> RegBankSelectMode( 54 cl::desc("Mode of the RegBankSelect pass"), cl::Hidden, cl::Optional, 55 cl::values(clEnumValN(RegBankSelect::Mode::Fast, "regbankselect-fast", 56 "Run the Fast mode (default mapping)"), 57 clEnumValN(RegBankSelect::Mode::Greedy, "regbankselect-greedy", 58 "Use the Greedy mode (best local mapping)"))); 59 60 char RegBankSelect::ID = 0; 61 62 INITIALIZE_PASS_BEGIN(RegBankSelect, DEBUG_TYPE, 63 "Assign register bank of generic virtual registers", 64 false, false); 65 INITIALIZE_PASS_DEPENDENCY(MachineBlockFrequencyInfo) 66 INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo) 67 INITIALIZE_PASS_DEPENDENCY(TargetPassConfig) 68 INITIALIZE_PASS_END(RegBankSelect, DEBUG_TYPE, 69 "Assign register bank of generic virtual registers", false, 70 false) 71 72 RegBankSelect::RegBankSelect(Mode RunningMode) 73 : MachineFunctionPass(ID), OptMode(RunningMode) { 74 if (RegBankSelectMode.getNumOccurrences() != 0) { 75 OptMode = RegBankSelectMode; 76 if (RegBankSelectMode != RunningMode) 77 LLVM_DEBUG(dbgs() << "RegBankSelect mode overrided by command line\n"); 78 } 79 } 80 81 void RegBankSelect::init(MachineFunction &MF) { 82 RBI = MF.getSubtarget().getRegBankInfo(); 83 assert(RBI && "Cannot work without RegisterBankInfo"); 84 MRI = &MF.getRegInfo(); 85 TRI = MF.getSubtarget().getRegisterInfo(); 86 TPC = &getAnalysis<TargetPassConfig>(); 87 if (OptMode != Mode::Fast) { 88 MBFI = &getAnalysis<MachineBlockFrequencyInfo>(); 89 MBPI = &getAnalysis<MachineBranchProbabilityInfo>(); 90 } else { 91 MBFI = nullptr; 92 MBPI = nullptr; 93 } 94 MIRBuilder.setMF(MF); 95 MORE = std::make_unique<MachineOptimizationRemarkEmitter>(MF, MBFI); 96 } 97 98 void RegBankSelect::getAnalysisUsage(AnalysisUsage &AU) const { 99 if (OptMode != Mode::Fast) { 100 // We could preserve the information from these two analysis but 101 // the APIs do not allow to do so yet. 102 AU.addRequired<MachineBlockFrequencyInfo>(); 103 AU.addRequired<MachineBranchProbabilityInfo>(); 104 } 105 AU.addRequired<TargetPassConfig>(); 106 getSelectionDAGFallbackAnalysisUsage(AU); 107 MachineFunctionPass::getAnalysisUsage(AU); 108 } 109 110 bool RegBankSelect::assignmentMatch( 111 Register Reg, const RegisterBankInfo::ValueMapping &ValMapping, 112 bool &OnlyAssign) const { 113 // By default we assume we will have to repair something. 114 OnlyAssign = false; 115 // Each part of a break down needs to end up in a different register. 116 // In other word, Reg assignment does not match. 117 if (ValMapping.NumBreakDowns != 1) 118 return false; 119 120 const RegisterBank *CurRegBank = RBI->getRegBank(Reg, *MRI, *TRI); 121 const RegisterBank *DesiredRegBank = ValMapping.BreakDown[0].RegBank; 122 // Reg is free of assignment, a simple assignment will make the 123 // register bank to match. 124 OnlyAssign = CurRegBank == nullptr; 125 LLVM_DEBUG(dbgs() << "Does assignment already match: "; 126 if (CurRegBank) dbgs() << *CurRegBank; else dbgs() << "none"; 127 dbgs() << " against "; 128 assert(DesiredRegBank && "The mapping must be valid"); 129 dbgs() << *DesiredRegBank << '\n';); 130 return CurRegBank == DesiredRegBank; 131 } 132 133 bool RegBankSelect::repairReg( 134 MachineOperand &MO, const RegisterBankInfo::ValueMapping &ValMapping, 135 RegBankSelect::RepairingPlacement &RepairPt, 136 const iterator_range<SmallVectorImpl<Register>::const_iterator> &NewVRegs) { 137 138 assert(ValMapping.NumBreakDowns == (unsigned)size(NewVRegs) && 139 "need new vreg for each breakdown"); 140 141 // An empty range of new register means no repairing. 142 assert(!NewVRegs.empty() && "We should not have to repair"); 143 144 MachineInstr *MI; 145 if (ValMapping.NumBreakDowns == 1) { 146 // Assume we are repairing a use and thus, the original reg will be 147 // the source of the repairing. 148 Register Src = MO.getReg(); 149 Register Dst = *NewVRegs.begin(); 150 151 // If we repair a definition, swap the source and destination for 152 // the repairing. 153 if (MO.isDef()) 154 std::swap(Src, Dst); 155 156 assert((RepairPt.getNumInsertPoints() == 1 || 157 Register::isPhysicalRegister(Dst)) && 158 "We are about to create several defs for Dst"); 159 160 // Build the instruction used to repair, then clone it at the right 161 // places. Avoiding buildCopy bypasses the check that Src and Dst have the 162 // same types because the type is a placeholder when this function is called. 163 MI = MIRBuilder.buildInstrNoInsert(TargetOpcode::COPY) 164 .addDef(Dst) 165 .addUse(Src); 166 LLVM_DEBUG(dbgs() << "Copy: " << printReg(Src) << " to: " << printReg(Dst) 167 << '\n'); 168 } else { 169 // TODO: Support with G_IMPLICIT_DEF + G_INSERT sequence or G_EXTRACT 170 // sequence. 171 assert(ValMapping.partsAllUniform() && "irregular breakdowns not supported"); 172 173 LLT RegTy = MRI->getType(MO.getReg()); 174 if (MO.isDef()) { 175 unsigned MergeOp; 176 if (RegTy.isVector()) { 177 if (ValMapping.NumBreakDowns == RegTy.getNumElements()) 178 MergeOp = TargetOpcode::G_BUILD_VECTOR; 179 else { 180 assert( 181 (ValMapping.BreakDown[0].Length * ValMapping.NumBreakDowns == 182 RegTy.getSizeInBits()) && 183 (ValMapping.BreakDown[0].Length % RegTy.getScalarSizeInBits() == 184 0) && 185 "don't understand this value breakdown"); 186 187 MergeOp = TargetOpcode::G_CONCAT_VECTORS; 188 } 189 } else 190 MergeOp = TargetOpcode::G_MERGE_VALUES; 191 192 auto MergeBuilder = 193 MIRBuilder.buildInstrNoInsert(MergeOp) 194 .addDef(MO.getReg()); 195 196 for (Register SrcReg : NewVRegs) 197 MergeBuilder.addUse(SrcReg); 198 199 MI = MergeBuilder; 200 } else { 201 MachineInstrBuilder UnMergeBuilder = 202 MIRBuilder.buildInstrNoInsert(TargetOpcode::G_UNMERGE_VALUES); 203 for (Register DefReg : NewVRegs) 204 UnMergeBuilder.addDef(DefReg); 205 206 UnMergeBuilder.addUse(MO.getReg()); 207 MI = UnMergeBuilder; 208 } 209 } 210 211 if (RepairPt.getNumInsertPoints() != 1) 212 report_fatal_error("need testcase to support multiple insertion points"); 213 214 // TODO: 215 // Check if MI is legal. if not, we need to legalize all the 216 // instructions we are going to insert. 217 std::unique_ptr<MachineInstr *[]> NewInstrs( 218 new MachineInstr *[RepairPt.getNumInsertPoints()]); 219 bool IsFirst = true; 220 unsigned Idx = 0; 221 for (const std::unique_ptr<InsertPoint> &InsertPt : RepairPt) { 222 MachineInstr *CurMI; 223 if (IsFirst) 224 CurMI = MI; 225 else 226 CurMI = MIRBuilder.getMF().CloneMachineInstr(MI); 227 InsertPt->insert(*CurMI); 228 NewInstrs[Idx++] = CurMI; 229 IsFirst = false; 230 } 231 // TODO: 232 // Legalize NewInstrs if need be. 233 return true; 234 } 235 236 uint64_t RegBankSelect::getRepairCost( 237 const MachineOperand &MO, 238 const RegisterBankInfo::ValueMapping &ValMapping) const { 239 assert(MO.isReg() && "We should only repair register operand"); 240 assert(ValMapping.NumBreakDowns && "Nothing to map??"); 241 242 bool IsSameNumOfValues = ValMapping.NumBreakDowns == 1; 243 const RegisterBank *CurRegBank = RBI->getRegBank(MO.getReg(), *MRI, *TRI); 244 // If MO does not have a register bank, we should have just been 245 // able to set one unless we have to break the value down. 246 assert(CurRegBank || MO.isDef()); 247 248 // Def: Val <- NewDefs 249 // Same number of values: copy 250 // Different number: Val = build_sequence Defs1, Defs2, ... 251 // Use: NewSources <- Val. 252 // Same number of values: copy. 253 // Different number: Src1, Src2, ... = 254 // extract_value Val, Src1Begin, Src1Len, Src2Begin, Src2Len, ... 255 // We should remember that this value is available somewhere else to 256 // coalesce the value. 257 258 if (ValMapping.NumBreakDowns != 1) 259 return RBI->getBreakDownCost(ValMapping, CurRegBank); 260 261 if (IsSameNumOfValues) { 262 const RegisterBank *DesiredRegBank = ValMapping.BreakDown[0].RegBank; 263 // If we repair a definition, swap the source and destination for 264 // the repairing. 265 if (MO.isDef()) 266 std::swap(CurRegBank, DesiredRegBank); 267 // TODO: It may be possible to actually avoid the copy. 268 // If we repair something where the source is defined by a copy 269 // and the source of that copy is on the right bank, we can reuse 270 // it for free. 271 // E.g., 272 // RegToRepair<BankA> = copy AlternativeSrc<BankB> 273 // = op RegToRepair<BankA> 274 // We can simply propagate AlternativeSrc instead of copying RegToRepair 275 // into a new virtual register. 276 // We would also need to propagate this information in the 277 // repairing placement. 278 unsigned Cost = RBI->copyCost(*DesiredRegBank, *CurRegBank, 279 RBI->getSizeInBits(MO.getReg(), *MRI, *TRI)); 280 // TODO: use a dedicated constant for ImpossibleCost. 281 if (Cost != std::numeric_limits<unsigned>::max()) 282 return Cost; 283 // Return the legalization cost of that repairing. 284 } 285 return std::numeric_limits<unsigned>::max(); 286 } 287 288 const RegisterBankInfo::InstructionMapping &RegBankSelect::findBestMapping( 289 MachineInstr &MI, RegisterBankInfo::InstructionMappings &PossibleMappings, 290 SmallVectorImpl<RepairingPlacement> &RepairPts) { 291 assert(!PossibleMappings.empty() && 292 "Do not know how to map this instruction"); 293 294 const RegisterBankInfo::InstructionMapping *BestMapping = nullptr; 295 MappingCost Cost = MappingCost::ImpossibleCost(); 296 SmallVector<RepairingPlacement, 4> LocalRepairPts; 297 for (const RegisterBankInfo::InstructionMapping *CurMapping : 298 PossibleMappings) { 299 MappingCost CurCost = 300 computeMapping(MI, *CurMapping, LocalRepairPts, &Cost); 301 if (CurCost < Cost) { 302 LLVM_DEBUG(dbgs() << "New best: " << CurCost << '\n'); 303 Cost = CurCost; 304 BestMapping = CurMapping; 305 RepairPts.clear(); 306 for (RepairingPlacement &RepairPt : LocalRepairPts) 307 RepairPts.emplace_back(std::move(RepairPt)); 308 } 309 } 310 if (!BestMapping && !TPC->isGlobalISelAbortEnabled()) { 311 // If none of the mapping worked that means they are all impossible. 312 // Thus, pick the first one and set an impossible repairing point. 313 // It will trigger the failed isel mode. 314 BestMapping = *PossibleMappings.begin(); 315 RepairPts.emplace_back( 316 RepairingPlacement(MI, 0, *TRI, *this, RepairingPlacement::Impossible)); 317 } else 318 assert(BestMapping && "No suitable mapping for instruction"); 319 return *BestMapping; 320 } 321 322 void RegBankSelect::tryAvoidingSplit( 323 RegBankSelect::RepairingPlacement &RepairPt, const MachineOperand &MO, 324 const RegisterBankInfo::ValueMapping &ValMapping) const { 325 const MachineInstr &MI = *MO.getParent(); 326 assert(RepairPt.hasSplit() && "We should not have to adjust for split"); 327 // Splitting should only occur for PHIs or between terminators, 328 // because we only do local repairing. 329 assert((MI.isPHI() || MI.isTerminator()) && "Why do we split?"); 330 331 assert(&MI.getOperand(RepairPt.getOpIdx()) == &MO && 332 "Repairing placement does not match operand"); 333 334 // If we need splitting for phis, that means it is because we 335 // could not find an insertion point before the terminators of 336 // the predecessor block for this argument. In other words, 337 // the input value is defined by one of the terminators. 338 assert((!MI.isPHI() || !MO.isDef()) && "Need split for phi def?"); 339 340 // We split to repair the use of a phi or a terminator. 341 if (!MO.isDef()) { 342 if (MI.isTerminator()) { 343 assert(&MI != &(*MI.getParent()->getFirstTerminator()) && 344 "Need to split for the first terminator?!"); 345 } else { 346 // For the PHI case, the split may not be actually required. 347 // In the copy case, a phi is already a copy on the incoming edge, 348 // therefore there is no need to split. 349 if (ValMapping.NumBreakDowns == 1) 350 // This is a already a copy, there is nothing to do. 351 RepairPt.switchTo(RepairingPlacement::RepairingKind::Reassign); 352 } 353 return; 354 } 355 356 // At this point, we need to repair a defintion of a terminator. 357 358 // Technically we need to fix the def of MI on all outgoing 359 // edges of MI to keep the repairing local. In other words, we 360 // will create several definitions of the same register. This 361 // does not work for SSA unless that definition is a physical 362 // register. 363 // However, there are other cases where we can get away with 364 // that while still keeping the repairing local. 365 assert(MI.isTerminator() && MO.isDef() && 366 "This code is for the def of a terminator"); 367 368 // Since we use RPO traversal, if we need to repair a definition 369 // this means this definition could be: 370 // 1. Used by PHIs (i.e., this VReg has been visited as part of the 371 // uses of a phi.), or 372 // 2. Part of a target specific instruction (i.e., the target applied 373 // some register class constraints when creating the instruction.) 374 // If the constraints come for #2, the target said that another mapping 375 // is supported so we may just drop them. Indeed, if we do not change 376 // the number of registers holding that value, the uses will get fixed 377 // when we get to them. 378 // Uses in PHIs may have already been proceeded though. 379 // If the constraints come for #1, then, those are weak constraints and 380 // no actual uses may rely on them. However, the problem remains mainly 381 // the same as for #2. If the value stays in one register, we could 382 // just switch the register bank of the definition, but we would need to 383 // account for a repairing cost for each phi we silently change. 384 // 385 // In any case, if the value needs to be broken down into several 386 // registers, the repairing is not local anymore as we need to patch 387 // every uses to rebuild the value in just one register. 388 // 389 // To summarize: 390 // - If the value is in a physical register, we can do the split and 391 // fix locally. 392 // Otherwise if the value is in a virtual register: 393 // - If the value remains in one register, we do not have to split 394 // just switching the register bank would do, but we need to account 395 // in the repairing cost all the phi we changed. 396 // - If the value spans several registers, then we cannot do a local 397 // repairing. 398 399 // Check if this is a physical or virtual register. 400 Register Reg = MO.getReg(); 401 if (Register::isPhysicalRegister(Reg)) { 402 // We are going to split every outgoing edges. 403 // Check that this is possible. 404 // FIXME: The machine representation is currently broken 405 // since it also several terminators in one basic block. 406 // Because of that we would technically need a way to get 407 // the targets of just one terminator to know which edges 408 // we have to split. 409 // Assert that we do not hit the ill-formed representation. 410 411 // If there are other terminators before that one, some of 412 // the outgoing edges may not be dominated by this definition. 413 assert(&MI == &(*MI.getParent()->getFirstTerminator()) && 414 "Do not know which outgoing edges are relevant"); 415 const MachineInstr *Next = MI.getNextNode(); 416 assert((!Next || Next->isUnconditionalBranch()) && 417 "Do not know where each terminator ends up"); 418 if (Next) 419 // If the next terminator uses Reg, this means we have 420 // to split right after MI and thus we need a way to ask 421 // which outgoing edges are affected. 422 assert(!Next->readsRegister(Reg) && "Need to split between terminators"); 423 // We will split all the edges and repair there. 424 } else { 425 // This is a virtual register defined by a terminator. 426 if (ValMapping.NumBreakDowns == 1) { 427 // There is nothing to repair, but we may actually lie on 428 // the repairing cost because of the PHIs already proceeded 429 // as already stated. 430 // Though the code will be correct. 431 assert(false && "Repairing cost may not be accurate"); 432 } else { 433 // We need to do non-local repairing. Basically, patch all 434 // the uses (i.e., phis) that we already proceeded. 435 // For now, just say this mapping is not possible. 436 RepairPt.switchTo(RepairingPlacement::RepairingKind::Impossible); 437 } 438 } 439 } 440 441 RegBankSelect::MappingCost RegBankSelect::computeMapping( 442 MachineInstr &MI, const RegisterBankInfo::InstructionMapping &InstrMapping, 443 SmallVectorImpl<RepairingPlacement> &RepairPts, 444 const RegBankSelect::MappingCost *BestCost) { 445 assert((MBFI || !BestCost) && "Costs comparison require MBFI"); 446 447 if (!InstrMapping.isValid()) 448 return MappingCost::ImpossibleCost(); 449 450 // If mapped with InstrMapping, MI will have the recorded cost. 451 MappingCost Cost(MBFI ? MBFI->getBlockFreq(MI.getParent()) : 1); 452 bool Saturated = Cost.addLocalCost(InstrMapping.getCost()); 453 assert(!Saturated && "Possible mapping saturated the cost"); 454 LLVM_DEBUG(dbgs() << "Evaluating mapping cost for: " << MI); 455 LLVM_DEBUG(dbgs() << "With: " << InstrMapping << '\n'); 456 RepairPts.clear(); 457 if (BestCost && Cost > *BestCost) { 458 LLVM_DEBUG(dbgs() << "Mapping is too expensive from the start\n"); 459 return Cost; 460 } 461 462 // Moreover, to realize this mapping, the register bank of each operand must 463 // match this mapping. In other words, we may need to locally reassign the 464 // register banks. Account for that repairing cost as well. 465 // In this context, local means in the surrounding of MI. 466 for (unsigned OpIdx = 0, EndOpIdx = InstrMapping.getNumOperands(); 467 OpIdx != EndOpIdx; ++OpIdx) { 468 const MachineOperand &MO = MI.getOperand(OpIdx); 469 if (!MO.isReg()) 470 continue; 471 Register Reg = MO.getReg(); 472 if (!Reg) 473 continue; 474 LLVM_DEBUG(dbgs() << "Opd" << OpIdx << '\n'); 475 const RegisterBankInfo::ValueMapping &ValMapping = 476 InstrMapping.getOperandMapping(OpIdx); 477 // If Reg is already properly mapped, this is free. 478 bool Assign; 479 if (assignmentMatch(Reg, ValMapping, Assign)) { 480 LLVM_DEBUG(dbgs() << "=> is free (match).\n"); 481 continue; 482 } 483 if (Assign) { 484 LLVM_DEBUG(dbgs() << "=> is free (simple assignment).\n"); 485 RepairPts.emplace_back(RepairingPlacement(MI, OpIdx, *TRI, *this, 486 RepairingPlacement::Reassign)); 487 continue; 488 } 489 490 // Find the insertion point for the repairing code. 491 RepairPts.emplace_back( 492 RepairingPlacement(MI, OpIdx, *TRI, *this, RepairingPlacement::Insert)); 493 RepairingPlacement &RepairPt = RepairPts.back(); 494 495 // If we need to split a basic block to materialize this insertion point, 496 // we may give a higher cost to this mapping. 497 // Nevertheless, we may get away with the split, so try that first. 498 if (RepairPt.hasSplit()) 499 tryAvoidingSplit(RepairPt, MO, ValMapping); 500 501 // Check that the materialization of the repairing is possible. 502 if (!RepairPt.canMaterialize()) { 503 LLVM_DEBUG(dbgs() << "Mapping involves impossible repairing\n"); 504 return MappingCost::ImpossibleCost(); 505 } 506 507 // Account for the split cost and repair cost. 508 // Unless the cost is already saturated or we do not care about the cost. 509 if (!BestCost || Saturated) 510 continue; 511 512 // To get accurate information we need MBFI and MBPI. 513 // Thus, if we end up here this information should be here. 514 assert(MBFI && MBPI && "Cost computation requires MBFI and MBPI"); 515 516 // FIXME: We will have to rework the repairing cost model. 517 // The repairing cost depends on the register bank that MO has. 518 // However, when we break down the value into different values, 519 // MO may not have a register bank while still needing repairing. 520 // For the fast mode, we don't compute the cost so that is fine, 521 // but still for the repairing code, we will have to make a choice. 522 // For the greedy mode, we should choose greedily what is the best 523 // choice based on the next use of MO. 524 525 // Sums up the repairing cost of MO at each insertion point. 526 uint64_t RepairCost = getRepairCost(MO, ValMapping); 527 528 // This is an impossible to repair cost. 529 if (RepairCost == std::numeric_limits<unsigned>::max()) 530 return MappingCost::ImpossibleCost(); 531 532 // Bias used for splitting: 5%. 533 const uint64_t PercentageForBias = 5; 534 uint64_t Bias = (RepairCost * PercentageForBias + 99) / 100; 535 // We should not need more than a couple of instructions to repair 536 // an assignment. In other words, the computation should not 537 // overflow because the repairing cost is free of basic block 538 // frequency. 539 assert(((RepairCost < RepairCost * PercentageForBias) && 540 (RepairCost * PercentageForBias < 541 RepairCost * PercentageForBias + 99)) && 542 "Repairing involves more than a billion of instructions?!"); 543 for (const std::unique_ptr<InsertPoint> &InsertPt : RepairPt) { 544 assert(InsertPt->canMaterialize() && "We should not have made it here"); 545 // We will applied some basic block frequency and those uses uint64_t. 546 if (!InsertPt->isSplit()) 547 Saturated = Cost.addLocalCost(RepairCost); 548 else { 549 uint64_t CostForInsertPt = RepairCost; 550 // Again we shouldn't overflow here givent that 551 // CostForInsertPt is frequency free at this point. 552 assert(CostForInsertPt + Bias > CostForInsertPt && 553 "Repairing + split bias overflows"); 554 CostForInsertPt += Bias; 555 uint64_t PtCost = InsertPt->frequency(*this) * CostForInsertPt; 556 // Check if we just overflowed. 557 if ((Saturated = PtCost < CostForInsertPt)) 558 Cost.saturate(); 559 else 560 Saturated = Cost.addNonLocalCost(PtCost); 561 } 562 563 // Stop looking into what it takes to repair, this is already 564 // too expensive. 565 if (BestCost && Cost > *BestCost) { 566 LLVM_DEBUG(dbgs() << "Mapping is too expensive, stop processing\n"); 567 return Cost; 568 } 569 570 // No need to accumulate more cost information. 571 // We need to still gather the repairing information though. 572 if (Saturated) 573 break; 574 } 575 } 576 LLVM_DEBUG(dbgs() << "Total cost is: " << Cost << "\n"); 577 return Cost; 578 } 579 580 bool RegBankSelect::applyMapping( 581 MachineInstr &MI, const RegisterBankInfo::InstructionMapping &InstrMapping, 582 SmallVectorImpl<RegBankSelect::RepairingPlacement> &RepairPts) { 583 // OpdMapper will hold all the information needed for the rewriting. 584 RegisterBankInfo::OperandsMapper OpdMapper(MI, InstrMapping, *MRI); 585 586 // First, place the repairing code. 587 for (RepairingPlacement &RepairPt : RepairPts) { 588 if (!RepairPt.canMaterialize() || 589 RepairPt.getKind() == RepairingPlacement::Impossible) 590 return false; 591 assert(RepairPt.getKind() != RepairingPlacement::None && 592 "This should not make its way in the list"); 593 unsigned OpIdx = RepairPt.getOpIdx(); 594 MachineOperand &MO = MI.getOperand(OpIdx); 595 const RegisterBankInfo::ValueMapping &ValMapping = 596 InstrMapping.getOperandMapping(OpIdx); 597 Register Reg = MO.getReg(); 598 599 switch (RepairPt.getKind()) { 600 case RepairingPlacement::Reassign: 601 assert(ValMapping.NumBreakDowns == 1 && 602 "Reassignment should only be for simple mapping"); 603 MRI->setRegBank(Reg, *ValMapping.BreakDown[0].RegBank); 604 break; 605 case RepairingPlacement::Insert: 606 OpdMapper.createVRegs(OpIdx); 607 if (!repairReg(MO, ValMapping, RepairPt, OpdMapper.getVRegs(OpIdx))) 608 return false; 609 break; 610 default: 611 llvm_unreachable("Other kind should not happen"); 612 } 613 } 614 615 // Second, rewrite the instruction. 616 LLVM_DEBUG(dbgs() << "Actual mapping of the operands: " << OpdMapper << '\n'); 617 RBI->applyMapping(OpdMapper); 618 619 return true; 620 } 621 622 bool RegBankSelect::assignInstr(MachineInstr &MI) { 623 LLVM_DEBUG(dbgs() << "Assign: " << MI); 624 625 unsigned Opc = MI.getOpcode(); 626 if (isPreISelGenericOptimizationHint(Opc)) { 627 assert((Opc == TargetOpcode::G_ASSERT_ZEXT || 628 Opc == TargetOpcode::G_ASSERT_SEXT || 629 Opc == TargetOpcode::G_ASSERT_ALIGN) && 630 "Unexpected hint opcode!"); 631 // The only correct mapping for these is to always use the source register 632 // bank. 633 const RegisterBank *RB = MRI->getRegBankOrNull(MI.getOperand(1).getReg()); 634 // We can assume every instruction above this one has a selected register 635 // bank. 636 assert(RB && "Expected source register to have a register bank?"); 637 LLVM_DEBUG(dbgs() << "... Hint always uses source's register bank.\n"); 638 MRI->setRegBank(MI.getOperand(0).getReg(), *RB); 639 return true; 640 } 641 642 // Remember the repairing placement for all the operands. 643 SmallVector<RepairingPlacement, 4> RepairPts; 644 645 const RegisterBankInfo::InstructionMapping *BestMapping; 646 if (OptMode == RegBankSelect::Mode::Fast) { 647 BestMapping = &RBI->getInstrMapping(MI); 648 MappingCost DefaultCost = computeMapping(MI, *BestMapping, RepairPts); 649 (void)DefaultCost; 650 if (DefaultCost == MappingCost::ImpossibleCost()) 651 return false; 652 } else { 653 RegisterBankInfo::InstructionMappings PossibleMappings = 654 RBI->getInstrPossibleMappings(MI); 655 if (PossibleMappings.empty()) 656 return false; 657 BestMapping = &findBestMapping(MI, PossibleMappings, RepairPts); 658 } 659 // Make sure the mapping is valid for MI. 660 assert(BestMapping->verify(MI) && "Invalid instruction mapping"); 661 662 LLVM_DEBUG(dbgs() << "Best Mapping: " << *BestMapping << '\n'); 663 664 // After this call, MI may not be valid anymore. 665 // Do not use it. 666 return applyMapping(MI, *BestMapping, RepairPts); 667 } 668 669 bool RegBankSelect::runOnMachineFunction(MachineFunction &MF) { 670 // If the ISel pipeline failed, do not bother running that pass. 671 if (MF.getProperties().hasProperty( 672 MachineFunctionProperties::Property::FailedISel)) 673 return false; 674 675 LLVM_DEBUG(dbgs() << "Assign register banks for: " << MF.getName() << '\n'); 676 const Function &F = MF.getFunction(); 677 Mode SaveOptMode = OptMode; 678 if (F.hasOptNone()) 679 OptMode = Mode::Fast; 680 init(MF); 681 682 #ifndef NDEBUG 683 // Check that our input is fully legal: we require the function to have the 684 // Legalized property, so it should be. 685 // FIXME: This should be in the MachineVerifier. 686 if (!DisableGISelLegalityCheck) 687 if (const MachineInstr *MI = machineFunctionIsIllegal(MF)) { 688 reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect", 689 "instruction is not legal", *MI); 690 return false; 691 } 692 #endif 693 694 // Walk the function and assign register banks to all operands. 695 // Use a RPOT to make sure all registers are assigned before we choose 696 // the best mapping of the current instruction. 697 ReversePostOrderTraversal<MachineFunction*> RPOT(&MF); 698 for (MachineBasicBlock *MBB : RPOT) { 699 // Set a sensible insertion point so that subsequent calls to 700 // MIRBuilder. 701 MIRBuilder.setMBB(*MBB); 702 SmallVector<MachineInstr *> WorkList( 703 make_pointer_range(reverse(MBB->instrs()))); 704 705 while (!WorkList.empty()) { 706 MachineInstr &MI = *WorkList.pop_back_val(); 707 708 // Ignore target-specific post-isel instructions: they should use proper 709 // regclasses. 710 if (isTargetSpecificOpcode(MI.getOpcode()) && !MI.isPreISelOpcode()) 711 continue; 712 713 // Ignore inline asm instructions: they should use physical 714 // registers/regclasses 715 if (MI.isInlineAsm()) 716 continue; 717 718 // Ignore debug info. 719 if (MI.isDebugInstr()) 720 continue; 721 722 // Ignore IMPLICIT_DEF which must have a regclass. 723 if (MI.isImplicitDef()) 724 continue; 725 726 if (!assignInstr(MI)) { 727 reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect", 728 "unable to map instruction", MI); 729 return false; 730 } 731 } 732 } 733 734 OptMode = SaveOptMode; 735 return false; 736 } 737 738 //------------------------------------------------------------------------------ 739 // Helper Classes Implementation 740 //------------------------------------------------------------------------------ 741 RegBankSelect::RepairingPlacement::RepairingPlacement( 742 MachineInstr &MI, unsigned OpIdx, const TargetRegisterInfo &TRI, Pass &P, 743 RepairingPlacement::RepairingKind Kind) 744 // Default is, we are going to insert code to repair OpIdx. 745 : Kind(Kind), OpIdx(OpIdx), 746 CanMaterialize(Kind != RepairingKind::Impossible), P(P) { 747 const MachineOperand &MO = MI.getOperand(OpIdx); 748 assert(MO.isReg() && "Trying to repair a non-reg operand"); 749 750 if (Kind != RepairingKind::Insert) 751 return; 752 753 // Repairings for definitions happen after MI, uses happen before. 754 bool Before = !MO.isDef(); 755 756 // Check if we are done with MI. 757 if (!MI.isPHI() && !MI.isTerminator()) { 758 addInsertPoint(MI, Before); 759 // We are done with the initialization. 760 return; 761 } 762 763 // Now, look for the special cases. 764 if (MI.isPHI()) { 765 // - PHI must be the first instructions: 766 // * Before, we have to split the related incoming edge. 767 // * After, move the insertion point past the last phi. 768 if (!Before) { 769 MachineBasicBlock::iterator It = MI.getParent()->getFirstNonPHI(); 770 if (It != MI.getParent()->end()) 771 addInsertPoint(*It, /*Before*/ true); 772 else 773 addInsertPoint(*(--It), /*Before*/ false); 774 return; 775 } 776 // We repair a use of a phi, we may need to split the related edge. 777 MachineBasicBlock &Pred = *MI.getOperand(OpIdx + 1).getMBB(); 778 // Check if we can move the insertion point prior to the 779 // terminators of the predecessor. 780 Register Reg = MO.getReg(); 781 MachineBasicBlock::iterator It = Pred.getLastNonDebugInstr(); 782 for (auto Begin = Pred.begin(); It != Begin && It->isTerminator(); --It) 783 if (It->modifiesRegister(Reg, &TRI)) { 784 // We cannot hoist the repairing code in the predecessor. 785 // Split the edge. 786 addInsertPoint(Pred, *MI.getParent()); 787 return; 788 } 789 // At this point, we can insert in Pred. 790 791 // - If It is invalid, Pred is empty and we can insert in Pred 792 // wherever we want. 793 // - If It is valid, It is the first non-terminator, insert after It. 794 if (It == Pred.end()) 795 addInsertPoint(Pred, /*Beginning*/ false); 796 else 797 addInsertPoint(*It, /*Before*/ false); 798 } else { 799 // - Terminators must be the last instructions: 800 // * Before, move the insert point before the first terminator. 801 // * After, we have to split the outcoming edges. 802 if (Before) { 803 // Check whether Reg is defined by any terminator. 804 MachineBasicBlock::reverse_iterator It = MI; 805 auto REnd = MI.getParent()->rend(); 806 807 for (; It != REnd && It->isTerminator(); ++It) { 808 assert(!It->modifiesRegister(MO.getReg(), &TRI) && 809 "copy insertion in middle of terminators not handled"); 810 } 811 812 if (It == REnd) { 813 addInsertPoint(*MI.getParent()->begin(), true); 814 return; 815 } 816 817 // We are sure to be right before the first terminator. 818 addInsertPoint(*It, /*Before*/ false); 819 return; 820 } 821 // Make sure Reg is not redefined by other terminators, otherwise 822 // we do not know how to split. 823 for (MachineBasicBlock::iterator It = MI, End = MI.getParent()->end(); 824 ++It != End;) 825 // The machine verifier should reject this kind of code. 826 assert(It->modifiesRegister(MO.getReg(), &TRI) && 827 "Do not know where to split"); 828 // Split each outcoming edges. 829 MachineBasicBlock &Src = *MI.getParent(); 830 for (auto &Succ : Src.successors()) 831 addInsertPoint(Src, Succ); 832 } 833 } 834 835 void RegBankSelect::RepairingPlacement::addInsertPoint(MachineInstr &MI, 836 bool Before) { 837 addInsertPoint(*new InstrInsertPoint(MI, Before)); 838 } 839 840 void RegBankSelect::RepairingPlacement::addInsertPoint(MachineBasicBlock &MBB, 841 bool Beginning) { 842 addInsertPoint(*new MBBInsertPoint(MBB, Beginning)); 843 } 844 845 void RegBankSelect::RepairingPlacement::addInsertPoint(MachineBasicBlock &Src, 846 MachineBasicBlock &Dst) { 847 addInsertPoint(*new EdgeInsertPoint(Src, Dst, P)); 848 } 849 850 void RegBankSelect::RepairingPlacement::addInsertPoint( 851 RegBankSelect::InsertPoint &Point) { 852 CanMaterialize &= Point.canMaterialize(); 853 HasSplit |= Point.isSplit(); 854 InsertPoints.emplace_back(&Point); 855 } 856 857 RegBankSelect::InstrInsertPoint::InstrInsertPoint(MachineInstr &Instr, 858 bool Before) 859 : Instr(Instr), Before(Before) { 860 // Since we do not support splitting, we do not need to update 861 // liveness and such, so do not do anything with P. 862 assert((!Before || !Instr.isPHI()) && 863 "Splitting before phis requires more points"); 864 assert((!Before || !Instr.getNextNode() || !Instr.getNextNode()->isPHI()) && 865 "Splitting between phis does not make sense"); 866 } 867 868 void RegBankSelect::InstrInsertPoint::materialize() { 869 if (isSplit()) { 870 // Slice and return the beginning of the new block. 871 // If we need to split between the terminators, we theoritically 872 // need to know where the first and second set of terminators end 873 // to update the successors properly. 874 // Now, in pratice, we should have a maximum of 2 branch 875 // instructions; one conditional and one unconditional. Therefore 876 // we know how to update the successor by looking at the target of 877 // the unconditional branch. 878 // If we end up splitting at some point, then, we should update 879 // the liveness information and such. I.e., we would need to 880 // access P here. 881 // The machine verifier should actually make sure such cases 882 // cannot happen. 883 llvm_unreachable("Not yet implemented"); 884 } 885 // Otherwise the insertion point is just the current or next 886 // instruction depending on Before. I.e., there is nothing to do 887 // here. 888 } 889 890 bool RegBankSelect::InstrInsertPoint::isSplit() const { 891 // If the insertion point is after a terminator, we need to split. 892 if (!Before) 893 return Instr.isTerminator(); 894 // If we insert before an instruction that is after a terminator, 895 // we are still after a terminator. 896 return Instr.getPrevNode() && Instr.getPrevNode()->isTerminator(); 897 } 898 899 uint64_t RegBankSelect::InstrInsertPoint::frequency(const Pass &P) const { 900 // Even if we need to split, because we insert between terminators, 901 // this split has actually the same frequency as the instruction. 902 const MachineBlockFrequencyInfo *MBFI = 903 P.getAnalysisIfAvailable<MachineBlockFrequencyInfo>(); 904 if (!MBFI) 905 return 1; 906 return MBFI->getBlockFreq(Instr.getParent()).getFrequency(); 907 } 908 909 uint64_t RegBankSelect::MBBInsertPoint::frequency(const Pass &P) const { 910 const MachineBlockFrequencyInfo *MBFI = 911 P.getAnalysisIfAvailable<MachineBlockFrequencyInfo>(); 912 if (!MBFI) 913 return 1; 914 return MBFI->getBlockFreq(&MBB).getFrequency(); 915 } 916 917 void RegBankSelect::EdgeInsertPoint::materialize() { 918 // If we end up repairing twice at the same place before materializing the 919 // insertion point, we may think we have to split an edge twice. 920 // We should have a factory for the insert point such that identical points 921 // are the same instance. 922 assert(Src.isSuccessor(DstOrSplit) && DstOrSplit->isPredecessor(&Src) && 923 "This point has already been split"); 924 MachineBasicBlock *NewBB = Src.SplitCriticalEdge(DstOrSplit, P); 925 assert(NewBB && "Invalid call to materialize"); 926 // We reuse the destination block to hold the information of the new block. 927 DstOrSplit = NewBB; 928 } 929 930 uint64_t RegBankSelect::EdgeInsertPoint::frequency(const Pass &P) const { 931 const MachineBlockFrequencyInfo *MBFI = 932 P.getAnalysisIfAvailable<MachineBlockFrequencyInfo>(); 933 if (!MBFI) 934 return 1; 935 if (WasMaterialized) 936 return MBFI->getBlockFreq(DstOrSplit).getFrequency(); 937 938 const MachineBranchProbabilityInfo *MBPI = 939 P.getAnalysisIfAvailable<MachineBranchProbabilityInfo>(); 940 if (!MBPI) 941 return 1; 942 // The basic block will be on the edge. 943 return (MBFI->getBlockFreq(&Src) * MBPI->getEdgeProbability(&Src, DstOrSplit)) 944 .getFrequency(); 945 } 946 947 bool RegBankSelect::EdgeInsertPoint::canMaterialize() const { 948 // If this is not a critical edge, we should not have used this insert 949 // point. Indeed, either the successor or the predecessor should 950 // have do. 951 assert(Src.succ_size() > 1 && DstOrSplit->pred_size() > 1 && 952 "Edge is not critical"); 953 return Src.canSplitCriticalEdge(DstOrSplit); 954 } 955 956 RegBankSelect::MappingCost::MappingCost(const BlockFrequency &LocalFreq) 957 : LocalFreq(LocalFreq.getFrequency()) {} 958 959 bool RegBankSelect::MappingCost::addLocalCost(uint64_t Cost) { 960 // Check if this overflows. 961 if (LocalCost + Cost < LocalCost) { 962 saturate(); 963 return true; 964 } 965 LocalCost += Cost; 966 return isSaturated(); 967 } 968 969 bool RegBankSelect::MappingCost::addNonLocalCost(uint64_t Cost) { 970 // Check if this overflows. 971 if (NonLocalCost + Cost < NonLocalCost) { 972 saturate(); 973 return true; 974 } 975 NonLocalCost += Cost; 976 return isSaturated(); 977 } 978 979 bool RegBankSelect::MappingCost::isSaturated() const { 980 return LocalCost == UINT64_MAX - 1 && NonLocalCost == UINT64_MAX && 981 LocalFreq == UINT64_MAX; 982 } 983 984 void RegBankSelect::MappingCost::saturate() { 985 *this = ImpossibleCost(); 986 --LocalCost; 987 } 988 989 RegBankSelect::MappingCost RegBankSelect::MappingCost::ImpossibleCost() { 990 return MappingCost(UINT64_MAX, UINT64_MAX, UINT64_MAX); 991 } 992 993 bool RegBankSelect::MappingCost::operator<(const MappingCost &Cost) const { 994 // Sort out the easy cases. 995 if (*this == Cost) 996 return false; 997 // If one is impossible to realize the other is cheaper unless it is 998 // impossible as well. 999 if ((*this == ImpossibleCost()) || (Cost == ImpossibleCost())) 1000 return (*this == ImpossibleCost()) < (Cost == ImpossibleCost()); 1001 // If one is saturated the other is cheaper, unless it is saturated 1002 // as well. 1003 if (isSaturated() || Cost.isSaturated()) 1004 return isSaturated() < Cost.isSaturated(); 1005 // At this point we know both costs hold sensible values. 1006 1007 // If both values have a different base frequency, there is no much 1008 // we can do but to scale everything. 1009 // However, if they have the same base frequency we can avoid making 1010 // complicated computation. 1011 uint64_t ThisLocalAdjust; 1012 uint64_t OtherLocalAdjust; 1013 if (LLVM_LIKELY(LocalFreq == Cost.LocalFreq)) { 1014 1015 // At this point, we know the local costs are comparable. 1016 // Do the case that do not involve potential overflow first. 1017 if (NonLocalCost == Cost.NonLocalCost) 1018 // Since the non-local costs do not discriminate on the result, 1019 // just compare the local costs. 1020 return LocalCost < Cost.LocalCost; 1021 1022 // The base costs are comparable so we may only keep the relative 1023 // value to increase our chances of avoiding overflows. 1024 ThisLocalAdjust = 0; 1025 OtherLocalAdjust = 0; 1026 if (LocalCost < Cost.LocalCost) 1027 OtherLocalAdjust = Cost.LocalCost - LocalCost; 1028 else 1029 ThisLocalAdjust = LocalCost - Cost.LocalCost; 1030 } else { 1031 ThisLocalAdjust = LocalCost; 1032 OtherLocalAdjust = Cost.LocalCost; 1033 } 1034 1035 // The non-local costs are comparable, just keep the relative value. 1036 uint64_t ThisNonLocalAdjust = 0; 1037 uint64_t OtherNonLocalAdjust = 0; 1038 if (NonLocalCost < Cost.NonLocalCost) 1039 OtherNonLocalAdjust = Cost.NonLocalCost - NonLocalCost; 1040 else 1041 ThisNonLocalAdjust = NonLocalCost - Cost.NonLocalCost; 1042 // Scale everything to make them comparable. 1043 uint64_t ThisScaledCost = ThisLocalAdjust * LocalFreq; 1044 // Check for overflow on that operation. 1045 bool ThisOverflows = ThisLocalAdjust && (ThisScaledCost < ThisLocalAdjust || 1046 ThisScaledCost < LocalFreq); 1047 uint64_t OtherScaledCost = OtherLocalAdjust * Cost.LocalFreq; 1048 // Check for overflow on the last operation. 1049 bool OtherOverflows = 1050 OtherLocalAdjust && 1051 (OtherScaledCost < OtherLocalAdjust || OtherScaledCost < Cost.LocalFreq); 1052 // Add the non-local costs. 1053 ThisOverflows |= ThisNonLocalAdjust && 1054 ThisScaledCost + ThisNonLocalAdjust < ThisNonLocalAdjust; 1055 ThisScaledCost += ThisNonLocalAdjust; 1056 OtherOverflows |= OtherNonLocalAdjust && 1057 OtherScaledCost + OtherNonLocalAdjust < OtherNonLocalAdjust; 1058 OtherScaledCost += OtherNonLocalAdjust; 1059 // If both overflows, we cannot compare without additional 1060 // precision, e.g., APInt. Just give up on that case. 1061 if (ThisOverflows && OtherOverflows) 1062 return false; 1063 // If one overflows but not the other, we can still compare. 1064 if (ThisOverflows || OtherOverflows) 1065 return ThisOverflows < OtherOverflows; 1066 // Otherwise, just compare the values. 1067 return ThisScaledCost < OtherScaledCost; 1068 } 1069 1070 bool RegBankSelect::MappingCost::operator==(const MappingCost &Cost) const { 1071 return LocalCost == Cost.LocalCost && NonLocalCost == Cost.NonLocalCost && 1072 LocalFreq == Cost.LocalFreq; 1073 } 1074 1075 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 1076 LLVM_DUMP_METHOD void RegBankSelect::MappingCost::dump() const { 1077 print(dbgs()); 1078 dbgs() << '\n'; 1079 } 1080 #endif 1081 1082 void RegBankSelect::MappingCost::print(raw_ostream &OS) const { 1083 if (*this == ImpossibleCost()) { 1084 OS << "impossible"; 1085 return; 1086 } 1087 if (isSaturated()) { 1088 OS << "saturated"; 1089 return; 1090 } 1091 OS << LocalFreq << " * " << LocalCost << " + " << NonLocalCost; 1092 } 1093