HomeSort by relevance Sort by last modified time
    Searched refs:CreateFSub (Results 1 - 17 of 17) 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 510 ResR = Builder.CreateFSub(Op.LHS.first, Op.RHS.first, "sub.r");
511 ResI = Builder.CreateFSub(Op.LHS.second, Op.RHS.second, "sub.i");
527 ResR = Builder.CreateFSub(ResRl, ResRr, "mul.r");
562 llvm::Value *Tmp9 = Builder.CreateFSub(Tmp7, Tmp8); // bc-ad
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 161 Value *createFSub(Value *Opnd0, Value *Opnd1);
453 createFSub(AddSub0, AddSub1);
684 LastVal = createFSub(V, LastVal);
686 LastVal = createFSub(LastVal, V);
703 Value *FAddCombine::createFSub
705 Value *V = Builder->CreateFSub(Opnd0, Opnd1);
713 return createFSub(Zero, V);
    [all...]
InstCombineMulDivRem.cpp 433 BinaryOperator::CreateFSub(M0, M1);
465 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 606 Value *CreateFSub(Value *LHS, Value *RHS, const Twine &Name = "",
610 return Insert(Folder.CreateFSub(LC, RC), Name);
611 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/lib/IR/
Core.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]

Completed in 497 milliseconds