1. 02 10月, 2014 1 次提交
  2. 30 9月, 2014 1 次提交
    • T
      8052172: Evacuation failure handling in G1 does not evacuate all objects if... · 45b1c7cf
      tschatzl 提交于
      8052172: Evacuation failure handling in G1 does not evacuate all objects if -XX:-G1DeferredRSUpdate is set
      Summary: Remove -XX:-G1DeferredRSUpdate functionality as it is racy. During evacuation failure handling, threads where evacuation failure handling occurred may try to add remembered sets to regions which remembered sets are currently being scanned. The iterator to handle the remembered set scan does not support addition of entries during scan and so may skip valid references.
      Reviewed-by: iveresov, brutisso, mgerdin
      45b1c7cf
  3. 16 9月, 2014 1 次提交
  4. 06 10月, 2014 1 次提交
  5. 10 9月, 2014 1 次提交
  6. 29 8月, 2014 1 次提交
  7. 05 9月, 2014 1 次提交
  8. 21 8月, 2014 1 次提交
    • T
      8038423: G1: Decommit memory within heap · 72bba568
      tschatzl 提交于
      Summary: Allow G1 to decommit memory of arbitrary regions within the heap and their associated auxiliary data structures card table, BOT, hot card cache, and mark bitmaps.
      Reviewed-by: mgerdin, brutisso, jwilhelm
      72bba568
  9. 19 8月, 2014 2 次提交
  10. 26 8月, 2014 2 次提交
  11. 21 8月, 2014 1 次提交
  12. 13 6月, 2014 1 次提交
  13. 08 8月, 2014 2 次提交
  14. 31 7月, 2014 2 次提交
  15. 23 7月, 2014 2 次提交
  16. 21 7月, 2014 2 次提交
  17. 11 6月, 2014 1 次提交
  18. 20 10月, 2014 1 次提交
  19. 06 8月, 2014 1 次提交
  20. 09 7月, 2014 1 次提交
  21. 07 7月, 2014 1 次提交
  22. 26 6月, 2014 1 次提交
  23. 25 6月, 2014 1 次提交
  24. 23 5月, 2014 1 次提交
    • D
      8037816: Fix for 8036122 breaks build with Xcode5/clang · ed4b64df
      drchase 提交于
      8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas
      8043164: Format warning in traceStream.hpp
      Summary: Backport of main fix + two corrections, enables clang compilation, turns on format attributes, corrects/mutes warnings
      Reviewed-by: kvn, coleenp, iveresov, twisti
      ed4b64df
  25. 16 5月, 2014 1 次提交
  26. 29 4月, 2014 1 次提交
  27. 18 4月, 2014 1 次提交
    • P
      8040245: G1: VM hangs during shutdown · 0fff0369
      pliden 提交于
      Summary: temporarily disable the shutdown of the concurrent GC threads introduced in JDK-8037112
      Reviewed-by: brutisso, tschatzl, jmasa
      0fff0369
  28. 11 4月, 2014 1 次提交
  29. 01 4月, 2014 1 次提交
  30. 19 8月, 2014 1 次提交
  31. 14 3月, 2014 1 次提交
  32. 11 9月, 2014 1 次提交
  33. 03 4月, 2014 1 次提交
  34. 10 10月, 2014 1 次提交
    • T
      8059758: Footprint regressions with JDK-8038423 · 3dda40c0
      tschatzl 提交于
      Summary: Changes in JDK-8038423 always initialize (zero out) virtual memory used for auxiliary data structures. This causes a footprint regression for G1 in startup benchmarks. This is because they do not touch that memory at all, so the operating system does not actually commit these pages. The fix is to, if the initialization value of the data structures matches the default value of just committed memory (=0), do not do anything.
      Reviewed-by: jwilhelm, brutisso
      3dda40c0