Searched refs:UDiv (Results 1 - 25 of 36) sorted by relevance

12

/external/llvm/include/llvm/
H A DOperator.h151 OpC == Instruction::UDiv ||
234 : public ConcreteOperator<PossiblyExactOperator, Instruction::UDiv> {
H A DInstrTypes.h277 DEFINE_HELPERS(UDiv, Exact) // CreateExactUDiv
/external/llvm/include/llvm/Support/
H A DPatternMatch.h349 inline BinaryOp_match<LHS, RHS, Instruction::UDiv>
351 return BinaryOp_match<LHS, RHS, Instruction::UDiv>(L, R);
458 /// m_IDiv - Matches UDiv and SDiv.
460 inline BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>
462 return BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>(L, R);
/external/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp98 case Instruction::UDiv:
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp185 (BO->getOpcode() != Instruction::UDiv &&
193 (BO->getOpcode() == Instruction::UDiv ||
206 if (BO->getOpcode() == Instruction::UDiv)
H A DInstCombineCasts.cpp178 case Instruction::UDiv:
358 case Instruction::UDiv:
360 // UDiv and URem can be truncated if all the truncated bits are zero.
H A DInstCombineCompares.cpp974 TheDiv->getOpcode() == Instruction::UDiv);
1344 case Instruction::UDiv:
2470 case Instruction::UDiv:
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp204 const SCEVUDivExpr *UDiv = cast<SCEVUDivExpr>(this); local
205 OS << "(" << *UDiv->getLHS() << " /u " << *UDiv->getRHS() << ")";
3324 if (const SCEVUDivExpr *UDiv = dyn_cast<SCEVUDivExpr>(S)) {
3325 ConstantRange X = getUnsignedRange(UDiv->getLHS());
3326 ConstantRange Y = getUnsignedRange(UDiv->getRHS());
3327 return setUnsignedRange(UDiv, ConservativeResult.intersectWith(X.udiv(Y)));
3465 if (const SCEVUDivExpr *UDiv = dyn_cast<SCEVUDivExpr>(S)) {
3466 ConstantRange X = getSignedRange(UDiv->getLHS());
3467 ConstantRange Y = getSignedRange(UDiv
[all...]
H A DValueTracking.cpp379 case Instruction::UDiv: {
1829 case Instruction::UDiv:
H A DInstructionSimplify.cpp960 /// SimplifyDiv - Given operands for an SDiv or UDiv, see if we can
1048 /// SimplifyUDivInst - Given operands for a UDiv, see if we can
1052 if (Value *V = SimplifyDiv(Instruction::UDiv, Op0, Op1, Q, MaxRecurse))
2137 case Instruction::UDiv:
2682 case Instruction::UDiv: return SimplifyUDivInst(LHS, RHS, Q, MaxRecurse);
2785 case Instruction::UDiv:
H A DLazyValueInfo.cpp729 case Instruction::UDiv:
H A DScalarEvolutionExpander.cpp835 return InsertBinop(Instruction::UDiv, LHS, RHS);
/external/llvm/lib/VMCore/
H A DConstantFold.cpp894 case Instruction::UDiv:
897 if (Opcode == Instruction::UDiv || Opcode == Instruction::SDiv)
945 case Instruction::UDiv:
1046 case Instruction::UDiv:
1094 case Instruction::UDiv:
1179 case Instruction::UDiv:
H A DInstruction.cpp114 case UDiv: return "udiv";
H A DConstants.cpp235 case Instruction::UDiv:
1609 case Instruction::UDiv:
1956 return get(Instruction::UDiv, C1, C2,
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp691 case Instruction::UDiv:
709 case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break;
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp830 case Instruction::UDiv: Out << "getUDiv("; break;
1170 case Instruction::UDiv:
1190 case Instruction::UDiv:Out << "Instruction::UDiv"; break;
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp537 case Instruction::UDiv: R.IntVal = Src1.IntVal.udiv(Src2.IntVal); break;
1219 case Instruction::UDiv: Dest.IntVal = Op0.IntVal.udiv(Op1.IntVal); break;
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp598 INSTKEYWORD(udiv, UDiv); INSTKEYWORD(sdiv, SDiv); INSTKEYWORD(fdiv, FDiv);
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp138 I->getOpcode() == Instruction::UDiv ||
H A DIndVarSimplify.cpp752 case Instruction::UDiv:
1107 // If the backedge-taken count is a UDiv, it's very likely a UDiv that
1109 // precise expression, rather than a UDiv from the user's code. If we can't
1110 // find a UDiv in the code with some simple searching, assume the former and
/external/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp334 case 4:{Op = (isFloat?Instruction::FDiv : Instruction::UDiv); break; }
/external/llvm/unittests/Support/
H A DConstantRangeTest.cpp375 TEST_F(ConstantRangeTest, UDiv) {
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp127 case bitc::BINOP_UDIV: return Instruction::UDiv;
1187 Opc == Instruction::UDiv ||
2039 Opc == Instruction::UDiv ||
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp944 case Instruction::UDiv:

Completed in 1033 milliseconds

12