herrick [Thu, 16 Sep 2010 12:19:52 -0400] rev 6791
Merge
igor [Tue, 07 Sep 2010 11:28:28 -0700] rev 6790
6982499: ant detection is fragile on windows. especially using cygwin
Reviewed-by: ohair
igor [Tue, 07 Sep 2010 11:24:28 -0700] rev 6789
6982774: HOTSPOT_IMPORT_PATH detection does not work as expected
Reviewed-by: herrick, ohair
jqzuo [Thu, 02 Sep 2010 09:23:28 -0400] rev 6788
Merge
igor [Wed, 01 Sep 2010 09:36:38 -0700] rev 6787
6981436: Variable gets hidden if Defs-javadoc is included
Reviewed-by: ohair
herrick [Fri, 20 Aug 2010 14:48:10 -0400] rev 6786
Merge
igor [Thu, 12 Aug 2010 23:21:17 -0700] rev 6785
6976516: Add support for compiling deploy ws without compiling j2se
Reviewed-by: herrick, ohair
cl [Thu, 14 Oct 2010 19:25:10 -0700] rev 6784
Added tag jdk7-b114 for changeset 59be7b5071f2
duke [Wed, 05 Jul 2017 17:24:37 +0200] rev 6783
Merge
trims [Wed, 20 Oct 2010 16:49:06 -0700] rev 6782
Merge
trims [Thu, 14 Oct 2010 16:05:59 -0700] rev 6781
6992267: Bump the HS20 build number to 02
Summary: Update the HS20 build number to 02
Reviewed-by: jcoomes
trims [Thu, 14 Oct 2010 15:52:41 -0700] rev 6780
Merge
kvn [Thu, 14 Oct 2010 10:46:38 -0700] rev 6779
Merge
roland [Wed, 13 Oct 2010 15:38:14 -0700] rev 6778
Merge
roland [Wed, 13 Oct 2010 10:29:31 +0200] rev 6777
6991211: assert failure on sparc: "can not have caller-save register operands at calls"
Summary: fixes sparc only assert failure following 6972540
Reviewed-by: never
twisti [Wed, 13 Oct 2010 13:31:30 -0700] rev 6776
Merge
twisti [Wed, 13 Oct 2010 01:19:43 -0700] rev 6775
6987555: JSR 292 unboxing to a boolean value fails on big-endian SPARC
Reviewed-by: never, jrose
iveresov [Tue, 12 Oct 2010 23:51:20 -0700] rev 6774
6991512: G1 barriers fail with 64bit C1
Summary: Fix compare-and-swap intrinsic problem with G1 post-barriers and issue with branch ranges in G1 stubs on sparc
Reviewed-by: never, kvn
twisti [Tue, 12 Oct 2010 02:21:06 -0700] rev 6773
6991065: missed a review comment in 6829194
Reviewed-by: kvn
twisti [Mon, 11 Oct 2010 04:18:58 -0700] rev 6772
6829194: JSR 292 needs to support compressed oops
Reviewed-by: kvn, jrose
twisti [Fri, 08 Oct 2010 02:42:17 -0700] rev 6771
6990549: Zero and Shark fixes after 6978355 and 6953144
Reviewed-by: twisti
Contributed-by: Gary Benson <gbenson@redhat.com>
never [Thu, 07 Oct 2010 21:40:55 -0700] rev 6770
6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
Reviewed-by: kvn
jcoomes [Fri, 08 Oct 2010 09:29:09 -0700] rev 6769
Merge
tonyp [Fri, 01 Oct 2010 16:43:05 -0400] rev 6768
6980838: G1: guarantee(false) failed: thread has an unexpected active value in its SATB queue
Summary: Under certain circumstances a safepoint could happen between a JavaThread object being created and that object being added to the Java threads list. This could cause the active field of that thread's SATB queue to get out-of-sync with respect to the other Java threads. The solution is to activate the SATB queue, when necessary, before adding the thread to the Java threads list, not when the JavaThread object is created. The changeset also includes a small fix to rename the surrogate locker thread from "Surrogate Locker Thread (CMS)" to "Surrogate Locker Thread (Concurrent GC)" since it's also used in G1.
Reviewed-by: iveresov, ysr, johnc, jcoomes
johnc [Fri, 01 Oct 2010 21:48:40 -0700] rev 6767
Merge
johnc [Fri, 01 Oct 2010 18:23:16 -0700] rev 6766
6983311: G1: LoopTest hangs when run with -XX:+ExplicitInvokesConcurrent
Summary: Clear the concurrent marking "in progress" flag while the FullGCCount_lock is held. This avoids a race that can cause back to back System.gc() calls, when ExplicitGCInvokesConcurrent is enabled, to fail to initiate a marking cycle causing the requesting thread to hang.
Reviewed-by: tonyp, ysr
ysr [Fri, 01 Oct 2010 16:12:54 -0700] rev 6765
6794422: Perm gen expansion policy for concurrent collectors
Summary: Concurrent collectors should expand the perm gen without a full STW GC, but possibly by triggering a concurrent collection. Temporary band-aid for G1 where no concurrent collection is kicked off since the perm gen is not collected concurrently.
Reviewed-by: johnc
jcoomes [Thu, 30 Sep 2010 12:15:13 -0700] rev 6764
6988678: fatal error deadlock handling was unintentionally disabled
Reviewed-by: ysr
ysr [Wed, 29 Sep 2010 16:17:02 -0700] rev 6763
6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
Summary: Inserted missing yield(check)s in closures used during the work-stealing phase of parallel concurrent marking, a missing synchronous yield-request in the cms perm gen allocation path, and a terminator-terminator for the offer_termination invocation that monitors the yield status of the concurrent marking task. Elaborated some documentation comments and made some task queue termination loop flags configurable at start-up to aid debugging in the field.
Reviewed-by: jmasa, johnc, poonam
jcoomes [Tue, 28 Sep 2010 15:56:15 -0700] rev 6762
6423256: GC stacks should use a better data structure
6942771: SEGV in ParScanThreadState::take_from_overflow_stack
Reviewed-by: apetrusenko, ysr, pbk
johnc [Tue, 28 Sep 2010 09:51:37 -0700] rev 6761
6941395: G1: Use only lock-free versions of region stack push() and pop()
Summary: Re-enable use of the lock-free versions of region stack push() and pop() by recording aborted regions in a thread-local structure, which are then processed when scanning of the region stack restarts. The previous locking versions of these routines are retained for diagnostic purposes.
Reviewed-by: tonyp, ysr
jcoomes [Wed, 08 Sep 2010 16:10:51 -0700] rev 6760
6983296: build sanity checks for jdk7 should require SS12u1
Reviewed-by: ohair
jmasa [Mon, 20 Sep 2010 14:38:38 -0700] rev 6759
6984287: Regularize how GC parallel workers are specified.
Summary: Associate number of GC workers with the workgang as opposed to the task.
Reviewed-by: johnc, ysr
kvn [Wed, 06 Oct 2010 14:18:32 -0700] rev 6758
Merge
never [Tue, 05 Oct 2010 17:38:40 -0700] rev 6757
6989736: fix mapfile warnings on solaris
Reviewed-by: kvn, iveresov, jcoomes
never [Tue, 05 Oct 2010 11:16:12 -0700] rev 6756
6988018: dtrace/hotspot/MethodInvocation/MethodInvocation002 crashes with client compiler
Reviewed-by: iveresov, kvn, kamg
kvn [Tue, 05 Oct 2010 08:57:20 -0700] rev 6755
6979458: VM crashes when -XX:ObjectAlignmentInBytes is too big
Summary: Set upper limit 256 for ObjectAlignmentInBytes value.
Reviewed-by: never, iveresov
iveresov [Tue, 05 Oct 2010 00:19:21 -0700] rev 6754
6989368: Regression in scimark2.MonteCarlo in jdk7_b112 on Linux
Summary: Fix ciMethod::instructions_size() to return correct value
Reviewed-by: kvn, twisti
never [Mon, 04 Oct 2010 17:09:18 -0700] rev 6753
6968348: Byteswapped memory access can point to wrong location after JIT
Reviewed-by: twisti, kvn, iveresov
kvn [Thu, 30 Sep 2010 18:31:45 -0700] rev 6752
6916062: assert(_inserts <= _insert_limit,"hash table overflow") in NodeHash::hash_insert
Summary: Missing check for not empty worklist when puting memory node back on worklist and expecting address type update.
Reviewed-by: never
iveresov [Wed, 29 Sep 2010 16:53:42 -0700] rev 6751
6988346: 6986046 breaks tiered
Summary: adjusted profiling code generation to use the new ValueStack implementation; lowered optimization level for c1_LinearScan.cpp on solaris x64.
Reviewed-by: kvn, never
roland [Wed, 29 Sep 2010 18:53:28 +0200] rev 6750
6988303: 6986046 breaks build with recent gcc
Summary: fixes build break
Reviewed-by: never, kvn
twisti [Wed, 29 Sep 2010 00:30:57 -0700] rev 6749
6987634: JSR 292 assert(start_bci() >= 0 && start_bci() < code_size()) failed: correct osr_bci argument
Reviewed-by: never, kvn
never [Mon, 27 Sep 2010 20:44:18 -0700] rev 6748
6987763: assert(kind() == EmptyExceptionState) failed: only EmptyExceptionStates can be modified
Reviewed-by: roland, kvn, iveresov
iveresov [Mon, 27 Sep 2010 15:04:40 -0700] rev 6747
6987115: Non-tiered compilation policy creates unnecessary C1 threads
Summary: Fixed NonTieredCompPolicy::compiler_count() to return correct thread count.
Reviewed-by: twisti, kvn
roland [Fri, 24 Sep 2010 13:14:32 -0700] rev 6746
Merge
roland [Tue, 29 Dec 2009 19:08:54 +0100] rev 6745
6986046: C1 valuestack cleanup
Summary: fixes an historical oddity in C1 with inlining where all of the expression stacks are kept in the topmost ValueStack instead of being in their respective ValueStacks.
Reviewed-by: never
Contributed-by: Christian Wimmer <cwimmer@uci.edu>
twisti [Fri, 24 Sep 2010 03:51:43 -0700] rev 6744
6986944: JSR 292 assert(caller_nm->is_method_handle_return(caller_frame.pc())) failed: must be MH call site
Reviewed-by: never, kvn
never [Wed, 22 Sep 2010 23:51:03 -0700] rev 6743
6986028: assert(_base == Int) failed: Not an Int in CmpINode::sub
Reviewed-by: kvn, twisti
never [Wed, 22 Sep 2010 21:10:46 -0700] rev 6742
6972540: sun/nio/ch/SocketChannelImpl compilation crashed when executing CompileTheWorld
Reviewed-by: kvn
never [Wed, 22 Sep 2010 13:01:12 -0700] rev 6741
6982537: Crash in Node*step_through_mergemem
Reviewed-by: kvn
iveresov [Tue, 21 Sep 2010 13:38:35 -0700] rev 6740
6986270: guarantee(*bcp != Bytecodes::_monitorenter || exec_mode != Deoptimization::Unpack_exception) fails
Summary: Propagate the compiler type of the deopting method to vframeArrayElement::unpack_on_stack()
Reviewed-by: jrose, never
never [Wed, 15 Sep 2010 20:25:37 -0700] rev 6739
6984979: OptimizeFill misses some cases with an odd memory graph
Reviewed-by: kvn
trims [Fri, 01 Oct 2010 18:04:36 -0700] rev 6738
Added tag hs20-b01 for changeset 75ef8813e3e2
cl [Thu, 14 Oct 2010 19:24:57 -0700] rev 6737
Added tag jdk7-b114 for changeset 21dec68c50e9
jqzuo [Mon, 18 Oct 2010 11:13:35 -0400] rev 6736
Merge
jqzuo [Tue, 12 Oct 2010 13:29:44 -0400] rev 6735
Merge
jqzuo [Mon, 04 Oct 2010 16:36:17 -0400] rev 6734
6983855: The jre combo bundle target needs to be added in the makefile
Reviewed-by: billyh, paulk
herrick [Sat, 02 Oct 2010 11:08:37 -0400] rev 6733
Merge
igor [Tue, 28 Sep 2010 10:29:08 -0700] rev 6732
6982520: Move kernel to install ws
Reviewed-by: herrick, billyh
herrick [Fri, 17 Sep 2010 07:10:50 -0400] rev 6731
Merge
herrick [Fri, 17 Sep 2010 07:08:23 -0400] rev 6730
Merge
igor [Fri, 03 Sep 2010 20:19:45 -0700] rev 6729
6978977: Productivity: use ant for java part of build
Reviewed-by: mduigou, herrick, ohair, ngthomas
cl [Thu, 14 Oct 2010 19:24:47 -0700] rev 6728
Added tag jdk7-b114 for changeset fec780096b1f