/external/llvm/include/llvm/ |
H A D | Operator.h | 151 OpC == Instruction::UDiv || 234 : public ConcreteOperator<PossiblyExactOperator, Instruction::UDiv> {
|
H A D | InstrTypes.h | 277 DEFINE_HELPERS(UDiv, Exact) // CreateExactUDiv
|
/external/llvm/include/llvm/Support/ |
H A D | PatternMatch.h | 349 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 D | SimplifyIndVar.cpp | 98 case Instruction::UDiv:
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineMulDivRem.cpp | 185 (BO->getOpcode() != Instruction::UDiv && 193 (BO->getOpcode() == Instruction::UDiv || 206 if (BO->getOpcode() == Instruction::UDiv)
|
H A D | InstCombineCasts.cpp | 178 case Instruction::UDiv: 358 case Instruction::UDiv: 360 // UDiv and URem can be truncated if all the truncated bits are zero.
|
H A D | InstCombineCompares.cpp | 974 TheDiv->getOpcode() == Instruction::UDiv); 1344 case Instruction::UDiv: 2470 case Instruction::UDiv:
|
/external/llvm/lib/Analysis/ |
H A D | ScalarEvolution.cpp | 204 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 D | ValueTracking.cpp | 379 case Instruction::UDiv: { 1829 case Instruction::UDiv:
|
H A D | InstructionSimplify.cpp | 960 /// 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 D | LazyValueInfo.cpp | 729 case Instruction::UDiv:
|
H A D | ScalarEvolutionExpander.cpp | 835 return InsertBinop(Instruction::UDiv, LHS, RHS);
|
/external/llvm/lib/VMCore/ |
H A D | ConstantFold.cpp | 894 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 D | Instruction.cpp | 114 case UDiv: return "udiv";
|
H A D | Constants.cpp | 235 case Instruction::UDiv: 1609 case Instruction::UDiv: 1956 return get(Instruction::UDiv, C1, C2,
|
/external/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngine.cpp | 691 case Instruction::UDiv: 709 case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break;
|
/external/llvm/lib/Target/CppBackend/ |
H A D | CPPBackend.cpp | 830 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 D | Execution.cpp | 537 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 D | LLLexer.cpp | 598 INSTKEYWORD(udiv, UDiv); INSTKEYWORD(sdiv, SDiv); INSTKEYWORD(fdiv, FDiv);
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | Reassociate.cpp | 138 I->getOpcode() == Instruction::UDiv ||
|
H A D | IndVarSimplify.cpp | 752 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 D | llvm-stress.cpp | 334 case 4:{Op = (isFloat?Instruction::FDiv : Instruction::UDiv); break; }
|
/external/llvm/unittests/Support/ |
H A D | ConstantRangeTest.cpp | 375 TEST_F(ConstantRangeTest, UDiv) {
|
/external/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 127 case bitc::BINOP_UDIV: return Instruction::UDiv; 1187 Opc == Instruction::UDiv || 2039 Opc == Instruction::UDiv ||
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | FastISel.cpp | 944 case Instruction::UDiv:
|