Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
DMachOLinkGraphBuilder.cpp136 memcpy(&NSec.SectName, &Sec64.sectname, 16); in createNormalizedSections()
137 NSec.SectName[16] = '\0'; in createNormalizedSections()
149 memcpy(&NSec.SectName, &Sec32.sectname, 16); in createNormalizedSections()
150 NSec.SectName[16] = '\0'; in createNormalizedSections()
162 dbgs() << " " << NSec.SegName << "," << NSec.SectName << ": " in createNormalizedSections()
188 G->allocateString(StringRef(NSec.SegName) + "," + NSec.SectName); in createNormalizedSections()
220 Cur.SectName, Cur.Address, Cur.Address + Cur.Size) + in createNormalizedSections()
221 "overlaps section \"" + Next.SegName + "/" + Next.SectName + "\"" + in createNormalizedSections()
223 Next.SectName, Next.Address, Next.Address + Next.Size)); in createNormalizedSections()
303 << NSec->SectName in createNormalizedSymbols()
[all …]
DMachO_x86_64.cpp230 << NSec->SegName << "/" << NSec->SectName in addRelocations()
247 dbgs() << " " << NSec->SectName << " + " in addRelocations()
DMachO_arm64.cpp239 << NSec->SegName << "/" << NSec->SectName in addRelocations()
260 dbgs() << " " << NSec->SectName << " + " in addRelocations()
DMachOLinkGraphBuilder.h73 char SectName[17];
/openbsd/src/gnu/llvm/llvm/lib/DebugInfo/GSYM/
DObjectFileTransformer.cpp40 StringRef SectName(*SectNameOrErr); in getUUID() local
41 if (SectName != GNUBuildID) in getUUID()
/openbsd/src/gnu/llvm/llvm/tools/llvm-objdump/
DMachODump.cpp1760 StringRef SectName; in DumpLiteralPointerSection() local
1763 SectName = *SectNameOrErr; in DumpLiteralPointerSection()
1769 outs() << SegmentName << ":" << SectName << ":"; in DumpLiteralPointerSection()
1977 StringRef SectName; in DumpSectionContents() local
1980 SectName = *SecNameOrErr; in DumpSectionContents()
1990 (SectName == DumpSectName)) { in DumpSectionContents()
2010 outs() << "Contents of (" << SegName << "," << SectName in DumpSectionContents()
2016 DisassembleMachO(Filename, O, SegName, SectName); in DumpSectionContents()
2019 if (SegName == "__TEXT" && SectName == "__info_plist") { in DumpSectionContents()
2023 if (SegName == "__OBJC" && SectName == "__protocol") { in DumpSectionContents()
[all …]
/openbsd/src/gnu/llvm/llvm/lib/ProfileData/
DInstrProf.cpp215 std::string SectName; in getInstrProfSectionName() local
218 SectName = InstrProfSectNamePrefix[IPSK]; in getInstrProfSectionName()
221 SectName += InstrProfSectNameCoff[IPSK]; in getInstrProfSectionName()
223 SectName += InstrProfSectNameCommon[IPSK]; in getInstrProfSectionName()
226 SectName += ",regular,live_support"; in getInstrProfSectionName()
228 return SectName; in getInstrProfSectionName()
/openbsd/src/gnu/llvm/llvm/lib/ObjectYAML/
DMachOEmitter.cpp326 StringRef SectName(Sec.sectname, in writeSectionData() local
330 if (Obj.DWARF.getNonEmptySectionNames().count(SectName.substr(2))) { in writeSectionData()
333 "cannot specify section '" + SectName + in writeSectionData()
336 auto EmitFunc = DWARFYAML::getDWARFEmitterByName(SectName.substr(2)); in writeSectionData()
/openbsd/src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
DMachOPlatform.h107 static bool isInitializerSection(StringRef SegName, StringRef SectName);
/openbsd/src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
DMachOPlatform.cpp402 StringRef SectName) { in isInitializerSection() argument
404 if (Name.startswith(SegName) && Name.substr(7) == SectName) in isInitializerSection()