Home
last modified time | relevance | path

Searched refs:CsectProp (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMCSectionXCOFF.h35 std::optional<XCOFF::CsectProperties> CsectProp; variable
48 CsectProp(XCOFF::CsectProperties(SMC, ST)), QualName(QualName), in MCSectionXCOFF()
98 return CsectProp->MappingClass; in getMappingClass()
108 return CsectProp->Type; in getCSectType()
119 bool isCsect() const { return CsectProp.has_value(); } in isCsect()
125 return CsectProp; in getCsectProp()
H A DMCContext.h672 XCOFF::CsectProperties CsectProp) const;
676 std::optional<XCOFF::CsectProperties> CsectProp = std::nullopt,
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCContext.cpp768 XCOFF::CsectProperties CsectProp) const { in hasXCOFFSection()
770 XCOFFSectionKey(Section.str(), CsectProp.MappingClass)) != 0; in hasXCOFFSection()
775 std::optional<XCOFF::CsectProperties> CsectProp, bool MultiSymbolsAllowed, in getXCOFFSection() argument
779 assert((IsDwarfSec != CsectProp.has_value()) && "Invalid XCOFF section!"); in getXCOFFSection()
784 : XCOFFSectionKey(Section.str(), CsectProp->MappingClass), in getXCOFFSection()
804 XCOFF::getMappingClassString(CsectProp->MappingClass) + "]")); in getXCOFFSection()
819 MCSectionXCOFF(QualName->getUnqualifiedName(), CsectProp->MappingClass, in getXCOFFSection()
820 CsectProp->Type, Kind, QualName, Begin, CachedName, in getXCOFFSection()
837 if (!IsDwarfSec && CsectProp->MappingClass == XCOFF::XMC_PR) in getXCOFFSection()
H A DMCSectionXCOFF.cpp129 return XCOFF::XTY_CM == CsectProp->Type; in isVirtualSection()