Halide 19.0.0
Halide compiler and libraries
|
Intrusive shared pointers have a reference count (a RefCount object) stored in the class itself. More...
#include <IntrusivePtr.h>
Public Member Functions | |
T * | get () const |
Access the raw pointer in a variety of ways. | |
T & | operator* () const |
T * | operator-> () const |
~IntrusivePtr () | |
HALIDE_ALWAYS_INLINE | IntrusivePtr ()=default |
HALIDE_ALWAYS_INLINE | IntrusivePtr (T *p) |
HALIDE_ALWAYS_INLINE | IntrusivePtr (const IntrusivePtr< T > &other) noexcept |
HALIDE_ALWAYS_INLINE | IntrusivePtr (IntrusivePtr< T > &&other) noexcept |
IntrusivePtr< T > & | operator= (const IntrusivePtr< T > &other) |
IntrusivePtr< T > & | operator= (IntrusivePtr< T > &&other) noexcept |
HALIDE_ALWAYS_INLINE bool | defined () const |
HALIDE_ALWAYS_INLINE bool | same_as (const IntrusivePtr &other) const |
HALIDE_ALWAYS_INLINE bool | operator< (const IntrusivePtr< T > &other) const |
HALIDE_ALWAYS_INLINE bool | is_sole_reference () const |
Protected Attributes | |
T * | ptr = nullptr |
Intrusive shared pointers have a reference count (a RefCount object) stored in the class itself.
This is perhaps more efficient than storing it externally, but more importantly, it means it's possible to recover a reference-counted handle from the raw pointer, and it's impossible to have two different reference counts attached to the same raw object. Seeing as we pass around raw pointers to concrete IRNodes and Expr's interchangeably, this is a useful property.
Definition at line 71 of file IntrusivePtr.h.
|
inline |
Definition at line 115 of file IntrusivePtr.h.
References Halide::Internal::IntrusivePtr< T >::ptr.
|
default |
|
inline |
Definition at line 123 of file IntrusivePtr.h.
References Halide::Internal::IntrusivePtr< T >::ptr.
|
inlinenoexcept |
Definition at line 129 of file IntrusivePtr.h.
References Halide::Internal::IntrusivePtr< T >::ptr.
|
inlinenoexcept |
Definition at line 135 of file IntrusivePtr.h.
|
inline |
Access the raw pointer in a variety of ways.
Note that a "const IntrusivePtr<T>" is not the same thing as an IntrusivePtr<const T>. So the methods that return the ptr are const, despite not adding an extra const to T.
Definition at line 102 of file IntrusivePtr.h.
References Halide::Internal::IntrusivePtr< T >::ptr.
Referenced by Halide::Internal::equal(), Halide::Internal::graph_equal(), Halide::Internal::graph_less_than(), Halide::Internal::FunctionPtr::group(), and Halide::Internal::less_than().
|
inline |
Definition at line 106 of file IntrusivePtr.h.
References Halide::Internal::IntrusivePtr< T >::ptr.
|
inline |
Definition at line 110 of file IntrusivePtr.h.
References Halide::Internal::IntrusivePtr< T >::ptr.
|
inline |
Definition at line 141 of file IntrusivePtr.h.
References Halide::Internal::IntrusivePtr< T >::ptr.
|
inlinenoexcept |
Definition at line 157 of file IntrusivePtr.h.
References Halide::Internal::IntrusivePtr< T >::ptr.
|
inline |
Definition at line 164 of file IntrusivePtr.h.
References Halide::Internal::IntrusivePtr< T >::ptr.
Referenced by Halide::Internal::Cost::defined(), Halide::Internal::FunctionPtr::defined(), Halide::Internal::ReductionDomain::defined(), Halide::Internal::equal(), Halide::Internal::graph_equal(), Halide::Internal::graph_less_than(), Halide::Internal::less_than(), Halide::Internal::ReductionDomain::Compare::operator()(), and Halide::Internal::GeneratorInput_Arithmetic< T >::set_def_min_max().
|
inline |
Definition at line 171 of file IntrusivePtr.h.
References Halide::Internal::IntrusivePtr< T >::ptr.
Referenced by Halide::Internal::mutate_region(), Halide::Internal::Definition::same_as(), and Halide::Internal::ReductionDomain::same_as().
|
inline |
Definition at line 176 of file IntrusivePtr.h.
References Halide::Internal::IntrusivePtr< T >::ptr.
|
inline |
Definition at line 181 of file IntrusivePtr.h.
References Halide::Internal::RefCount::atomic_get(), Halide::Internal::IntrusivePtr< T >::ptr, and Halide::Internal::ref_count().
|
protected |
Definition at line 94 of file IntrusivePtr.h.
Referenced by Halide::Internal::IntrusivePtr< T >::defined(), Halide::Internal::IntrusivePtr< T >::get(), Halide::Internal::IntrusivePtr< T >::IntrusivePtr(), Halide::Internal::IntrusivePtr< T >::IntrusivePtr(), Halide::Internal::IntrusivePtr< T >::is_sole_reference(), Halide::Internal::Stmt::Compare::operator()(), Halide::Internal::IntrusivePtr< T >::operator*(), Halide::Internal::IntrusivePtr< T >::operator->(), Halide::Internal::IntrusivePtr< T >::operator<(), Halide::Internal::IntrusivePtr< T >::operator=(), Halide::Internal::IntrusivePtr< T >::operator=(), Halide::Internal::IntrusivePtr< T >::same_as(), and Halide::Internal::IntrusivePtr< T >::~IntrusivePtr().