Re: More recent work on GC

2015-01-15 Thread safety0ff via Digitalmars-d
On Wednesday, 14 January 2015 at 06:15:09 UTC, Andrei Alexandrescu wrote: On my reading list: http://research.microsoft.com/pubs/230708/conservative-gc-oopsla-2014.pdf http://users.cecs.anu.edu.au/~steveb/downloads/pdf/immix-pldi-2008.pdf (this has been mentioned before) Andrei These are

Re: More recent work on GC

2015-01-15 Thread H. S. Teoh via Digitalmars-d
On Wed, Jan 14, 2015 at 08:07:37PM +, deadalnix via Digitalmars-d wrote: > On Wednesday, 14 January 2015 at 18:01:22 UTC, H. S. Teoh via Digitalmars-d > wrote: > >Recently in one of my projects I found that I can gain a huge > >performance improvement just by calling GC.disable() at the beginni

Re: More recent work on GC

2015-01-14 Thread deadalnix via Digitalmars-d
On Wednesday, 14 January 2015 at 18:01:22 UTC, H. S. Teoh via Digitalmars-d wrote: Recently in one of my projects I found that I can gain a huge performance improvement just by calling GC.disable() at the beginning of the program and never calling GC.enable() again, but instead manually calling

Re: More recent work on GC

2015-01-14 Thread H. S. Teoh via Digitalmars-d
On Wed, Jan 14, 2015 at 05:37:41PM +, John Colvin via Digitalmars-d wrote: > On Wednesday, 14 January 2015 at 16:09:06 UTC, Dominikus Dittes Scherkl > wrote: > >On Wednesday, 14 January 2015 at 06:15:09 UTC, Andrei Alexandrescu wrote: > >>On my reading list: > >> > >>http://research.microsoft.c

Re: More recent work on GC

2015-01-14 Thread John Colvin via Digitalmars-d
On Wednesday, 14 January 2015 at 16:09:06 UTC, Dominikus Dittes Scherkl wrote: On Wednesday, 14 January 2015 at 06:15:09 UTC, Andrei Alexandrescu wrote: On my reading list: http://research.microsoft.com/pubs/230708/conservative-gc-oopsla-2014.pdf Interesting. non-exact GC but with about the s

Re: More recent work on GC

2015-01-14 Thread Dominikus Dittes Scherkl via Digitalmars-d
On Wednesday, 14 January 2015 at 06:15:09 UTC, Andrei Alexandrescu wrote: On my reading list: http://research.microsoft.com/pubs/230708/conservative-gc-oopsla-2014.pdf Interesting. non-exact GC but with about the same performance. The bad part for D would be, that this GC collects periodically

Re: More recent work on GC

2015-01-14 Thread Paulo Pinto via Digitalmars-d
On Wednesday, 14 January 2015 at 06:15:09 UTC, Andrei Alexandrescu wrote: On my reading list: http://research.microsoft.com/pubs/230708/conservative-gc-oopsla-2014.pdf http://users.cecs.anu.edu.au/~steveb/downloads/pdf/immix-pldi-2008.pdf (this has been mentioned before) Andrei Thanks for