HomeSort by: relevance | last modified time | path
    Searched refs:getBPI (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LazyBranchProbabilityInfo.h 45 /// getAnalysis<LazyBranchProbabilityInfoPass>().getBPI() before LoopInfo
92 BranchProbabilityInfo &getBPI() { return LBPI->getCalculated(); }
95 const BranchProbabilityInfo &getBPI() const { return LBPI->getCalculated(); }
114 static PassT &getBPI(PassT *P) { return *P; }
118 static BranchProbabilityInfo &getBPI(LazyBranchProbabilityInfoPass *P) {
119 return P->getBPI();
LazyBlockFrequencyInfo.h 53 *F, BPIPassTrait<BranchProbabilityInfoPassT>::getBPI(BPIPass), *LI);
BlockFrequencyInfo.h 57 const BranchProbabilityInfo *getBPI() const;
BranchProbabilityInfo.h 454 BranchProbabilityInfo &getBPI() { return BPI; }
455 const BranchProbabilityInfo &getBPI() const { return BPI; }
CFGPrinter.h 77 const BranchProbabilityInfo *getBPI() { return BPI; }
246 auto BranchProb = CFGInfo->getBPI()->getEdgeProbability(Node, SuccBB);
BlockFrequencyInfoImpl.h 1015 const BranchProbabilityInfoT &getBPI() const { return *BPI; }
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
BlockFrequencyInfo.cpp 147 return BFIDOTGTraitsBase::getEdgeAttributes(Node, EI, BFI, BFI->getBPI(),
266 const BranchProbabilityInfo *BlockFrequencyInfo::getBPI() const {
267 return BFI ? &BFI->getBPI() : nullptr;
328 getAnalysis<BranchProbabilityInfoWrapperPass>().getBPI();
CFGPrinter.cpp 99 auto *BPI = &getAnalysis<BranchProbabilityInfoWrapperPass>().getBPI();
135 auto *BPI = &getAnalysis<BranchProbabilityInfoWrapperPass>().getBPI();
172 auto *BPI = &getAnalysis<BranchProbabilityInfoWrapperPass>().getBPI();
209 auto *BPI = &getAnalysis<BranchProbabilityInfoWrapperPass>().getBPI();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineBlockFrequencyInfo.cpp 274 return MBFI ? &MBFI->getBPI() : nullptr;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopPredication.cpp 337 getAnalysis<BranchProbabilityInfoWrapperPass>().getBPI();
InductiveRangeCheckElimination.cpp 1825 getAnalysis<BranchProbabilityInfoWrapperPass>().getBPI();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
PGOInstrumentation.cpp 1645 return &this->getAnalysis<BranchProbabilityInfoWrapperPass>(F).getBPI();
2009 return &this->getAnalysis<BranchProbabilityInfoWrapperPass>(F).getBPI();
GCOVProfiling.cpp 105 function_ref<BranchProbabilityInfo *(Function &F)> GetBPI,
125 function_ref<BranchProbabilityInfo *(Function &F)> GetBPI,
187 auto GetBPI = [this](Function &F) {
188 return &this->getAnalysis<BranchProbabilityInfoWrapperPass>(F).getBPI();
193 return Profiler.runOnModule(M, GetBFI, GetBPI, GetTLI);
607 function_ref<BranchProbabilityInfo *(Function &F)> GetBPI,
621 emitProfileNotes(CUNode, HasExecOrFork, GetBFI, GetBPI, this->GetTLI);
635 auto GetBPI = [&FAM](Function &F) {
642 if (!Profiler.runOnModule(M, GetBFI, GetBPI, GetTLI))
815 function_ref<BranchProbabilityInfo *(Function &F)> GetBPI,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp 3085 FuncInfo.BPI = &getAnalysis<BranchProbabilityInfoWrapperPass>().getBPI();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 469 FuncInfo->BPI = &getAnalysis<BranchProbabilityInfoWrapperPass>().getBPI();

Completed in 100 milliseconds