dexonsmith created this revision. dexonsmith added reviewers: JDevlieghere, dblaikie. Herald added subscribers: usaxena95, ributzka, kadircet, arphaman. dexonsmith requested review of this revision. Herald added projects: clang, LLVM. Herald added a subscriber: cfe-commits.
Allow a `std::unique_ptr` to be moved into the an `IntrusiveRefCntPtr`, and remove a couple of now-unnecessary `release()` calls. Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D92888 Files: clang-tools-extra/clangd/support/ThreadsafeFS.cpp clang/lib/Tooling/AllTUsExecution.cpp clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp llvm/include/llvm/ADT/IntrusiveRefCntPtr.h llvm/unittests/ADT/IntrusiveRefCntPtrTest.cpp Index: llvm/unittests/ADT/IntrusiveRefCntPtrTest.cpp =================================================================== --- llvm/unittests/ADT/IntrusiveRefCntPtrTest.cpp +++ llvm/unittests/ADT/IntrusiveRefCntPtrTest.cpp @@ -42,6 +42,17 @@ EXPECT_EQ(0, NumInstances); } +TYPED_TEST(IntrusiveRefCntPtrTest, InteropsWithUniquePtr) { + EXPECT_EQ(0, NumInstances); + { + auto S1 = std::make_unique<TypeParam>(); + IntrusiveRefCntPtr<TypeParam> R1 = std::move(S1); + EXPECT_EQ(1, NumInstances); + EXPECT_EQ(S1, nullptr); + } + EXPECT_EQ(0, NumInstances); +} + struct InterceptRefCounted : public RefCountedBase<InterceptRefCounted> { InterceptRefCounted(bool *Released, bool *Retained) : Released(Released), Retained(Retained) {} Index: llvm/include/llvm/ADT/IntrusiveRefCntPtr.h =================================================================== --- llvm/include/llvm/ADT/IntrusiveRefCntPtr.h +++ llvm/include/llvm/ADT/IntrusiveRefCntPtr.h @@ -58,6 +58,7 @@ #include <atomic> #include <cassert> #include <cstddef> +#include <memory> namespace llvm { @@ -175,6 +176,11 @@ S.Obj = nullptr; } + template <class X> + IntrusiveRefCntPtr(std::unique_ptr<X> &&S) : Obj(S.release()) { + retain(); + } + template <class X> IntrusiveRefCntPtr(const IntrusiveRefCntPtr<X> &S) : Obj(S.get()) { retain(); Index: clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp =================================================================== --- clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp +++ clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp @@ -154,7 +154,7 @@ : Format(Service.getFormat()) { DiagOpts = new DiagnosticOptions(); PCHContainerOps = std::make_shared<PCHContainerOperations>(); - RealFS = llvm::vfs::createPhysicalFileSystem().release(); + RealFS = llvm::vfs::createPhysicalFileSystem(); if (Service.canSkipExcludedPPRanges()) PPSkipMappings = std::make_unique<ExcludedPreprocessorDirectiveSkipMapping>(); Index: clang/lib/Tooling/AllTUsExecution.cpp =================================================================== --- clang/lib/Tooling/AllTUsExecution.cpp +++ clang/lib/Tooling/AllTUsExecution.cpp @@ -124,7 +124,7 @@ // Each thread gets an indepent copy of a VFS to allow different // concurrent working directories. IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS = - llvm::vfs::createPhysicalFileSystem().release(); + llvm::vfs::createPhysicalFileSystem(); ClangTool Tool(Compilations, {Path}, std::make_shared<PCHContainerOperations>(), FS); Tool.appendArgumentsAdjuster(Action.second); Index: clang-tools-extra/clangd/support/ThreadsafeFS.cpp =================================================================== --- clang-tools-extra/clangd/support/ThreadsafeFS.cpp +++ clang-tools-extra/clangd/support/ThreadsafeFS.cpp @@ -87,8 +87,7 @@ // Avoid using memory-mapped files. // FIXME: Try to use a similar approach in Sema instead of relying on // propagation of the 'isVolatile' flag through all layers. - return new VolatileFileSystem( - llvm::vfs::createPhysicalFileSystem().release()); + return new VolatileFileSystem(llvm::vfs::createPhysicalFileSystem()); } } // namespace clangd } // namespace clang
Index: llvm/unittests/ADT/IntrusiveRefCntPtrTest.cpp =================================================================== --- llvm/unittests/ADT/IntrusiveRefCntPtrTest.cpp +++ llvm/unittests/ADT/IntrusiveRefCntPtrTest.cpp @@ -42,6 +42,17 @@ EXPECT_EQ(0, NumInstances); } +TYPED_TEST(IntrusiveRefCntPtrTest, InteropsWithUniquePtr) { + EXPECT_EQ(0, NumInstances); + { + auto S1 = std::make_unique<TypeParam>(); + IntrusiveRefCntPtr<TypeParam> R1 = std::move(S1); + EXPECT_EQ(1, NumInstances); + EXPECT_EQ(S1, nullptr); + } + EXPECT_EQ(0, NumInstances); +} + struct InterceptRefCounted : public RefCountedBase<InterceptRefCounted> { InterceptRefCounted(bool *Released, bool *Retained) : Released(Released), Retained(Retained) {} Index: llvm/include/llvm/ADT/IntrusiveRefCntPtr.h =================================================================== --- llvm/include/llvm/ADT/IntrusiveRefCntPtr.h +++ llvm/include/llvm/ADT/IntrusiveRefCntPtr.h @@ -58,6 +58,7 @@ #include <atomic> #include <cassert> #include <cstddef> +#include <memory> namespace llvm { @@ -175,6 +176,11 @@ S.Obj = nullptr; } + template <class X> + IntrusiveRefCntPtr(std::unique_ptr<X> &&S) : Obj(S.release()) { + retain(); + } + template <class X> IntrusiveRefCntPtr(const IntrusiveRefCntPtr<X> &S) : Obj(S.get()) { retain(); Index: clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp =================================================================== --- clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp +++ clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp @@ -154,7 +154,7 @@ : Format(Service.getFormat()) { DiagOpts = new DiagnosticOptions(); PCHContainerOps = std::make_shared<PCHContainerOperations>(); - RealFS = llvm::vfs::createPhysicalFileSystem().release(); + RealFS = llvm::vfs::createPhysicalFileSystem(); if (Service.canSkipExcludedPPRanges()) PPSkipMappings = std::make_unique<ExcludedPreprocessorDirectiveSkipMapping>(); Index: clang/lib/Tooling/AllTUsExecution.cpp =================================================================== --- clang/lib/Tooling/AllTUsExecution.cpp +++ clang/lib/Tooling/AllTUsExecution.cpp @@ -124,7 +124,7 @@ // Each thread gets an indepent copy of a VFS to allow different // concurrent working directories. IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS = - llvm::vfs::createPhysicalFileSystem().release(); + llvm::vfs::createPhysicalFileSystem(); ClangTool Tool(Compilations, {Path}, std::make_shared<PCHContainerOperations>(), FS); Tool.appendArgumentsAdjuster(Action.second); Index: clang-tools-extra/clangd/support/ThreadsafeFS.cpp =================================================================== --- clang-tools-extra/clangd/support/ThreadsafeFS.cpp +++ clang-tools-extra/clangd/support/ThreadsafeFS.cpp @@ -87,8 +87,7 @@ // Avoid using memory-mapped files. // FIXME: Try to use a similar approach in Sema instead of relying on // propagation of the 'isVolatile' flag through all layers. - return new VolatileFileSystem( - llvm::vfs::createPhysicalFileSystem().release()); + return new VolatileFileSystem(llvm::vfs::createPhysicalFileSystem()); } } // namespace clangd } // namespace clang
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits