search for: libdebuginfopdb

Displaying 4 results from an estimated 4 matches for "libdebuginfopdb".

2015 Jan 29
2
[LLVMdev] Adding PDB support to lib\DebugInfo
...ows. > > I think the best way to do this is to move all of the code in > lib/DebugInfo to lib/DebugInfo/dwarf, and then make another folder called > lib/DebugInfo/pdb. These would then be compiled into two separate > libraries. > > > so you would have libDebugInfoDWARF and libDebugInfoPDB. Would you still > have libDebugInfo at all? > > I ask because there is the DIContext abstraction that’s not tied to a > particular debug format (It’s used by llvm-symbolizer, and I guess you have > some interest in having that working on windows PDB files). But > DIContext.cpp as...
2015 Jan 29
0
[LLVMdev] Adding PDB support to lib\DebugInfo
...PDBs while debugging on Windows. > > I think the best way to do this is to move all of the code in lib/DebugInfo to lib/DebugInfo/dwarf, and then make another folder called lib/DebugInfo/pdb. These would then be compiled into two separate libraries. so you would have libDebugInfoDWARF and libDebugInfoPDB. Would you still have libDebugInfo at all? I ask because there is the DIContext abstraction that’s not tied to a particular debug format (It’s used by llvm-symbolizer, and I guess you have some interest in having that working on windows PDB files). But DIContext.cpp as one method, thus having a li...
2015 Jan 29
0
[LLVMdev] Adding PDB support to lib\DebugInfo
...ng on Windows. >> >> I think the best way to do this is to move all of the code in lib/DebugInfo to lib/DebugInfo/dwarf, and then make another folder called lib/DebugInfo/pdb. These would then be compiled into two separate libraries. > > so you would have libDebugInfoDWARF and libDebugInfoPDB. Would you still have libDebugInfo at all? > > I ask because there is the DIContext abstraction that’s not tied to a particular debug format (It’s used by llvm-symbolizer, and I guess you have some interest in having that working on windows PDB files). But DIContext.cpp as one method, thus h...
2015 Jan 29
7
[LLVMdev] Adding PDB support to lib\DebugInfo
I've been working on adding pdb reading support to llvm. This started as a tool for dumping info from a pdb (similar to llvm-dwarfdump), which has been checked in and currently has limited support for dumping pdb. There's still more to be done on the pdb dumping tool, but at this point -- to reduce duplicated effort -- I think it makes the most sense to start moving some of this logic