Displaying 2 results from an estimated 2 matches for "symbolreader".
2018 Aug 31
2
PDB questions
...lt.initialize(SS.getRecordData()))
> return std::move(EC);
> return Result;
> }
> return Result;
> }
>
> Subsections() is populated here:
>
> if (auto EC = Reader.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...
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