<div dir="ltr"><br><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Feb 27, 2019 at 3:17 PM Leonardo Santagada 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:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div dir="auto">My problem was that some library was still built with lto and I think that forces lld to do lto, but contrary to msvc it doesn't do any warning about it.</div></div><div dir="auto"><br></div><div dir="auto">I think we are going to try sharding the ghashes to multiple threads and have a hashmap that only contains the index to a list of seen types. This way we hope there's no need for any locking.</div><div dir="auto"><br></div><div dir="auto">Also we are investigating why we have 420 million types being linked while it appears that 95-99 % of them are not being used. De  anyone know if pch can help here? My feeling is not much as template instantiation still generates a ton of weak symbols on the pch users, but I might be confused.</div></blockquote><div><br>PCH probably doesn't help by itself - modular code generation ( <a href="https://www.youtube.com/watch?v=lYYxDXgbUZ0">https://www.youtube.com/watch?v=lYYxDXgbUZ0</a> ) can remove a lot of the duplication, but requires teaching your build system new tricks (& modularizing the code itself).<br><br>Also, I forget if Windows is using -fstandalone-debug by default, I think it did for a while (& I forget why). If there was a way to avoid that, it'd also reduce duplication.<br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="auto"><br></div><div dir="auto">Also another idea is to create lib files with types and hashes merged, where is llvm-lib source at? It seems funny but I don't seem to find it anywhere.</div><div dir="auto"><br></div><div dir="auto">Ps: the cmake bug for using llvm in visual studio projects has been fixed upstream.</div><div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, 27 Feb 2019 at 20:10, Reid Kleckner <<a href="mailto:rnk@google.com" target="_blank">rnk@google.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div dir="ltr">This could be ICF. There were lots of issues with ICF on ARM64, but they are not inherently ARM64-specific, they just come up there more often. See <a href="https://reviews.llvm.org/D56986" target="_blank">https://reviews.llvm.org/D56986</a> which fixes that.</div><div dir="ltr"><br></div><div>Easiest thing is always to profile or add /time to see what's slow.</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Feb 27, 2019 at 6:30 AM Leonardo Santagada <<a href="mailto:santagada@gmail.com" target="_blank">santagada@gmail.com</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">Anyone would know why lld takes > 30 minutes to link lld without<br>
symbols on release?<br>
<br>
The command line seems simple enough:<br>
<br>
C:\PROGRA~1\LLVM\bin\lld-link.exe /nologo @CMakeFiles\lld.rsp<br>
/out:bin\lld.exe /implib:lib\lld.lib /version:0.0 /machine:x64<br>
-fuse-ld=lld /STACK:10000000 /INCREMENTAL:NO /subsystem:console<br>
/MANIFEST /MANIFESTFILE:bin\lld.exe.manifest<br>
<br>
On Mon, Feb 25, 2019 at 8:20 PM Leonardo Santagada <<a href="mailto:santagada@gmail.com" target="_blank">santagada@gmail.com</a>> wrote:<br>
><br>
> Sadly the patch on <a href="https://reviews.llvm.org/D55585" rel="noreferrer" target="_blank">https://reviews.llvm.org/D55585</a> didn't apply on my<br>
> clone of llvm at all :( It will take me quite some time to test this<br>
> out.<br>
><br>
> On Mon, Feb 25, 2019 at 5:08 PM Alexandre Ganea<br>
> <<a href="mailto:alexandre.ganea@ubisoft.com" target="_blank">alexandre.ganea@ubisoft.com</a>> wrote:<br>
> ><br>
> > For enabling large memory pages, see this link: <a href="https://support.sisoftware.co.uk/knowledgebase.php?article=52" rel="noreferrer" target="_blank">https://support.sisoftware.co.uk/knowledgebase.php?article=52</a><br>
> ><br>
> > Meow hash isn't in the patch I posted, but you can use xxHash, it is good enough. Just add /hasher:xxhash to the LLD cmd-line.<br>
> ><br>
> ><br>
> > -----Original Message-----<br>
> > From: Leonardo Santagada <<a href="mailto:santagada@gmail.com" target="_blank">santagada@gmail.com</a>><br>
> > Sent: Monday, February 25, 2019 11:05 AM<br>
> > To: Alexandre Ganea <<a href="mailto:alexandre.ganea@ubisoft.com" target="_blank">alexandre.ganea@ubisoft.com</a>><br>
> > Cc: Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>>; Reid Kleckner <<a href="mailto:rnk@google.com" target="_blank">rnk@google.com</a>>; llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>><br>
> > Subject: Re: [llvm-dev] Making LLD PDB generation faster<br>
> ><br>
> > Times for lld compiled with LTO:<br>
> ><br>
> >   Input File Reading:          1430 ms (  3.3%)<br>
> >   Code Layout:                  486 ms (  1.1%)<br>
> >   PDB Emission (Cumulative):  41042 ms ( 94.6%)<br>
> >     Add Objects:              33117 ms ( 76.4%)<br>
> >       Type Merging:           25861 ms ( 59.6%)<br>
> >       Symbol Merging:          7011 ms ( 16.2%)<br>
> >     TPI Stream Layout:          996 ms (  2.3%)<br>
> >     Globals Stream Layout:      513 ms (  1.2%)<br>
> >     Commit to Disk:            5175 ms ( 11.9%)<br>
> >   Commit Output File:            37 ms (  0.1%)<br>
> > -------------------------------------------------<br>
> > Total Link Time:              43366 ms (100.0%)<br>
> ><br>
> > LTO didn't help much :(<br>
> ><br>
> > Now I will try Alexandre patches and switch fo xxHash64 or meow hashing. I need to discover how to enable huge pages on my windows<br>
> > (1809)<br>
> ><br>
> > ps: Need to figure out how to limit the number of link jobs in ninja as that almost used the whole 128GB of ram on my machine. On our distributed build system we can limit linking jobs (which are the only strict local jobs) to 8.<br>
> ><br>
> > On Mon, Feb 25, 2019 at 4:47 PM Alexandre Ganea <<a href="mailto:alexandre.ganea@ubisoft.com" target="_blank">alexandre.ganea@ubisoft.com</a>> wrote:<br>
> > ><br>
> > > …however it is very slow to compile, because /MP isn’t currently supported by clang-cl. So each CPP is compiled sequentially, one after another. Thus my patch for adding /MP.<br>
> > ><br>
> > ><br>
> > ><br>
> > > From: Alexandre Ganea<br>
> > > Sent: Monday, February 25, 2019 10:42 AM<br>
> > > To: Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>>; Leonardo Santagada<br>
> > > <<a href="mailto:santagada@gmail.com" target="_blank">santagada@gmail.com</a>><br>
> > > Cc: Reid Kleckner <<a href="mailto:rnk@google.com" target="_blank">rnk@google.com</a>>; llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>><br>
> > > Subject: RE: [llvm-dev] Making LLD PDB generation faster<br>
> > ><br>
> > ><br>
> > ><br>
> > > Yes, -Tllvm works.<br>
> > ><br>
> > ><br>
> > ><br>
> > ><br>
> > ><br>
> > > From: Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>><br>
> > > Sent: Monday, February 25, 2019 10:36 AM<br>
> > > To: Leonardo Santagada <<a href="mailto:santagada@gmail.com" target="_blank">santagada@gmail.com</a>><br>
> > > Cc: Alexandre Ganea <<a href="mailto:alexandre.ganea@ubisoft.com" target="_blank">alexandre.ganea@ubisoft.com</a>>; Reid Kleckner<br>
> > > <<a href="mailto:rnk@google.com" target="_blank">rnk@google.com</a>>; llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>><br>
> > > Subject: Re: [llvm-dev] Making LLD PDB generation faster<br>
> > ><br>
> > ><br>
> > ><br>
> > > Is -Tllvm even supported? I thought the only thing you could pass for<br>
> > > -T was -Thost=x64<br>
> > ><br>
> > > On Mon, Feb 25, 2019 at 6:52 AM Leonardo Santagada <<a href="mailto:santagada@gmail.com" target="_blank">santagada@gmail.com</a>> wrote:<br>
> > ><br>
> > > I think its a huge bug that it doesn't raise any errors or warnings<br>
> > > about it. But I will open a ticket on cmake, they should be using<br>
> > > clang-cl.exe and lld-link.exe if T="llvm" probably set host to 64 bit<br>
> > > as well.<br>
> > ><br>
> > > On Mon, Feb 25, 2019 at 3:34 PM Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>> wrote:<br>
> > > ><br>
> > > > I don’t think changing the compiler or linker is supported with the<br>
> > > > vs generator, but I also don’t think it’s a bug On Mon, Feb 25, 2019 at 6:31 AM Alexandre Ganea <<a href="mailto:alexandre.ganea@ubisoft.com" target="_blank">alexandre.ganea@ubisoft.com</a>> wrote:<br>
> > > >><br>
> > > >> Can you please try using Ninja instead?<br>
> > > >><br>
> > > >> cmake -G Ninja f:/svn/llvm -DCMAKE_BUILD_TYPE=Release<br>
> > > >> -DLLVM_OPTIMIZED_TABLEGEN=true<br>
> > > >> -DLLVM_EXTERNAL_LLD_SOURCE_DIR=f:/svn/lld<br>
> > > >> -DLLVM_TOOL_LLD_BUILD=true -DLLVM_ENABLE_LLD=true<br>
> > > >> -DCMAKE_C_COMPILER="C:/Program Files/LLVM/bin/clang-cl.exe"<br>
> > > >> -DCMAKE_CXX_COMPILER="C:/Program Files/LLVM/bin/clang-cl.exe"<br>
> > > >> -DCMAKE_LINKER="C:/Program Files/LLVM/bin/lld-link.exe"<br>
> > > >> -DLLVM_ENABLE_PDB=true<br>
> > > >><br>
> > > >> It will be faster to compile. The setup I use is the above Ninja cmd-line for compiling optimized builds; and in addition, I keep the Visual Studio generator, as you do, but only for having a .sln to debug. It is a bit annoying to cmake twice, in two different build folders, but you can write a batch script.<br>
> > > >><br>
> > > >> If the above works, maybe you should log the bug on <a href="https://bugs.llvm.org/" rel="noreferrer" target="_blank">https://bugs.llvm.org/</a> so it is not forgotten.<br>
> > > >><br>
> > > >> Alex.<br>
> > > >><br>
> > > >> -----Original Message-----<br>
> > > >> From: Leonardo Santagada <<a href="mailto:santagada@gmail.com" target="_blank">santagada@gmail.com</a>><br>
> > > >> Sent: Monday, February 25, 2019 9:04 AM<br>
> > > >> To: Alexandre Ganea <<a href="mailto:alexandre.ganea@ubisoft.com" target="_blank">alexandre.ganea@ubisoft.com</a>><br>
> > > >> Cc: Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>>; Reid Kleckner<br>
> > > >> <<a href="mailto:rnk@google.com" target="_blank">rnk@google.com</a>>; llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>><br>
> > > >> Subject: Re: [llvm-dev] Making LLD PDB generation faster<br>
> > > >><br>
> > > >> Ok so there's a lot of confusion on cmake regarding using llvm as a toolset. It still does all its checks against cl.exe (not clang-cl) and somehow overriders CMAKE_LINKER to be link.exe. I tried a couple of places including:<br>
> > > >><br>
> > > >> cmake -G "Visual Studio 15 2017" -A x64 -T"llvm",host=x64 -DCMAKE_LINKER="C:/Program Files/LLVM/bin/lld-link.exe"<br>
> > > >> -DCMAKE_CXX_COMPILER="C:/Program Files/LLVM/bin/clang-cl.exe"<br>
> > > >> -DCMAKE_C_COMPILER="C:/Program Files/LLVM/bin/clang-cl.exe"<br>
> > > >> -DLLVM_ENABLE_LTO=true -DLLVM_ENABLE_PDB=true<br>
> > > >> -DLLVM_ENABLE_PROJECTS=lld  ../llvm<br>
> > > >><br>
> > > >> but it seems like the generator overrides it.<br>
> > > >><br>
> > > >><br>
> > > >> ps: Created a phabricator account<br>
> > > >><br>
> > > >> On Mon, Feb 25, 2019 at 2:48 PM Alexandre Ganea <<a href="mailto:alexandre.ganea@ubisoft.com" target="_blank">alexandre.ganea@ubisoft.com</a>> wrote:<br>
> > > >> ><br>
> > > >> > That's good news. For having debug info, you could try adding /Z7 on the cmake cmd-line, such as -DCMAKE_CXX_FLAGS="/Z7". Or use the 'RelWithDebInfo' target instead of 'Release' and add -DCMAKE_CXX_FLAGS="/Ob2" (because that target uses /Ob1 as a default).<br>
> > > >> ><br>
> > > >> > Can you please send a patch on Phabricator if you fix the LLVM_ENABLE_PDB issue with Clang? The goal is to have performance out-of-the-box.<br>
> > > >> ><br>
> > > >> > Alex.<br>
> > > >> ><br>
> > > >> > -----Original Message-----<br>
> > > >> > From: Leonardo Santagada <<a href="mailto:santagada@gmail.com" target="_blank">santagada@gmail.com</a>><br>
> > > >> > Sent: Monday, February 25, 2019 7:36 AM<br>
> > > >> > To: Alexandre Ganea <<a href="mailto:alexandre.ganea@ubisoft.com" target="_blank">alexandre.ganea@ubisoft.com</a>><br>
> > > >> > Cc: Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>>; Reid Kleckner<br>
> > > >> > <<a href="mailto:rnk@google.com" target="_blank">rnk@google.com</a>>; llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>><br>
> > > >> > Subject: Re: [llvm-dev] Making LLD PDB generation faster<br>
> > > >> ><br>
> > > >> > With your patch for cmake and reconfiguring it with "cmake -G "Visual Studio 15 2017" -A x64 -T"llvm",host=x64 -DLLVM_ENABLE_PDB=true -DLLVM_ENABLE_PROJECTS=lld  ../llvm" we get these results:<br>
> > > >> ><br>
> > > >> >   Input File Reading:          1602 ms (  3.5%)<br>
> > > >> >   Code Layout:                  493 ms (  1.1%)<br>
> > > >> >   PDB Emission (Cumulative):  43127 ms ( 94.5%)<br>
> > > >> >     Add Objects:              34577 ms ( 75.8%)<br>
> > > >> >       Type Merging:           26709 ms ( 58.5%)<br>
> > > >> >       Symbol Merging:          7598 ms ( 16.7%)<br>
> > > >> >     TPI Stream Layout:         1107 ms (  2.4%)<br>
> > > >> >     Globals Stream Layout:      602 ms (  1.3%)<br>
> > > >> >     Commit to Disk:            5636 ms ( 12.4%)<br>
> > > >> >   Commit Output File:            16 ms (  0.0%)<br>
> > > >> > -------------------------------------------------<br>
> > > >> > Total Link Time:              45626 ms (100.0%)<br>
> > > >> ><br>
> > > >> > Unfortunately there were no pdb generated with lld.exe (or any<br>
> > > >> > other<br>
> > > >> > binaries) so I can't debug them. It seems like LLVM_ENABLE_PDB is not made to support using clang to complie itself as it tries to att /Zi to the targets instead of /Z7 and global hashes. I can patch it over here, but we probably want to fix this in cmake and on the docs, as its not clear at all how to compile lld in a performance 64bit way.<br>
> > > >> ><br>
> > > >> > On Mon, Feb 25, 2019 at 2:38 AM Alexandre Ganea <<a href="mailto:alexandre.ganea@ubisoft.com" target="_blank">alexandre.ganea@ubisoft.com</a>> wrote:<br>
> > > >> > ><br>
> > > >> > > How do you compile LLD? There's a big difference between when<br>
> > > >> > > using MSVC vs Clang. The parallel ghash patch I was mentioning<br>
> > > >> > > is almost 2x as fast when using Clang 7.0+ vs. MSVC 15.9+, I<br>
> > > >> > > don't know exactly why. I also suggest you use the Release target. You should also grab this patch:<br>
> > > >> > > <a href="https://reviews.llvm.org/D55056" rel="noreferrer" target="_blank">https://reviews.llvm.org/D55056</a> - I had to revert it because it<br>
> > > >> > > was causing issues with LLDB. But it will give an improvement for LLD.<br>
> > > >> > > Please let me know if that improves your timings.<br>
> > > >> > ><br>
> > > >> > > The page faults are probably the OS loading from disk: most, if<br>
> > > >> > > not all the files are accessed by LLD by mmap'ing them.<br>
> > > >> > ><br>
> > > >> > > The lockless DenseHash I was talking about will be published in<br>
> > > >> > > an upcoming patch. As for reproducibility, this can be an issue<br>
> > > >> > > on build systems. But on local machines, we could explicitly<br>
> > > >> > > state that we want non-deterministic builds, through some cmd-line flag. If your 57sec for "Type Merging"<br>
> > > >> > > transforms into 5sec when non-deterministic, I think that's worth it.<br>
> > > >> > ><br>
> > > >> > > Alex.<br>
> > > >> > ><br>
> > > >> > > -----Original Message-----<br>
> > > >> > > From: Leonardo Santagada <<a href="mailto:santagada@gmail.com" target="_blank">santagada@gmail.com</a>><br>
> > > >> > > Sent: Sunday, February 24, 2019 6:43 PM<br>
> > > >> > > To: Alexandre Ganea <<a href="mailto:alexandre.ganea@ubisoft.com" target="_blank">alexandre.ganea@ubisoft.com</a>><br>
> > > >> > > Cc: Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>>; Reid Kleckner<br>
> > > >> > > <<a href="mailto:rnk@google.com" target="_blank">rnk@google.com</a>>; llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>><br>
> > > >> > > Subject: Re: [llvm-dev] Making LLD PDB generation faster<br>
> > > >> > ><br>
> > > >> > > More info inline, I think there is a couple of misconceptions on what I'm doing:<br>
> > > >> > ><br>
> > > >> > > 1) I already patch all my .obj files to contain .debug$H<br>
> > > >> > > entries so it is all ghashed already<br>
> > > >> > > 2) All the 35s is spent adding to the DenseMap<br>
> > > >> > ><br>
> > > >> > > Here is my current times (lld-link.exe compiled with -O2 so no lto/pgo), lld generates a 141 MB binary and 1.2GB pdb file:<br>
> > > >> > ><br>
> > > >> > >   Input File Reading:          1724 ms (  2.1%)<br>
> > > >> > >   Code Layout:                  482 ms (  0.6%)<br>
> > > >> > >   PDB Emission (Cumulative):  79261 ms ( 96.8%)<br>
> > > >> > >     Add Objects:              68650 ms ( 83.8%)<br>
> > > >> > >       Type Merging:           57534 ms ( 70.2%)<br>
> > > >> > >       Symbol Merging:         10822 ms ( 13.2%)<br>
> > > >> > >     TPI Stream Layout:         1501 ms (  1.8%)<br>
> > > >> > >     Globals Stream Layout:      770 ms (  0.9%)<br>
> > > >> > >     Commit to Disk:            7007 ms (  8.6%)<br>
> > > >> > >   Commit Output File:            19 ms (  0.0%)<br>
> > > >> > > -------------------------------------------------<br>
> > > >> > > Total Link Time:              81900 ms (100.0%)<br>
> > > >> > ><br>
> > > >> > > Our target is for < 20 seconds linking, anything bellow 40 seconds would be ok. Ideal times would be around 8s (in which it will mostly beat link.exe incremental linking).<br>
> > > >> > ><br>
> > > >> > > My tip for profiling is using superluminal<br>
> > > >> > > (<a href="https://www.superluminal.eu/" rel="noreferrer" target="_blank">https://www.superluminal.eu/</a>) its the easiest way to see everything your code is doing.<br>
> > > >> > ><br>
> > > >> > > On Sun, Feb 24, 2019 at 5:18 PM Alexandre Ganea <<a href="mailto:alexandre.ganea@ubisoft.com" target="_blank">alexandre.ganea@ubisoft.com</a>> wrote:<br>
> > > >> > > ><br>
> > > >> > > > Leonardo, to answer to your questions, yes to all of them J<br>
> > > >> > > > You can take a<br>
> > > >> > > ><br>
> > > >> > > > look at this prototype/proposal:<br>
> > > >> > > > <a href="https://reviews.llvm.org/D55585" rel="noreferrer" target="_blank">https://reviews.llvm.org/D55585</a><br>
> > > >> > > ><br>
> > > >> > > ><br>
> > > >> > > ><br>
> > > >> > > > Overall, computing ghashes in parallel at link-time and<br>
> > > >> > > > merging Types with them<br>
> > > >> > > ><br>
> > > >> > > > is less costly that the current approach to merging. The<br>
> > > >> > > > 35sec you’re seeing<br>
> > > >> > > ><br>
> > > >> > > > for merging should go down to about 15sec.<br>
> > > >> > ><br>
> > > >> > > I don't do much computing of ghashes as we already preprocess all .obj files from msvc to add a .debug$H to them. The whole 35 seconds is spent in just densehash findbucket function. The rest of the time is mostly pagefaults (I guess to load in obj data and to grow the final pdb?).<br>
> > > >> > ><br>
> > > >> > > > The patch doesn’t parallelize<br>
> > > >> > > ><br>
> > > >> > > > (yet) the Type merging itself, but we have an alternate<br>
> > > >> > > > multithread-suitable<br>
> > > >> > > ><br>
> > > >> > > > implementation of DenseHash which already supports lockless,<br>
> > > >> > > > wait-free,<br>
> > > >> > > ><br>
> > > >> > > > insert/fetch/resize.<br>
> > > >> > ><br>
> > > >> > > Where is this lockless densehash? This is the part were I would love to help, but if there is a densehash it is probably just creating the threads and letting them merge the results. I'm a bit afraid of reproduceability of builds, but as we already don't have that with link.exe we are not really loosing anything.<br>
> > > >> > ><br>
> > > >> > > ><br>
> > > >> > > ><br>
> > > >> > > > The prototype allows for testing different hashing<br>
> > > >> > > > algorithms, and indeed<br>
> > > >> > > ><br>
> > > >> > > > xxHash seems to be the best general-purpose choice. I’ve also<br>
> > > >> > > > added support<br>
> > > >> > > ><br>
> > > >> > > > for more specialized hardware-based hashes, like Casey<br>
> > > >> > > > Muratori’s Meow Hash<br>
> > > >> > > ><br>
> > > >> > > > (uses hardware AES SSE 4.2 instructions), which brings the figures down a bit.<br>
> > > >> > > ><br>
> > > >> > ><br>
> > > >> > > I remembered Meow hashes needing at least k bytes of data, but looking at their website right now there is no mention of it. Hashing performance isn't much of an impact as we do it per .obj file distributed through our company so the time to calculate those are completely distributed.<br>
> > > >> > ><br>
> > > >> > > ><br>
> > > >> > > ><br>
> > > >> > > > Future changes could write back the computed ghash stream<br>
> > > >> > > > back to OBJs if<br>
> > > >> > > ><br>
> > > >> > > > /INCREMENTAL is specified (just an idea). Incrementally<br>
> > > >> > > > linking will be faster<br>
> > > >> > > ><br>
> > > >> > > > that way when working with MSVC OBJs.<br>
> > > >> > > ><br>
> > > >> > ><br>
> > > >> > > I already have a patch for llvm-objcopy that adds a<br>
> > > >> > > -add-ghashes option that does this, I will be cleaning it up<br>
> > > >> > > this week and sending a PR for it<br>
> > > >> > ><br>
> > > >> > > ><br>
> > > >> > > ><br>
> > > >> > > > As for creating PDBs for independent projects, that would help most likely.<br>
> > > >> > > ><br>
> > > >> > > > However the ghash stream would need to be stored in the PDB<br>
> > > >> > > > in that case<br>
> > > >> > > ><br>
> > > >> > > > (currently, ghashes are dropped after merging). That could<br>
> > > >> > > > help when using<br>
> > > >> > > ><br>
> > > >> > > > rarely compiled projects, used along with network caches.<br>
> > > >> > ><br>
> > > >> > > I meant actually a .lib, with all the obj files inside plus a merged .debug$H entry. No pdb generation or changes necessary, we just run the same code that merges types in lld and do that a the librarian level.<br>
> > > >> > ><br>
> > > >> > > ><br>
> > > >> > > > I will start sending smaller patches to converge towards the<br>
> > > >> > > > functionally of<br>
> > > >> > > ><br>
> > > >> > > > the prototype above.<br>
> > > >> > > ><br>
> > > >> > > ><br>
> > > >> > > ><br>
> > > >> > > > Best,<br>
> > > >> > > ><br>
> > > >> > > > Alex.<br>
> > > >> > > ><br>
> > > >> > > ><br>
> > > >> > > ><br>
> > > >> > > > From: Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>><br>
> > > >> > > > Sent: Sunday, February 24, 2019 1:20 AM<br>
> > > >> > > > To: Leonardo Santagada <<a href="mailto:santagada@gmail.com" target="_blank">santagada@gmail.com</a>><br>
> > > >> > > > Cc: Alexandre Ganea <<a href="mailto:alexandre.ganea@ubisoft.com" target="_blank">alexandre.ganea@ubisoft.com</a>>; Reid<br>
> > > >> > > > Kleckner <<a href="mailto:rnk@google.com" target="_blank">rnk@google.com</a>>; llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>><br>
> > > >> > > > Subject: Re: [llvm-dev] Making LLD PDB generation faster<br>
> > > >> > > ><br>
> > > >> > > ><br>
> > > >> > > ><br>
> > > >> > > > +Reid and Alexandre, who have been doing work in this area<br>
> > > >> > > > +recently<br>
> > > >> > > ><br>
> > > >> > > ><br>
> > > >> > > ><br>
> > > >> > > > On Sat, Feb 23, 2019 at 4:07 AM Leonardo Santagada via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br>
> > > >> > > ><br>
> > > >> > > > Hi,<br>
> > > >> > > ><br>
> > > >> > > > Is anyone working on making the PDB generation on LLD faster?<br>
> > > >> > > > Looking of a trace for linking one of our binaries (it takes<br>
> > > >> > > > 1min6s-1min20s) I see two things:<br>
> > > >> > > ><br>
> > > >> > > > 1) LookupBucketFor(Val, ConstFoundBucket); takes 35s so<br>
> > > >> > > > almost half of the time of linking, mostly finding duplicates<br>
> > > >> > > > 2) There is no parallelization inside of addObjectsToPDB<br>
> > > >> > > ><br>
> > > >> > > > Is anyone working on those? Also has anyone thought about<br>
> > > >> > > > merging .obj files to deduplicate type infomation so we can<br>
> > > >> > > > do the linking on projects to generate something like a lib<br>
> > > >> > > > file, but deduplicated debug information (as far as I know<br>
> > > >> > > > actual .lib just put all pdbs or<br>
> > > >> > > > /Z7 debug info inside a file without dedup).<br>
> > > >> > > ><br>
> > > >> > > > Just looking at the code it seems it is much more mature and<br>
> > > >> > > > also the choice of SHA1_8 seems interesting (still don't know<br>
> > > >> > > > why not use xxHash64).<br>
> > > >> > > ><br>
> > > >> > > > ps: My code to add ghashes to msvc compiled .obj files is<br>
> > > >> > > > almost ready to be pushed as an option for llvm-objcopy.<br>
> > > >> > > ><br>
> > > >> > > > --<br>
> > > >> > > ><br>
> > > >> > > > Leonardo Santagada<br>
> > > >> > > > _______________________________________________<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>
> > > >> > ><br>
> > > >> > ><br>
> > > >> > ><br>
> > > >> > > --<br>
> > > >> > ><br>
> > > >> > > Leonardo Santagada<br>
> > > >> ><br>
> > > >> ><br>
> > > >> ><br>
> > > >> > --<br>
> > > >> ><br>
> > > >> > Leonardo Santagada<br>
> > > >><br>
> > > >><br>
> > > >><br>
> > > >> --<br>
> > > >><br>
> > > >> Leonardo Santagada<br>
> > ><br>
> > ><br>
> > ><br>
> > > --<br>
> > ><br>
> > > Leonardo Santagada<br>
> ><br>
> ><br>
> ><br>
> > --<br>
> ><br>
> > Leonardo Santagada<br>
><br>
><br>
><br>
> --<br>
><br>
> Leonardo Santagada<br>
<br>
<br>
<br>
-- <br>
<br>
Leonardo Santagada<br>
</blockquote></div>
</blockquote></div></div>-- <br><div dir="ltr" class="m_882689194256157062gmail_signature" data-smartmail="gmail_signature"><br>Leonardo Santagada</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>