Searched refs:umulHigh (Results 1 - 2 of 2) sorted by relevance

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/
H A DArithmeticOpTable.java68 private final BinaryOp<UMulHigh> umulHigh; field in class:ArithmeticOpTable
129 BinaryOp<UMulHigh> umulHigh = wrapIfNonNull(wrapper::wrapBinaryOp, inner.getUMulHigh());
150 return new ArithmeticOpTable(neg, add, sub, mul, mulHigh, umulHigh, div, rem, not, and, or, xor, shl, shr, ushr, abs, sqrt, zeroExtend, signExtend, narrow, floatConvert);
153 protected ArithmeticOpTable(UnaryOp<Neg> neg, BinaryOp<Add> add, BinaryOp<Sub> sub, BinaryOp<Mul> mul, BinaryOp<MulHigh> mulHigh, BinaryOp<UMulHigh> umulHigh, BinaryOp<Div> div, BinaryOp<Rem> rem, argument
161 this.umulHigh = umulHigh;
228 return umulHigh;
347 Objects.equals(umulHigh, that.umulHigh) &&
387 return getClass().getSimpleName() + "[" + toString(neg, add, sub, mul, mulHigh, umulHigh, di
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/
H A DIntegerStampTest.java521 return umulHigh(a, b, bits);
537 private static long umulHigh(long a, long b, int bits) { method in class:IntegerStampTest

Completed in 60 milliseconds