Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:IVal

120   const APInt *IVal;
125 if (!match(Elt, m_APInt(IVal)) || !IVal->isPowerOf2())
127 Elts.push_back(ConstantInt::get(Elt->getType(), IVal->logBase2()));
200 const APInt *IVal;
203 match(C1, m_APInt(IVal))) {
218 if (match(C1, m_APInt(IVal)) && IVal->isPowerOf2())
220 NewCst = ConstantInt::get(NewOp->getType(), IVal->logBase2());