15#ifndef LLVM_MC_MCREGISTERINFO_H
16#define LLVM_MC_MCREGISTERINFO_H
84 return reinterpret_cast<iterator>(
reinterpret_cast<const char *
>(
this) +
110 unsigned InByte = RegSetIdx % 8;
111 unsigned Byte = RegSetIdx / 8;
113 return (RegSet[Byte] & (1 << InByte)) != 0;
135 return CopyCost == std::numeric_limits<uint8_t>::max();
185 return reinterpret_cast<const uint32_t *
>(
197 return reinterpret_cast<const uint16_t *
>(
205 const unsigned *SuperClasses =
reinterpret_cast<const unsigned *
>(
216template <
unsigned RegClassCount,
unsigned RegCount,
unsigned BitSetSize,
217 unsigned SubClassMaskSize,
unsigned SuperRegIdxSeqSize,
218 unsigned SuperClassSize>
292 unsigned NumRegUnits;
294 const int16_t *DiffLists;
297 const char *RegStrings;
298 const char *RegClassStrings;
301 unsigned NumSubRegIndices;
304 const unsigned (*RegUnitIntervals)[2];
306 unsigned L2DwarfRegsSize;
307 unsigned EHL2DwarfRegsSize;
308 unsigned Dwarf2LRegsSize;
309 unsigned EHDwarf2LRegsSize;
310 const DwarfLLVMRegPair *L2DwarfRegs;
311 const DwarfLLVMRegPair *EHL2DwarfRegs;
312 const DwarfLLVMRegPair *Dwarf2LRegs;
313 const DwarfLLVMRegPair *EHDwarf2LRegs;
317 mutable std::vector<std::vector<MCPhysReg>> RegAliasesCache;
322 class DiffListIterator
326 const int16_t *
List =
nullptr;
331 DiffListIterator() =
default;
334 void init(
unsigned InitVal,
const int16_t *DiffList) {
340 bool isValid()
const {
return List; }
343 const unsigned &
operator*()
const {
return Val; }
345 using DiffListIterator::iterator_facade_base::operator++;
347 DiffListIterator &operator++() {
357 bool operator==(
const DiffListIterator &Other)
const {
365 iterator_range<MCSubRegIterator> subregs(MCRegister
Reg)
const;
369 iterator_range<MCSubRegIterator> subregs_inclusive(MCRegister
Reg)
const;
373 iterator_range<MCSuperRegIterator> superregs(MCRegister
Reg)
const;
377 iterator_range<MCSuperRegIterator> superregs_inclusive(MCRegister
Reg)
const;
381 detail::concat_range<const MCPhysReg, iterator_range<MCSubRegIterator>,
382 iterator_range<MCSuperRegIterator>>
383 sub_and_superregs_inclusive(MCRegister
Reg)
const;
386 iota_range<MCRegUnit> regunits()
const;
389 iterator_range<MCRegUnitIterator> regunits(MCRegister
Reg)
const;
407 const MCPhysReg (*RURoots)[2],
unsigned NRU,
409 const char *Strings,
const char *ClassStrings,
410 const uint16_t *SubIndices,
unsigned NumIndices,
412 const unsigned (*RUI)[2] =
nullptr) {
419 RegUnitMaskSequences = RUMS;
420 RegStrings = Strings;
421 RegClassStrings = ClassStrings;
423 RegUnitRoots = RURoots;
425 SubRegIndices = SubIndices;
426 NumSubRegIndices = NumIndices;
427 RegEncodingTable = RET;
428 RegUnitIntervals = RUI;
431 EHL2DwarfRegs =
nullptr;
432 EHL2DwarfRegsSize = 0;
433 L2DwarfRegs =
nullptr;
435 EHDwarf2LRegs =
nullptr;
436 EHDwarf2LRegsSize = 0;
437 Dwarf2LRegs =
nullptr;
440 RegAliasesCache.resize(NumRegs);
450 EHL2DwarfRegsSize =
Size;
453 L2DwarfRegsSize =
Size;
464 EHDwarf2LRegsSize =
Size;
467 Dwarf2LRegsSize =
Size;
477 L2SEHRegs[LLVMReg] = SEHReg;
481 L2CVRegs[LLVMReg] = CVReg;
497 "Attempting to access record for invalid register number!");
498 return Desc[
Reg.id()];
525 return RegStrings +
get(RegNo).Name;
539 bool isArtificialRegUnit(MCRegUnit Unit)
const;
551 return NumSubRegIndices;
569 std::optional<MCRegister> getLLVMRegNum(
uint64_t RegNum,
bool isEH)
const;
573 int64_t getDwarfRegNumFromDwarfEHRegNum(
uint64_t RegNum)
const;
601 return RegClassStrings + Class->NameIdx;
607 "Attempting to get encoding for invalid register number!");
608 return RegEncodingTable[
Reg.id()];
646 "Target does not support regunit intervals");
647 assert(
Reg.id() < NumRegs &&
"Invalid register number");
649 RegUnitIntervals[
Reg.id()][1]);
664 MCRegisterInfo::DiffListIterator,
665 std::forward_iterator_tag, const MCPhysReg> {
674 bool IncludeSelf =
false) {
685 using iterator_adaptor_base::operator++;
705 : SRIter(
Reg, MCRI) {
706 SRIndex = MCRI->SubRegIndices + MCRI->
get(
Reg).SubRegIndices;
720 bool isValid()
const {
return SRIter.isValid(); }
734 MCRegisterInfo::DiffListIterator,
735 std::forward_iterator_tag, const MCPhysReg> {
744 bool IncludeSelf =
false) {
755 using iterator_adaptor_base::operator++;
779 MCRegisterInfo::DiffListIterator,
780 std::forward_iterator_tag, const MCRegUnit> {
782 static constexpr unsigned RegUnitBits = 12;
794 unsigned FirstRU = RU & ((1u << RegUnitBits) - 1);
795 unsigned Offset = RU >> RegUnitBits;
796 I.init(FirstRU, MCRI->DiffLists +
Offset);
802 using iterator_adaptor_base::operator++;
804 Val = MCRegUnit(*++
I);
825 : RUIter(
Reg, MCRI) {
827 MaskListIter = &MCRI->RegUnitMaskSequences[Idx];
832 return std::make_pair(*RUIter, *MaskListIter);
836 bool isValid()
const {
return RUIter.isValid(); }
865 "Invalid register unit");
866 Reg0 = MCRI->RegUnitRoots[
static_cast<unsigned>(RegUnit)][0];
867 Reg1 = MCRI->RegUnitRoots[
static_cast<unsigned>(RegUnit)][1];
944 return enum_seq(
static_cast<MCRegUnit
>(0),
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
This file defines the DenseMap class.
A common definition of LaneBitmask for use in TableGen and CodeGen.
bool operator==(const MergedFunctionsInfo &LHS, const MergedFunctionsInfo &RHS)
uint16_t MCPhysReg
An unsigned integer type large enough to represent all physical registers, but not necessarily virtua...
static constexpr MCPhysReg RAReg
static bool isValid(const char C)
Returns true if C is a valid mangled character: <0-9a-zA-Z_>.
SI optimize exec mask operations pre RA
Provides some synthesis utilities to produce sequences of values.
static unsigned getDwarfRegNum(MCRegister Reg, const TargetRegisterInfo *TRI)
Go up the super-register chain until we hit a valid dwarf register number.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
MCRegAliasIterator(MCRegister Reg, const MCRegisterInfo *MCRI, bool IncludeSelf)
MCRegister operator*() const
MCRegAliasIterator & operator++()
const MCRegUnit & operator*() const
MCRegUnitIterator()=default
Constructs an end iterator.
bool isValid() const
Returns true if this iterator is not yet at the end.
MCRegUnitIterator & operator++()
MCRegUnitIterator(MCRegister Reg, const MCRegisterInfo *MCRI)
MCRegUnitMaskIterator()=default
MCRegUnitMaskIterator(MCRegister Reg, const MCRegisterInfo *MCRI)
Constructs an iterator that traverses the register units and their associated LaneMasks in Reg.
std::pair< MCRegUnit, LaneBitmask > operator*() const
Returns a (RegUnit, LaneMask) pair.
MCRegUnitMaskIterator & operator++()
Moves to the next position.
bool isValid() const
Returns true if this iterator is not yet at the end.
MCRegUnitRootIterator()=default
MCRegUnitRootIterator & operator++()
Preincrement to move to the next root register.
unsigned operator*() const
Dereference to get the current root register.
MCRegUnitRootIterator(MCRegUnit RegUnit, const MCRegisterInfo *MCRI)
bool isValid() const
Check if the iterator is at the end of the list.
MCRegisterClass - Base class of TargetRegisterClass.
const uint8_t SpillStackID
ArrayRef< unsigned > superclasses() const
Returns a list of super-classes.
const MCPhysReg RegSetBegin
Register denoted by first bit in RegSet.
bool hasSuperClass(const MCRegisterClass *RC) const
Return true if the specified MCRegisterClass is a proper super-class of this MCRegisterClass.
const bool CoveredBySubRegs
Whether a combination of subregisters can cover every register in the class.
const uint32_t * getSubClassMask() const
Returns a bit vector of subclasses, including this one.
bool hasSuperClassEq(const MCRegisterClass *RC) const
Returns true if RC is a super-class of or equal to this class.
unsigned getID() const
getID() - Return the register class ID number.
ArrayRef< MCPhysReg > getRegisters() const
const uint32_t RegSizeInBits
bool isAllocatable() const
isAllocatable - Return true if this register class may be used to create virtual registers.
const uint8_t AllocationPriority
Classes with a higher priority value are assigned first by register allocators using a greedy heurist...
const MCPhysReg * iterator
MCRegister getRegister(unsigned i) const
getRegister - Return the specified register in the class.
const uint8_t TSFlags
Configurable target specific flags.
const uint32_t SuperClassesOff
Relative offset to unsigned array.
const LaneBitmask LaneMask
unsigned getSizeInBits() const
Return the size of the physical register in bits if we are able to determine it.
const uint32_t RegSetOff
Relative offset to uint8_t array.
const uint16_t RegSetSize
bool contains(MCRegister Reg1, MCRegister Reg2) const
contains - Return true if both registers are in this class.
LaneBitmask getLaneMask() const
Returns the combination of all lane masks of register in this class.
const uint32_t SuperRegIndicesOff
Relative offset to MCPhysReg array.
const bool GlobalPriority
const uint16_t * getSuperRegIndices() const
Returns a 0-terminated list of sub-register indices that project some super-register class into this ...
unsigned getNumRegs() const
getNumRegs - Return the number of registers in this class.
const uint32_t SubClassMaskOff
Relative offset to uint32_t array.
iterator begin() const
begin/end - Return all of the registers in this class.
bool contains(MCRegister Reg) const
contains - Return true if the specified register is included in this register class.
const uint32_t RegsOff
Relative offset to MCPhysReg array.
bool isBaseClass() const
Return true if this register class has a defined BaseClassOrder.
bool expensiveOrImpossibleToCopy() const
uint8_t getCopyCost() const
getCopyCost - Return the cost of copying a value between two registers in this class.
const bool HasDisjunctSubRegs
Whether the class supports two (or more) disjunct subregister indices.
bool hasSubClass(const MCRegisterClass *RC) const
Return true if the specified TargetRegisterClass is a proper sub-class of this TargetRegisterClass.
const uint16_t SuperClassesSize
const MCPhysReg * const_iterator
bool hasSubClassEq(const MCRegisterClass *RC) const
Returns true if RC is a sub-class of or equal to this class.
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
iota_range< unsigned > regunits_interval(MCRegister Reg) const
Returns an iterator range over all native regunits in the RegUnitInterval table for Reg.
void InitMCRegisterInfo(const MCRegisterDesc *D, unsigned NR, unsigned RA, unsigned PC, const MCRegisterClass *C, unsigned NC, const MCPhysReg(*RURoots)[2], unsigned NRU, const int16_t *DL, const LaneBitmask *RUMS, const char *Strings, const char *ClassStrings, const uint16_t *SubIndices, unsigned NumIndices, const uint16_t *RET, const unsigned(*RUI)[2]=nullptr)
Initialize MCRegisterInfo, called by TableGen auto-generated routines.
unsigned getNumSubRegIndices() const
Return the number of sub-register indices understood by the target.
const MCRegisterDesc & operator[](MCRegister Reg) const
bool isSuperRegisterEq(MCRegister RegA, MCRegister RegB) const
Returns true if RegB is a super-register of RegA or if RegB == RegA.
unsigned getNumRegClasses() const
MCRegister getRARegister() const
This method should return the register where the return address can be found.
virtual ~MCRegisterInfo()=default
MCRegister getProgramCounter() const
Return the register which is the program counter.
regclass_iterator regclass_end() const
void mapDwarfRegsToLLVMRegs(const DwarfLLVMRegPair *Map, unsigned Size, bool isEH)
Used to initialize Dwarf register to LLVM register number mapping.
unsigned getNumRegUnits() const
Return the number of (native) register units in the target.
friend class MCRegAliasIterator
const MCRegisterDesc & get(MCRegister Reg) const
Provide a get method, equivalent to [], but more useful with a pointer to this object.
const MCRegisterClass * regclass_iterator
iterator_range< regclass_iterator > regclasses() const
regclass_iterator regclass_begin() const
iota_range< MCRegUnit > regunits() const
Returns an iterator range over all regunits.
void mapLLVMRegToCVReg(MCRegister LLVMReg, int CVReg)
iterator_range< MCSuperRegIterator > superregs(MCRegister Reg) const
Return an iterator range over all super-registers of Reg, excluding Reg.
const char * getName(MCRegister RegNo) const
Return the human-readable symbolic target-specific name for the specified physical register.
bool hasRegUnitIntervals() const
Returns true if this target uses regunit intervals.
const char * getRegClassName(const MCRegisterClass *Class) const
friend class MCSubRegIterator
friend class MCRegUnitRootIterator
uint16_t getEncodingValue(MCRegister Reg) const
Returns the encoding for Reg.
iterator_range< MCSubRegIterator > subregs_inclusive(MCRegister Reg) const
Return an iterator range over all sub-registers of Reg, including Reg.
bool isSuperOrSubRegisterEq(MCRegister RegA, MCRegister RegB) const
Returns true if RegB is a super-register or sub-register of RegA or if RegB == RegA.
bool isSubRegister(MCRegister RegA, MCRegister RegB) const
Returns true if RegB is a sub-register of RegA.
friend class MCSuperRegIterator
iterator_range< MCSubRegIterator > subregs(MCRegister Reg) const
Return an iterator range over all sub-registers of Reg, excluding Reg.
bool isConstant(MCRegister RegNo) const
Returns true if the given register is constant.
friend class MCRegUnitMaskIterator
void mapLLVMRegsToDwarfRegs(const DwarfLLVMRegPair *Map, unsigned Size, bool isEH)
Used to initialize LLVM register to Dwarf register number mapping.
bool isSuperRegister(MCRegister RegA, MCRegister RegB) const
Returns true if RegB is a super-register of RegA.
bool isArtificial(MCRegister RegNo) const
Returns true if the given register is artificial, which means it represents a regunit that is not sep...
bool isSubRegisterEq(MCRegister RegA, MCRegister RegB) const
Returns true if RegB is a sub-register of RegA or if RegB == RegA.
friend class MCRegUnitIterator
void mapLLVMRegToSEHReg(MCRegister LLVMReg, int SEHReg)
mapLLVMRegToSEHReg - Used to initialize LLVM register to SEH register number mapping.
iterator_range< MCSuperRegIterator > superregs_inclusive(MCRegister Reg) const
Return an iterator range over all super-registers of Reg, including Reg.
detail::concat_range< const MCPhysReg, iterator_range< MCSubRegIterator >, iterator_range< MCSuperRegIterator > > sub_and_superregs_inclusive(MCRegister Reg) const
Return an iterator range over all sub- and super-registers of Reg, including Reg.
const MCRegisterClass & getRegClass(unsigned i) const
Returns the register class associated with the enumeration value.
unsigned getNumRegs() const
Return the number of registers this target has (useful for sizing arrays holding per register informa...
friend class MCSubRegIndexIterator
Wrapper class representing physical registers. Should be passed by value.
MCSubRegIndexIterator(MCRegister Reg, const MCRegisterInfo *MCRI)
Constructs an iterator that traverses subregisters and their associated subregister indices.
MCSubRegIndexIterator & operator++()
Moves to the next position.
bool isValid() const
Returns true if this iterator is not yet at the end.
unsigned getSubRegIndex() const
Returns sub-register index of the current sub-register.
MCRegister getSubReg() const
Returns current sub-register.
MCSubRegIterator enumerates all sub-registers of Reg.
const MCPhysReg & operator*() const
MCSubRegIterator & operator++()
bool isValid() const
Returns true if this iterator is not yet at the end.
MCSubRegIterator()=default
Constructs an end iterator.
MCSubRegIterator(MCRegister Reg, const MCRegisterInfo *MCRI, bool IncludeSelf=false)
MCSuperRegIterator enumerates all super-registers of Reg.
MCSuperRegIterator(MCRegister Reg, const MCRegisterInfo *MCRI, bool IncludeSelf=false)
MCSuperRegIterator & operator++()
const MCPhysReg & operator*() const
MCSuperRegIterator()=default
Constructs an end iterator.
bool isValid() const
Returns true if this iterator is not yet at the end.
Helper to store a sequence of ranges being concatenated and access them.
MCRegisterInfo::DiffListIterator I
iterator_adaptor_base()=default
CRTP base class which implements the entire standard iterator facade in terms of a minimal subset of ...
A range adaptor for a pair of iterators.
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
This is an optimization pass for GlobalISel generic memory operations.
APInt operator*(APInt a, uint64_t RHS)
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
constexpr force_iteration_on_noniterable_enum_t force_iteration_on_noniterable_enum
detail::concat_range< ValueT, RangeTs... > concat(RangeTs &&...Ranges)
Returns a concatenated range across two or more ranges.
constexpr auto enum_seq(EnumT Begin, EnumT End)
Iterate over an enum type from Begin up to - but not including - End.
iterator_range(Container &&) -> iterator_range< llvm::detail::IterOfRange< Container > >
uint16_t MCPhysReg
An unsigned integer type large enough to represent all physical registers, but not necessarily virtua...
ArrayRef(const T &OneElt) -> ArrayRef< T >
constexpr auto seq(T Begin, T End)
Iterate over an integral type from Begin up to - but not including - End.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
unsigned SuperClasses[SuperClassSize > 0 ? SuperClassSize :1]
uint32_t SubClassMasks[SubClassMaskSize]
MCRegisterClass Classes[RegClassCount]
uint16_t SuperRegIdxSeqs[SuperRegIdxSeqSize]
uint8_t BitSets[BitSetSize]
MCRegisterDesc - This record contains information about a particular register.
uint16_t RegUnitLaneMasks
Index into list with lane mask sequences.
DwarfLLVMRegPair - Emitted by tablegen so Dwarf<->LLVM reg mappings can be performed with a binary se...
bool operator<(DwarfLLVMRegPair RHS) const