Home
last modified time | relevance | path

Searched refs:TLIFn (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp188 LibFunc TLIFn; in getAllocationDataForFunction() local
189 if (!TLI || !TLI->getLibFunc(*Callee, TLIFn) || !TLI->has(TLIFn)) in getAllocationDataForFunction()
193 AllocationFnData, [TLIFn](const std::pair<LibFunc, AllocFnsTy> &P) { in getAllocationDataForFunction()
194 return P.first == TLIFn; in getAllocationDataForFunction()
501 const LibFunc TLIFn) { in getFreeFunctionDataForFunction() argument
503 find_if(FreeFnData, [TLIFn](const std::pair<LibFunc, FreeFnsTy> &P) { in getFreeFunctionDataForFunction()
504 return P.first == TLIFn; in getFreeFunctionDataForFunction()
517 LibFunc TLIFn; in getAllocationFamily() local
519 if (TLI && TLI->getLibFunc(*Callee, TLIFn) && TLI->has(TLIFn)) { in getAllocationFamily()
524 const auto FreeData = getFreeFunctionDataForFunction(Callee, TLIFn); in getAllocationFamily()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h84 bool isLibFreeFunction(const Function *F, const LibFunc TLIFn);