LLVM
8.0.1
|
A symbol table used for function PGO name look-up with keys (such as pointers, md5hash values) to the function. More...
#include "llvm/ProfileData/InstrProf.h"
Public Types | |
using | AddrHashMap = std::vector< std::pair< uint64_t, uint64_t > > |
Public Member Functions | |
InstrProfSymtab ()=default | |
Error | create (object::SectionRef &Section) |
Create InstrProfSymtab from an object file section which contains function PGO names. More... | |
Error | create (StringRef D, uint64_t BaseAddr) |
This interface is used by reader of CoverageMapping test format. More... | |
Error | create (StringRef NameStrings) |
NameStrings is a string composed of one of more sub-strings encoded in the format described in collectPGOFuncNameStrings . More... | |
Error | create (Module &M, bool InLTO=false) |
A wrapper interface to populate the PGO symtab with functions decls from module M . More... | |
template<typename NameIterRange > | |
Error | create (const NameIterRange &IterRange) |
Create InstrProfSymtab from a set of names iteratable from IterRange . More... | |
Error | addFuncName (StringRef FuncName) |
Update the symtab by adding FuncName to the table. More... | |
void | mapAddress (uint64_t Addr, uint64_t MD5Val) |
Map a function address to its name's MD5 hash. More... | |
uint64_t | getFunctionHashFromAddress (uint64_t Address) |
Return a function's hash, or 0, if the function isn't in this SymTab. More... | |
StringRef | getFuncName (uint64_t FuncNameAddress, size_t NameSize) |
Return function's PGO name from the function name's symbol address in the object file. More... | |
StringRef | getFuncName (uint64_t FuncMD5Hash) |
Return function's PGO name from the name's md5 hash value. More... | |
StringRef | getFuncNameOrExternalSymbol (uint64_t FuncMD5Hash) |
Just like getFuncName, except that it will return a non-empty StringRef if the function is external to this symbol table. More... | |
Function * | getFunction (uint64_t FuncMD5Hash) |
Return function from the name's md5 hash. Return nullptr if not found. More... | |
StringRef | getOrigFuncName (uint64_t FuncMD5Hash) |
Return the function's original assembly name by stripping off the prefix attached (to symbols with priviate linkage). More... | |
StringRef | getNameData () const |
Return the name section data. More... | |
Static Public Member Functions | |
static bool | isExternalSymbol (const StringRef &Symbol) |
True if Symbol is the value used to represent external symbols. More... | |
A symbol table used for function PGO name look-up with keys (such as pointers, md5hash values) to the function.
A function's PGO name or name's md5hash are used in retrieving the profile data of the function. See getPGOFuncName()
method for details on how PGO name is formed.
Definition at line 411 of file InstrProf.h.
using llvm::InstrProfSymtab::AddrHashMap = std::vector<std::pair<uint64_t, uint64_t> > |
Definition at line 413 of file InstrProf.h.
|
default |
Update the symtab by adding FuncName
to the table.
This interface is used by the raw and text profile readers.
Definition at line 472 of file InstrProf.h.
References llvm::IndexedInstrProf::ComputeHash(), llvm::StringRef::empty(), llvm::MipsISD::Ins, llvm::StringSet< AllocatorTy >::insert(), llvm::malformed, and llvm::Error::success().
Referenced by llvm::readPGOFuncNameStrings(), and llvm::InstrProfWriter::writeText().
Error llvm::InstrProfSymtab::create | ( | object::SectionRef & | Section | ) |
Create InstrProfSymtab from an object file section which contains function PGO names.
When section may contain raw string data or string data in compressed form. This method only initialize the symtab with reference to the data and the section base address. The decompression will be delayed until before it is used. See also create(StringRef)
method.
Referenced by loadBinaryFormat(), loadTestingFormat(), llvm::InstrProfReaderIndex< HashTableImpl >::populateSymtab(), promoteIndirectCalls(), and llvm::CGProfilePass::run().
This interface is used by reader of CoverageMapping test format.
Definition at line 524 of file InstrProf.h.
References llvm::Address, D, llvm::Data, and llvm::Error::success().
NameStrings
is a string composed of one of more sub-strings encoded in the format described in collectPGOFuncNameStrings
.
This method is a wrapper to readPGOFuncNameStrings
method.
Definition at line 530 of file InstrProf.h.
References llvm::readPGOFuncNameStrings().
A wrapper interface to populate the PGO symtab with functions decls from module M
.
This interface is used by transformation passes such as indirect function call promotion. Variable InLTO
indicates if this is called from LTO optimization passes.
Definition at line 336 of file InstrProf.cpp.
References E, F(), llvm::GlobalValue::getGUID(), llvm::getPGOFuncName(), and llvm::Error::success().
Error llvm::InstrProfSymtab::create | ( | const NameIterRange & | IterRange | ) |
Create InstrProfSymtab from a set of names iteratable from IterRange
.
This interface is used by IndexedProfReader.
Definition at line 535 of file InstrProf.h.
References E, Name, llvm::sort(), and llvm::Error::success().
StringRef InstrProfSymtab::getFuncName | ( | uint64_t | FuncNameAddress, |
size_t | NameSize | ||
) |
Return function's PGO name from the function name's symbol address in the object file.
If an error occurs, return an empty string.
Definition at line 357 of file CoverageMappingReader.cpp.
References llvm::Address, and llvm::Data.
Referenced by llvm::coverage::CovMapFunctionRecordV1< IntPtrT >::getFuncName(), llvm::coverage::CovMapFunctionRecord::getFuncName(), and llvm::RawInstrProfReader< IntPtrT >::getSymtab().
|
inline |
Return function's PGO name from the name's md5 hash value.
If not found, return an empty string.
Definition at line 562 of file InstrProf.h.
References llvm::lower_bound().
|
inline |
Just like getFuncName, except that it will return a non-empty StringRef if the function is external to this symbol table.
All such cases will be represented using the same StringRef value.
Definition at line 555 of file InstrProf.h.
References llvm::StringRef::empty().
Referenced by llvm::InstrProfWriter::writeRecordInText().
|
inline |
Return function from the name's md5 hash. Return nullptr if not found.
Definition at line 573 of file InstrProf.h.
References llvm::lower_bound().
Referenced by llvm::CGProfilePass::run().
uint64_t llvm::InstrProfSymtab::getFunctionHashFromAddress | ( | uint64_t | Address | ) |
Return a function's hash, or 0, if the function isn't in this SymTab.
Definition at line 364 of file InstrProf.cpp.
References llvm::Address, and llvm::lower_bound().
Referenced by llvm::InstrProfRecord::scale().
|
inline |
|
inline |
Return the function's original assembly name by stripping off the prefix attached (to symbols with priviate linkage).
For global functions, it returns the same string as getFuncName.
Definition at line 586 of file InstrProf.h.
References llvm::StringRef::drop_front(), llvm::StringRef::find_first_of(), and llvm::StringRef::npos.
True if Symbol is the value used to represent external symbols.
Definition at line 508 of file InstrProf.h.
References getFunction().
Referenced by llvm::TextInstrProfReader::readHeader().
|
inline |
Map a function address to its name's MD5 hash.
This interface is only used by the raw profiler reader.
Definition at line 486 of file InstrProf.h.
References llvm::COFF::NameSize.