Lines Matching refs:MaxPointerSize
404 unsigned MaxPointerSize = DL.getMaxPointerSizeInBits(); in getMaxPointerSize() local
405 if (MaxPointerSize < 64 && ForceAtLeast64Bits) MaxPointerSize = 64; in getMaxPointerSize()
406 if (DoubleCalcBits) MaxPointerSize *= 2; in getMaxPointerSize()
408 return MaxPointerSize; in getMaxPointerSize()
431 unsigned MaxPointerSize = getMaxPointerSize(DL); in DecomposeGEPExpression() local
522 CIdx->getValue().sextOrSelf(MaxPointerSize)) in DecomposeGEPExpression()
523 .sextOrTrunc(MaxPointerSize); in DecomposeGEPExpression()
529 APInt Scale(MaxPointerSize, DL.getTypeAllocSize(GTI.getIndexedType())); in DecomposeGEPExpression()
555 APInt WideScaledOffset = IndexOffset.sextOrTrunc(MaxPointerSize*2) * in DecomposeGEPExpression()
556 Scale.sext(MaxPointerSize*2); in DecomposeGEPExpression()
557 if (WideScaledOffset.getMinSignedBits() > MaxPointerSize) { in DecomposeGEPExpression()
566 Decomposed.OtherOffset += IndexOffset.sextOrTrunc(MaxPointerSize) * Scale; in DecomposeGEPExpression()
567 Scale *= IndexScale.sextOrTrunc(MaxPointerSize); in DecomposeGEPExpression()
1275 unsigned MaxPointerSize = getMaxPointerSize(DL); in aliasGEP() local
1276 DecompGEP1.StructOffset = DecompGEP1.OtherOffset = APInt(MaxPointerSize, 0); in aliasGEP()
1277 DecompGEP2.StructOffset = DecompGEP2.OtherOffset = APInt(MaxPointerSize, 0); in aliasGEP()
1428 APInt Modulo(MaxPointerSize, 0); in aliasGEP()