Tests if a value is a call or invoke to a library function that allocates memory (either malloc, calloc, or strdup like).
Synopsis
Declared in <llvm/Analysis/MemoryBuiltins.h>
bool
isAllocLikeFn(
Value const* V,
TargetLibraryInfo const* TLI);
Return Value
True if V is a call or invoke to such an allocation function.
Parameters
Name |
Description |
V |
Value that may be a call or invoke. |
TLI |
Target library info used to identify allocation functions. |
Created with MrDocs