hg: jdk9/hs-comp/hotspot: 20 new changesets

christian.thalinger at oracle.com christian.thalinger at oracle.com
Mon Jun 2 22:48:05 UTC 2014


Changeset: 18f86da62a40
Author:    katleman
Date:      2014-05-22 12:53 -0700
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/18f86da62a40

Added tag jdk9-b14 for changeset bd333491bb6c

! .hgtags

Changeset: be9e24a9d6c6
Author:    lana
Date:      2014-05-22 14:38 -0700
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/be9e24a9d6c6

Merge

- src/share/vm/libadt/port.cpp
- src/share/vm/libadt/port.hpp

Changeset: 170f6d733d7a
Author:    jcoomes
Date:      2014-05-23 10:28 -0700
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/170f6d733d7a

Merge

- agent/src/share/classes/sun/jvm/hotspot/ci/ciReceiverTypeData.java
- agent/src/share/classes/sun/jvm/hotspot/ci/ciVirtualCallData.java
- test/runtime/7110720/Test7110720.sh
- test/runtime/SharedArchiveFile/CdsWriteError.java
- test/testlibrary/com/oracle/java/testlibrary/DynamicVMOptionChecker.java
- test/testlibrary/com/oracle/java/testlibrary/TestDynamicVMOption.java

Changeset: 2c2aa6de8f60
Author:    coleenp
Date:      2014-05-21 14:36 -0400
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/2c2aa6de8f60

8042727: nsk/jdb/unwatch/unwatch001 crash in InstanceKlass::methods_do(void (*)(Method*))
Summary: Only walk methods in instanceklass if the class is loaded
Reviewed-by: dholmes, fparain

! src/share/vm/classfile/classLoaderData.cpp
! src/share/vm/compiler/compilerOracle.cpp
! src/share/vm/compiler/compilerOracle.hpp
! src/share/vm/oops/instanceKlass.cpp
! src/share/vm/runtime/java.cpp

Changeset: bef7fbf0fad0
Author:    allwin
Date:      2014-05-22 09:12 +0200
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/bef7fbf0fad0

8027230: Overflow in java.lang.instrument.Instrumentation.getObjectSize() method
Reviewed-by: dholmes, sspitsyn

! src/share/vm/prims/jvmtiEnv.cpp
! test/TEST.groups
+ test/serviceability/jvmti/GetObjectSizeOverflow.java
+ test/serviceability/jvmti/GetObjectSizeOverflowAgent.java

Changeset: 886599d8f918
Author:    lfoltan
Date:      2014-05-22 11:36 -0400
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/886599d8f918

8043301: Duplicate definitions in vm/runtime/sharedRuntimeTrans.cpp versus math.h in VS2013
Summary: Factor out definitions of copysignA and scalbnA into new file sharedRuntimeMath.hpp
Reviewed-by: dholmes, coleenp, kvn

+ src/share/vm/runtime/sharedRuntimeMath.hpp
! src/share/vm/runtime/sharedRuntimeTrans.cpp
! src/share/vm/runtime/sharedRuntimeTrig.cpp

Changeset: 16432bba405a
Author:    dsamersoff
Date:      2014-05-22 13:22 -0700
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/16432bba405a

8042155: [TESTBUG] Tests for stack guard pages have to be cleaned up
Summary: Tests for 6929067 and 8009062 should be composed to single test that provide better testing for stack guard pages behaviour
Reviewed-by: coleenp, dcubed, dsimms

- test/runtime/6929067/T.java
- test/runtime/6929067/Test6929067.sh
- test/runtime/6929067/invoke.c
- test/runtime/InitialThreadOverflow/DoOverflow.java
- test/runtime/InitialThreadOverflow/invoke.c
- test/runtime/InitialThreadOverflow/testme.sh
+ test/runtime/StackGuardPages/DoOverflow.java
+ test/runtime/StackGuardPages/invoke.c
+ test/runtime/StackGuardPages/testme.sh

Changeset: 74ca2ce0f7d7
Author:    coleenp
Date:      2014-05-23 16:43 -0400
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/74ca2ce0f7d7

Merge

- test/runtime/6929067/T.java
- test/runtime/6929067/Test6929067.sh
- test/runtime/6929067/invoke.c
- test/runtime/InitialThreadOverflow/DoOverflow.java
- test/runtime/InitialThreadOverflow/invoke.c
- test/runtime/InitialThreadOverflow/testme.sh

Changeset: c07a0d0a06ca
Author:    coleenp
Date:      2014-05-23 16:54 -0400
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/c07a0d0a06ca

