Lines Matching refs:IndexOffset
563 APInt IndexOffset = Idx - BasisIdx; in emitBump() local
568 IndexOffset.getBitWidth(), in emitBump()
572 APInt::sdivrem(IndexOffset, ElementSize, Q, R); in emitBump()
574 IndexOffset = Q; in emitBump()
581 if (IndexOffset.getSExtValue() == 1) in emitBump()
584 if (IndexOffset.getSExtValue() == -1) in emitBump()
590 IntegerType::get(Basis.Ins->getContext(), IndexOffset.getBitWidth()); in emitBump()
592 if (IndexOffset.isPowerOf2()) { in emitBump()
594 ConstantInt *Exponent = ConstantInt::get(DeltaType, IndexOffset.logBase2()); in emitBump()
597 if ((-IndexOffset).isPowerOf2()) { in emitBump()
600 ConstantInt::get(DeltaType, (-IndexOffset).logBase2()); in emitBump()
603 Constant *Delta = ConstantInt::get(DeltaType, IndexOffset); in emitBump()