[PATCH] D94440: [ADT] Add makeIntrusiveRefCnt helper function
Nathan James via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 11 12:12:42 PST 2021
njames93 updated this revision to Diff 315903.
njames93 added a comment.
Address comments.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D94440/new/
https://reviews.llvm.org/D94440
Files:
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
@@ -53,6 +53,22 @@
EXPECT_EQ(0, NumInstances);
}
+TYPED_TEST(IntrusiveRefCntPtrTest, MakeIntrusiveRefCnt) {
+ EXPECT_EQ(0, NumInstances);
+ {
+ auto S1 = makeIntrusiveRefCnt<TypeParam>();
+ auto S2 = makeIntrusiveRefCnt<const TypeParam>();
+ EXPECT_EQ(2, NumInstances);
+ static_assert(
+ std::is_same<decltype(S1), IntrusiveRefCntPtr<TypeParam>>::value,
+ "Non-const type mismatch");
+ static_assert(
+ std::is_same<decltype(S2), IntrusiveRefCntPtr<const TypeParam>>::value,
+ "Const type mismatch");
+ }
+ 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
@@ -297,6 +297,12 @@
}
};
+/// Factory function for creating intrusive ref counted pointers.
+template <typename T, typename... Args>
+IntrusiveRefCntPtr<T> makeIntrusiveRefCnt(Args &&...A) {
+ return IntrusiveRefCntPtr<T>(new T(std::forward<Args>(A)...));
+}
+
} // end namespace llvm
#endif // LLVM_ADT_INTRUSIVEREFCNTPTR_H
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D94440.315903.patch
Type: text/x-patch
Size: 1543 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210111/ddadf9d0/attachment.bin>
More information about the llvm-commits
mailing list