Searched defs:getBlockFreq (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Analysis/
H A DBlockFrequencyInfo.cpp94 OS << Graph->getBlockFreq(Node).getFrequency();
128 BlockFrequency BlockFrequencyInfo::getBlockFreq(const BasicBlock *BB) const { function in class:BlockFrequencyInfo
129 return BFI ? BFI->getBlockFreq(BB) : 0;
H A DBlockFrequencyInfoImpl.cpp521 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 DBranchFolding.cpp449 MBBFreqInfo.setBlockFreq(NewMBB, MBBFreqInfo.getBlockFreq(&CurMBB));
526 BranchFolder::MBFIWrapper::getBlockFreq(const MachineBasicBlock *MBB) const { function in class:BranchFolder::MBFIWrapper
532 return MBFI.getBlockFreq(MBB);
1082 BlockFrequency BlockFreq = MBBFreqInfo.getBlockFreq(SrcMBB);
/external/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h478 BlockFrequency getBlockFreq(const BlockNode &Node) const;
915 BlockFrequency getBlockFreq(const BlockT *BB) const { function in class:llvm::BlockFrequencyInfoImpl
916 return BlockFrequencyInfoImplBase::getBlockFreq(getNode(BB));
1219 << ", int = " << getBlockFreq(&BB).getFrequency() << "\n";

Completed in 168 milliseconds