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

  /external/llvm/lib/CodeGen/
MachineBlockFrequencyInfo.cpp 54 getBlockFreq(const MachineBasicBlock *MBB) const {
55 return MBFI->getBlockFreq(MBB);
MachineBlockPlacement.cpp 370 = MBFI->getBlockFreq(BB) * SuccProb * HotProb.getCompl();
379 = MBFI->getBlockFreq(*PI) * MBPI->getEdgeProbability(*PI, *SI);
455 BlockFrequency CandidateFreq = MBFI->getBlockFreq(*WBI);
579 << MBFI->getBlockFreq(Pred) << " freq\n");
583 BlockFrequency PredFreq = MBFI->getBlockFreq(Pred);
690 BlockFrequency ExitEdgeFreq = MBFI->getBlockFreq(*I) * SuccProb;
    [all...]
CalcSpillWeights.cpp 153 writes, reads, MBFI.getBlockFreq(mi->getParent()));
SpillPlacement.cpp 194 BlockFrequencies[Num] = MBFI.getBlockFreq(I);
StackSlotColoring.cpp 145 BlockFrequency Freq = MBFI->getBlockFreq(MBB);
RegAllocPBQP.cpp 353 mbfi->getBlockFreq(mbb));
  /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 BlockFrequency BlockFrequencyInfo::getBlockFreq(const BasicBlock *BB) const {
57 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;
238 uint64_t D = std::max(getBlockFreq(Head).getFrequency(), UINT64_C(1));
259 << " from 1 - " << BackFreq << " / " << getBlockFreq(Head)
315 /// getBlockFreq - Return block frequency. Return 0 if we don't have it.
316 BlockFrequency getBlockFreq(const BlockT *BB) const {
328 OS << " " << getBlockName(BB) << " = " << getBlockFreq(BB) << "\n";

Completed in 204 milliseconds