/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
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 | TargetFolder.h | 61 Constant *CreateFSub(Constant *LHS, Constant *RHS) const { in CreateFSub() function
|
D | 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);
|
/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 | 814 Value *CreateFSub(Value *LHS, Value *RHS, const Twine &Name = "", 818 return Insert(Folder.CreateFSub(LC, RC), Name); 819 return Insert(AddFPMathAttributes(BinaryOperator::CreateFSub(LHS, RHS),
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineAddSub.cpp | 344 return BinaryOperator::CreateFSub(RHS, LHSV); in visitFAdd() 349 return BinaryOperator::CreateFSub(LHS, V); in visitFAdd()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 371 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/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 379 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
/external/clang/lib/CodeGen/ |
D | CGExprComplex.cpp | 557 ResR = Builder.CreateFSub(Op.LHS.first, Op.RHS.first, "sub.r"); in EmitBinSub() 559 ResI = Builder.CreateFSub(Op.LHS.second, Op.RHS.second, "sub.i"); in EmitBinSub() 666 ResR = Builder.CreateFSub(AC, BD, "mul_r"); in EmitBinMul()
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 423 return Builder.CreateFSub(L, R, "subtmp"); in codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 450 return Builder.CreateFSub(L, R, "subtmp"); in codegen()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAddSub.cpp | 737 Value *V = Builder->CreateFSub(Opnd0, Opnd1); in createFSub() 1319 Instruction *RI = BinaryOperator::CreateFSub(RHS, LHSV); in visitFAdd() 1327 Instruction *RI = BinaryOperator::CreateFSub(LHS, V); in visitFAdd()
|
D | InstCombineMulDivRem.cpp | 567 Instruction *RI = BinaryOperator::CreateFSub(NegZero, Op0); in visitFMul() 609 : BinaryOperator::CreateFSub(M0, M1); in visitFMul() 656 Value *FSub = Builder->CreateFSub(FMulVal, OpX); in visitFMul()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 480 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 576 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 575 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()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 672 case '-': 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()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 678 return Builder.CreateFSub(L, R, "subtmp"); in codegen()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
D | toy.cpp | 782 return Builder.CreateFSub(L, R, "subtmp"); in codegen()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
D | toy.cpp | 771 return Builder.CreateFSub(L, R, "subtmp"); in codegen()
|