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
Wed, 30 Apr 2014 10:36:25 +0200 8041265: jdk/bin/rmic -iiop failed on macosx-x86_64 with "Class sun.rmi.rmic.iiop.BatchEnvironmen not found"
erikj [Wed, 30 Apr 2014 10:36:25 +0200] rev 24080
8041265: jdk/bin/rmic -iiop failed on macosx-x86_64 with "Class sun.rmi.rmic.iiop.BatchEnvironmen not found" Reviewed-by: tbell, msheppar
Thu, 01 May 2014 12:49:15 -0700 Added tag jdk9-b11 for changeset da174d121fd3
katleman [Thu, 01 May 2014 12:49:15 -0700] rev 24079
Added tag jdk9-b11 for changeset da174d121fd3
Wed, 05 Jul 2017 19:38:36 +0200 Added tag jdk9-b11 for changeset 0809c9a4d36e
duke [Wed, 05 Jul 2017 19:38:36 +0200] rev 24078
Added tag jdk9-b11 for changeset 0809c9a4d36e
Wed, 05 Jul 2017 19:38:35 +0200 Merge jdk9-b11
duke [Wed, 05 Jul 2017 19:38:35 +0200] rev 24077
Merge
Wed, 05 Jul 2017 19:38:32 +0200 Merge
duke [Wed, 05 Jul 2017 19:38:32 +0200] rev 24076
Merge
Thu, 24 Apr 2014 16:04:44 -0700 Merge
lana [Thu, 24 Apr 2014 16:04:44 -0700] rev 24075
Merge
Thu, 24 Apr 2014 13:32:21 +0200 8041695: Update the NetBeans build script and metadata
jlahoda [Thu, 24 Apr 2014 13:32:21 +0200] rev 24074
8041695: Update the NetBeans build script and metadata Summary: Various improvements to the NetBeans project for langtools, adding formatting/import setting for langtools. Reviewed-by: ksrini
Wed, 23 Apr 2014 11:28:09 +0200 8039250: Test tools/javac/classfiles/InnerClasses/SyntheticClasses.java fails
jlahoda [Wed, 23 Apr 2014 11:28:09 +0200] rev 24073
8039250: Test tools/javac/classfiles/InnerClasses/SyntheticClasses.java fails Summary: The test should only analyze classfiles. Reviewed-by: vromero
Tue, 22 Apr 2014 17:57:40 -0700 8040903: Clean up use of BUG_ID in javadoc tests
jjg [Tue, 22 Apr 2014 17:57:40 -0700] rev 24072
8040903: Clean up use of BUG_ID in javadoc tests Reviewed-by: ksrini
Tue, 22 Apr 2014 17:41:11 -0700 8041253: Avoid redundant synonyms of NO_TEST
jjg [Tue, 22 Apr 2014 17:41:11 -0700] rev 24071
8041253: Avoid redundant synonyms of NO_TEST Reviewed-by: ksrini
Tue, 22 Apr 2014 15:59:33 -0700 8041521: JDK-8034245 breaks a bootcycle build
pgovereau [Tue, 22 Apr 2014 15:59:33 -0700] rev 24070
8041521: JDK-8034245 breaks a bootcycle build Reviewed-by: jjg
Tue, 22 Apr 2014 17:07:54 -0400 8034245: Refactor TopLevel tree node.
pgovereau [Tue, 22 Apr 2014 17:07:54 -0400] rev 24069
8034245: Refactor TopLevel tree node. Summary: Added JCPackageDecl to JCTree to store package-level information. Reviewed-by: jjg, jlahoda
Tue, 22 Apr 2014 19:52:15 +0100 8038023: Compiler crash ClassCastException
pgovereau [Tue, 22 Apr 2014 19:52:15 +0100] rev 24068
8038023: Compiler crash ClassCastException Summary: Add additional checks on results of ClassReader.readPool Reviewed-by: vromero
Tue, 22 Apr 2014 16:51:10 +0200 8035063: Option handling in sjavac needs to be rewritten
alundblad [Tue, 22 Apr 2014 16:51:10 +0200] rev 24067
8035063: Option handling in sjavac needs to be rewritten Summary: Option handling code rewritten. Exclusion / inclusion patterns changed from package to directories. Reviewed-by: jjg, jfranck
Mon, 21 Apr 2014 22:51:49 +0100 8029718: Should always use lambda body structure to disambiguate overload resolution
vromero [Mon, 21 Apr 2014 22:51:49 +0100] rev 24066
8029718: Should always use lambda body structure to disambiguate overload resolution Reviewed-by: dlsmith, jjg, jlahoda
Fri, 18 Apr 2014 17:25:43 -0700 8041150: Avoid silly use of static methods in JavadocTester
jjg [Fri, 18 Apr 2014 17:25:43 -0700] rev 24065
8041150: Avoid silly use of static methods in JavadocTester Reviewed-by: ksrini
Fri, 18 Apr 2014 17:23:36 -0700 8040908: javadoc test TestDocEncoding should use -notimestamp
jjg [Fri, 18 Apr 2014 17:23:36 -0700] rev 24064
8040908: javadoc test TestDocEncoding should use -notimestamp Reviewed-by: ksrini
Fri, 18 Apr 2014 17:50:30 +0100 8029002: javac should take multiple upper bounds into account in incorporation
vromero [Fri, 18 Apr 2014 17:50:30 +0100] rev 24063
8029002: javac should take multiple upper bounds into account in incorporation Reviewed-by: dlsmith, jjg
Fri, 18 Apr 2014 11:53:34 +0200 8038788: javac behaves incorrectly for annotations after method type parameters in some cases
jlahoda [Fri, 18 Apr 2014 11:53:34 +0200] rev 24062
8038788: javac behaves incorrectly for annotations after method type parameters in some cases Reviewed-by: jjg, emc
Thu, 24 Apr 2014 12:21:18 -0700 Added tag jdk9-b10 for changeset 16ec7c58cdea
katleman [Thu, 24 Apr 2014 12:21:18 -0700] rev 24061
Added tag jdk9-b10 for changeset 16ec7c58cdea
Wed, 05 Jul 2017 19:38:26 +0200 Merge
duke [Wed, 05 Jul 2017 19:38:26 +0200] rev 24060
Merge
Thu, 24 Apr 2014 16:04:23 -0700 Merge
lana [Thu, 24 Apr 2014 16:04:23 -0700] rev 24059
Merge
Tue, 22 Apr 2014 14:08:43 +0200 8040267: Remove forced -g from java compile lines in jaxp and jaxws
erikj [Tue, 22 Apr 2014 14:08:43 +0200] rev 24058
8040267: Remove forced -g from java compile lines in jaxp and jaxws Reviewed-by: mduigou, tbell, ihse
Thu, 24 Apr 2014 12:21:09 -0700 Added tag jdk9-b10 for changeset a77369b22afb
katleman [Thu, 24 Apr 2014 12:21:09 -0700] rev 24057
Added tag jdk9-b10 for changeset a77369b22afb
Wed, 05 Jul 2017 19:38:22 +0200 Merge
duke [Wed, 05 Jul 2017 19:38:22 +0200] rev 24056
Merge
Thu, 24 Apr 2014 16:03:35 -0700 Merge
lana [Thu, 24 Apr 2014 16:03:35 -0700] rev 24055
Merge
Tue, 22 Apr 2014 14:08:26 +0200 8040267: Remove forced -g from java compile lines in jaxp and jaxws
erikj [Tue, 22 Apr 2014 14:08:26 +0200] rev 24054
8040267: Remove forced -g from java compile lines in jaxp and jaxws Reviewed-by: mduigou, tbell, ihse
Thu, 24 Apr 2014 12:21:08 -0700 Added tag jdk9-b10 for changeset 933717886959
katleman [Thu, 24 Apr 2014 12:21:08 -0700] rev 24053
Added tag jdk9-b10 for changeset 933717886959
Wed, 05 Jul 2017 19:38:18 +0200 Merge
duke [Wed, 05 Jul 2017 19:38:18 +0200] rev 24052
Merge
Thu, 24 Apr 2014 12:21:20 -0700 Added tag jdk9-b10 for changeset 8e30fd90c1db
katleman [Thu, 24 Apr 2014 12:21:20 -0700] rev 24051
Added tag jdk9-b10 for changeset 8e30fd90c1db
Wed, 05 Jul 2017 19:38:15 +0200 Merge
duke [Wed, 05 Jul 2017 19:38:15 +0200] rev 24050
Merge
Thu, 24 Apr 2014 12:20:56 -0700 Added tag jdk9-b10 for changeset 1348715ce50c
katleman [Thu, 24 Apr 2014 12:20:56 -0700] rev 24049
Added tag jdk9-b10 for changeset 1348715ce50c
Wed, 05 Jul 2017 19:38:11 +0200 Merge
duke [Wed, 05 Jul 2017 19:38:11 +0200] rev 24048
Merge
Thu, 24 Apr 2014 16:03:00 -0700 Merge
lana [Thu, 24 Apr 2014 16:03:00 -0700] rev 24047
Merge
Wed, 23 Apr 2014 17:29:51 +0100 8041397: Lint regression in java.net.SocketOption
michaelm [Wed, 23 Apr 2014 17:29:51 +0100] rev 24046
8041397: Lint regression in java.net.SocketOption Reviewed-by: rriggs
Wed, 23 Apr 2014 13:19:21 +0100 8025710: Proxied HTTPS connections reused by HttpClient can send CONNECT to the server
chegar [Wed, 23 Apr 2014 13:19:21 +0100] rev 24045
8025710: Proxied HTTPS connections reused by HttpClient can send CONNECT to the server Reviewed-by: chegar Contributed-by: Steven Lawrance <slawrance@salesforce.com>, Andreas Rieber <rieberandreas@gmail.com>
Wed, 23 Apr 2014 12:26:13 +0100 8041563: More ProblemList.txt updates (4/2014)
chegar [Wed, 23 Apr 2014 12:26:13 +0100] rev 24044
8041563: More ProblemList.txt updates (4/2014) Reviewed-by: chegar Contributed-by: Michael Cui <michael.cui@oracle.com>
Tue, 22 Apr 2014 15:16:37 -0700 8035807: Convert use of sun.misc.BASE64Encoder/Decoder with java.util.Base64
mchung [Tue, 22 Apr 2014 15:16:37 -0700] rev 24043
8035807: Convert use of sun.misc.BASE64Encoder/Decoder with java.util.Base64 Reviewed-by: alanb, vinnie, sherman, msheppar
Tue, 22 Apr 2014 16:21:43 +0200 8040747: Improve performance of IP address parsing
mduigou [Tue, 22 Apr 2014 16:21:43 +0200] rev 24042
8040747: Improve performance of IP address parsing Reviewed-by: mduigou, chegar Contributed-by: claes.redestad@oracle.com, bernd-2014@eckenfels.net
Tue, 22 Apr 2014 10:38:20 -0700 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou [Tue, 22 Apr 2014 10:38:20 -0700] rev 24041
8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy Reviewed-by: mduigou Contributed-by: bernd-2014@eckenfels.net, claes.redestad@oracle.com
Tue, 22 Apr 2014 16:45:10 +0200 8037085: The sjavac exclude option should accept valid directory identifiers
alundblad [Tue, 22 Apr 2014 16:45:10 +0200] rev 24040
8037085: The sjavac exclude option should accept valid directory identifiers Summary: Option handling code rewritten. Exclusion / inclusion patterns changed from package to directories. Reviewed-by: jfranck, erikj, ihse
Tue, 22 Apr 2014 09:09:55 -0400 8041485: Update TEST.groups for jdk/nio/zipfs
lancea [Tue, 22 Apr 2014 09:09:55 -0400] rev 24039
8041485: Update TEST.groups for jdk/nio/zipfs Reviewed-by: chegar
Tue, 22 Apr 2014 08:57:01 -0400 8041331: Cleanup files for jtreg and windows
lancea [Tue, 22 Apr 2014 08:57:01 -0400] rev 24038
8041331: Cleanup files for jtreg and windows Reviewed-by: rriggs, smarks, chegar
Mon, 21 Apr 2014 13:16:32 -0700 8039816: Some tests depend on internal API sun.security.action.GetPropertyAction
shurailine [Mon, 21 Apr 2014 13:16:32 -0700] rev 24037
8039816: Some tests depend on internal API sun.security.action.GetPropertyAction Summary: Replace sun.security.action.GetPropertyAction usages with lambda expressions creating java.security.PrivilegedAction. Reviewed-by: alanb, mchung, chegar Contributed-by: Alexandre Iline <alexandre.iline@oracle.com>
Mon, 21 Apr 2014 13:12:22 -0700 8039438: Some tests depend on internal API sun.misc.IOUtils
shurailine [Mon, 21 Apr 2014 13:12:22 -0700] rev 24036
8039438: Some tests depend on internal API sun.misc.IOUtils Summary: Remove dependency on sun.misc.IOUtils.readFully(InputStream, int, boolean) Reviewed-by: alanb, mchung, chegar Contributed-by: Alexandre Iline <alexandre.iline@oracle.com>
Mon, 21 Apr 2014 13:51:08 -0400 8033584: Remove java/lang/reflect/Method/invoke/TestPrivateInterfaceMethodReflect.java from exclude list.
lfoltan [Mon, 21 Apr 2014 13:51:08 -0400] rev 24035
8033584: Remove java/lang/reflect/Method/invoke/TestPrivateInterfaceMethodReflect.java from exclude list. Summary: Remove java/lang/reflect/Method/invoke/TestPrivateInterfaceMethodReflect.java from ProblemList.txt, issue fixed in JDK 8. Reviewed-by: gtriantafill, hseigel, mchung
Mon, 21 Apr 2014 10:26:03 +0800 8038837: Add support to jarsigner for specifying timestamp hash algorithm
weijun [Mon, 21 Apr 2014 10:26:03 +0800] rev 24034
8038837: Add support to jarsigner for specifying timestamp hash algorithm Reviewed-by: vinnie
Mon, 21 Apr 2014 10:25:40 +0800 8039358: com.sun.jarsigner.ContentSignerParameters.getTSAPolicyID() should be a default method
weijun [Mon, 21 Apr 2014 10:25:40 +0800] rev 24033
8039358: com.sun.jarsigner.ContentSignerParameters.getTSAPolicyID() should be a default method Reviewed-by: vinnie
Sat, 12 Apr 2014 14:54:44 +0100 8040058: IsoFields.WEEK_BASED_YEAR adjustInto incorrect and WeekFields.weekOfWeekBasedYear().range incorrect
scolebourne [Sat, 12 Apr 2014 14:54:44 +0100] rev 24032
8040058: IsoFields.WEEK_BASED_YEAR adjustInto incorrect and WeekFields.weekOfWeekBasedYear().range incorrect Reviewed-by: lancea, rriggs
Fri, 18 Apr 2014 17:37:13 -0400 8040760: Addition of new java.sql tests
lancea [Fri, 18 Apr 2014 17:37:13 -0400] rev 24031
8040760: Addition of new java.sql tests Reviewed-by: rriggs
Fri, 18 Apr 2014 14:03:46 -0700 8027595: Enable BigInteger overflow tests in JTREG
bpb [Fri, 18 Apr 2014 14:03:46 -0700] rev 24030
8027595: Enable BigInteger overflow tests in JTREG Summary: Remove space in @test tags, remove OOME catches, add @run tag for StringConstructorOverflow. Reviewed-by: mduigou
Fri, 18 Apr 2014 15:37:22 -0400 8038823: Missing @Test annotation and copyright in java.time tests
rriggs [Fri, 18 Apr 2014 15:37:22 -0400] rev 24029
8038823: Missing @Test annotation and copyright in java.time tests Reviewed-by: lancea
Fri, 18 Apr 2014 18:46:50 +0400 8038982: java/lang/ref/EarlyTimeout.java failed again
igerasim [Fri, 18 Apr 2014 18:46:50 +0400] rev 24028
8038982: java/lang/ref/EarlyTimeout.java failed again Reviewed-by: mchung
Thu, 24 Apr 2014 12:21:10 -0700 Added tag jdk9-b10 for changeset c354cfc60e8e
katleman [Thu, 24 Apr 2014 12:21:10 -0700] rev 24027
Added tag jdk9-b10 for changeset c354cfc60e8e
Wed, 05 Jul 2017 19:38:06 +0200 Merge
duke [Wed, 05 Jul 2017 19:38:06 +0200] rev 24026
Merge
Thu, 24 Apr 2014 16:03:50 -0700 Merge
lana [Thu, 24 Apr 2014 16:03:50 -0700] rev 24025
Merge
Fri, 18 Apr 2014 10:30:13 -0700 Merge
amurillo [Fri, 18 Apr 2014 10:30:13 -0700] rev 24024
Merge
Thu, 17 Apr 2014 13:50:26 -0400 Merge
bharadwaj [Thu, 17 Apr 2014 13:50:26 -0400] rev 24023
Merge
Thu, 17 Apr 2014 18:54:09 +0400 8039260: c.o.j.t.ProcessTools::createJavaProcessBuilder(boolean, String... ) must also take TestJavaOptions
iignatyev [Thu, 17 Apr 2014 18:54:09 +0400] rev 24022
8039260: c.o.j.t.ProcessTools::createJavaProcessBuilder(boolean, String... ) must also take TestJavaOptions Reviewed-by: kvn, iignatyev Contributed-by: lev.priima@oracle.com
Wed, 16 Apr 2014 14:49:03 -0700 8038048: assert(null_obj->escape_state() == PointsToNode::NoEscape,etc) runThese -full
kvn [Wed, 16 Apr 2014 14:49:03 -0700] rev 24021
8038048: assert(null_obj->escape_state() == PointsToNode::NoEscape,etc) runThese -full Summary: use correct set_escape_state() method. Reviewed-by: kvn, iignatyev Contributed-by: Richard Reingruber <richard.reingruber@sap.com>
Tue, 15 Apr 2014 14:34:48 -0700 8039050: Crash in C2 compiler at Node::rematerialize
kvn [Tue, 15 Apr 2014 14:34:48 -0700] rev 24020
8039050: Crash in C2 compiler at Node::rematerialize Summary: Added missing calls to record_for_igvn() in loop opts. Added verification of def-use domination. Reviewed-by: iveresov
Tue, 15 Apr 2014 02:27:34 -0700 Merge
roland [Tue, 15 Apr 2014 02:27:34 -0700] rev 24019
Merge
Tue, 01 Apr 2014 09:36:49 +0200 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland [Tue, 01 Apr 2014 09:36:49 +0200] rev 24018
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9 Summary: make compiled code bang the stack by the worst case size of the interpreter frame at deoptimization points. Reviewed-by: twisti, kvn
Tue, 15 Apr 2014 12:21:24 +0400 8040001: CLI test on RTMRetryCount option was missed from fix for 8039496
iignatyev [Tue, 15 Apr 2014 12:21:24 +0400] rev 24017
8040001: CLI test on RTMRetryCount option was missed from fix for 8039496 Reviewed-by: kvn, iignatyev Contributed-by: filipp.zhinkin@oracle.com
Mon, 14 Apr 2014 09:04:36 +0000 Merge
anoll [Mon, 14 Apr 2014 09:04:36 +0000] rev 24016
Merge
Mon, 14 Apr 2014 10:57:07 +0200 8039425: Code cleanup: PhaseIterGVN::optimize()
anoll [Mon, 14 Apr 2014 10:57:07 +0200] rev 24015
8039425: Code cleanup: PhaseIterGVN::optimize() Summary: This code cleanup aims at improving code readability. Reviewed-by: kvn, roland
Sun, 13 Apr 2014 23:39:22 -0700 Merge
anoll [Sun, 13 Apr 2014 23:39:22 -0700] rev 24014
Merge
Mon, 14 Apr 2014 08:24:28 +0200 8029436: CICompilerCount is not updated when the number of compiler threads is adjusted to the number of CPUs
anoll [Mon, 14 Apr 2014 08:24:28 +0200] rev 24013
8029436: CICompilerCount is not updated when the number of compiler threads is adjusted to the number of CPUs Summary: CICompilerCount is updated in AdvancedThresholdPolicy::initialize, SimpleThresholdPolicy::initialize and NonTieredCompPolicy::initialize. A warning is printed if the usersets both, CICompilerCount and CICompilerCountPerCPU. Reviewed-by: kvn, twisti Contributed-by: Tobias Hartmann <tobias.hartmann@oracle.com>
Fri, 11 Apr 2014 15:08:40 -0400 Merge
bharadwaj [Fri, 11 Apr 2014 15:08:40 -0400] rev 24012
Merge
Fri, 11 Apr 2014 18:46:35 +0400 8038418: New tests development for type profiling and speculation
iignatyev [Fri, 11 Apr 2014 18:46:35 +0400] rev 24011
8038418: New tests development for type profiling and speculation Reviewed-by: roland, iignatyev Contributed-by: Pavel Punegov <pavel.punegov@oracle.com>
Fri, 11 Apr 2014 13:52:51 +0200 8039498: Add iterators to GrowableArray
anoll [Fri, 11 Apr 2014 13:52:51 +0200] rev 24010
8039498: Add iterators to GrowableArray Summary: To simplify the management of multiple code heaps in the code cache (see JDK-8015774), STL-style iterator capability is added to the GrowableArray. Further, custom iterators allow to only iterate over elements that satisfy a given predicate. Reviewed-by: kvn, twisti Contributed-by: Tobias Hartmann <tobias.hartmann@oracle.com>
Fri, 11 Apr 2014 11:33:00 +0200 8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll [Fri, 11 Apr 2014 11:33:00 +0200] rev 24009
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize Summary: Eagerly remove all castPP nodes in PhaseCCP to get type convergence in memnode. Reviewed-by: kvn, roland
Thu, 10 Apr 2014 23:15:13 -0700 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov [Thu, 10 Apr 2014 23:15:13 -0700] rev 24008
8038297: Avoid placing CTI immediately following cbcond instruction on T4 Summary: Insert a nop between cbcond and CTI Reviewed-by: kvn, twisti
Fri, 11 Apr 2014 00:35:28 +0400 8039496: Add sanity tests on RTM-related command line options
iignatyev [Fri, 11 Apr 2014 00:35:28 +0400] rev 24007
8039496: Add sanity tests on RTM-related command line options Reviewed-by: kvn, iignatyev Contributed-by: filipp.zhinkin@oracle.com
Fri, 11 Apr 2014 00:35:23 +0400 8037860: Add tests to cover Intel RTM instructions support
iignatyev [Fri, 11 Apr 2014 00:35:23 +0400] rev 24006
8037860: Add tests to cover Intel RTM instructions support Reviewed-by: kvn, iignatyev Contributed-by: filipp.zhinkin@oracle.com
Fri, 11 Apr 2014 00:35:11 +0400 8039499: Add all common classes used by tests on RTM support to testlibrary
iignatyev [Fri, 11 Apr 2014 00:35:11 +0400] rev 24005
8039499: Add all common classes used by tests on RTM support to testlibrary Reviewed-by: kvn, iignatyev Contributed-by: filipp.zhinkin@oracle.com
Fri, 11 Apr 2014 00:34:56 +0400 8039497: Testlibrary should be updated to provide information about all VM types as well as access to Unsafe
iignatyev [Fri, 11 Apr 2014 00:34:56 +0400] rev 24004
8039497: Testlibrary should be updated to provide information about all VM types as well as access to Unsafe Reviewed-by: kvn, iignatyev Contributed-by: filipp.zhinkin@oracle.com
Fri, 11 Apr 2014 00:34:51 +0400 8038953: Add sanity tests for BMI1 and LZCNT instructions
iignatyev [Fri, 11 Apr 2014 00:34:51 +0400] rev 24003
8038953: Add sanity tests for BMI1 and LZCNT instructions Reviewed-by: kvn, iignatyev Contributed-by: anton.ivanov@oracle.com
Thu, 10 Apr 2014 11:38:12 +0200 8005079: fix LogCompilation for incremental inlining
roland [Thu, 10 Apr 2014 11:38:12 +0200] rev 24002
8005079: fix LogCompilation for incremental inlining Summary: report late inlining as part of the rest of the inlining output Reviewed-by: twisti, kvn
Thu, 10 Apr 2014 09:26:24 +0200 8036898: assert(t != NULL) failed: must set before get
anoll [Thu, 10 Apr 2014 09:26:24 +0200] rev 24001
8036898: assert(t != NULL) failed: must set before get Summary: Ignore nodes without a type when checking for speculative types in Compile::remove_speculative_types(...). Reviewed-by: kvn, roland Contributed-by: Tobias Hartmann <tobias.hartmann@oracle.com>
Tue, 15 Apr 2014 19:03:51 +0200 8035173: [TESTBUG] runtime/threads/CancellableThreadTest fails with OOM on windows-i586
ctornqvi [Tue, 15 Apr 2014 19:03:51 +0200] rev 24000
8035173: [TESTBUG] runtime/threads/CancellableThreadTest fails with OOM on windows-i586 Summary: Test ported to jtreg, thread pairs decreased from 1024 to 128 to avoid OOM on 32 bit Windows Reviewed-by: sla, dsimms
Mon, 14 Apr 2014 14:27:45 -0400 8033150: invokestatic: IncompatibleClassChangeError trying to invoke static method from a parent in presence of conflicting defaults.
lfoltan [Mon, 14 Apr 2014 14:27:45 -0400] rev 23999
8033150: invokestatic: IncompatibleClassChangeError trying to invoke static method from a parent in presence of conflicting defaults. Summary: A static method should be preferred during method resolution over an overpass, search the current class as well as its superclasses. Reviewed-by: acorn, coleenp, kamg
Mon, 14 Apr 2014 10:13:03 -0400 8038076: constraint on multianewarray instruction is not checked since class version 50.
lfoltan [Mon, 14 Apr 2014 10:13:03 -0400] rev 23998
8038076: constraint on multianewarray instruction is not checked since class version 50. Summary: No VerifiyError generated if multianewarray bytecode's array type descriptor was 1 dimension smaller than dimensions specified. Reviewed-by: hseigel, ctornqvi, coleenp, kamg
Mon, 14 Apr 2014 11:23:06 +0200 8039947: Dtrace return probe name for jni_SetStaticBooleanField named incorrectly
dsimms [Mon, 14 Apr 2014 11:23:06 +0200] rev 23997
8039947: Dtrace return probe name for jni_SetStaticBooleanField named incorrectly Reviewed-by: sla, dholmes, gtriantafill
Mon, 14 Apr 2014 10:43:04 +0200 Merge
allwin [Mon, 14 Apr 2014 10:43:04 +0200] rev 23996
Merge
Fri, 11 Apr 2014 20:02:37 +0000 8039904: dtrace/hotspot/Monitors/Monitors001 fails with "assert(s > 0) failed: Bad size calculated"
coleenp [Fri, 11 Apr 2014 20:02:37 +0000] rev 23995
8039904: dtrace/hotspot/Monitors/Monitors001 fails with "assert(s > 0) failed: Bad size calculated" Summary: Dtrace monitoring uses size before mirror size is set. Reviewed-by: kamg, hseigel
Thu, 10 Apr 2014 21:36:56 -0400 8039891: Remove ppcsflt builds from JPRT
dholmes [Thu, 10 Apr 2014 21:36:56 -0400] rev 23994
8039891: Remove ppcsflt builds from JPRT Reviewed-by: sla, hseigel, coleenp
Wed, 09 Apr 2014 15:01:24 +0000 Merge
dsamersoff [Wed, 09 Apr 2014 15:01:24 +0000] rev 23993
Merge
Wed, 09 Apr 2014 07:08:08 -0700 8029139: [TESTBUG] runtime/InitialThreadOverflow/testme.sh fails with exit code 127
dsamersoff [Wed, 09 Apr 2014 07:08:08 -0700] rev 23992
8029139: [TESTBUG] runtime/InitialThreadOverflow/testme.sh fails with exit code 127 Summary: The test launcher compiles against TESTJAVA but LD_LIBRARY_PATH set to COMPILE java. Reviewed-by: sla, sspitsyn
Wed, 09 Apr 2014 06:09:43 -0700 8037279: runtime/6929067/Test6929067.sh crashes on 32bit linux
dsamersoff [Wed, 09 Apr 2014 06:09:43 -0700] rev 23991
8037279: runtime/6929067/Test6929067.sh crashes on 32bit linux Summary: The test compile launcher with TESTJAVA but attempt to load vm from COMPILEJAVA Reviewed-by: sla, sspitsyn
Thu, 24 Apr 2014 12:21:02 -0700 Added tag jdk9-b10 for changeset 41f447bfbbd7
katleman [Thu, 24 Apr 2014 12:21:02 -0700] rev 23990
Added tag jdk9-b10 for changeset 41f447bfbbd7
Fri, 11 Apr 2014 10:31:20 -0700 8041151: More concurrent hgforest
mduigou [Fri, 11 Apr 2014 10:31:20 -0700] rev 23989
8041151: More concurrent hgforest Reviewed-by: chegar, erikj, sla
Thu, 24 Apr 2014 16:02:11 -0700 Merge
lana [Thu, 24 Apr 2014 16:02:11 -0700] rev 23988
Merge
Thu, 24 Apr 2014 10:21:58 +0200 8041593: Update README-builds.html to refer to jdk9
erikj [Thu, 24 Apr 2014 10:21:58 +0200] rev 23987
8041593: Update README-builds.html to refer to jdk9 Reviewed-by: tbell, iris
Wed, 23 Apr 2014 14:23:50 +0200 8041487: Fix proper dependencies for correct incremental build of javadocs
erikj [Wed, 23 Apr 2014 14:23:50 +0200] rev 23986
8041487: Fix proper dependencies for correct incremental build of javadocs Reviewed-by: tbell
Tue, 22 Apr 2014 12:56:41 -0700 8007327: Emit MEMORY_SIZE into spec.gmk
mduigou [Tue, 22 Apr 2014 12:56:41 -0700] rev 23985
8007327: Emit MEMORY_SIZE into spec.gmk Reviewed-by: erikj
Tue, 22 Apr 2014 12:55:56 -0700 8041267: Add filtering capability to CacheFind
mduigou [Tue, 22 Apr 2014 12:55:56 -0700] rev 23984
8041267: Add filtering capability to CacheFind Reviewed-by: erikj
Tue, 22 Apr 2014 16:39:46 +0200 8037085: The sjavac exclude option should accept valid directory identifiers
alundblad [Tue, 22 Apr 2014 16:39:46 +0200] rev 23983
8037085: The sjavac exclude option should accept valid directory identifiers Summary: Option handling code rewritten. Exclusion / inclusion patterns changed from package to directories. Reviewed-by: jfranck, erikj, ihse
Tue, 22 Apr 2014 14:14:35 +0200 8030794: Update configure to require jdk8 as boot
erikj [Tue, 22 Apr 2014 14:14:35 +0200] rev 23982
8030794: Update configure to require jdk8 as boot Reviewed-by: chegar, tbell
Mon, 21 Apr 2014 20:17:00 -0400 8041141: JDK9 emb build failure on PPC platform
dholmes [Mon, 21 Apr 2014 20:17:00 -0400] rev 23981
8041141: JDK9 emb build failure on PPC platform Reviewed-by: tbell
Thu, 24 Apr 2014 12:20:54 -0700 Added tag jdk9-b10 for changeset 94afcb4be25e
katleman [Thu, 24 Apr 2014 12:20:54 -0700] rev 23980
Added tag jdk9-b10 for changeset 94afcb4be25e
Wed, 05 Jul 2017 19:37:47 +0200 Added tag jdk9-b10 for changeset 8c0bdeecd7c0
duke [Wed, 05 Jul 2017 19:37:47 +0200] rev 23979
Added tag jdk9-b10 for changeset 8c0bdeecd7c0
Wed, 05 Jul 2017 19:37:47 +0200 Merge jdk9-b10
duke [Wed, 05 Jul 2017 19:37:47 +0200] rev 23978
Merge
Wed, 05 Jul 2017 19:37:43 +0200 Merge
duke [Wed, 05 Jul 2017 19:37:43 +0200] rev 23977
Merge
Thu, 17 Apr 2014 15:23:23 -0700 Merge
lana [Thu, 17 Apr 2014 15:23:23 -0700] rev 23976
Merge
Thu, 17 Apr 2014 12:17:02 -0400 8040319: Clean up type annotation exception index generating code in Code.java
emc [Thu, 17 Apr 2014 12:17:02 -0400] rev 23975
8040319: Clean up type annotation exception index generating code in Code.java Summary: Remove bad code from exception index generation for type annotations and make type_index final Reviewed-by: jjg, vromero
Wed, 16 Apr 2014 19:21:59 -0700 8038976: javadoc requires a trailing / for links where java 7's javadoc didn't
ksrini [Wed, 16 Apr 2014 19:21:59 -0700] rev 23974
8038976: javadoc requires a trailing / for links where java 7's javadoc didn't Reviewed-by: jjg
Wed, 16 Apr 2014 18:15:48 -0700 8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set
ksrini [Wed, 16 Apr 2014 18:15:48 -0700] rev 23973
8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set Reviewed-by: jjg
Wed, 16 Apr 2014 18:36:43 -0700 8039251: Test tools/javadoc/6964914/TestStdDoclet.java fails
ksrini [Wed, 16 Apr 2014 18:36:43 -0700] rev 23972
8039251: Test tools/javadoc/6964914/TestStdDoclet.java fails Reviewed-by: jjg
Wed, 16 Apr 2014 16:17:09 -0700 8031649: Clean up javadoc tests
jjg [Wed, 16 Apr 2014 16:17:09 -0700] rev 23971
8031649: Clean up javadoc tests Reviewed-by: jjg Contributed-by: neil.toda@oracle.com
Tue, 15 Apr 2014 15:55:24 -0700 8038420: Lambda returning post-increment generates wrong code
rfield [Tue, 15 Apr 2014 15:55:24 -0700] rev 23970
8038420: Lambda returning post-increment generates wrong code Reviewed-by: vromero, jlahoda
Tue, 15 Apr 2014 15:52:52 -0700 8037935: Javac -- final local String var referenced in binary/unary op in lambda produces code that does not verify
rfield [Tue, 15 Apr 2014 15:52:52 -0700] rev 23969
8037935: Javac -- final local String var referenced in binary/unary op in lambda produces code that does not verify Summary: Remove over-zealous Attr optimization breaking lambdas Reviewed-by: jjg, vromero
Mon, 13 Jan 2014 14:50:51 -0800 8026736: Enhance Javadoc pages
bpatel [Mon, 13 Jan 2014 14:50:51 -0800] rev 23968
8026736: Enhance Javadoc pages Reviewed-by: jjg
Tue, 15 Apr 2014 18:58:47 +0200 8039079: Test tools/javac/processing/environment/round/TestElementsAnnotatedWith.java fails
jlahoda [Tue, 15 Apr 2014 18:58:47 +0200] rev 23967
8039079: Test tools/javac/processing/environment/round/TestElementsAnnotatedWith.java fails Summary: Ensuring the test passes in both samevm and othervm modes. Reviewed-by: darcy
Mon, 14 Apr 2014 18:48:29 -0400 8040181: Silent failure in Code.findExceptionIndex
emc [Mon, 14 Apr 2014 18:48:29 -0400] rev 23966
8040181: Silent failure in Code.findExceptionIndex Summary: Remove silent failure when exception index has not been set properly. Reviewed-by: jjg
Thu, 17 Apr 2014 10:14:07 -0700 Added tag jdk9-b09 for changeset 16bad6bc066b
katleman [Thu, 17 Apr 2014 10:14:07 -0700] rev 23965
Added tag jdk9-b09 for changeset 16bad6bc066b
Wed, 05 Jul 2017 19:37:38 +0200 Merge
duke [Wed, 05 Jul 2017 19:37:38 +0200] rev 23964
Merge
Thu, 17 Apr 2014 15:23:41 -0700 Merge
lana [Thu, 17 Apr 2014 15:23:41 -0700] rev 23963
Merge
Fri, 21 Feb 2014 17:37:39 +0100 8026801: Enhance endpoint addressing
mkos [Fri, 21 Feb 2014 17:37:39 +0100] rev 23962
8026801: Enhance endpoint addressing Summary: Caching data initialized via TCCL in static context; fix also reviewed by Iaroslav Savytskyi, Alexander Fomin Reviewed-by: ahgross, mgrebac, skoivu
Fri, 21 Feb 2014 17:36:15 +0100 8026188: Enhance envelope factory
mkos [Fri, 21 Feb 2014 17:36:15 +0100] rev 23961
8026188: Enhance envelope factory Summary: Avoiding caching data initialized via TCCL in static context; fix also reviewed by Alexander Fomin Reviewed-by: ahgross, mgrebac, skoivu
Fri, 21 Feb 2014 17:30:18 +0100 8025030: Enhance stream handling
mkos [Fri, 21 Feb 2014 17:30:18 +0100] rev 23960
8025030: Enhance stream handling Summary: Avoiding caching data initialized via TCCL in static context; fix also reviewed by Iaroslav Savytskyi, Alexander Fomin Reviewed-by: ahgross, mgrebac, skoivu
Sun, 15 Dec 2013 23:35:45 +0100 8025152: Enhance activation set up
mkos [Sun, 15 Dec 2013 23:35:45 +0100] rev 23959
8025152: Enhance activation set up 8028388: 9 jaxws tests failed in nightly build with java.lang.ClassCastException Summary: fix also reviewed by Bill Shannon, Alexander Fomin Reviewed-by: dfuchs, hawtin, mgrebac Contributed-by: bill.shannon@oracle.com
Thu, 17 Apr 2014 10:13:52 -0700 Added tag jdk9-b09 for changeset 6b3ffbf07446
katleman [Thu, 17 Apr 2014 10:13:52 -0700] rev 23958
Added tag jdk9-b09 for changeset 6b3ffbf07446
Wed, 05 Jul 2017 19:37:33 +0200 Merge
duke [Wed, 05 Jul 2017 19:37:33 +0200] rev 23957
Merge
Thu, 17 Apr 2014 15:24:19 -0700 Merge
lana [Thu, 17 Apr 2014 15:24:19 -0700] rev 23956
Merge
Tue, 15 Apr 2014 10:36:23 -0700 8037259: xerces update: xpointer update
dli [Tue, 15 Apr 2014 10:36:23 -0700] rev 23955
8037259: xerces update: xpointer update Reviewed-by: lancea Contributed-by: david.x.li@oracle.com
Wed, 08 Jan 2014 10:49:54 -0800 8029282: Enhance CharInfo set up
joehw [Wed, 08 Jan 2014 10:49:54 -0800] rev 23954
8029282: Enhance CharInfo set up Reviewed-by: alanb, lancea, dfuchs, skoivu
Thu, 17 Apr 2014 10:13:49 -0700 Added tag jdk9-b09 for changeset 54fd9e33ddec
katleman [Thu, 17 Apr 2014 10:13:49 -0700] rev 23953
Added tag jdk9-b09 for changeset 54fd9e33ddec
Wed, 05 Jul 2017 19:37:28 +0200 Merge
duke [Wed, 05 Jul 2017 19:37:28 +0200] rev 23952
Merge
Thu, 17 Apr 2014 15:22:07 -0700 Merge
lana [Thu, 17 Apr 2014 15:22:07 -0700] rev 23951
Merge
Fri, 21 Feb 2014 10:31:40 +0530 8034962: Dynalink to handle superclasses more carefully
sundar [Fri, 21 Feb 2014 10:31:40 +0530] rev 23950
8034962: Dynalink to handle superclasses more carefully Reviewed-by: ahgross, attila, jlaskey
Fri, 21 Feb 2014 10:01:59 +0530 8033745: Reflect upon Nashorn reflection
sundar [Fri, 21 Feb 2014 10:01:59 +0530] rev 23949
8033745: Reflect upon Nashorn reflection Reviewed-by: ahgross, attila, jlaskey
Mon, 14 Apr 2014 17:45:05 +0200 8030200: Wrong result for Number.prototype.toString() for certain radix/inputs
hannesw [Mon, 14 Apr 2014 17:45:05 +0200] rev 23948
8030200: Wrong result for Number.prototype.toString() for certain radix/inputs Reviewed-by: sundar, jlaskey, lagergren
Mon, 14 Apr 2014 17:43:38 +0200 8030199: Nashorn: Uint8ClampedArray - Incorrect ToUint8Clamp implementation
hannesw [Mon, 14 Apr 2014 17:43:38 +0200] rev 23947
8030199: Nashorn: Uint8ClampedArray - Incorrect ToUint8Clamp implementation Reviewed-by: sundar, jlaskey, lagergren
Thu, 17 Apr 2014 10:14:08 -0700 Added tag jdk9-b09 for changeset 9c965577fb13
katleman [Thu, 17 Apr 2014 10:14:08 -0700] rev 23946
Added tag jdk9-b09 for changeset 9c965577fb13
Wed, 05 Jul 2017 19:37:24 +0200 Merge
duke [Wed, 05 Jul 2017 19:37:24 +0200] rev 23945
Merge
Thu, 17 Apr 2014 15:19:56 -0700 Merge
lana [Thu, 17 Apr 2014 15:19:56 -0700] rev 23944
Merge
Wed, 22 Jan 2014 12:33:12 +0000 8025005: Enhance CORBA initializations
msheppar [Wed, 22 Jan 2014 12:33:12 +0000] rev 23943
8025005: Enhance CORBA initializations Summary: restructure ORB.init() processing flow. Reviewed-by: alanb, coffeys, skoivu
Thu, 17 Apr 2014 10:13:36 -0700 Added tag jdk9-b09 for changeset 667dccd79b65
katleman [Thu, 17 Apr 2014 10:13:36 -0700] rev 23942
Added tag jdk9-b09 for changeset 667dccd79b65
Wed, 05 Jul 2017 19:37:19 +0200 Merge
duke [Wed, 05 Jul 2017 19:37:19 +0200] rev 23941
Merge
Thu, 17 Apr 2014 15:20:35 -0700 Merge
lana [Thu, 17 Apr 2014 15:20:35 -0700] rev 23940
Merge
Thu, 17 Apr 2014 18:20:31 +0200 8039080: "jinfo server_id@host" fails with "Invalid process identifier"
jbachorik [Thu, 17 Apr 2014 18:20:31 +0200] rev 23939
8039080: "jinfo server_id@host" fails with "Invalid process identifier" Reviewed-by: sla, sjiang, dsamersoff
Thu, 17 Apr 2014 15:44:32 +0100 8040809: '}' left in the spec for j.u.Random.doubles(..)
michaelm [Thu, 17 Apr 2014 15:44:32 +0100] rev 23938
8040809: '}' left in the spec for j.u.Random.doubles(..) Reviewed-by: rriggs
Thu, 17 Apr 2014 13:00:45 +0900 8035726: A sentence is truncated in the API doc for j.u.Locale.LanguageRange.parse(String, Map).
peytoia [Thu, 17 Apr 2014 13:00:45 +0900] rev 23937
8035726: A sentence is truncated in the API doc for j.u.Locale.LanguageRange.parse(String, Map). Reviewed-by: okutsu
Thu, 17 Apr 2014 09:48:21 +0800 8040769: add a comment to the NewInstance test
weijun [Thu, 17 Apr 2014 09:48:21 +0800] rev 23936
8040769: add a comment to the NewInstance test Reviewed-by: wetmore
Wed, 16 Apr 2014 13:13:23 -0700 Merge
bpb [Wed, 16 Apr 2014 13:13:23 -0700] rev 23935
Merge
Wed, 16 Apr 2014 12:59:41 -0700 6375303: Review use of caching in BigDecimal
bpb [Wed, 16 Apr 2014 12:59:41 -0700] rev 23934
6375303: Review use of caching in BigDecimal Summary: Clean up of various items discovered during review of caching. Reviewed-by: mduigou, psandoz
Wed, 16 Apr 2014 12:40:19 -0700 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass [Wed, 16 Apr 2014 12:40:19 -0700] rev 23933
8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg Reviewed-by: mchung, jbachorik Contributed-by: Mattias Tobiasson <mattias.tobiasson@oracle.com>
Wed, 16 Apr 2014 11:56:58 +0100 8038178: Fix corrupt license header
chegar [Wed, 16 Apr 2014 11:56:58 +0100] rev 23932
8038178: Fix corrupt license header Reviewed-by: chegar, dholmes Contributed-by: Pavel Rappo <pavel.rappo@oracle.com>
Wed, 16 Apr 2014 09:49:45 -0400 Merge
mullan [Wed, 16 Apr 2014 09:49:45 -0400] rev 23931
Merge
Wed, 16 Apr 2014 09:46:49 -0400 8038184: XMLSignature throws StringIndexOutOfBoundsException if ID attribute value is empty String
mullan [Wed, 16 Apr 2014 09:46:49 -0400] rev 23930
8038184: XMLSignature throws StringIndexOutOfBoundsException if ID attribute value is empty String Reviewed-by: xuelei
Wed, 16 Apr 2014 17:32:39 +0800 8034220: Improve time zone mapping for AIX platform
luchsh [Wed, 16 Apr 2014 17:32:39 +0800] rev 23929
8034220: Improve time zone mapping for AIX platform Reviewed-by: okutsu
Wed, 16 Apr 2014 12:37:49 +0400 8039396: NPE when writing a class descriptor object to a custom ObjectOutputStream
igerasim [Wed, 16 Apr 2014 12:37:49 +0400] rev 23928
8039396: NPE when writing a class descriptor object to a custom ObjectOutputStream Reviewed-by: alanb
Wed, 16 Apr 2014 08:16:51 +0100 8038821: Fix typos in java.net
chegar [Wed, 16 Apr 2014 08:16:51 +0100] rev 23927
8038821: Fix typos in java.net Reviewed-by: wetmore Contributed-by: Ivan Gerasimov <ivan.gerasimov@oracle.com>, Chris Hegarty <chris.hegarty@oracle.com>
Wed, 16 Apr 2014 10:39:36 +0800 8039853: Provider.Service.newInstance() does not work with current JDK JGSS Mechanisms
weijun [Wed, 16 Apr 2014 10:39:36 +0800] rev 23926
8039853: Provider.Service.newInstance() does not work with current JDK JGSS Mechanisms Reviewed-by: mullan
Tue, 15 Apr 2014 13:17:05 -0700 8038500: (zipfs) Upgrade ZIP provider to be a supported provider
sherman [Tue, 15 Apr 2014 13:17:05 -0700] rev 23925
8038500: (zipfs) Upgrade ZIP provider to be a supported provider Summary: to move zipfs into jdk.nio.zipfs Reviewed-by: alanb, mchung, erikj
Thu, 06 Feb 2014 09:35:26 +0100 8033301: Build more informative InfoBuilder
jbachorik [Thu, 06 Feb 2014 09:35:26 +0100] rev 23924
8033301: Build more informative InfoBuilder Reviewed-by: sla, ahgross
Wed, 12 Mar 2014 12:10:54 +0000 8035834: InetAddress.getLocalHost() can hang after JDK-8030731
vinnie [Wed, 12 Mar 2014 12:10:54 +0000] rev 23923
8035834: InetAddress.getLocalHost() can hang after JDK-8030731 Reviewed-by: wetmore, ahgross
Fri, 07 Mar 2014 21:48:51 +0530 8036794: Collect more Collector Lambdas
sundar [Fri, 07 Mar 2014 21:48:51 +0530] rev 23922
8036794: Collect more Collector Lambdas Reviewed-by: attila, ahgross
Thu, 20 Feb 2014 09:36:58 +0400 8034870: Regression: On Mac, fx app can't be launched if setting a javaagent for it
pchelko [Thu, 20 Feb 2014 09:36:58 +0400] rev 23921
8034870: Regression: On Mac, fx app can't be launched if setting a javaagent for it Reviewed-by: serb, art, anthony
Fri, 07 Feb 2014 19:49:58 +0400 8033618: Correct logging output
kizune [Fri, 07 Feb 2014 19:49:58 +0400] rev 23920
8033618: Correct logging output Reviewed-by: ksrini, alanb, ahgross
Tue, 11 Feb 2014 11:22:20 +0000 8031050: (thread) Change Thread initialization so that thread name is set before invoking SecurityManager
chegar [Tue, 11 Feb 2014 11:22:20 +0000] rev 23919
8031050: (thread) Change Thread initialization so that thread name is set before invoking SecurityManager Reviewed-by: alanb, dholmes, mchung
Wed, 29 Jan 2014 15:53:25 -0800 8032686: Issues with method invoke
twisti [Wed, 29 Jan 2014 15:53:25 -0800] rev 23918
8032686: Issues with method invoke Reviewed-by: jrose, vlivanov, ahgross
Fri, 24 Jan 2014 10:11:16 -0800 8032370: No "Truncated file" warning from IIOReadWarningListener on JPEGImageReader
prr [Fri, 24 Jan 2014 10:11:16 -0800] rev 23917
8032370: No "Truncated file" warning from IIOReadWarningListener on JPEGImageReader Reviewed-by: bae, vadim
Thu, 09 Jan 2014 17:41:41 +0800 8031395: Enhance LDAP processing
weijun [Thu, 09 Jan 2014 17:41:41 +0800] rev 23916
8031395: Enhance LDAP processing Reviewed-by: vinnie, alanb, skoivu, ahgross
Fri, 15 Nov 2013 11:07:04 -0500 8028385: Enhance RowSet Factory
lancea [Fri, 15 Nov 2013 11:07:04 -0500] rev 23915
8028385: Enhance RowSet Factory Reviewed-by: alanb, skoivu
Fri, 25 Oct 2013 14:35:42 -0400 8026200: Enhance RowSet Factory
lancea [Fri, 25 Oct 2013 14:35:42 -0400] rev 23914
8026200: Enhance RowSet Factory Reviewed-by: alanb, skoivu
Wed, 15 Jan 2014 11:23:07 +0800 8030655: Regression: 14_01 Security fix 8024306 causes test failures
weijun [Wed, 15 Jan 2014 11:23:07 +0800] rev 23913
8030655: Regression: 14_01 Security fix 8024306 causes test failures Reviewed-by: mullan, xuelei, ahgross
Mon, 25 Nov 2013 15:00:36 +0800 8026067: Enhance signed jar verification
weijun [Mon, 25 Nov 2013 15:00:36 +0800] rev 23912
8026067: Enhance signed jar verification Reviewed-by: ddehaven, ahgross, mullan
Wed, 22 Jan 2014 14:59:33 -0800 8027766: Enhance RSA processing
wetmore [Wed, 22 Jan 2014 14:59:33 -0800] rev 23911
8027766: Enhance RSA processing Summary: Refactored code Reviewed-by: mullan, xuelei
Mon, 25 Nov 2013 12:51:16 +0400 8027841: Enhance pixel manipulations
bae [Mon, 25 Nov 2013 12:51:16 +0400] rev 23910
8027841: Enhance pixel manipulations Reviewed-by: prr, vadim, mschoene
Mon, 13 Jan 2014 14:53:06 -0800 8031462: Fonts with morx tables are broken with latest ICU fixes
prr [Mon, 13 Jan 2014 14:53:06 -0800] rev 23909
8031462: Fonts with morx tables are broken with latest ICU fixes Reviewed-by: bae, vadim
Mon, 16 Dec 2013 09:26:47 -0800 8027775: Enhance ICU code.
prr [Mon, 16 Dec 2013 09:26:47 -0800] rev 23908
8027775: Enhance ICU code. Reviewed-by: srl, bae, mschoene
Wed, 22 Jan 2014 09:42:51 -0800 8031335: Better color profiling
prr [Wed, 22 Jan 2014 09:42:51 -0800] rev 23907
8031335: Better color profiling Reviewed-by: bae, vadim, mschoene
Wed, 22 Jan 2014 09:39:16 -0800 8029750: Enhance LCMS color processing
prr [Wed, 22 Jan 2014 09:39:16 -0800] rev 23906
8029750: Enhance LCMS color processing Reviewed-by: bae, vadim, mschoene
Tue, 21 Jan 2014 20:53:36 +0400 8026797: Enhance data transfers
malenkov [Tue, 21 Jan 2014 20:53:36 +0400] rev 23905
8026797: Enhance data transfers Reviewed-by: art, skoivu
Tue, 21 Jan 2014 10:49:19 +0000 8030731: Improve name service robustness
vinnie [Tue, 21 Jan 2014 10:49:19 +0000] rev 23904
8030731: Improve name service robustness Reviewed-by: weijun, michaelm, skoivu
Tue, 21 Jan 2014 06:45:46 +0400 8031352: Enhance PNG handling
serb [Tue, 21 Jan 2014 06:45:46 +0400] rev 23903
8031352: Enhance PNG handling Reviewed-by: prr, mschoene
Mon, 23 Dec 2013 14:29:27 +0100 8029286: Enhance subject delegation
jbachorik [Mon, 23 Dec 2013 14:29:27 +0100] rev 23902
8029286: Enhance subject delegation Reviewed-by: dfuchs, ahgross
Tue, 14 Jan 2014 11:55:26 +0000 8031394: (sl) Fix exception handling in ServiceLoader
alanb [Tue, 14 Jan 2014 11:55:26 +0000] rev 23901
8031394: (sl) Fix exception handling in ServiceLoader Reviewed-by: ahgross, mchung, weijun
Wed, 15 Jan 2014 11:53:54 +0400 8031477: [macosx] Loading AWT native library fails
pchelko [Wed, 15 Jan 2014 11:53:54 +0400] rev 23900
8031477: [macosx] Loading AWT native library fails 8002191: AWT-Shutdown thread does not start with the AppletSecurity on Linux 8031032: SQE test failures after JDK-8025010 was fixed Reviewed-by: serb, ddehaven
Thu, 16 Jan 2014 17:49:40 +0100 8029740: Enhance handling of loggers
dfuchs [Thu, 16 Jan 2014 17:49:40 +0100] rev 23899
8029740: Enhance handling of loggers Reviewed-by: mchung, ahgross
Fri, 13 Dec 2013 18:06:31 -0800 8029844: Enhance argument validation
jrose [Fri, 13 Dec 2013 18:06:31 -0800] rev 23898
8029844: Enhance argument validation Summary: make defensive copy of a varargs array Reviewed-by: mchung, twisti, ahgross
Fri, 10 Jan 2014 13:42:44 -0800 8029745: Enhance algorithm checking
juh [Fri, 10 Jan 2014 13:42:44 -0800] rev 23897
8029745: Enhance algorithm checking Summary: Intialize SIGNATURE_PRIMITIVE_SET with Collections.unmodifiableSet() Reviewed-by: mullan
Wed, 18 Dec 2013 10:43:11 +0400 8029760: Enhance AWT image libraries
pchelko [Wed, 18 Dec 2013 10:43:11 +0400] rev 23896
8029760: Enhance AWT image libraries Reviewed-by: prr, vadim, mschoene
Thu, 19 Dec 2013 14:57:13 +0400 8029697: Update Poller demo
kizune [Thu, 19 Dec 2013 14:57:13 +0400] rev 23895
8029697: Update Poller demo Reviewed-by: dcubed
Thu, 19 Dec 2013 12:14:04 +0000 8026716: (aio) Enhance asynchronous channel handling
alanb [Thu, 19 Dec 2013 12:14:04 +0000] rev 23894
8026716: (aio) Enhance asynchronous channel handling Reviewed-by: chegar, ahgross
Fri, 20 Dec 2013 15:43:41 +0400 8025010: Enhance AWT contexts
pchelko [Fri, 20 Dec 2013 15:43:41 +0400] rev 23893
8025010: Enhance AWT contexts Reviewed-by: art, serb, hawtin
Fri, 20 Dec 2013 09:58:29 -0800 8029854: Enhance JPEG decodings
prr [Fri, 20 Dec 2013 09:58:29 -0800] rev 23892
8029854: Enhance JPEG decodings Reviewed-by: bae, vadim, mschoene
Tue, 12 Nov 2013 11:32:48 +0400 8023046: Enhance splashscreen support
vadim [Tue, 12 Nov 2013 11:32:48 +0400] rev 23891
8023046: Enhance splashscreen support Reviewed-by: anthony, pchelko, mschoene
Mon, 23 Dec 2013 15:33:11 +0100 8029735: Enhance service mgmt natives
jbachorik [Mon, 23 Dec 2013 15:33:11 +0100] rev 23890
8029735: Enhance service mgmt natives Reviewed-by: sla, mschoene
Fri, 10 Jan 2014 19:21:44 +0400 8026163: Enhance media provisioning
serb [Fri, 10 Jan 2014 19:21:44 +0400] rev 23889
8026163: Enhance media provisioning Reviewed-by: art, skoivu
Fri, 10 Jan 2014 19:45:41 +0400 8029730: Improve audio device additions
serb [Fri, 10 Jan 2014 19:45:41 +0400] rev 23888
8029730: Improve audio device additions Reviewed-by: prr, mschoene
Tue, 15 Apr 2014 17:04:40 +0100 8040262: (fs) Misc. typos in comments and implementation
alanb [Tue, 15 Apr 2014 17:04:40 +0100] rev 23887
8040262: (fs) Misc. typos in comments and implementation Reviewed-by: alanb, chegar Contributed-by: pavel.rappo@oracle.com
Tue, 15 Apr 2014 11:24:42 +0100 8039362: Read content-types.properties as a resource
chegar [Tue, 15 Apr 2014 11:24:42 +0100] rev 23886
8039362: Read content-types.properties as a resource Reviewed-by: erikj, alanb, mchung
Tue, 15 Apr 2014 09:23:07 +0200 8040167: JDWP spec for ClassType#InvokeMethod contradicts JLS
jbachorik [Tue, 15 Apr 2014 09:23:07 +0200] rev 23885
8040167: JDWP spec for ClassType#InvokeMethod contradicts JLS Reviewed-by: sla, sspitsyn
Tue, 15 Apr 2014 08:28:30 +0100 8040038: java/net/URLPermission/nstest/lookup.sh fails with ClassNotFoundException
chegar [Tue, 15 Apr 2014 08:28:30 +0100] rev 23884
8040038: java/net/URLPermission/nstest/lookup.sh fails with ClassNotFoundException Reviewed-by: alanb
Mon, 14 Apr 2014 13:40:45 +0000 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei [Mon, 14 Apr 2014 13:40:45 +0000] rev 23883
8040062: Need to add new methods in BaseSSLSocketImpl Reviewed-by: mullan
Mon, 14 Apr 2014 16:15:10 +0400 8009637: Some error messages are missing a space
igerasim [Mon, 14 Apr 2014 16:15:10 +0400] rev 23882
8009637: Some error messages are missing a space Reviewed-by: alanb
Wed, 02 Apr 2014 12:03:25 +0200 8038963: com/sun/jdi tests fail because cygwin's ps sometimes misses processes
sla [Wed, 02 Apr 2014 12:03:25 +0200] rev 23881
8038963: com/sun/jdi tests fail because cygwin's ps sometimes misses processes Reviewed-by: dcubed, jbachorik
Sat, 12 Apr 2014 14:38:50 -0700 8039751: UTF-8 decoder fails to handle some edge cases correctly
sherman [Sat, 12 Apr 2014 14:38:50 -0700] rev 23880
8039751: UTF-8 decoder fails to handle some edge cases correctly Summary: to update decoder.isMalformed4_2() to correctly detect out of range 2nd byte Reviewed-by: alanb
Sat, 12 Apr 2014 20:21:09 +0100 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm [Sat, 12 Apr 2014 20:21:09 +0100] rev 23879
8036979: Support java.net.SocketOption<> in java.net socket types Reviewed-by: alanb, chegar
Thu, 17 Apr 2014 10:13:55 -0700 Added tag jdk9-b09 for changeset 56fc7867c5c9
katleman [Thu, 17 Apr 2014 10:13:55 -0700] rev 23878
Added tag jdk9-b09 for changeset 56fc7867c5c9
Wed, 05 Jul 2017 19:37:10 +0200 Merge
duke [Wed, 05 Jul 2017 19:37:10 +0200] rev 23877
Merge
Thu, 17 Apr 2014 15:22:41 -0700 Merge
lana [Thu, 17 Apr 2014 15:22:41 -0700] rev 23876
Merge
Tue, 15 Apr 2014 15:37:36 -0700 Merge
amurillo [Tue, 15 Apr 2014 15:37:36 -0700] rev 23875
Merge
Fri, 11 Apr 2014 11:39:04 -0700 Merge
amurillo [Fri, 11 Apr 2014 11:39:04 -0700] rev 23874
Merge
Fri, 11 Apr 2014 13:04:59 +0200 Merge
allwin [Fri, 11 Apr 2014 13:04:59 +0200] rev 23873
Merge
Tue, 08 Apr 2014 13:58:38 -0400 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp [Tue, 08 Apr 2014 13:58:38 -0400] rev 23872
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool) Summary: Keep class in CLD::_klasses list and mirror created for CDS classes if OOM during restore_shareable_info(). This keeps pointers consistent for CMS. Reviewed-by: ehelin, stefank, jmasa, iklam
Tue, 08 Apr 2014 11:50:01 +0200 8039348: -XX:+TraceDeoptimization -XX:+Verbose -Xcomp can crash VM
mgronlun [Tue, 08 Apr 2014 11:50:01 +0200] rev 23871
8039348: -XX:+TraceDeoptimization -XX:+Verbose -Xcomp can crash VM Reviewed-by: kvn, sla
(0) -10000 -3000 -1000 -240 +240 +1000 +3000 +10000 +30000 tip