aboutsummaryrefslogtreecommitdiffstats
path: root/gpu/include/GrMemory.h
blob: be8b1d78e92121112e52f0003c19fbd6d5e43514 (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
/*
    Copyright 2010 Google Inc.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

         http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
 */


#ifndef GrMemory_DEFINED
#define GrMemory_DEFINED

#include "GrNoncopyable.h"

class GrAutoMalloc : GrNoncopyable {
public:
    GrAutoMalloc() : fPtr(NULL), fAllocatedBytes(0){
    }

    GrAutoMalloc(size_t bytes) : fPtr(GrMalloc(bytes)), fAllocatedBytes(bytes) {}
    ~GrAutoMalloc() { GrFree(fPtr); }

    /**
     *  Return the allocated memory, or NULL if it has already been freed or
     *  detached.
     */
    void* get() const { return fPtr; }

    size_t size() const { return fAllocatedBytes; }

    /**
     *  transfer ownership of the memory to the caller. It must be freed with
     *  a call to GrFree()
     */
    void* detach() {
        void* ptr = fPtr;
        fPtr = NULL;    // we no longer own the block
        fAllocatedBytes = 0;
        return ptr;
    }

    /**
     *  Reallocates to a new size. May or may not call malloc. The contents
     *  are not preserved. If growOnly is true it will never reduce the
     *  allocated size.
     */
    void* realloc(size_t newSize, bool growOnly = false) {
        bool alloc;
        if (growOnly) {
            alloc = newSize > fAllocatedBytes;
        } else {
            alloc = newSize != fAllocatedBytes;
        }
        if (alloc) {
            GrFree(fPtr);
            fPtr = newSize ? GrMalloc(newSize) : NULL;
            fAllocatedBytes = newSize;
        }
        GrAssert(fAllocatedBytes >= newSize);
        GR_DEBUGCODE(memset(fPtr, 0xEF, fAllocatedBytes));
        return fPtr;
    }

    /**
     *  free the block now. get() will now return NULL
     */
    void free() {
        GrFree(fPtr);
        fPtr = NULL;
        fAllocatedBytes = 0;
    }

private:
    void* fPtr;
    size_t fAllocatedBytes;
};

/**
 *  Variant of GrAutoMalloc with a compile-time specified byte size that is
 *  pre-allocated in the class object, avoiding a call to to GrMalloc if
 *  possible.
 */
template <size_t SIZE> class GrAutoSMalloc : GrNoncopyable {
public:
    GrAutoSMalloc() {
        fPtr = fStorage;
        fAllocatedBytes = SIZE;
    }

    explicit GrAutoSMalloc(size_t bytes) {
        if (bytes > SIZE) {
            fPtr = GrMalloc(bytes);
            fAllocatedBytes = bytes;
        } else {
            fPtr = fStorage;
            fAllocatedBytes = SIZE;
        }
    }

    ~GrAutoSMalloc() {
        if (fPtr != (void*)fStorage) {
            GrFree(fPtr);
        }
    }

    /**
     *  Return the allocated memory, or NULL if it has already been freed or
     *  detached.
     */
    void* get() const { return fPtr; }

    /**
     *  Reallocates to a new size. May or may not call malloc. The contents
     *  are not preserved. If growOnly is true it will never reduce the
     *  allocated size.
     */
    void* realloc(size_t newSize, bool growOnly = false) {
        if (newSize <= SIZE) {
            if (NULL == fPtr) {
                fPtr = fStorage;
                fAllocatedBytes = SIZE;
            } else if (!growOnly && fPtr != (void*)fStorage) {
                GrFree(fPtr);
                fPtr = fStorage;
                fAllocatedBytes = SIZE;
            }
        } else if ((newSize > fAllocatedBytes) ||
                   (!growOnly && newSize < (fAllocatedBytes >> 1))) {
            if (NULL != fPtr && fPtr != (void*)fStorage) {
                GrFree(fPtr);
            }
            fPtr = GrMalloc(newSize);
            fAllocatedBytes = newSize;
        }
        GrAssert(fAllocatedBytes >= newSize);
        GrAssert((fPtr == fStorage) == (fAllocatedBytes == SIZE));
        GR_DEBUGCODE(memset(fPtr, 0xEF, fAllocatedBytes));
        return fPtr;
    }

    /**
     *  free the block now. get() will now return NULL
     */
    void free() {
        if (fPtr != (void*)fStorage) {
            GrFree(fPtr);
        }
        fAllocatedBytes = 0;
        fPtr = NULL;
    }

private:
    void*    fPtr;
    uint32_t fAllocatedBytes;
    uint32_t fStorage[GrALIGN4(SIZE) >> 2];
};

/**
 *  Variant of GrAutoMalloc with a compile-time specified byte size that is
 *  pre-allocated in the class object, avoiding a call to to GrMalloc if
 *  possible.
 */
template <int COUNT, typename T>
class GrAutoSTMalloc : public GrAutoSMalloc<COUNT * sizeof(T)> {
public:
    GrAutoSTMalloc(int count) : GrAutoSMalloc<COUNT * sizeof(T)>(count * sizeof(T)) {}

    operator T*() { return (T*)this->get(); }
};


#endif