File: static_allocator.hpp

package info (click to toggle)
supercollider 1%3A3.6.6~repack-2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 23,792 kB
  • ctags: 25,269
  • sloc: cpp: 177,129; lisp: 63,421; ansic: 11,297; python: 1,787; perl: 766; yacc: 311; sh: 286; lex: 181; ruby: 173; makefile: 168; xml: 13
file content (182 lines) | stat: -rw-r--r-- 4,433 bytes parent folder | download
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
//  static allocator class
//  Copyright (C) 2008 Tim Blechmann
//
//  This program is free software; you can redistribute it and/or modify
//  it under the terms of the GNU General Public License as published by
//  the Free Software Foundation; either version 2 of the License, or
//  (at your option) any later version.
//
//  This program is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//  GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with this program; see the file COPYING.  If not, write to
//  the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
//  Boston, MA 02111-1307, USA.

#ifndef UTILITIES_STATIC_ALLOCATOR_HPP
#define UTILITIES_STATIC_ALLOCATOR_HPP

extern "C"
{
#include "tlsf.h"
}

#include <exception>

#include <array>
#include <boost/noncopyable.hpp>
#include <boost/static_assert.hpp>
#include <boost/mpl/arithmetic.hpp>
#include <boost/mpl/modulus.hpp>

#include "nova-tt/spin_lock.hpp"
#include "nova-tt/dummy_mutex.hpp"

namespace nova
{

/** constant-sized, pooled memory allocator based on TLSF allocator
 *
 *  \todo this violates the allocator requirement in 20.1.5, paragraph 4
 *        objects have to be freed using the same instance that was used
 *        to allocate them.
 *
 *  */
template <class T,
          std::size_t count,
          bool blocking = false>
class static_allocator
#if 1
    :
    boost::noncopyable
#endif
{
    static const std::size_t bytes = 2 * count * sizeof(T) + 4096 * 2;

    BOOST_STATIC_ASSERT((boost::mpl::modulus<boost::mpl::int_<bytes>, boost::mpl::int_<sizeof(long)> >::value == 0));

    static const std::size_t poolsize = bytes/sizeof(long);

    typedef typename boost::mpl::if_c<blocking,
                                      spin_lock,
                                      dummy_mutex>::type mutex_type;

    typedef typename mutex_type::scoped_lock scoped_lock;

    struct data:
        mutex_type
    {
#if 0
        data(void){}

        data(data const & rhs)
        {
            pool = rhs.pool;
        }
#endif

        std::array<long, poolsize> pool;
    };

public:
    typedef std::size_t size_type;
    typedef std::ptrdiff_t difference_type;
    typedef T*        pointer;
    typedef const T*  const_pointer;
    typedef T&        reference;
    typedef const T&  const_reference;
    typedef T         value_type;

    template <class U> struct rebind
    {
        typedef static_allocator<U, count, blocking> other;
    };

    static_allocator(void) throw()
    {
        data_.pool.assign(0);
        init_memory_pool(bytes, data_.pool.begin());
    }

#if 0
    template <class U, std::size_t bytes_, bool b>
    static_allocator(static_allocator<U, bytes_, b> const & rhs) throw()
    {
        data_.pool.assign(0);
        init_memory_pool(bytes, data_.pool.begin());
    }
#endif

    ~static_allocator() throw()
    {
        destroy_memory_pool(data_.pool.begin());
    }

    pointer address(reference x) const
    {
        return &x;
    }

    const_pointer address(const_reference x) const
    {
        return &x;
    }

    pointer allocate(size_type n,
                     const_pointer hint = 0)
    {
        scoped_lock lock(data_);
        pointer ret = static_cast<pointer>(malloc_ex(n * sizeof(T), data_.pool.begin()));

        if (ret == 0)
            throw std::bad_alloc();

        return ret;
    }

    void deallocate(pointer p, size_type n)
    {
        scoped_lock lock(data_);
        free_ex(p, data_.pool.begin());
    }

    size_type max_size() const throw()
    {
        return count;
    }

    void construct(pointer p, const T& val)
    {
        ::new(p) T(val);
    }

    void destroy(pointer p)
    {
        p->~T();
    }

private:
    data data_;
};


template<typename T, std::size_t ts, bool tb, typename U, std::size_t us, bool ub>
bool operator==( static_allocator<T, ts, tb> const& left, static_allocator<U, us, ub> const& right )
{
    return !(left != right);
}

template<typename T, std::size_t ts, bool tb, typename U, std::size_t us, bool ub>
bool operator!=( static_allocator<T, ts, tb> const& left, static_allocator<U, us, ub> const& right )
{
    return true;
}


} /* namespace nova */

#endif /* UTILITIES_STATIC_ALLOCATOR_HPP */