1. 12 3月, 2013 1 次提交
  2. 11 3月, 2013 1 次提交
  3. 07 2月, 2013 1 次提交
  4. 17 1月, 2013 1 次提交
  5. 05 1月, 2013 1 次提交
  6. 16 10月, 2012 1 次提交
  7. 09 10月, 2012 1 次提交
  8. 25 9月, 2012 1 次提交
  9. 20 9月, 2012 1 次提交
    • J
      7193946: Move warnings associated with UseMemSetInBOT flag · 4bf72cf2
      johnc 提交于
      Summary: The warnings associated with the UseMemSetInBOT flag are duplicated in CMS and G1. The separate warnings have been removed and single instance of the warning has been placed in a common location.
      Reviewed-by: brutisso, ysr
      4bf72cf2
  10. 19 9月, 2012 1 次提交
  11. 17 9月, 2012 1 次提交
  12. 02 9月, 2012 1 次提交
  13. 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
  14. 15 5月, 2012 1 次提交
  15. 26 4月, 2012 1 次提交
  16. 16 4月, 2012 1 次提交
  17. 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
  18. 27 1月, 2012 1 次提交
  19. 19 1月, 2012 1 次提交
    • J
      7129514: time warp warnings after 7117303 · d7cbafe7
      johnc 提交于
      Summary: Replace calls to os::javaTimeMillis() that are used to update the milliseconds since the last GC to an equivalent that uses a monotonically non-decreasing time source.
      Reviewed-by: ysr, jmasa
      d7cbafe7
  20. 15 12月, 2011 1 次提交
  21. 28 11月, 2011 1 次提交
  22. 23 11月, 2011 1 次提交
  23. 23 9月, 2011 1 次提交
    • J
      6484982: G1: process references during evacuation pauses · 9c3adbcc
      johnc 提交于
      Summary: G1 now uses two reference processors - one is used by concurrent marking and the other is used by STW GCs (both full and incremental evacuation pauses). In an evacuation pause, the reference processor is embedded into the closures used to scan objects. Doing so causes causes reference objects to be 'discovered' by the reference processor. At the end of the evacuation pause, these discovered reference objects are processed - preserving (and copying) referent objects (and their reachable graphs) as appropriate.
      Reviewed-by: ysr, jwilhelm, brutisso, stefank, tonyp
      9c3adbcc
  24. 10 8月, 2011 1 次提交
  25. 02 8月, 2011 1 次提交
  26. 07 7月, 2011 1 次提交
  27. 24 5月, 2011 1 次提交
  28. 13 5月, 2011 1 次提交
  29. 27 4月, 2011 1 次提交
    • Y
      7039089: G1: changeset for 7037276 broke heap verification, and related cleanups · cdee9464
      ysr 提交于
      Summary: In G1 heap verification, we no longer scan perm to G1-collected heap refs as part of process_strong_roots() but rather in a separate explicit oop iteration over the perm gen. This preserves the original perm card-marks. Added a new assertion in younger_refs_iterate() to catch a simple subcase where the user may have forgotten a prior save_marks() call, as happened in the case of G1's attempt to iterate perm to G1 refs when verifying the heap before exit. The assert was deliberately weakened for ParNew+CMS and will be fixed for that combination in a future CR. Also made some (non-G1) cleanups related to code and comments obsoleted by the migration of Symbols to the native heap.
      Reviewed-by: iveresov, jmasa, tonyp
      cdee9464
  30. 23 3月, 2011 1 次提交
  31. 18 3月, 2011 1 次提交
  32. 15 3月, 2011 1 次提交
  33. 08 2月, 2011 1 次提交
    • Y
      6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?") · 251d4f53
      ysr 提交于
      Summary: Fix block_size_if_printezis_bits() so it does not expect the bits, only uses them when available. Fix block_size_no_stall() so it does not stall when the bits are missing such cases, letting the caller deal with zero size returns. Constant pool cache oops do not need to be unparsable or conc_unsafe after their klass pointer is installed. Some cosmetic clean-ups and some assertion checking for conc-usafety which, in the presence of class file redefinition, has no a-priori time boundedness, so all GCs must be able to safely deal with putatively conc-unsafe objects in a stop-world pause.
      Reviewed-by: jmasa, johnc
      251d4f53
  34. 28 1月, 2011 1 次提交
  35. 20 1月, 2011 1 次提交
  36. 14 1月, 2011 1 次提交
  37. 11 1月, 2011 1 次提交
  38. 07 1月, 2011 1 次提交
  39. 08 12月, 2010 1 次提交
    • Y
      7001033: assert(gch->gc_cause() == GCCause::_scavenge_alot ||... · 8be7836d
      ysr 提交于
      7001033: assert(gch->gc_cause() == GCCause::_scavenge_alot || !gch->incremental_collection_failed())
      7002546: regression on SpecJbb2005 on 7b118 comparing to 7b117 on small heaps
      Summary: Relaxed assertion checking related to incremental_collection_failed flag to allow for ExplicitGCInvokesConcurrent behaviour where we do not want a failing scavenge to bail to a stop-world collection. Parameterized incremental_collection_will_fail() so we can selectively use, or not use, as appropriate, the statistical prediction at specific use sites. This essentially reverts the scavenge bail-out logic to what it was prior to some recent changes that had inadvertently started using the statistical prediction which can be noisy in the presence of bursty loads. Added some associated verbose non-product debugging messages.
      Reviewed-by: johnc, tonyp
      8be7836d
  40. 24 11月, 2010 1 次提交