Home
last modified time | relevance | path

Searched refs:SectionWriter (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DPDBStringTableBuilder.cpp192 BinaryStreamWriter SectionWriter; in commit() local
194 std::tie(SectionWriter, Writer) = Writer.split(sizeof(PDBStringTableHeader)); in commit()
195 if (auto EC = writeHeader(SectionWriter)) in commit()
198 std::tie(SectionWriter, Writer) = in commit()
200 if (auto EC = writeStrings(SectionWriter)) in commit()
203 std::tie(SectionWriter, Writer) = Writer.split(calculateHashTableSize()); in commit()
204 if (auto EC = writeHashTable(SectionWriter)) in commit()
207 std::tie(SectionWriter, Writer) = Writer.split(sizeof(uint32_t)); in commit()
208 if (auto EC = writeEpilogue(SectionWriter)) in commit()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
DObject.h82 class SectionWriter : public SectionVisitor {
87 virtual ~SectionWriter(){}; in ~SectionWriter()
99 explicit SectionWriter(Buffer &Buf) : Out(Buf) {} in SectionWriter() function
102 template <class ELFT> class ELFSectionWriter : public SectionWriter {
116 explicit ELFSectionWriter(Buffer &Buf) : SectionWriter(Buf) {} in ELFSectionWriter()
120 friend class SectionWriter; \
123 class BinarySectionWriter : public SectionWriter {
133 explicit BinarySectionWriter(Buffer &Buf) : SectionWriter(Buf) {} in BinarySectionWriter()
DObject.cpp125 void SectionWriter::visit(const Section &Sec) { in visit()
134 void SectionWriter::visit(const OwnedDataSection &Sec) { in visit()
154 void SectionWriter::visit(const StringTableSection &Sec) { in visit()
445 void SectionWriter::visit(const DynamicRelocationSection &Sec) { in visit()