Searched refs:isCommutative (Results 1 - 25 of 27) sorted by relevance

12

/external/llvm/lib/IR/
H A DInlineAsm.cpp62 MatchingInput(-1), isCommutative(false),
86 isCommutative = false;
121 isCommutative) // Reject %%%%%
123 isCommutative = true;
H A DInstruction.cpp478 /// isCommutative - Return true if the instruction is commutative:
485 bool Instruction::isCommutative(unsigned op) { function in class:Instruction
H A DInstructions.cpp2003 if (!isCommutative())
3123 bool CmpInst::isCommutative() const { function in class:CmpInst
3125 return IC->isCommutative();
3126 return cast<FCmpInst>(this)->isCommutative();
H A DConstantFold.cpp1048 if (Instruction::isCommutative(Opcode))
1181 if (Instruction::isCommutative(Opcode))
/external/llvm/utils/TableGen/
H A DCodeGenIntrinsics.h71 /// isCommutative - True if the intrinsic is commutative.
72 bool isCommutative; member in struct:llvm::CodeGenIntrinsic
H A DCodeGenTarget.cpp449 isCommutative = false;
576 isCommutative = true;
H A DCodeGenDAGPatterns.cpp1528 return Int->isCommutative;
/external/llvm/include/llvm/IR/
H A DInstruction.h280 /// isCommutative - Return true if the instruction is commutative:
287 bool isCommutative() const { return isCommutative(getOpcode()); } function in class:llvm::Instruction
288 static bool isCommutative(unsigned op);
H A DInlineAsm.h140 /// isCommutative - This is set to true for a constraint that is commutative
142 bool isCommutative; member in struct:llvm::InlineAsm::ConstraintInfo
H A DInstrTypes.h777 bool isCommutative() const;
H A DInstructions.h1075 bool isCommutative() const { return isEquality(); } function in class:llvm::ICmpInst
1190 bool isCommutative() const { function in class:llvm::FCmpInst
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRop.java370 public boolean isCommutative() { method in class:Rop
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DLiteralOpUpgrader.java122 } else if (opcode.isCommutative()
/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp94 if (BinOp->isCommutative() && BinOp->getOperand(0) > BinOp->getOperand(1))
153 if (!LHSBinOp->isCommutative())
H A DTailRecursionElimination.cpp542 if (!I->isAssociative() || !I->isCommutative()) return nullptr;
H A DLoopRerollPass.cpp976 if (!Swapped && J1->isCommutative() && !SomeOpMatched &&
H A DReassociate.cpp503 Instruction::isCommutative(Opcode) &&
H A DGVN.cpp171 if (I->isCommutative()) {
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp211 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))
H A DInstCombineSelect.cpp191 } else if (!TI->isCommutative()) {
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DRopTranslator.java471 if (insn.getOpcode().isCommutative()
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp146 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() &&
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp385 if (isa<Instruction>(I) && cast<Instruction>(I)->isCommutative()) {
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp968 if (isa<BinaryOperator>(VL0) && VL0->isCommutative()) {
1764 if (isa<BinaryOperator>(VL0) && VL0->isCommutative())
H A DLoopVectorize.cpp4865 if (!Cur->isCommutative() && !IsAPhi && !isa<SelectInst>(Cur) &&
5028 bool FastMath = (FP && I->isCommutative() && I->isAssociative());

Completed in 6215 milliseconds

12