Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp123 memcpy(&NSec.SectName, &Sec64.sectname, 16); in createNormalizedSections()
124 NSec.SectName[16] = '\0'; in createNormalizedSections()
136 memcpy(&NSec.SectName, &Sec32.sectname, 16); in createNormalizedSections()
137 NSec.SectName[16] = '\0'; in createNormalizedSections()
149 dbgs() << " " << NSec.SegName << "," << NSec.SectName << ": " in createNormalizedSections()
183 G->allocateString(StringRef(NSec.SegName) + "," + NSec.SectName); in createNormalizedSections()
189 dbgs() << " " << NSec.SegName << "," << NSec.SectName in createNormalizedSections()
221 Cur.SectName, Cur.Address, Cur.Address + Cur.Size) + in createNormalizedSections()
222 "overlaps section \"" + Next.SegName + "/" + Next.SectName + "\"" + in createNormalizedSections()
224 Next.SectName, Next.Address, Next.Address + Next.Size)); in createNormalizedSections()
[all …]
H A DMachO_x86_64.cpp226 << NSec.SegName << "/" << NSec.SectName in addRelocations()
245 dbgs() << " " << NSec.SectName << " + " in addRelocations()
H A DMachOLinkGraphBuilder.h72 char SectName[17];
H A DMachO_arm64.cpp207 << NSec.SegName << "/" << NSec.SectName in addRelocations()
230 dbgs() << " " << NSec.SectName << " + " in addRelocations()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
H A DObject.h60 Section(StringRef SegName, StringRef SectName) in Section()
61 : Segname(std::string(SegName)), Sectname(std::string(SectName)), in Section()
62 CanonicalName((Twine(SegName) + Twine(',') + SectName).str()) {} in Section()
64 Section(StringRef SegName, StringRef SectName, StringRef Content) in Section()
65 : Segname(std::string(SegName)), Sectname(std::string(SectName)), in Section()
66 CanonicalName((Twine(SegName) + Twine(',') + SectName).str()), in Section()
H A DMachOReader.cpp33 StringRef SectName(Sec.sectname, strnlen(Sec.sectname, sizeof(Sec.sectname))); in constructSectionCommon() local
34 Section S(SegName, SectName); in constructSectionCommon()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
H A DObjectFileTransformer.cpp40 StringRef SectName(*SectNameOrErr); in getUUID() local
41 if (SectName != GNUBuildID) in getUUID()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DMachODump.cpp1509 StringRef SectName; in DumpLiteralPointerSection() local
1512 SectName = *SectNameOrErr; in DumpLiteralPointerSection()
1518 outs() << SegmentName << ":" << SectName << ":"; in DumpLiteralPointerSection()
1726 StringRef SectName; in DumpSectionContents() local
1729 SectName = *SecNameOrErr; in DumpSectionContents()
1739 (SectName == DumpSectName)) { in DumpSectionContents()
1759 outs() << "Contents of (" << SegName << "," << SectName in DumpSectionContents()
1765 DisassembleMachO(Filename, O, SegName, SectName); in DumpSectionContents()
1768 if (SegName == "__TEXT" && SectName == "__info_plist") { in DumpSectionContents()
1772 if (SegName == "__OBJC" && SectName == "__protocol") { in DumpSectionContents()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp287 StringRef SectName(Sec.sectname, in writeSectionData() local
291 if (Obj.DWARF.getNonEmptySectionNames().count(SectName.substr(2))) { in writeSectionData()
294 "cannot specify section '" + SectName + in writeSectionData()
297 auto EmitFunc = DWARFYAML::getDWARFEmitterByName(SectName.substr(2)); in writeSectionData()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DInstrProf.cpp177 std::string SectName; in getInstrProfSectionName() local
180 SectName = InstrProfSectNamePrefix[IPSK]; in getInstrProfSectionName()
183 SectName += InstrProfSectNameCoff[IPSK]; in getInstrProfSectionName()
185 SectName += InstrProfSectNameCommon[IPSK]; in getInstrProfSectionName()
188 SectName += ",regular,live_support"; in getInstrProfSectionName()
190 return SectName; in getInstrProfSectionName()