1 //===--- HexagonBlockRanges.cpp -------------------------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #define DEBUG_TYPE "hbr" 11 12 #include "HexagonBlockRanges.h" 13 #include "HexagonInstrInfo.h" 14 #include "HexagonSubtarget.h" 15 #include "llvm/ADT/BitVector.h" 16 #include "llvm/ADT/STLExtras.h" 17 #include "llvm/CodeGen/MachineBasicBlock.h" 18 #include "llvm/CodeGen/MachineFunction.h" 19 #include "llvm/CodeGen/MachineInstr.h" 20 #include "llvm/CodeGen/MachineRegisterInfo.h" 21 #include "llvm/MC/MCRegisterInfo.h" 22 #include "llvm/Support/Debug.h" 23 #include "llvm/Support/raw_ostream.h" 24 #include "llvm/Target/TargetRegisterInfo.h" 25 #include <algorithm> 26 #include <cassert> 27 #include <iterator> 28 #include <map> 29 30 using namespace llvm; 31 32 bool HexagonBlockRanges::IndexRange::overlaps(const IndexRange &A) const { 33 // If A contains start(), or "this" contains A.start(), then overlap. 34 IndexType S = start(), E = end(), AS = A.start(), AE = A.end(); 35 if (AS == S) 36 return true; 37 bool SbAE = (S < AE) || (S == AE && A.TiedEnd); // S-before-AE. 38 bool ASbE = (AS < E) || (AS == E && TiedEnd); // AS-before-E. 39 if ((AS < S && SbAE) || (S < AS && ASbE)) 40 return true; 41 // Otherwise no overlap. 42 return false; 43 } 44 45 bool HexagonBlockRanges::IndexRange::contains(const IndexRange &A) const { 46 if (start() <= A.start()) { 47 // Treat "None" in the range end as equal to the range start. 48 IndexType E = (end() != IndexType::None) ? end() : start(); 49 IndexType AE = (A.end() != IndexType::None) ? A.end() : A.start(); 50 if (AE <= E) 51 return true; 52 } 53 return false; 54 } 55 56 void HexagonBlockRanges::IndexRange::merge(const IndexRange &A) { 57 // Allow merging adjacent ranges. 58 assert(end() == A.start() || overlaps(A)); 59 IndexType AS = A.start(), AE = A.end(); 60 if (AS < start() || start() == IndexType::None) 61 setStart(AS); 62 if (end() < AE || end() == IndexType::None) { 63 setEnd(AE); 64 TiedEnd = A.TiedEnd; 65 } else { 66 if (end() == AE) 67 TiedEnd |= A.TiedEnd; 68 } 69 if (A.Fixed) 70 Fixed = true; 71 } 72 73 void HexagonBlockRanges::RangeList::include(const RangeList &RL) { 74 for (auto &R : RL) 75 if (!is_contained(*this, R)) 76 push_back(R); 77 } 78 79 // Merge all overlapping ranges in the list, so that all that remains 80 // is a list of disjoint ranges. 81 void HexagonBlockRanges::RangeList::unionize(bool MergeAdjacent) { 82 if (empty()) 83 return; 84 85 std::sort(begin(), end()); 86 iterator Iter = begin(); 87 88 while (Iter != end()-1) { 89 iterator Next = std::next(Iter); 90 // If MergeAdjacent is true, merge ranges A and B, where A.end == B.start. 91 // This allows merging dead ranges, but is not valid for live ranges. 92 bool Merge = MergeAdjacent && (Iter->end() == Next->start()); 93 if (Merge || Iter->overlaps(*Next)) { 94 Iter->merge(*Next); 95 erase(Next); 96 continue; 97 } 98 ++Iter; 99 } 100 } 101 102 // Compute a range A-B and add it to the list. 103 void HexagonBlockRanges::RangeList::addsub(const IndexRange &A, 104 const IndexRange &B) { 105 // Exclusion of non-overlapping ranges makes some checks simpler 106 // later in this function. 107 if (!A.overlaps(B)) { 108 // A - B = A. 109 add(A); 110 return; 111 } 112 113 IndexType AS = A.start(), AE = A.end(); 114 IndexType BS = B.start(), BE = B.end(); 115 116 // If AE is None, then A is included in B, since A and B overlap. 117 // The result of subtraction if empty, so just return. 118 if (AE == IndexType::None) 119 return; 120 121 if (AS < BS) { 122 // A starts before B. 123 // AE cannot be None since A and B overlap. 124 assert(AE != IndexType::None); 125 // Add the part of A that extends on the "less" side of B. 126 add(AS, BS, A.Fixed, false); 127 } 128 129 if (BE < AE) { 130 // BE cannot be Exit here. 131 if (BE == IndexType::None) 132 add(BS, AE, A.Fixed, false); 133 else 134 add(BE, AE, A.Fixed, false); 135 } 136 } 137 138 // Subtract a given range from each element in the list. 139 void HexagonBlockRanges::RangeList::subtract(const IndexRange &Range) { 140 // Cannot assume that the list is unionized (i.e. contains only non- 141 // overlapping ranges. 142 RangeList T; 143 for (iterator Next, I = begin(); I != end(); I = Next) { 144 IndexRange &Rg = *I; 145 if (Rg.overlaps(Range)) { 146 T.addsub(Rg, Range); 147 Next = this->erase(I); 148 } else { 149 Next = std::next(I); 150 } 151 } 152 include(T); 153 } 154 155 HexagonBlockRanges::InstrIndexMap::InstrIndexMap(MachineBasicBlock &B) 156 : Block(B) { 157 IndexType Idx = IndexType::First; 158 First = Idx; 159 for (auto &In : B) { 160 if (In.isDebugValue()) 161 continue; 162 assert(getIndex(&In) == IndexType::None && "Instruction already in map"); 163 Map.insert(std::make_pair(Idx, &In)); 164 ++Idx; 165 } 166 Last = B.empty() ? IndexType::None : unsigned(Idx)-1; 167 } 168 169 MachineInstr *HexagonBlockRanges::InstrIndexMap::getInstr(IndexType Idx) const { 170 auto F = Map.find(Idx); 171 return (F != Map.end()) ? F->second : nullptr; 172 } 173 174 HexagonBlockRanges::IndexType HexagonBlockRanges::InstrIndexMap::getIndex( 175 MachineInstr *MI) const { 176 for (auto &I : Map) 177 if (I.second == MI) 178 return I.first; 179 return IndexType::None; 180 } 181 182 HexagonBlockRanges::IndexType HexagonBlockRanges::InstrIndexMap::getPrevIndex( 183 IndexType Idx) const { 184 assert (Idx != IndexType::None); 185 if (Idx == IndexType::Entry) 186 return IndexType::None; 187 if (Idx == IndexType::Exit) 188 return Last; 189 if (Idx == First) 190 return IndexType::Entry; 191 return unsigned(Idx)-1; 192 } 193 194 HexagonBlockRanges::IndexType HexagonBlockRanges::InstrIndexMap::getNextIndex( 195 IndexType Idx) const { 196 assert (Idx != IndexType::None); 197 if (Idx == IndexType::Entry) 198 return IndexType::First; 199 if (Idx == IndexType::Exit || Idx == Last) 200 return IndexType::None; 201 return unsigned(Idx)+1; 202 } 203 204 void HexagonBlockRanges::InstrIndexMap::replaceInstr(MachineInstr *OldMI, 205 MachineInstr *NewMI) { 206 for (auto &I : Map) { 207 if (I.second != OldMI) 208 continue; 209 if (NewMI != nullptr) 210 I.second = NewMI; 211 else 212 Map.erase(I.first); 213 break; 214 } 215 } 216 217 HexagonBlockRanges::HexagonBlockRanges(MachineFunction &mf) 218 : MF(mf), HST(mf.getSubtarget<HexagonSubtarget>()), 219 TII(*HST.getInstrInfo()), TRI(*HST.getRegisterInfo()), 220 Reserved(TRI.getReservedRegs(mf)) { 221 // Consider all non-allocatable registers as reserved. 222 for (const TargetRegisterClass *RC : TRI.regclasses()) { 223 if (RC->isAllocatable()) 224 continue; 225 for (unsigned R : *RC) 226 Reserved[R] = true; 227 } 228 } 229 230 HexagonBlockRanges::RegisterSet HexagonBlockRanges::getLiveIns( 231 const MachineBasicBlock &B, const MachineRegisterInfo &MRI, 232 const TargetRegisterInfo &TRI) { 233 RegisterSet LiveIns; 234 RegisterSet Tmp; 235 for (auto I : B.liveins()) { 236 if (I.LaneMask.all()) { 237 Tmp.insert({I.PhysReg,0}); 238 continue; 239 } 240 for (MCSubRegIndexIterator S(I.PhysReg, &TRI); S.isValid(); ++S) { 241 LaneBitmask M = TRI.getSubRegIndexLaneMask(S.getSubRegIndex()); 242 if ((M & I.LaneMask).any()) 243 Tmp.insert({S.getSubReg(), 0}); 244 } 245 } 246 247 for (auto R : Tmp) { 248 if (!Reserved[R.Reg]) 249 LiveIns.insert(R); 250 for (auto S : expandToSubRegs(R, MRI, TRI)) 251 if (!Reserved[S.Reg]) 252 LiveIns.insert(S); 253 } 254 return LiveIns; 255 } 256 257 HexagonBlockRanges::RegisterSet HexagonBlockRanges::expandToSubRegs( 258 RegisterRef R, const MachineRegisterInfo &MRI, 259 const TargetRegisterInfo &TRI) { 260 RegisterSet SRs; 261 262 if (R.Sub != 0) { 263 SRs.insert(R); 264 return SRs; 265 } 266 267 if (TargetRegisterInfo::isPhysicalRegister(R.Reg)) { 268 MCSubRegIterator I(R.Reg, &TRI); 269 if (!I.isValid()) 270 SRs.insert({R.Reg, 0}); 271 for (; I.isValid(); ++I) 272 SRs.insert({*I, 0}); 273 } else { 274 assert(TargetRegisterInfo::isVirtualRegister(R.Reg)); 275 auto &RC = *MRI.getRegClass(R.Reg); 276 unsigned PReg = *RC.begin(); 277 MCSubRegIndexIterator I(PReg, &TRI); 278 if (!I.isValid()) 279 SRs.insert({R.Reg, 0}); 280 for (; I.isValid(); ++I) 281 SRs.insert({R.Reg, I.getSubRegIndex()}); 282 } 283 return SRs; 284 } 285 286 void HexagonBlockRanges::computeInitialLiveRanges(InstrIndexMap &IndexMap, 287 RegToRangeMap &LiveMap) { 288 std::map<RegisterRef,IndexType> LastDef, LastUse; 289 RegisterSet LiveOnEntry; 290 MachineBasicBlock &B = IndexMap.getBlock(); 291 MachineRegisterInfo &MRI = B.getParent()->getRegInfo(); 292 293 for (auto R : getLiveIns(B, MRI, TRI)) 294 LiveOnEntry.insert(R); 295 296 for (auto R : LiveOnEntry) 297 LastDef[R] = IndexType::Entry; 298 299 auto closeRange = [&LastUse,&LastDef,&LiveMap] (RegisterRef R) -> void { 300 auto LD = LastDef[R], LU = LastUse[R]; 301 if (LD == IndexType::None) 302 LD = IndexType::Entry; 303 if (LU == IndexType::None) 304 LU = IndexType::Exit; 305 LiveMap[R].add(LD, LU, false, false); 306 LastUse[R] = LastDef[R] = IndexType::None; 307 }; 308 309 RegisterSet Defs, Clobbers; 310 311 for (auto &In : B) { 312 if (In.isDebugValue()) 313 continue; 314 IndexType Index = IndexMap.getIndex(&In); 315 // Process uses first. 316 for (auto &Op : In.operands()) { 317 if (!Op.isReg() || !Op.isUse() || Op.isUndef()) 318 continue; 319 RegisterRef R = { Op.getReg(), Op.getSubReg() }; 320 if (TargetRegisterInfo::isPhysicalRegister(R.Reg) && Reserved[R.Reg]) 321 continue; 322 bool IsKill = Op.isKill(); 323 for (auto S : expandToSubRegs(R, MRI, TRI)) { 324 LastUse[S] = Index; 325 if (IsKill) 326 closeRange(S); 327 } 328 } 329 // Process defs and clobbers. 330 Defs.clear(); 331 Clobbers.clear(); 332 for (auto &Op : In.operands()) { 333 if (!Op.isReg() || !Op.isDef() || Op.isUndef()) 334 continue; 335 RegisterRef R = { Op.getReg(), Op.getSubReg() }; 336 for (auto S : expandToSubRegs(R, MRI, TRI)) { 337 if (TargetRegisterInfo::isPhysicalRegister(S.Reg) && Reserved[S.Reg]) 338 continue; 339 if (Op.isDead()) 340 Clobbers.insert(S); 341 else 342 Defs.insert(S); 343 } 344 } 345 346 for (auto &Op : In.operands()) { 347 if (!Op.isRegMask()) 348 continue; 349 const uint32_t *BM = Op.getRegMask(); 350 for (unsigned PR = 1, N = TRI.getNumRegs(); PR != N; ++PR) { 351 // Skip registers that have subregisters. A register is preserved 352 // iff its bit is set in the regmask, so if R1:0 was preserved, both 353 // R1 and R0 would also be present. 354 if (MCSubRegIterator(PR, &TRI, false).isValid()) 355 continue; 356 if (Reserved[PR]) 357 continue; 358 if (BM[PR/32] & (1u << (PR%32))) 359 continue; 360 RegisterRef R = { PR, 0 }; 361 if (!Defs.count(R)) 362 Clobbers.insert(R); 363 } 364 } 365 // Defs and clobbers can overlap, e.g. 366 // %D0<def,dead> = COPY %vreg5, %R0<imp-def>, %R1<imp-def> 367 for (RegisterRef R : Defs) 368 Clobbers.erase(R); 369 370 // Update maps for defs. 371 for (RegisterRef S : Defs) { 372 // Defs should already be expanded into subregs. 373 assert(!TargetRegisterInfo::isPhysicalRegister(S.Reg) || 374 !MCSubRegIterator(S.Reg, &TRI, false).isValid()); 375 if (LastDef[S] != IndexType::None || LastUse[S] != IndexType::None) 376 closeRange(S); 377 LastDef[S] = Index; 378 } 379 // Update maps for clobbers. 380 for (RegisterRef S : Clobbers) { 381 // Clobbers should already be expanded into subregs. 382 assert(!TargetRegisterInfo::isPhysicalRegister(S.Reg) || 383 !MCSubRegIterator(S.Reg, &TRI, false).isValid()); 384 if (LastDef[S] != IndexType::None || LastUse[S] != IndexType::None) 385 closeRange(S); 386 // Create a single-instruction range. 387 LastDef[S] = LastUse[S] = Index; 388 closeRange(S); 389 } 390 } 391 392 // Collect live-on-exit. 393 RegisterSet LiveOnExit; 394 for (auto *SB : B.successors()) 395 for (auto R : getLiveIns(*SB, MRI, TRI)) 396 LiveOnExit.insert(R); 397 398 for (auto R : LiveOnExit) 399 LastUse[R] = IndexType::Exit; 400 401 // Process remaining registers. 402 RegisterSet Left; 403 for (auto &I : LastUse) 404 if (I.second != IndexType::None) 405 Left.insert(I.first); 406 for (auto &I : LastDef) 407 if (I.second != IndexType::None) 408 Left.insert(I.first); 409 for (auto R : Left) 410 closeRange(R); 411 412 // Finalize the live ranges. 413 for (auto &P : LiveMap) 414 P.second.unionize(); 415 } 416 417 HexagonBlockRanges::RegToRangeMap HexagonBlockRanges::computeLiveMap( 418 InstrIndexMap &IndexMap) { 419 RegToRangeMap LiveMap; 420 DEBUG(dbgs() << __func__ << ": index map\n" << IndexMap << '\n'); 421 computeInitialLiveRanges(IndexMap, LiveMap); 422 DEBUG(dbgs() << __func__ << ": live map\n" 423 << PrintRangeMap(LiveMap, TRI) << '\n'); 424 return LiveMap; 425 } 426 427 HexagonBlockRanges::RegToRangeMap HexagonBlockRanges::computeDeadMap( 428 InstrIndexMap &IndexMap, RegToRangeMap &LiveMap) { 429 RegToRangeMap DeadMap; 430 431 auto addDeadRanges = [&IndexMap,&LiveMap,&DeadMap] (RegisterRef R) -> void { 432 auto F = LiveMap.find(R); 433 if (F == LiveMap.end() || F->second.empty()) { 434 DeadMap[R].add(IndexType::Entry, IndexType::Exit, false, false); 435 return; 436 } 437 438 RangeList &RL = F->second; 439 RangeList::iterator A = RL.begin(), Z = RL.end()-1; 440 441 // Try to create the initial range. 442 if (A->start() != IndexType::Entry) { 443 IndexType DE = IndexMap.getPrevIndex(A->start()); 444 if (DE != IndexType::Entry) 445 DeadMap[R].add(IndexType::Entry, DE, false, false); 446 } 447 448 while (A != Z) { 449 // Creating a dead range that follows A. Pay attention to empty 450 // ranges (i.e. those ending with "None"). 451 IndexType AE = (A->end() == IndexType::None) ? A->start() : A->end(); 452 IndexType DS = IndexMap.getNextIndex(AE); 453 ++A; 454 IndexType DE = IndexMap.getPrevIndex(A->start()); 455 if (DS < DE) 456 DeadMap[R].add(DS, DE, false, false); 457 } 458 459 // Try to create the final range. 460 if (Z->end() != IndexType::Exit) { 461 IndexType ZE = (Z->end() == IndexType::None) ? Z->start() : Z->end(); 462 IndexType DS = IndexMap.getNextIndex(ZE); 463 if (DS < IndexType::Exit) 464 DeadMap[R].add(DS, IndexType::Exit, false, false); 465 } 466 }; 467 468 MachineFunction &MF = *IndexMap.getBlock().getParent(); 469 auto &MRI = MF.getRegInfo(); 470 unsigned NumRegs = TRI.getNumRegs(); 471 BitVector Visited(NumRegs); 472 for (unsigned R = 1; R < NumRegs; ++R) { 473 for (auto S : expandToSubRegs({R,0}, MRI, TRI)) { 474 if (Reserved[S.Reg] || Visited[S.Reg]) 475 continue; 476 addDeadRanges(S); 477 Visited[S.Reg] = true; 478 } 479 } 480 for (auto &P : LiveMap) 481 if (TargetRegisterInfo::isVirtualRegister(P.first.Reg)) 482 addDeadRanges(P.first); 483 484 DEBUG(dbgs() << __func__ << ": dead map\n" 485 << PrintRangeMap(DeadMap, TRI) << '\n'); 486 return DeadMap; 487 } 488 489 raw_ostream &llvm::operator<<(raw_ostream &OS, 490 HexagonBlockRanges::IndexType Idx) { 491 if (Idx == HexagonBlockRanges::IndexType::None) 492 return OS << '-'; 493 if (Idx == HexagonBlockRanges::IndexType::Entry) 494 return OS << 'n'; 495 if (Idx == HexagonBlockRanges::IndexType::Exit) 496 return OS << 'x'; 497 return OS << unsigned(Idx)-HexagonBlockRanges::IndexType::First+1; 498 } 499 500 // A mapping to translate between instructions and their indices. 501 raw_ostream &llvm::operator<<(raw_ostream &OS, 502 const HexagonBlockRanges::IndexRange &IR) { 503 OS << '[' << IR.start() << ':' << IR.end() << (IR.TiedEnd ? '}' : ']'); 504 if (IR.Fixed) 505 OS << '!'; 506 return OS; 507 } 508 509 raw_ostream &llvm::operator<<(raw_ostream &OS, 510 const HexagonBlockRanges::RangeList &RL) { 511 for (auto &R : RL) 512 OS << R << " "; 513 return OS; 514 } 515 516 raw_ostream &llvm::operator<<(raw_ostream &OS, 517 const HexagonBlockRanges::InstrIndexMap &M) { 518 for (auto &In : M.Block) { 519 HexagonBlockRanges::IndexType Idx = M.getIndex(&In); 520 OS << Idx << (Idx == M.Last ? ". " : " ") << In; 521 } 522 return OS; 523 } 524 525 raw_ostream &llvm::operator<<(raw_ostream &OS, 526 const HexagonBlockRanges::PrintRangeMap &P) { 527 for (auto &I : P.Map) { 528 const HexagonBlockRanges::RangeList &RL = I.second; 529 OS << PrintReg(I.first.Reg, &P.TRI, I.first.Sub) << " -> " << RL << "\n"; 530 } 531 return OS; 532 } 533