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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* Inkscape::GC::Alloc - GC-aware STL allocator
*//*
* Authors:
* see git history
* MenTaLguY <mental@rydia.net>
*
* Copyright (C) 2018 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef SEEN_INKSCAPE_GC_ALLOC_H
#define SEEN_INKSCAPE_GC_ALLOC_H
#include <limits>
#include <cstddef>
#include "inkgc/gc-core.h"
namespace Inkscape {
namespace GC {
template <typename T, CollectionPolicy collect>
class Alloc {
public:
typedef T value_type;
typedef T *pointer;
typedef T const *const_pointer;
typedef T &reference;
typedef T const &const_reference;
typedef std::size_t size_type;
typedef std::ptrdiff_t difference_type;
template <typename U>
struct rebind { typedef Alloc<U, collect> other; };
Alloc() = default;
template <typename U> Alloc(Alloc<U, collect> const &) {}
pointer address(reference r) { return &r; }
const_pointer address(const_reference r) { return &r; }
size_type max_size() const {
return std::numeric_limits<std::size_t>::max() / sizeof(T);
}
pointer allocate(size_type count, void const * =nullptr) {
return static_cast<pointer>(::operator new(count * sizeof(T), SCANNED, collect));
}
void construct(pointer p, const_reference value) {
new (static_cast<void *>(p)) T(value);
}
void destroy(pointer p) { p->~T(); }
void deallocate(pointer p, size_type) { ::operator delete(p, GC); }
};
// allocators with the same collection policy are interchangeable
template <typename T1, typename T2,
CollectionPolicy collect1, CollectionPolicy collect2>
bool operator==(Alloc<T1, collect1> const &, Alloc<T2, collect2> const &) {
return collect1 == collect2;
}
template <typename T1, typename T2,
CollectionPolicy collect1, CollectionPolicy collect2>
bool operator!=(Alloc<T1, collect1> const &, Alloc<T2, collect2> const &) {
return collect1 != collect2;
}
}
}
#endif
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
|