HomeSort by relevance Sort by last modified time
    Searched refs:isCommutative (Results 1 - 25 of 35) sorted by null

1 2

  /external/llvm/utils/TableGen/
CodeGenIntrinsics.h 71 /// isCommutative - True if the intrinsic is commutative.
72 bool isCommutative;
CodeGenTarget.cpp 442 isCommutative = false;
571 isCommutative = true;
  /external/llvm/lib/IR/
InlineAsm.cpp 62 MatchingInput(-1), isCommutative(false),
86 isCommutative = false;
125 isCommutative) // Reject %%%%%
127 isCommutative = true;
Instruction.cpp 487 /// isCommutative - Return true if the instruction is commutative:
494 bool Instruction::isCommutative(unsigned op) {
Instructions.cpp     [all...]
ConstantFold.cpp     [all...]
  /external/llvm/include/llvm/IR/
Instruction.h 319 /// isCommutative - Return true if the instruction is commutative:
326 bool isCommutative() const { return isCommutative(getOpcode()); }
327 static bool isCommutative(unsigned op);
InlineAsm.h 136 /// isCommutative - This is set to true for a constraint that is commutative
138 bool isCommutative;
InstrTypes.h     [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Rop.java 370 public boolean isCommutative() {
  /dalvik/dx/src/com/android/dx/rop/code/
Rop.java 370 public boolean isCommutative() {
  /dalvik/dx/src/com/android/dx/ssa/
LiteralOpUpgrader.java 121 } else if (opcode.isCommutative()
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
Rop.java 370 public boolean isCommutative() {
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
LiteralOpUpgrader.java 122 } else if (opcode.isCommutative()
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 96 if (BinOp->isCommutative() && BinOp->getOperand(0) > BinOp->getOperand(1))
159 if (!LHSBinOp->isCommutative())
Reassociate.cpp 336 assert(I->isCommutative() && "Expected commutative operator.");
572 assert(I->isAssociative() && I->isCommutative() &&
    [all...]
TailRecursionElimination.cpp 537 if (!I->isAssociative() || !I->isCommutative()) return nullptr;
    [all...]
LoopRerollPass.cpp     [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopTranslator.java 464 if (insn.getOpcode().isCommutative()
  /dalvik/dx/src/com/android/dx/dex/code/
RopTranslator.java 470 if (insn.getOpcode().isCommutative()
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
RopTranslator.java 471 if (insn.getOpcode().isCommutative()
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 188 if (I.isCommutative() && getComplexity(I.getOperand(0)) <
246 if (I.isAssociative() && I.isCommutative()) {
368 if (Instruction::isCommutative(ROp))
460 bool InnerCommutative = Instruction::isCommutative(InnerOpcode);
576 (Instruction::isCommutative(InnerOpcode) && L == B && R == A))
601 (Instruction::isCommutative(InnerOpcode) && L == C && R == B))
    [all...]
InstCombineSelect.cpp 191 } else if (!TI->isCommutative()) {
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp     [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 156 if ((L == A && R == B) || (Instruction::isCommutative(OpcodeToExpand)
179 if ((L == B && R == C) || (Instruction::isCommutative(OpcodeToExpand)
248 if (!Instruction::isCommutative(Opcode))
354 if (Simplified->isCommutative() &&
    [all...]

Completed in 646 milliseconds

1 2