Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/Analysis/
DFunctionPropertiesAnalysis.cpp53 if (FPI.MaxLoopDepth < LoopDepth) in getFunctionPropertiesInfo()
54 FPI.MaxLoopDepth = LoopDepth; in getFunctionPropertiesInfo()
69 << "MaxLoopDepth: " << MaxLoopDepth << "\n" in print()
DInlineSizeEstimatorAnalysis.cpp62 MaxLoopDepth, enumerator
200 FF[NamedFeatureIndex::MaxLoopDepth] = in getFunctionFeatures()
201 std::max(FF[NamedFeatureIndex::MaxLoopDepth], in getFunctionFeatures()
/external/llvm-project/llvm/unittests/Analysis/
DFunctionPropertiesAnalysisTest.cpp79 EXPECT_EQ(BranchesFeatures.MaxLoopDepth, 0); in TEST_F()
90 EXPECT_EQ(BranchesFeatures.MaxLoopDepth, 0); in TEST_F()
/external/llvm-project/llvm/include/llvm/Analysis/
DFunctionPropertiesAnalysis.h56 int64_t MaxLoopDepth = 0; variable
/external/llvm-project/polly/lib/Analysis/
DScopDetection.cpp1348 int MaxLoopDepth = 1; in countBeneficialSubLoops() local
1358 MaxLoopDepth = std::max(MaxLoopDepth, Stats.MaxDepth + 1); in countBeneficialSubLoops()
1361 return {NumLoops, MaxLoopDepth}; in countBeneficialSubLoops()
1368 int MaxLoopDepth = 0; in countBeneficialLoops() local
1387 MaxLoopDepth = std::max(MaxLoopDepth, Stats.MaxDepth); in countBeneficialLoops()
1390 return {LoopNum, MaxLoopDepth}; in countBeneficialLoops()
/external/llvm-project/llvm/test/Analysis/FunctionPropertiesAnalysis/
Dmatmul.ll26 ; CHECK-DAG: MaxLoopDepth: 0
139 ; CHECK-DAG: MaxLoopDepth: 3
/external/llvm-project/polly/include/polly/
DScopInfo.h1727 unsigned MaxLoopDepth = 0; variable
2162 inline unsigned getMaxLoopDepth() const { return MaxLoopDepth; } in getMaxLoopDepth()
2462 MaxLoopDepth = std::max(MaxLoopDepth, Depth); in updateMaxLoopDepth()