< prev index next >

src/jdk.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotJVMCIRuntimeProvider.java

Print this page

        

*** 22,40 **** */ package jdk.vm.ci.hotspot; import java.io.OutputStream; import jdk.vm.ci.common.JVMCIError; - import jdk.vm.ci.meta.JVMCIMetaAccessContext; import jdk.vm.ci.meta.JavaKind; import jdk.vm.ci.meta.JavaType; import jdk.vm.ci.meta.ResolvedJavaType; import jdk.vm.ci.runtime.JVMCIRuntime; - import jdk.internal.misc.Unsafe; - - //JaCoCo Exclude /** * Configuration information for the HotSpot JVMCI runtime. */ public interface HotSpotJVMCIRuntimeProvider extends JVMCIRuntime { --- 22,37 ---- */ package jdk.vm.ci.hotspot; import java.io.OutputStream; + import jdk.internal.misc.Unsafe; import jdk.vm.ci.common.JVMCIError; import jdk.vm.ci.meta.JavaKind; import jdk.vm.ci.meta.JavaType; import jdk.vm.ci.meta.ResolvedJavaType; import jdk.vm.ci.runtime.JVMCIRuntime; /** * Configuration information for the HotSpot JVMCI runtime. */ public interface HotSpotJVMCIRuntimeProvider extends JVMCIRuntime {
*** 68,79 **** * * @return the {@link ResolvedJavaType} corresponding to {@code javaClass} */ ResolvedJavaType fromClass(Class<?> clazz); - JVMCIMetaAccessContext getMetaAccessContext(); - /** * The offset from the origin of an array to the first element. * * @return the offset in bytes */ --- 65,74 ----
< prev index next >