1. 21 3月, 2009 1 次提交
  2. 17 3月, 2009 2 次提交
  3. 16 3月, 2009 3 次提交
  4. 14 3月, 2009 1 次提交
    • Y
      6808322: ParNew, CMS, G1: ParGCAllocBuffer overflow · e14b0cd3
      ysr 提交于
      Summary: Correct the overflow check in ParGCAllocBuffer::allocate(); simplify ParGCAllocBuffer::undo_allocation().
      Reviewed-by: apetrusenko, jcoomes, jmasa, minqi, phh, tonyp
      e14b0cd3
  5. 13 3月, 2009 1 次提交
  6. 10 3月, 2009 2 次提交
  7. 08 3月, 2009 3 次提交
  8. 07 3月, 2009 1 次提交
  9. 03 3月, 2009 1 次提交
    • Y
      6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC · 1e135fda
      ysr 提交于
      Summary: Call newly created CollectedHeap::dump_{pre,post}_full_gc before and after every stop-world full collection cycle on GenCollectedHeap and ParallelScavengeHeap. (Support for G1CollectedHeap forthcoming under CR 6810861.) Small modifications to existing heap dumping and class histogram implementation, especially to allow multiple on-the-fly histos/dumps by the VM thread during a single safepoint.
      Reviewed-by: jmasa, alanb, mchung
      1e135fda
  10. 28 2月, 2009 1 次提交
    • T
      6810672: Comment typos · 460de015
      twisti 提交于
      Summary: I have collected some typos I have found while looking at the code.
      Reviewed-by: kvn, never
      460de015
  11. 25 2月, 2009 1 次提交
  12. 10 2月, 2009 1 次提交
  13. 09 2月, 2009 2 次提交
  14. 06 2月, 2009 1 次提交
  15. 28 1月, 2009 1 次提交
  16. 27 1月, 2009 1 次提交
    • Y
      6786503: Overflow list performance can be improved · 7a40ef32
      ysr 提交于
      Summary: Avoid overflow list walk in CMS & ParNew when it is unnecessary. Fix a couple of correctness issues, including a C-heap leak, in ParNew at the intersection of promotion failure, work queue overflow and object array chunking. Add stress testing option and related assertion checking.
      Reviewed-by: jmasa
      7a40ef32
  17. 17 1月, 2009 1 次提交
  18. 15 1月, 2009 1 次提交
  19. 12 1月, 2009 1 次提交
  20. 06 1月, 2009 1 次提交
  21. 19 12月, 2008 2 次提交
  22. 16 12月, 2008 2 次提交
  23. 12 12月, 2008 3 次提交
  24. 04 12月, 2008 1 次提交
  25. 02 12月, 2008 1 次提交
  26. 25 11月, 2008 1 次提交
  27. 21 11月, 2008 2 次提交
    • Y
      6684579: SoftReference processing can be made more efficient · bf0e7f79
      ysr 提交于
      Summary: For current soft-ref clearing policies, we can decide at marking time if a soft-reference will definitely not be cleared, postponing the decision of whether it will definitely be cleared to the final reference processing phase. This can be especially beneficial in the case of concurrent collectors where the marking is usually concurrent but reference processing is usually not.
      Reviewed-by: jmasa
      bf0e7f79
    • Y
      6722113: CMS: Incorrect overflow handling during precleaning of Reference lists · fb7c8a34
      ysr 提交于
      Summary: When we encounter marking stack overflow during precleaning of Reference lists, we were using the overflow list mechanism, which can cause problems on account of mutating the mark word of the header because of conflicts with mutator accesses and updates of that field. Instead we should use the usual mechanism for overflow handling in concurrent phases, namely dirtying of the card on which the overflowed object lies. Since precleaning effectively does a form of discovered list processing, albeit with discovery enabled, we needed to adjust some code to be correct in the face of interleaved processing and discovery.
      Reviewed-by: apetrusenko, jcoomes
      fb7c8a34
  28. 19 11月, 2008 1 次提交