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

  /external/llvm/include/llvm/Support/
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 {
TargetFolder.h 61 Constant *CreateFSub(Constant *LHS, Constant *RHS) const {
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 537 ResR = Builder.CreateFSub(Op.LHS.first, Op.RHS.first, "sub.r");
538 ResI = Builder.CreateFSub(Op.LHS.second, Op.RHS.second, "sub.i");
554 ResR = Builder.CreateFSub(ResRl, ResRr, "mul.r");
589 llvm::Value *Tmp9 = Builder.CreateFSub(Tmp7, Tmp8); // bc-ad
    [all...]
CGExprScalar.cpp     [all...]
CGBuiltin.cpp 266 Imag = Builder.CreateFSub(Zero, Imag, "sub");
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 371 case '-': return Builder.CreateFSub(L, R, "subtmp");
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 379 case '-': return Builder.CreateFSub(L, R, "subtmp");
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 172 Value *createFSub(Value *Opnd0, Value *Opnd1);
489 createFSub(AddSub0, AddSub1);
720 LastVal = createFSub(V, LastVal);
722 LastVal = createFSub(LastVal, V);
739 Value *FAddCombine::createFSub
741 Value *V = Builder->CreateFSub(Opnd0, Opnd1);
749 return createFSub(Zero, V);
    [all...]
InstCombineMulDivRem.cpp 465 BinaryOperator::CreateFSub(M0, M1);
497 Instruction *FSub = BinaryOperator::CreateFSub(FMulVal, OpX);
    [all...]
InstCombineSimplifyDemanded.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 480 case '-': return Builder.CreateFSub(L, R, "subtmp");
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 576 case '-': return Builder.CreateFSub(L, R, "subtmp");
  /external/llvm/include/llvm/IR/
IRBuilder.h 609 Value *CreateFSub(Value *LHS, Value *RHS, const Twine &Name = "",
613 return Insert(Folder.CreateFSub(LC, RC), Name);
614 return Insert(AddFPMathAttributes(BinaryOperator::CreateFSub(LHS, RHS),
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 672 case '-': return Builder.CreateFSub(L, R, "subtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 696 case '-': return Builder.CreateFSub(L, R, "subtmp");
    [all...]
toy.cpp 1063 case '-': return Builder.CreateFSub(L, R, "subtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 921 case '-': return Builder.CreateFSub(L, R, "subtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 678 case '-': return Builder.CreateFSub(L, R, "subtmp");
    [all...]
toy.cpp 961 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 398 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 407 milliseconds