Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-dwarfutil/
H A Dllvm-dwarfutil.cpp169 Expected<StringRef> SecData = Sec.getContents(); in setConfigToAddNewDebugSections() local
170 if (!SecData) in setConfigToAddNewDebugSections()
171 return SecData.takeError(); in setConfigToAddNewDebugSections()
174 *SecName, MemoryBuffer::getMemBuffer(*SecData, *SecName, false))); in setConfigToAddNewDebugSections()
/openbsd-src/gnu/llvm/llvm/include/llvm/DWARFLinker/
H A DDWARFStreamer.h83 void emitSectionContents(StringRef SecData, StringRef SecName) override;
H A DDWARFLinker.h94 virtual void emitSectionContents(StringRef SecData, StringRef SecName) = 0;
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h65 SecData = 1 << 6, enumerator
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/COFF/
H A DCOFFObjcopy.cpp123 if (AllFlags & SectionFlag::SecData) in flagsToCharacteristics()
/openbsd-src/gnu/llvm/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp195 void DwarfStreamer::emitSectionContents(StringRef SecData, StringRef SecName) { in emitSectionContents() argument
210 MS->emitBytes(SecData); in emitSectionContents()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DELFDumper.cpp3137 readMipsOptions(const uint8_t *SecBegin, ArrayRef<uint8_t> &SecData, in readMipsOptions() argument
3139 if (SecData.size() < sizeof(Elf_Mips_Options<ELFT>)) in readMipsOptions()
3141 Twine::utohexstr(SecData.size()) + ")"); in readMipsOptions()
3144 reinterpret_cast<const Elf_Mips_Options<ELFT> *>(SecData.data()); in readMipsOptions()
3146 if (Size > SecData.size()) { in readMipsOptions()
3147 const uint64_t Offset = SecData.data() - SecBegin; in readMipsOptions()
3148 const uint64_t SecSize = Offset + SecData.size(); in readMipsOptions()
3168 SecData = SecData.drop_front(Size); in readMipsOptions()
/openbsd-src/gnu/llvm/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp200 .CaseLower("data", SectionFlag::SecData) in parseSectionRenameFlag()