Lines Matching refs:MemorySSAWrapperPass
69 INITIALIZE_PASS_BEGIN(MemorySSAWrapperPass, "memoryssa", "Memory SSA", false,
73 INITIALIZE_PASS_END(MemorySSAWrapperPass, "memoryssa", "Memory SSA", false,
78 INITIALIZE_PASS_DEPENDENCY(MemorySSAWrapperPass)
2280 AU.addRequired<MemorySSAWrapperPass>(); in getAnalysisUsage()
2368 auto &MSSA = getAnalysis<MemorySSAWrapperPass>().getMSSA(); in runOnFunction()
2431 char MemorySSAWrapperPass::ID = 0;
2433 MemorySSAWrapperPass::MemorySSAWrapperPass() : FunctionPass(ID) { in MemorySSAWrapperPass() function in MemorySSAWrapperPass
2437 void MemorySSAWrapperPass::releaseMemory() { MSSA.reset(); } in releaseMemory()
2439 void MemorySSAWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const { in getAnalysisUsage()
2445 bool MemorySSAWrapperPass::runOnFunction(Function &F) { in runOnFunction()
2452 void MemorySSAWrapperPass::verifyAnalysis() const { in verifyAnalysis()
2457 void MemorySSAWrapperPass::print(raw_ostream &OS, const Module *M) const { in print()