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

  /external/llvm/include/llvm/IR/
NoFolder.h 69 Instruction *CreateFSub(Constant *LHS, Constant *RHS) const {
70 return BinaryOperator::CreateFSub(LHS, RHS);
ConstantFolder.h 45 Constant *CreateFSub(Constant *LHS, Constant *RHS) const {
IRBuilder.h 668 Value *CreateFSub(Value *LHS, Value *RHS, const Twine &Name = "",
672 return Insert(Folder.CreateFSub(LC, RC), Name);
673 return Insert(AddFPMathAttributes(BinaryOperator::CreateFSub(LHS, RHS),
    [all...]
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 542 ResR = Builder.CreateFSub(Op.LHS.first, Op.RHS.first, "sub.r");
543 ResI = Builder.CreateFSub(Op.LHS.second, Op.RHS.second, "sub.i");
559 ResR = Builder.CreateFSub(ResRl, ResRr, "mul.r");
594 llvm::Value *Tmp9 = Builder.CreateFSub(Tmp7, Tmp8); // bc-ad
    [all...]
CGExprScalar.cpp     [all...]
CGBuiltin.cpp 270 Imag = Builder.CreateFSub(Zero, Imag, "sub");
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 373 case '-': return Builder.CreateFSub(L, R, "subtmp");
  /external/llvm/include/llvm/Analysis/
TargetFolder.h 61 Constant *CreateFSub(Constant *LHS, Constant *RHS) const {
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 381 case '-': return Builder.CreateFSub(L, R, "subtmp");
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 174 Value *createFSub(Value *Opnd0, Value *Opnd1);
496 createFSub(AddSub0, AddSub1);
735 LastVal = createFSub(V, LastVal);
737 LastVal = createFSub(LastVal, V);
754 Value *FAddCombine::createFSub
756 Value *V = Builder->CreateFSub(Opnd0, Opnd1);
764 Value *NewV = createFSub(Zero, V);
    [all...]
InstCombineMulDivRem.cpp 462 Instruction *RI = BinaryOperator::CreateFSub(NegZero, Op0);
504 : BinaryOperator::CreateFSub(M0, M1);
535 Value *FSub = Builder->CreateFSub(FMulVal, OpX);
    [all...]
InstCombineSimplifyDemanded.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 482 case '-': return Builder.CreateFSub(L, R, "subtmp");
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 578 case '-': return Builder.CreateFSub(L, R, "subtmp");
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 674 case '-': return Builder.CreateFSub(L, R, "subtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 697 case '-': return Builder.CreateFSub(L, R, "subtmp");
    [all...]
toy.cpp 1064 case '-': return Builder.CreateFSub(L, R, "subtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 922 case '-': return Builder.CreateFSub(L, R, "subtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 679 case '-': return Builder.CreateFSub(L, R, "subtmp");
    [all...]
toy.cpp 962 case '-': return Builder.CreateFSub(L, R, "subtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 415 case kOpSub: res = irb_->CreateFSub(src1, src2); break;
    [all...]
  /external/llvm/lib/IR/
Core.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]

Completed in 694 milliseconds