[PATCH 3 of 5] * tapset/jstack.stp.in: Use @var construct if available
Mark Wielaard
mjw at redhat.com
Wed Mar 14 03:07:02 PDT 2012
# HG changeset patch
# User Mark Wielaard <mark at klomp.org>
# Date 1331655890 -3600
# Node ID 131b26ec835a11d3f310fe42dd7caa5bb79463ea
# Parent b6af0d77662190c10c18c07f43718740631827ac
* tapset/jstack.stp.in: Use @var construct if available.
Newer versions of systemtap (since 1.8) make it possible to use the @var
construct if available to pick target variables from the right CU. Which
is needed by newer DWARF/gcc versions which don't add a defining variable
declaration to each CU anymore.
diff --git a/ChangeLog b/ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2012-03-13 Mark Wielaard <mjw at redhat.com>
+
+ * tapset/jstack.stp.in: Use @var construct if available to pick
+ target variable from the right CU (needed by newer DWARF/gcc
+ versions).
+
2012-03-13 Mark Wielaard <mjw at redhat.com>
* tapset/jstack.stp.in: Index globals on pid() to support multiple
diff --git a/tapset/jstack.stp.in b/tapset/jstack.stp.in
--- a/tapset/jstack.stp.in
+++ b/tapset/jstack.stp.in
@@ -67,7 +67,9 @@
probe hotspot.vm_init_end
{
// The parent/type oop for a methodOop.
- Universe_methodKlassObj[pid()] = $_methodKlassObj;
+ Universe_methodKlassObj[pid()] = %( systemtap_v >= "1.8"
+ %? @var("_methodKlassObj at universe.cpp")
+ %: $_methodKlassObj %);
// For compressed oops.
// Universe_heap_base = $_heap_base;
@@ -82,7 +84,9 @@
*
* Note that we access it through its "short name" _collectedHeap.
*/
- Universe_collectedHeap[pid()] = $_collectedHeap;
+ Universe_collectedHeap[pid()] = %( systemtap_v >= "1.8"
+ %? @var("_collectedHeap at universe.cpp")
+ %: $_collectedHeap %);
HeapWordSize[pid()] = $HeapWordSize;
/**
@@ -101,7 +105,9 @@
* the segment at index - N (which can be recursive if a block
* contains more than 0xFE segments).
*/
- CodeCache_heap[pid()] = $_heap;
+ CodeCache_heap[pid()] = %( systemtap_v >= "1.8"
+ %? @var("_heap at codeCache.cpp")
+ %: $_heap %);
// Should really check arch of user space (for 32bit jvm on 64bit kernel).
%( arch == "i386" %?
More information about the distro-pkg-dev
mailing list