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 125 /// 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) {
129 return const_cast<CallInst*>(isFreeCall((const Value*)I, TLI));
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 277 if (isFreeCall(I, TLI))
454 } else if (isAllocationFn(&*II, TLI) || isFreeCall(&*II, TLI)) {
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 485 if (CallInst *F = isFreeCall(Inst, TLI)) {
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 299 /// isFreeCall - Returns non-null if the value is a call to the builtin free()
300 const CallInst *llvm::isFreeCall(const Value *I, const TargetLibraryInfo *TLI) {
MemoryDependenceAnalysis.cpp 158 if (const CallInst *CI = isFreeCall(Inst, AA->getTargetLibraryInfo())) {
    [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp 326 if (CallInst *CI = isFreeCall(I, TLI))
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 309 if (isFreeCall(&CI, TLI))
    [all...]
InstructionCombining.cpp     [all...]

Completed in 1136 milliseconds