File: LinearAllocator.h

package info (click to toggle)
intel-graphics-compiler 1.0.12504.6-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 83,912 kB
  • sloc: cpp: 910,147; lisp: 202,655; ansic: 15,197; python: 4,025; yacc: 2,241; lex: 1,570; pascal: 244; sh: 104; makefile: 25
file content (427 lines) | stat: -rw-r--r-- 10,014 bytes parent folder | download | duplicates (3)
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
/*========================== begin_copyright_notice ============================

Copyright (C) 2019-2021 Intel Corporation

SPDX-License-Identifier: MIT

============================= end_copyright_notice ===========================*/

#pragma once

#include "Object.h"
#include "Threading.h"

namespace iSTD
{

/*****************************************************************************\

Class:
    CLinearAllocator

Description:
    Manages a memory buffer via linear allocation

\*****************************************************************************/
template<class CAllocatorType>
class CLinearAllocator : public CObject<CAllocatorType>
{
public:

    CLinearAllocator( void* pBaseAddress, const DWORD size );
    virtual ~CLinearAllocator( void );

    DWORD   GetAvailableSpace( void ) const;
    DWORD   GetUsedSpace( void ) const;

    void*   GetSpace( const DWORD size );
    void*   GetSpaceAligned( const DWORD size, const DWORD alignSize );

    bool    IsEmpty( void ) const;
    bool    IsFull( void ) const;

    void    Align( const DWORD alignSize );

    void    PutSpace( const DWORD size );
    void    PutAllSpace( void );

    void*   ReserveSpace( const DWORD size );

    virtual void    Resize( const DWORD size );

protected:

    void*   m_pBaseAddress;
    DWORD   m_Size;             // Total size of memory
    DWORD   m_SizeUsed;         // Size of used memory
    DWORD   m_SizeReserved;     // Size of reserved memory

