Searched refs:PImpl (Results 1 – 3 of 3) sorted by relevance
/external/llvm/include/llvm/Analysis/ |
D | LazyValueInfo.h | 34 void *PImpl; variable 39 LazyValueInfo() : FunctionPass(ID), PImpl(nullptr) { in LazyValueInfo() 42 ~LazyValueInfo() override { assert(!PImpl && "releaseMemory not called"); } in ~LazyValueInfo()
|
/external/llvm/lib/Analysis/ |
D | LazyValueInfo.cpp | 1165 static LazyValueInfoCache &getCache(void *&PImpl, AssumptionCache *AC, in getCache() argument 1168 if (!PImpl) { in getCache() 1170 PImpl = new LazyValueInfoCache(AC, *DL, DT); in getCache() 1172 return *static_cast<LazyValueInfoCache*>(PImpl); in getCache() 1185 if (PImpl) in runOnFunction() 1186 getCache(PImpl, AC, &DL, DT).clear(); in runOnFunction() 1200 if (PImpl) { in releaseMemory() 1201 delete &getCache(PImpl, AC, nullptr); in releaseMemory() 1202 PImpl = nullptr; in releaseMemory() 1210 getCache(PImpl, AC, &DL, DT).getValueInBlock(V, BB, CxtI); in getConstant() [all …]
|
/external/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 2849 for (const auto *PImpl : IMPDecl->property_impls()) { in ImplMethodsVsClassMethods() local 2851 if (PImpl->getPropertyImplementation() != ObjCPropertyImplDecl::Dynamic) in ImplMethodsVsClassMethods() 2854 const auto *P = PImpl->getPropertyDecl(); in ImplMethodsVsClassMethods()
|