dwarf-aux.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. #ifndef _DWARF_AUX_H
  2. #define _DWARF_AUX_H
  3. /*
  4. * dwarf-aux.h : libdw auxiliary interfaces
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. *
  20. */
  21. #include <dwarf.h>
  22. #include <elfutils/libdw.h>
  23. #include <elfutils/libdwfl.h>
  24. #include <elfutils/version.h>
  25. /* Find the realpath of the target file */
  26. extern const char *cu_find_realpath(Dwarf_Die *cu_die, const char *fname);
  27. /* Get DW_AT_comp_dir (should be NULL with older gcc) */
  28. extern const char *cu_get_comp_dir(Dwarf_Die *cu_die);
  29. /* Get a line number and file name for given address */
  30. extern int cu_find_lineinfo(Dwarf_Die *cudie, unsigned long addr,
  31. const char **fname, int *lineno);
  32. /* Walk on funcitons at given address */
  33. extern int cu_walk_functions_at(Dwarf_Die *cu_die, Dwarf_Addr addr,
  34. int (*callback)(Dwarf_Die *, void *), void *data);
  35. /* Compare diename and tname */
  36. extern bool die_compare_name(Dwarf_Die *dw_die, const char *tname);
  37. /* Get callsite line number of inline-function instance */
  38. extern int die_get_call_lineno(Dwarf_Die *in_die);
  39. /* Get callsite file name of inlined function instance */
  40. extern const char *die_get_call_file(Dwarf_Die *in_die);
  41. /* Get type die */
  42. extern Dwarf_Die *die_get_type(Dwarf_Die *vr_die, Dwarf_Die *die_mem);
  43. /* Get a type die, but skip qualifiers and typedef */
  44. extern Dwarf_Die *die_get_real_type(Dwarf_Die *vr_die, Dwarf_Die *die_mem);
  45. /* Check whether the DIE is signed or not */
  46. extern bool die_is_signed_type(Dwarf_Die *tp_die);
  47. /* Get data_member_location offset */
  48. extern int die_get_data_member_location(Dwarf_Die *mb_die, Dwarf_Word *offs);
  49. /* Return values for die_find_child() callbacks */
  50. enum {
  51. DIE_FIND_CB_END = 0, /* End of Search */
  52. DIE_FIND_CB_CHILD = 1, /* Search only children */
  53. DIE_FIND_CB_SIBLING = 2, /* Search only siblings */
  54. DIE_FIND_CB_CONTINUE = 3, /* Search children and siblings */
  55. };
  56. /* Search child DIEs */
  57. extern Dwarf_Die *die_find_child(Dwarf_Die *rt_die,
  58. int (*callback)(Dwarf_Die *, void *),
  59. void *data, Dwarf_Die *die_mem);
  60. /* Search a non-inlined function including given address */
  61. extern Dwarf_Die *die_find_realfunc(Dwarf_Die *cu_die, Dwarf_Addr addr,
  62. Dwarf_Die *die_mem);
  63. /* Search an inlined function including given address */
  64. extern Dwarf_Die *die_find_inlinefunc(Dwarf_Die *sp_die, Dwarf_Addr addr,
  65. Dwarf_Die *die_mem);
  66. /* Walk on the instances of given DIE */
  67. extern int die_walk_instances(Dwarf_Die *in_die,
  68. int (*callback)(Dwarf_Die *, void *), void *data);
  69. /* Walker on lines (Note: line number will not be sorted) */
  70. typedef int (* line_walk_callback_t) (const char *fname, int lineno,
  71. Dwarf_Addr addr, void *data);
  72. /*
  73. * Walk on lines inside given DIE. If the DIE is a subprogram, walk only on
  74. * the lines inside the subprogram, otherwise the DIE must be a CU DIE.
  75. */
  76. extern int die_walk_lines(Dwarf_Die *rt_die, line_walk_callback_t callback,
  77. void *data);
  78. /* Find a variable called 'name' at given address */
  79. extern Dwarf_Die *die_find_variable_at(Dwarf_Die *sp_die, const char *name,
  80. Dwarf_Addr addr, Dwarf_Die *die_mem);
  81. /* Find a member called 'name' */
  82. extern Dwarf_Die *die_find_member(Dwarf_Die *st_die, const char *name,
  83. Dwarf_Die *die_mem);
  84. /* Get the name of given variable DIE */
  85. extern int die_get_typename(Dwarf_Die *vr_die, char *buf, int len);
  86. /* Get the name and type of given variable DIE, stored as "type\tname" */
  87. extern int die_get_varname(Dwarf_Die *vr_die, char *buf, int len);
  88. #endif