D.gnu - Recent changes to GDC.
- Iain Buclaw (29/29) Jan 15 2012 I've done a recent blitz of changes through the GDC codebase,
- Manu (4/31) Jan 16 2012 I had creeping problems building phobos (MinGW) last night stemming from
- Daniel Green (4/7) Jan 16 2012 https://bitbucket.org/goshawk/gdc/changeset/dc87c7212d70
- Iain Buclaw (7/15) Jan 16 2012 Cool. Do you have anything in your MinGW patch queue that might be
- Daniel Green (40/42) Jan 16 2012 Maybe. I'm merging some of the trivial changes now.
- Manu (4/12) Jan 16 2012 I went through that stuff you submitted the patch for, then I also ran i...
- Daniel Green (4/7) Jan 16 2012 The only posix file that gave me trouble was `core/sys/posix/sys/un.d`.
- Manu (4/12) Jan 17 2012 Maybe the fix I made to that file was wrong, and it then carried on into
- Iain Buclaw (6/9) Jan 16 2012 Please raise bug report with build logs, thanks.
- Artur Skawina (42/53) Jan 16 2012 Allowing !=128 bits wide types would be just a matter of removing the fr...
- Kagamin (11/16) Jan 26 2012 The requirement for this kind of compatibility was simply a lie:
- Manu (3/15) Jan 16 2012 No cross module function inlining? Really? This is a very serious
- Iain Buclaw (61/114) Jan 16 2012 are now newly available GCC builtins for vector operations via gcc.buil...
- Trass3r (1/3) Jan 16 2012 So 'gdc -c file1.d' won't inline small functions from file2? Why?
- Artur Skawina (64/149) Jan 16 2012 Does this work for '-c' too? For building libs, like eg phobos?
- Iain Buclaw (97/246) Jan 16 2012 re are now newly available GCC builtins for vector operations via gcc.bu...
- Artur Skawina (21/121) Jan 16 2012 Hmm, i was looking for more incompatibilities, but i guess expecting to
- Iain Buclaw (40/161) Jan 16 2012 here are now newly available GCC builtins for vector operations via gcc....
- Kagamin (3/9) Jan 27 2012 BTW, why does it affect 64-bit code? Doesn't 64-bit already has
I've done a recent blitz of changes through the GDC codebase, some which change the way code is generated in a way which affects the current ABI. * Dropped support for GCC 4.2, 4.3 and 4.4 * Merged in the work Walter has done for __vector type support. There are now newly available GCC builtins for vector operations via gcc.builtins module. * GDC's default calling convention has now been switched back to that of the default for the target platform. The D_InlineAsm family of version identifiers are now turned off by default as we no longer pretend to follow DMD's calling convention. For those who want to turn on D_InlineAsm(_X86/_x86_64) there is a -fd-inline-asm compiler switch. * GDC will emit the GNU_InlineAsm version identifier to tell user code that we support GNU Extended Inline Assembly. * All patches to GCC proper have now been removed, GDC can now build applications without relying on changes to the backend, with the exception of naked functions. * "naked" has now been implemented now as a function attribute of the x86 platform. It is applied to all naked functions, and implies noinline and noclone. * D version 2 is now the default compiler to build. I will get round to putting up a roadmap to GCC-4.8 sometime this week, and I invite everyone interested in making this happen to get together and help progress this. :) Regards -- Iain Buclaw *(p < e ? p++ : p) = (c & 0x0f) + '0';
Jan 15 2012
I had creeping problems building phobos (MinGW) last night stemming from D_InlineAsm being removed. Didn't manage to get it working in the end, gave up and went to bed :) On 16 January 2012 00:34, Iain Buclaw <ibuclaw ubuntu.com> wrote:I've done a recent blitz of changes through the GDC codebase, some which change the way code is generated in a way which affects the current ABI. * Dropped support for GCC 4.2, 4.3 and 4.4 * Merged in the work Walter has done for __vector type support. There are now newly available GCC builtins for vector operations via gcc.builtins module. * GDC's default calling convention has now been switched back to that of the default for the target platform. The D_InlineAsm family of version identifiers are now turned off by default as we no longer pretend to follow DMD's calling convention. For those who want to turn on D_InlineAsm(_X86/_x86_64) there is a -fd-inline-asm compiler switch. * GDC will emit the GNU_InlineAsm version identifier to tell user code that we support GNU Extended Inline Assembly. * All patches to GCC proper have now been removed, GDC can now build applications without relying on changes to the backend, with the exception of naked functions. * "naked" has now been implemented now as a function attribute of the x86 platform. It is applied to all naked functions, and implies noinline and noclone. * D version 2 is now the default compiler to build. I will get round to putting up a roadmap to GCC-4.8 sometime this week, and I invite everyone interested in making this happen to get together and help progress this. :) Regards -- Iain Buclaw *(p < e ? p++ : p) = (c & 0x0f) + '0';
Jan 16 2012
On 1/16/2012 4:03 AM, Manu wrote:I had creeping problems building phobos (MinGW) last night stemming from D_InlineAsm being removed. Didn't manage to get it working in the end, gave up and went to bed :)https://bitbucket.org/goshawk/gdc/changeset/dc87c7212d70 Some of the stack functions needed replacements. I don't recall anything else giving me problems.
Jan 16 2012
On 16 January 2012 16:56, Daniel Green <venix1 gmail.com> wrote:On 1/16/2012 4:03 AM, Manu wrote:ngI had creeping problems building phobos (MinGW) last night stemming from D_InlineAsm being removed. Didn't manage to get it working in the end, gave up and went to bed :)https://bitbucket.org/goshawk/gdc/changeset/dc87c7212d70 Some of the stack functions needed replacements. =A0I don't recall anythi=else giving me problems.Cool. Do you have anything in your MinGW patch queue that might be worth merging in? --=20 Iain Buclaw *(p < e ? p++ : p) =3D (c & 0x0f) + '0';
Jan 16 2012
On 1/16/2012 1:42 PM, Iain Buclaw wrote:Cool. Do you have anything in your MinGW patch queue that might be worth merging in?Maybe. I'm merging some of the trivial changes now. In addition there is TLS support but that requires patches to the runtime, bintutils and GCC. Support for C99 stdio which phobos requires but again that requires a runtime patch. I'm considering not merging them until the patches get accepted. There's also a collection of miscellaneous Win64 fixes. There is also issue 229 which removes dmain.o from libgphobos. Required to support -mwindows and -mdll. In addition there are 2 MinGW64 specific failures remaining with the testsuite. Any chance you can offer some insight into them? --- // ctfe.d import std.stdio; import std.math; import core.bitop; static assert({ int a = 0x80; int f = bsf(a); // Adding this line makes it fail. return true; }()); $ gdc ctfe.d ctfe.d:9: called from here: delegate pure nothrow system bool() { int a = 128; int f = bsf(cast(ulong)a); return true; } () ctfe.d:5: Error: static assert (delegate pure nothrow system bool() { int a = 128; int f = bsf(cast(ulong)a); return true; } ()) is not evaluatable at compile time --- $ gdc runnable/test8.d runnable/test8.d:795: Error: undefined identifier __va_argsave, did you mean alias __va_argsave_t?
Jan 16 2012
On 16 January 2012 18:56, Daniel Green <venix1 gmail.com> wrote:On 1/16/2012 4:03 AM, Manu wrote:I went through that stuff you submitted the patch for, then I also ran into a conflict between linux sockets and windows sockets, and that's as far as I got when I stopped.I had creeping problems building phobos (MinGW) last night stemming from D_InlineAsm being removed. Didn't manage to get it working in the end, gave up and went to bed :)https://bitbucket.org/goshawk/**gdc/changeset/dc87c7212d70<https://bitbucket.org/goshawk/gdc/changeset/dc87c7212d70> Some of the stack functions needed replacements. I don't recall anything else giving me problems.
Jan 16 2012
On 1/16/2012 3:34 PM, Manu wrote:I went through that stuff you submitted the patch for, then I also ran into a conflict between linux sockets and windows sockets, and that's as far as I got when I stopped.The only posix file that gave me trouble was `core/sys/posix/sys/un.d`. GDC turns it into a header file. DMD doesn't for Windows. It's been corrected in tip.
Jan 16 2012
On 17 January 2012 06:27, Daniel Green <venix1 gmail.com> wrote:On 1/16/2012 3:34 PM, Manu wrote:Maybe the fix I made to that file was wrong, and it then carried on into socket.d. Anyway, cheers for fixing it up. See if I can build it again this evening...I went through that stuff you submitted the patch for, then I also ran into a conflict between linux sockets and windows sockets, and that's as far as I got when I stopped.The only posix file that gave me trouble was `core/sys/posix/sys/un.d`. GDC turns it into a header file. DMD doesn't for Windows. It's been corrected in tip.
Jan 17 2012
On 16 January 2012 09:03, Manu <turkeyman gmail.com> wrote:I had creeping problems building phobos (MinGW) last night stemming from=A0D_InlineAsm=A0being removed. Didn't manage to get it working in th=e end,gave up and went to bed :)Please raise bug report with build logs, thanks. --=20 Iain Buclaw *(p < e ? p++ : p) =3D (c & 0x0f) + '0';
Jan 16 2012
On 01/15/12 23:34, Iain Buclaw wrote:* Merged in the work Walter has done for __vector type support. There are now newly available GCC builtins for vector operations via gcc.builtins module.Allowing !=128 bits wide types would be just a matter of removing the frontend restrictions, right? (i didn't look at the latest commits, maybe you already did that) As the vector ops often will need to be wrapped, lack of cross module function inlining is a problem.* GDC's default calling convention has now been switched back to that of the default for the target platform.Hmm. You just invented a new ABI. "extern(D)" will mean different things to different compilers on the same platform. Only makes sense if you're sure to win the ABI war, and the other party to practically disappear. This new ABI still isn't compatible with the default "C/C++" one, because of name mangling. (could it be made, at least partially, C++ compatible?) As you still cannot easily call D code from C, without the equivalent of "extern(D)", why not default to a more sane calling conventions, such as regparm on 32-bit x86? GCC made a mistake years ago to not mangle the names when using a nonstd convention (eg by prepending ' ' like some other compilers did) which resulted in this feature being unusable, other than for application-internal functions, as calling the wrong version will silently build and link, only to blow up at runtime; you also cannot place both versions in a library etc. Hence "fixing" this had to wait for a new architecture (x86_64) and whole program optimizations/LTO, which can figure out automatically when it's safe to switch to a more efficient convention.The D_InlineAsm family of version identifiers are now turned off by default as we no longer pretend to follow DMD's calling convention. For those who want to turn on D_InlineAsm(_X86/_x86_64) there is a -fd-inline-asm compiler switch.Why is it a compiler option? Ie is it safe to turn it on (why optional then?) or will it result in wrong code being generated (why have the option then?). D_InlineAsm allowed things like the cpuid code to work, will every asm{} now need to be rewritten, or could a safe subset of the "D" asms be reused?* GDC will emit the GNU_InlineAsm version identifier to tell user code that we support GNU Extended Inline Assembly.BTW, a identifier, which is set for *both* x86 and x86_64 would be good - because of how D's version() works and the fact that on those platforms the asm code will often be identical.* All patches to GCC proper have now been removed, GDC can now build applications without relying on changes to the backend, with the exception of naked functions. * "naked" has now been implemented now as a function attribute of the x86 platform. It is applied to all naked functions, and implies noinline and noclone.I've never really understood the reason for "naked". Custom prologue and epilogue could be useful sometimes, but turning the compiler into an assembler?... You can already write "naked" asm functions in gcc - with asm()s outside of functions plus some as(1) section push/pop magic, iirc. Now you've removed the D builtin assembler, but decided to introduce "naked". Is it really necessary? There are no back-compat concerns... How does naked work will the various gcc features the modify prologue (profiling, stack usage checking, forced stack aligment etc)?* D version 2 is now the default compiler to build. I will get round to putting up a roadmap to GCC-4.8 sometime this week, and I invite everyone interested in making this happen to get together and help progress this. :)What's the plan wrt druntime and phobos? It would be good if both could stay completely out of gcc, just like libc. Would make contributions significantly easier (no copyright assignment...) and maybe even a common version could emerge. artur
Jan 16 2012
On Monday, 16 January 2012 at 14:42:08 UTC, Artur Skawina wrote:As you still cannot easily call D code from C, without the equivalent of "extern(D)", why not default to a more sane calling conventions, such as regparm on 32-bit x86?The requirement for this kind of compatibility was simply a lie: they were saving their efforts of supporting an extra calling convention in the backend. Projects like gtkD prove there's no issue with compatibility to fix. And removal of inline asm actually lowered compatibility with existing D code itself. As a temporary measure, that's ok (and it manifests bugs in code which is supposed to work without inline asm), but when D is in GCC, one can push D calling convention to the backend for the *same* compatibility reasons "because we already have D" and get inline asm back too. Ahaha, just as planned.
Jan 26 2012
On 16 January 2012 16:41, Artur Skawina <art.08.09 gmail.com> wrote:On 01/15/12 23:34, Iain Buclaw wrote:No cross module function inlining? Really? This is a very serious problem... :/* Merged in the work Walter has done for __vector type support. Thereare now newly available GCC builtins for vector operations via gcc.builtins module. Allowing !=128 bits wide types would be just a matter of removing the frontend restrictions, right? (i didn't look at the latest commits, maybe you already did that) As the vector ops often will need to be wrapped, lack of cross module function inlining is a problem.
Jan 16 2012
On 16 January 2012 14:41, Artur Skawina <art.08.09 gmail.com> wrote:On 01/15/12 23:34, Iain Buclaw wrote:are now newly available GCC builtins for vector operations via gcc.builtin= s module.* Merged in the work Walter has done for __vector type support. =A0There=Allowing !=3D128 bits wide types would be just a matter of removing the f=rontendrestrictions, right? (i didn't look at the latest commits, maybe you alre=ady didthat) As the vector ops often will need to be wrapped, lack of cross module fun=ctioninlining is a problem.If you want cross-module inlining, compile all sources in one command. gdc file1.d file2.d -o myappthe default for the target platform.* GDC's default calling convention has now been switched back to that of=Hmm. You just invented a new ABI. "extern(D)" will mean different things =todifferent compilers on the same platform. Only makes sense if you're sure=towin the ABI war, and the other party to practically disappear.I did not invent an ABI. extern(D) is only defined for the x86 platform - and it is no secret that only DMD adheres to it.This new ABI still isn't compatible with the default "C/C++" one, because=ofname mangling. (could it be made, at least partially, C++ compatible?) As you still cannot easily call D code from C, without the equivalent of "extern(D)", why not default to a more sane calling conventions, such as regparm on 32-bit x86?The default calling convention is cdecl - this is directly ABI compatible with C and C++ code with the exception to name mangling requiring special treatment. eg: extern "C" int _Dmain(struct string args);GCC made a mistake years ago to not mangle the names when using a nonstd convention (eg by prepending ' ' like some other compilers did) which resulted in this feature being unusable, other than for application-inter=nalfunctions, as calling the wrong version will silently build and link, onl=y toblow up at runtime; you also cannot place both versions in a library etc. Hence "fixing" this had to wait for a new architecture (x86_64) and whole program optimizations/LTO, which can figure out automatically when it's s=afeto switch to a more efficient convention.What makes you think changing the calling convention will turn off name mangling?ult as we no longer pretend to follow DMD's calling convention. For those w= ho want to turn on D_InlineAsm(_X86/_x86_64) there is a -fd-inline-asm comp= iler switch.The D_InlineAsm family of version identifiers are now turned off by defa=Why is it a compiler option? Ie is it safe to turn it on (why optional th=en?)or will it result in wrong code being generated (why have the option then=?).D_InlineAsm allowed things like the cpuid code to work, will every asm{} =nowneed to be rewritten, or could a safe subset of the "D" asms be reused?All Inline Asm code in Druntime and Phobos is written with the DMD calling convention in mind, so ie: when one of the naked functions in std.math pops the stack when returning a float, the caller won't clean this in GDC generated code. Other than that, it works perfectly well (tm).hat we support GNU Extended Inline Assembly.* GDC will emit the GNU_InlineAsm version identifier to tell user code t=BTW, a identifier, which is set for *both* x86 and x86_64 would be good -=becauseof how D's version() works and the fact that on those platforms the asm c=ode willoften be identical.lications without relying on changes to the backend, with the exception of = naked functions.* All patches to GCC proper have now been removed, GDC can now build app=6 platform. =A0It is applied to all naked functions, and implies noinline a= nd noclone.* "naked" has now been implemented now as a function attribute of the x8=I've never really understood the reason for "naked". Custom prologue and =epiloguecould be useful sometimes, but turning the compiler into an assembler?...=You canalready write "naked" asm functions in gcc - with asm()s outside of funct=ionsplus some as(1) section push/pop magic, iirc. Now you've removed the D builtin assembler, but decided to introduce "nak=ed".Is it really necessary? There are no back-compat concerns... How does naked work will the various gcc features the modify prologue (pr=ofiling,stack usage checking, forced stack aligment etc)?I have not removed the D builtin assembler. I have just removed D_InlineAsm version identifers. GDC's "naked" function support was originally a (pretty bad) hack in GCC. It is now implemented cleanly as a function attribute, and does not affect the code generation of other frontends.and I invite everyone interested in making this happen to get together and = help progress this. :)* D version 2 is now the default compiler to build. I will get round to putting up a roadmap to GCC-4.8 sometime this week, =What's the plan wrt druntime and phobos? It would be good if both could s=taycompletely out of gcc, just like libc. Would make contributions significa=ntlyeasier (no copyright assignment...) and maybe even a common version could emerge. arturI have no plans to remove libphobos or druntime from the compiler. I will check licensing, but there should be no issues with including it. --=20 Iain Buclaw *(p < e ? p++ : p) =3D (c & 0x0f) + '0';
Jan 16 2012
If you want cross-module inlining, compile all sources in one command. gdc file1.d file2.d -o myappSo 'gdc -c file1.d' won't inline small functions from file2? Why?
Jan 16 2012
On 01/16/12 17:43, Iain Buclaw wrote:On 16 January 2012 14:41, Artur Skawina <art.08.09 gmail.com> wrote:Does this work for '-c' too? For building libs, like eg phobos? Hmm, '-fonly" seems like it could work, together with '-c' -- I have never used that option, will have to try it later - but if it works, shouldn't it be on by default (for '-[cS]' invocations)? It's not that "i want cross-module inlining" - in a language like D it's practically required, for anything bigger than a single module. There are even cases in runtime where "{return 1;}" functions are not inlined (eg the malloc/mmap wrappers). When i did the gcbits asms it was prompted by this profile: 37.62% uint gc.gcx.Gcx.fullcollect(void*) 20.47% uint gc.gcbits.GCBits.test(uint) 13.80% uint gc.gcbits.GCBits.testSet(uint) 10.15% pure nothrow safe bool std.uni.isGraphical(dchar) 3.33% _D3std5array17__T8AppenderTAyaZ8Appender10__T3putTwZ3putMF 2.78% 0x11025a 2.13% _D3std6format65__T13formatElementTS3std5array17__T8Appende 1.64% _D3std6format56__T10formatCharTS3std5array17__T8AppenderTA 1.37% pure safe uint std.utf.encode(ref char[4], dchar) 0.88% void* gc.gcx.GC.malloc(uint, uint, uint*) 0.50% pure nothrow safe bool std.uni.binarySearch2(dchar, immutable(dchar[2][])) 0.45% void gc.gcbits.GCBits.set(uint) 0.37% void gc.gcbits.GCBits.clear(uint) 0.34% __divdi3 Clearly the garbage collector needs some love, but the 33%+ of the total app runtime (!) spent in those two trivial functions makes judging any GC improvements much harder. Even when inlined, the gcbits.* methods are still the hottest parts of the whole app, and while in this case it's the GC that needs fixing, that's not going to always be the case. A hack that can often be used to get cross module inlining working is adding a pair of parentheses - GDC will not throw away the function (well, now template) bodies and will happily inline them. But that's not really a good solution...On 01/15/12 23:34, Iain Buclaw wrote:If you want cross-module inlining, compile all sources in one command. gdc file1.d file2.d -o myapp* Merged in the work Walter has done for __vector type support. There are now newly available GCC builtins for vector operations via gcc.builtins module.Allowing !=128 bits wide types would be just a matter of removing the frontend restrictions, right? (i didn't look at the latest commits, maybe you already did that) As the vector ops often will need to be wrapped, lack of cross module function inlining is a problem.But what GDC emits for "extern(D)" is different both from what other D compilers do (what does LDC do on x86, BTW?) *and* it's different from the C/C++ convention...I did not invent an ABI. extern(D) is only defined for the x86 platform - and it is no secret that only DMD adheres to it.* GDC's default calling convention has now been switched back to that of the default for the target platform.Hmm. You just invented a new ABI. "extern(D)" will mean different things to different compilers on the same platform. Only makes sense if you're sure to win the ABI war, and the other party to practically disappear.That one exception makes a difference - it's still not directly callable from C/C++ w/o some kind of "extern(D)" declaration. (the _Dmain identifier is not the best example, other functions will not have similarly simple names...) And, yes, in theory, it could be done, but do you really expect C/C++ modules to directly use the demangled names?... Things like: pragma(attribute, ifunc("_D5ifunc6pick_fFZPFiZv")) void f(int i); is about the only time i had to do it (and this is actually a bug - ifunc should demangle the name). BTW, is the GDC exception handling compatible with C++?This new ABI still isn't compatible with the default "C/C++" one, because of name mangling. (could it be made, at least partially, C++ compatible?) As you still cannot easily call D code from C, without the equivalent of "extern(D)", why not default to a more sane calling conventions, such as regparm on 32-bit x86?The default calling convention is cdecl - this is directly ABI compatible with C and C++ code with the exception to name mangling requiring special treatment. eg: extern "C" int _Dmain(struct string args);My point is that modifying the ABI has a significant cost and can't easily be undone. I don't see much gain from switching from one nonstd convention to a different nonstd convention, which is /similar/ to the C one, but still not directly accessible from C. What does your change mean? Programs now use a worse calling convention (not even one arg gets passed in a register), object files and libraries generated by different D compilers are incompatible (by design, not just because of some implementation quirk), worse, mixing libs produced by different toolchains may seem to work, only to fail at runtime. Where's the gain?GCC made a mistake years ago to not mangle the names when using a nonstd convention (eg by prepending ' ' like some other compilers did) which resulted in this feature being unusable, other than for application-internal functions, as calling the wrong version will silently build and link, only to blow up at runtime; you also cannot place both versions in a library etc. Hence "fixing" this had to wait for a new architecture (x86_64) and whole program optimizations/LTO, which can figure out automatically when it's safe to switch to a more efficient convention.What makes you think changing the calling convention will turn off name mangling?Ah, ok, thank you for clarifying that. It would then be possible to keep D_InlineAsm working and only fail (or warn) when "naked" is used in "D" asm, right?All Inline Asm code in Druntime and Phobos is written with the DMD calling convention in mind, so ie: when one of the naked functions in std.math pops the stack when returning a float, the caller won't clean this in GDC generated code. Other than that, it works perfectly well (tm).The D_InlineAsm family of version identifiers are now turned off by default as we no longer pretend to follow DMD's calling convention. For those who want to turn on D_InlineAsm(_X86/_x86_64) there is a -fd-inline-asm compiler switch.Why is it a compiler option? Ie is it safe to turn it on (why optional then?) or will it result in wrong code being generated (why have the option then?). D_InlineAsm allowed things like the cpuid code to work, will every asm{} now need to be rewritten, or could a safe subset of the "D" asms be reused?I meant something like "practically removed the availability of D builtin assembler by removing the guarding version identifiers", sorry. But doesn't this mean that, right now, there are exactly zero users of this feature (gcc naked functions)?.. arturI have not removed the D builtin assembler. I have just removed D_InlineAsm version identifers. GDC's "naked" function support was originally a (pretty bad) hack in GCC. It is now implemented cleanly as a function attribute, and does not affect the code generation of other frontends.* GDC will emit the GNU_InlineAsm version identifier to tell user code that we support GNU Extended Inline Assembly.BTW, a identifier, which is set for *both* x86 and x86_64 would be good - because of how D's version() works and the fact that on those platforms the asm code will often be identical.* All patches to GCC proper have now been removed, GDC can now build applications without relying on changes to the backend, with the exception of naked functions. * "naked" has now been implemented now as a function attribute of the x86 platform. It is applied to all naked functions, and implies noinline and noclone.I've never really understood the reason for "naked". Custom prologue and epilogue could be useful sometimes, but turning the compiler into an assembler?... You can already write "naked" asm functions in gcc - with asm()s outside of functions plus some as(1) section push/pop magic, iirc. Now you've removed the D builtin assembler, but decided to introduce "naked". Is it really necessary? There are no back-compat concerns... How does naked work will the various gcc features the modify prologue (profiling, stack usage checking, forced stack aligment etc)?
Jan 16 2012
On 16 January 2012 19:14, Artur Skawina <art.08.09 gmail.com> wrote:On 01/16/12 17:43, Iain Buclaw wrote:re are now newly available GCC builtins for vector operations via gcc.built= ins module.On 16 January 2012 14:41, Artur Skawina <art.08.09 gmail.com> wrote:On 01/15/12 23:34, Iain Buclaw wrote:* Merged in the work Walter has done for __vector type support. =A0The=frontendAllowing !=3D128 bits wide types would be just a matter of removing the=ready didrestrictions, right? (i didn't look at the latest commits, maybe you al=unctionthat) As the vector ops often will need to be wrapped, lack of cross module f=rDoes this work for '-c' too? For building libs, like eg phobos? Hmm, '-fonly" seems like it could work, together with '-c' -- I have neve=inlining is a problem.If you want cross-module inlining, compile all sources in one command. gdc file1.d file2.d -o myappused that option, will have to try it later - but if it works, shouldn't =itbe on by default (for '-[cS]' invocations)?It won't. For inlining to work, the function body (that is available at compile-time in DMDFE AST) needs to be converted into GCC trees for the backend to inline. -fonly, whilst it processes the semantic analysis on the other modules, does not generate any codegen for them. For cross module inlining to properly work in the one-file-at-a-time compilation method, there needs to be an intermediate routine that says 'build this body now, but don't add the function to the global to output list'.It's not that "i want cross-module inlining" - in a language like D it's practically required, for anything bigger than a single module. There are even cases in runtime where "{return 1;}" functions are not inlined (eg t=hemalloc/mmap wrappers). When i did the gcbits asms it was prompted by this profile: 37.62% =A0uint gc.gcx.Gcx.fullcollect(void*) 20.47% =A0uint gc.gcbits.GCBits.test(uint) 13.80% =A0uint gc.gcbits.GCBits.testSet(uint) 10.15% =A0pure nothrow safe bool std.uni.isGraphical(dchar) =A03.33% =A0_D3std5array17__T8AppenderTAyaZ8Appender10__T3putTwZ3putMF =A02.78% =A00x11025a =A02.13% =A0_D3std6format65__T13formatElementTS3std5array17__T8Appende =A01.64% =A0_D3std6format56__T10formatCharTS3std5array17__T8AppenderTA =A01.37% =A0pure safe uint std.utf.encode(ref char[4], dchar) =A00.88% =A0void* gc.gcx.GC.malloc(uint, uint, uint*) =A00.50% =A0pure nothrow safe bool std.uni.binarySearch2(dchar, immutabl=e(dchar[2][]))=A00.45% =A0void gc.gcbits.GCBits.set(uint) =A00.37% =A0void gc.gcbits.GCBits.clear(uint) =A00.34% =A0__divdi3 Clearly the garbage collector needs some love, but the 33%+ of the total app runtime (!) spent in those two trivial functions makes judging any GC improvements much harder. Even when inlined, the gcbits.* methods are still the hottest parts of the whole app, and while in this case it's the GC that needs fixing, that's not going to always be the case. A hack that can often be used to get cross module inlining working is adding a pair of parentheses - GDC will not throw away the function (well, now template) bodies and will happily inline them. But that's not really a good solution...It's not a priority, but you will not be ignored. A solution I'm happy with needs to be drafted first though.of the default for the target platform.* GDC's default calling convention has now been switched back to that =s toHmm. You just invented a new ABI. "extern(D)" will mean different thing=re todifferent compilers on the same platform. Only makes sense if you're su=I think LDC uses some fancy LLVM hook to control how structs are returned, but that's about it.But what GDC emits for "extern(D)" is different both from what other D compilers do (what does LDC do on x86, BTW?) *and* it's different from the C/C++ convention...win the ABI war, and the other party to practically disappear.I did not invent an ABI. =A0extern(D) is only defined for the x86 platform - and it is no secret that only DMD adheres to it.se ofThis new ABI still isn't compatible with the default "C/C++" one, becau=fname mangling. (could it be made, at least partially, C++ compatible?) As you still cannot easily call D code from C, without the equivalent o=s"extern(D)", why not default to a more sane calling conventions, such a=It's practically rewrite of the C++ exception routine in D. But don't quote me on it being directly compatible.That one exception makes a difference - it's still not directly callable from C/C++ w/o some kind of "extern(D)" declaration. (the _Dmain identifier is not the best example, other functions will not have similarly simple names...) And, yes, in theory, it could be done, but do you really expect C/C++ modules to directly use the demangled names?... Things like: pragma(attribute, ifunc("_D5ifunc6pick_fFZPFiZv")) void f(int i); is about the only time i had to do it (and this is actually a bug - ifunc should demangle the name). BTW, is the GDC exception handling compatible with C++?regparm on 32-bit x86?The default calling convention is cdecl - this is directly ABI compatible with C and C++ code with the exception to name mangling requiring special treatment. eg: extern "C" int _Dmain(struct string args);dGCC made a mistake years ago to not mangle the names when using a nonst=ernalconvention (eg by prepending ' ' like some other compilers did) which resulted in this feature being unusable, other than for application-int=nly tofunctions, as calling the wrong version will silently build and link, o=c.blow up at runtime; you also cannot place both versions in a library et=leHence "fixing" this had to wait for a new architecture (x86_64) and who=safeprogram optimizations/LTO, which can figure out automatically when it's=yMy point is that modifying the ABI has a significant cost and can't easil=to switch to a more efficient convention.What makes you think changing the calling convention will turn off name mangling?be undone. I don't see much gain from switching from one nonstd conventio=nto a different nonstd convention, which is /similar/ to the C one, but st=illnot directly accessible from C. What does your change mean? Programs now use a worse calling convention (=noteven one arg gets passed in a register), object files and libraries gener=atedby different D compilers are incompatible (by design, not just because of=someimplementation quirk), worse, mixing libs produced by different toolchain=s mayseem to work, only to fail at runtime. Where's the gain?1. My point is that modifying the ABI has a significant cost and can't easily be undone. I don't see much gain from switching from one nonstd convention to a different nonstd convention, which is /similar/ to the C one, but still not directly accessible from C. A calling convention that is used by the target platform is better than a calling convention that is used by no one but yourself. Also, I don't see how name mangling is part of the calling convention, but maybe that's just me (I am aware that name mangling is part of various Windows calling conventions, but not in *nix. :-) 2. What does your change mean? Programs now use a worse calling convention (not even one arg gets passed in a register), *cough* for x86 *cough* I can't see how you can use this as an argument. Parameter passing hasn't changed for x86, only the way certain values are returned. So it is *still* as bad as it was *before* the change. 3. object files and libraries generated by different D compilers are incompatible (by design, not just because of some implementation quirk), worse, mixing libs produced by different toolchains may seem to work, only to fail at runtime. Where's the gain? It has always been this way. I've never known people to frequently mix compilers when building code.fault as we no longer pretend to follow DMD's calling convention. For those= who want to turn on D_InlineAsm(_X86/_x86_64) there is a -fd-inline-asm co= mpiler switch.The D_InlineAsm family of version identifiers are now turned off by de=then?)Why is it a compiler option? Ie is it safe to turn it on (why optional =en?).or will it result in wrong code being generated (why have the option th=} nowD_InlineAsm allowed things like the cpuid code to work, will every asm{=sm,Ah, ok, thank you for clarifying that. It would then be possible to keep D_InlineAsm working and only fail (or warn) when "naked" is used in "D" a=need to be rewritten, or could a safe subset of the "D" asms be reused?All Inline Asm code in Druntime and Phobos is written with the DMD calling convention in mind, so ie: when one of the naked functions in std.math pops the stack when returning a float, the caller won't clean this in GDC generated code. =A0Other than that, it works perfectly well (tm).right?The only patch to the calling convention that I've needed to do to get D Naked Functions working is to tell the caller that the callee will pop the stack if is returning a float, double or real (or their complex equivalents). A better solution would be to implement this "quirk" as another attribute, ie: callee_pop_float_return, which is then handled in ix86_return_pops_args. If that could be accepted in GCC, then we'd be flying again.that we support GNU Extended Inline Assembly.* GDC will emit the GNU_InlineAsm version identifier to tell user code=- becauseBTW, a identifier, which is set for *both* x86 and x86_64 would be good=code willof how D's version() works and the fact that on those platforms the asm=pplications without relying on changes to the backend, with the exception o= f naked functions.often be identical.* All patches to GCC proper have now been removed, GDC can now build a=x86 platform. =A0It is applied to all naked functions, and implies noinline= and noclone.* "naked" has now been implemented now as a function attribute of the =d epilogueI've never really understood the reason for "naked". Custom prologue an=.. You cancould be useful sometimes, but turning the compiler into an assembler?.=ctionsalready write "naked" asm functions in gcc - with asm()s outside of fun=aked".plus some as(1) section push/pop magic, iirc. Now you've removed the D builtin assembler, but decided to introduce "n=profiling,Is it really necessary? There are no back-compat concerns... How does naked work will the various gcc features the modify prologue (=isI meant something like "practically removed the availability of D builtin assembler by removing the guarding version identifiers", sorry. But doesn't this mean that, right now, there are exactly zero users of th=stack usage checking, forced stack aligment etc)?I have not removed the D builtin assembler. I have just removed D_InlineAsm version identifers. =A0GDC's "naked" function support was originally a (pretty bad) hack in GCC. =A0It is now implemented cleanly as a function attribute, and does not affect the code generation of other frontends.feature (gcc naked functions)?.. arturThere is naked support for other architectures that have been accepted in GCC (arm, avr, m68k, mcore, rx, spu) - yes I had to look them up. :-) --=20 Iain Buclaw *(p < e ? p++ : p) =3D (c & 0x0f) + '0';
Jan 16 2012
On 01/16/12 21:49, Iain Buclaw wrote:On 16 January 2012 19:14, Artur Skawina <art.08.09 gmail.com> wrote:I guess treating the functions like C "extern inline"'s isn't possible?On 01/16/12 17:43, Iain Buclaw wrote:It won't. For inlining to work, the function body (that is available at compile-time in DMDFE AST) needs to be converted into GCC trees for the backend to inline. -fonly, whilst it processes the semantic analysis on the other modules, does not generate any codegen for them. For cross module inlining to properly work in the one-file-at-a-time compilation method, there needs to be an intermediate routine that says 'build this body now, but don't add the function to the global to output list'.On 16 January 2012 14:41, Artur Skawina <art.08.09 gmail.com> wrote:Does this work for '-c' too? For building libs, like eg phobos? Hmm, '-fonly" seems like it could work, together with '-c' -- I have never used that option, will have to try it later - but if it works, shouldn't it be on by default (for '-[cS]' invocations)?On 01/15/12 23:34, Iain Buclaw wrote:If you want cross-module inlining, compile all sources in one command. gdc file1.d file2.d -o myapp* Merged in the work Walter has done for __vector type support. There are now newly available GCC builtins for vector operations via gcc.builtins module.Allowing !=128 bits wide types would be just a matter of removing the frontend restrictions, right? (i didn't look at the latest commits, maybe you already did that) As the vector ops often will need to be wrapped, lack of cross module function inlining is a problem.Hmm, i was looking for more incompatibilities, but i guess expecting to directly throw/catch D exceptions from C++ (and v/v) is a bit too much. :)BTW, is the GDC exception handling compatible with C++?It's practically rewrite of the C++ exception routine in D. But don't quote me on it being directly compatible.It isn't, but if you can't (easily) call the "D" code from C/C++ it might as well be. If you need proper annotations at every language border crossing, what advantage does using the same calling convention give you?..1. My point is that modifying the ABI has a significant cost and can't easily be undone. I don't see much gain from switching from one nonstd convention to a different nonstd convention, which is /similar/ to the C one, but still not directly accessible from C. A calling convention that is used by the target platform is better than a calling convention that is used by no one but yourself. Also, I don't see how name mangling is part of the calling convention, but maybe that's just me (I am aware that name mangling is part of various Windows calling conventions, but not in *nix. :-)What makes you think changing the calling convention will turn off name mangling?My point is that modifying the ABI has a significant cost and can't easily be undone. I don't see much gain from switching from one nonstd convention to a different nonstd convention, which is /similar/ to the C one, but still not directly accessible from C. What does your change mean? Programs now use a worse calling convention (not even one arg gets passed in a register), object files and libraries generated by different D compilers are incompatible (by design, not just because of some implementation quirk), worse, mixing libs produced by different toolchains may seem to work, only to fail at runtime. Where's the gain?2. What does your change mean? Programs now use a worse calling convention (not even one arg gets passed in a register), *cough* for x86 *cough* I can't see how you can use this as an argument. Parameter passing hasn't changed for x86, only the way certain values are returned. So it is *still* as bad as it was *before* the change.So gdc didn't implement the official (dlang.org) convention, and i was fooled by LTO? :)3. object files and libraries generated by different D compilers are incompatible (by design, not just because of some implementation quirk), worse, mixing libs produced by different toolchains may seem to work, only to fail at runtime. Where's the gain? It has always been this way. I've never known people to frequently mix compilers when building code.Shared libraries. Distributions, such as Ubuntu. Does every OS vendor have to provide different packages for different D "stacks"? Every D library will come in a DMD version, GDC version and a LDC version? Or will just one compiler be picked, because the alternative isn't really acceptable? Note the former also means packaging every application using *any* D shared library (and i guess this can include phobos) N times. Let's hope nobody else decides to make a D compiler. :)I meant something like "practically removed the availability of D builtin assembler by removing the guarding version identifiers", sorry. But doesn't this mean that, right now, there are exactly zero users of this feature (gcc naked functions)?..I have not removed the D builtin assembler. I have just removed D_InlineAsm version identifers. GDC's "naked" function support was originally a (pretty bad) hack in GCC. It is now implemented cleanly as a function attribute, and does not affect the code generation of other frontends.* "naked" has now been implemented now as a function attribute of the x86 platform. It is applied to all naked functions, and implies noinline and noclone.I've never really understood the reason for "naked". Custom prologue and epilogue could be useful sometimes, but turning the compiler into an assembler?... You can already write "naked" asm functions in gcc - with asm()s outside of functions plus some as(1) section push/pop magic, iirc. Now you've removed the D builtin assembler, but decided to introduce "naked". Is it really necessary? There are no back-compat concerns... How does naked work will the various gcc features the modify prologue (profiling, stack usage checking, forced stack aligment etc)?There is naked support for other architectures that have been accepted in GCC (arm, avr, m68k, mcore, rx, spu) - yes I had to look them up. :-)I meant "zero D users". :^) And was wondering if introducing something D-related that nobody was using made sense. I admit to *not* checking if some arch already had it. :) artur
Jan 16 2012
On 16 January 2012 23:08, Artur Skawina <art.08.09 gmail.com> wrote:On 01/16/12 21:49, Iain Buclaw wrote:here are now newly available GCC builtins for vector operations via gcc.bui= ltins module.On 16 January 2012 19:14, Artur Skawina <art.08.09 gmail.com> wrote:On 01/16/12 17:43, Iain Buclaw wrote:On 16 January 2012 14:41, Artur Skawina <art.08.09 gmail.com> wrote:On 01/15/12 23:34, Iain Buclaw wrote:* Merged in the work Walter has done for __vector type support. =A0T=he frontendAllowing !=3D128 bits wide types would be just a matter of removing t=already didrestrictions, right? (i didn't look at the latest commits, maybe you =functionthat) As the vector ops often will need to be wrapped, lack of cross module=verDoes this work for '-c' too? For building libs, like eg phobos? Hmm, '-fonly" seems like it could work, together with '-c' -- I have ne=inlining is a problem.If you want cross-module inlining, compile all sources in one command. gdc file1.d file2.d -o myappt itused that option, will have to try it later - but if it works, shouldn'=Like gnu_inline? It will have to be implemented.I guess treating the functions like C "extern inline"'s isn't possible?be on by default (for '-[cS]' invocations)?It won't. =A0For inlining to work, the function body (that is available at compile-time in DMDFE AST) needs to be converted into GCC trees for the backend to inline. =A0-fonly, whilst it processes the semantic analysis on the other modules, does not generate any codegen for them. =A0For cross module inlining to properly work in the one-file-at-a-time compilation method, there needs to be an intermediate routine that says 'build this body now, but don't add the function to the global to output list'.)Hmm, i was looking for more incompatibilities, but i guess expecting to directly throw/catch D exceptions from C++ (and v/v) is a bit too much. :=BTW, is the GDC exception handling compatible with C++?It's practically rewrite of the C++ exception routine in D. But don't quote me on it being directly compatible.Yes, that is. I can't find the file at the moment, but if you were to compare the two (C++ exception handling and D exception handling) - you can easily point two fingers between which functions correlate to which.ilyWhat makes you think changing the calling convention will turn off name mangling?My point is that modifying the ABI has a significant cost and can't eas=ionbe undone. I don't see much gain from switching from one nonstd convent=stillto a different nonstd convention, which is /similar/ to the C one, but =(notnot directly accessible from C. What does your change mean? Programs now use a worse calling convention=eratedeven one arg gets passed in a register), object files and libraries gen=of someby different D compilers are incompatible (by design, not just because =ins mayimplementation quirk), worse, mixing libs produced by different toolcha=x86 does implicitly turn on regparm when compiling with -O for local functions only.It isn't, but if you can't (easily) call the "D" code from C/C++ it might as well be. If you need proper annotations at every language border crossing, what advantage does using the same calling convention give you?..seem to work, only to fail at runtime. Where's the gain?1. =A0My point is that modifying the ABI has a significant cost and can't easily be undone. I don't see much gain from switching from one nonstd convention to a different nonstd convention, which is /similar/ to the C one, but still not directly accessible from C. A calling convention that is used by the target platform is better than a calling convention that is used by no one but yourself. =A0Also, I don't see how name mangling is part of the calling convention, but maybe that's just me (I am aware that name mangling is part of various Windows calling conventions, but not in *nix. :-)2. What does your change mean? Programs now use a worse calling convention (not even one arg gets passed in a register), *cough* for x86 *cough* I can't see how you can use this as an argument. Parameter passing hasn't changed for x86, only the way certain values are returned. So it is *still* as bad as it was *before* the change.So gdc didn't implement the official (dlang.org) convention, and i was fooled by LTO? :)e x86 platform. =A0It is applied to all naked functions, and implies noinli= ne and noclone.3. object files and libraries generated by different D compilers are incompatible (by design, not just because of some implementation quirk), worse, mixing libs produced by different toolchains may seem to work, only to fail at runtime. Where's the gain? It has always been this way. I've never known people to frequently mix compilers when building code.Shared libraries. Distributions, such as Ubuntu. Does every OS vendor have to provide different packages for different D "stacks"? Every D library will come in a DMD version, GDC version and a LDC version? Or will just one compiler be picked, because the alternative isn't really acceptable? Note the former also means packaging every application using *any* D shared library (and i guess this can include phobos) N times. Let's hope nobody else decides to make a D compiler. :)* "naked" has now been implemented now as a function attribute of th=and epilogueI've never really understood the reason for "naked". Custom prologue =?... You cancould be useful sometimes, but turning the compiler into an assembler=unctionsalready write "naked" asm functions in gcc - with asm()s outside of f="naked".plus some as(1) section push/pop magic, iirc. Now you've removed the D builtin assembler, but decided to introduce =(profiling,Is it really necessary? There are no back-compat concerns... How does naked work will the various gcc features the modify prologue=ystack usage checking, forced stack aligment etc)?I have not removed the D builtin assembler. I have just removed D_InlineAsm version identifers. =A0GDC's "naked" function support was originally a (pretty bad) hack in GCC. =A0It is now implemented cleanl=inas a function attribute, and does not affect the code generation of other frontends.I meant something like "practically removed the availability of D built=thisassembler by removing the guarding version identifiers", sorry. But doesn't this mean that, right now, there are exactly zero users of =:)feature (gcc naked functions)?..There is naked support for other architectures that have been accepted in GCC (arm, avr, m68k, mcore, rx, spu) - yes I had to =A0look them up. :-)I meant "zero D users". :^) And was wondering if introducing something D-related that nobody was using made sense. I admit to *not* checking if some arch already had it. =arturnaked functions are used by D programmers. Last example I can think of off the top of my head I aided were two OS developers writing a kernel in D. --=20 Iain Buclaw *(p < e ? p++ : p) =3D (c & 0x0f) + '0';
Jan 16 2012
On Sunday, 15 January 2012 at 22:34:28 UTC, Iain Buclaw wrote:* GDC's default calling convention has now been switched back to that of the default for the target platform. The D_InlineAsm family of version identifiers are now turned off by default as we no longer pretend to follow DMD's calling convention. For those who want to turn on D_InlineAsm(_X86/_x86_64) there is a -fd-inline-asm compiler switch.BTW, why does it affect 64-bit code? Doesn't 64-bit already has one calling convention for all?
Jan 27 2012