Lines Matching refs:getAllocationData
215 static Optional<AllocFnsTy> getAllocationData(const Value *V, AllocType AllocTy, in getAllocationData() function
225 getAllocationData(const Value *V, AllocType AllocTy, in getAllocationData() function
296 return getAllocationData(V, AnyAlloc, TLI).has_value() || in isAllocationFn()
302 return getAllocationData(V, AnyAlloc, GetTLI).has_value() || in isAllocationFn()
309 return getAllocationData(V, MallocOrOpNewLike, TLI).has_value(); in isMallocLikeFn()
315 return getAllocationData(V, AlignedAllocLike, TLI).has_value(); in isAlignedAllocLikeFn()
321 return getAllocationData(V, CallocLike, TLI).has_value(); in isCallocLikeFn()
327 return getAllocationData(V, MallocOrCallocLike, TLI).has_value(); in isMallocOrCallocLikeFn()
333 return getAllocationData(V, AllocLike, TLI).has_value() || in isAllocLikeFn()
346 if (getAllocationData(CB, ReallocLike, TLI).has_value()) { in getReallocatedOperand()
368 const Optional<AllocFnsTy> FnData = getAllocationData(V, AnyAlloc, TLI); in getAllocAlignment()