<div dir="ltr"><div><div dir="ltr">Thanks for the tips !<div>When you talk about doing all of this I suppose you think about using llvm/debuginfo/pdb, pick code here and there to generate the pdb in memory, read the executable one and perform the merge directly in my jit compiler, right ? Not using pdbutil ?</div><div dir="auto"><br></div></div></div></div><div><div><br></div></div><div><br><div class="gmail_quote"><div dir="ltr">Le mar. 15 janv. 2019 à 22:49, Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>> a écrit :<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"><br><br><div class="gmail_quote"><div dir="ltr">On Tue, Jan 15, 2019 at 2:50 AM Vivien Millet <<a href="mailto:vivien.millet@gmail.com" target="_blank">vivien.millet@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"><div dir="ltr">Hello Zachary ! <br>Thanks for your time !<br>So you are one of the happy guys who suffered from the lack of PDB format information :)<br></div></blockquote><div>Yes, that would be me :)</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">To be honest I'm really a beginner in the PDB stuff, I just read some llvm documentation to understand what went wrong when merging my PDBs.<br>In my case, what I do with my team and try to achieve is this :<br>- Run our application under a visual studio debugger<br>- Generate JIT code ( using llvm MCJIT  )<br>- Then, either :<br>   - export as COFF obj file with dwarf information and then convert it with cv2pdb to obtain a pdb of my JIT symbols (what I do now)<br>   - export directly to PDB my JIT debug info (what i would like to do, if you have an idea how..)<br>- Detach the visual studio debugger <br>- Merge my JIT pdb into a copy of the executable pdb (where things start to go bad..)<br>- Replace original executable by the copy (creating a backup of original)<br>- Reattach 

the visual studio debugger to my executable (loading the new pdb version)<br>- Debug JIT code with visual studio.<br>- On each JIT rebuild, restart these steps from the original native executable PDB to avoid merge conflict between the multiple JIT iterations<br></div></blockquote><div>Yea, it's an interesting use case.  It makes me think it would be nice if the PDB format supported some way of having a symbol which simply refers to another PDB file, that way you could re-write that PDB file at runtime once all your code is jitted, and when the debugger tries to look up that symbol, it finds a record that tells it to go check the other PDB file.</div><div><br></div><div>So, here are the things I think you would need to do:</div><div><br></div><div>1) Create a JIT module in the module list with a unique name.  All symbols will go here.  llvm-pdbutil dump -modules shows you the list.  Be careful about putting it at the end though, because there's already one at the end called * LINKER * that is kind of special.  On the other hand, you don't want to put it first because it means you will have to do lots of fixups on the EXE PDB.  It's probably best to add it right before the linker module, this has the least chance of breaking anything.</div><div><br></div><div><div>2) In the debug stream for this module, add all symbols.  You will need to fix up their type indices.  As you noticed, llvm-pdbutil already merges type information from the JIT PDB, so after merging the type indices in the EXE PDB will be different than they were in the JIT PDB, but the symbol records will refer to the JIT PDB type indices.  So these need to be fixed up.  LLD already has code to do this, you can probably borrow a similar algorithm with some slight modifications (lldb/COFF/PDB.cpp, search for mergeSymbolRecords)</div><div><br></div><div>3) Merge in the new section contributions and section map.  See LLD again for how to modify these.  Hopefully the object file you exported contains relocated symbol addresses so you don't have to do any fixups here.<br></div></div><div><br></div><div>4) Merge in the publics and globals.  This shouldn't be too hard, I think you can just iterate over them in the JIT PDB and add them to the new EXE PDB.</div><div><br></div><div>You're kind of in uncharted territory here, so this is just a rough idea of what needs to be done.  There may be other issues that you don't encounter until you actually try it out.<br></div><div><br></div><div>Unfortunately I don't personally have the time to work on this, but it sounds neat, and I'm happy to help if you run into questions or problems along the way.</div><div><br></div><div><br></div></div></div>
</blockquote></div>
</div>