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

  /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 {
IRBuilder.h 514 Value *CreateFAdd(Value *LHS, Value *RHS, const Twine &Name = "") {
517 return Insert(Folder.CreateFAdd(LC, RC), Name);
518 return Insert(BinaryOperator::CreateFAdd(LHS, RHS), Name);
    [all...]
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 479 ResR = Builder.CreateFAdd(Op.LHS.first, Op.RHS.first, "add.r");
480 ResI = Builder.CreateFAdd(Op.LHS.second, Op.RHS.second, "add.i");
512 ResI = Builder.CreateFAdd(ResIl, ResIr, "mul.i");
535 llvm::Value *Tmp3 = Builder.CreateFAdd(Tmp1, Tmp2); // ac+bd
539 llvm::Value *Tmp6 = Builder.CreateFAdd(Tmp4, Tmp5); // cc+dd
CGExprScalar.cpp     [all...]
CGExpr.cpp 567 NextVal = Builder.CreateFAdd(InVal.first, NextVal, isInc ? "inc" : "dec");
    [all...]
  /external/mesa3d/src/pixelflinger2/
llvm_scanline.cpp 696 v = builder.CreateFAdd(v, dx);
709 v = builder.CreateFAdd(v, dx);
720 v = builder.CreateFAdd(v, dx);
730 v = builder.CreateFAdd(v, dx);
llvm_texture.cpp 491 s = builder.CreateFAdd(s, float1);
495 t = builder.CreateFAdd(t, float1);
  /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/mesa3d/src/glsl/
ir_to_llvm.cpp 490 sum = bld.CreateFAdd(sum, elem, "dot.add");
606 return bld.CreateFAdd(ops[0], ops[1]);
820 return bld.CreateFAdd(bld.CreateFSub(ops[0], bld.CreateFRem(ops[0], one)), one);
    [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/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 694 return BinaryOperator::CreateFAdd(Op0, V);
InstCombineSelect.cpp 826 return BinaryOperator::CreateFAdd(SubOp->getOperand(0), NewSel);
    [all...]
  /external/llvm/lib/VMCore/
Core.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]

Completed in 194 milliseconds