Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DFunction.h248 enum ProfileCountType { PCT_Real, PCT_Synthetic }; enumerator
256 ProfileCountType PCT = PCT_Real;
276 void setEntryCount(uint64_t Count, ProfileCountType Type = PCT_Real,
/llvm-project-15.0.7/llvm/include/llvm/Transforms/Utils/
H A DSampleProfileLoaderBaseImpl.h894 ProfileCount(Samples->getHeadSamples() + 1, Function::PCT_Real),
928 ProfileCount(BlockWeights[EntryBB], Function::PCT_Real),
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1374 F.setEntryCount(ProfileCount(FuncEntryCount, Function::PCT_Real)); in populateCounters()
1652 F.setEntryCount(ProfileCount(NewEntryCount, Function::PCT_Real)); in fixFuncEntryCount()
1821 F.setEntryCount(ProfileCount(0, Function::PCT_Real)); in annotateAllFunctions()
1831 ProfileCount(HotThreshold * MultiplyFactor, Function::PCT_Real)); in annotateAllFunctions()
/llvm-project-15.0.7/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp2126 F.setEntryCount(ProfileCount(initialEntryCount, Function::PCT_Real)); in runOnFunction()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp1781 ProfileCount(Count.value(), Function::PCT_Real)); // FIXME in extractCodeRegion()
/llvm-project-15.0.7/llvm/lib/IR/
H A DFunction.cpp2006 return ProfileCount(Count, PCT_Real); in getEntryCount()
/llvm-project-15.0.7/llvm/unittests/IR/
H A DMetadataTest.cpp3460 F->setEntryCount(12304, Function::PCT_Real); in TEST_F()
3464 EXPECT_EQ(Function::PCT_Real, Count->getType()); in TEST_F()