Searched refs:FMFSource (Results 1 – 4 of 4) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | IRBuilder.cpp | 75 Instruction *FMFSource = nullptr, in createCallHelper() argument 78 if (FMFSource) 79 CI->copyFastMathFlags(FMFSource); 828 return createCallHelper(Fn, {V}, this, Name, FMFSource); in CreateUnaryIntrinsic() 837 return createCallHelper(Fn, {LHS, RHS}, this, Name, FMFSource); in CreateBinaryIntrinsic() 843 Instruction *FMFSource, in CreateIntrinsic() argument 847 return createCallHelper(Fn, Args, this, Name, FMFSource); in CreateIntrinsic() 859 if (FMFSource) in CreateConstrainedFPBinOp() 860 UseFMF = FMFSource->getFastMathFlags(); in CreateConstrainedFPBinOp() 892 if (FMFSource) in CreateConstrainedFPCast() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | IRBuilder.h | 888 Instruction *FMFSource = nullptr, 1440 L, R, FMFSource, Name); 1444 FMFSource->getFastMathFlags()); 1465 L, R, FMFSource, Name); 1469 FMFSource->getFastMathFlags()); 1490 L, R, FMFSource, Name); 1494 FMFSource->getFastMathFlags()); 1515 L, R, FMFSource, Name); 1540 L, R, FMFSource, Name); 1604 Value *CreateFNegFMF(Value *V, Instruction *FMFSource, [all …]
|
| H A D | InstrTypes.h | 165 static UnaryOperator *CreateFNegFMF(Value *Op, Instruction *FMFSource, 168 return CreateWithCopiedFlags(Instruction::FNeg, Op, FMFSource, Name, 259 Instruction *FMFSource, 261 return CreateWithCopiedFlags(Instruction::FAdd, V1, V2, FMFSource, Name); 264 Instruction *FMFSource, 266 return CreateWithCopiedFlags(Instruction::FSub, V1, V2, FMFSource, Name); 269 Instruction *FMFSource, 271 return CreateWithCopiedFlags(Instruction::FMul, V1, V2, FMFSource, Name); 274 Instruction *FMFSource, 276 return CreateWithCopiedFlags(Instruction::FDiv, V1, V2, FMFSource, Name); [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | Reassociate.cpp | 263 if (auto *FMFSource = dyn_cast<Instruction>(FlagsOp)) in CreateNeg() local 264 return UnaryOperator::CreateFNegFMF(S1, FMFSource, Name, InsertBefore); in CreateNeg()
|