Home
last modified time | relevance | path

Searched refs:CreateFSub (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DNoFolder.h77 Instruction *CreateFSub(Constant *LHS, Constant *RHS) const { in CreateFSub() function
78 return BinaryOperator::CreateFSub(LHS, RHS); in CreateFSub()
DConstantFolder.h49 Constant *CreateFSub(Constant *LHS, Constant *RHS) const { in CreateFSub() function
DIRBuilder.h1451 Value *CreateFSub(Value *L, Value *R, const Twine &Name = "",
1458 Instruction *I = setFPAttrs(BinaryOperator::CreateFSub(L, R), FPMD, FMF);
1471 Instruction *I = setFPAttrs(BinaryOperator::CreateFSub(L, R), nullptr,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLowerAtomic.cpp94 Res = Builder.CreateFSub(Orig, Val); in LowerAtomicRMWInst()
DLowerMatrixIntrinsics.cpp833 return Builder.CreateFSub(LHS, RHS); in VisitBinaryOperator()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetFolder.h59 Constant *CreateFSub(Constant *LHS, Constant *RHS) const { in CreateFSub() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DAtomicExpandPass.cpp559 return Builder.CreateFSub(Loaded, Inc, "new"); in performAtomicOp()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineAddSub.cpp659 Value *V = Builder.CreateFSub(Opnd0, Opnd1); in createFSub()
DInstCombineCalls.cpp2741 V = Builder.CreateFSub(Arg0, Arg1); in visitCallInst()
2785 V = Builder.CreateFSub(LHS, RHS); in visitCallInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DAutoUpgrade.cpp1939 EltOp = Builder.CreateFSub(Elt0, Elt1); in UpgradeIntrinsicCall()
2811 Rep = Builder.CreateFSub(CI->getArgOperand(0), CI->getArgOperand(1)); in UpgradeIntrinsicCall()
DCore.cpp3296 return wrap(unwrap(B)->CreateFSub(unwrap(LHS), unwrap(RHS), Name)); in LLVMBuildFSub()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DLLVMReactor.cpp799 return V(jit->builder->CreateFSub(V(lhs), V(rhs))); in createFSub()
/third_party/skia/src/core/
DSkVM.cpp2780 case Op::sub_f32: vals[i] = I(b->CreateFSub(F(vals[x]), F(vals[y]))); break; in setupLLVM()