Home
last modified time | relevance | path

Searched refs:getFunctionHash (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DPseudoProbe.h89 uint64_t getFunctionHash() const { return FunctionHash; } in getFunctionHash() function
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DSampleProfileProbe.h81 uint64_t getFunctionHash() const { return FunctionHash; } in getFunctionHash() function
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSampleProfileLoaderBaseImpl.h120 return FuncDesc.getFunctionHash() != Samples.getFunctionHash();
134 if (Desc->getFunctionHash() != Samples.getFunctionHash()) {
/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProf.cpp156 if (getFunctionHash()) in print()
157 OS << "CFG checksum " << getFunctionHash() << "\n"; in print()
H A DSampleProfWriter.cpp307 encodeULEB128(FunctionProfile.getFunctionHash(), OS); in writeFuncMetadata()
617 OS << "!CFGChecksum: " << S.getFunctionHash() << "\n"; in writeSample()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h1004 FunctionHash = Other.getFunctionHash();
1005 } else if (FunctionHash != Other.getFunctionHash()) {
1076 uint64_t getFunctionHash() const { return FunctionHash; }
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfileProbe.cpp361 auto Hash = getFunctionHash(); in instrumentOneFunc()