Re: [Chicken-hackers] [PATCH] fix subtype check for fixed-size list/vector types in scrutinizer

2011-11-06 Thread Christian Kellermann
* felix winkelmann [111031 10:45]: > The attached patch fixes incorrect (nonexistent) handling of "(list ...)" > and "(vector ...)" types in the subtype-check procedure ("type<=?") in the > scrutinizer. I have comitted and pushed, note that it did not apply cleanly initially, but trivially it wou

Re: [Chicken-hackers] [PATCH] allow procedure in operator position of evaluated lists

2011-11-06 Thread Christian Kellermann
* felix winkelmann [111031 09:10]: > The attached patch handles procedure-objects in operator position of > evaluated lists. This adds an small inconsistency between interpreted > and compiled code (in macro-transformers, for example), but allows > for interesting uses of "eval". Thanks, pushed!

Re: [Chicken-hackers] [PATCH] also add debugging-output to generated C file

2011-11-06 Thread Christian Kellermann
* felix winkelmann [111027 10:41]: > The attached patch adds debugging-output for optimizations > done by the compiler to the generated C file, which may be > helpful when analyzing or debugging the compiler. Cool, pushed. -- Who can (make) the muddy water (clear)? Let it be still, and it will

Re: [Chicken-hackers] [PATCH] clustering

2011-11-06 Thread Christian Kellermann
* felix winkelmann [111027 11:18]: > The attached patch adds an optimization (originally suggested by > chairman shinn), which turns groups of local procedures into "dispatch > loop". This can give good performance improvements in tight code that > performs no (or few) CPS calls. Currently it is n

Re: [Chicken-hackers] [PATCH] Overhaul interrupt handling

2011-11-06 Thread Christian Kellermann
* felix winkelmann [111027 12:28]: > This patch adds some cleanups and enhancements to the interrupt and > signal-handling facilities, as posted recently. Thanks to Joerg > Wittenberger and Alan Post for their valuable suggestions, which have > been incorporated in this change. I have tested it on

Re: [Chicken-hackers] [PATCH] disable debug-output for scrutiny

2011-11-06 Thread Christian Kellermann
* felix winkelmann [111022 17:16]: > The attached patch disables debugging output for the scrutinizer, > as it is only useful for debugging the compiler. Ah I see you have applied this as patch f9a6702c0c18c8d2b58286ada4f4c0b9cf4802a3 Sorry for missing it... Christian -- Who can (make) the mu

Re: [Chicken-hackers] [PATCH] clustering

2011-11-06 Thread Felix
From: Christian Kellermann Subject: Re: [Chicken-hackers] [PATCH] clustering Date: Sun, 6 Nov 2011 12:46:36 +0100 > * felix winkelmann [111027 11:18]: >> The attached patch adds an optimization (originally suggested by >> chairman shinn), which turns groups of local procedures into "dispatch >>

Re: [Chicken-hackers] [PATCH] Overhaul interrupt handling

2011-11-06 Thread Felix
From: Christian Kellermann Subject: Re: [Chicken-hackers] [PATCH] Overhaul interrupt handling Date: Sun, 6 Nov 2011 12:56:48 +0100 > * felix winkelmann [111027 12:28]: >> This patch adds some cleanups and enhancements to the interrupt and >> signal-handling facilities, as posted recently. Thanks