Lines Matching refs:AllocTy
222 Type *AllocTy; in print() local
223 if (U->isSizeOf(AllocTy)) { in print()
224 OS << "sizeof(" << *AllocTy << ")"; in print()
227 if (U->isAlignOf(AllocTy)) { in print()
228 OS << "alignof(" << *AllocTy << ")"; in print()
389 bool SCEVUnknown::isSizeOf(Type *&AllocTy) const { in isSizeOf()
398 AllocTy = cast<PointerType>(CE->getOperand(0)->getType()) in isSizeOf()
406 bool SCEVUnknown::isAlignOf(Type *&AllocTy) const { in isAlignOf()
422 AllocTy = STy->getElementType(1); in isAlignOf()
3134 const SCEV *ScalarEvolution::getSizeOfExpr(Type *IntTy, Type *AllocTy) { in getSizeOfExpr() argument
3139 F->getParent()->getDataLayout().getTypeAllocSize(AllocTy)); in getSizeOfExpr()