1. 23 7月, 2020 1 次提交
    • Y
      [Coroutine] Bug fixes for JKU coroutine · 7796cbc3
      yunyao.zxl 提交于
      Summary: Bug fixes for JKU coroutine
      The JKU patch has several flaws:
      1. When using JDI to debug coroutine, it may crash because the _switchTo intrinsic entry will change to the interpreter one, which is a SHOULD_NOT_REACH_HERE().
      2. Change miscellaneous thread-local data structures to coroutine-local level during _switchTo phase.
      3. Disable making zombies of _switchTo alike intrinsic things.
      4. Fix multiple mem leak problems for coroutine data structures.
      5. Create an empty JNIHandleBlock for the first Java call.
      6. The stack layout of Coroutine doesn't align with 16 bytes on x86_64 which will cause some float point instructions to throw an sig fault.
      7. etc.
      
      Test Plan: Coroutine tests
      
      Reviewed-by: yuleil, shiyuexw, sanhong
      
      Issue: https://github.com/alibaba/dragonwell8/issues/113
      7796cbc3
  2. 22 7月, 2020 1 次提交
  3. 15 7月, 2020 1 次提交
  4. 05 12月, 2019 1 次提交
  5. 13 12月, 2018 1 次提交
  6. 12 8月, 2019 1 次提交
    • A
      8223147: JFR Backport · af3d4c64
      apetushkov 提交于
      8199712: Flight Recorder
      8203346: JFR: Inconsistent signature of jfr_add_string_constant
      8195817: JFR.stop should require name of recording
      8195818: JFR.start should increase autogenerated name by one
      8195819: Remove recording=x from jcmd JFR.check output
      8203921: JFR thread sampling is missing fixes from JDK-8194552
      8203929: Limit amount of data for JFR.dump
      8203664: JFR start failure after AppCDS archive created with JFR StartFlightRecording
      8003209: JFR events for network utilization
      8207392: [PPC64] Implement JFR profiling
      8202835: jfr/event/os/TestSystemProcess.java fails on missing events
      Summary: Backport JFR from JDK11. Initial integration
      Reviewed-by: neugens
      af3d4c64
  7. 12 10月, 2016 1 次提交
  8. 01 3月, 2016 1 次提交
  9. 16 1月, 2016 1 次提交
  10. 26 11月, 2014 1 次提交
  11. 15 6月, 2018 1 次提交
  12. 06 9月, 2016 1 次提交
  13. 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
  14. 16 1月, 2016 1 次提交
  15. 06 9月, 2014 1 次提交
  16. 13 2月, 2014 1 次提交
  17. 08 5月, 2014 1 次提交
  18. 29 4月, 2014 1 次提交
  19. 16 1月, 2014 1 次提交
  20. 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
  21. 10 6月, 2013 1 次提交
  22. 07 6月, 2013 1 次提交
  23. 07 5月, 2013 1 次提交
  24. 26 3月, 2013 1 次提交
  25. 24 1月, 2013 1 次提交
  26. 19 12月, 2012 1 次提交
  27. 30 11月, 2012 1 次提交
  28. 13 11月, 2012 1 次提交
  29. 18 10月, 2012 1 次提交
  30. 29 9月, 2012 1 次提交
  31. 02 9月, 2012 1 次提交
  32. 25 7月, 2012 1 次提交
  33. 17 7月, 2012 1 次提交
  34. 29 6月, 2012 1 次提交
    • Z
      6995781: Native Memory Tracking (Phase 1) · bdfb3cf5
      zgu 提交于
      7151532: DCmd for hotspot native memory tracking
      Summary: Implementation of native memory tracking phase 1, which tracks VM native memory usage, and related DCmd
      Reviewed-by: acorn, coleenp, fparain
      bdfb3cf5
  35. 25 10月, 2011 1 次提交
  36. 14 10月, 2011 1 次提交
  37. 11 9月, 2011 1 次提交
  38. 02 9月, 2011 1 次提交
  39. 30 8月, 2011 1 次提交
  40. 08 4月, 2011 1 次提交
    • J
      7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error · 6f87c7dd
      johnc 提交于
      Summary: A referent object that is only weakly reachable at the start of concurrent marking but is re-attached to the strongly reachable object graph during marking may not be marked as live. This can cause the reference object to be processed prematurely and leave dangling pointers to the referent object. Implement a read barrier for the java.lang.ref.Reference::referent field by intrinsifying the Reference.get() method, and intercepting accesses though JNI, reflection, and Unsafe, so that when a non-null referent object is read it is also logged in an SATB buffer.
      Reviewed-by: kvn, iveresov, never, tonyp, dholmes
      6f87c7dd