summaryrefslogtreecommitdiffstats
path: root/dwflpp.cxx
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2009-08-26 20:09:48 -0700
committerJosh Stone <jistone@redhat.com>2009-08-26 20:09:48 -0700
commit8096dd7dbc7bc5712da58a6f9bcb90c0b74c10db (patch)
treecbc805e5827d0826e46f42ce9bdd97b98175eb08 /dwflpp.cxx
parent546499713651809f026e118f81b9c52f01c895f6 (diff)
downloadsystemtap-steved-8096dd7dbc7bc5712da58a6f9bcb90c0b74c10db.tar.gz
systemtap-steved-8096dd7dbc7bc5712da58a6f9bcb90c0b74c10db.tar.xz
systemtap-steved-8096dd7dbc7bc5712da58a6f9bcb90c0b74c10db.zip
Reorganize iterate_over_labels
I noticed that iterate_over_labels was using a static variable as a recursion variable, which isn't a safe thing to do since it will only be initialized once. While fixing that, I also reorganized the function quite a bit. * dwflpp.cxx (dwflpp::iterate_over_labels): Take the current function as a parameter instead of using a static local. Rewrite some of the code as well to try to make it more obvious. * tapsets.cxx (add_label_name): Remove in favor of query_label. (query_label): New, to check decl_file and fix probe listing. (query_srcfile_label, query_cu): Adjust to iterate_over_labels change and start using query_label as the callback.
Diffstat (limited to 'dwflpp.cxx')
-rw-r--r--dwflpp.cxx93
1 files changed, 42 insertions, 51 deletions
diff --git a/dwflpp.cxx b/dwflpp.cxx
index 9ec7a7de..7e9894e1 100644
--- a/dwflpp.cxx
+++ b/dwflpp.cxx
@@ -918,18 +918,18 @@ dwflpp::iterate_over_srcfile_lines (char const * srcfile,
void
dwflpp::iterate_over_labels (Dwarf_Die *begin_die,
- const char *sym,
- const char *symfunction,
- void *data,
+ const string& sym,
+ const string& symfunction,
+ dwarf_query *q,
void (* callback)(const string &,
const char *,
+ const char *,
int,
Dwarf_Die *,
Dwarf_Addr,
- dwarf_query *))
+ dwarf_query *),
+ const string& current_function)
{
- dwarf_query * q __attribute__ ((unused)) = static_cast<dwarf_query *>(data) ;
-
get_module_dwarf();
Dwarf_Die die;
@@ -937,63 +937,54 @@ dwflpp::iterate_over_labels (Dwarf_Die *begin_die,
if (res != 0)
return; // die without children, bail out.
- static string function_name = dwarf_diename (begin_die);
+ bool function_match =
+ (current_function == symfunction
+ || (name_has_wildcard(symfunction)
+ && function_name_matches_pattern (current_function, symfunction)));
+
do
{
int tag = dwarf_tag(&die);
const char *name = dwarf_diename (&die);
+ bool subfunction = false;
+
switch (tag)
{
case DW_TAG_label:
- if (name)
- break;
- else
- continue; // Cannot handle unnamed label.
+ if (function_match && name &&
+ (name == sym
+ || (name_has_wildcard(sym)
+ && function_name_matches_pattern (name, sym))))
+ {
+ // Get the file/line number for this label
+ int dline;
+ const char *file = dwarf_decl_file (&die);
+ dwarf_decl_line (&die, &dline);
+
+ // Don't try to be smart. Just drop no addr labels.
+ Dwarf_Addr stmt_addr;
+ if (dwarf_lowpc (&die, &stmt_addr) == 0)
+ {
+ Dwarf_Die *scopes;
+ int nscopes = dwarf_getscopes_die (&die, &scopes);
+ if (nscopes > 1)
+ callback(current_function, name, file, dline,
+ &scopes[1], stmt_addr, q);
+ }
+ }
break;
+
case DW_TAG_subprogram:
- if (!dwarf_hasattr(&die, DW_AT_declaration) && name)
- function_name = name;
- else
- continue;
+ if (dwarf_hasattr(&die, DW_AT_declaration) || !name)
+ break;
case DW_TAG_inlined_subroutine:
- if (name)
- function_name = name;
+ if (name)
+ subfunction = true;
default:
if (dwarf_haschildren (&die))
- iterate_over_labels (&die, sym, symfunction, q, callback);
- continue;
- }
-
- if (strcmp(function_name.c_str(), symfunction) == 0
- || (name_has_wildcard(symfunction)
- && function_name_matches (symfunction)))
- {
- }
- else
- continue;
- if (strcmp(name, sym) == 0
- || (name_has_wildcard(sym)
- && function_name_matches_pattern (name, sym)))
- {
- const char *file = dwarf_decl_file (&die);
-
- // Get the line number for this label
- int dline;
- dwarf_decl_line (&die, &dline);
-
- Dwarf_Addr stmt_addr;
- if (dwarf_lowpc (&die, &stmt_addr) != 0)
- continue; // Don't try to be smart. Just drop no addr labels.
-
- Dwarf_Die *scopes;
- int nscopes = 0;
- nscopes = dwarf_getscopes_die (&die, &scopes);
- if (nscopes > 1)
- {
- callback(function_name.c_str(), file,
- dline, &scopes[1], stmt_addr, q);
- add_label_name(q, name);
- }
+ iterate_over_labels (&die, sym, symfunction, q, callback,
+ subfunction ? name : current_function);
+ break;
}
}
while (dwarf_siblingof (&die, &die) == 0);