package org.graalvm.compiler.replacements.arraycopy;
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_ArrayCopyWithDelayedLoweringNode_arraycopy extends GeneratedNodeIntrinsicInvocationPlugin {
@Override
public boolean execute(GraphBuilderContext b, ResolvedJavaMethod targetMethod, InvocationPlugin.Receiver receiver, ValueNode[] args) {
if (!b.isPluginEnabled(this)) {
return false;
}
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 {
if (b.shouldDeferPlugin(this)) {
b.replacePlugin(this, targetMethod, args, PluginReplacementNode_ArrayCopyWithDelayedLoweringNode_arraycopy.FUNCTION);
return true;
}
assert b.canDeferPlugin(this) : b.getClass().toString();
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 {
if (b.shouldDeferPlugin(this)) {
b.replacePlugin(this, targetMethod, args, PluginReplacementNode_ArrayCopyWithDelayedLoweringNode_arraycopy.FUNCTION);
return true;
}
assert b.canDeferPlugin(this) : b.getClass().toString();
return false;
}
org.graalvm.compiler.replacements.arraycopy.ArrayCopyWithDelayedLoweringNode node = new org.graalvm.compiler.replacements.arraycopy.ArrayCopyWithDelayedLoweringNode(arg0, arg1, arg2, arg3, arg4, arg5, arg6);
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_ArrayCopyWithDelayedLoweringNode_arraycopy(GeneratedPluginInjectionProvider injection) {
this.snippetReflection = injection.getInjectedArgument(org.graalvm.compiler.api.replacements.SnippetReflectionProvider.class);
}
}
final class PluginReplacementNode_ArrayCopyWithDelayedLoweringNode_arraycopy implements PluginReplacementNode.ReplacementFunction {
static PluginReplacementNode.ReplacementFunction FUNCTION = new PluginReplacementNode_ArrayCopyWithDelayedLoweringNode_arraycopy();
@Override
public boolean replace(GraphBuilderContext b, GeneratedPluginInjectionProvider injection, Stamp stamp, NodeInputList<ValueNode> args) {
ValueNode arg0 = args.get(0);
ValueNode arg1 = args.get(1);
ValueNode arg2 = args.get(2);
ValueNode arg3 = args.get(3);
ValueNode arg4 = args.get(4);
org.graalvm.compiler.replacements.SnippetTemplate.SnippetInfo arg5;
if (args.get(5).isConstant()) {
arg5 = injection.getInjectedArgument(org.graalvm.compiler.api.replacements.SnippetReflectionProvider.class).asObject(org.graalvm.compiler.replacements.SnippetTemplate.SnippetInfo.class, args.get(5).asJavaConstant());
} else {
return false;
}
jdk.vm.ci.meta.JavaKind arg6;
if (args.get(6).isConstant()) {
arg6 = injection.getInjectedArgument(org.graalvm.compiler.api.replacements.SnippetReflectionProvider.class).asObject(jdk.vm.ci.meta.JavaKind.class, args.get(6).asJavaConstant());
} else {
return false;
}
org.graalvm.compiler.replacements.arraycopy.ArrayCopyWithDelayedLoweringNode node = new org.graalvm.compiler.replacements.arraycopy.ArrayCopyWithDelayedLoweringNode(arg0, arg1, arg2, arg3, arg4, arg5, arg6);
b.add(node);
return true;
}
}
public class PluginFactory_ArrayCopyWithDelayedLoweringNode implements GeneratedPluginFactory {
@Override
public void registerPlugins(InvocationPlugins plugins, GeneratedPluginInjectionProvider injection) {
plugins.register(new Plugin_ArrayCopyWithDelayedLoweringNode_arraycopy(injection), org.graalvm.compiler.replacements.arraycopy.ArrayCopyWithDelayedLoweringNode.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);
}
}