org.graalvm.compiler.replacements.ConstantBindingParameterPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler Show documentation
Show all versions of compiler Show documentation
The GraalVM compiler and the Graal-truffle optimizer.
/*
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package org.graalvm.compiler.replacements;
import org.graalvm.compiler.api.replacements.SnippetReflectionProvider;
import org.graalvm.compiler.core.common.type.DataPointerConstant;
import org.graalvm.compiler.core.common.type.StampFactory;
import org.graalvm.compiler.core.common.type.StampPair;
import org.graalvm.compiler.nodes.ConstantNode;
import org.graalvm.compiler.nodes.NodeView;
import org.graalvm.compiler.nodes.calc.FloatingNode;
import org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderTool;
import org.graalvm.compiler.nodes.graphbuilderconf.ParameterPlugin;
import jdk.vm.ci.meta.Constant;
import jdk.vm.ci.meta.JavaKind;
import jdk.vm.ci.meta.MetaAccessProvider;
/**
* A {@link ParameterPlugin} that binds constant values to some parameters.
*/
public class ConstantBindingParameterPlugin implements ParameterPlugin {
private final Object[] constantArgs;
private final MetaAccessProvider metaAccess;
private final SnippetReflectionProvider snippetReflection;
/**
* Creates a plugin that will create {@link ConstantNode}s for each parameter with an index
* equal to that of a non-null object in {@code constantArgs} (from which the
* {@link ConstantNode} is created if it isn't already a {@link ConstantNode}).
*/
public ConstantBindingParameterPlugin(Object[] constantArgs, MetaAccessProvider metaAccess, SnippetReflectionProvider snippetReflection) {
this.constantArgs = constantArgs;
this.metaAccess = metaAccess;
this.snippetReflection = snippetReflection;
}
@Override
public FloatingNode interceptParameter(GraphBuilderTool b, int index, StampPair stamp) {
if (index < constantArgs.length) {
Object arg = constantArgs[index];
if (arg != null) {
ConstantNode constantNode;
if (arg instanceof ConstantNode) {
ConstantNode otherCon = (ConstantNode) arg;
if (otherCon.graph() != b.getGraph()) {
/*
* This is a node from another graph, so copy over extra state into a new
* ConstantNode.
*/
constantNode = ConstantNode.forConstant(otherCon.stamp(NodeView.DEFAULT), otherCon.getValue(), otherCon.getStableDimension(), otherCon.isDefaultStable(), metaAccess);
} else {
constantNode = otherCon;
}
} else if (arg instanceof DataPointerConstant) {
constantNode = ConstantNode.forConstant(StampFactory.pointer(), (Constant) arg, metaAccess);
} else if (arg instanceof Constant) {
constantNode = ConstantNode.forConstant(stamp.getTrustedStamp(), (Constant) arg, metaAccess);
} else {
JavaKind kind = stamp.getTrustedStamp().getStackKind();
constantNode = ConstantNode.forConstant(snippetReflection.forBoxed(kind, arg), metaAccess);
}
return constantNode;
}
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy