Home
last modified time | relevance | path

Searched refs:getBlockFreq (Results 1 – 16 of 16) sorted by relevance

/external/llvm/lib/CodeGen/
DMachineBlockFrequencyInfo.cpp101 OS << Graph->getBlockFreq(Node).getFrequency(); in getNodeLabel()
171 getBlockFreq(const MachineBasicBlock *MBB) const { in getBlockFreq() function in MachineBlockFrequencyInfo
172 return MBFI ? MBFI->getBlockFreq(MBB) : 0; in getBlockFreq()
DMachineBlockPlacement.cpp419 MBFI->getBlockFreq(BB) * SuccProb * HotProb.getCompl(); in selectBestSuccessor()
426 MBFI->getBlockFreq(Pred) * MBPI->getEdgeProbability(Pred, Succ); in selectBestSuccessor()
484 BlockFrequency CandidateFreq = MBFI->getBlockFreq(MBB); in selectBestCandidateBlock()
608 BlockFrequency PredFreq = MBFI->getBlockFreq(Pred); in findBestLoopTop()
709 BlockFrequency ExitEdgeFreq = MBFI->getBlockFreq(MBB) * SuccProb; in findBestLoopExit()
1073 BlockFrequency EntryFreq = MBFI->getBlockFreq(F.begin()); in buildCFGChains()
1093 BlockFrequency Freq = MBFI->getBlockFreq(ChainBB); in buildCFGChains()
1100 BlockFrequency LoopHeaderFreq = MBFI->getBlockFreq(LoopHeader); in buildCFGChains()
1122 BlockFrequency LayoutEdgeFreq = MBFI->getBlockFreq(LayoutPred) * LayoutProb; in buildCFGChains()
1208 BlockFrequency BlockFreq = MBFI->getBlockFreq(&MBB); in INITIALIZE_PASS_DEPENDENCY()
DBranchFolding.h105 BlockFrequency getBlockFreq(const MachineBasicBlock *MBB) const;
DMachineSink.cpp596 uint64_t LHSFreq = MBFI ? MBFI->getBlockFreq(L).getFrequency() : 0; in FindSuccToSinkTo()
597 uint64_t RHSFreq = MBFI ? MBFI->getBlockFreq(R).getFrequency() : 0; in FindSuccToSinkTo()
DBranchFolding.cpp444 MBBFreqInfo.setBlockFreq(NewMBB, MBBFreqInfo.getBlockFreq(&CurMBB)); in SplitMBBAt()
516 BranchFolder::MBFIWrapper::getBlockFreq(const MachineBasicBlock *MBB) const { in getBlockFreq() function in BranchFolder::MBFIWrapper
522 return MBFI.getBlockFreq(MBB); in getBlockFreq()
1064 BlockFrequency BlockFreq = MBBFreqInfo.getBlockFreq(SrcMBB); in setCommonTailEdgeWeights()
DSpillPlacement.cpp193 BlockFrequencies[Num] = MBFI->getBlockFreq(I); in runOnMachineFunction()
DInlineSpiller.cpp452 (MBFI.getBlockFreq(DepSV.SpillMBB) >= in propagateSiblingValue()
453 (MBFI.getBlockFreq(SV.SpillMBB) * MarginProb)) || in propagateSiblingValue()
DRegAllocPBQP.cpp422 PBQP::PBQPNum CBenefit = MBFI.getBlockFreq(&MBB).getFrequency() * Scale; in apply()
DLiveIntervalAnalysis.cpp814 BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent()); in getSpillWeight()
DRegAllocGreedy.cpp2291 Out.push_back(HintInfo(MBFI->getBlockFreq(Instr.getParent()), OtherReg, in collectHintInfo()
/external/llvm/lib/Analysis/
DBlockFrequencyInfo.cpp94 OS << Graph->getBlockFreq(Node).getFrequency(); in getNodeLabel()
149 BlockFrequency BlockFrequencyInfo::getBlockFreq(const BasicBlock *BB) const { in getBlockFreq() function in BlockFrequencyInfo
150 return BFI ? BFI->getBlockFreq(BB) : 0; in getBlockFreq()
DBlockFrequencyInfoImpl.cpp518 BlockFrequencyInfoImplBase::getBlockFreq(const BlockNode &Node) const { in getBlockFreq() function in BlockFrequencyInfoImplBase
/external/llvm/include/llvm/CodeGen/
DMachineBlockFrequencyInfo.h51 BlockFrequency getBlockFreq(const MachineBasicBlock *MBB) const;
/external/llvm/include/llvm/Analysis/
DBlockFrequencyInfo.h52 BlockFrequency getBlockFreq(const BasicBlock *BB) const;
DBlockFrequencyInfoImpl.h457 BlockFrequency getBlockFreq(const BlockNode &Node) const;
886 BlockFrequency getBlockFreq(const BlockT *BB) const {
887 return BlockFrequencyInfoImplBase::getBlockFreq(getNode(BB));
1167 << ", int = " << getBlockFreq(&BB).getFrequency() << "\n";
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp1446 BlockFrequency LoopEntryFreq = BFI->getBlockFreq(L->getLoopPreheader()); in processLoop()