Searched refs:PImpl (Results 1 – 7 of 7) sorted by relevance
/external/llvm/include/llvm/Analysis/ |
D | LazyValueInfo.h | 37 void *PImpl = nullptr; variable 47 : AC(Arg.AC), TLI(Arg.TLI), DT(Arg.DT), PImpl(Arg.PImpl) { in LazyValueInfo() 48 Arg.PImpl = nullptr; in LazyValueInfo() 55 PImpl = Arg.PImpl; 56 Arg.PImpl = nullptr; 126 assert(!Info.PImpl && "releaseMemory not called");
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | LazyValueInfo.h | 38 void *PImpl = nullptr; variable 48 : AC(Arg.AC), DL(Arg.DL), TLI(Arg.TLI), DT(Arg.DT), PImpl(Arg.PImpl) { in LazyValueInfo() 49 Arg.PImpl = nullptr; in LazyValueInfo() 57 PImpl = Arg.PImpl; 58 Arg.PImpl = nullptr; 152 assert(!Info.PImpl && "releaseMemory not called");
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | LazyValueInfo.h | 29 void *PImpl; variable 34 LazyValueInfo() : FunctionPass(ID), PImpl(0) { in LazyValueInfo() 37 ~LazyValueInfo() { assert(PImpl == 0 && "releaseMemory not called"); } in ~LazyValueInfo()
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | LazyValueInfo.cpp | 1001 static LazyValueInfoCache &getCache(void *&PImpl) { in getCache() argument 1002 if (!PImpl) in getCache() 1003 PImpl = new LazyValueInfoCache(); in getCache() 1004 return *static_cast<LazyValueInfoCache*>(PImpl); in getCache() 1008 if (PImpl) in runOnFunction() 1009 getCache(PImpl).clear(); in runOnFunction() 1018 if (PImpl) { in releaseMemory() 1019 delete &getCache(PImpl); in releaseMemory() 1020 PImpl = 0; in releaseMemory() 1025 LVILatticeVal Result = getCache(PImpl).getValueInBlock(V, BB); in getConstant() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | LazyValueInfo.cpp | 1466 static LazyValueInfoImpl &getImpl(void *&PImpl, AssumptionCache *AC, in getImpl() argument 1469 if (!PImpl) { in getImpl() 1471 PImpl = new LazyValueInfoImpl(AC, *DL, DT); in getImpl() 1473 return *static_cast<LazyValueInfoImpl*>(PImpl); in getImpl() 1485 if (Info.PImpl) in runOnFunction() 1486 getImpl(Info.PImpl, Info.AC, &DL, Info.DT).clear(); in runOnFunction() 1504 if (PImpl) { in releaseMemory() 1505 delete &getImpl(PImpl, AC, nullptr); in releaseMemory() 1506 PImpl = nullptr; in releaseMemory() 1555 getImpl(PImpl, AC, &DL, DT).getValueInBlock(V, BB, CxtI); in getConstant() [all …]
|
/external/llvm/lib/Analysis/ |
D | LazyValueInfo.cpp | 1428 static LazyValueInfoCache &getCache(void *&PImpl, AssumptionCache *AC, in getCache() argument 1431 if (!PImpl) { in getCache() 1433 PImpl = new LazyValueInfoCache(AC, *DL, DT); in getCache() 1435 return *static_cast<LazyValueInfoCache*>(PImpl); in getCache() 1447 if (Info.PImpl) in runOnFunction() 1448 getCache(Info.PImpl, Info.AC, &DL, Info.DT).clear(); in runOnFunction() 1466 if (PImpl) { in releaseMemory() 1467 delete &getCache(PImpl, AC, nullptr); in releaseMemory() 1468 PImpl = nullptr; in releaseMemory() 1486 getCache(PImpl, AC, &DL, DT).getValueInBlock(V, BB, CxtI); in getConstant() [all …]
|
/external/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 2877 for (const auto *PImpl : IMPDecl->property_impls()) { in ImplMethodsVsClassMethods() local 2879 if (PImpl->getPropertyImplementation() != ObjCPropertyImplDecl::Dynamic) in ImplMethodsVsClassMethods() 2882 const auto *P = PImpl->getPropertyDecl(); in ImplMethodsVsClassMethods()
|