package org.graalvm.compiler.hotspot.replacements.arraycopy;
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_ArrayCopyWithSlowPathNode implements NodeIntrinsicPluginFactory {
private static final class ArrayCopyWithSlowPathNode_arraycopy extends GeneratedInvocationPlugin {
@Override
public boolean execute(GraphBuilderContext b, ResolvedJavaMethod targetMethod, InvocationPlugin.Receiver receiver, ValueNode[] args) {
ValueNode arg0 = args[0];
ValueNode arg1 = args[1];
ValueNode arg2 = args[2];
ValueNode arg3 = args[3];
ValueNode arg4 = args[4];
org.graalvm.compiler.replacements.SnippetTemplate.SnippetInfo arg5;
if (args[5].isConstant()) {
arg5 = snippetReflection.asObject(org.graalvm.compiler.replacements.SnippetTemplate.SnippetInfo.class, args[5].asJavaConstant());
} else {
return false;
}
jdk.vm.ci.meta.JavaKind arg6;
if (args[6].isConstant()) {
arg6 = snippetReflection.asObject(jdk.vm.ci.meta.JavaKind.class, args[6].asJavaConstant());
} else {
return false;
}
org.graalvm.compiler.hotspot.replacements.arraycopy.ArrayCopyWithSlowPathNode node = new org.graalvm.compiler.hotspot.replacements.arraycopy.ArrayCopyWithSlowPathNode(arg0, arg1, arg2, arg3, arg4, arg5, arg6);
b.add(node);
return true;
}
private final org.graalvm.compiler.api.replacements.SnippetReflectionProvider snippetReflection;
private ArrayCopyWithSlowPathNode_arraycopy(InjectionProvider injection) {
this.snippetReflection = injection.getInjectedArgument(org.graalvm.compiler.api.replacements.SnippetReflectionProvider.class);
}
}
@Override
public void registerPlugins(InvocationPlugins plugins, InjectionProvider injection) {
plugins.register(new ArrayCopyWithSlowPathNode_arraycopy(injection), org.graalvm.compiler.hotspot.replacements.arraycopy.ArrayCopyWithSlowPathNode.class, "arraycopy", java.lang.Object.class, int.class, java.lang.Object.class, int.class, int.class, org.graalvm.compiler.replacements.SnippetTemplate.SnippetInfo.class, jdk.vm.ci.meta.JavaKind.class);
}
}