Searched refs:getBlockFreq (Results 1 - 11 of 11) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfo.h52 BlockFrequency getBlockFreq(const BasicBlock *BB) const;
H A DBlockFrequencyInfoImpl.h467 BlockFrequency getBlockFreq(const BlockNode &Node) const;
899 BlockFrequency getBlockFreq(const BlockT *BB) const { function in class:llvm::BlockFrequencyInfoImpl
900 return BlockFrequencyInfoImplBase::getBlockFreq(getNode(BB));
1180 << ", int = " << getBlockFreq(&BB).getFrequency() << "\n";
/external/llvm/include/llvm/CodeGen/
H A DMachineBlockFrequencyInfo.h51 BlockFrequency getBlockFreq(const MachineBasicBlock *MBB) const;
/external/llvm/lib/Analysis/
H A DBlockFrequencyInfo.cpp94 OS << Graph->getBlockFreq(Node).getFrequency();
149 BlockFrequency BlockFrequencyInfo::getBlockFreq(const BasicBlock *BB) const { function in class:BlockFrequencyInfo
150 return BFI ? BFI->getBlockFreq(BB) : 0;
H A DBlockFrequencyInfoImpl.cpp507 BlockFrequencyInfoImplBase::getBlockFreq(const BlockNode &Node) const { function in class:BlockFrequencyInfoImplBase
/external/llvm/lib/CodeGen/
H A DMachineBlockFrequencyInfo.cpp101 OS << Graph->getBlockFreq(Node).getFrequency();
171 getBlockFreq(const MachineBasicBlock *MBB) const { function in class:MachineBlockFrequencyInfo
172 return MBFI ? MBFI->getBlockFreq(MBB) : 0;
H A DMachineBlockPlacement.cpp379 = MBFI->getBlockFreq(BB) * SuccProb * HotProb.getCompl();
388 = MBFI->getBlockFreq(*PI) * MBPI->getEdgeProbability(*PI, *SI);
449 BlockFrequency CandidateFreq = MBFI->getBlockFreq(*WBI);
577 BlockFrequency PredFreq = MBFI->getBlockFreq(Pred);
684 BlockFrequency ExitEdgeFreq = MBFI->getBlockFreq(*I) * SuccProb;
1055 BlockFrequency EntryFreq = MBFI->getBlockFreq(F.begin());
1070 BlockFrequency Freq = MBFI->getBlockFreq(*BI);
1077 BlockFrequency LoopHeaderFreq = MBFI->getBlockFreq(LoopHeader);
1097 BlockFrequency LayoutEdgeFreq = MBFI->getBlockFreq(LayoutPred) * LayoutProb;
1183 BlockFrequency BlockFreq = MBFI->getBlockFreq(
[all...]
H A DSpillPlacement.cpp213 BlockFrequencies[Num] = MBFI->getBlockFreq(I);
H A DInlineSpiller.cpp453 (MBFI.getBlockFreq(DepSV.SpillMBB) >=
454 (MBFI.getBlockFreq(SV.SpillMBB) * MarginProb)) ||
H A DLiveIntervalAnalysis.cpp639 BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent());
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1263 BlockFrequency LoopEntryFreq = BFI->getBlockFreq(L->getLoopPreheader());

Completed in 2622 milliseconds