<div dir="ltr">Hi Zhoulai, <div><br></div><div>Have you tried `cl::ParseCommandLineOptions` (<a href="http://llvm.org/docs/doxygen/html/CommandLine_8cpp_source.html#l00831">http://llvm.org/docs/doxygen/html/CommandLine_8cpp_source.html#l00831</a>)? <div><br></div><div>You may need to write your own opt.cpp-like tool. There, you run ParseCommandLineOptions with "-stats" before you run any pass, and access these stats variables after all passes finish. </div><div><br></div><div>We used this approach to pass in certain optimization flags (such as -disable-machine-sink) without using opt. I hope it works for "-stats" too. </div><div><br></div><div>Jingyue</div></div></div><br><div class="gmail_quote">On Sat, May 9, 2015 at 10:16 PM Zhoulai <<a href="mailto:zell08v@gmail.com">zell08v@gmail.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>Hi,<br></div><div><br></div><div>I am using “llvm/ADT/Statistic.h" for recording the iteration number of a pass. However, instead of printing them with "opt -stat..." command line, I need these information from within the application. How can I do this?</div><div>   <br></div><div>For example, if I have: </div><div><i>STATISTIC ( HelloCounter, “Counts number of functions greeted” ) </i><br>in my pass Hello.cpp, how can I retrieve the HelloCouner from other source files? Thank you. <br clear="all"></div><div><div><div><br>Zhoulai</div></div>
</div>
</div>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu" target="_blank">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
</blockquote></div>