dcubed [Tue, 03 Apr 2012 10:17:06 -0700] rev 12256
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
Summary: Build option FULL_DEBUG_SYMBOLS=0 only affects OPT builds. Finish enabling ENABLE_FULL_DEBUG_SYMBOLS flag on Windows.
Reviewed-by: ohair, jmelvin, sspitsyn
lana [Fri, 30 Mar 2012 16:51:57 -0700] rev 12255
Merge
dcubed [Fri, 23 Mar 2012 09:17:31 -0700] rev 12254
7136506: FDS: rework jdk repo Full Debug Symbols support
Summary: JPRT needs to use the '-y' option with zip on non-Windows control builds in order to preserve symbolic links.
Reviewed-by: dholmes, ohair
katleman [Thu, 05 Apr 2012 13:04:31 -0700] rev 12253
Added tag jdk8-b33 for changeset 2f7d5473c3ca
duke [Wed, 05 Jul 2017 18:07:12 +0200] rev 12252
Added tag jdk8-b33 for changeset a6e6d42203e6
duke [Wed, 05 Jul 2017 18:07:11 +0200] rev 12251
Merge
duke [Wed, 05 Jul 2017 18:07:09 +0200] rev 12250
Merge
cl [Thu, 29 Mar 2012 13:02:32 -0700] rev 12249
Added tag jdk8-b32 for changeset c0968fe1c711
duke [Wed, 05 Jul 2017 18:07:06 +0200] rev 12248
Merge
cl [Thu, 29 Mar 2012 13:02:20 -0700] rev 12247
Added tag jdk8-b32 for changeset 810c7eb54560
duke [Wed, 05 Jul 2017 18:07:04 +0200] rev 12246
Merge
cl [Thu, 29 Mar 2012 13:02:18 -0700] rev 12245
Added tag jdk8-b32 for changeset b8b4c42fef3c
duke [Wed, 05 Jul 2017 18:07:02 +0200] rev 12244
Merge
cl [Thu, 29 Mar 2012 13:02:07 -0700] rev 12243
Added tag jdk8-b32 for changeset a3f3757b3463
duke [Wed, 05 Jul 2017 18:06:59 +0200] rev 12242
Merge
cl [Thu, 29 Mar 2012 13:02:24 -0700] rev 12241
Added tag jdk8-b32 for changeset fa6a1e7240ae
duke [Wed, 05 Jul 2017 18:06:57 +0200] rev 12240
Merge
amurillo [Fri, 30 Mar 2012 14:07:59 -0700] rev 12239
Added tag hs24-b06 for changeset 020217b7a101
amurillo [Fri, 30 Mar 2012 14:07:58 -0700] rev 12238
Merge
jwilhelm [Fri, 30 Mar 2012 09:31:26 +0200] rev 12237
Merge
brutisso [Tue, 27 Mar 2012 10:29:59 +0200] rev 12236
7156764: Remove unused size parameter from some CollectedHeap methods
Summary: Some minor cleanups
Reviewed-by: tonyp, jwilhelm
dlong [Thu, 29 Mar 2012 23:49:47 -0400] rev 12235
Merge
dlong [Sun, 25 Mar 2012 18:08:52 -0400] rev 12234
Merge
dlong [Sat, 17 Mar 2012 17:31:59 -0400] rev 12233
Merge
collins [Tue, 13 Mar 2012 15:37:50 -0700] rev 12232
Merge
jiangli [Tue, 13 Mar 2012 13:50:48 -0400] rev 12231
7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
Summary: Fold instanceKlass::_enclosing_method_class_index and instanceKlass::_enclosing_method_method_index into the instanceKlass::_inner_classes array.
Reviewed-by: never, coleenp
Contributed-by: Jiangli Zhou <jiangli.zhou@oracle.com>
jwilhelm [Mon, 26 Mar 2012 13:22:38 +0200] rev 12230
Merge
brutisso [Fri, 23 Mar 2012 15:28:24 +0100] rev 12229
7103665: HeapWord*ParallelScavengeHeap::failed_mem_allocate(unsigned long,bool)+0x97
Summary: Make sure that MutableNUMASpace::ensure_parsability() only calls CollectedHeap::fill_with_object() with valid sizes and make sure CollectedHeap::filler_array_max_size() returns a value that can be converted to an int without overflow
Reviewed-by: azeemj, jmasa, iveresov
tonyp [Fri, 23 Mar 2012 10:53:19 -0400] rev 12228
7146246: G1: expose some of the -XX flags that drive which old regions to collect during mixed GCs
Summary: Make two G1 cmd line flags available in product builds: G1HeapWastePercent (previously called: G1OldReclaimableThresholdPercent) and G1MixedGCCountTarget (previous called: G1MaxMixedGCNum). Also changed the default of the former from 1% to 5% and the default for G1OldCSetRegionLiveThresholdPercent to 90%.
Reviewed-by: azeemj, jwilhelm, johnc
johnc [Mon, 12 Mar 2012 14:59:00 -0700] rev 12227
7147724: G1: hang in SurrogateLockerThread::manipulatePLL
Summary: Attempting to initiate a marking cycle when allocating a humongous object can, if a marking cycle is successfully initiated by another thread, result in the allocating thread spinning until the marking cycle is complete. Eliminate a deadlock between the main ConcurrentMarkThread, the SurrogateLocker thread, the VM thread, and a mutator thread waiting on the SecondaryFreeList_lock (while free regions are going to become available) by not manipulating the pending list lock during the prologue and epilogue of the cleanup pause.
Reviewed-by: brutisso, jcoomes, tonyp