Thread overview
avoid codegen pass
Oct 02, 2021
Padlev
Oct 02, 2021
Adam D Ruppe
Oct 02, 2021
Padlev
Oct 02, 2021
max haughton
Oct 02, 2021
Dennis
Oct 02, 2021
max haughton
Oct 02, 2021
russhy
October 02, 2021

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?

October 02, 2021
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....
October 02, 2021
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
October 02, 2021

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?

October 02, 2021

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:

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.

October 02, 2021

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:

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

October 02, 2021

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:

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