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

1 2

  /external/llvm/utils/TableGen/
CodeGenIntrinsics.h 71 /// isCommutative - True if the intrinsic is commutative.
72 bool isCommutative;
CodeGenTarget.cpp 449 isCommutative = false;
576 isCommutative = true;
  /external/llvm/lib/IR/
InlineAsm.cpp 62 MatchingInput(-1), isCommutative(false),
86 isCommutative = false;
121 isCommutative) // Reject %%%%%
123 isCommutative = true;
Instruction.cpp 478 /// isCommutative - Return true if the instruction is commutative:
485 bool Instruction::isCommutative(unsigned op) {
Instructions.cpp     [all...]
ConstantFold.cpp     [all...]
  /external/llvm/include/llvm/IR/
Instruction.h 280 /// isCommutative - Return true if the instruction is commutative:
287 bool isCommutative() const { return isCommutative(getOpcode()); }
288 static bool isCommutative(unsigned op);
InlineAsm.h 140 /// isCommutative - This is set to true for a constraint that is commutative
142 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 94 if (BinOp->isCommutative() && BinOp->getOperand(0) > BinOp->getOperand(1))
153 if (!LHSBinOp->isCommutative())
TailRecursionElimination.cpp 542 if (!I->isAssociative() || !I->isCommutative()) return nullptr;
    [all...]
LoopRerollPass.cpp     [all...]
Reassociate.cpp 503 Instruction::isCommutative(Opcode) &&
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 211 if (I.isCommutative() && getComplexity(I.getOperand(0)) <
269 if (I.isAssociative() && I.isCommutative()) {
391 if (Instruction::isCommutative(ROp))
453 bool InnerCommutative = Instruction::isCommutative(InnerOpcode);
569 (Instruction::isCommutative(InnerOpcode) && L == B && R == A))
594 (Instruction::isCommutative(InnerOpcode) && L == C && R == B))
    [all...]
InstCombineSelect.cpp 191 } else if (!TI->isCommutative()) {
    [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/Analysis/
InstructionSimplify.cpp 146 if ((L == A && R == B) || (Instruction::isCommutative(OpcodeToExpand)
169 if ((L == B && R == C) || (Instruction::isCommutative(OpcodeToExpand)
238 if (!Instruction::isCommutative(Opcode))
344 if (Simplified->isCommutative() &&
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 385 if (isa<Instruction>(I) && cast<Instruction>(I)->isCommutative()) {
    [all...]

Completed in 465 milliseconds

1 2