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

1 2

  /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 320 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 525 ResR = Builder.CreateFAdd(Op.LHS.first, Op.RHS.first, "add.r");
526 ResI = Builder.CreateFAdd(Op.LHS.second, Op.RHS.second, "add.i");
558 ResI = Builder.CreateFAdd(ResIl, ResIr, "mul.i");
581 llvm::Value *Tmp3 = Builder.CreateFAdd(Tmp1, Tmp2); // ac+bd
585 llvm::Value *Tmp6 = Builder.CreateFAdd(Tmp4, Tmp5); // cc+dd
    [all...]
CGExprScalar.cpp     [all...]
CGExpr.cpp 683 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/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 173 Value *createFAdd(Value *Opnd0, Value *Opnd1);
488 createFAdd(AddSub0, AddSub1) :
715 LastVal = createFAdd(LastVal, V);
752 Value *FAddCombine::createFAdd
754 Value *V = Builder->CreateFAdd(Opnd0, Opnd1);
841 return createFAdd(OpndVal, OpndVal);
    [all...]
InstCombineSelect.cpp     [all...]
InstCombineMulDivRem.cpp 464 BinaryOperator::CreateFAdd(M0, M1) :
    [all...]
  /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/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 695 case '+': return Builder.CreateFAdd(L, R, "addtmp");
860 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
    [all...]
toy.cpp 1062 case '+': return Builder.CreateFAdd(L, R, "addtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 920 case '+': return Builder.CreateFAdd(L, R, "addtmp");
1082 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 677 case '+': return Builder.CreateFAdd(L, R, "addtmp");
842 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
    [all...]
toy.cpp 960 case '+': return Builder.CreateFAdd(L, R, "addtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 587 Value *CreateFAdd(Value *LHS, Value *RHS, const Twine &Name = "",
591 return Insert(Folder.CreateFAdd(LC, RC), Name);
592 return Insert(AddFPMathAttributes(BinaryOperator::CreateFAdd(LHS, RHS),
    [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 397 case kOpAdd: res = irb_->CreateFAdd(src1, src2); break;
    [all...]
  /external/llvm/lib/IR/
Core.cpp     [all...]

Completed in 384 milliseconds

1 2