Searched refs:SectionType (Results 1 – 13 of 13) sorted by relevance
/external/llvm/lib/MC/ |
D | MCSectionMachO.cpp | 104 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/swiftshader/third_party/LLVM/lib/MC/ |
D | MCSectionMachO.cpp | 104 unsigned SectionType = TAA & MCSectionMachO::SECTION_TYPE; in PrintSwitchToSection() local 105 assert(SectionType <= MCSectionMachO::LAST_KNOWN_SECTION_TYPE && in PrintSwitchToSection() 108 if (SectionTypeDescriptors[SectionType].AssemblerName) { in PrintSwitchToSection() 110 OS << SectionTypeDescriptors[SectionType].AssemblerName; in PrintSwitchToSection() 225 StringRef SectionType = Comma.first; in ParseSectionSpecifier() local 226 StripSpaces(SectionType); in ParseSectionSpecifier() 232 SectionType == SectionTypeDescriptors[TypeID].AssemblerName) in ParseSectionSpecifier()
|
/external/llvm/tools/obj2yaml/ |
D | macho2yaml.cpp | 52 template <typename SectionType> 53 MachOYAML::Section constructSectionCommon(SectionType Sec) { in constructSectionCommon() 70 template <typename SectionType> 71 MachOYAML::Section constructSection(SectionType Sec); 85 template <typename SectionType, typename SegmentType> 91 const SectionType *Curr = in extractSections() 92 reinterpret_cast<const SectionType *>(LoadCmd.Ptr + sizeof(SegmentType)); in extractSections() 95 SectionType Sec; in extractSections() 96 memcpy((void *)&Sec, Curr, sizeof(SectionType)); in extractSections()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceELFObjectWriter.h | 94 enum SectionType { ROData = 0, Data, BSS, NumSectionTypes }; enum 163 void writeDataOfType(SectionType SectionType,
|
D | IceELFObjectWriter.cpp | 280 ELFObjectWriter::SectionType 331 writeDataOfType(static_cast<SectionType>(I++), SectionList, RelocationKind, in writeDataSection() 345 void ELFObjectWriter::writeDataOfType(SectionType ST, in writeDataOfType()
|
/external/llvm/include/llvm/MC/ |
D | MCSectionMachO.h | 58 MachO::SectionType getType() const { in getType() 59 return static_cast<MachO::SectionType>(TypeAndAttributes & in getType()
|
/external/llvm/lib/MC/MCParser/ |
D | DarwinAsmParser.cpp | 474 MachO::SectionType SectionType = Current->getType(); in parseDirectiveIndirectSymbol() local 475 if (SectionType != MachO::S_NON_LAZY_SYMBOL_POINTERS && in parseDirectiveIndirectSymbol() 476 SectionType != MachO::S_LAZY_SYMBOL_POINTERS && in parseDirectiveIndirectSymbol() 477 SectionType != MachO::S_THREAD_LOCAL_VARIABLE_POINTERS && in parseDirectiveIndirectSymbol() 478 SectionType != MachO::S_SYMBOL_STUBS) in parseDirectiveIndirectSymbol()
|
/external/llvm/tools/yaml2obj/ |
D | yaml2macho.cpp | 93 template <typename SectionType> 94 SectionType constructSection(MachOYAML::Section Sec) { in constructSection() 95 SectionType TempSec; in constructSection()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 403 unsigned SectionType = MachO->getSectionType(Section); in isZeroInit() local 404 return SectionType == MachO::S_ZEROFILL || in isZeroInit() 405 SectionType == MachO::S_GB_ZEROFILL; in isZeroInit()
|
/external/llvm/lib/Object/ |
D | MachOObjectFile.cpp | 686 unsigned SectionType = Flags & MachO::SECTION_TYPE; in isSectionData() local 688 !(SectionType == MachO::S_ZEROFILL || in isSectionData() 689 SectionType == MachO::S_GB_ZEROFILL); in isSectionData() 694 unsigned SectionType = Flags & MachO::SECTION_TYPE; in isSectionBSS() local 696 (SectionType == MachO::S_ZEROFILL || in isSectionBSS() 697 SectionType == MachO::S_GB_ZEROFILL); in isSectionBSS()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | ELFWriter.cpp | 256 unsigned SectionType = TEW->hasRelocationAddend() ? in getRelocSection() local 264 return getSection(SectionName, SectionType, 0, TEW->getPrefELFAlignment()); in getRelocSection()
|
/external/llvm/include/llvm/Support/ |
D | MachO.h | 115 enum SectionType : uint32_t { enum
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | MachO.h | 115 enum SectionType : uint32_t { enum
|