Lines Matching refs:MachOObjectFile
71 static T getStruct(const MachOObjectFile &O, const char *P) { in getStruct()
84 static Expected<T> getStructOrErr(const MachOObjectFile &O, const char *P) { in getStructOrErr()
97 getSectionPtr(const MachOObjectFile &O, MachOObjectFile::LoadCommandInfo L, in getSectionPtr()
111 static const char *getPtr(const MachOObjectFile &O, size_t Offset, in getPtr()
119 getSymbolTableEntryBase(const MachOObjectFile &O, DataRefImpl DRI) { in getSymbolTableEntryBase()
132 static unsigned getCPUType(const MachOObjectFile &O) { in getCPUType()
136 static unsigned getCPUSubType(const MachOObjectFile &O) { in getCPUSubType()
150 static bool getPlainRelocationPCRel(const MachOObjectFile &O, in getPlainRelocationPCRel()
162 static unsigned getPlainRelocationLength(const MachOObjectFile &O, in getPlainRelocationLength()
174 static unsigned getPlainRelocationType(const MachOObjectFile &O, in getPlainRelocationType()
181 static uint32_t getSectionFlags(const MachOObjectFile &O, in getSectionFlags()
191 static Expected<MachOObjectFile::LoadCommandInfo>
192 getLoadCommandInfo(const MachOObjectFile &Obj, const char *Ptr, in getLoadCommandInfo()
201 return MachOObjectFile::LoadCommandInfo({Ptr, *CmdOrErr}); in getLoadCommandInfo()
206 static Expected<MachOObjectFile::LoadCommandInfo>
207 getFirstLoadCommandInfo(const MachOObjectFile &Obj) { in getFirstLoadCommandInfo()
217 static Expected<MachOObjectFile::LoadCommandInfo>
218 getNextLoadCommandInfo(const MachOObjectFile &Obj, uint32_t LoadCommandIndex, in getNextLoadCommandInfo()
219 const MachOObjectFile::LoadCommandInfo &L) { in getNextLoadCommandInfo()
231 static void parseHeader(const MachOObjectFile &Obj, T &Header, in parseHeader()
286 const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, in parseSegmentLoadCommand()
409 static Error checkSymtabCommand(const MachOObjectFile &Obj, in checkSymtabCommand()
410 const MachOObjectFile::LoadCommandInfo &Load, in checkSymtabCommand()
467 static Error checkDysymtabCommand(const MachOObjectFile &Obj, in checkDysymtabCommand()
468 const MachOObjectFile::LoadCommandInfo &Load, in checkDysymtabCommand()
600 static Error checkLinkeditDataCommand(const MachOObjectFile &Obj, in checkLinkeditDataCommand()
601 const MachOObjectFile::LoadCommandInfo &Load, in checkLinkeditDataCommand()
638 static Error checkDyldInfoCommand(const MachOObjectFile &Obj, in checkDyldInfoCommand()
639 const MachOObjectFile::LoadCommandInfo &Load, in checkDyldInfoCommand()
737 static Error checkDylibCommand(const MachOObjectFile &Obj, in checkDylibCommand()
738 const MachOObjectFile::LoadCommandInfo &Load, in checkDylibCommand()
769 static Error checkDylibIdCommand(const MachOObjectFile &Obj, in checkDylibIdCommand()
770 const MachOObjectFile::LoadCommandInfo &Load, in checkDylibIdCommand()
786 static Error checkDyldCommand(const MachOObjectFile &Obj, in checkDyldCommand()
787 const MachOObjectFile::LoadCommandInfo &Load, in checkDyldCommand()
818 static Error checkVersCommand(const MachOObjectFile &Obj, in checkVersCommand()
819 const MachOObjectFile::LoadCommandInfo &Load, in checkVersCommand()
833 static Error checkNoteCommand(const MachOObjectFile &Obj, in checkNoteCommand()
834 const MachOObjectFile::LoadCommandInfo &Load, in checkNoteCommand()
862 parseBuildVersionCommand(const MachOObjectFile &Obj, in parseBuildVersionCommand()
863 const MachOObjectFile::LoadCommandInfo &Load, in parseBuildVersionCommand()
885 static Error checkRpathCommand(const MachOObjectFile &Obj, in checkRpathCommand()
886 const MachOObjectFile::LoadCommandInfo &Load, in checkRpathCommand()
917 static Error checkEncryptCommand(const MachOObjectFile &Obj, in checkEncryptCommand()
918 const MachOObjectFile::LoadCommandInfo &Load, in checkEncryptCommand()
941 static Error checkLinkerOptCommand(const MachOObjectFile &Obj, in checkLinkerOptCommand()
942 const MachOObjectFile::LoadCommandInfo &Load, in checkLinkerOptCommand()
981 static Error checkSubCommand(const MachOObjectFile &Obj, in checkSubCommand()
982 const MachOObjectFile::LoadCommandInfo &Load, in checkSubCommand()
1008 static Error checkThreadCommand(const MachOObjectFile &Obj, in checkThreadCommand()
1009 const MachOObjectFile::LoadCommandInfo &Load, in checkThreadCommand()
1199 static Error checkTwoLevelHintsCommand(const MachOObjectFile &Obj, in checkTwoLevelHintsCommand()
1200 const MachOObjectFile::LoadCommandInfo in checkTwoLevelHintsCommand()
1252 Expected<std::unique_ptr<MachOObjectFile>>
1253 MachOObjectFile::create(MemoryBufferRef Object, bool IsLittleEndian, in create()
1258 std::unique_ptr<MachOObjectFile> Obj(new MachOObjectFile( in create()
1266 MachOObjectFile::MachOObjectFile(MemoryBufferRef Object, bool IsLittleEndian, in MachOObjectFile() function in MachOObjectFile
1700 Error MachOObjectFile::checkSymbolTable() const { in checkSymbolTable()
1703 MachO::mach_header_64 H_64 = MachOObjectFile::getHeader64(); in checkSymbolTable()
1706 MachO::mach_header H = MachOObjectFile::getHeader(); in checkSymbolTable()
1767 void MachOObjectFile::moveSymbolNext(DataRefImpl &Symb) const { in moveSymbolNext()
1774 Expected<StringRef> MachOObjectFile::getSymbolName(DataRefImpl Symb) const { in getSymbolName()
1789 unsigned MachOObjectFile::getSectionType(SectionRef Sec) const { in getSectionType()
1795 uint64_t MachOObjectFile::getNValue(DataRefImpl Sym) const { in getNValue()
1806 std::error_code MachOObjectFile::getIndirectName(DataRefImpl Symb, in getIndirectName()
1820 uint64_t MachOObjectFile::getSymbolValueImpl(DataRefImpl Sym) const { in getSymbolValueImpl()
1824 Expected<uint64_t> MachOObjectFile::getSymbolAddress(DataRefImpl Sym) const { in getSymbolAddress()
1828 uint32_t MachOObjectFile::getSymbolAlignment(DataRefImpl DRI) const { in getSymbolAlignment()
1837 uint64_t MachOObjectFile::getCommonSymbolSizeImpl(DataRefImpl DRI) const { in getCommonSymbolSizeImpl()
1842 MachOObjectFile::getSymbolType(DataRefImpl Symb) const { in getSymbolType()
1867 Expected<uint32_t> MachOObjectFile::getSymbolFlags(DataRefImpl DRI) const { in getSymbolFlags()
1911 MachOObjectFile::getSymbolSection(DataRefImpl Symb) const { in getSymbolSection()
1926 unsigned MachOObjectFile::getSymbolSectionID(SymbolRef Sym) const { in getSymbolSectionID()
1932 void MachOObjectFile::moveSectionNext(DataRefImpl &Sec) const { in moveSectionNext()
1936 Expected<StringRef> MachOObjectFile::getSectionName(DataRefImpl Sec) const { in getSectionName()
1941 uint64_t MachOObjectFile::getSectionAddress(DataRefImpl Sec) const { in getSectionAddress()
1947 uint64_t MachOObjectFile::getSectionIndex(DataRefImpl Sec) const { in getSectionIndex()
1951 uint64_t MachOObjectFile::getSectionSize(DataRefImpl Sec) const { in getSectionSize()
1980 ArrayRef<uint8_t> MachOObjectFile::getSectionContents(uint32_t Offset, in getSectionContents()
1986 MachOObjectFile::getSectionContents(DataRefImpl Sec) const { in getSectionContents()
2003 uint64_t MachOObjectFile::getSectionAlignment(DataRefImpl Sec) const { in getSectionAlignment()
2016 Expected<SectionRef> MachOObjectFile::getSection(unsigned SectionIndex) const { in getSection()
2025 Expected<SectionRef> MachOObjectFile::getSection(StringRef SectionName) const { in getSection()
2036 bool MachOObjectFile::isSectionCompressed(DataRefImpl Sec) const { in isSectionCompressed()
2040 bool MachOObjectFile::isSectionText(DataRefImpl Sec) const { in isSectionText()
2045 bool MachOObjectFile::isSectionData(DataRefImpl Sec) const { in isSectionData()
2053 bool MachOObjectFile::isSectionBSS(DataRefImpl Sec) const { in isSectionBSS()
2061 bool MachOObjectFile::isDebugSection(DataRefImpl Sec) const { in isDebugSection()
2077 ArrayRef<uint8_t> getSegmentContents(const MachOObjectFile &Obj, in getSegmentContents()
2078 MachOObjectFile::LoadCommandInfo LoadCmd, in getSegmentContents()
2093 ArrayRef<uint8_t> getSegmentContents(const MachOObjectFile &Obj, in getSegmentContents()
2094 MachOObjectFile::LoadCommandInfo LoadCmd) { in getSegmentContents()
2107 MachOObjectFile::getSegmentContents(StringRef SegmentName) const { in getSegmentContents()
2129 MachOObjectFile::getSegmentContents(size_t SegmentIndex) const { in getSegmentContents()
2150 unsigned MachOObjectFile::getSectionID(SectionRef Sec) const { in getSectionID()
2154 bool MachOObjectFile::isSectionVirtual(DataRefImpl Sec) const { in isSectionVirtual()
2161 bool MachOObjectFile::isSectionBitcode(DataRefImpl Sec) const { in isSectionBitcode()
2168 bool MachOObjectFile::isSectionStripped(DataRefImpl Sec) const { in isSectionStripped()
2174 relocation_iterator MachOObjectFile::section_rel_begin(DataRefImpl Sec) const { in section_rel_begin()
2182 MachOObjectFile::section_rel_end(DataRefImpl Sec) const { in section_rel_end()
2198 relocation_iterator MachOObjectFile::extrel_begin() const { in extrel_begin()
2206 relocation_iterator MachOObjectFile::extrel_end() const { in extrel_end()
2215 relocation_iterator MachOObjectFile::locrel_begin() const { in locrel_begin()
2223 relocation_iterator MachOObjectFile::locrel_end() const { in locrel_end()
2232 void MachOObjectFile::moveRelocationNext(DataRefImpl &Rel) const { in moveRelocationNext()
2236 uint64_t MachOObjectFile::getRelocationOffset(DataRefImpl Rel) const { in getRelocationOffset()
2245 MachOObjectFile::getRelocationSymbol(DataRefImpl Rel) const { in getRelocationSymbol()
2266 MachOObjectFile::getRelocationSection(DataRefImpl Rel) const { in getRelocationSection()
2270 uint64_t MachOObjectFile::getRelocationType(DataRefImpl Rel) const { in getRelocationType()
2275 void MachOObjectFile::getRelocationTypeName( in getRelocationTypeName()
2385 uint8_t MachOObjectFile::getRelocationLength(DataRefImpl Rel) const { in getRelocationLength()
2426 StringRef MachOObjectFile::guessLibraryShortName(StringRef Name, in guessLibraryShortName()
2552 std::error_code MachOObjectFile::getLibraryShortNameByIndex(unsigned Index, in getLibraryShortNameByIndex()
2586 uint32_t MachOObjectFile::getLibraryCount() const { in getLibraryCount()
2591 MachOObjectFile::getRelocationRelocatedSection(relocation_iterator Rel) const { in getRelocationRelocatedSection()
2597 basic_symbol_iterator MachOObjectFile::symbol_begin() const { in symbol_begin()
2606 basic_symbol_iterator MachOObjectFile::symbol_end() const { in symbol_end()
2621 symbol_iterator MachOObjectFile::getSymbolByIndex(unsigned Index) const { in getSymbolByIndex()
2633 uint64_t MachOObjectFile::getSymbolIndex(DataRefImpl Symb) const { in getSymbolIndex()
2645 section_iterator MachOObjectFile::section_begin() const { in section_begin()
2650 section_iterator MachOObjectFile::section_end() const { in section_end()
2656 uint8_t MachOObjectFile::getBytesInAddress() const { in getBytesInAddress()
2660 StringRef MachOObjectFile::getFileFormatName() const { in getFileFormatName()
2689 Triple::ArchType MachOObjectFile::getArch(uint32_t CPUType, uint32_t CPUSubType) { in getArch()
2710 Triple MachOObjectFile::getArchTriple(uint32_t CPUType, uint32_t CPUSubType, in getArchTriple()
2847 Triple MachOObjectFile::getHostArch() { in getHostArch()
2851 bool MachOObjectFile::isValidArch(StringRef ArchFlag) { in isValidArch()
2856 ArrayRef<StringRef> MachOObjectFile::getValidArchs() { in getValidArchs()
2881 Triple::ArchType MachOObjectFile::getArch() const { in getArch()
2885 Triple MachOObjectFile::getArchTriple(const char **McpuDefault) const { in getArchTriple()
2889 relocation_iterator MachOObjectFile::section_rel_begin(unsigned Index) const { in section_rel_begin()
2895 relocation_iterator MachOObjectFile::section_rel_end(unsigned Index) const { in section_rel_end()
2901 dice_iterator MachOObjectFile::begin_dices() const { in begin_dices()
2911 dice_iterator MachOObjectFile::end_dices() const { in end_dices()
2922 ExportEntry::ExportEntry(Error *E, const MachOObjectFile *O, in ExportEntry()
3228 MachOObjectFile::exports(Error &E, ArrayRef<uint8_t> Trie, in exports()
3229 const MachOObjectFile *O) { in exports()
3242 iterator_range<export_iterator> MachOObjectFile::exports(Error &Err) const { in exports()
3253 const MachOObjectFile *O) in MachOAbstractFixupEntry()
3319 const MachOObjectFile *O, in MachOChainedFixupEntry()
3480 MachORebaseEntry::MachORebaseEntry(Error *E, const MachOObjectFile *O, in MachORebaseEntry()
3802 MachOObjectFile::rebaseTable(Error &Err, MachOObjectFile *O, in rebaseTable()
3815 iterator_range<rebase_iterator> MachOObjectFile::rebaseTable(Error &Err) { in rebaseTable()
3819 MachOBindEntry::MachOBindEntry(Error *E, const MachOObjectFile *O, in MachOBindEntry()
4356 BindRebaseSegInfo::BindRebaseSegInfo(const object::MachOObjectFile *Obj) { in BindRebaseSegInfo()
4463 MachOObjectFile::bindTable(Error &Err, MachOObjectFile *O, in bindTable()
4477 iterator_range<bind_iterator> MachOObjectFile::bindTable(Error &Err) { in bindTable()
4482 iterator_range<bind_iterator> MachOObjectFile::lazyBindTable(Error &Err) { in lazyBindTable()
4487 iterator_range<bind_iterator> MachOObjectFile::weakBindTable(Error &Err) { in weakBindTable()
4492 iterator_range<fixup_iterator> MachOObjectFile::fixupTable(Error &Err) { in fixupTable()
4505 MachOObjectFile::load_command_iterator
4506 MachOObjectFile::begin_load_commands() const { in begin_load_commands()
4510 MachOObjectFile::load_command_iterator
4511 MachOObjectFile::end_load_commands() const { in end_load_commands()
4515 iterator_range<MachOObjectFile::load_command_iterator>
4516 MachOObjectFile::load_commands() const { in load_commands()
4521 MachOObjectFile::getSectionFinalSegmentName(DataRefImpl Sec) const { in getSectionFinalSegmentName()
4527 MachOObjectFile::getSectionRawName(DataRefImpl Sec) const { in getSectionRawName()
4535 MachOObjectFile::getSectionRawFinalSegmentName(DataRefImpl Sec) const { in getSectionRawFinalSegmentName()
4543 MachOObjectFile::isRelocationScattered(const MachO::any_relocation_info &RE) in isRelocationScattered()
4550 unsigned MachOObjectFile::getPlainRelocationSymbolNum( in getPlainRelocationSymbolNum()
4557 bool MachOObjectFile::getPlainRelocationExternal( in getPlainRelocationExternal()
4564 bool MachOObjectFile::getScatteredRelocationScattered( in getScatteredRelocationScattered()
4569 uint32_t MachOObjectFile::getScatteredRelocationValue( in getScatteredRelocationValue()
4574 uint32_t MachOObjectFile::getScatteredRelocationType( in getScatteredRelocationType()
4579 unsigned MachOObjectFile::getAnyRelocationAddress( in getAnyRelocationAddress()
4586 unsigned MachOObjectFile::getAnyRelocationPCRel( in getAnyRelocationPCRel()
4593 unsigned MachOObjectFile::getAnyRelocationLength( in getAnyRelocationLength()
4601 MachOObjectFile::getAnyRelocationType( in getAnyRelocationType()
4609 MachOObjectFile::getAnyRelocationSection( in getAnyRelocationSection()
4621 MachO::section MachOObjectFile::getSection(DataRefImpl DRI) const { in getSection()
4626 MachO::section_64 MachOObjectFile::getSection64(DataRefImpl DRI) const { in getSection64()
4631 MachO::section MachOObjectFile::getSection(const LoadCommandInfo &L, in getSection()
4637 MachO::section_64 MachOObjectFile::getSection64(const LoadCommandInfo &L, in getSection64()
4644 MachOObjectFile::getSymbolTableEntry(DataRefImpl DRI) const { in getSymbolTableEntry()
4650 MachOObjectFile::getSymbol64TableEntry(DataRefImpl DRI) const { in getSymbol64TableEntry()
4656 MachOObjectFile::getLinkeditDataLoadCommand(const LoadCommandInfo &L) const { in getLinkeditDataLoadCommand()
4661 MachOObjectFile::getSegmentLoadCommand(const LoadCommandInfo &L) const { in getSegmentLoadCommand()
4666 MachOObjectFile::getSegment64LoadCommand(const LoadCommandInfo &L) const { in getSegment64LoadCommand()
4671 MachOObjectFile::getLinkerOptionLoadCommand(const LoadCommandInfo &L) const { in getLinkerOptionLoadCommand()
4676 MachOObjectFile::getVersionMinLoadCommand(const LoadCommandInfo &L) const { in getVersionMinLoadCommand()
4681 MachOObjectFile::getNoteLoadCommand(const LoadCommandInfo &L) const { in getNoteLoadCommand()
4686 MachOObjectFile::getBuildVersionLoadCommand(const LoadCommandInfo &L) const { in getBuildVersionLoadCommand()
4691 MachOObjectFile::getBuildToolVersion(unsigned index) const { in getBuildToolVersion()
4696 MachOObjectFile::getDylibIDLoadCommand(const LoadCommandInfo &L) const { in getDylibIDLoadCommand()
4701 MachOObjectFile::getDyldInfoLoadCommand(const LoadCommandInfo &L) const { in getDyldInfoLoadCommand()
4706 MachOObjectFile::getDylinkerCommand(const LoadCommandInfo &L) const { in getDylinkerCommand()
4711 MachOObjectFile::getUuidCommand(const LoadCommandInfo &L) const { in getUuidCommand()
4716 MachOObjectFile::getRpathCommand(const LoadCommandInfo &L) const { in getRpathCommand()
4721 MachOObjectFile::getSourceVersionCommand(const LoadCommandInfo &L) const { in getSourceVersionCommand()
4726 MachOObjectFile::getEntryPointCommand(const LoadCommandInfo &L) const { in getEntryPointCommand()
4731 MachOObjectFile::getEncryptionInfoCommand(const LoadCommandInfo &L) const { in getEncryptionInfoCommand()
4736 MachOObjectFile::getEncryptionInfoCommand64(const LoadCommandInfo &L) const { in getEncryptionInfoCommand64()
4741 MachOObjectFile::getSubFrameworkCommand(const LoadCommandInfo &L) const { in getSubFrameworkCommand()
4746 MachOObjectFile::getSubUmbrellaCommand(const LoadCommandInfo &L) const { in getSubUmbrellaCommand()
4751 MachOObjectFile::getSubLibraryCommand(const LoadCommandInfo &L) const { in getSubLibraryCommand()
4756 MachOObjectFile::getSubClientCommand(const LoadCommandInfo &L) const { in getSubClientCommand()
4761 MachOObjectFile::getRoutinesCommand(const LoadCommandInfo &L) const { in getRoutinesCommand()
4766 MachOObjectFile::getRoutinesCommand64(const LoadCommandInfo &L) const { in getRoutinesCommand64()
4771 MachOObjectFile::getThreadCommand(const LoadCommandInfo &L) const { in getThreadCommand()
4776 MachOObjectFile::getFilesetEntryLoadCommand(const LoadCommandInfo &L) const { in getFilesetEntryLoadCommand()
4781 MachOObjectFile::getRelocation(DataRefImpl Rel) const { in getRelocation()
4808 MachOObjectFile::getDice(DataRefImpl Rel) const { in getDice()
4813 const MachO::mach_header &MachOObjectFile::getHeader() const { in getHeader()
4817 const MachO::mach_header_64 &MachOObjectFile::getHeader64() const { in getHeader64()
4822 uint32_t MachOObjectFile::getIndirectSymbolTableEntry( in getIndirectSymbolTableEntry()
4830 MachOObjectFile::getDataInCodeTableEntry(uint32_t DataOffset, in getDataInCodeTableEntry()
4836 MachO::symtab_command MachOObjectFile::getSymtabLoadCommand() const { in getSymtabLoadCommand()
4851 MachO::dysymtab_command MachOObjectFile::getDysymtabLoadCommand() const { in getDysymtabLoadCommand()
4881 MachOObjectFile::getDataInCodeLoadCommand() const { in getDataInCodeLoadCommand()
4895 MachOObjectFile::getLinkOptHintsLoadCommand() const { in getLinkOptHintsLoadCommand()
4909 ArrayRef<uint8_t> MachOObjectFile::getDyldInfoRebaseOpcodes() const { in getDyldInfoRebaseOpcodes()
4923 ArrayRef<uint8_t> MachOObjectFile::getDyldInfoBindOpcodes() const { in getDyldInfoBindOpcodes()
4937 ArrayRef<uint8_t> MachOObjectFile::getDyldInfoWeakBindOpcodes() const { in getDyldInfoWeakBindOpcodes()
4951 ArrayRef<uint8_t> MachOObjectFile::getDyldInfoLazyBindOpcodes() const { in getDyldInfoLazyBindOpcodes()
4965 ArrayRef<uint8_t> MachOObjectFile::getDyldInfoExportsTrie() const { in getDyldInfoExportsTrie()
4980 MachOObjectFile::getChainedFixupsLoadCommand() const { in getChainedFixupsLoadCommand()
4999 MachOObjectFile::getChainedFixupsHeader() const { in getChainedFixupsHeader()
5050 MachOObjectFile::getChainedFixupsSegments() const { in getChainedFixupsSegments()
5149 static std::array<T, N> getArray(const MachOObjectFile &O, const void *Ptr) { in getArray()
5159 MachOObjectFile::getDyldChainedFixupTargets() const { in getDyldChainedFixupTargets()
5256 ArrayRef<uint8_t> MachOObjectFile::getDyldExportsTrie() const { in getDyldExportsTrie()
5270 SmallVector<uint64_t> MachOObjectFile::getFunctionStarts() const { in getFunctionStarts()
5285 ArrayRef<uint8_t> MachOObjectFile::getUuid() const { in getUuid()
5293 StringRef MachOObjectFile::getStringTableData() const { in getStringTableData()
5298 bool MachOObjectFile::is64Bit() const { in is64Bit()
5303 void MachOObjectFile::ReadULEB128s(uint64_t Index, in ReadULEB128s()
5315 bool MachOObjectFile::isRelocatableObject() const { in isRelocatableObject()
5326 Expected<std::unique_ptr<MachOObjectFile>> ObjectFile::createMachOObjectFile( in createMachOObjectFile()
5331 return MachOObjectFile::create(Buffer, false, false, UniversalCputype, in createMachOObjectFile()
5334 return MachOObjectFile::create(Buffer, true, false, UniversalCputype, in createMachOObjectFile()
5337 return MachOObjectFile::create(Buffer, false, true, UniversalCputype, in createMachOObjectFile()
5340 return MachOObjectFile::create(Buffer, true, true, UniversalCputype, in createMachOObjectFile()
5346 StringRef MachOObjectFile::mapDebugSectionName(StringRef Name) const { in mapDebugSectionName()
5353 MachOObjectFile::findDsymObjectMembers(StringRef Path) { in findDsymObjectMembers()
5396 MachOObjectFile::mapReflectionSectionNameToEnumValue( in mapReflectionSectionNameToEnumValue()
5407 bool MachOObjectFile::isMachOPairedReloc(uint64_t RelocType, uint64_t Arch) { in isMachOPairedReloc()