duke [Wed, 05 Jul 2017 17:10:05 +0200] rev 5261
Merge
mikejwre [Thu, 15 Apr 2010 13:55:04 -0700] rev 5260
Added tag jdk7-b89 for changeset 892f63d483d9
duke [Wed, 05 Jul 2017 17:10:03 +0200] rev 5259
Merge
trims [Tue, 20 Apr 2010 21:38:23 -0700] rev 5258
Merge
trims [Thu, 15 Apr 2010 19:09:48 -0700] rev 5257
Added tag hs18-b02 for changeset 0c79cc0b79fd
trims [Thu, 15 Apr 2010 19:08:48 -0700] rev 5256
Merge
jrose [Tue, 13 Apr 2010 13:01:37 -0700] rev 5255
Merge
jrose [Thu, 08 Apr 2010 17:45:20 -0700] rev 5254
Merge
iveresov [Thu, 08 Apr 2010 12:13:07 -0700] rev 5253
6942223: c1 64 bit fixes
Summary: This fixes lir_cmp_l2i on x64 and sparc 64bit, and the debug info generation.
Reviewed-by: never
twisti [Thu, 08 Apr 2010 10:55:40 +0200] rev 5252
6941529: SharedRuntime::raw_exception_handler_for_return_address must reset thread MethodHandle flag
Summary: During testing a bug was hit when an exception returned to the interpreter and the SP was wrong.
Reviewed-by: kvn, never
kvn [Wed, 07 Apr 2010 12:39:27 -0700] rev 5251
6940726: Use BIS instruction for allocation prefetch on Sparc
Summary: Use BIS instruction for allocation prefetch on Sparc
Reviewed-by: twisti
kvn [Wed, 07 Apr 2010 10:35:56 -0700] rev 5250
6940733: allocate non static oop fields in super and sub classes together
Summary: Use FieldsAllocationStyle=2 to allocate non static oop fields in super and sub classes together
Reviewed-by: twisti
kvn [Wed, 07 Apr 2010 09:37:47 -0700] rev 5249
6940701: Don't align loops in stubs for Niagara sparc
Summary: Don't align loops in stubs for Niagara sparc since NOPs are expensive.
Reviewed-by: twisti, never
kvn [Tue, 06 Apr 2010 15:18:10 -0700] rev 5248
6940677: Use 64 bytes chunk copy for arraycopy on Sparc
Summary: For large arrays we should use 64 bytes chunks copy.
Reviewed-by: twisti
twisti [Tue, 06 Apr 2010 13:39:52 +0200] rev 5247
6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations
Summary: ScavengeRootsInCode can lead to unfixed code-embedded oops.
Reviewed-by: kvn, never
tonyp [Fri, 09 Apr 2010 15:01:49 -0700] rev 5246
Merge
tonyp [Fri, 09 Apr 2010 13:08:34 -0400] rev 5245
Merge
johnc [Wed, 07 Apr 2010 11:43:53 -0700] rev 5244
6940894: G1: assert(new_obj != 0 || ... "should be forwarded") for compaction tests
Summary: Humongous regions may contain multiple objects as a result of being retained as to-space from a previous GC and then re-used as to-space after being tagged as humongous. These changes include a check that causes retained to-space regions that are now tagged as humongous to be disregarded and a new to-space region allocated.
Reviewed-by: tonyp, iveresov
tonyp [Tue, 06 Apr 2010 10:59:45 -0400] rev 5243
6909756: G1: guarantee(G1CollectedHeap::heap()->mark_in_progress(),"Precondition.")
Summary: Make sure that two marking cycles do not overlap, i.e., a new one can only start after the concurrent marking thread finishes all its work. In the fix I piggy-back a couple of minor extra fixes: some general code reformatting for consistency (only around the code I modified), the removal of a field (G1CollectorPolicy::_should_initiate_conc_mark) which doesn't seem to be used at all (it's only set but never read), as well as moving the "is GC locker active" test earlier into the G1 pause / Full GC and using a more appropriate method for it.
Reviewed-by: johnc, jmasa, jcoomes, ysr
tonyp [Mon, 05 Apr 2010 12:19:22 -0400] rev 5242
6940310: G1: MT-unsafe calls to CM::region_stack_push() / CM::region_stack_pop()
Summary: Calling the methods region_stack_push() and region_stack_pop() concurrent is not MT-safe. The assumption is that we will only call region_stack_push() during a GC pause and region_stack_pop() during marking. Unfortunately, we also call region_stack_push() during marking which seems to be introducing subtle marking failures. This change introduces lock-based methods for pushing / popping to be called during marking.
Reviewed-by: iveresov, johnc
tonyp [Fri, 02 Apr 2010 12:10:08 -0400] rev 5241
6677708: G1: re-enable parallel RSet updating and scanning
Summary: Enable parallel RSet updating and scanning.
Reviewed-by: iveresov, jmasa
tonyp [Tue, 30 Mar 2010 15:36:55 -0400] rev 5240
6937160: G1: should observe GCTimeRatio
Summary: Remove the G1GCPercent parameter, that specifies the desired GC overhead percentage in G1, and observe the GCTimeRatio parameter instead.
Reviewed-by: jmasa, johnc
kamg [Wed, 07 Apr 2010 12:28:22 -0400] rev 5239
Merge
jcoomes [Fri, 02 Apr 2010 17:04:09 -0700] rev 5238
Merge
coleenp [Wed, 31 Mar 2010 16:51:18 -0700] rev 5237
6938627: Make temporary directory use property java.io.tmpdir when specified
Summary: Get java.io.tmpdir property in os::get_temp_directory() and call this instead of harcoding "/tmp". Don't assume trailing file_separator either.
Reviewed-by: dholmes, kamg
asaha [Tue, 06 Apr 2010 22:06:57 -0700] rev 5236
Merge
kvn [Fri, 02 Apr 2010 15:55:04 -0700] rev 5235
Merge
kvn [Fri, 02 Apr 2010 11:55:00 -0700] rev 5234
6939804: ciConstant::print() prints incorrect bool value
Summary: Fix typo.
Reviewed-by: never
never [Thu, 01 Apr 2010 16:06:57 -0700] rev 5233
6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
Reviewed-by: kvn
never [Wed, 31 Mar 2010 16:29:10 -0700] rev 5232
Merge
never [Wed, 31 Mar 2010 11:54:03 -0700] rev 5231
6939845: zero needs fallback path in C++ interpreter for platform dependent fast bytecodes
Reviewed-by: never
Contributed-by: ed@camswl.com
twisti [Wed, 31 Mar 2010 08:03:33 -0700] rev 5230
6939731: JSR 292 Zero build fix after 6934494
Summary: The changes of 6934494 have broken the Zero build.
Reviewed-by: twisti
Contributed-by: Gary Benson <gbenson@redhat.com>
twisti [Tue, 30 Mar 2010 00:57:55 -0700] rev 5229
6939180: Zero locking fix
Summary: When Zero is running with Shark enabled threads can be left with their _do_not_unlock_if_synchronized flag incorrectly set.
Reviewed-by: twisti
Contributed-by: Gary Benson <gbenson@redhat.com>
never [Thu, 18 Mar 2010 14:31:41 -0700] rev 5228
6926979: should simplify catch_inline_exception
Reviewed-by: twisti
trims [Thu, 15 Apr 2010 19:08:18 -0700] rev 5227
6944398: Bump the HS18 build number to 03
Summary: Update the HS18 build number to 03
Reviewed-by: jcoomes
mikejwre [Thu, 15 Apr 2010 13:54:54 -0700] rev 5226
Added tag jdk7-b89 for changeset 750e57985f1e
mikejwre [Thu, 15 Apr 2010 13:54:49 -0700] rev 5225
Added tag jdk7-b89 for changeset e996369c787b
duke [Wed, 05 Jul 2017 17:09:51 +0200] rev 5224
Added tag jdk7-b89 for changeset 44158f6d3b94
duke [Wed, 05 Jul 2017 17:09:51 +0200] rev 5223
Merge
duke [Wed, 05 Jul 2017 17:09:49 +0200] rev 5222
Merge
lana [Tue, 13 Apr 2010 16:42:58 -0700] rev 5221
Merge
lana [Thu, 08 Apr 2010 15:35:47 -0700] rev 5220
Merge
ohair [Fri, 26 Mar 2010 22:37:04 -0700] rev 5219
6938326: Use of "ant -diagnostics" a problem with ant 1.8.0, exit code 1 now
Reviewed-by: jjg
darcy [Wed, 24 Mar 2010 17:02:35 -0700] rev 5218
6937417: javac -Xprint returns IndexOutOfBoundsException
Reviewed-by: jjg
jjg [Wed, 24 Mar 2010 12:18:17 -0700] rev 5217
6937318: jdk7 b86: javah and javah -help is no output for these commands
Reviewed-by: darcy
jjg [Tue, 23 Mar 2010 18:05:54 -0700] rev 5216
6937244: sqe ws7 tools javap/javap_t10a fail jdk7 b80 used output of javap is changed
Reviewed-by: darcy
lana [Thu, 18 Mar 2010 18:52:44 -0700] rev 5215
Merge
jjg [Fri, 12 Mar 2010 12:00:42 -0800] rev 5214
6934224: update langtools/test/Makefile
Reviewed-by: ohair
jjg [Wed, 10 Mar 2010 16:23:18 -0800] rev 5213
6933914: fix missing newlines
Reviewed-by: ohair
mikejwre [Thu, 08 Apr 2010 17:03:01 -0700] rev 5212
Added tag jdk7-b88 for changeset 27beb127f317
duke [Wed, 05 Jul 2017 17:09:45 +0200] rev 5211
Merge
mikejwre [Thu, 08 Apr 2010 17:02:46 -0700] rev 5210
Added tag jdk7-b88 for changeset 349fc36a6694
duke [Wed, 05 Jul 2017 17:09:43 +0200] rev 5209
Merge
mikejwre [Thu, 08 Apr 2010 17:02:45 -0700] rev 5208
Added tag jdk7-b88 for changeset d929b243d1f3
duke [Wed, 05 Jul 2017 17:09:41 +0200] rev 5207
Merge
mikejwre [Thu, 08 Apr 2010 17:02:38 -0700] rev 5206
Added tag jdk7-b88 for changeset ad4ae3f4ca67
duke [Wed, 05 Jul 2017 17:09:39 +0200] rev 5205
Merge
lana [Tue, 13 Apr 2010 16:41:49 -0700] rev 5204
Merge
lana [Thu, 08 Apr 2010 15:34:29 -0700] rev 5203
Merge
martin [Wed, 07 Apr 2010 12:30:49 -0700] rev 5202
6941130: Semaphore should throw if number of permits overflows or underflows
Summary: Check if release could make number of permits negative
Reviewed-by: dl, dholmes
sherman [Tue, 06 Apr 2010 15:45:21 -0700] rev 5201
6717164: FilterInputStream.skip incorrectly inherits wording specifying how the InputStream.skip works
Summary: restoring the javadoc
Reviewed-by: alanb
chegar [Tue, 06 Apr 2010 15:44:17 +0100] rev 5200
6921111: NullPointerException in PlainDatagramSocketImpl.socketSetOption
Reviewed-by: alanb
chegar [Tue, 06 Apr 2010 13:47:59 +0100] rev 5199
6648001: Cancelling HTTP authentication causes subsequent deadlocks
Reviewed-by: michaelm
asaha [Mon, 05 Apr 2010 16:11:59 -0700] rev 5198
Merge
asaha [Mon, 29 Mar 2010 07:17:02 -0700] rev 5197
Merge
asaha [Thu, 25 Mar 2010 07:12:43 -0700] rev 5196
Merge
asaha [Wed, 24 Mar 2010 17:32:04 -0700] rev 5195
Merge
asaha [Wed, 24 Mar 2010 14:16:57 -0700] rev 5194
Merge
denis [Sat, 06 Mar 2010 03:37:53 +0300] rev 5193
6932659: JTreg test files were missed in push of 6887703
Reviewed-by: uta
denis [Fri, 26 Feb 2010 03:54:52 -0800] rev 5192
6887703: Unsigned applet can retrieve the dragged information before drop action occur
Reviewed-by: uta
ksrini [Mon, 22 Feb 2010 14:33:19 -0800] rev 5191
6902299: Java JAR "unpack200" must verify input parameters
Summary: Added several checks for addition of values before memory allocation
Reviewed-by: asaha
bae [Fri, 19 Feb 2010 22:30:52 +0300] rev 5190
6899653: Sun Java Runtime CMM readMabCurveData Buffer Overflow Vulnerability
Reviewed-by: prr, hawtin
bae [Wed, 17 Feb 2010 13:32:26 +0300] rev 5189
6909597: Sun Java Runtime Environment JPEGImageReader stepX Integer Overflow Vulnerability
Reviewed-by: igor
bae [Wed, 17 Feb 2010 13:10:26 +0300] rev 5188
6914823: Java AWT Library Invalid Index Vulnerability
Reviewed-by: flar, hawtin
bae [Wed, 17 Feb 2010 12:49:41 +0300] rev 5187
6914866: Sun JRE ImagingLib arbitrary code execution vulnerability
Reviewed-by: prr, hawtin
michaelm [Tue, 12 Jan 2010 12:13:48 +0000] rev 5186
6910590: Application can modify command array, in ProcessBuilder
Summary: clone array returned by List.toArray()
Reviewed-by: chegar, alanb
malenkov [Tue, 22 Dec 2009 17:56:58 +0300] rev 5185
6904691: Java Applet Trusted Methods Chaining Privilege Escalation Vulnerability
Reviewed-by: hawtin, peterz
mullan [Fri, 18 Dec 2009 09:09:12 -0500] rev 5184
6904162: Add new VeriSign root CA certificates to JRE and remove some old/unused ones
Reviewed-by: asaha
mullan [Tue, 08 Dec 2009 15:58:49 -0500] rev 5183
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
Reviewed-by: hawtin
xuelei [Mon, 07 Dec 2009 21:16:41 -0800] rev 5182
6898739: TLS renegotiation issue
Summary: the interim fix disables TLS/SSL renegotiation
Reviewed-by: mullan, chegar, wetmore
asaha [Fri, 04 Dec 2009 10:23:07 -0800] rev 5181
Merge
michaelm [Wed, 02 Dec 2009 12:17:42 +0000] rev 5180
6893954: Subclasses of InetAddress may incorrectly interpret network addresses
Summary: runtime type checks and deserialization check
Reviewed-by: chegar, alanb, jccollet
asaha [Tue, 01 Dec 2009 08:55:15 -0800] rev 5179
Merge
asaha [Thu, 26 Nov 2009 07:17:08 -0800] rev 5178
Merge
mchung [Wed, 25 Nov 2009 16:02:08 -0800] rev 5177
Merge
mchung [Wed, 25 Nov 2009 11:19:32 -0800] rev 5176
Merge
mchung [Wed, 25 Nov 2009 09:09:04 -0800] rev 5175
6893947: Deserialization of RMIConnectionImpl objects should enforce stricter checks [ZDI-CAN-588]
Summary: narrow the doPrivileged block to only set context ClassLoader
Reviewed-by: hawtin, emcmanus
sherman [Wed, 25 Nov 2009 12:51:00 -0800] rev 5174
6904925: Changeset for 6745393 for jdk7 ssr forest was incomplete
Summary: To add, commit and push back the ZStreamRef.java
Reviewed-by: alanb
sherman [Wed, 25 Nov 2009 11:29:23 -0800] rev 5173
6745393: Inflater/Deflater clone issue
Summary: To use explicit lobk object.
Reviewed-by: alanb
alanb [Wed, 25 Nov 2009 10:02:50 +0000] rev 5172
6736390: File TOCTOU deserialization vulnerability
Reviewed-by: hawtin
chegar [Mon, 23 Nov 2009 12:40:46 +0000] rev 5171
6639665: ThreadGroup finalizer allows creation of false root ThreadGroups
Reviewed-by: alanb, hawtin
asaha [Fri, 20 Nov 2009 14:24:56 -0800] rev 5170
Merge
dl [Tue, 06 Oct 2009 12:20:35 -0700] rev 5169
6888149: AtomicReferenceArray causes SIGSEGV -> SEGV_MAPERR error
Summary: Avoid integer overflow by using long arithmetic
Reviewed-by: martin, dholmes
sherman [Sat, 03 Apr 2010 18:29:11 -0700] rev 5168
4947220: (process)Runtime.exec() cannot invoke applications with unicode parameters(win)
Summary: to use CreateProcessW on Windowns platform
Reviewed-by: martin
sherman [Tue, 30 Mar 2010 19:10:47 -0700] rev 5167
6902790: Converting/displaying HKSCs characters issue on Vista and Windows7
6911753: NSN wants to add Big5 HKSCS-2004 support
Summary: support HKSCS2008 in Big5_HKSCS and MS950_HKSCS
Reviewed-by: okutsu
xuelei [Mon, 29 Mar 2010 13:27:25 +0800] rev 5166
6693917: regression tests need to update for supporting ECC on solaris 11
Reviewed-by: weijun
chegar [Thu, 25 Mar 2010 09:38:56 +0000] rev 5165
6937703: java/net regression test issues with samevm
Reviewed-by: alanb
weijun [Thu, 25 Mar 2010 12:07:42 +0800] rev 5164
6813340: X509Factory should not depend on is.available()==0
Reviewed-by: xuelei
dcubed [Tue, 23 Mar 2010 19:03:26 -0700] rev 5163
6915365: 3/4 assert(false,"Unsupported VMGlobal Type") at management.cpp:1540
Summary: Remove exception throw to decouple JDK and HotSpot additions of known types.
Reviewed-by: mchung
chegar [Tue, 23 Mar 2010 13:54:36 +0000] rev 5162
6614957: HttpsURLConnection not using the set SSLSocketFactory for creating all its Sockets
6771432: createSocket() - smpatch fails using 1.6.0_10 because of "Unconnected sockets not implemented"
6766775: X509 certificate hostname checking is broken in JDK1.6.0_10
Summary: All three bugs are interdependent
Reviewed-by: xuelei
weijun [Tue, 23 Mar 2010 10:41:11 +0800] rev 5161
6586707: NTLM authentication with proxy fails
Reviewed-by: chegar
chegar [Mon, 22 Mar 2010 11:55:54 +0000] rev 5160
6632169: HttpClient and HttpsClient should not try to reverse lookup IP address of a proxy server
Reviewed-by: michaelm
chegar [Fri, 19 Mar 2010 13:07:42 +0000] rev 5159
6935233: java/net/ServerSocket/AcceptCauseFileDescriptorLeak.java fails with modules build
Reviewed-by: alanb
lana [Thu, 18 Mar 2010 18:52:10 -0700] rev 5158
Merge
valeriep [Thu, 18 Mar 2010 17:56:39 -0700] rev 5157
6837847: PKCS#11 A SecureRandom and a serialization error following installation of 1.5.0_18
Summary: Added a custom readObject method to PKCS11 SecureRandom impl
Reviewed-by: wetmore
valeriep [Thu, 18 Mar 2010 17:32:45 -0700] rev 5156
6591117: Poor preformance of PKCS#11 security provider compared to Sun default provider
Summary: Added internal buffering to PKCS11 SecureRandom impl
Reviewed-by: wetmore
valeriep [Thu, 18 Mar 2010 17:05:42 -0700] rev 5155
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
Summary: Added checking for RSA key lengths in initSign and initVerify
Reviewed-by: vinnie
weijun [Thu, 18 Mar 2010 18:26:37 +0800] rev 5154
6829283: HTTP/Negotiate: Autheticator triggered again when user cancels the first one
Reviewed-by: chegar
weijun [Wed, 17 Mar 2010 09:55:04 +0800] rev 5153
6868865: Test: sun/security/tools/jarsigner/oldsig.sh fails under all platforms
Reviewed-by: wetmore
chegar [Tue, 16 Mar 2010 14:31:57 +0000] rev 5152
6935199: java/net regression tests failing with Assertions
Reviewed-by: michaelm
chegar [Tue, 16 Mar 2010 10:05:51 +0000] rev 5151
6934923: test/java/net/ipv6tests/TcpTest.java hangs on Solaris 10
Reviewed-by: alanb
ohair [Fri, 12 Mar 2010 09:06:00 -0800] rev 5150
Merge
ohair [Fri, 12 Mar 2010 09:03:02 -0800] rev 5149
6933294: Fix some test/Makefile issues around Linux ARCH settings, better defaults
Reviewed-by: jjg
sherman [Thu, 11 Mar 2010 14:06:09 -0800] rev 5148
6929479: Add a system property sun.zip.disableMemoryMapping to disable mmap use in ZipFile
Summary: system property sun.zip.disableMemoryMapping to disable mmap use
Reviewed-by: alanb
chegar [Thu, 11 Mar 2010 17:50:30 +0000] rev 5147
6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
Reviewed-by: michaelm, chegar
Contributed-by: damjan.jov@gmail.com
chegar [Thu, 11 Mar 2010 17:37:33 +0000] rev 5146
6933629: java/net/HttpURLConnection/HttpResponseCode.java fails if run in samevm mode
Reviewed-by: alanb
chegar [Thu, 11 Mar 2010 16:17:57 +0000] rev 5145
6934054: java/net/Socket/FDClose.java return error in samevm
Summary: test is no longer useful
Reviewed-by: alanb
martin [Wed, 10 Mar 2010 14:53:51 -0800] rev 5144
6931812: A better implementation of sun.nio.cs.Surrogate.isBMP(int)
Summary: uc >> 16 == 0 is superior to (int) (char) uc == uc
Reviewed-by: sherman
Contributed-by: Ulf Zibis <ulf.zibis@gmx.de>
chegar [Wed, 10 Mar 2010 14:44:53 +0000] rev 5143
6933618: java/net/MulticastSocket/NoLoopbackPackets.java fails when rerun
Reviewed-by: alanb
lana [Thu, 08 Apr 2010 15:01:57 -0700] rev 5142
Merge
lana [Fri, 19 Mar 2010 18:49:36 -0700] rev 5141
Merge
andrew [Fri, 12 Mar 2010 01:09:13 +0000] rev 5140
6934327: Update linux fontconfigs for Ubuntu and Fedora.
Summary: Use fontconfigs suitable for recent Fedora, Ubuntu and Debian releases.
Reviewed-by: prr
lana [Thu, 08 Apr 2010 15:00:16 -0700] rev 5139
Merge
peytoia [Tue, 30 Mar 2010 21:16:41 +0900] rev 5138
6907881: Different undesired behavior for entering Asian characters in Windows IME starting with Java 6.0
Reviewed-by: okutsu
peytoia [Tue, 30 Mar 2010 18:35:47 +0900] rev 5137
6939021: (tz) Support tzdata2010g
Reviewed-by: okutsu
rupashka [Wed, 24 Mar 2010 15:14:16 +0300] rev 5136
6922214: SynthTextPaneUI.installUI() doesn't install the default caret and highlighter
Reviewed-by: alexp
peterz [Thu, 18 Mar 2010 12:02:12 +0300] rev 5135
6932524: NIMBUS: 3 constructors of JSplitPane creates new jsp with continuous layout - they should not.
Reviewed-by: alexp
lana [Wed, 17 Mar 2010 14:19:07 -0700] rev 5134
Merge
rupashka [Wed, 17 Mar 2010 12:48:21 +0300] rev 5133
6933784: NIMBUS: ImageView getNoImageIcon and getLoadingImageIcon returns nulls instead of an icon
Reviewed-by: peterz
rupashka [Mon, 15 Mar 2010 16:16:06 +0300] rev 5132
6931347: SynthTabbedPaneUI.paintTabArea() is not called when tabbed pane is painted
Reviewed-by: peterz
malenkov [Thu, 11 Mar 2010 17:39:33 +0300] rev 5131
6707226: java.beans.Statement & java.beans.Expression miss one important usecase
Reviewed-by: rupashka
peytoia [Thu, 11 Mar 2010 11:54:17 +0900] rev 5130
6933032: (tz) Support tzdata2010e
Reviewed-by: okutsu
okutsu [Wed, 10 Mar 2010 14:32:47 +0900] rev 5129
6932473: (tz) javazic produces incorrect SimpleTimeZone parameters with Sun<=7
Reviewed-by: peytoia
mikejwre [Thu, 08 Apr 2010 17:02:51 -0700] rev 5128
Added tag jdk7-b88 for changeset 03ed19dc460c
duke [Wed, 05 Jul 2017 17:09:27 +0200] rev 5127
Merge
lana [Tue, 13 Apr 2010 16:36:27 -0700] rev 5126
Merge
lana [Thu, 08 Apr 2010 15:28:37 -0700] rev 5125
Merge
asaha [Wed, 24 Mar 2010 17:16:33 -0700] rev 5124
Merge
acorn [Mon, 15 Mar 2010 15:51:36 -0400] rev 5123
6932480: Fix crash in CompilerThread/Parser. Unloaded array klass?
Summary: Restore code deleted in 6626217
Reviewed-by: asaha, kevinw
acorn [Thu, 28 Jan 2010 13:59:18 -0500] rev 5122
Merge
acorn [Tue, 19 Jan 2010 16:03:09 -0500] rev 5121
6626217: Fixed loader constraint array handling
Summary: Loader constraints track array elements, not arrays themselves.
Reviewed-by: dcubed, kevinw
kvn [Thu, 21 Jan 2010 10:07:59 -0800] rev 5120
6894807: No ClassCastException for HashAttributeSet constructors if run with -Xcomp
Summary: Return interface klass type if it is exact.
Reviewed-by: never
kvn [Thu, 03 Dec 2009 14:20:22 -0800] rev 5119
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
Summary: Use size_t type cast to widen int values in typeArrayKlass::copy_array().
Reviewed-by: never, jcoomes
mikejwre [Thu, 08 Apr 2010 17:02:41 -0700] rev 5118
Added tag jdk7-b88 for changeset 0c79cc0b79fd
lana [Tue, 13 Apr 2010 16:35:53 -0700] rev 5117
Merge
lana [Thu, 08 Apr 2010 15:02:12 -0700] rev 5116
Merge
ohair [Fri, 19 Mar 2010 18:17:49 -0700] rev 5115
6936788: Minor adjustment to top repo test/Makefile, missing non-zero exit case
Reviewed-by: jjg
lana [Thu, 18 Mar 2010 18:50:22 -0700] rev 5114
Merge
ohair [Fri, 12 Mar 2010 17:44:50 -0800] rev 5113
6934759: Add langtools testing to jprt control builds
Reviewed-by: jjg
jjg [Fri, 12 Mar 2010 15:22:50 -0800] rev 5112
6934712: run langtools jtreg tests from top level test/Makefile
Reviewed-by: ohair
mikejwre [Thu, 08 Apr 2010 17:02:36 -0700] rev 5111
Added tag jdk7-b88 for changeset 9c9bfe8f3a47
duke [Wed, 05 Jul 2017 17:09:16 +0200] rev 5110
Added tag jdk7-b88 for changeset 7077b95d42f6
duke [Wed, 05 Jul 2017 17:09:16 +0200] rev 5109
Merge
duke [Wed, 05 Jul 2017 17:09:13 +0200] rev 5108
Merge
mikejwre [Thu, 25 Mar 2010 15:05:39 -0700] rev 5107
Added tag jdk7-b87 for changeset ea586c2ae58a
duke [Wed, 05 Jul 2017 17:09:10 +0200] rev 5106
Merge
mikejwre [Thu, 25 Mar 2010 15:05:24 -0700] rev 5105
Added tag jdk7-b87 for changeset 3e4978c572e1
duke [Wed, 05 Jul 2017 17:09:08 +0200] rev 5104
Merge
mikejwre [Thu, 25 Mar 2010 15:05:24 -0700] rev 5103
Added tag jdk7-b87 for changeset 40e99ec5ee66
duke [Wed, 05 Jul 2017 17:09:06 +0200] rev 5102
Merge
mikejwre [Thu, 25 Mar 2010 15:05:16 -0700] rev 5101
Added tag jdk7-b87 for changeset 8b61398d2060
duke [Wed, 05 Jul 2017 17:09:03 +0200] rev 5100
Merge
mikejwre [Thu, 25 Mar 2010 15:05:29 -0700] rev 5099
Added tag jdk7-b87 for changeset 506a77354250
duke [Wed, 05 Jul 2017 17:09:01 +0200] rev 5098
Merge
acorn [Thu, 01 Apr 2010 20:48:50 -0400] rev 5097
Merge
acorn [Thu, 01 Apr 2010 11:23:01 -0400] rev 5096
Merge
acorn [Fri, 26 Mar 2010 11:10:26 -0400] rev 5095
Merge
dcubed [Thu, 25 Mar 2010 16:54:59 -0700] rev 5094
Merge
dcubed [Thu, 25 Mar 2010 16:27:12 -0700] rev 5093
6938185: 3/4 6923488 breaks Windows command shell builds
Summary: Fix build.bat so invoking command shell doesn't exit on error. Fix dirname assumptions. Document some MKS environment dependencies.
Reviewed-by: coleenp
dcubed [Tue, 23 Mar 2010 17:29:13 -0700] rev 5092
Merge
dcubed [Tue, 23 Mar 2010 14:37:18 -0700] rev 5091
6915365: 3/4 assert(false,"Unsupported VMGlobal Type") at management.cpp:1540
Summary: Remove assert to decouple JDK and HotSpot additions of known types.
Reviewed-by: mchung
coleenp [Thu, 18 Mar 2010 16:47:37 -0400] rev 5090
6936168: Recent fix for unmapping stack guard pages doesn't close /proc/self/maps
Summary: Add close to returns (fix for 6929067 also contributed by aph)
Reviewed-by: aph, dcubed, andrew, acorn
Contributed-by: aph@redhat.com, andreas.kohn@fredhopper.com
fparain [Wed, 17 Mar 2010 11:01:05 +0100] rev 5089
6935224: Adding new DTrace probes to work with Palantir
Summary: Adding probes related to thread scheduling and class initialization
Reviewed-by: kamg, never
dcubed [Tue, 16 Mar 2010 20:47:17 -0700] rev 5088
Merge
dcubed [Tue, 16 Mar 2010 17:47:03 -0600] rev 5087
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
Summary: Clean up get_msc_ver, build.bat and build.make in general and for Cygwin.
Reviewed-by: ohair
xlu [Sat, 13 Mar 2010 16:32:49 -0800] rev 5086
6934758: Expose the break down of clean up task time during safepoint.
Summary: Use -XX:+TraceSafepointCleanupTime to print out the details of each clean up tasks.
Reviewed-by: dholmes, ysr
coleenp [Fri, 12 Mar 2010 10:42:16 -0500] rev 5085
6929067: Stack guard pages should be removed when thread is detached
Summary: Add code to unmap stack guard area when thread is detached.
Reviewed-by: coleenp, kamg
trims [Thu, 01 Apr 2010 16:15:12 -0700] rev 5084
6940419: Bump the HS18 build number to 02
Summary: Update the HS18 build number to 02
Reviewed-by: jcoomes
trims [Thu, 01 Apr 2010 16:10:27 -0700] rev 5083
Merge
tonyp [Thu, 18 Mar 2010 12:14:59 -0400] rev 5082
6935821: G1: threads created during marking do not active their SATB queues
Summary: Newly-created threads always had the active field of their SATB queue initialized to false, even if they were created during marking. As a result, updates from threads created during a marking cycle were never enqueued and never processed. The fix includes remaining a method from active() to is_active() for readability and naming consistency.
Reviewed-by: ysr, johnc
apetrusenko [Mon, 22 Mar 2010 02:40:53 -0700] rev 5081
Merge
jcoomes [Thu, 18 Mar 2010 13:31:51 -0700] rev 5080
6935839: excessive marking stack growth during full gcs
Summary: process one item at a time from the objarray stack/queue
Reviewed-by: apetrusenko, tonyp
apetrusenko [Thu, 18 Mar 2010 01:48:28 -0700] rev 5079
6921710: G1: assert(new_finger >= _finger && new_finger < _region_limit,"invariant")
Summary: If CM task was aborted while scanning the last object of the specified region and the size of that object is equal to bitmap's granularity then the next offset would be equal or over the region limit which is exactly what the assertion states.
Reviewed-by: ysr, tonyp, jmasa
johnc [Thu, 11 Mar 2010 11:44:43 -0800] rev 5078
6755988: G1: assert(new_obj != 0 || ... "should be forwarded")
Summary: A TLAB became large enough to be considered a humongous object allowing multiple objects to be allocated in a humongous region, which violates a basic assumption about humongous regions. The changes ensure that TLABs cannot be regarded as humongous.
Reviewed-by: iveresov, tonyp
apetrusenko [Mon, 15 Mar 2010 02:56:45 -0700] rev 5077
Merge
jcoomes [Wed, 03 Mar 2010 14:48:26 -0800] rev 5076
4396719: Mark Sweep stack overflow on deeply nested Object arrays
Summary: Use an explicit stack for object arrays and process them in chunks.
Reviewed-by: iveresov, apetrusenko
mikejwre [Thu, 25 Mar 2010 15:05:19 -0700] rev 5075
Added tag jdk7-b87 for changeset e147a1eaf2fc
mikejwre [Thu, 25 Mar 2010 15:05:15 -0700] rev 5074
Added tag jdk7-b87 for changeset 8367da959bab
duke [Wed, 05 Jul 2017 17:08:50 +0200] rev 5073
Added tag jdk7-b87 for changeset b7456c473862
duke [Wed, 05 Jul 2017 17:08:50 +0200] rev 5072
Merge
duke [Wed, 05 Jul 2017 17:08:47 +0200] rev 5071
Merge
mikejwre [Thu, 18 Mar 2010 13:53:10 -0700] rev 5070
Added tag jdk7-b86 for changeset cd99680e9c56
duke [Wed, 05 Jul 2017 17:08:45 +0200] rev 5069
Merge
mikejwre [Thu, 18 Mar 2010 13:52:55 -0700] rev 5068
Added tag jdk7-b86 for changeset 998d177fa12c
duke [Wed, 05 Jul 2017 17:08:42 +0200] rev 5067
Merge
mikejwre [Thu, 18 Mar 2010 13:52:54 -0700] rev 5066
Added tag jdk7-b86 for changeset 221fb7990478
duke [Wed, 05 Jul 2017 17:08:40 +0200] rev 5065
Merge
mikejwre [Thu, 18 Mar 2010 13:52:46 -0700] rev 5064
Added tag jdk7-b86 for changeset 28050e60c70d
duke [Wed, 05 Jul 2017 17:08:37 +0200] rev 5063
Merge
mikejwre [Thu, 18 Mar 2010 13:53:00 -0700] rev 5062
Added tag jdk7-b86 for changeset ebd0e0190faf
duke [Wed, 05 Jul 2017 17:08:35 +0200] rev 5061
Merge
trims [Tue, 23 Mar 2010 20:37:30 -0700] rev 5060
Merge
trims [Tue, 23 Mar 2010 20:28:36 -0700] rev 5059
Added tag hs18-b01 for changeset 39a1b68b0062
trims [Thu, 18 Mar 2010 17:21:54 -0700] rev 5058
6936366: Fork HS17 to HS18 - renumber Major and build numbers of JVM
Summary: Update the Major and build numbers for HS18 fork
Reviewed-by: jcoomes
trims [Thu, 18 Mar 2010 16:06:00 -0700] rev 5057
Merge
twisti [Thu, 18 Mar 2010 06:36:43 -0700] rev 5056
Merge
twisti [Thu, 18 Mar 2010 09:56:51 +0100] rev 5055
6932091: JSR 292 x86 code cleanup
Summary: Some code cleanups found during the JSR 292 SPARC port.
Reviewed-by: kvn, never
never [Wed, 17 Mar 2010 16:40:25 -0700] rev 5054
6930043: C2: SIGSEGV in javasoft.sqe.tests.lang.arr017.arr01702.arr01702.loop_forw(II)I
Reviewed-by: kvn
kvn [Wed, 17 Mar 2010 10:47:03 -0700] rev 5053
6935535: String.indexOf() returns incorrect result on x86 with SSE4.2
Summary: Added missing counter decrement when substring search restarted.
Reviewed-by: twisti
twisti [Wed, 17 Mar 2010 10:22:41 +0100] rev 5052
6934966: JSR 292 add C1 logic for saved SP over MethodHandle calls
Summary: The logic for x86 C1 to save the SP over MH calls is pretty straight forward but SPARC handles that differently.
Reviewed-by: never, jrose
kvn [Tue, 16 Mar 2010 15:35:33 -0700] rev 5051
6935466: new CodeCache flushing code is not guarded by the flag
Summary: Add missing guard.
Reviewed-by: never
twisti [Tue, 16 Mar 2010 11:52:17 +0100] rev 5050
6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
Summary: Passing a null pointer to an InvokeDynamic function call should lead to a NullPointerException.
Reviewed-by: kvn, never
twisti [Thu, 11 Mar 2010 05:09:20 -0800] rev 5049
6934089: Zero 32-bit/64kb page fix
Summary: The fix for 6927165 increased the number of shadow pages for 32-bit platforms and this causes a problem on systems with 64kb pages.
Reviewed-by: twisti
Contributed-by: Gary Benson <gbenson@redhat.com>
roland [Fri, 05 Mar 2010 13:58:34 +0100] rev 5048
6932496: c1: deoptimization of jsr subroutine fails on sparcv9
Summary: store jsr ret bci as intptr constant in c1 debug info
Reviewed-by: never
twisti [Tue, 09 Mar 2010 23:57:36 -0800] rev 5047
Merge
twisti [Tue, 09 Mar 2010 20:16:19 +0100] rev 5046
6919934: JSR 292 needs to support x86 C1
Summary: This implements JSR 292 support for C1 x86.
Reviewed-by: never, jrose, kvn
never [Tue, 09 Mar 2010 11:02:39 -0800] rev 5045
6932270: Allow Java's ELF symtab reader to use separate debuginfo files
Reviewed-by: never
Contributed-by: Andrew Haley <aph@redhat.com>
twisti [Mon, 08 Mar 2010 04:46:30 -0800] rev 5044
6932536: JSR 292 modified JDK MethodHandlesTest fails on x86_64
Summary: A modified MethodHandlesTest revealed two bugs on x86_64.
Reviewed-by: never, jrose
acorn [Thu, 11 Mar 2010 14:41:29 -0500] rev 5043
Merge
xlu [Wed, 10 Mar 2010 21:42:26 -0800] rev 5042
6933402: RFE: Improve PrintSafepointStatistics output to track cleanup time
Summary: Improve the usability of safepoint statistics data. See bug evaluation for more details.
Reviewed-by: ysr, dholmes
coleenp [Tue, 02 Mar 2010 12:09:40 -0800] rev 5041
6914050: jvm assertion "guard pages must be in use" in -Xcomp mode
Summary: Move creating stack guard pages in jni attach thread before potential java call rather than after. Also cleanup stack guard pages when jni attach fails
Reviewed-by: never, dholmes
jmasa [Wed, 03 Mar 2010 08:10:41 -0800] rev 5040
6910182: CMS: assert(_cursor[j] == _survivor_plab_array[j].end(),"Ctl pt invariant")
Summary: Calculation of the slicing of survivor spaces for MT was incorrect.
Reviewed-by: ysr
johnc [Tue, 02 Mar 2010 13:59:37 -0800] rev 5039
Merge
phh [Fri, 26 Feb 2010 16:40:55 -0500] rev 5038
6923123: Hotspot refuses to start when -Xmx4m or -Xms4m is specified
Summary: Reduce NewSize from 4m to 1m.
Reviewed-by: tonyp, jmasa