8043925: Fix typo in verifier.cpp
Summary: Fix lookupswitch
Reviewed-by: sla, coleenp
Contributed-by: ygaevsky at azulsystems.com

! src/share/vm/classfile/verifier.cpp

Changeset: b7db78671db9
Author:    coleenp
Date:      2014-05-23 21:34 +0000
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/b7db78671db9

Merge


Changeset: 385699caea74
Author:    minqi
Date:      2014-05-27 08:44 -0700
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/385699caea74

8038422: CDS test failed: assert((size % os::vm_allocation_granularity()) == 0) failed when limiting SharedMiscDataSize
Summary: In debug version, the assert is against os::vm_allocation_granularity(), but in initialization, we use os::vm_page_size() to align the allocation size. In windows, _vm_page_size and _vm_allocation_granularity may not be same. In debug version, the assert is against os::vm_allocation_granularity(), but in initialization, we use os::vm_page_size() to align the allocation size. In windows, _vm_page_size and _vm_allocation_granularity may not be same.
Reviewed-by: dholmes, iklam, jiangli, coleenp
Contributed-by: yumin.qi at oracle.com

! src/share/vm/memory/metaspace.cpp

Changeset: 68e6defdb086
Author:    tschatzl
Date:      2014-05-26 09:31 +0200
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/68e6defdb086

8043723: max_heap_for_compressed_oops() declared with size_t, but defined with uintx
Summary: The mismatch in declaration and definition has been encountered when compiling on a platform where the sizes are different. Change the method definition to match the declaration.
Reviewed-by: tschatzl, sjohanss
Contributed-by: Dan Horak <dhorak at redhat.com>

! src/share/vm/runtime/arguments.cpp

Changeset: abd312cd8cc2
Author:    iignatyev
Date:      2014-05-26 19:21 +0400
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/abd312cd8cc2

8040250: The test test/gc/parallelScavenge/TestDynShrinkHeap.java fails with OOME
Reviewed-by: jmasa, iignatyev
Contributed-by: dmitry.fazunenko at oracle.com

! test/gc/parallelScavenge/TestDynShrinkHeap.java

Changeset: f2fd0ad01e7d
Author:    jmasa
Date:      2014-05-29 13:01 -0700
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/f2fd0ad01e7d

Merge


Changeset: ee47d1257510
Author:    twisti
Date:      2014-05-30 09:49 -0700
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/ee47d1257510

Merge

! test/TEST.groups
- test/runtime/6929067/T.java
- test/runtime/6929067/Test6929067.sh
- test/runtime/6929067/invoke.c
- test/runtime/InitialThreadOverflow/DoOverflow.java
- test/runtime/InitialThreadOverflow/invoke.c
- test/runtime/InitialThreadOverflow/testme.sh

Changeset: 6a115a18858f
Author:    twisti
Date:      2014-05-30 10:07 -0700
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/6a115a18858f

Merge


Changeset: b14e7c0b7d3e
Author:    katleman
Date:      2014-05-29 22:32 -0700
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/b14e7c0b7d3e

Added tag jdk9-b15 for changeset 170f6d733d7a

! .hgtags

Changeset: 4a0965f52d4d
Author:    amurillo
Date:      2014-05-30 13:46 -0700
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/4a0965f52d4d

Merge

- test/runtime/6929067/T.java
- test/runtime/6929067/Test6929067.sh
- test/runtime/6929067/invoke.c
- test/runtime/InitialThreadOverflow/DoOverflow.java
- test/runtime/InitialThreadOverflow/invoke.c
- test/runtime/InitialThreadOverflow/testme.sh

Changeset: a98c4de4f66c
Author:    twisti
Date:      2014-06-02 10:48 -0700
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/a98c4de4f66c

Merge

! test/TEST.groups
- test/runtime/6929067/T.java
- test/runtime/6929067/Test6929067.sh
- test/runtime/6929067/invoke.c
- test/runtime/InitialThreadOverflow/DoOverflow.java
- test/runtime/InitialThreadOverflow/invoke.c
- test/runtime/InitialThreadOverflow/testme.sh

Changeset: a22a71c4bb2e
Author:    twisti
Date:      2014-06-02 13:53 -0700
URL:       http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/a22a71c4bb2e

Merge

- test/runtime/6929067/T.java
- test/runtime/6929067/Test6929067.sh
- test/runtime/6929067/invoke.c
- test/runtime/InitialThreadOverflow/DoOverflow.java
- test/runtime/InitialThreadOverflow/invoke.c
- test/runtime/InitialThreadOverflow/testme.sh



More information about the jdk9-hs-comp-changes mailing list