1. 20 9月, 2013 1 次提交
    • S
      8024974: Incorrect use of GC_locker::is_active() · 427aeb32
      stefank 提交于
      Summary: SymbolTable and StringTable can make calls to GC_locker::is_active() outside a safepoint. This isn't safe because the GC_locker active state (lock count) is only updated at a safepoint and only remains valid as long as _needs_gc is true. However, outside a safepoint_needs_gc can change to false at any time, which makes it impossible to do a correct call to is_active() in that context. In this case these calls can just be removed since the input argument to basic_add() should never be on the heap and so there's no need to check the GC_locker state. This change also adjusts the assert() in is_active() to makes sure all calls to this function are always done under a safepoint.
      Reviewed-by: brutisso, dcubed
      Contributed-by: per.liden@oracle.com
      427aeb32
  2. 18 9月, 2013 1 次提交
  3. 16 9月, 2013 1 次提交
  4. 14 9月, 2013 4 次提交
  5. 12 9月, 2013 2 次提交
  6. 11 9月, 2013 2 次提交
  7. 01 9月, 2013 1 次提交
  8. 30 8月, 2013 1 次提交
  9. 26 8月, 2013 1 次提交
  10. 16 8月, 2013 2 次提交
    • S
      8007074: SIGSEGV at ParMarkBitMap::verify_clear() · e52f7476
      stefank 提交于
      Summary: Replace the broken large pages implementation on Linux. New flag: -XX:+UseTransparentHugePages - Linux specific flag to turn on transparent huge page hinting with madvise(..., MAP_HUGETLB). Changed behavior: -XX:+UseLargePages - tries to use -XX:+UseTransparentHugePages before trying other large pages implementations (on Linux). Changed behavior: -XX:+UseHugeTLBFS - Use upfront allocation of Large Pages instead of using the broken implementation to dynamically committing large pages. Changed behavior: -XX:LargePageSizeInBytes - Turned off the ability to use this flag on Linux and provides warning to user if set to a value different than the OS chosen large page size. Changed behavior: Setting no large page size - Now defaults to use -XX:UseTransparentHugePages if the OS supports it. Previously, -XX:+UseHugeTLBFS was chosen if the OS was configured to use large pages.
      Reviewed-by: tschatzl, dcubed, brutisso
      e52f7476
    • H
      8003424: Enable Class Data Sharing for CompressedOops · 663f2686
      hseigel 提交于
      8016729: ObjectAlignmentInBytes=16 now forces the use of heap based compressed oops
      8005933: The -Xshare:auto option is ignored for -server
      Summary: Move klass metaspace above the heap and support CDS with compressed klass ptrs.
      Reviewed-by: coleenp, kvn, mgerdin, tschatzl, stefank
      663f2686
  11. 15 8月, 2013 2 次提交
  12. 14 8月, 2013 1 次提交
  13. 13 8月, 2013 1 次提交
  14. 12 8月, 2013 1 次提交
  15. 07 8月, 2013 1 次提交
  16. 26 7月, 2013 2 次提交
  17. 24 7月, 2013 1 次提交
  18. 09 7月, 2013 1 次提交
  19. 04 7月, 2013 1 次提交
  20. 02 7月, 2013 1 次提交
  21. 27 6月, 2013 1 次提交
  22. 26 6月, 2013 2 次提交
  23. 25 6月, 2013 1 次提交
  24. 19 6月, 2013 2 次提交
  25. 10 7月, 2013 1 次提交
  26. 12 6月, 2013 1 次提交
  27. 28 6月, 2013 1 次提交
  28. 15 6月, 2013 1 次提交
  29. 14 6月, 2013 2 次提交