| /openbsd-src/gnu/llvm/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOObject.cpp | 16 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 D | MachOObject.h | 59 Section(StringRef SegName, StringRef SectName); 61 Section(StringRef SegName, StringRef SectName, StringRef Content);
|
| H A D | MachOReader.cpp | 33 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 D | MachOLinkGraphBuilder.cpp | 136 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 D | MachO_x86_64.cpp | 230 << NSec->SegName << "/" << NSec->SectName in addRelocations() 247 dbgs() << " " << NSec->SectName << " + " in addRelocations()
|
| H A D | MachO_arm64.cpp | 239 << NSec->SegName << "/" << NSec->SectName in addRelocations() 260 dbgs() << " " << NSec->SectName << " + " in addRelocations()
|
| H A D | MachOLinkGraphBuilder.h | 73 char SectName[17];
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/GSYM/ |
| H A D | ObjectFileTransformer.cpp | 40 StringRef SectName(*SectNameOrErr); in getUUID() local 41 if (SectName != GNUBuildID) in getUUID()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/ |
| H A D | MachODump.cpp | 1760 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 D | InstrProf.cpp | 215 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 D | MachOEmitter.cpp | 326 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 D | MachOPlatform.h | 107 static bool isInitializerSection(StringRef SegName, StringRef SectName);
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/ |
| H A D | MachOPlatform.cpp | 402 StringRef SectName) { in isInitializerSection() argument 404 if (Name.startswith(SegName) && Name.substr(7) == SectName) in isInitializerSection()
|