HomeSort by: relevance | last modified time | path
    Searched refs:EntryFreq (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
SyntheticCountsPropagation.cpp 120 Scaled64 EntryFreq(BFI.getEntryFreq(), 0);
122 BBCount /= EntryFreq;
PartialInlining.cpp 735 auto EntryFreq =
741 // OutliningCallFreq is *slightly* bigger than the EntryFreq.
742 if (OutliningCallFreq.getFrequency() > EntryFreq.getFrequency())
743 OutliningCallFreq = EntryFreq;
746 OutliningCallFreq.getFrequency(), EntryFreq.getFrequency());
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ShrinkWrap.cpp 138 uint64_t EntryFreq;
197 EntryFreq = MBFI->getEntryFreq();
532 LLVM_DEBUG(dbgs() << "\n ** Results **\nFrequency of the Entry: " << EntryFreq
545 if (((IsSaveCheap = EntryFreq >= MBFI->getBlockFreq(Save).getFrequency()) &&
546 EntryFreq >= MBFI->getBlockFreq(Restore).getFrequency()) &&
MachineBlockPlacement.cpp 767 uint64_t EntryFreq) {
770 return (Gain / ThresholdProb).getFrequency() >= EntryFreq;
815 uint64_t EntryFreq = MBFI->getEntryFreq();
819 return greaterWithBias(P, Qout, EntryFreq);
875 return greaterWithBias(BaseCost, DupCost, EntryFreq);
917 EntryFreq);
922 EntryFreq);
2874 BlockFrequency EntryFreq = MBFI->getBlockFreq(&F->front());
2875 BlockFrequency WeightedEntryFreq = EntryFreq * ColdProb;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 593 APInt EntryFreq(128, getEntryFreq());
595 // Rounded division of BlockCount by EntryFreq. Since EntryFreq is unsigned
596 // lshr by 1 gives EntryFreq/2.
597 BlockCount = (BlockCount + EntryFreq.lshr(1)).udiv(EntryFreq);
ModuleSummaryAnalysis.cpp 356 uint64_t EntryFreq = BFI->getEntryFreq();
357 ValueInfo.updateRelBlockFreq(BBFreq, EntryFreq);
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ModuleSummaryIndex.h 85 /// Update \p RelBlockFreq from \p BlockFreq and \p EntryFreq
87 /// BlockFreq is divided by EntryFreq and added to RelBlockFreq. To represent
90 void updateRelBlockFreq(uint64_t BlockFreq, uint64_t EntryFreq) {
91 if (EntryFreq == 0)
95 Temp /= Scaled64::get(EntryFreq);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 1579 BlockFrequency EntryFreq;
1585 EntryFreq +=
1705 auto Count = BFI->getProfileCountFromFreq(EntryFreq.getFrequency());
1709 BFI->setBlockFreq(codeReplacer, EntryFreq.getFrequency());
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCMIPeephole.cpp 99 uint64_t EntryFreq;
148 EntryFreq = MBFI->getEntryFreq();
241 if (CurrBlockFreq > EntryFreq || MPDT->dominates(MI->getParent(), Entry))

Completed in 34 milliseconds