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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLazyValueInfo.h37 void *PImpl = nullptr; member in class:llvm::LazyValueInfo
47 : AC(Arg.AC), DL(Arg.DL), TLI(Arg.TLI), DT(Arg.DT), PImpl(Arg.PImpl) {
48 Arg.PImpl = nullptr;
56 PImpl = Arg.PImpl;
57 Arg.PImpl = nullptr;
149 assert(!Info.PImpl && "releaseMemory not called");
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DValueProfileCollector.h74 std::unique_ptr<ValueProfileCollectorImpl> PImpl; member in class:llvm::ValueProfileCollector
H A DValueProfileCollector.cpp69 : PImpl(new ValueProfileCollectorImpl(F)) {}
76 PImpl->get(Kind, Result);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLazyValueInfo.cpp1617 static LazyValueInfoImpl &getImpl(void *&PImpl, AssumptionCache *AC,
1620 if (!PImpl) {
1622 PImpl = new LazyValueInfoImpl(AC, *DL, DT);
1624 return *static_cast<LazyValueInfoImpl*>(PImpl);
1636 if (Info.PImpl)
1637 getImpl(Info.PImpl, Info.AC, &DL, Info.DT).clear();
1655 if (PImpl) {
1656 delete &getImpl(PImpl, AC, nullptr);
1657 PImpl = nullptr;
1706 getImpl(PImpl, A
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp2966 for (const auto *PImpl : IMPDecl->property_impls()) {
2968 if (PImpl->getPropertyImplementation() != ObjCPropertyImplDecl::Dynamic)
2971 const auto *P = PImpl->getPropertyDecl();

Completed in 94 milliseconds