1. 03 4月, 2012 1 次提交
  2. 14 3月, 2012 2 次提交
  3. 17 2月, 2012 1 次提交
  4. 16 2月, 2012 1 次提交
  5. 15 2月, 2012 1 次提交
  6. 02 2月, 2012 1 次提交
  7. 01 2月, 2012 1 次提交
  8. 30 1月, 2012 1 次提交
  9. 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
  10. 20 12月, 2011 1 次提交
    • J
      7117303: VM uses non-monotonic time source and complains that it is non-monotonic · 412f955f
      johnc 提交于
      Summary: Replaces calls to os::javaTimeMillis(), which does not (and cannot) guarantee monotonicity, in GC code to an equivalent expression that uses os::javaTimeNanos(). os::javaTimeNanos is guaranteed monotonically non-decreasing if the underlying platform provides a monotonic time source. Changes in OS files are to make use of the newly defined constants in globalDefinitions.hpp.
      Reviewed-by: dholmes, ysr
      412f955f
  11. 15 12月, 2011 1 次提交
  12. 14 12月, 2011 1 次提交
    • S
      7121373: Clean up CollectedHeap::is_in · dce4ac5f
      stefank 提交于
      Summary: Fixed G1CollectedHeap::is_in, added tests, cleaned up comments and made Space::is_in pure virtual.
      Reviewed-by: brutisso, tonyp, jcoomes
      dce4ac5f
  13. 07 12月, 2011 1 次提交
  14. 23 11月, 2011 1 次提交
  15. 08 11月, 2011 1 次提交
  16. 18 10月, 2011 1 次提交
  17. 14 10月, 2011 1 次提交
    • T
      7088680: G1: Cleanup in the G1CollectorPolicy class · a299c2e7
      tonyp 提交于
      Summary: Removed unused fields and methods, removed the G1CollectoryPolicy_BestRegionsFirst class and folded its functionality into the G1CollectorPolicy class.
      Reviewed-by: ysr, brutisso, jcoomes
      a299c2e7
  18. 13 10月, 2011 1 次提交
    • J
      7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76 · 06be9d67
      johnc 提交于
      Summary: There is a race between one thread successfully forwarding and copying the klass mirror for the SoftReference class (including the static master clock) and another thread attempting to use the master clock while attempting to discover a soft reference object. Maintain a shadow copy of the soft reference master clock and use the shadow during reference discovery and reference processing.
      Reviewed-by: tonyp, brutisso, ysr
      06be9d67
  19. 27 9月, 2011 1 次提交
  20. 26 9月, 2011 1 次提交
  21. 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
  22. 12 9月, 2011 1 次提交
  23. 08 9月, 2011 1 次提交
    • Y
      4965777: GC changes to support use of discovered field for pending references · d5318109
      ysr 提交于
      Summary: If and when the reference handler thread is able to use the discovered field to link reference objects in its pending list, so will GC. In that case, GC will scan through this field once a reference object has been placed on the pending list, but not scan that field before that stage, as the field is used by the concurrent GC thread to link discovered objects. When ReferenceHandleR thread does not use the discovered field for the purpose of linking the elements in the pending list, as would be the case in older JDKs, the JVM will fall back to the old behaviour of using the next field for that purpose.
      Reviewed-by: jcoomes, mchung, stefank
      d5318109
  24. 01 9月, 2011 1 次提交
  25. 29 8月, 2011 1 次提交
  26. 17 8月, 2011 1 次提交
  27. 16 8月, 2011 1 次提交
  28. 10 8月, 2011 1 次提交
  29. 21 11月, 2011 1 次提交
  30. 07 7月, 2011 1 次提交
  31. 17 6月, 2011 1 次提交
  32. 15 6月, 2011 1 次提交
    • J
      7004681: G1: Extend marking verification to Full GCs · 0e040a45
      johnc 提交于
      Summary: Perform a heap verification after the first phase of G1's full GC using objects' mark words to determine liveness. The third parameter of the heap verification routines, which was used in G1 to determine which marking bitmap to use in liveness calculations, has been changed from a boolean to an enum with values defined for using the mark word, and the 'prev' and 'next' bitmaps.
      Reviewed-by: tonyp, ysr
      0e040a45
  33. 24 5月, 2011 1 次提交
  34. 13 5月, 2011 1 次提交
  35. 12 5月, 2011 1 次提交
  36. 10 5月, 2011 1 次提交
    • Y
      6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field... · 01b28013
      ysr 提交于
      6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
      Summary: Fixed process_chunk_boundaries(), used for parallel card scanning when using ParNew/CMS, so as to prevent double-scanning, or worse, non-scanning of imprecisely marked objects exceeding parallel chunk size. Made some sizing parameters for parallel card scanning diagnostic, disabled ParallelGCRetainPLAB, and elaborated and clarified some comments.
      Reviewed-by: stefank, johnc
      01b28013
  37. 04 5月, 2011 2 次提交
  38. 29 4月, 2011 1 次提交