Home | History | Annotate | Download | only in IR

Lines Matching refs:Signum

1319     // This is the representation of signum we match:
1321 // signum(x) == (x >> 63) | (-x >>u 63)
1323 // An i1 value is its own signum, so it's correct to match
1325 // signum(x) == (x >> 0) | (-x >>u 0)
1331 auto Signum = m_Or(LHS, RHS);
1333 return Signum.match(V) && OpL == OpR && Val.match(OpL);
1337 /// \brief Matches a signum pattern.
1339 /// signum(x) =