1. 02 9月, 2012 1 次提交
  2. 29 8月, 2012 1 次提交
    • J
      7041879: G1: introduce stress testing parameter to cause frequent evacuation failures · 3c3c2c12
      johnc 提交于
      Summary: Add the flags G1EvacuationFailureALot flag (and supporting flags) to force trigger evacuation failures. The support flags control how often to trigger an evacuation failure and during which types of evacuation pause. This functionality is analogous to that of PromotionFailureALot for the other collectors.
      Reviewed-by: brutisso
      3c3c2c12
  3. 23 8月, 2012 2 次提交
  4. 22 8月, 2012 2 次提交
    • J
      7185699: G1: Prediction model discrepancies · 4e8955cf
      johnc 提交于
      Summary: Correct the result value of G1CollectedHeap::pending_card_num(). Change the code that calculates the GC efficiency of a non-young heap region to use historical data from mixed GCs and the actual number of live bytes when predicting how long it would take to collect the region. Changes were also reviewed by Thomas Schatzl.
      Reviewed-by: azeemj, brutisso
      4e8955cf
    • J
      7192128: G1: Extend fix for 6948537 to G1's BOT · ddfab1b9
      johnc 提交于
      Summary: G1 does not appear to be immune to the issue described in CR 6948537 and increasing the size of old-generation PLABs appears to increase the liklihood of seeing the issue. Extend the fix for 6948537 to G1's BlockOffsetTable.
      Reviewed-by: brutisso, jmasa
      ddfab1b9
  5. 07 8月, 2012 1 次提交
  6. 20 7月, 2012 1 次提交
  7. 18 7月, 2012 3 次提交
  8. 12 7月, 2012 1 次提交
  9. 29 6月, 2012 1 次提交
    • Z
      6995781: Native Memory Tracking (Phase 1) · bdfb3cf5
      zgu 提交于
      7151532: DCmd for hotspot native memory tracking
      Summary: Implementation of native memory tracking phase 1, which tracks VM native memory usage, and related DCmd
      Reviewed-by: acorn, coleenp, fparain
      bdfb3cf5
  10. 26 6月, 2012 1 次提交
  11. 04 6月, 2012 1 次提交
  12. 06 6月, 2012 1 次提交
  13. 01 6月, 2012 1 次提交
  14. 26 5月, 2012 1 次提交
  15. 30 5月, 2012 1 次提交
    • J
      7143858: G1: Back to back young GCs with the second GC having a minimally sized eden · 893ceddc
      johnc 提交于
      Summary: Before the last thread to leave a JNI critical region was able to schedule a GCLocker Initiated GC, another thread was attempting an allocation and saw that the GCLocker region was no longer active and successfully scheduled a GC. Stall allocating threads until the GCLocker Initiated GC is performed and then retry the allocation.
      Reviewed-by: brutisso, huntch
      893ceddc
  16. 18 5月, 2012 1 次提交
  17. 15 5月, 2012 1 次提交
  18. 16 5月, 2012 1 次提交
  19. 15 5月, 2012 1 次提交
  20. 14 5月, 2012 1 次提交
    • B
      7161545: G1: Minor cleanups to the G1 logging · 3c2bae90
      brutisso 提交于
      Summary: Rename "to-space-overflow" to "to-space-exhausted", Introduce one decimal point in the size format, Add Sum to the aggregate and re-order the entries, Add number of GC workers to the log output
      Reviewed-by: johnc, jwilhelm
      3c2bae90
  21. 25 4月, 2012 1 次提交
  22. 26 4月, 2012 2 次提交
  23. 19 4月, 2012 1 次提交
    • T
      7145441: G1: collection set chooser-related cleanup · 0c52c8e5
      tonyp 提交于
      Summary: Cleanup of the CSet chooser class: standardize on uints for region num and indexes (instead of int, jint, etc.), make the method / field naming style more consistent, remove a lot of dead code.
      Reviewed-by: johnc, brutisso
      0c52c8e5
  24. 18 4月, 2012 1 次提交
  25. 11 4月, 2012 1 次提交
  26. 16 4月, 2012 1 次提交
  27. 13 4月, 2012 1 次提交
    • B
      7160728: Introduce an extra logging level for G1 logging · dd643c7f
      brutisso 提交于
      Summary: Added log levels "fine", "finer" and "finest". Let PrintGC map to "fine" and PrintGCDetails map to "finer". Separated out the per worker information in the G1 logging to the "finest" level.
      Reviewed-by: stefank, jwilhelm, tonyp, johnc
      dd643c7f
  28. 06 4月, 2012 1 次提交
  29. 30 3月, 2012 1 次提交
    • J
      7131629: Generalize the CMS free list code · 98f667c6
      jmasa 提交于
      Summary: Make the FreeChunk, FreeList, TreeList, and BinaryTreeDictionary classes usable outside CMS.
      Reviewed-by: brutisso, johnc, jwilhelm
      Contributed-by: coleen.phillimore@oracle.com
      98f667c6
  30. 27 3月, 2012 1 次提交
  31. 23 3月, 2012 2 次提交
  32. 16 3月, 2012 1 次提交
  33. 14 3月, 2012 2 次提交
    • B
      7152954: G1: Native memory leak during full GCs · ccc66749
      brutisso 提交于
      Summary: Add destructor to TruncatedSeq and call delete when necessary
      Reviewed-by: johnc, tonyp
      ccc66749
    • J
      7143511: G1: Another instance of high GC Worker Other time (50ms) · 26afc937
      johnc 提交于
      Summary: Tiered compilation has increased the number of nmethods in the code cache. This has, in turn, significantly increased the number of marked nmethods processed during the StrongRootsScope destructor. Create a specialized version of CodeBlobToOopClosure for G1 which places only those nmethods that contain pointers into the collection set on to the marked nmethods list.
      Reviewed-by: iveresov, tonyp
      26afc937