Main index | Section 3 | Options |
#include <libdwarf.h>
Argument die should reference a DWARF debugging information entry descriptor with line number information, see dwarf(3). Argument lines should point to a location that will hold a pointer to the returned array of Dwarf_Line descriptors. Argument nlines should point to a location that will hold the number of descriptors returned. If argument err is not NULL, it will be used to store error information in case of an error.
The returned Dwarf_Line descriptors may be passed to the other line number functions in the API set to retrieve specific information about each source line.
int n; Dwarf_Die die; Dwarf_Error de; char *filename; Dwarf_Line *lines; Dwarf_Signed nlines; Dwarf_Addr lineaddr; Dwarf_Unsigned lineno;/* variable "die" should reference a DIE for a compilation unit */
if (dwarf_srclines(die, &lines, &nlines, &de) != DW_DLV_OK) errx(EXIT_FAILURE, "dwarf_srclines: %s", dwarf_errmsg(de));
for (n = 0; n < nlines; n++) { /* Retrieve the file name for this descriptor. */ if (dwarf_linesrc(lines[n], &filename, &de)) errx(EXIT_FAILURE, "dwarf_linesrc: %s", dwarf_errmsg(de));
/* Retrieve the line number in the source file. */ if (dwarf_lineno(lines[n], &lineno, &de)) errx(EXIT_FAILURE, "dwarf_lineno: %s", dwarf_errmsg(de)); /* Retrieve the virtual address for this line. */ if (dwarf_lineaddr(lines[n], &lineaddr, &de)) errx(EXIT_FAILURE, "dwarf_lineaddr: %s", dwarf_errmsg(de)); }
[DW_DLE_ARGUMENT] | One of the arguments die, lines or nlines was NULL. |
[DW_DLE_NO_ENTRY] | The compilation unit referenced by argument die does not have associated line number information. |
[DW_DLE_MEMORY] | An out of memory condition was encountered during the execution of this function. |
DWARF_SRCLINES (3) | November 9, 2011 |
Main index | Section 3 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.