HomeSort by relevance Sort by last modified time
    Searched refs:EntryFreq (Results 1 - 4 of 4) sorted by null

  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
BlockFrequencyImpl.h 52 const uint32_t EntryFreq;
179 setBlockFreq(BB, EntryFreq);
214 assert(EntryFreq >= CycleProb[BB]);
216 uint32_t Numerator = EntryFreq - CProb ? EntryFreq - CProb : 1;
217 divBlockFreq(BB, BranchProbability(Numerator, EntryFreq));
246 assert(N <= EntryFreq && "Backedge frequency must be <= EntryFreq!");
247 uint64_t Res = (N * EntryFreq) / D;
260 BlockFrequencyImpl() : EntryFreq(BlockFrequency::getEntryFrequency()) {
    [all...]
  /external/llvm/lib/CodeGen/
ShrinkWrap.cpp 119 uint64_t EntryFreq;
168 EntryFreq = MBFI->getEntryFreq();
481 DEBUG(dbgs() << "\n ** Results **\nFrequency of the Entry: " << EntryFreq
493 if (((IsSaveCheap = EntryFreq >= MBFI->getBlockFreq(Save).getFrequency()) &&
494 EntryFreq >= MBFI->getBlockFreq(Restore).getFrequency()) &&
MachineBlockPlacement.cpp     [all...]
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 542 APInt EntryFreq(128, getEntryFreq());
544 BlockCount = BlockCount.udiv(EntryFreq);

Completed in 148 milliseconds