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

  /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/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);
  /external/llvm/include/llvm/Analysis/
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 5988 milliseconds