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.
20 #include "genesis/symbol.h"
21 #include "genesis/binding.h"
22 #include "genesis/static-symbols.h"
25 #define GetBSP() ((struct binding *)SymbolValue(BINDING_STACK_POINTER))
26 #define SetBSP(value) SetSymbolValue(BINDING_STACK_POINTER, (lispobj)(value))
28 #define GetBSP() ((struct binding *)current_binding_stack_pointer)
29 #define SetBSP(value) (current_binding_stack_pointer=(lispobj *)(value))
32 void bind_variable(lispobj symbol, lispobj value)
35 struct binding *binding;
37 old_value = SymbolValue(symbol);
41 binding->value = old_value;
42 binding->symbol = symbol;
43 SetSymbolValue(symbol, value);
49 struct binding *binding;
52 binding = GetBSP() - 1;
54 symbol = binding->symbol;
56 SetSymbolValue(symbol, binding->value);
64 unbind_to_here(lispobj *bsp)
66 struct binding *target = (struct binding *)bsp;
67 struct binding *binding = GetBSP();
70 while (target < binding) {
73 symbol = binding->symbol;
76 SetSymbolValue(symbol, binding->value);