[Alignment][NFC] Use Align with TargetLowering::setMinFunctionAlignment
[llvm-core.git] / include / llvm / MC / MCRegisterInfo.h
blob33ce3bd6aaf07db7a552a8b4059f8f5285b0ef03
1 //===- MC/MCRegisterInfo.h - Target Register Description --------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file describes an abstract interface used to get information about a
10 // target machines register file. This information is used for a variety of
11 // purposed, especially register allocation.
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_MC_MCREGISTERINFO_H
16 #define LLVM_MC_MCREGISTERINFO_H
18 #include "llvm/ADT/DenseMap.h"
19 #include "llvm/ADT/iterator_range.h"
20 #include "llvm/MC/LaneBitmask.h"
21 #include "llvm/MC/MCRegister.h"
22 #include <cassert>
23 #include <cstdint>
24 #include <utility>
26 namespace llvm {
28 /// MCRegisterClass - Base class of TargetRegisterClass.
29 class MCRegisterClass {
30 public:
31 using iterator = const MCPhysReg*;
32 using const_iterator = const MCPhysReg*;
34 const iterator RegsBegin;
35 const uint8_t *const RegSet;
36 const uint32_t NameIdx;
37 const uint16_t RegsSize;
38 const uint16_t RegSetSize;
39 const uint16_t ID;
40 const int8_t CopyCost;
41 const bool Allocatable;
43 /// getID() - Return the register class ID number.
44 ///
45 unsigned getID() const { return ID; }
47 /// begin/end - Return all of the registers in this class.
48 ///
49 iterator begin() const { return RegsBegin; }
50 iterator end() const { return RegsBegin + RegsSize; }
52 /// getNumRegs - Return the number of registers in this class.
53 ///
54 unsigned getNumRegs() const { return RegsSize; }
56 /// getRegister - Return the specified register in the class.
57 ///
58 unsigned getRegister(unsigned i) const {
59 assert(i < getNumRegs() && "Register number out of range!");
60 return RegsBegin[i];
63 /// contains - Return true if the specified register is included in this
64 /// register class. This does not include virtual registers.
65 bool contains(MCRegister Reg) const {
66 unsigned RegNo = unsigned(Reg);
67 unsigned InByte = RegNo % 8;
68 unsigned Byte = RegNo / 8;
69 if (Byte >= RegSetSize)
70 return false;
71 return (RegSet[Byte] & (1 << InByte)) != 0;
74 /// contains - Return true if both registers are in this class.
75 bool contains(MCRegister Reg1, MCRegister Reg2) const {
76 return contains(Reg1) && contains(Reg2);
79 /// getCopyCost - Return the cost of copying a value between two registers in
80 /// this class. A negative number means the register class is very expensive
81 /// to copy e.g. status flag register classes.
82 int getCopyCost() const { return CopyCost; }
84 /// isAllocatable - Return true if this register class may be used to create
85 /// virtual registers.
86 bool isAllocatable() const { return Allocatable; }
89 /// MCRegisterDesc - This record contains information about a particular
90 /// register. The SubRegs field is a zero terminated array of registers that
91 /// are sub-registers of the specific register, e.g. AL, AH are sub-registers
92 /// of AX. The SuperRegs field is a zero terminated array of registers that are
93 /// super-registers of the specific register, e.g. RAX, EAX, are
94 /// super-registers of AX.
95 ///
96 struct MCRegisterDesc {
97 uint32_t Name; // Printable name for the reg (for debugging)
98 uint32_t SubRegs; // Sub-register set, described above
99 uint32_t SuperRegs; // Super-register set, described above
101 // Offset into MCRI::SubRegIndices of a list of sub-register indices for each
102 // sub-register in SubRegs.
103 uint32_t SubRegIndices;
105 // RegUnits - Points to the list of register units. The low 4 bits holds the
106 // Scale, the high bits hold an offset into DiffLists. See MCRegUnitIterator.
107 uint32_t RegUnits;
109 /// Index into list with lane mask sequences. The sequence contains a lanemask
110 /// for every register unit.
111 uint16_t RegUnitLaneMasks;
114 /// MCRegisterInfo base class - We assume that the target defines a static
115 /// array of MCRegisterDesc objects that represent all of the machine
116 /// registers that the target has. As such, we simply have to track a pointer
117 /// to this array so that we can turn register number into a register
118 /// descriptor.
120 /// Note this class is designed to be a base class of TargetRegisterInfo, which
121 /// is the interface used by codegen. However, specific targets *should never*
122 /// specialize this class. MCRegisterInfo should only contain getters to access
123 /// TableGen generated physical register data. It must not be extended with
124 /// virtual methods.
126 class MCRegisterInfo {
127 public:
128 using regclass_iterator = const MCRegisterClass *;
130 /// DwarfLLVMRegPair - Emitted by tablegen so Dwarf<->LLVM reg mappings can be
131 /// performed with a binary search.
132 struct DwarfLLVMRegPair {
133 unsigned FromReg;
134 unsigned ToReg;
136 bool operator<(DwarfLLVMRegPair RHS) const { return FromReg < RHS.FromReg; }
139 /// SubRegCoveredBits - Emitted by tablegen: bit range covered by a subreg
140 /// index, -1 in any being invalid.
141 struct SubRegCoveredBits {
142 uint16_t Offset;
143 uint16_t Size;
146 private:
147 const MCRegisterDesc *Desc; // Pointer to the descriptor array
148 unsigned NumRegs; // Number of entries in the array
149 MCRegister RAReg; // Return address register
150 MCRegister PCReg; // Program counter register
151 const MCRegisterClass *Classes; // Pointer to the regclass array
152 unsigned NumClasses; // Number of entries in the array
153 unsigned NumRegUnits; // Number of regunits.
154 const MCPhysReg (*RegUnitRoots)[2]; // Pointer to regunit root table.
155 const MCPhysReg *DiffLists; // Pointer to the difflists array
156 const LaneBitmask *RegUnitMaskSequences; // Pointer to lane mask sequences
157 // for register units.
158 const char *RegStrings; // Pointer to the string table.
159 const char *RegClassStrings; // Pointer to the class strings.
160 const uint16_t *SubRegIndices; // Pointer to the subreg lookup
161 // array.
162 const SubRegCoveredBits *SubRegIdxRanges; // Pointer to the subreg covered
163 // bit ranges array.
164 unsigned NumSubRegIndices; // Number of subreg indices.
165 const uint16_t *RegEncodingTable; // Pointer to array of register
166 // encodings.
168 unsigned L2DwarfRegsSize;
169 unsigned EHL2DwarfRegsSize;
170 unsigned Dwarf2LRegsSize;
171 unsigned EHDwarf2LRegsSize;
172 const DwarfLLVMRegPair *L2DwarfRegs; // LLVM to Dwarf regs mapping
173 const DwarfLLVMRegPair *EHL2DwarfRegs; // LLVM to Dwarf regs mapping EH
174 const DwarfLLVMRegPair *Dwarf2LRegs; // Dwarf to LLVM regs mapping
175 const DwarfLLVMRegPair *EHDwarf2LRegs; // Dwarf to LLVM regs mapping EH
176 DenseMap<MCRegister, int> L2SEHRegs; // LLVM to SEH regs mapping
177 DenseMap<MCRegister, int> L2CVRegs; // LLVM to CV regs mapping
179 public:
180 /// DiffListIterator - Base iterator class that can traverse the
181 /// differentially encoded register and regunit lists in DiffLists.
182 /// Don't use this class directly, use one of the specialized sub-classes
183 /// defined below.
184 class DiffListIterator {
185 uint16_t Val = 0;
186 const MCPhysReg *List = nullptr;
188 protected:
189 /// Create an invalid iterator. Call init() to point to something useful.
190 DiffListIterator() = default;
192 /// init - Point the iterator to InitVal, decoding subsequent values from
193 /// DiffList. The iterator will initially point to InitVal, sub-classes are
194 /// responsible for skipping the seed value if it is not part of the list.
195 void init(MCPhysReg InitVal, const MCPhysReg *DiffList) {
196 Val = InitVal;
197 List = DiffList;
200 /// advance - Move to the next list position, return the applied
201 /// differential. This function does not detect the end of the list, that
202 /// is the caller's responsibility (by checking for a 0 return value).
203 MCRegister advance() {
204 assert(isValid() && "Cannot move off the end of the list.");
205 MCPhysReg D = *List++;
206 Val += D;
207 return D;
210 public:
211 /// isValid - returns true if this iterator is not yet at the end.
212 bool isValid() const { return List; }
214 /// Dereference the iterator to get the value at the current position.
215 MCRegister operator*() const { return Val; }
217 /// Pre-increment to move to the next position.
218 void operator++() {
219 // The end of the list is encoded as a 0 differential.
220 if (!advance())
221 List = nullptr;
225 // These iterators are allowed to sub-class DiffListIterator and access
226 // internal list pointers.
227 friend class MCSubRegIterator;
228 friend class MCSubRegIndexIterator;
229 friend class MCSuperRegIterator;
230 friend class MCRegUnitIterator;
231 friend class MCRegUnitMaskIterator;
232 friend class MCRegUnitRootIterator;
234 /// Initialize MCRegisterInfo, called by TableGen
235 /// auto-generated routines. *DO NOT USE*.
236 void InitMCRegisterInfo(const MCRegisterDesc *D, unsigned NR, unsigned RA,
237 unsigned PC,
238 const MCRegisterClass *C, unsigned NC,
239 const MCPhysReg (*RURoots)[2],
240 unsigned NRU,
241 const MCPhysReg *DL,
242 const LaneBitmask *RUMS,
243 const char *Strings,
244 const char *ClassStrings,
245 const uint16_t *SubIndices,
246 unsigned NumIndices,
247 const SubRegCoveredBits *SubIdxRanges,
248 const uint16_t *RET) {
249 Desc = D;
250 NumRegs = NR;
251 RAReg = RA;
252 PCReg = PC;
253 Classes = C;
254 DiffLists = DL;
255 RegUnitMaskSequences = RUMS;
256 RegStrings = Strings;
257 RegClassStrings = ClassStrings;
258 NumClasses = NC;
259 RegUnitRoots = RURoots;
260 NumRegUnits = NRU;
261 SubRegIndices = SubIndices;
262 NumSubRegIndices = NumIndices;
263 SubRegIdxRanges = SubIdxRanges;
264 RegEncodingTable = RET;
266 // Initialize DWARF register mapping variables
267 EHL2DwarfRegs = nullptr;
268 EHL2DwarfRegsSize = 0;
269 L2DwarfRegs = nullptr;
270 L2DwarfRegsSize = 0;
271 EHDwarf2LRegs = nullptr;
272 EHDwarf2LRegsSize = 0;
273 Dwarf2LRegs = nullptr;
274 Dwarf2LRegsSize = 0;
277 /// Used to initialize LLVM register to Dwarf
278 /// register number mapping. Called by TableGen auto-generated routines.
279 /// *DO NOT USE*.
280 void mapLLVMRegsToDwarfRegs(const DwarfLLVMRegPair *Map, unsigned Size,
281 bool isEH) {
282 if (isEH) {
283 EHL2DwarfRegs = Map;
284 EHL2DwarfRegsSize = Size;
285 } else {
286 L2DwarfRegs = Map;
287 L2DwarfRegsSize = Size;
291 /// Used to initialize Dwarf register to LLVM
292 /// register number mapping. Called by TableGen auto-generated routines.
293 /// *DO NOT USE*.
294 void mapDwarfRegsToLLVMRegs(const DwarfLLVMRegPair *Map, unsigned Size,
295 bool isEH) {
296 if (isEH) {
297 EHDwarf2LRegs = Map;
298 EHDwarf2LRegsSize = Size;
299 } else {
300 Dwarf2LRegs = Map;
301 Dwarf2LRegsSize = Size;
305 /// mapLLVMRegToSEHReg - Used to initialize LLVM register to SEH register
306 /// number mapping. By default the SEH register number is just the same
307 /// as the LLVM register number.
308 /// FIXME: TableGen these numbers. Currently this requires target specific
309 /// initialization code.
310 void mapLLVMRegToSEHReg(MCRegister LLVMReg, int SEHReg) {
311 L2SEHRegs[LLVMReg] = SEHReg;
314 void mapLLVMRegToCVReg(MCRegister LLVMReg, int CVReg) {
315 L2CVRegs[LLVMReg] = CVReg;
318 /// This method should return the register where the return
319 /// address can be found.
320 MCRegister getRARegister() const {
321 return RAReg;
324 /// Return the register which is the program counter.
325 MCRegister getProgramCounter() const {
326 return PCReg;
329 const MCRegisterDesc &operator[](MCRegister RegNo) const {
330 assert(RegNo < NumRegs &&
331 "Attempting to access record for invalid register number!");
332 return Desc[RegNo];
335 /// Provide a get method, equivalent to [], but more useful with a
336 /// pointer to this object.
337 const MCRegisterDesc &get(MCRegister RegNo) const {
338 return operator[](RegNo);
341 /// Returns the physical register number of sub-register "Index"
342 /// for physical register RegNo. Return zero if the sub-register does not
343 /// exist.
344 MCRegister getSubReg(MCRegister Reg, unsigned Idx) const;
346 /// Return a super-register of the specified register
347 /// Reg so its sub-register of index SubIdx is Reg.
348 MCRegister getMatchingSuperReg(MCRegister Reg, unsigned SubIdx,
349 const MCRegisterClass *RC) const;
351 /// For a given register pair, return the sub-register index
352 /// if the second register is a sub-register of the first. Return zero
353 /// otherwise.
354 unsigned getSubRegIndex(MCRegister RegNo, MCRegister SubRegNo) const;
356 /// Get the size of the bit range covered by a sub-register index.
357 /// If the index isn't continuous, return the sum of the sizes of its parts.
358 /// If the index is used to access subregisters of different sizes, return -1.
359 unsigned getSubRegIdxSize(unsigned Idx) const;
361 /// Get the offset of the bit range covered by a sub-register index.
362 /// If an Offset doesn't make sense (the index isn't continuous, or is used to
363 /// access sub-registers at different offsets), return -1.
364 unsigned getSubRegIdxOffset(unsigned Idx) const;
366 /// Return the human-readable symbolic target-specific name for the
367 /// specified physical register.
368 const char *getName(MCRegister RegNo) const {
369 return RegStrings + get(RegNo).Name;
372 /// Return the number of registers this target has (useful for
373 /// sizing arrays holding per register information)
374 unsigned getNumRegs() const {
375 return NumRegs;
378 /// Return the number of sub-register indices
379 /// understood by the target. Index 0 is reserved for the no-op sub-register,
380 /// while 1 to getNumSubRegIndices() - 1 represent real sub-registers.
381 unsigned getNumSubRegIndices() const {
382 return NumSubRegIndices;
385 /// Return the number of (native) register units in the
386 /// target. Register units are numbered from 0 to getNumRegUnits() - 1. They
387 /// can be accessed through MCRegUnitIterator defined below.
388 unsigned getNumRegUnits() const {
389 return NumRegUnits;
392 /// Map a target register to an equivalent dwarf register
393 /// number. Returns -1 if there is no equivalent value. The second
394 /// parameter allows targets to use different numberings for EH info and
395 /// debugging info.
396 int getDwarfRegNum(MCRegister RegNum, bool isEH) const;
398 /// Map a dwarf register back to a target register.
399 int getLLVMRegNum(unsigned RegNum, bool isEH) const;
401 /// Map a DWARF EH register back to a target register (same as
402 /// getLLVMRegNum(RegNum, true)) but return -1 if there is no mapping,
403 /// rather than asserting that there must be one.
404 int getLLVMRegNumFromEH(unsigned RegNum) const;
406 /// Map a target EH register number to an equivalent DWARF register
407 /// number.
408 int getDwarfRegNumFromDwarfEHRegNum(unsigned RegNum) const;
410 /// Map a target register to an equivalent SEH register
411 /// number. Returns LLVM register number if there is no equivalent value.
412 int getSEHRegNum(MCRegister RegNum) const;
414 /// Map a target register to an equivalent CodeView register
415 /// number.
416 int getCodeViewRegNum(MCRegister RegNum) const;
418 regclass_iterator regclass_begin() const { return Classes; }
419 regclass_iterator regclass_end() const { return Classes+NumClasses; }
420 iterator_range<regclass_iterator> regclasses() const {
421 return make_range(regclass_begin(), regclass_end());
424 unsigned getNumRegClasses() const {
425 return (unsigned)(regclass_end()-regclass_begin());
428 /// Returns the register class associated with the enumeration
429 /// value. See class MCOperandInfo.
430 const MCRegisterClass& getRegClass(unsigned i) const {
431 assert(i < getNumRegClasses() && "Register Class ID out of range");
432 return Classes[i];
435 const char *getRegClassName(const MCRegisterClass *Class) const {
436 return RegClassStrings + Class->NameIdx;
439 /// Returns the encoding for RegNo
440 uint16_t getEncodingValue(MCRegister RegNo) const {
441 assert(RegNo < NumRegs &&
442 "Attempting to get encoding for invalid register number!");
443 return RegEncodingTable[RegNo];
446 /// Returns true if RegB is a sub-register of RegA.
447 bool isSubRegister(MCRegister RegA, MCRegister RegB) const {
448 return isSuperRegister(RegB, RegA);
451 /// Returns true if RegB is a super-register of RegA.
452 bool isSuperRegister(MCRegister RegA, MCRegister RegB) const;
454 /// Returns true if RegB is a sub-register of RegA or if RegB == RegA.
455 bool isSubRegisterEq(MCRegister RegA, MCRegister RegB) const {
456 return isSuperRegisterEq(RegB, RegA);
459 /// Returns true if RegB is a super-register of RegA or if
460 /// RegB == RegA.
461 bool isSuperRegisterEq(MCRegister RegA, MCRegister RegB) const {
462 return RegA == RegB || isSuperRegister(RegA, RegB);
465 /// Returns true if RegB is a super-register or sub-register of RegA
466 /// or if RegB == RegA.
467 bool isSuperOrSubRegisterEq(MCRegister RegA, MCRegister RegB) const {
468 return isSubRegisterEq(RegA, RegB) || isSuperRegister(RegA, RegB);
472 //===----------------------------------------------------------------------===//
473 // Register List Iterators
474 //===----------------------------------------------------------------------===//
476 // MCRegisterInfo provides lists of super-registers, sub-registers, and
477 // aliasing registers. Use these iterator classes to traverse the lists.
479 /// MCSubRegIterator enumerates all sub-registers of Reg.
480 /// If IncludeSelf is set, Reg itself is included in the list.
481 class MCSubRegIterator : public MCRegisterInfo::DiffListIterator {
482 public:
483 MCSubRegIterator(MCRegister Reg, const MCRegisterInfo *MCRI,
484 bool IncludeSelf = false) {
485 init(Reg, MCRI->DiffLists + MCRI->get(Reg).SubRegs);
486 // Initially, the iterator points to Reg itself.
487 if (!IncludeSelf)
488 ++*this;
492 /// Iterator that enumerates the sub-registers of a Reg and the associated
493 /// sub-register indices.
494 class MCSubRegIndexIterator {
495 MCSubRegIterator SRIter;
496 const uint16_t *SRIndex;
498 public:
499 /// Constructs an iterator that traverses subregisters and their
500 /// associated subregister indices.
501 MCSubRegIndexIterator(MCRegister Reg, const MCRegisterInfo *MCRI)
502 : SRIter(Reg, MCRI) {
503 SRIndex = MCRI->SubRegIndices + MCRI->get(Reg).SubRegIndices;
506 /// Returns current sub-register.
507 MCRegister getSubReg() const {
508 return *SRIter;
511 /// Returns sub-register index of the current sub-register.
512 unsigned getSubRegIndex() const {
513 return *SRIndex;
516 /// Returns true if this iterator is not yet at the end.
517 bool isValid() const { return SRIter.isValid(); }
519 /// Moves to the next position.
520 void operator++() {
521 ++SRIter;
522 ++SRIndex;
526 /// MCSuperRegIterator enumerates all super-registers of Reg.
527 /// If IncludeSelf is set, Reg itself is included in the list.
528 class MCSuperRegIterator : public MCRegisterInfo::DiffListIterator {
529 public:
530 MCSuperRegIterator() = default;
532 MCSuperRegIterator(MCRegister Reg, const MCRegisterInfo *MCRI,
533 bool IncludeSelf = false) {
534 init(Reg, MCRI->DiffLists + MCRI->get(Reg).SuperRegs);
535 // Initially, the iterator points to Reg itself.
536 if (!IncludeSelf)
537 ++*this;
541 // Definition for isSuperRegister. Put it down here since it needs the
542 // iterator defined above in addition to the MCRegisterInfo class itself.
543 inline bool MCRegisterInfo::isSuperRegister(MCRegister RegA, MCRegister RegB) const{
544 for (MCSuperRegIterator I(RegA, this); I.isValid(); ++I)
545 if (*I == RegB)
546 return true;
547 return false;
550 //===----------------------------------------------------------------------===//
551 // Register Units
552 //===----------------------------------------------------------------------===//
554 // Register units are used to compute register aliasing. Every register has at
555 // least one register unit, but it can have more. Two registers overlap if and
556 // only if they have a common register unit.
558 // A target with a complicated sub-register structure will typically have many
559 // fewer register units than actual registers. MCRI::getNumRegUnits() returns
560 // the number of register units in the target.
562 // MCRegUnitIterator enumerates a list of register units for Reg. The list is
563 // in ascending numerical order.
564 class MCRegUnitIterator : public MCRegisterInfo::DiffListIterator {
565 public:
566 /// MCRegUnitIterator - Create an iterator that traverses the register units
567 /// in Reg.
568 MCRegUnitIterator() = default;
570 MCRegUnitIterator(MCRegister Reg, const MCRegisterInfo *MCRI) {
571 assert(Reg && "Null register has no regunits");
572 // Decode the RegUnits MCRegisterDesc field.
573 unsigned RU = MCRI->get(Reg).RegUnits;
574 unsigned Scale = RU & 15;
575 unsigned Offset = RU >> 4;
577 // Initialize the iterator to Reg * Scale, and the List pointer to
578 // DiffLists + Offset.
579 init(Reg * Scale, MCRI->DiffLists + Offset);
581 // That may not be a valid unit, we need to advance by one to get the real
582 // unit number. The first differential can be 0 which would normally
583 // terminate the list, but since we know every register has at least one
584 // unit, we can allow a 0 differential here.
585 advance();
589 /// MCRegUnitMaskIterator enumerates a list of register units and their
590 /// associated lane masks for Reg. The register units are in ascending
591 /// numerical order.
592 class MCRegUnitMaskIterator {
593 MCRegUnitIterator RUIter;
594 const LaneBitmask *MaskListIter;
596 public:
597 MCRegUnitMaskIterator() = default;
599 /// Constructs an iterator that traverses the register units and their
600 /// associated LaneMasks in Reg.
601 MCRegUnitMaskIterator(MCRegister Reg, const MCRegisterInfo *MCRI)
602 : RUIter(Reg, MCRI) {
603 uint16_t Idx = MCRI->get(Reg).RegUnitLaneMasks;
604 MaskListIter = &MCRI->RegUnitMaskSequences[Idx];
607 /// Returns a (RegUnit, LaneMask) pair.
608 std::pair<unsigned,LaneBitmask> operator*() const {
609 return std::make_pair(*RUIter, *MaskListIter);
612 /// Returns true if this iterator is not yet at the end.
613 bool isValid() const { return RUIter.isValid(); }
615 /// Moves to the next position.
616 void operator++() {
617 ++MaskListIter;
618 ++RUIter;
622 // Each register unit has one or two root registers. The complete set of
623 // registers containing a register unit is the union of the roots and their
624 // super-registers. All registers aliasing Unit can be visited like this:
626 // for (MCRegUnitRootIterator RI(Unit, MCRI); RI.isValid(); ++RI) {
627 // for (MCSuperRegIterator SI(*RI, MCRI, true); SI.isValid(); ++SI)
628 // visit(*SI);
629 // }
631 /// MCRegUnitRootIterator enumerates the root registers of a register unit.
632 class MCRegUnitRootIterator {
633 uint16_t Reg0 = 0;
634 uint16_t Reg1 = 0;
636 public:
637 MCRegUnitRootIterator() = default;
639 MCRegUnitRootIterator(unsigned RegUnit, const MCRegisterInfo *MCRI) {
640 assert(RegUnit < MCRI->getNumRegUnits() && "Invalid register unit");
641 Reg0 = MCRI->RegUnitRoots[RegUnit][0];
642 Reg1 = MCRI->RegUnitRoots[RegUnit][1];
645 /// Dereference to get the current root register.
646 unsigned operator*() const {
647 return Reg0;
650 /// Check if the iterator is at the end of the list.
651 bool isValid() const {
652 return Reg0;
655 /// Preincrement to move to the next root register.
656 void operator++() {
657 assert(isValid() && "Cannot move off the end of the list.");
658 Reg0 = Reg1;
659 Reg1 = 0;
663 /// MCRegAliasIterator enumerates all registers aliasing Reg. If IncludeSelf is
664 /// set, Reg itself is included in the list. This iterator does not guarantee
665 /// any ordering or that entries are unique.
666 class MCRegAliasIterator {
667 private:
668 MCRegister Reg;
669 const MCRegisterInfo *MCRI;
670 bool IncludeSelf;
672 MCRegUnitIterator RI;
673 MCRegUnitRootIterator RRI;
674 MCSuperRegIterator SI;
676 public:
677 MCRegAliasIterator(MCRegister Reg, const MCRegisterInfo *MCRI,
678 bool IncludeSelf)
679 : Reg(Reg), MCRI(MCRI), IncludeSelf(IncludeSelf) {
680 // Initialize the iterators.
681 for (RI = MCRegUnitIterator(Reg, MCRI); RI.isValid(); ++RI) {
682 for (RRI = MCRegUnitRootIterator(*RI, MCRI); RRI.isValid(); ++RRI) {
683 for (SI = MCSuperRegIterator(*RRI, MCRI, true); SI.isValid(); ++SI) {
684 if (!(!IncludeSelf && Reg == *SI))
685 return;
691 bool isValid() const { return RI.isValid(); }
693 MCRegister operator*() const {
694 assert(SI.isValid() && "Cannot dereference an invalid iterator.");
695 return *SI;
698 void advance() {
699 // Assuming SI is valid.
700 ++SI;
701 if (SI.isValid()) return;
703 ++RRI;
704 if (RRI.isValid()) {
705 SI = MCSuperRegIterator(*RRI, MCRI, true);
706 return;
709 ++RI;
710 if (RI.isValid()) {
711 RRI = MCRegUnitRootIterator(*RI, MCRI);
712 SI = MCSuperRegIterator(*RRI, MCRI, true);
716 void operator++() {
717 assert(isValid() && "Cannot move off the end of the list.");
718 do advance();
719 while (!IncludeSelf && isValid() && *SI == Reg);
723 } // end namespace llvm
725 #endif // LLVM_MC_MCREGISTERINFO_H