reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/Analysis/MemoryBuiltins.h
   59 bool isAllocationFn(const Value *V, const TargetLibraryInfo *TLI,

References

lib/Analysis/GlobalsModRef.cpp
  581           if (isAllocationFn(Call, &TLI) || isFreeCall(Call, &TLI)) {
lib/Analysis/MemoryBuiltins.cpp
  251   return isAllocationFn(V, TLI, LookThroughBitCast) ||
lib/Transforms/InstCombine/InstCombineCalls.cpp
 4267   if (isAllocationFn(&Call, &TLI))
lib/Transforms/InstCombine/InstructionCombining.cpp
 2197         if (isa<AllocaInst>(SrcOp) || isAllocationFn(SrcOp, &TLI)) {
unittests/Analysis/MemoryBuiltinsTest.cpp
   47   EXPECT_FALSE(isAllocationFn(Caller.get(), TLI));