- 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 1 次提交
-
-
由 kvn 提交于
Summary: Do several iterations to build EA Connection Graph. Reviewed-by: never, twisti, ysr
-
- 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
-
- 03 11月, 2010 2 次提交
- 31 10月, 2010 3 次提交
-
-
由 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: 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 1 次提交
-
-
由 twisti 提交于
Summary: The logic of ClassFileParser::java_dyn_MethodHandle_fix_pre needs to take care of an already changed vmentry signature. Reviewed-by: never, jrose
-
- 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
-
- 21 10月, 2010 1 次提交
-
-
由 kamg 提交于
Summary: Repair stackmap table attribute when relocating bytecode Reviewed-by: acorn, never
-
- 20 10月, 2010 2 次提交
- 19 10月, 2010 1 次提交
-
-
由 twisti 提交于
Reviewed-by: never
-
- 17 10月, 2010 1 次提交
-
-
由 tonyp 提交于
Summary: There is a race between the concurrent refinement threads and the humongous object allocation that can cause the concurrent refinement threads to corrupt the part of the BOT that it is being initialized by the humongous object allocation operation. The solution is to do the humongous object allocation in careful steps to ensure that the concurrent refinement threads always have a consistent view over the BOT, region contents, and top. The fix includes some very minor tidying up in sparsePRT. Reviewed-by: jcoomes, johnc, ysr
-
- 19 10月, 2010 1 次提交
-
-
由 johnc 提交于
6988458: G1: assert(mr.end() <= _cm->finger()) failed: otherwise the region shouldn't be on the stack Summary: The changes from 6941395 did not clear the CMTask::_aborted_region fields when concurrent marking aborted because of overflow. As a result, the next time around we could see a memory region whose start address was above the global finger and the assertion tripped. Moved the clearing of the aborted regions to ConcurrentMark::clear_marking_state, which is executed on all of the exit paths. Reviewed-by: tonyp, ysr, jmasa
-
- 16 10月, 2010 2 次提交
- 15 10月, 2010 1 次提交
-
-
由 roland 提交于
Summary: Ifop optimization for c1 Reviewed-by: never, phh, iveresov
-
- 14 10月, 2010 1 次提交
-
-
由 tonyp 提交于
Summary: When an entry is stolen, don't push it on the task queue but process it directly. Reviewed-by: iveresov, ysr, jcoomes
-
- 13 10月, 2010 4 次提交
-
-
由 twisti 提交于
Reviewed-by: never, jrose
-
由 iveresov 提交于
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
-
由 jcoomes 提交于
Reviewed-by: iveresov, tonyp
-
由 johnc 提交于
Summary: Remove G1RemSet base class and StupidG1RemSet class; rename HRInto_G1RemSet to just G1RemSet. Reviewed-by: ysr, tonyp
-
- 12 10月, 2010 2 次提交
- 11 10月, 2010 1 次提交
-
-
由 twisti 提交于
Reviewed-by: kvn, jrose
-
- 08 10月, 2010 2 次提交
-
-
由 twisti 提交于
Reviewed-by: twisti Contributed-by: NGary Benson <gbenson@redhat.com>
-
由 never 提交于
Reviewed-by: kvn
-