Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp632 if (!Args.empty() && match(Args[0], PatternMatch::m_FPOne())) { in getArithmeticInstrCost()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp2188 assert(!match(Base, m_FPOne()) && in replacePowWithExp()
2307 if (match(Base, m_FPOne())) in optimizePow()
2324 if (match(Expo, m_FPOne())) in optimizePow()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp5794 if (match(Op0, m_FPOne()) || match(Op0, m_AnyZeroFP())) in simplifyFMAFMul()
5798 if (match(Op1, m_FPOne())) in simplifyFMAFMul()
5892 if (match(Op1, m_FPOne())) in simplifyFDivInst()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp1702 return match(SplatValue, m_FPOne()) || match(SplatValue, m_One()); in instCombineSVEVectorMul()
1713 return match(SplatValue, m_FPOne()) || match(SplatValue, m_One()); in instCombineSVEVectorMul()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1830 m_OneUse(m_FSub(m_FPOne(), in factorizeLerp()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h921 inline specific_fpval m_FPOne() { return m_SpecificFP(1.0); } in m_FPOne() function