File: Object.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 (355 lines) | stat: -rw-r--r-- 8,008 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
/*========================== begin_copyright_notice ============================

Copyright (C) 2019-2021 Intel Corporation

SPDX-License-Identifier: MIT

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

#pragma once

#include "types.h"
#include "Alloc.h"
#include <limits.h>

#ifdef ISTDLIB_MT
#include "Threading.h"
#endif

#if defined(MSVC)
    #define STD_API_CALL __stdcall
#else
    #define STD_API_CALL
#endif

#define NO_VTABLE __declspec(novtable)

namespace iSTD
{

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

Class:
    CObject

Description:
    Base class for all objects

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

    long    Acquire( void );
    long    Release( void );

    long    GetRefCount( void ) const;

    static long STD_API_CALL   SafeAcquire(CObject* ptr);
    static long STD_API_CALL   SafeRelease(CObject* ptr);

    void*   operator new( size_t size );
    void*   operator new[]( size_t size );
    void*   operator new( size_t size, void* placement);
    void    operator delete(void* ptr);
    void    operator delete[]( void* ptr );
    void    operator delete(void* ptr, void* placement);

protected:

    CObject( void );
    virtual ~CObject(void);

#ifdef ISTDLIB_MT
    volatile long   m_RefCount;
#else
    long    m_RefCount;
#endif
};

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

Function:
    CObject constructor

Description:
    Initializes internal data

Input:
    default

Output:
    none

\*****************************************************************************/
template<class CAllocatorType>
inline CObject<CAllocatorType>::CObject( void )
{
#ifdef ISTDLIB_MT
    ASSERT( IsAligned( (void*)&m_RefCount, sizeof(DWORD) ) );
#endif
    m_RefCount = 0;
}

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

Function:
    CObject destructor

Description:
    Deletes internal data

Input:
    default

Output:
    none

\*****************************************************************************/
template<class CAllocatorType>
inline CObject<CAllocatorType>::~CObject(void)
{
    ASSERT( m_RefCount == 0 );
}

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

Function:
    CObject::Acquire

Description:
    Increments and returns the current reference count

Input:
    none

Output:
    long - reference count

\*****************************************************************************/
template<class CAllocatorType>
inline long CObject<CAllocatorType>::Acquire( void )
{
    ASSERT( m_RefCount >= 0 );
    ASSERT( m_RefCount < LONG_MAX );

#if defined(ISTDLIB_MT) && defined(__linux__)
    __sync_fetch_and_add(&m_RefCount, 1);
#elif defined(ISTDLIB_MT)
    ::InterlockedIncrement(&m_RefCount);
#else
    ++m_RefCount;
#endif

    return m_RefCount;
}

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

Function:
    CObject::Release

Description:
    Decrements the current reference count.  Deletes the object when the
    reference count reaches zero.  Returns the current reference count.

Input:
    none

Output:
    long - reference count

\*****************************************************************************/
template<class CAllocatorType>
inline long CObject<CAllocatorType>::Release( void )
{
    ASSERT( m_RefCount > 0 );

#if defined(ISTDLIB_MT) && defined(__linux__)
    __sync_sub_and_fetch(&m_RefCount, 1);
#elif defined(ISTDLIB_MT)
    ::InterlockedDecrement(&m_RefCount);
#else
    --m_RefCount;
#endif

    if( m_RefCount == 0 )
    {
        delete this;
        return 0;
    }
    else
    {
        return m_RefCount;
    }
}

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

Function:
    CObject::GetRefCount

Description:
    Returns the current reference count.

Input:
    none

Output:
    long - reference count

\*****************************************************************************/
template<class CAllocatorType>
inline long CObject<CAllocatorType>::GetRefCount( void ) const
{
    return m_RefCount;
}

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

Function:
    CObject::SafeAcquire

Description:
    Static function that calls the object's acquire function if the object
    exists

Input:
    CObject* ptr - pointer to object to acquire

Output:
    long - reference count

\*****************************************************************************/
template<class CAllocatorType>
inline long CObject<CAllocatorType>::SafeAcquire( CObject* ptr )
{
    if( ptr )
    {
        return ptr->Acquire();
    }
    else
    {
        return 0;
    }
}

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

Function:
    CObject::SafeRelease

Description:
    Static function that calls the object's release function if the object
    exists

Input:
    CObject* ptr - pointer to object to release

Output:
    long - reference count

\*****************************************************************************/
template<class CAllocatorType>
inline long CObject<CAllocatorType>::SafeRelease( CObject* ptr )
{
    if( ptr )
    {
        return ptr->Release();
    }
    else
    {
        return 0;
    }
}

/*****************************************************************************\
 operator new
\*****************************************************************************/
template<class CAllocatorType>
inline void* CObject<CAllocatorType>::operator new( size_t size )
{
    ASSERT( size );

#ifdef ISTDLIB_MT
    void* ptr = CAllocatorType::AlignedAllocate( size, sizeof(DWORD) );
#else
    void* ptr = CAllocatorType::Allocate( size );
#endif

    ASSERT( ptr );
    return ptr;
}

/*****************************************************************************\
 operator new[]
\*****************************************************************************/
template<class CAllocatorType>
inline void* CObject<CAllocatorType>::operator new[]( size_t size )
{
    ASSERT( size );

#ifdef ISTDLIB_MT
    void* ptr = CAllocatorType::AlignedAllocate( size, sizeof(DWORD) );
#else
    void* ptr = CAllocatorType::Allocate( size );
#endif

    ASSERT( ptr );
    return ptr;
}

/*****************************************************************************\
 operator new with placement
\*****************************************************************************/
template<class CAllocatorType>
inline void* CObject<CAllocatorType>::operator new( size_t size, void* placement )
{
    ASSERT( size );
    ASSERT( placement );
    return placement;
}

/*****************************************************************************\
 operator delete
\*****************************************************************************/
template<class CAllocatorType>
inline void CObject<CAllocatorType>::operator delete(void* ptr)
{
    ASSERT( ptr );

#ifdef ISTDLIB_MT
    CAllocatorType::AlignedDeallocate( ptr );
#else
    CAllocatorType::Deallocate( ptr );
#endif
}

/*****************************************************************************\
 operator delete[]
\*****************************************************************************/
template<class CAllocatorType>
inline void CObject<CAllocatorType>::operator delete[]( void* ptr )
{
    ASSERT( ptr );

#ifdef ISTDLIB_MT
    CAllocatorType::AlignedDeallocate( ptr );
#else
    CAllocatorType::Deallocate( ptr );
#endif
}

/*****************************************************************************\
 operator delete from placement
\*****************************************************************************/
template<class CAllocatorType>
inline void CObject<CAllocatorType>::operator delete( void* ptr, void* placement )
{
    ASSERT( ptr );
    ASSERT( placement );
    ASSERT( ptr == placement );
}

} // iSTD