/external/llvm/lib/Transforms/Utils/ |
H A D | IntegerDivision.cpp | 89 Value *Quotient = Builder.CreateUDiv(Dividend, Divisor); 138 Value *Q_Mag = Builder.CreateUDiv(U_Dvnd, U_Dvsr); 624 ExtDiv = Builder.CreateUDiv(ExtDividend, ExtDivisor); 674 ExtDiv = Builder.CreateUDiv(ExtDividend, ExtDivisor);
|
H A D | BypassSlowDivision.cpp | 112 SlowQuotientV = SlowBuilder.CreateUDiv(Dividend, Divisor);
|
/external/llvm/include/llvm/IR/ |
H A D | NoFolder.h | 88 Instruction *CreateUDiv(Constant *LHS, Constant *RHS, function in class:llvm::NoFolder 91 return BinaryOperator::CreateUDiv(LHS, RHS);
|
H A D | ConstantFolder.h | 55 Constant *CreateUDiv(Constant *LHS, Constant *RHS, function in class:llvm::ConstantFolder
|
H A D | IRBuilder.h | 829 Value *CreateUDiv(Value *LHS, Value *RHS, const Twine &Name = "", function in class:llvm::IRBuilder 833 return Insert(Folder.CreateUDiv(LC, RC, isExact), Name); 835 return Insert(BinaryOperator::CreateUDiv(LHS, RHS), Name); 839 return CreateUDiv(LHS, RHS, Name, true);
|
/external/llvm/unittests/Transforms/Utils/ |
H A D | IntegerDivision.cpp | 71 Value *Div = Builder.CreateUDiv(A, B); 192 Value *Div = Builder.CreateUDiv(A, B);
|
/external/llvm/include/llvm/Analysis/ |
H A D | TargetFolder.h | 71 Constant *CreateUDiv(Constant *LHS, Constant *RHS, bool isExact = false)const{ function in class:llvm::TargetFolder
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineMulDivRem.cpp | 1065 BinaryOperator *BO = BinaryOperator::CreateUDiv( 1078 Builder->CreateUDiv(ZOp0->getOperand(0), ZOp1, "div", I.isExact()), 1163 auto *BO = BinaryOperator::CreateUDiv(Op0, Op1, I.getName()); 1173 auto *BO = BinaryOperator::CreateUDiv(Op0, Op1, I.getName());
|
H A D | InstCombineCompares.cpp | 1050 Builder->CreateUDiv(Shr->getOperand(0), DivCst, "", Shr->isExact());
|
/external/clang/lib/CodeGen/ |
H A D | CGExprComplex.cpp | 792 DSTr = Builder.CreateUDiv(Tmp3, Tmp6); 793 DSTi = Builder.CreateUDiv(Tmp9, Tmp6);
|
H A D | CGExprScalar.cpp | 2300 return Builder.CreateUDiv(Ops.LHS, Ops.RHS, "div");
|
/external/llvm/lib/IR/ |
H A D | Core.cpp | 2367 return wrap(unwrap(B)->CreateUDiv(unwrap(LHS), unwrap(RHS), Name));
|
/external/llvm/bindings/ocaml/llvm/ |
H A D | llvm.mli | 2122 See the method [llvm::LLVMBuilder::CreateUDiv]. *)
|