Merge changes for 1.8.5.
[bpt/guile.git] / libguile / continuations.c
CommitLineData
2b829bbb 1/* Copyright (C) 1995,1996,1998,2000,2001,2004, 2006 Free Software Foundation, Inc.
0f2d19dd 2 *
73be1d9e
MV
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
0f2d19dd 7 *
73be1d9e
MV
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
0f2d19dd 12 *
73be1d9e
MV
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
92205699 15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
73be1d9e 16 */
1bbd0b84 17
1bbd0b84 18
0f2d19dd
JB
19\f
20
bbd43f03
RB
21#include "libguile/_scm.h"
22
13070bd3 23#include <string.h>
8b7f0bb3 24#include <stdio.h>
13070bd3 25
8b7f0bb3 26#include "libguile/async.h"
d0f6ceb8 27#include "libguile/debug.h"
a0599745
MD
28#include "libguile/root.h"
29#include "libguile/stackchk.h"
5f144b10
GH
30#include "libguile/smob.h"
31#include "libguile/ports.h"
32#include "libguile/dynwind.h"
ce212434 33#include "libguile/values.h"
9de87eea 34#include "libguile/eval.h"
5f144b10 35
db4b4ca6 36#include "libguile/validate.h"
a0599745 37#include "libguile/continuations.h"
01c8a3dd 38
0f2d19dd
JB
39\f
40
41/* {Continuations}
42 */
43
92c2555f 44scm_t_bits scm_tc16_continuation;
0f2d19dd 45
e841c3e0
KN
46static SCM
47continuation_mark (SCM obj)
5f144b10 48{
92c2555f 49 scm_t_contregs *continuation = SCM_CONTREGS (obj);
01c8a3dd 50
9de87eea 51 scm_gc_mark (continuation->root);
5f144b10
GH
52 scm_gc_mark (continuation->throw_value);
53 scm_mark_locations (continuation->stack, continuation->num_stack_items);
193297d8
RB
54#ifdef __ia64__
55 if (continuation->backing_store)
56 scm_mark_locations (continuation->backing_store,
57 continuation->backing_store_size /
58 sizeof (SCM_STACKITEM));
59#endif /* __ia64__ */
5f144b10
GH
60 return continuation->dynenv;
61}
01c8a3dd 62
1be6b49c 63static size_t
e841c3e0 64continuation_free (SCM obj)
5f144b10 65{
92c2555f 66 scm_t_contregs *continuation = SCM_CONTREGS (obj);
9de87eea 67 /* stack array size is 1 if num_stack_items is 0. */
1be6b49c 68 size_t extra_items = (continuation->num_stack_items > 0)
5f144b10
GH
69 ? (continuation->num_stack_items - 1)
70 : 0;
92c2555f 71 size_t bytes_free = sizeof (scm_t_contregs)
5f144b10 72 + extra_items * sizeof (SCM_STACKITEM);
193297d8
RB
73
74#ifdef __ia64__
4c9419ac
MV
75 scm_gc_free (continuation->backing_store, continuation->backing_store_size,
76 "continuation backing store");
193297d8 77#endif /* __ia64__ */
4c9419ac
MV
78 scm_gc_free (continuation, bytes_free, "continuation");
79 return 0;
5f144b10 80}
01c8a3dd 81
e841c3e0 82static int
e81d98ec 83continuation_print (SCM obj, SCM port, scm_print_state *state SCM_UNUSED)
5f144b10 84{
92c2555f 85 scm_t_contregs *continuation = SCM_CONTREGS (obj);
5f144b10
GH
86
87 scm_puts ("#<continuation ", port);
88 scm_intprint (continuation->num_stack_items, 10, port);
89 scm_puts (" @ ", port);
0345e278 90 scm_uintprint (SCM_CELL_WORD_1 (obj), 16, port);
5f144b10
GH
91 scm_putc ('>', port);
92 return 1;
93}
1cc91f1b 94
5f144b10
GH
95/* this may return more than once: the first time with the escape
96 procedure, then subsequently with the value to be passed to the
97 continuation. */
98#define FUNC_NAME "scm_make_continuation"
0f2d19dd 99SCM
5f144b10 100scm_make_continuation (int *first)
0f2d19dd 101{
9de87eea
MV
102 scm_i_thread *thread = SCM_I_CURRENT_THREAD;
103 SCM cont;
92c2555f 104 scm_t_contregs *continuation;
c014a02e 105 long stack_size;
01c8a3dd 106 SCM_STACKITEM * src;
0f2d19dd 107
0f2d19dd 108 SCM_FLUSH_REGISTER_WINDOWS;
9de87eea 109 stack_size = scm_stack_size (thread->continuation_base);
4c9419ac
MV
110 continuation = scm_gc_malloc (sizeof (scm_t_contregs)
111 + (stack_size - 1) * sizeof (SCM_STACKITEM),
112 "continuation");
5f144b10 113 continuation->num_stack_items = stack_size;
9de87eea 114 continuation->dynenv = scm_i_dynwinds ();
5f144b10 115 continuation->throw_value = SCM_EOL;
9de87eea
MV
116 continuation->root = thread->continuation_root;
117 continuation->dframe = scm_i_last_debug_frame ();
118 src = thread->continuation_base;
5f144b10 119 SCM_NEWSMOB (cont, scm_tc16_continuation, continuation);
01c8a3dd 120
4ccb2cd2 121#if ! SCM_STACK_GROWS_UP
5f144b10
GH
122 src -= stack_size;
123#endif
5c5c27dc 124 continuation->offset = continuation->stack - src;
5f144b10
GH
125 memcpy (continuation->stack, src, sizeof (SCM_STACKITEM) * stack_size);
126
193297d8 127#ifdef __ia64__
9a5fa6e9
NJ
128 continuation->fresh = 1;
129 getcontext (&continuation->ctx);
130 if (continuation->fresh)
193297d8 131 {
9a5fa6e9
NJ
132 continuation->backing_store_size =
133 (char *) scm_ia64_ar_bsp(&continuation->ctx)
134 -
135 (char *) scm_ia64_register_backing_store_base ();
193297d8
RB
136 continuation->backing_store = NULL;
137 continuation->backing_store =
4c9419ac
MV
138 scm_gc_malloc (continuation->backing_store_size,
139 "continuation backing store");
193297d8 140 memcpy (continuation->backing_store,
9a5fa6e9 141 (void *) scm_ia64_register_backing_store_base (),
193297d8
RB
142 continuation->backing_store_size);
143 *first = 1;
9a5fa6e9 144 continuation->fresh = 0;
193297d8
RB
145 return cont;
146 }
147 else
148 {
3c468478 149 SCM ret = continuation->throw_value;
193297d8 150 *first = 0;
3c468478
MV
151 continuation->throw_value = SCM_BOOL_F;
152 return ret;
193297d8
RB
153 }
154#else /* !__ia64__ */
5f144b10
GH
155 if (setjmp (continuation->jmpbuf))
156 {
3c468478 157 SCM ret = continuation->throw_value;
5f144b10 158 *first = 0;
3c468478
MV
159 continuation->throw_value = SCM_BOOL_F;
160 return ret;
5f144b10
GH
161 }
162 else
163 {
164 *first = 1;
165 return cont;
166 }
193297d8 167#endif /* !__ia64__ */
0f2d19dd 168}
5f144b10 169#undef FUNC_NAME
0f2d19dd 170
d3c6aef9
MV
171
172/* Invoking a continuation proceeds as follows:
173 *
174 * - the stack is made large enough for the called continuation
175 * - the old windchain is unwound down to the branching point
176 * - the continuation stack is copied into place
177 * - the windchain is rewound up to the continuation's context
178 * - the continuation is invoked via longjmp (or setcontext)
179 *
180 * This order is important so that unwind and rewind handlers are run
181 * with their correct stack.
182 */
183
5f144b10 184static void scm_dynthrow (SCM, SCM);
01c8a3dd
DH
185
186/* Grow the stack by a fixed amount to provide space to copy in the
187 * continuation. Possibly this function has to be called several times
188 * recursively before enough space is available. Make sure the compiler does
189 * not optimize the growth array away by storing it's address into a global
190 * variable.
191 */
192
92c2555f 193scm_t_bits scm_i_dummy;
1cc91f1b 194
0f2d19dd 195static void
01c8a3dd
DH
196grow_stack (SCM cont, SCM val)
197{
92c2555f 198 scm_t_bits growth[100];
01c8a3dd 199
92c2555f 200 scm_i_dummy = (scm_t_bits) growth;
01c8a3dd 201 scm_dynthrow (cont, val);
0f2d19dd 202}
0f2d19dd 203
1cc91f1b 204
01c8a3dd
DH
205/* Copy the continuation stack into the current stack. Calling functions from
206 * within this function is safe, since only stack frames below this function's
207 * own frame are overwritten. Thus, memcpy can be used for best performance.
208 */
d3c6aef9
MV
209
210typedef struct {
211 scm_t_contregs *continuation;
212 SCM_STACKITEM *dst;
213} copy_stack_data;
214
01c8a3dd 215static void
d3c6aef9
MV
216copy_stack (void *data)
217{
218 copy_stack_data *d = (copy_stack_data *)data;
219 memcpy (d->dst, d->continuation->stack,
220 sizeof (SCM_STACKITEM) * d->continuation->num_stack_items);
221}
222
223static void
224copy_stack_and_call (scm_t_contregs *continuation, SCM val,
5f144b10 225 SCM_STACKITEM * dst)
0f2d19dd 226{
d3c6aef9
MV
227 long delta;
228 copy_stack_data data;
229
9de87eea 230 delta = scm_ilength (scm_i_dynwinds ()) - scm_ilength (continuation->dynenv);
d3c6aef9
MV
231 data.continuation = continuation;
232 data.dst = dst;
14578fa4 233 scm_i_dowinds (continuation->dynenv, delta, copy_stack, &data);
01c8a3dd 234
9de87eea 235 scm_i_set_last_debug_frame (continuation->dframe);
01c8a3dd 236
5f144b10 237 continuation->throw_value = val;
193297d8 238#ifdef __ia64__
9a5fa6e9 239 memcpy (scm_ia64_register_backing_store_base (),
193297d8
RB
240 continuation->backing_store,
241 continuation->backing_store_size);
242 setcontext (&continuation->ctx);
243#else
5f144b10 244 longjmp (continuation->jmpbuf, 1);
193297d8 245#endif
01c8a3dd
DH
246}
247
01c8a3dd
DH
248/* Call grow_stack until the stack space is large enough, then, as the current
249 * stack frame might get overwritten, let copy_stack_and_call perform the
250 * actual copying and continuation calling.
251 */
252static void
253scm_dynthrow (SCM cont, SCM val)
254{
9de87eea 255 scm_i_thread *thread = SCM_I_CURRENT_THREAD;
92c2555f 256 scm_t_contregs *continuation = SCM_CONTREGS (cont);
9de87eea 257 SCM_STACKITEM *dst = thread->continuation_base;
01c8a3dd
DH
258 SCM_STACKITEM stack_top_element;
259
8b7f0bb3
MV
260 if (scm_i_critical_section_level)
261 {
262 fprintf (stderr, "continuation invoked from within critical section.\n");
263 abort ();
264 }
265
4ccb2cd2 266#if SCM_STACK_GROWS_UP
5afcf08b 267 if (dst + continuation->num_stack_items >= &stack_top_element)
01c8a3dd 268 grow_stack (cont, val);
0f2d19dd 269#else
5f144b10 270 dst -= continuation->num_stack_items;
c8a1bdc4 271 if (dst <= &stack_top_element)
01c8a3dd 272 grow_stack (cont, val);
0f2d19dd 273#endif /* def SCM_STACK_GROWS_UP */
01c8a3dd 274
5f144b10
GH
275 SCM_FLUSH_REGISTER_WINDOWS;
276 copy_stack_and_call (continuation, val, dst);
0f2d19dd
JB
277}
278
db4b4ca6
DH
279
280static SCM
281continuation_apply (SCM cont, SCM args)
5f144b10 282#define FUNC_NAME "continuation_apply"
0f2d19dd 283{
9de87eea 284 scm_i_thread *thread = SCM_I_CURRENT_THREAD;
92c2555f 285 scm_t_contregs *continuation = SCM_CONTREGS (cont);
5f144b10 286
9de87eea 287 if (continuation->root != thread->continuation_root)
5f144b10 288 {
9de87eea
MV
289 SCM_MISC_ERROR
290 ("invoking continuation would cross continuation barrier: ~A",
291 scm_list_1 (cont));
5f144b10 292 }
0f2d19dd 293
ce212434 294 scm_dynthrow (cont, scm_values (args));
0f2d19dd
JB
295 return SCM_UNSPECIFIED; /* not reached */
296}
5f144b10 297#undef FUNC_NAME
0f2d19dd 298
9de87eea
MV
299SCM
300scm_i_with_continuation_barrier (scm_t_catch_body body,
301 void *body_data,
302 scm_t_catch_handler handler,
43e01b1e
NJ
303 void *handler_data,
304 scm_t_catch_handler pre_unwind_handler,
305 void *pre_unwind_handler_data)
9de87eea
MV
306{
307 SCM_STACKITEM stack_item;
308 scm_i_thread *thread = SCM_I_CURRENT_THREAD;
309 SCM old_controot;
310 SCM_STACKITEM *old_contbase;
311 scm_t_debug_frame *old_lastframe;
312 SCM result;
313
314 /* Establish a fresh continuation root.
315 */
316 old_controot = thread->continuation_root;
317 old_contbase = thread->continuation_base;
318 old_lastframe = thread->last_debug_frame;
319 thread->continuation_root = scm_cons (thread->handle, old_controot);
320 thread->continuation_base = &stack_item;
321 thread->last_debug_frame = NULL;
322
323 /* Call FUNC inside a catch all. This is now guaranteed to return
324 directly and exactly once.
325 */
43e01b1e
NJ
326 result = scm_c_catch (SCM_BOOL_T,
327 body, body_data,
328 handler, handler_data,
329 pre_unwind_handler, pre_unwind_handler_data);
9de87eea
MV
330
331 /* Return to old continuation root.
332 */
333 thread->last_debug_frame = old_lastframe;
334 thread->continuation_base = old_contbase;
335 thread->continuation_root = old_controot;
336
337 return result;
338}
339
340struct c_data {
341 void *(*func) (void *);
342 void *data;
343 void *result;
344};
345
346static SCM
347c_body (void *d)
348{
349 struct c_data *data = (struct c_data *)d;
350 data->result = data->func (data->data);
351 return SCM_UNSPECIFIED;
352}
353
354static SCM
355c_handler (void *d, SCM tag, SCM args)
356{
357 struct c_data *data = (struct c_data *)d;
9de87eea
MV
358 data->result = NULL;
359 return SCM_UNSPECIFIED;
360}
361
362void *
363scm_c_with_continuation_barrier (void *(*func) (void *), void *data)
364{
365 struct c_data c_data;
366 c_data.func = func;
367 c_data.data = data;
368 scm_i_with_continuation_barrier (c_body, &c_data,
43e01b1e
NJ
369 c_handler, &c_data,
370 scm_handle_by_message_noexit, NULL);
9de87eea
MV
371 return c_data.result;
372}
373
374struct scm_data {
375 SCM proc;
376};
377
378static SCM
379scm_body (void *d)
380{
381 struct scm_data *data = (struct scm_data *)d;
382 return scm_call_0 (data->proc);
383}
384
385static SCM
386scm_handler (void *d, SCM tag, SCM args)
387{
9de87eea
MV
388 return SCM_BOOL_F;
389}
390
391SCM_DEFINE (scm_with_continuation_barrier, "with-continuation-barrier", 1,0,0,
392 (SCM proc),
69d2000d
MV
393"Call @var{proc} and return its result. Do not allow the invocation of\n"
394"continuations that would leave or enter the dynamic extent of the call\n"
395"to @code{with-continuation-barrier}. Such an attempt causes an error\n"
396"to be signaled.\n"
397"\n"
398"Throws (such as errors) that are not caught from within @var{proc} are\n"
399"caught by @code{with-continuation-barrier}. In that case, a short\n"
400"message is printed to the current error port and @code{#f} is returned.\n"
401"\n"
402"Thus, @code{with-continuation-barrier} returns exactly once.\n")
9de87eea
MV
403#define FUNC_NAME s_scm_with_continuation_barrier
404{
405 struct scm_data scm_data;
406 scm_data.proc = proc;
407 return scm_i_with_continuation_barrier (scm_body, &scm_data,
43e01b1e
NJ
408 scm_handler, &scm_data,
409 scm_handle_by_message_noexit, NULL);
9de87eea
MV
410}
411#undef FUNC_NAME
db4b4ca6 412
0f2d19dd
JB
413void
414scm_init_continuations ()
0f2d19dd 415{
5f144b10
GH
416 scm_tc16_continuation = scm_make_smob_type ("continuation", 0);
417 scm_set_smob_mark (scm_tc16_continuation, continuation_mark);
418 scm_set_smob_free (scm_tc16_continuation, continuation_free);
419 scm_set_smob_print (scm_tc16_continuation, continuation_print);
420 scm_set_smob_apply (scm_tc16_continuation, continuation_apply, 0, 0, 1);
a0599745 421#include "libguile/continuations.x"
0f2d19dd
JB
422}
423
89e00824
ML
424/*
425 Local Variables:
426 c-file-style: "gnu"
427 End:
428*/