mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +02:00
* libguile/scm.h (struct scm_thread, scm_thread): Rename from scm_i_thread. * libguile/deprecated.h (scm_i_thread): Add deprecated typedef. * libguile/threads.h: Adapt to renaming. * libguile/intrinsics.h: * libguile/scmsigs.h: * libguile/cache-internal.h: Remove threads.h includes; unnecessary with the forward decl. * libguile/continuations.h: * libguile/gc-inline.h: * libguile/async.h: Adapt scm_thread type name change. * libguile/async.c: * libguile/continuations.c: * libguile/control.c: * libguile/dynstack.c: * libguile/dynwind.c: * libguile/eval.c: * libguile/finalizers.c: * libguile/fluids.c: * libguile/gc.c: * libguile/intrinsics.c: * libguile/load.c: * libguile/memoize.c: * libguile/print.c: * libguile/read.c: * libguile/scmsigs.c: * libguile/script.c: * libguile/stackchk.c: * libguile/stacks.c: * libguile/symbols.c: * libguile/threads.c: * libguile/throw.c: * libguile/vm-engine.c: * libguile/vm.c: Adapt to type name change, and add additional includes as needed.
247 lines
6.7 KiB
C
247 lines
6.7 KiB
C
/* Copyright 2010-2013,2018
|
||
Free Software Foundation, Inc.
|
||
|
||
This file is part of Guile.
|
||
|
||
Guile is free software: you can redistribute it and/or modify it
|
||
under the terms of the GNU Lesser General Public License as published
|
||
by the Free Software Foundation, either version 3 of the License, or
|
||
(at your option) any later version.
|
||
|
||
Guile is distributed in the hope that it will be useful, but WITHOUT
|
||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
||
License for more details.
|
||
|
||
You should have received a copy of the GNU Lesser General Public
|
||
License along with Guile. If not, see
|
||
<https://www.gnu.org/licenses/>. */
|
||
|
||
#if HAVE_CONFIG_H
|
||
# include <config.h>
|
||
#endif
|
||
|
||
#include <alloca.h>
|
||
|
||
#include "dynstack.h"
|
||
#include "extensions.h"
|
||
#include "frames.h"
|
||
#include "gsubr.h"
|
||
#include "instructions.h"
|
||
#include "list.h"
|
||
#include "pairs.h"
|
||
#include "programs.h"
|
||
#include "threads.h"
|
||
#include "vm.h"
|
||
|
||
#include "control.h"
|
||
|
||
|
||
|
||
#define PROMPT_ESCAPE_P(p) \
|
||
(SCM_DYNSTACK_TAG_FLAGS (SCM_DYNSTACK_TAG (p)) \
|
||
& SCM_F_DYNSTACK_PROMPT_ESCAPE_ONLY)
|
||
|
||
|
||
|
||
|
||
/* Only to be called if the setjmp returns 1 */
|
||
SCM
|
||
scm_i_prompt_pop_abort_args_x (struct scm_vm *vp,
|
||
ptrdiff_t saved_stack_depth)
|
||
{
|
||
size_t i, n;
|
||
ptrdiff_t stack_depth;
|
||
SCM vals = SCM_EOL;
|
||
|
||
stack_depth = vp->stack_top - vp->sp;
|
||
if (stack_depth < saved_stack_depth)
|
||
abort ();
|
||
n = stack_depth - saved_stack_depth;
|
||
|
||
for (i = 0; i < n; i++)
|
||
vals = scm_cons (vp->sp[i].as_scm, vals);
|
||
|
||
vp->sp += n;
|
||
|
||
return vals;
|
||
}
|
||
|
||
|
||
static const uint32_t compose_continuation_code[] =
|
||
{
|
||
SCM_PACK_OP_24 (compose_continuation, 0)
|
||
};
|
||
|
||
|
||
static SCM
|
||
make_partial_continuation (SCM vm_cont)
|
||
{
|
||
scm_t_bits nfree = 1;
|
||
scm_t_bits flags = SCM_F_PROGRAM_IS_PARTIAL_CONTINUATION;
|
||
SCM ret;
|
||
|
||
ret = scm_words (scm_tc7_program | (nfree << 16) | flags, nfree + 2);
|
||
SCM_SET_CELL_WORD_1 (ret, compose_continuation_code);
|
||
SCM_PROGRAM_FREE_VARIABLE_SET (ret, 0, vm_cont);
|
||
|
||
return ret;
|
||
}
|
||
|
||
static SCM
|
||
reify_partial_continuation (struct scm_vm *vp,
|
||
union scm_vm_stack_element *saved_fp,
|
||
union scm_vm_stack_element *saved_sp,
|
||
uint32_t *saved_ip,
|
||
jmp_buf *saved_registers,
|
||
scm_t_dynstack *dynstack,
|
||
jmp_buf *current_registers)
|
||
{
|
||
SCM vm_cont;
|
||
uint32_t flags;
|
||
union scm_vm_stack_element *base_fp;
|
||
|
||
flags = SCM_F_VM_CONT_PARTIAL;
|
||
/* If we are aborting to a prompt that has the same registers as those
|
||
of the abort, it means there are no intervening C frames on the
|
||
stack, and so the continuation can be relocated elsewhere on the
|
||
stack: it is rewindable. */
|
||
if (saved_registers && saved_registers == current_registers)
|
||
flags |= SCM_F_VM_CONT_REWINDABLE;
|
||
|
||
/* Walk the stack until we find the first frame newer than saved_fp.
|
||
We will save the stack until that frame. It used to be that we
|
||
could determine the stack base in O(1) time, but that's no longer
|
||
the case, since the thunk application doesn't occur where the
|
||
prompt is saved. */
|
||
for (base_fp = vp->fp;
|
||
SCM_FRAME_DYNAMIC_LINK (base_fp) < saved_fp;
|
||
base_fp = SCM_FRAME_DYNAMIC_LINK (base_fp));
|
||
|
||
if (SCM_FRAME_DYNAMIC_LINK (base_fp) != saved_fp)
|
||
abort();
|
||
|
||
scm_dynstack_relocate_prompts (dynstack, vp->stack_top - base_fp);
|
||
|
||
/* Capture from the base_fp to the top thunk application frame. */
|
||
vm_cont = scm_i_vm_capture_stack (base_fp, vp->fp, vp->sp, vp->ip, dynstack,
|
||
flags);
|
||
|
||
return make_partial_continuation (vm_cont);
|
||
}
|
||
|
||
void
|
||
scm_c_abort (struct scm_vm *vp, SCM tag, size_t n, SCM *argv,
|
||
jmp_buf *current_registers)
|
||
{
|
||
SCM cont;
|
||
scm_t_dynstack *dynstack = &SCM_I_CURRENT_THREAD->dynstack;
|
||
scm_t_bits *prompt;
|
||
scm_t_dynstack_prompt_flags flags;
|
||
ptrdiff_t fp_offset, sp_offset;
|
||
union scm_vm_stack_element *fp, *sp;
|
||
uint32_t *ip;
|
||
jmp_buf *registers;
|
||
size_t i;
|
||
|
||
prompt = scm_dynstack_find_prompt (dynstack, tag,
|
||
&flags, &fp_offset, &sp_offset, &ip,
|
||
®isters);
|
||
|
||
if (!prompt)
|
||
scm_misc_error ("abort", "Abort to unknown prompt", scm_list_1 (tag));
|
||
|
||
fp = vp->stack_top - fp_offset;
|
||
sp = vp->stack_top - sp_offset;
|
||
|
||
/* Only reify if the continuation referenced in the handler. */
|
||
if (flags & SCM_F_DYNSTACK_PROMPT_ESCAPE_ONLY)
|
||
cont = SCM_BOOL_F;
|
||
else
|
||
{
|
||
scm_t_dynstack *captured;
|
||
|
||
captured = scm_dynstack_capture (dynstack, SCM_DYNSTACK_NEXT (prompt));
|
||
cont = reify_partial_continuation (vp, fp, sp, ip, registers, captured,
|
||
current_registers);
|
||
}
|
||
|
||
/* Unwind. */
|
||
scm_dynstack_unwind (dynstack, prompt);
|
||
|
||
/* Restore VM regs */
|
||
vp->fp = fp;
|
||
vp->sp = sp - n - 1;
|
||
vp->ip = ip;
|
||
|
||
/* Since we're jumping down, we should always have enough space. */
|
||
if (vp->sp < vp->stack_limit)
|
||
abort ();
|
||
|
||
/* Push vals */
|
||
vp->sp[n].as_scm = cont;
|
||
for (i = 0; i < n; i++)
|
||
vp->sp[n - i - 1].as_scm = argv[i];
|
||
|
||
/* Jump! */
|
||
longjmp (*registers, 1);
|
||
|
||
/* Shouldn't get here */
|
||
abort ();
|
||
}
|
||
|
||
SCM_DEFINE (scm_abort_to_prompt_star, "abort-to-prompt*", 2, 0, 0,
|
||
(SCM tag, SCM args),
|
||
"Abort to the nearest prompt with tag @var{tag}, yielding the\n"
|
||
"values in the list, @var{args}.")
|
||
#define FUNC_NAME s_scm_abort_to_prompt_star
|
||
{
|
||
SCM *argv;
|
||
size_t i;
|
||
long n;
|
||
|
||
SCM_VALIDATE_LIST_COPYLEN (SCM_ARG2, args, n);
|
||
argv = alloca (sizeof (SCM)*n);
|
||
for (i = 0; i < n; i++, args = scm_cdr (args))
|
||
argv[i] = scm_car (args);
|
||
|
||
scm_c_abort (&SCM_I_CURRENT_THREAD->vm, tag, n, argv, NULL);
|
||
|
||
/* Oh, what, you're still here? The abort must have been reinstated. Actually,
|
||
that's quite impossible, given that we're already in C-land here, so...
|
||
abort! */
|
||
|
||
abort ();
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
static SCM
|
||
scm_suspendable_continuation_p (SCM tag)
|
||
{
|
||
scm_t_dynstack_prompt_flags flags;
|
||
scm_thread *thread = SCM_I_CURRENT_THREAD;
|
||
jmp_buf *registers;
|
||
|
||
if (scm_dynstack_find_prompt (&thread->dynstack, tag, &flags,
|
||
NULL, NULL, NULL, ®isters))
|
||
return scm_from_bool (registers == thread->vm.resumable_prompt_cookie);
|
||
|
||
return SCM_BOOL_F;
|
||
}
|
||
|
||
static void
|
||
scm_init_ice_9_control (void *unused)
|
||
{
|
||
scm_c_define_gsubr ("suspendable-continuation?", 1, 0, 0,
|
||
scm_suspendable_continuation_p);
|
||
}
|
||
|
||
void
|
||
scm_init_control (void)
|
||
{
|
||
#include "control.x"
|
||
|
||
scm_c_register_extension ("libguile-" SCM_EFFECTIVE_VERSION,
|
||
"scm_init_ice_9_control", scm_init_ice_9_control,
|
||
NULL);
|
||
}
|