Home
last modified time | relevance | path

Searched refs:getMappingClass (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionXCOFF.cpp29 if (getMappingClass() != XCOFF::XMC_PR) in PrintSwitchToSection()
37 if (getMappingClass() != XCOFF::XMC_RO) in PrintSwitchToSection()
46 if (getMappingClass() != XCOFF::XMC_TL) in PrintSwitchToSection()
53 switch (getMappingClass()) { in PrintSwitchToSection()
72 if (isCsect() && getMappingClass() == XCOFF::XMC_TD) { in PrintSwitchToSection()
81 assert((getMappingClass() == XCOFF::XMC_RW || in PrintSwitchToSection()
82 getMappingClass() == XCOFF::XMC_BS || in PrintSwitchToSection()
83 getMappingClass() == XCOFF::XMC_UL) && in PrintSwitchToSection()
H A DXCOFFObjectWriter.cpp305 switch (MCSec->getMappingClass()) { in getCsectGroup()
468 if (SymASec->isCsect() && SymASec->getMappingClass() == XCOFF::XMC_TD) in recordRelocation()
650 W.write<uint8_t>(CSectionRef.MCSec->getMappingClass()); in writeSymbolTableEntryForCsectMemberLabel()
688 W.write<uint8_t>(CSectionRef.MCSec->getMappingClass()); in writeSymbolTableEntryForControlSection()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSectionXCOFF.h91 XCOFF::StorageMappingClass getMappingClass() const { in getMappingClass() function