HomeSort by relevance Sort by last modified time
    Searched refs:isFreeCall (Results 1 - 8 of 8) sorted by null

  /external/llvm/include/llvm/Analysis/
MemoryBuiltins.h 128 /// isFreeCall - Returns non-null if the value is a call to the builtin free()
129 const CallInst *isFreeCall(const Value *I, const TargetLibraryInfo *TLI);
131 static inline CallInst *isFreeCall(Value *I, const TargetLibraryInfo *TLI) {
132 return const_cast<CallInst*>(isFreeCall((const Value*)I, TLI));
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 266 } else if (isFreeCall(U, TLI)) {
461 } else if (isAllocationFn(&*II, TLI) || isFreeCall(&*II, TLI)) {
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 499 if (CallInst *F = isFreeCall(Inst, TLI)) {
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 304 /// isFreeCall - Returns non-null if the value is a call to the builtin free()
305 const CallInst *llvm::isFreeCall(const Value *I, const TargetLibraryInfo *TLI) {
MemoryDependenceAnalysis.cpp 151 if (const CallInst *CI = isFreeCall(Inst, AA->getTargetLibraryInfo())) {
    [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp 307 if (CallInst *CI = isFreeCall(I, TLI))
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 202 if (isFreeCall(&CI, TLI))
    [all...]
InstructionCombining.cpp     [all...]

Completed in 708 milliseconds