|
LLVM 22.0.0git
|
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc objects that represent all of the machine registers that the target has. More...
#include "llvm/MC/MCRegisterInfo.h"
Classes | |
| struct | DwarfLLVMRegPair |
| DwarfLLVMRegPair - Emitted by tablegen so Dwarf<->LLVM reg mappings can be performed with a binary search. More... | |
Public Types | |
| using | regclass_iterator = const MCRegisterClass * |
Public Member Functions | |
| iterator_range< MCSubRegIterator > | subregs (MCRegister Reg) const |
Return an iterator range over all sub-registers of Reg, excluding Reg. | |
| iterator_range< MCSubRegIterator > | subregs_inclusive (MCRegister Reg) const |
Return an iterator range over all sub-registers of Reg, including Reg. | |
| iterator_range< MCSuperRegIterator > | superregs (MCRegister Reg) const |
Return an iterator range over all super-registers of Reg, excluding Reg. | |
| 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. | |
| iota_range< MCRegUnit > | regunits () const |
| Returns an iterator range over all regunits. | |
| iterator_range< MCRegUnitIterator > | regunits (MCRegister Reg) const |
Returns an iterator range over all regunits for Reg. | |
| virtual | ~MCRegisterInfo ()=default |
| 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) |
| Initialize MCRegisterInfo, called by TableGen auto-generated routines. | |
| void | mapLLVMRegsToDwarfRegs (const DwarfLLVMRegPair *Map, unsigned Size, bool isEH) |
| Used to initialize LLVM register to Dwarf register number mapping. | |
| void | mapDwarfRegsToLLVMRegs (const DwarfLLVMRegPair *Map, unsigned Size, bool isEH) |
| Used to initialize Dwarf register to LLVM register number mapping. | |
| void | mapLLVMRegToSEHReg (MCRegister LLVMReg, int SEHReg) |
| mapLLVMRegToSEHReg - Used to initialize LLVM register to SEH register number mapping. | |
| void | mapLLVMRegToCVReg (MCRegister LLVMReg, int CVReg) |
| MCRegister | getRARegister () const |
| This method should return the register where the return address can be found. | |
| MCRegister | getProgramCounter () const |
| Return the register which is the program counter. | |
| const MCRegisterDesc & | operator[] (MCRegister Reg) const |
| const MCRegisterDesc & | get (MCRegister Reg) const |
| Provide a get method, equivalent to [], but more useful with a pointer to this object. | |
| MCRegister | getSubReg (MCRegister Reg, unsigned Idx) const |
| Returns the physical register number of sub-register "Index" for physical register RegNo. | |
| MCRegister | getMatchingSuperReg (MCRegister Reg, unsigned SubIdx, const MCRegisterClass *RC) const |
| Return a super-register of the specified register Reg so its sub-register of index SubIdx is Reg. | |
| unsigned | getSubRegIndex (MCRegister RegNo, MCRegister SubRegNo) const |
| For a given register pair, return the sub-register index if the second register is a sub-register of the first. | |
| const char * | getName (MCRegister RegNo) const |
| Return the human-readable symbolic target-specific name for the specified physical register. | |
| bool | isConstant (MCRegister RegNo) const |
| Returns true if the given register is constant. | |
| bool | isArtificial (MCRegister RegNo) const |
| Returns true if the given register is artificial, which means it represents a regunit that is not separately addressable but still needs to be modelled, such as the top 16-bits of a 32-bit GPR. | |
| bool | isArtificialRegUnit (MCRegUnit Unit) const |
| Returns true when the given register unit is considered artificial. | |
| unsigned | getNumRegs () const |
| Return the number of registers this target has (useful for sizing arrays holding per register information) | |
| unsigned | getNumSubRegIndices () const |
| Return the number of sub-register indices understood by the target. | |
| unsigned | getNumRegUnits () const |
| Return the number of (native) register units in the target. | |
| virtual int64_t | getDwarfRegNum (MCRegister Reg, bool isEH) const |
| Map a target register to an equivalent dwarf register number. | |
| std::optional< MCRegister > | getLLVMRegNum (uint64_t RegNum, bool isEH) const |
| Map a dwarf register back to a target register. | |
| int64_t | getDwarfRegNumFromDwarfEHRegNum (uint64_t RegNum) const |
| Map a target EH register number to an equivalent DWARF register number. | |
| int | getSEHRegNum (MCRegister Reg) const |
| Map a target register to an equivalent SEH register number. | |
| int | getCodeViewRegNum (MCRegister Reg) const |
| Map a target register to an equivalent CodeView register number. | |
| regclass_iterator | regclass_begin () const |
| regclass_iterator | regclass_end () const |
| iterator_range< regclass_iterator > | regclasses () const |
| unsigned | getNumRegClasses () const |
| const MCRegisterClass & | getRegClass (unsigned i) const |
| Returns the register class associated with the enumeration value. | |
| const char * | getRegClassName (const MCRegisterClass *Class) const |
| uint16_t | getEncodingValue (MCRegister Reg) const |
| Returns the encoding for Reg. | |
| bool | isSubRegister (MCRegister RegA, MCRegister RegB) const |
| Returns true if RegB is a sub-register of RegA. | |
| bool | isSuperRegister (MCRegister RegA, MCRegister RegB) const |
| Returns true if RegB is a super-register of RegA. | |
| bool | isSubRegisterEq (MCRegister RegA, MCRegister RegB) const |
| Returns true if RegB is a sub-register of RegA or if RegB == RegA. | |
| bool | isSuperRegisterEq (MCRegister RegA, MCRegister RegB) const |
| Returns true if RegB is a super-register of RegA or if RegB == RegA. | |
| 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 | regsOverlap (MCRegister RegA, MCRegister RegB) const |
| Returns true if the two registers are equal or alias each other. | |
Friends | |
| class | MCSubRegIterator |
| class | MCSubRegIndexIterator |
| class | MCSuperRegIterator |
| class | MCRegUnitIterator |
| class | MCRegUnitMaskIterator |
| class | MCRegUnitRootIterator |
| class | MCRegAliasIterator |
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc objects that represent all of the machine registers that the target has.
As such, we simply have to track a pointer to this array so that we can turn register number into a register descriptor.
Note this class is designed to be a base class of TargetRegisterInfo, which is the interface used by codegen. However, specific targets should never specialize this class. MCRegisterInfo should only contain getters to access TableGen generated physical register data. It must not be extended with virtual methods.
Definition at line 151 of file MCRegisterInfo.h.
Definition at line 153 of file MCRegisterInfo.h.
|
virtualdefault |
|
inline |
Provide a get method, equivalent to [], but more useful with a pointer to this object.
Definition at line 379 of file MCRegisterInfo.h.
References operator[](), and Reg.
Referenced by getName(), llvm::LLVMDisasmContext::getRegisterInfo(), getSubReg(), getSubRegIndex(), isArtificial(), isConstant(), llvm::MCRegUnitIterator::MCRegUnitIterator(), llvm::MCRegUnitMaskIterator::MCRegUnitMaskIterator(), llvm::MCSubRegIndexIterator::MCSubRegIndexIterator(), llvm::MCSubRegIterator::MCSubRegIterator(), and llvm::MCSuperRegIterator::MCSuperRegIterator().
| int MCRegisterInfo::getCodeViewRegNum | ( | MCRegister | Reg | ) | const |
Map a target register to an equivalent CodeView register number.
Definition at line 201 of file MCRegisterInfo.cpp.
References getName(), getNumRegs(), I, and llvm::report_fatal_error().
|
virtual |
Map a target register to an equivalent dwarf register number.
Returns -1 if there is no equivalent value. The second parameter allows targets to use different numberings for EH info and debugging info.
Definition at line 144 of file MCRegisterInfo.cpp.
References I, llvm::InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key, and Size.
Referenced by getDwarfRegNumFromDwarfEHRegNum().
| int64_t MCRegisterInfo::getDwarfRegNumFromDwarfEHRegNum | ( | uint64_t | RegNum | ) | const |
Map a target EH register number to an equivalent DWARF register number.
Definition at line 175 of file MCRegisterInfo.cpp.
References getDwarfRegNum(), and getLLVMRegNum().
|
inline |
Returns the encoding for Reg.
Definition at line 481 of file MCRegisterInfo.h.
Referenced by llvm::HexagonAsmPrinter::HexagonProcessInstruction(), llvm::MipsRegInfoRecord::SetPhysRegUsed(), and llvm::AArch64ExternalSymbolizer::tryAddingSymbolicOperand().
| std::optional< MCRegister > MCRegisterInfo::getLLVMRegNum | ( | uint64_t | RegNum, |
| bool | isEH ) const |
Map a dwarf register back to a target register.
Returns std::nullopt if there is no mapping.
Definition at line 161 of file MCRegisterInfo.cpp.
References llvm::MCRegister::from(), I, llvm::InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key, and Size.
Referenced by getDwarfRegNumFromDwarfEHRegNum().
| MCRegister MCRegisterInfo::getMatchingSuperReg | ( | MCRegister | Reg, |
| unsigned | SubIdx, | ||
| const MCRegisterClass * | RC ) const |
Return a super-register of the specified register Reg so its sub-register of index SubIdx is Reg.
Definition at line 108 of file MCRegisterInfo.cpp.
References llvm::MCRegisterClass::contains(), getSubReg(), and superregs().
Referenced by convertVRToVRMx(), DecodeGPRPairCRegisterClass(), DecodeGPRPairRegisterClass(), DecodeVRM2RegisterClass(), DecodeVRM4RegisterClass(), DecodeVRM8RegisterClass(), and llvm::TargetRegisterInfo::getMatchingSuperReg().
|
inline |
Return the human-readable symbolic target-specific name for the specified physical register.
Definition at line 400 of file MCRegisterInfo.h.
References get().
Referenced by getCodeViewRegNum().
|
inline |
Definition at line 465 of file MCRegisterInfo.h.
References regclass_begin(), and regclass_end().
Referenced by getRegClass().
|
inline |
Return the number of registers this target has (useful for sizing arrays holding per register information)
Definition at line 419 of file MCRegisterInfo.h.
Referenced by llvm::MachineFunction::allocateRegMask(), llvm::TargetRegisterInfo::checkAllSuperRegsMarked(), llvm::TargetRegisterInfo::getAllocatableSet(), getCodeViewRegNum(), llvm::TargetRegisterInfo::getNumSupportedRegs(), llvm::TargetRegisterInfo::getRegisterCosts(), getSubRegIndex(), llvm::MachineRegisterInfo::MachineRegisterInfo(), and llvm::TargetRegisterInfo::regmaskSubsetEqual().
|
inline |
Return the number of (native) register units in the target.
Register units are numbered from 0 to getNumRegUnits() - 1. They can be accessed through MCRegUnitIterator defined below.
Definition at line 433 of file MCRegisterInfo.h.
Referenced by llvm::MCRegUnitRootIterator::MCRegUnitRootIterator(), and regunits().
|
inline |
Return the number of sub-register indices understood by the target.
Index 0 is reserved for the no-op sub-register, while 1 to getNumSubRegIndices() - 1 represent real sub-registers.
Definition at line 426 of file MCRegisterInfo.h.
Referenced by llvm::TargetRegisterInfo::getCoveringSubRegIndexes(), getSubReg(), llvm::TargetRegisterInfo::getSubRegIdxOffset(), llvm::TargetRegisterInfo::getSubRegIdxSize(), llvm::TargetRegisterInfo::getSubRegIndexLaneMask(), and llvm::TargetRegisterInfo::getSubRegIndexName().
|
inline |
Return the register which is the program counter.
Definition at line 367 of file MCRegisterInfo.h.
Referenced by llvm::MCInstrAnalysis::mayAffectControlFlow(), and llvm::MCInstrDesc::mayAffectControlFlow().
|
inline |
This method should return the register where the return address can be found.
Definition at line 362 of file MCRegisterInfo.h.
Referenced by llvm::MipsAsmPrinter::emitFrameDirective().
|
inline |
Returns the register class associated with the enumeration value.
See class MCOperandInfo.
Definition at line 471 of file MCRegisterInfo.h.
References assert(), and getNumRegClasses().
|
inline |
Definition at line 476 of file MCRegisterInfo.h.
Referenced by llvm::TargetRegisterInfo::getRegClassName().
| int MCRegisterInfo::getSEHRegNum | ( | MCRegister | Reg | ) | const |
Map a target register to an equivalent SEH register number.
Returns LLVM register number if there is no equivalent value.
Definition at line 194 of file MCRegisterInfo.cpp.
References I.
| MCRegister MCRegisterInfo::getSubReg | ( | MCRegister | Reg, |
| unsigned | Idx ) const |
Returns the physical register number of sub-register "Index" for physical register RegNo.
Return zero if the sub-register does not exist.
Definition at line 116 of file MCRegisterInfo.cpp.
References assert(), get(), getNumSubRegIndices(), llvm::Sub, llvm::MCRegisterDesc::SubRegIndices, and subregs().
Referenced by addSavedGPR(), getMatchingSuperReg(), getPairedGPR(), llvm::HexagonAsmPrinter::HexagonProcessInstruction(), llvm::PPCRegisterInfo::lowerACCSpilling(), llvm::PPCRegisterInfo::lowerDMRRestore(), and llvm::PPCRegisterInfo::lowerDMRSpilling().
| unsigned MCRegisterInfo::getSubRegIndex | ( | MCRegister | RegNo, |
| MCRegister | SubRegNo ) const |
For a given register pair, return the sub-register index if the second register is a sub-register of the first.
Return zero otherwise.
Definition at line 130 of file MCRegisterInfo.cpp.
References assert(), get(), getNumRegs(), llvm::Sub, SubReg, llvm::MCRegisterDesc::SubRegIndices, and subregs().
|
inline |
Initialize MCRegisterInfo, called by TableGen auto-generated routines.
DO NOT USE.
Definition at line 283 of file MCRegisterInfo.h.
References llvm::CallingConv::C, D(), DL, NC, and RA.
|
inline |
Returns true if the given register is artificial, which means it represents a regunit that is not separately addressable but still needs to be modelled, such as the top 16-bits of a 32-bit GPR.
Definition at line 410 of file MCRegisterInfo.h.
References get().
Referenced by llvm::getTrackingRegs(), and isArtificialRegUnit().
| bool MCRegisterInfo::isArtificialRegUnit | ( | MCRegUnit | Unit | ) | const |
Returns true when the given register unit is considered artificial.
Register units are considered artificial when at least one of the root registers is artificial.
Definition at line 225 of file MCRegisterInfo.cpp.
References isArtificial(), and MCRegUnitRootIterator.
|
inline |
Returns true if the given register is constant.
Definition at line 405 of file MCRegisterInfo.h.
References get().
Referenced by llvm::getTrackingRegs().
|
inline |
Returns true if RegB is a sub-register of RegA.
Definition at line 488 of file MCRegisterInfo.h.
References isSuperRegister().
|
inline |
Returns true if RegB is a sub-register of RegA or if RegB == RegA.
Definition at line 496 of file MCRegisterInfo.h.
References isSuperRegisterEq().
Referenced by llvm::MCInstrDesc::hasDefOfPhysReg(), and isSuperOrSubRegisterEq().
|
inline |
Returns true if RegB is a super-register or sub-register of RegA or if RegB == RegA.
Definition at line 508 of file MCRegisterInfo.h.
References isSubRegisterEq(), and isSuperRegister().
|
inline |
Returns true if RegB is a super-register of RegA.
Definition at line 630 of file MCRegisterInfo.h.
References llvm::is_contained(), and superregs().
Referenced by isSubRegister(), isSuperOrSubRegisterEq(), and isSuperRegisterEq().
|
inline |
Returns true if RegB is a super-register of RegA or if RegB == RegA.
Definition at line 502 of file MCRegisterInfo.h.
References isSuperRegister().
Referenced by isSubRegisterEq().
|
inline |
Used to initialize Dwarf register to LLVM register number mapping.
Called by TableGen auto-generated routines. DO NOT USE.
Definition at line 336 of file MCRegisterInfo.h.
References Size.
|
inline |
Used to initialize LLVM register to Dwarf register number mapping.
Called by TableGen auto-generated routines. DO NOT USE.
Definition at line 322 of file MCRegisterInfo.h.
References Size.
|
inline |
Definition at line 356 of file MCRegisterInfo.h.
|
inline |
mapLLVMRegToSEHReg - Used to initialize LLVM register to SEH register number mapping.
By default the SEH register number is just the same as the LLVM register number. FIXME: TableGen these numbers. Currently this requires target specific initialization code.
Definition at line 352 of file MCRegisterInfo.h.
|
inline |
|
inline |
Definition at line 459 of file MCRegisterInfo.h.
Referenced by getNumRegClasses(), and regclasses().
|
inline |
Definition at line 460 of file MCRegisterInfo.h.
Referenced by getNumRegClasses(), and regclasses().
|
inline |
Definition at line 461 of file MCRegisterInfo.h.
References llvm::make_range(), regclass_begin(), and regclass_end().
Referenced by llvm::getSuperRegs().
| bool MCRegisterInfo::regsOverlap | ( | MCRegister | RegA, |
| MCRegister | RegB ) const |
Returns true if the two registers are equal or alias each other.
Definition at line 212 of file MCRegisterInfo.cpp.
References MCRegUnitIterator, and regunits().
Referenced by llvm::AArch64RegisterInfo::explainReservedReg(), llvm::AArch64RegisterInfo::isAsmClobberable(), and llvm::TargetRegisterInfo::regsOverlap().
|
inline |
Returns an iterator range over all regunits.
Definition at line 806 of file MCRegisterInfo.h.
References llvm::enum_seq(), llvm::force_iteration_on_noniterable_enum, and getNumRegUnits().
Referenced by llvm::TargetRegisterInfo::hasRegUnit(), and regsOverlap().
|
inline |
Returns an iterator range over all regunits for Reg.
Definition at line 813 of file MCRegisterInfo.h.
References llvm::make_range(), MCRegUnitIterator, and Reg.
|
inline |
Return an iterator range over all sub- and super-registers of Reg, including Reg.
Definition at line 802 of file MCRegisterInfo.h.
References llvm::concat(), Reg, subregs_inclusive(), and superregs().
|
inline |
Return an iterator range over all sub-registers of Reg, excluding Reg.
Definition at line 781 of file MCRegisterInfo.h.
References llvm::make_range(), MCSubRegIterator, and Reg.
Referenced by getSubReg(), and getSubRegIndex().
|
inline |
Return an iterator range over all sub-registers of Reg, including Reg.
Definition at line 786 of file MCRegisterInfo.h.
References llvm::make_range(), MCSubRegIterator, and Reg.
Referenced by llvm::MipsRegInfoRecord::SetPhysRegUsed(), and sub_and_superregs_inclusive().
|
inline |
Return an iterator range over all super-registers of Reg, excluding Reg.
Definition at line 791 of file MCRegisterInfo.h.
References llvm::make_range(), MCSuperRegIterator, and Reg.
Referenced by llvm::TargetRegisterInfo::checkAllSuperRegsMarked(), getHexagonRegisterPair(), getMatchingSuperReg(), getPairedGPR(), llvm::getSuperReg(), llvm::isSuperReg(), isSuperRegister(), and sub_and_superregs_inclusive().
|
inline |
Return an iterator range over all super-registers of Reg, including Reg.
Definition at line 796 of file MCRegisterInfo.h.
References llvm::make_range(), MCSuperRegIterator, and Reg.
Referenced by llvm::TargetRegisterInfo::markSuperRegs().
|
friend |
Definition at line 277 of file MCRegisterInfo.h.
References MCRegAliasIterator.
Referenced by MCRegAliasIterator.
|
friend |
Definition at line 274 of file MCRegisterInfo.h.
References MCRegUnitIterator.
Referenced by MCRegUnitIterator, regsOverlap(), and regunits().
|
friend |
Definition at line 275 of file MCRegisterInfo.h.
References MCRegUnitMaskIterator.
Referenced by MCRegUnitMaskIterator.
|
friend |
Definition at line 276 of file MCRegisterInfo.h.
References MCRegUnitRootIterator.
Referenced by isArtificialRegUnit(), and MCRegUnitRootIterator.
|
friend |
Definition at line 272 of file MCRegisterInfo.h.
References MCSubRegIndexIterator.
Referenced by MCSubRegIndexIterator.
|
friend |
Definition at line 271 of file MCRegisterInfo.h.
References MCSubRegIterator.
Referenced by MCSubRegIterator, subregs(), and subregs_inclusive().
|
friend |
Definition at line 273 of file MCRegisterInfo.h.
References MCSuperRegIterator.
Referenced by MCSuperRegIterator, superregs(), and superregs_inclusive().