Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/unittests/Analysis/
H A DMemoryProfileInfoTest.cpp22 extern cl::opt<float> MemProfAccessesPerByteColdThreshold;
55 getAllocType(/*MaxAccessCount=*/MemProfAccessesPerByteColdThreshold + 1, in TEST_F()
61 getAllocType(/*MaxAccessCount=*/MemProfAccessesPerByteColdThreshold - 1, in TEST_F()
67 getAllocType(/*MaxAccessCount=*/MemProfAccessesPerByteColdThreshold + 1, in TEST_F()
73 getAllocType(/*MaxAccessCount=*/MemProfAccessesPerByteColdThreshold - 1, in TEST_F()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DMemoryProfileInfo.cpp22 cl::opt<float> MemProfAccessesPerByteColdThreshold( variable
37 if (((float)MaxAccessCount) / MinSize < MemProfAccessesPerByteColdThreshold && in getAllocType()