HomeSort by relevance Sort by last modified time
    Searched refs:CreateFAdd (Results 1 - 19 of 19) sorted by null

  /external/llvm/unittests/IR/
IRBuilderTest.cpp 127 F = Builder.CreateFAdd(F, F);
137 F = Builder.CreateFAdd(F, F);
143 F = Builder.CreateFAdd(F, F);
InstructionsTest.cpp 246 Value *V1 = Builder.CreateFAdd(I, I, "", MD1);
  /external/llvm/include/llvm/Support/
NoFolder.h 53 Instruction *CreateFAdd(Constant *LHS, Constant *RHS) const {
54 return BinaryOperator::CreateFAdd(LHS, RHS);
ConstantFolder.h 38 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const {
TargetFolder.h 54 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const {
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 498 ResR = Builder.CreateFAdd(Op.LHS.first, Op.RHS.first, "add.r");
499 ResI = Builder.CreateFAdd(Op.LHS.second, Op.RHS.second, "add.i");
531 ResI = Builder.CreateFAdd(ResIl, ResIr, "mul.i");
554 llvm::Value *Tmp3 = Builder.CreateFAdd(Tmp1, Tmp2); // ac+bd
558 llvm::Value *Tmp6 = Builder.CreateFAdd(Tmp4, Tmp5); // cc+dd
CGExprScalar.cpp     [all...]
CGExpr.cpp 743 NextVal = Builder.CreateFAdd(InVal.first, NextVal, isInc ? "inc" : "dec");
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 479 case '+': return Builder.CreateFAdd(L, R, "addtmp");
619 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 575 case '+': return Builder.CreateFAdd(L, R, "addtmp");
723 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 370 case '+': return Builder.CreateFAdd(L, R, "addtmp");
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 378 case '+': return Builder.CreateFAdd(L, R, "addtmp");
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 671 case '+': return Builder.CreateFAdd(L, R, "addtmp");
832 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 584 Value *CreateFAdd(Value *LHS, Value *RHS, const Twine &Name = "",
588 return Insert(Folder.CreateFAdd(LC, RC), Name);
589 return Insert(AddFPMathAttributes(BinaryOperator::CreateFAdd(LHS, RHS),
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 162 Value *createFAdd(Value *Opnd0, Value *Opnd1);
452 createFAdd(AddSub0, AddSub1) :
679 LastVal = createFAdd(LastVal, V);
716 Value *FAddCombine::createFAdd
718 Value *V = Builder->CreateFAdd(Opnd0, Opnd1);
805 return createFAdd(OpndVal, OpndVal);
    [all...]
InstCombineSelect.cpp     [all...]
InstCombineMulDivRem.cpp 432 BinaryOperator::CreateFAdd(M0, M1) :
    [all...]
  /external/llvm/lib/IR/
Core.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]

Completed in 310 milliseconds