    DECL_DEBUG_MUTEX( m_InstanceNotThreadSafe )
};

/*****************************************************************************\

Function:
    CLinearAllocator Constructor

Description:
    Initializes internal data

Input:
    void* pBaseAddress
    const DWORD size

Output:
    none

\*****************************************************************************/
template<class CAllocatorType>
inline CLinearAllocator<CAllocatorType>::CLinearAllocator(
    void* pBaseAddress,
    const DWORD size )
    : CObject<CAllocatorType>()
{
    m_pBaseAddress = pBaseAddress;
    m_Size = size;
    m_SizeUsed = 0;
    m_SizeReserved = 0;

    INIT_DEBUG_MUTEX( m_InstanceNotThreadSafe );
}

/*****************************************************************************\

Function:
    CLinearAllocator Destructor

Description:
    Deletes internal data

Input:
    none

Output:
    none

\*****************************************************************************/
template<class CAllocatorType>
inline CLinearAllocator<CAllocatorType>::~CLinearAllocator( void )
{
    DELETE_DEBUG_MUTEX( m_InstanceNotThreadSafe );
}

/*****************************************************************************\

Function:
    CLinearAllocator::GetAvailableSpace

Description:
    Gets the amount of space available in the buffer

Input:
    none

Output:
    DWORD - size in bytes

\*****************************************************************************/
template<class CAllocatorType>
inline DWORD CLinearAllocator<CAllocatorType>::GetAvailableSpace( void ) const
{
    const DWORD size = m_Size - GetUsedSpace();
    return size;
}

/*****************************************************************************\

Function:
    CLinearAllocator::GetUsedSpace

Description:
    Gets the amount of space used in the buffer

Input:
    none

Output:
    DWORD - size in bytes

\*****************************************************************************/
template<class CAllocatorType>
inline DWORD CLinearAllocator<CAllocatorType>::GetUsedSpace( void ) const
{
    const DWORD size = m_SizeUsed + m_SizeReserved;
    return size;
}

/*****************************************************************************\

Function:
    CLinearAllocator::GetSpace

Description:
    Gets space from the top of the buffer

Input:
    const DWORD size - size in bytes

Output:
    void* - linear address of space

\*****************************************************************************/
template<class CAllocatorType>
inline void* CLinearAllocator<CAllocatorType>::GetSpace( const DWORD size )
{
    ACQUIRE_DEBUG_MUTEX_WRITE( m_InstanceNotThreadSafe );
    void* pAddress = NULL;

    if( GetAvailableSpace() >= size )
    {
        pAddress = (BYTE*)m_pBaseAddress + m_SizeUsed;
        m_SizeUsed += size;
    }

    RELEASE_DEBUG_MUTEX_WRITE( m_InstanceNotThreadSafe );
    return pAddress;
}

/*****************************************************************************\

Function:
    CLinearAllocator::GetSpaceAligned

Description:
    Gets space from the top of the buffer

Input:
    const DWORD size - size in bytes
    const DWORD alignSize - alignment in bytes

Output:
    void* - linear address of space

\*****************************************************************************/
template<class CAllocatorType>
inline void* CLinearAllocator<CAllocatorType>::GetSpaceAligned(
    const DWORD size,
    const DWORD alignSize )
{
    ACQUIRE_DEBUG_MUTEX_WRITE( m_InstanceNotThreadSafe );
    void* pAddress = NULL;

    if( GetAvailableSpace() >= size )
    {
        // Determine the number of bytes required to
        // align the allocation
        const DWORD offset = GetAlignmentOffset(
            (BYTE*)m_pBaseAddress + m_SizeUsed,
            alignSize );

        if( offset )
        {
            if( ( GetAvailableSpace() >= offset ) &&
                ( GetAvailableSpace() >= offset + size ) )
            {
                pAddress = (BYTE*)m_pBaseAddress + m_SizeUsed + offset;
                m_SizeUsed += size + offset;
            }
        }
        else
        {
            pAddress = (BYTE*)m_pBaseAddress + m_SizeUsed;
            m_SizeUsed += size;
        }
    }

    RELEASE_DEBUG_MUTEX_WRITE( m_InstanceNotThreadSafe );
    return pAddress;
}

/*****************************************************************************\

Function:
    CLinearAllocator::IsEmpty

Description:
    Determines if the buffer is empty

Input:
    void

Output:
    bool

\*****************************************************************************/
template<class CAllocatorType>
inline bool CLinearAllocator<CAllocatorType>::IsEmpty( void ) const
{
    const bool isEmpty = ( m_SizeUsed == 0 ) && ( m_SizeReserved == 0 );
    return isEmpty;
}

/*****************************************************************************\

Function:
    CLinearAllocator::IsFull

Description:
    Determines if the buffer is full

Input:
    void

Output:
    bool

\*****************************************************************************/
template<class CAllocatorType>
inline bool CLinearAllocator<CAllocatorType>::IsFull( void ) const
{
    const bool isFull = ( GetAvailableSpace() == 0 );
    return isFull;
}

/*****************************************************************************\

Function:
    CLinearAllocator::Align

Description:
    Aligns the buffer and pads with zeros

Input:
    const DWORD alignSize - alignment in bytes

Output:
    void

\*****************************************************************************/
template<class CAllocatorType>
inline void CLinearAllocator<CAllocatorType>::Align( const DWORD alignSize )
{
    ACQUIRE_DEBUG_MUTEX_WRITE( m_InstanceNotThreadSafe );

    const DWORD offset = GetAlignmentOffset(
        (BYTE*)m_pBaseAddress + m_SizeUsed,
        alignSize );

    if( offset )
    {
        if( m_Size >= m_SizeUsed + offset )
        {
            m_SizeUsed += offset;
        }
    }

    RELEASE_DEBUG_MUTEX_WRITE( m_InstanceNotThreadSafe );
}

/*****************************************************************************\

Function:
    CLinearAllocator::PutSpace

Description:
    Puts space back at the top of the buffer

Input:
    const DWORD size - size in bytes

Output:
    none

\*****************************************************************************/
template<class CAllocatorType>
inline void CLinearAllocator<CAllocatorType>::PutSpace( const DWORD size )
{
    ACQUIRE_DEBUG_MUTEX_WRITE( m_InstanceNotThreadSafe );

    m_SizeUsed -= size;

    RELEASE_DEBUG_MUTEX_WRITE( m_InstanceNotThreadSafe );
}

/*****************************************************************************\

Function:
    CLinearAllocator::PutAllSpace

Description:
    Puts all space back

Input:
    none

Output:
    none

\*****************************************************************************/
template<class CAllocatorType>
inline void CLinearAllocator<CAllocatorType>::PutAllSpace( void )
{
    ACQUIRE_DEBUG_MUTEX_WRITE( m_InstanceNotThreadSafe );

    m_SizeUsed = 0;
    m_SizeReserved = 0;

    RELEASE_DEBUG_MUTEX_WRITE( m_InstanceNotThreadSafe );
}

/*****************************************************************************\

Function:
    CLinearAllocator::ReserveSpace

Description:
    Reserves space at the bottom of the buffer

Input:
    const DWORD size - size in bytes

Output:
    void* - linear address of reserved space

\*****************************************************************************/
template<class CAllocatorType>
inline void* CLinearAllocator<CAllocatorType>::ReserveSpace( const DWORD size )
{
    ACQUIRE_DEBUG_MUTEX_WRITE( m_InstanceNotThreadSafe );
    void* pAddress = NULL;

    if( GetAvailableSpace() >= size )
    {
        pAddress = (BYTE*)m_pBaseAddress + m_Size -
            ( m_SizeReserved + size );
        m_SizeReserved += size;
    }

    RELEASE_DEBUG_MUTEX_WRITE( m_InstanceNotThreadSafe );
    return pAddress;
}

/*****************************************************************************\

Function:
    CLinearAllocator::Resize

Description:
    Changes the size of the buffer

Input:
    const DWORD size - size in bytes

Output:
    none

\*****************************************************************************/
template<class CAllocatorType>
void CLinearAllocator<CAllocatorType>::Resize( const DWORD size )
{
    ACQUIRE_DEBUG_MUTEX_WRITE( m_InstanceNotThreadSafe );

    m_Size = size;

    RELEASE_DEBUG_MUTEX_WRITE( m_InstanceNotThreadSafe );
}

} // iSTD