Home
last modified time | relevance | path

Searched refs:CreateFMul (Results 1 – 17 of 17) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DNoFolder.h97 Instruction *CreateFMul(Constant *LHS, Constant *RHS) const { in CreateFMul() function
98 return BinaryOperator::CreateFMul(LHS, RHS); in CreateFMul()
DConstantFolder.h58 Constant *CreateFMul(Constant *LHS, Constant *RHS) const { in CreateFMul() function
DIRBuilder.h1476 Value *CreateFMul(Value *L, Value *R, const Twine &Name = "",
1483 Instruction *I = setFPAttrs(BinaryOperator::CreateFMul(L, R), FPMD, FMF);
1496 Instruction *I = setFPAttrs(BinaryOperator::CreateFMul(L, R), nullptr,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPULibCalls.cpp853 Value *nval = B.CreateFMul(opr0, nval1, "__div2mul"); in fold_divide()
928 Value *nval = B.CreateFMul(opr0, opr0, "__pow2"); in fold_pow()
994 valx2 = valx2 ? B.CreateFMul(valx2, valx2, "__powx2") : opr0; in fold_pow()
996 nval = nval ? B.CreateFMul(nval, valx2, "__powprod") : valx2; in fold_pow()
1125 nval = B.CreateFMul(opr1, nval, "__ylogx"); in fold_pow()
1244 Value *nval = B.CreateFMul(opr0, opr1, "fmamul"); in fold_fma_mad()
DAMDGPUCodeGenPrepare.cpp689 Value *FQM = Builder.CreateFMul(FA, RCP); in expandDivRem24()
800 Value *RCP_SCALE = Builder.CreateFMul(RCP_F32, UINT_MAX_PLUS_1); in expandDivRem32()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp1387 Value *RealReal = B.CreateFMul(Real, Real); in optimizeCAbs()
1388 Value *ImagImag = B.CreateFMul(Imag, Imag); in optimizeCAbs()
1450 InnerChain[Exp] = B.CreateFMul(getPow(InnerChain, AddChain[Exp][0], B), in getPow()
1528 Value *FMul = B.CreateFMul(BaseFn->getArgOperand(0), Expo, "mul"); in replacePowWithExp()
1574 Value *FMul = B.CreateFMul(Expo, ConstantFP::get(Ty, N), "mul"); in replacePowWithExp()
1601 Value *FMul = B.CreateFMul(Log, Expo, "mul"); in replacePowWithExp()
1735 return B.CreateFMul(Base, Base, "square"); in optimizePow()
1773 InnerChain[2] = B.CreateFMul(Base, Base, "square"); in optimizePow()
1782 FMul = B.CreateFMul(FMul, Sqrt); in optimizePow()
1980 Value *MulY = B.CreateFMul(Arg->getArgOperand(1), LogX, "mul"); in optimizeLog()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLowerMatrixIntrinsics.cpp663 return UseFPOp ? Builder.CreateFMul(A, B) : Builder.CreateMul(A, B); in createMulAdd()
673 Value *Mul = Builder.CreateFMul(A, B); in createMulAdd()
831 return Builder.CreateFMul(LHS, RHS); in VisitBinaryOperator()
DReassociate.cpp251 BinaryOperator::CreateFMul(S1, S2, Name, InsertBefore); in CreateMul()
1734 LHS = Builder.CreateFMul(LHS, Ops.pop_back_val()); in buildMultiplyTree()
DLICM.cpp880 BinaryOperator::CreateFMul(I.getOperand(0), ReciprocalDivisor); in hoistRegion()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetFolder.h66 Constant *CreateFMul(Constant *LHS, Constant *RHS) const { in CreateFMul() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp1934 return BinaryOperator::CreateFMul(II->getArgOperand(0), in visitCallInst()
2236 Value *Mul = Builder.CreateFMul(II->getArgOperand(0), in visitCallInst()
2745 V = Builder.CreateFMul(Arg0, Arg1); in visitCallInst()
2789 V = Builder.CreateFMul(LHS, RHS); in visitCallInst()
DInstCombineAddSub.cpp681 Value *V = Builder.CreateFMul(Opnd0, Opnd1); in createFMul()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp1947 Value *MulOp = Builder.CreateFMul(Cv, Step); in getStepVector()
2893 Value *MulExp = B.CreateFMul(StepValue, Index); in emitTransformedIndex()
6635 Value *MulOp = addFastMathFlag(Builder.CreateFMul(C, Step)); in getStepVector()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DAutoUpgrade.cpp1941 EltOp = Builder.CreateFMul(Elt0, Elt1); in UpgradeIntrinsicCall()
2795 Rep = Builder.CreateFMul(CI->getArgOperand(0), CI->getArgOperand(1)); in UpgradeIntrinsicCall()
DCore.cpp3316 return wrap(unwrap(B)->CreateFMul(unwrap(LHS), unwrap(RHS), Name)); in LLVMBuildFMul()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DLLVMReactor.cpp805 return V(jit->builder->CreateFMul(V(lhs), V(rhs))); in createFMul()
/third_party/skia/src/core/
DSkVM.cpp2781 case Op::mul_f32: vals[i] = I(b->CreateFMul(F(vals[x]), F(vals[y]))); break; in setupLLVM()