getPGOFuncName overloads
Declared in <llvm/ProfileData/InstrProf.h>
Return a front-end PGO lookup name for function F.
std::string
getPGOFuncName(
Function const& F,
bool InLTO = false,
uint64_t Version = INSTR_PROF_INDEX_VERSION);
» more...
Return a front-end PGO lookup name from raw name, linkage, and file name.
std::string
getPGOFuncName(
StringRef RawFuncName,
GlobalValue::LinkageTypes Linkage,
StringRef FileName,
uint64_t Version = INSTR_PROF_INDEX_VERSION);
» more...
F.| Name | Description |
|---|---|
| F | Function whose profile name is formed. |
| InLTO | Whether this is called from LTO optimization passes. |
| Version | Indexed profile format version used when forming the name. |
| RawFuncName | Original function name. |
| Linkage | Linkage of the function. |
| FileName | Source module file name used for local-linkage mangling. |