Searched refs:isFreeCall (Results 1 - 10 of 10) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h170 /// isFreeCall - Returns non-null if the value is a call to the builtin free()
171 const CallInst *isFreeCall(const Value *I, const TargetLibraryInfo *TLI);
173 inline CallInst *isFreeCall(Value *I, const TargetLibraryInfo *TLI) { function in namespace:llvm
174 return const_cast<CallInst*>(isFreeCall((const Value*)I, TLI));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DGlobalsModRef.cpp377 isFreeCall(I, &GetTLI(*Call->getFunction()))) {
587 if (isAllocationFn(Call, &TLI) || isFreeCall(Call, &TLI)) {
H A DCFLGraph.h430 if (isMallocOrCallocLikeFn(&Call, &TLI) || isFreeCall(&Call, &TLI))
H A DMemoryBuiltins.cpp461 /// isFreeCall - Returns non-null if the value is a call to the builtin free()
462 const CallInst *llvm::isFreeCall(const Value *I, const TargetLibraryInfo *TLI) { function in class:llvm
H A DMemoryDependenceAnalysis.cpp150 if (const CallInst *CI = isFreeCall(Inst, &TLI)) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp1104 if (CallInst *F = isFreeCall(&*BBI, TLI)) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp425 if (CallInst *CI = isFreeCall(I, TLI))
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2382 if (isFreeCall(I, TLI)) {
H A DInstCombineCalls.cpp1792 if (isFreeCall(&CI, &TLI))
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributor.cpp4530 if (isFreeCall(UserI, TLI)) {

Completed in 138 milliseconds