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

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
LazyBlockFrequencyInfo.cpp 26 INITIALIZE_PASS_BEGIN(LazyBlockFrequencyInfoPass, DEBUG_TYPE,
30 INITIALIZE_PASS_END(LazyBlockFrequencyInfoPass, DEBUG_TYPE,
33 char LazyBlockFrequencyInfoPass::ID = 0;
35 LazyBlockFrequencyInfoPass::LazyBlockFrequencyInfoPass() : FunctionPass(ID) {
39 void LazyBlockFrequencyInfoPass::print(raw_ostream &OS, const Module *) const {
43 void LazyBlockFrequencyInfoPass::getAnalysisUsage(AnalysisUsage &AU) const {
53 void LazyBlockFrequencyInfoPass::releaseMemory() { LBFI.releaseMemory(); }
55 bool LazyBlockFrequencyInfoPass::runOnFunction(Function &F) {
62 void LazyBlockFrequencyInfoPass::getLazyBFIAnalysisUsage(AnalysisUsage &AU)
    [all...]
OptimizationRemarkEmitter.cpp 102 BFI = &getAnalysis<LazyBlockFrequencyInfoPass>().getBFI();
119 LazyBlockFrequencyInfoPass::getLazyBFIAnalysisUsage(AU);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LazyBlockFrequencyInfo.h 91 /// LazyBlockFrequencyInfoPass::getLazyBFIAnalysisUsage(AU)
94 /// getAnalysis<LazyBlockFrequencyInfoPass>().getBFI() before either LoopInfo
100 class LazyBlockFrequencyInfoPass : public FunctionPass {
109 LazyBlockFrequencyInfoPass();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
CGProfile.cpp 66 // entry count. Since LazyBlockFrequencyInfoPass only exists in LPM, check
67 // if using LazyBlockFrequencyInfoPass.
68 // TODO: Remove LazyBFI when LazyBlockFrequencyInfoPass is available in NPM.
113 AU.addRequired<LazyBlockFrequencyInfoPass>();
119 return this->getAnalysis<LazyBlockFrequencyInfoPass>(F).getBFI();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
InstructionSelect.cpp 58 INITIALIZE_PASS_DEPENDENCY(LazyBlockFrequencyInfoPass)
78 LazyBlockFrequencyInfoPass::getLazyBFIAnalysisUsage(AU);
105 BFI = &getAnalysis<LazyBlockFrequencyInfoPass>().getBFI();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopRotation.cpp 108 AU.addPreserved<LazyBlockFrequencyInfoPass>();
LoopLoadElimination.cpp 665 &getAnalysis<LazyBlockFrequencyInfoPass>().getBFI() :
685 LazyBlockFrequencyInfoPass::getLazyBFIAnalysisUsage(AU);
702 INITIALIZE_PASS_DEPENDENCY(LazyBlockFrequencyInfoPass)
LICM.cpp 236 hasProfileData ? &getAnalysis<LazyBlockFrequencyInfoPass>().getBFI()
266 LazyBlockFrequencyInfoPass::getLazyBFIAnalysisUsage(AU);
267 AU.addPreserved<LazyBlockFrequencyInfoPass>();
LoopUnswitch.cpp 231 AU.addPreserved<LazyBlockFrequencyInfoPass>();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ExpandMemCmp.cpp 821 &getAnalysis<LazyBlockFrequencyInfoPass>().getBFI() :
836 LazyBlockFrequencyInfoPass::getLazyBFIAnalysisUsage(AU);
911 INITIALIZE_PASS_DEPENDENCY(LazyBlockFrequencyInfoPass)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 4064 LazyBlockFrequencyInfoPass::getLazyBFIAnalysisUsage(AU);
4086 &getAnalysis<LazyBlockFrequencyInfoPass>().getBFI() :
4114 INITIALIZE_PASS_DEPENDENCY(LazyBlockFrequencyInfoPass)
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 346 LazyBlockFrequencyInfoPass::getLazyBFIAnalysisUsage(AU);
452 BFI = &getAnalysis<LazyBlockFrequencyInfoPass>().getBFI();

Completed in 42 milliseconds