Thu, 24 Jul 2014 09:01:00 -0700 8048209: Collections.synchronizedNavigableSet().tailSet(Object,boolean) synchronizes on wrong object
mduigou [Thu, 24 Jul 2014 09:01:00 -0700] rev 25748
8048209: Collections.synchronizedNavigableSet().tailSet(Object,boolean) synchronizes on wrong object Reviewed-by: psandoz, chegar
Fri, 01 Aug 2014 14:09:19 -0700 Added tag jdk9-b25 for changeset 48b43b7b9e0c
tbell [Fri, 01 Aug 2014 14:09:19 -0700] rev 25747
Added tag jdk9-b25 for changeset 48b43b7b9e0c
Wed, 05 Jul 2017 19:53:00 +0200 Merge
duke [Wed, 05 Jul 2017 19:53:00 +0200] rev 25746
Merge
Mon, 04 Aug 2014 15:34:37 -0700 Merge
lana [Mon, 04 Aug 2014 15:34:37 -0700] rev 25745
Merge
Thu, 24 Jul 2014 13:18:15 -0700 Merge
amurillo [Thu, 24 Jul 2014 13:18:15 -0700] rev 25744
Merge
Thu, 24 Jul 2014 14:38:26 +0200 Merge
rbackman [Thu, 24 Jul 2014 14:38:26 +0200] rev 25743
Merge
Fri, 18 Jul 2014 09:04:01 +0200 8050978: Fix bad field access check in C1 and C2
goetz [Fri, 18 Jul 2014 09:04:01 +0200] rev 25742
8050978: Fix bad field access check in C1 and C2 Summary: JCK8 test vm/constantpool/accessControl/accessControl004/accessControl00402m3/accessControl00402m3.html fails with -Xbatch -Xcomp due to bad field access check in C1 and C2. Fix: In ciField::ciField(), just before the canonical holder is stored into the _holder variable (and which is used by ciField::will_link()) perform an additional access check with the holder declared in the class file. If this check fails, store the declared holder instead and ciField::will_link() will bail out compilation for this field later on. Then, the interpreter will throw an PrivilegedAccessException at runtime. Reviewed-by: kvn, vlivanov Contributed-by: andreas.schoesser@sap.com
Wed, 23 Jul 2014 07:53:24 +0200 8051550: Printing of 'cmpN_reg_branch_short' instruction shows wrong 'op2' register
thartmann [Wed, 23 Jul 2014 07:53:24 +0200] rev 25741
8051550: Printing of 'cmpN_reg_branch_short' instruction shows wrong 'op2' register Summary: Missing '$' added to the format string of the 'cmpN_reg_branch_short' instruction (sparc.ad). Reviewed-by: kvn, iveresov
Thu, 17 Jul 2014 10:21:31 +0200 8050972: Concurrency problem in PcDesc cache
mdoerr [Thu, 17 Jul 2014 10:21:31 +0200] rev 25740
8050972: Concurrency problem in PcDesc cache Summary: The entries of the PcDesc cache in nmethods are not declared as volatile, but they are accessed and modified by several threads concurrently. Reviewed-by: kvn, dholmes, dcubed
Mon, 21 Jul 2014 10:25:58 +0200 8051303: 'optimized' build broken by JDK-8039425
anoll [Mon, 21 Jul 2014 10:25:58 +0200] rev 25739
8051303: 'optimized' build broken by JDK-8039425 Summary: Changed preprocessor directive in PhaseIterGVN::optimize() Reviewed-by: kvn, anoll Contributed-by: Zoltan Majo <zoltan.majo@oracle.com>
Sat, 19 Jul 2014 13:43:02 +0400 Merge
iignatyev [Sat, 19 Jul 2014 13:43:02 +0400] rev 25738
Merge
Sat, 19 Jul 2014 00:34:40 +0400 8031978: compiler/ciReplay/TestVM_no_comp_level.sh fails with "TEST [CHECK :: REPLAY DATA GENERATION] FAILED:
iignatyev [Sat, 19 Jul 2014 00:34:40 +0400] rev 25737
8031978: compiler/ciReplay/TestVM_no_comp_level.sh fails with "TEST [CHECK :: REPLAY DATA GENERATION] FAILED: Reviewed-by: kvn
Sat, 19 Jul 2014 00:34:20 +0400 8032449: Get rid of JMX in test/compiler
iignatyev [Sat, 19 Jul 2014 00:34:20 +0400] rev 25736
8032449: Get rid of JMX in test/compiler Reviewed-by: kvn
Sat, 19 Jul 2014 00:33:37 +0400 8049348: compiler/intrinsics/bmi/verifycode tests on lzcnt and tzcnt use incorrect assumption about REXB prefix usage
aaivanov [Sat, 19 Jul 2014 00:33:37 +0400] rev 25735
8049348: compiler/intrinsics/bmi/verifycode tests on lzcnt and tzcnt use incorrect assumption about REXB prefix usage Reviewed-by: kvn
Sat, 19 Jul 2014 00:32:23 +0400 6848902: [TESTBUG] The compiler/6589834/Test_ia32.java timed out
fzhinkin [Sat, 19 Jul 2014 00:32:23 +0400] rev 25734
6848902: [TESTBUG] The compiler/6589834/Test_ia32.java timed out Reviewed-by: kvn, iignatyev
Sat, 19 Jul 2014 00:30:54 +0400 8050144: Remove '-client' from compiler/8004051/Test8004051.java's options
fzhinkin [Sat, 19 Jul 2014 00:30:54 +0400] rev 25733
8050144: Remove '-client' from compiler/8004051/Test8004051.java's options Reviewed-by: kvn
Sat, 19 Jul 2014 00:29:20 +0400 8048882: Some regression tests are not robust with VM output
ppunegov [Sat, 19 Jul 2014 00:29:20 +0400] rev 25732
8048882: Some regression tests are not robust with VM output Reviewed-by: kvn, iignatyev
Wed, 23 Jul 2014 14:06:28 -0700 Merge
jmasa [Wed, 23 Jul 2014 14:06:28 -0700] rev 25731
Merge
Mon, 21 Jul 2014 10:00:31 +0200 8048112: G1 Full GC needs to support the case when the very first region is not available
tschatzl [Mon, 21 Jul 2014 10:00:31 +0200] rev 25730
8048112: G1 Full GC needs to support the case when the very first region is not available Summary: Refactor preparation for compaction during Full GC so that it lazily initializes the first compaction point. This also avoids problems later when the first region may not be committed. Also reviewed by K. Barrett. Reviewed-by: brutisso
Mon, 21 Jul 2014 09:59:54 +0200 8048088: Conservative maximum heap alignment should take vm_allocation_granularity into account
tschatzl [Mon, 21 Jul 2014 09:59:54 +0200] rev 25729
8048088: Conservative maximum heap alignment should take vm_allocation_granularity into account Summary: Also consider os::vm_allocation_granularity in the calculation. Reviewed-by: brutisso
Mon, 21 Jul 2014 09:59:46 +0200 8048085: Aborting marking just before remark results in useless additional clearing of the next mark bitmap
tschatzl [Mon, 21 Jul 2014 09:59:46 +0200] rev 25728
8048085: Aborting marking just before remark results in useless additional clearing of the next mark bitmap Summary: Skip clearing the next bitmap if we just recently aborted since the full GC already clears this bitmap. Reviewed-by: brutisso
Mon, 21 Jul 2014 09:59:37 +0200 8049051: Use of during_initial_mark_pause() in G1CollectorPolicy::record_collection_pause_end() prevents use of seperate object copy time prediction during marking
tschatzl [Mon, 21 Jul 2014 09:59:37 +0200] rev 25727
8049051: Use of during_initial_mark_pause() in G1CollectorPolicy::record_collection_pause_end() prevents use of seperate object copy time prediction during marking Summary: Replaced use of during_initial_mark_pause() with the variable last_pause_included_initial_mark that holds the real old value of _during_initial_mark_pause. Reviewed-by: brutisso, ehelin
Fri, 18 Jul 2014 15:42:20 -0700 Merge
jmasa [Fri, 18 Jul 2014 15:42:20 -0700] rev 25726
Merge
Thu, 17 Jul 2014 11:32:09 +0200 8050228: Rename 'rem_size' in compactibleFreeListSpace.cpp because of name clashes on AIX
simonis [Thu, 17 Jul 2014 11:32:09 +0200] rev 25725
8050228: Rename 'rem_size' in compactibleFreeListSpace.cpp because of name clashes on AIX Reviewed-by: dholmes, jmasa
Tue, 22 Jul 2014 06:34:42 -0700 8049881: jstack not working on core files
poonam [Tue, 22 Jul 2014 06:34:42 -0700] rev 25724
8049881: jstack not working on core files Summary: Access _trace_id field of Klass in try-catch block Reviewed-by: dholmes, dsamersoff, mgronlun
Mon, 21 Jul 2014 09:48:38 -0400 Merge
zgu [Mon, 21 Jul 2014 09:48:38 -0400] rev 25723
Merge
Mon, 21 Jul 2014 06:00:44 -0700 8050167: linux-sparcv9: hs_err file does not show any stack information
zgu [Mon, 21 Jul 2014 06:00:44 -0700] rev 25722
8050167: linux-sparcv9: hs_err file does not show any stack information Summary: Fixed creation of starting stack frame for stack walking in error handler Reviewed-by: coleenp, mikael
Mon, 21 Jul 2014 10:42:20 +0000 Merge
kevinw [Mon, 21 Jul 2014 10:42:20 +0000] rev 25721
Merge
Mon, 21 Jul 2014 10:40:50 +0100 8049684: pstack crashes on java core dump
kevinw [Mon, 21 Jul 2014 10:40:50 +0100] rev 25720
8049684: pstack crashes on java core dump Reviewed-by: sundar, sspitsyn
Fri, 18 Jul 2014 23:53:59 -0700 Merge
sspitsyn [Fri, 18 Jul 2014 23:53:59 -0700] rev 25719
Merge
Fri, 18 Jul 2014 11:14:20 -0700 8050165: linux-sparcv9: NMT detail causes assert((intptr_t*)younger_sp[FP->sp_offset_in_saved_window()] == (intptr_t*)((intptr_t)sp - STACK_BIAS)) failed: younger_sp must be valid
zgu [Fri, 18 Jul 2014 11:14:20 -0700] rev 25718
8050165: linux-sparcv9: NMT detail causes assert((intptr_t*)younger_sp[FP->sp_offset_in_saved_window()] == (intptr_t*)((intptr_t)sp - STACK_BIAS)) failed: younger_sp must be valid Summary: Fixed native memory tracking stack walking Reviewed-by: coleenp, mikael
Fri, 18 Jul 2014 11:22:49 -0400 Merge
coleenp [Fri, 18 Jul 2014 11:22:49 -0400] rev 25717
Merge
Mon, 14 Jul 2014 10:15:21 -0400 Merge
coleenp [Mon, 14 Jul 2014 10:15:21 -0400] rev 25716
Merge
Fri, 04 Jul 2014 11:46:01 +0200 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz [Fri, 04 Jul 2014 11:46:01 +0200] rev 25715
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories. Summary: Introduce and clean up umbrella headers for the files in the cpu subdirectories. Reviewed-by: lfoltan, coleenp, dholmes
Thu, 17 Jul 2014 15:45:46 -0400 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp [Thu, 17 Jul 2014 15:45:46 -0400] rev 25714
8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code Summary: remove bcx and mdx handling. We no longer have to convert bytecode pointers to indices for GC since Methods aren't moved. Reviewed-by: mgerdin, kvn
Wed, 16 Jul 2014 15:04:36 -0700 8050802: Update jprt runthese test suite to jck-8
mikael [Wed, 16 Jul 2014 15:04:36 -0700] rev 25713
8050802: Update jprt runthese test suite to jck-8 Reviewed-by: dholmes, kvn
Tue, 15 Jul 2014 21:28:51 -0700 8049441: PPC64: Don't use StubCodeMarks for zero-length stubs
sspitsyn [Tue, 15 Jul 2014 21:28:51 -0700] rev 25712
8049441: PPC64: Don't use StubCodeMarks for zero-length stubs Summary: Remove StubCodeMark in generate_icache_flush, generate_verify_oop, generate_throw_exception Reviewed-by: dcubed, sspitsyn Contributed-by: volker.simonis@gmail.com
Fri, 18 Jul 2014 19:56:02 +0200 8051378: AIX: Change "8030763: Validate global memory allocation" breaks the HotSpot build
simonis [Fri, 18 Jul 2014 19:56:02 +0200] rev 25711
8051378: AIX: Change "8030763: Validate global memory allocation" breaks the HotSpot build Reviewed-by: kvn
Fri, 01 Aug 2014 14:09:09 -0700 Added tag jdk9-b25 for changeset 938af06a9f70
tbell [Fri, 01 Aug 2014 14:09:09 -0700] rev 25710
Added tag jdk9-b25 for changeset 938af06a9f70
Mon, 04 Aug 2014 15:33:12 -0700 Merge
lana [Mon, 04 Aug 2014 15:33:12 -0700] rev 25709
Merge
Thu, 31 Jul 2014 11:14:26 -0700 8054009: Support SKIP_BOOT_CYCLE=false when invoked from JPRT
mikael [Thu, 31 Jul 2014 11:14:26 -0700] rev 25708
8054009: Support SKIP_BOOT_CYCLE=false when invoked from JPRT Reviewed-by: dholmes, erikj
Thu, 24 Jul 2014 13:25:02 -0700 Merge
amurillo [Thu, 24 Jul 2014 13:25:02 -0700] rev 25707
Merge
Wed, 23 Jul 2014 12:52:34 -0700 Merge
sspitsyn [Wed, 23 Jul 2014 12:52:34 -0700] rev 25706
Merge
Wed, 16 Jul 2014 15:04:21 -0700 8050802: Update jprt runthese test suite to jck-8
mikael [Wed, 16 Jul 2014 15:04:21 -0700] rev 25705
8050802: Update jprt runthese test suite to jck-8 Reviewed-by: dholmes, kvn
Fri, 01 Aug 2014 14:09:05 -0700 Added tag jdk9-b25 for changeset 4c599f00e556
tbell [Fri, 01 Aug 2014 14:09:05 -0700] rev 25704
Added tag jdk9-b25 for changeset 4c599f00e556
Wed, 05 Jul 2017 19:52:35 +0200 Added tag jdk9-b25 for changeset 13a5c76976fe
duke [Wed, 05 Jul 2017 19:52:35 +0200] rev 25703
Added tag jdk9-b25 for changeset 13a5c76976fe
Wed, 05 Jul 2017 19:52:35 +0200 Merge jdk9-b25
duke [Wed, 05 Jul 2017 19:52:35 +0200] rev 25702
Merge
Wed, 05 Jul 2017 19:52:30 +0200 Merge
duke [Wed, 05 Jul 2017 19:52:30 +0200] rev 25701
Merge
Wed, 30 Jul 2014 11:49:49 -0700 Merge
lana [Wed, 30 Jul 2014 11:49:49 -0700] rev 25700
Merge
Wed, 23 Jul 2014 09:19:23 -0700 8050319: LocalVariableTestBase has unexpected dependency on LocalVariableTableTest
ksrini [Wed, 23 Jul 2014 09:19:23 -0700] rev 25699
8050319: LocalVariableTestBase has unexpected dependency on LocalVariableTableTest Reviewed-by: jjg, ksrini Contributed-by: andrey.x.nazarov@oracle.com
Tue, 22 Jul 2014 11:54:22 -0700 Merge
lana [Tue, 22 Jul 2014 11:54:22 -0700] rev 25698
Merge
Tue, 22 Jul 2014 17:47:45 +0100 8049234: Add support for running/debugging bootstrap tools in IntelliJ
mcimadamore [Tue, 22 Jul 2014 17:47:45 +0100] rev 25697
8049234: Add support for running/debugging bootstrap tools in IntelliJ Summary: Add support for bootstrap tools; overhaul ant logger Reviewed-by: vromero
Mon, 21 Jul 2014 16:21:43 -0700 8051482: Fix deprecation warnings in javax.lang.model.util
darcy [Mon, 21 Jul 2014 16:21:43 -0700] rev 25696
8051482: Fix deprecation warnings in javax.lang.model.util Reviewed-by: ksrini
Thu, 17 Jul 2014 16:46:29 -0700 8050954: update DocRootSlash test for tidy error: empty <p>
sogoel [Thu, 17 Jul 2014 16:46:29 -0700] rev 25695
8050954: update DocRootSlash test for tidy error: empty <p> Reviewed-by: ksrini, bpatel
Thu, 17 Jul 2014 11:22:47 -0700 8048837: .out files for generics tests in tools/javac dir - part 3
sogoel [Thu, 17 Jul 2014 11:22:47 -0700] rev 25694
8048837: .out files for generics tests in tools/javac dir - part 3 Reviewed-by: jjg
Thu, 17 Jul 2014 11:14:39 -0700 8048836: .out files for generics tests in tools/javac dir
sogoel [Thu, 17 Jul 2014 11:14:39 -0700] rev 25693
8048836: .out files for generics tests in tools/javac dir Reviewed-by: jjg
Thu, 17 Jul 2014 10:17:58 -0700 8050804: (jdeps) Recommend supported API to replace use of JDK internal API
mchung [Thu, 17 Jul 2014 10:17:58 -0700] rev 25692
8050804: (jdeps) Recommend supported API to replace use of JDK internal API Reviewed-by: dfuchs
Thu, 17 Jul 2014 09:56:07 -0700 8048833: .out files for generics tests in tools/javac dir
sogoel [Thu, 17 Jul 2014 09:56:07 -0700] rev 25691
8048833: .out files for generics tests in tools/javac dir Reviewed-by: jjg
Thu, 17 Jul 2014 09:47:25 -0700 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy [Thu, 17 Jul 2014 09:47:25 -0700] rev 25690
8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9 Reviewed-by: jjg
Fri, 25 Jul 2014 15:38:12 -0700 Added tag jdk9-b24 for changeset 263f68539584
tbell [Fri, 25 Jul 2014 15:38:12 -0700] rev 25689
Added tag jdk9-b24 for changeset 263f68539584
Wed, 05 Jul 2017 19:52:22 +0200 Merge
duke [Wed, 05 Jul 2017 19:52:22 +0200] rev 25688
Merge
Wed, 30 Jul 2014 11:49:27 -0700 Merge
lana [Wed, 30 Jul 2014 11:49:27 -0700] rev 25687
Merge
Tue, 22 Jul 2014 11:56:48 -0700 Merge
lana [Tue, 22 Jul 2014 11:56:48 -0700] rev 25686
Merge
Fri, 18 Jul 2014 19:14:38 +0200 8038970: Deprivilege JAX-WS/JAF code
mkos [Fri, 18 Jul 2014 19:14:38 +0200] rev 25685
8038970: Deprivilege JAX-WS/JAF code Summary: Changes to prepare for granting minimal set of permissions to JAX-WS code. Reviewed-by: mchung
Fri, 25 Jul 2014 15:38:09 -0700 Added tag jdk9-b24 for changeset 6073de33135f
tbell [Fri, 25 Jul 2014 15:38:09 -0700] rev 25684
Added tag jdk9-b24 for changeset 6073de33135f
Wed, 05 Jul 2017 19:52:15 +0200 Merge
duke [Wed, 05 Jul 2017 19:52:15 +0200] rev 25683
Merge
Wed, 30 Jul 2014 11:49:21 -0700 Merge
lana [Wed, 30 Jul 2014 11:49:21 -0700] rev 25682
Merge
Tue, 22 Jul 2014 11:54:10 -0700 Merge
lana [Tue, 22 Jul 2014 11:54:10 -0700] rev 25681
Merge
Tue, 22 Jul 2014 22:06:30 +0400 8029837: NPE seen in XMLDocumentFragmentScannerImpl.setProperty since 7u40b33
aefimov [Tue, 22 Jul 2014 22:06:30 +0400] rev 25680
8029837: NPE seen in XMLDocumentFragmentScannerImpl.setProperty since 7u40b33 Reviewed-by: joehw
Fri, 25 Jul 2014 15:38:09 -0700 Added tag jdk9-b24 for changeset ba581cb2983f
tbell [Fri, 25 Jul 2014 15:38:09 -0700] rev 25679
Added tag jdk9-b24 for changeset ba581cb2983f
Wed, 05 Jul 2017 19:52:09 +0200 Merge
duke [Wed, 05 Jul 2017 19:52:09 +0200] rev 25678
Merge
Wed, 30 Jul 2014 11:49:28 -0700 Merge
lana [Wed, 30 Jul 2014 11:49:28 -0700] rev 25677
Merge
Tue, 22 Jul 2014 11:55:03 -0700 Merge
lana [Tue, 22 Jul 2014 11:55:03 -0700] rev 25676
Merge
Fri, 18 Jul 2014 16:53:17 +0530 8051019: Separate src and test execution sandbox directories
sundar [Fri, 18 Jul 2014 16:53:17 +0530] rev 25675
8051019: Separate src and test execution sandbox directories Reviewed-by: jlaskey Contributed-by: lev.priima@oracle.com
Fri, 25 Jul 2014 15:38:12 -0700 Added tag jdk9-b24 for changeset abe2821cc591
tbell [Fri, 25 Jul 2014 15:38:12 -0700] rev 25674
Added tag jdk9-b24 for changeset abe2821cc591
Wed, 05 Jul 2017 19:52:01 +0200 Merge
duke [Wed, 05 Jul 2017 19:52:01 +0200] rev 25673
Merge
Fri, 25 Jul 2014 15:38:07 -0700 Added tag jdk9-b24 for changeset 4efd3f7a2c81
tbell [Fri, 25 Jul 2014 15:38:07 -0700] rev 25672
Added tag jdk9-b24 for changeset 4efd3f7a2c81
Wed, 05 Jul 2017 19:51:58 +0200 Merge
duke [Wed, 05 Jul 2017 19:51:58 +0200] rev 25671
Merge
Wed, 30 Jul 2014 11:49:59 -0700 Merge
lana [Wed, 30 Jul 2014 11:49:59 -0700] rev 25670
Merge
Wed, 23 Jul 2014 21:50:21 +0000 8035166: Remove dependency on EC classes from pkcs11 provider
valeriep [Wed, 23 Jul 2014 21:50:21 +0000] rev 25669
8035166: Remove dependency on EC classes from pkcs11 provider Summary: Move the sun.security.ec.ECParameters and its related classes to sun.security.util package. Reviewed-by: mullan, vinnie
Mon, 21 Jul 2014 23:07:40 +0200 8006627: UUID to/from String performance should be improved by reducing object allocations
redestad [Mon, 21 Jul 2014 23:07:40 +0200] rev 25668
8006627: UUID to/from String performance should be improved by reducing object allocations Reviewed-by: mduigou, plevart Contributed-by: Steven Schlansker <stevenschlansker@gmail.com>, Claes Redestad <claes.redestad@oracle.com>
Tue, 22 Jul 2014 13:13:27 -0700 6721085: Fix broken link to Collections Framework Tutorial
mduigou [Tue, 22 Jul 2014 13:13:27 -0700] rev 25667
6721085: Fix broken link to Collections Framework Tutorial Reviewed-by: lancea
Tue, 22 Jul 2014 11:55:27 -0700 Merge
lana [Tue, 22 Jul 2014 11:55:27 -0700] rev 25666
Merge
Tue, 22 Jul 2014 22:06:52 +0400 8029837: NPE seen in XMLDocumentFragmentScannerImpl.setProperty since 7u40b33
aefimov [Tue, 22 Jul 2014 22:06:52 +0400] rev 25665
8029837: NPE seen in XMLDocumentFragmentScannerImpl.setProperty since 7u40b33 Reviewed-by: joehw
Mon, 21 Jul 2014 22:10:37 +0800 8048194: GSSContext.acceptSecContext fails when a supported mech is not initiator preferred
weijun [Mon, 21 Jul 2014 22:10:37 +0800] rev 25664
8048194: GSSContext.acceptSecContext fails when a supported mech is not initiator preferred Reviewed-by: mullan
Mon, 21 Jul 2014 22:09:38 +0800 8049834: Two security tools tests do not run with only JRE
weijun [Mon, 21 Jul 2014 22:09:38 +0800] rev 25663
8049834: Two security tools tests do not run with only JRE Reviewed-by: mullan
Sat, 19 Jul 2014 11:22:08 +0800 8051399: Fix for JDK-8043071 breaks dev build
weijun [Sat, 19 Jul 2014 11:22:08 +0800] rev 25662
8051399: Fix for JDK-8043071 breaks dev build Reviewed-by: xuelei
Sat, 19 Jul 2014 10:20:42 +0800 8043071: Expose session key and KRB_CRED through extended GSS-API
weijun [Sat, 19 Jul 2014 10:20:42 +0800] rev 25661
8043071: Expose session key and KRB_CRED through extended GSS-API Reviewed-by: mullan
Fri, 18 Jul 2014 22:32:24 +0200 8050114: Expose Integer/Long formatUnsigned methods internally
redestad [Fri, 18 Jul 2014 22:32:24 +0200] rev 25660
8050114: Expose Integer/Long formatUnsigned methods internally Reviewed-by: mduigou
Fri, 18 Jul 2014 10:40:55 -0700 8050968: Extension class loader initialization fails on Win7 x64 zh_TW
mchung [Fri, 18 Jul 2014 10:40:55 -0700] rev 25659
8050968: Extension class loader initialization fails on Win7 x64 zh_TW Reviewed-by: alanb, dholmes, sherman
Fri, 18 Jul 2014 08:54:28 -0700 8051057: Optimize StringCharBuffer.toString(int, int)
mduigou [Fri, 18 Jul 2014 08:54:28 -0700] rev 25658
8051057: Optimize StringCharBuffer.toString(int, int) Reviewed-by: smarks, alanb
Fri, 18 Jul 2014 17:23:28 +0200 8035829: [parfait] JNI exception pending in jdk/src/windows/native/sun/tools/attach/WindowsVirtualMachine.c
jbachorik [Fri, 18 Jul 2014 17:23:28 +0200] rev 25657
8035829: [parfait] JNI exception pending in jdk/src/windows/native/sun/tools/attach/WindowsVirtualMachine.c Reviewed-by: sundar, kevinw
Fri, 18 Jul 2014 17:04:10 +0400 8050893: (smartcardio) Invert reset argument in tests in sun/security/smartcardio
igerasim [Fri, 18 Jul 2014 17:04:10 +0400] rev 25656
8050893: (smartcardio) Invert reset argument in tests in sun/security/smartcardio Reviewed-by: valeriep
Fri, 18 Jul 2014 13:43:28 +0100 8051350: Update javadoc for com.sun.jndi.toolkit.corba.CorbaUtils
prappo [Fri, 18 Jul 2014 13:43:28 +0100] rev 25655
8051350: Update javadoc for com.sun.jndi.toolkit.corba.CorbaUtils Reviewed-by: alanb
Fri, 18 Jul 2014 01:39:42 +0100 8050922: add additional diagnostic to java/net/MulticastSocket/TestInterfaces
msheppar [Fri, 18 Jul 2014 01:39:42 +0100] rev 25654
8050922: add additional diagnostic to java/net/MulticastSocket/TestInterfaces Summary: add additional diagnostic output for failed netwrok interface Reviewed-by: chegar
Sat, 12 Jul 2014 01:36:25 +0200 8041972: Additional parse methods for Long/Integer
redestad [Sat, 12 Jul 2014 01:36:25 +0200] rev 25653
8041972: Additional parse methods for Long/Integer Reviewed-by: mduigou, psandoz
Thu, 17 Jul 2014 11:08:50 -0700 8042589: String.toLowerCase do not work for some concatenated strings
sherman [Thu, 17 Jul 2014 11:08:50 -0700] rev 25652
8042589: String.toLowerCase do not work for some concatenated strings Summary: to include surrogate check in loop Reviewed-by: mchung
Fri, 25 Jul 2014 15:38:10 -0700 Added tag jdk9-b24 for changeset 83960d9537f6
tbell [Fri, 25 Jul 2014 15:38:10 -0700] rev 25651
Added tag jdk9-b24 for changeset 83960d9537f6
Wed, 05 Jul 2017 19:51:52 +0200 Merge
duke [Wed, 05 Jul 2017 19:51:52 +0200] rev 25650
Merge
Wed, 30 Jul 2014 11:49:41 -0700 Merge
lana [Wed, 30 Jul 2014 11:49:41 -0700] rev 25649
Merge
Tue, 22 Jul 2014 11:56:22 -0700 Merge
lana [Tue, 22 Jul 2014 11:56:22 -0700] rev 25648
Merge
Fri, 18 Jul 2014 12:02:54 -0700 Merge
amurillo [Fri, 18 Jul 2014 12:02:54 -0700] rev 25647
Merge
Fri, 18 Jul 2014 10:41:05 +0200 Merge
rbackman [Fri, 18 Jul 2014 10:41:05 +0200] rev 25646
Merge
Mon, 14 Jul 2014 03:29:42 -0700 8048703: ReplacedNodes dumps it's content to tty
vlivanov [Mon, 14 Jul 2014 03:29:42 -0700] rev 25645
8048703: ReplacedNodes dumps it's content to tty Reviewed-by: roland, iveresov, drchase
Mon, 14 Jul 2014 03:28:13 -0700 8049532: LogCompilation: C1: inlining tree is flat (no depth is stored)
vlivanov [Mon, 14 Jul 2014 03:28:13 -0700] rev 25644
8049532: LogCompilation: C1: inlining tree is flat (no depth is stored) Reviewed-by: roland, iveresov
Mon, 14 Jul 2014 03:27:21 -0700 8049529: LogCompilation: annotate make_not_compilable with compilation level
vlivanov [Mon, 14 Jul 2014 03:27:21 -0700] rev 25643
8049529: LogCompilation: annotate make_not_compilable with compilation level Reviewed-by: roland, iveresov
Mon, 14 Jul 2014 03:26:52 -0700 8049530: Provide descriptive failure reason for compilation tasks removed for the queue
vlivanov [Mon, 14 Jul 2014 03:26:52 -0700] rev 25642
8049530: Provide descriptive failure reason for compilation tasks removed for the queue Reviewed-by: roland, iveresov
Mon, 14 Jul 2014 03:25:40 -0700 8043546: C1 optimizes @Stable instance fields with default values
vlivanov [Mon, 14 Jul 2014 03:25:40 -0700] rev 25641
8043546: C1 optimizes @Stable instance fields with default values Reviewed-by: kvn, jrose
Mon, 14 Jul 2014 03:24:35 -0700 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov [Mon, 14 Jul 2014 03:24:35 -0700] rev 25640
8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message Reviewed-by: roland, jrose
Mon, 14 Jul 2014 18:24:08 +0000 8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou [Mon, 14 Jul 2014 18:24:08 +0000] rev 25639
8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands Reviewed-by: kvn, dholmes
Fri, 11 Jul 2014 23:54:16 +0000 Merge
drchase [Fri, 11 Jul 2014 23:54:16 +0000] rev 25638
Merge
Fri, 11 Jul 2014 19:51:36 -0400 8036588: VerifyFieldClosure fails instanceKlass:3133
drchase [Fri, 11 Jul 2014 19:51:36 -0400] rev 25637
8036588: VerifyFieldClosure fails instanceKlass:3133 Summary: Changed deopt live-pointer test to use returns-object instead of live-and-returns-object Reviewed-by: iveresov, kvn, jrose
Fri, 11 Jul 2014 14:32:02 -0700 Merge
kvn [Fri, 11 Jul 2014 14:32:02 -0700] rev 25636
Merge
Thu, 10 Jul 2014 15:12:48 +0200 8040237: nsk/jvmti/RetransformClasses/retransform001 crashed the VM on all platforms when run with with -server -Xcomp
roland [Thu, 10 Jul 2014 15:12:48 +0200] rev 25635
8040237: nsk/jvmti/RetransformClasses/retransform001 crashed the VM on all platforms when run with with -server -Xcomp Summary: class redefinition may cause speculative trap clean up code to dereference dead method Reviewed-by: kvn, coleenp
Wed, 16 Jul 2014 15:59:46 -0700 Merge
sspitsyn [Wed, 16 Jul 2014 15:59:46 -0700] rev 25634
Merge
Tue, 15 Jul 2014 07:33:49 -0700 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed [Tue, 15 Jul 2014 07:33:49 -0700] rev 25633
8049717: expose L1_data_cache_line_size for diagnostic/sanity checks Summary: Add support for VM_Version::L1_data_cache_line_size(). Reviewed-by: dsimms, kvn, dholmes
Mon, 14 Jul 2014 21:48:47 +0000 Merge
dholmes [Mon, 14 Jul 2014 21:48:47 +0000] rev 25632
Merge
Mon, 14 Jul 2014 11:41:20 +0200 8049715: PPC64: First steps to enable SA on Linux/PPC64
simonis [Mon, 14 Jul 2014 11:41:20 +0200] rev 25631
8049715: PPC64: First steps to enable SA on Linux/PPC64 Reviewed-by: dholmes, kvn
Mon, 14 Jul 2014 10:52:52 +0200 8046919: jni_PushLocalFrame OOM - increase MAX_REASONABLE_LOCAL_CAPACITY
dsimms [Mon, 14 Jul 2014 10:52:52 +0200] rev 25630
8046919: jni_PushLocalFrame OOM - increase MAX_REASONABLE_LOCAL_CAPACITY Summary: Increase the previous limit from 4k to 64k, added "-XX:MaxJNILocalCapacity=<capacity>" flag Reviewed-by: hseigel, fparain
Mon, 14 Jul 2014 10:50:20 +0200 8046668: Excessive checked JNI warnings from Java startup
dsimms [Mon, 14 Jul 2014 10:50:20 +0200] rev 25629
8046668: Excessive checked JNI warnings from Java startup Summary: Removed pedantic checked exception warnings for AIOOBException, add to current handle capacity Reviewed-by: hseigel, lfoltan
Fri, 11 Jul 2014 13:49:15 -0700 8049071: Add jtreg jobs to JPRT for hotspot
mikael [Fri, 11 Jul 2014 13:49:15 -0700] rev 25628
8049071: Add jtreg jobs to JPRT for hotspot Reviewed-by: dholmes, iveresov
Sat, 12 Jul 2014 01:26:13 -0700 Merge
sspitsyn [Sat, 12 Jul 2014 01:26:13 -0700] rev 25627
Merge
Thu, 10 Jul 2014 17:46:35 -0700 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn [Thu, 10 Jul 2014 17:46:35 -0700] rev 25626
8013942: JSR 292: assert(type() == T_OBJECT) failed: type check Summary: A dead scope of the local needs to be identified Reviewed-by: coleenp, vlivanov, mgronlun Contributed-by: serguei.spitsyn@oracle.com
Thu, 10 Jul 2014 08:15:30 -0700 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed [Thu, 10 Jul 2014 08:15:30 -0700] rev 25625
8049104: resolve atomic.hpp wording issues from JDK-8047104 code review Reviewed-by: dholmes, dice, rdurbin, acorn
Wed, 09 Jul 2014 22:37:48 -0400 8048933: -XX:+TraceExceptions output should include the message
coleenp [Wed, 09 Jul 2014 22:37:48 -0400] rev 25624
8048933: -XX:+TraceExceptions output should include the message Summary: Add the exception detail message to the tracing output Reviewed-by: minqi, dholmes
Fri, 11 Jul 2014 11:14:40 -0700 Merge
jmasa [Fri, 11 Jul 2014 11:14:40 -0700] rev 25623
Merge
Fri, 11 Jul 2014 09:07:23 +0200 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank [Fri, 11 Jul 2014 09:07:23 +0200] rev 25622
8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off Reviewed-by: brutisso, tschatzl, ehelin, jmasa, dfazunen
Fri, 25 Jul 2014 15:38:08 -0700 Added tag jdk9-b24 for changeset d6c0b1381379
tbell [Fri, 25 Jul 2014 15:38:08 -0700] rev 25621
Added tag jdk9-b24 for changeset d6c0b1381379
Wed, 30 Jul 2014 11:49:10 -0700 Merge
lana [Wed, 30 Jul 2014 11:49:10 -0700] rev 25620
Merge
Tue, 22 Jul 2014 11:54:04 -0700 Merge
lana [Tue, 22 Jul 2014 11:54:04 -0700] rev 25619
Merge
Tue, 22 Jul 2014 10:38:07 -0700 Merge
amurillo [Tue, 22 Jul 2014 10:38:07 -0700] rev 25618
Merge
Fri, 18 Jul 2014 12:22:50 -0700 Merge
amurillo [Fri, 18 Jul 2014 12:22:50 -0700] rev 25617
Merge
Mon, 14 Jul 2014 17:26:16 -0400 8049715: PPC64: First steps to enable SA on Linux/PPC64
simonis [Mon, 14 Jul 2014 17:26:16 -0400] rev 25616
8049715: PPC64: First steps to enable SA on Linux/PPC64 Reviewed-by: dholmes, kvn
Fri, 11 Jul 2014 13:49:07 -0700 8049071: Add jtreg jobs to JPRT for hotspot
mikael [Fri, 11 Jul 2014 13:49:07 -0700] rev 25615
8049071: Add jtreg jobs to JPRT for hotspot Reviewed-by: dholmes, iveresov
Mon, 21 Jul 2014 21:34:29 -0700 8051010: Support @apiNote, @implSpec and @implNote in all javadoc bundles
mduigou [Mon, 21 Jul 2014 21:34:29 -0700] rev 25614
8051010: Support @apiNote, @implSpec and @implNote in all javadoc bundles Reviewed-by: alanb
Fri, 25 Jul 2014 15:38:06 -0700 Added tag jdk9-b24 for changeset 789a49ce93c8
tbell [Fri, 25 Jul 2014 15:38:06 -0700] rev 25613
Added tag jdk9-b24 for changeset 789a49ce93c8
Wed, 05 Jul 2017 19:51:31 +0200 Added tag jdk9-b24 for changeset d9ce05f36ffe
duke [Wed, 05 Jul 2017 19:51:31 +0200] rev 25612
Added tag jdk9-b24 for changeset d9ce05f36ffe
Wed, 05 Jul 2017 19:51:30 +0200 Merge jdk9-b24
duke [Wed, 05 Jul 2017 19:51:30 +0200] rev 25611
Merge
Wed, 05 Jul 2017 19:51:24 +0200 Merge
duke [Wed, 05 Jul 2017 19:51:24 +0200] rev 25610
Merge
Fri, 18 Jul 2014 08:25:38 -0700 Merge
lana [Fri, 18 Jul 2014 08:25:38 -0700] rev 25609
Merge
Thu, 17 Jul 2014 10:55:50 -0400 8051004: javac, incorrect bug id in tests for JDK-8050386
vromero [Thu, 17 Jul 2014 10:55:50 -0400] rev 25608
8051004: javac, incorrect bug id in tests for JDK-8050386 Reviewed-by: mcimadamore
Wed, 16 Jul 2014 10:47:56 -0400 8050386: javac, follow-up of fix for JDK-8049305
vromero [Wed, 16 Jul 2014 10:47:56 -0400] rev 25607
8050386: javac, follow-up of fix for JDK-8049305 Reviewed-by: mcimadamore
Tue, 15 Jul 2014 18:17:31 -0700 8050805: Add a target to langtools/make/build.xml to generate docs for test library classes
jjg [Tue, 15 Jul 2014 18:17:31 -0700] rev 25606
8050805: Add a target to langtools/make/build.xml to generate docs for test library classes Reviewed-by: ksrini
Mon, 14 Jul 2014 17:25:53 -0700 8050408: A few new Java src files for sjavac are missing copyright notices
jjg [Mon, 14 Jul 2014 17:25:53 -0700] rev 25605
8050408: A few new Java src files for sjavac are missing copyright notices Reviewed-by: mduigou
Mon, 14 Jul 2014 16:59:25 -0400 8050283: fix for JDK-8049305 should be removed
vromero [Mon, 14 Jul 2014 16:59:25 -0400] rev 25604
8050283: fix for JDK-8049305 should be removed Reviewed-by: jjg
Mon, 14 Jul 2014 11:46:31 -0700 8046824: class SJavacTestUtil and *Wrapper are redundant and should be removed
jjg [Mon, 14 Jul 2014 11:46:31 -0700] rev 25603
8046824: class SJavacTestUtil and *Wrapper are redundant and should be removed Reviewed-by: ksrini
Mon, 14 Jul 2014 13:36:30 -0400 8049305: Verification error due to a bad stackmap frame generated by javac
vromero [Mon, 14 Jul 2014 13:36:30 -0400] rev 25602
8049305: Verification error due to a bad stackmap frame generated by javac Reviewed-by: mcimadamore
Mon, 14 Jul 2014 12:03:08 +0200 8049948: Restore NonDirectSuper.java test
jlahoda [Mon, 14 Jul 2014 12:03:08 +0200] rev 25601
8049948: Restore NonDirectSuper.java test Reviewed-by: jjg
Mon, 14 Jul 2014 12:02:58 +0200 8048805: Request to investigate and update lexer error recovery in javac
jlahoda [Mon, 14 Jul 2014 12:02:58 +0200] rev 25600
8048805: Request to investigate and update lexer error recovery in javac 8046620: Further investigation needed for few error messages for negative unicode tests in langtools regression ws 8048803: javac should report complete character code in the error messages Summary: Improving error reporting and recovery in the lexer Reviewed-by: jjg, mcimadamore Contributed-by: jan.lahoda@oracle.com, sonali.goel@oracle.com
Thu, 17 Jul 2014 09:50:45 -0700 Added tag jdk9-b23 for changeset 376a52c9540c
katleman [Thu, 17 Jul 2014 09:50:45 -0700] rev 25599
Added tag jdk9-b23 for changeset 376a52c9540c
Wed, 05 Jul 2017 19:51:18 +0200 Merge
duke [Wed, 05 Jul 2017 19:51:18 +0200] rev 25598
Merge
Fri, 18 Jul 2014 08:25:26 -0700 Merge
lana [Fri, 18 Jul 2014 08:25:26 -0700] rev 25597
Merge
Tue, 15 Apr 2014 10:31:11 -0400 8035613: With active Securitymanager JAXBContext.newInstance fails
mkos [Tue, 15 Apr 2014 10:31:11 -0400] rev 25596
8035613: With active Securitymanager JAXBContext.newInstance fails Summary: Adding required doPrivileged section into JAXB classes; fix also reviewed by Iaroslav Savytskyi, Alexander Fomin Reviewed-by: mullan, mgrebac
Thu, 17 Jul 2014 09:50:31 -0700 Added tag jdk9-b23 for changeset 5598c2adf641
katleman [Thu, 17 Jul 2014 09:50:31 -0700] rev 25595
Added tag jdk9-b23 for changeset 5598c2adf641
Wed, 05 Jul 2017 19:51:12 +0200 Merge
duke [Wed, 05 Jul 2017 19:51:12 +0200] rev 25594
Merge
Fri, 18 Jul 2014 08:25:22 -0700 Merge
lana [Fri, 18 Jul 2014 08:25:22 -0700] rev 25593
Merge
Wed, 16 Jul 2014 18:17:27 -0700 8049514: FEATURE_SECURE_PROCESSING can not be turned off on a validator through SchemaFactory
joehw [Wed, 16 Jul 2014 18:17:27 -0700] rev 25592
8049514: FEATURE_SECURE_PROCESSING can not be turned off on a validator through SchemaFactory Reviewed-by: lancea
Wed, 22 Jan 2014 09:37:54 -0800 8031540: Introduce document horizon
joehw [Wed, 22 Jan 2014 09:37:54 -0800] rev 25591
8031540: Introduce document horizon Reviewed-by: lancea, dfuchs, mullan
Wed, 15 Jan 2014 17:11:43 -0800 8031330: Refactor ObjectFactory
joehw [Wed, 15 Jan 2014 17:11:43 -0800] rev 25590
8031330: Refactor ObjectFactory Reviewed-by: alanb, lancea, dfuchs, skoivu
Thu, 17 Jul 2014 09:50:28 -0700 Added tag jdk9-b23 for changeset babcd39958ce
katleman [Thu, 17 Jul 2014 09:50:28 -0700] rev 25589
Added tag jdk9-b23 for changeset babcd39958ce
Wed, 05 Jul 2017 19:51:05 +0200 Merge
duke [Wed, 05 Jul 2017 19:51:05 +0200] rev 25588
Merge
Fri, 18 Jul 2014 08:25:35 -0700 Merge
lana [Fri, 18 Jul 2014 08:25:35 -0700] rev 25587
Merge
Thu, 17 Jul 2014 16:47:06 +0530 8050964: OptimisticTypesPersistence.java should use java.util.Date instead of java.sql.Date
sundar [Thu, 17 Jul 2014 16:47:06 +0530] rev 25586
8050964: OptimisticTypesPersistence.java should use java.util.Date instead of java.sql.Date Reviewed-by: jlaskey
Tue, 15 Jul 2014 16:54:01 +0530 8050432: javax.script.filename variable should not be enumerable with nashorn engine's ENGINE_SCOPE bindings
sundar [Tue, 15 Jul 2014 16:54:01 +0530] rev 25585
8050432: javax.script.filename variable should not be enumerable with nashorn engine's ENGINE_SCOPE bindings Reviewed-by: jlaskey
Thu, 17 Jul 2014 09:50:46 -0700 Added tag jdk9-b23 for changeset 000e5d36d0e3
katleman [Thu, 17 Jul 2014 09:50:46 -0700] rev 25584
Added tag jdk9-b23 for changeset 000e5d36d0e3
Wed, 05 Jul 2017 19:50:57 +0200 Merge
duke [Wed, 05 Jul 2017 19:50:57 +0200] rev 25583
Merge
Thu, 17 Jul 2014 09:50:06 -0700 Added tag jdk9-b23 for changeset 4ddeec3198b4
katleman [Thu, 17 Jul 2014 09:50:06 -0700] rev 25582
Added tag jdk9-b23 for changeset 4ddeec3198b4
Wed, 05 Jul 2017 19:50:54 +0200 Merge
duke [Wed, 05 Jul 2017 19:50:54 +0200] rev 25581
Merge
Fri, 18 Jul 2014 08:25:58 -0700 Merge
lana [Fri, 18 Jul 2014 08:25:58 -0700] rev 25580
Merge
Wed, 16 Jul 2014 18:22:09 -0700 8049514: FEATURE_SECURE_PROCESSING can not be turned off on a validator through SchemaFactory
joehw [Wed, 16 Jul 2014 18:22:09 -0700] rev 25579
8049514: FEATURE_SECURE_PROCESSING can not be turned off on a validator through SchemaFactory Reviewed-by: lancea
Wed, 16 Jul 2014 18:06:28 -0700 8050953: Fix raw and unchecked lint warnings in sun.text.normalizer.UnicodeSet
darcy [Wed, 16 Jul 2014 18:06:28 -0700] rev 25578
8050953: Fix raw and unchecked lint warnings in sun.text.normalizer.UnicodeSet Reviewed-by: okutsu
Wed, 16 Jul 2014 17:45:13 -0700 8050798: New unchecked warning introduced in com.sun.jndi.ldap.Connection
darcy [Wed, 16 Jul 2014 17:45:13 -0700] rev 25577
8050798: New unchecked warning introduced in com.sun.jndi.ldap.Connection Reviewed-by: lancea
Wed, 16 Jul 2014 14:39:59 -0700 Merge
prr [Wed, 16 Jul 2014 14:39:59 -0700] rev 25576
Merge
Wed, 16 Jul 2014 12:48:42 -0700 Merge
prr [Wed, 16 Jul 2014 12:48:42 -0700] rev 25575
Merge
Tue, 08 Jul 2014 12:20:06 +0400 8046559: NPE when changing Windows theme
aivanov [Tue, 08 Jul 2014 12:20:06 +0400] rev 25574
8046559: NPE when changing Windows theme Reviewed-by: pchelko, anthony
Mon, 07 Jul 2014 16:05:13 -0700 8048980: Fix raw and unchecked lint warnings in platform-specific sun.font files
darcy [Mon, 07 Jul 2014 16:05:13 -0700] rev 25573
8048980: Fix raw and unchecked lint warnings in platform-specific sun.font files Reviewed-by: henryjen, prr
Mon, 07 Jul 2014 10:27:56 -0700 Merge
prr [Mon, 07 Jul 2014 10:27:56 -0700] rev 25572
Merge
Mon, 07 Jul 2014 18:56:50 +0400 8049418: [macosx] PopupMenuListener.popupMenuWillBecomeVisible is not called for empty combobox on MacOS/aqua look and feel
azvegint [Mon, 07 Jul 2014 18:56:50 +0400] rev 25571
8049418: [macosx] PopupMenuListener.popupMenuWillBecomeVisible is not called for empty combobox on MacOS/aqua look and feel Reviewed-by: anthony, pchelko
Fri, 04 Jul 2014 15:16:02 +0400 8048887: SortingFocusTraversalPolicy throws IllegalArgumentException from the sort method
ant [Fri, 04 Jul 2014 15:16:02 +0400] rev 25570
8048887: SortingFocusTraversalPolicy throws IllegalArgumentException from the sort method Reviewed-by: azvegint, alexsch
Fri, 04 Jul 2014 13:40:55 +0400 8048246: Move AWT_DnD/Clipboard/Automated functional tests to OpenJDK
yan [Fri, 04 Jul 2014 13:40:55 +0400] rev 25569
8048246: Move AWT_DnD/Clipboard/Automated functional tests to OpenJDK Reviewed-by: pchelko Contributed-by: Dmitriy Ermashov <dmitriy.ermashov@oracle.com>
Thu, 03 Jul 2014 15:24:27 -0700 8043550: Fix raw and unchecked lint warnings in javax.swing.*
darcy [Thu, 03 Jul 2014 15:24:27 -0700] rev 25568
8043550: Fix raw and unchecked lint warnings in javax.swing.* Reviewed-by: pchelko, mchung
Thu, 03 Jul 2014 18:47:42 +0400 8044371: setOneTouchExpandable functionality of JSplitPane will reduce vertical Scrollbar
anashaty [Thu, 03 Jul 2014 18:47:42 +0400] rev 25567
8044371: setOneTouchExpandable functionality of JSplitPane will reduce vertical Scrollbar Reviewed-by: alexp, alexsch
Thu, 03 Jul 2014 16:55:55 +0400 4058433: RFE: tool for creating BeanInfo template
malenkov [Thu, 03 Jul 2014 16:55:55 +0400] rev 25566
4058433: RFE: tool for creating BeanInfo template Reviewed-by: alexsch, serb
Wed, 02 Jul 2014 23:03:27 -0700 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy [Wed, 02 Jul 2014 23:03:27 -0700] rev 25565
8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.* 8042849: Fix raw and unchecked warnings in com.sun.java.swing Reviewed-by: pchelko, alexsch
Wed, 02 Jul 2014 18:57:27 +0400 8048549: [macosx] Disable usage of system menu bar if AWT is embedded in FX
pchelko [Wed, 02 Jul 2014 18:57:27 +0400] rev 25564
8048549: [macosx] Disable usage of system menu bar if AWT is embedded in FX Reviewed-by: anthony, serb
Wed, 02 Jul 2014 17:04:04 +0400 8033367: [macosx] Appletviewer was broken in jdk8 b124
pchelko [Wed, 02 Jul 2014 17:04:04 +0400] rev 25563
8033367: [macosx] Appletviewer was broken in jdk8 b124 Reviewed-by: anthony, serb
Wed, 02 Jul 2014 14:48:37 +0400 8040076: Memory leak. java.awt.List objects allowing multiple selections are not GC-ed.
mcherkas [Wed, 02 Jul 2014 14:48:37 +0400] rev 25562
8040076: Memory leak. java.awt.List objects allowing multiple selections are not GC-ed. Reviewed-by: anthony, pchelko Contributed-by: artem.malenko@oracle.com
Tue, 01 Jul 2014 12:02:30 -0700 Merge
prr [Tue, 01 Jul 2014 12:02:30 -0700] rev 25561
Merge
Tue, 01 Jul 2014 20:42:29 +0400 8048265: AWT crashes inside CCombinedSegTable::In called from Java_sun_awt_windows_WDefaultFontCharset_canConvert
serb [Tue, 01 Jul 2014 20:42:29 +0400] rev 25560
8048265: AWT crashes inside CCombinedSegTable::In called from Java_sun_awt_windows_WDefaultFontCharset_canConvert Reviewed-by: anthony, pchelko, azvegint
Tue, 01 Jul 2014 12:49:36 +0400 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan [Tue, 01 Jul 2014 12:49:36 +0400] rev 25559
8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree Reviewed-by: pchelko Contributed-by: Dmitriy Ermashov <dmitriy.ermashov@oracle.com>
Mon, 30 Jun 2014 16:23:18 +0400 8048506: [macosx] javax.swing.PopupFactory issue with null owner
dmarkov [Mon, 30 Jun 2014 16:23:18 +0400] rev 25558
8048506: [macosx] javax.swing.PopupFactory issue with null owner Reviewed-by: pchelko, alexsch
Thu, 26 Jun 2014 16:14:54 -0700 8043508: JVM core dumps with very long text in tooltip
prr [Thu, 26 Jun 2014 16:14:54 -0700] rev 25557
8043508: JVM core dumps with very long text in tooltip Reviewed-by: bae, jgodinez
Thu, 26 Jun 2014 16:10:33 -0700 8041902: When printing, polylines are not rendered as joined
prr [Thu, 26 Jun 2014 16:10:33 -0700] rev 25556
8041902: When printing, polylines are not rendered as joined Reviewed-by: bae, jgodinez
Thu, 26 Jun 2014 13:46:27 -0700 7067052: Default printer media is ignored
jgodinez [Thu, 26 Jun 2014 13:46:27 -0700] rev 25555
7067052: Default printer media is ignored Reviewed-by: bae, prr
Thu, 26 Jun 2014 13:38:38 +0400 8047799: Remove WindowClosingSupport
pchelko [Thu, 26 Jun 2014 13:38:38 +0400] rev 25554
8047799: Remove WindowClosingSupport Reviewed-by: anthony, alexsch
Thu, 26 Jun 2014 12:05:57 +0400 8048022: Fix raw and unchecked warnings in javax.accessibility
ptbrunet [Thu, 26 Jun 2014 12:05:57 +0400] rev 25553
8048022: Fix raw and unchecked warnings in javax.accessibility Reviewed-by: pchelko
Wed, 25 Jun 2014 19:10:32 +0400 8043869: [macosx] java -splash does not honor @2x hi dpi notation for retina support
alexsch [Wed, 25 Jun 2014 19:10:32 +0400] rev 25552
8043869: [macosx] java -splash does not honor @2x hi dpi notation for retina support Reviewed-by: pchelko, anthony, ksrini
Wed, 16 Jul 2014 20:43:53 +0100 8040810: Uninitialised memory in jdk/src/windows/native/java/net: net_util_md.c, TwoStacksPlainSocketImpl.c, TwoStacksPlainDatagramSocketImpl.c, DualStackPlainSocketImpl.c, DualStackPlainDatagramSocketImpl.c
msheppar [Wed, 16 Jul 2014 20:43:53 +0100] rev 25551
8040810: Uninitialised memory in jdk/src/windows/native/java/net: net_util_md.c, TwoStacksPlainSocketImpl.c, TwoStacksPlainDatagramSocketImpl.c, DualStackPlainSocketImpl.c, DualStackPlainDatagramSocketImpl.c Summary: explicitly initialze local function variables Reviewed-by: alanb
Wed, 16 Jul 2014 16:16:32 +0100 8050869: Convert runtime dependency to Applet to a static dependency in cosnaming
prappo [Wed, 16 Jul 2014 16:16:32 +0100] rev 25550
8050869: Convert runtime dependency to Applet to a static dependency in cosnaming Reviewed-by: chegar, alanb
Tue, 20 May 2014 16:02:57 +0200 8041633: [TESTBUG] java/lang/SecurityManager/CheckPackageAccess.java fails with "In j.s file, but not in golden set: com.sun.activation.registries."
mkos [Tue, 20 May 2014 16:02:57 +0200] rev 25549
8041633: [TESTBUG] java/lang/SecurityManager/CheckPackageAccess.java fails with "In j.s file, but not in golden set: com.sun.activation.registries." Summary: adding newly restricted package to golden set in the test Reviewed-by: asmotrak, coffeys, mullan
Mon, 14 Jul 2014 18:16:16 +0400 8042590: Running form URL throws NPE
pchelko [Mon, 14 Jul 2014 18:16:16 +0400] rev 25548
8042590: Running form URL throws NPE Reviewed-by: anthony, serb
Thu, 08 May 2014 19:18:36 +0400 8036861: Application can't be loaded fine,the save dialog can't show up.
pchelko [Thu, 08 May 2014 19:18:36 +0400] rev 25547
8036861: Application can't be loaded fine,the save dialog can't show up. Reviewed-by: serb, azvegint
Tue, 29 Apr 2014 06:53:38 +0800 8041535: Update certificate lists for compact1 profile
weijun [Tue, 29 Apr 2014 06:53:38 +0800] rev 25546
8041535: Update certificate lists for compact1 profile Reviewed-by: mullan, ahgross, erikj
Thu, 24 Apr 2014 16:52:45 +0100 8039520: More atomicity of atomic updates
chegar [Thu, 24 Apr 2014 16:52:45 +0100] rev 25545
8039520: More atomicity of atomic updates Reviewed-by: dl, skoivu, igerasim
Thu, 24 Apr 2014 21:09:05 +0400 8039097: Some tests fail with NPE since 7u60 b12
pchelko [Thu, 24 Apr 2014 21:09:05 +0400] rev 25544
8039097: Some tests fail with NPE since 7u60 b12 Reviewed-by: serb, alexsch
Mon, 07 Apr 2014 00:31:06 +0200 8027144: Review restriction of JAX-WS java packages going to JDK8
mkos [Mon, 07 Apr 2014 00:31:06 +0200] rev 25543
8027144: Review restriction of JAX-WS java packages going to JDK8 Summary: Restricting access to internal packages to minimise risk of security attack; fix also reviewed by Alexander Fomin Reviewed-by: mullan, mgrebac
Tue, 01 Apr 2014 11:58:42 -0400 8035004: Provider provides less service
mullan [Tue, 01 Apr 2014 11:58:42 -0400] rev 25542
8035004: Provider provides less service Reviewed-by: wetmore, skoivu
Sat, 29 Mar 2014 23:24:26 +0000 8031346: Enhance RSA key handling
xuelei [Sat, 29 Mar 2014 23:24:26 +0000] rev 25541
8031346: Enhance RSA key handling Reviewed-by: ahgross, ascarpino, asmotrak, robm, weijun, wetmore
Thu, 24 Apr 2014 21:04:16 +0400 8037162: More robust DH exchanges
xuelei [Thu, 24 Apr 2014 21:04:16 +0400] rev 25540
8037162: More robust DH exchanges Reviewed-by: weijun, asmotrak, ahgross, robm
Sat, 22 Mar 2014 12:51:48 -0400 8036571: (process) Process process arguments carefully
rriggs [Sat, 22 Mar 2014 12:51:48 -0400] rev 25539
8036571: (process) Process process arguments carefully Reviewed-by: alanb, ahgross, jeff, robm
Sat, 22 Mar 2014 02:21:11 +0400 8037046: Validate libraries to be loaded
kizune [Sat, 22 Mar 2014 02:21:11 +0400] rev 25538
8037046: Validate libraries to be loaded Reviewed-by: ksrini, ahgross
Mon, 14 Jul 2014 13:57:44 +0400 8035788: Provide more consistency for lookups
twisti [Mon, 14 Jul 2014 13:57:44 +0400] rev 25537
8035788: Provide more consistency for lookups Reviewed-by: jrose, vlivanov, ahgross
Thu, 13 Mar 2014 11:49:24 +0400 8035699: File choosers should be choosier
malenkov [Thu, 13 Mar 2014 11:49:24 +0400] rev 25536
8035699: File choosers should be choosier Reviewed-by: alexsch, art, skoivu
Thu, 24 Apr 2014 21:00:52 +0400 8033055: Issues in 2d
dbuck [Thu, 24 Apr 2014 21:00:52 +0400] rev 25535
8033055: Issues in 2d Reviewed-by: bae, prr, mschoene
Fri, 07 Mar 2014 10:15:36 +0100 8029755: Enhance subject class
jbachorik [Fri, 07 Mar 2014 10:15:36 +0100] rev 25534
8029755: Enhance subject class Reviewed-by: sla, dfuchs, hawtin
Mon, 03 Mar 2014 14:14:10 -0800 8035009: Make Proxy representations consistent
mchung [Mon, 03 Mar 2014 14:14:10 -0800] rev 25533
8035009: Make Proxy representations consistent Reviewed-by: ahgross, jfranck
Thu, 24 Apr 2014 20:58:00 +0400 8032960: Running forms URL throws NullPointerException in Javaconsole.
pchelko [Thu, 24 Apr 2014 20:58:00 +0400] rev 25532
8032960: Running forms URL throws NullPointerException in Javaconsole. Reviewed-by: anthony, serb
Fri, 28 Feb 2014 10:39:03 +0000 8034272: Do not cram data into CRAM arrays
vinnie [Fri, 28 Feb 2014 10:39:03 +0000] rev 25531
8034272: Do not cram data into CRAM arrays Reviewed-by: mullan, ahgross
Wed, 26 Feb 2014 18:56:33 +0000 8031340: Better TLS/EC management
valeriep [Wed, 26 Feb 2014 18:56:33 +0000] rev 25530
8031340: Better TLS/EC management Summary: Make sure private key structure is freed for EC key pair generation Reviewed-by: vinnie
Tue, 25 Feb 2014 19:48:47 +0400 8028285: RMI Thread can no longer call out to AWT
pchelko [Tue, 25 Feb 2014 19:48:47 +0400] rev 25529
8028285: RMI Thread can no longer call out to AWT Reviewed-by: art, serb, ddehaven
Mon, 24 Feb 2014 11:03:49 -0800 8034267: Probabilistic native crash`
prr [Mon, 24 Feb 2014 11:03:49 -0800] rev 25528
8034267: Probabilistic native crash` Reviewed-by: bae, serb, mschoene
Mon, 03 Feb 2014 21:48:46 +0400 8029177: [Parfait] warnings from b117 for jdk.src.share.native.com.sun.java.util.jar: JNI exception pending
kizune [Mon, 03 Feb 2014 21:48:46 +0400] rev 25527
8029177: [Parfait] warnings from b117 for jdk.src.share.native.com.sun.java.util.jar: JNI exception pending Summary: Additional review by Chris Ries Reviewed-by: jfranck, ksrini
Wed, 16 Jul 2014 14:35:48 +0200 8044047: Missing null pointer checks for streams
psandoz [Wed, 16 Jul 2014 14:35:48 +0200] rev 25526
8044047: Missing null pointer checks for streams Reviewed-by: dfuchs Contributed-by: paul.sandoz@oracle.com, ivan.gerasimov@oracle.com
Wed, 16 Jul 2014 08:07:38 -0400 Merge
mullan [Wed, 16 Jul 2014 08:07:38 -0400] rev 25525
Merge
Wed, 16 Jul 2014 08:06:40 -0400 4867890: Clarify the return value/exception for java.security.SignedObject.verify
mullan [Wed, 16 Jul 2014 08:06:40 -0400] rev 25524
4867890: Clarify the return value/exception for java.security.SignedObject.verify Reviewed-by: weijun
Wed, 16 Jul 2014 13:02:24 +0400 8035975: Pattern.compile(String, int) fails to throw IllegalArgumentException
igerasim [Wed, 16 Jul 2014 13:02:24 +0400] rev 25523
8035975: Pattern.compile(String, int) fails to throw IllegalArgumentException Reviewed-by: sherman
Tue, 15 Jul 2014 11:22:14 -0700 8049892: Replace uses of 'new Integer()' with appropriate alternative across core classes
prr [Tue, 15 Jul 2014 11:22:14 -0700] rev 25522
8049892: Replace uses of 'new Integer()' with appropriate alternative across core classes Reviewed-by: psandoz, prr Contributed-by: otaviopolianasantana@gmail.com
Tue, 15 Jul 2014 10:21:07 -0700 Merge
amurillo [Tue, 15 Jul 2014 10:21:07 -0700] rev 25521
Merge
Fri, 11 Jul 2014 21:20:11 -0700 Merge
amurillo [Fri, 11 Jul 2014 21:20:11 -0700] rev 25520
Merge
Fri, 11 Jul 2014 17:04:52 -0700 Merge
amurillo [Fri, 11 Jul 2014 17:04:52 -0700] rev 25519
Merge
Fri, 11 Jul 2014 13:02:40 -0700 Merge
amurillo [Fri, 11 Jul 2014 13:02:40 -0700] rev 25518
Merge
Wed, 02 Jul 2014 16:47:49 -0400 8047737: Move array component mirror to instance of java/lang/Class
coleenp [Wed, 02 Jul 2014 16:47:49 -0400] rev 25517
8047737: Move array component mirror to instance of java/lang/Class Summary: Add field in java.lang.Class for componentType to simplify oop processing in JVM Reviewed-by: fparain, twisti, mchung
Fri, 27 Jun 2014 14:21:31 -0700 Merge
amurillo [Fri, 27 Jun 2014 14:21:31 -0700] rev 25516
Merge
Thu, 26 Jun 2014 03:26:20 -0700 8048185: [TESTBUG] need a JTREG test for the fix of JDK-8042796 (OLD and/or OBSOLETE method(s) found)
sspitsyn [Thu, 26 Jun 2014 03:26:20 -0700] rev 25515
8048185: [TESTBUG] need a JTREG test for the fix of JDK-8042796 (OLD and/or OBSOLETE method(s) found) Summary: Need to integrate the jtreg unit test for the fixed bug JDK-8042796 Reviewed-by: dcubed, coleenp Contributed-by: serguei.spitsyn@oracle.com
Tue, 15 Jul 2014 16:46:43 +0100 8048175: Remove redundant use of reflection on core classes from JNDI
prappo [Tue, 15 Jul 2014 16:46:43 +0100] rev 25514
8048175: Remove redundant use of reflection on core classes from JNDI Reviewed-by: msheppar, vinnie
Thu, 10 Jul 2014 16:26:38 +0200 8042778: Getting all visible methods in ReferenceTypeImpl is slow
jmanson [Thu, 10 Jul 2014 16:26:38 +0200] rev 25513
8042778: Getting all visible methods in ReferenceTypeImpl is slow Reviewed-by: egahlin, dholmes
Thu, 17 Jul 2014 09:50:33 -0700 Added tag jdk9-b23 for changeset 4bc08677eca7
katleman [Thu, 17 Jul 2014 09:50:33 -0700] rev 25512
Added tag jdk9-b23 for changeset 4bc08677eca7
Wed, 05 Jul 2017 19:50:37 +0200 Merge
duke [Wed, 05 Jul 2017 19:50:37 +0200] rev 25511
Merge
Fri, 18 Jul 2014 08:25:40 -0700 Merge
lana [Fri, 18 Jul 2014 08:25:40 -0700] rev 25510
Merge
Mon, 14 Jul 2014 13:31:03 +0400 8043454: Test case for 8037157 should not throw a VerifyError
hseigel [Mon, 14 Jul 2014 13:31:03 +0400] rev 25509
8043454: Test case for 8037157 should not throw a VerifyError Summary: Don't throw VerifyError if method is NULL. Reviewed-by: acorn, lfoltan, mschoene
Wed, 07 May 2014 19:34:48 +0400 8037157: Verify <init> call
hseigel [Wed, 07 May 2014 19:34:48 +0400] rev 25508
8037157: Verify <init> call Summary: Check for null method Reviewed-by: coleenp, acorn, mschoene
Mon, 14 Jul 2014 13:15:06 +0400 8037167: Better method signature resolution
acorn [Mon, 14 Jul 2014 13:15:06 +0400] rev 25507
8037167: Better method signature resolution Reviewed-by: mschoene, hseigel, lfoltan
Mon, 14 Jul 2014 13:01:34 +0400 8036800: Attribute OOM to correct part of code
hseigel [Mon, 14 Jul 2014 13:01:34 +0400] rev 25506
8036800: Attribute OOM to correct part of code Summary: checks that the attribute_length does not exceed the length of remaining data in the class file Reviewed-by: coleenp, ahgross
Mon, 14 Jul 2014 12:45:14 +0400 8035119: Fix exceptions to bytecode verification
hseigel [Mon, 14 Jul 2014 12:45:14 +0400] rev 25505
8035119: Fix exceptions to bytecode verification Summary: Prevent ctor calls to super() and this() from avoidable code (try blocks, if stmts, etc.) Reviewed-by: coleenp, acorn, mschoene
Wed, 07 May 2014 19:21:52 +0400 8032536: JVM resolves wrong method in some unusual cases
hseigel [Wed, 07 May 2014 19:21:52 +0400] rev 25504
8032536: JVM resolves wrong method in some unusual cases Summary: Handle package private case Reviewed-by: coleenp, acorn, jdn
Mon, 14 Jul 2014 12:43:50 +0400 8030763: Validate global memory allocation
hseigel [Mon, 14 Jul 2014 12:43:50 +0400] rev 25503
8030763: Validate global memory allocation Summary: Add length checks where necessary Reviewed-by: coleenp, mschoene
Fri, 11 Jul 2014 09:14:21 -0700 Merge
amurillo [Fri, 11 Jul 2014 09:14:21 -0700] rev 25502
Merge
Fri, 11 Jul 2014 05:59:08 -0700 Merge
jmasa [Fri, 11 Jul 2014 05:59:08 -0700] rev 25501
Merge
Wed, 09 Jul 2014 16:44:30 +0200 8049426: Minor cleanups after G1 class unloading
ehelin [Wed, 09 Jul 2014 16:44:30 +0200] rev 25500
8049426: Minor cleanups after G1 class unloading Reviewed-by: stefank, brutisso
Fri, 11 Jul 2014 02:34:11 -0700 Merge
roland [Fri, 11 Jul 2014 02:34:11 -0700] rev 25499
Merge
Wed, 09 Jul 2014 21:56:16 +0000 8047734: Backout use of -Og
mduigou [Wed, 09 Jul 2014 21:56:16 +0000] rev 25498
8047734: Backout use of -Og Reviewed-by: iveresov
Wed, 09 Jul 2014 02:50:46 -0700 Merge
roland [Wed, 09 Jul 2014 02:50:46 -0700] rev 25497
Merge
Mon, 23 Jun 2014 13:33:23 +0200 8046289: compiler/6340864/TestLongVect.java timeout with
rbackman [Mon, 23 Jun 2014 13:33:23 +0200] rev 25496
8046289: compiler/6340864/TestLongVect.java timeout with Reviewed-by: iveresov, vlivanov
Thu, 03 Jul 2014 08:46:44 +0200 8022968: Some codecache allocation failures don't result in invoking the sweeper
thartmann [Thu, 03 Jul 2014 08:46:44 +0200] rev 25495
8022968: Some codecache allocation failures don't result in invoking the sweeper Summary: Add calls to CompileBroker::handle_full_code_cache() or fail gracefully whenever allocation in the code cache fails. Reviewed-by: iveresov, vlivanov
Wed, 02 Jul 2014 22:54:18 +0200 8046542: [I.finalize() calls from methods compiled by C1 do not cause IllegalAccessError on Sparc
roland [Wed, 02 Jul 2014 22:54:18 +0200] rev 25494
8046542: [I.finalize() calls from methods compiled by C1 do not cause IllegalAccessError on Sparc Summary: call to Object.finalize() sometimes allowed by compilers on array type Reviewed-by: iveresov, vlivanov
Thu, 10 Jul 2014 13:39:18 -0700 Merge
jmasa [Thu, 10 Jul 2014 13:39:18 -0700] rev 25493
Merge
Mon, 07 Jul 2014 10:12:40 +0200 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank [Mon, 07 Jul 2014 10:12:40 +0200] rev 25492
8049421: G1 Class Unloading after completing a concurrent mark cycle Reviewed-by: tschatzl, ehelin, brutisso, coleenp, roland, iveresov Contributed-by: stefan.karlsson@oracle.com, mikael.gerdin@oracle.com
Mon, 07 Jul 2014 12:37:11 +0200 8049420: Backout 8048248 to correct attribution
stefank [Mon, 07 Jul 2014 12:37:11 +0200] rev 25491
8049420: Backout 8048248 to correct attribution Reviewed-by: ehelin, brutisso
Mon, 07 Jul 2014 10:12:40 +0200 8048248: G1 Class Unloading after completing a concurrent mark cycle
stefank [Mon, 07 Jul 2014 10:12:40 +0200] rev 25490
8048248: G1 Class Unloading after completing a concurrent mark cycle Reviewed-by: tschatzl, ehelin, brutisso, coleenp, roland, iveresov
Mon, 07 Jul 2014 10:18:33 +0200 8049411: Minimal VM build broken after gcId.cpp was added
stefank [Mon, 07 Jul 2014 10:18:33 +0200] rev 25489
8049411: Minimal VM build broken after gcId.cpp was added Reviewed-by: brutisso, ehelin, tschatzl, dholmes
Wed, 02 Jul 2014 17:24:18 -0700 Merge
jmasa [Wed, 02 Jul 2014 17:24:18 -0700] rev 25488
Merge
Wed, 02 Jul 2014 11:13:58 +0200 Merge
ehelin [Wed, 02 Jul 2014 11:13:58 +0200] rev 25487
Merge
Tue, 01 Jul 2014 09:03:55 +0200 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank [Tue, 01 Jul 2014 09:03:55 +0200] rev 25486
8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator Reviewed-by: iveresov, mgerdin
Thu, 26 Jun 2014 13:30:43 -0700 8034246: remove CMS and ParNew adaptive size policy code
jcoomes [Thu, 26 Jun 2014 13:30:43 -0700] rev 25485
8034246: remove CMS and ParNew adaptive size policy code Reviewed-by: tschatzl, jwilhelm, mgerdin
Thu, 26 Jun 2014 16:01:07 +0200 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl [Thu, 26 Jun 2014 16:01:07 +0200] rev 25484
8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate Summary: When G1 is run with -XX:-G1DeferredRSUpdate, the VM crashes because of wrong initialization order of member variables. The change makes the initalization explicit, not relying on initialization order any more. Reviewed-by: brutisso, mgerdin
Thu, 26 Jun 2014 15:48:05 +0200 8035401: Fix visibility of G1ParScanThreadState members
tschatzl [Thu, 26 Jun 2014 15:48:05 +0200] rev 25483
8035401: Fix visibility of G1ParScanThreadState members Summary: After JDK-8035400 there were several opportunities to fix the visibility of several members of the G1ParScanThreadState class. Reviewed-by: brutisso, mgerdin
Thu, 26 Jun 2014 15:45:07 +0200 8035400: Move G1ParScanThreadState into its own files
tschatzl [Thu, 26 Jun 2014 15:45:07 +0200] rev 25482
8035400: Move G1ParScanThreadState into its own files Summary: Extract the G1ParScanThreadState class from G1CollectedHeap.?pp into its own files. Reviewed-by: brutisso, mgerdin
Thu, 26 Jun 2014 11:36:58 +0200 8047818: G1 HeapRegions can no longer be ContiguousSpaces
mgerdin [Thu, 26 Jun 2014 11:36:58 +0200] rev 25481
8047818: G1 HeapRegions can no longer be ContiguousSpaces Summary: Change parent of G1OffsetTableContigSpace to CompactibleSpace, reimplement missing functionality Reviewed-by: stefank, jmasa, tschatzl
Thu, 26 Jun 2014 13:20:18 +0200 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin [Thu, 26 Jun 2014 13:20:18 +0200] rev 25480
8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes Reviewed-by: stefank, brutisso, tschatzl
Thu, 26 Jun 2014 10:00:00 +0200 8047821: G1 Does not use the save_marks functionality as intended
mgerdin [Thu, 26 Jun 2014 10:00:00 +0200] rev 25479
8047821: G1 Does not use the save_marks functionality as intended Summary: Rename save_marks to record_top_and_timestamp and remove som unused but related methods Reviewed-by: stefank, ehelin
Tue, 08 Jul 2014 13:52:29 -0400 8048128: Fix for Solaris Studio C++ 5.13, CHECK_UNHANDLED_OOPS breaks PPC build.
lfoltan [Tue, 08 Jul 2014 13:52:29 -0400] rev 25478
8048128: Fix for Solaris Studio C++ 5.13, CHECK_UNHANDLED_OOPS breaks PPC build. Summary: Changes to successfully compile class oop within oops/oopsHierarchy.hpp for PPC build (with gcc 4.1.2). Reviewed-by: dholmes, hseigel
Tue, 08 Jul 2014 08:04:06 -0700 8047714: Fix for JDK-6546236 made Solaris os::yield() a no-op
fparain [Tue, 08 Jul 2014 08:04:06 -0700] rev 25477
8047714: Fix for JDK-6546236 made Solaris os::yield() a no-op Reviewed-by: hseigel, lfoltan
Mon, 07 Jul 2014 12:08:07 -0400 8048620: Remove unneeded/obsolete -source/-target options in hotspot tests
darcy [Mon, 07 Jul 2014 12:08:07 -0400] rev 25476
8048620: Remove unneeded/obsolete -source/-target options in hotspot tests Reviewed-by: dholmes, hseigel
Sat, 05 Jul 2014 20:05:29 +0200 8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun [Sat, 05 Jul 2014 20:05:29 +0200] rev 25475
8049324: interpretedVFrame::expressions to index oopmap correctly Reviewed-by: sspitsyn, coleenp
Thu, 03 Jul 2014 16:55:57 -0700 Merge
dcubed [Thu, 03 Jul 2014 16:55:57 -0700] rev 25474
Merge
Thu, 03 Jul 2014 21:37:31 +0200 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun [Thu, 03 Jul 2014 21:37:31 +0200] rev 25473
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!" Reviewed-by: coleenp, sspitsyn
Thu, 03 Jul 2014 11:07:51 -0700 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed [Thu, 03 Jul 2014 11:07:51 -0700] rev 25472
8047104: cleanup misc issues prior to Contended Locking reorder and cache Summary: Checkpoint misc cleanups for Contended Locking prior to first optimization bucket. Reviewed-by: dholmes, sspitsyn, dice
Thu, 03 Jul 2014 09:16:56 -0700 8046818: Hotspot build system looking for sdt.h in the wrong place
mikael [Thu, 03 Jul 2014 09:16:56 -0700] rev 25471
8046818: Hotspot build system looking for sdt.h in the wrong place Reviewed-by: sla, dholmes
Thu, 03 Jul 2014 10:25:42 -0400 8026894: Improve VerifyError message about overriding a final method
hseigel [Thu, 03 Jul 2014 10:25:42 -0400] rev 25470
8026894: Improve VerifyError message about overriding a final method Summary: Add full class name to error message. Reviewed-by: fparain, zgu, lfoltan
Wed, 02 Jul 2014 20:20:45 -0400 Merge
coleenp [Wed, 02 Jul 2014 20:20:45 -0400] rev 25469
Merge
Thu, 26 Jun 2014 16:05:15 +0200 8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz [Thu, 26 Jun 2014 16:05:15 +0200] rev 25468
8048241: Introduce umbrella header os.inline.hpp and clean up includes Reviewed-by: coleenp, dholmes, lfoltan
Wed, 02 Jul 2014 20:56:54 +0000 Merge
dcubed [Wed, 02 Jul 2014 20:56:54 +0000] rev 25467
Merge
Wed, 02 Jul 2014 13:50:16 -0700 8048232: Fix for 8046471 breaks PPC64 build
simonis [Wed, 02 Jul 2014 13:50:16 -0700] rev 25466
8048232: Fix for 8046471 breaks PPC64 build Reviewed-by: mikael, dcubed
Wed, 02 Jul 2014 15:22:18 -0400 8047737: Move array component mirror to instance of java/lang/Class
coleenp [Wed, 02 Jul 2014 15:22:18 -0400] rev 25465
8047737: Move array component mirror to instance of java/lang/Class Summary: Add field in java.lang.Class for componentType to simplify oop processing in JVM Reviewed-by: fparain, twisti
Wed, 02 Jul 2014 15:17:11 +0200 Merge
sla [Wed, 02 Jul 2014 15:17:11 +0200] rev 25464
Merge
Thu, 17 Jul 2014 09:50:15 -0700 Added tag jdk9-b23 for changeset dce1ebc0a015
katleman [Thu, 17 Jul 2014 09:50:15 -0700] rev 25463
Added tag jdk9-b23 for changeset dce1ebc0a015
Fri, 18 Jul 2014 08:25:14 -0700 Merge
lana [Fri, 18 Jul 2014 08:25:14 -0700] rev 25462
Merge
Tue, 15 Jul 2014 21:45:50 -0700 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael [Tue, 15 Jul 2014 21:45:50 -0700] rev 25461
8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level Reviewed-by: dholmes, mduigou
Fri, 11 Jul 2014 21:07:48 -0700 Merge
amurillo [Fri, 11 Jul 2014 21:07:48 -0700] rev 25460
Merge
Wed, 09 Jul 2014 21:55:52 +0000 8047734: Backout use of -Og
mduigou [Wed, 09 Jul 2014 21:55:52 +0000] rev 25459
8047734: Backout use of -Og Reviewed-by: iveresov
Thu, 17 Jul 2014 09:50:04 -0700 Added tag jdk9-b23 for changeset 740e05fd7953
katleman [Thu, 17 Jul 2014 09:50:04 -0700] rev 25458
Added tag jdk9-b23 for changeset 740e05fd7953
Wed, 05 Jul 2017 19:50:07 +0200 Added tag jdk9-b23 for changeset 39cfdc2dcaf3
duke [Wed, 05 Jul 2017 19:50:07 +0200] rev 25457
Added tag jdk9-b23 for changeset 39cfdc2dcaf3
Wed, 05 Jul 2017 19:50:06 +0200 Merge jdk9-b23
duke [Wed, 05 Jul 2017 19:50:06 +0200] rev 25456
Merge
Wed, 05 Jul 2017 19:50:00 +0200 Merge
duke [Wed, 05 Jul 2017 19:50:00 +0200] rev 25455
Merge
Sun, 15 Jun 2014 08:41:57 -0700 8039028: [javadoc] refactor the usage of Util.java
ksrini [Sun, 15 Jun 2014 08:41:57 -0700] rev 25454
8039028: [javadoc] refactor the usage of Util.java Reviewed-by: jjg
Sat, 12 Jul 2014 07:32:28 -0700 8050106: JavaCompiler relies on inappropriate result from comparison
jjg [Sat, 12 Jul 2014 07:32:28 -0700] rev 25453
8050106: JavaCompiler relies on inappropriate result from comparison Reviewed-by: darcy
Fri, 11 Jul 2014 18:51:32 -0700 8048806: Javadoc errors out on some valid HTML tags
jjg [Fri, 11 Jul 2014 18:51:32 -0700] rev 25452
8048806: Javadoc errors out on some valid HTML tags Reviewed-by: bpatel
Fri, 11 Jul 2014 13:57:32 -0700 8050086: jdk.Exported is missing @return
darcy [Fri, 11 Jul 2014 13:57:32 -0700] rev 25451
8050086: jdk.Exported is missing @return Reviewed-by: jjg
Fri, 11 Jul 2014 06:52:04 -0700 8049396: [javadoc] add more class-use test cases
ksrini [Fri, 11 Jul 2014 06:52:04 -0700] rev 25450
8049396: [javadoc] add more class-use test cases Reviewed-by: jjg
Sun, 29 Jun 2014 17:13:55 -0700 8049393: [javadoc] parameters are not sorted correctly
ksrini [Sun, 29 Jun 2014 17:13:55 -0700] rev 25449
8049393: [javadoc] parameters are not sorted correctly Reviewed-by: jjg
Thu, 10 Jul 2014 16:03:45 -0700 8030610: replace test/tools/javac/versions/check.sh
ntoda [Thu, 10 Jul 2014 16:03:45 -0700] rev 25448
8030610: replace test/tools/javac/versions/check.sh Reviewed-by: jjg
Thu, 10 Jul 2014 14:06:04 -0700 Merge
lana [Thu, 10 Jul 2014 14:06:04 -0700] rev 25447
Merge
Thu, 10 Jul 2014 12:39:26 -0700 Merge
lana [Thu, 10 Jul 2014 12:39:26 -0700] rev 25446
Merge
Thu, 10 Jul 2014 13:57:27 -0700 8011044: Remove support for 1.5 and earlier source and target options
ntoda [Thu, 10 Jul 2014 13:57:27 -0700] rev 25445
8011044: Remove support for 1.5 and earlier source and target options Reviewed-by: darcy, jjg Contributed-by: neil.toda@oracle.com, brian.goetz@oracle.com
Wed, 09 Jul 2014 10:49:32 -0400 8033483: Should ignore nested lambda bodies during overload resolution
vromero [Wed, 09 Jul 2014 10:49:32 -0400] rev 25444
8033483: Should ignore nested lambda bodies during overload resolution Reviewed-by: mcimadamore, dlsmith
Wed, 09 Jul 2014 16:32:05 +0200 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda [Wed, 09 Jul 2014 16:32:05 +0200] rev 25443
8031569: Refactor javac scope implementation to enable lazy imports Summary: Introducing an internal API for Scope; rewriting ImportScopes to extend CompoundScopes. Reviewed-by: mcimadamore, jjg, jfranck Contributed-by: maurizio.cimadamore@oracle.com, jan.lahoda@oracle.com
Tue, 08 Jul 2014 18:26:34 -0700 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung [Tue, 08 Jul 2014 18:26:34 -0700] rev 25442
8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API 8031092: jdeps does not recognize --help option. 8048063: (jdeps) Add filtering capability Reviewed-by: alanb, dfuchs
Tue, 08 Jul 2014 15:42:04 +0100 8043926: javac, code valid in 7 is not compiling for 8
mcimadamore [Tue, 08 Jul 2014 15:42:04 +0100] rev 25441
8043926: javac, code valid in 7 is not compiling for 8 Summary: type-containment doesn't handle inference variables correctly Reviewed-by: vromero, dlsmith
Tue, 08 Jul 2014 15:13:16 +0200 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda [Tue, 08 Jul 2014 15:13:16 +0200] rev 25440
8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType Summary: Enhancing TreeMaker.Type(Type t) with support for UnionClassType and IntersectionClassType. Reviewed-by: vromero, rfield Contributed-by: robert.field@oracle.com, jan.lahoda@oracle.com
Mon, 07 Jul 2014 13:39:31 -0700 8044080: .out files for unicode, implicitThis and importChecks tests in tools/javac dir
sogoel [Mon, 07 Jul 2014 13:39:31 -0700] rev 25439
8044080: .out files for unicode, implicitThis and importChecks tests in tools/javac dir Reviewed-by: jjg
Mon, 07 Jul 2014 12:55:00 -0700 8049491: Remove three auxilary files in tools/javac/enum dir
sogoel [Mon, 07 Jul 2014 12:55:00 -0700] rev 25438
8049491: Remove three auxilary files in tools/javac/enum dir Reviewed-by: jjg
Mon, 07 Jul 2014 12:44:20 -0700 8046618: .out files for enum tests in tools/javac/dir
sogoel [Mon, 07 Jul 2014 12:44:20 -0700] rev 25437
8046618: .out files for enum tests in tools/javac/dir Reviewed-by: jjg
Mon, 07 Jul 2014 12:36:45 -0700 8046635: .out files for enum tests in tools/javac/dir
sogoel [Mon, 07 Jul 2014 12:36:45 -0700] rev 25436
8046635: .out files for enum tests in tools/javac/dir Reviewed-by: jjg
Fri, 04 Jul 2014 16:34:44 +0100 8049075: javac, wildcards and generic vararg method invocation not accepted
vromero [Fri, 04 Jul 2014 16:34:44 +0100] rev 25435
8049075: javac, wildcards and generic vararg method invocation not accepted Reviewed-by: mcimadamore
Fri, 04 Jul 2014 10:52:22 +0100 8042261: Implement classfile tests for Deprecated attribute.
jjg [Fri, 04 Jul 2014 10:52:22 +0100] rev 25434
8042261: Implement classfile tests for Deprecated attribute. Reviewed-by: jjg, anazarov, shurailine
Thu, 03 Jul 2014 15:48:23 -0700 8049284: Missing bug id in test/tools/javac/varargs/warning/Warn*
sogoel [Thu, 03 Jul 2014 15:48:23 -0700] rev 25433
8049284: Missing bug id in test/tools/javac/varargs/warning/Warn* Reviewed-by: darcy
Thu, 10 Jul 2014 12:13:35 -0700 Added tag jdk9-b22 for changeset cf09dddb6caf
katleman [Thu, 10 Jul 2014 12:13:35 -0700] rev 25432
Added tag jdk9-b22 for changeset cf09dddb6caf
Wed, 05 Jul 2017 19:49:51 +0200 Merge
duke [Wed, 05 Jul 2017 19:49:51 +0200] rev 25431
Merge
Thu, 10 Jul 2014 12:39:35 -0700 Merge
lana [Thu, 10 Jul 2014 12:39:35 -0700] rev 25430
Merge
Wed, 09 Jul 2014 13:55:07 +0200 8044656: Update JAX-WS RI integration to latest version
mkos [Wed, 09 Jul 2014 13:55:07 +0200] rev 25429
8044656: Update JAX-WS RI integration to latest version Summary: JAX-WS RI upgrade from 2.2.10-b140228.1436 to 2.2.11-b140602.1731 Reviewed-by: lancea
Thu, 10 Jul 2014 12:13:24 -0700 Added tag jdk9-b22 for changeset 929007aaf883
katleman [Thu, 10 Jul 2014 12:13:24 -0700] rev 25428
Added tag jdk9-b22 for changeset 929007aaf883
Wed, 05 Jul 2017 19:49:46 +0200 Merge
duke [Wed, 05 Jul 2017 19:49:46 +0200] rev 25427
Merge
Thu, 10 Jul 2014 12:13:22 -0700 Added tag jdk9-b22 for changeset d501c3d3dab3
katleman [Thu, 10 Jul 2014 12:13:22 -0700] rev 25426
Added tag jdk9-b22 for changeset d501c3d3dab3
Wed, 05 Jul 2017 19:49:42 +0200 Merge
duke [Wed, 05 Jul 2017 19:49:42 +0200] rev 25425
Merge
Thu, 10 Jul 2014 12:41:23 -0700 Merge
lana [Thu, 10 Jul 2014 12:41:23 -0700] rev 25424
Merge
Tue, 08 Jul 2014 13:13:31 +0200 8047067: all eval arguments need to be copied in Lower
attila [Tue, 08 Jul 2014 13:13:31 +0200] rev 25423
8047067: all eval arguments need to be copied in Lower Reviewed-by: lagergren, sundar
Tue, 08 Jul 2014 16:30:42 +0530 8049524: Global object initialization via javax.script API should be minimal
sundar [Tue, 08 Jul 2014 16:30:42 +0530] rev 25422
8049524: Global object initialization via javax.script API should be minimal Reviewed-by: attila, hannesw
Fri, 04 Jul 2014 20:15:41 +0530 8044760: Avoid PropertyMap duplicate for global instances
sundar [Fri, 04 Jul 2014 20:15:41 +0530] rev 25421
8044760: Avoid PropertyMap duplicate for global instances Reviewed-by: attila, hannesw
Fri, 04 Jul 2014 15:56:53 +0530 8049086: Minor API convenience functions on "Java" object
sundar [Fri, 04 Jul 2014 15:56:53 +0530] rev 25420
8049086: Minor API convenience functions on "Java" object Reviewed-by: attila, hannesw
Thu, 10 Jul 2014 12:13:37 -0700 Added tag jdk9-b22 for changeset aa64bc1a97d9
katleman [Thu, 10 Jul 2014 12:13:37 -0700] rev 25419
Added tag jdk9-b22 for changeset aa64bc1a97d9
Wed, 05 Jul 2017 19:49:37 +0200 Merge
duke [Wed, 05 Jul 2017 19:49:37 +0200] rev 25418
Merge
Thu, 10 Jul 2014 12:12:59 -0700 Added tag jdk9-b22 for changeset c06edfaae13b
katleman [Thu, 10 Jul 2014 12:12:59 -0700] rev 25417
Added tag jdk9-b22 for changeset c06edfaae13b
Wed, 05 Jul 2017 19:49:33 +0200 Merge
duke [Wed, 05 Jul 2017 19:49:33 +0200] rev 25416
Merge
Sun, 13 Jul 2014 15:24:03 +0100 8050118: Windows policy file missing semicolon
vinnie [Sun, 13 Jul 2014 15:24:03 +0100] rev 25415
8050118: Windows policy file missing semicolon Reviewed-by: chegar
Sat, 12 Jul 2014 10:52:51 -0700 8050105: test sun/rmi/rmic/minimizeWrapperInstances/run.sh fails
smarks [Sat, 12 Jul 2014 10:52:51 -0700] rev 25414
8050105: test sun/rmi/rmic/minimizeWrapperInstances/run.sh fails Reviewed-by: lancea, mduigou, darcy
Sat, 12 Jul 2014 04:15:56 +0400 6904367: (coll) IdentityHashMap is resized before exceeding the expected maximum size
igerasim [Sat, 12 Jul 2014 04:15:56 +0400] rev 25413
6904367: (coll) IdentityHashMap is resized before exceeding the expected maximum size Reviewed-by: plevart, martin
Fri, 11 Jul 2014 14:06:42 -0700 8050051: Remove unneeded/obsolete -source/-target options in shell tests
darcy [Fri, 11 Jul 2014 14:06:42 -0700] rev 25412
8050051: Remove unneeded/obsolete -source/-target options in shell tests Reviewed-by: alanb
Fri, 11 Jul 2014 14:53:55 +0100 8049884: Reduce possible timing noise in com/sun/jndi/ldap/LdapTimeoutTest.java
prappo [Fri, 11 Jul 2014 14:53:55 +0100] rev 25411
8049884: Reduce possible timing noise in com/sun/jndi/ldap/LdapTimeoutTest.java Reviewed-by: vinnie
Thu, 10 Jul 2014 22:57:56 -0700 8049736: Fix raw and unchecked lint warnings in sun.tracing
darcy [Thu, 10 Jul 2014 22:57:56 -0700] rev 25410
8049736: Fix raw and unchecked lint warnings in sun.tracing Reviewed-by: mchung
Fri, 11 Jul 2014 09:17:10 +0800 8049936: Update the CheckBlacklistedCerts.java test to find new location of blacklisted.certs.pem
weijun [Fri, 11 Jul 2014 09:17:10 +0800] rev 25409
8049936: Update the CheckBlacklistedCerts.java test to find new location of blacklisted.certs.pem Reviewed-by: xuelei
Thu, 10 Jul 2014 22:44:58 +0000 8043406: Change default policy for JCE providers to run with as few privileges as possible
valeriep [Thu, 10 Jul 2014 22:44:58 +0000] rev 25408
8043406: Change default policy for JCE providers to run with as few privileges as possible Summary: Provide default permissions for crypto providers Reviewed-by: mullan, vinnie
Thu, 10 Jul 2014 12:40:48 -0700 Merge
lana [Thu, 10 Jul 2014 12:40:48 -0700] rev 25407
Merge
Tue, 17 Jun 2014 13:57:01 +0100 8047062: Improve diagnostic output in com/sun/jndi/ldap/LdapTimeoutTest.java
prappo [Tue, 17 Jun 2014 13:57:01 +0100] rev 25406
8047062: Improve diagnostic output in com/sun/jndi/ldap/LdapTimeoutTest.java Reviewed-by: duke
Wed, 09 Jul 2014 21:26:11 -0700 8049820: Fix raw and unchecked lint warnings in sun.management
darcy [Wed, 09 Jul 2014 21:26:11 -0700] rev 25405
8049820: Fix raw and unchecked lint warnings in sun.management Reviewed-by: mchung
Thu, 10 Jul 2014 03:07:48 +0000 8041781: Need new regression tests for PBE keys
rhalade [Thu, 10 Jul 2014 03:07:48 +0000] rev 25404
8041781: Need new regression tests for PBE keys Reviewed-by: xuelei
Thu, 10 Jul 2014 10:44:48 +0800 8044085: Access ExtendedGSSContext.inquireSecContext() result through SASL
weijun [Thu, 10 Jul 2014 10:44:48 +0800] rev 25403
8044085: Access ExtendedGSSContext.inquireSecContext() result through SASL Reviewed-by: mullan
Wed, 09 Jul 2014 18:34:45 -0700 7065233: To interpret case-insensitive string locale independently
juh [Wed, 09 Jul 2014 18:34:45 -0700] rev 25402
7065233: To interpret case-insensitive string locale independently Reviewed-by: xuelei
Wed, 09 Jul 2014 17:02:03 -0700 8049794: Fix raw and unchecked warnings in jvmstat
darcy [Wed, 09 Jul 2014 17:02:03 -0700] rev 25401
8049794: Fix raw and unchecked warnings in jvmstat Reviewed-by: mchung
Wed, 09 Jul 2014 10:02:30 -0700 8048515: Read outside array bounds in jdk/src/solaris/native/java/lang/java_props_md.c
naoto [Wed, 09 Jul 2014 10:02:30 -0700] rev 25400
8048515: Read outside array bounds in jdk/src/solaris/native/java/lang/java_props_md.c Reviewed-by: okutsu
Wed, 09 Jul 2014 17:51:50 +0200 8048913: java/util/logging/LoggingDeadlock2.java times out
dfuchs [Wed, 09 Jul 2014 17:51:50 +0200] rev 25399
8048913: java/util/logging/LoggingDeadlock2.java times out Summary: removes the /timeout=15 parameter from the @run command line Reviewed-by: mchung, dholmes
Wed, 09 Jul 2014 12:30:17 +0200 8049220: URL.factory data race
plevart [Wed, 09 Jul 2014 12:30:17 +0200] rev 25398
8049220: URL.factory data race Reviewed-by: alanb, psandoz
Wed, 09 Jul 2014 16:34:31 +0800 8047765: Generate blacklist.certs in build
weijun [Wed, 09 Jul 2014 16:34:31 +0800] rev 25397
8047765: Generate blacklist.certs in build Reviewed-by: dholmes, alanb
Wed, 09 Jul 2014 15:10:42 +0800 7150092: NTLM authentication fail if user specified a different realm
weijun [Wed, 09 Jul 2014 15:10:42 +0800] rev 25396
7150092: NTLM authentication fail if user specified a different realm Reviewed-by: michaelm
Tue, 08 Jul 2014 12:38:47 -0700 Merge
amurillo [Tue, 08 Jul 2014 12:38:47 -0700] rev 25395
Merge
Thu, 03 Jul 2014 13:22:09 -0700 Merge
amurillo [Thu, 03 Jul 2014 13:22:09 -0700] rev 25394
Merge
Thu, 26 Jun 2014 23:11:00 -0700 Merge
amurillo [Thu, 26 Jun 2014 23:11:00 -0700] rev 25393
Merge
Tue, 24 Jun 2014 11:23:34 -0400 6642881: Improve performance of Class.getClassLoader()
coleenp [Tue, 24 Jun 2014 11:23:34 -0400] rev 25392
6642881: Improve performance of Class.getClassLoader() Summary: Add classLoader to java/lang/Class instance for fast access Reviewed-by: alanb, lfoltan, rriggs, vlivanov, twisti, mchung, jfranck, dholmes
Tue, 08 Jul 2014 14:35:05 -0400 8049244: XML Signature performance issue caused by unbuffered signature data
mullan [Tue, 08 Jul 2014 14:35:05 -0400] rev 25391
8049244: XML Signature performance issue caused by unbuffered signature data Reviewed-by: xuelei
Mon, 07 Jul 2014 15:06:00 +0200 8047368: Remove oracle.jrockit.jfr from open package.access list
egahlin [Mon, 07 Jul 2014 15:06:00 +0200] rev 25390
8047368: Remove oracle.jrockit.jfr from open package.access list Reviewed-by: sla, mullan
Mon, 07 Jul 2014 15:31:07 +0200 8048020: Regression on java.util.logging.FileHandler
dfuchs [Mon, 07 Jul 2014 15:31:07 +0200] rev 25389
8048020: Regression on java.util.logging.FileHandler Summary: In some circumstances j.u.l.FileHandler can leave zombie lock files on the file system. The fix lets FileHandler reuse such zombie lock files when it sees them - as it used to do in version 1.7 of the JDK. Reviewed-by: alanb
Mon, 07 Jul 2014 12:42:14 +0100 8048212: Two tests failed with "java.net.SocketException: Bad protocol option" on Windows after 8029607
michaelm [Mon, 07 Jul 2014 12:42:14 +0100] rev 25388
8048212: Two tests failed with "java.net.SocketException: Bad protocol option" on Windows after 8029607 Reviewed-by: alanb
Sun, 06 Jul 2014 20:12:44 -0400 8049055: Tests added to the jdk/test/TEST.groups to be run on correct profiles
dholmes [Sun, 06 Jul 2014 20:12:44 -0400] rev 25387
8049055: Tests added to the jdk/test/TEST.groups to be run on correct profiles Reviewed-by: dholmes, dfuchs Contributed-by: Evgeniya Stepanova <evgeniya.stepanova@oracle.com>
Fri, 04 Jul 2014 12:56:58 +0400 8046590: fix doclint issues in swing classes, part 1 of 4
yan [Fri, 04 Jul 2014 12:56:58 +0400] rev 25386
8046590: fix doclint issues in swing classes, part 1 of 4 Reviewed-by: alexsch Contributed-by: Steven Sides <steve.sides@oracle.com>
Thu, 03 Jul 2014 16:19:39 -0700 8038092: Re-examine Bidi reflective dependency on java.awt.font
naoto [Thu, 03 Jul 2014 16:19:39 -0700] rev 25385
8038092: Re-examine Bidi reflective dependency on java.awt.font Reviewed-by: alanb
Thu, 10 Jul 2014 12:13:26 -0700 Added tag jdk9-b22 for changeset b508c04b7005
katleman [Thu, 10 Jul 2014 12:13:26 -0700] rev 25384
Added tag jdk9-b22 for changeset b508c04b7005
Wed, 05 Jul 2017 19:49:20 +0200 Merge
duke [Wed, 05 Jul 2017 19:49:20 +0200] rev 25383
Merge
Thu, 10 Jul 2014 12:40:03 -0700 Merge
lana [Thu, 10 Jul 2014 12:40:03 -0700] rev 25382
Merge
Thu, 03 Jul 2014 13:17:29 -0700 Merge
amurillo [Thu, 03 Jul 2014 13:17:29 -0700] rev 25381
Merge
Thu, 03 Jul 2014 09:41:29 -0700 Merge
roland [Thu, 03 Jul 2014 09:41:29 -0700] rev 25380
Merge
Tue, 01 Jul 2014 13:09:40 +0400 8047996: Quarantine compiler/whitebox tests
iignatyev [Tue, 01 Jul 2014 13:09:40 +0400] rev 25379
8047996: Quarantine compiler/whitebox tests Reviewed-by: vlivanov
Tue, 01 Jul 2014 09:02:45 +0200 8007987: ciConstantPoolCache::_keys should be array of 32bit int
thartmann [Tue, 01 Jul 2014 09:02:45 +0200] rev 25378
8007987: ciConstantPoolCache::_keys should be array of 32bit int Summary: The type of ciConstantPoolCache::_keys is changed to int which is sufficient to store the 2 byte constant pool indices. Reviewed-by: twisti, coleenp
Mon, 30 Jun 2014 08:28:29 +0200 8048003: test/compiler/8009761/Test8009761.java failed with: java.lang.RuntimeException: static java.lang.Object Test8009761.m3(boolean,boolean) not compiled
thartmann [Mon, 30 Jun 2014 08:28:29 +0200] rev 25377
8048003: test/compiler/8009761/Test8009761.java failed with: java.lang.RuntimeException: static java.lang.Object Test8009761.m3(boolean,boolean) not compiled Summary: Compile m3 with C1 if C2 is not available. Reviewed-by: twisti, anoll
Wed, 02 Jul 2014 17:24:50 -0700 Merge
sspitsyn [Wed, 02 Jul 2014 17:24:50 -0700] rev 25376
Merge
Mon, 30 Jun 2014 10:04:05 +0200 8047973: Quarantine compiler/ciReplay/*
sla [Mon, 30 Jun 2014 10:04:05 +0200] rev 25375
8047973: Quarantine compiler/ciReplay/* Reviewed-by: vlivanov
Mon, 30 Jun 2014 14:58:52 -0400 8048169: Change 8037816 breaks HS build on PPC64 and CPP-Interpreter platforms
coleenp [Mon, 30 Jun 2014 14:58:52 -0400] rev 25374
8048169: Change 8037816 breaks HS build on PPC64 and CPP-Interpreter platforms Summary: Fix the matching of format string parameter types to the actual argument types for the PPC64 and CPP-Interpreter files in the same way as 8037816 already did it for all the other files Reviewed-by: stefank, coleenp, dholmes
Fri, 27 Jun 2014 14:00:50 -0700 8047720: Xprof hangs on Solaris
dcubed [Fri, 27 Jun 2014 14:00:50 -0700] rev 25373
8047720: Xprof hangs on Solaris Summary: Update use of PeriodicTask_lock in WatcherThread::stop() to avoid safepoint deadlock. Reviewed-by: mgronlun, coleenp
Fri, 27 Jun 2014 08:11:49 -0700 Merge
dcubed [Fri, 27 Jun 2014 08:11:49 -0700] rev 25372
Merge
Fri, 27 Jun 2014 13:33:36 +0200 8047812: Ensure ClassLoaderDataGraph::classes_unloading_do only delivers klasses from CLDs with non-reclaimed class loader oops
mgronlun [Fri, 27 Jun 2014 13:33:36 +0200] rev 25371
8047812: Ensure ClassLoaderDataGraph::classes_unloading_do only delivers klasses from CLDs with non-reclaimed class loader oops Reviewed-by: coleenp, sspitsyn, ehelin
Wed, 25 Jun 2014 22:12:25 +0000 Merge
egahlin [Wed, 25 Jun 2014 22:12:25 +0000] rev 25370
Merge
Wed, 25 Jun 2014 21:36:48 +0200 8046783: Add hidden field to methods for event based tracing
egahlin [Wed, 25 Jun 2014 21:36:48 +0200] rev 25369
8046783: Add hidden field to methods for event based tracing Reviewed-by: sla, mgronlun
Wed, 25 Jun 2014 13:03:29 -0700 8048076: [TESTBUG] runtime/Unsafe/RangeCheck.java fails with -Xcomp
ctornqvi [Wed, 25 Jun 2014 13:03:29 -0700] rev 25368
8048076: [TESTBUG] runtime/Unsafe/RangeCheck.java fails with -Xcomp Summary: Compiler intrinsics doesn't have this assert, disabled the intrinsics to make sure we go through the VM Reviewed-by: lfoltan, coleenp
Wed, 02 Jul 2014 13:52:52 +0200 Merge
ehelin [Wed, 02 Jul 2014 13:52:52 +0200] rev 25367
Merge
Wed, 02 Jul 2014 11:05:10 +0200 8048895: Back out JDK-8027915
ehelin [Wed, 02 Jul 2014 11:05:10 +0200] rev 25366
8048895: Back out JDK-8027915 Reviewed-by: mgerdin, stefank
Thu, 26 Jun 2014 18:55:29 -0700 Merge
jmasa [Thu, 26 Jun 2014 18:55:29 -0700] rev 25365
Merge
Wed, 25 Jun 2014 20:43:05 -0700 Merge
jmasa [Wed, 25 Jun 2014 20:43:05 -0700] rev 25364
Merge
Wed, 25 Jun 2014 15:43:47 +0000 Merge
tschatzl [Wed, 25 Jun 2014 15:43:47 +0000] rev 25363
Merge
Wed, 25 Jun 2014 17:22:58 +0200 8026847: [TESTBUG] gc/g1/TestSummarizeRSetStats* tests launch 32bit jvm with UseCompressedOops
tschatzl [Wed, 25 Jun 2014 17:22:58 +0200] rev 25362
8026847: [TESTBUG] gc/g1/TestSummarizeRSetStats* tests launch 32bit jvm with UseCompressedOops Summary: The test launched a 32 bit VM with UseCompressedOops enabled. This is not supported on 32 bit VMs, causing a test failure. Investigation showed that the use of this flag is not required at all, so simply remove it. Reviewed-by: tschatzl, jwilhelm Contributed-by: Andrey Zakharov <andrey.x.zakharov@oracle.com>
Wed, 25 Jun 2014 16:53:13 +0200 8047820: G1 Block offset table does not need to support generic Space classes
mgerdin [Wed, 25 Jun 2014 16:53:13 +0200] rev 25361
8047820: G1 Block offset table does not need to support generic Space classes Reviewed-by: tschatzl, stefank
Wed, 25 Jun 2014 10:55:10 +0200 8047819: G1 HeapRegionDCTOC does not need to inherit ContiguousSpaceDCTOC
mgerdin [Wed, 25 Jun 2014 10:55:10 +0200] rev 25360
8047819: G1 HeapRegionDCTOC does not need to inherit ContiguousSpaceDCTOC Reviewed-by: stefank, tschatzl
Wed, 25 Jun 2014 08:56:57 +0200 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank [Wed, 25 Jun 2014 08:56:57 +0200] rev 25359
8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp Reviewed-by: vlivanov, ehelin
Wed, 25 Jun 2014 08:28:01 +0200 8047323: Remove unused _copy_metadata_obj_cl in G1CopyingKeepAliveClosure
stefank [Wed, 25 Jun 2014 08:28:01 +0200] rev 25358
8047323: Remove unused _copy_metadata_obj_cl in G1CopyingKeepAliveClosure Reviewed-by: mgerdin, tschatzl
Tue, 24 Jun 2014 17:09:48 +0200 8047373: Clean the ExceptionCache in one pass
stefank [Tue, 24 Jun 2014 17:09:48 +0200] rev 25357
8047373: Clean the ExceptionCache in one pass Summary: Also-reviewed-by: kim.barrett@oracle.com Reviewed-by: jmasa, jwilhelm
Tue, 24 Jun 2014 16:20:15 +0200 8046670: Make CMS metadata aware closures applicable for other collectors
stefank [Tue, 24 Jun 2014 16:20:15 +0200] rev 25356
8046670: Make CMS metadata aware closures applicable for other collectors Reviewed-by: ehelin, mgerdin
Tue, 24 Jun 2014 15:50:50 +0200 8027915: TestParallelHeapSizeFlags fails with unexpected heap size on sparcv9
ehelin [Tue, 24 Jun 2014 15:50:50 +0200] rev 25355
8027915: TestParallelHeapSizeFlags fails with unexpected heap size on sparcv9 Reviewed-by: jmasa, sjohanss
Wed, 25 Jun 2014 20:41:16 -0700 Merge
jmasa [Wed, 25 Jun 2014 20:41:16 -0700] rev 25354
Merge
Mon, 23 Jun 2014 14:20:20 -0700 Merge
jmasa [Mon, 23 Jun 2014 14:20:20 -0700] rev 25353
Merge
Mon, 23 Jun 2014 16:43:41 +0200 8046231: G1: Code root location ... from nmethod ... not in strong code roots for region
pliden [Mon, 23 Jun 2014 16:43:41 +0200] rev 25352
8046231: G1: Code root location ... from nmethod ... not in strong code roots for region Reviewed-by: tschatzl, ehelin
Wed, 04 Jun 2014 11:56:44 +0200 8044775: Improve usage of umbrella header atomic.inline.hpp.
goetz [Wed, 04 Jun 2014 11:56:44 +0200] rev 25351
8044775: Improve usage of umbrella header atomic.inline.hpp. Reviewed-by: stefank, kvn
Thu, 19 Jun 2014 13:31:14 +0200 8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso [Thu, 19 Jun 2014 13:31:14 +0200] rev 25350
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps Reviewed-by: jwilhelm, ehelin, tschatzl
Thu, 26 Jun 2014 16:53:35 -0700 Merge
twisti [Thu, 26 Jun 2014 16:53:35 -0700] rev 25349
Merge
Thu, 26 Jun 2014 12:04:10 -0700 Merge
iveresov [Thu, 26 Jun 2014 12:04:10 -0700] rev 25348
Merge
Thu, 26 Jun 2014 12:01:44 -0700 8048298: Clang needs to lower optimization level for some files
iveresov [Thu, 26 Jun 2014 12:01:44 -0700] rev 25347
8048298: Clang needs to lower optimization level for some files Summary: Optimization options need to be lowered for some files when using clang 5.0 and 5.1 Reviewed-by: twisti
Wed, 25 Jun 2014 09:19:09 +0200 8033332: missing types in TemplateInterpreterGenerator::generate_result_handler_for
thartmann [Wed, 25 Jun 2014 09:19:09 +0200] rev 25346
8033332: missing types in TemplateInterpreterGenerator::generate_result_handler_for Summary: Add missing case statements for T_LONG and T_VOID to generate_result_handler_for(..). Reviewed-by: iveresov, anoll
Tue, 24 Jun 2014 08:12:30 +0200 8035328: closed/compiler/6595044/Main.java failed with timeout
thartmann [Tue, 24 Jun 2014 08:12:30 +0200] rev 25345
8035328: closed/compiler/6595044/Main.java failed with timeout Summary: Patch call sites of non-entrant methods to avoid re-resolving if method is still executed. Reviewed-by: twisti, iveresov, roland, kvn
Mon, 23 Jun 2014 04:44:02 +0000 Merge
anoll [Mon, 23 Jun 2014 04:44:02 +0000] rev 25344
Merge
Mon, 23 Jun 2014 08:40:31 +0200 8046286: assert: Do not add task if compilation is turned off forever
anoll [Mon, 23 Jun 2014 08:40:31 +0200] rev 25343
8046286: assert: Do not add task if compilation is turned off forever Summary: Remove the unnecessary and missleading assert Reviewed-by: iveresov
Fri, 20 Jun 2014 20:42:48 +0000 Merge
iignatyev [Fri, 20 Jun 2014 20:42:48 +0000] rev 25342
Merge
Fri, 20 Jun 2014 22:39:56 +0400 8041794: remove bytecodes_<arch>.{cpp,hpp} files
iignatyev [Fri, 20 Jun 2014 22:39:56 +0400] rev 25341
8041794: remove bytecodes_<arch>.{cpp,hpp} files Reviewed-by: dholmes, coleenp, twisti, iignatyev Contributed-by: lev.priima@oracle.com
Fri, 20 Jun 2014 11:25:08 -0700 8047321: Hotspot debug builds with clang are broken
iveresov [Fri, 20 Jun 2014 11:25:08 -0700] rev 25340
8047321: Hotspot debug builds with clang are broken Summary: Don't use -Og with clang Reviewed-by: twisti
Fri, 20 Jun 2014 09:25:13 +0200 8043158: Crash in CodeSweeperSweepNoFlushTest in CompileQueue::free_all()
anoll [Fri, 20 Jun 2014 09:25:13 +0200] rev 25339
8043158: Crash in CodeSweeperSweepNoFlushTest in CompileQueue::free_all() Summary: Acquire lock before calling notify() Reviewed-by: twisti, thartmann
Fri, 20 Jun 2014 08:14:30 +0200 8008321: compile.cpp verify_graph_edges uses bool as int
thartmann [Fri, 20 Jun 2014 08:14:30 +0200] rev 25338
8008321: compile.cpp verify_graph_edges uses bool as int Summary: The dead_nodes counter in verify_graph_edges(..) has the type bool but is used as int. Reviewed-by: roland, anoll
Tue, 24 Jun 2014 12:27:51 -0700 8043541: 'fastdebug' is printed twice in java -version
amurillo [Tue, 24 Jun 2014 12:27:51 -0700] rev 25337
8043541: 'fastdebug' is printed twice in java -version Reviewed-by: dholmes, dcubed, jcoomes
Tue, 24 Jun 2014 07:10:06 -0700 8047939: [TESTBUG] Rewrite test/runtime/8001071/Test8001071.sh
ctornqvi [Tue, 24 Jun 2014 07:10:06 -0700] rev 25336
8047939: [TESTBUG] Rewrite test/runtime/8001071/Test8001071.sh Summary: Rewrote the test in Java, limited the heap size to avoid time out issues on machines with a lot of memory Reviewed-by: minqi, rdurbin, dcubed
Tue, 24 Jun 2014 02:19:59 -0700 8046282: SA update
poonam [Tue, 24 Jun 2014 02:19:59 -0700] rev 25335
8046282: SA update Summary: These changes add some definitions on the SA side and the supporting code on the hotspot side. Reviewed-by: sundar, mgronlun
Mon, 23 Jun 2014 14:51:10 -0700 8047878: [TESTBUG] runtime/memory/ReadFromNoaccessArea.java and runtime/memory/ReserveMemory.java time out on Solaris
ctornqvi [Mon, 23 Jun 2014 14:51:10 -0700] rev 25334
8047878: [TESTBUG] runtime/memory/ReadFromNoaccessArea.java and runtime/memory/ReserveMemory.java time out on Solaris Summary: Limited heap size to reduce size of core file generated Reviewed-by: sla, coleenp, dcubed
Mon, 23 Jun 2014 06:58:26 -0700 8043630: Method os::yield_all() should be removed
fparain [Mon, 23 Jun 2014 06:58:26 -0700] rev 25333
8043630: Method os::yield_all() should be removed Reviewed-by: dholmes, dsimms
Sun, 22 Jun 2014 21:23:32 -0400 8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes [Sun, 22 Jun 2014 21:23:32 -0400] rev 25332
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr Reviewed-by: hseigel, lfoltan, coleenp, dholmes Contributed-by: Pavel Chistyakov <pavel.chistyakov@oracle.com>
Wed, 18 Jun 2014 12:35:32 -0700 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
mikael [Wed, 18 Jun 2014 12:35:32 -0700] rev 25331
8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH Reviewed-by: erikj, dholmes
Fri, 20 Jun 2014 20:37:57 +0000 Merge
dcubed [Fri, 20 Jun 2014 20:37:57 +0000] rev 25330
Merge
Fri, 20 Jun 2014 12:45:24 -0700 Merge
dcubed [Fri, 20 Jun 2014 12:45:24 -0700] rev 25329
Merge
Fri, 20 Jun 2014 11:19:22 -0700 8046611: Build errors with gcc on sparc/fastdebug
mikael [Fri, 20 Jun 2014 11:19:22 -0700] rev 25328
8046611: Build errors with gcc on sparc/fastdebug Reviewed-by: dholmes, ctornqvi
Fri, 20 Jun 2014 10:12:02 -0700 8038074: [TESTBUG] Add test for anewarray instruction with more than 255 dimensions
gtriantafill [Fri, 20 Jun 2014 10:12:02 -0700] rev 25327
8038074: [TESTBUG] Add test for anewarray instruction with more than 255 dimensions Reviewed-by: lfoltan, coleenp
Thu, 19 Jun 2014 14:49:33 -0400 6642881: Improve performance of Class.getClassLoader()
coleenp [Thu, 19 Jun 2014 14:49:33 -0400] rev 25326
6642881: Improve performance of Class.getClassLoader() Summary: Add classLoader to java/lang/Class instance for fast access Reviewed-by: alanb, lfoltan, rriggs, vlivanov, twisti, jfranck
Thu, 19 Jun 2014 11:16:10 -0400 8026977: NPG: Remove ConstantPool::lock
coleenp [Thu, 19 Jun 2014 11:16:10 -0400] rev 25325
8026977: NPG: Remove ConstantPool::lock Summary: Write klass and resolved_references constant pool fields lock free. Reviewed-by: jrose, twisti
Thu, 10 Jul 2014 12:13:09 -0700 Added tag jdk9-b22 for changeset 6702f17e734e
katleman [Thu, 10 Jul 2014 12:13:09 -0700] rev 25324
Added tag jdk9-b22 for changeset 6702f17e734e
Thu, 10 Jul 2014 12:38:49 -0700 Merge
lana [Thu, 10 Jul 2014 12:38:49 -0700] rev 25323
Merge
Tue, 08 Jul 2014 12:38:44 -0700 Merge
amurillo [Tue, 08 Jul 2014 12:38:44 -0700] rev 25322
Merge
Thu, 03 Jul 2014 13:22:08 -0700 Merge
amurillo [Thu, 03 Jul 2014 13:22:08 -0700] rev 25321
Merge
Thu, 26 Jun 2014 23:10:58 -0700 Merge
amurillo [Thu, 26 Jun 2014 23:10:58 -0700] rev 25320
Merge
Fri, 20 Jun 2014 17:37:19 -0700 Merge
dcubed [Fri, 20 Jun 2014 17:37:19 -0700] rev 25319
Merge
Wed, 18 Jun 2014 12:35:37 -0700 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
mikael [Wed, 18 Jun 2014 12:35:37 -0700] rev 25318
8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH Reviewed-by: erikj, dholmes
Tue, 08 Jul 2014 11:21:43 -0700 8048184: handle mercurial dev build version string
mduigou [Tue, 08 Jul 2014 11:21:43 -0700] rev 25317
8048184: handle mercurial dev build version string Reviewed-by: dfuchs Contributed-by: mike.duigou@oracle.com, dpointo8@linux.vnet.ibm.com, daniel.fuchs@oracle.com
Thu, 03 Jul 2014 10:23:19 -0700 8047154: Testset all fails because of missing jdk_beansX test groups
mikael [Thu, 03 Jul 2014 10:23:19 -0700] rev 25316
8047154: Testset all fails because of missing jdk_beansX test groups Reviewed-by: alanb, dholmes
Thu, 10 Jul 2014 12:12:56 -0700 Added tag jdk9-b22 for changeset 7a6cf4bb002f
katleman [Thu, 10 Jul 2014 12:12:56 -0700] rev 25315
Added tag jdk9-b22 for changeset 7a6cf4bb002f
Wed, 05 Jul 2017 19:48:51 +0200 Added tag jdk9-b22 for changeset 9678e0db8ff6
duke [Wed, 05 Jul 2017 19:48:51 +0200] rev 25314
Added tag jdk9-b22 for changeset 9678e0db8ff6
Wed, 05 Jul 2017 19:48:50 +0200 Merge jdk9-b22
duke [Wed, 05 Jul 2017 19:48:50 +0200] rev 25313
Merge
Wed, 05 Jul 2017 19:48:46 +0200 Merge
duke [Wed, 05 Jul 2017 19:48:46 +0200] rev 25312
Merge
Wed, 09 Jul 2014 10:42:13 -0700 Merge
lana [Wed, 09 Jul 2014 10:42:13 -0700] rev 25311
Merge
Wed, 02 Jul 2014 14:27:10 -0700 8046770: .out files for assert, boxing, and overload tests in tools/javac dir
sogoel [Wed, 02 Jul 2014 14:27:10 -0700] rev 25310
8046770: .out files for assert, boxing, and overload tests in tools/javac dir Reviewed-by: jjg
Wed, 02 Jul 2014 13:29:58 -0700 8044864: .out files for enum tests in tools/javac dir - part 1
sogoel [Wed, 02 Jul 2014 13:29:58 -0700] rev 25309
8044864: .out files for enum tests in tools/javac dir - part 1 Reviewed-by: jjg
Wed, 02 Jul 2014 12:04:04 -0700 8044236: create .out files for DefiniteAssignment tests in tools/javac dir
sogoel [Wed, 02 Jul 2014 12:04:04 -0700] rev 25308
8044236: create .out files for DefiniteAssignment tests in tools/javac dir Reviewed-by: jjg, vromero
Tue, 01 Jul 2014 14:28:22 -0700 Merge
lana [Tue, 01 Jul 2014 14:28:22 -0700] rev 25307
Merge
Tue, 01 Jul 2014 15:54:25 -0400 8032188: Remove dead code in TransTypes
briangoetz [Tue, 01 Jul 2014 15:54:25 -0400] rev 25306
8032188: Remove dead code in TransTypes Reviewed-by: darcy
Tue, 01 Jul 2014 10:21:41 -0700 Merge
prr [Tue, 01 Jul 2014 10:21:41 -0700] rev 25305
Merge
Mon, 23 Jun 2014 13:06:08 -0700 Merge
ddehaven [Mon, 23 Jun 2014 13:06:08 -0700] rev 25304
Merge
Fri, 20 Jun 2014 13:36:10 -0700 8044063: Remove com.sun.java.browser.* from jdk repo
mchung [Fri, 20 Jun 2014 13:36:10 -0700] rev 25303
8044063: Remove com.sun.java.browser.* from jdk repo Reviewed-by: darcy, alanb
Tue, 01 Jul 2014 17:23:46 +0100 8048905: More tweaking with langtools intellij support
mcimadamore [Tue, 01 Jul 2014 17:23:46 +0100] rev 25302
8048905: More tweaking with langtools intellij support Summary: Add support for 'jtreg.home' property; fix code width to be 80; disable import optimizations Reviewed-by: vromero
Mon, 30 Jun 2014 17:08:06 +0200 6707032: Division by zero warning not suppressed properly in some cases
jlahoda [Mon, 30 Jun 2014 17:08:06 +0200] rev 25301
6707032: Division by zero warning not suppressed properly in some cases Summary: Delay reporting of the division by zero warning until annotations are resolved, so that @SuppressWarnings works correctly. Reviewed-by: vromero
Fri, 27 Jun 2014 17:54:54 -0700 8047162: [javadoc] index files are non deterministic
ksrini [Fri, 27 Jun 2014 17:54:54 -0700] rev 25300
8047162: [javadoc] index files are non deterministic Reviewed-by: jjg
Tue, 17 Jun 2014 14:01:27 +0200 8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad [Tue, 17 Jun 2014 14:01:27 +0200] rev 25299
8048594: The sjavac client/server protocol should be hidden behind an interface Reviewed-by: jfranck
Fri, 27 Jun 2014 20:32:12 +0100 8047719: Incorrect LVT in switch statement
vromero [Fri, 27 Jun 2014 20:32:12 +0100] rev 25298
8047719: Incorrect LVT in switch statement Reviewed-by: jjg, jlahoda
Thu, 26 Jun 2014 16:39:14 -0700 8048293: update tools/javadoc/6227454 to have missing <head> tag
sogoel [Thu, 26 Jun 2014 16:39:14 -0700] rev 25297
8048293: update tools/javadoc/6227454 to have missing <head> tag Reviewed-by: jjg, bpatel
Thu, 26 Jun 2014 16:07:07 -0700 8047316: update javadoc tests to fix tidy warning for incorrect html comment
sogoel [Thu, 26 Jun 2014 16:07:07 -0700] rev 25296
8047316: update javadoc tests to fix tidy warning for incorrect html comment Reviewed-by: jjg, ksrini
Thu, 26 Jun 2014 15:47:52 -0700 8048168: update 2 javadoc tests to add summary attribute for table tag
sogoel [Thu, 26 Jun 2014 15:47:52 -0700] rev 25295
8048168: update 2 javadoc tests to add summary attribute for table tag Reviewed-by: jjg, ksrini
Thu, 26 Jun 2014 15:41:05 -0700 8047744: update 2 javadoc tests for nested emphasis <code>
sogoel [Thu, 26 Jun 2014 15:41:05 -0700] rev 25294
8047744: update 2 javadoc tests for nested emphasis <code> Reviewed-by: jjg, ksrini
Thu, 26 Jun 2014 15:30:21 -0700 8047743: update com/sun/javadoc/testHref for unrecognized <action>
sogoel [Thu, 26 Jun 2014 15:30:21 -0700] rev 25293
8047743: update com/sun/javadoc/testHref for unrecognized <action> Reviewed-by: jjg, ksrini
Thu, 26 Jun 2014 15:21:44 -0700 8047303: update com/sun/javadoc/DocRootSlash/DocRootSlash for unexpected </a>
sogoel [Thu, 26 Jun 2014 15:21:44 -0700] rev 25292
8047303: update com/sun/javadoc/DocRootSlash/DocRootSlash for unexpected </a> Reviewed-by: jjg, ksrini
Thu, 26 Jun 2014 11:45:51 -0700 8007307: DPrinter: support the DocTree API
jjg [Thu, 26 Jun 2014 11:45:51 -0700] rev 25291
8007307: DPrinter: support the DocTree API Reviewed-by: mcimadamore
Thu, 26 Jun 2014 11:31:59 -0700 8047183: JDK build fails with sjavac enabled
jjg [Thu, 26 Jun 2014 11:31:59 -0700] rev 25290
8047183: JDK build fails with sjavac enabled Reviewed-by: mcimadamore
Thu, 26 Jun 2014 13:48:58 -0400 8042345: getDocComment fails for doc comments on PackageElement found in package-info.java
pgovereau [Thu, 26 Jun 2014 13:48:58 -0400] rev 25289
8042345: getDocComment fails for doc comments on PackageElement found in package-info.java Reviewed-by: jjg
Wed, 25 Jun 2014 19:15:53 -0700 8048162: Restrict catch type from Throwable to ReflectiveOperationException
jjg [Wed, 25 Jun 2014 19:15:53 -0700] rev 25288
8048162: Restrict catch type from Throwable to ReflectiveOperationException Reviewed-by: darcy
Wed, 25 Jun 2014 19:04:52 -0700 8046614: Fill in missing doc comments
jjg [Wed, 25 Jun 2014 19:04:52 -0700] rev 25287
8046614: Fill in missing doc comments Reviewed-by: darcy
Wed, 25 Jun 2014 17:58:37 -0700 8046613: Fill in missing doc comments
jjg [Wed, 25 Jun 2014 17:58:37 -0700] rev 25286
8046613: Fill in missing doc comments Reviewed-by: darcy
Wed, 25 Jun 2014 11:22:27 -0700 8048121: javac complex method references: revamp and simplify
rfield [Wed, 25 Jun 2014 11:22:27 -0700] rev 25285
8048121: javac complex method references: revamp and simplify 8038776: VerifyError when running successfully compiled java class Summary: Add tests missing from the push of 8037404 Reviewed-by: dlsmith, vromero
Tue, 24 Jun 2014 15:15:22 -0700 8047157: [javadoc] fixup tests for determinism and add classes uses
ksrini [Tue, 24 Jun 2014 15:15:22 -0700] rev 25284
8047157: [javadoc] fixup tests for determinism and add classes uses Reviewed-by: jjg
Tue, 24 Jun 2014 10:51:00 -0700 7196160: Project Coin: allow @SafeVarargs on private methods
darcy [Tue, 24 Jun 2014 10:51:00 -0700] rev 25283
7196160: Project Coin: allow @SafeVarargs on private methods Reviewed-by: jjg
Tue, 24 Jun 2014 16:04:46 +0100 8046451: Add basic IntelliJ support for langtools
mcimadamore [Tue, 24 Jun 2014 16:04:46 +0100] rev 25282
8046451: Add basic IntelliJ support for langtools Summary: Add new ant target 'idea' to create IntelliJ langtools project Reviewed-by: jjg
Tue, 24 Jun 2014 00:43:46 -0700 8037404: javac NPE or VerifyError for code with constructor reference of inner class
rfield [Tue, 24 Jun 2014 00:43:46 -0700] rev 25281
8037404: javac NPE or VerifyError for code with constructor reference of inner class 8047341: lambda reference to inner class in base class causes LambdaConversionException 8044748: JVM cannot access constructor though ::new reference although can call it directly 8044737: Lambda: NPE while obtaining method reference through lambda expression Summary: revamp and simplify handling of complex method references Reviewed-by: dlsmith, vromero
Fri, 20 Jun 2014 13:26:24 -0700 8047300: update tools/javadoc/6227454 test for missing <DOCTYPE> tags
sogoel [Fri, 20 Jun 2014 13:26:24 -0700] rev 25280
8047300: update tools/javadoc/6227454 test for missing <DOCTYPE> tags Reviewed-by: jjg, ksrini
Fri, 20 Jun 2014 20:36:54 +0100 8044546: Crash on faulty reduce/lambda
vromero [Fri, 20 Jun 2014 20:36:54 +0100] rev 25279
8044546: Crash on faulty reduce/lambda Reviewed-by: mcimadamore, dlsmith Contributed-by: maurizio.cimadamore@oracle.com, vicente.romero@oracle.com
Fri, 20 Jun 2014 10:56:47 -0700 8046060: Different results of floating point multiplication for lambda code block
rfield [Fri, 20 Jun 2014 10:56:47 -0700] rev 25278
8046060: Different results of floating point multiplication for lambda code block Summary: propogate strictfp into lambda body Reviewed-by: vromero, jlahoda
Fri, 20 Jun 2014 11:42:16 -0600 8047407: Add test for JDK-8037385
dlsmith [Fri, 20 Jun 2014 11:42:16 -0600] rev 25277
8047407: Add test for JDK-8037385 Reviewed-by: mcimadamore
Fri, 20 Jun 2014 10:56:31 -0600 8034147: javac crashes with a NullPointerException during bounds checking
dlsmith [Fri, 20 Jun 2014 10:56:31 -0600] rev 25276
8034147: javac crashes with a NullPointerException during bounds checking Summary: Types.supertype should return Type.noType rather than null Reviewed-by: vromero, mcimadamore
Thu, 19 Jun 2014 23:52:33 +0100 8042759: Lambda returning implicitly-typed lambdas considered pertinent to applicability
vromero [Thu, 19 Jun 2014 23:52:33 +0100] rev 25275
8042759: Lambda returning implicitly-typed lambdas considered pertinent to applicability Reviewed-by: mcimadamore
Thu, 19 Jun 2014 22:06:29 +0200 8041648: do while loop that misses ending semicolon has wrong end position
jlahoda [Thu, 19 Jun 2014 22:06:29 +0200] rev 25274
8041648: do while loop that misses ending semicolon has wrong end position Summary: Ensure the end positions are meaningful even if statement's semicolon is missing. Reviewed-by: jjg Contributed-by: dusan.balek@oracle.com, jan.lahoda@oracle.com
Thu, 19 Jun 2014 15:39:37 +0100 8038182: javac crash with FunctionDescriptorLookupError for invalid functional interface
vromero [Thu, 19 Jun 2014 15:39:37 +0100] rev 25273
8038182: javac crash with FunctionDescriptorLookupError for invalid functional interface Reviewed-by: mcimadamore Contributed-by: maurizio.cimadamore@oracle.com, vicente.romero@oracle.com
Wed, 18 Jun 2014 14:58:16 -0700 8046071: update three javadoc tests for empty <p> tag
sogoel [Wed, 18 Jun 2014 14:58:16 -0700] rev 25272
8046071: update three javadoc tests for empty <p> tag Reviewed-by: jjg, ksrini
Thu, 03 Jul 2014 11:37:54 -0700 Added tag jdk9-b21 for changeset 021089de7317
katleman [Thu, 03 Jul 2014 11:37:54 -0700] rev 25271
Added tag jdk9-b21 for changeset 021089de7317
Wed, 05 Jul 2017 19:48:32 +0200 Merge
duke [Wed, 05 Jul 2017 19:48:32 +0200] rev 25270
Merge
Thu, 03 Jul 2014 11:37:02 -0700 Added tag jdk9-b21 for changeset fa40edc81dd3
katleman [Thu, 03 Jul 2014 11:37:02 -0700] rev 25269
Added tag jdk9-b21 for changeset fa40edc81dd3
Wed, 05 Jul 2017 19:48:25 +0200 Merge
duke [Wed, 05 Jul 2017 19:48:25 +0200] rev 25268
Merge
Wed, 09 Jul 2014 10:41:31 -0700 Merge
lana [Wed, 09 Jul 2014 10:41:31 -0700] rev 25267
Merge
Tue, 01 Jul 2014 14:28:02 -0700 Merge
lana [Tue, 01 Jul 2014 14:28:02 -0700] rev 25266
Merge
Mon, 30 Jun 2014 14:09:56 -0700 8037948: Improve documentation for org.w3c.dom package
joehw [Mon, 30 Jun 2014 14:09:56 -0700] rev 25265
8037948: Improve documentation for org.w3c.dom package Reviewed-by: lancea, henryjen, alanb
Tue, 24 Jun 2014 14:07:05 -0700 8048021: Remove @version tag in jaxp repo
henryjen [Tue, 24 Jun 2014 14:07:05 -0700] rev 25264
8048021: Remove @version tag in jaxp repo Reviewed-by: joehw
Mon, 23 Jun 2014 10:36:30 -0700 5077522: Duration.compare incorrect for some values
joehw [Mon, 23 Jun 2014 10:36:30 -0700] rev 25263
5077522: Duration.compare incorrect for some values Reviewed-by: lancea, dfuchs
Thu, 19 Jun 2014 15:35:10 -0700 8047723: @since tag cleanup in jaxp
henryjen [Thu, 19 Jun 2014 15:35:10 -0700] rev 25262
8047723: @since tag cleanup in jaxp Reviewed-by: joehw
Thu, 03 Jul 2014 11:37:01 -0700 Added tag jdk9-b21 for changeset 6dcab76ce643
katleman [Thu, 03 Jul 2014 11:37:01 -0700] rev 25261
Added tag jdk9-b21 for changeset 6dcab76ce643
Wed, 05 Jul 2017 19:48:18 +0200 Merge
duke [Wed, 05 Jul 2017 19:48:18 +0200] rev 25260
Merge
Wed, 09 Jul 2014 10:41:34 -0700 Merge
lana [Wed, 09 Jul 2014 10:41:34 -0700] rev 25259
Merge
Thu, 03 Jul 2014 23:03:37 +0530 8049242: Explicit constructor overload selection should work with StaticClass as well
sundar [Thu, 03 Jul 2014 23:03:37 +0530] rev 25258
8049242: Explicit constructor overload selection should work with StaticClass as well Reviewed-by: jlaskey, attila
Thu, 03 Jul 2014 17:14:38 +0200 8047331: Assertion in CompiledFunction when running earley-boyer after Merge
attila [Thu, 03 Jul 2014 17:14:38 +0200] rev 25257
8047331: Assertion in CompiledFunction when running earley-boyer after Merge Reviewed-by: hannesw, jlaskey
Thu, 03 Jul 2014 16:15:33 +0200 8047166: 'do with({}) break ; while(0);' crashes in CodeGenerator
attila [Thu, 03 Jul 2014 16:15:33 +0200] rev 25256
8047166: 'do with({}) break ; while(0);' crashes in CodeGenerator Reviewed-by: hannesw, jlaskey
Thu, 03 Jul 2014 11:18:38 +0200 8049225: Source class exposes public mutable array
attila [Thu, 03 Jul 2014 11:18:38 +0200] rev 25255
8049225: Source class exposes public mutable array Reviewed-by: hannesw, sundar
Thu, 03 Jul 2014 11:18:26 +0200 8049223: RewriteException class exposes public mutable arrays
attila [Thu, 03 Jul 2014 11:18:26 +0200] rev 25254
8049223: RewriteException class exposes public mutable arrays Reviewed-by: hannesw, sundar
Thu, 03 Jul 2014 11:18:10 +0200 8049222: JSType class exposes public mutable arrays
attila [Thu, 03 Jul 2014 11:18:10 +0200] rev 25253
8049222: JSType class exposes public mutable arrays Reviewed-by: hannesw, sundar
Wed, 02 Jul 2014 18:10:31 +0530 8043232: Index selection of overloaded java new constructors
sundar [Wed, 02 Jul 2014 18:10:31 +0530] rev 25252
8043232: Index selection of overloaded java new constructors Reviewed-by: attila, hannesw, jlaskey
Tue, 01 Jul 2014 14:27:28 -0700 Merge
lana [Tue, 01 Jul 2014 14:27:28 -0700] rev 25251
Merge
Tue, 01 Jul 2014 17:37:39 +0530 8047359: large string size RangeError should be thrown rather than reporting negative length
sundar [Tue, 01 Jul 2014 17:37:39 +0530] rev 25250
8047359: large string size RangeError should be thrown rather than reporting negative length Reviewed-by: hannesw, attila
Mon, 30 Jun 2014 17:31:28 +0200 8048586: String concatenation with optimistic types is slow
hannesw [Mon, 30 Jun 2014 17:31:28 +0200] rev 25249
8048586: String concatenation with optimistic types is slow Reviewed-by: lagergren, attila
Mon, 30 Jun 2014 20:23:16 +0530 8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar [Mon, 30 Jun 2014 20:23:16 +0530] rev 25248
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException Reviewed-by: lagergren, hannesw, attila
Fri, 27 Jun 2014 21:54:16 +0530 8046013: TypeError: Cannot apply "with" to non script object
sundar [Fri, 27 Jun 2014 21:54:16 +0530] rev 25247
8046013: TypeError: Cannot apply "with" to non script object Reviewed-by: lagergren, hannesw
Fri, 27 Jun 2014 10:47:44 +0200 8048505: ScriptingFunctions.readFully couldn't handle file names represented as ConsStrings
lagergren [Fri, 27 Jun 2014 10:47:44 +0200] rev 25246
8048505: ScriptingFunctions.readFully couldn't handle file names represented as ConsStrings Reviewed-by: sundar, hannesw
Thu, 26 Jun 2014 15:36:15 +0200 8047371: local variable declaration in TypeEvaluator should use ScriptObject.addOwnProperty instead of .set
attila [Thu, 26 Jun 2014 15:36:15 +0200] rev 25245
8047371: local variable declaration in TypeEvaluator should use ScriptObject.addOwnProperty instead of .set Reviewed-by: jlaskey, lagergren
Thu, 26 Jun 2014 13:12:32 +0200 8047357: More precise synthetic return + unreachable throw
attila [Thu, 26 Jun 2014 13:12:32 +0200] rev 25244
8047357: More precise synthetic return + unreachable throw Reviewed-by: lagergren, sundar
Wed, 25 Jun 2014 14:36:24 +0200 8048079: Persistent code store is broken after optimistic types merge
hannesw [Wed, 25 Jun 2014 14:36:24 +0200] rev 25243
8048079: Persistent code store is broken after optimistic types merge Reviewed-by: sundar, jlaskey, attila
Wed, 25 Jun 2014 17:08:47 +0530 8048071: eval within 'with' statement does not use correct scope if with scope expression has a copy of eval
sundar [Wed, 25 Jun 2014 17:08:47 +0530] rev 25242
8048071: eval within 'with' statement does not use correct scope if with scope expression has a copy of eval Reviewed-by: hannesw, jlaskey
Tue, 24 Jun 2014 19:29:41 +0200 8048009: Type info caching accidentally defeated
attila [Tue, 24 Jun 2014 19:29:41 +0200] rev 25241
8048009: Type info caching accidentally defeated Reviewed-by: hannesw, jlaskey
Tue, 24 Jun 2014 19:43:44 +0530 8047959: bindings created for declarations in eval code are not mutable
sundar [Tue, 24 Jun 2014 19:43:44 +0530] rev 25240
8047959: bindings created for declarations in eval code are not mutable Reviewed-by: jlaskey, attila
Mon, 23 Jun 2014 18:32:11 +0200 8046201: Avoid repeated flattening of nested ConsStrings
hannesw [Mon, 23 Jun 2014 18:32:11 +0200] rev 25239
8046201: Avoid repeated flattening of nested ConsStrings Reviewed-by: lagergren, attila
Mon, 23 Jun 2014 21:23:53 +0530 8047728: (function(x){var o={x:0}; with(o){delete x} return o.x})() evaluates to 0 instead of undefined
sundar [Mon, 23 Jun 2014 21:23:53 +0530] rev 25238
8047728: (function(x){var o={x:0}; with(o){delete x} return o.x})() evaluates to 0 instead of undefined Reviewed-by: jlaskey, hannesw, attila
Mon, 23 Jun 2014 10:59:33 +0200 8046905: apply on apply is broken
attila [Mon, 23 Jun 2014 10:59:33 +0200] rev 25237
8046905: apply on apply is broken Reviewed-by: hannesw, lagergren
(0) -10000 -3000 -1000 -512 +512 +1000 +3000 +10000 +30000 tip