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

1 2

  /external/llvm/unittests/IR/
IRBuilderTest.cpp 136 F = Builder.CreateFAdd(F, F);
146 F = Builder.CreateFAdd(F, F);
152 F = Builder.CreateFAdd(F, F);
InstructionsTest.cpp 397 Value *V1 = Builder.CreateFAdd(I, I, "", MD1);
  /external/llvm/include/llvm/IR/
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 {
IRBuilder.h 646 Value *CreateFAdd(Value *LHS, Value *RHS, const Twine &Name = "",
650 return Insert(Folder.CreateFAdd(LC, RC), Name);
651 return Insert(AddFPMathAttributes(BinaryOperator::CreateFAdd(LHS, RHS),
    [all...]
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 530 ResR = Builder.CreateFAdd(Op.LHS.first, Op.RHS.first, "add.r");
531 ResI = Builder.CreateFAdd(Op.LHS.second, Op.RHS.second, "add.i");
563 ResI = Builder.CreateFAdd(ResIl, ResIr, "mul.i");
586 llvm::Value *Tmp3 = Builder.CreateFAdd(Tmp1, Tmp2); // ac+bd
590 llvm::Value *Tmp6 = Builder.CreateFAdd(Tmp4, Tmp5); // cc+dd
    [all...]
CGExprScalar.cpp     [all...]
CGExpr.cpp 694 NextVal = Builder.CreateFAdd(InVal.first, NextVal, isInc ? "inc" : "dec");
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 481 case '+': return Builder.CreateFAdd(L, R, "addtmp");
621 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 577 case '+': return Builder.CreateFAdd(L, R, "addtmp");
725 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 372 case '+': return Builder.CreateFAdd(L, R, "addtmp");
  /external/llvm/include/llvm/Analysis/
TargetFolder.h 54 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const {
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 380 case '+': return Builder.CreateFAdd(L, R, "addtmp");
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 175 Value *createFAdd(Value *Opnd0, Value *Opnd1);
495 createFAdd(AddSub0, AddSub1) :
730 LastVal = createFAdd(LastVal, V);
770 Value *FAddCombine::createFAdd
772 Value *V = Builder->CreateFAdd(Opnd0, Opnd1);
861 return createFAdd(OpndVal, OpndVal);
    [all...]
InstCombineSelect.cpp     [all...]
InstCombineMulDivRem.cpp 503 ? BinaryOperator::CreateFAdd(M0, M1)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 673 case '+': return Builder.CreateFAdd(L, R, "addtmp");
834 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 696 case '+': return Builder.CreateFAdd(L, R, "addtmp");
861 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
    [all...]
toy.cpp 1063 case '+': return Builder.CreateFAdd(L, R, "addtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 921 case '+': return Builder.CreateFAdd(L, R, "addtmp");
1083 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 678 case '+': return Builder.CreateFAdd(L, R, "addtmp");
843 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
    [all...]
toy.cpp 961 case '+': return Builder.CreateFAdd(L, R, "addtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 414 case kOpAdd: res = irb_->CreateFAdd(src1, src2); break;
    [all...]
  /external/llvm/lib/IR/
Core.cpp     [all...]

Completed in 940 milliseconds

1 2