1 | /*
|
---|
2 | このファイルでは、ABのガベージコレクションの実装を行います。
|
---|
3 | */
|
---|
4 |
|
---|
5 |
|
---|
6 | /*
|
---|
7 | ※これらの変数はコンパイラが自動的に定義します。
|
---|
8 | Dim _System_gc_GlobalRoot_StartPtr As VoidPtr
|
---|
9 | Dim _System_gc_GlobalRoot_Size As Long
|
---|
10 | Dim _System_gc_StackRoot_StartPtr As VoidPtr
|
---|
11 | */
|
---|
12 |
|
---|
13 | Function _System_GetSp() As LONG_PTR 'dummy
|
---|
14 | End Function
|
---|
15 |
|
---|
16 |
|
---|
17 | Const _System_GC_FLAG_ATOMIC = 1
|
---|
18 | Const _System_GC_FLAG_NEEDFREE = 2
|
---|
19 | Const _System_GC_FLAG_INITZERO = 4
|
---|
20 | Const _System_GC_FLAG_OBJECT = 8
|
---|
21 |
|
---|
22 | Class _System_CGarbageCollection
|
---|
23 | ppPtr As *VoidPtr
|
---|
24 | pSize As *SIZE_T
|
---|
25 | pdwFlags As *DWord
|
---|
26 | n As Long
|
---|
27 |
|
---|
28 | iAllSize As SIZE_T
|
---|
29 |
|
---|
30 | isSweeping As Boolean
|
---|
31 |
|
---|
32 | CriticalSection As CRITICAL_SECTION
|
---|
33 |
|
---|
34 | 'メモリの上限値(この値を超えるとGCが発動します)
|
---|
35 | '※バイト単位
|
---|
36 | limitMemorySize As LONG_PTR
|
---|
37 |
|
---|
38 | isFinish As Boolean
|
---|
39 |
|
---|
40 | Public
|
---|
41 |
|
---|
42 | ' 特殊クラスのため、コンストラクタ・デストラクタは呼ばれません
|
---|
43 | Sub _System_CGarbageCollection()
|
---|
44 | End Sub
|
---|
45 | Sub ~_System_CGarbageCollection()
|
---|
46 | End Sub
|
---|
47 |
|
---|
48 | Sub Begin()
|
---|
49 | If ppPtr Then Exit Sub
|
---|
50 |
|
---|
51 | isFinish = False
|
---|
52 |
|
---|
53 | 'メモリの上限値(この値を超えるとGCが発動します)
|
---|
54 | '※バイト単位
|
---|
55 | limitMemorySize = 1024*1024 As LONG_PTR
|
---|
56 |
|
---|
57 | ppPtr=_System_calloc( 1 )
|
---|
58 | pSize=_System_calloc( 1 )
|
---|
59 | pdwFlags=_System_calloc( 1 )
|
---|
60 | n=0
|
---|
61 |
|
---|
62 | iAllSize=0
|
---|
63 |
|
---|
64 | ' スウィープ中かどうか
|
---|
65 | isSweeping = False
|
---|
66 |
|
---|
67 | 'クリティカルセッションを生成
|
---|
68 | InitializeCriticalSection(CriticalSection)
|
---|
69 |
|
---|
70 |
|
---|
71 | '---------------------------
|
---|
72 | ' 開始時のスレッドを通知
|
---|
73 | '---------------------------
|
---|
74 | Dim hTargetThread As HANDLE
|
---|
75 | DuplicateHandle(GetCurrentProcess(),
|
---|
76 | GetCurrentThread(),
|
---|
77 | GetCurrentProcess(),
|
---|
78 | hTargetThread, 0, FALSE, DUPLICATE_SAME_ACCESS) 'カレントスレッドのハンドルを複製
|
---|
79 |
|
---|
80 | ' スレッド管理用オブジェクトを生成
|
---|
81 | _System_pobj_AllThreads = New _System_CThreadCollection()
|
---|
82 |
|
---|
83 | ' 自身のThreadオブジェクトを生成
|
---|
84 | Dim thread As Thread(hTargetThread,GetCurrentThreadId(),0)
|
---|
85 |
|
---|
86 | _System_pobj_AllThreads->BeginThread(VarPtr( thread ),_System_gc_StackRoot_StartPtr As *LONG_PTR)
|
---|
87 |
|
---|
88 | End Sub
|
---|
89 | Sub Finish()
|
---|
90 | If ppPtr=0 Then Exit Sub
|
---|
91 |
|
---|
92 | isFinish = True
|
---|
93 |
|
---|
94 | ' スレッド管理用オブジェクトを破棄
|
---|
95 | Delete _System_pobj_AllThreads
|
---|
96 |
|
---|
97 | ' 自分以外のスレッドを一時停止
|
---|
98 | '_System_pobj_AllThreads->SuspendAnotherThread()
|
---|
99 |
|
---|
100 | OutputDebugString( Ex"garbage colletion sweeping all memory objects!\r\n" )
|
---|
101 | DeleteAllGarbageMemories()
|
---|
102 |
|
---|
103 | ' 未解放のメモリオブジェクトをトレース
|
---|
104 | DumpMemoryLeaks()
|
---|
105 |
|
---|
106 | ' 自分以外のスレッドを再開
|
---|
107 | '_System_pobj_AllThreads->ResumeAnotherThread()
|
---|
108 |
|
---|
109 | HeapFree(_System_hProcessHeap,0,ppPtr)
|
---|
110 | ppPtr=0
|
---|
111 |
|
---|
112 | HeapFree(_System_hProcessHeap,0,pSize)
|
---|
113 | pSize=0
|
---|
114 | HeapFree(_System_hProcessHeap,0,pdwFlags)
|
---|
115 | pdwFlags=0
|
---|
116 |
|
---|
117 | 'クリティカルセッションを破棄
|
---|
118 | DeleteCriticalSection(CriticalSection)
|
---|
119 |
|
---|
120 | End Sub
|
---|
121 |
|
---|
122 | Sub add(new_ptr As VoidPtr, size As SIZE_T, flags As DWord)
|
---|
123 | iAllSize+=size
|
---|
124 |
|
---|
125 | EnterCriticalSection(CriticalSection)
|
---|
126 | ppPtr=HeapReAlloc(_System_hProcessHeap,0,ppPtr,(n+1)*SizeOf(VoidPtr))
|
---|
127 | ppPtr[n]=new_ptr
|
---|
128 |
|
---|
129 | pSize=HeapReAlloc(_System_hProcessHeap,0,pSize,(n+1)*SizeOf(SIZE_T))
|
---|
130 | pSize[n]=size
|
---|
131 |
|
---|
132 | pdwFlags=HeapReAlloc(_System_hProcessHeap,0,pdwFlags,(n+1)*SizeOf(DWord))
|
---|
133 | pdwFlags[n]=flags
|
---|
134 | LeaveCriticalSection(CriticalSection)
|
---|
135 |
|
---|
136 | n++
|
---|
137 | End Sub
|
---|
138 |
|
---|
139 |
|
---|
140 | Function __malloc(size As SIZE_T,flags As Byte) As VoidPtr
|
---|
141 | EnterCriticalSection(CriticalSection)
|
---|
142 | Dim dwFlags As DWord
|
---|
143 | If flags and _System_GC_FLAG_INITZERO Then
|
---|
144 | dwFlags=HEAP_ZERO_MEMORY
|
---|
145 | Else
|
---|
146 | dwFlags=0
|
---|
147 | End If
|
---|
148 |
|
---|
149 | Dim ptr = HeapAlloc(_System_hProcessHeap,dwFlags,size)
|
---|
150 | add( ptr, size, flags )
|
---|
151 | LeaveCriticalSection(CriticalSection)
|
---|
152 |
|
---|
153 | Return ptr
|
---|
154 | End Function
|
---|
155 |
|
---|
156 | Function __realloc(lpMem As VoidPtr, size As SIZE_T) As VoidPtr
|
---|
157 | EnterCriticalSection(CriticalSection)
|
---|
158 | Dim i As Long
|
---|
159 | For i=0 To ELM(n)
|
---|
160 | If ppPtr[i]=lpMem Then
|
---|
161 | iAllSize+=size-pSize[i]
|
---|
162 |
|
---|
163 | pSize[i]=size
|
---|
164 | ppPtr[i]=HeapReAlloc(_System_hProcessHeap,HEAP_ZERO_MEMORY,lpMem,size)
|
---|
165 |
|
---|
166 | LeaveCriticalSection(CriticalSection)
|
---|
167 | Return ppPtr[i]
|
---|
168 | End If
|
---|
169 | Next
|
---|
170 | LeaveCriticalSection(CriticalSection)
|
---|
171 | Return 0
|
---|
172 | End Function
|
---|
173 |
|
---|
174 | Sub __free_ex(lpMem As VoidPtr, isSweeping As Boolean)
|
---|
175 | EnterCriticalSection(CriticalSection)
|
---|
176 | Dim i As Long
|
---|
177 | For i=0 To ELM(n)
|
---|
178 | If ppPtr[i]=lpMem Then
|
---|
179 | If (pdwFlags[i] and _System_GC_FLAG_NEEDFREE)<>0 or isSweeping Then
|
---|
180 | iAllSize-=pSize[i]
|
---|
181 |
|
---|
182 | HeapFree(_System_hProcessHeap,0,ppPtr[i])
|
---|
183 | ppPtr[i]=0
|
---|
184 | pSize[i]=0
|
---|
185 | Else
|
---|
186 | If isFinish = False Then
|
---|
187 | OutputDebugString( Ex"heap free missing!\r\n" )
|
---|
188 | End If
|
---|
189 | End If
|
---|
190 | End If
|
---|
191 | Next
|
---|
192 | LeaveCriticalSection(CriticalSection)
|
---|
193 | End Sub
|
---|
194 |
|
---|
195 | Sub __free(lpMem As VoidPtr)
|
---|
196 | __free_ex( lpMem, False )
|
---|
197 | End Sub
|
---|
198 |
|
---|
199 | Sub sweep()
|
---|
200 | If iAllSize<limitMemorySize Then
|
---|
201 | 'メモリ使用量が上限値を超えていないとき
|
---|
202 | Exit Sub
|
---|
203 | End If
|
---|
204 |
|
---|
205 | OutputDebugString( Ex"garbage colletion sweep start!\r\n" )
|
---|
206 |
|
---|
207 | Dim hThread As HANDLE
|
---|
208 | Dim ThreadId As DWord
|
---|
209 | hThread=_beginthreadex(NULL,0,AddressOf(SweepOnOtherThread),VarPtr(This),0,ThreadId)
|
---|
210 | WaitForSingleObject(hThread,INFINITE)
|
---|
211 | CloseHandle(hThread)
|
---|
212 | End Sub
|
---|
213 |
|
---|
214 | Private
|
---|
215 |
|
---|
216 | ' 生存検知
|
---|
217 | Function HitTest(pSample As VoidPtr) As Long
|
---|
218 | Dim i As Long
|
---|
219 | For i=0 To ELM(n)
|
---|
220 | If (ppPtr[i] As LONG_PTR)<=(pSample As LONG_PTR) and (pSample As LONG_PTR)<((ppPtr[i] As LONG_PTR)+pSize[i]) Then
|
---|
221 | Return i
|
---|
222 | End If
|
---|
223 | Next
|
---|
224 | Return -1
|
---|
225 | End Function
|
---|
226 |
|
---|
227 | ' 指定領域のスキャン
|
---|
228 | Sub Scan(pStartPtr As *LONG_PTR, size As LONG_PTR, pbMark As *Byte)
|
---|
229 | Dim i As Long, count As Long, index As Long
|
---|
230 | count=(size\SizeOf(LONG_PTR)) As Long
|
---|
231 | For i=0 To ELM(count)
|
---|
232 | index=HitTest(pStartPtr[i] As VoidPtr)
|
---|
233 | If index<>-1 Then
|
---|
234 | If pbMark[index]=0 Then
|
---|
235 | pbMark[index]=1
|
---|
236 |
|
---|
237 | If (pdwFlags[index] and _System_GC_FLAG_ATOMIC)=0 Then
|
---|
238 | 'ヒープ領域がポインタ値を含む可能性があるとき
|
---|
239 | If ppPtr[index] = 0 Then
|
---|
240 | 'エラー
|
---|
241 |
|
---|
242 | End If
|
---|
243 | Scan(ppPtr[index] As *LONG_PTR,pSize[index],pbMark)
|
---|
244 | End If
|
---|
245 | End If
|
---|
246 | End If
|
---|
247 | Next
|
---|
248 | End Sub
|
---|
249 |
|
---|
250 | ' ローカル領域をルートに指定してスキャン
|
---|
251 | Sub LocalScan( pbMark As *Byte )
|
---|
252 | Dim Context As CONTEXT
|
---|
253 | Dim NowSp As *LONG_PTR
|
---|
254 | Dim size As LONG_PTR
|
---|
255 | Dim i As Long
|
---|
256 | For i=0 To ELM(_System_pobj_AllThreads->ThreadNum)
|
---|
257 | If _System_pobj_AllThreads->ppobj_Thread[i] Then
|
---|
258 | FillMemory(VarPtr(Context),SizeOf(CONTEXT),0)
|
---|
259 | Context.ContextFlags=CONTEXT_CONTROL
|
---|
260 | If _System_pobj_AllThreads->ppobj_Thread[i]->__GetContext(Context)=0 Then
|
---|
261 | OutputDebugString(Ex"レジスタ情報の取得に失敗しました。\r\n")
|
---|
262 | End If
|
---|
263 |
|
---|
264 | #ifdef _WIN64
|
---|
265 | NowSp=Context.Rsp As *LONG_PTR
|
---|
266 | #else
|
---|
267 | NowSp=Context.Esp As *LONG_PTR
|
---|
268 | #endif
|
---|
269 |
|
---|
270 | size=(_System_pobj_AllThreads->pStackBase[i] As LONG_PTR)-(NowSp As LONG_PTR)
|
---|
271 |
|
---|
272 | If NowSp = 0 Then
|
---|
273 | debug
|
---|
274 | Exit Sub
|
---|
275 | End If
|
---|
276 |
|
---|
277 | Scan( NowSp, size, pbMark )
|
---|
278 | End If
|
---|
279 | Next
|
---|
280 | End Sub
|
---|
281 |
|
---|
282 | Sub DeleteGarbageMemories( pbMark As *Byte )
|
---|
283 |
|
---|
284 | Dim isAllDelete = False
|
---|
285 | If pbMark = NULL Then
|
---|
286 | ' すべてを破棄するとき
|
---|
287 | isAllDelete = True
|
---|
288 | pbMark = _System_calloc( n )
|
---|
289 | End If
|
---|
290 |
|
---|
291 | Dim i As Long
|
---|
292 | For i=0 To ELM(n)
|
---|
293 | If pbMark[i]=0 and ppPtr[i]<>0 and (pdwFlags[i] and _System_GC_FLAG_NEEDFREE)=0 Then
|
---|
294 | If ppPtr[i] = 0 Then
|
---|
295 | If isAllDelete Then
|
---|
296 | Continue
|
---|
297 | Else
|
---|
298 | debug
|
---|
299 | End If
|
---|
300 | End If
|
---|
301 |
|
---|
302 | Dim ptr = ppPtr[i]
|
---|
303 | Dim size = pSize[i]
|
---|
304 |
|
---|
305 | ppPtr[i]=0
|
---|
306 | pSize[i]=0
|
---|
307 |
|
---|
308 | If (pdwFlags[i] and _System_GC_FLAG_OBJECT) <> 0 Then
|
---|
309 | /* ・オブジェクトの個数
|
---|
310 | ・オブジェクトのサイズ
|
---|
311 | ・デストラクタの関数ポインタ
|
---|
312 | を考慮 */
|
---|
313 | _System_SweepingDelete (ptr + SizeOf( LONG_PTR ) * 3 )
|
---|
314 | Else
|
---|
315 | iAllSize-=size
|
---|
316 | HeapFree(_System_hProcessHeap,0,ptr)
|
---|
317 | End If
|
---|
318 | End If
|
---|
319 | Next
|
---|
320 |
|
---|
321 | If isAllDelete Then
|
---|
322 | _System_free( pbMark )
|
---|
323 | End If
|
---|
324 |
|
---|
325 | End Sub
|
---|
326 |
|
---|
327 | Sub DeleteAllGarbageMemories()
|
---|
328 | DeleteGarbageMemories( NULL )
|
---|
329 | End Sub
|
---|
330 |
|
---|
331 | Sub Compaction()
|
---|
332 | Dim i As Long, i2 = 0 As Long
|
---|
333 | For i=0 To ELM(n)
|
---|
334 | ppPtr[i2] = ppPtr[i]
|
---|
335 | pSize[i2] = pSize[i]
|
---|
336 | pdwFlags[i2] = pdwFlags[i]
|
---|
337 |
|
---|
338 | If ppPtr[i] Then
|
---|
339 | i2++
|
---|
340 | End If
|
---|
341 | Next
|
---|
342 | n = i2
|
---|
343 | End Sub
|
---|
344 |
|
---|
345 | ' スウィープ(新規スレッドで呼び出し)
|
---|
346 | Function Cdecl SweepOnOtherThread() As Long
|
---|
347 | EnterCriticalSection(CriticalSection)
|
---|
348 |
|
---|
349 | ' すべてのスレッドを一時停止
|
---|
350 | _System_pobj_AllThreads->SuspendAllThread()
|
---|
351 |
|
---|
352 | ' マークリストを生成
|
---|
353 | Dim pbMark = HeapAlloc(_System_hProcessHeap,HEAP_ZERO_MEMORY,n*SizeOf(Byte)) As *Byte
|
---|
354 |
|
---|
355 | ' グローバル領域をルートに指定してスキャン
|
---|
356 | Scan( _System_gc_GlobalRoot_StartPtr, _System_gc_GlobalRoot_Size, pbMark )
|
---|
357 |
|
---|
358 | ' ローカル領域をルートに指定してスキャン
|
---|
359 | LocalScan( pbMark )
|
---|
360 |
|
---|
361 | ' スウィープ前のメモリサイズを退避
|
---|
362 | Dim iBackAllSize = iAllSize
|
---|
363 |
|
---|
364 | ' スウィープ前のメモリオブジェクトの数
|
---|
365 | Dim iBeforeN = n
|
---|
366 |
|
---|
367 | '使われていないメモリを解放する
|
---|
368 | DeleteGarbageMemories(pbMark)
|
---|
369 |
|
---|
370 | 'コンパクション
|
---|
371 | Compaction()
|
---|
372 |
|
---|
373 | 'マークリストを解放
|
---|
374 | HeapFree(_System_hProcessHeap,0,pbMark)
|
---|
375 |
|
---|
376 | If iBackAllSize=iAllSize Then
|
---|
377 | If iAllSize > limitMemorySize Then
|
---|
378 | limitMemorySize = iAllSize
|
---|
379 | End If
|
---|
380 |
|
---|
381 | '許容量を拡張する
|
---|
382 | limitMemorySize *= 2
|
---|
383 |
|
---|
384 | OutputDebugString( Ex"memory size is extended for gc!\r\n" )
|
---|
385 | End If
|
---|
386 |
|
---|
387 | Dim temp[100] As Char
|
---|
388 | wsprintf(temp,Ex"object items ... %d -> %d ( %dMB -> %dMB )\r\n",iBeforeN,n, iBackAllSize\1024\1024, iAllSize\1024\1024)
|
---|
389 | OutputDebugString( temp )
|
---|
390 | wsprintf(temp,Ex"limit size of memory ... %d\r\n",limitMemorySize)
|
---|
391 | OutputDebugString( temp )
|
---|
392 | OutputDebugString( Ex"garbage colletion sweep finish!\r\n" )
|
---|
393 |
|
---|
394 |
|
---|
395 | '-------------------------------------
|
---|
396 | ' すべてのスレッドを再開
|
---|
397 | '-------------------------------------
|
---|
398 | _System_pobj_AllThreads->ResumeAllThread()
|
---|
399 |
|
---|
400 | LeaveCriticalSection(CriticalSection)
|
---|
401 | End Function
|
---|
402 |
|
---|
403 | ' 未解放のメモリオブジェクトをトレース
|
---|
404 | Sub DumpMemoryLeaks()
|
---|
405 | Dim isLeak = False
|
---|
406 | Dim i As Long
|
---|
407 | For i=0 To ELM(n)
|
---|
408 | If ppPtr[i] Then
|
---|
409 | If (pdwFlags[i] and _System_GC_FLAG_NEEDFREE)<>0 Then
|
---|
410 | If isLeak = False Then
|
---|
411 | OutputDebugString( Ex"Detected memory leaks!\r\n" )
|
---|
412 | isLeak = True
|
---|
413 | End If
|
---|
414 |
|
---|
415 | Dim temp[100] As Char
|
---|
416 | OutputDebugString( Ex"heap free missing!\r\n" )
|
---|
417 | wsprintf(temp,Ex"{%d} normal block at &H%08X, %d bytes long.\r\n", i, ppPtr[i], pSize[i])
|
---|
418 | OutputDebugString( temp )
|
---|
419 | End If
|
---|
420 | End If
|
---|
421 | Next
|
---|
422 |
|
---|
423 | If isLeak Then
|
---|
424 | OutputDebugString( Ex"Object dump complete.\r\n" )
|
---|
425 | End If
|
---|
426 |
|
---|
427 | End Sub
|
---|
428 |
|
---|
429 | End Class
|
---|
430 |
|
---|
431 | 'GC管理用の特殊なシステムオブジェクト(デストラクタは最終のタイミングで呼び出されます)
|
---|
432 | Dim _System_pGC As *_System_CGarbageCollection
|
---|
433 |
|
---|
434 |
|
---|
435 |
|
---|
436 | Function GC_malloc(size As Long) As VoidPtr
|
---|
437 | ' sweep
|
---|
438 | _System_pGC->sweep()
|
---|
439 |
|
---|
440 | 'allocate
|
---|
441 | Return _System_pGC->__malloc(size,0)
|
---|
442 | End Function
|
---|
443 |
|
---|
444 | Function GC_malloc_atomic(size As Long) As VoidPtr
|
---|
445 | ' sweep
|
---|
446 | _System_pGC->sweep()
|
---|
447 |
|
---|
448 | 'allocate
|
---|
449 | Return _System_pGC->__malloc(size,_System_GC_FLAG_ATOMIC)
|
---|
450 | End Function
|
---|
451 |
|
---|
452 | Function _System_GC_malloc_ForObject(size As Long) As VoidPtr
|
---|
453 | ' sweep
|
---|
454 | _System_pGC->sweep()
|
---|
455 |
|
---|
456 | 'allocate
|
---|
457 | Return _System_pGC->__malloc(size,_System_GC_FLAG_OBJECT or _System_GC_FLAG_INITZERO)
|
---|
458 | End Function
|
---|
459 |
|
---|
460 | Function _System_GC_malloc_ForObjectPtr(size As Long) As VoidPtr
|
---|
461 | ' sweep
|
---|
462 | _System_pGC->sweep()
|
---|
463 |
|
---|
464 | 'allocate
|
---|
465 | Return _System_pGC->__malloc(size,_System_GC_FLAG_OBJECT or _System_GC_FLAG_INITZERO or _System_GC_FLAG_NEEDFREE)
|
---|
466 | End Function
|
---|
467 |
|
---|
468 | Function _System_GC_free_for_SweepingDelete( ptr As *Object )
|
---|
469 | ' free
|
---|
470 | _System_pGC->__free_ex( ptr, True )
|
---|
471 | End Function
|
---|