HomeSort by relevance Sort by last modified time
    Searched refs:m_APInt (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 982 if (match(RHS, m_Xor(m_Value(Y), m_APInt(C1))))
985 if (match(X, m_Xor(m_Value(Y), m_APInt(C1)))) {
988 if (match(Y, m_Or(m_Value(Z), m_APInt(C2))) && (*C2 == ~(*C1))) {
991 } else if (match(Y, m_And(m_Value(Z), m_APInt(C2))) && (*C1 == *C2)) {
1005 if (match(RHS, m_Xor(m_Value(Y), m_APInt(C1))))
1011 if (match(LHS, m_Xor(m_Value(Y), m_APInt(C1))))
1013 if (match(Y, m_And(m_Value(Z), m_APInt(C2))) && *C1 == (*C2 + 1)) {
    [all...]
InstCombineSelect.cpp 419 if (match(FalseVal, m_Xor(m_Specific(X), m_APInt(C2))) && C1 == C2)
422 if (match(FalseVal, m_And(m_Specific(X), m_APInt(C2))) && *C1 == ~(*C2))
426 if (match(TrueVal, m_Xor(m_Specific(X), m_APInt(C2))) && C1 == C2)
429 if (match(TrueVal, m_And(m_Specific(X), m_APInt(C2))) && *C1 == ~(*C2))
432 if (match(TrueVal, m_Or(m_Specific(X), m_APInt(C2))) && C1 == C2)
    [all...]
InstCombineMulDivRem.cpp 111 if (!match(Elt, m_APInt(IVal)) || !IVal->isPowerOf2())
142 match(C1, m_APInt(IVal)))
148 if (match(C1, m_APInt(IVal)) && IVal->isPowerOf2())
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
  /external/llvm/include/llvm/IR/
PatternMatch.h 181 /// m_APInt - Match a ConstantInt or splatted ConstantVector, binding the
183 inline apint_match m_APInt(const APInt *&Res) { return Res; }
    [all...]

Completed in 73 milliseconds