- 09 8月, 2010 1 次提交
-
-
由 jcoomes 提交于
Reviewed-by: tonyp, ysr
-
- 07 8月, 2010 1 次提交
-
-
由 johnc 提交于
6930581: G1: assert(ParallelGCThreads > 1 || n_yielded() == _hrrs->occupied(),"Should have yielded all the .. Summary: During RSet updating, when ParallelGCThreads is zero, references that point into the collection set are added directly the referenced region's RSet. This can cause the sparse table in the RSet to expand. RSet scanning and the "occupied" routine will then operate on different instances of the sparse table causing the assert to trip. This may also cause some cards added post expansion to be missed during RSet scanning. When ParallelGCThreads is non-zero such references are recorded on the "references to be scanned" queue and the card containing the reference is recorded in a dirty card queue for use in the event of an evacuation failure. Employ the parallel code in the serial case to avoid expanding the RSets of regions in the collection set. Reviewed-by: iveresov, ysr, tonyp
-
- 05 8月, 2010 1 次提交
-
-
由 tonyp 提交于
Summary: As part of 6944166 we disabled the concept of abandoned pauses (i.e., if the collection set is empty, we would still try to do a pause even if it is to update the RSets and scan the roots). This changeset removes the code and structures associated with abandoned pauses. Reviewed-by: iveresov, johnc
-
- 22 7月, 2010 1 次提交
-
-
由 tonyp 提交于
Summary: Remove the breadth-first copying order from ParallelScavenge and use depth-first by default. Reviewed-by: jcoomes, ysr, johnc
-
- 03 8月, 2010 1 次提交
-
-
由 johnc 提交于
Summary: The per-worker _new_refs array is used to hold references that point into the collection set. It is populated during RSet updating and subsequently processed. In the event of an evacuation failure it processed again to recreate the RSets of regions in the collection set. Remove the per-worker _new_refs array by processing the references directly. Use a DirtyCardQueue to hold the cards containing the references so that the RSets of regions in the collection set can be recreated when handling an evacuation failure. Reviewed-by: iveresov, jmasa, tonyp
-
- 31 7月, 2010 1 次提交
-
-
由 kevinw 提交于
Summary: Management code enabled for use by a concurrent collector. Reviewed-by: mchung, ysr
-
- 23 7月, 2010 1 次提交
-
-
由 never 提交于
Reviewed-by: kvn
-
- 20 7月, 2010 1 次提交
-
-
由 johnc 提交于
Summary: During concurrent refinment, filter cards in young regions after it has been determined that the region has been allocated from and the young type of the region has been set. Reviewed-by: iveresov, tonyp, jcoomes
-
- 17 7月, 2010 2 次提交
- 16 7月, 2010 1 次提交
-
-
由 jrose 提交于
Summary: Add JVM_CONSTANT_InvokeDynamic records to constant pool to determine per-instruction BSMs. Reviewed-by: twisti
-
- 15 7月, 2010 2 次提交
- 13 7月, 2010 2 次提交
- 09 7月, 2010 1 次提交
-
-
由 never 提交于
Reviewed-by: kvn
-
- 08 7月, 2010 1 次提交
-
-
由 mchung 提交于
Summary: Add hotspot support for modules image Reviewed-by: acorn
-
- 03 7月, 2010 3 次提交
-
-
由 kvn 提交于
Summary: Execute IGVN optimization before and after Escape Analysis Reviewed-by: never
-
由 never 提交于
6965671: fatal error: acquiring lock JNIGlobalHandle_lock/16 out of order with lock CodeCache_lock/1 Reviewed-by: kvn, dcubed
-
由 acorn 提交于
Summary: fix MonitorInUseLists memory leak and MonitorBound now works Reviewed-by: chrisphi, dice
-
- 02 7月, 2010 1 次提交
-
-
由 jcoomes 提交于
Reviewed-by: ysr, jmasa
-
- 30 6月, 2010 1 次提交
-
-
由 kvn 提交于
Summary: Adjust performance flags settings. Reviewed-by: never, phh
-
- 29 6月, 2010 3 次提交
-
-
由 kvn 提交于
Summary: Use replace_node() method instead of subsume_node(). Reviewed-by: jrose, never
-
由 tonyp 提交于
Summary: G1 was not handling explicit GCs correctly in many ways. It does now. See the CR for the list of improvements contained in this changeset. Reviewed-by: iveresov, ysr, johnc
-
由 kvn 提交于
Summary: normalize widen value in xmeet() and xdual() methods for types Int and Long so the type meet will be symmetric. Reviewed-by: jrose
-
- 25 6月, 2010 1 次提交
-
-
由 jcoomes 提交于
Reviewed-by: phh
-
- 24 6月, 2010 1 次提交
-
-
由 kvn 提交于
Summary: Missing protected page below heap with compressed oops on Linux with large pages use. Reviewed-by: never, phh, jcoomes
-
- 23 6月, 2010 2 次提交
- 22 6月, 2010 1 次提交
-
-
由 never 提交于
Reviewed-by: dcubed, kvn, twisti
-
- 19 6月, 2010 1 次提交
-
-
由 never 提交于
6956958: assert(is_clean() || is_call_to_compiled() || is_call_to_interpreted() || is_optimized() || is_megam Reviewed-by: kvn
-
- 16 6月, 2010 1 次提交
-
-
由 kvn 提交于
Summary: check that raw loads have control edge Reviewed-by: never, twisti
-
- 13 6月, 2010 1 次提交
-
-
由 jrose 提交于
Summary: Support java_mirror for unloaded klasses, arrays as well as instances. Simplify ciTypeFlow by removing unused path. Reviewed-by: kvn
-
- 11 6月, 2010 1 次提交
-
-
由 kvn 提交于
Summary: Modify assembler code to check for 0 count for all copy routines. Reviewed-by: never, ysr, jcoomes
-
- 10 6月, 2010 1 次提交
-
-
由 jrose 提交于
Summary: Add new CP types CONSTANT_MethodHandle, CONSTANT_MethodType; extend 'ldc' bytecode. Reviewed-by: twisti, never
-
- 08 6月, 2010 2 次提交
-
-
由 johnc 提交于
Summary: In C2's G1 post write barrier, the loads of the buffer and index fields from the DirtyCardQueue structure may be moved across a safepoint. Use the current value of "control" in the C2 IR to limit how far these loads can move. Reviewed-by: never, iveresov, kvn
-
由 never 提交于
Reviewed-by: kvn
-
- 05 6月, 2010 1 次提交
-
-
由 iveresov 提交于
Summary: Enable parallel compilation in C1 Reviewed-by: never, kvn
-
- 04 6月, 2010 1 次提交
-
-
由 acorn 提交于
Summary: New optional flags to reduce inflated monitor cleanup times Reviewed-by: chrisphi, dice
-
- 03 6月, 2010 1 次提交
-
-
由 never 提交于
Reviewed-by: kvn, twisti, ysr
-