Searched refs:isMallocLikeFn (Results 1 – 10 of 10) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/ |
D | MemoryBuiltinsTest.cpp | 41 EXPECT_FALSE(isMallocLikeFn(Caller.get(), TLI)); in TEST()
|
/external/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 193 bool llvm::isMallocLikeFn(const Value *V, const TargetLibraryInfo *TLI, in isMallocLikeFn() function in llvm 217 return isMallocLikeFn(I, TLI) ? dyn_cast<CallInst>(I) : nullptr; in extractMallocCall() 252 assert(isMallocLikeFn(CI, TLI) && "getMallocType and not malloc call"); in getMallocType() 296 assert(isMallocLikeFn(CI, TLI) && "getMallocArraySize and not malloc call"); in getMallocArraySize()
|
D | CFLGraph.h | 378 if (isMallocLikeFn(Inst, &TLI) || isCallocLikeFn(Inst, &TLI) || in visitCallSite()
|
D | BasicAliasAnalysis.cpp | 761 if (isMallocLikeFn(Inst, &TLI) || isCallocLikeFn(Inst, &TLI)) { in getModRefInfo()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 240 bool llvm::isMallocLikeFn(const Value *V, const TargetLibraryInfo *TLI, in isMallocLikeFn() function in llvm 272 return isMallocLikeFn(I, TLI) ? dyn_cast<CallInst>(I) : nullptr; in extractMallocCall() 307 assert(isMallocLikeFn(CI, TLI) && "getMallocType and not malloc call"); in getMallocType() 351 assert(isMallocLikeFn(CI, TLI) && "getMallocArraySize and not malloc call"); in getMallocArraySize()
|
/external/llvm/include/llvm/Analysis/ |
D | MemoryBuiltins.h | 54 bool isMallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | MemoryBuiltins.h | 69 bool isMallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | GVN.cpp | 944 if (isa<AllocaInst>(DepInst) || isMallocLikeFn(DepInst, TLI) || in AnalyzeLoadAvailability()
|
D | NewGVN.cpp | 1468 if (isa<AllocaInst>(DepInst) || isMallocLikeFn(DepInst, TLI)) { in performSymbolicLoadCoercion()
|
/external/llvm/lib/Transforms/Scalar/ |
D | GVN.cpp | 1292 if (isa<AllocaInst>(DepInst) || isMallocLikeFn(DepInst, TLI) || in AnalyzeLoadAvailability()
|