hg: jdk7/hotspot-rt/hotspot: 13 new changesets
daniel.daugherty at oracle.com
daniel.daugherty at oracle.com
Fri Jan 21 12:51:15 PST 2011
Changeset: 85c73c0edb06
Author: kvn
Date: 2011-01-18 17:10 -0800
URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/85c73c0edb06
7012965: Fix failed on sparc for 7009756: volatile variables could be broken throw reflection API
Summary: Use LDX/STX on v9 and LDD/STD on v8 sparc for volatile long moves.
Reviewed-by: never
! src/os_cpu/solaris_sparc/vm/atomic_solaris_sparc.inline.hpp
! src/os_cpu/solaris_sparc/vm/orderAccess_solaris_sparc.inline.hpp
! src/os_cpu/solaris_sparc/vm/solaris_sparc.il
Changeset: b599a4c6c2df
Author: iveresov
Date: 2011-01-18 18:00 -0800
URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/b599a4c6c2df
7012766: assert(false) failed: DEBUG MESSAGE in MacroAssembler::debug32
Summary: Interpreter expects to see methodOop in rbx on method entry, which needs to be restored after call to profile_method.
Reviewed-by: kvn, never
! src/cpu/x86/vm/templateInterpreter_x86_32.cpp
! src/cpu/x86/vm/templateInterpreter_x86_64.cpp
Changeset: 02b6913287da
Author: dcubed
Date: 2011-01-19 19:24 -0800
URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/02b6913287da
Merge
Changeset: 7e37af9d69ef
Author: tonyp
Date: 2011-01-19 09:35 -0500
URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/7e37af9d69ef
7011379: G1: overly long concurrent marking cycles
Summary: This changeset introduces filtering of SATB buffers at the point when they are about to be enqueued. If this filtering clears enough entries on each buffer, the buffer can then be re-used and not enqueued. This cuts down the number of SATB buffers that need to be processed by the concurrent marking threads.
Reviewed-by: johnc, ysr
! src/share/vm/gc_implementation/g1/concurrentMark.cpp
! src/share/vm/gc_implementation/g1/g1CollectedHeap.inline.hpp
! src/share/vm/gc_implementation/g1/g1_globals.hpp
! src/share/vm/gc_implementation/g1/heapRegionSeq.hpp
! src/share/vm/gc_implementation/g1/ptrQueue.cpp
! src/share/vm/gc_implementation/g1/ptrQueue.hpp
! src/share/vm/gc_implementation/g1/satbQueue.cpp
! src/share/vm/gc_implementation/g1/satbQueue.hpp
Changeset: 182e9624aa42
Author: johnc
Date: 2011-01-19 13:01 -0800
URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/182e9624aa42
7012642: G1: JumbleGC002 test aborts with segmentation violation due to uncaught stack overflow
Summary: With recent G1 allocation path changes, the value of StackShadowPages in fast debug builds of the JVM, is no longer large enough to prevent the JVM C++ code from touching the stack guard pages. Increase the value of StackShadowPages to a suitable value.
Reviewed-by: ysr, tonyp, coleenp
! src/cpu/x86/vm/globals_x86.hpp
Changeset: cb913d743d09
Author: johnc
Date: 2011-01-19 13:04 -0800
URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/cb913d743d09
Merge
Changeset: 0fa27f37d4d4
Author: tonyp
Date: 2011-01-19 19:30 -0500
URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/0fa27f37d4d4
6977804: G1: remove the zero-filling thread
Summary: This changeset removes the zero-filling thread from G1 and collapses the two free region lists we had before (the "free" and "unclean" lists) into one. The new free list uses the new heap region sets / lists abstractions that we'll ultimately use it to keep track of all regions in the heap. A heap region set was also introduced for the humongous regions. Finally, this change increases the concurrency between the thread that completes freeing regions (after a cleanup pause) and the rest of the system (before we'd have to wait for said thread to complete before allocating a new region). The changest also includes a lot of refactoring and code simplification.
Reviewed-by: jcoomes, johnc
! src/share/vm/gc_implementation/g1/concurrentMark.cpp
! src/share/vm/gc_implementation/g1/concurrentMark.hpp
! src/share/vm/gc_implementation/g1/concurrentMarkThread.cpp
- src/share/vm/gc_implementation/g1/concurrentZFThread.cpp
- src/share/vm/gc_implementation/g1/concurrentZFThread.hpp
! src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp
! src/share/vm/gc_implementation/g1/g1CollectedHeap.hpp
! src/share/vm/gc_implementation/g1/g1CollectedHeap.inline.hpp
! src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp
! src/share/vm/gc_implementation/g1/g1MarkSweep.cpp
! src/share/vm/gc_implementation/g1/g1_globals.hpp
! src/share/vm/gc_implementation/g1/heapRegion.cpp
! src/share/vm/gc_implementation/g1/heapRegion.hpp
! src/share/vm/gc_implementation/g1/heapRegionSeq.cpp
! src/share/vm/gc_implementation/g1/heapRegionSeq.hpp
+ src/share/vm/gc_implementation/g1/heapRegionSet.cpp
+ src/share/vm/gc_implementation/g1/heapRegionSet.hpp
+ src/share/vm/gc_implementation/g1/heapRegionSet.inline.hpp
+ src/share/vm/gc_implementation/g1/heapRegionSets.cpp
+ src/share/vm/gc_implementation/g1/heapRegionSets.hpp
! src/share/vm/runtime/mutexLocker.cpp
! src/share/vm/runtime/mutexLocker.hpp
! src/share/vm/utilities/debug.hpp
! src/share/vm/utilities/globalDefinitions.hpp
Changeset: 377371490991
Author: johnc
Date: 2011-01-20 13:57 -0800
URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/377371490991
Merge
- src/share/vm/gc_implementation/g1/concurrentZFThread.cpp
- src/share/vm/gc_implementation/g1/concurrentZFThread.hpp
! src/share/vm/gc_implementation/g1/g1MarkSweep.cpp
Changeset: 85330eaa15ee
Author: iveresov
Date: 2011-01-21 00:01 -0800
URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/85330eaa15ee
7013812: C1: deopt blob too far from patching stub
Summary: Use long jumps to get from patching stubs to deopt blob
Reviewed-by: kvn, never
! src/cpu/sparc/vm/c1_Runtime1_sparc.cpp
Changeset: 102466e70deb
Author: cl
Date: 2011-01-20 15:52 -0800
URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/102466e70deb
Added tag jdk7-b126 for changeset 4c851c931d00
! .hgtags
Changeset: 5668ad215b80
Author: trims
Date: 2011-01-20 17:53 -0800
URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/5668ad215b80
Merge
! .hgtags
Changeset: 98bf1c6bb73a
Author: trims
Date: 2011-01-20 18:24 -0800
URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/98bf1c6bb73a
Merge
Changeset: d535bf4c1235
Author: trims
Date: 2011-01-21 02:07 -0800
URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/d535bf4c1235
Merge
More information about the hotspot-runtime-dev
mailing list