LLVM 20.0.0git
|
GsymReader is used to read GSYM data from a file or buffer. More...
#include "llvm/DebugInfo/GSYM/GsymReader.h"
Public Member Functions | |
GsymReader (GsymReader &&RHS) | |
~GsymReader () | |
const Header & | getHeader () const |
Access the GSYM header. | |
llvm::Expected< FunctionInfo > | getFunctionInfo (uint64_t Addr) const |
Get the full function info for an address. | |
llvm::Expected< FunctionInfo > | getFunctionInfoAtIndex (uint64_t AddrIdx) const |
Get the full function info given an address index. | |
llvm::Expected< LookupResult > | lookup (uint64_t Addr) const |
Lookup an address in the a GSYM. | |
StringRef | getString (uint32_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. | |
void | dump (raw_ostream &OS) |
Dump the entire Gsym data contained in this object. | |
void | dump (raw_ostream &OS, const FunctionInfo &FI, uint32_t Indent=0) |
Dump a FunctionInfo object. | |
void | dump (raw_ostream &OS, const MergedFunctionsInfo &MFI) |
Dump a MergedFunctionsInfo object. | |
void | dump (raw_ostream &OS, const LineTable <, uint32_t Indent=0) |
Dump a LineTable object. | |
void | dump (raw_ostream &OS, const InlineInfo &II, uint32_t Indent=0) |
Dump a InlineInfo object. | |
void | dump (raw_ostream &OS, std::optional< FileEntry > FE) |
Dump a FileEntry object. | |
uint32_t | getNumAddresses () const |
Get the number of addresses in this Gsym file. | |
std::optional< uint64_t > | getAddress (size_t Index) const |
Gets an address from the address table. | |
Static Public Member Functions | |
static llvm::Expected< GsymReader > | openFile (StringRef Path) |
Construct a GsymReader from a file on disk. | |
static llvm::Expected< GsymReader > | copyBuffer (StringRef Bytes) |
Construct a GsymReader from a buffer. | |
Protected Member Functions | |
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. | |
Expected< uint64_t > | getAddressIndex (const uint64_t Addr) const |
Given an address, find the address index. | |
std::optional< uint64_t > | getAddressInfoOffset (size_t Index) const |
Given an address index, get the offset for the FunctionInfo. | |
llvm::Expected< llvm::DataExtractor > | getFunctionInfoDataForAddress (uint64_t Addr, uint64_t &FuncStartAddr) const |
Given an address, find the correct function info data and function address. | |
llvm::Expected< llvm::DataExtractor > | getFunctionInfoDataAtIndex (uint64_t AddrIdx, uint64_t &FuncStartAddr) const |
Get the function data and address given an address index. | |
Static Protected Member Functions | |
static llvm::Expected< llvm::gsym::GsymReader > | create (std::unique_ptr< MemoryBuffer > &MemBuffer) |
Create a GSYM from a memory buffer. | |
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, address table, address info offsets, and file table is designed to be mmap'ed as read only into memory and used without any parsing needed. If the endianness doesn't match, we swap these objects and tables into GsymReader::SwappedData and then point our header and ArrayRefs to this swapped internal data.
GsymReader objects must use one of the static functions to create an instance: GsymReader::openFile(...) and GsymReader::copyBuffer(...).
Definition at line 44 of file GsymReader.h.
|
default |
|
default |
|
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 266 of file GsymReader.h.
References llvm::gsym::Header::BaseAddress, and llvm::ArrayRef< T >::size().
|
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 43 of file GsymReader.cpp.
References create(), and llvm::MemoryBuffer::getMemBufferCopy().
|
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 49 of file GsymReader.cpp.
References llvm::createStringError().
Referenced by copyBuffer(), and openFile().
void GsymReader::dump | ( | raw_ostream & | OS | ) |
Dump the entire Gsym data contained in this object.
OS | The output stream to dump to. |
Definition at line 346 of file GsymReader.cpp.
References llvm::gsym::Header::AddrOffSize, llvm::sampleprof::Base, dump(), llvm::format(), getAddress(), getFile(), getFunctionInfoAtIndex(), getHeader(), HEX32, HEX64, I, llvm::logAllUnhandledErrors(), llvm::gsym::Header::NumAddresses, and OS.
Referenced by dump().
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 401 of file GsymReader.cpp.
References assert(), dump(), getString(), llvm::raw_ostream::indent(), llvm::gsym::FunctionInfo::Inline, llvm::gsym::FunctionInfo::MergedFunctions, llvm::gsym::FunctionInfo::Name, llvm::gsym::FunctionInfo::OptLineTable, OS, 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 435 of file GsymReader.cpp.
References dump(), getFile(), getString(), II, llvm::raw_ostream::indent(), and OS.
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 423 of file GsymReader.cpp.
References dump(), getFile(), HEX64, llvm::raw_ostream::indent(), and OS.
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 416 of file GsymReader.cpp.
References dump(), llvm::gsym::MergedFunctionsInfo::MergedFunctions, and OS.
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 453 of file GsymReader.cpp.
References llvm::sampleprof::Base, llvm::StringRef::empty(), getString(), and OS.
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 208 of file GsymReader.cpp.
References llvm::gsym::Header::AddrOffSize.
Referenced by 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 226 of file GsymReader.cpp.
References Addr, llvm::gsym::Header::AddrOffSize, llvm::gsym::Header::BaseAddress, and llvm::createStringError().
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 218 of file GsymReader.cpp.
References llvm::ArrayRef< T >::size().
|
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 283 of file GsymReader.h.
References llvm::ArrayRef< T >::begin(), llvm::ArrayRef< T >::end(), and End.
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 248 of file GsymReader.h.
References llvm::ArrayRef< T >::data(), and llvm::ArrayRef< T >::size().
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 150 of file GsymReader.h.
Referenced by dump(), lookup(), and llvm::gsym::FunctionInfo::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 321 of file GsymReader.cpp.
References Addr, 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 330 of file GsymReader.cpp.
References llvm::gsym::FunctionInfo::decode(), getFunctionInfoDataAtIndex(), and Idx.
Referenced by dump().
|
protected |
Get the function data and address given an address index.
AddrIdx | A address index from the address table. |
Definition at line 300 of file GsymReader.cpp.
References assert(), llvm::big, llvm::createStringError(), llvm::StringRef::empty(), getAddress(), getNumAddresses(), and llvm::little.
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 257 of file GsymReader.cpp.
References Addr, contains(), llvm::createStringError(), getAddressIndex(), getFunctionInfoDataAtIndex(), getNumAddresses(), llvm::Offset, and llvm::Expected< T >::takeError().
Referenced by getFunctionInfo(), and lookup().
Access the GSYM header.
Definition at line 200 of file GsymReader.cpp.
References assert().
Referenced by dump().
|
inline |
Get the number of addresses in this Gsym file.
Definition at line 222 of file GsymReader.h.
References llvm::gsym::Header::NumAddresses.
Referenced by getFunctionInfoDataAtIndex(), and getFunctionInfoDataForAddress().
Get a string from the string table.
Offset | The string table offset for the string to retrieve. |
Definition at line 139 of file GsymReader.h.
References llvm::Offset.
Referenced by dump(), lookup(), and llvm::gsym::FunctionInfo::lookup().
llvm::Expected< LookupResult > GsymReader::lookup | ( | uint64_t | Addr | ) | 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. |
Definition at line 338 of file GsymReader.cpp.
References Addr, getFunctionInfoDataForAddress(), and llvm::gsym::FunctionInfo::lookup().
|
static |
Construct a GsymReader from a file on disk.
Path | The file path the GSYM file to read. |
Definition at line 33 of file GsymReader.cpp.
References create(), llvm::errorCodeToError(), llvm::ErrorOr< T >::get(), llvm::ErrorOr< T >::getError(), and llvm::MemoryBuffer::getFileOrSTDIN().
Referenced by llvm::gsym::DwarfTransformer::verify().