HomeSort by relevance Sort by last modified time
    Searched defs:extractMallocCall (Results 1 - 5 of 5) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Analysis/
MemoryBuiltins.cpp 30 return extractMallocCall(I) || extractMallocCallFromBitCast(I);
57 /// extractMallocCall - Returns the corresponding CallInst if the instruction
60 const CallInst *llvm::extractMallocCall(const Value *I) {
65 CallInst *llvm::extractMallocCall(Value *I) {
120 const CallInst *CI = extractMallocCall(I);
  /external/llvm/include/llvm/Analysis/
MemoryBuiltins.h 71 /// extractMallocCall - Returns the corresponding CallInst if the instruction
74 const CallInst *extractMallocCall(const Value *I, const TargetLibraryInfo *TLI);
75 static inline CallInst *extractMallocCall(Value *I,
77 return const_cast<CallInst*>(extractMallocCall((const Value*)I, TLI));
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
MemoryBuiltins.h 91 /// extractMallocCall - Returns the corresponding CallInst if the instruction
94 const CallInst *extractMallocCall(const Value *I, const TargetLibraryInfo *TLI);
95 inline CallInst *extractMallocCall(Value *I, const TargetLibraryInfo *TLI) {
96 return const_cast<CallInst*>(extractMallocCall((const Value*)I, TLI));
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 212 /// extractMallocCall - Returns the corresponding CallInst if the instruction
215 const CallInst *llvm::extractMallocCall(const Value *I,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
MemoryBuiltins.cpp 267 /// extractMallocCall - Returns the corresponding CallInst if the instruction
270 const CallInst *llvm::extractMallocCall(const Value *I,
    [all...]

Completed in 387 milliseconds