1. 27 5月, 2014 1 次提交
    • M
      8038422: CDS test failed: assert((size % os::vm_allocation_granularity()) ==... · ed017d51
      minqi 提交于
      8038422: CDS test failed: assert((size % os::vm_allocation_granularity()) == 0) failed when limiting SharedMiscDataSize
      Summary: In debug version, the assert is against os::vm_allocation_granularity(), but in initialization, we use os::vm_page_size() to align the allocation size. In windows, _vm_page_size and _vm_allocation_granularity may not be same. In debug version, the assert is against os::vm_allocation_granularity(), but in initialization, we use os::vm_page_size() to align the allocation size. In windows, _vm_page_size and _vm_allocation_granularity may not be same.
      Reviewed-by: dholmes, iklam, jiangli, coleenp
      Contributed-by: yumin.qi@oracle.com
      ed017d51
  2. 29 8月, 2014 1 次提交
  3. 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
  4. 14 8月, 2014 1 次提交
  5. 13 8月, 2014 1 次提交
  6. 28 8月, 2014 1 次提交
  7. 26 8月, 2014 1 次提交
  8. 25 8月, 2014 1 次提交
  9. 22 8月, 2014 1 次提交
  10. 21 8月, 2014 1 次提交
  11. 27 8月, 2014 1 次提交
  12. 05 8月, 2014 1 次提交
  13. 13 6月, 2014 1 次提交
  14. 21 7月, 2014 2 次提交
  15. 11 6月, 2014 1 次提交
  16. 06 8月, 2014 1 次提交
  17. 07 7月, 2014 1 次提交
  18. 26 6月, 2014 1 次提交
  19. 24 6月, 2014 1 次提交
  20. 28 5月, 2014 1 次提交
  21. 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
  22. 16 5月, 2014 1 次提交
  23. 12 3月, 2014 1 次提交
  24. 13 3月, 2014 1 次提交
  25. 12 3月, 2014 1 次提交
  26. 06 3月, 2014 1 次提交
  27. 11 9月, 2014 1 次提交
  28. 09 9月, 2014 1 次提交
  29. 01 10月, 2014 1 次提交
  30. 21 2月, 2014 2 次提交
  31. 23 4月, 2014 1 次提交
  32. 14 2月, 2014 2 次提交
  33. 13 2月, 2014 1 次提交
  34. 31 3月, 2014 1 次提交
  35. 11 2月, 2014 1 次提交
  36. 24 3月, 2014 2 次提交
    • T
      8036860: Pad and cache-align the BiasedMappedArray · d18497f1
      tschatzl 提交于
      Summary: Pad and cache-align BiasedMappedArray instances by default to avoid performance variability problems due to false sharing, as instances of this data structures are typically used for performance sensitive code.
      Reviewed-by: brutisso, stefank
      d18497f1
    • T
      8035815: Cache-align and pad the from card cache · b4c57fe2
      tschatzl 提交于
      Summary: The from card cache is a very frequently accessed data structure. It is essentially a 2d array of per-region values, one row of values for every GC thread. Pad and align the data structure to avoid false sharing.
      Reviewed-by: stefank
      b4c57fe2