HomeSort by: relevance | last modified time | path
    Searched defs:AddC (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 2094 // sub (X + AddC), (X & AndC) --> and (X + AddC), ~AndC
2095 const APInt *AddC, *AndC;
2096 if (match(Op0, m_Add(m_Value(X), m_APInt(AddC))) &&
2099 unsigned Cttz = AddC->countTrailingZeros();
InstCombineAndOrXor.cpp 1880 const APInt *AddC;
1881 if (match(Op0, m_Add(m_Value(X), m_APInt(AddC)))) {
1883 // (X + AddC) & LowMaskC --> X & LowMaskC
1886 if ((*AddC & LowMask).isNullValue())
1893 if (Op0->hasOneUse() && C->isPowerOf2() && (*AddC & (*C - 1)) == 0) {
1894 assert((*C & *AddC) != 0 && "Expected common bit");
2520 ConstantInt *AddC;
2521 if (match(LHS0, m_Add(m_Specific(RHS0), m_ConstantInt(AddC))))
2522 if (RHSC->getValue() + AddC->getValue() == LHSC->getValue())
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp 1543 const APInt *CmpC, *AddC;
1544 if (match(U, m_Add(m_Specific(A), m_APInt(AddC))) &&
1545 match(B, m_APInt(CmpC)) && *AddC == -(*CmpC)) {

Completed in 98 milliseconds