Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DNoFolder.h109 Instruction *CreateFRem(Constant *LHS, Constant *RHS) const override { in CreateFRem() function
110 return BinaryOperator::CreateFRem(LHS, RHS); in CreateFRem()
H A DIRBuilderFolder.h48 virtual Value *CreateFRem(Constant *LHS, Constant *RHS) const = 0;
H A DConstantFolder.h87 Constant *CreateFRem(Constant *LHS, Constant *RHS) const override { in CreateFRem() function
H A DIRBuilder.h1523 Value *CreateFRem(Value *L, Value *R, const Twine &Name = "",
1530 Instruction *I = setFPAttrs(BinaryOperator::CreateFRem(L, R), FPMD, FMF);
1543 Instruction *I = setFPAttrs(BinaryOperator::CreateFRem(L, R), nullptr,
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetFolder.h87 Constant *CreateFRem(Constant *LHS, Constant *RHS) const override { in CreateFRem() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp3427 return wrap(unwrap(B)->CreateFRem(unwrap(LHS), unwrap(RHS), Name)); in LLVMBuildFRem()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp2393 return RValue::get(Builder.CreateFRem(Arg1, Arg2, "fmod")); in EmitBuiltinExpr()