Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp134 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 DMachOLinkGraphBuilder.h72 char SectName[17];
H A DMachO_x86_64.cpp226 << NSec.SegName << "/" << NSec.SectName in addRelocations()
245 dbgs() << " " << NSec.SectName << " + " in addRelocations()
H A DMachO_arm64.cpp207 << NSec.SegName << "/" << NSec.SectName in addRelocations()
230 dbgs() << " " << NSec.SectName << " + " in addRelocations()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DObjectFileTransformer.cpp40 StringRef SectName(*SectNameOrErr); in getUUID() local
41 if (SectName != GNUBuildID) in getUUID()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp1509 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 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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp178 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 DMachOPlatform.h124 static bool isInitializerSection(StringRef SegName, StringRef SectName);
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp260 StringRef SectName) { in isInitializerSection() argument
262 if (Name.startswith(SegName) && Name.substr(7) == SectName) in isInitializerSection()