Home
last modified time | relevance | path

Searched refs:CreateFRem (Results 1 – 9 of 9) sorted by relevance

/minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DNoFolder.h115 Instruction *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem() function
116 return BinaryOperator::CreateFRem(LHS, RHS); in CreateFRem()
H A DConstantFolder.h72 Constant *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem() function
H A DIRBuilder.h797 Value *CreateFRem(Value *LHS, Value *RHS, const Twine &Name = "",
801 return Insert(Folder.CreateFRem(LC, RC), Name);
802 return Insert(AddFPMathAttributes(BinaryOperator::CreateFRem(LHS, RHS),
/minix3/external/bsd/llvm/dist/llvm/include/llvm/Analysis/
H A DTargetFolder.h86 Constant *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem() function
/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1279 Value *ExactResult = Builder->CreateFRem(LHSOrig, RHSOrig); in visitFPTrunc()
/minix3/external/bsd/llvm/dist/llvm/lib/IR/
H A DCore.cpp2370 return wrap(unwrap(B)->CreateFRem(unwrap(LHS), unwrap(RHS), Name)); in LLVMBuildFRem()
/minix3/external/bsd/llvm/dist/llvm/bindings/go/llvm/
H A Dir.go1362 func (b Builder) CreateFRem(lhs, rhs Value, name string) (v Value) { func
/minix3/external/bsd/llvm/dist/llvm/bindings/ocaml/llvm/
H A Dllvm.mli2148 See the method [llvm::LLVMBuilder::CreateFRem]. *)
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGBuiltin.cpp263 Value *Result = Builder.CreateFRem(Arg1, Arg2, "fmod"); in EmitBuiltinExpr()