LLVM 20.0.0git
|
Provides write only access to a subclass of WritableBinaryStream
.
More...
#include "llvm/Support/BinaryStreamWriter.h"
Public Member Functions | |
BinaryStreamWriter ()=default | |
BinaryStreamWriter (WritableBinaryStreamRef Ref) | |
BinaryStreamWriter (WritableBinaryStream &Stream) | |
BinaryStreamWriter (MutableArrayRef< uint8_t > Data, llvm::endianness Endian) | |
BinaryStreamWriter (const BinaryStreamWriter &Other)=default | |
BinaryStreamWriter & | operator= (const BinaryStreamWriter &Other)=default |
virtual | ~BinaryStreamWriter ()=default |
Error | writeBytes (ArrayRef< uint8_t > Buffer) |
Write the bytes specified in Buffer to the underlying stream. | |
template<typename T > | |
Error | writeInteger (T Value) |
Write the integer Value to the underlying stream in the specified endianness. | |
template<typename T > | |
Error | writeEnum (T Num) |
Similar to writeInteger. | |
Error | writeULEB128 (uint64_t Value) |
Write the unsigned integer Value to the underlying stream using ULEB128 encoding. | |
Error | writeSLEB128 (int64_t Value) |
Write the unsigned integer Value to the underlying stream using ULEB128 encoding. | |
Error | writeCString (StringRef Str) |
Write the string Str to the underlying stream followed by a null terminator. | |
Error | writeFixedString (StringRef Str) |
Write the string Str to the underlying stream without a null terminator. | |
Error | writeStreamRef (BinaryStreamRef Ref) |
Efficiently reads all data from Ref , and writes it to this stream. | |
Error | writeStreamRef (BinaryStreamRef Ref, uint64_t Size) |
Efficiently reads Size bytes from Ref , and writes it to this stream. | |
template<typename T > | |
Error | writeObject (const T &Obj) |
Writes the object Obj to the underlying stream, as if by using memcpy. | |
template<typename T > | |
Error | writeArray (ArrayRef< T > Array) |
Writes an array of objects of type T to the underlying stream, as if by using memcpy. | |
template<typename T , typename U > | |
Error | writeArray (VarStreamArray< T, U > Array) |
Writes all data from the array Array to the underlying stream. | |
template<typename T > | |
Error | writeArray (FixedStreamArray< T > Array) |
Writes all elements from the array Array to the underlying stream. | |
std::pair< BinaryStreamWriter, BinaryStreamWriter > | split (uint64_t Off) const |
Splits the Writer into two Writers at a given offset. | |
void | setOffset (uint64_t Off) |
uint64_t | getOffset () const |
uint64_t | getLength () const |
uint64_t | bytesRemaining () const |
Error | padToAlignment (uint32_t Align) |
Protected Attributes | |
WritableBinaryStreamRef | Stream |
uint64_t | Offset = 0 |
Provides write only access to a subclass of WritableBinaryStream
.
Provides bounds checking and helpers for writing certain common data types such as null-terminated strings, integers in various flavors of endianness, etc. Can be subclassed to provide reading and writing of custom datatypes, although no methods are overridable.
Definition at line 30 of file BinaryStreamWriter.h.
|
default |
|
explicit |
Definition at line 18 of file BinaryStreamWriter.cpp.
|
explicit |
Definition at line 21 of file BinaryStreamWriter.cpp.
|
explicit |
Definition at line 24 of file BinaryStreamWriter.cpp.
References Endian.
|
default |
|
virtualdefault |
|
inline |
Definition at line 179 of file BinaryStreamWriter.h.
References getLength(), and getOffset().
Referenced by llvm::pdb::InfoStreamBuilder::commit(), llvm::pdb::DbiStreamBuilder::commit(), commitFpm(), llvm::pdb::DbiModuleDescriptorBuilder::commitSymbolStream(), llvm::msf::WritableMappedBlockStream::createFpmStream(), llvm::CodeViewYAML::toDebugH(), and llvm::CodeViewYAML::toDebugT().
|
inline |
Definition at line 178 of file BinaryStreamWriter.h.
References llvm::BinaryStreamRefBase< RefType, StreamType >::getLength(), and Stream.
Referenced by llvm::codeview::ContinuationRecordBuilder::begin(), bytesRemaining(), and split().
|
inline |
Definition at line 177 of file BinaryStreamWriter.h.
References Offset.
Referenced by addPadding(), llvm::codeview::ContinuationRecordBuilder::begin(), bytesRemaining(), llvm::codeview::DebugStringTableSubsection::commit(), llvm::codeview::DebugSubsectionRecordBuilder::commit(), llvm::pdb::DbiModuleDescriptorBuilder::commitSymbolStream(), llvm::codeview::ContinuationRecordBuilder::end(), llvm::codeview::SimpleTypeSerializer::serialize(), llvm::codeview::SymbolSerializer::visitSymbolEnd(), and llvm::codeview::ContinuationRecordBuilder::writeMemberType().
|
default |
Definition at line 95 of file BinaryStreamWriter.cpp.
References llvm::alignTo(), Offset, llvm::Error::success(), and writeArray().
Referenced by llvm::pdb::DbiModuleDescriptorBuilder::commit(), llvm::codeview::DebugChecksumsSubsection::commit(), llvm::codeview::DebugSubsectionRecordBuilder::commit(), and llvm::codeview::CodeViewRecordIO::padToAlignment().
|
inline |
Definition at line 176 of file BinaryStreamWriter.h.
References Offset.
Referenced by llvm::codeview::ContinuationRecordBuilder::begin(), llvm::codeview::DebugStringTableSubsection::commit(), llvm::msf::MSFBuilder::commit(), llvm::pdb::DbiModuleDescriptorBuilder::commitSymbolStream(), llvm::codeview::SymbolSerializer::visitSymbolBegin(), and llvm::codeview::SymbolSerializer::visitSymbolEnd().
std::pair< BinaryStreamWriter, BinaryStreamWriter > BinaryStreamWriter::split | ( | uint64_t | Off | ) | const |
Splits the Writer into two Writers at a given offset.
Definition at line 83 of file BinaryStreamWriter.cpp.
References assert(), llvm::BinaryStreamRefBase< RefType, StreamType >::drop_front(), llvm::First, getLength(), Offset, and Stream.
Writes an array of objects of type T to the underlying stream, as if by using memcpy.
It is up to the caller to ensure that type of Obj
can be safely copied in this fashion, as no checks are made to ensure that this is safe.
Definition at line 144 of file BinaryStreamWriter.h.
References llvm::invalid_array_size, llvm::Error::success(), and writeBytes().
Referenced by llvm::pdb::DbiStreamBuilder::addDbgStream(), llvm::pdb::GSIHashStreamBuilder::commit(), llvm::codeview::DebugChecksumsSubsection::commit(), llvm::codeview::DebugCrossModuleImportsSubsection::commit(), llvm::codeview::DebugFrameDataSubsection::commit(), llvm::codeview::DebugInlineeLinesSubsection::commit(), llvm::codeview::DebugLinesSubsection::commit(), llvm::codeview::DebugSymbolRVASubsection::commit(), llvm::pdb::DbiStreamBuilder::commit(), llvm::msf::MSFBuilder::commit(), llvm::pdb::DbiStreamBuilder::finalizeMsfLayout(), and padToAlignment().
|
inline |
Writes all elements from the array Array
to the underlying stream.
Definition at line 169 of file BinaryStreamWriter.h.
References writeStreamRef().
|
inline |
Writes all data from the array Array
to the underlying stream.
Definition at line 161 of file BinaryStreamWriter.h.
References writeStreamRef().
Write the bytes specified in Buffer
to the underlying stream.
On success, updates the offset so that subsequent writes will occur at the next unwritten position.
Definition at line 28 of file BinaryStreamWriter.cpp.
References Offset, llvm::ArrayRef< T >::size(), Stream, llvm::Error::success(), and llvm::WritableBinaryStreamRef::writeBytes().
Referenced by llvm::codeview::DebugSymbolsSubsection::commit(), llvm::pdb::TpiStreamBuilder::commit(), llvm::pdb::PDBFileBuilder::commit(), llvm::pdb::DbiModuleDescriptorBuilder::commitSymbolStream(), llvm::msf::WritableMappedBlockStream::createFpmStream(), llvm::codeview::CodeViewRecordIO::mapByteVectorTail(), llvm::codeview::CodeViewRecordIO::mapGuid(), llvm::CodeViewYAML::toDebugT(), writeArray(), writeFixedString(), writeInteger(), writeObject(), writePublics(), writeSLEB128(), writeStreamRef(), and writeULEB128().
Write the string Str
to the underlying stream followed by a null terminator.
On success, updates the offset so that subsequent writes occur at the next unwritten position. Str
need not be null terminated on input.
Definition at line 47 of file BinaryStreamWriter.cpp.
References llvm::Error::success(), writeFixedString(), and writeObject().
Referenced by llvm::pdb::DbiModuleDescriptorBuilder::commit(), llvm::codeview::DebugStringTableSubsection::commit(), and llvm::codeview::CodeViewRecordIO::mapStringZ().
Similar to writeInteger.
Definition at line 67 of file BinaryStreamWriter.h.
Referenced by llvm::codeview::DebugInlineeLinesSubsection::commit(), llvm::pdb::InfoStreamBuilder::commit(), llvm::pdb::DbiStreamBuilder::commit(), and llvm::codeview::ContinuationRecordBuilder::writeMemberType().
Write the string Str
to the underlying stream without a null terminator.
On success, updates the offset so that subsequent writes occur at the next unwritten position.
Definition at line 56 of file BinaryStreamWriter.cpp.
References writeBytes().
Referenced by llvm::pdb::NamedStreamMap::commit(), llvm::CodeViewYAML::toDebugH(), and writeCString().
Write the integer Value
to the underlying stream in the specified endianness.
On success, updates the offset so that subsequent writes occur at the next unwritten position.
Definition at line 58 of file BinaryStreamWriter.h.
References llvm::BinaryStreamRefBase< RefType, StreamType >::getEndian(), Stream, T, and writeBytes().
Referenced by addPadding(), llvm::pdb::HashTable< ValueT >::commit(), llvm::pdb::NamedStreamMap::commit(), llvm::codeview::DebugCrossModuleExportsSubsection::commit(), llvm::codeview::DebugFrameDataSubsection::commit(), llvm::codeview::DebugInlineeLinesSubsection::commit(), llvm::pdb::InfoStreamBuilder::commit(), llvm::pdb::DbiStreamBuilder::commit(), llvm::msf::MSFBuilder::commit(), llvm::pdb::DbiModuleDescriptorBuilder::commitSymbolStream(), llvm::codeview::CodeViewRecordIO::mapInteger(), llvm::codeview::CodeViewRecordIO::mapVectorN(), llvm::CodeViewYAML::toDebugH(), toDebugS(), llvm::CodeViewYAML::toDebugT(), llvm::codeview::SymbolSerializer::visitSymbolEnd(), and llvm::pdb::writeSparseBitVector().
Writes the object Obj
to the underlying stream, as if by using memcpy.
It is up to the caller to ensure that type of Obj
can be safely copied in this fashion, as no checks are made to ensure that this is safe.
Definition at line 128 of file BinaryStreamWriter.h.
References writeBytes().
Referenced by llvm::codeview::ContinuationRecordBuilder::begin(), llvm::pdb::DbiModuleDescriptorBuilder::commit(), llvm::pdb::GSIHashStreamBuilder::commit(), llvm::pdb::HashTable< ValueT >::commit(), llvm::codeview::DebugChecksumsSubsection::commit(), llvm::codeview::DebugCrossModuleImportsSubsection::commit(), llvm::codeview::DebugInlineeLinesSubsection::commit(), llvm::codeview::DebugLinesSubsection::commit(), llvm::codeview::DebugSubsectionRecordBuilder::commit(), llvm::pdb::TpiStreamBuilder::commit(), llvm::pdb::InfoStreamBuilder::commit(), llvm::pdb::DbiStreamBuilder::commit(), llvm::msf::MSFBuilder::commit(), commitFpm(), llvm::codeview::CodeViewRecordIO::mapObject(), llvm::codeview::SimpleTypeSerializer::serialize(), and writeCString().
Error BinaryStreamWriter::writeSLEB128 | ( | int64_t | Value | ) |
Write the unsigned integer Value to the underlying stream using ULEB128 encoding.
Definition at line 41 of file BinaryStreamWriter.cpp.
References llvm::encodeSLEB128(), Size, and writeBytes().
Error BinaryStreamWriter::writeStreamRef | ( | BinaryStreamRef | Ref | ) |
Efficiently reads all data from Ref
, and writes it to this stream.
This operation will not invoke any copies of the source data, regardless of the source stream's implementation.
Definition at line 61 of file BinaryStreamWriter.cpp.
References llvm::Ref, and writeStreamRef().
Referenced by llvm::codeview::DebugSubsectionRecordBuilder::commit(), llvm::pdb::TpiStreamBuilder::commit(), llvm::pdb::DbiStreamBuilder::commit(), writeArray(), writeRecords(), and writeStreamRef().
Error BinaryStreamWriter::writeStreamRef | ( | BinaryStreamRef | Ref, |
uint64_t | Size | ||
) |
Efficiently reads Size
bytes from Ref
, and writes it to this stream.
This operation will not invoke any copies of the source data, regardless of the source stream's implementation.
Definition at line 65 of file BinaryStreamWriter.cpp.
References llvm::BinaryStreamReader::bytesRemaining(), llvm::Length, llvm::BinaryStreamReader::readLongestContiguousChunk(), llvm::Ref, llvm::Error::success(), and writeBytes().
Write the unsigned integer Value to the underlying stream using ULEB128 encoding.
Definition at line 35 of file BinaryStreamWriter.cpp.
References llvm::encodeULEB128(), Size, and writeBytes().
|
protected |
Definition at line 184 of file BinaryStreamWriter.h.
Referenced by getOffset(), padToAlignment(), setOffset(), split(), and writeBytes().
|
protected |
Definition at line 183 of file BinaryStreamWriter.h.
Referenced by getLength(), split(), writeBytes(), and writeInteger().