Searched refs:SectionType (Results 1 – 8 of 8) sorted by relevance
104 MachO::SectionType SectionType = getType(); in PrintSwitchToSection() local105 assert(SectionType <= MachO::LAST_KNOWN_SECTION_TYPE && in PrintSwitchToSection()108 if (SectionTypeDescriptors[SectionType].AssemblerName) { in PrintSwitchToSection()110 OS << SectionTypeDescriptors[SectionType].AssemblerName; in PrintSwitchToSection()187 StringRef SectionType = GetEmptyOrTrim(2); in ParseSectionSpecifier() local208 if (SectionType.empty()) in ParseSectionSpecifier()216 SectionType == Descriptor.AssemblerName; in ParseSectionSpecifier()
58 MachO::SectionType getType() const { in getType()59 return static_cast<MachO::SectionType>(TypeAndAttributes & in getType()
256 int RemoveSectionType(int SectionType);259 Section_t * FindSection(int SectionType);260 Section_t * CreateSection(int SectionType, unsigned char * Data, int size);
913 Section_t * FindSection(int SectionType) in FindSection() argument918 if (Sections[a].Type == SectionType){ in FindSection()929 int RemoveSectionType(int SectionType) in RemoveSectionType() argument933 if (Sections[a].Type == SectionType){ in RemoveSectionType()997 Section_t * CreateSection(int SectionType, unsigned char * Data, int Size) in CreateSection() argument1004 if (SectionType == M_EXIF) NewIndex = 0; // Exif alwas goes first! in CreateSection()1023 NewSection->Type = SectionType; in CreateSection()
445 MachO::SectionType SectionType = Current->getType(); in parseDirectiveIndirectSymbol() local446 if (SectionType != MachO::S_NON_LAZY_SYMBOL_POINTERS && in parseDirectiveIndirectSymbol()447 SectionType != MachO::S_LAZY_SYMBOL_POINTERS && in parseDirectiveIndirectSymbol()448 SectionType != MachO::S_SYMBOL_STUBS) in parseDirectiveIndirectSymbol()
329 unsigned SectionType = MachO->getSectionType(Section); in isZeroInit() local330 return SectionType == MachO::S_ZEROFILL || in isZeroInit()331 SectionType == MachO::S_GB_ZEROFILL; in isZeroInit()
556 unsigned SectionType = Flags & MachO::SECTION_TYPE; in isSectionData() local558 !(SectionType == MachO::S_ZEROFILL || in isSectionData()559 SectionType == MachO::S_GB_ZEROFILL); in isSectionData()564 unsigned SectionType = Flags & MachO::SECTION_TYPE; in isSectionBSS() local566 (SectionType == MachO::S_ZEROFILL || in isSectionBSS()567 SectionType == MachO::S_GB_ZEROFILL); in isSectionBSS()
157 enum SectionType : uint32_t { enum