resolveAddresses
fn
void resolveAddresses(const(ubyte)[] debugLineSectionData, Location[] locations, size_t baseAddress) @nogc nothrowResolve the addresses of locations using debugLineSectionData
Runs the DWARF state machine on debugLineSectionData, assuming it represents a debugging program describing the addresses in a continous and increasing manner.
After this function successfully completes, locations will contains file / lines informations.
Note that the lifetime of the Location data is bound to the lifetime of debugLineSectionData.
Parameters
debugLineSectionData | A DWARF program to feed the state machine |
locations | The locations to resolve |
baseAddress | The offset to apply to every address |