Searched refs:isMallocLikeFn (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 171 bool llvm::isMallocLikeFn(const Value *V, const TargetLibraryInfo *TLI, in isMallocLikeFn() function in llvm 209 return isMallocLikeFn(I, TLI) ? dyn_cast<CallInst>(I) : nullptr; in extractMallocCall() 245 assert(isMallocLikeFn(CI, TLI) && "getMallocType and not malloc call"); in getMallocType() 289 assert(isMallocLikeFn(CI, TLI) && "getMallocArraySize and not malloc call"); in getMallocArraySize()
|
D | MemoryDependenceAnalysis.cpp | 694 isMallocLikeFn(Inst, TLI) || isCallocLikeFn(Inst, TLI)) in getSimplePointerDependencyFrom()
|
/external/llvm/include/llvm/Analysis/ |
D | MemoryBuiltins.h | 49 bool isMallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
|
/external/llvm/lib/Transforms/Scalar/ |
D | GVN.cpp | 1455 if (isa<AllocaInst>(DepInst) || isMallocLikeFn(DepInst, TLI) || in AnalyzeLoadAvailability() 2039 if (isa<AllocaInst>(DepInst) || isMallocLikeFn(DepInst, TLI)) { in processLoad()
|