forked from nillerusr/source-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidator.cpp
268 lines (219 loc) · 8.29 KB
/
validator.cpp
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
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "pch_tier0.h"
#include "tier0/memblockhdr.h"
#ifdef DBGFLAG_VALIDATE
// we use malloc & free internally in our validation code; turn off the deprecation #defines
#undef malloc
#undef free
//-----------------------------------------------------------------------------
// Purpose: Constructor
//-----------------------------------------------------------------------------
CValidator::CValidator( )
{
m_pValObjectFirst = NULL;
m_pValObjectLast = NULL;
m_pValObjectCur = NULL;
m_cpvOwned = 0;
m_bMemLeaks = false;
// Mark all memory blocks as unclaimed, prior to starting the validation process
CMemBlockHdr *pMemBlockHdr = CMemBlockHdr::PMemBlockHdrFirst( );
pMemBlockHdr = pMemBlockHdr->PMemBlockHdrNext( ); // Head is just a placeholder
while ( NULL != pMemBlockHdr )
{
pMemBlockHdr->SetBClaimed( false );
pMemBlockHdr = pMemBlockHdr->PMemBlockHdrNext( );
}
}
//-----------------------------------------------------------------------------
// Purpose: Destructor
//-----------------------------------------------------------------------------
CValidator::~CValidator( )
{
CValObject *pValObject = m_pValObjectFirst;
CValObject *pValObjectNext;
while ( NULL != pValObject )
{
pValObjectNext = pValObject->PValObjectNext( );
Destruct<CValObject> (pValObject);
free( pValObject );
pValObject = pValObjectNext;
}
}
//-----------------------------------------------------------------------------
// Purpose: Call this each time you start a new Validate() function. It creates
// a new CValObject to track the caller.
// Input: pchType - The caller's type (typically a class name)
// pvObj - The caller (typically an object pointer)
// pchName - The caller's individual name (typically a member var of another class)
//-----------------------------------------------------------------------------
void CValidator::Push( tchar *pchType, void *pvObj, tchar *pchName )
{
// Create a new ValObject and add it to the linked list
CValObject *pValObjectNew = (CValObject *) malloc( sizeof (CValObject ) );
Construct<CValObject> (pValObjectNew);
pValObjectNew->Init( pchType, pvObj, pchName, m_pValObjectCur, m_pValObjectLast );
m_pValObjectLast = pValObjectNew;
if ( NULL == m_pValObjectFirst )
m_pValObjectFirst = pValObjectNew;
// Make this the current object
m_pValObjectCur = pValObjectNew;
}
//-----------------------------------------------------------------------------
// Purpose: Call this each time you end a Validate() function. It decrements
// our current structure depth.
//-----------------------------------------------------------------------------
void CValidator::Pop( )
{
Assert( NULL != m_pValObjectCur );
m_pValObjectCur = m_pValObjectCur->PValObjectParent( );
}
//-----------------------------------------------------------------------------
// Purpose: Call this to register each memory block you own.
// Input: pvMem - Memory block you own
//-----------------------------------------------------------------------------
void CValidator::ClaimMemory( void *pvMem )
{
if ( NULL == pvMem )
return;
// Mark the block as owned
CMemBlockHdr *pMemBlockHdr = CMemBlockHdr::PMemBlockHdrFromPvUser( pvMem );
pMemBlockHdr->CheckValid( );
Assert( !pMemBlockHdr->BClaimed( ) );
pMemBlockHdr->SetBClaimed( true );
// Let the current object know about it
Assert( NULL != m_pValObjectCur );
m_pValObjectCur->ClaimMemoryBlock( pvMem );
// Update our counter
m_cpvOwned++;
}
//-----------------------------------------------------------------------------
// Purpose: We're done enumerating our objects. Perform any final calculations.
//-----------------------------------------------------------------------------
void CValidator::Finalize( void )
{
// Count our memory leaks
CMemBlockHdr *pMemBlockHdr = CMemBlockHdr::PMemBlockHdrFirst( );
pMemBlockHdr = pMemBlockHdr->PMemBlockHdrNext( );
m_cpubLeaked = 0;
m_cubLeaked = 0;
while ( NULL != pMemBlockHdr )
{
if ( !pMemBlockHdr->BClaimed( ) )
{
m_cpubLeaked++;
m_cubLeaked += pMemBlockHdr->CubUser( );
m_bMemLeaks = true;
}
pMemBlockHdr = pMemBlockHdr->PMemBlockHdrNext( );
}
}
//-----------------------------------------------------------------------------
// Purpose: Render all reported objects to the console
// Input: cubThreshold - Only render object whose children have at least
// cubThreshold bytes allocated
//-----------------------------------------------------------------------------
void CValidator::RenderObjects( int cubThreshold )
{
// Walk our object list and render them all to the console
CValObject *pValObject = m_pValObjectFirst;
while ( NULL != pValObject )
{
if ( pValObject->CubMemTree( ) >= cubThreshold )
{
for ( int ich = 0; ich < pValObject->NLevel( ); ich++ )
ConMsg( 2, _T(" ") );
ConMsg( 2, _T("%s at 0x%x--> %d blocks = %d bytes\n"),
pValObject->PchType( ), pValObject->PvObj( ), pValObject->CpubMemTree( ),
pValObject->CubMemTree( ) );
}
pValObject = pValObject->PValObjectNext( );
}
// Dump a summary to the console
ConMsg( 2, _T("Allocated:\t%d blocks\t%d bytes\n"), CpubAllocated( ), CubAllocated( ) );
}
//-----------------------------------------------------------------------------
// Purpose: Render any discovered memory leaks to the console
//-----------------------------------------------------------------------------
void CValidator::RenderLeaks( void )
{
if ( m_bMemLeaks )
ConMsg( 1, _T("\n") );
// Render any leaked blocks to the console
CMemBlockHdr *pMemBlockHdr = CMemBlockHdr::PMemBlockHdrFirst( );
pMemBlockHdr = pMemBlockHdr->PMemBlockHdrNext( );
while ( NULL != pMemBlockHdr )
{
if ( !pMemBlockHdr->BClaimed( ) )
{
ConMsg( 1, _T("Leaked mem block: Addr = 0x%x\tSize = %d\n"),
pMemBlockHdr->PvUser( ), pMemBlockHdr->CubUser( ) );
ConMsg( 1, _T("\tAlloc = %s, line %d\n"),
pMemBlockHdr->PchFile( ), pMemBlockHdr->NLine( ) );
}
pMemBlockHdr = pMemBlockHdr->PMemBlockHdrNext( );
}
// Dump a summary to the console
if ( 0 != m_cpubLeaked )
ConMsg( 1, _T("!!!Leaked:\t%d blocks\t%d bytes\n"), m_cpubLeaked, m_cubLeaked );
}
//-----------------------------------------------------------------------------
// Purpose: Find the validator object associated with the given real object.
//-----------------------------------------------------------------------------
CValObject *CValidator::FindObject( void * pvObj )
{
CValObject *pValObject = m_pValObjectFirst;
CValObject *pValObjectNext;
while ( NULL != pValObject )
{
pValObjectNext = pValObject->PValObjectNext( );
if( pvObj == pValObject->PvObj() )
return pValObject;
pValObject = pValObjectNext;
}
return NULL;
}
//-----------------------------------------------------------------------------
// Purpose: Diff one CValidator against another. Each Validator object is
// tagged with whether it is new since the last snapshot or not.
//-----------------------------------------------------------------------------
void CValidator::DiffAgainst( CValidator *pOtherValidator ) // Removes any entries from this validator that are also present in the other.
{
// Render any leaked blocks to the console
CValObject *pValObject = m_pValObjectFirst;
CValObject *pValObjectNext;
while ( NULL != pValObject )
{
pValObjectNext = pValObject->PValObjectNext( );
pValObject->SetBNewSinceSnapshot( pOtherValidator->FindObject( pValObject->PvObj() ) == NULL );
if( pValObject->BNewSinceSnapshot() && pValObject->CubMemTree( ) )
{
for ( int ich = 0; ich < pValObject->NLevel( ); ich++ )
ConMsg( 2, _T(" ") );
ConMsg( 2, _T("%s at 0x%x--> %d blocks = %d bytes\n"),
pValObject->PchType( ), pValObject->PvObj( ), pValObject->CpubMemTree( ),
pValObject->CubMemTree( ) );
}
pValObject = pValObjectNext;
}
}
void CValidator::Validate( CValidator &validator, tchar *pchName )
{
validator.Push( _T("CValidator"), this, pchName );
validator.ClaimMemory( this );
// Render any leaked blocks to the console
CValObject *pValObject = m_pValObjectFirst;
CValObject *pValObjectNext;
while ( NULL != pValObject )
{
pValObjectNext = pValObject->PValObjectNext( );
validator.ClaimMemory( pValObject );
pValObject = pValObjectNext;
}
validator.Pop();
}
#endif // DBGFLAG_VALIDATE