.. | ||
aligned_memory.cc | ||
aligned_memory.h | ||
discardable_memory_allocator.cc | ||
discardable_memory_allocator.h | ||
discardable_memory_internal.h | ||
discardable_memory.cc | ||
discardable_memory.h | ||
discardable_shared_memory.cc | ||
discardable_shared_memory.h | ||
free_deleter.h | ||
madv_free_discardable_memory_allocator_posix.cc | ||
madv_free_discardable_memory_allocator_posix.h | ||
madv_free_discardable_memory_posix.cc | ||
madv_free_discardable_memory_posix.h | ||
memory_pressure_listener.cc | ||
memory_pressure_listener.h | ||
memory_pressure_monitor.cc | ||
memory_pressure_monitor.h | ||
MIRACLE_PTR_OWNERS | ||
nonscannable_memory.cc | ||
nonscannable_memory.h | ||
OWNERS | ||
page_size_nacl.cc | ||
page_size_posix.cc | ||
page_size_win.cc | ||
page_size.h | ||
platform_shared_memory_handle.cc | ||
platform_shared_memory_handle.h | ||
platform_shared_memory_mapper_android.cc | ||
platform_shared_memory_mapper_apple.cc | ||
platform_shared_memory_mapper_fuchsia.cc | ||
platform_shared_memory_mapper_posix.cc | ||
platform_shared_memory_mapper_win.cc | ||
platform_shared_memory_mapper.h | ||
platform_shared_memory_region_android.cc | ||
platform_shared_memory_region_apple.cc | ||
platform_shared_memory_region_fuchsia.cc | ||
platform_shared_memory_region_posix.cc | ||
platform_shared_memory_region_win.cc | ||
platform_shared_memory_region.cc | ||
platform_shared_memory_region.h | ||
ptr_util.h | ||
raw_ptr_asan_bound_arg_tracker.cc | ||
raw_ptr_asan_bound_arg_tracker.h | ||
raw_ptr_asan_hooks.cc | ||
raw_ptr_asan_hooks.h | ||
raw_ptr_asan_service.cc | ||
raw_ptr_asan_service.h | ||
raw_ptr_cast.h | ||
raw_ptr_exclusion.h | ||
raw_ptr_liveness.dot | ||
raw_ptr_liveness.png | ||
raw_ptr.h | ||
raw_ptr.md | ||
raw_ref.h | ||
raw_scoped_refptr_mismatch_checker.h | ||
read_only_shared_memory_region.cc | ||
read_only_shared_memory_region.h | ||
README.md | ||
ref_counted_delete_on_sequence.h | ||
ref_counted_memory.cc | ||
ref_counted_memory.h | ||
ref_counted.cc | ||
ref_counted.h | ||
safe_ref_traits.h | ||
safe_ref.h | ||
scoped_policy.h | ||
scoped_refptr.h | ||
shared_memory_hooks.h | ||
shared_memory_mapper.cc | ||
shared_memory_mapper.h | ||
shared_memory_mapping.cc | ||
shared_memory_mapping.h | ||
shared_memory_security_policy.cc | ||
shared_memory_security_policy.h | ||
shared_memory_tracker.cc | ||
shared_memory_tracker.h | ||
singleton.h | ||
stack_allocated.h | ||
unsafe_shared_memory_pool.cc | ||
unsafe_shared_memory_pool.h | ||
unsafe_shared_memory_region.cc | ||
unsafe_shared_memory_region.h | ||
values_equivalent.h | ||
weak_auto_reset.h | ||
weak_ptr.cc | ||
weak_ptr.h | ||
writable_shared_memory_region.cc | ||
writable_shared_memory_region.h |
//base/memory Types
Overview
This directory contains a variety of pointer-like objects (aka smart pointers).
This is a brief overview of what they are and how they should be used. Refer to
individual header files for details. C++ is not memory safe, so use these types
to help guard against potential memory bugs.
There are other pointer-like object types implemented elsewhere that may be
right for a given use case, such as absl::optional<T>
and
std::unique_ptr<T>
. More on all types in video form
here and in a doc
here.
raw_ptr<T>
Use for class fields/members that would otherwise be a T*
.
This is a weakly refcounted wrapper for a T*
(also called a raw
pointer). When the object is deleted, the allocator will "poison" the memory
that object occupied and keep the memory around so it’s not reused. This reduces
the risk and impact of a use-after-free bug.
Depending on the use case, it's possible a smart pointer with additional
features would be more appropriate, but if none of those are applicable or
necessary, raw_ptr<T>
is preferred over a T*
.
For more information, see raw_ptr.md
; for guidance on
usage, see
the style guide.
raw_ref<T>
Use for class fields/members that would otherwise be a T&
.
This shares much in common with raw_ptr<T>
, but asserts that the
raw_ref<T>
is not nullable.
For more information, see raw_ptr.md
; for guidance on
usage, see
the style guide.
base::WeakPtr<T>
Use when a reference to an object might outlive the object itself.
These are useful for asynchronous work, which is common in Chrome. If an async
task references other objects or state, and it's possible for that state to be
destroyed before the task runs, those references should be held in a
WeakPtr<T>
. Each WeakPtr<T>
is associated with a WeakPtrFactory<T>
. When
the associated factory (usually owned by T) is destroyed, all WeakPtr<T>
are
invalidated (becomes null) rather than becoming use-after-frees. If such
references should never outlive the object, consider using SafeRef instead.
base::SafeRef<T>
Use to express that a reference to an object must not outlive the object.
An example is if you have a class member that you want to guarantee outlives the class itself. SafeRef automatically enforces the lifetime assumptions and eliminates the need for validity checks.
If the assumption that the object is valid is broken, then the process terminates safely and generates a crash report. Though not ideal, it's preferable to a potentially undiscovered security bug.
This type is built on top of WeakPtr, so if you want a SafeRef<T>
, T needs a
WeakPtrFactory as a member. It works like WeakPtr
, but doesn't allow for a
null state. There's also overlap with raw_ptr
, though this was implemented
first.
base::scoped_refptr<T>
Use when you want manually managed strong refcounting. Use carefully!
It’s an owning smart pointer, so it owns a pointer to something allocated in the
heap and gives shared ownership of the underlying object, since it can be
copied. When all scoped_refptr
s pointing to the same object are gone, that
object gets destroyed.
This is Chrome's answer to std::shared_ptr<T>
. It additionally requires T to
inherit from RefCounted
or RefCountedThreadSafe
, since the ref counting
happens in the object itself, unlike shared_ptr<T>
. It's preferred for an
object to remain on the same thread, as RefCounted
is much cheaper. If there
are scoped_refptr
s to the same object on different threads, use
RefCountedThreadSafe
, since accesses to the reference count can race.
In this case, without external synchronization, the destructor can run on any
thread. If the destructor interacts with other systems it is important to
control and know which thread has the last reference to the object, or you can
end up with flakiness.