Searched refs:extractMallocCall (Results 1 – 12 of 12) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | MemoryBuiltins.cpp | 30 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()
|
D | BasicAliasAnalysis.cpp | 114 } else if (const CallInst* CI = extractMallocCall(V)) { in getObjectSize()
|
D | MemoryDependenceAnalysis.cpp | 472 (isa<CallInst>(Inst) && extractMallocCall(Inst))) { in getPointerDependencyFrom()
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | MemoryBuiltins.h | 36 const CallInst *extractMallocCall(const Value *I); 37 CallInst *extractMallocCall(Value *I);
|
/external/llvm/include/llvm/Analysis/ |
D | MemoryBuiltins.h | 74 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/ |
D | MemoryBuiltins.h | 94 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/ |
D | MemoryBuiltins.cpp | 215 const CallInst *llvm::extractMallocCall(const Value *I, in extractMallocCall() function in llvm
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 270 const CallInst *llvm::extractMallocCall(const Value *I, in extractMallocCall() function in llvm
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 299 } else if (CallInst *MI = extractMallocCall(Op1)) { in visitCallInst()
|
/external/llvm/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 1537 } else if (CallInst *CI = extractMallocCall(StoredOnceVal, TLI)) { in optimizeOnceStoredGlobal()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 1584 } else if (CallInst *CI = extractMallocCall(StoredOnceVal, TLI)) { in optimizeOnceStoredGlobal()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 1594 } else if (CallInst *CI = extractMallocCall(StoredOnceVal)) { in OptimizeOnceStoredGlobal()
|