Tom Duff on Duff's Device (1988)
lysator.liu.se
Tom Duff on Duff's Device (1988)
1–10 of 11 posts
Re: Tom Duff on Duff's Device (1988)
#2I'm really, really curious about what that code is.
Re: Tom Duff on Duff's Device (1988)
#3> (Actually, I have another revolting way to use switches to implement interrupt driven state machines but it's too horrid to go into.) I'm really, really curious about what that code is.
Re: Tom Duff on Duff's Device (1988)
#4This made me laugh. "with diligence it is possible to make anything run slowly" should be one of the truths carved into an obelisk outside every CompSci department or at least on a t-shirt.
Re: Tom Duff on Duff's Device (1988)
#5http://www.agner.org/optimize/blog/read.php?i=142
It is so important to economize the use of the micro-op cache that I would give the advice never to unroll loops.
http://lkml.iu.edu/hypermail/linux/kernel/0008.2/0171.html
by eliminating all instances of Duff's Device from the XFree86 4.0 server, the server shrunk in size by _half_ _a_ _megabyte_ (!!!), and was faster to boot
Re: Tom Duff on Duff's Device (1988)
#6> (Actually, I have another revolting way to use switches to implement interrupt driven state machines but it's too horrid to go into.) I'm really, really curious about what that code is.
This is just a guess, but perhaps something like: http://www.chiark.greenend.org.uk/~sgtatham/coroutines.html
Re: Tom Duff on Duff's Device (1988)
#7Re: Tom Duff on Duff's Device (1988)
#8> (Actually, I have another revolting way to use switches to implement interrupt driven state machines but it's too horrid to go into.) I'm really, really curious about what that code is.
This is just a guess, but perhaps something like: http://www.chiark.greenend.org.uk/~sgtatham/coroutines.html
https://github.com/nraynaud/webgcode/blob/gh-pages/interpola...
One problem is the reset of the functions, I just created a makeshift exception, but I don't know how far I want to deviate form the norm.
I still don't know if it's a good idea, but that's what personal projects are for.
Re: Tom Duff on Duff's Device (1988)
#9I wonder what programmers at the time would think of CPUs eventually being so good at handling loops that unrolling changes from an optimisation technique to be performed manually, to one that compilers might sometimes do, to an anti-optimisation: http://www.agner.org/optimize/blog/read.php?i=142 It is so important to economize the use of the micro-op cache that I would give the advice never to unroll loops. http://l…
Re: Tom Duff on Duff's Device (1988)
#10Funny that he is more famous for this than for inventing Porter-Duff compositing algebra, one of the cornerstones of modern image manipulation.