/* * Copyright (c) 2015, 2016, 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. * * 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 org.graalvm.compiler.truffle.phases; import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary; import jdk.vm.ci.meta.JavaConstant; import org.graalvm.compiler.api.replacements.SnippetReflectionProvider; import org.graalvm.compiler.graph.Node; import org.graalvm.compiler.graph.NodeSourcePosition; import org.graalvm.compiler.nodes.FixedWithNextNode; import org.graalvm.compiler.nodes.Invoke; import org.graalvm.compiler.nodes.StructuredGraph; import org.graalvm.compiler.options.OptionValues; import org.graalvm.compiler.phases.tiers.HighTierContext; import org.graalvm.compiler.truffle.TruffleCompilerOptions; /** * Instruments calls to {@link TruffleBoundary}-annotated methods in the graph, by adding execution * counters to respective callsites. If this phase is enabled, the runtime outputs a summary of all * such compiled callsites and their execution counts, when the program exits. * * The phase is enabled with the following flag: * * <pre> * -Dgraal.TruffleInstrumentBoundaries * </pre> * * The phase can be configured to only instrument callsites in specific methods, by providing the * following method filter flag: * * <pre> * -Dgraal.TruffleInstrumentBoundariesFilter * </pre> * * The flag: * * <pre> * -Dgraal.TruffleInstrumentBoundariesPerInlineSite * </pre> * * decides whether to treat different inlining sites separately when tracking the execution counts. */ public class InstrumentTruffleBoundariesPhase extends InstrumentPhase { public InstrumentTruffleBoundariesPhase(OptionValues options, SnippetReflectionProvider snippetReflection, Instrumentation instrumentation) { super(options, snippetReflection, instrumentation); } @Override protected void instrumentGraph(StructuredGraph graph, HighTierContext context, JavaConstant tableConstant) { for (Node n : graph.getNodes()) { if (n instanceof Invoke && ((Invoke) n).callTarget().targetMethod().isAnnotationPresent(TruffleBoundary.class)) { Point p = getOrCreatePoint(n); if (p != null) { insertCounter(graph, context, tableConstant, (FixedWithNextNode) n.predecessor(), p.slotIndex(0)); } } } } @Override protected int instrumentationPointSlotCount() { return 1; } @Override protected boolean instrumentPerInlineSite(OptionValues options) { return TruffleCompilerOptions.TruffleInstrumentBoundariesPerInlineSite.getValue(options); } @Override protected Point createPoint(int id, int startIndex, Node n) { return new BoundaryPoint(id, startIndex, n.getNodeSourcePosition()); } public class BoundaryPoint extends Point { BoundaryPoint(int id, int rawIndex, NodeSourcePosition position) { super(id, rawIndex, position); } @Override public int slotCount() { return 1; } @Override public boolean isPrettified(OptionValues options) { return TruffleCompilerOptions.TruffleInstrumentBoundariesPerInlineSite.getValue(options); } @Override public long getHotness() { return getInstrumentation().getAccessTable()[rawIndex]; } @Override public String toString() { return "[" + id + "] count = " + getHotness(); } } }