[Inliner] add inliner stats to new pm version of inliner
authorFedor Sergeev <fedor.sergeev@azul.com>
Tue, 14 Aug 2018 15:19:14 +0000 (15:19 +0000)
committerFedor Sergeev <fedor.sergeev@azul.com>
Tue, 14 Aug 2018 15:19:14 +0000 (15:19 +0000)
Increment existing NumInlined and NumDeleted stats in InlinerPass::run.

llvm-svn: 339682

llvm/lib/Transforms/IPO/Inliner.cpp

index 2488527..406dd76 100644 (file)
@@ -1028,6 +1028,8 @@ PreservedAnalyses InlinerPass::run(LazyCallGraph::SCC &InitialC,
       DidInline = true;
       InlinedCallees.insert(&Callee);
 
+      ++NumInlined;
+
       emit_inlined_into(ORE, DLoc, Block, Callee, F, *OIC);
 
       // Add any new callsites to defined functions to the worklist.
@@ -1154,6 +1156,7 @@ PreservedAnalyses InlinerPass::run(LazyCallGraph::SCC &InitialC,
 
     // And delete the actual function from the module.
     M.getFunctionList().erase(DeadF);
+    ++NumDeleted;
   }
 
   if (!Changed)