pdb
pdb copied to clipboard
A parser for Microsoft PDB (Program Database) debugging information
Fix syntax error in readme.
Here's an implementation for these types, based on the structs in Microsoft's headers. Fixes #137
I believe this can be used for doing lookups in to the typestream based off the name of type.
From LLVM: ``` /// Type streams in PDBs contain an additional field which is a list of pairs /// containing indices and their corresponding offsets, roughly every ~8KB of ///...
It would be nice to be able to binary search offsets, and to use them as keys in a BTreeMap. Here's a spot in pdb-addr2line which would be improved by...
When I try to parse types from this PDB from Microsoft, a get this error: `UnimplementedTypeKind(0xa)` The PDB: https://msdl.microsoft.com/download/symbols/combase.pdb/70E3ECDD8981C0FF8AC67BED63ABECF91/combase.pdb It does not seem to be documented in https://github.com/Microsoft/microsoft-pdb/ though.
Hi, I'm currently trying to write some code based on the `pdb2hpp` example. I'm having trouble detecting/reconstructing pure virtual methods correctly. It seems it's not possible to check for the...
These are needed for various use cases such as checking if a member function is compiler generated.
Resolves #113
Resolves #133