lean2/src/util/rc.h

37 lines
1.5 KiB
C
Raw Normal View History

/*
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#pragma once
// Goodies for reference counting
#include "util/thread.h"
#include "util/debug.h"
#define MK_LEAN_RC() \
private: \
atomic<unsigned> m_rc; \
public: \
unsigned get_rc() const { return atomic_load(&m_rc); } \
void inc_ref() { atomic_fetch_add_explicit(&m_rc, 1u, memory_order_relaxed); } \
bool dec_ref_core() { lean_assert(get_rc() > 0); return atomic_fetch_sub_explicit(&m_rc, 1u, memory_order_relaxed) == 1u; } \
void dec_ref() { if (dec_ref_core()) dealloc(); }
#define LEAN_COPY_REF(T, Arg) \
if (Arg.m_ptr) \
Arg.m_ptr->inc_ref(); \
auto new_ptr = Arg.m_ptr; \
if (m_ptr) \
m_ptr->dec_ref(); \
2013-09-13 23:14:24 +00:00
m_ptr = new_ptr; \
return *this;
#define LEAN_MOVE_REF(T, Arg) \
if (m_ptr) \
m_ptr->dec_ref(); \
m_ptr = Arg.m_ptr; \
2013-08-01 20:57:43 +00:00
Arg.m_ptr = nullptr; \
return *this;