source: trunk/Include/system/gc.sbp@ 362

Last change on this file since 362 was 362, checked in by dai, 17 years ago

GCの初期値をメソッド経由で指定するように変更。

File size: 19.3 KB
Line 
1/*!
2 @brief このファイルでは、ABのガベージコレクションの実装を行います。
3*/
4
5
6/*
7※これらの変数はコンパイラが自動的に定義します。
8Dim _System_gc_StackRoot_StartPtr As VoidPtr
9*/
10
11Function _System_GetSp() As LONG_PTR 'dummy
12End Function
13
14
15Const _System_GC_FLAG_ATOMIC = 1
16Const _System_GC_FLAG_NEEDFREE = 2
17Const _System_GC_FLAG_INITZERO = 4
18Const _System_GC_FLAG_OBJECT = 8
19
20Type _System_GlobalRoot
21 ptr As *LONG_PTR
22 count As Long
23End Type
24
25Type _System_MemoryObject
26 ptr As VoidPtr
27 size As Long
28 flags As DWord
29 generationCount As Long
30End Type
31
32Class _System_CGarbageCollection
33
34 pMemoryObjects As *_System_MemoryObject ' メモリオブジェクト
35 countOfMemoryObjects As Long ' 管理するメモリオブジェクトの個数
36
37 iAllSize As SIZE_T
38
39 isSweeping As Boolean ' スウィープ中かどうか
40
41 ' クリティカルセクション
42 CriticalSection As CRITICAL_SECTION
43
44 ' メモリの上限値(この値を超えるとGCが発動します)
45 limitMemorySize As LONG_PTR ' バイト単位
46 limitMemoryObjectNum As Long ' メモリオブジェクトの個数単位
47
48 isFinish As Boolean ' GC管理が終了したかどうか
49
50
51 ' Global Root
52 pGlobalRoots As *_System_GlobalRoot
53 globalRootNum As Long
54 Sub AddGlobalRootPtr( ptr As *LONG_PTR, count As Long )
55 pGlobalRoots = _System_realloc( pGlobalRoots, (globalRootNum + 1) * SizeOf(_System_GlobalRoot) )
56 pGlobalRoots[globalRootNum].ptr = ptr
57 pGlobalRoots[globalRootNum].count = count
58 globalRootNum++
59 End Sub
60
61 Sub RegisterGlobalRoots()
62 ' このメソッドの実装はコンパイラが自動生成する
63
64 ' AddGlobalRootPtr(...)
65 ' ...
66 End Sub
67
68 ' 特殊クラスのため、コンストラクタ・デストラクタは呼ばれません
69 Sub _System_CGarbageCollection()
70 End Sub
71 Sub ~_System_CGarbageCollection()
72 End Sub
73
74Public
75
76 /*!
77 @brief 環境変数にGCを登録する
78 @author Daisuke Yamamoto
79 @date 2007/10/21
80 */
81 Static Sub Initialize()
82 Dim temporary[255] As Char
83 If GetEnvironmentVariable( "ActiveBasicGarbageCollection", temporary, 255 ) Then
84 ' 既にGCがプロセスに存在するとき
85 sscanf( temporary, "%08x", VarPtr( _System_pGC ) )
86 MessageBox(0,temporary,"GetEnvironmentVariable",0)
87 Else
88 _System_pGC = _System_calloc( SizeOf( _System_CGarbageCollection ) )
89 _System_pGC->Begin()
90
91 ' GCをプロセスに登録する
92 sprintf( temporary, "%08x", _System_pGC )
93 SetEnvironmentVariable( "ActiveBasicGarbageCollection", temporary )
94 End If
95 End Sub
96
97 /*!
98 @brief メモリサイズの上限を指定する
99 @param limitMemorySize メモリサイズの上限(単位はバイト)
100 limitMemoryObjectNum メモリ個数の上限
101 @author Daisuke Yamamoto
102 @date 2007/10/21
103 */
104 Sub SetLimit( limitMemorySize As LONG_PTR, limitMemoryObjectNum As Long )
105 This.limitMemorySize = limitMemorySize
106 This.limitMemoryObjectNum = limitMemoryObjectNum
107 End Sub
108
109 /*!
110 @brief 初期化
111 @author Daisuke Yamamoto
112 @date 2007/10/21
113 */
114 Sub Begin()
115 If pMemoryObjects Then Exit Sub
116
117 isFinish = False
118
119 'メモリの上限値(この値を超えるとGCが発動します)
120 SetLimit(
121 1024*1024, ' バイト単位
122 2000 ' メモリオブジェクトの個数単位
123 )
124
125 pMemoryObjects = _System_calloc( 1 )
126 countOfMemoryObjects=0
127
128 ' Global Root
129 pGlobalRoots = _System_calloc( 1 )
130 globalRootNum = 0
131 RegisterGlobalRoots()
132
133 iAllSize=0
134
135 ' スウィープ中かどうか
136 isSweeping = False
137
138 'クリティカルセッションを生成
139 InitializeCriticalSection(CriticalSection)
140
141
142 '---------------------------
143 ' 開始時のスレッドを通知
144 '---------------------------
145 Dim hTargetThread As HANDLE
146 DuplicateHandle(GetCurrentProcess(),
147 GetCurrentThread(),
148 GetCurrentProcess(),
149 hTargetThread, 0, FALSE, DUPLICATE_SAME_ACCESS) 'カレントスレッドのハンドルを複製
150
151 ' スレッド管理用オブジェクトを生成
152 _System_pobj_AllThreads = New _System_CThreadCollection()
153
154 ' 自身のThreadオブジェクトを生成
155 Dim thread As Thread(hTargetThread,GetCurrentThreadId(),0)
156 thread.Name = "main"
157
158 _System_pobj_AllThreads->BeginThread(ObjPtr( thread ),_System_gc_StackRoot_StartPtr As *LONG_PTR)
159
160 End Sub
161
162 /*!
163 @brief 終了処理
164 @author Daisuke Yamamoto
165 @date 2007/10/21
166 */
167 Sub Finish()
168 If pMemoryObjects = NULL Then Exit Sub
169
170 isFinish = True
171
172 ' スレッド管理用オブジェクトを破棄
173 Delete _System_pobj_AllThreads
174
175 ' 自分以外のスレッドを一時停止
176 '_System_pobj_AllThreads->SuspendAnotherThread()
177
178 _System_DebugOnly_OutputDebugString( Ex"garbage colletion sweeping all memory objects!\r\n" )
179 DeleteAllGarbageMemories()
180
181 ' 未解放のメモリオブジェクトをトレース
182 DumpMemoryLeaks()
183
184 ' 自分以外のスレッドを再開
185 '_System_pobj_AllThreads->ResumeAnotherThread()
186
187 _System_free( pMemoryObjects )
188 pMemoryObjects = NULL
189
190 _System_free( pGlobalRoots )
191 pGlobalRoots = NULL
192
193 'クリティカルセッションを破棄
194 DeleteCriticalSection(CriticalSection)
195
196 End Sub
197
198 /*!
199 @brief メモリオブジェクトからインデックスを取得する
200 @param new_ptr メモリオブジェクトへのポインタ
201 @author Daisuke Yamamoto
202 @date 2007/10/21
203 */
204 Function GetMemoryObjectPtr( ptr As VoidPtr ) As *_System_MemoryObject
205 ' メモリオブジェクトの先頭部分からインデックスを取得する
206 Dim index = Get_LONG_PTR( ptr - SizeOf(LONG_PTR) ) As Long
207
208 If pMemoryObjects[index].ptr <> ptr Then
209 ' メモリイメージが壊れている(先頭に存在するインデックスの整合性が取れない)
210 Dim temporary[1024] As Char
211 wsprintf( temporary, Ex"indexOfMemoryObjects: %d\r\npMemoryObjects[index].ptr: &H%08x\r\nptr: &H%08x\r\n",
212 index,
213 pMemoryObjects[index].ptr,
214 ptr )
215 _System_DebugOnly_OutputDebugString( temporary )
216 debug
217 End If
218
219 Return VarPtr( pMemoryObjects[index] )
220 End Function
221
222 /*!
223 @brief メモリオブジェクトを追加する
224 @param new_ptr メモリオブジェクトへのポインタ
225 size メモリオブジェクトのサイズ
226 flags メモリオブジェクトの属性
227 @author Daisuke Yamamoto
228 @date 2007/10/21
229 */
230 Sub add(new_ptr As VoidPtr, size As SIZE_T, flags As DWord)
231 EnterCriticalSection(CriticalSection)
232 iAllSize+=size
233
234 ' メモリオブジェクトインスタンスの先頭にインデックスをセットする
235 Set_LONG_PTR( new_ptr - SizeOf( LONG_PTR ), countOfMemoryObjects )
236
237 pMemoryObjects = _System_realloc( pMemoryObjects, (countOfMemoryObjects+1)*SizeOf(_System_MemoryObject) )
238 pMemoryObjects[countOfMemoryObjects].ptr = new_ptr
239 pMemoryObjects[countOfMemoryObjects].size = size
240 pMemoryObjects[countOfMemoryObjects].flags = flags
241 pMemoryObjects[countOfMemoryObjects].generationCount = 0
242
243 countOfMemoryObjects++
244 LeaveCriticalSection(CriticalSection)
245
246 /*
247 ' デバッグ用
248 If countOfMemoryObjects = 1996 Then
249 debug
250 End If
251 */
252 End Sub
253
254
255 /*!
256 @brief メモリオブジェクトを確保する
257 @param size メモリオブジェクトのサイズ
258 flags メモリオブジェクトの属性
259 @author Daisuke Yamamoto
260 @date 2007/10/21
261 */
262 Function __malloc(size As SIZE_T,flags As Byte) As VoidPtr
263 Dim dwFlags As DWord
264 If flags and _System_GC_FLAG_INITZERO Then
265 dwFlags=HEAP_ZERO_MEMORY
266 Else
267 dwFlags=0
268 End If
269
270 ' 実際のメモリバッファはインデックスの分だけ多めに確保する
271 Dim ptr = HeapAlloc( _System_hProcessHeap, dwFlags, size + SizeOf( LONG_PTR ) ) + SizeOf( LONG_PTR )
272
273 ' 管理対象のメモリオブジェクトとして追加
274 add( ptr, size, flags )
275
276 Return ptr
277 End Function
278
279 /*!
280 @brief メモリオブジェクトを再確保する
281 @param lpMem メモリオブジェクトへのポインタ
282 size メモリオブジェクトのサイズ
283 flags メモリオブジェクトの属性
284 @author Daisuke Yamamoto
285 @date 2007/10/21
286 */
287 Function __realloc(lpMem As VoidPtr, size As SIZE_T) As VoidPtr
288 EnterCriticalSection(CriticalSection)
289
290 ' メモリオブジェクトを取得
291 Dim pTempMemoryObject = GetMemoryObjectPtr( lpMem )
292
293 iAllSize += size - pTempMemoryObject->size
294
295 pTempMemoryObject->size = size
296 pTempMemoryObject->ptr = HeapReAlloc( _System_hProcessHeap, HEAP_ZERO_MEMORY, pTempMemoryObject->ptr - SizeOf(LONG_PTR), size + SizeOf(LONG_PTR) ) + SizeOf(LONG_PTR)
297
298 LeaveCriticalSection(CriticalSection)
299 Return pTempMemoryObject->ptr
300 End Function
301
302 /*!
303 @brief メモリオブジェクトを解放する
304 @param lpMem メモリオブジェクトへのポインタ
305 isSweeping スウィープ中にこのメソッドが呼ばれるときはTrue、それ以外はFalse
306 @author Daisuke Yamamoto
307 @date 2007/10/21
308 */
309 Sub __free_ex(lpMem As VoidPtr, isSweeping As Boolean)
310 EnterCriticalSection(CriticalSection)
311
312 ' メモリオブジェクトを取得
313 Dim pTempMemoryObject = GetMemoryObjectPtr( lpMem )
314
315 If (pTempMemoryObject->flags and _System_GC_FLAG_NEEDFREE)<>0 or isSweeping Then
316 iAllSize -= pTempMemoryObject->size
317
318 HeapFree( _System_hProcessHeap, 0, pTempMemoryObject->ptr - SizeOf(LONG_PTR) )
319 pTempMemoryObject->ptr = NULL
320 pTempMemoryObject->size = 0
321 Else
322 If isFinish = False Then
323 _System_DebugOnly_OutputDebugString( Ex"heap free missing!\r\n" )
324 End If
325 End If
326 LeaveCriticalSection(CriticalSection)
327 End Sub
328
329 /*!
330 @brief メモリオブジェクトを解放する
331 @param lpMem メモリオブジェクトへのポインタ
332 @author Daisuke Yamamoto
333 @date 2007/10/21
334 */
335 Sub __free(lpMem As VoidPtr)
336 __free_ex( lpMem, False )
337 End Sub
338
339 /*!
340 @brief スウィープする
341 @author Daisuke Yamamoto
342 @date 2007/10/21
343 */
344 Sub sweep()
345 If isSweeping <> False or (iAllSize<limitMemorySize and countOfMemoryObjects<limitMemoryObjectNum) Then
346 'メモリ使用量が上限値を超えていないとき
347 Exit Sub
348 End If
349
350 Dim hThread As HANDLE
351 Dim ThreadId As DWord
352 hThread=_beginthreadex(NULL,0,AddressOf(SweepOnOtherThread),VarPtr(This),0,ThreadId)
353 WaitForSingleObject(hThread,INFINITE)
354 CloseHandle(hThread)
355 isSweeping = False
356 End Sub
357
358Private
359
360 Static Function IsNull( object As Object ) As Boolean
361 Return Object.ReferenceEquals(object, Nothing)
362 End Function
363
364 /*!
365 @brief メモリオブジェクトの生存検地
366 @param pSample メモリオブジェクトへのポインタ
367 @author Daisuke Yamamoto
368 @date 2007/10/21
369 */
370 Function HitTest(pSample As VoidPtr) As Long
371 Dim i As Long
372 For i=0 To ELM(countOfMemoryObjects)
373 If (pMemoryObjects[i].ptr As LONG_PTR)<=(pSample As LONG_PTR) and (pSample As LONG_PTR)<((pMemoryObjects[i].ptr As LONG_PTR)+pMemoryObjects[i].size) Then
374 Return i
375 End If
376 Next
377 Return -1
378 End Function
379
380 /*!
381 @brief オブジェクトのスキャン
382 @param pObject オブジェクトへのポインタ
383 pbMark マークリスト
384 @author Daisuke Yamamoto
385 @date 2007/10/21
386 */
387 Function ScanObject(pObject As *Object, pbMark As *Byte) As Boolean
388 Dim classTypeInfo = Nothing As ActiveBasic.Core._System_TypeForClass
389 classTypeInfo = pObject->GetType() As ActiveBasic.Core._System_TypeForClass
390
391 If IsNull( classTypeInfo ) Then
392 Return False
393 End If
394
395 /*
396 _System_DebugOnly_OutputDebugString( " (scanning object)" )
397 _System_DebugOnly_OutputDebugString( classTypeInfo.Name )
398 _System_DebugOnly_OutputDebugString( Ex"\r\n" )
399 */
400
401 Dim i As Long
402 For i = 0 To ELM(classTypeInfo.numOfReference)
403 Scan( (pObject + classTypeInfo.referenceOffsets[i]) As *LONG_PTR, 1, pbMark )
404 Next
405
406 Return True
407 End Function
408
409 /*!
410 @brief メモリオブジェクトのスキャン
411 @param pStartPtr メモリオブジェクトへのポインタ
412 maxNum スキャンするメモリオブジェクトの個数
413 pbMark マークリスト
414 @author Daisuke Yamamoto
415 @date 2007/10/21
416 */
417 Sub Scan(pStartPtr As *LONG_PTR, maxNum As Long, pbMark As *Byte)
418 Dim i As Long, index As Long
419
420 For i=0 To ELM(maxNum)
421 index=HitTest(pStartPtr[i] As VoidPtr)
422 If index<>-1 Then
423 If pbMark[index]=0 Then
424 pbMark[index]=1
425
426 ' ジェネレーションカウントを増やす
427 pMemoryObjects[index].generationCount ++
428
429 If pMemoryObjects[index].flags and _System_GC_FLAG_OBJECT Then
430 ' オブジェクトの場合
431 If ScanObject( (pMemoryObjects[index].ptr + 4*SizeOf(LONG_PTR)) As *Object, pbMark) = False Then
432 Dim maxNum = (pMemoryObjects[index].size\SizeOf(LONG_PTR)) As Long
433 Scan(pMemoryObjects[index].ptr As *LONG_PTR, maxNum, pbMark)
434 End If
435
436 ElseIf (pMemoryObjects[index].flags and _System_GC_FLAG_ATOMIC)=0 Then
437 ' ヒープ領域がポインタ値を含む可能性があるとき
438 If pMemoryObjects[index].ptr = NULL Then
439 'エラー
440
441 End If
442
443 Dim maxNum = (pMemoryObjects[index].size\SizeOf(LONG_PTR)) As Long
444 Scan(pMemoryObjects[index].ptr As *LONG_PTR, maxNum, pbMark)
445 End If
446 End If
447 End If
448 Next
449 End Sub
450
451 /*!
452 @brief グローバル領域をルートに指定してスキャン
453 @param pbMark マークリスト
454 @author Daisuke Yamamoto
455 @date 2007/10/21
456 */
457 Sub GlobalScan( pbMark As *Byte )
458 Dim i As Long
459 For i = 0 To ELM( globalRootNum )
460 Scan( pGlobalRoots[i].ptr, pGlobalRoots[i].count, pbMark )
461 Next
462 End Sub
463
464 /*!
465 @brief ローカル領域をルートに指定してスキャン
466 @param pbMark マークリスト
467 @author Daisuke Yamamoto
468 @date 2007/10/21
469 */
470 Sub LocalScan( pbMark As *Byte )
471 Dim Context As CONTEXT
472 Dim NowSp As *LONG_PTR
473 Dim size As LONG_PTR
474 Dim i As Long
475 For i=0 To ELM(_System_pobj_AllThreads->ThreadNum)
476 Dim thread = _System_pobj_AllThreads->ppobj_Thread[i]
477 If thread Then
478 FillMemory(VarPtr(Context),SizeOf(CONTEXT),0)
479 Context.ContextFlags=CONTEXT_CONTROL
480 If thread->__GetContext(Context)=0 Then
481 _System_DebugOnly_OutputDebugString(Ex"レジスタ情報の取得に失敗しました。\r\n")
482 End If
483
484#ifdef _WIN64
485 NowSp=Context.Rsp As *LONG_PTR
486#else
487 NowSp=Context.Esp As *LONG_PTR
488#endif
489
490 Dim size=(_System_pobj_AllThreads->pStackBase[i] As LONG_PTR)-(NowSp As LONG_PTR)
491 Dim maxNum = (size\SizeOf(LONG_PTR)) As Long
492
493 If NowSp = 0 Then
494 debug
495 Exit Sub
496 End If
497
498 /*
499 _System_DebugOnly_OutputDebugString( "(scanning thread local)" )
500 _System_DebugOnly_OutputDebugString( thread.Name )
501 _System_DebugOnly_OutputDebugString( Ex"\r\n" )
502 */
503
504 Scan( NowSp, maxNum, pbMark )
505 End If
506 Next
507 End Sub
508
509 /*!
510 @brief 生存していないメモリオブジェクトを解放する
511 @param pbMark マークリスト
512 @author Daisuke Yamamoto
513 @date 2007/10/21
514 */
515 Sub DeleteGarbageMemories( pbMark As *Byte )
516
517 Dim isAllDelete = False
518 If pbMark = NULL Then
519 ' すべてを破棄するとき
520 isAllDelete = True
521 pbMark = _System_calloc( countOfMemoryObjects )
522 End If
523
524 Dim i As Long
525 For i=0 To ELM(countOfMemoryObjects)
526 If pbMark[i]=0 and pMemoryObjects[i].ptr<>0 and (pMemoryObjects[i].flags and _System_GC_FLAG_NEEDFREE)=0 Then
527 If pMemoryObjects[i].ptr = NULL Then
528 If isAllDelete Then
529 Continue
530 Else
531 debug
532 End If
533 End If
534
535 Dim ptr = pMemoryObjects[i].ptr
536 Dim size = pMemoryObjects[i].size
537
538 If (pMemoryObjects[i].flags and _System_GC_FLAG_OBJECT) <> 0 Then
539 /* ・オブジェクトの個数
540 ・オブジェクトのサイズ
541 ・デストラクタの関数ポインタ
542 ・リザーブ領域
543 を考慮 */
544 _System_SweepingDelete (ptr + SizeOf( LONG_PTR ) * 4 )
545 Else
546 __free_ex( ptr, True )
547 End If
548 End If
549 Next
550
551 If isAllDelete Then
552 _System_free( pbMark )
553 End If
554
555 End Sub
556
557 /*!
558 @brief GCが管理するすべてのメモリオブジェクトを解放する
559 @author Daisuke Yamamoto
560 @date 2007/10/21
561 */
562 Sub DeleteAllGarbageMemories()
563 DeleteGarbageMemories( NULL )
564 End Sub
565
566 /*!
567 @brief コンパクション
568 @author Daisuke Yamamoto
569 @date 2007/10/21
570 */
571 Sub Compaction()
572 Dim i As Long, i2 = 0 As Long
573 For i=0 To ELM(countOfMemoryObjects)
574 pMemoryObjects[i2] = pMemoryObjects[i]
575
576 If pMemoryObjects[i2].ptr Then
577 ' メモリオブジェクトの先頭部分にあるインデックスを書き換える
578 Set_LONG_PTR( pMemoryObjects[i2].ptr - SizeOf(LONG_PTR), i2 )
579
580 i2++
581 End If
582 Next
583 countOfMemoryObjects = i2
584 End Sub
585
586 /*!
587 @brief スウィープ(新規スレッドで呼び出す必要あり)
588 @author Daisuke Yamamoto
589 @date 2007/10/21
590 */
591 Function SweepOnOtherThread() As Long
592 EnterCriticalSection(CriticalSection)
593
594
595 Dim startTime = GetTickCount()
596
597 _System_DebugOnly_OutputDebugString( Ex"garbage colletion sweep start!\r\n" )
598
599
600 If isSweeping <> False or (iAllSize<limitMemorySize and countOfMemoryObjects<limitMemoryObjectNum) Then
601 ExitThread(0)
602 End If
603 isSweeping = True
604
605 ' すべてのスレッドを一時停止
606 _System_pobj_AllThreads->SuspendAllThread()
607
608 ' マークリストを生成
609 Dim pbMark = HeapAlloc(_System_hProcessHeap,HEAP_ZERO_MEMORY,countOfMemoryObjects*SizeOf(Byte)) As *Byte
610
611 ' グローバル領域をルートに指定してスキャン
612 GlobalScan( pbMark )
613
614 ' ローカル領域をルートに指定してスキャン
615 LocalScan( pbMark )
616
617 ' スウィープ前のメモリサイズを退避
618 Dim iBackAllSize = iAllSize
619
620 ' スウィープ前のメモリオブジェクトの数
621 Dim iBeforeN = countOfMemoryObjects
622
623 '使われていないメモリを解放する
624 DeleteGarbageMemories(pbMark)
625
626 'コンパクション
627 Compaction()
628
629 'マークリストを解放
630 HeapFree(_System_hProcessHeap,0,pbMark)
631
632 If iBackAllSize <= iAllSize * 2 Then
633 If iAllSize > limitMemorySize Then
634 limitMemorySize = iAllSize
635 End If
636
637 '許容量を拡張する
638 limitMemorySize *= 2
639 limitMemoryObjectNum *= 2
640
641 _System_DebugOnly_OutputDebugString( Ex"memory size is extended for gc!\r\n" )
642 End If
643
644 Dim temp[100] As Char
645 wsprintf(temp,Ex"object items ... %d -> %d ( %d MB -> %d MB )\r\n",iBeforeN,countOfMemoryObjects, iBackAllSize\1024\1024, iAllSize\1024\1024)
646 _System_DebugOnly_OutputDebugString( temp )
647 wsprintf(temp,Ex"limit size of memory ... %d\r\n",limitMemorySize)
648 _System_DebugOnly_OutputDebugString( temp )
649 wsprintf(temp,Ex"garbage colletion sweep finish! (%d ms)\r\n\r\n", GetTickCount()-startTime)
650 _System_DebugOnly_OutputDebugString( temp )
651
652
653 '-------------------------------------
654 ' すべてのスレッドを再開
655 '-------------------------------------
656 _System_pobj_AllThreads->ResumeAllThread()
657
658 LeaveCriticalSection(CriticalSection)
659 End Function
660
661 /*!
662 @brief 未解放のメモリオブジェクトをデバッグ出力する
663 @author Daisuke Yamamoto
664 @date 2007/10/21
665 */
666 Sub DumpMemoryLeaks()
667 Dim isLeak = False
668 Dim i As Long
669 For i=0 To ELM(countOfMemoryObjects)
670 If pMemoryObjects[i].ptr Then
671 If (pMemoryObjects[i].flags and _System_GC_FLAG_NEEDFREE)<>0 Then
672 If isLeak = False Then
673 _System_DebugOnly_OutputDebugString( Ex"Detected memory leaks!\r\n" )
674 isLeak = True
675 End If
676
677 Dim temp[100] As Char
678 _System_DebugOnly_OutputDebugString( Ex"heap free missing!\r\n" )
679 wsprintf(temp,Ex"{%d} normal block at &H%08X, %d bytes long.\r\n", i, pMemoryObjects[i].ptr, pMemoryObjects[i].size)
680 _System_DebugOnly_OutputDebugString( temp )
681 End If
682 End If
683 Next
684
685 If isLeak Then
686 _System_DebugOnly_OutputDebugString( Ex"Object dump complete.\r\n" )
687 End If
688
689 End Sub
690
691End Class
692
693'GC管理用の特殊なシステムオブジェクト(デストラクタは最終のタイミングで呼び出されます)
694Dim _System_pGC As *_System_CGarbageCollection
695
696
697
698Function GC_malloc(size As Long) As VoidPtr
699 ' sweep
700 _System_pGC->sweep()
701
702 'allocate
703 Return _System_pGC->__malloc(size,0)
704End Function
705
706Function GC_malloc_atomic(size As Long) As VoidPtr
707 ' sweep
708 _System_pGC->sweep()
709
710 'allocate
711 Return _System_pGC->__malloc(size,_System_GC_FLAG_ATOMIC)
712End Function
713
714Function _System_GC_malloc_ForObject(size As Long) As VoidPtr
715 ' sweep
716 _System_pGC->sweep()
717
718 'allocate
719 Return _System_pGC->__malloc(size,_System_GC_FLAG_OBJECT or _System_GC_FLAG_INITZERO)
720End Function
721
722Function _System_GC_malloc_ForObjectPtr(size As Long) As VoidPtr
723 ' sweep
724 _System_pGC->sweep()
725
726 'allocate
727 Return _System_pGC->__malloc(size,_System_GC_FLAG_OBJECT or _System_GC_FLAG_INITZERO or _System_GC_FLAG_NEEDFREE)
728End Function
729
730Function _System_GC_free_for_SweepingDelete( ptr As *Object )
731 ' free
732 _System_pGC->__free_ex( ptr, True )
733End Function
Note: See TracBrowser for help on using the repository browser.