Home
last modified time | relevance | path

Searched refs:SectionType (Results 1 – 8 of 8) sorted by relevance

/external/llvm/lib/MC/
DMCSectionMachO.cpp104 MachO::SectionType SectionType = getType(); in PrintSwitchToSection() local
105 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() local
208 if (SectionType.empty()) in ParseSectionSpecifier()
216 SectionType == Descriptor.AssemblerName; in ParseSectionSpecifier()
/external/llvm/include/llvm/MC/
DMCSectionMachO.h58 MachO::SectionType getType() const { in getType()
59 return static_cast<MachO::SectionType>(TypeAndAttributes & in getType()
/external/jhead/
Djhead.h256 int RemoveSectionType(int SectionType);
259 Section_t * FindSection(int SectionType);
260 Section_t * CreateSection(int SectionType, unsigned char * Data, int size);
Djpgfile.c913 Section_t * FindSection(int SectionType) in FindSection() argument
918 if (Sections[a].Type == SectionType){ in FindSection()
929 int RemoveSectionType(int SectionType) in RemoveSectionType() argument
933 if (Sections[a].Type == SectionType){ in RemoveSectionType()
997 Section_t * CreateSection(int SectionType, unsigned char * Data, int Size) in CreateSection() argument
1004 if (SectionType == M_EXIF) NewIndex = 0; // Exif alwas goes first! in CreateSection()
1023 NewSection->Type = SectionType; in CreateSection()
/external/llvm/lib/MC/MCParser/
DDarwinAsmParser.cpp445 MachO::SectionType SectionType = Current->getType(); in parseDirectiveIndirectSymbol() local
446 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()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp329 unsigned SectionType = MachO->getSectionType(Section); in isZeroInit() local
330 return SectionType == MachO::S_ZEROFILL || in isZeroInit()
331 SectionType == MachO::S_GB_ZEROFILL; in isZeroInit()
/external/llvm/lib/Object/
DMachOObjectFile.cpp556 unsigned SectionType = Flags & MachO::SECTION_TYPE; in isSectionData() local
558 !(SectionType == MachO::S_ZEROFILL || in isSectionData()
559 SectionType == MachO::S_GB_ZEROFILL); in isSectionData()
564 unsigned SectionType = Flags & MachO::SECTION_TYPE; in isSectionBSS() local
566 (SectionType == MachO::S_ZEROFILL || in isSectionBSS()
567 SectionType == MachO::S_GB_ZEROFILL); in isSectionBSS()
/external/llvm/include/llvm/Support/
DMachO.h157 enum SectionType : uint32_t { enum