From albert.noll at oracle.com Wed Dec 18 07:22:23 2013 From: albert.noll at oracle.com (albert.noll at oracle.com) Date: Wed, 18 Dec 2013 15:22:23 +0000 Subject: hg: jdk9/hs-comp/hotspot: 8029091: Bug in calculation of code cache sweeping interval Message-ID: <20131218152238.827D362DA0@hg.openjdk.java.net> Changeset: d49557091d18 Author: anoll Date: 2013-12-17 08:31 +0100 URL: http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/d49557091d18 8029091: Bug in calculation of code cache sweeping interval Summary: Use signed data type so that no underflow can happen Reviewed-by: kvn, roland ! src/share/vm/runtime/sweeper.cpp From albert.noll at oracle.com Wed Dec 18 21:53:24 2013 From: albert.noll at oracle.com (albert.noll at oracle.com) Date: Thu, 19 Dec 2013 05:53:24 +0000 Subject: hg: jdk9/hs-comp/hotspot: 8026478: -XX:+VerifyAdapterSharing is broken Message-ID: <20131219055329.22AEE62DCA@hg.openjdk.java.net> Changeset: b8b5791fa045 Author: anoll Date: 2013-12-19 06:09 +0100 URL: http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/b8b5791fa045 8026478: -XX:+VerifyAdapterSharing is broken Summary: Fix by considering all checks in StubRoutines Reviewed-by: kvn, twisti ! src/share/vm/runtime/sharedRuntime.cpp ! src/share/vm/runtime/sharedRuntime.hpp From albert.noll at oracle.com Thu Dec 19 06:30:08 2013 From: albert.noll at oracle.com (albert.noll at oracle.com) Date: Thu, 19 Dec 2013 14:30:08 +0000 Subject: hg: jdk9/hs-comp/hotspot: 8025277: Add -XX: flag to print code cache sweeper statistics Message-ID: <20131219143014.82CE962DDD@hg.openjdk.java.net> Changeset: 49a31fd8b93d Author: anoll Date: 2013-12-19 14:08 +0100 URL: http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/49a31fd8b93d 8025277: Add -XX: flag to print code cache sweeper statistics Summary: New diagnostic flag prints statistics about the code cache sweeper Reviewed-by: kvn Contributed-by: tobi.hartmann at gmail.com ! src/share/vm/runtime/globals.hpp ! src/share/vm/runtime/java.cpp ! src/share/vm/runtime/sweeper.cpp ! src/share/vm/runtime/sweeper.hpp From albert.noll at oracle.com Fri Dec 20 02:55:19 2013 From: albert.noll at oracle.com (albert.noll at oracle.com) Date: Fri, 20 Dec 2013 10:55:19 +0000 Subject: hg: jdk9/hs-comp/hotspot: 2 new changesets Message-ID: <20131220105541.1234C62E3D@hg.openjdk.java.net> Changeset: d1af589627d4 Author: anoll Date: 2013-12-20 10:29 +0100 URL: http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/d1af589627d4 8030783: Provide regression test for 8026478: -XX:+VerifyAdapterSharing is broken Summary: Added simple regression test Reviewed-by: iveresov + test/compiler/debug/VerifyAdapterSharing.java Changeset: 655663109d87 Author: anoll Date: 2013-12-20 10:31 +0100 URL: http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/655663109d87 8028052: compiler/startup/SmallCodeCacheStartup.java fails there is no 'no space to run compiler' in the output Summary: Weaken test so that configurations that have no C1 compiler pass Reviewed-by: iveresov ! test/compiler/startup/SmallCodeCacheStartup.java From igor.veresov at oracle.com Thu Dec 26 22:12:31 2013 From: igor.veresov at oracle.com (igor.veresov at oracle.com) Date: Fri, 27 Dec 2013 06:12:31 +0000 Subject: hg: jdk9/hs-comp/hotspot: 8027388: JVM crashes with SIGSEGV (0xb) at pc=0x00000001077cbbf6 Message-ID: <20131227061239.4698062F4C@hg.openjdk.java.net> Changeset: 3e98456aab94 Author: iveresov Date: 2013-12-26 21:00 -0800 URL: http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/3e98456aab94 8027388: JVM crashes with SIGSEGV (0xb) at pc=0x00000001077cbbf6 Summary: Make object non-scalarizable if it has field with multiple bases one of which is null Reviewed-by: kvn, twisti ! src/share/vm/opto/escape.cpp From igor.ignatyev at oracle.com Tue Dec 31 08:21:18 2013 From: igor.ignatyev at oracle.com (igor.ignatyev at oracle.com) Date: Tue, 31 Dec 2013 16:21:18 +0000 Subject: hg: jdk9/hs-comp/hotspot: 8028587: New tests development for intrisics for basic operators - add, neg, inc, dec, sub, mul Message-ID: <20131231162126.6FD0C62FA5@hg.openjdk.java.net> Changeset: f9a4b59ae350 Author: iignatyev Date: 2013-12-31 19:26 +0400 URL: http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/f9a4b59ae350 8028587: New tests development for intrisics for basic operators - add, neg, inc, dec, sub, mul Reviewed-by: twisti Contributed-by: anton.ivanov at oracle.com + test/compiler/intrinsics/mathexact/sanity/AddExactIntTest.java + test/compiler/intrinsics/mathexact/sanity/AddExactLongTest.java + test/compiler/intrinsics/mathexact/sanity/DecrementExactIntTest.java + test/compiler/intrinsics/mathexact/sanity/DecrementExactLongTest.java + test/compiler/intrinsics/mathexact/sanity/IncrementExactIntTest.java + test/compiler/intrinsics/mathexact/sanity/IncrementExactLongTest.java + test/compiler/intrinsics/mathexact/sanity/IntrinsicBase.java + test/compiler/intrinsics/mathexact/sanity/MathIntrinsic.java + test/compiler/intrinsics/mathexact/sanity/MultiplyExactIntTest.java + test/compiler/intrinsics/mathexact/sanity/MultiplyExactLongTest.java + test/compiler/intrinsics/mathexact/sanity/NegateExactIntTest.java + test/compiler/intrinsics/mathexact/sanity/NegateExactLongTest.java + test/compiler/intrinsics/mathexact/sanity/SubtractExactIntTest.java + test/compiler/intrinsics/mathexact/sanity/SubtractExactLongTest.java + test/compiler/intrinsics/mathexact/sanity/Verifier.java ! test/compiler/tiered/NonTieredLevelsTest.java ! test/compiler/tiered/TieredLevelsTest.java ! test/compiler/whitebox/ClearMethodStateTest.java ! test/compiler/whitebox/CompilerWhiteBoxTest.java ! test/compiler/whitebox/DeoptimizeAllTest.java ! test/compiler/whitebox/DeoptimizeMethodTest.java ! test/compiler/whitebox/EnqueueMethodForCompilationTest.java ! test/compiler/whitebox/IsMethodCompilableTest.java ! test/compiler/whitebox/MakeMethodNotCompilableTest.java ! test/compiler/whitebox/SetDontInlineMethodTest.java ! test/compiler/whitebox/SetForceInlineMethodTest.java