Searched refs:CreateFSub (Results 1 - 17 of 17) sorted by relevance

/external/llvm/include/llvm/Support/
H A DNoFolder.h69 Instruction *CreateFSub(Constant *LHS, Constant *RHS) const { function in class:llvm::NoFolder
70 return BinaryOperator::CreateFSub(LHS, RHS);
H A DConstantFolder.h45 Constant *CreateFSub(Constant *LHS, Constant *RHS) const { function in class:llvm::ConstantFolder
H A DTargetFolder.h61 Constant *CreateFSub(Constant *LHS, Constant *RHS) const { function in class:llvm::TargetFolder
/external/clang/lib/CodeGen/
H A DCGExprComplex.cpp501 ResR = Builder.CreateFSub(Op.LHS.first, Op.RHS.first, "sub.r");
502 ResI = Builder.CreateFSub(Op.LHS.second, Op.RHS.second, "sub.i");
518 ResR = Builder.CreateFSub(ResRl, ResRr, "mul.r");
553 llvm::Value *Tmp9 = Builder.CreateFSub(Tmp7, Tmp8); // bc-ad
H A DCGBuiltin.cpp244 Imag = Builder.CreateFSub(Zero, Imag, "sub");
H A DCGExprScalar.cpp2026 return Builder.CreateFSub(op.LHS, op.RHS, "sub");
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp371 case '-': return Builder.CreateFSub(L, R, "subtmp");
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp379 case '-': return Builder.CreateFSub(L, R, "subtmp");
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp370 return BinaryOperator::CreateFSub(RHS, LHSV);
375 return BinaryOperator::CreateFSub(LHS, V);
H A DInstCombineSimplifyDemanded.cpp1152 TmpV = InsertNewInstWith(BinaryOperator::CreateFSub(LHS, RHS,
/external/mesa3d/src/glsl/
H A Dir_to_llvm.cpp618 return bld.CreateFSub(ops[0], ops[1]);
774 // return bld.CreateFSub(
813 return bld.CreateFSub(ops[0], bld.CreateFRem(ops[0], one));
820 return bld.CreateFAdd(bld.CreateFSub(ops[0], bld.CreateFRem(ops[0], one)), one);
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp480 case '-': return Builder.CreateFSub(L, R, "subtmp");
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp576 case '-': return Builder.CreateFSub(L, R, "subtmp");
/external/llvm/include/llvm/
H A DIRBuilder.h574 Value *CreateFSub(Value *LHS, Value *RHS, const Twine &Name = "", function in class:llvm::IRBuilder
578 return Insert(Folder.CreateFSub(LC, RC), Name);
579 return Insert(AddFPMathTag(BinaryOperator::CreateFSub(LHS, RHS),
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp672 case '-': return Builder.CreateFSub(L, R, "subtmp");
/external/llvm/lib/VMCore/
H A DCore.cpp1892 return wrap(unwrap(B)->CreateFSub(unwrap(LHS), unwrap(RHS), Name));
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli1880 See the method [llvm::LLVMBuilder::CreateFSub]. *)

Completed in 1322 milliseconds