1. 25 2月, 2014 1 次提交
  2. 30 10月, 2014 1 次提交
  3. 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
  4. 26 10月, 2014 1 次提交
  5. 24 10月, 2014 1 次提交
    • I
      8047383: SIGBUS in C2 compiled method... · 814e2a7a
      iveresov 提交于
      8047383: SIGBUS in C2 compiled method weblogic.wsee.jaxws.framework.jaxrpc.EnvironmentFactory$SimulatedWsdlDefinitions.<init>
      Summary: Do not rematerialize constant table loads in PhaseAggressiveCoalesce::insert_copies()
      Reviewed-by: kvn
      814e2a7a
  6. 06 8月, 2014 1 次提交
  7. 14 8月, 2014 1 次提交
  8. 25 10月, 2014 1 次提交
  9. 20 10月, 2014 1 次提交
  10. 15 10月, 2014 1 次提交
  11. 03 10月, 2014 1 次提交
  12. 02 10月, 2014 3 次提交
  13. 30 9月, 2014 2 次提交
  14. 20 10月, 2014 1 次提交
  15. 27 9月, 2014 2 次提交
  16. 29 9月, 2014 1 次提交
  17. 27 9月, 2014 1 次提交
  18. 25 9月, 2014 1 次提交
  19. 19 9月, 2014 1 次提交
  20. 16 9月, 2014 1 次提交
  21. 06 10月, 2014 1 次提交
  22. 10 9月, 2014 1 次提交
  23. 08 9月, 2014 1 次提交
  24. 06 9月, 2014 1 次提交
  25. 03 9月, 2014 1 次提交
  26. 29 8月, 2014 2 次提交
  27. 24 9月, 2014 1 次提交
  28. 20 9月, 2014 1 次提交
  29. 05 9月, 2014 2 次提交
  30. 27 8月, 2014 1 次提交
  31. 23 8月, 2014 1 次提交
  32. 20 8月, 2014 3 次提交
    • T
      8055635: Missing include in g1RegionToSpaceMapper.hpp results in unresolved... · f2a3644f
      tschatzl 提交于
      8055635: Missing include in g1RegionToSpaceMapper.hpp results in unresolved symbol of fastdebug build without precompiled headers
      Reviewed-by: mgerdin, ehelin
      f2a3644f
    • Z
      8054546: NMT2 leaks memory · e9741a47
      zgu 提交于
      Summary: Fixed memory leak in NMT by baselining memory in c heap instead of an arena.
      Reviewed-by: coleenp, minqi
      e9741a47
    • T
      8055525: Bigapp weblogic+medrec fails to startup after JDK-8038423 · e38270b1
      tschatzl 提交于
      Summary: If large pages are enabled and configured in Linux, the VM always pre-commits the entire space. The VM fails verification of the commit of the initial heap because some internal data structure marked all memory pages of the heap as committed during initialization. This makes the code think that we attempted a double-commit during first allocation of the heap. Remove the initial marking of memory pages of the heap to committed.
      Reviewed-by: mgerdin
      e38270b1