Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
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 (309)
Collections:
Other Resources:
JDK 11 jdk.jfr.jmod - JFR Module
JDK 11 jdk.jfr.jmod is the JMOD file for JDK 11 JFR module.
JDK 11 JFR module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.jfr.jmod.
JDK 11 JFR module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 JFR module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.jfr.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ jdk/jfr/internal/ASMToolkit.java
/* * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package jdk.jfr.internal; import java.io.ByteArrayOutputStream; import java.io.PrintWriter; import java.util.List; import jdk.internal.org.objectweb.asm.ClassReader; import jdk.internal.org.objectweb.asm.MethodVisitor; import jdk.internal.org.objectweb.asm.Opcodes; import jdk.internal.org.objectweb.asm.Type; import jdk.internal.org.objectweb.asm.commons.Method; import jdk.internal.org.objectweb.asm.util.TraceClassVisitor; import jdk.jfr.ValueDescriptor; import jdk.jfr.internal.EventInstrumentation.FieldInfo; final class ASMToolkit { private static Type TYPE_STRING = Type.getType(String.class); private static Type Type_THREAD = Type.getType(Thread.class); private static Type TYPE_CLASS = Type.getType(Class.class); public static void invokeSpecial(MethodVisitor methodVisitor, String className, Method m) { methodVisitor.visitMethodInsn(Opcodes.INVOKESPECIAL, className, m.getName(), m.getDescriptor(), false); } public static void invokeStatic(MethodVisitor methodVisitor, String className, Method m) { methodVisitor.visitMethodInsn(Opcodes.INVOKESTATIC, className, m.getName(), m.getDescriptor(), false); } public static void invokeVirtual(MethodVisitor methodVisitor, String className, Method m) { methodVisitor.visitMethodInsn(Opcodes.INVOKEVIRTUAL, className, m.getName(), m.getDescriptor(), false); } public static Type toType(ValueDescriptor v) { String typeName = v.getTypeName(); switch (typeName) { case "byte": return Type.BYTE_TYPE; case "short": return Type.SHORT_TYPE; case "int": return Type.INT_TYPE; case "long": return Type.LONG_TYPE; case "double": return Type.DOUBLE_TYPE; case "float": return Type.FLOAT_TYPE; case "char": return Type.CHAR_TYPE; case "boolean": return Type.BOOLEAN_TYPE; case "java.lang.String": return TYPE_STRING; case "java.lang.Thread": return Type_THREAD; case "java.lang.Class": return TYPE_CLASS; } // Add support for SettingControl? throw new Error("Not a valid type " + v.getTypeName()); } /** * Converts "int" into "I" and "java.lang.String" into "Ljava/lang/String;" * * @param typeName * type * * @return descriptor */ public static String getDescriptor(String typeName) { if ("int".equals(typeName)) { return "I"; } if ("long".equals(typeName)) { return "J"; } if ("boolean".equals(typeName)) { return "Z"; } if ("float".equals(typeName)) { return "F"; } if ("double".equals(typeName)) { return "D"; } if ("short".equals(typeName)) { return "S"; } if ("char".equals(typeName)) { return "C"; } if ("byte".equals(typeName)) { return "B"; } String internal = getInternalName(typeName); return Type.getObjectType(internal).getDescriptor(); } /** * Converts java.lang.String into java/lang/String * * @param className * * @return internal name */ public static String getInternalName(String className) { return className.replace(".", "/"); } public static Method makeWriteMethod(List<FieldInfo> fields) { StringBuilder sb = new StringBuilder(); sb.append("("); for (FieldInfo v : fields) { if (!v.fieldName.equals(EventInstrumentation.FIELD_EVENT_THREAD) && !v.fieldName.equals(EventInstrumentation.FIELD_STACK_TRACE)) { sb.append(v.fieldDescriptor); } } sb.append(")V"); return new Method("write", sb.toString()); } public static void logASM(String className, byte[] bytes) { Logger.log(LogTag.JFR_SYSTEM_BYTECODE, LogLevel.INFO, "Generated bytecode for class " + className); Logger.log(LogTag.JFR_SYSTEM_BYTECODE, LogLevel.TRACE, () -> { ClassReader cr = new ClassReader(bytes); ByteArrayOutputStream baos = new ByteArrayOutputStream(); PrintWriter w = new PrintWriter(baos); w.println("Bytecode:"); cr.accept(new TraceClassVisitor(w), 0); return baos.toString(); }); } }
⏎ jdk/jfr/internal/ASMToolkit.java
Or download all of them as a single archive file:
File name: jdk.jfr-11.0.1-src.zip File size: 237632 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.jlink.jmod - JLink Tool
2020-06-30, 48323👍, 0💬
Popular Posts:
What JAR files are required to run dom\Counter.java provided in the Apache Xerces package? You can f...
Jaxen, Release 1.1.1, is an open source XPath library written in Java. It is adaptable to many diffe...
Saxon is an open source product available under the Mozilla Public License. It provides implementati...
maven-settings-builder-3 .8.6.jaris the JAR file for Apache Maven 3.8.6 Settings Builder module. Apa...
JDK 11 java.naming.jmod is the JMOD file for JDK 11 Naming module. JDK 11 Naming module compiled cla...