Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/Analysis/
H A DFunctionPropertiesAnalysis.cpp88 TotalInstructionCount += Direction * BB.sizeWithoutDebug(); in updateForBB()
107 if (TotalInstructionCount > BigBasicBlockInstructionThreshold) in updateForBB()
109 else if (TotalInstructionCount > MediumBasicBlockInstructionThreshold) in updateForBB()
248 PRINT_PROPERTY(TotalInstructionCount) in print()
/src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMLInlineAdvisor.h41 return getCachedFPI(F).TotalInstructionCount; in getIRSize()
H A DFunctionPropertiesAnalysis.h82 int64_t TotalInstructionCount = 0; variable