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

1 2

  /external/llvm/utils/TableGen/
CodeGenIntrinsics.h 70 /// isCommutative - True if the intrinsic is commutative.
71 bool isCommutative;
CodeGenTarget.cpp 423 isCommutative = false;
547 isCommutative = true;
  /external/llvm/lib/IR/
InlineAsm.cpp 62 MatchingInput(-1), isCommutative(false),
70 MatchingInput(other.MatchingInput), isCommutative(other.isCommutative),
96 isCommutative = false;
131 isCommutative) // Reject %%%%%
133 isCommutative = true;
Instruction.cpp 495 /// isCommutative - Return true if the instruction is commutative:
502 bool Instruction::isCommutative(unsigned op) {
Instructions.cpp     [all...]
ConstantFold.cpp     [all...]
  /external/llvm/include/llvm/IR/
Instruction.h 262 /// isCommutative - Return true if the instruction is commutative:
269 bool isCommutative() const { return isCommutative(getOpcode()); }
270 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...]
Instructions.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 122 } 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 98 if (BinOp->isCommutative() && BinOp->getOperand(0) > BinOp->getOperand(1))
157 if (!LHSBinOp->isCommutative())
TailRecursionElimination.cpp 347 if (!I->isAssociative() || !I->isCommutative()) return 0;
Reassociate.cpp 424 Instruction::isCommutative(Opcode) &&
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 209 if (I.isCommutative() && getComplexity(I.getOperand(0)) <
267 if (I.isAssociative() && I.isCommutative()) {
383 if (Instruction::isCommutative(ROp))
411 bool InnerCommutative = Instruction::isCommutative(InnerOpcode);
472 (Instruction::isCommutative(InnerOpcode) && L == B && R == A))
497 (Instruction::isCommutative(InnerOpcode) && L == C && R == B))
    [all...]
InstCombineSelect.cpp 166 } 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 471 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)
211 if (A == C || (Instruction::isCommutative(OpcodeToExtract) && A == D)) {
234 if (B == D || (Instruction::isCommutative(OpcodeToExtract) && B == C)) {
310 if (!Instruction::isCommutative(Opcode))
416 if (Simplified->isCommutative() &&
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 385 if (isa<Instruction>(I) && cast<Instruction>(I)->isCommutative()) {
    [all...]

Completed in 885 milliseconds

1 2