need these too
[sbcl/lichteblau.git] / src / runtime / dynbind.c
blob8a3a548882e21e690de3d26eb1603d1be5bdf0a5
1 /*
2 * support for dynamic binding from C
3 */
5 /*
6 * This software is part of the SBCL system. See the README file for
7 * more information.
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.
16 #include "runtime.h"
17 #include "sbcl.h"
18 #include "globals.h"
19 #include "dynbind.h"
21 #if defined(__i386__)
22 #define GetBSP() ((struct binding *)SymbolValue(BINDING_STACK_POINTER))
23 #define SetBSP(value) SetSymbolValue(BINDING_STACK_POINTER, (lispobj)(value))
24 #else
25 #define GetBSP() ((struct binding *)current_binding_stack_pointer)
26 #define SetBSP(value) (current_binding_stack_pointer=(lispobj *)(value))
27 #endif
29 void bind_variable(lispobj symbol, lispobj value)
31 lispobj old_value;
32 struct binding *binding;
34 old_value = SymbolValue(symbol);
35 binding = GetBSP();
36 SetBSP(binding+1);
38 binding->value = old_value;
39 binding->symbol = symbol;
40 SetSymbolValue(symbol, value);
43 void
44 unbind(void)
46 struct binding *binding;
47 lispobj symbol;
49 binding = GetBSP() - 1;
51 symbol = binding->symbol;
53 SetSymbolValue(symbol, binding->value);
55 binding->symbol = 0;
57 SetBSP(binding);
60 void
61 unbind_to_here(lispobj *bsp)
63 struct binding *target = (struct binding *)bsp;
64 struct binding *binding = GetBSP();
65 lispobj symbol;
67 while (target < binding) {
68 binding--;
70 symbol = binding->symbol;
72 if (symbol) {
73 SetSymbolValue(symbol, binding->value);
74 binding->symbol = 0;
78 SetBSP(binding);