< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/arithmetic/IntegerExactArithmeticNode.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 22,43 **** */ package org.graalvm.compiler.replacements.nodes.arithmetic; ! import org.graalvm.compiler.nodes.AbstractBeginNode; ! import org.graalvm.compiler.nodes.extended.AnchoringNode; ! import org.graalvm.compiler.nodes.spi.Lowerable; ! ! import jdk.vm.ci.meta.SpeculationLog.SpeculationReason; ! ! public interface IntegerExactArithmeticNode extends Lowerable { ! ! IntegerExactArithmeticSplitNode createSplit(AbstractBeginNode next, AbstractBeginNode deopt); ! ! SpeculationReason getSpeculation(); ! ! AnchoringNode getAnchor(); ! ! void setAnchor(AnchoringNode x); ! } --- 22,28 ---- */ package org.graalvm.compiler.replacements.nodes.arithmetic; ! public interface IntegerExactArithmeticNode { }
< prev index next >