| /llvm-project-15.0.7/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOObject.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()
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | MachOLinkGraphBuilder.cpp | 132 memcpy(&NSec.SectName, &Sec64.sectname, 16); in createNormalizedSections() 133 NSec.SectName[16] = '\0'; in createNormalizedSections() 145 memcpy(&NSec.SectName, &Sec32.sectname, 16); in createNormalizedSections() 146 NSec.SectName[16] = '\0'; in createNormalizedSections() 158 dbgs() << " " << NSec.SegName << "," << NSec.SectName << ": " in createNormalizedSections() 184 G->allocateString(StringRef(NSec.SegName) + "," + NSec.SectName); in createNormalizedSections() 216 Cur.SectName, Cur.Address, Cur.Address + Cur.Size) + in createNormalizedSections() 217 "overlaps section \"" + Next.SegName + "/" + Next.SectName + "\"" + in createNormalizedSections() 219 Next.SectName, Next.Address, Next.Address + Next.Size)); in createNormalizedSections() 299 << 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 | 72 char SectName[17];
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/GSYM/ |
| H A D | ObjectFileTransformer.cpp | 40 StringRef SectName(*SectNameOrErr); in getUUID() local 41 if (SectName != GNUBuildID) in getUUID()
|
| /llvm-project-15.0.7/llvm/tools/llvm-objdump/ |
| H A D | MachODump.cpp | 1529 StringRef SectName; in DumpLiteralPointerSection() local 1746 StringRef SectName; in DumpSectionContents() local 1851 StringRef SectName; in DumpInfoPlistSectionContents() local 4103 StringRef SectName; in get_section() local 4125 StringRef SectName; in walk_pointer_list_64() local 5853 StringRef SectName; in print_message_refs64() local 5921 StringRef SectName; in print_message_refs32() local 5972 StringRef SectName; in print_image_info64() local 6034 StringRef SectName; in print_image_info32() local 6089 StringRef SectName; in print_image_info() local [all …]
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/llvm/lib/ObjectYAML/ |
| H A D | MachOEmitter.cpp | 317 StringRef SectName(Sec.sectname, in writeSectionData() local 321 if (Obj.DWARF.getNonEmptySectionNames().count(SectName.substr(2))) { in writeSectionData() 324 "cannot specify section '" + SectName + in writeSectionData() 327 auto EmitFunc = DWARFYAML::getDWARFEmitterByName(SectName.substr(2)); in writeSectionData()
|
| /llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | MachOPlatform.h | 107 static bool isInitializerSection(StringRef SegName, StringRef SectName);
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/ |
| H A D | MachOPlatform.cpp | 316 StringRef SectName) { in isInitializerSection() argument 318 if (Name.startswith(SegName) && Name.substr(7) == SectName) in isInitializerSection()
|