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

1 2

  /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 799 Value *CreateFSub(Value *LHS, Value *RHS, const Twine &Name = "",
803 return Insert(Folder.CreateFSub(LC, RC), Name);
804 return Insert(AddFPMathAttributes(BinaryOperator::CreateFSub(LHS, RHS),
    [all...]
  /external/llvm/include/llvm/Analysis/
TargetFolder.h 61 Constant *CreateFSub(Constant *LHS, Constant *RHS) const {
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 556 ResR = Builder.CreateFSub(Op.LHS.first, Op.RHS.first, "sub.r");
558 ResI = Builder.CreateFSub(Op.LHS.second, Op.RHS.second, "sub.i");
665 ResR = Builder.CreateFSub(AC, BD, "mul_r");
    [all...]
CGBuiltin.cpp 492 Imag = Builder.CreateFSub(Zero, Imag, "sub");
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 414 return Builder.CreateFSub(L, R, "subtmp");
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 438 return Builder.CreateFSub(L, R, "subtmp");
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 175 Value *createFSub(Value *Opnd0, Value *Opnd1);
497 createFSub(AddSub0, AddSub1);
735 LastVal = createFSub(V, LastVal);
737 LastVal = createFSub(LastVal, V);
754 Value *FAddCombine::createFSub(Value *Opnd0, Value *Opnd1) {
755 Value *V = Builder->CreateFSub(Opnd0, Opnd1);
763 Value *NewV = createFSub(Zero, V);
    [all...]
InstCombineMulDivRem.cpp 564 Instruction *RI = BinaryOperator::CreateFSub(NegZero, Op0);
606 : BinaryOperator::CreateFSub(M0, M1);
642 Value *FSub = Builder->CreateFSub(FMulVal, OpX);
    [all...]
InstCombineSimplifyDemanded.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 562 return Builder.CreateFSub(L, R, "subtmp");
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 665 return Builder.CreateFSub(L, R, "subtmp");
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 770 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/Chapter8/
toy.cpp 957 return Builder.CreateFSub(L, R, "subtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 804 case '-': return C.getBuilder().CreateFSub(L, R, "subtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 803 case '-': return C.getBuilder().CreateFSub(L, R, "subtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 803 case '-': return C.getBuilder().CreateFSub(L, R, "subtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 803 case '-': return C.getBuilder().CreateFSub(L, R, "subtmp");
    [all...]

Completed in 531 milliseconds

1 2