Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DLazyValueInfo.h37 void *PImpl = nullptr; variable
47 : AC(Arg.AC), DL(Arg.DL), TLI(Arg.TLI), DT(Arg.DT), PImpl(Arg.PImpl) { in LazyValueInfo()
48 Arg.PImpl = nullptr; in LazyValueInfo()
56 PImpl = Arg.PImpl;
57 Arg.PImpl = nullptr;
149 assert(!Info.PImpl && "releaseMemory not called");
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DLazyValueInfo.cpp1617 static LazyValueInfoImpl &getImpl(void *&PImpl, AssumptionCache *AC, in getImpl() argument
1620 if (!PImpl) { in getImpl()
1622 PImpl = new LazyValueInfoImpl(AC, *DL, DT); in getImpl()
1624 return *static_cast<LazyValueInfoImpl*>(PImpl); in getImpl()
1636 if (Info.PImpl) in runOnFunction()
1637 getImpl(Info.PImpl, Info.AC, &DL, Info.DT).clear(); in runOnFunction()
1655 if (PImpl) { in releaseMemory()
1656 delete &getImpl(PImpl, AC, nullptr); in releaseMemory()
1657 PImpl = nullptr; in releaseMemory()
1706 getImpl(PImpl, AC, &DL, DT).getValueInBlock(V, BB, CxtI); in getConstant()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DValueProfileCollector.cpp69 : PImpl(new ValueProfileCollectorImpl(F)) {} in ValueProfileCollector()
76 PImpl->get(Kind, Result); in get()
DValueProfileCollector.h74 std::unique_ptr<ValueProfileCollectorImpl> PImpl; variable