Searched refs:CreateURem (Results 1 - 12 of 12) sorted by relevance

/freebsd-9.3-release/contrib/llvm/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp112 SlowRemainderV = SlowBuilder.CreateURem(Dividend, Divisor);
129 Value *ShortRemainderV = FastBuilder.CreateURem(ShortDividendV,
H A DIntegerDivision.cpp51 Value *URem = Builder.CreateURem(UDividend, UDivisor);
463 ExtRem = Builder.CreateURem(ExtDividend, ExtDivisor);
H A DLoopUnrollRuntime.cpp284 BinaryOperator::CreateURem(TripCount,
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DNoFolder.h109 Instruction *CreateURem(Constant *LHS, Constant *RHS) const { function in class:llvm::NoFolder
110 return BinaryOperator::CreateURem(LHS, RHS);
H A DConstantFolder.h66 Constant *CreateURem(Constant *LHS, Constant *RHS) const { function in class:llvm::ConstantFolder
H A DTargetFolder.h80 Constant *CreateURem(Constant *LHS, Constant *RHS) const { function in class:llvm::TargetFolder
/freebsd-9.3-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp238 Rem = Builder->CreateURem(Op0BO, Op1BO);
1157 return new ZExtInst(Builder->CreateURem(ZOp0->getOperand(0), ZOp1),
1203 return BinaryOperator::CreateURem(Op0, Op1, I.getName());
H A DInstCombineCompares.cpp1635 Builder->CreateURem(BO->getOperand(0), BO->getOperand(1),
/freebsd-9.3-release/contrib/llvm/include/llvm/IR/
H A DIRBuilder.h713 Value *CreateURem(Value *LHS, Value *RHS, const Twine &Name = "") { function in class:llvm::IRBuilder
716 return Insert(Folder.CreateURem(LC, RC), Name);
717 return Insert(BinaryOperator::CreateURem(LHS, RHS), Name);
/freebsd-9.3-release/contrib/llvm/lib/IR/
H A DCore.cpp2100 return wrap(unwrap(B)->CreateURem(unwrap(LHS), unwrap(RHS), Name));
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprScalar.cpp2180 return Builder.CreateURem(Ops.LHS, Ops.RHS, "rem");
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1633 Value *R = BypassBuilder.CreateURem(Count, Step, "n.mod.vf");

Completed in 141 milliseconds