< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/ResolveMethodAndLoadCountersStubCall.java

Print this page

        

*** 41,50 **** --- 41,51 ---- import org.graalvm.compiler.nodeinfo.NodeInfo; import org.graalvm.compiler.nodes.ValueNode; import org.graalvm.compiler.nodes.spi.LIRLowerable; import org.graalvm.compiler.nodes.spi.NodeLIRBuilderTool; import org.graalvm.compiler.nodes.util.GraphUtil; + import org.graalvm.compiler.word.Word; import jdk.vm.ci.meta.Constant; import jdk.vm.ci.meta.Value; /**
*** 65,75 **** this.method = method; this.methodDescription = methodDescription; } @NodeIntrinsic ! public static native MethodCountersPointer resolveMethodAndLoadCounters(MethodPointer method, KlassPointer klassHint, Object methodDescription); @Override public Node canonical(CanonicalizerTool tool) { if (method != null) { methodConstant = GraphUtil.foldIfConstantAndRemove(this, method); --- 66,76 ---- this.method = method; this.methodDescription = methodDescription; } @NodeIntrinsic ! public static native MethodCountersPointer resolveMethodAndLoadCounters(MethodPointer method, KlassPointer klassHint, Word methodDescription); @Override public Node canonical(CanonicalizerTool tool) { if (method != null) { methodConstant = GraphUtil.foldIfConstantAndRemove(this, method);
< prev index next >