Home
last modified time | relevance | path

Searched refs:NeedNSW (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueTracking.h159 bool NeedNSW = false, bool AllowPoison = true);
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp8449 bool llvm::isKnownNegation(const Value *X, const Value *Y, bool NeedNSW, in isKnownNegation() argument
8458 if (NeedNSW && !BO->hasNoSignedWrap()) in isKnownNegation()
8474 return (!NeedNSW && (match(X, m_Sub(m_Value(A), m_Value(B))) && in isKnownNegation()
8476 (NeedNSW && (match(X, m_NSWSub(m_Value(A), m_Value(B))) && in isKnownNegation()