Add first proof-of-concept universal compiler driver framework based
[oota-llvm.git] / include / llvm / ADT / IntrusiveRefCntPtr.h
1 //== llvm/ADT/IntrusiveRefCntPtr.h - Smart Refcounting Pointer ----*- C++ -*-==//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines IntrusiveRefCntPtr, a template class that
11 // implements a "smart" pointer for objects that maintain their own
12 // internal reference count, and RefCountedBase/RefCountedBaseVPTR, two
13 // generic base classes for objects that wish to have their lifetimes
14 // managed using reference counting.
15 //
16 // IntrusiveRefCntPtr is similar to Boost's intrusive_ptr with added
17 // LLVM-style casting.
18 //
19 //===----------------------------------------------------------------------===//
20
21 #ifndef LLVM_ADT_INTRUSIVE_REF_CNT_PTR
22 #define LLVM_ADT_INTRUSIVE_REF_CNT_PTR
23
24 #include <cassert>
25
26 #include "llvm/Support/Casting.h"
27
28 namespace llvm {
29
30   template <class T>
31   class IntrusiveRefCntPtr;
32
33 //===----------------------------------------------------------------------===//
34 /// RefCountedBase - A generic base class for objects that wish to
35 ///  have their lifetimes managed using reference counts. Classes
36 ///  subclass RefCountedBase to obtain such functionality, and are
37 ///  typically handled with IntrusivePtr "smart pointers" (see below)
38 ///  which automatically handle the management of reference counts.
39 ///  Objects that subclass RefCountedBase should not be allocated on
40 ///  the stack, as invoking "delete" (which is called when the
41 ///  reference count hits 0) on such objects is an error.
42 //===----------------------------------------------------------------------===//
43   template <class Derived>
44   class RefCountedBase {
45     unsigned ref_cnt;
46
47   protected:
48     RefCountedBase() : ref_cnt(0) {}
49
50     void Retain() { ++ref_cnt; }
51     void Release() {
52       assert (ref_cnt > 0 && "Reference count is already zero.");
53       if (--ref_cnt == 0) delete static_cast<Derived*>(this);
54     }
55
56     friend class IntrusiveRefCntPtr<Derived>;
57   };
58
59 //===----------------------------------------------------------------------===//
60 /// RefCountedBaseVPTR - A class that has the same function as
61 ///  RefCountedBase, but with a virtual destructor. Should be used
62 ///  instead of RefCountedBase for classes that already have virtual
63 ///  methods to enforce dynamic allocation via 'new'. Classes that
64 ///  inherit from RefCountedBaseVPTR can't be allocated on stack -
65 ///  attempting to do this will produce a compile error.
66 //===----------------------------------------------------------------------===//
67   template <class Derived>
68   class RefCountedBaseVPTR {
69     unsigned ref_cnt;
70
71   protected:
72     RefCountedBaseVPTR() : ref_cnt(0) {}
73     virtual ~RefCountedBaseVPTR() {}
74
75     void Retain() { ++ref_cnt; }
76     void Release() {
77       assert (ref_cnt > 0 && "Reference count is already zero.");
78       if (--ref_cnt == 0) delete this;
79     }
80
81     friend class IntrusiveRefCntPtr<Derived>;
82   };
83
84 //===----------------------------------------------------------------------===//
85 /// IntrusiveRefCntPtr - A template class that implements a "smart pointer"
86 ///  that assumes the wrapped object has a reference count associated
87 ///  with it that can be managed via calls to
88 ///  IntrusivePtrAddRef/IntrusivePtrRelease.  The smart pointers
89 ///  manage reference counts via the RAII idiom: upon creation of
90 ///  smart pointer the reference count of the wrapped object is
91 ///  incremented and upon destruction of the smart pointer the
92 ///  reference count is decremented.  This class also safely handles
93 ///  wrapping NULL pointers.
94 ///
95 /// Reference counting is implemented via calls to
96 ///  Obj->Retain()/Obj->Release(). Release() is required to destroy
97 ///  the object when the reference count reaches zero. Inheriting from
98 ///  RefCountedBase/RefCountedBaseVPTR takes care of this
99 ///  automatically.
100 //===----------------------------------------------------------------------===//
101   template <typename T>
102   class IntrusiveRefCntPtr {
103     T* Obj;
104     typedef IntrusiveRefCntPtr this_type;
105   public:
106     typedef T element_type;
107
108     explicit IntrusiveRefCntPtr() : Obj(0) {}
109
110     explicit IntrusiveRefCntPtr(T* obj) : Obj(obj) {
111       retain();
112     }
113
114     IntrusiveRefCntPtr(const IntrusiveRefCntPtr& S) : Obj(S.Obj) {
115       retain();
116     }
117
118     template <class X>
119     IntrusiveRefCntPtr(const IntrusiveRefCntPtr<X>& S)
120       : Obj(S.getPtr()) {
121       retain();
122     }
123
124     template <class X>
125     IntrusiveRefCntPtr& operator=(const IntrusiveRefCntPtr<X>& S) {
126       replace(S.getPtr());
127       return *this;
128     }
129
130     IntrusiveRefCntPtr& operator=(T * S) {
131       replace(S);
132       return *this;
133     }
134
135     ~IntrusiveRefCntPtr() { release(); }
136
137     T& operator*() const { return *Obj; }
138
139     T* operator->() const { return Obj; }
140
141     T* getPtr() const { return Obj; }
142
143     typedef T * IntrusiveRefCntPtr::*unspecified_bool_type;
144     operator unspecified_bool_type() const {
145       return Obj == 0 ? 0 : &IntrusiveRefCntPtr::getPtr;
146     }
147
148     void swap(IntrusiveRefCntPtr& other) {
149       T* tmp = other.Obj;
150       other.Obj = Obj;
151       Obj = tmp;
152     }
153
154   private:
155     void retain() { if (Obj) Obj->Retain(); }
156     void release() { if (Obj) Obj->Release(); }
157
158     void replace(T* S) {
159       this_type(S).swap(this);
160     }
161   };
162
163   template<class T, class U>
164   inline bool operator==(const IntrusiveRefCntPtr<T>& A,
165                          const IntrusiveRefCntPtr<U>& B)
166   {
167     return A.getPtr() == B.getPtr();
168   }
169
170   template<class T, class U>
171   inline bool operator!=(const IntrusiveRefCntPtr<T>& A,
172                          const IntrusiveRefCntPtr<U>& B)
173   {
174     return A.getPtr() != B.getPtr();
175   }
176
177   template<class T, class U>
178   inline bool operator==(const IntrusiveRefCntPtr<T>& A,
179                          U* B)
180   {
181     return A.getPtr() == B;
182   }
183
184   template<class T, class U>
185   inline bool operator!=(const IntrusiveRefCntPtr<T>& A,
186                          U* B)
187   {
188     return A.getPtr() != B;
189   }
190
191   template<class T, class U>
192   inline bool operator==(T* A,
193                          const IntrusiveRefCntPtr<U>& B)
194   {
195     return A == B.getPtr();
196   }
197
198   template<class T, class U>
199   inline bool operator!=(T* A,
200                          const IntrusiveRefCntPtr<U>& B)
201   {
202     return A != B.getPtr();
203   }
204
205 //===----------------------------------------------------------------------===//
206 // LLVM-style downcasting support for IntrusiveRefCntPtr objects
207 //===----------------------------------------------------------------------===//
208
209   template<class T> struct simplify_type<IntrusiveRefCntPtr<T> > {
210     typedef T* SimpleType;
211     static SimpleType getSimplifiedValue(const IntrusiveRefCntPtr<T>& Val) {
212       return Val.getPtr();
213     }
214   };
215
216   template<class T> struct simplify_type<const IntrusiveRefCntPtr<T> > {
217     typedef T* SimpleType;
218     static SimpleType getSimplifiedValue(const IntrusiveRefCntPtr<T>& Val) {
219       return Val.getPtr();
220     }
221   };
222
223 } // end namespace llvm
224
225 #endif // LLVM_ADT_INTRUSIVE_REF_CNT_PTR