Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/MachO/
H A DMachOObject.cpp16 Section::Section(StringRef SegName, StringRef SectName) in Section() argument
17 : Segname(SegName), Sectname(SectName), in Section()
18 CanonicalName((Twine(SegName) + Twine(',') + SectName).str()) {} in Section()
20 Section::Section(StringRef SegName, StringRef SectName, StringRef Content) in Section() argument
21 : Segname(SegName), Sectname(SectName), in Section()
22 CanonicalName((Twine(SegName) + Twine(',') + SectName).str()), in Section()
H A DMachOObject.h59 Section(StringRef SegName, StringRef SectName);
61 Section(StringRef SegName, StringRef SectName, StringRef Content);
H A DMachOReader.cpp33 StringRef SectName(Sec.sectname, strnlen(Sec.sectname, sizeof(Sec.sectname))); in constructSectionCommon() local
34 Section S(SegName, SectName); in constructSectionCommon()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A 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 …]
H A DMachO_x86_64.cpp230 << NSec->SegName << "/" << NSec->SectName in addRelocations()
247 dbgs() << " " << NSec->SectName << " + " in addRelocations()
H A DMachO_arm64.cpp239 << NSec->SegName << "/" << NSec->SectName in addRelocations()
260 dbgs() << " " << NSec->SectName << " + " in addRelocations()
H A DMachOLinkGraphBuilder.h73 char SectName[17];
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/GSYM/
H A DObjectFileTransformer.cpp40 StringRef SectName(*SectNameOrErr); in getUUID() local
41 if (SectName != GNUBuildID) in getUUID()
/openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/
H A 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/
H A 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/
H A 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/
H A DMachOPlatform.h107 static bool isInitializerSection(StringRef SegName, StringRef SectName);
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp402 StringRef SectName) { in isInitializerSection() argument
404 if (Name.startswith(SegName) && Name.substr(7) == SectName) in isInitializerSection()