Home
last modified time | relevance | path

Searched refs:m_NaN (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DInstructionSimplify.cpp3505 if (match(RHS, m_NaN())) in SimplifyFCmpInst()
4324 if (match(Op0, m_NaN())) in simplifyFPBinop()
4326 if (match(Op1, m_NaN())) in simplifyFPBinop()
4802 if (match(Op0, m_NaN())) return Op1; in simplifyBinaryIntrinsic()
4803 if (match(Op1, m_NaN())) return Op0; in simplifyBinaryIntrinsic()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp3459 if (match(Src0, m_NaN()) || isa<UndefValue>(Src0)) { in visitCallInst()
3461 } else if (match(Src1, m_NaN()) || isa<UndefValue>(Src1)) { in visitCallInst()
3463 } else if (match(Src2, m_NaN()) || isa<UndefValue>(Src2)) { in visitCallInst()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DPatternMatch.h424 inline cstfp_pred_ty<is_nan> m_NaN() { in m_NaN() function