• Home
  • Raw
  • Download

Lines Matching refs:FPP

310       FunctionPassManagerImpl *FPP = OnTheFlyManager.second;  in ~MPPassManager()  local
311 delete FPP; in ~MPPassManager()
1582 FunctionPassManagerImpl *FPP = OnTheFlyManager.second; in runOnModule() local
1583 Changed |= FPP->doInitialization(M); in runOnModule()
1625 FunctionPassManagerImpl *FPP = OnTheFlyManager.second; in runOnModule() local
1628 FPP->releaseMemoryOnTheFly(); in runOnModule()
1629 Changed |= FPP->doFinalization(M); in runOnModule()
1647 FunctionPassManagerImpl *FPP = OnTheFlyManagers[P]; in addLowerLevelRequiredPass() local
1648 if (!FPP) { in addLowerLevelRequiredPass()
1649 FPP = new FunctionPassManagerImpl(); in addLowerLevelRequiredPass()
1651 FPP->setTopLevelManager(FPP); in addLowerLevelRequiredPass()
1653 OnTheFlyManagers[P] = FPP; in addLowerLevelRequiredPass()
1661 ((PMTopLevelManager*)FPP)->findAnalysisPass(RequiredPass->getPassID()); in addLowerLevelRequiredPass()
1667 FPP->add(RequiredPass); in addLowerLevelRequiredPass()
1672 FPP->setLastUser(LU, P); in addLowerLevelRequiredPass()
1679 FunctionPassManagerImpl *FPP = OnTheFlyManagers[MP]; in getOnTheFlyPass() local
1680 assert(FPP && "Unable to find on the fly pass"); in getOnTheFlyPass()
1682 FPP->releaseMemoryOnTheFly(); in getOnTheFlyPass()
1683 FPP->run(F); in getOnTheFlyPass()
1684 return ((PMTopLevelManager*)FPP)->findAnalysisPass(PI); in getOnTheFlyPass()
1846 FPPassManager *FPP; in assignPassManager() local
1848 FPP = (FPPassManager *)PMS.top(); in assignPassManager()
1854 FPP = new FPPassManager(); in assignPassManager()
1855 FPP->populateInheritedAnalysis(PMS); in assignPassManager()
1859 TPM->addIndirectPassManager(FPP); in assignPassManager()
1863 FPP->assignPassManager(PMS, PMD->getPassManagerType()); in assignPassManager()
1866 PMS.push(FPP); in assignPassManager()
1870 FPP->add(this); in assignPassManager()