Home
last modified time | relevance | path

Searched refs:extractMallocCall (Results 1 – 12 of 12) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Analysis/
DMemoryBuiltins.cpp30 return extractMallocCall(I) || extractMallocCallFromBitCast(I); in isMalloc()
60 const CallInst *llvm::extractMallocCall(const Value *I) { in extractMallocCall() function in llvm
65 CallInst *llvm::extractMallocCall(Value *I) { in extractMallocCall() function in llvm
120 const CallInst *CI = extractMallocCall(I); in isArrayMalloc()
DBasicAliasAnalysis.cpp114 } else if (const CallInst* CI = extractMallocCall(V)) { in getObjectSize()
DMemoryDependenceAnalysis.cpp472 (isa<CallInst>(Inst) && extractMallocCall(Inst))) { in getPointerDependencyFrom()
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DMemoryBuiltins.h36 const CallInst *extractMallocCall(const Value *I);
37 CallInst *extractMallocCall(Value *I);
/external/llvm/include/llvm/Analysis/
DMemoryBuiltins.h74 const CallInst *extractMallocCall(const Value *I, const TargetLibraryInfo *TLI);
75 static inline CallInst *extractMallocCall(Value *I, in extractMallocCall() function
77 return const_cast<CallInst*>(extractMallocCall((const Value*)I, TLI)); in extractMallocCall()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DMemoryBuiltins.h94 const CallInst *extractMallocCall(const Value *I, const TargetLibraryInfo *TLI);
95 inline CallInst *extractMallocCall(Value *I, const TargetLibraryInfo *TLI) { in extractMallocCall() function
96 return const_cast<CallInst*>(extractMallocCall((const Value*)I, TLI)); in extractMallocCall()
/external/llvm/lib/Analysis/
DMemoryBuiltins.cpp215 const CallInst *llvm::extractMallocCall(const Value *I, in extractMallocCall() function in llvm
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DMemoryBuiltins.cpp270 const CallInst *llvm::extractMallocCall(const Value *I, in extractMallocCall() function in llvm
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineCalls.cpp299 } else if (CallInst *MI = extractMallocCall(Op1)) { in visitCallInst()
/external/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp1537 } else if (CallInst *CI = extractMallocCall(StoredOnceVal, TLI)) { in optimizeOnceStoredGlobal()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp1584 } else if (CallInst *CI = extractMallocCall(StoredOnceVal, TLI)) { in optimizeOnceStoredGlobal()
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DGlobalOpt.cpp1594 } else if (CallInst *CI = extractMallocCall(StoredOnceVal)) { in OptimizeOnceStoredGlobal()