Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:Amt

44         // This is a value scaled by '1 << the shift amt'.
119 Value *Amt = 0;
121 Amt = NumElements;
123 Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale);
125 Amt = AllocaBuilder.CreateMul(Amt, NumElements);
131 Amt = AllocaBuilder.CreateAdd(Amt, Off);
134 AllocaInst *New = AllocaBuilder.CreateAlloca(CastElTy, Amt);
706 if (ConstantInt *Amt = dyn_cast<ConstantInt>(I->getOperand(1))) {
709 BitsToClear += Amt->getZExtValue();