Searched refs:Metrics (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopRotationUtils.cpp302 CodeMetrics Metrics;
303 Metrics.analyzeBasicBlock(OrigHeader, *TTI, EphValues);
304 if (Metrics.notDuplicatable) {
311 if (Metrics.convergent) {
317 if (Metrics.NumInsts > MaxHeaderSize) {
319 << Metrics.NumInsts
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDataPrefetch.cpp281 CodeMetrics Metrics; local
298 Metrics.analyzeBasicBlock(BB, *TTI, EphValues);
300 unsigned LoopSize = Metrics.NumInsts;
H A DLoopUnrollPass.cpp683 CodeMetrics Metrics; local
685 Metrics.analyzeBasicBlock(BB, TTI, EphValues);
686 NumCalls = Metrics.NumInlineCandidates;
687 NotDuplicatable = Metrics.notDuplicatable;
688 Convergent = Metrics.convergent;
690 unsigned LoopSize = Metrics.NumInsts;
H A DLoopUnswitch.cpp296 CodeMetrics Metrics; local
299 Metrics.analyzeBasicBlock(*I, TTI, EphValues);
301 Props.SizeEstimation = Metrics.NumInsts;
306 if (Metrics.notDuplicatable) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp507 CodeMetrics Metrics; local
509 Metrics.analyzeBasicBlock(BB, *this, EphValues);
511 if (Metrics.NumInsts <= (6 * SchedModel.getIssueWidth()))

Completed in 176 milliseconds