HomeSort by relevance Sort by last modified time
    Searched defs:AllocTy (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 44 AllocType AllocTy;
88 static const AllocFnsTy *getAllocationData(const Value *V, AllocType AllocTy,
113 if ((FnData->AllocTy & AllocTy) == 0)
452 if (FnData->AllocTy == StrDupLike) {
659 if (FnData->AllocTy == StrDupLike) {
ScalarEvolution.cpp 212 Type *AllocTy;
213 if (U->isSizeOf(AllocTy)) {
214 OS << "sizeof(" << *AllocTy << ")";
217 if (U->isAlignOf(AllocTy)) {
218 OS << "alignof(" << *AllocTy << ")";
381 bool SCEVUnknown::isSizeOf(Type *&AllocTy) const {
390 AllocTy = cast<PointerType>(CE->getOperand(0)->getType())
398 bool SCEVUnknown::isAlignOf(Type *&AllocTy) const {
414 AllocTy = STy->getElementType(1);
    [all...]

Completed in 138 milliseconds