
com.oracle.truffle.tools.profiler.impl.CPUTracerInstrument Maven / Gradle / Ivy
/*
* Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.oracle.truffle.tools.profiler.impl;
import java.io.File;
import java.io.PrintStream;
import java.lang.reflect.Method;
import org.graalvm.options.OptionDescriptors;
import org.graalvm.polyglot.Engine;
import org.graalvm.polyglot.Instrument;
import com.oracle.truffle.api.instrumentation.SourceSectionFilter;
import com.oracle.truffle.api.instrumentation.TruffleInstrument;
import com.oracle.truffle.tools.profiler.CPUTracer;
/**
* The {@linkplain TruffleInstrument instrument} for the CPU tracer.
*
* @since 0.30
*/
@TruffleInstrument.Registration(id = CPUTracerInstrument.ID, name = "CPU Tracer", version = CPUTracerInstrument.VERSION, services = {
CPUTracer.class}, website = "https://www.graalvm.org/tools/profiling/")
public class CPUTracerInstrument extends TruffleInstrument {
/**
* Default constructor.
*
* @since 0.30
*/
public CPUTracerInstrument() {
}
/**
* A string used to identify the tracer, i.e. as the name of the tool.
*
* @since 0.30
*/
public static final String ID = "cputracer";
private static final ProfilerToolFactory factory = getDefaultFactory();
static final String VERSION = "0.3.0";
private boolean enabled;
private CPUTracer tracer;
/*
* Guest languages could change the working directory of the current process, The JVM assumes
* that the working directory does not change. When this assumption is broken relative file
* paths no longer work correctly. For this reason we save the absolute path to the output file
* at the very start so that we avoid issues of broken relative paths See GR-36526 for more
* context.
*/
String absoluteOutputPath;
@SuppressWarnings("unchecked")
private static ProfilerToolFactory getDefaultFactory() {
try {
Method createFactory = CPUTracer.class.getDeclaredMethod("createFactory");
createFactory.setAccessible(true);
return (ProfilerToolFactory) createFactory.invoke(null);
} catch (Exception ex) {
throw new AssertionError(ex);
}
}
/**
* Does a lookup in the runtime instruments of the engine and returns an instance of the
* {@link CPUTracer}.
*
* @since 0.33
*/
public static CPUTracer getTracer(Engine engine) {
Instrument instrument = engine.getInstruments().get(ID);
if (instrument == null) {
throw new IllegalStateException("Tracer is not installed.");
}
return instrument.lookup(CPUTracer.class);
}
/**
* Called to create the Instrument.
*
* @param env environment information for the instrument
* @since 0.30
*/
@Override
protected void onCreate(Env env) {
tracer = factory.create(env);
enabled = env.getOptions().get(CPUTracerCLI.ENABLED);
if (enabled) {
try {
tracer.setFilter(getSourceSectionFilter(env));
} catch (IllegalArgumentException e) {
new PrintStream(env.err()).println(ID + " error: " + e.getMessage());
enabled = false;
tracer.setCollecting(false);
env.registerService(tracer);
return;
}
tracer.setCollecting(true);
if (CPUTracerCLI.OUTPUT_FILE.hasBeenSet(env.getOptions())) {
final String outputPath = CPUTracerCLI.OUTPUT_FILE.getValue(env.getOptions());
absoluteOutputPath = new File(outputPath).getAbsolutePath();
}
}
env.registerService(tracer);
}
private static SourceSectionFilter getSourceSectionFilter(Env env) {
final boolean roots = env.getOptions().get(CPUTracerCLI.TRACE_ROOTS);
final boolean statements = env.getOptions().get(CPUTracerCLI.TRACE_STATEMENTS);
final boolean calls = env.getOptions().get(CPUTracerCLI.TRACE_CALLS);
final boolean internals = env.getOptions().get(CPUTracerCLI.TRACE_INTERNAL);
final WildcardFilter filterRootName = env.getOptions().get(CPUTracerCLI.FILTER_ROOT);
final WildcardFilter filterFile = env.getOptions().get(CPUTracerCLI.FILTER_FILE);
final String filterMimeType = env.getOptions().get(CPUTracerCLI.FILTER_MIME_TYPE);
final String filterLanguage = env.getOptions().get(CPUTracerCLI.FILTER_LANGUAGE);
return CPUTracerCLI.buildFilter(roots, statements, calls, internals, filterRootName, filterFile, filterMimeType, filterLanguage);
}
/**
* @return A list of the options provided by the {@link CPUTracer}.
* @since 0.30
*/
@Override
protected OptionDescriptors getOptionDescriptors() {
return new CPUTracerCLIOptionDescriptors();
}
/**
* Called when the Instrument is to be disposed.
*
* @param env environment information for the instrument
* @since 0.30
*/
@Override
protected void onFinalize(Env env) {
if (enabled) {
CPUTracerCLI.handleOutput(env, tracer, absoluteOutputPath);
}
}
@Override
protected void onDispose(Env env) {
if (enabled) {
tracer.close();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy