/hg/release/icedtea7-2.6: PR3470: Hotspot object_alloc tapset us...
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Mon Nov 20 17:54:25 UTC 2017
changeset 89e60608946d in /hg/release/icedtea7-2.6
details: http://icedtea.classpath.org/hg/release/icedtea7-2.6?cmd=changeset;node=89e60608946d
author: Andrew John Hughes <gnu_andrew at member.fsf.org>
date: Mon Nov 20 17:54:07 2017 +0000
PR3470: Hotspot object_alloc tapset uses HeapWordSize incorrectly
2017-10-16 Andrew John Hughes <gnu_andrew at member.fsf.org>
PR3470: Hotspot object_alloc tapset uses HeapWordSize incorrectly
* AUTHORS: Add Severin.
* NEWS: Updated.
2017-09-15 Severin Gehwolf <sgehwolf at redhat.com>
PR3470: Hotspot object_alloc tapset uses HeapWordSize incorrectly
* tapset/hotspot.stp.in:
Revert HeapWordSize addition made to match
systemtap-alloc-size-workaround.patch, which
has since been removed.
diffstat:
AUTHORS | 1 +
ChangeLog | 14 ++++++++++++++
NEWS | 1 +
tapset/hotspot.stp.in | 2 +-
4 files changed, 17 insertions(+), 1 deletions(-)
diffs (55 lines):
diff -r 83d470e904b6 -r 89e60608946d AUTHORS
--- a/AUTHORS Sun Nov 19 16:45:14 2017 +0000
+++ b/AUTHORS Mon Nov 20 17:54:07 2017 +0000
@@ -16,6 +16,7 @@
Matthew Flaschen <matthew.flaschen at gatech.edu>
Michael Franz <mvfranz at gmail.com>
Kyle Galloway <kgallowa at redhat.com>
+Severin Gehwolf <sgehwolf at redhat.com>
Dennis Gilmore <dgilmore at redhat.com>
Andrew Haley <aph at redhat.com>
C. K. Jester-Young <cky944 at gmail.com>
diff -r 83d470e904b6 -r 89e60608946d ChangeLog
--- a/ChangeLog Sun Nov 19 16:45:14 2017 +0000
+++ b/ChangeLog Mon Nov 20 17:54:07 2017 +0000
@@ -1,3 +1,17 @@
+2017-10-16 Andrew John Hughes <gnu_andrew at member.fsf.org>
+
+ PR3470: Hotspot object_alloc tapset uses HeapWordSize incorrectly
+ * AUTHORS: Add Severin.
+ * NEWS: Updated.
+
+2017-09-15 Severin Gehwolf <sgehwolf at redhat.com>
+
+ PR3470: Hotspot object_alloc tapset uses HeapWordSize incorrectly
+ * tapset/hotspot.stp.in:
+ Revert HeapWordSize addition made to match
+ systemtap-alloc-size-workaround.patch, which
+ has since been removed.
+
2017-11-18 Andrew John Hughes <gnu_andrew at member.fsf.org>
Bump to 2.6.12pre01.
diff -r 83d470e904b6 -r 89e60608946d NEWS
--- a/NEWS Sun Nov 19 16:45:14 2017 +0000
+++ b/NEWS Mon Nov 20 17:54:07 2017 +0000
@@ -20,6 +20,7 @@
- S8185164, PR3433: GetOwnedMonitorInfo() returns incorrect owned monitor
- S8188030, PR3460, RH1484079: AWT java apps fail to start when some minimal fonts are present
* Bug fixes
+ - PR3470, RH1492139: Hotspot object_alloc tapset uses HeapWordSize incorrectly
- PR3480, RH1486025: ECC and NSS JVM crash
* AArch64 port
- S8145438, PR3443, RH1482244: Guarantee failures since 8144028: Use AArch64 bit-test instructions in C2
diff -r 83d470e904b6 -r 89e60608946d tapset/hotspot.stp.in
--- a/tapset/hotspot.stp.in Sun Nov 19 16:45:14 2017 +0000
+++ b/tapset/hotspot.stp.in Mon Nov 20 17:54:07 2017 +0000
@@ -120,7 +120,7 @@
name = "object_alloc";
thread_id = $arg1;
class = user_string_n($arg2, $arg3);
- size = $arg4 * $HeapWordSize; // Note - systemtap-alloc-size-workaround.patch
+ size = $arg4;
probestr = sprintf("%s(thread_id=%d,class='%s',size=0x%x)",
name, thread_id, class, size);
}
More information about the distro-pkg-dev
mailing list