From 9020300d0fca87336f84a8d40da9362735eda896 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Thu, 10 Jul 2008 16:39:17 -0400 Subject: PR442528 --- tapsets.cxx | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tapsets.cxx') diff --git a/tapsets.cxx b/tapsets.cxx index 3d5af360..5cd6f8a2 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -2329,6 +2329,8 @@ struct dwarf_derived_probe: public derived_probe void join_group (systemtap_session& s); + void emit_probe_local_init(translator_output * o); + // Pattern registration helpers. static void register_statement_variants(match_node * root, dwarf_builder * dw); @@ -4528,6 +4530,12 @@ dwarf_derived_probe::register_patterns(match_node * root) // register_function_and_statement_variants(root->bind_str(TOK_PROCESS), dw); } +void +dwarf_derived_probe::emit_probe_local_init(translator_output * o) +{ + // emit bsp cache setup + o->newline() << "bspcache(c->unwaddr, c->regs, c->probe_point);"; +} // ------------------------------------------------------------------------ -- cgit