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

/external/llvm/utils/TableGen/
H A DCodeGenIntrinsics.h70 /// isCommutative - True if the intrinsic is commutative.
71 bool isCommutative; member in struct:llvm::CodeGenIntrinsic
H A DCodeGenTarget.cpp409 isCommutative = false;
533 isCommutative = true;
H A DCodeGenDAGPatterns.cpp1375 return Int->isCommutative;
/external/llvm/lib/VMCore/
H A DInlineAsm.cpp62 MatchingInput(-1), isCommutative(false),
70 MatchingInput(other.MatchingInput), isCommutative(other.isCommutative),
96 isCommutative = false;
131 isCommutative) // Reject %%%%%
133 isCommutative = true;
H A DInstruction.cpp387 /// isCommutative - Return true if the instruction is commutative:
394 bool Instruction::isCommutative(unsigned op) { function in class:Instruction
H A DInstructions.cpp1981 if (!isCommutative())
2906 bool CmpInst::isCommutative() const { function in class:CmpInst
2908 return IC->isCommutative();
2909 return cast<FCmpInst>(this)->isCommutative();
H A DConstantFold.cpp1035 if (Instruction::isCommutative(Opcode))
1168 if (Instruction::isCommutative(Opcode))
/external/llvm/include/llvm/
H A DInstruction.h208 /// isCommutative - Return true if the instruction is commutative:
215 bool isCommutative() const { return isCommutative(getOpcode()); } function in class:llvm::Instruction
216 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.h768 bool isCommutative() const;
H A DInstructions.h1005 bool isCommutative() const { return isEquality(); } function in class:llvm::ICmpInst
1121 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/InstCombine/
H A DInstructionCombining.cpp188 if (I.isCommutative() && getComplexity(I.getOperand(0)) <
246 if (I.isAssociative() && I.isCommutative()) {
362 if (Instruction::isCommutative(ROp))
390 bool InnerCommutative = Instruction::isCommutative(InnerOpcode);
451 (Instruction::isCommutative(InnerOpcode) && L == B && R == A))
476 (Instruction::isCommutative(InnerOpcode) && L == C && R == B))
H A DInstCombineSelect.cpp166 } else if (!TI->isCommutative()) {
/external/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp334 if (!I->isAssociative() || !I->isCommutative()) return 0;
H A DReassociate.cpp456 Instruction::isCommutative(Opcode) &&
H A DGVN.cpp167 if (I->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)
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() &&
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp364 if (isa<Instruction>(I) && cast<Instruction>(I)->isCommutative()) {

Completed in 715 milliseconds