- 01 12月, 2010 1 次提交
-
-
由 stefank 提交于
Summary: Added an ifndef DONT_USE_PRECOMPILED_HEADER to precompiled.hpp. Set up DONT_USE_PRECOMPILED_HEADER when compiling with Sun Studio or when the user specifies USE_PRECOMPILED_HEADER=0. Fixed broken include dependencies. Reviewed-by: coleenp, kvn
-
- 03 12月, 2010 1 次提交
-
-
由 bobv 提交于
Summary: gcc bug worksaround for IA64 no longer needed Reviewed-by: andrew
-
- 02 12月, 2010 1 次提交
-
-
由 ikrylov 提交于
Summary: move functions from hpi library to hotspot, communicate with licensees and open source community, check jdk for dependency, file CCC request Reviewed-by: coleenp, acorn, dsamersoff
-
- 30 11月, 2010 1 次提交
-
-
由 coleenp 提交于
Summary: Using r12 as temporary register around call_VM trashes heapbase becausecall_VM doesn't always return immediately to following code (eg forward_exception, popframe and early return support). Reviewed-by: never, kvn
-
- 24 11月, 2010 1 次提交
-
-
由 stefank 提交于
Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
-
- 23 11月, 2010 1 次提交
-
-
由 twisti 提交于
Summary: 6970683 and 6953144 introduced changes that need to be implemented for Zero and Shark. Reviewed-by: twisti Contributed-by: NGary Benson <gbenson@redhat.com>
-
- 19 11月, 2010 3 次提交
- 17 11月, 2010 3 次提交
-
-
由 iveresov 提交于
Summary: Fix policy reaction to C1 comilation failures, make C1 properly report errors. Reviewed-by: kvn
-
由 johnc 提交于
Summary: An evacuation failure while copying the roots caused an object, A, to be forwarded to itself. During the subsequent RSet updating a reference to A was processed causing the reference to be added to the RSet of A's heap region. As a result of adding to the remembered set we ran into the issue described in 6930581 - the sparse table expanded and the RSet scanning code walked the cards in one instance of RHashTable (_cur) while the occupied() counts the cards in the expanded table (_next). Reviewed-by: tonyp, iveresov
-
由 ysr 提交于
Summary: Weakened assert in onj_is_alive() to allow its use at initialization time when is_at_safepoint() normally reports false; added some related asserts to check order of is_init_completed() after Universe::is_fully_initialized(). Reviewed-by: jcoomes
-
- 13 11月, 2010 1 次提交
-
-
由 kvn 提交于
Summary: HeapBaseMinAddress should be used only for a default heap size calculation. Reviewed-by: iveresov, jcoomes, dholmes
-
- 12 11月, 2010 1 次提交
-
-
由 ysr 提交于
Summary: Weaken assert by excluding scavenges resulting from -XX:+ScavengeALot stress-testing option. Reviewed-by: jmasa, tonyp
-
- 10 11月, 2010 3 次提交
-
-
由 kvn 提交于
Summary: fix index check Reviewed-by: never
-
由 iveresov 提交于
Summary: The plug that guards the use of compressed oops with invokedynamic needs to be removed Reviewed-by: twisti, kvn
-
由 ysr 提交于
6996613: CompactibleFreeListSpace::print should call CompactibleFreeListSpace::print_on, not Space::print_on Reviewed-by: tonyp
-
- 07 11月, 2010 2 次提交
- 06 11月, 2010 3 次提交
-
-
由 iveresov 提交于
Summary: Fix the compiler error. Allow to build just c2 specifying FORCE_TIERED=0 on the command line. Reviewed-by: never, kvn
-
由 ysr 提交于
Summary: Since we are at a stop-world pause, the existing CMS-phase checks are sufficient for safety, and the locking check can be safely elided. Elaborated documentation comment to the case where class unloading and verification are disabled, and the query happens when we aren't in the sweeping phase, where the answer "false" would be (almost everywhere) too pessimistic. Reviewed-by: jmasa, johnc, tonyp
-
由 jrose 提交于
Summary: Add missing line to vmStructs. Also fix bug with class dumper. Reviewed-by: twisti, kvn
-
- 05 11月, 2010 2 次提交
- 03 11月, 2010 3 次提交
-
-
由 iveresov 提交于
Summary: Turn CDS off if compressed oops is on Reviewed-by: ysr, kvn, jcoomes, phh
-
由 twisti 提交于
6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set. Reviewed-by: never, kvn
-
由 kvn 提交于
Summary: Use hardware DIV instruction for long division by constant when it is faster than code with multiply. Reviewed-by: never
-
- 31 10月, 2010 4 次提交
-
-
由 jrose 提交于
Summary: Allow CONSTANT_InvokeDynamic nodes to have any number of extra operands. Reviewed-by: twisti
-
由 jrose 提交于
Summary: Small bug fix to make "raw" adapters work for JDK changes under 6981777 Reviewed-by: twisti
-
由 jrose 提交于
Summary: SPARC code missing from fix to 6939224 Reviewed-by: twisti
-
由 jrose 提交于
Summary: Distinguish pool indexes from cache indexes in recently changed code. Reviewed-by: never
-
- 29 10月, 2010 1 次提交
-
-
由 ysr 提交于
Summary: Sharpened an assert, introduced in 6896603, that intended to check that the incremental_collection_failed() predicate on the heap was being reset "soon enough". Reviewed-by: jmasa
-
- 28 10月, 2010 2 次提交
- 27 10月, 2010 1 次提交
-
-
由 kamg 提交于
6891959: HotSpot should not throw ClassFormatError if a class has a field with '>' and/or '<' in its name Summary: Class file parser needs to look for and disallow '[' in names. Reviewed-by: coleenp, never
-
- 24 10月, 2010 1 次提交
-
-
由 ysr 提交于
Summary: Deprecated HandlePromotionFailure, removing the ability to turn off that feature, did away with one epoch look-ahead when deciding if a scavenge is likely to fail, relying on current data. Reviewed-by: jmasa, johnc, poonam
-
- 23 10月, 2010 1 次提交
-
-
由 acorn 提交于
Summary: reduce complexity by factoring synchronizer.cpp Reviewed-by: dholmes, never, coleenp
-
- 22 10月, 2010 3 次提交
-
-
由 twisti 提交于
Summary: 6953477 broke Zero. Reviewed-by: twisti Contributed-by: NGary Benson <gbenson@redhat.com>
-
由 ysr 提交于
Summary: Closed a timing hole during which concurrent full gc requests can be missed. The hole can increase the latency of the response to a full gc request by up to the value of CMSWaitDuration. If CMSWaitDuration=0 is, as currently, interpreted as an unbounded wait, suitable in certain tuning scenarios, the application can potentially hang. Made two obscure tunables, including CMSWaitDuration, manageable. Reviewed-by: jcoomes, tonyp
-
由 never 提交于
Reviewed-by: kvn, jrose, dholmes, coleenp
-