<html><head><meta http-equiv="Content-Type" content="text/html; charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Hello,<br class=""><div><br class=""><blockquote type="cite" class=""><div class="">On Apr 26, 2018, at 6:44 AM, Son Tuan VU <<a href="mailto:sontuan.vu119@gmail.com" class="">sontuan.vu119@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class="">Hi Vedant,<div class=""><br class=""></div><div class="">I have tried to implement the fix you proposed, but it didn't work as expected. I created a new <b class="">Module</b> Pass Manager (not Function Pass Manager) and override the <b class="">add()</b> method like this:</div><div class=""><br class=""></div><div class=""><div class="">class DebugifyEachPassManager : public legacy::PassManager {</div><div class=""> public:</div><div class="">   void add(Pass *P) override {</div><div class="">     PassManager::add(<wbr class="">createDebugifyPass());</div><div class="">     PassManager::add(P);</div><div class="">     PassManager::add(<wbr class="">createCheckDebugifyPass());</div><div class="">   }    </div><div class="">        </div><div class="">   bool run(Module &M) {</div><div class="">     return PassManager::run(M);</div><div class="">   }            </div><div class="">};     </div><div class=""><br class=""></div>However, we can't apply and check debugify of <b class="">FunctionPass</b>es since these passes are managed by Function Pass Managers created on the fly during <b class="">schedulePass()</b>. I guess we'd have to implement the FunctionPass version of Debugify and CheckDebugify.</div></div></div></blockquote><div><br class=""></div><div>Yes, Anastasis (CC'd) has started exploring this idea: <a href="https://gramanas.github.io/posts/community-bonding/" class="">https://gramanas.github.io/posts/community-bonding/</a>. Please sync up with him before you start hacking, so you can collaborate on the design and split up work :). Now that GSoC has officially started, Anastasis needs to plan work ahead of time, so we need to find a way to avoid duplicating work.</div><div><br class=""></div><div>If you find that it's difficult to split up work on this, consider working on enhancing opt's -verify-each mode so that it runs after each pass in -O1/-O2/etc. This would help address use-before-def scenarios with debug info intrinsics. There's an ongoing discussion about this here: <a href="https://reviews.llvm.org/D46100" class="">https://reviews.llvm.org/D46100</a>.</div><div><br class=""></div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class=""> But what about <b class="">Call Graph SCC Pass</b> and <b class="">Loop Pass</b>?</div></div></div></blockquote><div><br class=""></div><div>Great question! It might not be worthwhile to shoehorn what debugify does onto cgscc passes. The major cgscc pass I know of is the inliner, and its handling of debug info can be tested in a more targeted way. I think it would be worth adding a debugify wrapper for loop passes, however.</div><div><br class=""></div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class="">Do we have a way to know whether a pass is an analysis or a transformation at the moment of adding the pass to the manager? I want to try to debugify only transformation passes because analysis passes do not modify the IR, hence do not modify the DI. But I'm not sure if there's a way to achieve this.</div></div></div></blockquote><div><br class=""></div>I'm not sure if there's a way to do this, but I see it as an optimization that can be deferred for now.</div><div><br class=""></div><div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class="">I'm currently trying to strip debug info after each CheckDebugify.</div></div></div></blockquote><div><br class=""></div>There's a function called StripDebugInfo which does this.</div><div><br class=""></div><div>vedant</div><div><br class=""></div><div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class=""> I have been searching everywhere but can't seem to find an API to remove MDNodes. I have seen a <b class="">MDNode::deleteAsSubclass() </b>method, unfortunately it is private.I guess nobody has ever needed to remove MDNodes/Metadata before. Can you give me some advice on how to do this please?</div></div></div></blockquote><blockquote type="cite" class=""><div dir="ltr" class=""><div class=""><br class=""></div><div class="">Thank you for your help</div><div class=""><br class=""></div></div><div class="gmail_extra"><br clear="all" class=""><div class=""><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr" class="">Son Tuan Vu</div></div></div>
<br class=""><div class="gmail_quote">On Fri, Mar 16, 2018 at 11:54 PM, Son Tuan VU <span dir="ltr" class=""><<a href="mailto:sontuan.vu119@gmail.com" target="_blank" class="">sontuan.vu119@gmail.com</a>></span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr" class="">Mhm I see now, thanks for your explanation! </div><div class="gmail_extra"><span class="HOEnZb"><font color="#888888" class=""><br clear="all" class=""><div class=""><div class="m_1955841791358062680gmail_signature" data-smartmail="gmail_signature"><div dir="ltr" class="">Son Tuan Vu</div></div></div></font></span><div class=""><div class="h5">
<br class=""><div class="gmail_quote">On Fri, Mar 16, 2018 at 10:58 PM, Vedant Kumar <span dir="ltr" class=""><<a href="mailto:vsk@apple.com" target="_blank" class="">vsk@apple.com</a>></span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class=""><br class=""><div class=""><blockquote type="cite" class=""><span class=""><div class="">On Mar 16, 2018, at 2:30 PM, Son Tuan VU <<a href="mailto:sontuan.vu119@gmail.com" target="_blank" class="">sontuan.vu119@gmail.com</a>> wrote:</div><br class="m_1955841791358062680m_-3786410432644066664Apple-interchange-newline"></span><div class=""><div dir="ltr" class="">Hi Vedant,<div class=""><br class=""></div><span class=""><div class="">Thank you for your reply. I think I can make this debugify-each mode, but I guess this is reserved for your GSoC project ?</div></span></div></div></blockquote><div class=""><br class=""></div><div class="">No, there's no reserved work. If you'd like to work on this I encourage you to do so. There's plenty of other work slated for the GSoC project. That said, let's make sure to sync up on the mailing lists to make sure work isn't being duplicated.</div><span class=""><div class=""><br class=""></div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class="">However, if I understand correctly, we do not want to take the output of the first check-debugify (I mean the .ll file with potentially all the WARNINGs and ERRORs after the first pass) as input for the second debugify. What we need is to take the fresh output of <b class="">clang -Xclang -emit-llvm -disable-O0-optnone -S </b>and iteratively test each optimization. Am I right?</div></div></div></blockquote><div class=""><br class=""></div></span><div class="">The intermediate textual output is all irrelevant. And clang isn't in the picture here. Opt's regular mode of operation is to run pass1, then run pass2, etc. In the debugify-each mode, this instead looks like: debugify, pass1, check-debugify, strip debug info, debugify, pass2, etc. etc.</div><span class="m_1955841791358062680HOEnZb"><font color="#888888" class=""><div class=""><br class=""></div><div class="">vedant</div></font></span><div class=""><div class="m_1955841791358062680h5"><div class=""><br class=""></div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class=""><br class=""></div><div class="">Cheers,</div><div class=""><br class=""></div></div><div class="gmail_extra"><br clear="all" class=""><div class=""><div class="m_1955841791358062680m_-3786410432644066664gmail_signature" data-smartmail="gmail_signature"><div dir="ltr" class="">Son Tuan Vu</div></div></div>
<br class=""><div class="gmail_quote">On Thu, Mar 15, 2018 at 4:05 AM, Vedant Kumar <span dir="ltr" class=""><<a href="mailto:vsk@apple.com" target="_blank" class="">vsk@apple.com</a>></span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class="">Hi Son Tuan,<div class=""><br class=""></div><div class="">Thanks for taking a look at this :). Responses inline --</div><div class=""><br class=""></div><div class=""><div class=""><span class=""><blockquote type="cite" class=""><div class="">On Mar 14, 2018, at 8:11 AM, Son Tuan VU <<a href="mailto:sontuan.vu119@gmail.com" target="_blank" class="">sontuan.vu119@gmail.com</a>> wrote:</div><br class="m_1955841791358062680m_-3786410432644066664m_251843486385049358Apple-interchange-newline"><div class=""><div dir="ltr" class="">Hi Vedant, hi all,<div class=""><br class=""></div><div class="">My goal is to measure debug info loss of <i class="">each</i><b class=""> </b>optimization pass in LLVM. I am trying to create a debugify-each mode in opt, inspired by verify-each mode which is supposed to already work.</div></div></div></blockquote><div class=""><br class=""></div></span>+ Anastasis, who's interested in working on this as well. There's definitely enough work to go around: once we can measure debug info loss after each pass, we'll need a testing harness.</div><div class=""><br class=""></div><div class=""><span class=""><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class="">However, if I understand correctly, the verify-each mode (triggered by -verify-each option in opt) only works when we provide a pass list or a pass pipeline.</div></div></div></blockquote><div class=""><br class=""></div></span><div class="">Yes, you're correct.</div><span class=""><div class=""><br class=""></div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class=""> Is this intended? I mean, why do not let people verify each pass in -O{1,2,3} pipeline?</div></div></div></blockquote><div class=""><br class=""></div></span><div class="">That's a good question! Like you, I assumed -verify-each "does the right thing" when you pass -O1/-O2/etc. to opt.</div><div class=""><br class=""></div><div class="">I'm not sure if the current behavior is intended (hopefully others will chime in about this :). If no one does, please file a bug.</div><div class=""><br class=""></div><div class="">I imagine this is pretty simple to fix. You can just define and use custom pass managers within opt which inject debugify passes as needed:</div><div class=""><br class=""></div><div class=""><div class=""></div><blockquote type="cite" class=""><blockquote type="cite" class=""><div class="">// In opt.cpp:</div></blockquote></blockquote><blockquote type="cite" class=""><blockquote type="cite" class=""><br class=""></blockquote></blockquote><blockquote type="cite" class=""><blockquote type="cite" class=""><div class="">class DebugifyEachFunctionPassManage<wbr class="">r : public legacy::FunctionPassManager {</div><div class="">public:</div><div class="">  explicit DebugifyEachFunctionPassManage<wbr class="">r(Module *M)</div><div class="">      : FunctionPassManager(M) {}</div><div class=""><br class=""></div><div class="">  void add(Pass *P) override {</div><div class="">    // FunctionPassManager::add(<debu<wbr class="">gify>)</div><div class="">    FunctionPassManager::add(P);</div><div class="">  }</div><div class="">};</div></blockquote></blockquote><div class=""><br class=""></div></div><span class=""><div class=""><br class=""></div><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class="">My second question is more about debugify: what should be the best way to debugify each pass? Adding a debugify-each mode would make the output unreadable!</div></div></div></blockquote><div class=""><br class=""></div></span><div class="">The intermediate output is all irrelevant. I think it'd be best to simply throw it away. What really matters are the debug info loss statistics: we should capture these stats after each pass and dump them as JSON, at the end of the pipeline.</div><span class="m_1955841791358062680m_-3786410432644066664HOEnZb"><font color="#888888" class=""><div class=""><br class=""></div><div class="">vedant</div></font></span><span class=""><div class=""><br class=""></div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class=""> Maybe writing a script that collects all optimization options (like -mem2reg or -constmerge), then pass each one of them to opt with -enable-debugify so that we have 1 output file for each debugified pass?</div><div class=""><br class=""></div><div class="">Thank you for your help,</div><div class=""><br clear="all" class=""><div class=""><div class="m_1955841791358062680m_-3786410432644066664m_251843486385049358gmail_signature" data-smartmail="gmail_signature"><div dir="ltr" class="">Son Tuan Vu</div></div></div>
</div></div>
</div></blockquote></span></div><br class=""></div></div></blockquote></div><br class=""></div>
</div></blockquote></div></div></div><br class=""></div></blockquote></div><br class=""></div></div></div>
</blockquote></div><br class=""></div>
</blockquote></div><br class=""></body></html>