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

Declarations

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

References

lib/Analysis/MemoryBuiltins.cpp
  410   return isCallocLikeFn(I, TLI) ? cast<CallInst>(I) : nullptr;
lib/Transforms/IPO/Attributor.cpp
 3573       if (isCallocLikeFn(MallocCall, TLI)) {
 3601       if (isCallocLikeFn(MallocCall, TLI)) {
 3712     bool IsCalloc = !IsMalloc && isCallocLikeFn(&I, TLI);
lib/Transforms/InstCombine/InstCombineCalls.cpp
 4239   } else if (isCallocLikeFn(&Call, TLI) && Op0C && Op1C) {
lib/Transforms/Scalar/DeadStoreElimination.cpp
 1059     if (UnderlyingPointer && isCallocLikeFn(UnderlyingPointer, TLI) &&
lib/Transforms/Scalar/GVN.cpp
  935   if (isCallocLikeFn(DepInst, TLI)) {
lib/Transforms/Scalar/NewGVN.cpp
 1483   else if (isCallocLikeFn(DepInst, TLI)) {
unittests/Analysis/MemoryBuiltinsTest.cpp
   41   EXPECT_FALSE(isCallocLikeFn(Caller.get(), TLI));