Lines Matching defs:IVal
104 const APInt *IVal;
109 if (!match(Elt, m_APInt(IVal)) || !IVal->isPowerOf2())
111 Elts.push_back(ConstantInt::get(Elt->getType(), IVal->logBase2()));
134 const APInt *IVal;
137 match(C1, m_APInt(IVal)))
143 if (match(C1, m_APInt(IVal)) && IVal->isPowerOf2())
145 NewCst = ConstantInt::get(NewOp->getType(), IVal->logBase2());