Home
last modified time | relevance | path

Searched refs:SectName (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DObjectFile.cpp72 StringRef SectName; in isSectionBitcode() local
73 if (!getSectionName(Sec, SectName)) in isSectionBitcode()
74 return SectName == ".llvmbc"; in isSectionBitcode()
DMachOObjectFile.cpp2001 StringRef SectName; in isSectionBitcode() local
2002 if (!getSectionName(Sec, SectName)) in isSectionBitcode()
2003 return (SegmentName == "__LLVM" && SectName == "__bitcode"); in isSectionBitcode()
/external/llvm/lib/Object/
DObjectFile.cpp62 StringRef SectName; in isSectionBitcode() local
63 if (!getSectionName(Sec, SectName)) in isSectionBitcode()
64 return SectName == ".llvmbc"; in isSectionBitcode()
DMachOObjectFile.cpp711 StringRef SectName; in isSectionBitcode() local
712 if (!getSectionName(Sec, SectName)) in isSectionBitcode()
713 return (SegmentName == "__LLVM" && SectName == "__bitcode"); in isSectionBitcode()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/
DMachODump.cpp319 StringRef SectName; in getSectionsAndSymbols() local
320 Section.getName(SectName); in getSectionsAndSymbols()
697 StringRef SectName; in PrintRelocationEntries() local
698 if (O->getSectionName(DRI, SectName)) in PrintRelocationEntries()
701 outs() << "(" << SegName << "," << SectName << ")\n"; in PrintRelocationEntries()
754 StringRef SectName; in PrintRelocations() local
755 if (O->getSectionName(DRI, SectName)) in PrintRelocations()
760 << SectName << format(") %u entries", Sec.nreloc); in PrintRelocations()
775 StringRef SectName; in PrintRelocations() local
776 if (O->getSectionName(DRI, SectName)) in PrintRelocations()
[all …]
/external/llvm/tools/llvm-objdump/
DMachODump.cpp313 StringRef SectName; in getSectionsAndSymbols() local
314 Section.getName(SectName); in getSectionsAndSymbols()
896 StringRef SectName; in DumpLiteralPointerSection() local
897 Sect->getName(SectName); in DumpLiteralPointerSection()
900 outs() << SegmentName << ":" << SectName << ":"; in DumpLiteralPointerSection()
1077 StringRef SectName; in DumpSectionContents() local
1078 Section.getName(SectName); in DumpSectionContents()
1082 (SectName == DumpSectName)) { in DumpSectionContents()
1101 outs() << "Contents of (" << SegName << "," << SectName in DumpSectionContents()
1107 DisassembleMachO(Filename, O, SegName, SectName); in DumpSectionContents()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
DInstrProf.cpp168 std::string SectName; in getInstrProfSectionName() local
171 SectName = InstrProfSectNamePrefix[IPSK]; in getInstrProfSectionName()
174 SectName += InstrProfSectNameCoff[IPSK]; in getInstrProfSectionName()
176 SectName += InstrProfSectNameCommon[IPSK]; in getInstrProfSectionName()
179 SectName += ",regular,live_support"; in getInstrProfSectionName()
181 return SectName; in getInstrProfSectionName()