Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DSVEIntrinsicOpts.cpp334 return match(SplatValue, m_FPOne()) || match(SplatValue, m_One()); in optimizeVectorMul()
345 return match(SplatValue, m_FPOne()) || match(SplatValue, m_One()); in optimizeVectorMul()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1568 assert(!match(Base, m_FPOne()) && in replacePowWithExp()
1686 if (match(Base, m_FPOne())) in optimizePow()
1703 if (match(Expo, m_FPOne())) in optimizePow()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp671 if (!Args.empty() && match(Args[0], PatternMatch::m_FPOne())) { in getArithmeticInstrCost()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DInstructionSimplify.cpp4923 if (match(Op1, m_FPOne())) in SimplifyFMAFMul()
4927 if (match(Op0, m_FPOne())) in SimplifyFMAFMul()
4990 if (match(Op1, m_FPOne())) in SimplifyFDivInst()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1467 m_OneUse(m_FSub(m_FPOne(), in factorizeLerp()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DPatternMatch.h848 inline specific_fpval m_FPOne() { return m_SpecificFP(1.0); } in m_FPOne() function