summaryrefslogtreecommitdiffstats
path: root/dwflpp.h
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2009-11-23 19:08:51 -0500
committerDave Brolley <brolley@redhat.com>2009-11-23 19:08:51 -0500
commit5d1c958ce2dcc0f28c1bd13b8e005c0c2ad1cdba (patch)
treee44ad8807e0b5b2e1bb85682f677d492f1195dbf /dwflpp.h
parent562d60b004e3d7ae73c1c7508be529006bd6430f (diff)
parent90bba7158de040705a101ba1fdf6062866b4b4e9 (diff)
downloadsystemtap-steved-5d1c958ce2dcc0f28c1bd13b8e005c0c2ad1cdba.tar.gz
systemtap-steved-5d1c958ce2dcc0f28c1bd13b8e005c0c2ad1cdba.tar.xz
systemtap-steved-5d1c958ce2dcc0f28c1bd13b8e005c0c2ad1cdba.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Conflicts: configure
Diffstat (limited to 'dwflpp.h')
-rw-r--r--dwflpp.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/dwflpp.h b/dwflpp.h
index 226b84d8..cdc6ad98 100644
--- a/dwflpp.h
+++ b/dwflpp.h
@@ -213,6 +213,7 @@ struct dwflpp
std::vector<Dwarf_Die> getscopes(Dwarf_Addr pc);
Dwarf_Die *declaration_resolve(const char *name);
+ Dwarf_Die *declaration_resolve_other_cus(const char *name);
mod_cu_function_cache_t cu_function_cache;
@@ -319,8 +320,10 @@ private:
*/
mod_cu_type_cache_t global_alias_cache;
static int global_alias_caching_callback(Dwarf_Die *die, void *arg);
- int iterate_over_globals (int (* callback)(Dwarf_Die *, void *),
- void * data);
+ static int global_alias_caching_callback_cus(Dwarf_Die *die, void *arg);
+ static int iterate_over_globals (Dwarf_Die *,
+ int (* callback)(Dwarf_Die *, void *),
+ void * data);
static int cu_function_caching_callback (Dwarf_Die* func, void *arg);
@@ -394,6 +397,7 @@ private:
// Returns the call frame address operations for the given program counter.
Dwarf_Op *get_cfa_ops (Dwarf_Addr pc);
+ Dwarf_Addr vardie_from_symtable(Dwarf_Die *vardie, Dwarf_Addr *addr);
};
#endif // DWFLPP_H