1 //===- CodeGenRegisters.cpp - Register and RegisterClass Info -------------===//
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 #include "CodeGenRegisters.h"
15 #include "CodeGenTarget.h"
16 #include "llvm/ADT/ArrayRef.h"
17 #include "llvm/ADT/BitVector.h"
18 #include "llvm/ADT/DenseMap.h"
19 #include "llvm/ADT/IntEqClasses.h"
20 #include "llvm/ADT/SetVector.h"
21 #include "llvm/ADT/SmallPtrSet.h"
22 #include "llvm/ADT/SmallSet.h"
23 #include "llvm/ADT/SmallVector.h"
24 #include "llvm/ADT/STLExtras.h"
25 #include "llvm/ADT/StringExtras.h"
26 #include "llvm/ADT/StringRef.h"
27 #include "llvm/ADT/Twine.h"
28 #include "llvm/Support/Debug.h"
29 #include "llvm/Support/MathExtras.h"
30 #include "llvm/Support/raw_ostream.h"
31 #include "llvm/TableGen/Error.h"
32 #include "llvm/TableGen/Record.h"
33 #include <algorithm>
34 #include <cassert>
35 #include <cstdint>
36 #include <iterator>
37 #include <map>
38 #include <queue>
39 #include <set>
40 #include <string>
41 #include <tuple>
42 #include <utility>
43 #include <vector>
44 
45 using namespace llvm;
46 
47 #define DEBUG_TYPE "regalloc-emitter"
48 
49 //===----------------------------------------------------------------------===//
50 //                             CodeGenSubRegIndex
51 //===----------------------------------------------------------------------===//
52 
53 CodeGenSubRegIndex::CodeGenSubRegIndex(Record *R, unsigned Enum)
54   : TheDef(R), EnumValue(Enum), AllSuperRegsCovered(true), Artificial(true) {
55   Name = std::string(R->getName());
56   if (R->getValue("Namespace"))
57     Namespace = std::string(R->getValueAsString("Namespace"));
58   Size = R->getValueAsInt("Size");
59   Offset = R->getValueAsInt("Offset");
60 }
61 
62 CodeGenSubRegIndex::CodeGenSubRegIndex(StringRef N, StringRef Nspace,
63                                        unsigned Enum)
64     : TheDef(nullptr), Name(std::string(N)), Namespace(std::string(Nspace)),
65       Size(-1), Offset(-1), EnumValue(Enum), AllSuperRegsCovered(true),
66       Artificial(true) {}
67 
68 std::string CodeGenSubRegIndex::getQualifiedName() const {
69   std::string N = getNamespace();
70   if (!N.empty())
71     N += "::";
72   N += getName();
73   return N;
74 }
75 
76 void CodeGenSubRegIndex::updateComponents(CodeGenRegBank &RegBank) {
77   if (!TheDef)
78     return;
79 
80   std::vector<Record*> Comps = TheDef->getValueAsListOfDefs("ComposedOf");
81   if (!Comps.empty()) {
82     if (Comps.size() != 2)
83       PrintFatalError(TheDef->getLoc(),
84                       "ComposedOf must have exactly two entries");
85     CodeGenSubRegIndex *A = RegBank.getSubRegIdx(Comps[0]);
86     CodeGenSubRegIndex *B = RegBank.getSubRegIdx(Comps[1]);
87     CodeGenSubRegIndex *X = A->addComposite(B, this);
88     if (X)
89       PrintFatalError(TheDef->getLoc(), "Ambiguous ComposedOf entries");
90   }
91 
92   std::vector<Record*> Parts =
93     TheDef->getValueAsListOfDefs("CoveringSubRegIndices");
94   if (!Parts.empty()) {
95     if (Parts.size() < 2)
96       PrintFatalError(TheDef->getLoc(),
97                       "CoveredBySubRegs must have two or more entries");
98     SmallVector<CodeGenSubRegIndex*, 8> IdxParts;
99     for (Record *Part : Parts)
100       IdxParts.push_back(RegBank.getSubRegIdx(Part));
101     setConcatenationOf(IdxParts);
102   }
103 }
104 
105 LaneBitmask CodeGenSubRegIndex::computeLaneMask() const {
106   // Already computed?
107   if (LaneMask.any())
108     return LaneMask;
109 
110   // Recursion guard, shouldn't be required.
111   LaneMask = LaneBitmask::getAll();
112 
113   // The lane mask is simply the union of all sub-indices.
114   LaneBitmask M;
115   for (const auto &C : Composed)
116     M |= C.second->computeLaneMask();
117   assert(M.any() && "Missing lane mask, sub-register cycle?");
118   LaneMask = M;
119   return LaneMask;
120 }
121 
122 void CodeGenSubRegIndex::setConcatenationOf(
123     ArrayRef<CodeGenSubRegIndex*> Parts) {
124   if (ConcatenationOf.empty())
125     ConcatenationOf.assign(Parts.begin(), Parts.end());
126   else
127     assert(std::equal(Parts.begin(), Parts.end(),
128                       ConcatenationOf.begin()) && "parts consistent");
129 }
130 
131 void CodeGenSubRegIndex::computeConcatTransitiveClosure() {
132   for (SmallVectorImpl<CodeGenSubRegIndex*>::iterator
133        I = ConcatenationOf.begin(); I != ConcatenationOf.end(); /*empty*/) {
134     CodeGenSubRegIndex *SubIdx = *I;
135     SubIdx->computeConcatTransitiveClosure();
136 #ifndef NDEBUG
137     for (CodeGenSubRegIndex *SRI : SubIdx->ConcatenationOf)
138       assert(SRI->ConcatenationOf.empty() && "No transitive closure?");
139 #endif
140 
141     if (SubIdx->ConcatenationOf.empty()) {
142       ++I;
143     } else {
144       I = ConcatenationOf.erase(I);
145       I = ConcatenationOf.insert(I, SubIdx->ConcatenationOf.begin(),
146                                  SubIdx->ConcatenationOf.end());
147       I += SubIdx->ConcatenationOf.size();
148     }
149   }
150 }
151 
152 //===----------------------------------------------------------------------===//
153 //                              CodeGenRegister
154 //===----------------------------------------------------------------------===//
155 
156 CodeGenRegister::CodeGenRegister(Record *R, unsigned Enum)
157   : TheDef(R),
158     EnumValue(Enum),
159     CostPerUse(R->getValueAsInt("CostPerUse")),
160     CoveredBySubRegs(R->getValueAsBit("CoveredBySubRegs")),
161     HasDisjunctSubRegs(false),
162     SubRegsComplete(false),
163     SuperRegsComplete(false),
164     TopoSig(~0u) {
165   Artificial = R->getValueAsBit("isArtificial");
166 }
167 
168 void CodeGenRegister::buildObjectGraph(CodeGenRegBank &RegBank) {
169   std::vector<Record*> SRIs = TheDef->getValueAsListOfDefs("SubRegIndices");
170   std::vector<Record*> SRs = TheDef->getValueAsListOfDefs("SubRegs");
171 
172   if (SRIs.size() != SRs.size())
173     PrintFatalError(TheDef->getLoc(),
174                     "SubRegs and SubRegIndices must have the same size");
175 
176   for (unsigned i = 0, e = SRIs.size(); i != e; ++i) {
177     ExplicitSubRegIndices.push_back(RegBank.getSubRegIdx(SRIs[i]));
178     ExplicitSubRegs.push_back(RegBank.getReg(SRs[i]));
179   }
180 
181   // Also compute leading super-registers. Each register has a list of
182   // covered-by-subregs super-registers where it appears as the first explicit
183   // sub-register.
184   //
185   // This is used by computeSecondarySubRegs() to find candidates.
186   if (CoveredBySubRegs && !ExplicitSubRegs.empty())
187     ExplicitSubRegs.front()->LeadingSuperRegs.push_back(this);
188 
189   // Add ad hoc alias links. This is a symmetric relationship between two
190   // registers, so build a symmetric graph by adding links in both ends.
191   std::vector<Record*> Aliases = TheDef->getValueAsListOfDefs("Aliases");
192   for (Record *Alias : Aliases) {
193     CodeGenRegister *Reg = RegBank.getReg(Alias);
194     ExplicitAliases.push_back(Reg);
195     Reg->ExplicitAliases.push_back(this);
196   }
197 }
198 
199 const StringRef CodeGenRegister::getName() const {
200   assert(TheDef && "no def");
201   return TheDef->getName();
202 }
203 
204 namespace {
205 
206 // Iterate over all register units in a set of registers.
207 class RegUnitIterator {
208   CodeGenRegister::Vec::const_iterator RegI, RegE;
209   CodeGenRegister::RegUnitList::iterator UnitI, UnitE;
210 
211 public:
212   RegUnitIterator(const CodeGenRegister::Vec &Regs):
213     RegI(Regs.begin()), RegE(Regs.end()) {
214 
215     if (RegI != RegE) {
216       UnitI = (*RegI)->getRegUnits().begin();
217       UnitE = (*RegI)->getRegUnits().end();
218       advance();
219     }
220   }
221 
222   bool isValid() const { return UnitI != UnitE; }
223 
224   unsigned operator* () const { assert(isValid()); return *UnitI; }
225 
226   const CodeGenRegister *getReg() const { assert(isValid()); return *RegI; }
227 
228   /// Preincrement.  Move to the next unit.
229   void operator++() {
230     assert(isValid() && "Cannot advance beyond the last operand");
231     ++UnitI;
232     advance();
233   }
234 
235 protected:
236   void advance() {
237     while (UnitI == UnitE) {
238       if (++RegI == RegE)
239         break;
240       UnitI = (*RegI)->getRegUnits().begin();
241       UnitE = (*RegI)->getRegUnits().end();
242     }
243   }
244 };
245 
246 } // end anonymous namespace
247 
248 // Return true of this unit appears in RegUnits.
249 static bool hasRegUnit(CodeGenRegister::RegUnitList &RegUnits, unsigned Unit) {
250   return RegUnits.test(Unit);
251 }
252 
253 // Inherit register units from subregisters.
254 // Return true if the RegUnits changed.
255 bool CodeGenRegister::inheritRegUnits(CodeGenRegBank &RegBank) {
256   bool changed = false;
257   for (const auto &SubReg : SubRegs) {
258     CodeGenRegister *SR = SubReg.second;
259     // Merge the subregister's units into this register's RegUnits.
260     changed |= (RegUnits |= SR->RegUnits);
261   }
262 
263   return changed;
264 }
265 
266 const CodeGenRegister::SubRegMap &
267 CodeGenRegister::computeSubRegs(CodeGenRegBank &RegBank) {
268   // Only compute this map once.
269   if (SubRegsComplete)
270     return SubRegs;
271   SubRegsComplete = true;
272 
273   HasDisjunctSubRegs = ExplicitSubRegs.size() > 1;
274 
275   // First insert the explicit subregs and make sure they are fully indexed.
276   for (unsigned i = 0, e = ExplicitSubRegs.size(); i != e; ++i) {
277     CodeGenRegister *SR = ExplicitSubRegs[i];
278     CodeGenSubRegIndex *Idx = ExplicitSubRegIndices[i];
279     if (!SR->Artificial)
280       Idx->Artificial = false;
281     if (!SubRegs.insert(std::make_pair(Idx, SR)).second)
282       PrintFatalError(TheDef->getLoc(), "SubRegIndex " + Idx->getName() +
283                       " appears twice in Register " + getName());
284     // Map explicit sub-registers first, so the names take precedence.
285     // The inherited sub-registers are mapped below.
286     SubReg2Idx.insert(std::make_pair(SR, Idx));
287   }
288 
289   // Keep track of inherited subregs and how they can be reached.
290   SmallPtrSet<CodeGenRegister*, 8> Orphans;
291 
292   // Clone inherited subregs and place duplicate entries in Orphans.
293   // Here the order is important - earlier subregs take precedence.
294   for (CodeGenRegister *ESR : ExplicitSubRegs) {
295     const SubRegMap &Map = ESR->computeSubRegs(RegBank);
296     HasDisjunctSubRegs |= ESR->HasDisjunctSubRegs;
297 
298     for (const auto &SR : Map) {
299       if (!SubRegs.insert(SR).second)
300         Orphans.insert(SR.second);
301     }
302   }
303 
304   // Expand any composed subreg indices.
305   // If dsub_2 has ComposedOf = [qsub_1, dsub_0], and this register has a
306   // qsub_1 subreg, add a dsub_2 subreg.  Keep growing Indices and process
307   // expanded subreg indices recursively.
308   SmallVector<CodeGenSubRegIndex*, 8> Indices = ExplicitSubRegIndices;
309   for (unsigned i = 0; i != Indices.size(); ++i) {
310     CodeGenSubRegIndex *Idx = Indices[i];
311     const CodeGenSubRegIndex::CompMap &Comps = Idx->getComposites();
312     CodeGenRegister *SR = SubRegs[Idx];
313     const SubRegMap &Map = SR->computeSubRegs(RegBank);
314 
315     // Look at the possible compositions of Idx.
316     // They may not all be supported by SR.
317     for (CodeGenSubRegIndex::CompMap::const_iterator I = Comps.begin(),
318            E = Comps.end(); I != E; ++I) {
319       SubRegMap::const_iterator SRI = Map.find(I->first);
320       if (SRI == Map.end())
321         continue; // Idx + I->first doesn't exist in SR.
322       // Add I->second as a name for the subreg SRI->second, assuming it is
323       // orphaned, and the name isn't already used for something else.
324       if (SubRegs.count(I->second) || !Orphans.erase(SRI->second))
325         continue;
326       // We found a new name for the orphaned sub-register.
327       SubRegs.insert(std::make_pair(I->second, SRI->second));
328       Indices.push_back(I->second);
329     }
330   }
331 
332   // Now Orphans contains the inherited subregisters without a direct index.
333   // Create inferred indexes for all missing entries.
334   // Work backwards in the Indices vector in order to compose subregs bottom-up.
335   // Consider this subreg sequence:
336   //
337   //   qsub_1 -> dsub_0 -> ssub_0
338   //
339   // The qsub_1 -> dsub_0 composition becomes dsub_2, so the ssub_0 register
340   // can be reached in two different ways:
341   //
342   //   qsub_1 -> ssub_0
343   //   dsub_2 -> ssub_0
344   //
345   // We pick the latter composition because another register may have [dsub_0,
346   // dsub_1, dsub_2] subregs without necessarily having a qsub_1 subreg.  The
347   // dsub_2 -> ssub_0 composition can be shared.
348   while (!Indices.empty() && !Orphans.empty()) {
349     CodeGenSubRegIndex *Idx = Indices.pop_back_val();
350     CodeGenRegister *SR = SubRegs[Idx];
351     const SubRegMap &Map = SR->computeSubRegs(RegBank);
352     for (const auto &SubReg : Map)
353       if (Orphans.erase(SubReg.second))
354         SubRegs[RegBank.getCompositeSubRegIndex(Idx, SubReg.first)] = SubReg.second;
355   }
356 
357   // Compute the inverse SubReg -> Idx map.
358   for (const auto &SubReg : SubRegs) {
359     if (SubReg.second == this) {
360       ArrayRef<SMLoc> Loc;
361       if (TheDef)
362         Loc = TheDef->getLoc();
363       PrintFatalError(Loc, "Register " + getName() +
364                       " has itself as a sub-register");
365     }
366 
367     // Compute AllSuperRegsCovered.
368     if (!CoveredBySubRegs)
369       SubReg.first->AllSuperRegsCovered = false;
370 
371     // Ensure that every sub-register has a unique name.
372     DenseMap<const CodeGenRegister*, CodeGenSubRegIndex*>::iterator Ins =
373       SubReg2Idx.insert(std::make_pair(SubReg.second, SubReg.first)).first;
374     if (Ins->second == SubReg.first)
375       continue;
376     // Trouble: Two different names for SubReg.second.
377     ArrayRef<SMLoc> Loc;
378     if (TheDef)
379       Loc = TheDef->getLoc();
380     PrintFatalError(Loc, "Sub-register can't have two names: " +
381                   SubReg.second->getName() + " available as " +
382                   SubReg.first->getName() + " and " + Ins->second->getName());
383   }
384 
385   // Derive possible names for sub-register concatenations from any explicit
386   // sub-registers. By doing this before computeSecondarySubRegs(), we ensure
387   // that getConcatSubRegIndex() won't invent any concatenated indices that the
388   // user already specified.
389   for (unsigned i = 0, e = ExplicitSubRegs.size(); i != e; ++i) {
390     CodeGenRegister *SR = ExplicitSubRegs[i];
391     if (!SR->CoveredBySubRegs || SR->ExplicitSubRegs.size() <= 1 ||
392         SR->Artificial)
393       continue;
394 
395     // SR is composed of multiple sub-regs. Find their names in this register.
396     SmallVector<CodeGenSubRegIndex*, 8> Parts;
397     for (unsigned j = 0, e = SR->ExplicitSubRegs.size(); j != e; ++j) {
398       CodeGenSubRegIndex &I = *SR->ExplicitSubRegIndices[j];
399       if (!I.Artificial)
400         Parts.push_back(getSubRegIndex(SR->ExplicitSubRegs[j]));
401     }
402 
403     // Offer this as an existing spelling for the concatenation of Parts.
404     CodeGenSubRegIndex &Idx = *ExplicitSubRegIndices[i];
405     Idx.setConcatenationOf(Parts);
406   }
407 
408   // Initialize RegUnitList. Because getSubRegs is called recursively, this
409   // processes the register hierarchy in postorder.
410   //
411   // Inherit all sub-register units. It is good enough to look at the explicit
412   // sub-registers, the other registers won't contribute any more units.
413   for (unsigned i = 0, e = ExplicitSubRegs.size(); i != e; ++i) {
414     CodeGenRegister *SR = ExplicitSubRegs[i];
415     RegUnits |= SR->RegUnits;
416   }
417 
418   // Absent any ad hoc aliasing, we create one register unit per leaf register.
419   // These units correspond to the maximal cliques in the register overlap
420   // graph which is optimal.
421   //
422   // When there is ad hoc aliasing, we simply create one unit per edge in the
423   // undirected ad hoc aliasing graph. Technically, we could do better by
424   // identifying maximal cliques in the ad hoc graph, but cliques larger than 2
425   // are extremely rare anyway (I've never seen one), so we don't bother with
426   // the added complexity.
427   for (unsigned i = 0, e = ExplicitAliases.size(); i != e; ++i) {
428     CodeGenRegister *AR = ExplicitAliases[i];
429     // Only visit each edge once.
430     if (AR->SubRegsComplete)
431       continue;
432     // Create a RegUnit representing this alias edge, and add it to both
433     // registers.
434     unsigned Unit = RegBank.newRegUnit(this, AR);
435     RegUnits.set(Unit);
436     AR->RegUnits.set(Unit);
437   }
438 
439   // Finally, create units for leaf registers without ad hoc aliases. Note that
440   // a leaf register with ad hoc aliases doesn't get its own unit - it isn't
441   // necessary. This means the aliasing leaf registers can share a single unit.
442   if (RegUnits.empty())
443     RegUnits.set(RegBank.newRegUnit(this));
444 
445   // We have now computed the native register units. More may be adopted later
446   // for balancing purposes.
447   NativeRegUnits = RegUnits;
448 
449   return SubRegs;
450 }
451 
452 // In a register that is covered by its sub-registers, try to find redundant
453 // sub-registers. For example:
454 //
455 //   QQ0 = {Q0, Q1}
456 //   Q0 = {D0, D1}
457 //   Q1 = {D2, D3}
458 //
459 // We can infer that D1_D2 is also a sub-register, even if it wasn't named in
460 // the register definition.
461 //
462 // The explicitly specified registers form a tree. This function discovers
463 // sub-register relationships that would force a DAG.
464 //
465 void CodeGenRegister::computeSecondarySubRegs(CodeGenRegBank &RegBank) {
466   SmallVector<SubRegMap::value_type, 8> NewSubRegs;
467 
468   std::queue<std::pair<CodeGenSubRegIndex*,CodeGenRegister*>> SubRegQueue;
469   for (std::pair<CodeGenSubRegIndex*,CodeGenRegister*> P : SubRegs)
470     SubRegQueue.push(P);
471 
472   // Look at the leading super-registers of each sub-register. Those are the
473   // candidates for new sub-registers, assuming they are fully contained in
474   // this register.
475   while (!SubRegQueue.empty()) {
476     CodeGenSubRegIndex *SubRegIdx;
477     const CodeGenRegister *SubReg;
478     std::tie(SubRegIdx, SubReg) = SubRegQueue.front();
479     SubRegQueue.pop();
480 
481     const CodeGenRegister::SuperRegList &Leads = SubReg->LeadingSuperRegs;
482     for (unsigned i = 0, e = Leads.size(); i != e; ++i) {
483       CodeGenRegister *Cand = const_cast<CodeGenRegister*>(Leads[i]);
484       // Already got this sub-register?
485       if (Cand == this || getSubRegIndex(Cand))
486         continue;
487       // Check if each component of Cand is already a sub-register.
488       assert(!Cand->ExplicitSubRegs.empty() &&
489              "Super-register has no sub-registers");
490       if (Cand->ExplicitSubRegs.size() == 1)
491         continue;
492       SmallVector<CodeGenSubRegIndex*, 8> Parts;
493       // We know that the first component is (SubRegIdx,SubReg). However we
494       // may still need to split it into smaller subregister parts.
495       assert(Cand->ExplicitSubRegs[0] == SubReg && "LeadingSuperRegs correct");
496       assert(getSubRegIndex(SubReg) == SubRegIdx && "LeadingSuperRegs correct");
497       for (CodeGenRegister *SubReg : Cand->ExplicitSubRegs) {
498         if (CodeGenSubRegIndex *SubRegIdx = getSubRegIndex(SubReg)) {
499           if (SubRegIdx->ConcatenationOf.empty()) {
500             Parts.push_back(SubRegIdx);
501           } else
502             for (CodeGenSubRegIndex *SubIdx : SubRegIdx->ConcatenationOf)
503               Parts.push_back(SubIdx);
504         } else {
505           // Sub-register doesn't exist.
506           Parts.clear();
507           break;
508         }
509       }
510       // There is nothing to do if some Cand sub-register is not part of this
511       // register.
512       if (Parts.empty())
513         continue;
514 
515       // Each part of Cand is a sub-register of this. Make the full Cand also
516       // a sub-register with a concatenated sub-register index.
517       CodeGenSubRegIndex *Concat = RegBank.getConcatSubRegIndex(Parts);
518       std::pair<CodeGenSubRegIndex*,CodeGenRegister*> NewSubReg =
519           std::make_pair(Concat, Cand);
520 
521       if (!SubRegs.insert(NewSubReg).second)
522         continue;
523 
524       // We inserted a new subregister.
525       NewSubRegs.push_back(NewSubReg);
526       SubRegQueue.push(NewSubReg);
527       SubReg2Idx.insert(std::make_pair(Cand, Concat));
528     }
529   }
530 
531   // Create sub-register index composition maps for the synthesized indices.
532   for (unsigned i = 0, e = NewSubRegs.size(); i != e; ++i) {
533     CodeGenSubRegIndex *NewIdx = NewSubRegs[i].first;
534     CodeGenRegister *NewSubReg = NewSubRegs[i].second;
535     for (SubRegMap::const_iterator SI = NewSubReg->SubRegs.begin(),
536            SE = NewSubReg->SubRegs.end(); SI != SE; ++SI) {
537       CodeGenSubRegIndex *SubIdx = getSubRegIndex(SI->second);
538       if (!SubIdx)
539         PrintFatalError(TheDef->getLoc(), "No SubRegIndex for " +
540                         SI->second->getName() + " in " + getName());
541       NewIdx->addComposite(SI->first, SubIdx);
542     }
543   }
544 }
545 
546 void CodeGenRegister::computeSuperRegs(CodeGenRegBank &RegBank) {
547   // Only visit each register once.
548   if (SuperRegsComplete)
549     return;
550   SuperRegsComplete = true;
551 
552   // Make sure all sub-registers have been visited first, so the super-reg
553   // lists will be topologically ordered.
554   for (SubRegMap::const_iterator I = SubRegs.begin(), E = SubRegs.end();
555        I != E; ++I)
556     I->second->computeSuperRegs(RegBank);
557 
558   // Now add this as a super-register on all sub-registers.
559   // Also compute the TopoSigId in post-order.
560   TopoSigId Id;
561   for (SubRegMap::const_iterator I = SubRegs.begin(), E = SubRegs.end();
562        I != E; ++I) {
563     // Topological signature computed from SubIdx, TopoId(SubReg).
564     // Loops and idempotent indices have TopoSig = ~0u.
565     Id.push_back(I->first->EnumValue);
566     Id.push_back(I->second->TopoSig);
567 
568     // Don't add duplicate entries.
569     if (!I->second->SuperRegs.empty() && I->second->SuperRegs.back() == this)
570       continue;
571     I->second->SuperRegs.push_back(this);
572   }
573   TopoSig = RegBank.getTopoSig(Id);
574 }
575 
576 void
577 CodeGenRegister::addSubRegsPreOrder(SetVector<const CodeGenRegister*> &OSet,
578                                     CodeGenRegBank &RegBank) const {
579   assert(SubRegsComplete && "Must precompute sub-registers");
580   for (unsigned i = 0, e = ExplicitSubRegs.size(); i != e; ++i) {
581     CodeGenRegister *SR = ExplicitSubRegs[i];
582     if (OSet.insert(SR))
583       SR->addSubRegsPreOrder(OSet, RegBank);
584   }
585   // Add any secondary sub-registers that weren't part of the explicit tree.
586   for (SubRegMap::const_iterator I = SubRegs.begin(), E = SubRegs.end();
587        I != E; ++I)
588     OSet.insert(I->second);
589 }
590 
591 // Get the sum of this register's unit weights.
592 unsigned CodeGenRegister::getWeight(const CodeGenRegBank &RegBank) const {
593   unsigned Weight = 0;
594   for (RegUnitList::iterator I = RegUnits.begin(), E = RegUnits.end();
595        I != E; ++I) {
596     Weight += RegBank.getRegUnit(*I).Weight;
597   }
598   return Weight;
599 }
600 
601 //===----------------------------------------------------------------------===//
602 //                               RegisterTuples
603 //===----------------------------------------------------------------------===//
604 
605 // A RegisterTuples def is used to generate pseudo-registers from lists of
606 // sub-registers. We provide a SetTheory expander class that returns the new
607 // registers.
608 namespace {
609 
610 struct TupleExpander : SetTheory::Expander {
611   // Reference to SynthDefs in the containing CodeGenRegBank, to keep track of
612   // the synthesized definitions for their lifetime.
613   std::vector<std::unique_ptr<Record>> &SynthDefs;
614 
615   TupleExpander(std::vector<std::unique_ptr<Record>> &SynthDefs)
616       : SynthDefs(SynthDefs) {}
617 
618   void expand(SetTheory &ST, Record *Def, SetTheory::RecSet &Elts) override {
619     std::vector<Record*> Indices = Def->getValueAsListOfDefs("SubRegIndices");
620     unsigned Dim = Indices.size();
621     ListInit *SubRegs = Def->getValueAsListInit("SubRegs");
622     if (Dim != SubRegs->size())
623       PrintFatalError(Def->getLoc(), "SubRegIndices and SubRegs size mismatch");
624     if (Dim < 2)
625       PrintFatalError(Def->getLoc(),
626                       "Tuples must have at least 2 sub-registers");
627 
628     // Evaluate the sub-register lists to be zipped.
629     unsigned Length = ~0u;
630     SmallVector<SetTheory::RecSet, 4> Lists(Dim);
631     for (unsigned i = 0; i != Dim; ++i) {
632       ST.evaluate(SubRegs->getElement(i), Lists[i], Def->getLoc());
633       Length = std::min(Length, unsigned(Lists[i].size()));
634     }
635 
636     if (Length == 0)
637       return;
638 
639     // Precompute some types.
640     Record *RegisterCl = Def->getRecords().getClass("Register");
641     RecTy *RegisterRecTy = RecordRecTy::get(RegisterCl);
642     std::vector<StringRef> RegNames =
643       Def->getValueAsListOfStrings("RegAsmNames");
644 
645     // Zip them up.
646     for (unsigned n = 0; n != Length; ++n) {
647       std::string Name;
648       Record *Proto = Lists[0][n];
649       std::vector<Init*> Tuple;
650       unsigned CostPerUse = 0;
651       for (unsigned i = 0; i != Dim; ++i) {
652         Record *Reg = Lists[i][n];
653         if (i) Name += '_';
654         Name += Reg->getName();
655         Tuple.push_back(DefInit::get(Reg));
656         CostPerUse = std::max(CostPerUse,
657                               unsigned(Reg->getValueAsInt("CostPerUse")));
658       }
659 
660       StringInit *AsmName = StringInit::get("");
661       if (!RegNames.empty()) {
662         if (RegNames.size() <= n)
663           PrintFatalError(Def->getLoc(),
664                           "Register tuple definition missing name for '" +
665                             Name + "'.");
666         AsmName = StringInit::get(RegNames[n]);
667       }
668 
669       // Create a new Record representing the synthesized register. This record
670       // is only for consumption by CodeGenRegister, it is not added to the
671       // RecordKeeper.
672       SynthDefs.emplace_back(
673           std::make_unique<Record>(Name, Def->getLoc(), Def->getRecords()));
674       Record *NewReg = SynthDefs.back().get();
675       Elts.insert(NewReg);
676 
677       // Copy Proto super-classes.
678       ArrayRef<std::pair<Record *, SMRange>> Supers = Proto->getSuperClasses();
679       for (const auto &SuperPair : Supers)
680         NewReg->addSuperClass(SuperPair.first, SuperPair.second);
681 
682       // Copy Proto fields.
683       for (unsigned i = 0, e = Proto->getValues().size(); i != e; ++i) {
684         RecordVal RV = Proto->getValues()[i];
685 
686         // Skip existing fields, like NAME.
687         if (NewReg->getValue(RV.getNameInit()))
688           continue;
689 
690         StringRef Field = RV.getName();
691 
692         // Replace the sub-register list with Tuple.
693         if (Field == "SubRegs")
694           RV.setValue(ListInit::get(Tuple, RegisterRecTy));
695 
696         if (Field == "AsmName")
697           RV.setValue(AsmName);
698 
699         // CostPerUse is aggregated from all Tuple members.
700         if (Field == "CostPerUse")
701           RV.setValue(IntInit::get(CostPerUse));
702 
703         // Composite registers are always covered by sub-registers.
704         if (Field == "CoveredBySubRegs")
705           RV.setValue(BitInit::get(true));
706 
707         // Copy fields from the RegisterTuples def.
708         if (Field == "SubRegIndices" ||
709             Field == "CompositeIndices") {
710           NewReg->addValue(*Def->getValue(Field));
711           continue;
712         }
713 
714         // Some fields get their default uninitialized value.
715         if (Field == "DwarfNumbers" ||
716             Field == "DwarfAlias" ||
717             Field == "Aliases") {
718           if (const RecordVal *DefRV = RegisterCl->getValue(Field))
719             NewReg->addValue(*DefRV);
720           continue;
721         }
722 
723         // Everything else is copied from Proto.
724         NewReg->addValue(RV);
725       }
726     }
727   }
728 };
729 
730 } // end anonymous namespace
731 
732 //===----------------------------------------------------------------------===//
733 //                            CodeGenRegisterClass
734 //===----------------------------------------------------------------------===//
735 
736 static void sortAndUniqueRegisters(CodeGenRegister::Vec &M) {
737   llvm::sort(M, deref<std::less<>>());
738   M.erase(std::unique(M.begin(), M.end(), deref<std::equal_to<>>()), M.end());
739 }
740 
741 CodeGenRegisterClass::CodeGenRegisterClass(CodeGenRegBank &RegBank, Record *R)
742     : TheDef(R), Name(std::string(R->getName())),
743       TopoSigs(RegBank.getNumTopoSigs()), EnumValue(-1) {
744   std::vector<Record*> TypeList = R->getValueAsListOfDefs("RegTypes");
745   for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
746     Record *Type = TypeList[i];
747     if (!Type->isSubClassOf("ValueType"))
748       PrintFatalError(R->getLoc(),
749                       "RegTypes list member '" + Type->getName() +
750                           "' does not derive from the ValueType class!");
751     VTs.push_back(getValueTypeByHwMode(Type, RegBank.getHwModes()));
752   }
753   assert(!VTs.empty() && "RegisterClass must contain at least one ValueType!");
754 
755   // Allocation order 0 is the full set. AltOrders provides others.
756   const SetTheory::RecVec *Elements = RegBank.getSets().expand(R);
757   ListInit *AltOrders = R->getValueAsListInit("AltOrders");
758   Orders.resize(1 + AltOrders->size());
759 
760   // Default allocation order always contains all registers.
761   Artificial = true;
762   for (unsigned i = 0, e = Elements->size(); i != e; ++i) {
763     Orders[0].push_back((*Elements)[i]);
764     const CodeGenRegister *Reg = RegBank.getReg((*Elements)[i]);
765     Members.push_back(Reg);
766     Artificial &= Reg->Artificial;
767     TopoSigs.set(Reg->getTopoSig());
768   }
769   sortAndUniqueRegisters(Members);
770 
771   // Alternative allocation orders may be subsets.
772   SetTheory::RecSet Order;
773   for (unsigned i = 0, e = AltOrders->size(); i != e; ++i) {
774     RegBank.getSets().evaluate(AltOrders->getElement(i), Order, R->getLoc());
775     Orders[1 + i].append(Order.begin(), Order.end());
776     // Verify that all altorder members are regclass members.
777     while (!Order.empty()) {
778       CodeGenRegister *Reg = RegBank.getReg(Order.back());
779       Order.pop_back();
780       if (!contains(Reg))
781         PrintFatalError(R->getLoc(), " AltOrder register " + Reg->getName() +
782                       " is not a class member");
783     }
784   }
785 
786   Namespace = R->getValueAsString("Namespace");
787 
788   if (const RecordVal *RV = R->getValue("RegInfos"))
789     if (DefInit *DI = dyn_cast_or_null<DefInit>(RV->getValue()))
790       RSI = RegSizeInfoByHwMode(DI->getDef(), RegBank.getHwModes());
791   unsigned Size = R->getValueAsInt("Size");
792   assert((RSI.hasDefault() || Size != 0 || VTs[0].isSimple()) &&
793          "Impossible to determine register size");
794   if (!RSI.hasDefault()) {
795     RegSizeInfo RI;
796     RI.RegSize = RI.SpillSize = Size ? Size
797                                      : VTs[0].getSimple().getSizeInBits();
798     RI.SpillAlignment = R->getValueAsInt("Alignment");
799     RSI.Map.insert({DefaultMode, RI});
800   }
801 
802   CopyCost = R->getValueAsInt("CopyCost");
803   Allocatable = R->getValueAsBit("isAllocatable");
804   AltOrderSelect = R->getValueAsString("AltOrderSelect");
805   int AllocationPriority = R->getValueAsInt("AllocationPriority");
806   if (AllocationPriority < 0 || AllocationPriority > 63)
807     PrintFatalError(R->getLoc(), "AllocationPriority out of range [0,63]");
808   this->AllocationPriority = AllocationPriority;
809 }
810 
811 // Create an inferred register class that was missing from the .td files.
812 // Most properties will be inherited from the closest super-class after the
813 // class structure has been computed.
814 CodeGenRegisterClass::CodeGenRegisterClass(CodeGenRegBank &RegBank,
815                                            StringRef Name, Key Props)
816     : Members(*Props.Members), TheDef(nullptr), Name(std::string(Name)),
817       TopoSigs(RegBank.getNumTopoSigs()), EnumValue(-1), RSI(Props.RSI),
818       CopyCost(0), Allocatable(true), AllocationPriority(0) {
819   Artificial = true;
820   for (const auto R : Members) {
821     TopoSigs.set(R->getTopoSig());
822     Artificial &= R->Artificial;
823   }
824 }
825 
826 // Compute inherited propertied for a synthesized register class.
827 void CodeGenRegisterClass::inheritProperties(CodeGenRegBank &RegBank) {
828   assert(!getDef() && "Only synthesized classes can inherit properties");
829   assert(!SuperClasses.empty() && "Synthesized class without super class");
830 
831   // The last super-class is the smallest one.
832   CodeGenRegisterClass &Super = *SuperClasses.back();
833 
834   // Most properties are copied directly.
835   // Exceptions are members, size, and alignment
836   Namespace = Super.Namespace;
837   VTs = Super.VTs;
838   CopyCost = Super.CopyCost;
839   Allocatable = Super.Allocatable;
840   AltOrderSelect = Super.AltOrderSelect;
841   AllocationPriority = Super.AllocationPriority;
842 
843   // Copy all allocation orders, filter out foreign registers from the larger
844   // super-class.
845   Orders.resize(Super.Orders.size());
846   for (unsigned i = 0, ie = Super.Orders.size(); i != ie; ++i)
847     for (unsigned j = 0, je = Super.Orders[i].size(); j != je; ++j)
848       if (contains(RegBank.getReg(Super.Orders[i][j])))
849         Orders[i].push_back(Super.Orders[i][j]);
850 }
851 
852 bool CodeGenRegisterClass::contains(const CodeGenRegister *Reg) const {
853   return std::binary_search(Members.begin(), Members.end(), Reg,
854                             deref<std::less<>>());
855 }
856 
857 namespace llvm {
858 
859   raw_ostream &operator<<(raw_ostream &OS, const CodeGenRegisterClass::Key &K) {
860     OS << "{ " << K.RSI;
861     for (const auto R : *K.Members)
862       OS << ", " << R->getName();
863     return OS << " }";
864   }
865 
866 } // end namespace llvm
867 
868 // This is a simple lexicographical order that can be used to search for sets.
869 // It is not the same as the topological order provided by TopoOrderRC.
870 bool CodeGenRegisterClass::Key::
871 operator<(const CodeGenRegisterClass::Key &B) const {
872   assert(Members && B.Members);
873   return std::tie(*Members, RSI) < std::tie(*B.Members, B.RSI);
874 }
875 
876 // Returns true if RC is a strict subclass.
877 // RC is a sub-class of this class if it is a valid replacement for any
878 // instruction operand where a register of this classis required. It must
879 // satisfy these conditions:
880 //
881 // 1. All RC registers are also in this.
882 // 2. The RC spill size must not be smaller than our spill size.
883 // 3. RC spill alignment must be compatible with ours.
884 //
885 static bool testSubClass(const CodeGenRegisterClass *A,
886                          const CodeGenRegisterClass *B) {
887   return A->RSI.isSubClassOf(B->RSI) &&
888          std::includes(A->getMembers().begin(), A->getMembers().end(),
889                        B->getMembers().begin(), B->getMembers().end(),
890                        deref<std::less<>>());
891 }
892 
893 /// Sorting predicate for register classes.  This provides a topological
894 /// ordering that arranges all register classes before their sub-classes.
895 ///
896 /// Register classes with the same registers, spill size, and alignment form a
897 /// clique.  They will be ordered alphabetically.
898 ///
899 static bool TopoOrderRC(const CodeGenRegisterClass &PA,
900                         const CodeGenRegisterClass &PB) {
901   auto *A = &PA;
902   auto *B = &PB;
903   if (A == B)
904     return false;
905 
906   if (A->RSI < B->RSI)
907     return true;
908   if (A->RSI != B->RSI)
909     return false;
910 
911   // Order by descending set size.  Note that the classes' allocation order may
912   // not have been computed yet.  The Members set is always vaild.
913   if (A->getMembers().size() > B->getMembers().size())
914     return true;
915   if (A->getMembers().size() < B->getMembers().size())
916     return false;
917 
918   // Finally order by name as a tie breaker.
919   return StringRef(A->getName()) < B->getName();
920 }
921 
922 std::string CodeGenRegisterClass::getQualifiedName() const {
923   if (Namespace.empty())
924     return getName();
925   else
926     return (Namespace + "::" + getName()).str();
927 }
928 
929 // Compute sub-classes of all register classes.
930 // Assume the classes are ordered topologically.
931 void CodeGenRegisterClass::computeSubClasses(CodeGenRegBank &RegBank) {
932   auto &RegClasses = RegBank.getRegClasses();
933 
934   // Visit backwards so sub-classes are seen first.
935   for (auto I = RegClasses.rbegin(), E = RegClasses.rend(); I != E; ++I) {
936     CodeGenRegisterClass &RC = *I;
937     RC.SubClasses.resize(RegClasses.size());
938     RC.SubClasses.set(RC.EnumValue);
939     if (RC.Artificial)
940       continue;
941 
942     // Normally, all subclasses have IDs >= rci, unless RC is part of a clique.
943     for (auto I2 = I.base(), E2 = RegClasses.end(); I2 != E2; ++I2) {
944       CodeGenRegisterClass &SubRC = *I2;
945       if (RC.SubClasses.test(SubRC.EnumValue))
946         continue;
947       if (!testSubClass(&RC, &SubRC))
948         continue;
949       // SubRC is a sub-class. Grap all its sub-classes so we won't have to
950       // check them again.
951       RC.SubClasses |= SubRC.SubClasses;
952     }
953 
954     // Sweep up missed clique members.  They will be immediately preceding RC.
955     for (auto I2 = std::next(I); I2 != E && testSubClass(&RC, &*I2); ++I2)
956       RC.SubClasses.set(I2->EnumValue);
957   }
958 
959   // Compute the SuperClasses lists from the SubClasses vectors.
960   for (auto &RC : RegClasses) {
961     const BitVector &SC = RC.getSubClasses();
962     auto I = RegClasses.begin();
963     for (int s = 0, next_s = SC.find_first(); next_s != -1;
964          next_s = SC.find_next(s)) {
965       std::advance(I, next_s - s);
966       s = next_s;
967       if (&*I == &RC)
968         continue;
969       I->SuperClasses.push_back(&RC);
970     }
971   }
972 
973   // With the class hierarchy in place, let synthesized register classes inherit
974   // properties from their closest super-class. The iteration order here can
975   // propagate properties down multiple levels.
976   for (auto &RC : RegClasses)
977     if (!RC.getDef())
978       RC.inheritProperties(RegBank);
979 }
980 
981 Optional<std::pair<CodeGenRegisterClass *, CodeGenRegisterClass *>>
982 CodeGenRegisterClass::getMatchingSubClassWithSubRegs(
983     CodeGenRegBank &RegBank, const CodeGenSubRegIndex *SubIdx) const {
984   auto SizeOrder = [this](const CodeGenRegisterClass *A,
985                       const CodeGenRegisterClass *B) {
986     // If there are multiple, identical register classes, prefer the original
987     // register class.
988     if (A->getMembers().size() == B->getMembers().size())
989       return A == this;
990     return A->getMembers().size() > B->getMembers().size();
991   };
992 
993   auto &RegClasses = RegBank.getRegClasses();
994 
995   // Find all the subclasses of this one that fully support the sub-register
996   // index and order them by size. BiggestSuperRC should always be first.
997   CodeGenRegisterClass *BiggestSuperRegRC = getSubClassWithSubReg(SubIdx);
998   if (!BiggestSuperRegRC)
999     return None;
1000   BitVector SuperRegRCsBV = BiggestSuperRegRC->getSubClasses();
1001   std::vector<CodeGenRegisterClass *> SuperRegRCs;
1002   for (auto &RC : RegClasses)
1003     if (SuperRegRCsBV[RC.EnumValue])
1004       SuperRegRCs.emplace_back(&RC);
1005   llvm::stable_sort(SuperRegRCs, SizeOrder);
1006 
1007   assert(SuperRegRCs.front() == BiggestSuperRegRC &&
1008          "Biggest class wasn't first");
1009 
1010   // Find all the subreg classes and order them by size too.
1011   std::vector<std::pair<CodeGenRegisterClass *, BitVector>> SuperRegClasses;
1012   for (auto &RC: RegClasses) {
1013     BitVector SuperRegClassesBV(RegClasses.size());
1014     RC.getSuperRegClasses(SubIdx, SuperRegClassesBV);
1015     if (SuperRegClassesBV.any())
1016       SuperRegClasses.push_back(std::make_pair(&RC, SuperRegClassesBV));
1017   }
1018   llvm::sort(SuperRegClasses,
1019              [&](const std::pair<CodeGenRegisterClass *, BitVector> &A,
1020                  const std::pair<CodeGenRegisterClass *, BitVector> &B) {
1021                return SizeOrder(A.first, B.first);
1022              });
1023 
1024   // Find the biggest subclass and subreg class such that R:subidx is in the
1025   // subreg class for all R in subclass.
1026   //
1027   // For example:
1028   // All registers in X86's GR64 have a sub_32bit subregister but no class
1029   // exists that contains all the 32-bit subregisters because GR64 contains RIP
1030   // but GR32 does not contain EIP. Instead, we constrain SuperRegRC to
1031   // GR32_with_sub_8bit (which is identical to GR32_with_sub_32bit) and then,
1032   // having excluded RIP, we are able to find a SubRegRC (GR32).
1033   CodeGenRegisterClass *ChosenSuperRegClass = nullptr;
1034   CodeGenRegisterClass *SubRegRC = nullptr;
1035   for (auto *SuperRegRC : SuperRegRCs) {
1036     for (const auto &SuperRegClassPair : SuperRegClasses) {
1037       const BitVector &SuperRegClassBV = SuperRegClassPair.second;
1038       if (SuperRegClassBV[SuperRegRC->EnumValue]) {
1039         SubRegRC = SuperRegClassPair.first;
1040         ChosenSuperRegClass = SuperRegRC;
1041 
1042         // If SubRegRC is bigger than SuperRegRC then there are members of
1043         // SubRegRC that don't have super registers via SubIdx. Keep looking to
1044         // find a better fit and fall back on this one if there isn't one.
1045         //
1046         // This is intended to prevent X86 from making odd choices such as
1047         // picking LOW32_ADDR_ACCESS_RBP instead of GR32 in the example above.
1048         // LOW32_ADDR_ACCESS_RBP is a valid choice but contains registers that
1049         // aren't subregisters of SuperRegRC whereas GR32 has a direct 1:1
1050         // mapping.
1051         if (SuperRegRC->getMembers().size() >= SubRegRC->getMembers().size())
1052           return std::make_pair(ChosenSuperRegClass, SubRegRC);
1053       }
1054     }
1055 
1056     // If we found a fit but it wasn't quite ideal because SubRegRC had excess
1057     // registers, then we're done.
1058     if (ChosenSuperRegClass)
1059       return std::make_pair(ChosenSuperRegClass, SubRegRC);
1060   }
1061 
1062   return None;
1063 }
1064 
1065 void CodeGenRegisterClass::getSuperRegClasses(const CodeGenSubRegIndex *SubIdx,
1066                                               BitVector &Out) const {
1067   auto FindI = SuperRegClasses.find(SubIdx);
1068   if (FindI == SuperRegClasses.end())
1069     return;
1070   for (CodeGenRegisterClass *RC : FindI->second)
1071     Out.set(RC->EnumValue);
1072 }
1073 
1074 // Populate a unique sorted list of units from a register set.
1075 void CodeGenRegisterClass::buildRegUnitSet(const CodeGenRegBank &RegBank,
1076   std::vector<unsigned> &RegUnits) const {
1077   std::vector<unsigned> TmpUnits;
1078   for (RegUnitIterator UnitI(Members); UnitI.isValid(); ++UnitI) {
1079     const RegUnit &RU = RegBank.getRegUnit(*UnitI);
1080     if (!RU.Artificial)
1081       TmpUnits.push_back(*UnitI);
1082   }
1083   llvm::sort(TmpUnits);
1084   std::unique_copy(TmpUnits.begin(), TmpUnits.end(),
1085                    std::back_inserter(RegUnits));
1086 }
1087 
1088 //===----------------------------------------------------------------------===//
1089 //                               CodeGenRegBank
1090 //===----------------------------------------------------------------------===//
1091 
1092 CodeGenRegBank::CodeGenRegBank(RecordKeeper &Records,
1093                                const CodeGenHwModes &Modes) : CGH(Modes) {
1094   // Configure register Sets to understand register classes and tuples.
1095   Sets.addFieldExpander("RegisterClass", "MemberList");
1096   Sets.addFieldExpander("CalleeSavedRegs", "SaveList");
1097   Sets.addExpander("RegisterTuples",
1098                    std::make_unique<TupleExpander>(SynthDefs));
1099 
1100   // Read in the user-defined (named) sub-register indices.
1101   // More indices will be synthesized later.
1102   std::vector<Record*> SRIs = Records.getAllDerivedDefinitions("SubRegIndex");
1103   llvm::sort(SRIs, LessRecord());
1104   for (unsigned i = 0, e = SRIs.size(); i != e; ++i)
1105     getSubRegIdx(SRIs[i]);
1106   // Build composite maps from ComposedOf fields.
1107   for (auto &Idx : SubRegIndices)
1108     Idx.updateComponents(*this);
1109 
1110   // Read in the register definitions.
1111   std::vector<Record*> Regs = Records.getAllDerivedDefinitions("Register");
1112   llvm::sort(Regs, LessRecordRegister());
1113   // Assign the enumeration values.
1114   for (unsigned i = 0, e = Regs.size(); i != e; ++i)
1115     getReg(Regs[i]);
1116 
1117   // Expand tuples and number the new registers.
1118   std::vector<Record*> Tups =
1119     Records.getAllDerivedDefinitions("RegisterTuples");
1120 
1121   for (Record *R : Tups) {
1122     std::vector<Record *> TupRegs = *Sets.expand(R);
1123     llvm::sort(TupRegs, LessRecordRegister());
1124     for (Record *RC : TupRegs)
1125       getReg(RC);
1126   }
1127 
1128   // Now all the registers are known. Build the object graph of explicit
1129   // register-register references.
1130   for (auto &Reg : Registers)
1131     Reg.buildObjectGraph(*this);
1132 
1133   // Compute register name map.
1134   for (auto &Reg : Registers)
1135     // FIXME: This could just be RegistersByName[name] = register, except that
1136     // causes some failures in MIPS - perhaps they have duplicate register name
1137     // entries? (or maybe there's a reason for it - I don't know much about this
1138     // code, just drive-by refactoring)
1139     RegistersByName.insert(
1140         std::make_pair(Reg.TheDef->getValueAsString("AsmName"), &Reg));
1141 
1142   // Precompute all sub-register maps.
1143   // This will create Composite entries for all inferred sub-register indices.
1144   for (auto &Reg : Registers)
1145     Reg.computeSubRegs(*this);
1146 
1147   // Compute transitive closure of subregister index ConcatenationOf vectors
1148   // and initialize ConcatIdx map.
1149   for (CodeGenSubRegIndex &SRI : SubRegIndices) {
1150     SRI.computeConcatTransitiveClosure();
1151     if (!SRI.ConcatenationOf.empty())
1152       ConcatIdx.insert(std::make_pair(
1153           SmallVector<CodeGenSubRegIndex*,8>(SRI.ConcatenationOf.begin(),
1154                                              SRI.ConcatenationOf.end()), &SRI));
1155   }
1156 
1157   // Infer even more sub-registers by combining leading super-registers.
1158   for (auto &Reg : Registers)
1159     if (Reg.CoveredBySubRegs)
1160       Reg.computeSecondarySubRegs(*this);
1161 
1162   // After the sub-register graph is complete, compute the topologically
1163   // ordered SuperRegs list.
1164   for (auto &Reg : Registers)
1165     Reg.computeSuperRegs(*this);
1166 
1167   // For each pair of Reg:SR, if both are non-artificial, mark the
1168   // corresponding sub-register index as non-artificial.
1169   for (auto &Reg : Registers) {
1170     if (Reg.Artificial)
1171       continue;
1172     for (auto P : Reg.getSubRegs()) {
1173       const CodeGenRegister *SR = P.second;
1174       if (!SR->Artificial)
1175         P.first->Artificial = false;
1176     }
1177   }
1178 
1179   // Native register units are associated with a leaf register. They've all been
1180   // discovered now.
1181   NumNativeRegUnits = RegUnits.size();
1182 
1183   // Read in register class definitions.
1184   std::vector<Record*> RCs = Records.getAllDerivedDefinitions("RegisterClass");
1185   if (RCs.empty())
1186     PrintFatalError("No 'RegisterClass' subclasses defined!");
1187 
1188   // Allocate user-defined register classes.
1189   for (auto *R : RCs) {
1190     RegClasses.emplace_back(*this, R);
1191     CodeGenRegisterClass &RC = RegClasses.back();
1192     if (!RC.Artificial)
1193       addToMaps(&RC);
1194   }
1195 
1196   // Infer missing classes to create a full algebra.
1197   computeInferredRegisterClasses();
1198 
1199   // Order register classes topologically and assign enum values.
1200   RegClasses.sort(TopoOrderRC);
1201   unsigned i = 0;
1202   for (auto &RC : RegClasses)
1203     RC.EnumValue = i++;
1204   CodeGenRegisterClass::computeSubClasses(*this);
1205 }
1206 
1207 // Create a synthetic CodeGenSubRegIndex without a corresponding Record.
1208 CodeGenSubRegIndex*
1209 CodeGenRegBank::createSubRegIndex(StringRef Name, StringRef Namespace) {
1210   SubRegIndices.emplace_back(Name, Namespace, SubRegIndices.size() + 1);
1211   return &SubRegIndices.back();
1212 }
1213 
1214 CodeGenSubRegIndex *CodeGenRegBank::getSubRegIdx(Record *Def) {
1215   CodeGenSubRegIndex *&Idx = Def2SubRegIdx[Def];
1216   if (Idx)
1217     return Idx;
1218   SubRegIndices.emplace_back(Def, SubRegIndices.size() + 1);
1219   Idx = &SubRegIndices.back();
1220   return Idx;
1221 }
1222 
1223 CodeGenRegister *CodeGenRegBank::getReg(Record *Def) {
1224   CodeGenRegister *&Reg = Def2Reg[Def];
1225   if (Reg)
1226     return Reg;
1227   Registers.emplace_back(Def, Registers.size() + 1);
1228   Reg = &Registers.back();
1229   return Reg;
1230 }
1231 
1232 void CodeGenRegBank::addToMaps(CodeGenRegisterClass *RC) {
1233   if (Record *Def = RC->getDef())
1234     Def2RC.insert(std::make_pair(Def, RC));
1235 
1236   // Duplicate classes are rejected by insert().
1237   // That's OK, we only care about the properties handled by CGRC::Key.
1238   CodeGenRegisterClass::Key K(*RC);
1239   Key2RC.insert(std::make_pair(K, RC));
1240 }
1241 
1242 // Create a synthetic sub-class if it is missing.
1243 CodeGenRegisterClass*
1244 CodeGenRegBank::getOrCreateSubClass(const CodeGenRegisterClass *RC,
1245                                     const CodeGenRegister::Vec *Members,
1246                                     StringRef Name) {
1247   // Synthetic sub-class has the same size and alignment as RC.
1248   CodeGenRegisterClass::Key K(Members, RC->RSI);
1249   RCKeyMap::const_iterator FoundI = Key2RC.find(K);
1250   if (FoundI != Key2RC.end())
1251     return FoundI->second;
1252 
1253   // Sub-class doesn't exist, create a new one.
1254   RegClasses.emplace_back(*this, Name, K);
1255   addToMaps(&RegClasses.back());
1256   return &RegClasses.back();
1257 }
1258 
1259 CodeGenRegisterClass *CodeGenRegBank::getRegClass(Record *Def) {
1260   if (CodeGenRegisterClass *RC = Def2RC[Def])
1261     return RC;
1262 
1263   PrintFatalError(Def->getLoc(), "Not a known RegisterClass!");
1264 }
1265 
1266 CodeGenSubRegIndex*
1267 CodeGenRegBank::getCompositeSubRegIndex(CodeGenSubRegIndex *A,
1268                                         CodeGenSubRegIndex *B) {
1269   // Look for an existing entry.
1270   CodeGenSubRegIndex *Comp = A->compose(B);
1271   if (Comp)
1272     return Comp;
1273 
1274   // None exists, synthesize one.
1275   std::string Name = A->getName() + "_then_" + B->getName();
1276   Comp = createSubRegIndex(Name, A->getNamespace());
1277   A->addComposite(B, Comp);
1278   return Comp;
1279 }
1280 
1281 CodeGenSubRegIndex *CodeGenRegBank::
1282 getConcatSubRegIndex(const SmallVector<CodeGenSubRegIndex *, 8> &Parts) {
1283   assert(Parts.size() > 1 && "Need two parts to concatenate");
1284 #ifndef NDEBUG
1285   for (CodeGenSubRegIndex *Idx : Parts) {
1286     assert(Idx->ConcatenationOf.empty() && "No transitive closure?");
1287   }
1288 #endif
1289 
1290   // Look for an existing entry.
1291   CodeGenSubRegIndex *&Idx = ConcatIdx[Parts];
1292   if (Idx)
1293     return Idx;
1294 
1295   // None exists, synthesize one.
1296   std::string Name = Parts.front()->getName();
1297   // Determine whether all parts are contiguous.
1298   bool isContinuous = true;
1299   unsigned Size = Parts.front()->Size;
1300   unsigned LastOffset = Parts.front()->Offset;
1301   unsigned LastSize = Parts.front()->Size;
1302   for (unsigned i = 1, e = Parts.size(); i != e; ++i) {
1303     Name += '_';
1304     Name += Parts[i]->getName();
1305     Size += Parts[i]->Size;
1306     if (Parts[i]->Offset != (LastOffset + LastSize))
1307       isContinuous = false;
1308     LastOffset = Parts[i]->Offset;
1309     LastSize = Parts[i]->Size;
1310   }
1311   Idx = createSubRegIndex(Name, Parts.front()->getNamespace());
1312   Idx->Size = Size;
1313   Idx->Offset = isContinuous ? Parts.front()->Offset : -1;
1314   Idx->ConcatenationOf.assign(Parts.begin(), Parts.end());
1315   return Idx;
1316 }
1317 
1318 void CodeGenRegBank::computeComposites() {
1319   using RegMap = std::map<const CodeGenRegister*, const CodeGenRegister*>;
1320 
1321   // Subreg -> { Reg->Reg }, where the right-hand side is the mapping from
1322   // register to (sub)register associated with the action of the left-hand
1323   // side subregister.
1324   std::map<const CodeGenSubRegIndex*, RegMap> SubRegAction;
1325   for (const CodeGenRegister &R : Registers) {
1326     const CodeGenRegister::SubRegMap &SM = R.getSubRegs();
1327     for (std::pair<const CodeGenSubRegIndex*, const CodeGenRegister*> P : SM)
1328       SubRegAction[P.first].insert({&R, P.second});
1329   }
1330 
1331   // Calculate the composition of two subregisters as compositions of their
1332   // associated actions.
1333   auto compose = [&SubRegAction] (const CodeGenSubRegIndex *Sub1,
1334                                   const CodeGenSubRegIndex *Sub2) {
1335     RegMap C;
1336     const RegMap &Img1 = SubRegAction.at(Sub1);
1337     const RegMap &Img2 = SubRegAction.at(Sub2);
1338     for (std::pair<const CodeGenRegister*, const CodeGenRegister*> P : Img1) {
1339       auto F = Img2.find(P.second);
1340       if (F != Img2.end())
1341         C.insert({P.first, F->second});
1342     }
1343     return C;
1344   };
1345 
1346   // Check if the two maps agree on the intersection of their domains.
1347   auto agree = [] (const RegMap &Map1, const RegMap &Map2) {
1348     // Technically speaking, an empty map agrees with any other map, but
1349     // this could flag false positives. We're interested in non-vacuous
1350     // agreements.
1351     if (Map1.empty() || Map2.empty())
1352       return false;
1353     for (std::pair<const CodeGenRegister*, const CodeGenRegister*> P : Map1) {
1354       auto F = Map2.find(P.first);
1355       if (F == Map2.end() || P.second != F->second)
1356         return false;
1357     }
1358     return true;
1359   };
1360 
1361   using CompositePair = std::pair<const CodeGenSubRegIndex*,
1362                                   const CodeGenSubRegIndex*>;
1363   SmallSet<CompositePair,4> UserDefined;
1364   for (const CodeGenSubRegIndex &Idx : SubRegIndices)
1365     for (auto P : Idx.getComposites())
1366       UserDefined.insert(std::make_pair(&Idx, P.first));
1367 
1368   // Keep track of TopoSigs visited. We only need to visit each TopoSig once,
1369   // and many registers will share TopoSigs on regular architectures.
1370   BitVector TopoSigs(getNumTopoSigs());
1371 
1372   for (const auto &Reg1 : Registers) {
1373     // Skip identical subreg structures already processed.
1374     if (TopoSigs.test(Reg1.getTopoSig()))
1375       continue;
1376     TopoSigs.set(Reg1.getTopoSig());
1377 
1378     const CodeGenRegister::SubRegMap &SRM1 = Reg1.getSubRegs();
1379     for (CodeGenRegister::SubRegMap::const_iterator i1 = SRM1.begin(),
1380          e1 = SRM1.end(); i1 != e1; ++i1) {
1381       CodeGenSubRegIndex *Idx1 = i1->first;
1382       CodeGenRegister *Reg2 = i1->second;
1383       // Ignore identity compositions.
1384       if (&Reg1 == Reg2)
1385         continue;
1386       const CodeGenRegister::SubRegMap &SRM2 = Reg2->getSubRegs();
1387       // Try composing Idx1 with another SubRegIndex.
1388       for (CodeGenRegister::SubRegMap::const_iterator i2 = SRM2.begin(),
1389            e2 = SRM2.end(); i2 != e2; ++i2) {
1390         CodeGenSubRegIndex *Idx2 = i2->first;
1391         CodeGenRegister *Reg3 = i2->second;
1392         // Ignore identity compositions.
1393         if (Reg2 == Reg3)
1394           continue;
1395         // OK Reg1:IdxPair == Reg3. Find the index with Reg:Idx == Reg3.
1396         CodeGenSubRegIndex *Idx3 = Reg1.getSubRegIndex(Reg3);
1397         assert(Idx3 && "Sub-register doesn't have an index");
1398 
1399         // Conflicting composition? Emit a warning but allow it.
1400         if (CodeGenSubRegIndex *Prev = Idx1->addComposite(Idx2, Idx3)) {
1401           // If the composition was not user-defined, always emit a warning.
1402           if (!UserDefined.count({Idx1, Idx2}) ||
1403               agree(compose(Idx1, Idx2), SubRegAction.at(Idx3)))
1404             PrintWarning(Twine("SubRegIndex ") + Idx1->getQualifiedName() +
1405                          " and " + Idx2->getQualifiedName() +
1406                          " compose ambiguously as " + Prev->getQualifiedName() +
1407                          " or " + Idx3->getQualifiedName());
1408         }
1409       }
1410     }
1411   }
1412 }
1413 
1414 // Compute lane masks. This is similar to register units, but at the
1415 // sub-register index level. Each bit in the lane mask is like a register unit
1416 // class, and two lane masks will have a bit in common if two sub-register
1417 // indices overlap in some register.
1418 //
1419 // Conservatively share a lane mask bit if two sub-register indices overlap in
1420 // some registers, but not in others. That shouldn't happen a lot.
1421 void CodeGenRegBank::computeSubRegLaneMasks() {
1422   // First assign individual bits to all the leaf indices.
1423   unsigned Bit = 0;
1424   // Determine mask of lanes that cover their registers.
1425   CoveringLanes = LaneBitmask::getAll();
1426   for (auto &Idx : SubRegIndices) {
1427     if (Idx.getComposites().empty()) {
1428       if (Bit > LaneBitmask::BitWidth) {
1429         PrintFatalError(
1430           Twine("Ran out of lanemask bits to represent subregister ")
1431           + Idx.getName());
1432       }
1433       Idx.LaneMask = LaneBitmask::getLane(Bit);
1434       ++Bit;
1435     } else {
1436       Idx.LaneMask = LaneBitmask::getNone();
1437     }
1438   }
1439 
1440   // Compute transformation sequences for composeSubRegIndexLaneMask. The idea
1441   // here is that for each possible target subregister we look at the leafs
1442   // in the subregister graph that compose for this target and create
1443   // transformation sequences for the lanemasks. Each step in the sequence
1444   // consists of a bitmask and a bitrotate operation. As the rotation amounts
1445   // are usually the same for many subregisters we can easily combine the steps
1446   // by combining the masks.
1447   for (const auto &Idx : SubRegIndices) {
1448     const auto &Composites = Idx.getComposites();
1449     auto &LaneTransforms = Idx.CompositionLaneMaskTransform;
1450 
1451     if (Composites.empty()) {
1452       // Moving from a class with no subregisters we just had a single lane:
1453       // The subregister must be a leaf subregister and only occupies 1 bit.
1454       // Move the bit from the class without subregisters into that position.
1455       unsigned DstBit = Idx.LaneMask.getHighestLane();
1456       assert(Idx.LaneMask == LaneBitmask::getLane(DstBit) &&
1457              "Must be a leaf subregister");
1458       MaskRolPair MaskRol = { LaneBitmask::getLane(0), (uint8_t)DstBit };
1459       LaneTransforms.push_back(MaskRol);
1460     } else {
1461       // Go through all leaf subregisters and find the ones that compose with
1462       // Idx. These make out all possible valid bits in the lane mask we want to
1463       // transform. Looking only at the leafs ensure that only a single bit in
1464       // the mask is set.
1465       unsigned NextBit = 0;
1466       for (auto &Idx2 : SubRegIndices) {
1467         // Skip non-leaf subregisters.
1468         if (!Idx2.getComposites().empty())
1469           continue;
1470         // Replicate the behaviour from the lane mask generation loop above.
1471         unsigned SrcBit = NextBit;
1472         LaneBitmask SrcMask = LaneBitmask::getLane(SrcBit);
1473         if (NextBit < LaneBitmask::BitWidth-1)
1474           ++NextBit;
1475         assert(Idx2.LaneMask == SrcMask);
1476 
1477         // Get the composed subregister if there is any.
1478         auto C = Composites.find(&Idx2);
1479         if (C == Composites.end())
1480           continue;
1481         const CodeGenSubRegIndex *Composite = C->second;
1482         // The Composed subreg should be a leaf subreg too
1483         assert(Composite->getComposites().empty());
1484 
1485         // Create Mask+Rotate operation and merge with existing ops if possible.
1486         unsigned DstBit = Composite->LaneMask.getHighestLane();
1487         int Shift = DstBit - SrcBit;
1488         uint8_t RotateLeft = Shift >= 0 ? (uint8_t)Shift
1489                                         : LaneBitmask::BitWidth + Shift;
1490         for (auto &I : LaneTransforms) {
1491           if (I.RotateLeft == RotateLeft) {
1492             I.Mask |= SrcMask;
1493             SrcMask = LaneBitmask::getNone();
1494           }
1495         }
1496         if (SrcMask.any()) {
1497           MaskRolPair MaskRol = { SrcMask, RotateLeft };
1498           LaneTransforms.push_back(MaskRol);
1499         }
1500       }
1501     }
1502 
1503     // Optimize if the transformation consists of one step only: Set mask to
1504     // 0xffffffff (including some irrelevant invalid bits) so that it should
1505     // merge with more entries later while compressing the table.
1506     if (LaneTransforms.size() == 1)
1507       LaneTransforms[0].Mask = LaneBitmask::getAll();
1508 
1509     // Further compression optimization: For invalid compositions resulting
1510     // in a sequence with 0 entries we can just pick any other. Choose
1511     // Mask 0xffffffff with Rotation 0.
1512     if (LaneTransforms.size() == 0) {
1513       MaskRolPair P = { LaneBitmask::getAll(), 0 };
1514       LaneTransforms.push_back(P);
1515     }
1516   }
1517 
1518   // FIXME: What if ad-hoc aliasing introduces overlaps that aren't represented
1519   // by the sub-register graph? This doesn't occur in any known targets.
1520 
1521   // Inherit lanes from composites.
1522   for (const auto &Idx : SubRegIndices) {
1523     LaneBitmask Mask = Idx.computeLaneMask();
1524     // If some super-registers without CoveredBySubRegs use this index, we can
1525     // no longer assume that the lanes are covering their registers.
1526     if (!Idx.AllSuperRegsCovered)
1527       CoveringLanes &= ~Mask;
1528   }
1529 
1530   // Compute lane mask combinations for register classes.
1531   for (auto &RegClass : RegClasses) {
1532     LaneBitmask LaneMask;
1533     for (const auto &SubRegIndex : SubRegIndices) {
1534       if (RegClass.getSubClassWithSubReg(&SubRegIndex) == nullptr)
1535         continue;
1536       LaneMask |= SubRegIndex.LaneMask;
1537     }
1538 
1539     // For classes without any subregisters set LaneMask to 1 instead of 0.
1540     // This makes it easier for client code to handle classes uniformly.
1541     if (LaneMask.none())
1542       LaneMask = LaneBitmask::getLane(0);
1543 
1544     RegClass.LaneMask = LaneMask;
1545   }
1546 }
1547 
1548 namespace {
1549 
1550 // UberRegSet is a helper class for computeRegUnitWeights. Each UberRegSet is
1551 // the transitive closure of the union of overlapping register
1552 // classes. Together, the UberRegSets form a partition of the registers. If we
1553 // consider overlapping register classes to be connected, then each UberRegSet
1554 // is a set of connected components.
1555 //
1556 // An UberRegSet will likely be a horizontal slice of register names of
1557 // the same width. Nontrivial subregisters should then be in a separate
1558 // UberRegSet. But this property isn't required for valid computation of
1559 // register unit weights.
1560 //
1561 // A Weight field caches the max per-register unit weight in each UberRegSet.
1562 //
1563 // A set of SingularDeterminants flags single units of some register in this set
1564 // for which the unit weight equals the set weight. These units should not have
1565 // their weight increased.
1566 struct UberRegSet {
1567   CodeGenRegister::Vec Regs;
1568   unsigned Weight = 0;
1569   CodeGenRegister::RegUnitList SingularDeterminants;
1570 
1571   UberRegSet() = default;
1572 };
1573 
1574 } // end anonymous namespace
1575 
1576 // Partition registers into UberRegSets, where each set is the transitive
1577 // closure of the union of overlapping register classes.
1578 //
1579 // UberRegSets[0] is a special non-allocatable set.
1580 static void computeUberSets(std::vector<UberRegSet> &UberSets,
1581                             std::vector<UberRegSet*> &RegSets,
1582                             CodeGenRegBank &RegBank) {
1583   const auto &Registers = RegBank.getRegisters();
1584 
1585   // The Register EnumValue is one greater than its index into Registers.
1586   assert(Registers.size() == Registers.back().EnumValue &&
1587          "register enum value mismatch");
1588 
1589   // For simplicitly make the SetID the same as EnumValue.
1590   IntEqClasses UberSetIDs(Registers.size()+1);
1591   std::set<unsigned> AllocatableRegs;
1592   for (auto &RegClass : RegBank.getRegClasses()) {
1593     if (!RegClass.Allocatable)
1594       continue;
1595 
1596     const CodeGenRegister::Vec &Regs = RegClass.getMembers();
1597     if (Regs.empty())
1598       continue;
1599 
1600     unsigned USetID = UberSetIDs.findLeader((*Regs.begin())->EnumValue);
1601     assert(USetID && "register number 0 is invalid");
1602 
1603     AllocatableRegs.insert((*Regs.begin())->EnumValue);
1604     for (auto I = std::next(Regs.begin()), E = Regs.end(); I != E; ++I) {
1605       AllocatableRegs.insert((*I)->EnumValue);
1606       UberSetIDs.join(USetID, (*I)->EnumValue);
1607     }
1608   }
1609   // Combine non-allocatable regs.
1610   for (const auto &Reg : Registers) {
1611     unsigned RegNum = Reg.EnumValue;
1612     if (AllocatableRegs.count(RegNum))
1613       continue;
1614 
1615     UberSetIDs.join(0, RegNum);
1616   }
1617   UberSetIDs.compress();
1618 
1619   // Make the first UberSet a special unallocatable set.
1620   unsigned ZeroID = UberSetIDs[0];
1621 
1622   // Insert Registers into the UberSets formed by union-find.
1623   // Do not resize after this.
1624   UberSets.resize(UberSetIDs.getNumClasses());
1625   unsigned i = 0;
1626   for (const CodeGenRegister &Reg : Registers) {
1627     unsigned USetID = UberSetIDs[Reg.EnumValue];
1628     if (!USetID)
1629       USetID = ZeroID;
1630     else if (USetID == ZeroID)
1631       USetID = 0;
1632 
1633     UberRegSet *USet = &UberSets[USetID];
1634     USet->Regs.push_back(&Reg);
1635     sortAndUniqueRegisters(USet->Regs);
1636     RegSets[i++] = USet;
1637   }
1638 }
1639 
1640 // Recompute each UberSet weight after changing unit weights.
1641 static void computeUberWeights(std::vector<UberRegSet> &UberSets,
1642                                CodeGenRegBank &RegBank) {
1643   // Skip the first unallocatable set.
1644   for (std::vector<UberRegSet>::iterator I = std::next(UberSets.begin()),
1645          E = UberSets.end(); I != E; ++I) {
1646 
1647     // Initialize all unit weights in this set, and remember the max units/reg.
1648     const CodeGenRegister *Reg = nullptr;
1649     unsigned MaxWeight = 0, Weight = 0;
1650     for (RegUnitIterator UnitI(I->Regs); UnitI.isValid(); ++UnitI) {
1651       if (Reg != UnitI.getReg()) {
1652         if (Weight > MaxWeight)
1653           MaxWeight = Weight;
1654         Reg = UnitI.getReg();
1655         Weight = 0;
1656       }
1657       if (!RegBank.getRegUnit(*UnitI).Artificial) {
1658         unsigned UWeight = RegBank.getRegUnit(*UnitI).Weight;
1659         if (!UWeight) {
1660           UWeight = 1;
1661           RegBank.increaseRegUnitWeight(*UnitI, UWeight);
1662         }
1663         Weight += UWeight;
1664       }
1665     }
1666     if (Weight > MaxWeight)
1667       MaxWeight = Weight;
1668     if (I->Weight != MaxWeight) {
1669       LLVM_DEBUG(dbgs() << "UberSet " << I - UberSets.begin() << " Weight "
1670                         << MaxWeight;
1671                  for (auto &Unit
1672                       : I->Regs) dbgs()
1673                  << " " << Unit->getName();
1674                  dbgs() << "\n");
1675       // Update the set weight.
1676       I->Weight = MaxWeight;
1677     }
1678 
1679     // Find singular determinants.
1680     for (const auto R : I->Regs) {
1681       if (R->getRegUnits().count() == 1 && R->getWeight(RegBank) == I->Weight) {
1682         I->SingularDeterminants |= R->getRegUnits();
1683       }
1684     }
1685   }
1686 }
1687 
1688 // normalizeWeight is a computeRegUnitWeights helper that adjusts the weight of
1689 // a register and its subregisters so that they have the same weight as their
1690 // UberSet. Self-recursion processes the subregister tree in postorder so
1691 // subregisters are normalized first.
1692 //
1693 // Side effects:
1694 // - creates new adopted register units
1695 // - causes superregisters to inherit adopted units
1696 // - increases the weight of "singular" units
1697 // - induces recomputation of UberWeights.
1698 static bool normalizeWeight(CodeGenRegister *Reg,
1699                             std::vector<UberRegSet> &UberSets,
1700                             std::vector<UberRegSet*> &RegSets,
1701                             BitVector &NormalRegs,
1702                             CodeGenRegister::RegUnitList &NormalUnits,
1703                             CodeGenRegBank &RegBank) {
1704   NormalRegs.resize(std::max(Reg->EnumValue + 1, NormalRegs.size()));
1705   if (NormalRegs.test(Reg->EnumValue))
1706     return false;
1707   NormalRegs.set(Reg->EnumValue);
1708 
1709   bool Changed = false;
1710   const CodeGenRegister::SubRegMap &SRM = Reg->getSubRegs();
1711   for (CodeGenRegister::SubRegMap::const_iterator SRI = SRM.begin(),
1712          SRE = SRM.end(); SRI != SRE; ++SRI) {
1713     if (SRI->second == Reg)
1714       continue; // self-cycles happen
1715 
1716     Changed |= normalizeWeight(SRI->second, UberSets, RegSets,
1717                                NormalRegs, NormalUnits, RegBank);
1718   }
1719   // Postorder register normalization.
1720 
1721   // Inherit register units newly adopted by subregisters.
1722   if (Reg->inheritRegUnits(RegBank))
1723     computeUberWeights(UberSets, RegBank);
1724 
1725   // Check if this register is too skinny for its UberRegSet.
1726   UberRegSet *UberSet = RegSets[RegBank.getRegIndex(Reg)];
1727 
1728   unsigned RegWeight = Reg->getWeight(RegBank);
1729   if (UberSet->Weight > RegWeight) {
1730     // A register unit's weight can be adjusted only if it is the singular unit
1731     // for this register, has not been used to normalize a subregister's set,
1732     // and has not already been used to singularly determine this UberRegSet.
1733     unsigned AdjustUnit = *Reg->getRegUnits().begin();
1734     if (Reg->getRegUnits().count() != 1
1735         || hasRegUnit(NormalUnits, AdjustUnit)
1736         || hasRegUnit(UberSet->SingularDeterminants, AdjustUnit)) {
1737       // We don't have an adjustable unit, so adopt a new one.
1738       AdjustUnit = RegBank.newRegUnit(UberSet->Weight - RegWeight);
1739       Reg->adoptRegUnit(AdjustUnit);
1740       // Adopting a unit does not immediately require recomputing set weights.
1741     }
1742     else {
1743       // Adjust the existing single unit.
1744       if (!RegBank.getRegUnit(AdjustUnit).Artificial)
1745         RegBank.increaseRegUnitWeight(AdjustUnit, UberSet->Weight - RegWeight);
1746       // The unit may be shared among sets and registers within this set.
1747       computeUberWeights(UberSets, RegBank);
1748     }
1749     Changed = true;
1750   }
1751 
1752   // Mark these units normalized so superregisters can't change their weights.
1753   NormalUnits |= Reg->getRegUnits();
1754 
1755   return Changed;
1756 }
1757 
1758 // Compute a weight for each register unit created during getSubRegs.
1759 //
1760 // The goal is that two registers in the same class will have the same weight,
1761 // where each register's weight is defined as sum of its units' weights.
1762 void CodeGenRegBank::computeRegUnitWeights() {
1763   std::vector<UberRegSet> UberSets;
1764   std::vector<UberRegSet*> RegSets(Registers.size());
1765   computeUberSets(UberSets, RegSets, *this);
1766   // UberSets and RegSets are now immutable.
1767 
1768   computeUberWeights(UberSets, *this);
1769 
1770   // Iterate over each Register, normalizing the unit weights until reaching
1771   // a fix point.
1772   unsigned NumIters = 0;
1773   for (bool Changed = true; Changed; ++NumIters) {
1774     assert(NumIters <= NumNativeRegUnits && "Runaway register unit weights");
1775     Changed = false;
1776     for (auto &Reg : Registers) {
1777       CodeGenRegister::RegUnitList NormalUnits;
1778       BitVector NormalRegs;
1779       Changed |= normalizeWeight(&Reg, UberSets, RegSets, NormalRegs,
1780                                  NormalUnits, *this);
1781     }
1782   }
1783 }
1784 
1785 // Find a set in UniqueSets with the same elements as Set.
1786 // Return an iterator into UniqueSets.
1787 static std::vector<RegUnitSet>::const_iterator
1788 findRegUnitSet(const std::vector<RegUnitSet> &UniqueSets,
1789                const RegUnitSet &Set) {
1790   std::vector<RegUnitSet>::const_iterator
1791     I = UniqueSets.begin(), E = UniqueSets.end();
1792   for(;I != E; ++I) {
1793     if (I->Units == Set.Units)
1794       break;
1795   }
1796   return I;
1797 }
1798 
1799 // Return true if the RUSubSet is a subset of RUSuperSet.
1800 static bool isRegUnitSubSet(const std::vector<unsigned> &RUSubSet,
1801                             const std::vector<unsigned> &RUSuperSet) {
1802   return std::includes(RUSuperSet.begin(), RUSuperSet.end(),
1803                        RUSubSet.begin(), RUSubSet.end());
1804 }
1805 
1806 /// Iteratively prune unit sets. Prune subsets that are close to the superset,
1807 /// but with one or two registers removed. We occasionally have registers like
1808 /// APSR and PC thrown in with the general registers. We also see many
1809 /// special-purpose register subsets, such as tail-call and Thumb
1810 /// encodings. Generating all possible overlapping sets is combinatorial and
1811 /// overkill for modeling pressure. Ideally we could fix this statically in
1812 /// tablegen by (1) having the target define register classes that only include
1813 /// the allocatable registers and marking other classes as non-allocatable and
1814 /// (2) having a way to mark special purpose classes as "don't-care" classes for
1815 /// the purpose of pressure.  However, we make an attempt to handle targets that
1816 /// are not nicely defined by merging nearly identical register unit sets
1817 /// statically. This generates smaller tables. Then, dynamically, we adjust the
1818 /// set limit by filtering the reserved registers.
1819 ///
1820 /// Merge sets only if the units have the same weight. For example, on ARM,
1821 /// Q-tuples with ssub index 0 include all S regs but also include D16+. We
1822 /// should not expand the S set to include D regs.
1823 void CodeGenRegBank::pruneUnitSets() {
1824   assert(RegClassUnitSets.empty() && "this invalidates RegClassUnitSets");
1825 
1826   // Form an equivalence class of UnitSets with no significant difference.
1827   std::vector<unsigned> SuperSetIDs;
1828   for (unsigned SubIdx = 0, EndIdx = RegUnitSets.size();
1829        SubIdx != EndIdx; ++SubIdx) {
1830     const RegUnitSet &SubSet = RegUnitSets[SubIdx];
1831     unsigned SuperIdx = 0;
1832     for (; SuperIdx != EndIdx; ++SuperIdx) {
1833       if (SuperIdx == SubIdx)
1834         continue;
1835 
1836       unsigned UnitWeight = RegUnits[SubSet.Units[0]].Weight;
1837       const RegUnitSet &SuperSet = RegUnitSets[SuperIdx];
1838       if (isRegUnitSubSet(SubSet.Units, SuperSet.Units)
1839           && (SubSet.Units.size() + 3 > SuperSet.Units.size())
1840           && UnitWeight == RegUnits[SuperSet.Units[0]].Weight
1841           && UnitWeight == RegUnits[SuperSet.Units.back()].Weight) {
1842         LLVM_DEBUG(dbgs() << "UnitSet " << SubIdx << " subsumed by " << SuperIdx
1843                           << "\n");
1844         // We can pick any of the set names for the merged set. Go for the
1845         // shortest one to avoid picking the name of one of the classes that are
1846         // artificially created by tablegen. So "FPR128_lo" instead of
1847         // "QQQQ_with_qsub3_in_FPR128_lo".
1848         if (RegUnitSets[SubIdx].Name.size() < RegUnitSets[SuperIdx].Name.size())
1849           RegUnitSets[SuperIdx].Name = RegUnitSets[SubIdx].Name;
1850         break;
1851       }
1852     }
1853     if (SuperIdx == EndIdx)
1854       SuperSetIDs.push_back(SubIdx);
1855   }
1856   // Populate PrunedUnitSets with each equivalence class's superset.
1857   std::vector<RegUnitSet> PrunedUnitSets(SuperSetIDs.size());
1858   for (unsigned i = 0, e = SuperSetIDs.size(); i != e; ++i) {
1859     unsigned SuperIdx = SuperSetIDs[i];
1860     PrunedUnitSets[i].Name = RegUnitSets[SuperIdx].Name;
1861     PrunedUnitSets[i].Units.swap(RegUnitSets[SuperIdx].Units);
1862   }
1863   RegUnitSets.swap(PrunedUnitSets);
1864 }
1865 
1866 // Create a RegUnitSet for each RegClass that contains all units in the class
1867 // including adopted units that are necessary to model register pressure. Then
1868 // iteratively compute RegUnitSets such that the union of any two overlapping
1869 // RegUnitSets is repreresented.
1870 //
1871 // RegisterInfoEmitter will map each RegClass to its RegUnitClass and any
1872 // RegUnitSet that is a superset of that RegUnitClass.
1873 void CodeGenRegBank::computeRegUnitSets() {
1874   assert(RegUnitSets.empty() && "dirty RegUnitSets");
1875 
1876   // Compute a unique RegUnitSet for each RegClass.
1877   auto &RegClasses = getRegClasses();
1878   for (auto &RC : RegClasses) {
1879     if (!RC.Allocatable || RC.Artificial)
1880       continue;
1881 
1882     // Speculatively grow the RegUnitSets to hold the new set.
1883     RegUnitSets.resize(RegUnitSets.size() + 1);
1884     RegUnitSets.back().Name = RC.getName();
1885 
1886     // Compute a sorted list of units in this class.
1887     RC.buildRegUnitSet(*this, RegUnitSets.back().Units);
1888 
1889     // Find an existing RegUnitSet.
1890     std::vector<RegUnitSet>::const_iterator SetI =
1891       findRegUnitSet(RegUnitSets, RegUnitSets.back());
1892     if (SetI != std::prev(RegUnitSets.end()))
1893       RegUnitSets.pop_back();
1894   }
1895 
1896   LLVM_DEBUG(dbgs() << "\nBefore pruning:\n"; for (unsigned USIdx = 0,
1897                                                    USEnd = RegUnitSets.size();
1898                                                    USIdx < USEnd; ++USIdx) {
1899     dbgs() << "UnitSet " << USIdx << " " << RegUnitSets[USIdx].Name << ":";
1900     for (auto &U : RegUnitSets[USIdx].Units)
1901       printRegUnitName(U);
1902     dbgs() << "\n";
1903   });
1904 
1905   // Iteratively prune unit sets.
1906   pruneUnitSets();
1907 
1908   LLVM_DEBUG(dbgs() << "\nBefore union:\n"; for (unsigned USIdx = 0,
1909                                                  USEnd = RegUnitSets.size();
1910                                                  USIdx < USEnd; ++USIdx) {
1911     dbgs() << "UnitSet " << USIdx << " " << RegUnitSets[USIdx].Name << ":";
1912     for (auto &U : RegUnitSets[USIdx].Units)
1913       printRegUnitName(U);
1914     dbgs() << "\n";
1915   } dbgs() << "\nUnion sets:\n");
1916 
1917   // Iterate over all unit sets, including new ones added by this loop.
1918   unsigned NumRegUnitSubSets = RegUnitSets.size();
1919   for (unsigned Idx = 0, EndIdx = RegUnitSets.size(); Idx != EndIdx; ++Idx) {
1920     // In theory, this is combinatorial. In practice, it needs to be bounded
1921     // by a small number of sets for regpressure to be efficient.
1922     // If the assert is hit, we need to implement pruning.
1923     assert(Idx < (2*NumRegUnitSubSets) && "runaway unit set inference");
1924 
1925     // Compare new sets with all original classes.
1926     for (unsigned SearchIdx = (Idx >= NumRegUnitSubSets) ? 0 : Idx+1;
1927          SearchIdx != EndIdx; ++SearchIdx) {
1928       std::set<unsigned> Intersection;
1929       std::set_intersection(RegUnitSets[Idx].Units.begin(),
1930                             RegUnitSets[Idx].Units.end(),
1931                             RegUnitSets[SearchIdx].Units.begin(),
1932                             RegUnitSets[SearchIdx].Units.end(),
1933                             std::inserter(Intersection, Intersection.begin()));
1934       if (Intersection.empty())
1935         continue;
1936 
1937       // Speculatively grow the RegUnitSets to hold the new set.
1938       RegUnitSets.resize(RegUnitSets.size() + 1);
1939       RegUnitSets.back().Name =
1940         RegUnitSets[Idx].Name + "+" + RegUnitSets[SearchIdx].Name;
1941 
1942       std::set_union(RegUnitSets[Idx].Units.begin(),
1943                      RegUnitSets[Idx].Units.end(),
1944                      RegUnitSets[SearchIdx].Units.begin(),
1945                      RegUnitSets[SearchIdx].Units.end(),
1946                      std::inserter(RegUnitSets.back().Units,
1947                                    RegUnitSets.back().Units.begin()));
1948 
1949       // Find an existing RegUnitSet, or add the union to the unique sets.
1950       std::vector<RegUnitSet>::const_iterator SetI =
1951         findRegUnitSet(RegUnitSets, RegUnitSets.back());
1952       if (SetI != std::prev(RegUnitSets.end()))
1953         RegUnitSets.pop_back();
1954       else {
1955         LLVM_DEBUG(dbgs() << "UnitSet " << RegUnitSets.size() - 1 << " "
1956                           << RegUnitSets.back().Name << ":";
1957                    for (auto &U
1958                         : RegUnitSets.back().Units) printRegUnitName(U);
1959                    dbgs() << "\n";);
1960       }
1961     }
1962   }
1963 
1964   // Iteratively prune unit sets after inferring supersets.
1965   pruneUnitSets();
1966 
1967   LLVM_DEBUG(
1968       dbgs() << "\n"; for (unsigned USIdx = 0, USEnd = RegUnitSets.size();
1969                            USIdx < USEnd; ++USIdx) {
1970         dbgs() << "UnitSet " << USIdx << " " << RegUnitSets[USIdx].Name << ":";
1971         for (auto &U : RegUnitSets[USIdx].Units)
1972           printRegUnitName(U);
1973         dbgs() << "\n";
1974       });
1975 
1976   // For each register class, list the UnitSets that are supersets.
1977   RegClassUnitSets.resize(RegClasses.size());
1978   int RCIdx = -1;
1979   for (auto &RC : RegClasses) {
1980     ++RCIdx;
1981     if (!RC.Allocatable)
1982       continue;
1983 
1984     // Recompute the sorted list of units in this class.
1985     std::vector<unsigned> RCRegUnits;
1986     RC.buildRegUnitSet(*this, RCRegUnits);
1987 
1988     // Don't increase pressure for unallocatable regclasses.
1989     if (RCRegUnits.empty())
1990       continue;
1991 
1992     LLVM_DEBUG(dbgs() << "RC " << RC.getName() << " Units: \n";
1993                for (auto U
1994                     : RCRegUnits) printRegUnitName(U);
1995                dbgs() << "\n  UnitSetIDs:");
1996 
1997     // Find all supersets.
1998     for (unsigned USIdx = 0, USEnd = RegUnitSets.size();
1999          USIdx != USEnd; ++USIdx) {
2000       if (isRegUnitSubSet(RCRegUnits, RegUnitSets[USIdx].Units)) {
2001         LLVM_DEBUG(dbgs() << " " << USIdx);
2002         RegClassUnitSets[RCIdx].push_back(USIdx);
2003       }
2004     }
2005     LLVM_DEBUG(dbgs() << "\n");
2006     assert(!RegClassUnitSets[RCIdx].empty() && "missing unit set for regclass");
2007   }
2008 
2009   // For each register unit, ensure that we have the list of UnitSets that
2010   // contain the unit. Normally, this matches an existing list of UnitSets for a
2011   // register class. If not, we create a new entry in RegClassUnitSets as a
2012   // "fake" register class.
2013   for (unsigned UnitIdx = 0, UnitEnd = NumNativeRegUnits;
2014        UnitIdx < UnitEnd; ++UnitIdx) {
2015     std::vector<unsigned> RUSets;
2016     for (unsigned i = 0, e = RegUnitSets.size(); i != e; ++i) {
2017       RegUnitSet &RUSet = RegUnitSets[i];
2018       if (!is_contained(RUSet.Units, UnitIdx))
2019         continue;
2020       RUSets.push_back(i);
2021     }
2022     unsigned RCUnitSetsIdx = 0;
2023     for (unsigned e = RegClassUnitSets.size();
2024          RCUnitSetsIdx != e; ++RCUnitSetsIdx) {
2025       if (RegClassUnitSets[RCUnitSetsIdx] == RUSets) {
2026         break;
2027       }
2028     }
2029     RegUnits[UnitIdx].RegClassUnitSetsIdx = RCUnitSetsIdx;
2030     if (RCUnitSetsIdx == RegClassUnitSets.size()) {
2031       // Create a new list of UnitSets as a "fake" register class.
2032       RegClassUnitSets.resize(RCUnitSetsIdx + 1);
2033       RegClassUnitSets[RCUnitSetsIdx].swap(RUSets);
2034     }
2035   }
2036 }
2037 
2038 void CodeGenRegBank::computeRegUnitLaneMasks() {
2039   for (auto &Register : Registers) {
2040     // Create an initial lane mask for all register units.
2041     const auto &RegUnits = Register.getRegUnits();
2042     CodeGenRegister::RegUnitLaneMaskList
2043         RegUnitLaneMasks(RegUnits.count(), LaneBitmask::getNone());
2044     // Iterate through SubRegisters.
2045     typedef CodeGenRegister::SubRegMap SubRegMap;
2046     const SubRegMap &SubRegs = Register.getSubRegs();
2047     for (SubRegMap::const_iterator S = SubRegs.begin(),
2048          SE = SubRegs.end(); S != SE; ++S) {
2049       CodeGenRegister *SubReg = S->second;
2050       // Ignore non-leaf subregisters, their lane masks are fully covered by
2051       // the leaf subregisters anyway.
2052       if (!SubReg->getSubRegs().empty())
2053         continue;
2054       CodeGenSubRegIndex *SubRegIndex = S->first;
2055       const CodeGenRegister *SubRegister = S->second;
2056       LaneBitmask LaneMask = SubRegIndex->LaneMask;
2057       // Distribute LaneMask to Register Units touched.
2058       for (unsigned SUI : SubRegister->getRegUnits()) {
2059         bool Found = false;
2060         unsigned u = 0;
2061         for (unsigned RU : RegUnits) {
2062           if (SUI == RU) {
2063             RegUnitLaneMasks[u] |= LaneMask;
2064             assert(!Found);
2065             Found = true;
2066           }
2067           ++u;
2068         }
2069         (void)Found;
2070         assert(Found);
2071       }
2072     }
2073     Register.setRegUnitLaneMasks(RegUnitLaneMasks);
2074   }
2075 }
2076 
2077 void CodeGenRegBank::computeDerivedInfo() {
2078   computeComposites();
2079   computeSubRegLaneMasks();
2080 
2081   // Compute a weight for each register unit created during getSubRegs.
2082   // This may create adopted register units (with unit # >= NumNativeRegUnits).
2083   computeRegUnitWeights();
2084 
2085   // Compute a unique set of RegUnitSets. One for each RegClass and inferred
2086   // supersets for the union of overlapping sets.
2087   computeRegUnitSets();
2088 
2089   computeRegUnitLaneMasks();
2090 
2091   // Compute register class HasDisjunctSubRegs/CoveredBySubRegs flag.
2092   for (CodeGenRegisterClass &RC : RegClasses) {
2093     RC.HasDisjunctSubRegs = false;
2094     RC.CoveredBySubRegs = true;
2095     for (const CodeGenRegister *Reg : RC.getMembers()) {
2096       RC.HasDisjunctSubRegs |= Reg->HasDisjunctSubRegs;
2097       RC.CoveredBySubRegs &= Reg->CoveredBySubRegs;
2098     }
2099   }
2100 
2101   // Get the weight of each set.
2102   for (unsigned Idx = 0, EndIdx = RegUnitSets.size(); Idx != EndIdx; ++Idx)
2103     RegUnitSets[Idx].Weight = getRegUnitSetWeight(RegUnitSets[Idx].Units);
2104 
2105   // Find the order of each set.
2106   RegUnitSetOrder.reserve(RegUnitSets.size());
2107   for (unsigned Idx = 0, EndIdx = RegUnitSets.size(); Idx != EndIdx; ++Idx)
2108     RegUnitSetOrder.push_back(Idx);
2109 
2110   llvm::stable_sort(RegUnitSetOrder, [this](unsigned ID1, unsigned ID2) {
2111     return getRegPressureSet(ID1).Units.size() <
2112            getRegPressureSet(ID2).Units.size();
2113   });
2114   for (unsigned Idx = 0, EndIdx = RegUnitSets.size(); Idx != EndIdx; ++Idx) {
2115     RegUnitSets[RegUnitSetOrder[Idx]].Order = Idx;
2116   }
2117 }
2118 
2119 //
2120 // Synthesize missing register class intersections.
2121 //
2122 // Make sure that sub-classes of RC exists such that getCommonSubClass(RC, X)
2123 // returns a maximal register class for all X.
2124 //
2125 void CodeGenRegBank::inferCommonSubClass(CodeGenRegisterClass *RC) {
2126   assert(!RegClasses.empty());
2127   // Stash the iterator to the last element so that this loop doesn't visit
2128   // elements added by the getOrCreateSubClass call within it.
2129   for (auto I = RegClasses.begin(), E = std::prev(RegClasses.end());
2130        I != std::next(E); ++I) {
2131     CodeGenRegisterClass *RC1 = RC;
2132     CodeGenRegisterClass *RC2 = &*I;
2133     if (RC1 == RC2)
2134       continue;
2135 
2136     // Compute the set intersection of RC1 and RC2.
2137     const CodeGenRegister::Vec &Memb1 = RC1->getMembers();
2138     const CodeGenRegister::Vec &Memb2 = RC2->getMembers();
2139     CodeGenRegister::Vec Intersection;
2140     std::set_intersection(Memb1.begin(), Memb1.end(), Memb2.begin(),
2141                           Memb2.end(),
2142                           std::inserter(Intersection, Intersection.begin()),
2143                           deref<std::less<>>());
2144 
2145     // Skip disjoint class pairs.
2146     if (Intersection.empty())
2147       continue;
2148 
2149     // If RC1 and RC2 have different spill sizes or alignments, use the
2150     // stricter one for sub-classing.  If they are equal, prefer RC1.
2151     if (RC2->RSI.hasStricterSpillThan(RC1->RSI))
2152       std::swap(RC1, RC2);
2153 
2154     getOrCreateSubClass(RC1, &Intersection,
2155                         RC1->getName() + "_and_" + RC2->getName());
2156   }
2157 }
2158 
2159 //
2160 // Synthesize missing sub-classes for getSubClassWithSubReg().
2161 //
2162 // Make sure that the set of registers in RC with a given SubIdx sub-register
2163 // form a register class.  Update RC->SubClassWithSubReg.
2164 //
2165 void CodeGenRegBank::inferSubClassWithSubReg(CodeGenRegisterClass *RC) {
2166   // Map SubRegIndex to set of registers in RC supporting that SubRegIndex.
2167   typedef std::map<const CodeGenSubRegIndex *, CodeGenRegister::Vec,
2168                    deref<std::less<>>>
2169       SubReg2SetMap;
2170 
2171   // Compute the set of registers supporting each SubRegIndex.
2172   SubReg2SetMap SRSets;
2173   for (const auto R : RC->getMembers()) {
2174     if (R->Artificial)
2175       continue;
2176     const CodeGenRegister::SubRegMap &SRM = R->getSubRegs();
2177     for (CodeGenRegister::SubRegMap::const_iterator I = SRM.begin(),
2178          E = SRM.end(); I != E; ++I) {
2179       if (!I->first->Artificial)
2180         SRSets[I->first].push_back(R);
2181     }
2182   }
2183 
2184   for (auto I : SRSets)
2185     sortAndUniqueRegisters(I.second);
2186 
2187   // Find matching classes for all SRSets entries.  Iterate in SubRegIndex
2188   // numerical order to visit synthetic indices last.
2189   for (const auto &SubIdx : SubRegIndices) {
2190     if (SubIdx.Artificial)
2191       continue;
2192     SubReg2SetMap::const_iterator I = SRSets.find(&SubIdx);
2193     // Unsupported SubRegIndex. Skip it.
2194     if (I == SRSets.end())
2195       continue;
2196     // In most cases, all RC registers support the SubRegIndex.
2197     if (I->second.size() == RC->getMembers().size()) {
2198       RC->setSubClassWithSubReg(&SubIdx, RC);
2199       continue;
2200     }
2201     // This is a real subset.  See if we have a matching class.
2202     CodeGenRegisterClass *SubRC =
2203       getOrCreateSubClass(RC, &I->second,
2204                           RC->getName() + "_with_" + I->first->getName());
2205     RC->setSubClassWithSubReg(&SubIdx, SubRC);
2206   }
2207 }
2208 
2209 //
2210 // Synthesize missing sub-classes of RC for getMatchingSuperRegClass().
2211 //
2212 // Create sub-classes of RC such that getMatchingSuperRegClass(RC, SubIdx, X)
2213 // has a maximal result for any SubIdx and any X >= FirstSubRegRC.
2214 //
2215 
2216 void CodeGenRegBank::inferMatchingSuperRegClass(CodeGenRegisterClass *RC,
2217                                                 std::list<CodeGenRegisterClass>::iterator FirstSubRegRC) {
2218   SmallVector<std::pair<const CodeGenRegister*,
2219                         const CodeGenRegister*>, 16> SSPairs;
2220   BitVector TopoSigs(getNumTopoSigs());
2221 
2222   // Iterate in SubRegIndex numerical order to visit synthetic indices last.
2223   for (auto &SubIdx : SubRegIndices) {
2224     // Skip indexes that aren't fully supported by RC's registers. This was
2225     // computed by inferSubClassWithSubReg() above which should have been
2226     // called first.
2227     if (RC->getSubClassWithSubReg(&SubIdx) != RC)
2228       continue;
2229 
2230     // Build list of (Super, Sub) pairs for this SubIdx.
2231     SSPairs.clear();
2232     TopoSigs.reset();
2233     for (const auto Super : RC->getMembers()) {
2234       const CodeGenRegister *Sub = Super->getSubRegs().find(&SubIdx)->second;
2235       assert(Sub && "Missing sub-register");
2236       SSPairs.push_back(std::make_pair(Super, Sub));
2237       TopoSigs.set(Sub->getTopoSig());
2238     }
2239 
2240     // Iterate over sub-register class candidates.  Ignore classes created by
2241     // this loop. They will never be useful.
2242     // Store an iterator to the last element (not end) so that this loop doesn't
2243     // visit newly inserted elements.
2244     assert(!RegClasses.empty());
2245     for (auto I = FirstSubRegRC, E = std::prev(RegClasses.end());
2246          I != std::next(E); ++I) {
2247       CodeGenRegisterClass &SubRC = *I;
2248       if (SubRC.Artificial)
2249         continue;
2250       // Topological shortcut: SubRC members have the wrong shape.
2251       if (!TopoSigs.anyCommon(SubRC.getTopoSigs()))
2252         continue;
2253       // Compute the subset of RC that maps into SubRC.
2254       CodeGenRegister::Vec SubSetVec;
2255       for (unsigned i = 0, e = SSPairs.size(); i != e; ++i)
2256         if (SubRC.contains(SSPairs[i].second))
2257           SubSetVec.push_back(SSPairs[i].first);
2258 
2259       if (SubSetVec.empty())
2260         continue;
2261 
2262       // RC injects completely into SubRC.
2263       sortAndUniqueRegisters(SubSetVec);
2264       if (SubSetVec.size() == SSPairs.size()) {
2265         SubRC.addSuperRegClass(&SubIdx, RC);
2266         continue;
2267       }
2268 
2269       // Only a subset of RC maps into SubRC. Make sure it is represented by a
2270       // class.
2271       getOrCreateSubClass(RC, &SubSetVec, RC->getName() + "_with_" +
2272                                           SubIdx.getName() + "_in_" +
2273                                           SubRC.getName());
2274     }
2275   }
2276 }
2277 
2278 //
2279 // Infer missing register classes.
2280 //
2281 void CodeGenRegBank::computeInferredRegisterClasses() {
2282   assert(!RegClasses.empty());
2283   // When this function is called, the register classes have not been sorted
2284   // and assigned EnumValues yet.  That means getSubClasses(),
2285   // getSuperClasses(), and hasSubClass() functions are defunct.
2286 
2287   // Use one-before-the-end so it doesn't move forward when new elements are
2288   // added.
2289   auto FirstNewRC = std::prev(RegClasses.end());
2290 
2291   // Visit all register classes, including the ones being added by the loop.
2292   // Watch out for iterator invalidation here.
2293   for (auto I = RegClasses.begin(), E = RegClasses.end(); I != E; ++I) {
2294     CodeGenRegisterClass *RC = &*I;
2295     if (RC->Artificial)
2296       continue;
2297 
2298     // Synthesize answers for getSubClassWithSubReg().
2299     inferSubClassWithSubReg(RC);
2300 
2301     // Synthesize answers for getCommonSubClass().
2302     inferCommonSubClass(RC);
2303 
2304     // Synthesize answers for getMatchingSuperRegClass().
2305     inferMatchingSuperRegClass(RC);
2306 
2307     // New register classes are created while this loop is running, and we need
2308     // to visit all of them.  I  particular, inferMatchingSuperRegClass needs
2309     // to match old super-register classes with sub-register classes created
2310     // after inferMatchingSuperRegClass was called.  At this point,
2311     // inferMatchingSuperRegClass has checked SuperRC = [0..rci] with SubRC =
2312     // [0..FirstNewRC).  We need to cover SubRC = [FirstNewRC..rci].
2313     if (I == FirstNewRC) {
2314       auto NextNewRC = std::prev(RegClasses.end());
2315       for (auto I2 = RegClasses.begin(), E2 = std::next(FirstNewRC); I2 != E2;
2316            ++I2)
2317         inferMatchingSuperRegClass(&*I2, E2);
2318       FirstNewRC = NextNewRC;
2319     }
2320   }
2321 }
2322 
2323 /// getRegisterClassForRegister - Find the register class that contains the
2324 /// specified physical register.  If the register is not in a register class,
2325 /// return null. If the register is in multiple classes, and the classes have a
2326 /// superset-subset relationship and the same set of types, return the
2327 /// superclass.  Otherwise return null.
2328 const CodeGenRegisterClass*
2329 CodeGenRegBank::getRegClassForRegister(Record *R) {
2330   const CodeGenRegister *Reg = getReg(R);
2331   const CodeGenRegisterClass *FoundRC = nullptr;
2332   for (const auto &RC : getRegClasses()) {
2333     if (!RC.contains(Reg))
2334       continue;
2335 
2336     // If this is the first class that contains the register,
2337     // make a note of it and go on to the next class.
2338     if (!FoundRC) {
2339       FoundRC = &RC;
2340       continue;
2341     }
2342 
2343     // If a register's classes have different types, return null.
2344     if (RC.getValueTypes() != FoundRC->getValueTypes())
2345       return nullptr;
2346 
2347     // Check to see if the previously found class that contains
2348     // the register is a subclass of the current class. If so,
2349     // prefer the superclass.
2350     if (RC.hasSubClass(FoundRC)) {
2351       FoundRC = &RC;
2352       continue;
2353     }
2354 
2355     // Check to see if the previously found class that contains
2356     // the register is a superclass of the current class. If so,
2357     // prefer the superclass.
2358     if (FoundRC->hasSubClass(&RC))
2359       continue;
2360 
2361     // Multiple classes, and neither is a superclass of the other.
2362     // Return null.
2363     return nullptr;
2364   }
2365   return FoundRC;
2366 }
2367 
2368 const CodeGenRegisterClass *
2369 CodeGenRegBank::getMinimalPhysRegClass(Record *RegRecord,
2370                                        ValueTypeByHwMode *VT) {
2371   const CodeGenRegister *Reg = getReg(RegRecord);
2372   const CodeGenRegisterClass *BestRC = nullptr;
2373   for (const auto &RC : getRegClasses()) {
2374     if ((!VT || RC.hasType(*VT)) &&
2375         RC.contains(Reg) && (!BestRC || BestRC->hasSubClass(&RC)))
2376       BestRC = &RC;
2377   }
2378 
2379   assert(BestRC && "Couldn't find the register class");
2380   return BestRC;
2381 }
2382 
2383 BitVector CodeGenRegBank::computeCoveredRegisters(ArrayRef<Record*> Regs) {
2384   SetVector<const CodeGenRegister*> Set;
2385 
2386   // First add Regs with all sub-registers.
2387   for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
2388     CodeGenRegister *Reg = getReg(Regs[i]);
2389     if (Set.insert(Reg))
2390       // Reg is new, add all sub-registers.
2391       // The pre-ordering is not important here.
2392       Reg->addSubRegsPreOrder(Set, *this);
2393   }
2394 
2395   // Second, find all super-registers that are completely covered by the set.
2396   for (unsigned i = 0; i != Set.size(); ++i) {
2397     const CodeGenRegister::SuperRegList &SR = Set[i]->getSuperRegs();
2398     for (unsigned j = 0, e = SR.size(); j != e; ++j) {
2399       const CodeGenRegister *Super = SR[j];
2400       if (!Super->CoveredBySubRegs || Set.count(Super))
2401         continue;
2402       // This new super-register is covered by its sub-registers.
2403       bool AllSubsInSet = true;
2404       const CodeGenRegister::SubRegMap &SRM = Super->getSubRegs();
2405       for (CodeGenRegister::SubRegMap::const_iterator I = SRM.begin(),
2406              E = SRM.end(); I != E; ++I)
2407         if (!Set.count(I->second)) {
2408           AllSubsInSet = false;
2409           break;
2410         }
2411       // All sub-registers in Set, add Super as well.
2412       // We will visit Super later to recheck its super-registers.
2413       if (AllSubsInSet)
2414         Set.insert(Super);
2415     }
2416   }
2417 
2418   // Convert to BitVector.
2419   BitVector BV(Registers.size() + 1);
2420   for (unsigned i = 0, e = Set.size(); i != e; ++i)
2421     BV.set(Set[i]->EnumValue);
2422   return BV;
2423 }
2424 
2425 void CodeGenRegBank::printRegUnitName(unsigned Unit) const {
2426   if (Unit < NumNativeRegUnits)
2427     dbgs() << ' ' << RegUnits[Unit].Roots[0]->getName();
2428   else
2429     dbgs() << " #" << Unit;
2430 }
2431