<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Feb 19, 2016 at 10:46 PM, Vikram TV <span dir="ltr"><<a href="mailto:vikram.tarikere@gmail.com" target="_blank">vikram.tarikere@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi,<div><br></div><div>Thanks for the reply. Few thoughts inlined.</div><div class="gmail_extra"><br><div class="gmail_quote"><span class="">On Fri, Feb 19, 2016 at 8:00 AM, Adam Nemet <span dir="ltr"><<a href="mailto:anemet@apple.com" target="_blank">anemet@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">Hi Vikram,<div><br><div><div><span><blockquote type="cite"><div>On Feb 18, 2016, at 9:21 AM, Vikram TV via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:</div><br><div><div dir="ltr">Hi all,<div><br></div><div>I have created a patch (up for review at: <a href="http://reviews.llvm.org/D17386" target="_blank">http://reviews.llvm.org/D17386</a>) that does Loop Fusion implementation.</div><div><br></div><div>Approach:</div><div>Legality: Currently it can fuse two adjacent loops whose iteration spaces are same and are at same depth. <br></div><div><br></div><div>Dependence legality: Currently, dependence legality cannot be checked across loops. Hence the loops are cloned along a versioned path, unconditionally fused along that path and then the dependence legality is checked on the fused loop keeping the instructions from original loops in context. Fusion is illegal if there is a backward dependence between memory accesses whose source was in first loop and sink was in second loop.</div><div>Currently, LoopAccessAnalysis is used to check dependence legality.</div></div></div></blockquote><div><br></div></span><div>Thanks for writing up the design here.</div><div><br></div><div>I think we have a pretty strong policy against creating temporary instructions and here you actually create an entire loop just to check legality.</div></div></div></div></div></blockquote></span><div>I didn't understand the consequences here. A subsequent DCE pass or explicit removal in this case is taking care of the temporaries. Any pointers in this regard would be helpful.</div><span 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"><div><div><div><div><br></div><div>It would probably be a better design to add the capability of adding two LAI objects together.  This would effectively simulate the fusion on the analysis side so you could query the legality from that.</div></div></div></div></div></blockquote></span><div>I am not sure how the underlying analysis like SCEV would behave in this case. As per my understanding, it queries for a particular loop while we have populated accesses from two different loops. But assuming that it works, we would lose the ability to try/test using DependenceAnalysis in future. Currently, it is very easy to replace LoopAccessAnalysis with DependenceAnalysis.</div><span 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"><div><div><div><div><br></div><div>Specifically, you could check if you have backward dependences between instructions in L2 to instructions in L1 which would be illegal.</div><div><br></div><div>As a side effect you’d also get the total set of memchecks which you could filter to only include checks where the participating pointers come from different loops.  (This is quite similar to LoopDistribution.)</div></div></div></div></div></blockquote></span><div>I am happy to add a routine in a subsequent patch that filter the checks.</div></div></div></div></blockquote><div>Just to clarify, I meant to filter the runtime checks which is currently not done in the patch.</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><span 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"><div><div><div><div><br></div><div>Also I don’t think it should be too hard to teach LVer to be able to version two consecutive loops (or arbitrary CFG?).</div></div></div></div></div></blockquote></span><div>I think yes. Instead of Loop Versioning deciding to version, code can be factored out so that it versions unconditionally "also" as requested by the pass that uses it. </div><div><div class="h5"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><div><div><div><br></div><div>Let me know what you think,</div><div>Adam</div><div><br></div><blockquote type="cite"><div><div><div><div dir="ltr"><div><br></div><div>A basic diagram below tries to explain the approach taken to test dependence legality on two adjacent loops (L1 and L2).</div><div><br></div><div><div>    L1PH        (PH: Preheader)</div><div>    |               </div><div>    L1              </div><div>    |               </div><div>    CB (L1Exit/L2PH: ConnectingBlock (CB) )</div><div>    |               </div><div>    L2              </div><div>    |               </div><div>    L2Exit</div></div><div><br></div><div>is versioned as:</div><div><br></div><div><div>    BooleanBB      </div><div>          /\          </div><div> L1PH  L1PH.clone</div><div>         |     |         </div><div>      L1    L1.clone  </div><div>         |     |         </div><div>      CB    CB.clone  </div><div>         |     |         </div><div>      L2    L2.clone  </div><div>          \  /          </div><div>       L2Exit</div></div><div><br></div><div>And fused as:</div><div><div><br></div><div>  BooleanBB      </div><div>          /\</div><div> L1PH  FusedPH</div><div>         |  |</div><div>      L1  L1Blocks</div><div>         |  |              \</div><div>     CB  L2Blocks |</div><div>         |  |             |/</div><div>      L2  |</div><div>         \ /</div><div>   CommonExit</div></div><div><br></div><div>Profitability: Yet to be added.</div><div><br></div><div>Further, based on legality and profitability success, the fused loop is either retained or removed. If runtime checks are necessary, both original and fused loops are retained; otherwise the original loops are removed.</div><div><br></div><div>Currently, I have scheduled the fusion pass after distribution pass. Such a schedule negates the effect of the other pass, but given that the distribution (and fusion) pass is experimental and off by default, I felt it was okay to schedule that way till a global profitability is implemented.</div><div><br></div><div>Please share your feedback about the design and implementation.</div><div><br></div><div>Thank you</div><div>-- <br></div><div><div><div dir="ltr"><div><div dir="ltr"><div><br></div><div>Good time...</div><div>Vikram TV</div><div>CompilerTree Technologies</div><div>Mysore, Karnataka, INDIA</div></div></div></div></div>
</div></div></div></div>
_______________________________________________<br>LLVM Developers mailing list<br><a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br><a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br></div></blockquote></div><br></div></div></div></blockquote></div></div></div><div><div class="h5"><br><br clear="all"><div><br></div>-- <br><div><div dir="ltr"><div><div dir="ltr"><div><br></div><div>Good time...</div><div>Vikram TV</div><div>CompilerTree Technologies</div><div>Mysore, Karnataka, INDIA</div></div></div></div></div>
</div></div></div></div>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><br></div><div>Good time...</div><div>Vikram TV</div><div>CompilerTree Technologies</div><div>Mysore, Karnataka, INDIA</div></div></div></div></div>
</div></div>