| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/ |
| H A D | Object.h | 60 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 D | MachOReader.cpp | 33 StringRef SectName(Sec.sectname, strnlen(Sec.sectname, sizeof(Sec.sectname))); in constructSectionCommon() local 34 Section S(SegName, SectName); in constructSectionCommon()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | MachOLinkGraphBuilder.cpp | 134 memcpy(&NSec.SectName, &Sec64.sectname, 16); in createNormalizedSections() 135 NSec.SectName[16] = '\0'; in createNormalizedSections() 147 memcpy(&NSec.SectName, &Sec32.sectname, 16); in createNormalizedSections() 148 NSec.SectName[16] = '\0'; in createNormalizedSections() 160 dbgs() << " " << NSec.SegName << "," << NSec.SectName << ": " in createNormalizedSections() 189 G->allocateString(StringRef(NSec.SegName) + "," + NSec.SectName); in createNormalizedSections() 195 dbgs() << " " << NSec.SegName << "," << NSec.SectName in createNormalizedSections() 227 Cur.SectName, Cur.Address, Cur.Address + Cur.Size) + in createNormalizedSections() 230 Next.SectName, Next.Address, Next.Address + Next.Size)); in createNormalizedSections() 308 << NSec->SectName in createNormalizedSymbols() [all …]
|
| H A D | MachOLinkGraphBuilder.h | 72 char SectName[17];
|
| H A D | MachO_x86_64.cpp | 226 << NSec.SegName << "/" << NSec.SectName in addRelocations() 245 dbgs() << " " << NSec.SectName << " + " in addRelocations()
|
| H A D | MachO_arm64.cpp | 207 << NSec.SegName << "/" << NSec.SectName in addRelocations() 230 dbgs() << " " << NSec.SectName << " + " in addRelocations()
|
| /freebsd-13.1/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-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | MachODump.cpp | 1509 StringRef SectName; in DumpLiteralPointerSection() local 1726 StringRef SectName; in DumpSectionContents() local 1831 StringRef SectName; in DumpInfoPlistSectionContents() local 4080 StringRef SectName; in get_section() local 4102 StringRef SectName; in walk_pointer_list_64() local 5830 StringRef SectName; in print_message_refs64() local 5898 StringRef SectName; in print_message_refs32() local 5949 StringRef SectName; in print_image_info64() local 6011 StringRef SectName; in print_image_info32() local 6066 StringRef SectName; in print_image_info() local [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | MachOEmitter.cpp | 287 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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | InstrProf.cpp | 178 std::string SectName; in getInstrProfSectionName() local 181 SectName = InstrProfSectNamePrefix[IPSK]; in getInstrProfSectionName() 184 SectName += InstrProfSectNameCoff[IPSK]; in getInstrProfSectionName() 186 SectName += InstrProfSectNameCommon[IPSK]; in getInstrProfSectionName() 189 SectName += ",regular,live_support"; in getInstrProfSectionName() 191 return SectName; in getInstrProfSectionName()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | MachOPlatform.h | 124 static bool isInitializerSection(StringRef SegName, StringRef SectName);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | MachOPlatform.cpp | 260 StringRef SectName) { in isInitializerSection() argument 262 if (Name.startswith(SegName) && Name.substr(7) == SectName) in isInitializerSection()
|