1. 11 11月, 2013 1 次提交
  2. 10 11月, 2013 1 次提交
  3. 02 11月, 2013 1 次提交
  4. 26 10月, 2013 1 次提交
    • C
      8024927: Nashorn performance regression with CompressedOops · b6c254c4
      coleenp 提交于
      Summary: Allocate compressed class space at end of Java heap.  For small heap sizes, without CDS, save some space so compressed classes can have the same favorable compression as oops
      Reviewed-by: stefank, hseigel, goetz
      b6c254c4
  5. 25 10月, 2013 1 次提交
    • H
      8026822: metaspace/flags/maxMetaspaceSize throws OOM of unexpected... · 7333c169
      hseigel 提交于
      8026822: metaspace/flags/maxMetaspaceSize throws OOM of unexpected type.java.lang.OutOfMemoryError: Compressed class space
      Summary: Incorporate chunk size when seeing if OutOfMemoryError was caused by Metaspace or Compressed class space.
      Reviewed-by: stefank, coleenp
      7333c169
  6. 22 10月, 2013 3 次提交
  7. 18 10月, 2013 1 次提交
  8. 17 10月, 2013 2 次提交
  9. 15 10月, 2013 3 次提交
  10. 13 10月, 2013 1 次提交
  11. 08 10月, 2013 1 次提交
  12. 07 10月, 2013 2 次提交
  13. 05 10月, 2013 1 次提交
  14. 04 10月, 2013 1 次提交
  15. 03 10月, 2013 1 次提交
  16. 01 10月, 2013 1 次提交
  17. 26 9月, 2013 1 次提交
    • H
      7195622: CheckUnhandledOops has limited usefulness now · 087226b2
      hseigel 提交于
      Summary: Enable CHECK_UNHANDLED_OOPS in fastdebug builds across all supported platforms.
      Reviewed-by: coleenp, hseigel, dholmes, stefank, twisti, ihse, rdurbin
      Contributed-by: lois.foltan@oracle.com
      087226b2
  18. 25 9月, 2013 1 次提交
  19. 24 9月, 2013 1 次提交
  20. 27 9月, 2013 1 次提交
  21. 21 9月, 2013 1 次提交
  22. 20 9月, 2013 3 次提交
    • C
      8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously · bcfd8622
      coleenp 提交于
      Summary: Need to refetch each method from InstanceKlass after all safepoints.  Removed leaky PreviousVersionInfo code.
      Reviewed-by: dcubed, sspitsyn
      bcfd8622
    • S
      8025059: Metspace::should_expand mixes bytes and words in check against MaxMetaspaceSize · 17f44793
      stefank 提交于
      Reviewed-by: coleenp, brutisso, mgerdin, jmasa
      17f44793
    • 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
  23. 18 9月, 2013 1 次提交
  24. 16 9月, 2013 1 次提交
  25. 14 9月, 2013 5 次提交
  26. 12 9月, 2013 2 次提交
  27. 11 9月, 2013 1 次提交
    • T
      8010722: assert: failed: heap size is too big for compressed oops · 95a96a89
      tschatzl 提交于
      Summary: Use conservative assumptions of required alignment for the various garbage collector components into account when determining the maximum heap size that supports compressed oops. Using this conservative value avoids several circular dependencies in the calculation.
      Reviewed-by: stefank, dholmes
      95a96a89