xo-alloc2: header reorg + DX1Collector utest
This commit is contained in:
parent
9b74d749a3
commit
29a15547fb
12 changed files with 685 additions and 0 deletions
63
xo-alloc2/include/xo/alloc2/AllocatorError.hpp
Normal file
63
xo-alloc2/include/xo/alloc2/AllocatorError.hpp
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
/** @file AllocatorError.hpp
|
||||
*
|
||||
* @author Roland Conybeare, Dec 2025
|
||||
**/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include <cstddef>
|
||||
|
||||
namespace xo {
|
||||
namespace mm {
|
||||
enum class error : int32_t {
|
||||
/** sentinel **/
|
||||
invalid = -1,
|
||||
/** not an error **/
|
||||
none,
|
||||
/** reserved size exhauged **/
|
||||
reserve_exhausted,
|
||||
/** unable to commit (i.e. mprotect failure) **/
|
||||
commit_failed,
|
||||
/** allocation size too big (See @ref ArenaConfig::header_size_mask_) **/
|
||||
header_size_mask,
|
||||
/** sub_alloc not preceded by super alloc (or another sub_alloc) **/
|
||||
orphan_sub_alloc,
|
||||
};
|
||||
|
||||
struct AllocatorError {
|
||||
using size_type = std::size_t;
|
||||
using value_type = std::byte*;
|
||||
|
||||
AllocatorError() = default;
|
||||
explicit AllocatorError(error err,
|
||||
uint32_t seq) : error_{err},
|
||||
error_seq_{seq} {}
|
||||
AllocatorError(error err,
|
||||
uint32_t seq,
|
||||
size_type req_z,
|
||||
size_type com_z,
|
||||
size_type rsv_z) : error_{err},
|
||||
error_seq_{seq},
|
||||
request_z_{req_z},
|
||||
committed_z_{com_z},
|
||||
reserved_z_{rsv_z} {}
|
||||
|
||||
/** error code **/
|
||||
error error_ = error::none;
|
||||
|
||||
/** sequence# of this error.
|
||||
* Each error event within an allocator gets next sequence number
|
||||
**/
|
||||
uint32_t error_seq_ = 0;
|
||||
/** reqeust size assoc'd with errror **/
|
||||
size_type request_z_ = 0;
|
||||
/** committed allocator memory at time of error **/
|
||||
size_type committed_z_ = 0;
|
||||
/** reserved allocator memory at time of error **/
|
||||
size_type reserved_z_ = 0;
|
||||
};
|
||||
} /*namespace mm*/
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end AllocatorError.hpp */
|
||||
60
xo-alloc2/include/xo/alloc2/gc/ACollector.hpp
Normal file
60
xo-alloc2/include/xo/alloc2/gc/ACollector.hpp
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
/** @file ACollector.hpp
|
||||
*
|
||||
* @author Roland Conybeare, Dec 2025
|
||||
**/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "IGCObject_Any.hpp"
|
||||
|
||||
#include <xo/facet/facet_implementation.hpp>
|
||||
#include <xo/facet/typeseq.hpp>
|
||||
#include <xo/facet/obj.hpp>
|
||||
|
||||
#include "gc/generation.hpp"
|
||||
#include "gc/role.hpp"
|
||||
|
||||
#include <cstdint>
|
||||
#include <cstddef>
|
||||
|
||||
namespace xo {
|
||||
namespace mm {
|
||||
using Copaque = const void *;
|
||||
using Opaque = void *;
|
||||
|
||||
struct IGCObject_Any; // see IGCObject_Any.hpp
|
||||
|
||||
/** @class ACollector
|
||||
* @brief Abstract facet for the XO garbage collector
|
||||
*
|
||||
* Collector also supports the @ref AAllocator facet, see also
|
||||
**/
|
||||
struct ACollector {
|
||||
using size_type = std::size_t;
|
||||
|
||||
virtual int32_t _typeseq() const noexcept = 0;
|
||||
|
||||
virtual size_type allocated(Copaque d, generation g, role r) const noexcept = 0;
|
||||
virtual size_type reserved(Copaque d, generation g, role r) const noexcept = 0;
|
||||
virtual size_type committed(Copaque d, generation g, role r) const noexcept = 0;
|
||||
|
||||
/** install interface @p iface for representation with typeseq @p tseq
|
||||
* in collector @p d.
|
||||
*
|
||||
* The type AGCObject_Any here is misleading.
|
||||
* Will have been replaced by an instance of
|
||||
* @c AGCObject_Xfer<DFoo,AGCObject_DFoo> for some @c DFoo
|
||||
* in which case calls through @c std::launder(&iface)
|
||||
* will properly act on @c DFoo.
|
||||
**/
|
||||
virtual void install_type(Opaque d, int32_t tseq, IGCObject_Any & iface) = 0;
|
||||
virtual void add_gc_root(Opaque d, int32_t tseq, Opaque * root) = 0;
|
||||
|
||||
/** evacuate @p *lhs to to-space and replace with forwarding pointer
|
||||
* Require: gc in progress
|
||||
**/
|
||||
virtual void forward_inplace(Opaque d, obj<AGCObject> * lhs) = 0;
|
||||
};
|
||||
}
|
||||
|
||||
} /*namespace xo*/
|
||||
54
xo-alloc2/include/xo/alloc2/gc/AGCObject.hpp
Normal file
54
xo-alloc2/include/xo/alloc2/gc/AGCObject.hpp
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
/** @file AGCObject.hpp
|
||||
*
|
||||
* @author Roland Conybeare, Dec 2025
|
||||
**/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "IAllocator_Any.hpp"
|
||||
#include "RAllocator.hpp"
|
||||
#include "xo/facet/facet_implementation.hpp"
|
||||
#include "xo/facet/typeseq.hpp"
|
||||
#include "xo/facet/obj.hpp" // for obj<AAllocator> in shallow_copy
|
||||
#include <cstdint>
|
||||
#include <cstddef>
|
||||
|
||||
namespace xo {
|
||||
namespace mm {
|
||||
using Copaque = const void *;
|
||||
using Opaque = void *;
|
||||
|
||||
/** @class AObject
|
||||
* @brief Abstract facet for collector-eligible data
|
||||
*
|
||||
* Data that supports AGCObject can have memory managed
|
||||
* by ACollector
|
||||
**/
|
||||
struct AGCObject {
|
||||
using size_type = std::size_t;
|
||||
|
||||
/** RTTI: unique id# for actual runtime data representation **/
|
||||
virtual int32_t _typeseq() const noexcept = 0;
|
||||
|
||||
virtual size_type shallow_size(Copaque d) const noexcept = 0;
|
||||
virtual Opaque * shallow_copy(Copaque d,
|
||||
obj<AAllocator> mm) const noexcept = 0;
|
||||
virtual size_type forward_children(Opaque d) const noexcept = 0;
|
||||
};
|
||||
|
||||
// implementation IGCObject_DRepr of AGCObject for state DRepr
|
||||
// should provide a specialization:
|
||||
//
|
||||
// template <>
|
||||
// struct xo::facet::FacetImplementation<AGCObjectx, DRepr> {
|
||||
// using ImplType = IGCObject_DRepr;
|
||||
// };
|
||||
//
|
||||
// then IGCObject_ImplType<DRepr> --> IGCObject_DRepr
|
||||
//
|
||||
template <typename DRepr>
|
||||
using IGCObject_ImplType = xo::facet::FacetImplType<AGCObject, DRepr>;
|
||||
} /*namespace mm*/
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end AGCObject.hpp */
|
||||
12
xo-alloc2/include/xo/alloc2/gc/Collector.hpp
Normal file
12
xo-alloc2/include/xo/alloc2/gc/Collector.hpp
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
/** @file Collector.hpp
|
||||
*
|
||||
* @author Roland Conybeare, Dec 2025
|
||||
**/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "ACollector.hpp"
|
||||
#include "ICollector_Any.hpp"
|
||||
#include "RCollector.hpp"
|
||||
|
||||
/* end Collector.hpp */
|
||||
117
xo-alloc2/include/xo/alloc2/gc/DX1Collector.hpp
Normal file
117
xo-alloc2/include/xo/alloc2/gc/DX1Collector.hpp
Normal file
|
|
@ -0,0 +1,117 @@
|
|||
/** @file DX1Collector.hpp
|
||||
*
|
||||
* @author Roland Conybeare, Dec 2025
|
||||
**/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "ArenaConfig.hpp"
|
||||
#include "DArena.hpp"
|
||||
#include "gc/generation.hpp"
|
||||
#include "gc/role.hpp"
|
||||
#include <memory>
|
||||
#include <array>
|
||||
|
||||
namespace xo {
|
||||
namespace mm {
|
||||
template <typename T>
|
||||
using up = std::unique_ptr<T>;
|
||||
|
||||
#ifdef NOT_YET
|
||||
/** State associated with a single DX1Collector generation
|
||||
**/
|
||||
struct Generation {
|
||||
Generation(uint8_t gen_id, up<DArena> from_space, up<DArena> to_space);
|
||||
~Generation() = default;
|
||||
|
||||
/** identity of this generation. Generations are numbered from
|
||||
* 0 (youngest) to N (oldest), with N <= c_max_generation
|
||||
**/
|
||||
uint8_t gen_id_;
|
||||
/** from-space. empty between collection episodes.
|
||||
* During collection holds former to-space
|
||||
**/
|
||||
up<DArena> from_space_;
|
||||
/** to-space. New allocations occur here **/
|
||||
up<DArena> to_space_;
|
||||
};
|
||||
#endif
|
||||
|
||||
struct CollectorConfig {
|
||||
using size_type = std::size_t;
|
||||
|
||||
/** Configuration for collector spaces.
|
||||
* Will have at least {nursery,tenured} x {from,to} spaces.
|
||||
* Not using name_ member.
|
||||
*
|
||||
* REQUIRE:
|
||||
* - arena_config_.store_header_flag_ must be true
|
||||
* - arena_config_.header_size_mask_ must be 0x0000ffff
|
||||
**/
|
||||
ArenaConfig arena_config_;
|
||||
|
||||
/** Number of generations.
|
||||
* Must be at least 2.
|
||||
**/
|
||||
uint32_t n_generation_ = 2;
|
||||
|
||||
/** Number of promotion steps.
|
||||
* An object that survives this number of collections
|
||||
* advances to the next generation.
|
||||
**/
|
||||
uint32_t n_survive_threshold_ = 2;
|
||||
|
||||
/** Trigger garbage collection when to-space allocation for
|
||||
* generation g reaches gc_trigger_v_[g]
|
||||
**/
|
||||
std::array<size_type, c_max_generation> gc_trigger_v_;
|
||||
|
||||
/** true -> enable incremental collection.
|
||||
* false -> only do full collection.
|
||||
*
|
||||
* Incremental collection requires mutation logs.
|
||||
**/
|
||||
bool allow_incremental_gc_ = true;
|
||||
|
||||
/** If non-zero remember statistics for
|
||||
* the last @p stats_history_z_ collections.
|
||||
**/
|
||||
uint32_t stats_history_z_ = false;
|
||||
|
||||
/** true to enable debug logging **/
|
||||
bool debug_flag_ = false;
|
||||
};
|
||||
|
||||
struct DX1Collector {
|
||||
explicit DX1Collector(const CollectorConfig & cfg);
|
||||
|
||||
DArena * get_space(role r, generation g) { return space_[r][g]; }
|
||||
DArena * from_space(generation g) { return get_space(role::from_space(), g); }
|
||||
DArena * to_space(generation g) { return get_space(role::to_space(), g); }
|
||||
|
||||
/** reverse to-space and from-space roles for generation g **/
|
||||
void reverse_roles(generation g);
|
||||
|
||||
/** garbage collector configuration **/
|
||||
CollectorConfig config_;
|
||||
|
||||
/** collector-managed memory here.
|
||||
* - space_[1] is from-space
|
||||
* - space_[0] is to-space
|
||||
* coordinates with role ingc/role.hpp, see also.
|
||||
**/
|
||||
|
||||
/** arena objects for collector managed memory
|
||||
* 1:1 with roles, but polarity reverses for each collection
|
||||
**/
|
||||
std::array<DArena, c_max_generation> space_storage_[c_n_role];
|
||||
|
||||
/** arena pointers. The roles of space_storage_[0][g] and space_storage_[1][g]
|
||||
* are reversed each time generation g gets collected.
|
||||
**/
|
||||
std::array<DArena*, c_max_generation> space_[c_n_role];
|
||||
};
|
||||
} /*namespace mm*/
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end DX1Collector.hpp */
|
||||
51
xo-alloc2/include/xo/alloc2/gc/ICollector_Any.hpp
Normal file
51
xo-alloc2/include/xo/alloc2/gc/ICollector_Any.hpp
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
/** @file ICollector_Any.hpp
|
||||
*
|
||||
* @author Roland Conybeare, Dec 2025
|
||||
**/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "ACollector.hpp"
|
||||
//#include <cassert>
|
||||
|
||||
namespace xo {
|
||||
namespace mm { struct ICollector_Any; }
|
||||
|
||||
namespace facet {
|
||||
template <>
|
||||
struct FacetImplementation<xo::mm::ACollector, DVariantPlaceholder> {
|
||||
using ImplType = xo::mm::ICollector_Any;
|
||||
};
|
||||
}
|
||||
|
||||
namespace mm {
|
||||
/** @class ICollector_Any
|
||||
* @brief Stub Collector Implementation for empty variant instance
|
||||
**/
|
||||
struct ICollector_Any : public ACollector {
|
||||
using size_type = std::size_t;
|
||||
|
||||
// from ACollector
|
||||
int32_t _typeseq() const noexcept override { return s_typeseq; }
|
||||
|
||||
// const methods
|
||||
[[noreturn]] size_type allocated(Copaque, generation, role) const noexcept { _fatal(); }
|
||||
[[noreturn]] size_type reserved(Copaque, generation, role) const noexcept { _fatal(); }
|
||||
[[noreturn]] size_type committed(Copaque, generation, role) const noexcept { _fatal(); }
|
||||
|
||||
// non-const methods
|
||||
[[noreturn]] void install_type(Opaque, int32_t, IGCObject_Any &) noexcept { _fatal(); }
|
||||
[[noreturn]] void add_gc_root(Opaque, int32_t, Opaque *) { _fatal(); }
|
||||
[[noreturn]] void forward_inplace(Opaque, obj<AGCObject> *) { _fatal(); }
|
||||
|
||||
private:
|
||||
[[noreturn]] static void _fatal();
|
||||
|
||||
public:
|
||||
static int32_t s_typeseq;
|
||||
static bool _valid;
|
||||
};
|
||||
} /*namespace mm*/
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end ICollector_Any.hpp */
|
||||
48
xo-alloc2/include/xo/alloc2/gc/IGCObject_Any.hpp
Normal file
48
xo-alloc2/include/xo/alloc2/gc/IGCObject_Any.hpp
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
/** @file IGCObject_Any.hpp
|
||||
*
|
||||
* @author Roland Conybeare, Dec 2025
|
||||
**/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "AGCObject.hpp"
|
||||
#include <new>
|
||||
|
||||
namespace xo {
|
||||
namespace mm { struct IGCObject_Any; }
|
||||
|
||||
namespace facet {
|
||||
template <>
|
||||
struct FacetImplementation<xo::mm::AGCObject, DVariantPlaceholder> {
|
||||
using ImplType = xo::mm::IGCObject_Any;
|
||||
};
|
||||
}
|
||||
|
||||
namespace mm {
|
||||
/** @class IGCObject_Any
|
||||
* @brief AGCObject implementation for empty variant instance
|
||||
**/
|
||||
struct IGCObject_Any : public AGCObject {
|
||||
using size_type = std::size_t;
|
||||
|
||||
const AGCObject * iface() const { return std::launder(this); }
|
||||
|
||||
// from AGCObject
|
||||
int32_t _typeseq() const noexcept override { return s_typeseq; }
|
||||
|
||||
[[noreturn]] size_type shallow_size(Copaque) const noexcept override { _fatal(); }
|
||||
[[noreturn]] Opaque * shallow_copy(Copaque,
|
||||
obj<AAllocator>) const noexcept override { _fatal(); }
|
||||
[[noreturn]] size_type forward_children(Opaque) const noexcept override { _fatal(); }
|
||||
|
||||
private:
|
||||
[[noreturn]] static void _fatal();
|
||||
|
||||
public:
|
||||
static int32_t s_typeseq;
|
||||
static bool _valid;
|
||||
};
|
||||
} /*namespace mm*/
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end IGCObject_Any.hpp */
|
||||
62
xo-alloc2/include/xo/alloc2/gc/IGCObject_Xfer.hpp
Normal file
62
xo-alloc2/include/xo/alloc2/gc/IGCObject_Xfer.hpp
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
/** @file IGCObject_Xfer.hpp
|
||||
*
|
||||
* @author Roland Conybeare, Dec 2025
|
||||
**/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "AGCObject.hpp"
|
||||
|
||||
namespace xo {
|
||||
namespace mm {
|
||||
/** @class IGCObject_Xfer
|
||||
*
|
||||
* Adapts typed GC object implementation @tparam IGCObject_DRepr
|
||||
* to type-erased @ref AGCObject interface
|
||||
**/
|
||||
template <typename DRepr, typename IGCObject_DRepr>
|
||||
struct IGCObject_Xfer : public AGCObject {
|
||||
using Impl = IGCObject_DRepr;
|
||||
using size_type = AGCObject::size_type;
|
||||
|
||||
static const DRepr & _dcast(Copaque d) { return *(const DRepr *)d; }
|
||||
static DRepr & _dcast(Opaque d) { return *(DRepr *)d; }
|
||||
|
||||
// from AGCObject
|
||||
|
||||
// const methods
|
||||
|
||||
int32_t _typeseq() const noexcept override { return s_typeseq; }
|
||||
size_type shallow_size(Copaque d) const noexcept override {
|
||||
return I::shallow_copy(_dcast(d));
|
||||
}
|
||||
Opaque * shallow_copy(Copaque d, obj<AAllocator> mm) const noexcept override {
|
||||
return I::shallow_size(_dcast(d), mm);
|
||||
}
|
||||
|
||||
// non-const methods
|
||||
|
||||
size_type forward_children(Opaque d) const noexcept override {
|
||||
return I::forward_children(d);
|
||||
}
|
||||
|
||||
private:
|
||||
using I = Impl;
|
||||
|
||||
public:
|
||||
static int32_t s_typeseq;
|
||||
static bool _valid;
|
||||
};
|
||||
|
||||
template <typename DRepr, typename IGCObject_DRepr>
|
||||
int32_t
|
||||
IGCObject_Xfer<DRepr, IGCObject_DRepr>::s_typeseq = facet::typeseq::id<DRepr>();
|
||||
|
||||
template <typename DRepr, typename IGCObject_DRepr>
|
||||
bool
|
||||
IGCObject_Xfer<DRepr, IGCObject_DRepr>::_valid = facet::valid_facet_implementation<AGCObject, IGCObject_Xfer>();
|
||||
|
||||
} /*namespace mm*/
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end IGCObject_Xfer.hpp */
|
||||
51
xo-alloc2/include/xo/alloc2/gc/RCollector.hpp
Normal file
51
xo-alloc2/include/xo/alloc2/gc/RCollector.hpp
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
/** @file RCollector.hpp
|
||||
*
|
||||
* @author Roland Conybeare, Dec 2025
|
||||
**/
|
||||
|
||||
#include "ACollector.hpp"
|
||||
#include <xo/facet/RRouter.hpp>
|
||||
|
||||
namespace xo {
|
||||
namespace mm {
|
||||
/** @class RCollector **/
|
||||
template <typename Object>
|
||||
struct RCollector : public Object {
|
||||
private:
|
||||
using O = Object;
|
||||
public:
|
||||
using ObjectType = Object;
|
||||
using DataPtr = Object::DataPtr;
|
||||
using size_type = std::size_t;
|
||||
//using value_type = std::byte *;
|
||||
|
||||
RCollector() = default;
|
||||
RCollector(DataPtr data) : Object{std::move(data)} {}
|
||||
|
||||
int32_t _typeseq() const noexcept { return O::iface()->_typeseq(); }
|
||||
size_type allocated(generation g, role r) const noexcept { return O::iface()->allocated(O::data()); }
|
||||
size_type reserved(generation g, role r) const noexcept { return O::iface()->reserved(O::data()); }
|
||||
size_type committed(generation g, role r) const noexcept { return O::iface()->committed(O::data()); }
|
||||
|
||||
void install_type(int32_t tseq, IGCObject_Any & iface) { return O::iface()->install_type(O::data()); }
|
||||
void add_gc_root(int32_t tseq, Opaque * root) { O::iface()->add_gc_root(O::data()); }
|
||||
|
||||
void forward_inplace(obj<AGCObject> * lhs) { O::iface()->forward_inplace(O::data(), lhs); }
|
||||
|
||||
static bool _valid;
|
||||
};
|
||||
|
||||
template <typename Object>
|
||||
bool
|
||||
RCollector<Object>::_valid = facet::valid_object_router<Object>();
|
||||
} /*namespace mm*/
|
||||
|
||||
namespace facet {
|
||||
template <typename Object>
|
||||
struct RoutingFor<xo::mm::ACollector, Object> {
|
||||
using RoutingType = xo::mm::RCollector<Object>;
|
||||
};
|
||||
}
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end RCollector.hpp */
|
||||
47
xo-alloc2/include/xo/alloc2/gc/RGCObject.hpp
Normal file
47
xo-alloc2/include/xo/alloc2/gc/RGCObject.hpp
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
/** @file RGCObject.hpp
|
||||
*
|
||||
* @author Roland Conybeare, Dec 2025
|
||||
**/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "AGCObject.hpp"
|
||||
#include <xo/facet/RRouter.hpp>
|
||||
|
||||
namespace xo {
|
||||
namespace mm {
|
||||
/** @class RGCObject **/
|
||||
template <typename Object>
|
||||
struct RGCObject : public Object {
|
||||
private:
|
||||
using O = Object;
|
||||
public:
|
||||
using ObjectType = Object;
|
||||
using DataPtr = Object::DataPtr;
|
||||
using size_type = std::size_t;
|
||||
|
||||
RGCObject() = default;
|
||||
RGCObject(Object::DataPtr data) : Object{std::move(data)} {}
|
||||
|
||||
int32_t _typeseq() const noexcept { return O::iface()->_typeseq(); }
|
||||
size_type shallow_size() const noexcept { O::iface()->shallow_size(O::data()); }
|
||||
Opaque * shallow_copy(obj<AAllocator> mm) const noexcept { O::iface()->shallow_copy(O::data(), mm); }
|
||||
size_type forward_children() noexcept { O::iface()->forward_children(O::data()); }
|
||||
|
||||
static bool _valid;
|
||||
};
|
||||
|
||||
template <typename Object>
|
||||
bool
|
||||
RGCObject<Object>::_valid = facet::valid_object_router<RGCObject>();
|
||||
} /*namespace mm*/
|
||||
|
||||
namespace facet {
|
||||
template <typename Object>
|
||||
struct RoutingFor<xo::mm::AGCObject, Object> {
|
||||
using RoutingType = xo::mm::RGCObject<Object>;
|
||||
};
|
||||
}
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end RGCObject.hpp */
|
||||
36
xo-alloc2/src/alloc2/DX1Collector.cpp
Normal file
36
xo-alloc2/src/alloc2/DX1Collector.cpp
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
/** @file DX1Collector.cpp
|
||||
*
|
||||
* @author Roland Conybeare, Dec 2025
|
||||
**/
|
||||
|
||||
#include "gc/DX1Collector.hpp"
|
||||
#include <cassert>
|
||||
|
||||
namespace xo {
|
||||
namespace mm {
|
||||
DX1Collector::DX1Collector(const CollectorConfig & cfg) : config_{cfg}
|
||||
{
|
||||
for (uint32_t igen = 0, ngen = cfg.n_generation_; igen < ngen; ++igen) {
|
||||
space_storage_[0][igen] = std::move(DArena::map(cfg.arena_config_));
|
||||
space_storage_[1][igen] = std::move(DArena::map(cfg.arena_config_));
|
||||
|
||||
space_[role::to_space()][igen] = &space_storage_[0][igen];
|
||||
space_[role::from_space()][igen] = &space_storage_[1][igen];
|
||||
}
|
||||
|
||||
for (uint32_t igen = cfg.n_generation_; igen < c_max_generation; ++igen) {
|
||||
space_[role::to_space()][igen] = nullptr;
|
||||
space_[role::from_space()][igen] = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
DX1Collector::reverse_roles(generation g) {
|
||||
assert(g < config_.n_generation_);
|
||||
|
||||
std::swap(space_[0][g], space_[1][g]);
|
||||
}
|
||||
} /*namespace mm*/
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end DX1Collector.cpp */
|
||||
84
xo-alloc2/utest/Collector.test.cpp
Normal file
84
xo-alloc2/utest/Collector.test.cpp
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
/** @file Collector.test.cpp
|
||||
*
|
||||
* @author Roland Conybeare, Dec 2025
|
||||
*
|
||||
* NOTE: properly unit testing gc behavior requires
|
||||
* xo-object2 dependency;
|
||||
* see xo-object2/utest
|
||||
**/
|
||||
|
||||
#include "gc/Collector.hpp"
|
||||
#include "gc/DX1Collector.hpp"
|
||||
#include <xo/indentlog/print/tag.hpp>
|
||||
#include <catch2/catch.hpp>
|
||||
|
||||
namespace xo {
|
||||
using xo::mm::ACollector;
|
||||
using xo::mm::CollectorConfig;
|
||||
using xo::mm::DX1Collector;
|
||||
using xo::mm::ArenaConfig;
|
||||
using xo::mm::generation;
|
||||
using xo::mm::c_max_generation;
|
||||
|
||||
namespace ut {
|
||||
// checklist
|
||||
// - obj<ACollector> constructible [ ]
|
||||
// - obj<ACollector> truthy [ ]
|
||||
|
||||
TEST_CASE("collector-any-null", "[alloc2][ACollector]")
|
||||
{
|
||||
/* empty variant collector */
|
||||
obj<ACollector> gc1;
|
||||
|
||||
REQUIRE(!gc1);
|
||||
REQUIRE(gc1.iface() != nullptr);
|
||||
REQUIRE(gc1.data() == nullptr);
|
||||
}
|
||||
|
||||
TEST_CASE("DX1Collector-1", "[alloc2][DX1Collector]")
|
||||
{
|
||||
ArenaConfig arena_cfg = { .name_ = "_test_unused",
|
||||
.size_ = 4*1024*1024,
|
||||
.store_header_flag_ = true,
|
||||
.header_size_mask_ = 0x0000ffff, };
|
||||
CollectorConfig cfg = { .arena_config_ = arena_cfg,
|
||||
.n_generation_ = 2,
|
||||
.gc_trigger_v_ = {{64*1024, 1024*1024, 0, 0,
|
||||
0, 0, 0, 0,
|
||||
0, 0, 0, 0,
|
||||
0, 0, 0, 0}} };
|
||||
|
||||
DX1Collector gc = DX1Collector{cfg};
|
||||
|
||||
generation g0 = generation{0};
|
||||
REQUIRE(gc.to_space(g0));
|
||||
REQUIRE(gc.from_space(g0));
|
||||
REQUIRE(gc.to_space(g0)->is_mapped());
|
||||
REQUIRE(gc.from_space(g0)->is_mapped());
|
||||
|
||||
generation g1 = generation{1};
|
||||
REQUIRE(gc.to_space(g1));
|
||||
REQUIRE(gc.from_space(g1));
|
||||
REQUIRE(gc.to_space(g1)->is_mapped());
|
||||
REQUIRE(gc.from_space(g1)->is_mapped());
|
||||
|
||||
/* verify from/to x N/T are unique */
|
||||
REQUIRE(gc.to_space(g0) != gc.from_space(g0));
|
||||
REQUIRE(gc.to_space(g1) != gc.to_space(g0));
|
||||
REQUIRE(gc.from_space(g1) != gc.from_space(g0));
|
||||
REQUIRE(gc.to_space(g0) != gc.from_space(g1));
|
||||
|
||||
for (generation gi = generation(2); gi < c_max_generation; ++gi) {
|
||||
INFO(xtag("gi", gi));
|
||||
|
||||
REQUIRE(!gc.to_space(gi));
|
||||
REQUIRE(!gc.from_space(gi));
|
||||
|
||||
REQUIRE(!gc.space_storage_[0][gi].is_mapped());
|
||||
REQUIRE(!gc.space_storage_[1][gi].is_mapped());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* end Collector.test.cpp */
|
||||
Loading…
Add table
Add a link
Reference in a new issue