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/JVMUpcalls.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.lang.reflect.Modifier; import jdk.jfr.Event; import jdk.jfr.internal.handlers.EventHandler; import jdk.jfr.internal.instrument.JDKEvents; /** * All upcalls from the JVM should go through this class. * */ // Called by native final class JVMUpcalls { /** * Called by the JVM when a retransform happens on a tagged class * * @param traceId * Id of the class * @param dummy * (not used but needed since invoke infrastructure in native * uses same signature bytesForEagerInstrumentation) * @param clazz * class being retransformed * @param oldBytes * byte code * @return byte code to use * @throws Throwable */ static byte[] onRetransform(long traceId, boolean dummy, Class<?> clazz, byte[] oldBytes) throws Throwable { try { if (Event.class.isAssignableFrom(clazz) && !Modifier.isAbstract(clazz.getModifiers())) { EventHandler handler = Utils.getHandler(clazz.asSubclass(Event.class)); if (handler == null) { Logger.log(LogTag.JFR_SYSTEM, LogLevel.INFO, "No event handler found for " + clazz.getName() + ". Ignoring instrumentation request."); // Probably triggered by some other agent return oldBytes; } Logger.log(LogTag.JFR_SYSTEM, LogLevel.INFO, "Adding instrumentation to event class " + clazz.getName() + " using retransform"); EventInstrumentation ei = new EventInstrumentation(clazz.getSuperclass(), oldBytes, traceId); byte[] bytes = ei.buildInstrumented(); ASMToolkit.logASM(clazz.getName(), bytes); return bytes; } return JDKEvents.retransformCallback(clazz, oldBytes); } catch (Throwable t) { Logger.log(LogTag.JFR_SYSTEM, LogLevel.WARN, "Unexpected error when adding instrumentation to event class " + clazz.getName()); } return oldBytes; } /** * Called by the JVM when requested to do an "eager" instrumentation. Would * normally happen when JVMTI retransform capabilities are not available. * * @param traceId * Id of the class * @param forceInstrumentation * add instrumentation regardless if event is enabled or not. * @param superClazz * the super class of the class being processed * @param oldBytes * byte code * @return byte code to use * @throws Throwable */ static byte[] bytesForEagerInstrumentation(long traceId, boolean forceInstrumentation, Class<?> superClass, byte[] oldBytes) throws Throwable { if (JVMSupport.isNotAvailable()) { return oldBytes; } String eventName = "<Unknown>"; try { EventInstrumentation ei = new EventInstrumentation(superClass, oldBytes, traceId); eventName = ei.getEventName(); if (!forceInstrumentation) { // Assume we are recording MetadataRepository mr = MetadataRepository.getInstance(); // No need to generate bytecode if: // 1) Event class is disabled, and there is not an external configuration that overrides. // 2) Event class has @Registered(false) if (!mr.isEnabled(ei.getEventName()) && !ei.isEnabled() || !ei.isRegistered()) { Logger.log(LogTag.JFR_SYSTEM, LogLevel.INFO, "Skipping instrumentation for event type " + eventName + " since event was disabled on class load"); return oldBytes; } } // Corner case when we are forced to generate bytecode. We can't reference the event // handler in #isEnabled() before event class has been registered, so we add a // guard against a null reference. ei.setGuardHandler(true); Logger.log(LogTag.JFR_SYSTEM, LogLevel.INFO, "Adding " + (forceInstrumentation ? "forced " : "") + "instrumentation for event type " + eventName + " during initial class load"); EventHandlerCreator eh = new EventHandlerCreator(traceId, ei.getSettingInfos(), ei.getFieldInfos()); // Handler class must be loaded before instrumented event class can // be used eh.makeEventHandlerClass(); byte[] bytes = ei.buildInstrumented(); ASMToolkit.logASM(ei.getClassName() + "(" + traceId + ")", bytes); return bytes; } catch (Throwable t) { Logger.log(LogTag.JFR_SYSTEM, LogLevel.WARN, "Unexpected error when adding instrumentation for event type " + eventName); return oldBytes; } } /** * Called by the JVM to create the recorder thread. * * @param systemThreadGroup * the system thread group * * @param contextClassLoader * the context class loader. * * @return a new thread */ static Thread createRecorderThread(ThreadGroup systemThreadGroup, ClassLoader contextClassLoader) { return SecuritySupport.createRecorderThread(systemThreadGroup, contextClassLoader); } }
⏎ jdk/jfr/internal/JVMUpcalls.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, 37423👍, 0💬
Popular Posts:
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms, it was develo...
xml-commons External Source Code Files are provided in the source package file, xml-commons-external...
Where Can I see Java Source Code files for Xerces Java 2.11.2? Here are Java Source Code files for X...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
JAX-RPC is an API for building Web services and clients that used remote procedure calls (RPC) and X...