Lines Matching refs:UnrolledCost
323 unsigned UnrolledCost; member
383 InstructionCost UnrolledCost = 0; in analyzeLoopUnrollCost() local
463 UnrolledCost += TTI.getInstructionCost(I, Operands, CostKind); in analyzeLoopUnrollCost()
588 if (UnrolledCost > MaxUnrolledLoopSize) { in analyzeLoopUnrollCost()
590 << " UnrolledCost: " << UnrolledCost in analyzeLoopUnrollCost()
648 if (UnrolledCost == RolledDynamicCost) { in analyzeLoopUnrollCost()
650 << " UnrolledCost: " << UnrolledCost << "\n"); in analyzeLoopUnrollCost()
671 assert(UnrolledCost.isValid() && RolledDynamicCost.isValid() && in analyzeLoopUnrollCost()
676 << "UnrolledCost: " << UnrolledCost << ", " in analyzeLoopUnrollCost()
678 return {{unsigned(*UnrolledCost.getValue()), in analyzeLoopUnrollCost()
787 else if (Cost.UnrolledCost != 0) in getFullUnrollBoostingFactor()
789 return std::min(100 * Cost.RolledDynamicCost / Cost.UnrolledCost, in getFullUnrollBoostingFactor()
860 if (Cost->UnrolledCost < UP.Threshold * Boost / 100) in shouldFullUnroll()