- 09 12月, 2009 1 次提交
-
-
由 ysr 提交于
6908208: UseCompressedOops: array_size() returns incorrect size for MAX_INT object array following 6906727 Summary: In array_size() cast to an unsigned to avoid overflow of intermediate value. Reviewed-by: kvn, tonyp, jmasa, jcoomes, coleenp
-
- 08 12月, 2009 1 次提交
-
-
由 tonyp 提交于
Summary: ensure that max and committed are non-zero (currently: at least as large as the region size). Reviewed-by: iveresov, mchung
-
- 04 12月, 2009 3 次提交
-
-
由 tonyp 提交于
Summary: size_t max_size() hides size_t max_size() const. Reviewed-by: jmasa, ysr
-
由 tonyp 提交于
Summary: G1 reports committed memory instead of reserved memory from the Runtime.maxMemory() method Reviewed-by: ysr, jmasa
-
由 ysr 提交于
Summary: Introduced a new write_ref_array(HeapWords* start, size_t count) method that does the requisite MemRegion range calculation so (some of the) clients of the erstwhile write_ref_array(MemRegion mr) do not need to worry. This removed all external uses of array_size(), which was also simplified and made private. Asserts were added to catch other possible issues. Further, less essential, fixes stemming from this investigation are deferred to CR 6904516 (to follow shortly in hs17). Reviewed-by: kvn, coleenp, jmasa
-
- 25 11月, 2009 1 次提交
-
-
由 johnc 提交于
Summary: Fixes a race on the dirty card queue completed buffer list between worker thread(s) performing a flush of a deferred store barrier (enqueueing a newly completed buffer) and worker thread(s) in the RSet updating code claiming completed buffers. Removed the routine that removes elements from the completed update buffer queue using a CAS. Reviewed-by: ysr, tonyp
-
- 21 11月, 2009 1 次提交
-
-
由 tonyp 提交于
Summary: It introduces the necessary memory pools for G1. Reviewed-by: mchung, ysr
-
- 20 11月, 2009 2 次提交
-
-
由 ysr 提交于
Summary: ScavengeALot now causes an incremental (but possibly partially young, in the G1 sense) collection. Some such collections may be abandoned on account of MMU specs. Band-aided a native leak associated with abandoned pauses, as well as an MMU tracker overflow related to frequent scavenge events in the face of a large MMU denominator interval; the latter is protected by a product flag that defaults to false. Reviewed-by: tonyp
-
由 ysr 提交于
Summary: Protected stats dump with a new develop flag; other than for the dump, reconciled product and non-product behaviour in face of the error. Reviewed-by: tonyp
-
- 14 11月, 2009 1 次提交
-
-
由 ysr 提交于
Summary: Added instrumentation and (temporary) assert in non-product mode; clipped the value when found out-of-bounds in product mode. Fix of original issue will follow collection of data from this instrumentation. Reviewed-by: jcoomes, tonyp
-
- 11 11月, 2009 1 次提交
-
-
由 jmasa 提交于
Summary: Use CollectorPolicy information instead of MaxNewSize Reviewed-by: ysr, jcoomes
-
- 07 11月, 2009 1 次提交
-
-
由 johnc 提交于
Summary: The type in the NEW_C_HEAP_ARRRY and FREE_C_HEAP_ARRAY calls in the buffer allocation code was changed from void* to char as the size argument had already been mulitipled by the byte size of an object pointer. Reviewed-by: ysr, tonyp
-
- 04 11月, 2009 1 次提交
-
-
由 ysr 提交于
Summary: Allow iteration over the shared spaces when using CDS, repealing previous proscription. Deferred further required CDS-related cleanups of perm gen to CR 6897789. Reviewed-by: phh, jmasa
-
- 31 10月, 2009 1 次提交
-
-
由 tonyp 提交于
-
- 30 10月, 2009 1 次提交
-
-
由 johnc 提交于
Summary: Incorrect code was being generated for the store operation in the null case of the aastore bytecode template. The bad code was generated by the store_heap_oop routine which takes a Register as its second argument. Passing NULL_WORD (0) as the second argument causes the value to be converted to Register(0), which is rax. Thus the generated store was "mov (dst), $rax" instead of "mov (dst), $0x0". Changed calls to store_heap_oop that pass NULL_WORD as the second argument to a new routine store_heap_oop_null. Reviewed-by: kvn, twisti
-
- 29 10月, 2009 3 次提交
- 27 10月, 2009 2 次提交
-
-
由 twisti 提交于
Summary: The problem occurs with negative numbers, as the 32-bit input values are sign extended into the 64-bit registers. Reviewed-by: kvn
-
由 apetrusenko 提交于
Summary: The fix addresses two memory leaks in G1 code: (1) _evac_failure_scan_stack - a resource object allocated on the C heap was not freed; (2) RSHashTable were linked into deleted list which was only cleared at full GC. Reviewed-by: tonyp, iveresov
-
- 24 10月, 2009 3 次提交
- 22 10月, 2009 2 次提交
-
-
由 apetrusenko 提交于
Reviewed-by: tonyp, ysr
-
由 kvn 提交于
Summary: Implement scalar replaced objects debug info dump in SA. Reviewed-by: twisti
-
- 21 10月, 2009 2 次提交
- 20 10月, 2009 2 次提交
- 18 10月, 2009 1 次提交
-
-
由 jrose 提交于
Summary: correctly raise exceptions, support safe bitwise "raw" conversions, fix bugs revealed by VerifyMethodHandles, remove dead code, improve debugging support Reviewed-by: never, twisti
-
- 17 10月, 2009 2 次提交
- 16 10月, 2009 3 次提交
-
-
由 ysr 提交于
6889757: G1: enable card mark elision for initializing writes from compiled code (ReduceInitialCardMarks) Summary: Defer the (compiler-elided) card-mark upon a slow-path allocation until after the store and before the next subsequent safepoint; G1 now answers yes to can_elide_tlab_write_barriers(). Reviewed-by: jcoomes, kvn, never
-
由 xdono 提交于
-
由 never 提交于
Reviewed-by: kvn, twisti
-
- 15 10月, 2009 4 次提交
- 14 10月, 2009 1 次提交
-
-
由 kvn 提交于
Summary: PhiNode::Ideal() should return TOP for Phi node with no users. Reviewed-by: never, jrose
-