Searched refs:associative (Results 1 - 3 of 3) 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.java487 protected Add(boolean associative, boolean commutative) { argument
488 super("+", associative, commutative);
494 protected Sub(boolean associative, boolean commutative) { argument
495 super("-", associative, commutative);
501 protected Mul(boolean associative, boolean commutative) { argument
502 super("*", associative, commutative);
508 protected MulHigh(boolean associative, boolean commutative) { argument
509 super("*H", associative, commutative);
515 protected UMulHigh(boolean associative, boolean commutative) { argument
516 super("|*H|", associative, commutativ
522 Div(boolean associative, boolean commutative) argument
529 Rem(boolean associative, boolean commutative) argument
536 And(boolean associative, boolean commutative) argument
543 Or(boolean associative, boolean commutative) argument
550 Xor(boolean associative, boolean commutative) argument
555 private final boolean associative; field in class:ArithmeticOpTable.BinaryOp
558 BinaryOp(String operation, boolean associative, boolean commutative) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/
H A DSubNode.java74 boolean associative = op.isAssociative();
75 if (associative) {
116 if (associative && self != null) {
140 if (associative && self != null) {
H A DAddNode.java70 boolean associative = op.isAssociative();
71 if (associative) {
92 if (associative && self != null) {

Completed in 49 milliseconds