Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp575 for (auto ConstCand = S; ConstCand != E; ++ConstCand) { in maximizeConstantsInRange() local
576 NumUses += ConstCand->Uses.size(); in maximizeConstantsInRange()
577 if (ConstCand->CumulativeCost > MaxCostItr->CumulativeCost) in maximizeConstantsInRange()
578 MaxCostItr = ConstCand; in maximizeConstantsInRange()
585 for (auto ConstCand = S; ConstCand != E; ++ConstCand) { in maximizeConstantsInRange() local
586 auto Value = ConstCand->ConstInt->getValue(); in maximizeConstantsInRange()
587 Type *Ty = ConstCand->ConstInt->getType(); in maximizeConstantsInRange()
589 NumUses += ConstCand->Uses.size(); in maximizeConstantsInRange()
590 LLVM_DEBUG(dbgs() << "= Constant: " << ConstCand->ConstInt->getValue() in maximizeConstantsInRange()
593 for (auto User : ConstCand->Uses) { in maximizeConstantsInRange()
[all …]