Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8248882

SA PMap and PStack support on OSX works with core files. Enable them.

    XMLWordPrintable

Details

    • Bug
    • Resolution: Fixed
    • P4
    • 16
    • 16
    • hotspot
    • None
    • b08

    Description

      It was thought that PMap did not work at all on OSX, so it was disable on in PMap.java:

            if (PlatformInfo.getOS().equals("darwin")) {
              out.println("Not available on Mac OS X");
              return;
            }

      However, it does work with core files. The reason is the OSX port does register LoadObjects for core files, but not for processes. JDK-8248875 discusses this a bit. The above code should be modified to allow running on OSX if debugging a core file. Note ClhsdbPmap.java expects it to fail on OSX since it runs on a process. Possibly as part of this fix ClhsdbPmap.java can be updated to also run on a core file and expect it to pass on OSX.

      PStack does the exact same check. It too should be enabled for OSX core files.

      The code for this is in ps_core.c::read_shared_lib_info(). It's very hard to read unless you have a good understanding of mach core file layouts.

      Enabling PMap and PStack for OSX core files requires that first JDK-8247515 be pushed since it fixes some pc -> symbol lookup issues that PStack needs, and hides the system library lookup issues discussed in JDK-8249779. Note also that due to JDK-8249779 PMap will not show any system libraries and PStack will not do pc -> symbol resolution for pc's in system libraries.

      Attachments

        Issue Links

          Activity

            People

              cjplummer Chris Plummer
              cjplummer Chris Plummer
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: