Home
last modified time | relevance | path

Searched refs:PImpl (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DLazyValueInfo.h36 void *PImpl = nullptr; variable
46 : AC(Arg.AC), DL(Arg.DL), TLI(Arg.TLI), PImpl(Arg.PImpl) { in LazyValueInfo()
47 Arg.PImpl = nullptr; in LazyValueInfo()
54 PImpl = Arg.PImpl;
55 Arg.PImpl = nullptr;
156 assert(!Info.PImpl && "releaseMemory not called");
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DLazyValueInfo.cpp1540 static LazyValueInfoImpl &getImpl(void *&PImpl, AssumptionCache *AC, in getImpl() argument
1542 if (!PImpl) { in getImpl()
1547 PImpl = new LazyValueInfoImpl(AC, DL, GuardDecl); in getImpl()
1549 return *static_cast<LazyValueInfoImpl*>(PImpl); in getImpl()
1556 if (Info.PImpl) in runOnFunction()
1557 getImpl(Info.PImpl, Info.AC, F.getParent()).clear(); in runOnFunction()
1575 if (PImpl) { in releaseMemory()
1576 delete &getImpl(PImpl, AC, nullptr); in releaseMemory()
1577 PImpl = nullptr; in releaseMemory()
1623 getImpl(PImpl, AC, BB->getModule()).getValueInBlock(V, BB, CxtI); in getConstant()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DValueProfileCollector.cpp68 : PImpl(new ValueProfileCollectorImpl(F, TLI)) {} in ValueProfileCollector()
75 PImpl->get(Kind, Result); in get()
H A DValueProfileCollector.h78 std::unique_ptr<ValueProfileCollectorImpl> PImpl; variable
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDeclObjC.cpp2991 for (const auto *PImpl : IMPDecl->property_impls()) { in ImplMethodsVsClassMethods() local
2993 if (PImpl->getPropertyImplementation() != ObjCPropertyImplDecl::Dynamic) in ImplMethodsVsClassMethods()
2996 const auto *P = PImpl->getPropertyDecl(); in ImplMethodsVsClassMethods()