X-Git-Url: https://git.hcoop.net/bpt/guile.git/blobdiff_plain/b2b33168b18c6c4fd65b0e77becba1a66a00dae1..01329288918de3ab4b7d85d4c0c5b83b0edfc179:/libguile/control.c diff --git a/libguile/control.c b/libguile/control.c index 9121d1791..f8d2d60ae 100644 --- a/libguile/control.c +++ b/libguile/control.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010, 2011 Free Software Foundation, Inc. +/* Copyright (C) 2010, 2011, 2012 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -81,36 +81,35 @@ scm_i_prompt_pop_abort_args_x (SCM vm) #define META_HEADER(meta) meta, 0, 0, 0, 0, 0, 0, 0 #endif -#define ALIGN_PTR(type,p,align) (type*)(ROUND_UP (((scm_t_bits)p), align)) +#define OBJCODE_TAG SCM_MAKE_OBJCODE_TAG (SCM_OBJCODE_TYPE_STATIC, 0) -#ifdef SCM_ALIGNED +#if defined (SCM_ALIGNED) #define SCM_DECLARE_STATIC_ALIGNED_ARRAY(type, sym) \ static const type sym[] #define SCM_STATIC_ALIGNED_ARRAY(alignment, type, sym) \ static SCM_ALIGNED (alignment) const type sym[] -#else -#define SCM_DECLARE_STATIC_ALIGNED_ARRAY(type, sym) \ -static type *sym -#define SCM_STATIC_ALIGNED_ARRAY(alignment, type, sym) \ -SCM_SNARF_INIT(sym = scm_malloc_pointerless (sizeof(sym##__unaligned); \ - memcpy (sym, sym##__unaligned, sizeof(sym##__unaligned));) \ -static type *sym = NULL; \ -static const type sym##__unaligned[] -#endif - -#define STATIC_OBJCODE_TAG \ - SCM_PACK (SCM_MAKE_OBJCODE_TAG (SCM_OBJCODE_TYPE_STATIC, 0)) - #define SCM_STATIC_OBJCODE(sym) \ SCM_DECLARE_STATIC_ALIGNED_ARRAY (scm_t_uint8, sym##__bytecode); \ SCM_STATIC_ALIGNED_ARRAY (8, scm_t_cell, sym##__cells) = { \ - { STATIC_OBJCODE_TAG, SCM_PACK (sym##__bytecode) }, \ + { SCM_PACK (OBJCODE_TAG), SCM_PACK (sym##__bytecode) }, \ { SCM_BOOL_F, SCM_PACK (0) } \ }; \ static const SCM sym = SCM_PACK (sym##__cells); \ SCM_STATIC_ALIGNED_ARRAY (8, scm_t_uint8, sym##__bytecode) +#else +#define SCM_STATIC_OBJCODE(sym) \ +static SCM sym; \ +static scm_t_uint8 *sym##_bytecode; \ +SCM_SNARF_INIT(sym##_bytecode = scm_gc_malloc_pointerless (sizeof(sym##_bytecode__unaligned), "partial continuation stub"); \ + memcpy (sym##_bytecode, sym##_bytecode__unaligned, sizeof(sym##_bytecode__unaligned));) \ +SCM_SNARF_INIT(sym = scm_double_cell (OBJCODE_TAG, \ + (scm_t_bits)sym##_bytecode, \ + SCM_UNPACK (SCM_BOOL_F), \ + 0);) \ +static const scm_t_uint8 sym##_bytecode__unaligned[] +#endif + - SCM_STATIC_OBJCODE (cont_objcode) = { /* Like in continuations.c, but with partial-cont-call. */ OBJCODE_HEADER (8, 19), @@ -248,7 +247,8 @@ SCM_DEFINE (scm_at_abort, "@abort", 2, 0, 0, (SCM tag, SCM args), #define FUNC_NAME s_scm_at_abort { SCM *argv; - size_t i, n; + size_t i; + long n; SCM_VALIDATE_LIST_COPYLEN (SCM_ARG2, args, n); argv = alloca (sizeof (SCM)*n);