digitalmars.D - D slower than C++ in compile time
- Frank Benoit <keinfarbton googlemail.com> Feb 16 2008
- Ary Borenszweig <ary esperanto.org.ar> Feb 16 2008
- Alexander Panek <alexander.panek brainsware.org> Feb 16 2008
- Frank Benoit <keinfarbton googlemail.com> Feb 16 2008
- Robert Fraser <fraserofthenight gmail.com> Feb 16 2008
- Christopher Wright <dhasenan gmail.com> Feb 16 2008
- Matti Niemenmaa <see_signature for.real.address> Feb 16 2008
- Ary Borenszweig <ary esperanto.org.ar> Feb 16 2008
- Matti Niemenmaa <see_signature for.real.address> Feb 17 2008
- Burton Radons <burton-radons shaw.ca> Feb 16 2008
- Lars Ivar Igesund <larsivar igesund.net> Feb 16 2008
- torhu <no spam.invalid> Feb 18 2008
- Frank Benoit <keinfarbton googlemail.com> Feb 19 2008
- Frank Benoit <keinfarbton googlemail.com> Feb 24 2008
Gregor once explained why build tools need to call DMD once per file: http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=57473 This makes dsss look like it is slow, but actually this is a concequence of a DMD workaround. For the DWT library this would lead to compile times >15 minutes! In the past I found the compile times always a big argument for D. Hopefully this point gets attention at digitalmars ;)
Feb 16 2008
Frank Benoit escribió:Gregor once explained why build tools need to call DMD once per file: http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmar .D&article_id=57473 This makes dsss look like it is slow, but actually this is a concequence of a DMD workaround. For the DWT library this would lead to compile times >15 minutes! In the past I found the compile times always a big argument for D. Hopefully this point gets attention at digitalmars ;)
Descent will probably do incremental compiling in the next release. Does what Gregor say also affects it? If so, vote++ :)
Feb 16 2008
Ary Borenszweig wrote:Frank Benoit escribió:Gregor once explained why build tools need to call DMD once per file: http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmar .D&article_id=57473 This makes dsss look like it is slow, but actually this is a concequence of a DMD workaround. For the DWT library this would lead to compile times >15 minutes! In the past I found the compile times always a big argument for D. Hopefully this point gets attention at digitalmars ;)
Descent will probably do incremental compiling in the next release. Does what Gregor say also affects it? If so, vote++ :)
IIRC, Gregor made this change because all-at-once compilation causes some code generation errors/bugs because some code generated code is not marked correctly. I don't remember the details, though, or what it exactly affects..
Feb 16 2008
Alexander Panek schrieb:Ary Borenszweig wrote:Frank Benoit escribió:Gregor once explained why build tools need to call DMD once per file: http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmar .D&article_id=57473 This makes dsss look like it is slow, but actually this is a concequence of a DMD workaround. For the DWT library this would lead to compile times >15 minutes! In the past I found the compile times always a big argument for D. Hopefully this point gets attention at digitalmars ;)
Descent will probably do incremental compiling in the next release. Does what Gregor say also affects it? If so, vote++ :)
yes.IIRC, Gregor made this change because all-at-once compilation causes some code generation errors/bugs because some code generated code is not marked correctly. I don't remember the details, though, or what it exactly affects..
is the link not working?
Feb 16 2008
It will if I want to do any incremental compiling, which is what I've started in Trunk. It's not too late to change this, so I think I'll make an option "allow incremental compilation" or something. If that's off, it'll just pass the compiler a huge list of files. A era fix would be awesome though. Ary Borenszweig Wrote:Frank Benoit escribió:Gregor once explained why build tools need to call DMD once per file: http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmar .D&article_id=57473 This makes dsss look like it is slow, but actually this is a concequence of a DMD workaround. For the DWT library this would lead to compile times >15 minutes! In the past I found the compile times always a big argument for D. Hopefully this point gets attention at digitalmars ;)
Descent will probably do incremental compiling in the next release. Does what Gregor say also affects it? If so, vote++ :)
Feb 16 2008
Frank Benoit wrote:Gregor once explained why build tools need to call DMD once per file: http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmar .D&article_id=57473 This makes dsss look like it is slow, but actually this is a concequence of a DMD workaround. For the DWT library this would lead to compile times >15 minutes! In the past I found the compile times always a big argument for D. Hopefully this point gets attention at digitalmars ;)
Ditch DMD for serious work. And the frontend has enough bugs.... It would be nice Walter could add a couple people who just manage bugfixes, then put the dmd frontend on dsource.
Feb 16 2008
Christopher Wright wrote:Ditch DMD for serious work. And the frontend has enough bugs.... It would be nice Walter could add a couple people who just manage bugfixes, then put the dmd frontend on dsource.
Ideally Walter would release his pile of test cases. He's said that one problem with patches on Bugzilla is that you can't be sure whether they don't break something else. Well, the problem is that whoever writes the patches can't be sure either, since he doesn't have all the tests Walter uses. If we had the tests, we could write patches for the frontend and be able to unequivocally state that they work. Plus, it'd help in understanding the frontend code - "if I change this all of these stop working, why is that?" - which in turn may lead to more patches. -- E-mail address: matti.niemenmaa+news, domain is iki (DOT) fi
Feb 16 2008
Matti Niemenmaa escribió:Christopher Wright wrote:Ditch DMD for serious work. And the frontend has enough bugs.... It would be nice Walter could add a couple people who just manage bugfixes, then put the dmd frontend on dsource.
Ideally Walter would release his pile of test cases.
Isn't that dstress? There's quite a lot of test code there...
Feb 16 2008
Ary Borenszweig wrote:Matti Niemenmaa escribió:Ideally Walter would release his pile of test cases.
Isn't that dstress? There's quite a lot of test code there...
I don't think they're the same. Still, testing against DStress helps, of course. -- E-mail address: matti.niemenmaa+news, domain is iki (DOT) fi
Feb 17 2008
Frank Benoit Wrote:Gregor once explained why build tools need to call DMD once per file: http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=57473 This makes dsss look like it is slow, but actually this is a concequence of a DMD workaround. For the DWT library this would lead to compile times >15 minutes! In the past I found the compile times always a big argument for D. Hopefully this point gets attention at digitalmars ;)
I don't understand from that link what the problem is. Is there any situation where if you pass a complete list of D files to DMD that it won't generate the correct code? Or is this isolated to situations where you're trying to incrementally compile, which has never worked all that great with DMD and will very quickly be slower than calling it with everything? All Gregor says is that it produces larger executables than strictly necessary which is a problem, sure, but a completely usable workaround and far from the show-stopping bugs that should be Walter's primary concern right now. There may be a way to build a more intelligent linker that can produce tighter executables based on knowledge about how D works. I'll look into it, but I can't guarantee when.
Feb 16 2008
Burton Radons wrote:Frank Benoit Wrote:Gregor once explained why build tools need to call DMD once per file:
This makes dsss look like it is slow, but actually this is a concequence of a DMD workaround. For the DWT library this would lead to compile times >15 minutes! In the past I found the compile times always a big argument for D. Hopefully this point gets attention at digitalmars ;)
I don't understand from that link what the problem is. Is there any situation where if you pass a complete list of D files to DMD that it won't generate the correct code? Or is this isolated to situations where you're trying to incrementally compile, which has never worked all that great with DMD and will very quickly be slower than calling it with everything? All Gregor says is that it produces larger executables than strictly necessary which is a problem, sure, but a completely usable workaround and far from the show-stopping bugs that should be Walter's primary concern right now. There may be a way to build a more intelligent linker that can produce tighter executables based on knowledge about how D works. I'll look into it, but I can't guarantee when.
The link problems have usually stemmed from trying to build libraries which are then built into an application. Typically the compiler has been so focused on creating objects for an executable, that there has been missing and/or conflicting symbols if building an library instead. This has in particular been a problem with templates, template instances and so. -- Lars Ivar Igesund blog at http://larsivi.net DSource, #d.tango & #D: larsivi Dancing the Tango
Feb 16 2008
Frank Benoit wrote:For the DWT library this would lead to compile times >15 minutes!
I just tried building dwt-win with and without oneatatime enabled. Compiler options are '-O -release -inline'. My PC is a 1.3 GHz athlon, with 896 MB RAM and a fairly fast HD. I could have left out -inline, but the time savings likely wouldn't be significant. Results: all at once: 2 mins 27 secs, 5.9MB .lib file one at a time: 39 minutes, 17 MB .lib file I only did this once, but I expect the results would be about the same each time. This is pretty ugly. dwt-win is 6.9 MB of code in 353 files, about the same size as Tango.
Feb 18 2008
torhu schrieb:dwt-win is 6.9 MB of code in 353 files, about the same size as Tango.
In addition ... This does not mean it should be equal compile time. dwt uses tango, so its about double size of types/declarations for the compiler. So i wonder how it grows if you build an application on top of dwt with another 300 files :) I gave it a try to measure both times for linux to compile dwt dmd options: -g -gc -debug -v dsss options: -full -v 2.8Ghz 2GB Ram oneatatime=off : 0:31 oneatatime=on : 31:49 I would reason, with oneatatime=off we see here a much stronger effect of more RAM size and CPU speed. With oneatatime=on the file I/O has much more weigth, so here the difference is not so big.
Feb 19 2008
Frank Benoit schrieb:Gregor once explained why build tools need to call DMD once per file: http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmar .D&article_id=57473 This makes dsss look like it is slow, but actually this is a concequence of a DMD workaround. For the DWT library this would lead to compile times >15 minutes! In the past I found the compile times always a big argument for D. Hopefully this point gets attention at digitalmars ;)
This bugzilla bug can happen if oneatatime is 'off'. http://d.puremagic.com/issues/show_bug.cgi?id=1629 Using dsss with oneatatime=off and -full sometimes works around it.
Feb 24 2008









Frank Benoit <keinfarbton googlemail.com> 