Mon, 10 Mar 2008 17:21:56 -0700 Merge
jcoomes [Mon, 10 Mar 2008 17:21:56 -0700] rev 215
Merge
Fri, 07 Mar 2008 11:09:13 -0800 6667605: (Escape Analysis) inline java constructors when EA is on
kvn [Fri, 07 Mar 2008 11:09:13 -0800] rev 214
6667605: (Escape Analysis) inline java constructors when EA is on Summary: java constructors should be inlined to be able scalar replace a new object Reviewed-by: rasbold
Thu, 06 Mar 2008 20:58:16 -0800 6670459: Fix Node::dump() performance
kvn [Thu, 06 Mar 2008 20:58:16 -0800] rev 213
6670459: Fix Node::dump() performance Summary: dump full ideal graph takes forever. Reviewed-by: never, rasbold
Thu, 06 Mar 2008 10:53:33 -0800 6667612: (Escape Analysis) disable loop cloning if it has a scalar replaceable allocation
kvn [Thu, 06 Mar 2008 10:53:33 -0800] rev 212
6667612: (Escape Analysis) disable loop cloning if it has a scalar replaceable allocation Summary: Cloning an allocation will not allow scalar replacement since memory operations could not be associated with one allocation. Reviewed-by: rasbold
Thu, 06 Mar 2008 10:30:17 -0800 6667610: (Escape Analysis) retry compilation without EA if it fails
kvn [Thu, 06 Mar 2008 10:30:17 -0800] rev 211
6667610: (Escape Analysis) retry compilation without EA if it fails Summary: During split unique types EA could exceed nodes limit and fail the method compilation. Reviewed-by: rasbold
Wed, 05 Mar 2008 11:33:31 -0800 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn [Wed, 05 Mar 2008 11:33:31 -0800] rev 210
6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation Summary: In Parse::do_if() 'c' (CmpNode) node may be changed during BoolNode transformation so 'c' may became dead but the node is referenced later in the code. Reviewed-by: never
Fri, 29 Feb 2008 19:57:41 -0800 6667618: disable LoadL->ConvL2I ==> LoadI optimization
kvn [Fri, 29 Feb 2008 19:57:41 -0800] rev 209
6667618: disable LoadL->ConvL2I ==> LoadI optimization Summary: this optimization causes problems (sizes of Load and Store nodes do not match) for objects initialization code and Escape Analysis Reviewed-by: jrose, never
Fri, 29 Feb 2008 19:07:15 -0800 6667588: Don't generate duplicated CMP for float/double values
kvn [Fri, 29 Feb 2008 19:07:15 -0800] rev 208
6667588: Don't generate duplicated CMP for float/double values Summary: float CMove generation add duplicated CMPF if there are more then one Move depending on the condition. Reviewed-by: jrose, never, rasbold
Fri, 29 Feb 2008 11:22:27 -0800 6667581: Don't generate initialization (by 0) code for arrays with size 0
kvn [Fri, 29 Feb 2008 11:22:27 -0800] rev 207
6667581: Don't generate initialization (by 0) code for arrays with size 0 Summary: generate_arraycopy() does not check the size of allocated array. Reviewed-by: jrose, never
Fri, 29 Feb 2008 09:57:18 -0800 6667580: Optimize CmpP for allocations
kvn [Fri, 29 Feb 2008 09:57:18 -0800] rev 206
6667580: Optimize CmpP for allocations Summary: CmpP could be optimized out if it compares new allocated objects. Reviewed-by: jrose, never, rasbold
Thu, 28 Feb 2008 15:40:09 -0800 6667573: Use set_req_X() in AddPNode::Ideal() for Iterative GVN
kvn [Thu, 28 Feb 2008 15:40:09 -0800] rev 205
6667573: Use set_req_X() in AddPNode::Ideal() for Iterative GVN Summary: set_req_X() puts dependent nodes on IGVN worklist which allows to improve graph and gives more opportunities for EA scalar replacement. Reviewed-by: jrose, never
Thu, 28 Feb 2008 10:45:15 -0800 6590177: jck60019 test assert(!repeated,"do not walk merges twice")
kvn [Thu, 28 Feb 2008 10:45:15 -0800] rev 204
6590177: jck60019 test assert(!repeated,"do not walk merges twice") Summary: A mergemem node could be not in worklist_store but in should_not_repeat vectorset since it was processed and removed from worklist_store before. Reviewed-by: jrose, never
Wed, 27 Feb 2008 00:23:37 -0800 6610906: inexplicable IncompatibleClassChangeError
jrose [Wed, 27 Feb 2008 00:23:37 -0800] rev 203
6610906: inexplicable IncompatibleClassChangeError Summary: dependency check must treat polymorphic interfaces consistently Reviewed-by: kvn, never, sgoldman
Mon, 25 Feb 2008 15:05:44 -0800 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn [Mon, 25 Feb 2008 15:05:44 -0800] rev 202
6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM Summary: T_ADDRESS size is defined as 'int' size (4 bytes) but C2 use it for raw pointers and as memory type for StoreP and LoadP nodes. Reviewed-by: jrose
Fri, 22 Feb 2008 17:55:13 -0800 6650373: Assert in methodOopDesc::make_adapters()
kvn [Fri, 22 Feb 2008 17:55:13 -0800] rev 201
6650373: Assert in methodOopDesc::make_adapters() Summary: AdapterHandlerLibrary::get_create_adapter_index() returns incorrect value (-2) when CodeCache is full. Reviewed-by: sgoldman
Thu, 21 Feb 2008 19:03:44 -0800 6498878: client compiler crashes on windows when dealing with breakpoint instructions
kvn [Thu, 21 Feb 2008 19:03:44 -0800] rev 200
6498878: client compiler crashes on windows when dealing with breakpoint instructions Summary: _is_compilable check prevents breakpoint bytecodes reversion when loading bytecodes for ciMethod. Reviewed-by: never
Thu, 21 Feb 2008 14:03:41 -0800 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn [Thu, 21 Feb 2008 14:03:41 -0800] rev 199
6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler Summary: After an exception handler block is split the exception information is not moved to the new block which starts in exception handler BCI. Reviewed-by: jrose
Wed, 20 Feb 2008 17:23:43 -0800 6621094: PrintOptoAssembly is broken for oops information in DebugInfo
kvn [Wed, 20 Feb 2008 17:23:43 -0800] rev 198
6621094: PrintOptoAssembly is broken for oops information in DebugInfo Summary: OopMapValue and VMRegImpl classes miss the virtual method print_on(st). Reviewed-by: rasbold, jrose, never
Wed, 20 Feb 2008 16:19:43 -0800 6614330: Node::dump(n) does not print full graph for specified depth.
kvn [Wed, 20 Feb 2008 16:19:43 -0800] rev 197
6614330: Node::dump(n) does not print full graph for specified depth. Summary: A node is not processed in dump_nodes() if it was visited during processing previous inputs. Reviewed-by: rasbold
Tue, 12 Feb 2008 18:37:50 -0800 6621098: "* HeapWordSize" for TrackedInitializationLimit is missing
kvn [Tue, 12 Feb 2008 18:37:50 -0800] rev 196
6621098: "* HeapWordSize" for TrackedInitializationLimit is missing Summary: '* HeapWordSize' is missing in GraphKit::set_output_for_allocation() Reviewed-by: rasbold, jrose, never
Thu, 17 Jan 2008 13:38:17 -0800 6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp [Thu, 17 Jan 2008 13:38:17 -0800] rev 195
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part) Summary: convert strings from Download Manager into native encoding in the VM Reviewed-by: sbohne, never, phh, kamg, xlu
Thu, 06 Dec 2007 13:59:28 -0800 6635560: segv in reference processor on t1000
jcoomes [Thu, 06 Dec 2007 13:59:28 -0800] rev 194
6635560: segv in reference processor on t1000 Summary: Revert back to using the default page size for the card table Reviewed-by: pbk, phh
Wed, 05 Dec 2007 09:04:00 -0800 6629887: 64-bit windows should not restrict default heap size to 1400m
phh [Wed, 05 Dec 2007 09:04:00 -0800] rev 193
6629887: 64-bit windows should not restrict default heap size to 1400m Reviewed-by: jmasa, sbohne, ikrylov, xlu
Wed, 05 Dec 2007 09:03:00 -0800 6614036: REGRESSION: Java server x86 VM intermittently crash with SIGSEGV (0xb)
rasbold [Wed, 05 Dec 2007 09:03:00 -0800] rev 192
6614036: REGRESSION: Java server x86 VM intermittently crash with SIGSEGV (0xb) Summary: restore destination address in x86 32-bit checkcast_arraycopy stub Reviewed-by: jrose, kvn, never
Wed, 05 Dec 2007 09:02:00 -0800 6621621: HashMap front cache should be enabled only with AggressiveOpts
phh [Wed, 05 Dec 2007 09:02:00 -0800] rev 191
6621621: HashMap front cache should be enabled only with AggressiveOpts Reviewed-by: sbohne, xlu
Wed, 05 Dec 2007 09:01:00 -0800 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never [Wed, 05 Dec 2007 09:01:00 -0800] rev 190
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long) Reviewed-by: kvn, rasbold
Wed, 05 Dec 2007 09:00:00 -0800 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed [Wed, 05 Dec 2007 09:00:00 -0800] rev 189
6664627: Merge changes made only in hotspot 11 forward to jdk 7 Reviewed-by: jcoomes
Tue, 11 Mar 2008 14:19:53 -0700 6673975: Disable ZapUnusedHeapArea to reduce GC execution times of debug JVM's.
jmasa [Tue, 11 Mar 2008 14:19:53 -0700] rev 188
6673975: Disable ZapUnusedHeapArea to reduce GC execution times of debug JVM's. Summary: Mangling the unused space is having an adverse affect on testing with fastdebug builds so turn it off by default. Reviewed-by: ysr, tonyp
Wed, 05 Mar 2008 17:37:04 -0800 Merge
jcoomes [Wed, 05 Mar 2008 17:37:04 -0800] rev 187
Merge
Sun, 02 Mar 2008 16:10:12 -0800 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa [Sun, 02 Mar 2008 16:10:12 -0800] rev 186
6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO Summary: Default values set by cms ergonomics are set with FLAG_SET_DEFAULT so down stream the values look like the default values and affect how later parameters are set. Set these values with FLAG_SET_ERGO instead and adjust how later parameters are interpreted. Reviewed-by: iveresov, apetrusenko, pbk, ysr
Fri, 29 Feb 2008 14:42:56 -0800 6668743: CMS: Consolidate block statistics reporting code
ysr [Fri, 29 Feb 2008 14:42:56 -0800] rev 185
6668743: CMS: Consolidate block statistics reporting code Summary: Reduce the amount of related code replication and improve pretty printing. Reviewed-by: jmasa
Tue, 26 Feb 2008 15:57:49 -0800 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr [Tue, 26 Feb 2008 15:57:49 -0800] rev 184
6621728: Heap inspection should not crash in the face of C-heap exhaustion Summary: Deal more gracefully with situations where C-heap scratch space cannot be had Reviewed-by: jmasa
Fri, 22 Feb 2008 17:17:14 -0800 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa [Fri, 22 Feb 2008 17:17:14 -0800] rev 183
6362677: Change parallel GC collector default number of parallel GC threads. Summary: Use the same default number of GC threads as used by ParNewGC and ConcMarkSweepGC (i.e., the 5/8th rule). Reviewed-by: ysr, tonyp
Thu, 21 Feb 2008 11:03:54 -0800 6642634: Test nsk/regression/b6186200 crashed with SIGSEGV
ysr [Thu, 21 Feb 2008 11:03:54 -0800] rev 182
6642634: Test nsk/regression/b6186200 crashed with SIGSEGV Summary: Use correct allocation path in expand_and_allocate() so object's mark and p-bits are set as appropriate. Reviewed-by: jmasa, pbk
Wed, 20 Feb 2008 08:40:31 -0800 6665445: Backout change to CardTableModRefBS::resize_covered_region()
jmasa [Wed, 20 Feb 2008 08:40:31 -0800] rev 181
6665445: Backout change to CardTableModRefBS::resize_covered_region() Summary: Backed out part of cahnge for 6624765 because of nightly testing regressions. Reviewers below were for 6624765. Reviewed-by: ysr, apetrusenko
Sat, 16 Feb 2008 22:41:20 -0800 6621144: CMS: assertion failure "is_cms_thread == Thread::current()->is_ConcurrentGC_thread()"
ysr [Sat, 16 Feb 2008 22:41:20 -0800] rev 180
6621144: CMS: assertion failure "is_cms_thread == Thread::current()->is_ConcurrentGC_thread()" Summary: Take lock conditionally (in asynchronous mode only) when updating the dead-object map. Reviewed-by: jmasa
Fri, 15 Feb 2008 07:01:10 -0800 6624765: Guarantee failure "Unexpected dirty card found"
jmasa [Fri, 15 Feb 2008 07:01:10 -0800] rev 179
6624765: Guarantee failure "Unexpected dirty card found" Summary: In verification take into account partial coverage of a region by a card and expansion of the card table. Reviewed-by: ysr, apetrusenko
Tue, 12 Feb 2008 16:07:46 -0800 6659981: +ParallelRefProcEnabled crashes on single core platform
ysr [Tue, 12 Feb 2008 16:07:46 -0800] rev 178
6659981: +ParallelRefProcEnabled crashes on single core platform Summary: Disable parallel reference processing when there are no worker threads Reviewed-by: apetrusenko, pbk, jmasa, tonyp
Mon, 11 Feb 2008 15:40:07 -0800 6624782: Bigapps crashes during CMS precleaning.
jmasa [Mon, 11 Feb 2008 15:40:07 -0800] rev 177
6624782: Bigapps crashes during CMS precleaning. Summary: Lowered optimization level for files instanceKlass.cpp and objArrayKlass.cpp Reviewed-by: ysr
Wed, 09 Apr 2008 11:18:58 -0700 Added tag jdk7-b25 for changeset 408b55da75b0
xdono [Wed, 09 Apr 2008 11:18:58 -0700] rev 176
Added tag jdk7-b25 for changeset 408b55da75b0
Wed, 09 Apr 2008 11:18:55 -0700 Added tag jdk7-b25 for changeset 41658053480c
xdono [Wed, 09 Apr 2008 11:18:55 -0700] rev 175
Added tag jdk7-b25 for changeset 41658053480c
Wed, 05 Jul 2017 16:34:33 +0200 Added tag jdk7-b25 for changeset bf2517e15f0c
duke [Wed, 05 Jul 2017 16:34:33 +0200] rev 174
Added tag jdk7-b25 for changeset bf2517e15f0c
Wed, 05 Jul 2017 16:34:33 +0200 Merge jdk7-b25
duke [Wed, 05 Jul 2017 16:34:33 +0200] rev 173
Merge
Wed, 05 Jul 2017 16:34:30 +0200 Merge
duke [Wed, 05 Jul 2017 16:34:30 +0200] rev 172
Merge
Fri, 14 Mar 2008 16:09:30 -0700 6638501: Regression with Javac in JDK6 U4 b03?
jjg [Fri, 14 Mar 2008 16:09:30 -0700] rev 171
6638501: Regression with Javac in JDK6 U4 b03? Summary: replace some String paths with File paths in Paths.java Reviewed-by: ksrini
Thu, 13 Mar 2008 13:42:38 -0700 6559315: Inconsistent non-standard Sun copyright in src/share/opensource/javac/doc/document.css
jjg [Thu, 13 Mar 2008 13:42:38 -0700] rev 170
6559315: Inconsistent non-standard Sun copyright in src/share/opensource/javac/doc/document.css Summary: Remove obsolete files Reviewed-by: mcimadamore
Wed, 12 Mar 2008 13:06:00 -0700 6668794: javac puts localized text in raw diagnostics
jjg [Wed, 12 Mar 2008 13:06:00 -0700] rev 169
6668794: javac puts localized text in raw diagnostics 6668796: bad diagnostic "bad class file" given for source files Summary: Replace internal use of localized text with JCDiagnostic fragments; fix diagnostic for bad source file Reviewed-by: mcimadamore
Tue, 11 Mar 2008 13:14:55 -0700 6307187: clean up code for -Xlint:options
jjg [Tue, 11 Mar 2008 13:14:55 -0700] rev 168
6307187: clean up code for -Xlint:options Summary: introduce common code for handling one-of and any-of options Reviewed-by: mcimadamore
Thu, 06 Mar 2008 10:25:04 -0800 6668802: javac handles diagnostics for last line badly, if line not terminated by newline
jjg [Thu, 06 Mar 2008 10:25:04 -0800] rev 167
6668802: javac handles diagnostics for last line badly, if line not terminated by newline Summary: use CharBuffer.limit(), not the length of the backing array Reviewed-by: mcimadamore
Thu, 06 Mar 2008 10:07:25 -0800 4741726: allow Object += String
jjg [Thu, 06 Mar 2008 10:07:25 -0800] rev 166
4741726: allow Object += String Summary: remove code in line with restriction removed from JLS Reviewed-by: mcimadamore Contributed-by: michaelbailey0@gmail.com
Tue, 04 Mar 2008 15:45:20 +0000 6663588: Compiler goes into infinite loop for Cyclic Inheritance test case
mcimadamore [Tue, 04 Mar 2008 15:45:20 +0000] rev 165
6663588: Compiler goes into infinite loop for Cyclic Inheritance test case Summary: interplay between cyclic inheritance and tvar bounds hangs javac Reviewed-by: jjg
Tue, 04 Mar 2008 15:19:06 +0000 6608214: Exception throw while analysing a file with error
mcimadamore [Tue, 04 Mar 2008 15:19:06 +0000] rev 164
6608214: Exception throw while analysing a file with error Summary: bad error-recovery after bad type-variable bound is detected Reviewed-by: jjg
Tue, 04 Mar 2008 13:00:08 +0000 6660289: declared bound in inner class referring a type variable of the outer class
mcimadamore [Tue, 04 Mar 2008 13:00:08 +0000] rev 163
6660289: declared bound in inner class referring a type variable of the outer class Summary: NPE caused by a defect in type-variable attribution Reviewed-by: jjg
Tue, 04 Mar 2008 12:14:13 +0000 6611449: Internal Error thrown during generic method/constructor invocation
mcimadamore [Tue, 04 Mar 2008 12:14:13 +0000] rev 162
6611449: Internal Error thrown during generic method/constructor invocation Summary: type-inference should fail since lub is not defined for primitive types Reviewed-by: jjg
Mon, 03 Mar 2008 16:03:53 +0000 6614974: javac successfully compiles code that throws java.lang.VerifyError when run
mcimadamore [Mon, 03 Mar 2008 16:03:53 +0000] rev 161
6614974: javac successfully compiles code that throws java.lang.VerifyError when run Summary: synthetic cast missing when translating autoboxing expressions Reviewed-by: jjg
Fri, 29 Feb 2008 20:04:03 -0800 6669216: Add jcheck configuration directories
mr [Fri, 29 Feb 2008 20:04:03 -0800] rev 160
6669216: Add jcheck configuration directories Reviewed-by: ohair, xdono
Tue, 04 Dec 2007 16:28:45 -0800 Added tag jdk7-b24 for changeset 06bc494ca11e
xdono [Tue, 04 Dec 2007 16:28:45 -0800] rev 159
Added tag jdk7-b24 for changeset 06bc494ca11e
Wed, 05 Jul 2017 16:34:27 +0200 Merge
duke [Wed, 05 Jul 2017 16:34:27 +0200] rev 158
Merge
Tue, 04 Mar 2008 10:58:50 -0800 6652588: Fix broken JPRT makefile target, no bundle saved
ohair [Tue, 04 Mar 2008 10:58:50 -0800] rev 157
6652588: Fix broken JPRT makefile target, no bundle saved Summary: jprt make rules were missing the bundle logic Reviewed-by: xdono
Fri, 29 Feb 2008 20:03:59 -0800 6669216: Add jcheck configuration directories
mr [Fri, 29 Feb 2008 20:03:59 -0800] rev 156
6669216: Add jcheck configuration directories Reviewed-by: ohair, xdono
Tue, 04 Dec 2007 16:28:24 -0800 Added tag jdk7-b24 for changeset 474761f14bca
xdono [Tue, 04 Dec 2007 16:28:24 -0800] rev 155
Added tag jdk7-b24 for changeset 474761f14bca
Wed, 05 Jul 2017 16:34:23 +0200 Merge
duke [Wed, 05 Jul 2017 16:34:23 +0200] rev 154
Merge
Tue, 04 Mar 2008 10:58:04 -0800 6652588: Fix broken JPRT makefile target, no bundle saved
ohair [Tue, 04 Mar 2008 10:58:04 -0800] rev 153
6652588: Fix broken JPRT makefile target, no bundle saved Summary: jprt make rules missing the bundle up of the output Reviewed-by: xdono
Fri, 29 Feb 2008 20:03:59 -0800 6669216: Add jcheck configuration directories
mr [Fri, 29 Feb 2008 20:03:59 -0800] rev 152
6669216: Add jcheck configuration directories Reviewed-by: ohair, xdono
Tue, 04 Dec 2007 16:28:22 -0800 Added tag jdk7-b24 for changeset 7f561c08de6b
xdono [Tue, 04 Dec 2007 16:28:22 -0800] rev 151
Added tag jdk7-b24 for changeset 7f561c08de6b
Wed, 05 Jul 2017 16:34:21 +0200 Merge
duke [Wed, 05 Jul 2017 16:34:21 +0200] rev 150
Merge
Tue, 25 Mar 2008 14:42:28 -0700 6627817: Remove ^M characters in all files (Makefiles too)
ohair [Tue, 25 Mar 2008 14:42:28 -0700] rev 149
6627817: Remove ^M characters in all files (Makefiles too) Summary: Some files included the use of the ^M character, which has been deleted Reviewed-by: xdono
Thu, 06 Mar 2008 13:56:47 -0800 6624808: corba makefiles not using langtools compiler
ohair [Thu, 06 Mar 2008 13:56:47 -0800] rev 148
6624808: corba makefiles not using langtools compiler Summary: If supplied, the langtools javac should be used. Reviewed-by: xdono
Fri, 29 Feb 2008 20:03:57 -0800 6669216: Add jcheck configuration directories
mr [Fri, 29 Feb 2008 20:03:57 -0800] rev 147
6669216: Add jcheck configuration directories Reviewed-by: ohair, xdono
Tue, 04 Dec 2007 16:28:13 -0800 Added tag jdk7-b24 for changeset 02bb8761fcce
xdono [Tue, 04 Dec 2007 16:28:13 -0800] rev 146
Added tag jdk7-b24 for changeset 02bb8761fcce
Wed, 05 Jul 2017 16:34:18 +0200 Merge
duke [Wed, 05 Jul 2017 16:34:18 +0200] rev 145
Merge
Thu, 27 Mar 2008 12:09:50 -0700 Merge
xdono [Thu, 27 Mar 2008 12:09:50 -0700] rev 144
Merge
Wed, 26 Mar 2008 17:48:05 -0700 Merge
ohair [Wed, 26 Mar 2008 17:48:05 -0700] rev 143
Merge
Tue, 25 Mar 2008 14:40:43 -0700 6627817: Remove ^M characters in all files (Makefiles too)
ohair [Tue, 25 Mar 2008 14:40:43 -0700] rev 142
6627817: Remove ^M characters in all files (Makefiles too) Summary: Some files included the use of the ^M character, which has been deleted. Reviewed-by: xdono
Wed, 19 Mar 2008 13:26:29 -0700 6611629: Avoid hardcoded cygwin paths for memory detection
ohair [Wed, 19 Mar 2008 13:26:29 -0700] rev 141
6611629: Avoid hardcoded cygwin paths for memory detection Summary: Use free with sygwin, mem or systeminfo otherwise, to get MB_OF_MEMORY on windows. Reviewed-by: tbell
Tue, 18 Mar 2008 11:08:09 -0700 6654458: /java/devtools findbugs doesn't work on windows
ohair [Tue, 18 Mar 2008 11:08:09 -0700] rev 140
6654458: /java/devtools findbugs doesn't work on windows Summary: Changes to both ant and findbugs version checking. Reviewed-by: tbell
Tue, 18 Mar 2008 11:06:34 -0700 6674232: OPENJDK=false is same as OPENJDK=true
ohair [Tue, 18 Mar 2008 11:06:34 -0700] rev 139
6674232: OPENJDK=false is same as OPENJDK=true Summary: OPENJDK should be empty (undefined) or "true". Reviewed-by: tbell
Tue, 18 Mar 2008 11:04:42 -0700 6611788: chmod a+x bin/winver.exe in make/tools/winver/Makefile fails on a read only file system
ohair [Tue, 18 Mar 2008 11:04:42 -0700] rev 138
6611788: chmod a+x bin/winver.exe in make/tools/winver/Makefile fails on a read only file system Summary: Tell Mercurial this file has execute permission. Reviewed-by: tbell
Tue, 18 Mar 2008 11:03:27 -0700 6674226: Warning errors in freetypecheck
ohair [Tue, 18 Mar 2008 11:03:27 -0700] rev 137
6674226: Warning errors in freetypecheck Summary: Just corrected some C code to remove warning errors from gcc. Reviewed-by: tbell
Mon, 24 Mar 2008 06:33:16 -0700 Merge
yan [Mon, 24 Mar 2008 06:33:16 -0700] rev 136
Merge
Fri, 21 Mar 2008 09:54:50 +0300 6599270: Using EmbeddedFrame in SWT leads to a hang
ant [Fri, 21 Mar 2008 09:54:50 +0300] rev 135
6599270: Using EmbeddedFrame in SWT leads to a hang Summary: Excluding EmbeddedFrame from the workaround of activating a toplevel in not foreground process. Reviewed-by: son
Thu, 20 Mar 2008 18:06:41 +0300 6598089: JDK 7: AWT often goes into busy loop when showing dialog
ant [Thu, 20 Mar 2008 18:06:41 +0300] rev 134
6598089: JDK 7: AWT often goes into busy loop when showing dialog Summary: Preventing focus from getting in an endless loop. Reviewed-by: son
Thu, 20 Mar 2008 16:21:44 +0300 6630878: clean target in sun/xawt is incomplete
son [Thu, 20 Mar 2008 16:21:44 +0300] rev 133
6630878: clean target in sun/xawt is incomplete Summary: clean target should remove .gen_icons Reviewed-by: yan
Thu, 20 Mar 2008 14:26:38 +0300 Merge
ant [Thu, 20 Mar 2008 14:26:38 +0300] rev 132
Merge
Wed, 19 Mar 2008 16:23:50 +0300 6567410: PIT : java/awt/Focus/AutoRequestFocusTest/AutoRequestFocusSetVisibleTest.java fails
ant [Wed, 19 Mar 2008 16:23:50 +0300] rev 131
6567410: PIT : java/awt/Focus/AutoRequestFocusTest/AutoRequestFocusSetVisibleTest.java fails Summary: A filter flag has been added to the HCBT focus hook. Reviewed-by: dcherepanov
Thu, 20 Mar 2008 11:09:16 +0300 4993545: NativeInLightFixer adds asynchronousity
anthony [Thu, 20 Mar 2008 11:09:16 +0300] rev 130
4993545: NativeInLightFixer adds asynchronousity Summary: All the hooks related to the NativeInLightFixer have been moved to the HW/LW mixing handling methods. The NativeInLightFixer itself has been removed. Reviewed-by: son, alexp
Tue, 18 Mar 2008 16:19:03 +0300 6589527: Window and Frame instances can hide their "Applet Warning"
anthony [Tue, 18 Mar 2008 16:19:03 +0300] rev 129
6589527: Window and Frame instances can hide their "Applet Warning" Summary: Additional constraints have been added for the setBounds() operation. Reviewed-by: son, art
Tue, 18 Mar 2008 15:07:42 +0300 6581927: REG : Non focusable frame can be minimized to very small & Frame icon can be seen on frame buttons.
anthony [Tue, 18 Mar 2008 15:07:42 +0300] rev 128
6581927: REG : Non focusable frame can be minimized to very small & Frame icon can be seen on frame buttons. Summary: The SWP_NOSENDCHANGING flag should not be passed to the ::SetWindowPos() WinAPI function when we receive the WM_MOUSEMOVE message while manually handling the resizing of non-focusable frames. Reviewed-by: son, ant
Tue, 18 Mar 2008 14:36:14 +0300 6304277: PIT: Adding a TrayIcon closes a SplashScreen on Solaris but not on Win32
anthony [Tue, 18 Mar 2008 14:36:14 +0300] rev 127
6304277: PIT: Adding a TrayIcon closes a SplashScreen on Solaris but not on Win32 Summary: The Window.closeSplashScreen() method now verified the boolean flag isTrayIconWindow, and returns if it is true. Reviewed-by: son, dcherepanov
Tue, 18 Mar 2008 14:20:28 +0300 6637796: setBounds doesn't enlarge Component
anthony [Tue, 18 Mar 2008 14:20:28 +0300] rev 126
6637796: setBounds doesn't enlarge Component Summary: Added the areBoundsValid() method that verifies whether the current bounds of the component are valid. Using the isValid() method for this purpose previously was incorrect. Reviewed-by: son, art
Tue, 18 Mar 2008 14:10:28 +0300 6607660: java.awt.Container.getMouseEventTargetImpl should be invoked while holding the TreeLock
anthony [Tue, 18 Mar 2008 14:10:28 +0300] rev 125
6607660: java.awt.Container.getMouseEventTargetImpl should be invoked while holding the TreeLock Summary: The body of the method has been wrapped into the synchronized (getTreeLock()) { } block. Reviewed-by: son, art
Tue, 18 Mar 2008 13:53:08 +0300 6613927: Compilation of splashscreen png library failed on Ubuntu 7.04 (64bit)
anthony [Tue, 18 Mar 2008 13:53:08 +0300] rev 124
6613927: Compilation of splashscreen png library failed on Ubuntu 7.04 (64bit) Summary: The macro PNG_NO_MMX_CODE should be defined when compiling on 64bit Linux Reviewed-by: yan, avu
Tue, 18 Mar 2008 12:04:20 +0300 6608764: PropertyChangeListeners machinery should have a better locking scheme
anthony [Tue, 18 Mar 2008 12:04:20 +0300] rev 123
6608764: PropertyChangeListeners machinery should have a better locking scheme Summary: Change to use a private final object java.awt.Component.changeSupportLock for locking purposes instead of using this Reviewed-by: son, ant
Fri, 14 Mar 2008 22:00:33 +0300 6578583: Regression: Modality is broken in windows vista home premium from jdk1.7 b02 onwards.
dcherepanov [Fri, 14 Mar 2008 22:00:33 +0300] rev 122
6578583: Regression: Modality is broken in windows vista home premium from jdk1.7 b02 onwards. Summary: WS_DISABLED style should be used to fix some modality bugs Reviewed-by: art, son
Fri, 14 Mar 2008 20:40:09 +0300 6524352: support for high-resolution mouse wheel
dcherepanov [Fri, 14 Mar 2008 20:40:09 +0300] rev 121
6524352: support for high-resolution mouse wheel Summary: added support for high-resolution mouse wheel Reviewed-by: dav, son
Fri, 14 Mar 2008 18:50:02 +0300 6603010: Out-of-process Java Plug-In non-functional or barely functional on X11 platforms
dcherepanov [Fri, 14 Mar 2008 18:50:02 +0300] rev 120
6603010: Out-of-process Java Plug-In non-functional or barely functional on X11 platforms Summary: AWT XEmbed shouldn't use _SUN_XEMBED_START message Reviewed-by: art, son
Fri, 14 Mar 2008 18:27:34 +0300 6612497: api/java_awt/Container/index.html#isAncestorOf Container2019 hangs since JDK 7 b15
dcherepanov [Fri, 14 Mar 2008 18:27:34 +0300] rev 119
6612497: api/java_awt/Container/index.html#isAncestorOf Container2019 hangs since JDK 7 b15 Summary: Partial rollback changes for 6567564 in the Component.getGC method Reviewed-by: art, son
Fri, 14 Mar 2008 17:23:25 +0300 6522731: Location of the frame changes,when the frame is resized & non-resized.
dcherepanov [Fri, 14 Mar 2008 17:23:25 +0300] rev 118
6522731: Location of the frame changes,when the frame is resized & non-resized. Summary: XMoveWindow() should use shell's location Reviewed-by: son
Thu, 13 Mar 2008 17:14:44 +0300 6538066: XSelection should be more passive
son [Thu, 13 Mar 2008 17:14:44 +0300] rev 117
6538066: XSelection should be more passive Summary: Now only XClipboard know about XSelection, and XSelection knows nothing about XClipboard. Reviewed-by: uta, denis
Thu, 13 Mar 2008 17:08:15 +0300 6645856: static field XWindowPeer.defaultFont hides XWindow.defaultFont
son [Thu, 13 Mar 2008 17:08:15 +0300] rev 116
6645856: static field XWindowPeer.defaultFont hides XWindow.defaultFont Summary: unnedded code has been removed. Added getter for XWindow.defaultFont to initialize it lazily. Reviewed-by: dav
Thu, 13 Mar 2008 17:04:54 +0300 6645885: small refactoring for XContentWindow
son [Thu, 13 Mar 2008 17:04:54 +0300] rev 115
6645885: small refactoring for XContentWindow Summary: move createContent() method from XDecoratedPeer to XContentWindow, so only XContentWindow keep information about the way we position it. Reviewed-by: anthony
Thu, 13 Mar 2008 16:56:54 +0300 6636368: XAtom contains unused code
son [Thu, 13 Mar 2008 16:56:54 +0300] rev 114
6636368: XAtom contains unused code Summary: unused code has been removed Reviewed-by: dcherepanov
Thu, 13 Mar 2008 16:54:51 +0300 6636370: minor corrections and simplification of code in AppContext
son [Thu, 13 Mar 2008 16:54:51 +0300] rev 113
6636370: minor corrections and simplification of code in AppContext Summary: mainAppContext, isDisposed, and numAppContexts has beem made volatile. mostRecentThreadAppContext has been rewritten using ThreadLocal. Reviewed-by: art
Thu, 13 Mar 2008 16:51:04 +0300 6636331: ConcurrentModificationException in AppContext code
son [Thu, 13 Mar 2008 16:51:04 +0300] rev 112
6636331: ConcurrentModificationException in AppContext code Summary: Added synchronization to AppContext.getAppContexts() Reviewed-by: art
Thu, 13 Mar 2008 16:47:40 +0300 6636369: sun.awt.datatransfer.DataTransferer contains double-check idiom
son [Thu, 13 Mar 2008 16:47:40 +0300] rev 111
6636369: sun.awt.datatransfer.DataTransferer contains double-check idiom Summary: double-check has been removed Reviewed-by: dav
Thu, 13 Mar 2008 16:42:52 +0300 6607163: Linux: Cannot copy image from Java to OpenOffice
son [Thu, 13 Mar 2008 16:42:52 +0300] rev 110
6607163: Linux: Cannot copy image from Java to OpenOffice Summary: TARGETS should have type ATOM Reviewed-by: denis
Thu, 13 Mar 2008 16:32:15 +0300 6603256: Startup: Defer initialization of DropTarget's flavorMap
son [Thu, 13 Mar 2008 16:32:15 +0300] rev 109
6603256: Startup: Defer initialization of DropTarget's flavorMap Summary: SystemFlavorMap is lazily initialized now. Reviewed-by: uta
Thu, 13 Mar 2008 16:27:20 +0300 6592751: EmbeddedFrame disposal is fragile and breaks clean AppContext termination
son [Thu, 13 Mar 2008 16:27:20 +0300] rev 108
6592751: EmbeddedFrame disposal is fragile and breaks clean AppContext termination Summary: AppContext.dispose() should be ready to get exceptions during disposal of toplevels. Also now we mark windows peers as destroyed when native object has been destroyed. Reviewed-by: art
Thu, 13 Mar 2008 16:19:32 +0300 6632140: minor refactoring for XWM
son [Thu, 13 Mar 2008 16:19:32 +0300] rev 107
6632140: minor refactoring for XWM Summary: code cleanup and generificaion for XWM Reviewed-by: anthony
Thu, 13 Mar 2008 16:12:56 +0300 6616095: AWT's WindowDisposerRecord keeps AppContext alive too long
son [Thu, 13 Mar 2008 16:12:56 +0300] rev 106
6616095: AWT's WindowDisposerRecord keeps AppContext alive too long Summary: WindowDisposerRecord should not keep strong reference to AppContext. Reviewed-by: art
Thu, 13 Mar 2008 15:36:31 +0300 6595651: Focus transfers broken for applications embedding AWT across processes
son [Thu, 13 Mar 2008 15:36:31 +0300] rev 105
6595651: Focus transfers broken for applications embedding AWT across processes Summary: Now we allow cross-process focus requests if focus is in embedder's process. Reviewed-by: ant
Mon, 17 Mar 2008 23:03:51 -0700 Merge
tbell [Mon, 17 Mar 2008 23:03:51 -0700] rev 104
Merge
Mon, 17 Mar 2008 12:27:58 -0700 Merge
wetmore [Mon, 17 Mar 2008 12:27:58 -0700] rev 103
Merge
Mon, 17 Mar 2008 11:53:36 -0700 Merge
wetmore [Mon, 17 Mar 2008 11:53:36 -0700] rev 102
Merge
Thu, 06 Mar 2008 16:06:45 -0800 6578538: com.sun.crypto.provider.SunJCE instance leak using KRB5 and LoginContext
wetmore [Thu, 06 Mar 2008 16:06:45 -0800] rev 101
6578538: com.sun.crypto.provider.SunJCE instance leak using KRB5 and LoginContext Reviewed-by: valeriep
Mon, 17 Mar 2008 03:11:29 -0400 6447412: Issue with socket.close() for ssl sockets when poweroff on other system
xuelei [Mon, 17 Mar 2008 03:11:29 -0400] rev 100
6447412: Issue with socket.close() for ssl sockets when poweroff on other system Summary: Support SSL sockets SOLINGER Reviewed-by: chegar
Sun, 16 Mar 2008 23:46:27 -0400 6542796: CPU issue with JSSE and tomcat
xuelei [Sun, 16 Mar 2008 23:46:27 -0400] rev 99
6542796: CPU issue with JSSE and tomcat Summary: record length count error Reviewed-by: weijun
Sun, 16 Mar 2008 01:37:44 -0400 6618387: SSL client sessions do not close cleanly. A TCP reset occurs instead of a close_notify alert.
xuelei [Sun, 16 Mar 2008 01:37:44 -0400] rev 98
6618387: SSL client sessions do not close cleanly. A TCP reset occurs instead of a close_notify alert. Summary: closeIdelConnection() does not query the cached connection correctly. Reviewed-by: chegar
Sat, 15 Mar 2008 13:43:05 -0400 6648816: REGRESSION: setting -Djava.security.debug=failure result in NPE in ACC
xuelei [Sat, 15 Mar 2008 13:43:05 -0400] rev 97
6648816: REGRESSION: setting -Djava.security.debug=failure result in NPE in ACC Summary: unchecking the null pointer of the debug handle Reviewed-by: mullan, weijun
Fri, 14 Mar 2008 10:33:21 -0400 Merge
mullan [Fri, 14 Mar 2008 10:33:21 -0400] rev 96
Merge
Thu, 13 Mar 2008 13:29:27 -0400 6611991: Add support for parsing RFC4514 DNs to X500Principal
mullan [Thu, 13 Mar 2008 13:29:27 -0400] rev 95
6611991: Add support for parsing RFC4514 DNs to X500Principal Summary: Added new test and made one code change to escape null characters. Reviewed-by: vinnie
Tue, 11 Mar 2008 23:37:02 -0700 Merge
wetmore [Tue, 11 Mar 2008 23:37:02 -0700] rev 94
Merge
Wed, 12 Mar 2008 09:32:38 +0800 6673164: dns_fallback parse error
weijun [Wed, 12 Mar 2008 09:32:38 +0800] rev 93
6673164: dns_fallback parse error Reviewed-by: valeriep
Sat, 08 Mar 2008 22:52:20 +0800 6597349: KeyStore.getCertificateChain() may not return the full chain
weijun [Sat, 08 Mar 2008 22:52:20 +0800] rev 92
6597349: KeyStore.getCertificateChain() may not return the full chain Reviewed-by: mullan
Sat, 08 Mar 2008 22:51:14 +0800 6643094: Test on keytool -startdate forgets about December
weijun [Sat, 08 Mar 2008 22:51:14 +0800] rev 91
6643094: Test on keytool -startdate forgets about December Reviewed-by: xuelei
Sat, 08 Mar 2008 22:49:45 +0800 6634644: broken fragment, should use @link
weijun [Sat, 08 Mar 2008 22:49:45 +0800] rev 90
6634644: broken fragment, should use @link Reviewed-by: mullan
Fri, 07 Mar 2008 17:18:22 +0000 Merge
chegar [Fri, 07 Mar 2008 17:18:22 +0000] rev 89
Merge
Fri, 07 Mar 2008 17:17:49 +0000 6631048: Problem when writing on output stream of HttpURLConnection
chegar [Fri, 07 Mar 2008 17:17:49 +0000] rev 88
6631048: Problem when writing on output stream of HttpURLConnection Summary: Fix up logic in ChunkedOutputStream.write Reviewed-by: jccollet
Fri, 07 Mar 2008 07:28:50 -0800 Merge
chegar [Fri, 07 Mar 2008 07:28:50 -0800] rev 87
Merge
Fri, 07 Mar 2008 07:25:17 -0800 6628661: NTLM-authentication doesn't work with non-ASCII letters
chegar [Fri, 07 Mar 2008 07:25:17 -0800] rev 86
6628661: NTLM-authentication doesn't work with non-ASCII letters Summary: Use JNU_GetStringPlatformChars to convert jstrings to the locale specific native C strings Reviewed-by: michaelm
Fri, 07 Mar 2008 15:15:54 +0000 6672682: Forgotten file from CR 6615656.
chegar [Fri, 07 Mar 2008 15:15:54 +0000] rev 85
6672682: Forgotten file from CR 6615656. Reviewed-by: michaelm
Fri, 07 Mar 2008 13:00:44 +0000 6628576: InterfaceAddress.equals() NPE when broadcast field == null
chegar [Fri, 07 Mar 2008 13:00:44 +0000] rev 84
6628576: InterfaceAddress.equals() NPE when broadcast field == null Summary: Update logic in equals to correctly handle nulls. Reviewed-by: michaelm
Fri, 07 Mar 2008 11:51:27 +0000 6591358: documentation error in URLConnection.setRequestProperty("accept", ...)
chegar [Fri, 07 Mar 2008 11:51:27 +0000] rev 83
6591358: documentation error in URLConnection.setRequestProperty("accept", ...) Summary: Simple doc change, "accept" -> "Accept" Reviewed-by: jccollet
Fri, 07 Mar 2008 11:30:32 +0000 6615656: Removed unimplemented java.net methods
chegar [Fri, 07 Mar 2008 11:30:32 +0000] rev 82
6615656: Removed unimplemented java.net methods Reviewed-by: jccollet
Fri, 07 Mar 2008 09:57:22 +0000 6667108: typo in javadoc for java.net.Socket.getRemoteSocketAddress()
chegar [Fri, 07 Mar 2008 09:57:22 +0000] rev 81
6667108: typo in javadoc for java.net.Socket.getRemoteSocketAddress() Summary: Simple typo in method specification. Reviewed-by: jccollet
Thu, 06 Mar 2008 10:35:28 -0800 6623830: SCCS cleanup has broken two regression tests.
wetmore [Thu, 06 Mar 2008 10:35:28 -0800] rev 80
6623830: SCCS cleanup has broken two regression tests. Reviewed-by: chegar
Wed, 05 Mar 2008 18:11:33 +0100 6651717: Debug output statement left in MailToURLConnection
jccollet [Wed, 05 Mar 2008 18:11:33 +0100] rev 79
6651717: Debug output statement left in MailToURLConnection Summary: Removed output statement, removed unused imports, added override tags. Reviewed-by: chegar
Wed, 05 Mar 2008 17:16:14 +0100 6660405: HttpURLConnection returns the wrong InputStream
jccollet [Wed, 05 Mar 2008 17:16:14 +0100] rev 78
6660405: HttpURLConnection returns the wrong InputStream Summary: Set inputStream back to null in disconnectInternal(). Reviewed-by: chegar
Wed, 05 Mar 2008 22:16:06 +0800 6664612: debug output leaked
weijun [Wed, 05 Mar 2008 22:16:06 +0800] rev 77
6664612: debug output leaked Reviewed-by: valeriep
Wed, 05 Mar 2008 22:15:45 +0800 6590930: reed/write does not match for ccache
weijun [Wed, 05 Mar 2008 22:15:45 +0800] rev 76
6590930: reed/write does not match for ccache Summary: Add null-awareness to ccache read Reviewed-by: valeriep
Wed, 05 Mar 2008 21:55:33 +0800 6648972: KDCReq.init always read padata
weijun [Wed, 05 Mar 2008 21:55:33 +0800] rev 75
6648972: KDCReq.init always read padata Summary: PA-DATA is optional, only read it when it exists Reviewed-by: valeriep
Wed, 05 Mar 2008 11:40:22 +0100 6641309: Wrong Cookie separator used in HttpURLConnection
jccollet [Wed, 05 Mar 2008 11:40:22 +0100] rev 74
6641309: Wrong Cookie separator used in HttpURLConnection Summary: Added a space to cookie separator. Generified the code and added tags. Reviewed-by: chegar
Wed, 05 Mar 2008 09:52:50 +0800 6641312: Fix krb5 codes indentation problems
weijun [Wed, 05 Mar 2008 09:52:50 +0800] rev 73
6641312: Fix krb5 codes indentation problems Reviewed-by: xuelei, valeriep, wetmore
Tue, 04 Mar 2008 17:09:09 +0000 6638560: APPCRASH in "SPNEGO_HTTP_AUTH/PROXY_FALLBACK" test case with 64 bit JDK on Win2008 x64, VinVista x64
chegar [Tue, 04 Mar 2008 17:09:09 +0000] rev 72
6638560: APPCRASH in "SPNEGO_HTTP_AUTH/PROXY_FALLBACK" test case with 64 bit JDK on Win2008 x64, VinVista x64 Summary: Remove incorrect free from native code Reviewed-by: jccollet
Mon, 17 Mar 2008 22:56:59 -0700 Merge
tbell [Mon, 17 Mar 2008 22:56:59 -0700] rev 71
Merge
Fri, 14 Mar 2008 14:21:03 -0700 6514993: (prefs)prefs should use java.util.ServiceLoader to lookup service providers
sherman [Fri, 14 Mar 2008 14:21:03 -0700] rev 70
6514993: (prefs)prefs should use java.util.ServiceLoader to lookup service providers Reviewed-by: iris Contributed-by: xueming.shen@sun.com
Thu, 13 Mar 2008 19:34:49 +0000 6546113: (bf) CharSequence.slice() on wrapped CharSequence doesn't start at buffer position
alanb [Thu, 13 Mar 2008 19:34:49 +0000] rev 69
6546113: (bf) CharSequence.slice() on wrapped CharSequence doesn't start at buffer position Reviewed-by: iris Contributed-by: roman.kennke@aicas.com
Thu, 13 Mar 2008 19:29:41 +0000 6628575: (fc) lock/tryLock methods do not work with NFS servers that limit lock range to max file size
alanb [Thu, 13 Mar 2008 19:29:41 +0000] rev 68
6628575: (fc) lock/tryLock methods do not work with NFS servers that limit lock range to max file size Reviewed-by: sherman
Tue, 11 Mar 2008 14:49:53 +0000 6644607: (ch) test/java/nio/channels/SocketChannel/Connect.java throws UnknownHostException
alanb [Tue, 11 Mar 2008 14:49:53 +0000] rev 67
6644607: (ch) test/java/nio/channels/SocketChannel/Connect.java throws UnknownHostException Reviewed-by: chegar
Tue, 11 Mar 2008 14:42:35 +0000 6448457: (ch) Channels.newOutputStream().write() does not write all data
alanb [Tue, 11 Mar 2008 14:42:35 +0000] rev 66
6448457: (ch) Channels.newOutputStream().write() does not write all data Reviewed-by: iris, sherman
Mon, 10 Mar 2008 23:23:48 -0700 6625725: (coll) modCount should not be volatile
martin [Mon, 10 Mar 2008 23:23:48 -0700] rev 65
6625725: (coll) modCount should not be volatile Reviewed-by: dholmes
Mon, 10 Mar 2008 23:23:48 -0700 6583872: (coll) Direct uninformed users away from Vector/Hashtable
martin [Mon, 10 Mar 2008 23:23:48 -0700] rev 64
6583872: (coll) Direct uninformed users away from Vector/Hashtable Reviewed-by: dholmes
Mon, 10 Mar 2008 23:23:48 -0700 6633113: test/java/util/concurrent/SynchronousQueue/Fairness.java fails intermittently
martin [Mon, 10 Mar 2008 23:23:48 -0700] rev 63
6633113: test/java/util/concurrent/SynchronousQueue/Fairness.java fails intermittently Reviewed-by: dholmes
Mon, 10 Mar 2008 23:23:47 -0700 6625723: Excessive ThreadLocal storage used by ReentrantReadWriteLock
martin [Mon, 10 Mar 2008 23:23:47 -0700] rev 62
6625723: Excessive ThreadLocal storage used by ReentrantReadWriteLock Reviewed-by: dholmes Contributed-by: Doug Lea <dl@cs.oswego.edu>
Mon, 10 Mar 2008 23:23:47 -0700 6620549: ExecutorService#shutdown should clearly state that it does not block
martin [Mon, 10 Mar 2008 23:23:47 -0700] rev 61
6620549: ExecutorService#shutdown should clearly state that it does not block Reviewed-by: dholmes Contributed-by: Doug Lea <dl@cs.oswego.edu>
Mon, 10 Mar 2008 23:23:47 -0700 6609775: Reduce context switches in DelayQueue due to signalAll
martin [Mon, 10 Mar 2008 23:23:47 -0700] rev 60
6609775: Reduce context switches in DelayQueue due to signalAll Reviewed-by: alanb Contributed-by: Doug Lea <dl@cs.oswego.edu>
Mon, 10 Mar 2008 23:23:47 -0700 6602600: Fast removal of cancelled scheduled thread pool tasks
martin [Mon, 10 Mar 2008 23:23:47 -0700] rev 59
6602600: Fast removal of cancelled scheduled thread pool tasks Reviewed-by: alanb Contributed-by: Doug Lea <dl@cs.oswego.edu>
Mon, 10 Mar 2008 23:23:47 -0700 6612102: (coll) IdentityHashMap.iterator().remove() might decrement size twice
martin [Mon, 10 Mar 2008 23:23:47 -0700] rev 58
6612102: (coll) IdentityHashMap.iterator().remove() might decrement size twice Reviewed-by: dholmes
Mon, 10 Mar 2008 23:23:47 -0700 6595669: regtest LinkedBlockingQueue/OfferRemoveLoops.java fails
martin [Mon, 10 Mar 2008 23:23:47 -0700] rev 57
6595669: regtest LinkedBlockingQueue/OfferRemoveLoops.java fails Reviewed-by: dholmes
Mon, 10 Mar 2008 23:23:47 -0700 5080227: (coll spec) Bug in documentation for WeakHashMap
martin [Mon, 10 Mar 2008 23:23:47 -0700] rev 56
5080227: (coll spec) Bug in documentation for WeakHashMap Reviewed-by: dholmes
Tue, 11 Mar 2008 01:20:55 +0100 6655515: MBeans tab: operation return values of type Component displayed as String
lmalvent [Tue, 11 Mar 2008 01:20:55 +0100] rev 55
6655515: MBeans tab: operation return values of type Component displayed as String 6439590: MBeans tab: jconsole mbean tree not correctly refreshed 6446434: MBeans tab: Not possible to view MBean content before all MBeans have been initially loaded 6520144: Hard to find MBean Attributes, Operations, and Notifications in Java 6 jconsole 6522091: VMPanel.java contains non-ASCII character 6608334: JConsole fails to display MBean operation with <null> return type 6611445: MBeans tab: MBean tree algorithm wrongly removes intermediate nodes. Reviewed-by: dfuchs, jfdenise
Mon, 10 Mar 2008 23:51:13 +0100 Merge
lmalvent [Mon, 10 Mar 2008 23:51:13 +0100] rev 54
Merge
Mon, 10 Mar 2008 23:31:50 +0100 Merge
lmalvent [Mon, 10 Mar 2008 23:31:50 +0100] rev 53
Merge
Mon, 10 Mar 2008 23:13:31 +0100 4981215: Publishing a port number for management console to access
lmalvent [Mon, 10 Mar 2008 23:13:31 +0100] rev 52
4981215: Publishing a port number for management console to access Reviewed-by: emcmanus, dfuchs
Mon, 10 Mar 2008 15:07:09 -0700 6600143: Remove another 450 unnecessary casts
martin [Mon, 10 Mar 2008 15:07:09 -0700] rev 51
6600143: Remove another 450 unnecessary casts Reviewed-by: alanb, iris, lmalvent, bristor, peterjones, darcy, wetmore
Mon, 10 Mar 2008 14:32:51 -0700 6671051: (process) Runtime.exec() hangs if signalled during fork/exec
martin [Mon, 10 Mar 2008 14:32:51 -0700] rev 50
6671051: (process) Runtime.exec() hangs if signalled during fork/exec Reviewed-by: iris
Mon, 10 Mar 2008 14:32:51 -0700 6642034: System.getProperty("os.name") returns Windows Vista on Windows Server 2008 (longhorn)
martin [Mon, 10 Mar 2008 14:32:51 -0700] rev 49
6642034: System.getProperty("os.name") returns Windows Vista on Windows Server 2008 (longhorn) Reviewed-by: iris
Mon, 10 Mar 2008 14:32:51 -0700 4960438: (process) Need IO redirection API for subprocesses
martin [Mon, 10 Mar 2008 14:32:51 -0700] rev 48
4960438: (process) Need IO redirection API for subprocesses Reviewed-by: alanb, iris
Mon, 10 Mar 2008 14:32:51 -0700 6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win)
martin [Mon, 10 Mar 2008 14:32:51 -0700] rev 47
6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win) Reviewed-by: alanb, iris
Mon, 10 Mar 2008 14:32:51 -0700 6631437: File{In,Out}putStream minor improvements to spec and stylistic improvements to code
martin [Mon, 10 Mar 2008 14:32:51 -0700] rev 46
6631437: File{In,Out}putStream minor improvements to spec and stylistic improvements to code Reviewed-by: alanb, iris
Mon, 10 Mar 2008 14:32:51 -0700 6631362: Nuke io_util_md.c:handleFileSizeFD (win)
martin [Mon, 10 Mar 2008 14:32:51 -0700] rev 45
6631362: Nuke io_util_md.c:handleFileSizeFD (win) Reviewed-by: alanb, iris
Mon, 10 Mar 2008 14:32:51 -0700 6632696: Writing to closed output files (writeBytes) leaks native memory (unix)
martin [Mon, 10 Mar 2008 14:32:51 -0700] rev 44
6632696: Writing to closed output files (writeBytes) leaks native memory (unix) Reviewed-by: alanb, iris
Mon, 10 Mar 2008 14:32:50 -0700 6631966: (process) Raise Windows pipe buffer size an extra 24 bytes (win)
martin [Mon, 10 Mar 2008 14:32:50 -0700] rev 43
6631966: (process) Raise Windows pipe buffer size an extra 24 bytes (win) Reviewed-by: alanb, iris
Sun, 09 Mar 2008 21:56:42 -0700 6633613: (str) StringCoding optimizations to avoid unnecessary array copies with Charset arg
martin [Sun, 09 Mar 2008 21:56:42 -0700] rev 42
6633613: (str) StringCoding optimizations to avoid unnecessary array copies with Charset arg Reviewed-by: iris
Sun, 09 Mar 2008 21:56:42 -0700 6671834: (str) Eliminate StringCoding.java compile warnings
martin [Sun, 09 Mar 2008 21:56:42 -0700] rev 41
6671834: (str) Eliminate StringCoding.java compile warnings Reviewed-by: iris
Sun, 09 Mar 2008 21:56:42 -0700 4499288: (cs spec) Charset terminology problems
martin [Sun, 09 Mar 2008 21:56:42 -0700] rev 40
4499288: (cs spec) Charset terminology problems Reviewed-by: mr, iris
Thu, 06 Mar 2008 07:51:28 -0800 6596475: (launcher) javaw should call InitCommonControls
ksrini [Thu, 06 Mar 2008 07:51:28 -0800] rev 39
6596475: (launcher) javaw should call InitCommonControls Summary: javaw does not show error window after manifest changes. Reviewed-by: darcy
Mon, 03 Mar 2008 15:44:50 +0100 6670375: Missing unit test for 6607114 (Make JMXServiceURL reconstructible)
emcmanus [Mon, 03 Mar 2008 15:44:50 +0100] rev 38
6670375: Missing unit test for 6607114 (Make JMXServiceURL reconstructible) Summary: Current setup doesn't allow two pushes with same CR number Reviewed-by: dfuchs
Mon, 03 Mar 2008 15:29:22 +0100 Merge
emcmanus [Mon, 03 Mar 2008 15:29:22 +0100] rev 37
Merge
Mon, 03 Mar 2008 15:28:40 +0100 6607114: Make JMXServiceURL reconstructible in MXBeans
emcmanus [Mon, 03 Mar 2008 15:28:40 +0100] rev 36
6607114: Make JMXServiceURL reconstructible in MXBeans Summary: Add @ConstructorProperties tag to JMXServiceURL Reviewed-by: dfuchs
Mon, 03 Mar 2008 12:29:42 +0100 6651382: The Java JVM SNMP provider reports incorrect stats when asked for multiple OIDs
dfuchs [Mon, 03 Mar 2008 12:29:42 +0100] rev 35
6651382: The Java JVM SNMP provider reports incorrect stats when asked for multiple OIDs Summary: The JvmMemPoolEntryImpl must use the row index when caching data. Reviewed-by: jfdenise
Mon, 03 Mar 2008 10:32:38 +0100 6602310: Extensions to Query API for JMX 2.0
emcmanus [Mon, 03 Mar 2008 10:32:38 +0100] rev 34
6602310: Extensions to Query API for JMX 2.0 6604768: IN queries require their arguments to be constants Summary: New JMX query language and support for dotted attributes in queries. Reviewed-by: dfuchs
Mon, 10 Mar 2008 16:51:23 -0700 6649672: Adjustments to OUTPUTDIR default and mkdirs to avoid empty directory clutter
ohair [Mon, 10 Mar 2008 16:51:23 -0700] rev 33
6649672: Adjustments to OUTPUTDIR default and mkdirs to avoid empty directory clutter Summary: OUTPUTDIR changes to make sure absolute path is correct. Reviewed-by: xdono
Sun, 09 Mar 2008 14:16:49 -0700 6672777: Broken deploy build from jdk fix 6668781 for cygwin windows
ohair [Sun, 09 Mar 2008 14:16:49 -0700] rev 32
6672777: Broken deploy build from jdk fix 6668781 for cygwin windows Summary: deploy workspace does not set BUILDDIR, uses it, assumes it is jdk/make. Reviewed-by: xdono
Thu, 06 Mar 2008 11:37:14 -0800 6628146: Exclude the .hgignore and .hgtags files from the source bundles
ohair [Thu, 06 Mar 2008 11:37:14 -0800] rev 31
6628146: Exclude the .hgignore and .hgtags files from the source bundles Summary: Just add to list of SCM files. Reviewed-by: xdono
Tue, 04 Mar 2008 09:52:54 -0800 6668781: Openjdk windows cygwin build failure: no rule to make linker_md.obj target
ohair [Tue, 04 Mar 2008 09:52:54 -0800] rev 30
6668781: Openjdk windows cygwin build failure: no rule to make linker_md.obj target Summary: Use of GNU make vpath breaks on windows with C:/ style fullpaths Reviewed-by: xdono
Tue, 04 Mar 2008 09:51:25 -0800 6638060: Build failed with GNU make 3.81 (part of latest Solaris 'gmake')
ohair [Tue, 04 Mar 2008 09:51:25 -0800] rev 29
6638060: Build failed with GNU make 3.81 (part of latest Solaris 'gmake') Summary: Changes to the way GNU make 3.81 deals with the env variable SHELL Reviewed-by: xdono
Tue, 04 Mar 2008 09:50:30 -0800 6638571: Fix freetype sanity check to work on solaris 64bit
ohair [Tue, 04 Mar 2008 09:50:30 -0800] rev 28
6638571: Fix freetype sanity check to work on solaris 64bit Summary: Missing -xarch options to build for 64bit Reviewed-by: xdono
Tue, 04 Mar 2008 09:49:22 -0800 6637583: Build failure on latest Solaris, source missing include of resource.h?
ohair [Tue, 04 Mar 2008 09:49:22 -0800] rev 27
6637583: Build failure on latest Solaris, source missing include of resource.h? Summary: The include of sys/resource.h must be explicit Reviewed-by: xdono
Tue, 04 Mar 2008 09:47:43 -0800 6654456: OpenJDK build problem with freetype makefiles
ohair [Tue, 04 Mar 2008 09:47:43 -0800] rev 26
6654456: OpenJDK build problem with freetype makefiles Summary: ifdef test on OPENJDK before it gets set based on source tree contents Reviewed-by: xdono
Fri, 29 Feb 2008 20:04:01 -0800 6669216: Add jcheck configuration directories
mr [Fri, 29 Feb 2008 20:04:01 -0800] rev 25
6669216: Add jcheck configuration directories Reviewed-by: ohair, xdono
Tue, 04 Dec 2007 16:28:33 -0800 Added tag jdk7-b24 for changeset 90ce3da70b43
xdono [Tue, 04 Dec 2007 16:28:33 -0800] rev 24
Added tag jdk7-b24 for changeset 90ce3da70b43
Wed, 05 Jul 2017 16:34:04 +0200 Merge
duke [Wed, 05 Jul 2017 16:34:04 +0200] rev 23
Merge
Fri, 29 Feb 2008 20:03:58 -0800 6669216: Add jcheck configuration directories
mr [Fri, 29 Feb 2008 20:03:58 -0800] rev 22
6669216: Add jcheck configuration directories Reviewed-by: ohair, xdono
Tue, 04 Dec 2007 16:28:18 -0800 Added tag jdk7-b24 for changeset 489c9b5090e2
xdono [Tue, 04 Dec 2007 16:28:18 -0800] rev 21
Added tag jdk7-b24 for changeset 489c9b5090e2
Tue, 25 Mar 2008 14:38:56 -0700 6623832: Cleanup old j2se makefile targets
ohair [Tue, 25 Mar 2008 14:38:56 -0700] rev 20
6623832: Cleanup old j2se makefile targets Summary: Just removing unneeded makefile rules and 'control' logic. Reviewed-by: xdono
Tue, 18 Mar 2008 11:01:40 -0700 6674232: OPENJDK=false is same as OPENJDK=true
ohair [Tue, 18 Mar 2008 11:01:40 -0700] rev 19
6674232: OPENJDK=false is same as OPENJDK=true Summary: If OPENJDK has a value, that value must be "true", empty value == undefined with GNU make. Reviewed-by: tbell
Thu, 13 Mar 2008 16:12:15 -0700 6675289: Make default production build NOT include an openjdk build
ohair [Thu, 13 Mar 2008 16:12:15 -0700] rev 18
6675289: Make default production build NOT include an openjdk build Summary: SKIP_OPENJDK_BUILD now set to true. Reviewed-by: xdono
Sun, 09 Mar 2008 15:47:58 -0700 6649672: Adjustments to OUTPUTDIR default and mkdirs to avoid empty directory clutter
ohair [Sun, 09 Mar 2008 15:47:58 -0700] rev 17
6649672: Adjustments to OUTPUTDIR default and mkdirs to avoid empty directory clutter Summary: Cleanup of OUTPUTDIR handling Reviewed-by: xdono
Sun, 09 Mar 2008 13:11:51 -0700 6649270: Change by-default openjdk building in control/make/makefile to use open source tree
ohair [Sun, 09 Mar 2008 13:11:51 -0700] rev 16
6649270: Change by-default openjdk building in control/make/makefile to use open source tree Summary: Change build rules to allow for openjdk builds by default when building the closed or production build. Reviewed-by: xdono
Wed, 05 Mar 2008 18:56:03 -0800 6662830: OpenJDK build testing results
ohair [Wed, 05 Mar 2008 18:56:03 -0800] rev 15
6662830: OpenJDK build testing results Summary: Small corrections in the README. Reviewed-by: xdono
Fri, 29 Feb 2008 20:03:57 -0800 6669216: Add jcheck configuration directories
mr [Fri, 29 Feb 2008 20:03:57 -0800] rev 14
6669216: Add jcheck configuration directories Reviewed-by: ohair, xdono
Tue, 04 Dec 2007 16:28:05 -0800 Added tag jdk7-b24 for changeset fd16c54261b3
xdono [Tue, 04 Dec 2007 16:28:05 -0800] rev 13
Added tag jdk7-b24 for changeset fd16c54261b3
Wed, 05 Jul 2017 16:33:56 +0200 Added tag jdk7-b24 for changeset 1cc8dd79fd1c
duke [Wed, 05 Jul 2017 16:33:56 +0200] rev 12
Added tag jdk7-b24 for changeset 1cc8dd79fd1c
Wed, 05 Jul 2017 16:33:55 +0200 Merge jdk7-b24
duke [Wed, 05 Jul 2017 16:33:55 +0200] rev 11
Merge
Sat, 01 Dec 2007 00:00:00 +0000 Initial load
duke [Sat, 01 Dec 2007 00:00:00 +0000] rev 10
Initial load
Wed, 05 Jul 2017 16:33:39 +0200 Merge
duke [Wed, 05 Jul 2017 16:33:39 +0200] rev 9
Merge
Sat, 01 Dec 2007 00:00:00 +0000 Initial load
duke [Sat, 01 Dec 2007 00:00:00 +0000] rev 8
Initial load
Wed, 05 Jul 2017 16:33:23 +0200 Merge
duke [Wed, 05 Jul 2017 16:33:23 +0200] rev 7
Merge
Sat, 01 Dec 2007 00:00:00 +0000 Initial load
duke [Sat, 01 Dec 2007 00:00:00 +0000] rev 6
Initial load
Wed, 05 Jul 2017 16:33:07 +0200 Merge
duke [Wed, 05 Jul 2017 16:33:07 +0200] rev 5
Merge
Sat, 01 Dec 2007 00:00:00 +0000 Initial load
duke [Sat, 01 Dec 2007 00:00:00 +0000] rev 4
Initial load
Wed, 05 Jul 2017 16:32:55 +0200 Merge
duke [Wed, 05 Jul 2017 16:32:55 +0200] rev 3
Merge
Sat, 01 Dec 2007 00:00:00 +0000 Initial load
duke [Sat, 01 Dec 2007 00:00:00 +0000] rev 2
Initial load
Sat, 01 Dec 2007 00:00:00 +0000 Initial load
duke [Sat, 01 Dec 2007 00:00:00 +0000] rev 1
Initial load
Sat, 01 Dec 2007 00:00:00 +0000 Initial load
duke [Sat, 01 Dec 2007 00:00:00 +0000] rev 0
Initial load
(0) +240 +1000 +3000 +10000 +30000 tip