Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp731 return match(SplatValue, m_FPOne()) || match(SplatValue, m_One()); in instCombineSVEVectorMul()
742 return match(SplatValue, m_FPOne()) || match(SplatValue, m_One()); in instCombineSVEVectorMul()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1570 assert(!match(Base, m_FPOne()) && in replacePowWithExp()
1689 if (match(Base, m_FPOne())) in optimizePow()
1706 if (match(Expo, m_FPOne())) in optimizePow()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp672 if (!Args.empty() && match(Args[0], PatternMatch::m_FPOne())) { in getArithmeticInstrCost()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp5029 if (match(Op1, m_FPOne())) in SimplifyFMAFMul()
5033 if (match(Op0, m_FPOne())) in SimplifyFMAFMul()
5118 if (match(Op1, m_FPOne())) in SimplifyFDivInst()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1467 m_OneUse(m_FSub(m_FPOne(), in factorizeLerp()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h848 inline specific_fpval m_FPOne() { return m_SpecificFP(1.0); } in m_FPOne() function