| /freebsd-14.2/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOObject.cpp | 17 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 D | MachOObject.h | 59 Section(StringRef SegName, StringRef SectName); 61 Section(StringRef SegName, StringRef SectName, StringRef Content);
|
| H A D | MachOReader.cpp | 34 StringRef SectName(Sec.sectname, strnlen(Sec.sectname, sizeof(Sec.sectname))); in constructSectionCommon() local 35 Section S(SegName, SectName); in constructSectionCommon()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | MachOLinkGraphBuilder.cpp | 138 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 D | MachO_arm64.cpp | 260 << NSec->SegName << "/" << NSec->SectName in addRelocations() 281 dbgs() << " " << NSec->SectName << " + " in addRelocations()
|
| H A D | MachO_x86_64.cpp | 251 << NSec->SegName << "/" << NSec->SectName in addRelocations() 268 dbgs() << " " << NSec->SectName << " + " in addRelocations()
|
| H A D | MachOLinkGraphBuilder.h | 73 char SectName[17];
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/ |
| H A D | DylibReader.cpp | 220 auto SectName = Sect.getName(); in readMachOHeader() local 221 if (!SectName) in readMachOHeader() 222 return SectName.takeError(); in readMachOHeader() 223 if (*SectName != "__objc_imageinfo" && *SectName != "__image_info") in readMachOHeader()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
| H A D | ObjectFileTransformer.cpp | 40 StringRef SectName(*SectNameOrErr); in getUUID() local 41 if (SectName != GNUBuildID) in getUUID()
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | MachODump.cpp | 1734 StringRef SectName; in DumpLiteralPointerSection() local 1944 StringRef SectName; in DumpSectionContents() local 2042 StringRef SectName; in DumpInfoPlistSectionContents() local 4299 StringRef SectName; in get_section() local 4321 StringRef SectName; in walk_pointer_list_64() local 6049 StringRef SectName; in print_message_refs64() local 6117 StringRef SectName; in print_message_refs32() local 6168 StringRef SectName; in print_image_info64() local 6230 StringRef SectName; in print_image_info32() local 6285 StringRef SectName; in print_image_info() local [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | MachOEmitter.cpp | 327 StringRef SectName(Sec.sectname, in writeSectionData() local 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()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | InstrProf.cpp | 225 std::string SectName; in getInstrProfSectionName() local 228 SectName = InstrProfSectNamePrefix[IPSK]; in getInstrProfSectionName() 231 SectName += InstrProfSectNameCoff[IPSK]; in getInstrProfSectionName() 233 SectName += InstrProfSectNameCommon[IPSK]; in getInstrProfSectionName() 236 SectName += ",regular,live_support"; in getInstrProfSectionName() 238 return SectName; in getInstrProfSectionName()
|