JDK 11 jdk.hotspot.agent.jmod - Hotspot Agent Module

JDK 11 jdk.hotspot.agent.jmod is the JMOD file for JDK 11 Hotspot Agent module.

JDK 11 Hotspot Agent module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.hotspot.agent.jmod.

JDK 11 Hotspot Agent module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.

JDK 11 Hotspot Agent module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.hotspot.agent.

You can click and view the content of each source code file in the list below.

✍: FYIcenter

sun/jvm/hotspot/runtime/ppc64/PPC64CurrentFrameGuess.java

/*
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 */

package sun.jvm.hotspot.runtime.ppc64;

import sun.jvm.hotspot.debugger.*;
import sun.jvm.hotspot.debugger.ppc64.*;
import sun.jvm.hotspot.code.*;
import sun.jvm.hotspot.interpreter.*;
import sun.jvm.hotspot.runtime.*;
import sun.jvm.hotspot.runtime.ppc64.*;

/** <P> Should be able to be used on all ppc64 platforms we support
    (Linux/ppc64) to implement JavaThread's "currentFrameGuess()"
    functionality. Input is a PPC64ThreadContext; output is SP, FP,
    and PC for an PPC64Frame. Instantiation of the PPC64Frame is left
    to the caller, since we may need to subclass PPC64Frame to support
    signal handler frames on Unix platforms. </P>
 */

public class PPC64CurrentFrameGuess {
  private PPC64ThreadContext context;
  private JavaThread       thread;
  private Address          spFound;
  private Address          fpFound;
  private Address          pcFound;

  private static final boolean DEBUG;
  static {
    DEBUG = System.getProperty("sun.jvm.hotspot.runtime.ppc64.PPC64Frame.DEBUG") != null;
  }

  public PPC64CurrentFrameGuess(PPC64ThreadContext context,
                              JavaThread thread) {
    this.context = context;
    this.thread  = thread;
  }

  /** Returns false if not able to find a frame within a reasonable range. */
  public boolean run(long regionInBytesToSearch) {
    Address sp = context.getRegisterAsAddress(PPC64ThreadContext.SP);
    Address pc = context.getRegisterAsAddress(PPC64ThreadContext.PC);
    if (sp == null) {
      // Bail out if no last java frame either
      if (thread.getLastJavaSP() != null) {
        Address javaSP = thread.getLastJavaSP();
        Address javaFP = javaSP.getAddressAt(0);
        setValues(javaSP, javaFP, null);
        return true;
      }
      return false;
    }
    /* There is no frame pointer per se for the ppc64 architecture.  To mirror
     * the behavior of the VM frame manager, we set fp to be the caller's (i.e., "sender's")
     * stack pointer, which is the back chain value contained in our sp.
     */
    Address fp = sp.getAddressAt(0);
    setValues(null, null, null); // Assume we're not going to find anything

    VM vm = VM.getVM();
    if (vm.isJavaPCDbg(pc)) {
      if (vm.isClientCompiler()) {
        // Topmost frame is a Java frame.
        if (DEBUG) {
          System.out.println("CurrentFrameGuess: choosing compiler frame: sp = " +
                             sp + ", fp = " + fp + ", pc = " + pc);
        }
        setValues(sp, fp, pc);
        return true;
      } else {
        if (vm.getInterpreter().contains(pc)) {
          if (DEBUG) {
            System.out.println("CurrentFrameGuess: choosing interpreter frame: sp = " +
                               sp + ", fp = " + fp + ", pc = " + pc);
          }
          setValues(sp, fp, pc);
          return true;
        }

        // This algorithm takes the current PC as a given and tries to
        // find the correct corresponding SP by walking up the stack
        // and repeatedly performing stackwalks (very inefficient).
        for (long offset = 0;
             offset < regionInBytesToSearch;
             offset += vm.getAddressSize()) {
          try {
            Address curSP = sp.addOffsetTo(offset);
            fp = curSP.getAddressAt(0);
            Frame frame = new PPC64Frame(curSP, fp, pc);
            RegisterMap map = thread.newRegisterMap(false);
            while (frame != null) {
              if (frame.isEntryFrame() && frame.entryFrameIsFirst()) {
                // We were able to traverse all the way to the
                // bottommost Java frame.
                // This sp looks good. Keep it.
                if (DEBUG) {
                  System.out.println("CurrentFrameGuess: Choosing sp = " + curSP + ", pc = " + pc);
                }
                setValues(curSP, fp, pc);
                return true;
              }
              frame = frame.sender(map);
            }
          } catch (Exception e) {
            if (DEBUG) {
              System.out.println("CurrentFrameGuess: Exception " + e + " at offset " + offset);
            }
            // Bad SP. Try another.
          }
        }

        // Were not able to find a plausible SP to go with this PC.
        // Bail out.
        return false;

      }
    } else {
      // If the current program counter was not known to us as a Java
      // PC, we currently assume that we are in the run-time system
      // and attempt to look to thread-local storage for saved java SP.
      // Note that if this is null (because we were, in fact,
      // in Java code, i.e., vtable stubs or similar, and the SA
      // didn't have enough insight into the target VM to understand
      // that) then we are going to lose the entire stack trace for
      // the thread, which is sub-optimal. FIXME.

      if (thread.getLastJavaSP() == null) {
        if (DEBUG) {
          System.out.println("CurrentFrameGuess: last java sp is null");
        }
        return false; // No known Java frames on stack
      }

      Address javaSP = thread.getLastJavaSP();
      Address javaFP = javaSP.getAddressAt(0);
      Address javaPC = thread.getLastJavaPC();
      if (DEBUG) {
        System.out.println("CurrentFrameGuess: choosing last Java frame: sp = " +
                           javaSP + ", fp = " + javaFP + ", pc = " + javaPC);
      }
      setValues(javaSP, javaFP, javaPC);
      return true;
    }
  }

  public Address getSP() { return spFound; }
  public Address getFP() { return fpFound; }
  /** May be null if getting values from thread-local storage; take
      care to call the correct PPC64Frame constructor to recover this if
      necessary */
  public Address getPC() { return pcFound; }

  private void setValues(Address sp, Address fp, Address pc) {
    spFound = sp;
    fpFound = fp;
    pcFound = pc;
  }
}

sun/jvm/hotspot/runtime/ppc64/PPC64CurrentFrameGuess.java

 

Or download all of them as a single archive file:

File name: jdk.hotspot.agent-11.0.1-src.zip
File size: 1243786 bytes
Release date: 2018-11-04
Download 

 

JDK 11 jdk.httpserver.jmod - HTTP Server Module

JDK 11 jdk.editpad.jmod - Edit Pad Module

Download and Use JDK 11

⇑⇑ FAQ for JDK (Java Development Kit)

2020-02-29, 133343👍, 0💬