2 * support for dynamic binding from C
6 * This software is part of the SBCL system. See the README file for
9 * This software is derived from the CMU CL system, which was
10 * written at Carnegie Mellon University and released into the
11 * public domain. The software is in the public domain and is
12 * provided with absolutely no warranty. See the COPYING and CREDITS
13 * files for more information.
21 #include "genesis/symbol.h"
22 #include "genesis/binding.h"
23 #include "genesis/thread.h"
24 #include "genesis/static-symbols.h"
26 #if defined(BINDING_STACK_POINTER)
27 #define GetBSP() ((struct binding *)SymbolValue(BINDING_STACK_POINTER,thread))
28 #define SetBSP(value) SetSymbolValue(BINDING_STACK_POINTER, (lispobj)(value),thread)
30 #define GetBSP() ((struct binding *)current_binding_stack_pointer)
31 #define SetBSP(value) (current_binding_stack_pointer=(lispobj *)(value))
34 void bind_variable(lispobj symbol, lispobj value, void *th)
37 struct binding *binding;
38 struct thread *thread=(struct thread *)th;
39 #ifdef LISP_FEATURE_SB_THREAD
40 struct symbol *sym=(struct symbol *)native_pointer(symbol);
44 #ifdef LISP_FEATURE_SB_THREAD
46 sym->tls_index=SymbolValue(FREE_TLS_INDEX,0);
47 SetSymbolValue(FREE_TLS_INDEX,
48 make_fixnum(fixnum_value(sym->tls_index)+1),0);
51 old_tl_value=SymbolTlValue(symbol,thread);
52 binding->value = old_tl_value;
53 binding->symbol = symbol;
54 SetTlSymbolValue(symbol, value,thread);
60 struct thread *thread=(struct thread *)th;
61 struct binding *binding;
64 binding = GetBSP() - 1;
66 symbol = binding->symbol;
68 SetTlSymbolValue(symbol, binding->value,thread);
76 unbind_to_here(lispobj *bsp,void *th)
78 struct thread *thread=(struct thread *)th;
79 struct binding *target = (struct binding *)bsp;
80 struct binding *binding = GetBSP();
83 while (target < binding) {
86 symbol = binding->symbol;
88 SetTlSymbolValue(symbol, binding->value,thread);