Searched refs:CreateFAdd (Results 1 - 25 of 33) sorted by relevance

12

/external/llvm/unittests/IR/
H A DIRBuilderTest.cpp137 F = Builder.CreateFAdd(F, F);
147 F = Builder.CreateFAdd(F, F);
153 F = Builder.CreateFAdd(F, F);
H A DInstructionsTest.cpp399 Value *V1 = Builder.CreateFAdd(I, I, "", MD1);
/external/llvm/include/llvm/IR/
H A DNoFolder.h53 Instruction *CreateFAdd(Constant *LHS, Constant *RHS) const { function in class:llvm::NoFolder
54 return BinaryOperator::CreateFAdd(LHS, RHS);
H A DConstantFolder.h38 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const { function in class:llvm::ConstantFolder
H A DIRBuilder.h777 Value *CreateFAdd(Value *LHS, Value *RHS, const Twine &Name = "", function in class:llvm::IRBuilder
781 return Insert(Folder.CreateFAdd(LC, RC), Name);
782 return Insert(AddFPMathAttributes(BinaryOperator::CreateFAdd(LHS, RHS),
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp560 return Builder.CreateFAdd(L, R, "addtmp");
710 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
/external/llvm/include/llvm/Analysis/
H A DTargetFolder.h54 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const { function in class:llvm::TargetFolder
/external/clang/lib/CodeGen/
H A DCGExprComplex.cpp538 ResR = Builder.CreateFAdd(Op.LHS.first, Op.RHS.first, "add.r");
540 ResI = Builder.CreateFAdd(Op.LHS.second, Op.RHS.second, "add.i");
666 ResI = Builder.CreateFAdd(AD, BC, "mul_i");
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp412 return Builder.CreateFAdd(L, R, "addtmp");
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp436 return Builder.CreateFAdd(L, R, "addtmp");
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp770 Value *V = Builder->CreateFAdd(Opnd0, Opnd1);
1717 Instruction *NewI = BinaryOperator::CreateFAdd(Op0, V);
1724 Instruction *NewI = BinaryOperator::CreateFAdd(Op0, NewTrunc);
1731 Instruction *NewI = BinaryOperator::CreateFAdd(Op0, NewExt);
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp663 return Builder.CreateFAdd(L, R, "addtmp");
821 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp768 return Builder.CreateFAdd(L, R, "addtmp");
939 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp695 case '+': return Builder.CreateFAdd(L, R, "addtmp");
860 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
H A Dtoy.cpp1062 case '+': return Builder.CreateFAdd(L, R, "addtmp");
1224 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp920 case '+': return Builder.CreateFAdd(L, R, "addtmp");
1082 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp677 case '+': return Builder.CreateFAdd(L, R, "addtmp");
842 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
H A Dtoy.cpp960 case '+': return Builder.CreateFAdd(L, R, "addtmp");
1122 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp955 return Builder.CreateFAdd(L, R, "addtmp");
1132 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp1136 case '+': return Builder.CreateFAdd(L, R, "addtmp");
1302 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
H A Dtoy.cpp803 case '+': return C.getBuilder().CreateFAdd(L, R, "addtmp");
967 Value *NextVar = C.getBuilder().CreateFAdd(CurVar, StepVal, "nextvar");
/external/llvm/examples/Kaleidoscope/Orc/initial/
H A Dtoy.cpp802 case '+': return C.getBuilder().CreateFAdd(L, R, "addtmp");
966 Value *NextVar = C.getBuilder().CreateFAdd(CurVar, StepVal, "nextvar");
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
H A Dtoy.cpp802 case '+': return C.getBuilder().CreateFAdd(L, R, "addtmp");
966 Value *NextVar = C.getBuilder().CreateFAdd(CurVar, StepVal, "nextvar");
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
H A Dtoy.cpp802 case '+': return C.getBuilder().CreateFAdd(L, R, "addtmp");
966 Value *NextVar = C.getBuilder().CreateFAdd(CurVar, StepVal, "nextvar");
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp324 BinaryOperator::CreateFAdd(S1, S2, Name, InsertBefore);
1647 : BinaryOperator::CreateFAdd(MaxOccVal, MaxOccVal);
2015 NI = BinaryOperator::CreateFAdd(Op0, Op1);

Completed in 385 milliseconds

12