package org.graalvm.compiler.nodes.debug;
import jdk.vm.ci.meta.ResolvedJavaMethod;
import org.graalvm.compiler.serviceprovider.ServiceProvider;
import org.graalvm.compiler.nodes.ValueNode;
import org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderContext;
import org.graalvm.compiler.nodes.graphbuilderconf.GeneratedInvocationPlugin;
import org.graalvm.compiler.nodes.graphbuilderconf.InvocationPlugin;
import org.graalvm.compiler.nodes.graphbuilderconf.InvocationPlugins;
import org.graalvm.compiler.nodes.graphbuilderconf.NodeIntrinsicPluginFactory;
@ServiceProvider(NodeIntrinsicPluginFactory.class)
public class PluginFactory_DynamicCounterNode implements NodeIntrinsicPluginFactory {
private static final class DynamicCounterNode_counter extends GeneratedInvocationPlugin {
@Override
public boolean execute(GraphBuilderContext b, ResolvedJavaMethod targetMethod, InvocationPlugin.Receiver receiver, ValueNode[] args) {
java.lang.String arg0;
if (args[0].isConstant()) {
arg0 = snippetReflection.asObject(java.lang.String.class, args[0].asJavaConstant());
} else {
return false;
}
java.lang.String arg1;
if (args[1].isConstant()) {
arg1 = snippetReflection.asObject(java.lang.String.class, args[1].asJavaConstant());
} else {
return false;
}
ValueNode arg2 = args[2];
boolean arg3;
if (args[3].isConstant()) {
arg3 = args[3].asJavaConstant().asInt() != 0;
} else {
return false;
}
org.graalvm.compiler.nodes.debug.DynamicCounterNode node = new org.graalvm.compiler.nodes.debug.DynamicCounterNode(arg0, arg1, arg2, arg3);
b.add(node);
return true;
}
private final org.graalvm.compiler.api.replacements.SnippetReflectionProvider snippetReflection;
private DynamicCounterNode_counter(InjectionProvider injection) {
this.snippetReflection = injection.getInjectedArgument(org.graalvm.compiler.api.replacements.SnippetReflectionProvider.class);
}
}
@Override
public void registerPlugins(InvocationPlugins plugins, InjectionProvider injection) {
plugins.register(new DynamicCounterNode_counter(injection), org.graalvm.compiler.nodes.debug.DynamicCounterNode.class, "counter", java.lang.String.class, java.lang.String.class, long.class, boolean.class);
}
}