From 95e78348f08fab152b2b03c516cc9f22ed60b8de Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Tue, 26 Feb 2008 21:44:24 +0000 Subject: [PATCH] Update per review. Patch by Mikhail Glushenkov! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47628 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ADT/IntrusiveRefCntPtr.h | 73 ++++++++--------------------------- 1 file changed, 17 insertions(+), 56 deletions(-) diff --git a/include/llvm/ADT/IntrusiveRefCntPtr.h b/include/llvm/ADT/IntrusiveRefCntPtr.h index 1a27d6cfce2..8804f2b20f7 100644 --- a/include/llvm/ADT/IntrusiveRefCntPtr.h +++ b/include/llvm/ADT/IntrusiveRefCntPtr.h @@ -22,34 +22,13 @@ #define LLVM_ADT_INTRUSIVE_REF_CNT_PTR #include -#include #include "llvm/Support/Casting.h" -// Forward declarations - namespace llvm { - template - class RefCountedBase; template - class RefCountedBaseVPTR; -} - -template -void IntrusivePtrAddRef(llvm::RefCountedBase*); - -template -void IntrusivePtrRelease(llvm::RefCountedBase*); - -template -void IntrusivePtrAddRef(llvm::RefCountedBaseVPTR*); - -template -void IntrusivePtrRelease(llvm::RefCountedBaseVPTR*); - - -namespace llvm { + class IntrusiveRefCntPtr; //===----------------------------------------------------------------------===// /// RefCountedBase - A generic base class for objects that wish to @@ -74,16 +53,16 @@ namespace llvm { if (--ref_cnt == 0) delete static_cast(this); } - friend void IntrusivePtrAddRef(RefCountedBase*); - friend void IntrusivePtrRelease(RefCountedBase*); + friend class IntrusiveRefCntPtr; }; //===----------------------------------------------------------------------===// /// RefCountedBaseVPTR - A class that has the same function as /// RefCountedBase, but with a virtual destructor. Should be used -/// instead of RefCountedBase for classes that have virtual -/// destructors. Classes that inherit from RefCountedBaseVPTR can't -/// be allocated on stack. +/// instead of RefCountedBase for classes that already have virtual +/// methods to enforce dynamic allocation via 'new'. Classes that +/// inherit from RefCountedBaseVPTR can't be allocated on stack - +/// attempting to do this will produce a compile error. //===----------------------------------------------------------------------===// template class RefCountedBaseVPTR { @@ -99,33 +78,9 @@ namespace llvm { if (--ref_cnt == 0) delete this; } - friend void IntrusivePtrAddRef(RefCountedBaseVPTR*); - friend void IntrusivePtrRelease(RefCountedBaseVPTR*); + friend class IntrusiveRefCntPtr; }; -} - -//===----------------------------------------------------------------------===// -/// IntrusivePtrAddRef - A utility function used by IntrusiveRefCntPtr -/// to increment the reference count of an RefCountedBase-derived object. -//===----------------------------------------------------------------------===// -template -void IntrusivePtrAddRef(llvm::RefCountedBase* O) { - O->Retain(); -} - -//===----------------------------------------------------------------------===// -/// IntrusivePtrRelease - The complement of IntrusivePtrAddRef; -/// decrements the reference count of a RefCounted object. -//===----------------------------------------------------------------------===// -template -void IntrusivePtrRelease(llvm::RefCountedBase* O) { - O->Release(); -} - - -namespace llvm { - //===----------------------------------------------------------------------===// /// IntrusiveRefCntPtr - A template class that implements a "smart pointer" /// that assumes the wrapped object has a reference count associated @@ -136,6 +91,12 @@ namespace llvm { /// incremented and upon destruction of the smart pointer the /// reference count is decremented. This class also safely handles /// wrapping NULL pointers. +/// +/// Reference counting is implemented via calls to +/// Obj->Retain()/Obj->Release(). Release() is required to destroy +/// the object when the reference count reaches zero. Inheriting from +/// RefCountedBase/RefCountedBaseVPTR takes care of this +/// automatically. //===----------------------------------------------------------------------===// template class IntrusiveRefCntPtr { @@ -144,7 +105,7 @@ namespace llvm { public: typedef T element_type; - explicit IntrusiveRefCntPtr() : Obj(NULL) {} + explicit IntrusiveRefCntPtr() : Obj(0) {} explicit IntrusiveRefCntPtr(T* obj) : Obj(obj) { retain(); @@ -181,7 +142,7 @@ namespace llvm { typedef T * IntrusiveRefCntPtr::*unspecified_bool_type; operator unspecified_bool_type() const { - return Obj == NULL ? NULL : &IntrusiveRefCntPtr::getPtr; + return Obj == 0 ? 0 : &IntrusiveRefCntPtr::getPtr; } void swap(IntrusiveRefCntPtr& other) { @@ -191,8 +152,8 @@ namespace llvm { } private: - void retain() { if (Obj) IntrusivePtrAddRef(Obj); } - void release() { if (Obj) IntrusivePtrRelease(Obj); } + void retain() { if (Obj) Obj->Retain(); } + void release() { if (Obj) Obj->Release(); } void replace(T* S) { this_type(S).swap(this); -- 2.11.0