Lines Matching defs:IntptrSize
1249 unsigned IntptrSize = DL.getTypeStoreSize(MS.IntptrTy);
1250 if (IntptrSize == kOriginSize)
1252 assert(IntptrSize == kOriginSize * 2);
1262 unsigned IntptrSize = DL.getTypeStoreSize(MS.IntptrTy);
1264 assert(IntptrSize >= kOriginSize);
1287 if (Alignment >= IntptrAlignment && IntptrSize > kOriginSize) {
1290 for (unsigned i = 0; i < Size / IntptrSize; ++i) {
1294 Ofs += IntptrSize / kOriginSize;
6107 unsigned IntptrSize = DL.getTypeStoreSize(MS.IntptrTy);
6108 const Align Alignment = Align(IntptrSize);
6410 unsigned IntptrSize = DL.getTypeStoreSize(MS.IntptrTy);
6419 Align ArgAlign = CB.getParamAlign(ArgNo).value_or(Align(IntptrSize));
6420 if (ArgAlign < IntptrSize)
6421 ArgAlign = Align(IntptrSize);
6434 VAArgOffset += alignTo(ArgSize, Align(IntptrSize));
6439 Align ArgAlign = Align(IntptrSize);
6442 // Adjusting the shadow for argument with size < IntptrSize to match
6444 if (ArgSize < IntptrSize)
6445 VAArgOffset += (IntptrSize - ArgSize);
6452 VAArgOffset = alignTo(VAArgOffset, Align(IntptrSize));
6498 unsigned IntptrSize = DL.getTypeStoreSize(MS.IntptrTy);
6499 const Align Alignment = Align(IntptrSize);
6522 unsigned IntptrSize = DL.getTypeStoreSize(MS.IntptrTy);
6529 // Adjusting the shadow for argument with size < IntptrSize to match the
6531 if (ArgSize < IntptrSize)
6532 VAArgOffset += (IntptrSize - ArgSize);
6536 VAArgOffset = alignTo(VAArgOffset, IntptrSize);
6583 unsigned IntptrSize = DL.getTypeStoreSize(MS.IntptrTy);
6584 const Align Alignment = Align(IntptrSize);