|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
include/llvm/Analysis/MemoryBuiltins.h 90 bool isAllocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
References
lib/Analysis/GlobalsModRef.cpp 436 if (!isAllocLikeFn(Ptr, &GetTLI(*SI->getFunction())))
lib/Analysis/InstructionSimplify.cpp 2469 if (isAllocLikeFn(LHS, TLI) &&
2472 else if (isAllocLikeFn(RHS, TLI) &&
lib/Transforms/InstCombine/InstCombineCalls.cpp 4400 if (isAllocLikeFn(&Call, &TLI))
lib/Transforms/InstCombine/InstructionCombining.cpp 2269 return isAllocLikeFn(V, TLI) && V != AI;
lib/Transforms/Scalar/DeadStoreElimination.cpp 766 else if (isAllocLikeFn(&I, TLI) && !PointerMayBeCaptured(&I, true, true))
841 if (isAllocLikeFn(&*BBI, TLI))
1167 IsStoreDeadOnUnwind = isAllocLikeFn(Underlying, TLI) &&
lib/Transforms/Scalar/LICM.cpp 1856 return isAllocLikeFn(Object, TLI) &&
2083 (isAllocLikeFn(Object, TLI) || isa<AllocaInst>(Object)) &&
lib/Transforms/Utils/Local.cpp 422 if (isAllocLikeFn(I, TLI))
unittests/Analysis/MemoryBuiltinsTest.cpp 42 EXPECT_FALSE(isAllocLikeFn(Caller.get(), TLI));