Lines Matching defs:PMS
612 void CallGraphSCCPass::assignPassManager(PMStack &PMS,
615 while (!PMS.empty() &&
616 PMS.top()->getPassManagerType() > PMT_CallGraphPassManager)
617 PMS.pop();
619 assert(!PMS.empty() && "Unable to handle Call Graph Pass");
622 if (PMS.top()->getPassManagerType() == PMT_CallGraphPassManager)
623 CGP = (CGPassManager*)PMS.top();
626 assert(!PMS.empty() && "Unable to create Call Graph Pass Manager");
627 PMDataManager *PMD = PMS.top();
637 // and push new managers into PMS
641 // [4] Push new manager into PMS
642 PMS.push(CGP);