/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | NoFolder.h | 97 Instruction *CreateFMul(Constant *LHS, Constant *RHS) const { in CreateFMul() function 98 return BinaryOperator::CreateFMul(LHS, RHS); in CreateFMul()
|
D | ConstantFolder.h | 58 Constant *CreateFMul(Constant *LHS, Constant *RHS) const { in CreateFMul() function
|
D | IRBuilder.h | 1476 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/ |
D | AMDGPULibCalls.cpp | 853 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()
|
D | AMDGPUCodeGenPrepare.cpp | 689 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/ |
D | SimplifyLibCalls.cpp | 1387 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/ |
D | LowerMatrixIntrinsics.cpp | 663 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()
|
D | Reassociate.cpp | 251 BinaryOperator::CreateFMul(S1, S2, Name, InsertBefore); in CreateMul() 1734 LHS = Builder.CreateFMul(LHS, Ops.pop_back_val()); in buildMultiplyTree()
|
D | LICM.cpp | 880 BinaryOperator::CreateFMul(I.getOperand(0), ReciprocalDivisor); in hoistRegion()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | TargetFolder.h | 66 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/ |
D | InstCombineCalls.cpp | 1934 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()
|
D | InstCombineAddSub.cpp | 681 Value *V = Builder.CreateFMul(Opnd0, Opnd1); in createFMul()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 1947 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/ |
D | AutoUpgrade.cpp | 1941 EltOp = Builder.CreateFMul(Elt0, Elt1); in UpgradeIntrinsicCall() 2795 Rep = Builder.CreateFMul(CI->getArgOperand(0), CI->getArgOperand(1)); in UpgradeIntrinsicCall()
|
D | Core.cpp | 3316 return wrap(unwrap(B)->CreateFMul(unwrap(LHS), unwrap(RHS), Name)); in LLVMBuildFMul()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | LLVMReactor.cpp | 805 return V(jit->builder->CreateFMul(V(lhs), V(rhs))); in createFMul()
|
/third_party/skia/src/core/ |
D | SkVM.cpp | 2781 case Op::mul_f32: vals[i] = I(b->CreateFMul(F(vals[x]), F(vals[y]))); break; in setupLLVM()
|