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

  /external/llvm/lib/CodeGen/
MachineBlockFrequencyInfo.cpp 53 /// getblockFreq - Return block frequency. Return 0 if we don't have the
59 getBlockFreq(const MachineBasicBlock *MBB) const {
60 return MBFI->getBlockFreq(MBB);
MachineBlockPlacement.cpp 364 = MBFI->getBlockFreq(BB) * SuccProb * HotProb.getCompl();
373 = MBFI->getBlockFreq(*PI) * MBPI->getEdgeProbability(*PI, *SI);
449 BlockFrequency CandidateFreq = MBFI->getBlockFreq(*WBI);
573 << MBFI->getBlockFreq(Pred) << " freq\n");
577 BlockFrequency PredFreq = MBFI->getBlockFreq(Pred);
684 BlockFrequency ExitEdgeFreq = MBFI->getBlockFreq(*I) * SuccProb;
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineBlockFrequencyInfo.h 46 /// getblockFreq - Return block frequency. Return 0 if we don't have the
51 BlockFrequency getBlockFreq(const MachineBasicBlock *MBB) const;
  /external/llvm/lib/Analysis/
BlockFrequencyInfo.cpp 56 /// getblockFreq - Return block frequency. Return 0 if we don't have the
61 BlockFrequency BlockFrequencyInfo::getBlockFreq(const BasicBlock *BB) const {
62 return BFI->getBlockFreq(BB);
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfo.h 45 /// getblockFreq - Return block frequency. Return 0 if we don't have the
50 BlockFrequency getBlockFreq(const BasicBlock *BB) const;
BlockFrequencyImpl.h 77 return getBlockFreq(Src) * Prob;
245 uint64_t D = getBlockFreq(Head).getFrequency();
310 /// getBlockFreq - Return block frequency. Return 0 if we don't have it.
311 BlockFrequency getBlockFreq(const BlockT *BB) const {
323 OS << " " << getBlockName(BB) << " = " << getBlockFreq(BB) << "\n";

Completed in 159 milliseconds