minimize D GC from main thread directly in the widgets calling D in threads

D memory allocated in the threads was never released
This commit is contained in:
Basile Burg 2020-05-06 01:38:01 +02:00
parent fe566e0115
commit 45dbe09cff
5 changed files with 30 additions and 2 deletions

View File

@ -9,6 +9,25 @@ import
import import
iz.memory; iz.memory;
extern(C) void setRtOptions()
{
import core.gc.config : config;
config.gc = "precise";
}
extern(C) void minimizeGcHeap()
{
import core.memory : GC;
__gshared ubyte c;
if (c++ > 96)
{
GC.collect();
GC.minimize();
c = 0;
}
}
enum ErrorType: ubyte enum ErrorType: ubyte
{ {
warning, warning,

View File

@ -11,14 +11,14 @@ import
extern(C) const(char)* todoItems(const(char)* joinedFiles) extern(C) const(char)* todoItems(const(char)* joinedFiles)
{ {
scope Appender!string stream; scope Appender!string stream;
scope LexerConfig config = LexerConfig("", StringBehavior.source);
scope StringCache cache = StringCache(4096);
stream.reserve(32); stream.reserve(32);
stream.put("object TTodoItems\ritems=<"); stream.put("object TTodoItems\ritems=<");
foreach (fname; joinedFilesToFiles(joinedFiles)) foreach (fname; joinedFilesToFiles(joinedFiles))
{ {
stream.reserve(256); stream.reserve(256);
scope LexerConfig config = LexerConfig("", StringBehavior.source);
scope source = cast(ubyte[]) std.file.read(fname); scope source = cast(ubyte[]) std.file.read(fname);
scope StringCache cache = StringCache(optimalBucketCount(source.length));
DLexer(source, config, &cache) DLexer(source, config, &cache)
.filter!(a => a.type == tok!"comment") .filter!(a => a.type == tok!"comment")
.each!(t => analyze(t, fname, stream)); .each!(t => analyze(t, fname, stream));

View File

@ -49,6 +49,12 @@ const
{$ENDIF} {$ENDIF}
// Used to release memroy allocated in external D functions that are called in a thread.
// because managing the GC only work from the main thread.
// memory is released every 96 calls.
procedure minimizeGcHeap(); cdecl; external libdexedd_name;
// Select the precise GC
procedure setRtOptions(); cdecl; external libdexedd_name;
// Necessary to start the GC, run the static constructors, etc // Necessary to start the GC, run the static constructors, etc
procedure rt_init(); cdecl; external libdexedd_name; procedure rt_init(); cdecl; external libdexedd_name;
// Cleanup // Cleanup
@ -125,6 +131,7 @@ begin
end; end;
initialization initialization
setRtOptions();
rt_init(); rt_init();
finalization finalization
rt_term(); rt_term();

View File

@ -874,6 +874,7 @@ begin
tree.EndUpdate; tree.EndUpdate;
if f.isNotEmpty then if f.isNotEmpty then
TreeFilterEdit1.Text := f; TreeFilterEdit1.Text := f;
minimizeGcHeap();
end; end;
procedure TSymbolListWidget.smartExpand; procedure TSymbolListWidget.smartExpand;

View File

@ -489,6 +489,7 @@ begin
fillTodoList; fillTodoList;
finally finally
txt.free; txt.free;
minimizeGcHeap();
end; end;
end; end;