/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
H A D | NoFolder.h | 97 Instruction *CreateFDiv(Constant *LHS, Constant *RHS) const override { in CreateFDiv() function 98 return BinaryOperator::CreateFDiv(LHS, RHS); in CreateFDiv()
|
H A D | IRBuilderFolder.h | 45 virtual Value *CreateFDiv(Constant *LHS, Constant *RHS) const = 0;
|
H A D | MatrixBuilder.h | 230 ? B.CreateFDiv(LHS, RHS) in CreateScalarDiv()
|
H A D | ConstantFolder.h | 75 Constant *CreateFDiv(Constant *LHS, Constant *RHS) const override { in CreateFDiv() function
|
H A D | IRBuilder.h | 1480 Value *CreateFDiv(Value *L, Value *R, const Twine &Name = "", 1487 Instruction *I = setFPAttrs(BinaryOperator::CreateFDiv(L, R), FPMD, FMF); 1500 Instruction *I = setFPAttrs(BinaryOperator::CreateFDiv(L, R), nullptr,
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPULibCalls.cpp | 809 Value *nval = B.CreateFDiv(ConstantFP::get(CF->getType(), 1.0), in fold_recip() 831 Value *nval1 = B.CreateFDiv(ConstantFP::get(opr1->getType(), 1.0), in fold_divide() 919 Value *nval = B.CreateFDiv(cnval, opr0, "__powrecip"); in fold_pow() 987 nval = B.CreateFDiv(cnval, nval, "__1powprod"); in fold_pow() 1170 Value *nval = B.CreateFDiv(ConstantFP::get(opr0->getType(), 1.0), in fold_rootn()
|
H A D | AMDGPUCodeGenPrepare.cpp | 787 NewElt = Builder.CreateFDiv(NumEltI, DenEltI); in visitFDiv()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | CGExprComplex.cpp | 843 DSTr = Builder.CreateFDiv(ACpBD, CCpDD); in EmitBinDiv() 844 DSTi = Builder.CreateFDiv(BCmAD, CCpDD); in EmitBinDiv() 848 DSTr = Builder.CreateFDiv(LHSr, RHSr); in EmitBinDiv() 849 DSTi = Builder.CreateFDiv(LHSi, RHSr); in EmitBinDiv()
|
H A D | CGExprScalar.cpp | 3214 Val = Builder.CreateFDiv(Ops.LHS, Ops.RHS, "div"); in EmitDiv()
|
H A D | CGBuiltin.cpp | 10185 return Builder.CreateFDiv(Ops[0], Ops[1], "vdivh"); in EmitAArch64BuiltinExpr() 15128 return Builder.CreateFDiv(X, Y, "recipdiv"); in EmitPPCBuiltinExpr() 15132 return Builder.CreateFDiv(One, Builder.CreateCall(F, X), "rsqrt"); in EmitPPCBuiltinExpr()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
H A D | TargetFolder.h | 78 Constant *CreateFDiv(Constant *LHS, Constant *RHS) const override { in CreateFDiv() function
|
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
H A D | toy-jit.cpp | 680 case '/': return Builder.CreateFDiv(L, R, "divtmp"); in Codegen()
|
H A D | toy.cpp | 963 case '/': return Builder.CreateFDiv(L, R, "divtmp"); in Codegen()
|
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/ |
H A D | toy-jit.cpp | 698 case '/': return Builder.CreateFDiv(L, R, "divtmp"); in Codegen()
|
H A D | toy.cpp | 1065 case '/': return Builder.CreateFDiv(L, R, "divtmp"); in Codegen()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
H A D | X86InstCombineIntrinsic.cpp | 1208 V = IC.Builder.CreateFDiv(Arg0, Arg1); in instCombineIntrinsic() 1253 V = IC.Builder.CreateFDiv(LHS, RHS); in instCombineIntrinsic()
|
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/initial/ |
H A D | toy.cpp | 923 case '/': return Builder.CreateFDiv(L, R, "divtmp"); in Codegen()
|
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/ |
H A D | toy.cpp | 1139 case '/': return Builder.CreateFDiv(L, R, "divtmp"); in Codegen()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
H A D | SimplifyLibCalls.cpp | 1658 Sqrt = B.CreateFDiv(ConstantFP::get(Ty, 1.0), Sqrt, "reciprocal"); in replacePowWithSqrt() 1696 return B.CreateFDiv(ConstantFP::get(Ty, 1.0), Base, "reciprocal"); in optimizePow() 1762 FMul = B.CreateFDiv(ConstantFP::get(Ty, 1.0), FMul, "reciprocal"); in optimizePow()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineMulDivRem.cpp | 1392 Res = B.CreateFDiv(ConstantFP::get(I.getType(), 1.0), Res); in visitFDiv()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
H A D | LICM.cpp | 934 auto ReciprocalDivisor = BinaryOperator::CreateFDiv(One, Divisor); in hoistRegion()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | AutoUpgrade.cpp | 2077 EltOp = Builder.CreateFDiv(Elt0, Elt1); in UpgradeIntrinsicCall() 2934 Rep = Builder.CreateFDiv(CI->getArgOperand(0), CI->getArgOperand(1)); in UpgradeIntrinsicCall()
|
H A D | Core.cpp | 3401 return wrap(unwrap(B)->CreateFDiv(unwrap(LHS), unwrap(RHS), Name)); in LLVMBuildFDiv()
|
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/go/llvm/ |
H A D | ir.go | 1514 func (b Builder) CreateFDiv(lhs, rhs Value, name string) (v Value) { func
|
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/ |
H A D | llvm.mli | 2279 See the method [llvm::LLVMBuilder::CreateFDiv]. *)
|