Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DBlockFrequencyImpl.h52 const uint32_t EntryFreq; variable
179 setBlockFreq(BB, EntryFreq); in doBlock()
214 assert(EntryFreq >= CycleProb[BB]); in doBlock()
216 uint32_t Numerator = EntryFreq - CProb ? EntryFreq - CProb : 1; in doBlock()
217 divBlockFreq(BB, BranchProbability(Numerator, EntryFreq)); in doBlock()
246 assert(N <= EntryFreq && "Backedge frequency must be <= EntryFreq!"); in doLoop()
247 uint64_t Res = (N * EntryFreq) / D; in doLoop()
260 BlockFrequencyImpl() : EntryFreq(BlockFrequency::getEntryFrequency()) { } in BlockFrequencyImpl()
/external/llvm/lib/CodeGen/
DShrinkWrap.cpp119 uint64_t EntryFreq; member in __anond41abe3e0111::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/llvm/lib/Analysis/
DBlockFrequencyInfoImpl.cpp542 APInt EntryFreq(128, getEntryFreq()); in getBlockProfileCount() local
544 BlockCount = BlockCount.udiv(EntryFreq); in getBlockProfileCount()