Displaying 2 results from an estimated 2 matches for "subsectionsread".
Did you mean:
subsectionsreader
2018 Aug 31
2
PDB questions
...er.readSubstream(C13LinesSubstream, C13Size))
> return EC;
>
> BinaryStreamReader SymbolReader(SymbolsSubstream.StreamData);
> if (auto EC =
> SymbolReader.readArray(SymbolArray,
> SymbolReader.bytesRemaining()))
> return EC;
>
> BinaryStreamReader SubsectionsReader(C13LinesSubstream.StreamData);
> if (auto EC = SubsectionsReader.readArray(Subsections,
>
> SubsectionsReader.bytesRemaining()))
> return EC;
>
> So it looks like there should be one of these just after the C13Lines
> substream:
>
> struct DebugSubsectionHeader {...
2018 Aug 31
2
PDB questions
Zachary,
Thanks for the help on IRC earlier. I've got code that can capture a stack
trace and then discover for each address, its module, function, source
index, line, and column.
I still have a couple of loose ends though. Do you know what's going on
here?
1. There appears to be 8 bytes before every LineFragmentHeader. Here's some
of my own debug output, which matches