You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, LineProgram only exposes all line records, or the line records for a certain "line subsection" if you know the line subsection's start offset.
However, I have a case where I do not know the line subsection's start offset, because I'm dealing with a PDB file which has line information but no procedure information (due to /DEBUG:FASTLINK). I would like to enumerate the offsets of all the line subsections.
Can we expose the debug line subsections? We already have an internal iterator type for them but it's not exposed.
The text was updated successfully, but these errors were encountered:
mstange
changed the title
Expose LineProgram line sections
Expose LineProgram line subsections
May 21, 2022
Going through section contributions is probably harder than necessary for you, eventually we should probably expose all of the C13 section stuff. I'll check if this is a simple change.
Note that the interface has also changed. Since #68 you can now look for lines based on any offset within the section through lines_for_symbol.
At the moment,
LineProgram
only exposes all line records, or the line records for a certain "line subsection" if you know the line subsection's start offset.However, I have a case where I do not know the line subsection's start offset, because I'm dealing with a PDB file which has line information but no procedure information (due to
/DEBUG:FASTLINK
). I would like to enumerate the offsets of all the line subsections.Can we expose the debug line subsections? We already have an internal iterator type for them but it's not exposed.
The text was updated successfully, but these errors were encountered: