aboutsummaryrefslogtreecommitdiffstats
path: root/util/memory/smallobj.h
blob: 63de666bae01e5488de599d6eceec49536e24da9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#pragma once

#include "pool.h"
#include "alloc.h"

#include <util/generic/utility.h>
#include <util/generic/intrlist.h>

class TFixedSizeAllocator {
    struct TAlloc: public TIntrusiveSListItem<TAlloc> {
        inline void* ToPointer() noexcept {
            return this;
        }

        static inline TAlloc* FromPointer(void* ptr) noexcept {
            return (TAlloc*)ptr;
        }

        static constexpr size_t EntitySize(size_t alloc) noexcept {
            return Max(sizeof(TAlloc), alloc);
        }

        static constexpr size_t EntityAlign(size_t align) noexcept {
            return Max(alignof(TAlloc), align);
        }

        static inline TAlloc* Construct(void* ptr) noexcept {
            return (TAlloc*)ptr;
        }
    };

public:
    using IGrowPolicy = TMemoryPool::IGrowPolicy;

    TFixedSizeAllocator(size_t allocSize, IAllocator* alloc)
        : TFixedSizeAllocator(allocSize, alignof(TAlloc), TMemoryPool::TExpGrow::Instance(), alloc)
    {
    }

    TFixedSizeAllocator(size_t allocSize, size_t alignSize, IAllocator* alloc)
        : TFixedSizeAllocator(allocSize, alignSize, TMemoryPool::TExpGrow::Instance(), alloc)
    {
    }

    TFixedSizeAllocator(size_t allocSize, IGrowPolicy* grow, IAllocator* alloc)
        : TFixedSizeAllocator(allocSize, alignof(TAlloc), grow, alloc)
    {
    }

    TFixedSizeAllocator(size_t allocSize, size_t alignSize, IGrowPolicy* grow, IAllocator* alloc)
        : Pool_(allocSize, grow, alloc)
        , AlignSize_(TAlloc::EntityAlign(alignSize))
        , AllocSize_(TAlloc::EntitySize(allocSize))
    {
    }

    inline void* Allocate() {
        if (Y_UNLIKELY(Free_.Empty())) {
            return Pool_.Allocate(AllocSize_, AlignSize_);
        }

        return Free_.PopFront()->ToPointer();
    }

    inline void Release(void* ptr) noexcept {
        Free_.PushFront(TAlloc::FromPointer(ptr));
    }

    inline size_t Size() const noexcept {
        return AllocSize_;
    }

private:
    TMemoryPool Pool_;
    const size_t AlignSize_;
    const size_t AllocSize_;
    TIntrusiveSList<TAlloc> Free_;
};

template <class T>
class TSmallObjAllocator {
public:
    using IGrowPolicy = TFixedSizeAllocator::IGrowPolicy;

    inline TSmallObjAllocator(IAllocator* alloc)
        : Alloc_(sizeof(T), alignof(T), alloc)
    {
    }

    inline TSmallObjAllocator(IGrowPolicy* grow, IAllocator* alloc)
        : Alloc_(sizeof(T), alignof(T), grow, alloc)
    {
    }

    inline T* Allocate() {
        return (T*)Alloc_.Allocate();
    }

    inline void Release(T* t) noexcept {
        Alloc_.Release(t);
    }

private:
    TFixedSizeAllocator Alloc_;
};

template <class T>
class TObjectFromPool {
public:
    struct THeader {
        void* Pool;
        // Can't just use T because THeader must be standard layout type for offsetof to work.
        alignas(T) char Obj[sizeof(T)];
    };
    using TPool = TSmallObjAllocator<THeader>;

    inline void* operator new(size_t, TPool* pool) {
        THeader* ret = pool->Allocate();
        ret->Pool = pool;
        return &ret->Obj;
    }

    inline void operator delete(void* ptr, size_t) noexcept {
        DoDelete(ptr);
    }

    inline void operator delete(void* ptr, TPool*) noexcept {
        /*
         * this delete operator can be called automagically by compiler
         */

        DoDelete(ptr);
    }

private:
    static inline void DoDelete(void* ptr) noexcept {
        static_assert(std::is_standard_layout<THeader>::value, "offsetof is only defined for standard layout types");
        THeader* header = (THeader*)((char*)ptr - offsetof(THeader, Obj));
        ((TPool*)header->Pool)->Release(header);
    }
};