reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
 3102       if (RHSC->isSignMask() && match(Op0, m_Sub(m_APInt(C), m_Value(X)))) {
 3104         Constant *NewC = ConstantInt::get(I.getType(), *C + *RHSC);
 3107       if (RHSC->isSignMask() && match(Op0, m_Add(m_Value(X), m_APInt(C)))) {
 3109         Constant *NewC = ConstantInt::get(I.getType(), *C + *RHSC);
 3114       if (match(Op0, m_Or(m_Value(X), m_APInt(C))) &&
 3115           MaskedValueIsZero(X, *C, 0, &I)) {
 3116         Constant *NewC = ConstantInt::get(I.getType(), *C ^ *RHSC);