Home
last modified time | relevance | path

Searched refs:TotalInstructionCount (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DFunctionPropertiesAnalysis.cpp89 TotalInstructionCount += Direction * BB.sizeWithoutDebug(); in updateForBB()
108 if (TotalInstructionCount > BigBasicBlockInstructionThreshold) in updateForBB()
110 else if (TotalInstructionCount > MediumBasicBlockInstructionThreshold) in updateForBB()
278 TotalInstructionCount != FPI.TotalInstructionCount || in operator ==()
338 PRINT_PROPERTY(TotalInstructionCount) in print()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMLInlineAdvisor.h40 return getCachedFPI(F).TotalInstructionCount; in getIRSize()
H A DFunctionPropertiesAnalysis.h88 int64_t TotalInstructionCount = 0; variable