com.oracle.svm.hosted.substitute.DeletedMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of svm Show documentation
Show all versions of svm Show documentation
SubstrateVM image builder components
/*
* Copyright (c) 2017, 2017, 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 com.oracle.svm.hosted.substitute;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import org.graalvm.compiler.debug.DebugContext;
import org.graalvm.compiler.java.FrameStateBuilder;
import org.graalvm.compiler.nodes.CallTargetNode.InvokeKind;
import org.graalvm.compiler.nodes.ConstantNode;
import org.graalvm.compiler.nodes.StructuredGraph;
import org.graalvm.compiler.nodes.UnwindNode;
import org.graalvm.compiler.nodes.ValueNode;
import com.oracle.graal.pointsto.meta.HostedProviders;
import com.oracle.svm.core.annotate.Delete;
import com.oracle.svm.core.meta.SubstrateObjectConstant;
import com.oracle.svm.core.option.SubstrateOptionsParser;
import com.oracle.svm.core.util.VMError;
import com.oracle.svm.hosted.annotation.CustomSubstitutionMethod;
import com.oracle.svm.hosted.phases.HostedGraphKit;
import jdk.vm.ci.meta.ResolvedJavaMethod;
public class DeletedMethod extends CustomSubstitutionMethod {
public static final String NATIVE_MESSAGE = String.format(
"Native method. If you intend to use the Java Native Interface (JNI), specify %1$s+JNI and see also %1$sJNIConfigurationFiles= (use %1$s+PrintFlags for details)",
SubstrateOptionsParser.HOSTED_OPTION_PREFIX);
private final Delete deleteAnnotation;
public DeletedMethod(ResolvedJavaMethod original, Delete deleteAnnotation) {
super(original);
this.deleteAnnotation = deleteAnnotation;
}
@Override
public Annotation[] getAnnotations() {
return AnnotatedField.appendAnnotationTo(original.getAnnotations(), deleteAnnotation);
}
@Override
public Annotation[] getDeclaredAnnotations() {
return AnnotatedField.appendAnnotationTo(original.getDeclaredAnnotations(), deleteAnnotation);
}
@Override
public T getAnnotation(Class annotationClass) {
if (annotationClass.isInstance(deleteAnnotation)) {
return annotationClass.cast(deleteAnnotation);
}
return original.getAnnotation(annotationClass);
}
public static final Method reportErrorMethod;
static {
try {
reportErrorMethod = VMError.class.getDeclaredMethod("unsupportedFeature", String.class);
} catch (NoSuchMethodException ex) {
throw VMError.shouldNotReachHere(ex);
}
}
@Override
public int getModifiers() {
/*
* We remove the synchonized modifier because our manually constructed graph does not need
* to do synchronization (since it is reporting a fatal error anyway).
*/
return original.getModifiers() & ~Modifier.SYNCHRONIZED;
}
@Override
public StructuredGraph buildGraph(DebugContext debug, ResolvedJavaMethod method, HostedProviders providers, Purpose purpose) {
return buildGraph(debug, method, providers, deleteAnnotation.value());
}
public static StructuredGraph buildGraph(DebugContext debug, ResolvedJavaMethod method, HostedProviders providers, String message) {
HostedGraphKit kit = new HostedGraphKit(debug, providers, method);
StructuredGraph graph = kit.getGraph();
FrameStateBuilder state = new FrameStateBuilder(null, method, graph);
state.initializeForMethodStart(null, true, providers.getGraphBuilderPlugins());
/*
* A random, but unique and consistent, number for every invoke. This is necessary because
* we, e.g., look up static analysis results by bci.
*/
int bci = 0;
graph.start().setStateAfter(state.create(bci++, graph.start()));
String msg = AnnotationSubstitutionProcessor.deleteErrorMessage(method, message, false);
ValueNode msgNode = ConstantNode.forConstant(SubstrateObjectConstant.forObject(msg), providers.getMetaAccess(), graph);
ValueNode exceptionNode = kit.createInvokeWithExceptionAndUnwind(providers.getMetaAccess().lookupJavaMethod(reportErrorMethod), InvokeKind.Static, state, bci++, bci++, msgNode);
kit.append(new UnwindNode(exceptionNode));
kit.mergeUnwinds();
assert graph.verify();
return graph;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy