|
LLVM 23.0.0git
|
GsymReader is used to read GSYM data from a file or buffer. More...
#include "llvm/DebugInfo/GSYM/GsymReader.h"
Public Member Functions | |
| LLVM_ABI | GsymReader (GsymReader &&RHS)=default |
| virtual | ~GsymReader ()=default |
| bool | isLittleEndian () const |
| virtual uint16_t | getVersion () const =0 |
| Get the GSYM version for this reader. | |
| virtual uint64_t | getBaseAddress () const =0 |
| Get the base address of this GSYM file. | |
| virtual uint64_t | getNumAddresses () const =0 |
| Get the number of addresses in this GSYM file. | |
| virtual uint8_t | getAddressOffsetSize () const =0 |
| Get the address offset byte size for this GSYM file. | |
| virtual uint8_t | getAddressInfoOffsetSize () const =0 |
| Get the address info offset byte size for this GSYM file. | |
| virtual uint8_t | getStringOffsetSize () const =0 |
| Get the string offset byte size for this GSYM file. | |
| LLVM_ABI llvm::Expected< FunctionInfo > | getFunctionInfo (uint64_t Addr) const |
| Get the full function info for an address. | |
| LLVM_ABI llvm::Expected< FunctionInfo > | getFunctionInfoAtIndex (uint64_t AddrIdx) const |
| Get the full function info given an address index. | |
| LLVM_ABI llvm::Expected< LookupResult > | lookup (uint64_t Addr, std::optional< GsymDataExtractor > *MergedFuncsData=nullptr) const |
| Lookup an address in the a GSYM. | |
| LLVM_ABI llvm::Expected< std::vector< LookupResult > > | lookupAll (uint64_t Addr) const |
| Lookup all merged functions for a given address. | |
| StringRef | getString (gsym_strp_t Offset) const |
| Get a string from the string table. | |
| std::optional< FileEntry > | getFile (uint32_t Index) const |
| Get the a file entry for the suppplied file index. | |
| virtual void | dump (raw_ostream &OS)=0 |
| Dump the entire Gsym data contained in this object. | |
| LLVM_ABI void | dump (raw_ostream &OS, const FunctionInfo &FI, uint32_t Indent=0) |
| Dump a FunctionInfo object. | |
| LLVM_ABI void | dump (raw_ostream &OS, const MergedFunctionsInfo &MFI) |
| Dump a MergedFunctionsInfo object. | |
| LLVM_ABI void | dump (raw_ostream &OS, const CallSiteInfo &CSI) |
| Dump a CallSiteInfo object. | |
| LLVM_ABI void | dump (raw_ostream &OS, const CallSiteInfoCollection &CSIC, uint32_t Indent=0) |
| Dump a CallSiteInfoCollection object. | |
| LLVM_ABI void | dump (raw_ostream &OS, const LineTable <, uint32_t Indent=0) |
| Dump a LineTable object. | |
| LLVM_ABI void | dump (raw_ostream &OS, const InlineInfo &II, uint32_t Indent=0) |
| Dump a InlineInfo object. | |
| LLVM_ABI void | dump (raw_ostream &OS, std::optional< FileEntry > FE) |
| Dump a FileEntry object. | |
| LLVM_ABI std::optional< uint64_t > | getAddress (size_t Index) const |
| Gets an address from the address table. | |
Static Public Member Functions | |
| static LLVM_ABI llvm::Expected< std::unique_ptr< GsymReader > > | openFile (StringRef Path) |
| Construct a GsymReader from a file on disk. | |
| static LLVM_ABI llvm::Expected< std::unique_ptr< GsymReader > > | copyBuffer (StringRef Bytes) |
| Construct a GsymReader from a buffer. | |
Protected Member Functions | |
| GsymReader (std::unique_ptr< MemoryBuffer > Buffer, llvm::endianness Endian) | |
| LLVM_ABI std::optional< GlobalData > | getGlobalData (GlobalInfoType Type) const |
| Get the GlobalData entry for a section type. | |
| LLVM_ABI llvm::Expected< StringRef > | getRequiredGlobalDataBytes (GlobalInfoType Type) const |
| Get the raw bytes for a required GlobalData section as a StringRef. | |
| LLVM_ABI std::optional< StringRef > | getOptionalGlobalDataBytes (GlobalInfoType Type) const |
| Get the raw bytes for an optional GlobalData section as a StringRef. | |
| LLVM_ABI llvm::Error | parse () |
| Parse the GSYM data from the memory buffer. | |
| virtual llvm::Error | parseHeaderAndGlobalDataEntries ()=0 |
| Parse the version-specific header and populate GlobalDataSections. | |
| template<class HeaderT> | |
| llvm::Error | parseHeader (const HeaderT *&OutHdr, std::unique_ptr< HeaderT > &OutSwappedHdr) |
| Parse and validate the header from the beginning of the memory buffer. | |
| llvm::Error | parseGlobalDataEntries (uint64_t Offset) |
Parse GlobalData entries starting at Offset into GlobalDataSections. | |
| llvm::Error | parseAddrOffsets (StringRef Bytes) |
| Parse address offsets section bytes into AddrOffsets. | |
| llvm::Error | setAddrInfoOffsetsData (StringRef Bytes) |
| Set address info offsets section bytes into AddrInfoOffsetsData. | |
| llvm::Error | setStringTableData (StringRef Bytes) |
| Set string table section bytes into StrTab. | |
| llvm::Error | setFileTableData (StringRef Bytes) |
| Set file table section bytes into FileEntryData. | |
| template<class T> | |
| ArrayRef< T > | getAddrOffsets () const |
| Get an appropriate address info offsets array. | |
| template<class T> | |
| std::optional< uint64_t > | addressForIndex (size_t Index) const |
| Get an appropriate address from the address table. | |
| template<class T> | |
| std::optional< uint64_t > | getAddressOffsetIndex (const uint64_t AddrOffset) const |
| Lookup an address offset in the AddrOffsets table. | |
| LLVM_ABI Expected< uint64_t > | getAddressIndex (const uint64_t Addr) const |
| Given an address, find the address index. | |
| LLVM_ABI std::optional< uint64_t > | getAddressInfoOffset (size_t Index) const |
| Given an address index, get the offset for the FunctionInfo. | |
| LLVM_ABI llvm::Expected< GsymDataExtractor > | getFunctionInfoDataForAddress (uint64_t Addr, uint64_t &FuncStartAddr) const |
| Given an address, find the correct function info data and function address. | |
| LLVM_ABI llvm::Expected< GsymDataExtractor > | getFunctionInfoDataAtIndex (uint64_t AddrIdx, uint64_t &FuncStartAddr) const |
| Get the function data and address given an address index. | |
Static Protected Member Functions | |
| static LLVM_ABI llvm::Expected< std::unique_ptr< GsymReader > > | create (std::unique_ptr< MemoryBuffer > &MemBuffer) |
| Create a GSYM from a memory buffer. | |
Protected Attributes | |
| std::unique_ptr< MemoryBuffer > | MemBuffer |
| llvm::endianness | Endian |
| std::map< GlobalInfoType, GlobalData > | GlobalDataSections |
| Parsed GlobalData entries, keyed by type. | |
| ArrayRef< uint8_t > | AddrOffsets |
| std::vector< uint8_t > | SwappedAddrOffsets |
| GsymDataExtractor | AddrInfoOffsetsData |
| GsymDataExtractor | FileEntryData |
| StringTable | StrTab |
GsymReader is used to read GSYM data from a file or buffer.
This class is optimized for very quick lookups when the endianness matches the host system. The header and the address table are designed to be mmap'ed as read only into memory and used without any parsing needed. If the endianness doesn't match, we swap the byte order of the address table into a separate buffer for efficient binary search. All the other data are parsed on demand with the correct endianness.
GsymReader objects must use one of the static functions to create an instance: GsymReader::openFile(...) and GsymReader::copyBuffer(...).
Definition at line 48 of file GsymReader.h.
|
protected |
Definition at line 27 of file GsymReader.cpp.
References AddrInfoOffsetsData, Endian, FileEntryData, MemBuffer, and llvm::move().
Referenced by GsymReader().
|
default |
References GsymReader(), LLVM_ABI, and RHS.
|
virtualdefault |
|
inlineprotected |
Get an appropriate address from the address table.
The address table in the GSYM file is stored as array of 1, 2, 4 or 8 byte address offsets from the The gsym::Header::BaseAddress. The table is stored internally as a array of bytes that are in the correct endianness. In order to extract an address from the address table we must access the address offset using the correct size and then add it to the BaseAddress in the header.
| Index | An index into the AddrOffsets array. |
Definition at line 422 of file GsymReader.h.
References getAddrOffsets(), getBaseAddress(), and llvm::ArrayRef< T >::size().
Referenced by getAddress().
|
static |
Construct a GsymReader from a buffer.
| Bytes | A set of bytes that will be copied and owned by the returned object on success. |
Definition at line 78 of file GsymReader.cpp.
References create(), llvm::MemoryBuffer::getMemBufferCopy(), and MemBuffer.
|
staticprotected |
Create a GSYM from a memory buffer.
Called by both openFile() and copyBuffer(), this function does all of the work of parsing the GSYM file and returning an error.
| MemBuffer | A memory buffer that will transfer ownership into the GsymReader. |
Definition at line 84 of file GsymReader.cpp.
References checkMagicAndDetectVersionEndian(), llvm::createStringError(), Endian, llvm::gsym::Header::getVersion(), llvm::gsym::HeaderV2::getVersion(), MemBuffer, llvm::Expected< T >::takeError(), and llvm::Version.
Referenced by copyBuffer(), and openFile().
|
pure virtual |
Dump the entire Gsym data contained in this object.
| OS | The output stream to dump to. |
Implemented in llvm::gsym::GsymReaderV1, and llvm::gsym::GsymReaderV2.
| void GsymReader::dump | ( | raw_ostream & | OS, |
| const CallSiteInfo & | CSI ) |
Dump a CallSiteInfo object.
This function will output the details of a CallSiteInfo object in a human-readable format.
| OS | The output stream to dump to. |
| CSI | The CallSiteInfo object to dump. |
Definition at line 522 of file GsymReader.cpp.
References llvm::gsym::CallSiteInfo::ExternalCall, getString(), HEX16, llvm::gsym::CallSiteInfo::InternalCall, llvm::gsym::CallSiteInfo::MatchRegex, llvm::gsym::CallSiteInfo::None, and llvm::gsym::CallSiteInfo::ReturnOffset.
| void GsymReader::dump | ( | raw_ostream & | OS, |
| const CallSiteInfoCollection & | CSIC, | ||
| uint32_t | Indent = 0 ) |
Dump a CallSiteInfoCollection object.
This function will iterate over a collection of CallSiteInfo objects and dump each one.
| OS | The output stream to dump to. |
| CSIC | The CallSiteInfoCollection object to dump. |
| Indent | The indentation as number of spaces. Used when dumping as an item from within MergedFunctionsInfo. |
Definition at line 554 of file GsymReader.cpp.
References llvm::gsym::CallSiteInfoCollection::CallSites, dump(), and llvm::raw_ostream::indent().
| void GsymReader::dump | ( | raw_ostream & | OS, |
| const FunctionInfo & | FI, | ||
| uint32_t | Indent = 0 ) |
Dump a FunctionInfo object.
This function will convert any string table indexes and file indexes into human readable format.
| OS | The output stream to dump to. |
| FI | The object to dump. |
| Indent | The indentation as number of spaces. Used when dumping as an item within MergedFunctionsInfo. |
Definition at line 497 of file GsymReader.cpp.
References assert(), llvm::gsym::FunctionInfo::CallSites, dump(), getString(), llvm::raw_ostream::indent(), llvm::gsym::FunctionInfo::Inline, llvm::gsym::FunctionInfo::MergedFunctions, llvm::gsym::FunctionInfo::Name, llvm::gsym::FunctionInfo::OptLineTable, and llvm::gsym::FunctionInfo::Range.
| void GsymReader::dump | ( | raw_ostream & | OS, |
| const InlineInfo & | II, | ||
| uint32_t | Indent = 0 ) |
Dump a InlineInfo object.
This function will convert any string table indexes and file indexes into human readable format.
| OS | The output stream to dump to. |
| II | The object to dump. |
| Indent | The indentation as number of spaces. Used for recurive dumping. |
Definition at line 578 of file GsymReader.cpp.
References dump(), getFile(), getString(), II, and llvm::raw_ostream::indent().
| void GsymReader::dump | ( | raw_ostream & | OS, |
| const LineTable & | LT, | ||
| uint32_t | Indent = 0 ) |
Dump a LineTable object.
This function will convert any string table indexes and file indexes into human readable format.
| OS | The output stream to dump to. |
| LT | The object to dump. |
| Indent | The indentation as number of spaces. Used when dumping as an item from within MergedFunctionsInfo. |
Definition at line 566 of file GsymReader.cpp.
References dump(), getFile(), HEX64, and llvm::raw_ostream::indent().
| void GsymReader::dump | ( | raw_ostream & | OS, |
| const MergedFunctionsInfo & | MFI ) |
Dump a MergedFunctionsInfo object.
This function will dump a MergedFunctionsInfo object - basically by dumping the contained FunctionInfo objects with indentation.
| OS | The output stream to dump to. |
| MFI | The object to dump. |
Definition at line 515 of file GsymReader.cpp.
References dump(), and llvm::gsym::MergedFunctionsInfo::MergedFunctions.
| void GsymReader::dump | ( | raw_ostream & | OS, |
| std::optional< FileEntry > | FE ) |
Dump a FileEntry object.
This function will convert any string table indexes into human readable format.
| OS | The output stream to dump to. |
| FE | The object to dump. |
Definition at line 596 of file GsymReader.cpp.
References llvm::sampleprof::Base, llvm::StringRef::empty(), and getString().
| std::optional< uint64_t > GsymReader::getAddress | ( | size_t | Index | ) | const |
Gets an address from the address table.
Addresses are stored as offsets frrom the gsym::Header::BaseAddress.
| Index | A index into the address table. |
Definition at line 311 of file GsymReader.cpp.
References addressForIndex(), getAddressOffsetSize(), and llvm_unreachable.
Referenced by llvm::gsym::GsymReaderV1::dump(), llvm::gsym::GsymReaderV2::dump(), and getFunctionInfoDataAtIndex().
Given an address, find the address index.
Binary search the address table and find the matching address index.
| Addr | A virtual address that matches the original object file to lookup. |
Definition at line 338 of file GsymReader.cpp.
References llvm::createStringError(), getAddressOffsetIndex(), getAddressOffsetSize(), and getBaseAddress().
Referenced by getFunctionInfoDataForAddress().
|
protected |
Given an address index, get the offset for the FunctionInfo.
Looking up an address is done by finding the corresponding address index for the address. This index is then used to get the offset of the FunctionInfo data that we will decode using this function.
| Index | An index into the address table. |
Definition at line 323 of file GsymReader.cpp.
References AddrInfoOffsetsData, llvm::gsym::FunctionInfo, getAddressInfoOffsetSize(), getNumAddresses(), getVersion(), llvm::gsym::Header::getVersion(), GlobalDataSections, and llvm::Offset.
Referenced by llvm::gsym::GsymReaderV1::dump(), llvm::gsym::GsymReaderV2::dump(), and getFunctionInfoDataAtIndex().
|
pure virtual |
Get the address info offset byte size for this GSYM file.
Implemented in llvm::gsym::GsymReaderV1, and llvm::gsym::GsymReaderV2.
Referenced by getAddressInfoOffset(), and parse().
|
inlineprotected |
Lookup an address offset in the AddrOffsets table.
Given an address offset, look it up using a binary search of the AddrOffsets table.
| AddrOffset | An address offset, that has already been computed by subtracting the gsym::Header::BaseAddress. |
Definition at line 440 of file GsymReader.h.
References llvm::ArrayRef< T >::begin(), llvm::ArrayRef< T >::end(), and getAddrOffsets().
Referenced by getAddressIndex().
|
pure virtual |
Get the address offset byte size for this GSYM file.
Implemented in llvm::gsym::GsymReaderV1, and llvm::gsym::GsymReaderV2.
Referenced by getAddress(), getAddressIndex(), parse(), and parseAddrOffsets().
Get an appropriate address info offsets array.
The address table in the GSYM file is stored as array of 1, 2, 4 or 8 byte offsets from the The gsym::Header::BaseAddress. The table is stored internally as a array of bytes that are in the correct endianness. When we access this table we must get an array that matches those sizes. This templatized helper function is used when accessing address offsets in the AddrOffsets member variable.
Definition at line 404 of file GsymReader.h.
References AddrOffsets, and T.
Referenced by addressForIndex(), and getAddressOffsetIndex().
|
pure virtual |
Get the base address of this GSYM file.
Implemented in llvm::gsym::GsymReaderV1, and llvm::gsym::GsymReaderV2.
Referenced by addressForIndex(), and getAddressIndex().
Get the a file entry for the suppplied file index.
Used to convert any file indexes in the FunctionInfo data back into files. This function can be used for iteration, but is more commonly used for random access when doing lookups.
| Index | An index into the file table. |
Definition at line 184 of file GsymReader.h.
References llvm::gsym::FileEntry::Base, llvm::gsym::FileEntry::Dir, FileEntryData, llvm::gsym::FileEntry::getEncodedSize(), and llvm::Offset.
Referenced by dump(), dump(), llvm::gsym::GsymReaderV1::dump(), llvm::gsym::GsymReaderV2::dump(), llvm::gsym::FunctionInfo::lookup(), and lookup().
| llvm::Expected< FunctionInfo > GsymReader::getFunctionInfo | ( | uint64_t | Addr | ) | const |
Get the full function info for an address.
This should be called when a client will store a copy of the complete FunctionInfo for a given address. For one off lookups, use the lookup() function below.
Symbolication server processes might want to parse the entire function info for a given address and cache it if the process stays around to service many symbolication addresses, like for parsing profiling information.
| Addr | A virtual address from the orignal object file to lookup. |
Definition at line 434 of file GsymReader.cpp.
References llvm::gsym::FunctionInfo::decode(), and getFunctionInfoDataForAddress().
| llvm::Expected< FunctionInfo > GsymReader::getFunctionInfoAtIndex | ( | uint64_t | AddrIdx | ) | const |
Get the full function info given an address index.
| AddrIdx | A address index for an address in the address table. |
Definition at line 443 of file GsymReader.cpp.
References llvm::gsym::FunctionInfo::decode(), and getFunctionInfoDataAtIndex().
Referenced by llvm::gsym::GsymReaderV1::dump(), and llvm::gsym::GsymReaderV2::dump().
|
protected |
Get the function data and address given an address index.
| AddrIdx | A address index from the address table. |
Definition at line 412 of file GsymReader.cpp.
References assert(), llvm::big, llvm::createStringError(), llvm::Data, llvm::StringRef::empty(), Endian, getAddress(), getAddressInfoOffset(), getStringOffsetSize(), isLittleEndian(), llvm::little, and MemBuffer.
Referenced by getFunctionInfoAtIndex(), and getFunctionInfoDataForAddress().
|
protected |
Given an address, find the correct function info data and function address.
Binary search the address table and find the matching address info and make sure that the function info contains the address. GSYM allows functions to overlap, and the most debug info is contained in the first entries due to the sorting when GSYM files are created. We can have multiple function info that start at the same address only if their address range doesn't match. So find the first entry that matches Addr and iterate forward until we find one that contains the address.
| [in] | Addr | A virtual address that matches the original object file to lookup. |
| [out] | FuncStartAddr | A virtual address that is the base address of the function that is used for decoding the FunctionInfo. |
Definition at line 369 of file GsymReader.cpp.
References contains(), llvm::createStringError(), getAddressIndex(), getFunctionInfoDataAtIndex(), getNumAddresses(), llvm::Offset, and llvm::Expected< T >::takeError().
Referenced by getFunctionInfo(), and lookup().
|
protected |
Get the GlobalData entry for a section type.
| Type | The section type to retrieve. |
Definition at line 277 of file GsymReader.cpp.
References GlobalDataSections.
Referenced by llvm::gsym::GsymReaderV1::dump(), and getOptionalGlobalDataBytes().
|
pure virtual |
Get the number of addresses in this GSYM file.
Implemented in llvm::gsym::GsymReaderV1, and llvm::gsym::GsymReaderV2.
Referenced by getAddressInfoOffset(), getFunctionInfoDataForAddress(), parse(), and parseAddrOffsets().
|
protected |
Get the raw bytes for an optional GlobalData section as a StringRef.
| Type | The section type to retrieve. |
Definition at line 301 of file GsymReader.cpp.
References getGlobalData(), MemBuffer, llvm::StringRef::size(), and llvm::StringRef::substr().
Referenced by llvm::gsym::GsymReaderV1::dump(), and llvm::gsym::GsymReaderV2::dump().
|
protected |
Get the raw bytes for a required GlobalData section as a StringRef.
| Type | The section type to retrieve. |
Definition at line 285 of file GsymReader.cpp.
Referenced by parse().
|
inline |
Get a string from the string table.
| Offset | The string table offset for the string to retrieve. |
Definition at line 173 of file GsymReader.h.
References llvm::Offset, and StrTab.
Referenced by dump(), dump(), dump(), dump(), llvm::gsym::FunctionInfo::lookup(), and lookup().
|
pure virtual |
Get the string offset byte size for this GSYM file.
Implemented in llvm::gsym::GsymReaderV1, and llvm::gsym::GsymReaderV2.
References LLVM_ABI.
Referenced by getFunctionInfoDataAtIndex(), and setFileTableData().
|
pure virtual |
Get the GSYM version for this reader.
Implemented in llvm::gsym::GsymReaderV1, and llvm::gsym::GsymReaderV2.
Referenced by getAddressInfoOffset(), and parseGlobalDataEntries().
|
inline |
Definition at line 67 of file GsymReader.h.
References Endian, and llvm::little.
Referenced by llvm::gsym::GsymReaderV2::dump(), getFunctionInfoDataAtIndex(), parseGlobalDataEntries(), parseHeader(), llvm::gsym::GsymReaderV1::parseHeaderAndGlobalDataEntries(), setAddrInfoOffsetsData(), and setFileTableData().
| llvm::Expected< LookupResult > GsymReader::lookup | ( | uint64_t | Addr, |
| std::optional< GsymDataExtractor > * | MergedFuncsData = nullptr ) const |
Lookup an address in the a GSYM.
Lookup just the information needed for a specific address Addr. This function is faster that calling getFunctionInfo() as it will only return information that pertains to Addr and allows the parsing to skip any extra information encoded for other addresses. For example the line table parsing can stop when a matching LineEntry has been fouhnd, and the InlineInfo can stop parsing early once a match has been found and also skip information that doesn't match. This avoids memory allocations and is much faster for lookups.
| Addr | A virtual address from the orignal object file to lookup. |
| MergedFuncsData | A pointer to an optional GsymDataExtractor that, if non-null, will be set to the raw data of the MergedFunctionInfo, if present. |
Definition at line 451 of file GsymReader.cpp.
References getFunctionInfoDataForAddress(), and llvm::gsym::FunctionInfo::lookup().
Referenced by lookupAll().
| llvm::Expected< std::vector< LookupResult > > GsymReader::lookupAll | ( | uint64_t | Addr | ) | const |
Lookup all merged functions for a given address.
This function performs a lookup for the specified address and then retrieves additional LookupResults from any merged functions associated with the primary LookupResult.
| Addr | The address to lookup. |
Definition at line 463 of file GsymReader.cpp.
References llvm::gsym::MergedFunctionsInfo::getFuncsDataExtractors(), llvm::gsym::FunctionInfo::lookup(), lookup(), and Results.
|
static |
Construct a GsymReader from a file on disk.
| Path | The file path the GSYM file to read. |
Definition at line 67 of file GsymReader.cpp.
References create(), llvm::errorCodeToError(), Filename, llvm::ErrorOr< T >::get(), llvm::ErrorOr< T >::getError(), and llvm::MemoryBuffer::getFileOrSTDIN().
Referenced by llvm::symbolize::LLVMSymbolizer::getOrCreateModuleInfo(), and llvm::gsym::DwarfTransformer::verify().
|
protected |
Parse the GSYM data from the memory buffer.
Definition at line 112 of file GsymReader.cpp.
References llvm::gsym::AddrInfoOffsets, llvm::gsym::AddrOffsets, llvm::createStringError(), data, llvm::gsym::FileTable, llvm::gsym::FunctionInfo, getAddressInfoOffsetSize(), getAddressOffsetSize(), llvm::gsym::getNameForGlobalInfoType(), getNumAddresses(), getRequiredGlobalDataBytes(), GlobalDataSections, parseAddrOffsets(), parseHeaderAndGlobalDataEntries(), setAddrInfoOffsetsData(), setFileTableData(), setStringTableData(), llvm::gsym::StringTable, llvm::Error::success(), and llvm::Expected< T >::takeError().
|
protected |
Parse address offsets section bytes into AddrOffsets.
| Bytes | The raw section bytes. |
Definition at line 201 of file GsymReader.cpp.
References AddrOffsets, llvm::createStringError(), Endian, getAddressOffsetSize(), getNumAddresses(), llvm::native, and llvm::StringRef::size().
Referenced by parse().
|
protected |
Parse GlobalData entries starting at Offset into GlobalDataSections.
This should only be called by any GSYM version >= 2. If called by V1, an error will be returned.
| Offset | The byte offset where GlobalData entries begin. |
Definition at line 166 of file GsymReader.cpp.
References llvm::createStringError(), llvm::Data, llvm::gsym::GlobalData::decode(), llvm::gsym::EndOfList, llvm::gsym::GlobalData::FileOffset, llvm::gsym::GlobalData::FileSize, getVersion(), llvm::gsym::HeaderV2::getVersion(), GlobalDataSections, isLittleEndian(), MemBuffer, llvm::Offset, llvm::StringRef::size(), llvm::Error::success(), and llvm::gsym::GlobalData::Type.
Referenced by llvm::gsym::GsymReaderV2::parseHeaderAndGlobalDataEntries().
|
inlineprotected |
Parse and validate the header from the beginning of the memory buffer.
| OutHdr | Output pointer to the parsed header. |
| OutSwappedHdr | Storage for byte-swapped header if needed. |
Definition at line 336 of file GsymReader.h.
References llvm::createStringError(), llvm::Data, llvm::StringRef::data(), Endian, isLittleEndian(), MemBuffer, llvm::native, llvm::StringRef::size(), and llvm::Error::success().
Referenced by llvm::gsym::GsymReaderV1::parseHeaderAndGlobalDataEntries(), and llvm::gsym::GsymReaderV2::parseHeaderAndGlobalDataEntries().
|
protectedpure virtual |
Parse the version-specific header and populate GlobalDataSections.
Implemented in llvm::gsym::GsymReaderV1, and llvm::gsym::GsymReaderV2.
Referenced by parse().
|
protected |
Set address info offsets section bytes into AddrInfoOffsetsData.
| Bytes | The raw section bytes. |
Definition at line 252 of file GsymReader.cpp.
References AddrInfoOffsetsData, isLittleEndian(), and llvm::Error::success().
Referenced by parse().
|
protected |
Set file table section bytes into FileEntryData.
| Bytes | The raw section bytes. |
Definition at line 262 of file GsymReader.cpp.
References llvm::createStringError(), llvm::Data, FileEntryData, llvm::gsym::FileEntry::getEncodedSize(), getStringOffsetSize(), isLittleEndian(), llvm::Offset, and llvm::StringRef::size().
Referenced by parse().
|
protected |
Set string table section bytes into StrTab.
| Bytes | The raw section bytes. |
Definition at line 257 of file GsymReader.cpp.
References StrTab, and llvm::Error::success().
Referenced by parse().
|
protected |
Definition at line 57 of file GsymReader.h.
Referenced by llvm::gsym::GsymReaderV2::dump(), getAddressInfoOffset(), GsymReader(), and setAddrInfoOffsetsData().
Definition at line 55 of file GsymReader.h.
Referenced by getAddrOffsets(), and parseAddrOffsets().
|
protected |
Definition at line 51 of file GsymReader.h.
Referenced by create(), getFunctionInfoDataAtIndex(), GsymReader(), llvm::gsym::GsymReaderV1::GsymReader, llvm::gsym::GsymReaderV2::GsymReader, llvm::gsym::GsymReaderV1::GsymReaderV1(), llvm::gsym::GsymReaderV2::GsymReaderV2(), isLittleEndian(), parseAddrOffsets(), and parseHeader().
|
protected |
Definition at line 58 of file GsymReader.h.
Referenced by getFile(), GsymReader(), and setFileTableData().
|
protected |
Parsed GlobalData entries, keyed by type.
Populated by parseHeaderAndGlobalDataEntries().
Definition at line 54 of file GsymReader.h.
Referenced by getAddressInfoOffset(), getGlobalData(), parse(), parseGlobalDataEntries(), and llvm::gsym::GsymReaderV1::parseHeaderAndGlobalDataEntries().
|
protected |
Definition at line 50 of file GsymReader.h.
Referenced by copyBuffer(), create(), llvm::gsym::GsymReaderV2::dump(), getFunctionInfoDataAtIndex(), getOptionalGlobalDataBytes(), GsymReader(), parseGlobalDataEntries(), parseHeader(), and llvm::gsym::GsymReaderV1::parseHeaderAndGlobalDataEntries().
|
protected |
Definition at line 59 of file GsymReader.h.
Referenced by llvm::gsym::GsymReaderV1::dump(), llvm::gsym::GsymReaderV2::dump(), getString(), and setStringTableData().
|
protected |
Definition at line 56 of file GsymReader.h.
Referenced by llvm::gsym::GsymReaderV1::dump(), and llvm::gsym::GsymReaderV1::dump().