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

/external/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h125 /// isFreeCall - Returns non-null if the value is a call to the builtin free()
126 const CallInst *isFreeCall(const Value *I, const TargetLibraryInfo *TLI);
128 static inline CallInst *isFreeCall(Value *I, const TargetLibraryInfo *TLI) { function in namespace:llvm
129 return const_cast<CallInst*>(isFreeCall((const Value*)I, TLI));
/external/llvm/lib/Analysis/
H A DGlobalsModRef.cpp358 if (isFreeCall(I, &TLI)) {
579 if (isAllocationFn(&I, &TLI) || isFreeCall(&I, &TLI)) {
H A DMemoryBuiltins.cpp302 /// isFreeCall - Returns non-null if the value is a call to the builtin free()
303 const CallInst *llvm::isFreeCall(const Value *I, const TargetLibraryInfo *TLI) { function in class:llvm
H A DMemoryDependenceAnalysis.cpp163 if (const CallInst *CI = isFreeCall(Inst, &TLI)) {
/external/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp494 if (CallInst *F = isFreeCall(Inst, TLI)) {
/external/llvm/lib/Transforms/Utils/
H A DLocal.cpp334 if (CallInst *CI = isFreeCall(I, TLI))
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp686 if (isFreeCall(&CI, TLI))
H A DInstructionCombining.cpp1917 if (isFreeCall(I, TLI)) {

Completed in 184 milliseconds