johnc [Thu, 20 Jan 2011 13:57:12 -0800] rev 7924
Merge
tonyp [Wed, 19 Jan 2011 19:30:42 -0500] rev 7923
6977804: G1: remove the zero-filling thread
Summary: This changeset removes the zero-filling thread from G1 and collapses the two free region lists we had before (the "free" and "unclean" lists) into one. The new free list uses the new heap region sets / lists abstractions that we'll ultimately use it to keep track of all regions in the heap. A heap region set was also introduced for the humongous regions. Finally, this change increases the concurrency between the thread that completes freeing regions (after a cleanup pause) and the rest of the system (before we'd have to wait for said thread to complete before allocating a new region). The changest also includes a lot of refactoring and code simplification.
Reviewed-by: jcoomes, johnc
johnc [Wed, 19 Jan 2011 13:04:37 -0800] rev 7922
Merge
johnc [Wed, 19 Jan 2011 13:01:11 -0800] rev 7921
7012642: G1: JumbleGC002 test aborts with segmentation violation due to uncaught stack overflow
Summary: With recent G1 allocation path changes, the value of StackShadowPages in fast debug builds of the JVM, is no longer large enough to prevent the JVM C++ code from touching the stack guard pages. Increase the value of StackShadowPages to a suitable value.
Reviewed-by: ysr, tonyp, coleenp
tonyp [Wed, 19 Jan 2011 09:35:17 -0500] rev 7920
7011379: G1: overly long concurrent marking cycles
Summary: This changeset introduces filtering of SATB buffers at the point when they are about to be enqueued. If this filtering clears enough entries on each buffer, the buffer can then be re-used and not enqueued. This cuts down the number of SATB buffers that need to be processed by the concurrent marking threads.
Reviewed-by: johnc, ysr
dcubed [Wed, 19 Jan 2011 19:24:34 -0800] rev 7919
Merge
kamg [Wed, 19 Jan 2011 13:51:53 -0800] rev 7918
7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
Summary: Rebuild breakpoint cache at gc_epilogue instead of during oops_do
Reviewed-by: dcubed, ysr, coleenp
never [Wed, 19 Jan 2011 08:16:45 -0800] rev 7917
7013008: 2/3 assert(method == NULL || check_method(method, bcp)) failed: bcp must point into method
Summary: The Relocator should pass a NULL methodOop when rewriting since its resource array can never contain breakpoints.
Reviewed-by: dcubed, kvn, coleenp
dcubed [Wed, 19 Jan 2011 07:41:39 -0800] rev 7916
7012493: 2/2 6849574/Test.java fails with Internal Error (src/share/vm/prims/jvmtiTagMap.cpp:3294)
Summary: Refine assertion to work before VMThread has started.
Reviewed-by: ysr, never, dholmes, acorn
dcubed [Wed, 19 Jan 2011 07:15:09 -0800] rev 7915
Merge
coleenp [Fri, 14 Jan 2011 13:47:53 -0500] rev 7914
6811367: Fix code in HeapDumper::dump_heap() to avoid buffer overrun
Summary: Check buffer size before using and use dynamic buffer sizes for subsequent calls.
Reviewed-by: kamg, dholmes
never [Thu, 13 Jan 2011 22:15:41 -0800] rev 7913
4926272: methodOopDesc::method_from_bcp is unsafe
Reviewed-by: coleenp, jrose, kvn, dcubed
iveresov [Tue, 18 Jan 2011 18:00:06 -0800] rev 7912
7012766: assert(false) failed: DEBUG MESSAGE in MacroAssembler::debug32
Summary: Interpreter expects to see methodOop in rbx on method entry, which needs to be restored after call to profile_method.
Reviewed-by: kvn, never
kvn [Tue, 18 Jan 2011 17:10:03 -0800] rev 7911
7012965: Fix failed on sparc for 7009756: volatile variables could be broken throw reflection API
Summary: Use LDX/STX on v9 and LDD/STD on v8 sparc for volatile long moves.
Reviewed-by: never
minqi [Thu, 07 Oct 2010 13:49:40 -0700] rev 7910
6966589: hs16-b08 causes java.lang.StackOverflowError
Reviewed-by: mchung, dholmes, chrisphi
trims [Thu, 13 Jan 2011 22:54:23 -0800] rev 7909
Merge
johnc [Thu, 13 Jan 2011 17:19:21 -0800] rev 7908
Merge
ysr [Thu, 13 Jan 2011 11:33:56 -0800] rev 7907
7011940: iCMS: SIGSEGV in SweepClosure::do_already_free_chunk(FreeChunk*)+0x360
Summary: Revert a (relaxed version of the) bounds-check that was incorrectly removed in the fix for 7008136.
Reviewed-by: jmasa, johnc
brutisso [Thu, 13 Jan 2011 04:43:30 -0800] rev 7906
6941122: G1: UseLargePages does not work with G1 garbage collector
Summary: Pass the value of UseLargePages instead of false as the "large" parameter when reserving the G1 heap.
Reviewed-by: tonyp, johnc, phh
tonyp [Wed, 12 Jan 2011 16:34:25 -0500] rev 7905
6994297: G1: do first-level slow-path allocations with a CAS
Summary: First attempt to allocate out the current alloc region using a CAS instead of taking the Heap_lock (first level of G1's slow allocation path). Only if that fails and it's necessary to replace the current alloc region take the Heap_lock (that's the second level of G1's slow allocation path).
Reviewed-by: johnc, brutisso, ysr
tonyp [Wed, 12 Jan 2011 13:06:00 -0500] rev 7904
7007068: G1: refine the BOT during evac failure handling
Summary: During evacuation failure handling we refine the BOT to reflect the location of all the objects in the regions we scan. The changeset includes some minor cleanup: a) non-product print_on() method on the G1 BOT class, b) added more complete BOT verification during heap / region verification, c) slight modification to the BOT set up for humongous regions to be more consistent with the BOT set up during evac failure handling, and d) removed a couple of unused methods.
Reviewed-by: johnc, ysr
ysr [Thu, 06 Jan 2011 23:50:02 -0800] rev 7903
7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
Summary: The recorded _sweep_limit may not necessarily remain a block boundary as the old generation expands during a concurrent cycle. Terminal actions inside the sweep closure need to be aware of this as they cross over the limit.
Reviewed-by: johnc, minqi
dcubed [Thu, 13 Jan 2011 08:32:15 -0800] rev 7902
Merge
coleenp [Wed, 12 Jan 2011 13:59:18 -0800] rev 7901
7009828: Fix for 6938627 breaks visualvm monitoring when -Djava.io.tmpdir is defined
Summary: Change get_temp_directory() back to /tmp and %TEMP% like it always was and where the tools expect it to be.
Reviewed-by: phh, dcubed, kamg, alanb
kevinw [Wed, 12 Jan 2011 15:44:16 +0000] rev 7900
6994753: Implement optional hook to a Java method at VM startup.
Reviewed-by: mchung, acorn
phh [Tue, 11 Jan 2011 17:50:26 -0500] rev 7899
Merge
phh [Tue, 11 Jan 2011 17:33:21 -0500] rev 7898
7011463: Sparc MacroAssembler::incr_allocated_bytes() needs a RegisterOrConstant argument
Summary: Replaced incr_allocated_bytes() formals var_size_in_bytes and con_size_in_bytes with a single RegisterOrConstant formal.
Reviewed-by: twisti, jcoomes
kamg [Tue, 11 Jan 2011 10:06:00 -0500] rev 7897
6814943: getcpool001 catches more than one JvmtiThreadState problem
Summary: Mark field volatile, use membars, and change access order to close race
Reviewed-by: dcubed, dholmes
kamg [Mon, 10 Jan 2011 17:14:53 -0500] rev 7896
6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
Summary: Make JvmtiGCMark safe to run non-safepoint and instrument CMS
Reviewed-by: ysr, dcubed
dcubed [Mon, 10 Jan 2011 09:23:20 -0800] rev 7895
Merge
dholmes [Sun, 09 Jan 2011 17:16:16 -0500] rev 7894
7010665: Misplaced membar in C1 implementation of Unsafe.get/putXXX
Summary: Modify membars to match regular volatile variable handling
Reviewed-by: iveresov, kvn, never
twisti [Thu, 13 Jan 2011 07:28:47 -0800] rev 7893
Merge
iveresov [Wed, 12 Jan 2011 18:33:25 -0800] rev 7892
7011627: C1: call_RT must support targets that don't fit in wdisp30
Summary: Make both compilers emit near and far calls when necessary.
Reviewed-by: never, kvn, phh
twisti [Thu, 13 Jan 2011 07:20:32 -0800] rev 7891
Merge
kvn [Tue, 11 Jan 2011 20:26:13 -0800] rev 7890
7011386: race in objArrayKlass::array_klass_impl
Summary: Move _lower_dimension field initialization before _higher_dimension and add storestore barrier.
Reviewed-by: dholmes, iveresov, never
iveresov [Mon, 10 Jan 2011 18:46:29 -0800] rev 7889
4930919: race condition in MDO creation at back branch locations
Summary: Reuse set_method_data_for_bcp() to setup mdp after MDO creation.
Reviewed-by: kvn, never
twisti [Mon, 10 Jan 2011 03:58:07 -0800] rev 7888
7010913: JSR 292 ciMethodHandle does not handle MethodHandleCompiler exceptions properly
Reviewed-by: kvn, never
twisti [Mon, 10 Jan 2011 00:56:39 -0800] rev 7887
7010180: JSR 292 InvokeDynamicPrintArgs fails with: assert(_adapter == NULL) failed: init'd to NULL
Reviewed-by: never
kvn [Fri, 07 Jan 2011 11:53:24 -0800] rev 7886
6876037: CTW fails jdk7/hotspot/src/share/vm/opto/type.cpp:2055. assert(bits,"Use TypePtr for NULL")
Summary: Add missing 0 value check in TypeRawPtr::add_offset().
Reviewed-by: never
kvn [Fri, 07 Jan 2011 10:16:57 -0800] rev 7885
7009756: volatile variables could be broken throw reflection API
Summary: Use Atomic::load() and Atomic::store() to access a volatile long.
Reviewed-by: iveresov, jrose, dholmes, never
twisti [Fri, 07 Jan 2011 03:58:11 -0800] rev 7884
Merge
iveresov [Thu, 06 Jan 2011 16:03:20 -0800] rev 7883
7010618: C1: array length should be treated at int on 64bit during array allocation
Summary: Sign-extend the length argument during array allocation
Reviewed-by: never, kvn
trims [Thu, 13 Jan 2011 22:53:34 -0800] rev 7882
7012348: Bump the HS20 build number to 07
Summary: Update the HS20 build number to 07
Reviewed-by: jcoomes
trims [Thu, 13 Jan 2011 22:49:59 -0800] rev 7881
Added tag hs20-b06 for changeset abf8b0ea66cb
cl [Thu, 27 Jan 2011 17:28:34 -0800] rev 7880
Added tag jdk7-b127 for changeset afc10913decb
ohair [Wed, 02 Feb 2011 09:38:49 -0800] rev 7879
Merge
ohair [Thu, 27 Jan 2011 18:43:41 -0800] rev 7878
Merge
ohair [Wed, 26 Jan 2011 16:05:02 -0800] rev 7877
Merge
ohair [Fri, 14 Jan 2011 14:04:19 -0800] rev 7876
6950375: Remove msvcrt.dll from the Windows JRE bundles
Reviewed-by: prr
ohair [Thu, 13 Jan 2011 17:55:10 -0800] rev 7875
Merge
ohair [Mon, 10 Jan 2011 10:00:05 -0800] rev 7874
Merge
ohair [Wed, 05 Jan 2011 17:24:58 -0800] rev 7873
7009969: Remove SKIP_OPENJDK_BUILD from top Makefile
Reviewed-by: robilad
lana [Fri, 28 Jan 2011 10:00:12 -0800] rev 7872
Merge
lana [Mon, 24 Jan 2011 13:21:44 -0800] rev 7871
Merge
mchung [Thu, 20 Jan 2011 22:16:55 -0800] rev 7870
7013739: jdk_rmi target is missing in the top repo's test/Makefile
Reviewed-by: ohair, igor
cl [Thu, 27 Jan 2011 17:28:28 -0800] rev 7869
Added tag jdk7-b127 for changeset 6485675c3e33
duke [Wed, 05 Jul 2017 17:32:53 +0200] rev 7868
Added tag jdk7-b127 for changeset f83cd8bd35c6
duke [Wed, 05 Jul 2017 17:32:52 +0200] rev 7867
Merge
duke [Wed, 05 Jul 2017 17:32:49 +0200] rev 7866
Merge
cl [Thu, 20 Jan 2011 15:52:27 -0800] rev 7865
Added tag jdk7-b126 for changeset ecd42a8e578e
duke [Wed, 05 Jul 2017 17:32:47 +0200] rev 7864
Merge
cl [Thu, 20 Jan 2011 15:52:11 -0800] rev 7863
Added tag jdk7-b126 for changeset b3d0df94a2c9
duke [Wed, 05 Jul 2017 17:32:44 +0200] rev 7862
Merge
cl [Thu, 20 Jan 2011 15:52:10 -0800] rev 7861
Added tag jdk7-b126 for changeset b1e3d8548ad2
duke [Wed, 05 Jul 2017 17:32:42 +0200] rev 7860
Merge
cl [Thu, 20 Jan 2011 15:52:00 -0800] rev 7859
Added tag jdk7-b126 for changeset 99921385f9e6
duke [Wed, 05 Jul 2017 17:32:39 +0200] rev 7858
Merge
cl [Thu, 20 Jan 2011 15:52:16 -0800] rev 7857
Added tag jdk7-b126 for changeset 3b85a5b1538a
duke [Wed, 05 Jul 2017 17:32:37 +0200] rev 7856
Merge
cl [Thu, 20 Jan 2011 15:52:05 -0800] rev 7855
Added tag jdk7-b126 for changeset 58ca438889f6
cl [Thu, 20 Jan 2011 15:51:59 -0800] rev 7854
Added tag jdk7-b126 for changeset abcb441e62bd
duke [Wed, 05 Jul 2017 17:32:28 +0200] rev 7853
Added tag jdk7-b126 for changeset f1df06807698
duke [Wed, 05 Jul 2017 17:32:27 +0200] rev 7852
Merge
duke [Wed, 05 Jul 2017 17:32:25 +0200] rev 7851
Merge
lana [Fri, 14 Jan 2011 13:48:40 -0800] rev 7850
Merge
lana [Thu, 13 Jan 2011 15:05:09 -0800] rev 7849
Merge
mcimadamore [Wed, 05 Jan 2011 09:59:01 +0000] rev 7848
7010194: several langtools regression failures after JSR 292 changes (b123)
Summary: Some regression tests rely on unsupported JSR 292 features
Reviewed-by: jjg
lana [Tue, 04 Jan 2011 17:10:35 -0800] rev 7847
Merge
jjh [Thu, 23 Dec 2010 12:29:21 -0800] rev 7846
6982992: Tests CheckAttributedTree.java, JavacTreeScannerTest.java, and SourceTreeeScannerTest.java timeout
Summary: Hoist some invariant code out of a loop
Reviewed-by: ksrini
jjh [Thu, 23 Dec 2010 10:08:53 -0800] rev 7845
7008869: Debug printlns accidentally added to make/build.xml
Summary: Delete bogus echo statements
Reviewed-by: ksrini
lana [Wed, 22 Dec 2010 23:15:17 -0800] rev 7844
Merge
jjh [Tue, 21 Dec 2010 16:29:10 -0800] rev 7843
7008378: javac bootstrap launcher fails on cygwin when called via an absolute path
Summary: Use cygpath if it is cygwin
Reviewed-by: ksrini
ksrini [Sat, 18 Dec 2010 09:38:39 -0800] rev 7842
6567415: Neverending loop in ClassReader
Reviewed-by: jjg
jjg [Wed, 15 Dec 2010 06:39:51 -0800] rev 7841
7006564: NPE in javac running test/tools/javac/nio/compileTest/CompileTest.java
Reviewed-by: mcimadamore, alanb
jjg [Tue, 14 Dec 2010 14:17:20 -0800] rev 7840
6999891: DefaultFileManager incorrect
Reviewed-by: darcy
jjh [Mon, 13 Dec 2010 17:35:57 -0800] rev 7839
6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
Summary: Fixed JavacFileManager to not treat a non-existant pathname as a directory.
Reviewed-by: jjg
cl [Thu, 13 Jan 2011 16:44:11 -0800] rev 7838
Added tag jdk7-b125 for changeset ae40314fa64e
duke [Wed, 05 Jul 2017 17:32:19 +0200] rev 7837
Merge
lana [Fri, 14 Jan 2011 13:48:04 -0800] rev 7836
Merge
lana [Thu, 13 Jan 2011 14:55:57 -0800] rev 7835
Merge
lana [Tue, 04 Jan 2011 16:37:56 -0800] rev 7834
Merge
lana [Wed, 22 Dec 2010 22:57:29 -0800] rev 7833
Merge
ohair [Thu, 16 Dec 2010 13:14:46 -0800] rev 7832
7006853: Integrate JAX-WS 2.2.2 RI into JDK 7
Reviewed-by: ramap
cl [Thu, 13 Jan 2011 16:43:56 -0800] rev 7831
Added tag jdk7-b125 for changeset a45e9dd33dbb
duke [Wed, 05 Jul 2017 17:32:14 +0200] rev 7830
Merge
lana [Fri, 14 Jan 2011 13:48:03 -0800] rev 7829
Merge
lana [Thu, 13 Jan 2011 14:55:55 -0800] rev 7828
Merge
lana [Tue, 04 Jan 2011 16:28:40 -0800] rev 7827
Merge
lana [Wed, 22 Dec 2010 22:57:26 -0800] rev 7826
Merge
ohair [Thu, 16 Dec 2010 13:10:45 -0800] rev 7825
7007257: jaxp 1.4.5 jdk7 1st integration
Reviewed-by: joehw
cl [Thu, 13 Jan 2011 16:43:56 -0800] rev 7824
Added tag jdk7-b125 for changeset c477817f26b9
duke [Wed, 05 Jul 2017 17:32:09 +0200] rev 7823
Merge
cl [Thu, 13 Jan 2011 16:43:46 -0800] rev 7822
Added tag jdk7-b125 for changeset ad6f4daff46b
duke [Wed, 05 Jul 2017 17:32:07 +0200] rev 7821
Merge
lana [Fri, 14 Jan 2011 13:48:16 -0800] rev 7820
Merge
lana [Thu, 13 Jan 2011 15:03:27 -0800] rev 7819
Merge
lana [Thu, 06 Jan 2011 18:05:56 -0800] rev 7818
Merge
jjg [Thu, 06 Jan 2011 14:32:00 -0800] rev 7817
7010537: javah no longer depends on javadoc
Reviewed-by: ohair
lana [Tue, 04 Jan 2011 17:05:38 -0800] rev 7816
Merge
sherman [Tue, 04 Jan 2011 14:17:45 -0800] rev 7815
7009618: regression test failed caused by the fix for 7003462
Summary: avoid caching the "ended" Inflater in ZipFile class
Reviewed-by: alanb
alanb [Tue, 04 Jan 2011 17:49:50 +0000] rev 7814
7010192: InetAddress.isReachable hits ShouldNotReachHere with hs20-b04 (win)
Reviewed-by: chegar
valeriep [Mon, 27 Dec 2010 11:39:59 -0800] rev 7813
Merge
valeriep [Wed, 22 Dec 2010 19:19:32 -0800] rev 7812
6924489: sun.security.pkcs11.wrapper.PKCS11Exception: CKR_OPERATION_NOT_INITIALIZED
Summary: Reset cipher state to un-initialized wherever necessary.
Reviewed-by: weijun
dcubed [Thu, 23 Dec 2010 23:10:36 -0800] rev 7811
7005984: 3/3 Incorrect values of S0C and S0CMX appear with -gcnewcapacity in jstat
Summary: Swap S0C and S0CMX column values.
Reviewed-by: ohair, dholmes, poonam
ksrini [Thu, 23 Dec 2010 13:51:30 -0800] rev 7810
7002386: (launcher) fix XshowSettings
Reviewed-by: darcy, mchung, naoto
lana [Wed, 22 Dec 2010 23:12:17 -0800] rev 7809
Merge
valeriep [Wed, 22 Dec 2010 18:30:34 -0800] rev 7808
6581254: pkcs11 provider fails to parse configuration file contains windows short path
Summary: Modified configuration parsing code to support "~".
Reviewed-by: weijun
xuelei [Wed, 22 Dec 2010 06:28:46 -0800] rev 7807
6996365: Evaluate the priorities of cipher suites
Reviewed-by: wetmore
ptisnovs [Wed, 22 Dec 2010 14:37:15 +0100] rev 7806
6560348: PIT : java/awt/xembed/server/RunTestXEmbed.java fails
Summary: Testcase correction.
Reviewed-by: anthony
kevinw [Tue, 21 Dec 2010 11:32:34 +0000] rev 7805
6968933: Clip loop() deadlock in DirectAudioDevice$DirectClip.run
Reviewed-by: amenkov
weijun [Tue, 21 Dec 2010 17:35:47 +0800] rev 7804
6996367: improve HandshakeHash
Reviewed-by: xuelei
smarks [Mon, 20 Dec 2010 13:47:04 -0800] rev 7803
6880112: Project Coin: Port JDK core library code to use diamond operator
Reviewed-by: darcy, lancea, alanb, briangoetz, mduigou, mchung
ksrini [Sat, 18 Dec 2010 09:10:49 -0800] rev 7802
7007157: (pack200) stripping attributes causes a NPE
Reviewed-by: jrose, mduigou, dholmes
weijun [Fri, 17 Dec 2010 11:03:33 +0800] rev 7801
6975866: api/org_ietf/jgss/GSSContext/index.html#wrapUnwrapIOTest started to fail since jdk7 b102
Reviewed-by: valeriep
sundar [Thu, 16 Dec 2010 20:52:09 +0530] rev 7800
6980447: Rhino JavaScript engine code in jdk-7 has to updated with the latest code from Rhino 1.7R3.
Summary: Updating Rhino javascript engine with version 1.7R3. Issue 6427783 (E4X support is missing from Sun's Mozilla JavaScript implementation) is also fixed as a side-effect.
Reviewed-by: alanb, jjh
xuelei [Wed, 15 Dec 2010 22:42:37 -0800] rev 7799
7006265: Javadoc warnings
Reviewed-by: weijun
alanb [Wed, 15 Dec 2010 09:15:20 +0000] rev 7798
6927816: Demo crash in heaptracker with Non-Sun JDK due to possible violation of JNI spec
Reviewed-by: ohair, alanb
Contributed-by: spoole@uk.ibm.com
lancea [Tue, 14 Dec 2010 16:08:43 -0500] rev 7797
7006454: Typo in javadocs typo for Statement.executeBatch @since
Reviewed-by: alanb