Wed, 23 Apr 2014 12:37:36 +0200 8038265: CMS: enable time based triggering of concurrent cycles
brutisso [Wed, 23 Apr 2014 12:37:36 +0200] rev 24110
8038265: CMS: enable time based triggering of concurrent cycles Reviewed-by: mgerdin, brutisso Contributed-by: michal@frajt.eu
Wed, 23 Apr 2014 10:12:34 +0200 Merge
ehelin [Wed, 23 Apr 2014 10:12:34 +0200] rev 24109
Merge
Tue, 22 Apr 2014 11:10:12 +0200 8040792: G1: Memory usage calculation uses sizeof(this) instead of sizeof(classname)
tschatzl [Tue, 22 Apr 2014 11:10:12 +0200] rev 24108
8040792: G1: Memory usage calculation uses sizeof(this) instead of sizeof(classname) Summary: A few locations in the code use sizeof(this) which returns the size of the pointer instead of sizeof(classname) which returns the size of the sum of its members. This change fixes these errors and adds a few tests. Reviewed-by: mgerdin, brutisso
Thu, 17 Apr 2014 18:47:15 +0200 8040245: G1: VM hangs during shutdown
pliden [Thu, 17 Apr 2014 18:47:15 +0200] rev 24107
8040245: G1: VM hangs during shutdown Summary: temporarily disable the shutdown of the concurrent GC threads introduced in JDK-8037112 Reviewed-by: brutisso, tschatzl, jmasa
Thu, 17 Apr 2014 15:57:02 +0200 8040722: G1: Clean up usages of heap_region_containing
brutisso [Thu, 17 Apr 2014 15:57:02 +0200] rev 24106
8040722: G1: Clean up usages of heap_region_containing Reviewed-by: tschatzl, jmasa
Wed, 16 Apr 2014 16:47:02 +0200 8040002: Clean up code and code duplication in re-diryting cards for verification
tschatzl [Wed, 16 Apr 2014 16:47:02 +0200] rev 24105
8040002: Clean up code and code duplication in re-diryting cards for verification Summary: Card re-dirtying code for verification and actual redirtying uses two different, almost completely identical card closures. Also the verification code still assumes a perm gen. Reviewed-by: brutisso, jmasa
Wed, 16 Apr 2014 16:46:58 +0200 8019342: G1: High "Other" time most likely due to card redirtying
tschatzl [Wed, 16 Apr 2014 16:46:58 +0200] rev 24104
8019342: G1: High "Other" time most likely due to card redirtying Summary: Parallelize card redirtying to decrease the time it takes. Reviewed-by: brutisso
Wed, 16 Apr 2014 11:05:37 +0200 8028710: G1 does not retire allocation buffers after reference processing work
tschatzl [Wed, 16 Apr 2014 11:05:37 +0200] rev 24103
8028710: G1 does not retire allocation buffers after reference processing work Summary: G1 does not retire allocation buffers after reference processing work when -XX:+ParallelRefProcEnabled is enabled. This causes wrong calculation of PLAB sizes, as the amount of space wasted is not updated correctly. Reviewed-by: brutisso
Wed, 16 Apr 2014 10:56:17 +0200 8039596: Remove HeapRegionRemSet::clear_incoming_entry
tschatzl [Wed, 16 Apr 2014 10:56:17 +0200] rev 24102
8039596: Remove HeapRegionRemSet::clear_incoming_entry Summary: The mentioned method is never used and out of date. So it is removed. Reviewed-by: mgerdin, brutisso
Wed, 16 Apr 2014 10:55:58 +0200 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl [Wed, 16 Apr 2014 10:55:58 +0200] rev 24101
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table Summary: After changes to the PerRegionTable where all these PRTs are linked together in an additional field, simplify iterating over all PRTs by using these links instead of walki Reviewed-by: mgerdin, jwilhelm, brutisso
Wed, 16 Apr 2014 10:55:26 +0200 8027553: Change the in_cset_fast_test functionality to use the G1BiasedArray abstraction
tschatzl [Wed, 16 Apr 2014 10:55:26 +0200] rev 24100
8027553: Change the in_cset_fast_test functionality to use the G1BiasedArray abstraction Summary: Instead of using a manually managed array for the in_cset_fast_test array, use a G1BiasedArray instance. Reviewed-by: brutisso, mgerdin
Wed, 16 Apr 2014 10:14:50 +0200 8038930: G1CodeRootSet::test fails with assert(_num_chunks_handed_out == 0) failed: No elements must have been handed out yet
tschatzl [Wed, 16 Apr 2014 10:14:50 +0200] rev 24099
8038930: G1CodeRootSet::test fails with assert(_num_chunks_handed_out == 0) failed: No elements must have been handed out yet Summary: The test incorrectly assumed that it had been started with no other previous compilation activity. Fix this by allowing multiple code root free chunk lists, and use one separate from the global one to perform the test. Reviewed-by: brutisso
Tue, 15 Apr 2014 20:46:23 +0200 8039957: Replace the last few %p usages with PTR_FORMAT in the GC code
stefank [Tue, 15 Apr 2014 20:46:23 +0200] rev 24098
8039957: Replace the last few %p usages with PTR_FORMAT in the GC code Reviewed-by: jwilhelm, sjohanss, jmasa
Tue, 15 Apr 2014 18:09:53 +0200 8037925: CMM Testing: an allocated humongous object at the end of the heap should not prevents shrinking the heap
jwilhelm [Tue, 15 Apr 2014 18:09:53 +0200] rev 24097
8037925: CMM Testing: an allocated humongous object at the end of the heap should not prevents shrinking the heap Summary: New test added. Reviewed-by: ehelin, tschatzl, jwilhelm Contributed-by: andrey.x.zakharov@oracle.com
Mon, 14 Apr 2014 10:08:10 +0200 Merge
ehelin [Mon, 14 Apr 2014 10:08:10 +0200] rev 24096
Merge
Fri, 11 Apr 2014 18:28:39 +0200 8037924: CMM Testing: Check Min/MaxHeapFreeRatio flags allows to shrink the heap when using ParallelGC
jwilhelm [Fri, 11 Apr 2014 18:28:39 +0200] rev 24095
8037924: CMM Testing: Check Min/MaxHeapFreeRatio flags allows to shrink the heap when using ParallelGC Summary: New test implemented Reviewed-by: ehelin, tschatzl Contributed-by: andrey.x.zakharov@oracle.com
Fri, 11 Apr 2014 12:29:24 +0200 8039147: Cleanup SuspendibleThreadSet
pliden [Fri, 11 Apr 2014 12:29:24 +0200] rev 24094
8039147: Cleanup SuspendibleThreadSet Reviewed-by: brutisso, tschatzl, mgerdin
Fri, 11 Apr 2014 11:00:12 +0200 8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden [Fri, 11 Apr 2014 11:00:12 +0200] rev 24093
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV Reviewed-by: brutisso, mgerdin
Wed, 09 Apr 2014 13:54:32 +0200 8039743: Use correct format specifier to print size_t values and pointers in the GC code
stefank [Wed, 09 Apr 2014 13:54:32 +0200] rev 24092
8039743: Use correct format specifier to print size_t values and pointers in the GC code Reviewed-by: jmasa, sjohanss Contributed-by: stefan.karlsson@oracle.com, mikael.vidstedt@oracle.com
Thu, 24 Apr 2014 17:20:29 -0400 Merge
bharadwaj [Thu, 24 Apr 2014 17:20:29 -0400] rev 24091
Merge
Tue, 22 Apr 2014 17:45:56 -0700 8041351: Crash in src/share/vm/opto/loopnode.cpp:3215 - assert(!had_error) failed: bad dominance
kvn [Tue, 22 Apr 2014 17:45:56 -0700] rev 24090
8041351: Crash in src/share/vm/opto/loopnode.cpp:3215 - assert(!had_error) failed: bad dominance Summary: add missing is_mem() check when we collect load nodes in SuperWord::co_locate_pack(). Reviewed-by: iveresov
Fri, 18 Apr 2014 14:30:58 -0400 Merge
bharadwaj [Fri, 18 Apr 2014 14:30:58 -0400] rev 24089
Merge
Fri, 18 Apr 2014 14:25:21 +0200 8039975: SIGSEGV in MethodData::next_data(ProfileData*)
roland [Fri, 18 Apr 2014 14:25:21 +0200] rev 24088
8039975: SIGSEGV in MethodData::next_data(ProfileData*) Summary: profiling code in interpreter broken when argument profiling is off. Reviewed-by: iveresov, kvn
Fri, 18 Apr 2014 10:55:41 -0700 Merge
dcubed [Fri, 18 Apr 2014 10:55:41 -0700] rev 24087
Merge
Fri, 18 Apr 2014 08:51:34 -0400 8040018: Remove bad assert in ClassFileParser.cpp
hseigel [Fri, 18 Apr 2014 08:51:34 -0400] rev 24086
8040018: Remove bad assert in ClassFileParser.cpp Summary: Remove assert that prevent throwing valid exception Reviewed-by: coleenp, lfoltan
Fri, 18 Apr 2014 00:19:24 +0200 8040887: [TESTBUG] Remove test/runtime/6925573/SortMethodsTest.java
ctornqvi [Fri, 18 Apr 2014 00:19:24 +0200] rev 24085
8040887: [TESTBUG] Remove test/runtime/6925573/SortMethodsTest.java Summary: Removed test/runtime/6925573/SortMethodsTest.java Reviewed-by: coleenp, rdurbin
Thu, 17 Apr 2014 00:03:58 +0200 6959423: [TESTBUG] runtime/6925573/SortMethodsTest.java times out
ctornqvi [Thu, 17 Apr 2014 00:03:58 +0200] rev 24084
6959423: [TESTBUG] runtime/6925573/SortMethodsTest.java times out Summary: Decreased maximum number methods in generated classes and decreased ratio to make it reproduce more often Reviewed-by: coleenp, lfoltan
Thu, 01 May 2014 12:50:03 -0700 Added tag jdk9-b11 for changeset e21de7fd0dd1
katleman [Thu, 01 May 2014 12:50:03 -0700] rev 24083
Added tag jdk9-b11 for changeset e21de7fd0dd1
Thu, 01 May 2014 14:19:55 -0700 Merge
lana [Thu, 01 May 2014 14:19:55 -0700] rev 24082
Merge
Wed, 30 Apr 2014 14:45:27 +0200 8042213: Freetype detection fails on Solaris sparcv9 when using devkit
erikj [Wed, 30 Apr 2014 14:45:27 +0200] rev 24081
8042213: Freetype detection fails on Solaris sparcv9 when using devkit Reviewed-by: tbell
(0) -10000 -3000 -1000 -300 -100 -50 -30 +30 +50 +100 +300 +1000 +3000 +10000 +30000 tip