<div dir="ltr"><div dir="ltr"><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Sep 30, 2020 at 7:45 AM Stefanos Baziotis via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr">Hi everybody,<br><br>I'm trying to get loop hotness data across a suite (e.g. the llvm test-suite). Ideally,<br>this would be a list that for each loop would list how many times it was entered and what<br>was its iteration count (at least the latter). The closest thing I could come up with is:<br>- clang -fprofile-instr-generate (without opts) to get a .profraw<br>- Get the .profdata<br>- Give that back to clang with -fprofile-instr-use and generate .ll<br>- I note that here we get "branch_weights" stats, so if a branch is a back-edge,<br>it basically gives us the iteration count. For example, check the bottom of this file: <a href="https://pastebin.com/ZnQqJdTN" target="_blank">https://pastebin.com/ZnQqJdTN</a> which was created with the procedure above.<br>- Then, create a custom pass that goes through every loop and gathers this "branch_weights" data.<br></div></div></blockquote><div><br></div><div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif">This seems to me like a sensible approach.</div></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><br>I feel like this is both not very accurate and overly complicated for something that I<br>guess a lot of people probably have needed to gather in the past. Is there an easier<br>solution?<br><br>Thanks,<br>Stefanos</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="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div></div>