< prev index next >

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

Print this page
rev 52509 : [mq]: graal2

*** 22,42 **** */ package org.graalvm.compiler.nodes.spi; - import org.graalvm.compiler.core.common.spi.ArrayOffsetProvider; import org.graalvm.compiler.graph.Node; import org.graalvm.compiler.nodes.ValueNode; import org.graalvm.compiler.nodes.memory.address.AddressNode; import jdk.vm.ci.meta.JavaKind; /** * Provides a capability for replacing a higher node with one or more lower level nodes. */ ! public interface LoweringProvider extends ArrayOffsetProvider { void lower(Node n, LoweringTool tool); /** * Reconstructs the array index from an address node that was created as a lowering of an --- 22,41 ---- */ package org.graalvm.compiler.nodes.spi; import org.graalvm.compiler.graph.Node; import org.graalvm.compiler.nodes.ValueNode; import org.graalvm.compiler.nodes.memory.address.AddressNode; import jdk.vm.ci.meta.JavaKind; /** * Provides a capability for replacing a higher node with one or more lower level nodes. */ ! public interface LoweringProvider { void lower(Node n, LoweringTool tool); /** * Reconstructs the array index from an address node that was created as a lowering of an
< prev index next >