Home
last modified time | relevance | path

Searched refs:FMFSource (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DIRBuilder.cpp75 Instruction *FMFSource = nullptr, in createCallHelper() argument
78 if (FMFSource)
79 CI->copyFastMathFlags(FMFSource);
784 Instruction *FMFSource, in CreateUnaryIntrinsic() argument
788 return createCallHelper(Fn, {V}, this, Name, FMFSource); in CreateUnaryIntrinsic()
793 Instruction *FMFSource, in CreateBinaryIntrinsic() argument
797 return createCallHelper(Fn, {LHS, RHS}, this, Name, FMFSource); in CreateBinaryIntrinsic()
803 Instruction *FMFSource, in CreateIntrinsic() argument
807 return createCallHelper(Fn, Args, this, Name, FMFSource); in CreateIntrinsic()
811 Intrinsic::ID ID, Value *L, Value *R, Instruction *FMFSource, in CreateConstrainedFPBinOp() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DInstrTypes.h166 static UnaryOperator *CreateFNegFMF(Value *Op, Instruction *FMFSource,
169 return CreateWithCopiedFlags(Instruction::FNeg, Op, FMFSource, Name,
261 Instruction *FMFSource,
263 return CreateWithCopiedFlags(Instruction::FAdd, V1, V2, FMFSource, Name);
266 Instruction *FMFSource,
268 return CreateWithCopiedFlags(Instruction::FSub, V1, V2, FMFSource, Name);
271 Instruction *FMFSource,
273 return CreateWithCopiedFlags(Instruction::FMul, V1, V2, FMFSource, Name);
276 Instruction *FMFSource,
278 return CreateWithCopiedFlags(Instruction::FDiv, V1, V2, FMFSource, Name);
[all …]
H A DIRBuilder.h863 Instruction *FMFSource = nullptr,
869 Instruction *FMFSource = nullptr,
877 Instruction *FMFSource = nullptr,
1418 Value *CreateFAddFMF(Value *L, Value *R, Instruction *FMFSource,
1422 L, R, FMFSource, Name);
1426 FMFSource->getFastMathFlags());
1443 Value *CreateFSubFMF(Value *L, Value *R, Instruction *FMFSource,
1447 L, R, FMFSource, Name);
1451 FMFSource->getFastMathFlags());
1468 Value *CreateFMulFMF(Value *L, Value *R, Instruction *FMFSource,
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp263 if (auto *FMFSource = dyn_cast<Instruction>(FlagsOp)) in CreateNeg() local
264 return UnaryOperator::CreateFNegFMF(S1, FMFSource, Name, InsertBefore); in CreateNeg()