Email list hosting service & mailing list manager

Couple things... felix (22 Dec 2003 17:51 UTC)
(missing)
Re: Couple things... felix (24 Dec 2003 12:01 UTC)
Re: Couple things... Jim Blandy (24 Dec 2003 16:29 UTC)
(missing)
(missing)
(missing)
Re: Couple things... felix (24 Dec 2003 11:43 UTC)
Re: Couple things... tb@xxxxxx (24 Dec 2003 23:30 UTC)
Re: Couple things... Michael Sperber (27 Dec 2003 18:46 UTC)
Re: Couple things... felix (24 Dec 2003 12:40 UTC)
Re: Couple things... Michael Sperber (26 Dec 2003 15:16 UTC)
(missing)
(missing)
(missing)
(missing)
(missing)
(missing)
Re: Couple things... felix (04 Jan 2004 18:51 UTC)
Re: Couple things... Tom Lord (04 Jan 2004 22:13 UTC)
Re: Couple things... Michael Sperber (05 Jan 2004 19:18 UTC)
Re: Couple things... Tom Lord (05 Jan 2004 21:53 UTC)
Re: Couple things... Michael Sperber (05 Jan 2004 19:19 UTC)
Re: Couple things... felix (04 Jan 2004 18:42 UTC)
(missing)
(missing)
(missing)
Re: Strings/chars Tom Lord (24 Dec 2003 04:47 UTC)

Re: Couple things... felix 24 Dec 2003 12:03 UTC

On 23 Dec 2003 13:34:53 -0500, Jim Blandy <xxxxxx@redhat.com> wrote:

>
> felix <xxxxxx@call-with-current-continuation.org> writes:
>> As the document correctly points out, calls from Scheme to C can be
>> a lot more efficient, if it is known that callbacks into Scheme do
>> not occur.  This applies to Chicken (for example), where all sorts
>> of weird things happen in such a case. So, here I'm down on my
>> knees, *begging* for separate forms of Scheme->C calls that forbid
>> callbacks. This also simplifies the case when threads are involved
>> (if thread-switches can only occur in Scheme code). Note that
>> Scheme->C calls outnumber Scheme->C->Scheme ones usually by a large
>> amount.
>
> Could you give details about the sorts of optimizations this
> information enables?
>

Chicken for example uses the C-stack as the first generation of
a generational GC scheme (as described in Henry Baker's Cheney-on-
the-MTA paper). Calling C from Scheme is no problem, if the code
returns properly, but a callback/GC would possibly invalidate the portion
of the stack below the currently pending C stack-frame, and uncontrolled
shrinking of the nursery would quickly result in problems. To prevent
this, the nursery (1st gen. / C-stack) has to be resized, by pulling
out live data (and cleaning up the nursery) before calling the C
code, and then setting the "watermark" that marks the lower end of the
stack. One method would be to simply disallow callbacks (as Baker proposes
in his paper), but we don't want that, of course...
Another issue is threads: the blocking behaviour mentioned in SRFI-50
on returning from callbacks would not have to be checked, if it is
known that the invocation of C from Scheme has no chance of calling
back into Scheme.

cheers,
felix