All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jdk.graal.compiler.hotspot.nodes.PluginFactory_JumpToExceptionHandlerInCallerNode Maven / Gradle / Ivy

There is a newer version: 24.2.1
Show newest version
// CheckStyle: stop header check
// CheckStyle: stop line length check
// GENERATED CONTENT - DO NOT EDIT
// GENERATORS: jdk.graal.compiler.replacements.processor.ReplacementsAnnotationProcessor, jdk.graal.compiler.replacements.processor.PluginGenerator
package jdk.graal.compiler.hotspot.nodes;


import java.lang.annotation.Annotation;
import jdk.graal.compiler.nodes.ValueNode;
import jdk.graal.compiler.nodes.graphbuilderconf.GeneratedNodeIntrinsicInvocationPlugin;
import jdk.graal.compiler.nodes.graphbuilderconf.GeneratedPluginFactory;
import jdk.graal.compiler.nodes.graphbuilderconf.GeneratedPluginInjectionProvider;
import jdk.graal.compiler.nodes.graphbuilderconf.GraphBuilderContext;
import jdk.graal.compiler.nodes.graphbuilderconf.InvocationPlugin;
import jdk.graal.compiler.nodes.graphbuilderconf.InvocationPlugins;
import jdk.vm.ci.meta.ResolvedJavaMethod;

//        class: jdk.graal.compiler.hotspot.nodes.JumpToExceptionHandlerInCallerNode
//       method: jumpToExceptionHandlerInCaller(jdk.graal.compiler.word.Word,java.lang.Object,jdk.graal.compiler.word.Word)
// generated-by: jdk.graal.compiler.replacements.processor.GeneratedNodeIntrinsicPlugin$ConstructorPlugin
final class Plugin_JumpToExceptionHandlerInCallerNode_jumpToExceptionHandlerInCaller 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];
        jdk.graal.compiler.hotspot.nodes.JumpToExceptionHandlerInCallerNode node = new jdk.graal.compiler.hotspot.nodes.JumpToExceptionHandlerInCallerNode(arg0, arg1, arg2);
        b.add(node);
        return true;
    }
    @Override
    public Class getSource() {
        return jdk.graal.compiler.graph.Node.NodeIntrinsic.class;
    }

    Plugin_JumpToExceptionHandlerInCallerNode_jumpToExceptionHandlerInCaller() {
        super("jumpToExceptionHandlerInCaller", jdk.graal.compiler.word.Word.class, java.lang.Object.class, jdk.graal.compiler.word.Word.class);
    }
}

public class PluginFactory_JumpToExceptionHandlerInCallerNode implements GeneratedPluginFactory {
    @Override
    public void registerPlugins(InvocationPlugins plugins, GeneratedPluginInjectionProvider injection) {
        plugins.register(jdk.graal.compiler.hotspot.nodes.JumpToExceptionHandlerInCallerNode.class, new Plugin_JumpToExceptionHandlerInCallerNode_jumpToExceptionHandlerInCaller());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy