Lines Matching refs:MemorySSAWrapperPass
68 INITIALIZE_PASS_BEGIN(MemorySSAWrapperPass, "memoryssa", "Memory SSA", false,
72 INITIALIZE_PASS_END(MemorySSAWrapperPass, "memoryssa", "Memory SSA", false,
77 INITIALIZE_PASS_DEPENDENCY(MemorySSAWrapperPass)
2265 AU.addRequired<MemorySSAWrapperPass>(); in getAnalysisUsage()
2353 auto &MSSA = getAnalysis<MemorySSAWrapperPass>().getMSSA(); in runOnFunction()
2404 char MemorySSAWrapperPass::ID = 0;
2406 MemorySSAWrapperPass::MemorySSAWrapperPass() : FunctionPass(ID) { in MemorySSAWrapperPass() function in MemorySSAWrapperPass
2410 void MemorySSAWrapperPass::releaseMemory() { MSSA.reset(); } in releaseMemory()
2412 void MemorySSAWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const { in getAnalysisUsage()
2418 bool MemorySSAWrapperPass::runOnFunction(Function &F) { in runOnFunction()
2425 void MemorySSAWrapperPass::verifyAnalysis() const { in verifyAnalysis()
2430 void MemorySSAWrapperPass::print(raw_ostream &OS, const Module *M) const { in print()