1. 14 6月, 2011 1 次提交
    • T
      7046558: G1: concurrent marking optimizations · 2db1d718
      tonyp 提交于
      Summary: Some optimizations to improve the concurrent marking phase: specialize the main oop closure, make sure a few methods in the fast path are properly inlined, a few more bits and pieces, and some cosmetic fixes.
      Reviewed-by: stefank, johnc
      2db1d718
  2. 13 6月, 2011 1 次提交
  3. 14 6月, 2011 1 次提交
    • Y
      7051430: CMS: ongoing CMS cycle should terminate abruptly to allow prompt JVM termination at exit · a4a62971
      ysr 提交于
      Summary: It turns out that there is no need to explicitly stop CMS since the JVM is taken down at a terminal safepoint during which CMS threads are (terminally) inactive. This  will need to be revised if and when we evolve in the future to a point where we allow JVM reincarnation in the same process, but those changes will be much more sweeping than just terminating CMS threads. The unused ::stop() methods will be removed in a separate CR. Also include in this CR is the fix for a small typo in the spelling of UseGCLogFileRotation in a message in arguments.cpp, brought to our attention by Rainer Jung and reviewed by minqi.
      Reviewed-by: johnc, jwilhelm
      a4a62971
  4. 11 6月, 2011 3 次提交
    • M
      Merge · d2f0b980
      minqi 提交于
      d2f0b980
    • M
      6941923: RFE: Handling large log files produced by long running Java Applications · e5224dcd
      minqi 提交于
      Summary: supply optinal flags to realize gc log rotation
      Reviewed-by: ysr, jwilhelm
      e5224dcd
    • T
      7045330: G1: Simplify/fix the HeapRegionSeq class · f122f55f
      tonyp 提交于
      7042285: G1: native memory leak during humongous object allocation
      6804436: G1: heap region indices should be size_t
      Summary: A series of fixes and improvements to the HeapRegionSeq class: a) replace the _regions growable array with a standard C array, b) avoid de-allocating / re-allocating HeapRegion instances when the heap shrinks / grows (fix for 7042285), c) introduce fast method to map address to HeapRegion via a "biased" array pointer, d) embed the _hrs object in G1CollectedHeap, instead of pointing to it via an indirection, e) assume that all the regions added to the HeapRegionSeq instance are contiguous, f) replace int's with size_t's for indexes (and expand that to HeapRegion as part of 6804436), g) remove unnecessary / unused methods, h) rename a couple of fields (_alloc_search_start and _seq_bottom), i) fix iterate_from() not to always start from index 0 irrespective of the region passed to it, j) add a verification method to check the HeapRegionSeq assumptions, k) always call the wrappers for _hrs.iterate(), _hrs_length(), and _hrs.at() from G1CollectedHeap, not those methods directly, and l) unify the code that expands the sequence (by either re-using or creating a new HeapRegion) and make it robust wrt to a HeapRegion allocation failing.
      Reviewed-by: stefank, johnc, brutisso
      f122f55f
  5. 09 6月, 2011 2 次提交
  6. 08 6月, 2011 2 次提交
    • Y
      Merge · 62955820
      ysr 提交于
      62955820
    • J
      Merge · c4091c5a
      jcoomes 提交于
      c4091c5a
  7. 03 6月, 2011 1 次提交
    • Y
      7048782: CMS: assert(last_chunk_index_to_check<= last_chunk_index) failed:... · 30cee037
      ysr 提交于
      7048782: CMS: assert(last_chunk_index_to_check<= last_chunk_index) failed: parCardTableModRefBS.cpp:359
      Summary: The LNC array is sized before the start of a scavenge, while the heap may expand during a scavenge. With CMS, the last block of an arbitrary suffice of the LNC array may expand due to coalition with the expansion delta. We now take care not to attempt access past the end of the LNC array. LNC array code will be cleaned up and suitably encapsulated as part of the forthcoming performance RFE 7043675.
      Reviewed-by: brutisso
      30cee037
  8. 02 6月, 2011 2 次提交
  9. 01 6月, 2011 1 次提交
  10. 28 5月, 2011 2 次提交
  11. 27 5月, 2011 3 次提交
  12. 26 5月, 2011 2 次提交
  13. 25 5月, 2011 3 次提交
  14. 24 5月, 2011 1 次提交
  15. 22 5月, 2011 2 次提交
  16. 21 5月, 2011 2 次提交
    • J
      Merge · 632dd1b2
      jcoomes 提交于
      632dd1b2
    • K
      7046096: SEGV IN C2 WITH 6U25 · 0527eebd
      kvn 提交于
      Summary: Missing fail flag set in strings concatenation code.
      Reviewed-by: never
      0527eebd
  17. 20 5月, 2011 1 次提交
  18. 19 5月, 2011 1 次提交
    • N
      Merge · c40bd33c
      never 提交于
      c40bd33c
  19. 18 5月, 2011 6 次提交
  20. 17 5月, 2011 3 次提交
    • B
      7045515: ARM assembly code for JSR 292 ricochet frames · 66a7efff
      bdelsart 提交于
      Summary: ARM ricochet port and minor fixes in shared debug code
      Reviewed-by: jrose, vladidan
      66a7efff
    • D
      Merge · 1b1d621d
      dholmes 提交于
      1b1d621d
    • J
      7041440: G1: assert(obj->is_oop_or_null(true )) failed: Error # · cb26465b
      johnc 提交于
      Summary: During an evacuation pause clear the region fields of any concurrent marking task whose local finger points into the collection set as the values in the region fields will become stale. Clearing these fields causes the concurrent mark task to claim a new region when marking restarts after the pause.
      Reviewed-by: tonyp, iveresov
      cb26465b