Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DShrinkWrap.cpp119 uint64_t EntryFreq; member in __anonce0c1ec40111::ShrinkWrap
168 EntryFreq = MBFI->getEntryFreq(); in init()
481 DEBUG(dbgs() << "\n ** Results **\nFrequency of the Entry: " << EntryFreq in runOnMachineFunction()
493 if (((IsSaveCheap = EntryFreq >= MBFI->getBlockFreq(Save).getFrequency()) && in runOnMachineFunction()
494 EntryFreq >= MBFI->getBlockFreq(Restore).getFrequency()) && in runOnMachineFunction()
DMachineBlockPlacement.cpp1586 BlockFrequency EntryFreq = MBFI->getBlockFreq(&F->front()); in alignBlocks() local
1587 BlockFrequency WeightedEntryFreq = EntryFreq * ColdProb; in alignBlocks()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DShrinkWrap.cpp138 uint64_t EntryFreq; member in __anon09cc95a60111::ShrinkWrap
197 EntryFreq = MBFI->getEntryFreq(); in init()
539 LLVM_DEBUG(dbgs() << "\n ** Results **\nFrequency of the Entry: " << EntryFreq in runOnMachineFunction()
552 if (((IsSaveCheap = EntryFreq >= MBFI->getBlockFreq(Save).getFrequency()) && in runOnMachineFunction()
553 EntryFreq >= MBFI->getBlockFreq(Restore).getFrequency()) && in runOnMachineFunction()
DMachineBlockPlacement.cpp732 uint64_t EntryFreq) { in greaterWithBias() argument
735 return (Gain / ThresholdProb).getFrequency() >= EntryFreq; in greaterWithBias()
780 uint64_t EntryFreq = MBFI->getEntryFreq(); in isProfitableToTailDup() local
784 return greaterWithBias(P, Qout, EntryFreq); in isProfitableToTailDup()
840 return greaterWithBias(BaseCost, DupCost, EntryFreq); in isProfitableToTailDup()
882 EntryFreq); in isProfitableToTailDup()
887 EntryFreq); in isProfitableToTailDup()
2812 BlockFrequency EntryFreq = MBFI->getBlockFreq(&F->front()); in alignBlocks() local
2813 BlockFrequency WeightedEntryFreq = EntryFreq * ColdProb; in alignBlocks()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DSyntheticCountsPropagation.cpp121 Scaled64 EntryFreq(BFI.getEntryFreq(), 0); in run() local
123 BBCount /= EntryFreq; in run()
DPartialInlining.cpp724 auto EntryFreq = in getOutliningCallBBRelativeFreq() local
731 if (OutliningCallFreq.getFrequency() > EntryFreq.getFrequency()) { in getOutliningCallBBRelativeFreq()
732 OutliningCallFreq = EntryFreq; in getOutliningCallBBRelativeFreq()
735 OutliningCallFreq.getFrequency(), EntryFreq.getFrequency()); in getOutliningCallBBRelativeFreq()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DBlockFrequencyInfoImpl.cpp576 APInt EntryFreq(128, getEntryFreq()); in getProfileCountFromFreq() local
580 BlockCount = (BlockCount + EntryFreq.lshr(1)).udiv(EntryFreq); in getProfileCountFromFreq()
DModuleSummaryAnalysis.cpp361 uint64_t EntryFreq = BFI->getEntryFreq(); in computeFunctionSummary() local
362 ValueInfo.updateRelBlockFreq(BBFreq, EntryFreq); in computeFunctionSummary()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp1397 BlockFrequency EntryFreq; in extractCodeRegion() local
1403 EntryFreq += in extractCodeRegion()
1518 auto Count = BFI->getProfileCountFromFreq(EntryFreq.getFrequency()); in extractCodeRegion()
1522 BFI->setBlockFreq(codeReplacer, EntryFreq.getFrequency()); in extractCodeRegion()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DModuleSummaryIndex.h89 void updateRelBlockFreq(uint64_t BlockFreq, uint64_t EntryFreq) { in updateRelBlockFreq()
90 if (EntryFreq == 0) in updateRelBlockFreq()
94 Temp /= Scaled64::get(EntryFreq); in updateRelBlockFreq()
/external/llvm/lib/Analysis/
DBlockFrequencyInfoImpl.cpp542 APInt EntryFreq(128, getEntryFreq()); in getBlockProfileCount() local
544 BlockCount = BlockCount.udiv(EntryFreq); in getBlockProfileCount()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCMIPeephole.cpp97 uint64_t EntryFreq; member
141 EntryFreq = MBFI->getEntryFreq(); in initialize()
233 if (CurrBlockFreq > EntryFreq || MPDT->dominates(MI->getParent(), Entry)) in UpdateTOCSaves()