more tweaks to minimize D heap size

This commit is contained in:
Basile Burg 2020-05-12 23:22:59 +02:00
parent b03c1445fc
commit 72209bb5d4
6 changed files with 38 additions and 21 deletions

View File

@ -20,7 +20,7 @@ extern(C) void minimizeGcHeap()
{ {
import core.memory : GC; import core.memory : GC;
__gshared ubyte c; __gshared ubyte c;
if (c++ > 32) if (c++ > 31)
{ {
GC.collect(); GC.collect();
GC.minimize(); GC.minimize();

View File

@ -67,7 +67,12 @@ extern(C) string[] listFilesImports(const(char)* joinedFiles)
LexerConfig config = LexerConfig("", StringBehavior.source); LexerConfig config = LexerConfig("", StringBehavior.source);
ImportLister il = construct!(ImportLister)(&result); ImportLister il = construct!(ImportLister)(&result);
scope(exit) destruct(il); scope(exit)
{
destruct(il);
destroy(sCache);
destroy(rba);
}
foreach(fname; joinedFilesToFiles(joinedFiles)) foreach(fname; joinedFilesToFiles(joinedFiles))
{ {
@ -85,11 +90,14 @@ extern(C) string[] listFilesImports(const(char)* joinedFiles)
return result; return result;
} }
static assert(!MustAddGcRange!ImportLister);
@TellRangeAdded
private final class ImportLister: ASTVisitor private final class ImportLister: ASTVisitor
{ {
alias visit = ASTVisitor.visit; alias visit = ASTVisitor.visit;
size_t mixinDepth; size_t mixinDepth;
string[]* results; @NoGc string[]* results;
this(string[]* results) this(string[]* results)
{ {

View File

@ -19,21 +19,26 @@ import
*/ */
extern(C) bool hasMainFun(const(char)* src) extern(C) bool hasMainFun(const(char)* src)
{ {
LexerConfig config; scope LexerConfig config;
RollbackAllocator rba; scope RollbackAllocator rba;
StringCache sCache = StringCache(StringCache.defaultBucketCount); scope StringCache sCache = StringCache(StringCache.defaultBucketCount);
scope mod = src[0 .. src.strlen] scope mod = src[0 .. src.strlen]
.getTokensForParser(config, &sCache) .getTokensForParser(config, &sCache)
.parseModule("", &rba, &ignoreErrors); .parseModule("", &rba, &ignoreErrors);
MainFunctionDetector mfd = construct!(MainFunctionDetector); MainFunctionDetector mfd = construct!(MainFunctionDetector);
scope (exit) destruct(mfd);
mfd.visit(mod); mfd.visit(mod);
return mfd.hasMain; const bool result = mfd.hasMain;
destruct(mfd);
destroy(sCache);
destroy(rba);
return result;
} }
static assert(!MustAddGcRange!MainFunctionDetector);
@TellRangeAdded
private final class MainFunctionDetector: ASTVisitor private final class MainFunctionDetector: ASTVisitor
{ {
alias visit = ASTVisitor.visit; alias visit = ASTVisitor.visit;
@ -58,10 +63,11 @@ private final class MainFunctionDetector: ASTVisitor
hasMain = true; hasMain = true;
} }
override void visit(const(Unittest)){} override void visit(const(Unittest)) {}
override void visit(const(ClassDeclaration)){} override void visit(const(ClassDeclaration)) {}
override void visit(const(StructDeclaration)){} override void visit(const(StructDeclaration)) {}
override void visit(const(InterfaceDeclaration)){} override void visit(const(InterfaceDeclaration)){}
override void visit(const(FunctionBody)){} override void visit(const(UnionDeclaration)) {}
override void visit(const(FunctionBody)) {}
} }

View File

@ -25,6 +25,7 @@ begin
// note, assign to result has for effect to alloc a FPC string // note, assign to result has for effect to alloc a FPC string
// (by implicit convertion) so the D memory is not used. // (by implicit convertion) so the D memory is not used.
result := ddemangle(s); result := ddemangle(s);
minimizeGcHeap();
end end
else else
result := value; result := value;

View File

@ -48,17 +48,17 @@ const
libdexedd_name = 'dexed-d'; libdexedd_name = 'dexed-d';
{$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
procedure rt_term(); cdecl; external libdexedd_name; procedure rt_term(); cdecl; external libdexedd_name;
// Used to release memroy allocated in external D functions that are called in a thread,
// because managing the GC only works from the main thread.
// Memory is released every 32 calls.
// This function must be called from the main thread.
procedure minimizeGcHeap(); cdecl; external libdexedd_name;
// noop
procedure setRtOptions(); cdecl; external libdexedd_name;
// Demangle a line possibly containing a D mangled name. // Demangle a line possibly containing a D mangled name.
function ddemangle(const text: PChar): PChar; cdecl; external libdexedd_name; function ddemangle(const text: PChar): PChar; cdecl; external libdexedd_name;
// Detects wether the source code for the module `src` contains the main() function. // Detects wether the source code for the module `src` contains the main() function.
@ -97,7 +97,6 @@ begin
result := (fPtr + index)^; result := (fPtr + index)^;
end; end;
procedure getModuleImports(source, imports: TStrings); procedure getModuleImports(source, imports: TStrings);
var var
i: TDStrings; i: TDStrings;
@ -112,6 +111,7 @@ begin
s := e.ptr[0 .. e.length-1]; s := e.ptr[0 .. e.length-1];
imports.Add(s); imports.Add(s);
end; end;
minimizeGcHeap();
end; end;
procedure getModulesImports(files: string; results: TStrings); procedure getModulesImports(files: string; results: TStrings);
@ -128,6 +128,7 @@ begin
s := e.ptr[0 .. e.length-1]; s := e.ptr[0 .. e.length-1];
results.Add(s); results.Add(s);
end; end;
minimizeGcHeap();
end; end;
initialization initialization

View File

@ -2406,6 +2406,7 @@ begin
false:result := mainNo; false:result := mainNo;
true: result := mainYes; true: result := mainYes;
end; end;
minimizeGcHeap();
end; end;
procedure TDexedMemo.autoClosePair(value: TAutoClosedPair); procedure TDexedMemo.autoClosePair(value: TAutoClosedPair);