src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/Node.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/Node.java

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/Node.java

Print this page

        

*** 41,50 **** --- 41,51 ---- import org.graalvm.compiler.core.common.Fields; import org.graalvm.compiler.core.common.type.AbstractPointerStamp; import org.graalvm.compiler.core.common.type.Stamp; import org.graalvm.compiler.debug.DebugCloseable; + import org.graalvm.compiler.debug.DebugContext; import org.graalvm.compiler.graph.Graph.NodeEventListener; import org.graalvm.compiler.graph.Graph.Options; import org.graalvm.compiler.graph.iterators.NodeIterable; import org.graalvm.compiler.graph.iterators.NodePredicate; import org.graalvm.compiler.graph.spi.Simplifiable;
*** 261,270 **** --- 262,278 ---- public final OptionValues getOptions() { return graph == null ? null : graph.getOptions(); } /** + * Gets the debug context associated with this node's graph. + */ + public final DebugContext getDebug() { + return graph.getDebug(); + } + + /** * Returns an {@link NodeIterable iterable} which can be used to traverse all non-null input * edges of this node. * * @return an {@link NodeIterable iterable} for all non-null input edges. */
src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/Node.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File