package org.graalvm.compiler.nodes.debug;
import java.lang.annotation.Annotation;
import jdk.vm.ci.meta.ResolvedJavaMethod;
import org.graalvm.compiler.core.common.type.Stamp;
import org.graalvm.compiler.graph.NodeInputList;
import org.graalvm.compiler.nodes.PluginReplacementNode;
import org.graalvm.compiler.nodes.ValueNode;
import org.graalvm.compiler.nodes.graphbuilderconf.GeneratedNodeIntrinsicInvocationPlugin;
import org.graalvm.compiler.nodes.graphbuilderconf.GeneratedPluginFactory;
import org.graalvm.compiler.nodes.graphbuilderconf.GeneratedPluginInjectionProvider;
import org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderContext;
import org.graalvm.compiler.nodes.graphbuilderconf.InvocationPlugin;
import org.graalvm.compiler.nodes.graphbuilderconf.InvocationPlugins;
final class Plugin_DynamicCounterNode_counter extends GeneratedNodeIntrinsicInvocationPlugin {
@Override
public boolean execute(GraphBuilderContext b, ResolvedJavaMethod targetMethod, InvocationPlugin.Receiver receiver, ValueNode[] args) {
if (!b.isPluginEnabled(this)) {
return false;
}
java.lang.String arg0;
if (args[0].isConstant()) {
arg0 = snippetReflection.asObject(java.lang.String.class, args[0].asJavaConstant());
} else {
if (b.shouldDeferPlugin(this)) {
b.replacePlugin(this, targetMethod, args, PluginReplacementNode_DynamicCounterNode_counter.FUNCTION);
return true;
}
assert b.canDeferPlugin(this) : b.getClass().toString();
return false;
}
java.lang.String arg1;
if (args[1].isConstant()) {
arg1 = snippetReflection.asObject(java.lang.String.class, args[1].asJavaConstant());
} else {
if (b.shouldDeferPlugin(this)) {
b.replacePlugin(this, targetMethod, args, PluginReplacementNode_DynamicCounterNode_counter.FUNCTION);
return true;
}
assert b.canDeferPlugin(this) : b.getClass().toString();
return false;
}
ValueNode arg2 = args[2];
boolean arg3;
if (args[3].isConstant()) {
arg3 = args[3].asJavaConstant().asInt() != 0;
} else {
if (b.shouldDeferPlugin(this)) {
b.replacePlugin(this, targetMethod, args, PluginReplacementNode_DynamicCounterNode_counter.FUNCTION);
return true;
}
assert b.canDeferPlugin(this) : b.getClass().toString();
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;
}
@Override
public Class<? extends Annotation> getSource() {
return org.graalvm.compiler.graph.Node.NodeIntrinsic.class;
}
private final org.graalvm.compiler.api.replacements.SnippetReflectionProvider snippetReflection;
Plugin_DynamicCounterNode_counter(GeneratedPluginInjectionProvider injection) {
this.snippetReflection = injection.getInjectedArgument(org.graalvm.compiler.api.replacements.SnippetReflectionProvider.class);
}
}
final class PluginReplacementNode_DynamicCounterNode_counter implements PluginReplacementNode.ReplacementFunction {
static PluginReplacementNode.ReplacementFunction FUNCTION = new PluginReplacementNode_DynamicCounterNode_counter();
@Override
public boolean replace(GraphBuilderContext b, GeneratedPluginInjectionProvider injection, Stamp stamp, NodeInputList<ValueNode> args) {
java.lang.String arg0;
if (args.get(0).isConstant()) {
arg0 = injection.getInjectedArgument(org.graalvm.compiler.api.replacements.SnippetReflectionProvider.class).asObject(java.lang.String.class, args.get(0).asJavaConstant());
} else {
return false;
}
java.lang.String arg1;
if (args.get(1).isConstant()) {
arg1 = injection.getInjectedArgument(org.graalvm.compiler.api.replacements.SnippetReflectionProvider.class).asObject(java.lang.String.class, args.get(1).asJavaConstant());
} else {
return false;
}
ValueNode arg2 = args.get(2);
boolean arg3;
if (args.get(3).isConstant()) {
arg3 = args.get(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;
}
}
public class PluginFactory_DynamicCounterNode implements GeneratedPluginFactory {
@Override
public void registerPlugins(InvocationPlugins plugins, GeneratedPluginInjectionProvider injection) {
plugins.register(new Plugin_DynamicCounterNode_counter(injection), org.graalvm.compiler.nodes.debug.DynamicCounterNode.class, "counter", java.lang.String.class, java.lang.String.class, long.class, boolean.class);
}
}