<div dir="ltr">Simone,<div><br></div><div>While not a complete solution, I believe the LoopInfo analysis pass will get you part of the way there.</div><div><br></div><div>-Josh</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Jan 2, 2015 at 7:14 PM, Simone Atzeni <span dir="ltr"><<a href="mailto:simone.at@gmail.com" target="_blank">simone.at@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
I was wondering if there is a way to count the number of loops contained in a region.<br>
<br>
For example in a program like this:<br>
<br>
----------------------------------------------------<br>
  for (int i = 1; i < MAX; ++i) {<br>
    x[i] = x[i - 1];<br>
  }<br>
<br>
  for (int i = 0; i < MAX; ++i) {<br>
    y[i] = y[i] + 1;<br>
  }<br>
<br>
  fun();<br>
<br>
  for (int i = 0; i < MAX; ++i) {<br>
    x[i] = x[i] + 1;<br>
  }<br>
----------------------------------------------------<br>
<br>
in my understanding the regions would be 2, the first one with the first 2 loops and the second one with the last loop.<br>
<br>
Is it also possible to get a region with one loop at time?<br>
<br>
Thanks.<br>
Best,<br>
Simone<br>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu">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><br></div>