Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DSectCreate.h34 ObjectLinkingLayer &ObjLinkingLayer, std::string SectName, MemProt MP,
38 ObjLinkingLayer(ObjLinkingLayer), SectName(std::move(SectName)), MP(MP), in MaterializationUnit()
52 std::string SectName; variable
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOObject.cpp17 Section::Section(StringRef SegName, StringRef SectName) in Section()
18 : Segname(SegName), Sectname(SectName), in Section()
19 CanonicalName((Twine(SegName) + Twine(',') + SectName).str()) {}
21 Section::Section(StringRef SegName, StringRef SectName, StringRef Content) in Section()
22 : Segname(SegName), Sectname(SectName), in Section()
23 CanonicalName((Twine(SegName) + Twine(',') + SectName).str()), in Section()
16 Section(StringRef SegName,StringRef SectName) Section() argument
20 Section(StringRef SegName,StringRef SectName,StringRef Content) Section() argument
H A DMachOObject.h59 Section(StringRef SegName, StringRef SectName);
61 Section(StringRef SegName, StringRef SectName, StringRef Content);
H A DMachOReader.cpp34 StringRef SectName(Sec.sectname, strnlen(Sec.sectname, sizeof(Sec.sectname))); in constructSectionCommon()
35 Section S(SegName, SectName); in constructSectionCommon()
33 StringRef SectName(Sec.sectname, strnlen(Sec.sectname, sizeof(Sec.sectname))); constructSectionCommon() local
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp138 memcpy(&NSec.SectName, &Sec64.sectname, 16); in createNormalizedSections()
139 NSec.SectName[16] = '\0'; in createNormalizedSections()
151 memcpy(&NSec.SectName, &Sec32.sectname, 16); in createNormalizedSections()
152 NSec.SectName[16] = '\0'; in createNormalizedSections()
164 dbgs() << " " << NSec.SegName << "," << NSec.SectName << ": " in createNormalizedSections()
190 G->allocateContent(StringRef(NSec.SegName) + "," + NSec.SectName); in createNormalizedSections()
226 Cur.SectName, Cur.Address, Cur.Address + Cur.Size) + in createNormalizedSections()
227 "overlaps section \"" + Next.SegName + "/" + Next.SectName + "\"" + in createNormalizedSections()
229 Next.SectName, Next.Address, Next.Address + Next.Size)); in createNormalizedSections()
313 << NSec->SectName in createNormalizedSymbols()
[all...]
H A DMachO_x86_64.cpp252 << NSec->SegName << "/" << NSec->SectName in addRelocations()
269 dbgs() << " " << NSec->SectName << " + " in addRelocations()
H A DMachO_arm64.cpp261 << NSec->SegName << "/" << NSec->SectName in addRelocations()
282 dbgs() << " " << NSec->SectName << " + " in addRelocations()
H A DMachOLinkGraphBuilder.h65 // to be null-terminated, hence the extra bytes on SegName and SectName.
73 char SectName[17];
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DSectCreate.cpp20 "orc_sectcreate_" + SectName, in materialize()
24 auto &Sect = G->createSection(SectName, MP); in materialize()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DObjectFileTransformer.cpp41 StringRef SectName(*SectNameOrErr); in getUUID() local
42 if (SectName != GNUBuildID) in getUUID()
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/
H A DDylibReader.cpp222 auto SectName = Sect.getName(); in readMachOHeader() local
223 if (!SectName) in readMachOHeader()
224 return SectName.takeError(); in readMachOHeader()
225 if (*SectName != "__objc_imageinfo" && *SectName != "__image_info") in readMachOHeader()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp1734 StringRef SectName; in DumpLiteralPointerSection() local
1737 SectName = *SectNameOrErr; in DumpLiteralPointerSection()
1743 outs() << SegmentName << ":" << SectName << ":"; in DumpLiteralPointerSection()
1944 StringRef SectName; in DumpSectionContents() local
1947 SectName = *SecNameOrErr; in DumpSectionContents()
1957 (SectName == DumpSectName)) { in DumpSectionContents()
1977 outs() << "Contents of (" << SegName << "," << SectName in DumpSectionContents()
1983 DisassembleMachO(Filename, O, SegName, SectName); in DumpSectionContents()
1986 if (SegName == "__TEXT" && SectName == "__info_plist") { in DumpSectionContents()
1990 if (SegName == "__OBJC" && SectName == "__protocol") { in DumpSectionContents()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp327 StringRef SectName(Sec.sectname, in writeSectionData()
331 if (Obj.DWARF.getNonEmptySectionNames().count(SectName.substr(2))) { in writeSectionData()
334 "cannot specify section '" + SectName + in writeSectionData()
337 auto EmitFunc = DWARFYAML::getDWARFEmitterByName(SectName.substr(2)); in writeSectionData()
326 StringRef SectName(Sec.sectname, writeSectionData() local
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp239 std::string SectName; in getInstrProfSectionName() local
242 SectName = InstrProfSectNamePrefix[IPSK]; in getInstrProfSectionName()
245 SectName += InstrProfSectNameCoff[IPSK]; in getInstrProfSectionName()
247 SectName += InstrProfSectNameCommon[IPSK]; in getInstrProfSectionName()
250 SectName += ",regular,live_support"; in getInstrProfSectionName()
252 return SectName; in getInstrProfSectionName()