summaryrefslogtreecommitdiff
path: root/libcult/cult/mm/new.hxx
blob: 2b815b407323216dd333f3c682d18b1b7a8dfea6 (plain)
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
// file      : cult/mm/new.hxx
// author    : Boris Kolpackov <boris@kolpackov.net>
// copyright : Copyright (c) 2005-2010 Boris Kolpackov
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#ifndef CULT_MM_NEW_HXX
#define CULT_MM_NEW_HXX

#include <cult/config.hxx>

#include <cult/types/fundamental.hxx>

#include <cult/mm/exception.hxx>

#include <cult/meta/polymorphic-p.hxx>

namespace Cult
{
  namespace MM
  {
    class KeyBase
    {
    public:
      // Returned size should be a multiple of a "perfect" size,
      // sizeof (size_t) * 2.
      //
      virtual Size
      size () const = 0;

      virtual Void
      construct (Void* p) const = 0;

      virtual Void
      destroy (Void* p) const = 0;

      virtual
      ~KeyBase ()
      {
      }
    };


    template <typename X>
    class Key: public KeyBase, public NonCopyable
    {
    public:
      Key ()
      {
      }

      virtual Size
      size () const
      {
        //@@ I can do this transparently in allocate().
        //
        Size align (sizeof (Size) * 2);
        Size size (sizeof (X));

        return align * (size / align + ((size % align) ? 1 : 0));
      }

      virtual Void
      construct (Void* p) const
      {
        new (p) X;
      }

      virtual Void
      destroy (Void* p) const
      {
        reinterpret_cast<X*> (p)->~X ();
      }
    };


    struct Absent : virtual Exception {};


    namespace Bits
    {
      Void*
      locate (Void const* p, KeyBase const& k) throw (Absent);

      template <typename X, Boolean poly = Meta::polymorphic_p<X>::r>
      struct Locator;

      template <typename X>
      struct Locator<X, false>
      {
        static Void*
        locate (X* p, KeyBase const& k) throw (Absent)
        {
          return Bits::locate (p, k);
        }
      };

      template <typename X>
      struct Locator<X, true>
      {
        static Void*
        locate (X* p, KeyBase const& k) throw (Absent)
        {
          return Bits::locate (dynamic_cast<Void const*> (p), k);
        }
      };

      // Note that this structure has a "perfect" size: sizeof (size_t) * 2.
      // If its size is added to the properly-aligned pointer the result will
      // still be a properly-aligned pointer.
      //
      struct Offset //@@ better name would be OffsetMap
      {
        KeyBase const* key;
        Size offset;
      };
    }


    template <typename X, typename Y>
    inline
    Y*
    locate (X* p, Key<Y> const& k) throw (Absent)
    {
      return p ? reinterpret_cast<Y*> (Bits::Locator<X>::locate (p, k)) : 0;
    }

    class KeyList
    {
    public:
      KeyList ()
          : size_ (0)
      {
      }

      KeyList (KeyBase const& k)
          : size_ (1)
      {
        keys_[0] = &k;
      }

      friend KeyList
      operator| (KeyList const& list, KeyBase const& key);

    public:
      typedef KeyBase const* const* Iterator;

      Iterator
      begin () const
      {
        return keys_;
      }

      Iterator
      end () const
      {
        return &(keys_[size_]);
      }

      Size
      size () const
      {
        return size_;
      }

    private:
      KeyBase const* keys_[8];
      Size size_;
    };

    inline KeyList
    operator| (KeyList const& list, KeyBase const& key)
    {
      //@@ Need to throw on overflow.
      //
      KeyList r (list);
      r.keys_[r.size_++] = &key;
      return r;
    }

    inline KeyList
    operator| (KeyBase const& a, KeyBase const& b)
    {
      return KeyList (a) | b;
    }
  }
}

namespace Cult
{
  namespace MM
  {
    namespace Bits
    {
      class Block;

#ifdef CULT_THREADS
      extern __thread
      Block* first_ __attribute__ ((tls_model ("initial-exec")));
#else
      extern
      Block* first_;
#endif

      class Block
      {
      public:
        Block ()
        {
        }

        ~Block ()
        {
          //@@ assert (first_ == this);
          first_ = next_;
        }

        Void
        set (Void* p, Size size)
        {
          p_ = reinterpret_cast<Char*> (p);
          size_ = size;

          next_ = first_;
          first_ = this;
        }

      public:
        static Void*
        locate (Void const* p)
        {
          return locate (p, first_);
        }

      private:
        static Void*
        locate (Void const* p, Block* b)
        {
          if (b)
          {
            if (p >= b->p_ && p < b->p_ + b->size_) return b->p_;
            else return locate (p, b->next_);
          }

          return 0;
        }

      private:
        Char* p_;
        Size size_;

        Block* next_;
      };
    }
  }
}

Cult::Void*
operator new (Cult::Size) throw (Cult::MM::StdBadAlloc);

Cult::Void*
operator new (Cult::Size,
              Cult::MM::KeyList const&,
              Cult::MM::Bits::Block const& = Cult::MM::Bits::Block ())
  throw (Cult::MM::StdBadAlloc);

//@@ Need a special operator new that just allocates memory (to use in
//   static_ptr for instance).
//

Cult::Void
operator delete (Cult::Void*) throw ();

Cult::Void
operator delete (Cult::Void*, Cult::Size) throw ();


namespace Cult
{
  namespace MM
  {
    // Inherit from this class if you plan to access service objects
    // from a ctor.
    //
    struct ServiceAwareObject
    {
      static Void*
      operator new (Size s, Bits::Block const& b = Bits::Block ());

      static Void
      operator delete (Void* p, Size s);
    };
  }
}

#include <cult/mm/new.ixx>

#endif  // CULT_MM_NEW_HXX