1 //===- CodeGenRegisters.h - Register and RegisterClass Info -----*- 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 // 9 // This file defines structures to encapsulate information gleaned from the 10 // target register and register class definitions. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #ifndef LLVM_UTILS_TABLEGEN_CODEGENREGISTERS_H 15 #define LLVM_UTILS_TABLEGEN_CODEGENREGISTERS_H 16 17 #include "InfoByHwMode.h" 18 #include "llvm/ADT/ArrayRef.h" 19 #include "llvm/ADT/BitVector.h" 20 #include "llvm/ADT/DenseMap.h" 21 #include "llvm/ADT/STLExtras.h" 22 #include "llvm/ADT/SetVector.h" 23 #include "llvm/ADT/SmallPtrSet.h" 24 #include "llvm/ADT/SmallVector.h" 25 #include "llvm/ADT/SparseBitVector.h" 26 #include "llvm/ADT/StringMap.h" 27 #include "llvm/ADT/StringRef.h" 28 #include "llvm/MC/LaneBitmask.h" 29 #include "llvm/Support/ErrorHandling.h" 30 #include "llvm/Support/MachineValueType.h" 31 #include "llvm/TableGen/Record.h" 32 #include "llvm/TableGen/SetTheory.h" 33 #include <cassert> 34 #include <cstdint> 35 #include <deque> 36 #include <list> 37 #include <map> 38 #include <string> 39 #include <utility> 40 #include <vector> 41 42 namespace llvm { 43 44 class CodeGenRegBank; 45 template <typename T, typename Vector, typename Set> class SetVector; 46 47 /// Used to encode a step in a register lane mask transformation. 48 /// Mask the bits specified in Mask, then rotate them Rol bits to the left 49 /// assuming a wraparound at 32bits. 50 struct MaskRolPair { 51 LaneBitmask Mask; 52 uint8_t RotateLeft; 53 54 bool operator==(const MaskRolPair Other) const { 55 return Mask == Other.Mask && RotateLeft == Other.RotateLeft; 56 } 57 bool operator!=(const MaskRolPair Other) const { 58 return Mask != Other.Mask || RotateLeft != Other.RotateLeft; 59 } 60 }; 61 62 /// CodeGenSubRegIndex - Represents a sub-register index. 63 class CodeGenSubRegIndex { 64 Record *const TheDef; 65 std::string Name; 66 std::string Namespace; 67 68 public: 69 uint16_t Size; 70 uint16_t Offset; 71 const unsigned EnumValue; 72 mutable LaneBitmask LaneMask; 73 mutable SmallVector<MaskRolPair,1> CompositionLaneMaskTransform; 74 75 /// A list of subregister indexes concatenated resulting in this 76 /// subregister index. This is the reverse of CodeGenRegBank::ConcatIdx. 77 SmallVector<CodeGenSubRegIndex*,4> ConcatenationOf; 78 79 // Are all super-registers containing this SubRegIndex covered by their 80 // sub-registers? 81 bool AllSuperRegsCovered; 82 // A subregister index is "artificial" if every subregister obtained 83 // from applying this index is artificial. Artificial subregister 84 // indexes are not used to create new register classes. 85 bool Artificial; 86 87 CodeGenSubRegIndex(Record *R, unsigned Enum); 88 CodeGenSubRegIndex(StringRef N, StringRef Nspace, unsigned Enum); 89 CodeGenSubRegIndex(CodeGenSubRegIndex&) = delete; 90 91 const std::string &getName() const { return Name; } 92 const std::string &getNamespace() const { return Namespace; } 93 std::string getQualifiedName() const; 94 95 // Map of composite subreg indices. 96 typedef std::map<CodeGenSubRegIndex *, CodeGenSubRegIndex *, 97 deref<std::less<>>> 98 CompMap; 99 100 // Returns the subreg index that results from composing this with Idx. 101 // Returns NULL if this and Idx don't compose. 102 CodeGenSubRegIndex *compose(CodeGenSubRegIndex *Idx) const { 103 CompMap::const_iterator I = Composed.find(Idx); 104 return I == Composed.end() ? nullptr : I->second; 105 } 106 107 // Add a composite subreg index: this+A = B. 108 // Return a conflicting composite, or NULL 109 CodeGenSubRegIndex *addComposite(CodeGenSubRegIndex *A, 110 CodeGenSubRegIndex *B) { 111 assert(A && B); 112 std::pair<CompMap::iterator, bool> Ins = 113 Composed.insert(std::make_pair(A, B)); 114 // Synthetic subreg indices that aren't contiguous (for instance ARM 115 // register tuples) don't have a bit range, so it's OK to let 116 // B->Offset == -1. For the other cases, accumulate the offset and set 117 // the size here. Only do so if there is no offset yet though. 118 if ((Offset != (uint16_t)-1 && A->Offset != (uint16_t)-1) && 119 (B->Offset == (uint16_t)-1)) { 120 B->Offset = Offset + A->Offset; 121 B->Size = A->Size; 122 } 123 return (Ins.second || Ins.first->second == B) ? nullptr 124 : Ins.first->second; 125 } 126 127 // Update the composite maps of components specified in 'ComposedOf'. 128 void updateComponents(CodeGenRegBank&); 129 130 // Return the map of composites. 131 const CompMap &getComposites() const { return Composed; } 132 133 // Compute LaneMask from Composed. Return LaneMask. 134 LaneBitmask computeLaneMask() const; 135 136 void setConcatenationOf(ArrayRef<CodeGenSubRegIndex*> Parts); 137 138 /// Replaces subregister indexes in the `ConcatenationOf` list with 139 /// list of subregisters they are composed of (if any). Do this recursively. 140 void computeConcatTransitiveClosure(); 141 142 bool operator<(const CodeGenSubRegIndex &RHS) const { 143 return this->EnumValue < RHS.EnumValue; 144 } 145 146 private: 147 CompMap Composed; 148 }; 149 150 /// CodeGenRegister - Represents a register definition. 151 struct CodeGenRegister { 152 Record *TheDef; 153 unsigned EnumValue; 154 std::vector<int64_t> CostPerUse; 155 bool CoveredBySubRegs; 156 bool HasDisjunctSubRegs; 157 bool Artificial; 158 159 // Map SubRegIndex -> Register. 160 typedef std::map<CodeGenSubRegIndex *, CodeGenRegister *, 161 deref<std::less<>>> 162 SubRegMap; 163 164 CodeGenRegister(Record *R, unsigned Enum); 165 166 StringRef getName() const; 167 168 // Extract more information from TheDef. This is used to build an object 169 // graph after all CodeGenRegister objects have been created. 170 void buildObjectGraph(CodeGenRegBank&); 171 172 // Lazily compute a map of all sub-registers. 173 // This includes unique entries for all sub-sub-registers. 174 const SubRegMap &computeSubRegs(CodeGenRegBank&); 175 176 // Compute extra sub-registers by combining the existing sub-registers. 177 void computeSecondarySubRegs(CodeGenRegBank&); 178 179 // Add this as a super-register to all sub-registers after the sub-register 180 // graph has been built. 181 void computeSuperRegs(CodeGenRegBank&); 182 183 const SubRegMap &getSubRegs() const { 184 assert(SubRegsComplete && "Must precompute sub-registers"); 185 return SubRegs; 186 } 187 188 // Add sub-registers to OSet following a pre-order defined by the .td file. 189 void addSubRegsPreOrder(SetVector<const CodeGenRegister*> &OSet, 190 CodeGenRegBank&) const; 191 192 // Return the sub-register index naming Reg as a sub-register of this 193 // register. Returns NULL if Reg is not a sub-register. 194 CodeGenSubRegIndex *getSubRegIndex(const CodeGenRegister *Reg) const { 195 return SubReg2Idx.lookup(Reg); 196 } 197 198 typedef std::vector<const CodeGenRegister*> SuperRegList; 199 200 // Get the list of super-registers in topological order, small to large. 201 // This is valid after computeSubRegs visits all registers during RegBank 202 // construction. 203 const SuperRegList &getSuperRegs() const { 204 assert(SubRegsComplete && "Must precompute sub-registers"); 205 return SuperRegs; 206 } 207 208 // Get the list of ad hoc aliases. The graph is symmetric, so the list 209 // contains all registers in 'Aliases', and all registers that mention this 210 // register in 'Aliases'. 211 ArrayRef<CodeGenRegister*> getExplicitAliases() const { 212 return ExplicitAliases; 213 } 214 215 // Get the topological signature of this register. This is a small integer 216 // less than RegBank.getNumTopoSigs(). Registers with the same TopoSig have 217 // identical sub-register structure. That is, they support the same set of 218 // sub-register indices mapping to the same kind of sub-registers 219 // (TopoSig-wise). 220 unsigned getTopoSig() const { 221 assert(SuperRegsComplete && "TopoSigs haven't been computed yet."); 222 return TopoSig; 223 } 224 225 // List of register units in ascending order. 226 typedef SparseBitVector<> RegUnitList; 227 typedef SmallVector<LaneBitmask, 16> RegUnitLaneMaskList; 228 229 // How many entries in RegUnitList are native? 230 RegUnitList NativeRegUnits; 231 232 // Get the list of register units. 233 // This is only valid after computeSubRegs() completes. 234 const RegUnitList &getRegUnits() const { return RegUnits; } 235 236 ArrayRef<LaneBitmask> getRegUnitLaneMasks() const { 237 return makeArrayRef(RegUnitLaneMasks).slice(0, NativeRegUnits.count()); 238 } 239 240 // Get the native register units. This is a prefix of getRegUnits(). 241 RegUnitList getNativeRegUnits() const { 242 return NativeRegUnits; 243 } 244 245 void setRegUnitLaneMasks(const RegUnitLaneMaskList &LaneMasks) { 246 RegUnitLaneMasks = LaneMasks; 247 } 248 249 // Inherit register units from subregisters. 250 // Return true if the RegUnits changed. 251 bool inheritRegUnits(CodeGenRegBank &RegBank); 252 253 // Adopt a register unit for pressure tracking. 254 // A unit is adopted iff its unit number is >= NativeRegUnits.count(). 255 void adoptRegUnit(unsigned RUID) { RegUnits.set(RUID); } 256 257 // Get the sum of this register's register unit weights. 258 unsigned getWeight(const CodeGenRegBank &RegBank) const; 259 260 // Canonically ordered set. 261 typedef std::vector<const CodeGenRegister*> Vec; 262 263 private: 264 bool SubRegsComplete; 265 bool SuperRegsComplete; 266 unsigned TopoSig; 267 268 // The sub-registers explicit in the .td file form a tree. 269 SmallVector<CodeGenSubRegIndex*, 8> ExplicitSubRegIndices; 270 SmallVector<CodeGenRegister*, 8> ExplicitSubRegs; 271 272 // Explicit ad hoc aliases, symmetrized to form an undirected graph. 273 SmallVector<CodeGenRegister*, 8> ExplicitAliases; 274 275 // Super-registers where this is the first explicit sub-register. 276 SuperRegList LeadingSuperRegs; 277 278 SubRegMap SubRegs; 279 SuperRegList SuperRegs; 280 DenseMap<const CodeGenRegister*, CodeGenSubRegIndex*> SubReg2Idx; 281 RegUnitList RegUnits; 282 RegUnitLaneMaskList RegUnitLaneMasks; 283 }; 284 285 inline bool operator<(const CodeGenRegister &A, const CodeGenRegister &B) { 286 return A.EnumValue < B.EnumValue; 287 } 288 289 inline bool operator==(const CodeGenRegister &A, const CodeGenRegister &B) { 290 return A.EnumValue == B.EnumValue; 291 } 292 293 class CodeGenRegisterClass { 294 CodeGenRegister::Vec Members; 295 // Allocation orders. Order[0] always contains all registers in Members. 296 std::vector<SmallVector<Record*, 16>> Orders; 297 // Bit mask of sub-classes including this, indexed by their EnumValue. 298 BitVector SubClasses; 299 // List of super-classes, topologocally ordered to have the larger classes 300 // first. This is the same as sorting by EnumValue. 301 SmallVector<CodeGenRegisterClass*, 4> SuperClasses; 302 Record *TheDef; 303 std::string Name; 304 305 // For a synthesized class, inherit missing properties from the nearest 306 // super-class. 307 void inheritProperties(CodeGenRegBank&); 308 309 // Map SubRegIndex -> sub-class. This is the largest sub-class where all 310 // registers have a SubRegIndex sub-register. 311 DenseMap<const CodeGenSubRegIndex *, CodeGenRegisterClass *> 312 SubClassWithSubReg; 313 314 // Map SubRegIndex -> set of super-reg classes. This is all register 315 // classes SuperRC such that: 316 // 317 // R:SubRegIndex in this RC for all R in SuperRC. 318 // 319 DenseMap<const CodeGenSubRegIndex *, SmallPtrSet<CodeGenRegisterClass *, 8>> 320 SuperRegClasses; 321 322 // Bit vector of TopoSigs for the registers in this class. This will be 323 // very sparse on regular architectures. 324 BitVector TopoSigs; 325 326 public: 327 unsigned EnumValue; 328 StringRef Namespace; 329 SmallVector<ValueTypeByHwMode, 4> VTs; 330 RegSizeInfoByHwMode RSI; 331 int CopyCost; 332 bool Allocatable; 333 StringRef AltOrderSelect; 334 uint8_t AllocationPriority; 335 uint8_t TSFlags; 336 /// Contains the combination of the lane masks of all subregisters. 337 LaneBitmask LaneMask; 338 /// True if there are at least 2 subregisters which do not interfere. 339 bool HasDisjunctSubRegs; 340 bool CoveredBySubRegs; 341 /// A register class is artificial if all its members are artificial. 342 bool Artificial; 343 /// Generate register pressure set for this register class and any class 344 /// synthesized from it. 345 bool GeneratePressureSet; 346 347 // Return the Record that defined this class, or NULL if the class was 348 // created by TableGen. 349 Record *getDef() const { return TheDef; } 350 351 const std::string &getName() const { return Name; } 352 std::string getQualifiedName() const; 353 ArrayRef<ValueTypeByHwMode> getValueTypes() const { return VTs; } 354 unsigned getNumValueTypes() const { return VTs.size(); } 355 356 bool hasType(const ValueTypeByHwMode &VT) const { 357 return llvm::is_contained(VTs, VT); 358 } 359 360 const ValueTypeByHwMode &getValueTypeNum(unsigned VTNum) const { 361 if (VTNum < VTs.size()) 362 return VTs[VTNum]; 363 llvm_unreachable("VTNum greater than number of ValueTypes in RegClass!"); 364 } 365 366 // Return true if this this class contains the register. 367 bool contains(const CodeGenRegister*) const; 368 369 // Returns true if RC is a subclass. 370 // RC is a sub-class of this class if it is a valid replacement for any 371 // instruction operand where a register of this classis required. It must 372 // satisfy these conditions: 373 // 374 // 1. All RC registers are also in this. 375 // 2. The RC spill size must not be smaller than our spill size. 376 // 3. RC spill alignment must be compatible with ours. 377 // 378 bool hasSubClass(const CodeGenRegisterClass *RC) const { 379 return SubClasses.test(RC->EnumValue); 380 } 381 382 // getSubClassWithSubReg - Returns the largest sub-class where all 383 // registers have a SubIdx sub-register. 384 CodeGenRegisterClass * 385 getSubClassWithSubReg(const CodeGenSubRegIndex *SubIdx) const { 386 return SubClassWithSubReg.lookup(SubIdx); 387 } 388 389 /// Find largest subclass where all registers have SubIdx subregisters in 390 /// SubRegClass and the largest subregister class that contains those 391 /// subregisters without (as far as possible) also containing additional registers. 392 /// 393 /// This can be used to find a suitable pair of classes for subregister copies. 394 /// \return std::pair<SubClass, SubRegClass> where SubClass is a SubClass is 395 /// a class where every register has SubIdx and SubRegClass is a class where 396 /// every register is covered by the SubIdx subregister of SubClass. 397 Optional<std::pair<CodeGenRegisterClass *, CodeGenRegisterClass *>> 398 getMatchingSubClassWithSubRegs(CodeGenRegBank &RegBank, 399 const CodeGenSubRegIndex *SubIdx) const; 400 401 void setSubClassWithSubReg(const CodeGenSubRegIndex *SubIdx, 402 CodeGenRegisterClass *SubRC) { 403 SubClassWithSubReg[SubIdx] = SubRC; 404 } 405 406 // getSuperRegClasses - Returns a bit vector of all register classes 407 // containing only SubIdx super-registers of this class. 408 void getSuperRegClasses(const CodeGenSubRegIndex *SubIdx, 409 BitVector &Out) const; 410 411 // addSuperRegClass - Add a class containing only SubIdx super-registers. 412 void addSuperRegClass(CodeGenSubRegIndex *SubIdx, 413 CodeGenRegisterClass *SuperRC) { 414 SuperRegClasses[SubIdx].insert(SuperRC); 415 } 416 417 // getSubClasses - Returns a constant BitVector of subclasses indexed by 418 // EnumValue. 419 // The SubClasses vector includes an entry for this class. 420 const BitVector &getSubClasses() const { return SubClasses; } 421 422 // getSuperClasses - Returns a list of super classes ordered by EnumValue. 423 // The array does not include an entry for this class. 424 ArrayRef<CodeGenRegisterClass*> getSuperClasses() const { 425 return SuperClasses; 426 } 427 428 // Returns an ordered list of class members. 429 // The order of registers is the same as in the .td file. 430 // No = 0 is the default allocation order, No = 1 is the first alternative. 431 ArrayRef<Record*> getOrder(unsigned No = 0) const { 432 return Orders[No]; 433 } 434 435 // Return the total number of allocation orders available. 436 unsigned getNumOrders() const { return Orders.size(); } 437 438 // Get the set of registers. This set contains the same registers as 439 // getOrder(0). 440 const CodeGenRegister::Vec &getMembers() const { return Members; } 441 442 // Get a bit vector of TopoSigs present in this register class. 443 const BitVector &getTopoSigs() const { return TopoSigs; } 444 445 // Get a weight of this register class. 446 unsigned getWeight(const CodeGenRegBank&) const; 447 448 // Populate a unique sorted list of units from a register set. 449 void buildRegUnitSet(const CodeGenRegBank &RegBank, 450 std::vector<unsigned> &RegUnits) const; 451 452 CodeGenRegisterClass(CodeGenRegBank&, Record *R); 453 CodeGenRegisterClass(CodeGenRegisterClass&) = delete; 454 455 // A key representing the parts of a register class used for forming 456 // sub-classes. Note the ordering provided by this key is not the same as 457 // the topological order used for the EnumValues. 458 struct Key { 459 const CodeGenRegister::Vec *Members; 460 RegSizeInfoByHwMode RSI; 461 462 Key(const CodeGenRegister::Vec *M, const RegSizeInfoByHwMode &I) 463 : Members(M), RSI(I) {} 464 465 Key(const CodeGenRegisterClass &RC) 466 : Members(&RC.getMembers()), RSI(RC.RSI) {} 467 468 // Lexicographical order of (Members, RegSizeInfoByHwMode). 469 bool operator<(const Key&) const; 470 }; 471 472 // Create a non-user defined register class. 473 CodeGenRegisterClass(CodeGenRegBank&, StringRef Name, Key Props); 474 475 // Called by CodeGenRegBank::CodeGenRegBank(). 476 static void computeSubClasses(CodeGenRegBank&); 477 }; 478 479 // Register units are used to model interference and register pressure. 480 // Every register is assigned one or more register units such that two 481 // registers overlap if and only if they have a register unit in common. 482 // 483 // Normally, one register unit is created per leaf register. Non-leaf 484 // registers inherit the units of their sub-registers. 485 struct RegUnit { 486 // Weight assigned to this RegUnit for estimating register pressure. 487 // This is useful when equalizing weights in register classes with mixed 488 // register topologies. 489 unsigned Weight; 490 491 // Each native RegUnit corresponds to one or two root registers. The full 492 // set of registers containing this unit can be computed as the union of 493 // these two registers and their super-registers. 494 const CodeGenRegister *Roots[2]; 495 496 // Index into RegClassUnitSets where we can find the list of UnitSets that 497 // contain this unit. 498 unsigned RegClassUnitSetsIdx; 499 // A register unit is artificial if at least one of its roots is 500 // artificial. 501 bool Artificial; 502 503 RegUnit() : Weight(0), RegClassUnitSetsIdx(0), Artificial(false) { 504 Roots[0] = Roots[1] = nullptr; 505 } 506 507 ArrayRef<const CodeGenRegister*> getRoots() const { 508 assert(!(Roots[1] && !Roots[0]) && "Invalid roots array"); 509 return makeArrayRef(Roots, !!Roots[0] + !!Roots[1]); 510 } 511 }; 512 513 // Each RegUnitSet is a sorted vector with a name. 514 struct RegUnitSet { 515 typedef std::vector<unsigned>::const_iterator iterator; 516 517 std::string Name; 518 std::vector<unsigned> Units; 519 unsigned Weight = 0; // Cache the sum of all unit weights. 520 unsigned Order = 0; // Cache the sort key. 521 522 RegUnitSet() = default; 523 }; 524 525 // Base vector for identifying TopoSigs. The contents uniquely identify a 526 // TopoSig, only computeSuperRegs needs to know how. 527 typedef SmallVector<unsigned, 16> TopoSigId; 528 529 // CodeGenRegBank - Represent a target's registers and the relations between 530 // them. 531 class CodeGenRegBank { 532 SetTheory Sets; 533 534 const CodeGenHwModes &CGH; 535 536 std::deque<CodeGenSubRegIndex> SubRegIndices; 537 DenseMap<Record*, CodeGenSubRegIndex*> Def2SubRegIdx; 538 539 CodeGenSubRegIndex *createSubRegIndex(StringRef Name, StringRef NameSpace); 540 541 typedef std::map<SmallVector<CodeGenSubRegIndex*, 8>, 542 CodeGenSubRegIndex*> ConcatIdxMap; 543 ConcatIdxMap ConcatIdx; 544 545 // Registers. 546 std::deque<CodeGenRegister> Registers; 547 StringMap<CodeGenRegister*> RegistersByName; 548 DenseMap<Record*, CodeGenRegister*> Def2Reg; 549 unsigned NumNativeRegUnits; 550 551 std::map<TopoSigId, unsigned> TopoSigs; 552 553 // Includes native (0..NumNativeRegUnits-1) and adopted register units. 554 SmallVector<RegUnit, 8> RegUnits; 555 556 // Register classes. 557 std::list<CodeGenRegisterClass> RegClasses; 558 DenseMap<Record*, CodeGenRegisterClass*> Def2RC; 559 typedef std::map<CodeGenRegisterClass::Key, CodeGenRegisterClass*> RCKeyMap; 560 RCKeyMap Key2RC; 561 562 // Remember each unique set of register units. Initially, this contains a 563 // unique set for each register class. Simliar sets are coalesced with 564 // pruneUnitSets and new supersets are inferred during computeRegUnitSets. 565 std::vector<RegUnitSet> RegUnitSets; 566 567 // Map RegisterClass index to the index of the RegUnitSet that contains the 568 // class's units and any inferred RegUnit supersets. 569 // 570 // NOTE: This could grow beyond the number of register classes when we map 571 // register units to lists of unit sets. If the list of unit sets does not 572 // already exist for a register class, we create a new entry in this vector. 573 std::vector<std::vector<unsigned>> RegClassUnitSets; 574 575 // Give each register unit set an order based on sorting criteria. 576 std::vector<unsigned> RegUnitSetOrder; 577 578 // Keep track of synthesized definitions generated in TupleExpander. 579 std::vector<std::unique_ptr<Record>> SynthDefs; 580 581 // Add RC to *2RC maps. 582 void addToMaps(CodeGenRegisterClass*); 583 584 // Create a synthetic sub-class if it is missing. 585 CodeGenRegisterClass *getOrCreateSubClass(const CodeGenRegisterClass *RC, 586 const CodeGenRegister::Vec *Membs, 587 StringRef Name); 588 589 // Infer missing register classes. 590 void computeInferredRegisterClasses(); 591 void inferCommonSubClass(CodeGenRegisterClass *RC); 592 void inferSubClassWithSubReg(CodeGenRegisterClass *RC); 593 594 void inferMatchingSuperRegClass(CodeGenRegisterClass *RC) { 595 inferMatchingSuperRegClass(RC, RegClasses.begin()); 596 } 597 598 void inferMatchingSuperRegClass( 599 CodeGenRegisterClass *RC, 600 std::list<CodeGenRegisterClass>::iterator FirstSubRegRC); 601 602 // Iteratively prune unit sets. 603 void pruneUnitSets(); 604 605 // Compute a weight for each register unit created during getSubRegs. 606 void computeRegUnitWeights(); 607 608 // Create a RegUnitSet for each RegClass and infer superclasses. 609 void computeRegUnitSets(); 610 611 // Populate the Composite map from sub-register relationships. 612 void computeComposites(); 613 614 // Compute a lane mask for each sub-register index. 615 void computeSubRegLaneMasks(); 616 617 /// Computes a lane mask for each register unit enumerated by a physical 618 /// register. 619 void computeRegUnitLaneMasks(); 620 621 public: 622 CodeGenRegBank(RecordKeeper&, const CodeGenHwModes&); 623 CodeGenRegBank(CodeGenRegBank&) = delete; 624 625 SetTheory &getSets() { return Sets; } 626 627 const CodeGenHwModes &getHwModes() const { return CGH; } 628 629 // Sub-register indices. The first NumNamedIndices are defined by the user 630 // in the .td files. The rest are synthesized such that all sub-registers 631 // have a unique name. 632 const std::deque<CodeGenSubRegIndex> &getSubRegIndices() const { 633 return SubRegIndices; 634 } 635 636 // Find a SubRegIndex from its Record def or add to the list if it does 637 // not exist there yet. 638 CodeGenSubRegIndex *getSubRegIdx(Record*); 639 640 // Find a SubRegIndex from its Record def. 641 const CodeGenSubRegIndex *findSubRegIdx(const Record* Def) const; 642 643 // Find or create a sub-register index representing the A+B composition. 644 CodeGenSubRegIndex *getCompositeSubRegIndex(CodeGenSubRegIndex *A, 645 CodeGenSubRegIndex *B); 646 647 // Find or create a sub-register index representing the concatenation of 648 // non-overlapping sibling indices. 649 CodeGenSubRegIndex * 650 getConcatSubRegIndex(const SmallVector<CodeGenSubRegIndex *, 8>&); 651 652 const std::deque<CodeGenRegister> &getRegisters() const { 653 return Registers; 654 } 655 656 const StringMap<CodeGenRegister *> &getRegistersByName() const { 657 return RegistersByName; 658 } 659 660 // Find a register from its Record def. 661 CodeGenRegister *getReg(Record*); 662 663 // Get a Register's index into the Registers array. 664 unsigned getRegIndex(const CodeGenRegister *Reg) const { 665 return Reg->EnumValue - 1; 666 } 667 668 // Return the number of allocated TopoSigs. The first TopoSig representing 669 // leaf registers is allocated number 0. 670 unsigned getNumTopoSigs() const { 671 return TopoSigs.size(); 672 } 673 674 // Find or create a TopoSig for the given TopoSigId. 675 // This function is only for use by CodeGenRegister::computeSuperRegs(). 676 // Others should simply use Reg->getTopoSig(). 677 unsigned getTopoSig(const TopoSigId &Id) { 678 return TopoSigs.insert(std::make_pair(Id, TopoSigs.size())).first->second; 679 } 680 681 // Create a native register unit that is associated with one or two root 682 // registers. 683 unsigned newRegUnit(CodeGenRegister *R0, CodeGenRegister *R1 = nullptr) { 684 RegUnits.resize(RegUnits.size() + 1); 685 RegUnit &RU = RegUnits.back(); 686 RU.Roots[0] = R0; 687 RU.Roots[1] = R1; 688 RU.Artificial = R0->Artificial; 689 if (R1) 690 RU.Artificial |= R1->Artificial; 691 return RegUnits.size() - 1; 692 } 693 694 // Create a new non-native register unit that can be adopted by a register 695 // to increase its pressure. Note that NumNativeRegUnits is not increased. 696 unsigned newRegUnit(unsigned Weight) { 697 RegUnits.resize(RegUnits.size() + 1); 698 RegUnits.back().Weight = Weight; 699 return RegUnits.size() - 1; 700 } 701 702 // Native units are the singular unit of a leaf register. Register aliasing 703 // is completely characterized by native units. Adopted units exist to give 704 // register additional weight but don't affect aliasing. 705 bool isNativeUnit(unsigned RUID) const { 706 return RUID < NumNativeRegUnits; 707 } 708 709 unsigned getNumNativeRegUnits() const { 710 return NumNativeRegUnits; 711 } 712 713 RegUnit &getRegUnit(unsigned RUID) { return RegUnits[RUID]; } 714 const RegUnit &getRegUnit(unsigned RUID) const { return RegUnits[RUID]; } 715 716 std::list<CodeGenRegisterClass> &getRegClasses() { return RegClasses; } 717 718 const std::list<CodeGenRegisterClass> &getRegClasses() const { 719 return RegClasses; 720 } 721 722 // Find a register class from its def. 723 CodeGenRegisterClass *getRegClass(const Record *) const; 724 725 /// getRegisterClassForRegister - Find the register class that contains the 726 /// specified physical register. If the register is not in a register 727 /// class, return null. If the register is in multiple classes, and the 728 /// classes have a superset-subset relationship and the same set of types, 729 /// return the superclass. Otherwise return null. 730 const CodeGenRegisterClass* getRegClassForRegister(Record *R); 731 732 // Analog of TargetRegisterInfo::getMinimalPhysRegClass. Unlike 733 // getRegClassForRegister, this tries to find the smallest class containing 734 // the physical register. If \p VT is specified, it will only find classes 735 // with a matching type 736 const CodeGenRegisterClass * 737 getMinimalPhysRegClass(Record *RegRecord, ValueTypeByHwMode *VT = nullptr); 738 739 // Get the sum of unit weights. 740 unsigned getRegUnitSetWeight(const std::vector<unsigned> &Units) const { 741 unsigned Weight = 0; 742 for (unsigned Unit : Units) 743 Weight += getRegUnit(Unit).Weight; 744 return Weight; 745 } 746 747 unsigned getRegSetIDAt(unsigned Order) const { 748 return RegUnitSetOrder[Order]; 749 } 750 751 const RegUnitSet &getRegSetAt(unsigned Order) const { 752 return RegUnitSets[RegUnitSetOrder[Order]]; 753 } 754 755 // Increase a RegUnitWeight. 756 void increaseRegUnitWeight(unsigned RUID, unsigned Inc) { 757 getRegUnit(RUID).Weight += Inc; 758 } 759 760 // Get the number of register pressure dimensions. 761 unsigned getNumRegPressureSets() const { return RegUnitSets.size(); } 762 763 // Get a set of register unit IDs for a given dimension of pressure. 764 const RegUnitSet &getRegPressureSet(unsigned Idx) const { 765 return RegUnitSets[Idx]; 766 } 767 768 // The number of pressure set lists may be larget than the number of 769 // register classes if some register units appeared in a list of sets that 770 // did not correspond to an existing register class. 771 unsigned getNumRegClassPressureSetLists() const { 772 return RegClassUnitSets.size(); 773 } 774 775 // Get a list of pressure set IDs for a register class. Liveness of a 776 // register in this class impacts each pressure set in this list by the 777 // weight of the register. An exact solution requires all registers in a 778 // class to have the same class, but it is not strictly guaranteed. 779 ArrayRef<unsigned> getRCPressureSetIDs(unsigned RCIdx) const { 780 return RegClassUnitSets[RCIdx]; 781 } 782 783 // Computed derived records such as missing sub-register indices. 784 void computeDerivedInfo(); 785 786 // Compute the set of registers completely covered by the registers in Regs. 787 // The returned BitVector will have a bit set for each register in Regs, 788 // all sub-registers, and all super-registers that are covered by the 789 // registers in Regs. 790 // 791 // This is used to compute the mask of call-preserved registers from a list 792 // of callee-saves. 793 BitVector computeCoveredRegisters(ArrayRef<Record*> Regs); 794 795 // Bit mask of lanes that cover their registers. A sub-register index whose 796 // LaneMask is contained in CoveringLanes will be completely covered by 797 // another sub-register with the same or larger lane mask. 798 LaneBitmask CoveringLanes; 799 800 // Helper function for printing debug information. Handles artificial 801 // (non-native) reg units. 802 void printRegUnitName(unsigned Unit) const; 803 }; 804 805 } // end namespace llvm 806 807 #endif // LLVM_UTILS_TABLEGEN_CODEGENREGISTERS_H 808