Tue, 08 Dec 2009 16:27:21 -0800 6908167: jbb2005, OptimizeStringConcat causes assert in EA
never [Tue, 08 Dec 2009 16:27:21 -0800] rev 4469
6908167: jbb2005, OptimizeStringConcat causes assert in EA Reviewed-by: kvn
Tue, 22 Dec 2009 16:32:11 -0800 Merge
trims [Tue, 22 Dec 2009 16:32:11 -0800] rev 4468
Merge
Fri, 11 Dec 2009 16:38:37 -0800 Merge
trims [Fri, 11 Dec 2009 16:38:37 -0800] rev 4467
Merge
Fri, 11 Dec 2009 08:39:30 -0800 Merge
jmasa [Fri, 11 Dec 2009 08:39:30 -0800] rev 4466
Merge
Tue, 08 Dec 2009 15:12:17 -0800 6908208: UseCompressedOops: array_size() returns incorrect size for MAX_INT object array following 6906727
ysr [Tue, 08 Dec 2009 15:12:17 -0800] rev 4465
6908208: UseCompressedOops: array_size() returns incorrect size for MAX_INT object array following 6906727 Summary: In array_size() cast to an unsigned to avoid overflow of intermediate value. Reviewed-by: kvn, tonyp, jmasa, jcoomes, coleenp
Mon, 07 Dec 2009 14:22:34 -0500 6904967: G1: some CollectionUsageThreshold tests fail
tonyp [Mon, 07 Dec 2009 14:22:34 -0500] rev 4464
6904967: G1: some CollectionUsageThreshold tests fail Summary: ensure that max and committed are non-zero (currently: at least as large as the region size). Reviewed-by: iveresov, mchung
Fri, 04 Dec 2009 07:44:41 -0500 6906565: G1: deal with compilation warning in g1MemoryPool.hpp
tonyp [Fri, 04 Dec 2009 07:44:41 -0500] rev 4463
6906565: G1: deal with compilation warning in g1MemoryPool.hpp Summary: size_t max_size() hides size_t max_size() const. Reviewed-by: jmasa, ysr
Fri, 04 Dec 2009 07:44:35 -0500 6880903: G1: G1 reports incorrect Runtime.maxMemory()
tonyp [Fri, 04 Dec 2009 07:44:35 -0500] rev 4462
6880903: G1: G1 reports incorrect Runtime.maxMemory() Summary: G1 reports committed memory instead of reserved memory from the Runtime.maxMemory() method Reviewed-by: ysr, jmasa
Thu, 03 Dec 2009 15:01:57 -0800 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr [Thu, 03 Dec 2009 15:01:57 -0800] rev 4461
6906727: UseCompressedOops: some card-marking fixes related to object arrays Summary: Introduced a new write_ref_array(HeapWords* start, size_t count) method that does the requisite MemRegion range calculation so (some of the) clients of the erstwhile write_ref_array(MemRegion mr) do not need to worry. This removed all external uses of array_size(), which was also simplified and made private. Asserts were added to catch other possible issues. Further, less essential, fixes stemming from this investigation are deferred to CR 6904516 (to follow shortly in hs17). Reviewed-by: kvn, coleenp, jmasa
Tue, 24 Nov 2009 15:19:30 -0800 6899058: G1: Internal error in ptrQueue.cpp:201 in nightly tests
johnc [Tue, 24 Nov 2009 15:19:30 -0800] rev 4460
6899058: G1: Internal error in ptrQueue.cpp:201 in nightly tests Summary: Fixes a race on the dirty card queue completed buffer list between worker thread(s) performing a flush of a deferred store barrier (enqueueing a newly completed buffer) and worker thread(s) in the RSet updating code claiming completed buffers. Removed the routine that removes elements from the completed update buffer queue using a CAS. Reviewed-by: ysr, tonyp
Fri, 20 Nov 2009 14:47:01 -0500 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp [Fri, 20 Nov 2009 14:47:01 -0500] rev 4459
6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC Summary: It introduces the necessary memory pools for G1. Reviewed-by: mchung, ysr
Thu, 19 Nov 2009 13:43:25 -0800 6902303: G1: ScavengeALot should cause an incremental, rather than a full, collection
ysr [Thu, 19 Nov 2009 13:43:25 -0800] rev 4458
6902303: G1: ScavengeALot should cause an incremental, rather than a full, collection Summary: ScavengeALot now causes an incremental (but possibly partially young, in the G1 sense) collection. Some such collections may be abandoned on account of MMU specs. Band-aided a native leak associated with abandoned pauses, as well as an MMU tracker overflow related to frequent scavenge events in the face of a large MMU denominator interval; the latter is protected by a product flag that defaults to false. Reviewed-by: tonyp
Thu, 19 Nov 2009 10:19:19 -0800 6902701: G1: protect debugging code related to 6898948 with a debug flag
ysr [Thu, 19 Nov 2009 10:19:19 -0800] rev 4457
6902701: G1: protect debugging code related to 6898948 with a debug flag Summary: Protected stats dump with a new develop flag; other than for the dump, reconciled product and non-product behaviour in face of the error. Reviewed-by: tonyp
Fri, 13 Nov 2009 11:55:26 -0800 6898948: G1: forensic instrumentation for out-of-bounds recent_avg_pause_time_ratio()
ysr [Fri, 13 Nov 2009 11:55:26 -0800] rev 4456
6898948: G1: forensic instrumentation for out-of-bounds recent_avg_pause_time_ratio() Summary: Added instrumentation and (temporary) assert in non-product mode; clipped the value when found out-of-bounds in product mode. Fix of original issue will follow collection of data from this instrumentation. Reviewed-by: jcoomes, tonyp
Tue, 10 Nov 2009 11:32:48 -0800 6898857: [Regression] -XX:NewRatio with -XX:+UseConcMarkSweepGC causes fatal error
jmasa [Tue, 10 Nov 2009 11:32:48 -0800] rev 4455
6898857: [Regression] -XX:NewRatio with -XX:+UseConcMarkSweepGC causes fatal error Summary: Use CollectorPolicy information instead of MaxNewSize Reviewed-by: ysr, jcoomes
Fri, 06 Nov 2009 11:10:05 -0800 6895788: G1: SATB and update buffer allocation code allocates too much space
johnc [Fri, 06 Nov 2009 11:10:05 -0800] rev 4454
6895788: G1: SATB and update buffer allocation code allocates too much space Summary: The type in the NEW_C_HEAP_ARRRY and FREE_C_HEAP_ARRAY calls in the buffer allocation code was changed from void* to char as the size argument had already been mulitipled by the byte size of an object pointer. Reviewed-by: ysr, tonyp
Wed, 02 Dec 2009 13:29:00 -0800 6901572: JVM 1.6.16 crash on loops: assert(has_node(i),"")
cfang [Wed, 02 Dec 2009 13:29:00 -0800] rev 4453
6901572: JVM 1.6.16 crash on loops: assert(has_node(i),"") Summary: Skip the secondary induction variable handling if it is dead Reviewed-by: never, kvn
Tue, 01 Dec 2009 22:11:01 -0800 Merge
iveresov [Tue, 01 Dec 2009 22:11:01 -0800] rev 4452
Merge
Wed, 25 Nov 2009 12:09:02 -0800 6904191: OptimizeStringConcat should be product instead of experimental
cfang [Wed, 25 Nov 2009 12:09:02 -0800] rev 4451
6904191: OptimizeStringConcat should be product instead of experimental Summary: Make OptimizeStringConcat a product VM option(contributed by never) Reviewed-by: never
Thu, 12 Nov 2009 09:24:21 -0800 6892658: C2 should optimize some stringbuilder patterns
never [Thu, 12 Nov 2009 09:24:21 -0800] rev 4450
6892658: C2 should optimize some stringbuilder patterns Reviewed-by: kvn, twisti
Tue, 01 Dec 2009 14:49:41 -0800 Merge
iveresov [Tue, 01 Dec 2009 14:49:41 -0800] rev 4449
Merge
Fri, 27 Nov 2009 07:56:58 -0800 6896043: first round of zero fixes
twisti [Fri, 27 Nov 2009 07:56:58 -0800] rev 4448
6896043: first round of zero fixes Reviewed-by: kvn Contributed-by: Gary Benson <gbenson@redhat.com>
Wed, 25 Nov 2009 09:03:42 -0500 Merge
kamg [Wed, 25 Nov 2009 09:03:42 -0500] rev 4447
Merge
Mon, 23 Nov 2009 16:24:35 -0500 Merge
acorn [Mon, 23 Nov 2009 16:24:35 -0500] rev 4446
Merge
Wed, 11 Nov 2009 15:49:38 -0500 6893504: LinkageError for bootstrap duplicate class definitions.
acorn [Wed, 11 Nov 2009 15:49:38 -0500] rev 4445
6893504: LinkageError for bootstrap duplicate class definitions. Reviewed-by: kamg, xlu
Fri, 20 Nov 2009 16:22:38 -0500 6900899: vm fails to start when -Xmx value is less than OldSize + NewSize
phh [Fri, 20 Nov 2009 16:22:38 -0500] rev 4444
6900899: vm fails to start when -Xmx value is less than OldSize + NewSize Summary: Set minimum heap size to min(OldSize + NewSize, MaxHeapSize) in Arguments::set_heap_size(). Reviewed-by: kvn, ysr, tonyp
Tue, 24 Nov 2009 11:49:42 -0800 Merge
cfang [Tue, 24 Nov 2009 11:49:42 -0800] rev 4443
Merge
Thu, 19 Nov 2009 14:32:23 -0800 6902036: WorldWind asserts on escape.cpp:1153: assert(addr->is_AddP(),"AddP required")
kvn [Thu, 19 Nov 2009 14:32:23 -0800] rev 4442
6902036: WorldWind asserts on escape.cpp:1153: assert(addr->is_AddP(),"AddP required") Summary: Remove the assert. Reviewed-by: twisti
Thu, 19 Nov 2009 03:41:29 -0800 6902000: use ShouldNotReachHere() for btos/ctos/stos in TemplateInterpreterGenerator::set_short_entry_points
twisti [Thu, 19 Nov 2009 03:41:29 -0800] rev 4441
6902000: use ShouldNotReachHere() for btos/ctos/stos in TemplateInterpreterGenerator::set_short_entry_points Summary: set_entry_point is only ever used with the tos states of bytecode templates in templateTable.cpp and none of those use the subword tos states like btos, ctos and stos. Reviewed-by: kvn
Wed, 11 Nov 2009 23:39:17 -0800 6892079: live value must not be garbage failure after fix for 6854812
never [Wed, 11 Nov 2009 23:39:17 -0800] rev 4440
6892079: live value must not be garbage failure after fix for 6854812 Reviewed-by: kvn
(0) -3000 -1000 -300 -100 -50 -30 +30 +50 +100 +300 +1000 +3000 +10000 +30000 tip