Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfutil/
H A Dllvm-dwarfutil.cpp174 Expected<StringRef> SecData = Sec.getContents(); in setConfigToAddNewDebugSections()
175 if (!SecData) in setConfigToAddNewDebugSections()
176 return SecData.takeError(); in setConfigToAddNewDebugSections()
179 *SecName, MemoryBuffer::getMemBuffer(*SecData, *SecName, false))); in setConfigToAddNewDebugSections()
181 Expected<StringRef> SecData = Sec.getContents(); setConfigToAddNewDebugSections() local
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinkerParallel/
H A DDWARFLinker.h
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinkerParallel/
H A DDWARFEmitterImpl.h
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h58 SecData = 1 << 6, enumerator
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFStreamer.h
H A DDWARFLinker.h
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFStreamer.h82 void emitSectionContents(StringRef SecData,
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/COFF/
H A DCOFFObjcopy.cpp124 if (AllFlags & SectionFlag::SecData) in flagsToCharacteristics()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFStreamer.cpp227 void DwarfStreamer::emitSectionContents(StringRef SecData, in emitSectionContents() argument
229 if (SecData.empty()) in emitSectionContents()
235 MS->emitBytes(SecData); in emitSectionContents()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp3352 readMipsOptions(const uint8_t *SecBegin, ArrayRef<uint8_t> &SecData, in readMipsOptions() argument
3354 if (SecData.size() < sizeof(Elf_Mips_Options<ELFT>)) in readMipsOptions()
3356 Twine::utohexstr(SecData.size()) + ")"); in readMipsOptions()
3359 reinterpret_cast<const Elf_Mips_Options<ELFT> *>(SecData.data()); in readMipsOptions()
3361 if (Size > SecData.size()) { in readMipsOptions()
3362 const uint64_t Offset = SecData.data() - SecBegin; in readMipsOptions()
3363 const uint64_t SecSize = Offset + SecData.size(); in readMipsOptions()
3383 SecData = SecData.drop_front(Size); in readMipsOptions()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp165 .CaseLower("data", SectionFlag::SecData) in parseSectionRenameFlag()