-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeap.c
623 lines (541 loc) · 17.4 KB
/
Heap.c
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
// Copyright (c) 2012 DotNetAnywhere
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#include "Compat.h"
#include "Sys.h"
#include "Heap.h"
#include "MetaData.h"
#include "CLIFile.h"
#include "Type.h"
#include "EvalStack.h"
#include "Finalizer.h"
#include "Thread.h"
#include "System.String.h"
#include "System.Array.h"
#include "System.WeakReference.h"
// Memory roots are:
// All threads, all MethodStates - the ParamLocals memory and the evaluation stack
// All static fields of all types
// Note that the evaluation stack is not typed, so every 4-byte entry is treated as a pointer
typedef struct tSync_ tSync;
typedef struct tHeapEntry_ tHeapEntry;
struct tSync_ {
// The thread that holds this sync block
tThread *pThread;
// The number of times this thread has entered the sync block
U32 count;
// Link to the first weak-ref that targets this object.
// This allows the tracking of all weak-refs that target this object.
HEAP_PTR weakRef;
};
// The memory is kept track of using a balanced binary search tree (ordered by memory address)
// See http://www.eternallyconfuzzled.com/tuts/datastructures/jsw_tut_andersson.aspx for details.
struct tHeapEntry_ {
// Left/right links in the heap binary tree
tHeapEntry *pLink[2];
// The 'level' of this node. Leaf nodes have lowest level
U8 level;
// Used to mark that this node is still in use.
// If this is set to 0xff, then this heap entry is undeletable.
U8 marked;
// Set to 1 if the Finalizer needs to be run.
// Set to 2 if this has been added to the Finalizer queue
// Set to 0 when the Finalizer has been run (or there is no Finalizer in the first place)
// Only set on types that have a Finalizer
U8 needToFinalize;
// unused
U8 padding;
#ifdef STORE_HEAPENTRY_SIZE
U32 totalSize;
#endif
// The type in this heap entry
tMD_TypeDef *pTypeDef;
// Used for locking sync, and tracking WeakReference that point to this object
tSync *pSync;
// The user memory
U8 memory[0];
};
// Get the tHeapEntry pointer when given a HEAP_PTR object
#define GET_HEAPENTRY(heapObj) ((tHeapEntry*)(heapObj - sizeof(tHeapEntry)))
// Forward ref
static void RemoveWeakRefTarget(tHeapEntry *pHeapEntry, U32 removeLongRefs);
static tHeapEntry *pHeapTreeRoot;
static tHeapEntry *nil;
#define MAX_TREE_DEPTH 40
// The total heap memory currently allocated
static U32 trackHeapSize;
// The max heap size allowed before a garbage collection is triggered
static U32 heapSizeMax;
// The number of allocated memory nodes
static U32 numNodes = 0;
// The number of pinned memory nodes
static U32 numPinned = 0;
// The number of collections done
static U32 numCollections = 0;
#ifdef DIAG_GC
// Track how much time GC's are taking
U64 gcTotalTime = 0;
#endif
#define MIN_HEAP_SIZE 1000000
#define MAX_HEAP_EXCESS 4000000
void Heap_Init() {
// Initialise vars
trackHeapSize = 0;
heapSizeMax = MIN_HEAP_SIZE;
// Create nil node - for leaf termination
nil = TCALLOCFOREVER(1, tHeapEntry);
//memset(nil, 0, sizeof(tHeapEntry));
nil->pLink[0] = nil->pLink[1] = nil;
// Set the heap tree as empty
pHeapTreeRoot = nil;
}
#ifdef STORE_HEAPENTRY_SIZE
#define HEAPENTRY_TOTALSIZE(pNode) pNode->totalSize
#else
#define HEAPENTRY_TOTALSIZE(pNode) GetSize(pNode) + sizeof(tHeapEntry)
// Get the size of a heap entry, NOT including the header
// This works by returning the size of the type, unless the type is an array or a string,
// which are the only two types that can have variable sizes
static U32 GetSize(tHeapEntry *pHeapEntry) {
tMD_TypeDef *pType = pHeapEntry->pTypeDef;
if (pType == types[TYPE_SYSTEM_STRING]) {
// If it's a string, return the string length in bytes
return SystemString_GetNumBytes((HEAP_PTR)(pHeapEntry + 1));
}
if (TYPE_ISARRAY(pType)) {
// If it's an array, return the array length * array element size
return SystemArray_GetNumBytes((HEAP_PTR)(pHeapEntry + 1), pType->pArrayElementType);
}
// If it's not string or array, just return the instance memory size
return pType->instanceMemSize;
}
#endif
static tHeapEntry* TreeSkew(tHeapEntry *pRoot) {
if (pRoot->pLink[0]->level == pRoot->level && pRoot->level != 0) {
tHeapEntry *pSave = pRoot->pLink[0];
pRoot->pLink[0] = pSave->pLink[1];
pSave->pLink[1] = pRoot;
pRoot = pSave;
}
return pRoot;
}
static tHeapEntry* TreeSplit(tHeapEntry *pRoot) {
if (pRoot->pLink[1]->pLink[1]->level == pRoot->level && pRoot->level != 0) {
tHeapEntry *pSave = pRoot->pLink[1];
pRoot->pLink[1] = pSave->pLink[0];
pSave->pLink[0] = pRoot;
pRoot = pSave;
pRoot->level++;
}
return pRoot;
}
static tHeapEntry* TreeBalance(tHeapEntry *pRoot) {
if (pRoot->pLink[0]->level < pRoot->level - 1 || pRoot->pLink[1]->level < pRoot->level - 1) {
if (pRoot->pLink[1]->level > --pRoot->level) {
pRoot->pLink[1]->level = pRoot->level;
}
pRoot = TreeSkew(pRoot);
pRoot->pLink[1] = TreeSkew(pRoot->pLink[1]);
pRoot->pLink[1]->pLink[1] = TreeSkew(pRoot->pLink[1]->pLink[1]);
pRoot = TreeSplit(pRoot);
pRoot->pLink[1] = TreeSplit(pRoot->pLink[1]);
}
return pRoot;
}
static tHeapEntry* TreeSearch(tHeapEntry *pNode, char *pMemRef) {
// Find this piece of heap memory in the tracking tree.
// Note that the 2nd memory address comparison MUST be >, not >= as might be expected,
// to allow for a zero-sized memory to be detected (and not garbage collected) properly.
// E.g. The object class has zero memory.
while (pNode != nil) {
if (pMemRef < (char*)pNode) {
pNode = pNode->pLink[0];
}
else if (pMemRef > (char*)pNode + HEAPENTRY_TOTALSIZE(pNode)) {
pNode = pNode->pLink[1];
}
else {
break;
}
}
return pNode;
}
static tHeapEntry* TreeInsert(tHeapEntry *pRoot, tHeapEntry *pEntry) {
if (pRoot == nil) {
pRoot = pEntry;
pRoot->level = 1;
pRoot->pLink[0] = pRoot->pLink[1] = nil;
pRoot->marked = 0;
} else {
I32 dir = pRoot < pEntry; // 0 for left, 1 for right
pRoot->pLink[dir] = TreeInsert(pRoot->pLink[dir], pEntry);
pRoot = TreeSkew(pRoot);
pRoot = TreeSplit(pRoot);
}
return pRoot;
}
static tHeapEntry* TreeRemove(tHeapEntry *pRoot, tHeapEntry *pDelete) {
if (pRoot != nil) {
if (pRoot == pDelete) {
if (pRoot->pLink[0] != nil && pRoot->pLink[1] != nil) {
tHeapEntry *pL0;
U8 l;
tHeapEntry *pHeir = pRoot->pLink[0], **ppHeirLink = &pHeir->pLink[0];
while (pHeir->pLink[1] != nil) {
ppHeirLink = &pHeir->pLink[1];
pHeir = pHeir->pLink[1];
}
// Swap the two nodes
pL0 = pHeir->pLink[0];
l = pHeir->level;
// Bring heir to replace root
pHeir->pLink[0] = pRoot->pLink[0];
pHeir->pLink[1] = pRoot->pLink[1];
pHeir->level = pRoot->level;
// Send root to replace heir
*ppHeirLink = pRoot;
pRoot->pLink[0] = pL0;
pRoot->pLink[1] = nil;
pRoot->level = l;
// Set correct return value
pL0 = pRoot;
pRoot = pHeir;
// Delete the node that's been sent down
pRoot->pLink[0] = TreeRemove(pRoot->pLink[0], pL0);
}
else {
pRoot = pRoot->pLink[pRoot->pLink[0] == nil];
}
}
else {
I32 dir = pRoot < pDelete;
pRoot->pLink[dir] = TreeRemove(pRoot->pLink[dir], pDelete);
}
}
return TreeBalance(pRoot);
}
static void GC_Mark() {
tHeapRoots heapRoots;
heapRoots.capacity = 64;
heapRoots.num = 0;
heapRoots.pHeapEntries = TMALLOC(heapRoots.capacity, tHeapRootEntry);
Thread_GetHeapRoots(&heapRoots);
CLIFile_GetHeapRoots(&heapRoots);
// Mark phase
while (heapRoots.num > 0) {
tHeapRootEntry *pRootsEntry;
U32 moreRootsAdded = 0;
U32 rootsEntryNumPointers;
void **pRootsEntryMem;
// Get a piece of memory off the list of heap memory roots.
pRootsEntry = &heapRoots.pHeapEntries[heapRoots.num - 1];
rootsEntryNumPointers = pRootsEntry->numPointers;
pRootsEntryMem = pRootsEntry->pMem;
// Mark this entry as done
pRootsEntry->numPointers = 0;
pRootsEntry->pMem = NULL;
// Iterate through all pointers in it
for (U32 i = 0; i < rootsEntryNumPointers; i++) {
void *pMemRef = pRootsEntryMem[i];
// Quick escape for known non-memory
if (pMemRef == NULL) {
continue;
}
// Find this piece of heap memory in the tracking tree.
tHeapEntry *pNode = TreeSearch(pHeapTreeRoot, pMemRef);
if (pNode != nil) {
// Found memory. See if it's already been marked.
// If it's already marked, then don't do anything.
// It it's not marked, then add all of its memory to the roots, and mark it.
if (pNode->marked == 0) {
tMD_TypeDef *pType = pNode->pTypeDef;
// Not yet marked, so mark it, and add it to heap roots.
pNode->marked = 1;
// Don't look at the contents of strings, arrays of primitive types, or WeakReferences
if (pType->stackType == EVALSTACK_O ||
pType->stackType == EVALSTACK_VALUETYPE ||
pType->stackType == EVALSTACK_PTR) {
if (pType != types[TYPE_SYSTEM_STRING] &&
(!TYPE_ISARRAY(pType) ||
pType->pArrayElementType->stackType == EVALSTACK_O ||
pType->pArrayElementType->stackType == EVALSTACK_VALUETYPE ||
pType->pArrayElementType->stackType == EVALSTACK_PTR)) {
if (pType != types[TYPE_SYSTEM_WEAKREFERENCE]) {
Heap_SetRoots(&heapRoots, pNode->memory, HEAPENTRY_TOTALSIZE(pNode) - sizeof(tHeapEntry));
moreRootsAdded = 1;
}
}
}
}
}
}
if (!moreRootsAdded) {
heapRoots.num--;
}
}
free(heapRoots.pHeapEntries);
}
static void GC_Sweep() {
tHeapEntry *pUp[MAX_TREE_DEPTH * 2];
tHeapEntry *pToDelete = NULL;
tHeapEntry *pNode;
// Sweep phase
// Traverse nodes
pUp[0] = pHeapTreeRoot;
I32 top = 1;
numPinned = 0;
while (top != 0) {
// Get this node
pNode = pUp[--top];
// Act on this node
if (pNode->marked) {
if (pNode->marked != 0xff) {
// Still in use (but not marked undeletable), so unmark
pNode->marked = 0;
}
else {
numPinned++;
}
}
else {
// Not in use any more, so put in deletion queue if it does not need Finalizing
// If it does need Finalizing, then don't garbage collect, and put in Finalization queue.
if (pNode->needToFinalize) {
if (pNode->needToFinalize == 1) {
AddFinalizer((HEAP_PTR)pNode + sizeof(tHeapEntry));
// Mark it as having been placed in the finalization queue.
// When it has been finalized, then this will be set to 0
pNode->needToFinalize = 2;
// If this object is being targetted by weak-ref(s), handle it
if (pNode->pSync != NULL) {
RemoveWeakRefTarget(pNode, 0);
free(pNode->pSync);
}
}
}
else {
// If this object is being targetted by weak-ref(s), handle it
if (pNode->pSync != NULL) {
RemoveWeakRefTarget(pNode, 1);
free(pNode->pSync);
}
// Use pSync to point to next entry in this linked-list.
//(tHeapEntry*)(pNode->pSync) = pToDelete;
pNode->pSync = (tSync*)pToDelete;
pToDelete = pNode;
}
}
// Get next node(s)
if (pNode->pLink[1] != nil) {
pUp[top++] = pNode->pLink[1];
}
if (pNode->pLink[0] != nil) {
pUp[top++] = pNode->pLink[0];
}
}
// Delete all unused memory nodes.
while (pToDelete != NULL) {
tHeapEntry *pThis = pToDelete;
pToDelete = (tHeapEntry*)(pToDelete->pSync);
pHeapTreeRoot = TreeRemove(pHeapTreeRoot, pThis);
numNodes--;
trackHeapSize -= HEAPENTRY_TOTALSIZE(pThis);
free(pThis);
}
}
static void GarbageCollect() {
U32 orgHeapSize = trackHeapSize;
U32 orgNumNodes = numNodes;
U32 orgPinned = numPinned;
#ifdef DIAG_GC
U64 startTime;
#endif
numCollections++;
#ifdef DIAG_GC
startTime = microTime();
#endif
GC_Mark();
GC_Sweep();
#ifdef DIAG_GC
gcTotalTime += microTime() - startTime;
#endif
log_f(1, "--- GARBAGE --- [Size: %d -> %d] [Nodes: %d -> %d] [Pinned: %d -> %d]\n",
orgHeapSize, trackHeapSize, orgNumNodes, numNodes, orgPinned, numPinned);
#ifdef DIAG_GC
log_f(1, "GC time = %d ms\n", gcTotalTime / 1000);
#endif
}
void Heap_UnmarkFinalizer(HEAP_PTR heapPtr) {
((tHeapEntry*)(heapPtr - sizeof(tHeapEntry)))->needToFinalize = 0;
}
void Heap_GarbageCollect() {
#if !defined(NO_GC_WHATSOEVER)
GarbageCollect();
#endif
}
U32 Heap_NumCollections() {
return numCollections;
}
U32 Heap_GetTotalMemory() {
return trackHeapSize;
}
void Heap_SetRoots(tHeapRoots *pHeapRoots, void *pRoots, U32 sizeInBytes) {
tHeapRootEntry *pRootEntry;
Assert((sizeInBytes & 0x3) == 0);
if (pHeapRoots->num >= pHeapRoots->capacity) {
pHeapRoots->capacity <<= 1;
pHeapRoots->pHeapEntries = (tHeapRootEntry*)realloc(pHeapRoots->pHeapEntries, pHeapRoots->capacity * sizeof(tHeapRootEntry));
}
pRootEntry = &pHeapRoots->pHeapEntries[pHeapRoots->num++];
pRootEntry->numPointers = sizeInBytes >> 2;
pRootEntry->pMem = pRoots;
}
HEAP_PTR Heap_Alloc(tMD_TypeDef *pTypeDef, U32 size) {
tHeapEntry *pHeapEntry;
U32 totalSize;
totalSize = sizeof(tHeapEntry) + size;
// Trigger garbage collection if required.
if (trackHeapSize >= heapSizeMax) {
GarbageCollect();
heapSizeMax = (trackHeapSize + totalSize) << 1;
if (heapSizeMax < trackHeapSize + totalSize + MIN_HEAP_SIZE) {
// Make sure there is always MIN_HEAP_SIZE available to allocate on the heap
heapSizeMax = trackHeapSize + totalSize + MIN_HEAP_SIZE;
}
if (heapSizeMax > trackHeapSize + totalSize + MAX_HEAP_EXCESS) {
// Make sure there is never more that MAX_HEAP_EXCESS space on the heap
heapSizeMax = trackHeapSize + totalSize + MAX_HEAP_EXCESS;
}
}
pHeapEntry = (tHeapEntry*)calloc(1, totalSize);
//memset(pHeapEntry, 0, totalSize);
#ifdef STORE_HEAPENTRY_SIZE
pHeapEntry->totalSize = totalSize;
#endif
pHeapEntry->pTypeDef = pTypeDef;
pHeapEntry->pSync = NULL;
pHeapEntry->needToFinalize = (pTypeDef->pFinalizer != NULL);
#if !defined(NO_GC_WHATSOEVER)
trackHeapSize += totalSize;
pHeapTreeRoot = TreeInsert(pHeapTreeRoot, pHeapEntry);
#endif
numNodes++;
return pHeapEntry->memory;
}
HEAP_PTR Heap_AllocType(tMD_TypeDef *pTypeDef) {
//printf("Heap_AllocType('%s')\n", pTypeDef->name);
return Heap_Alloc(pTypeDef, pTypeDef->instanceMemSize);
}
tMD_TypeDef* Heap_GetType(HEAP_PTR heapEntry) {
tHeapEntry *pHeapEntry = GET_HEAPENTRY(heapEntry);
return pHeapEntry->pTypeDef;
}
void Heap_MakeUndeletable(HEAP_PTR heapEntry) {
tHeapEntry *pHeapEntry = GET_HEAPENTRY(heapEntry);
pHeapEntry->marked = 0xff;
}
void Heap_MakeDeletable(HEAP_PTR heapEntry) {
tHeapEntry *pHeapEntry = GET_HEAPENTRY(heapEntry);
pHeapEntry->marked = 0;
}
HEAP_PTR Heap_Box(tMD_TypeDef *pType, PTR pMem) {
HEAP_PTR boxed;
boxed = Heap_AllocType(pType);
memcpy(boxed, pMem, pType->instanceMemSize);
return boxed;
}
HEAP_PTR Heap_Clone(HEAP_PTR obj) {
tHeapEntry *pObj = GET_HEAPENTRY(obj);
HEAP_PTR clone;
U32 size = HEAPENTRY_TOTALSIZE(pObj) - sizeof(tHeapEntry);
clone = Heap_Alloc(pObj->pTypeDef, size);
memcpy(clone, pObj->memory, size);
return clone;
}
static tSync* EnsureSync(tHeapEntry *pHeapEntry) {
if (pHeapEntry->pSync == NULL) {
tSync *pSync = TCALLOC(1, tSync);
//memset(pSync, 0, sizeof(tSync));
pHeapEntry->pSync = pSync;
}
return pHeapEntry->pSync;
}
static void DeleteSync(tHeapEntry *pHeapEntry) {
if (pHeapEntry->pSync != NULL) {
if (pHeapEntry->pSync->count == 0 && pHeapEntry->pSync->weakRef == NULL) {
free(pHeapEntry->pSync);
pHeapEntry->pSync = NULL;
}
}
}
// Return 1 if lock succesfully got
// Return 0 if couldn't get the lock this time
U32 Heap_SyncTryEnter(HEAP_PTR obj) {
tHeapEntry *pHeapEntry = GET_HEAPENTRY(obj);
tThread *pThread = Thread_GetCurrent();
tSync *pSync;
pSync = EnsureSync(pHeapEntry);
if (pSync->pThread == NULL) {
pSync->pThread = pThread;
pSync->count = 1;
return 1;
}
if (pSync->pThread == pThread) {
pSync->count++;
return 1;
}
return 0;
}
// Returns 1 if all is OK
// Returns 0 if the wrong thread is releasing the sync, or if no thread hold the sync
U32 Heap_SyncExit(HEAP_PTR obj) {
tHeapEntry *pHeapEntry = GET_HEAPENTRY(obj);
tThread *pThread = Thread_GetCurrent();
if (pHeapEntry->pSync == NULL) {
return 0;
}
if (pHeapEntry->pSync->pThread != pThread) {
return 0;
}
if (--pHeapEntry->pSync->count == 0) {
DeleteSync(pHeapEntry);
}
return 1;
}
static void RemoveWeakRefTarget(tHeapEntry *pTarget, U32 removeLongRefs) {
SystemWeakReference_TargetGone(&pTarget->pSync->weakRef, removeLongRefs);
}
// Returns the previous first weak-ref in target targetted by weakref
HEAP_PTR Heap_SetWeakRefTarget(HEAP_PTR target, HEAP_PTR weakRef) {
tHeapEntry *pTarget = GET_HEAPENTRY(target);
tSync *pSync;
HEAP_PTR prevWeakRef;
pSync = EnsureSync(pTarget);
prevWeakRef = pSync->weakRef;
pSync->weakRef = weakRef;
return prevWeakRef;
}
HEAP_PTR* Heap_GetWeakRefAddress(HEAP_PTR target) {
tHeapEntry *pTarget = GET_HEAPENTRY(target);
return &pTarget->pSync->weakRef;
}
void Heap_RemovedWeakRefTarget(HEAP_PTR target) {
tHeapEntry *pTarget = GET_HEAPENTRY(target);
DeleteSync(pTarget);
}