Home
last modified time | relevance | path

Searched refs:m_FPOne (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp635 if (!Args.empty() && match(Args[0], PatternMatch::m_FPOne())) { in getArithmeticInstrCost()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp2101 assert(!match(Base, m_FPOne()) && in replacePowWithExp()
2226 if (match(Base, m_FPOne())) in optimizePow()
2243 if (match(Expo, m_FPOne())) in optimizePow()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp1557 return match(SplatValue, m_FPOne()) || match(SplatValue, m_One()); in instCombineSVEVectorMul()
1568 return match(SplatValue, m_FPOne()) || match(SplatValue, m_One()); in instCombineSVEVectorMul()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp5757 if (match(Op0, m_FPOne()) || match(Op0, m_AnyZeroFP())) in simplifyFMAFMul()
5761 if (match(Op1, m_FPOne())) in simplifyFMAFMul()
5850 if (match(Op1, m_FPOne())) in simplifyFDivInst()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1770 m_OneUse(m_FSub(m_FPOne(), in factorizeLerp()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h826 inline specific_fpval m_FPOne() { return m_SpecificFP(1.0); } in m_FPOne() function