Home
last modified time | relevance | path

Searched refs:NumBoxedLoops (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/polly/lib/Analysis/
H A DPruneUnprofitable.cpp40 STATISTIC(NumBoxedLoops, "Number of boxed loops in SCoPs after pruning");
47 NumPrunedLoops += ScopStats.NumAffineLoops + ScopStats.NumBoxedLoops; in updateStatistics()
48 NumPrunedBoxedLoops += ScopStats.NumBoxedLoops; in updateStatistics()
52 NumLoopsInScop += ScopStats.NumAffineLoops + ScopStats.NumBoxedLoops; in updateStatistics()
53 NumBoxedLoops += ScopStats.NumBoxedLoops; in updateStatistics()
H A DScopInfo.cpp91 STATISTIC(NumBoxedLoops, "Number of boxed loops in SCoPs after ScopInfo");
2502 Result.NumBoxedLoops = getBoxedLoops().size(); in getStatistics()
2503 Result.NumAffineLoops = NumTotalLoops - Result.NumBoxedLoops; in getStatistics()
2557 assert(Stats.NumLoops == ScopStats.NumAffineLoops + ScopStats.NumBoxedLoops); in updateLoopCountStatistic()
2580 NumBoxedLoops += ScopStats.NumBoxedLoops; in updateLoopCountStatistic()
/llvm-project-15.0.7/polly/lib/CodeGen/
H A DCodeGeneration.cpp289 CodegenedBoxedLoops += ScopStats.NumBoxedLoops; in generateCode()
H A DIslAst.cpp510 BeneficialBoxedLoops += ScopStats.NumBoxedLoops; in init()
/llvm-project-15.0.7/polly/lib/Transform/
H A DScheduleOptimizer.cpp884 NumBoxedLoopsOptimized += ScopStats.NumBoxedLoops; in runIslScheduleOptimizer()
/llvm-project-15.0.7/polly/include/polly/
H A DScopInfo.h2656 int NumBoxedLoops = 0; member