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;
91 static const AllocFnsTy *getAllocationData(const Value *V, AllocType AllocTy,
120 if ((FnData->AllocTy & AllocTy) == 0)
467 if (FnData->AllocTy == StrDupLike) {
680 if (FnData->AllocTy == StrDupLike) {
ScalarEvolution.cpp 218 Type *AllocTy;
219 if (U->isSizeOf(AllocTy)) {
220 OS << "sizeof(" << *AllocTy << ")";
223 if (U->isAlignOf(AllocTy)) {
224 OS << "alignof(" << *AllocTy << ")";
387 bool SCEVUnknown::isSizeOf(Type *&AllocTy) const {
396 AllocTy = cast<PointerType>(CE->getOperand(0)->getType())
404 bool SCEVUnknown::isAlignOf(Type *&AllocTy) const {
420 AllocTy = STy->getElementType(1);
    [all...]

Completed in 111 milliseconds