< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/VirtualizerTool.java

Print this page
rev 52509 : [mq]: graal

*** 24,34 **** package org.graalvm.compiler.nodes.spi; import java.util.List; - import org.graalvm.compiler.core.common.spi.ArrayOffsetProvider; import org.graalvm.compiler.debug.DebugContext; import org.graalvm.compiler.debug.GraalError; import org.graalvm.compiler.graph.Node; import org.graalvm.compiler.nodes.ValueNode; import org.graalvm.compiler.nodes.java.MonitorIdNode; --- 24,33 ----
*** 49,67 **** public interface VirtualizerTool { /** * @return the {@link MetaAccessProvider} associated with the current compilation. */ ! MetaAccessProvider getMetaAccessProvider(); /** * @return the {@link ConstantReflectionProvider} associated with the current compilation, which * can be used to access {@link JavaConstant}s. */ ! ConstantReflectionProvider getConstantReflectionProvider(); ! ! ArrayOffsetProvider getArrayOffsetProvider(); /** * This method should be used to query the maximum size of virtualized objects before attempting * virtualization. * --- 48,64 ---- public interface VirtualizerTool { /** * @return the {@link MetaAccessProvider} associated with the current compilation. */ ! MetaAccessProvider getMetaAccess(); /** * @return the {@link ConstantReflectionProvider} associated with the current compilation, which * can be used to access {@link JavaConstant}s. */ ! ConstantReflectionProvider getConstantReflection(); /** * This method should be used to query the maximum size of virtualized objects before attempting * virtualization. *
< prev index next >