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/
GlobalsModRef.cpp 358 if (isFreeCall(I, &TLI)) {
579 if (isAllocationFn(&I, &TLI) || isFreeCall(&I, &TLI)) {
    [all...]
MemoryBuiltins.cpp 302 /// 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) {
MemoryDependenceAnalysis.cpp 163 if (const CallInst *CI = isFreeCall(Inst, &TLI)) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 494 if (CallInst *F = isFreeCall(Inst, TLI)) {
    [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp 334 if (CallInst *CI = isFreeCall(I, TLI))
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 686 if (isFreeCall(&CI, TLI))
    [all...]
InstructionCombining.cpp     [all...]

Completed in 506 milliseconds