Lines Matching refs:Cost
237 auto Cost = in calculateFunctionCosts() local
239 assert(Cost != InstructionCost::getMax()); in calculateFunctionCosts()
242 Cost.getValue().value_or(TargetTransformInfo::TCC_Expensive); in calculateFunctionCosts()
500 for (auto &[QueuePID, Cost] : reverse(BalancingQueue)) { in doPartitioning()
506 SML << "[Updating P" << PID << " Cost]:" << Cost << " -> " << NewCost; in doPartitioning()
507 if (Cost) { in doPartitioning()
508 SML << " (" << unsigned(((float(NewCost) / Cost) - 1) * 100) in doPartitioning()
513 Cost = NewCost; in doPartitioning()
572 CostType Cost = 0; in doPartitioning() local
574 Cost += FnCosts.at(Fn); in doPartitioning()
575 SML << "P" << Idx << " has a total cost of " << Cost << " (" in doPartitioning()
576 << format("%0.2f", (float(Cost) / ModuleCost) * 100) in doPartitioning()