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

1 2 3

  /external/llvm/utils/TableGen/
CodeGenIntrinsics.h 72 /// isCommutative - True if the intrinsic is commutative.
73 bool isCommutative;
CodeGenTarget.cpp 453 isCommutative = false;
583 isCommutative = true;
  /external/llvm/lib/IR/
InlineAsm.cpp 61 MatchingInput(-1), isCommutative(false),
85 isCommutative = false;
124 isCommutative) // Reject %%%%%
126 isCommutative = true;
Instruction.cpp 512 /// isCommutative - Return true if the instruction is commutative:
519 bool Instruction::isCommutative(unsigned op) {
Instructions.cpp     [all...]
ConstantFold.cpp     [all...]
  /external/llvm/include/llvm/IR/
Instruction.h 321 /// isCommutative - Return true if the instruction is commutative:
328 bool isCommutative() const { return isCommutative(getOpcode()); }
329 static bool isCommutative(unsigned op);
InlineAsm.h 137 /// isCommutative - This is set to true for a constraint that is commutative
139 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 97 if (BinOp->isCommutative() && BinOp->getOperand(0) > BinOp->getOperand(1))
160 if (!LHSBinOp->isCommutative())
    [all...]
Reassociate.cpp 304 assert(I->isCommutative() && "Expected commutative operator.");
539 assert(I->isAssociative() && I->isCommutative() &&
    [all...]
TailRecursionElimination.cpp 544 if (!I->isAssociative() || !I->isCommutative()) return nullptr;
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.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/Utils/
LoopUtils.cpp 248 if (!Cur->isCommutative() && !IsAPhi && !isa<SelectInst>(Cur) &&
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 197 if (I.isCommutative() && getComplexity(I.getOperand(0)) <
255 if (I.isAssociative() && I.isCommutative()) {
377 if (Instruction::isCommutative(ROp))
470 bool InnerCommutative = Instruction::isCommutative(InnerOpcode);
598 (Instruction::isCommutative(InnerOpcode) && L == B && R == A))
623 (Instruction::isCommutative(InnerOpcode) && L == C && R == B))
    [all...]
InstCombineSelect.cpp 164 } else if (!TI->isCommutative()) {
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 157 if ((L == A && R == B) || (Instruction::isCommutative(OpcodeToExpand)
180 if ((L == B && R == C) || (Instruction::isCommutative(OpcodeToExpand)
249 if (!Instruction::isCommutative(Opcode))
355 if (Simplified->isCommutative() &&
    [all...]

Completed in 520 milliseconds

1 2 3