/jdk-11.0.2/src/jdk.internal.vm.compiler/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyCallerSensitiveMethods.java
https://github.com/zxiaofan/JDK · Java · 97 lines · 59 code · 13 blank · 25 comment · 12 complexity · f245b45032c6b8baf876e1c7839dd6d2 MD5 · raw file
- /*
- * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
- * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- */
- package org.graalvm.compiler.phases.verify;
- import static org.graalvm.compiler.serviceprovider.GraalServices.Java8OrEarlier;
- import java.lang.annotation.Annotation;
- import org.graalvm.compiler.nodes.Invoke;
- import org.graalvm.compiler.nodes.StructuredGraph;
- import org.graalvm.compiler.nodes.java.MethodCallTargetNode;
- import org.graalvm.compiler.phases.VerifyPhase;
- import org.graalvm.compiler.phases.tiers.PhaseContext;
- import jdk.vm.ci.meta.ResolvedJavaMethod;
- import jdk.vm.ci.meta.ResolvedJavaType;
- /**
- * Verifies a method is annotated with CallerSensitive iff it calls Reflection#getCallerClass().
- */
- public class VerifyCallerSensitiveMethods extends VerifyPhase<PhaseContext> {
- Class<? extends Annotation> callerSensitiveClass;
- Class<?> reflectionClass;
- @Override
- public boolean checkContract() {
- return false;
- }
- @SuppressWarnings("unchecked")
- public VerifyCallerSensitiveMethods() {
- try {
- ClassLoader classLoader = ClassLoader.getSystemClassLoader();
- if (Java8OrEarlier) {
- reflectionClass = classLoader.loadClass("sun.reflect.Reflection");
- callerSensitiveClass = (Class<? extends Annotation>) classLoader.loadClass("sun.reflect.ConstantPool");
- } else {
- reflectionClass = classLoader.loadClass("jdk.internal.reflect.Reflection");
- callerSensitiveClass = (Class<? extends Annotation>) classLoader.loadClass("jdk.internal.reflect.ConstantPool");
- }
- } catch (ClassNotFoundException e) {
- throw new AssertionError(e);
- }
- }
- @Override
- protected boolean verify(StructuredGraph graph, PhaseContext context) {
- Invoke invoke = callsReflectionGetCallerClass(graph, context);
- Annotation annotation = graph.method().getAnnotation(callerSensitiveClass);
- if (invoke != null) {
- if (annotation == null) {
- StackTraceElement e = graph.method().asStackTraceElement(invoke.bci());
- throw new VerificationError(String.format("%s: method that calls Reflection.getCallerClass() must be annotated with @CallerSensitive", e));
- }
- } else if (annotation != null) {
- throw new VerificationError(String.format("%s: method annotated with @CallerSensitive does not call Reflection.getCallerClass()", graph.method().format("%H.%n(%p)")));
- }
- return true;
- }
- private Invoke callsReflectionGetCallerClass(StructuredGraph graph, PhaseContext context) {
- ResolvedJavaType reflectionType = context.getMetaAccess().lookupJavaType(reflectionClass);
- for (MethodCallTargetNode t : graph.getNodes(MethodCallTargetNode.TYPE)) {
- ResolvedJavaMethod callee = t.targetMethod();
- if (callee.getDeclaringClass().equals(reflectionType)) {
- if (callee.getName().equals("getCallerClass")) {
- return t.invoke();
- }
- }
- }
- return null;
- }
- }