aboutsummaryrefslogtreecommitdiff
path: root/ld/pdb.c
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/+20
2022-12-31ld: Handle extended-length data structures in PDB typesMark Harmstone1-23/+205
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-34/+208
2022-12-23ld: Copy other symbols into PDB fileMark Harmstone1-0/+362
2022-12-23ld: Write globals stream in PDBMark Harmstone1-40/+960
2022-12-23ld: Parse LF_UDT_SRC_LINE records when creating PDB fileMark Harmstone1-10/+161
2022-12-23ld: Write types into IPI stream of PDBMark Harmstone1-17/+187
2022-12-23ld: Write types into TPI stream of PDBMark Harmstone1-22/+1268
2022-12-23ld: Write DEBUG_S_LINES entries in PDB fileMark Harmstone1-4/+107
2022-12-23ld: Fix segfault in populate_publics_streamMark Harmstone1-0/+3
2022-12-23ld: Write DEBUG_S_FILECHKSMS entries in PDBsMark Harmstone1-12/+419
2022-12-23ld: Generate PDB string tableMark Harmstone1-6/+290
2022-11-23ld: Add section contributions substream to PDB filesMark Harmstone1-3/+109
2022-11-10ld: Add module information substream to PDB filesMark Harmstone1-4/+210
2022-10-31ld: Add publics stream to PDB filesMark Harmstone1-6/+341
2022-10-31ld: Add section header stream to PDB filesMark Harmstone1-3/+66
2022-10-31ld: Use %E in einfo in pdb.cMark Harmstone1-10/+9
Resubmission, taking into account https://sourceware.org/pipermail/binutils/2022-October/123948.html.
2022-10-20ld: Add minimal pdb generationMark Harmstone1-0/+522