Searched refs:CreateFDiv (Results 1 - 24 of 24) sorted by relevance

/external/llvm/unittests/IR/
H A DIRBuilderTest.cpp166 F = Builder.CreateFDiv(F, F);
175 F = Builder.CreateFDiv(F, F);
184 F = Builder.CreateFDiv(F, F);
232 F = Builder.CreateFDiv(F, F);
/external/llvm/include/llvm/IR/
H A DNoFolder.h106 Instruction *CreateFDiv(Constant *LHS, Constant *RHS) const { function in class:llvm::NoFolder
107 return BinaryOperator::CreateFDiv(LHS, RHS);
H A DConstantFolder.h63 Constant *CreateFDiv(Constant *LHS, Constant *RHS) const { function in class:llvm::ConstantFolder
H A DIRBuilder.h853 Value *CreateFDiv(Value *LHS, Value *RHS, const Twine &Name = "", function in class:llvm::IRBuilder
857 return Insert(Folder.CreateFDiv(LC, RC), Name);
858 return Insert(AddFPMathAttributes(BinaryOperator::CreateFDiv(LHS, RHS),
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp510 R = BinaryOperator::CreateFDiv(F, Opnd1);
521 R = BinaryOperator::CreateFDiv(Opnd0, F);
1255 Res = BinaryOperator::CreateFDiv(X, C);
1293 Instruction *R = CreateDiv ? BinaryOperator::CreateFDiv(Fold, X)
1316 SimpR = BinaryOperator::CreateFDiv(X, NewInst);
1328 SimpR = BinaryOperator::CreateFDiv(NewInst, X);
H A DInstCombineAddSub.cpp784 Value *V = Builder->CreateFDiv(Opnd0, Opnd1);
H A DInstCombineCalls.cpp811 return BinaryOperator::CreateFDiv(ConstantFP::get(CI.getType(), 1.0),
H A DInstCombineCasts.cpp1338 BinaryOperator::CreateFDiv(LHSOrig, RHSOrig);
/external/llvm/include/llvm/Analysis/
H A DTargetFolder.h77 Constant *CreateFDiv(Constant *LHS, Constant *RHS) const { function in class:llvm::TargetFolder
/external/clang/lib/CodeGen/
H A DCGExprComplex.cpp773 DSTr = Builder.CreateFDiv(LHSr, RHSr);
774 DSTi = Builder.CreateFDiv(LHSi, RHSr);
H A DCGExprScalar.cpp2288 llvm::Value *Val = Builder.CreateFDiv(Ops.LHS, Ops.RHS, "div");
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp698 case '/': return Builder.CreateFDiv(L, R, "divtmp");
H A Dtoy.cpp1065 case '/': return Builder.CreateFDiv(L, R, "divtmp");
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp923 case '/': return Builder.CreateFDiv(L, R, "divtmp");
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp680 case '/': return Builder.CreateFDiv(L, R, "divtmp");
H A Dtoy.cpp963 case '/': return Builder.CreateFDiv(L, R, "divtmp");
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp1139 case '/': return Builder.CreateFDiv(L, R, "divtmp");
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
H A Dtoy.cpp806 case '/': return C.getBuilder().CreateFDiv(L, R, "divtmp");
/external/llvm/examples/Kaleidoscope/Orc/initial/
H A Dtoy.cpp805 case '/': return C.getBuilder().CreateFDiv(L, R, "divtmp");
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
H A Dtoy.cpp805 case '/': return C.getBuilder().CreateFDiv(L, R, "divtmp");
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
H A Dtoy.cpp805 case '/': return C.getBuilder().CreateFDiv(L, R, "divtmp");
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1183 return B.CreateFDiv(ConstantFP::get(CI->getType(), 1.0), Op1, "powrecip");
1206 FMul = B.CreateFDiv(ConstantFP::get(CI->getType(), 1.0), FMul);
/external/llvm/lib/IR/
H A DCore.cpp2382 return wrap(unwrap(B)->CreateFDiv(unwrap(LHS), unwrap(RHS), Name));
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli2140 See the method [llvm::LLVMBuilder::CreateFDiv]. *)

Completed in 272 milliseconds