www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - avoid codegen pass

reply Padlev <pargic gmail.com> writes:
hello,

i run dmd from editor to check syntax of what i am writing, with 
-c -o-.
how to run only semantic and avoid codegen to have a quicker run?
Oct 02 2021
parent reply Adam D Ruppe <destructionator gmail.com> writes:
On Saturday, 2 October 2021 at 13:24:19 UTC, Padlev wrote:
 -o-
 how to run only semantic and avoid codegen to have a quicker 
 run?
-o- does skip codegen already....
Oct 02 2021
parent reply Padlev <pargic gmail.com> writes:
On Saturday, 2 October 2021 at 13:26:27 UTC, Adam D Ruppe wrote:
 On Saturday, 2 October 2021 at 13:24:19 UTC, Padlev wrote:
 -o-
 how to run only semantic and avoid codegen to have a quicker 
 run?
-o- does skip codegen already....
so why this? it seems to take a long time from the last import xxx semantic3 xxx to reach this inline scan grasshopper inlined std.datetime.systime.SysTime._timezone => std.datetime.systime.SysTime.opAssign!().opAssign inlined std.datetime.systime.SysTime._timezone => std.datetime.systime.SysTime.opAssign!().opAssign can not be avoided? i need only till semantic, no care in inline et cetera
Oct 02 2021
parent reply max haughton <maxhaton gmail.com> writes:
On Saturday, 2 October 2021 at 14:44:16 UTC, Padlev wrote:
 On Saturday, 2 October 2021 at 13:26:27 UTC, Adam D Ruppe wrote:
 On Saturday, 2 October 2021 at 13:24:19 UTC, Padlev wrote:
 -o-
 how to run only semantic and avoid codegen to have a quicker 
 run?
-o- does skip codegen already....
so why this? it seems to take a long time from the last import xxx semantic3 xxx to reach this inline scan grasshopper inlined std.datetime.systime.SysTime._timezone => std.datetime.systime.SysTime.opAssign!().opAssign inlined std.datetime.systime.SysTime._timezone => std.datetime.systime.SysTime.opAssign!().opAssign can not be avoided? i need only till semantic, no care in inline et cetera
Do you have optimizations turned on? i.e. are you compiling with -O by accident?
Oct 02 2021
parent reply Dennis <dkorpel gmail.com> writes:
On Saturday, 2 October 2021 at 16:57:48 UTC, max haughton wrote:
 Do you have optimizations turned on? i.e. are you compiling 
 with -O by accident?
Not needed, it's declared: ```D pragma(inline, true) property _timezone() safe const pure nothrow nogc ``` DMD does inlining in the frontend, and without the `-inline` flag it still inlines functions when requested by `pragma(inline, true)`. That's why you see it logged even without codegen or `-inline`. That's not what causes the long compile time though, `dmd -v` logs passes before doing them, not after, so it's the semantic3 before the inline pass that's taking all the time.
Oct 02 2021
parent reply max haughton <maxhaton gmail.com> writes:
On Saturday, 2 October 2021 at 18:05:06 UTC, Dennis wrote:
 On Saturday, 2 October 2021 at 16:57:48 UTC, max haughton wrote:
 Do you have optimizations turned on? i.e. are you compiling 
 with -O by accident?
Not needed, it's declared: ```D pragma(inline, true) property _timezone() safe const pure nothrow nogc ``` DMD does inlining in the frontend, and without the `-inline` flag it still inlines functions when requested by `pragma(inline, true)`. That's why you see it logged even without codegen or `-inline`. That's not what causes the long compile time though, `dmd -v` logs passes before doing them, not after, so it's the semantic3 before the inline pass that's taking all the time.
I was aware (and am not a fan of) inlining in the frontend, but didn't look at the Phobos code. Honestly dmd shouldn't have an optimizer IMO, it's not fit for purpose anymore, if you want optimizations use GDC or LDC. Inlining doesn't even respect the semantics of the language IIRC
Oct 02 2021
parent russhy <russhy gmail.com> writes:
On Saturday, 2 October 2021 at 22:40:32 UTC, max haughton wrote:
 On Saturday, 2 October 2021 at 18:05:06 UTC, Dennis wrote:
 On Saturday, 2 October 2021 at 16:57:48 UTC, max haughton 
 wrote:
 Do you have optimizations turned on? i.e. are you compiling 
 with -O by accident?
Not needed, it's declared: ```D pragma(inline, true) property _timezone() safe const pure nothrow nogc ``` DMD does inlining in the frontend, and without the `-inline` flag it still inlines functions when requested by `pragma(inline, true)`. That's why you see it logged even without codegen or `-inline`. That's not what causes the long compile time though, `dmd -v` logs passes before doing them, not after, so it's the semantic3 before the inline pass that's taking all the time.
I was aware (and am not a fan of) inlining in the frontend, but didn't look at the Phobos code. Honestly dmd shouldn't have an optimizer IMO, it's not fit for purpose anymore, if you want optimizations use GDC or LDC. Inlining doesn't even respect the semantics of the language IIRC
DMD optimization are still valuable, DMD still compile faster than LDC/GDC For games it's even more important you don't want your debug build to run at 5 FPS
Oct 02 2021