Home
last modified time | relevance | path

Searched refs:ELFWriter (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp73 struct ELFWriter;
80 ELFWriter &EWriter;
102 struct ELFWriter { struct
272 friend struct ELFWriter;
286 return ELFWriter(*this, OS, IsLittleEndian, ELFWriter::AllSections) in writeObject()
290 friend struct ELFWriter;
319 uint64_t Size = ELFWriter(*this, OS, IsLittleEndian, ELFWriter::NonDwoOnly) in writeObject()
321 Size += ELFWriter(*this, DwoOS, IsLittleEndian, ELFWriter::DwoOnly) in writeObject()
391 bool ELFWriter::is64Bit() const { in is64Bit()
602 void ELFWriter::computeSymbolTable( in computeSymbolTable()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp1986 template <class ELFT> void ELFWriter<ELFT>::writeEhdr() { in writeEhdr()
2043 template <class ELFT> void ELFWriter<ELFT>::writePhdrs() { in writePhdrs()
2048 template <class ELFT> void ELFWriter<ELFT>::writeShdrs() { in writeShdrs()
2108 ELFWriter<ELFT>::ELFWriter(Object &Obj, raw_ostream &Buf, bool WSH, in ELFWriter() function in ELFWriter
2372 template <class ELFT> void ELFWriter<ELFT>::assignOffsets() { in assignOffsets()
2416 template <class ELFT> Error ELFWriter<ELFT>::write() { in write()
2452 template <class ELFT> Error ELFWriter<ELFT>::finalize() { in finalize()
2723 template class ELFWriter<ELF64LE>; variable
2724 template class ELFWriter<ELF64BE>; variable
2725 template class ELFWriter<ELF32LE>; variable
[all …]
H A DELFObjcopy.cpp142 return std::make_unique<ELFWriter<ELF32LE>>(Obj, Out, !Config.StripSections, in createELFWriter()
145 return std::make_unique<ELFWriter<ELF64LE>>(Obj, Out, !Config.StripSections, in createELFWriter()
148 return std::make_unique<ELFWriter<ELF32BE>>(Obj, Out, !Config.StripSections, in createELFWriter()
151 return std::make_unique<ELFWriter<ELF64BE>>(Obj, Out, !Config.StripSections, in createELFWriter()
H A DObject.h321 template <class ELFT> class ELFWriter : public Writer {
346 virtual ~ELFWriter() {} in ~ELFWriter()
355 ELFWriter(Object &Obj, raw_ostream &Out, bool WSH, bool OnlyKeepDebug);