<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Jan 28, 2014 at 2:47 PM, Tobias von Koch <span dir="ltr"><<a href="mailto:tobias.von.koch@gmail.com" target="_blank">tobias.von.koch@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 Stepan,<br>
<br>
Sorry for the delay. It's great that you are working on MergeFunctions as well and I agree, we should definitely try to combine our efforts to improve MergeFunctions.<br>
<br>
Just to give you some context, the pass (with the similar function merging patch) is already being used in a production setting. From my point of view, it would be better if we focus on improving its capability of merging functions at this stage rather than on reduction of compilation time.<br>

<br>
I'll give a brief overview of how our similar function merging algorithm works (you can also watch the presentation from the US LLVM conference to hear me explain it using an animation).<br>
<br>
1. Hash all functions into buckets<br>
<br>
In each bucket, separately:<br>
<br>
 2. Compare functions pair-wise and determine a<br>
    similarity metric for each pair (%age of equivalent instructions)<br>
<br>
 3. Merge identical functions (with similarity = 100%), update call<br>
    sites for those functions.<br>
<br>
 4. If the updates of call sites have touched other functions,<br>
    go back to step 2 and re-compare *only* those functions to all<br>
    others in their buckets.<br>
<br>
 Finally,<br>
<br>
 5. Form groups of similar functions for merging:<br>
    a) Pick most similar pair (A,B)<br>
    b) Find all functions C that are also similar to B but are not<br>
       more similar to some other function D.<br>
    c) Merge A with B and all the C's.<br>
    Repeat until there are no more functions to merge.<br>
<br>
As you can see, we need to compute a similarity measure for each pair of functions in a bucket. If I understand correctly, your patch reduces compile-time by avoiding comparisons of functions that cannot be identical. That's exactly what you want to do if you only want to merge identical functions. However, because we also need to determine whether functions are merely *similar*, I can't see how your idea could be applied in that case.<br>
</blockquote><div><br></div><div>Yeah, the existing pass only tries to merge identical functions (identical in machine code). I'm wondering if the "similar" function merging would be better as a separate pass (I'm genuinely wondering; I have no clue). I would wait for Nick's feedback.</div>
<div><br></div><div>-- Sean Silva</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Looking at your statistics, I see that you are considering a very large number of functions. I don't know which benchmarks you are using, but I doubt that many of these are worth merging. For instance, you rarely gain a code size benefit from merging functions with just a few instructions. Our patch takes care of this using thresholds. It's worth looking at actual code size reductions, rather than just numbers of functions merged/ compilation time spent comparing functions. It turns out that the number of functions in each bucket is really quite small once you apply some heuristics (and could still be further reduced!).<br>

<br>
Given your experience with MergeFunctions, it would be really great if you could review our patch and also try it out on your benchmarks.<span class="HOEnZb"><font color="#888888"><br>
<br>
Tobias</font></span><div class="HOEnZb"><div class="h5"><br>
<br>
On 24/01/2014 19:11, Stepan Dyatkovskiy wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Tobias.<br>
<br>
So, what do you think?<br>
<br>
If it means to much extra-job for your team, may be I can help you<br>
somehow? I really would like to.<br>
<br>
-Stepan<br>
<br>
Stepan Dyatkovskiy wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Tobias,<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I can't really see a way to combine our approach with your patch. What<br>
are your thoughts?<br>
</blockquote>
<br>
I think it is possible. Even more - we need to combine our efforts, in<br>
order to bring this pass into real live.<br>
I'have read your presentation file, and unfortunately read your patch<br>
only a little.<br>
How exactly you scan functions on 2nd stage? Could you explain the<br>
algorithm in few words, how you compare workflow? Is it possible to<br>
scan binary tree instead of hash table? ...OK.<br>
<br>
That's how I see the modification. Now its important to explain idea,<br>
so consider the simplest case: you need to catch two functions that<br>
are differs with single instruction somewhere.<br>
<br>
1. Imagine, that IR *module* contents is represented as binary tree:<br>
Each line (trace) from root to terminal node is a function.<br>
Each node - is function's primitive (instruction opcode, for example).<br>
Down - is direction to terminal nodes, up - is direction to the root.<br>
<br>
2. Now you are standing on some node. And you have two directions<br>
down-left and down-right.<br>
<br>
3. If you are able to find two equal sub-traces down (at left and at<br>
right), then the only difference lies in this node. Then we catch that<br>
case.<br>
<br>
4. Even more, if two subtrees at left and at right are equal, than you<br>
catch at once all the cases that are represented by these subtrees.<br>
<br>
I still didn't look at you patch carefully. Sorry.. But I hope that<br>
helps, and I'll try look at it in nearest time and perhaps its not the<br>
best solution I gave in this post.<br>
<br>
-Stepan<br>
<br>
22.01.2014, 20:53, "Tobias von Koch" <<a href="mailto:tobias.von.koch@gmail.com" target="_blank">tobias.von.koch@gmail.com</a>>:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Stepan,<br>
<br>
As you've seen we have recently implemented a significant enhancement to<br>
the MergeFunctions pass that also allows merging of functions that are<br>
only similar but not identical<br>
(<a href="http://llvm-reviews.chandlerc.com/D2591" target="_blank">http://llvm-reviews.<u></u>chandlerc.com/D2591</a>).<br>
<br>
Our patch also changes the way that functions are compared quite<br>
significantly. This is necessary because we need to compare all<br>
functions in a bucket in order to get a similarity measure for each<br>
pair, so we can then decide which 'groups' of functions to merge.<br>
<br>
I can't really see a way to combine our approach with your patch. What<br>
are your thoughts?<br>
<br>
Another way to improve the performance of MergeFunctions might be to<br>
make the hash function better. I've already added the size of the first<br>
BB to it, and perhaps there are other factors we could try... if we<br>
don't have to compare functions in the first place (because they're in<br>
different buckets) then that's obviously a much bigger win.<br>
<br>
Thanks,<br>
Tobias<br>
<br>
On 17/01/2014 20:25, Stepan Dyatkovskiy wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
  Hi all,<br>
<br>
  I propose simple improvement for MergeFunctions pass, that reduced<br>
its<br>
  complexity from O(N^2) to O(log(N)), where N is number of<br>
functions in<br>
  module.<br>
<br>
  The idea, is to replace the result of comparison from "bool" to<br>
  "-1,0,1". In another words: define order relation on functions set.<br>
  To be sure, that functions could be comparable that way, we have to<br>
  prove that order relation is possible on all comparison stage.<br>
<br>
  The last one is possible, if for each comparison stage we<br>
implement has<br>
  next properties:<br>
  * reflexivity (a <= a, a == a, a >= a),<br>
  * antisymmetry (if a <= b and b <= a then a  == b),<br>
  * transitivity (a <= b and b <= c, then a <= c)<br>
  * asymmetry (if a < b, then a > b or a == b).<br>
<br>
  Once we have defined order relation we can store all the functions in<br>
  binary tree and perform lookup in O(log(N)) time.<br>
<br>
  This post has two attachments:<br>
  1. The patch, that has implementation of this idea.<br>
  2. The MergeFunctions pass detailed description, with explanation how<br>
  order relation could be possible.<br>
<br>
  Hope it helps to make things better!<br>
<br>
  -Stepan.<br>
<br>
  ______________________________<u></u>_________________<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/<u></u>mailman/listinfo/llvmdev</a><br>
</blockquote></blockquote></blockquote>
<br>
</blockquote>
<br>
______________________________<u></u>_________________<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/<u></u>mailman/listinfo/llvmdev</a><br>
</div></div></blockquote></div><br></div></div>