aboutsummaryrefslogtreecommitdiff
path: root/ld/pdb.h
AgeCommit message (Collapse)AuthorFilesLines
2023-01-01Update year range in copyright notice of binutils filesAlan Modra1-1/+1
The newer update-copyright.py fixes file encoding too, removing cr/lf on binutils/bfdtest2.c and ld/testsuite/ld-cygwin/exe-export.exp, and embedded cr in binutils/testsuite/binutils-all/ar.exp string match.
2022-12-31ld: Handle LF_VFTABLE types in PDBsMark Harmstone1-0/+13
2022-12-31ld: Handle extended-length data structures in PDB typesMark Harmstone1-1/+0
A few fixes to minor issues I've discovered in my PDB patches. * If sizes or offsets are greater than 0x8000, they get encoded as extended values in the same way as for enum values - e.g. a LF_ULONG .short followed by a .long. * I've managed to coax MSVC to produce another type, LF_VFTABLE, which is seen when dealing with COM. I don't think LLVM emits this. Note that we can't just implement everything in Microsoft's header files, as most of it is obsolete. * Fixes a stupid bug in the test program, where I was adding an index to a size. The index was hard-coded to 0, so this didn't cause any actual issues.
2022-12-23ld: Write linker symbols in PDBMark Harmstone1-0/+42
2022-12-23ld: Copy other symbols into PDB fileMark Harmstone1-0/+179
2022-12-23ld: Write globals stream in PDBMark Harmstone1-0/+77
2022-12-23ld: Parse LF_UDT_SRC_LINE records when creating PDB fileMark Harmstone1-0/+23
2022-12-23ld: Write types into IPI stream of PDBMark Harmstone1-1/+44
2022-12-23ld: Write types into TPI stream of PDBMark Harmstone1-0/+264
2022-12-23ld: Write DEBUG_S_LINES entries in PDB fileMark Harmstone1-0/+1
2022-12-23ld: Write DEBUG_S_FILECHKSMS entries in PDBsMark Harmstone1-0/+9
2022-12-23ld: Generate PDB string tableMark Harmstone1-0/+12
2022-11-23ld: Add section contributions substream to PDB filesMark Harmstone1-0/+2
2022-11-10ld: Add module information substream to PDB filesMark Harmstone1-0/+33
2022-10-31ld: Add publics stream to PDB filesMark Harmstone1-0/+47
2022-10-20ld: Add minimal pdb generationMark Harmstone1-0/+111