Home | History | Annotate | Download | only in Scalar

Lines Matching refs:AllocaSize

260   /// AllocaSize - The size of the alloca being considered in bytes.
261 unsigned AllocaSize;
307 : AllocaSize(Size), DL(DL), ScalarLoadThreshold(SLT), IsNotTrivial(false),
344 if (ScalarKind == Vector && VectorTy->getBitWidth() != AllocaSize * 8)
360 unsigned BitWidth = AllocaSize * 8;
419 if (EltSize == AllocaSize)
425 if (Offset % EltSize == 0 && AllocaSize % EltSize == 0 &&
430 VectorTy = VectorType::get(In, AllocaSize/EltSize);
445 if (VInTy->getBitWidth()/8 == AllocaSize && Offset == 0) {
554 if (Len->getZExtValue() != AllocaSize || Offset != 0)
569 if (!Len || Len->getZExtValue() != AllocaSize || Offset != 0)
1497 uint64_t AllocaSize = DL->getTypeAllocSize(AI->getAllocatedType());
1500 if (AllocaSize == 0) continue;
1503 if (AllocaSize > SRThreshold) continue;
1521 (unsigned)AllocaSize, *DL, ScalarLoadThreshold).TryConvert(AI)) {