Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DSectCreate.h35 ObjectLinkingLayer &ObjLinkingLayer, std::string SectName, MemProt MP,
39 ObjLinkingLayer(ObjLinkingLayer), SectName(std::move(SectName)), MP(MP), in MaterializationUnit()
53 std::string SectName; variable
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOObject.cpp17 Section::Section(StringRef SegName, StringRef SectName) in Section() argument
18 : Segname(SegName), Sectname(SectName), in Section()
19 CanonicalName((Twine(SegName) + Twine(',') + SectName).str()) {} in Section()
21 Section::Section(StringRef SegName, StringRef SectName, StringRef Content) in Section() argument
22 : Segname(SegName), Sectname(SectName), in Section()
23 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()
/freebsd/contrib/llvm-project/llvm/lib/CGData/
H A DCodeGenData.cpp128 std::string SectName; in getCodeGenDataSectionName() local
131 SectName = CodeGenDataSectNamePrefix[CGSK]; in getCodeGenDataSectionName()
134 SectName += CodeGenDataSectNameCoff[CGSK]; in getCodeGenDataSectionName()
136 SectName += CodeGenDataSectNameCommon[CGSK]; in getCodeGenDataSectionName()
138 return SectName; in getCodeGenDataSectionName()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp130 memcpy(&NSec.SectName, &Sec64.sectname, 16); in createNormalizedSections()
131 NSec.SectName[16] = '\0'; in createNormalizedSections()
143 memcpy(&NSec.SectName, &Sec32.sectname, 16); in createNormalizedSections()
144 NSec.SectName[16] = '\0'; in createNormalizedSections()
156 dbgs() << " " << NSec.SegName << "," << NSec.SectName << ": " in createNormalizedSections()
182 G->allocateContent(StringRef(NSec.SegName) + "," + NSec.SectName); in createNormalizedSections()
218 Cur.SectName, Cur.Address, Cur.Address + Cur.Size) + in createNormalizedSections()
219 "overlaps section \"" + Next.SegName + "/" + Next.SectName + "\"" + in createNormalizedSections()
221 Next.SectName, Next.Address, Next.Address + Next.Size)); in createNormalizedSections()
305 << NSec->SectName in createNormalizedSymbols()
[all …]
H A DMachO_x86_64.cpp256 << NSec->SegName << "/" << NSec->SectName in addRelocations()
273 dbgs() << " " << NSec->SectName << " + " in addRelocations()
H A DMachO_arm64.cpp281 << NSec->SegName << "/" << NSec->SectName in addRelocations()
302 dbgs() << " " << NSec->SectName << " + " in addRelocations()
H A DMachOLinkGraphBuilder.h73 char SectName[17];
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DSectCreate.cpp20 "orc_sectcreate_" + SectName, in materialize()
25 auto &Sect = G->createSection(SectName, MP); in materialize()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DObjectFileTransformer.cpp39 StringRef SectName(*SectNameOrErr); in getUUID() local
40 if (SectName != GNUBuildID) in getUUID()
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/
H A DDylibReader.cpp221 auto SectName = Sect.getName(); in readMachOHeader() local
222 if (!SectName) in readMachOHeader()
223 return SectName.takeError(); in readMachOHeader()
224 if (*SectName != "__objc_imageinfo" && *SectName != "__image_info") in readMachOHeader()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp1730 StringRef SectName; in DumpLiteralPointerSection() local
1733 SectName = *SectNameOrErr; in DumpLiteralPointerSection()
1739 outs() << SegmentName << ":" << SectName << ":"; in DumpLiteralPointerSection()
1940 StringRef SectName; in DumpSectionContents() local
1943 SectName = *SecNameOrErr; in DumpSectionContents()
1953 (SectName == DumpSectName)) { in DumpSectionContents()
1973 outs() << "Contents of (" << SegName << "," << SectName in DumpSectionContents()
1979 DisassembleMachO(Filename, O, SegName, SectName); in DumpSectionContents()
1982 if (SegName == "__TEXT" && SectName == "__info_plist") { in DumpSectionContents()
1986 if (SegName == "__OBJC" && SectName == "__protocol") { in DumpSectionContents()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp325 StringRef SectName(Sec.sectname, in writeSectionData() local
329 if (Obj.DWARF.getNonEmptySectionNames().count(SectName.substr(2))) { in writeSectionData()
332 "cannot specify section '" + SectName + in writeSectionData()
335 auto EmitFunc = DWARFYAML::getDWARFEmitterByName(SectName.substr(2)); in writeSectionData()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp241 std::string SectName; in getInstrProfSectionName() local
244 SectName = InstrProfSectNamePrefix[IPSK]; in getInstrProfSectionName()
247 SectName += InstrProfSectNameCoff[IPSK]; in getInstrProfSectionName()
249 SectName += InstrProfSectNameCommon[IPSK]; in getInstrProfSectionName()
252 SectName += ",regular,live_support"; in getInstrProfSectionName()
254 return SectName; in getInstrProfSectionName()