tschatzl [Thu, 06 Feb 2014 17:12:10 +0100] rev 22769
8033545: Missing volatile specifier in Bitmap::par_put_range_within_word
Summary: The method Bitmap::par_put_range_within_word reloads the original value during a CAS, which may be optimized away. Instead of reloading, use the value returned by Atomic::cmpxchg_ptr() for further processing.
Reviewed-by: tschatzl, brutisso, tonyp
Contributed-by: Matthias Braun <matthia.braun@sap.com>
pliden [Thu, 06 Feb 2014 14:12:43 +0100] rev 22768
8031703: Missing post-barrier in ReferenceProcessor
Reviewed-by: tonyp, tschatzl
tschatzl [Wed, 05 Feb 2014 14:29:34 +0100] rev 22767
8033443: Test8000311 fails after latest changes to parallelize string and symbol table unlink
Summary: When string and symbol table unlink are not performed in parallel, the claim index we check is not updated, and so a guarantee fails. Take this into account when checking the guarantee.
Reviewed-by: brutisso, jwilhelm
tonyp [Wed, 05 Feb 2014 12:47:48 +0100] rev 22766
8033601: G1: Make array chunking use the same length field as the other young GCs
Summary: Use the old copy length instead of the length of the forwarded object for chunked arrays.
Reviewed-by: brutisso, tschatzl
ehelin [Wed, 05 Feb 2014 10:09:54 +0100] rev 22765
8028254: gc/arguments/TestMinInitialErgonomics.java failed with unexpected initial heap size
Reviewed-by: brutisso, tschatzl, sjohanss
ehelin [Mon, 03 Feb 2014 10:49:49 +0100] rev 22764
Merge
jmasa [Thu, 16 Jan 2014 13:25:25 -0800] rev 22763
8024366: Make UseNUMA enable UseNUMAInterleaving
Reviewed-by: brutisso, tschatzl
Contributed-by: shrinivas.joshi@oracle.com
tschatzl [Fri, 31 Jan 2014 09:58:06 +0100] rev 22762
8033106: Wrong predicate for checking whether the correct amount of symbol table entries have been processed in G1
Summary: The change fixes the predicate check.
Reviewed-by: jmasa, tonyp, stefank
tschatzl [Fri, 31 Jan 2014 09:57:50 +0100] rev 22761
6991197: G1: specialize deal_with_reference() for narrowOop*
Summary: Clean up and slightly optimize reference handling from the GC reference task queue. Since we never push partial array chunks as narrowOop* we can manually specialize the code so that some code can be optimized away.
Reviewed-by: tonyp, brutisso, stefank
tschatzl [Fri, 31 Jan 2014 09:55:59 +0100] rev 22760
8032771: The flag VerifySilently misses a test case
Summary: Add test case for the VerifySilently flag.
Reviewed-by: brutisso
iklam [Tue, 11 Feb 2014 10:05:02 -0800] rev 22759
Merge
iklam [Tue, 11 Feb 2014 08:43:17 -0800] rev 22758
7182040: volano29 limited by os resource on Linux - need better diagnostic message
Summary: Changed message to "unable to create native thread: possibly out of memory or process/resource limits reached"
Reviewed-by: dholmes, sla
minqi [Mon, 10 Feb 2014 21:29:14 -0800] rev 22757
8033792: AltHashing used jint for imprecise bit shifting
Summary: AltHashing used jint the way of juint in bit shifting which could lead loss of precision. Fix by change _seed defined as juint.
Reviewed-by: coleenp, ccheung
Contributed-by: yumin.qi@oracle.com
dcubed [Mon, 10 Feb 2014 14:07:11 -0800] rev 22756
Merge
dcubed [Mon, 10 Feb 2014 12:58:53 -0800] rev 22755
Merge