Thu, 29 Apr 2010 14:32:48 -0700 Added tag jdk7-b91 for changeset e675c1f4d97e
mikejwre [Thu, 29 Apr 2010 14:32:48 -0700] rev 5367
Added tag jdk7-b91 for changeset e675c1f4d97e
Wed, 05 Jul 2017 17:11:04 +0200 Merge
duke [Wed, 05 Jul 2017 17:11:04 +0200] rev 5366
Merge
Thu, 29 Apr 2010 14:32:48 -0700 Added tag jdk7-b91 for changeset d93fc4179dc2
mikejwre [Thu, 29 Apr 2010 14:32:48 -0700] rev 5365
Added tag jdk7-b91 for changeset d93fc4179dc2
Wed, 05 Jul 2017 17:11:02 +0200 Merge
duke [Wed, 05 Jul 2017 17:11:02 +0200] rev 5364
Merge
Thu, 29 Apr 2010 14:32:40 -0700 Added tag jdk7-b91 for changeset acab8ba96315
mikejwre [Thu, 29 Apr 2010 14:32:40 -0700] rev 5363
Added tag jdk7-b91 for changeset acab8ba96315
Wed, 05 Jul 2017 17:10:59 +0200 Merge
duke [Wed, 05 Jul 2017 17:10:59 +0200] rev 5362
Merge
Thu, 29 Apr 2010 14:32:53 -0700 Added tag jdk7-b91 for changeset bafb4ec71cd3
mikejwre [Thu, 29 Apr 2010 14:32:53 -0700] rev 5361
Added tag jdk7-b91 for changeset bafb4ec71cd3
Wed, 05 Jul 2017 17:10:57 +0200 Merge
duke [Wed, 05 Jul 2017 17:10:57 +0200] rev 5360
Merge
Tue, 04 May 2010 12:25:39 -0700 Added tag hs18-b03 for changeset d5db8102090b
trims [Tue, 04 May 2010 12:25:39 -0700] rev 5359
Added tag hs18-b03 for changeset d5db8102090b
Tue, 04 May 2010 12:23:38 -0700 Merge
trims [Tue, 04 May 2010 12:23:38 -0700] rev 5358
Merge
Thu, 29 Apr 2010 15:47:28 -0700 6948636: Bump the HS18 build number to 04
trims [Thu, 29 Apr 2010 15:47:28 -0700] rev 5357
6948636: Bump the HS18 build number to 04 Summary: Update the HS18 build number to 04 Reviewed-by: jcoomes
Thu, 29 Apr 2010 15:18:27 -0700 Merge
trims [Thu, 29 Apr 2010 15:18:27 -0700] rev 5356
Merge
Thu, 29 Apr 2010 00:03:40 -0700 Merge
jrose [Thu, 29 Apr 2010 00:03:40 -0700] rev 5355
Merge
Tue, 27 Apr 2010 11:19:12 -0700 6946892: c1 shouldn't sign-extend to upper 32bits on x64
iveresov [Tue, 27 Apr 2010 11:19:12 -0700] rev 5354
6946892: c1 shouldn't sign-extend to upper 32bits on x64 Summary: c1 does sign-extension when it loads ints and shorts from memory to 64-bit registers. This causes problems for c2 because it relies on the fact the int passed in a 64-bit register is zero-extended. Reviewed-by: never
Mon, 26 Apr 2010 23:59:45 -0700 6943485: JVMTI always on capabilities change code generation too much
never [Mon, 26 Apr 2010 23:59:45 -0700] rev 5353
6943485: JVMTI always on capabilities change code generation too much Reviewed-by: twisti, dcubed
Mon, 26 Apr 2010 11:27:21 -0700 6946040: add intrinsic for short and char reverseBytes
never [Mon, 26 Apr 2010 11:27:21 -0700] rev 5352
6946040: add intrinsic for short and char reverseBytes Reviewed-by: never, twisti Contributed-by: Hiroshi Yamauchi <yamauchi@google.com>
Mon, 26 Apr 2010 18:01:55 -0400 Merge
tonyp [Mon, 26 Apr 2010 18:01:55 -0400] rev 5351
Merge
Thu, 22 Apr 2010 10:02:38 -0700 6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc [Thu, 22 Apr 2010 10:02:38 -0700] rev 5350
6819061: G1: eliminate serial Other times that are proportional to the collection set length 6871109: G1: remove the concept of the scan only prefix Summary: Removed scan only regions and associated code. The young portion of the collection set is now constructed incrementally - when a young region is retired as the current allocation region it is added to the collection set. Reviewed-by: apetrusenko, iveresov, tonyp
Mon, 19 Apr 2010 05:40:21 -0700 Merge
kevinw [Mon, 19 Apr 2010 05:40:21 -0700] rev 5349
Merge
Fri, 16 Apr 2010 17:36:37 +0100 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw [Fri, 16 Apr 2010 17:36:37 +0100] rev 5348
6897143: Stress test crashes during HeapInspection using ParallelGC. Summary: ensure_parsability() must be called even if GC_locker prevents GC. Reviewed-by: ysr, chrisphi
Fri, 16 Apr 2010 08:48:16 -0700 6942253: G1: replace G1ParallelGCAllocBufferSize with YoungPLABSize and OldPLABSize
apetrusenko [Fri, 16 Apr 2010 08:48:16 -0700] rev 5347
6942253: G1: replace G1ParallelGCAllocBufferSize with YoungPLABSize and OldPLABSize Summary: Replaces the G1-specific parameter with the existing ones that are used by the other GCs (YoungPLABSize and OldPLABSize) Reviewed-by: tonyp, johnc
Thu, 15 Apr 2010 18:45:30 -0400 6939027: G1: assertion failure during the concurrent phase of cleanup
tonyp [Thu, 15 Apr 2010 18:45:30 -0400] rev 5346
6939027: G1: assertion failure during the concurrent phase of cleanup Summary: The outgoing region map is not maintained properly and it's causing an assert failure. Given that we don't actually use it, I'm removing it. I'm piggy-backing a small change on this which removes a message that it's printed before a Full GC when DisableExplicitGC is set. Reviewed-by: apetrusenko, ysr
Thu, 15 Apr 2010 15:52:55 -0700 6943926: G1: Integer overflow during heap region verification
johnc [Thu, 15 Apr 2010 15:52:55 -0700] rev 5345
6943926: G1: Integer overflow during heap region verification Summary: The expression that calculates the live bytes for a heap region can overflow for a suitably large humongous region/object. Cache the object size in a suitably sized local variable so that the expression is converted to a wider type. Reviewed-by: tonyp, jmasa, iveresov, apetrusenko
Tue, 30 Mar 2010 15:43:03 -0400 6937142: G1: improvements to debugging output (S-M)
tonyp [Tue, 30 Mar 2010 15:43:03 -0400] rev 5344
6937142: G1: improvements to debugging output (S-M) Summary: Various fixes to the G1 debugging output. Reviewed-by: johnc, iveresov
Tue, 13 Apr 2010 13:52:10 -0700 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa [Tue, 13 Apr 2010 13:52:10 -0700] rev 5343
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit. Summary: Ensure a full GC that clears SoftReferences before throwing an out-of-memory Reviewed-by: ysr, jcoomes
Wed, 21 Apr 2010 01:13:15 -0700 Merge
jrose [Wed, 21 Apr 2010 01:13:15 -0700] rev 5342
Merge
Tue, 20 Apr 2010 13:26:33 -0700 6945219: minor SA fixes
never [Tue, 20 Apr 2010 13:26:33 -0700] rev 5341
6945219: minor SA fixes Reviewed-by: twisti
Mon, 19 Apr 2010 02:13:06 -0700 6944503: Improved Zero crash dump
twisti [Mon, 19 Apr 2010 02:13:06 -0700] rev 5340
6944503: Improved Zero crash dump Summary: With Zero on a GC crash the stack was dumped differently to other crashes. Reviewed-by: twisti Contributed-by: Gary Benson <gbenson@redhat.com>
(0) -3000 -1000 -300 -100 -50 -28 +28 +50 +100 +300 +1000 +3000 +10000 +30000 tip