Searched refs:FileWriter (Results 1 - 16 of 16) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DFileWriter.cpp1 //===- FileWriter.cpp -------------------------------------------*- C++ -*-===//
9 #include "llvm/DebugInfo/GSYM/FileWriter.h"
17 FileWriter::~FileWriter() { OS.flush(); }
19 void FileWriter::writeSLEB(int64_t S) {
26 void FileWriter::writeULEB(uint64_t U) {
33 void FileWriter::writeU8(uint8_t U) {
37 void FileWriter::writeU16(uint16_t U) {
42 void FileWriter::writeU32(uint32_t U) {
47 void FileWriter
[all...]
H A DExtractRanges.cpp10 #include "llvm/DebugInfo/GSYM/FileWriter.h"
18 void encodeRange(const AddressRange &Range, FileWriter &O, uint64_t BaseAddr) {
33 void encodeRanges(const AddressRanges &Ranges, FileWriter &O,
H A DHeader.cpp10 #include "llvm/DebugInfo/GSYM/FileWriter.h"
85 llvm::Error Header::encode(FileWriter &O) const {
H A DFunctionInfo.cpp10 #include "llvm/DebugInfo/GSYM/FileWriter.h"
104 FileWriter FW(OutStrm, llvm::endianness::native);
114 llvm::Expected<uint64_t> FunctionInfo::encode(FileWriter &Out) const {
H A DInlineInfo.cpp10 #include "llvm/DebugInfo/GSYM/FileWriter.h"
229 llvm::Error InlineInfo::encode(FileWriter &O, uint64_t BaseAddr) const {
H A DGsymCreator.cpp9 #include "llvm/DebugInfo/GSYM/FileWriter.h"
72 FileWriter O(OutStrm, ByteOrder);
76 llvm::Error GsymCreator::encode(FileWriter &O) const {
H A DLineTable.cpp10 #include "llvm/DebugInfo/GSYM/FileWriter.h"
122 llvm::Error LineTable::encode(FileWriter &Out, uint64_t BaseAddr) const {
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DFileWriter.h1 //===- FileWriter.h ---------------------------------------------*- C++ -*-===//
29 class FileWriter { class in namespace:llvm::gsym
34 FileWriter(llvm::raw_pwrite_stream &S, llvm::endianness B) function in class:llvm::gsym::FileWriter
36 ~FileWriter();
120 FileWriter(const FileWriter &rhs) = delete;
121 void operator=(const FileWriter &rhs) = delete;
H A DHeader.h22 class FileWriter;
113 /// Encode this object into FileWriter stream.
120 llvm::Error encode(FileWriter &O) const;
H A DExtractRanges.h28 class FileWriter;
41 void encodeRange(const AddressRange &Range, FileWriter &O, uint64_t BaseAddr);
58 void encodeRanges(const AddressRanges &Ranges, FileWriter &O,
H A DLineTable.h21 class FileWriter;
156 /// Encode this LineTable object into FileWriter stream.
166 llvm::Error encode(FileWriter &O, uint64_t BaseAddr) const;
H A DGsymCreator.h30 class FileWriter;
317 llvm::Error encode(FileWriter &O) const;
H A DInlineInfo.h153 /// Encode this InlineInfo object into FileWriter stream.
166 llvm::Error encode(FileWriter &O, uint64_t BaseAddr) const;
H A DFunctionInfo.h138 /// Encode this object into FileWriter stream.
145 llvm::Expected<uint64_t> encode(FileWriter &O) const;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingWriter.c55 static void llvmInitBufferIO(ProfBufferIO *BufferIO, ProfDataWriter *FileWriter, argument
57 BufferIO->FileWriter = FileWriter;
65 lprofCreateBufferIO(ProfDataWriter *FileWriter) { argument
72 llvmInitBufferIO(&TheBufferIO, FileWriter, Buffer, BufferSize);
78 FreeHook(BufferIO->FileWriter);
96 if (BufferIO->FileWriter->Write(BufferIO->FileWriter, IO, 1))
114 if (BufferIO->FileWriter->Write(BufferIO->FileWriter, I
[all...]
H A DInstrProfilingInternal.h72 ProfDataWriter *FileWriter; member in struct:ProfBufferIO
88 ProfBufferIO *lprofCreateBufferIO(ProfDataWriter *FileWriter);

Completed in 135 milliseconds