HomeSort by relevance Sort by last modified time
    Searched refs:CreateFSub (Results 1 - 16 of 16) 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 {
IRBuilder.h 534 Value *CreateFSub(Value *LHS, Value *RHS, const Twine &Name = "") {
537 return Insert(Folder.CreateFSub(LC, RC), Name);
538 return Insert(BinaryOperator::CreateFSub(LHS, RHS), Name);
    [all...]
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 491 ResR = Builder.CreateFSub(Op.LHS.first, Op.RHS.first, "sub.r");
492 ResI = Builder.CreateFSub(Op.LHS.second, Op.RHS.second, "sub.i");
508 ResR = Builder.CreateFSub(ResRl, ResRr, "mul.r");
543 llvm::Value *Tmp9 = Builder.CreateFSub(Tmp7, Tmp8); // bc-ad
CGExprScalar.cpp     [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 344 return BinaryOperator::CreateFSub(RHS, LHSV);
349 return BinaryOperator::CreateFSub(LHS, V);
InstCombineSimplifyDemanded.cpp     [all...]
  /external/mesa3d/src/glsl/
ir_to_llvm.cpp 618 return bld.CreateFSub(ops[0], ops[1]);
774 // return bld.CreateFSub(
813 return bld.CreateFSub(ops[0], bld.CreateFRem(ops[0], one));
820 return bld.CreateFAdd(bld.CreateFSub(ops[0], bld.CreateFRem(ops[0], one)), one);
    [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/examples/Kaleidoscope/Chapter7/
toy.cpp 672 case '-': return Builder.CreateFSub(L, R, "subtmp");
    [all...]
  /external/llvm/lib/VMCore/
Core.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]

Completed in 189 milliseconds