/external/llvm/include/llvm/IR/ |
D | NoFolder.h | 69 Instruction *CreateFSub(Constant *LHS, Constant *RHS) const { in CreateFSub() function 70 return BinaryOperator::CreateFSub(LHS, RHS); in CreateFSub()
|
D | ConstantFolder.h | 45 Constant *CreateFSub(Constant *LHS, Constant *RHS) const { in CreateFSub() function
|
D | IRBuilder.h | 730 Value *CreateFSub(Value *LHS, Value *RHS, const Twine &Name = "", 734 return Insert(Folder.CreateFSub(LC, RC), Name); 735 return Insert(AddFPMathAttributes(BinaryOperator::CreateFSub(LHS, RHS),
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 373 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
/external/llvm/include/llvm/Analysis/ |
D | TargetFolder.h | 61 Constant *CreateFSub(Constant *LHS, Constant *RHS) const { in CreateFSub() function
|
/external/clang/lib/CodeGen/ |
D | CGExprComplex.cpp | 556 ResR = Builder.CreateFSub(Op.LHS.first, Op.RHS.first, "sub.r"); in EmitBinSub() 558 ResI = Builder.CreateFSub(Op.LHS.second, Op.RHS.second, "sub.i"); in EmitBinSub() 659 ResR = Builder.CreateFSub(AC, BD, "mul_r"); in EmitBinMul()
|
D | CGExprScalar.cpp | 2518 Builder.CreateFSub( in buildFMulAdd() 2523 Builder.CreateFSub( in buildFMulAdd() 2636 return Builder.CreateFSub(op.LHS, op.RHS, "sub"); in EmitSub()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 553 Instruction *RI = BinaryOperator::CreateFSub(NegZero, Op0); in visitFMul() 595 : BinaryOperator::CreateFSub(M0, M1); in visitFMul() 631 Value *FSub = Builder->CreateFSub(FMulVal, OpX); in visitFMul()
|
D | InstCombineAddSub.cpp | 755 Value *V = Builder->CreateFSub(Opnd0, Opnd1); in createFSub() 1351 Instruction *RI = BinaryOperator::CreateFSub(RHS, LHSV); in visitFAdd() 1359 Instruction *RI = BinaryOperator::CreateFSub(LHS, V); in visitFAdd()
|
D | InstCombineSimplifyDemanded.cpp | 1300 TmpV = InsertNewInstWith(BinaryOperator::CreateFSub(LHS, RHS, in SimplifyDemandedVectorElts()
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 651 return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 537 return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 637 return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 696 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
D | toy.cpp | 1063 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 742 return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 678 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
D | toy.cpp | 961 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
D | toy.cpp | 921 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter8/ |
D | toy.cpp | 937 return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | toy.cpp | 1137 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
D | toy.cpp | 804 case '-': return C.getBuilder().CreateFSub(L, R, "subtmp"); in IRGen()
|
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
D | toy.cpp | 804 case '-': return C.getBuilder().CreateFSub(L, R, "subtmp"); in IRGen()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
D | toy.cpp | 804 case '-': return C.getBuilder().CreateFSub(L, R, "subtmp"); in IRGen()
|
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/ |
D | toy.cpp | 805 case '-': return C.getBuilder().CreateFSub(L, R, "subtmp"); in IRGen()
|