Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
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/SignatureConverter.java
/*
* Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package sun.jvm.hotspot.runtime;
import sun.jvm.hotspot.oops.*;
public class SignatureConverter extends SignatureIterator {
private StringBuffer buf;
private boolean first = true;
public SignatureConverter(Symbol sig, StringBuffer buf) {
super(sig);
this.buf = buf;
}
public void doBool () { appendComma(); buf.append("boolean"); }
public void doChar () { appendComma(); buf.append("char"); }
public void doFloat () { appendComma(); buf.append("float"); }
public void doDouble() { appendComma(); buf.append("double"); }
public void doByte () { appendComma(); buf.append("byte"); }
public void doShort () { appendComma(); buf.append("short"); }
public void doInt () { appendComma(); buf.append("int"); }
public void doLong () { appendComma(); buf.append("long"); }
public void doVoid () {
if(isReturnType()) {
appendComma(); buf.append("void");
} else {
throw new RuntimeException("Should not reach here");
}
}
public void doObject(int begin, int end) { doObject(begin, end, true); }
public void doArray (int begin, int end) {
appendComma();
int inner = arrayInnerBegin(begin);
switch (_signature.getByteAt(inner)) {
case 'B': buf.append("byte"); break;
case 'C': buf.append("char"); break;
case 'D': buf.append("double"); break;
case 'F': buf.append("float"); break;
case 'I': buf.append("int"); break;
case 'J': buf.append("long"); break;
case 'S': buf.append("short"); break;
case 'Z': buf.append("boolean"); break;
case 'L': doObject(inner + 1, end, false); break;
default: break;
}
for (int i = 0; i < inner - begin + 1; i++) {
buf.append("[]");
}
}
public void appendComma() {
if (!first) {
buf.append(", ");
}
first = false;
}
private void doObject(int begin, int end, boolean comma) {
if (comma) {
appendComma();
}
appendSubstring(begin, end - 1);
}
private void appendSubstring(int begin, int end) {
for (int i = begin; i < end; i++) {
buf.append((char) (_signature.getByteAt(i) & 0xFF));
}
}
private int arrayInnerBegin(int begin) {
while (_signature.getByteAt(begin) == '[') {
++begin;
}
return begin;
}
}
⏎ sun/jvm/hotspot/runtime/SignatureConverter.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
2020-02-29, ≈221🔥, 0💬
Popular Posts:
JDK 11 jdk.internal.vm.compiler .jmodis the JMOD file for JDK 11 Internal VM Compiler module. JDK 11...
If you are a Java developer, it is very often that you need to use some 3rd party libraries to perfo...
What Is log4j-1.2.13.jar? I got the JAR file from logging-log4j-1.2.13.zip .log4j-1.2.13.jar is the ...
Apache Commons Codec library provides implementations of common encoders and decoders such as Base64...
commons-io-1.4.jar is the JAR file for Commons IO 1.4, which is a library of utilities to assist wit...