| /llvm-project-15.0.7/llvm/lib/Transforms/Utils/ |
| H A D | LowerAtomic.cpp | 76 return Builder.CreateFSub(Loaded, Inc, "new"); in buildAtomicRMWValue()
|
| /llvm-project-15.0.7/llvm/lib/Target/DirectX/ |
| H A D | DXILPrepare.cpp | 125 I.replaceAllUsesWith(Builder.CreateFSub(Zero, In)); in runOnModule()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGExprComplex.cpp | 611 ResR = Builder.CreateFSub(Op.LHS.first, Op.RHS.first, "sub.r"); in EmitBinSub() 613 ResI = Builder.CreateFSub(Op.LHS.second, Op.RHS.second, "sub.i"); in EmitBinSub() 721 ResR = Builder.CreateFSub(AC, BD, "mul_r"); in EmitBinMul() 841 llvm::Value *BCmAD = Builder.CreateFSub(BC, AD); // bc-ad in EmitBinDiv()
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | MatrixBuilder.h | 201 ? B.CreateFSub(LHS, RHS) in CreateSub()
|
| H A D | IRBuilder.h | 1433 Value *CreateFSub(Value *L, Value *R, const Twine &Name = "", 1441 Instruction *I = setFPAttrs(BinaryOperator::CreateFSub(L, R), FPMD, FMF); 1456 Instruction *I = setFPAttrs(BinaryOperator::CreateFSub(L, R), nullptr, FMF);
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter3/ |
| H A D | toy.cpp | 434 return Builder->CreateFSub(L, R, "subtmp"); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter4/ |
| H A D | toy.cpp | 463 return Builder->CreateFSub(L, R, "subtmp"); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter5/ |
| H A D | toy.cpp | 590 return Builder->CreateFSub(L, R, "subtmp"); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/cached/ |
| H A D | toy-jit.cpp | 696 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
| H A D | toy.cpp | 1063 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter6/ |
| H A D | toy.cpp | 694 return Builder->CreateFSub(L, R, "subtmp"); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
| H A D | toy-jit.cpp | 678 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
| H A D | toy.cpp | 961 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
| H A D | toy.cpp | 795 return Builder->CreateFSub(L, R, "subtmp"); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter8/ |
| H A D | toy.cpp | 800 return Builder->CreateFSub(L, R, "subtmp"); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
| H A D | toy.cpp | 778 return Builder->CreateFSub(L, R, "subtmp"); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter7/ |
| H A D | toy.cpp | 801 return Builder->CreateFSub(L, R, "subtmp"); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
| H A D | toy.cpp | 795 return Builder->CreateFSub(L, R, "subtmp"); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
| H A D | toy.cpp | 795 return Builder->CreateFSub(L, R, "subtmp"); in codegen()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86InstCombineIntrinsic.cpp | 1196 V = IC.Builder.CreateFSub(Arg0, Arg1); in instCombineIntrinsic() 1241 V = IC.Builder.CreateFSub(LHS, RHS); in instCombineIntrinsic()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/initial/ |
| H A D | toy.cpp | 921 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter9/ |
| H A D | toy.cpp | 965 return Builder->CreateFSub(L, R, "subtmp"); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/complete/ |
| H A D | toy.cpp | 1137 case '-': return Builder.CreateFSub(L, R, "subtmp"); in Codegen()
|
| /llvm-project-15.0.7/llvm/unittests/IR/ |
| H A D | PatternMatch.cpp | 1248 Value *V1 = IRB.CreateFSub(NZ, One); in TEST_F() 1249 Value *V2 = IRB.CreateFSub(Z, One); in TEST_F()
|
| /llvm-project-15.0.7/llvm/docs/tutorial/MyFirstLanguageFrontend/ |
| H A D | LangImpl06.rst | 249 return Builder.CreateFSub(L, R, "subtmp");
|