<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jan 26, 2016 at 3:35 PM, Mehdi Amini <span dir="ltr"><<a href="mailto:mehdi.amini@apple.com" target="_blank">mehdi.amini@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">The hash should (almost?) never change.<div>I thought about this solution, and I plan on evaluating it a well (it applies to constants as well). </div><div>However there is a tradeoff of memory vs speed doing this.</div><div>For instance when doing LTO, we load a lot of metadata when loading and linking individual Modules, which put a lot of stress on the hash tables (both uniquing and grow). But then during optimization and CodeGen it shouldn’t and I’m not sure we want to pay the price of the memory overhead then.</div><div><br></div></div></blockquote><div>This naturally raises the questions of whether you really need hash tables to get what you want, or would some other more memory-efficient data structure be better for uniquing :)</div><div><br></div><div>While DenseMap is pretty good,  you do end up with a lot of empty buckets (or pay a high probing price).<br></div><div><br></div><div>Whereas, depending on the situation and structure, you can often pay a much lower cost (and have better behavior on hash misses). Obviously, in most cases, DenseMap should be the choice because it's consistent and who cares, but in specific situations if you are placing huge stress on it during say, uniquing, there are often better ways both in time and space (various compressed tries, ternary search trees, etc).</div><div><br></div><div><br></div><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>Note also that a ThinLTO link of `opt` right now involves loading ~30000 bitcode files, so it is roughly 30s CPU time overall for the link time for each millisecond saved for each file loaded :)</div><div><br></div><div>Let me know if you have any other suggestion!</div><div><br></div><div>— </div><span class="HOEnZb"><font color="#888888"><div>Mehdi</div><div><br></div></font></span><div><div><br><div><blockquote type="cite"><span class=""><div>On Jan 26, 2016, at 1:57 PM, Daniel Berlin <<a href="mailto:dberlin@dberlin.org" target="_blank">dberlin@dberlin.org</a>> wrote:</div><br></span><div><div class="h5"><div><div dir="ltr" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">How often does the hash change?<br><div>If it's really speed important,  you could:</div><div>A. store the hash value</div><div>B. update it when fields change.</div><div><br></div></div><div class="gmail_extra" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><br><div class="gmail_quote">On Tue, Jan 26, 2016 at 1:23 AM, Mehdi AMINI via llvm-commits<span> </span><span dir="ltr"><<a href="mailto:llvm-commits@lists.llvm.org" target="_blank">llvm-commits@lists.llvm.org</a>></span><span> </span>wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">joker.eph created this revision.<br>joker.eph added a reviewer: dexonsmith.<br>joker.eph added a subscriber: llvm-commits.<br><br>This patch changes the computation of the hash key for DISubprogram to<br>be computed on a small subset of the fields. The hash is computed a<br>lot faster, but there might be more collision in the table.<br>However by carefully selecting the fields, colisions should be rare.<br><br>Using `opt` to load the IR for FastISelEmitter.cpp.o, this patch<br>improves DISubprogram::getImpl() runtime from 28ms to 15ms.<br><br><a href="http://reviews.llvm.org/D16571" rel="noreferrer" target="_blank">http://reviews.llvm.org/D16571</a><br><br>Files:<br> <span> </span>lib/IR/LLVMContextImpl.h<br><br>Index: lib/IR/LLVMContextImpl.h<br>===================================================================<br>--- lib/IR/LLVMContextImpl.h<br>+++ lib/IR/LLVMContextImpl.h<br>@@ -519,10 +519,7 @@<br>           <span> </span>Variables == RHS->getRawVariables();<br>   }<br>   unsigned getHashValue() const {<br>-    return hash_combine(Scope, Name, LinkageName, File, Line, Type,<br>-                        IsLocalToUnit, IsDefinition, ScopeLine, ContainingType,<br>-                        Virtuality, VirtualIndex, Flags, IsOptimized,<br>-                        TemplateParams, Declaration, Variables);<br>+    return hash_combine(Scope, File, Type, Line);<br>   }<br> };<br><br><br><br><br>_______________________________________________<br>llvm-commits mailing list<br><a href="mailto:llvm-commits@lists.llvm.org" target="_blank">llvm-commits@lists.llvm.org</a><br><a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits</a></blockquote></div></div></div></div></div></blockquote></div><br></div></div></div></blockquote></div><br></div></div>