Home
last modified time | relevance | path

Searched refs:NewEntryCount (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1870 uint64_t NewEntryCount = 0.5 + FuncEntryCount * Scale; in fixFuncEntryCount() local
1871 if (NewEntryCount == 0) in fixFuncEntryCount()
1872 NewEntryCount = 1; in fixFuncEntryCount()
1873 if (NewEntryCount != FuncEntryCount) { in fixFuncEntryCount()
1874 F.setEntryCount(ProfileCount(NewEntryCount, Function::PCT_Real)); in fixFuncEntryCount()
1877 << NewEntryCount << "\n"); in fixFuncEntryCount()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp1904 const uint64_t NewEntryCount = in updateProfileCallee() local
1911 uint64_t CloneEntryCount = PriorEntryCount - NewEntryCount; in updateProfileCallee()
1919 Callee->setEntryCount(NewEntryCount); in updateProfileCallee()
1926 CI->updateProfWeight(NewEntryCount, PriorEntryCount); in updateProfileCallee()