summaryrefslogtreecommitdiffstats
path: root/unwind.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-10-24 00:57:54 -0400
committerKaz Kylheku <kaz@kylheku.com>2011-10-24 00:57:54 -0400
commit23a6fd5129b285d25faa8198e395ac91db0348c4 (patch)
tree6bad524c53ea7aed6a792cff97cfa9290c519b07 /unwind.h
parent69d40b9de060f88af224f1f27a7e020ccaabeddd (diff)
downloadtxr-23a6fd5129b285d25faa8198e395ac91db0348c4.tar.gz
txr-23a6fd5129b285d25faa8198e395ac91db0348c4.tar.bz2
txr-23a6fd5129b285d25faa8198e395ac91db0348c4.zip
Turning attention to some plumbing.
* unwind.c (uw_env_stack): New static variable. (uw_unwind_to_exit_point): Maintain correct uw_env_stack during unwinding. (uw_find_env): Just retrieve the env stack pointer; no search. (uw_push_env): Store a pointer to the previous environmental frame and just initialize the bindings to nil. No need to cons up a copy of the bindings from the previous frame. (uw_get_func): Perform a search through the environment stack. * unwind.h (struct uw_dynamic_env): New member, up_env.
Diffstat (limited to 'unwind.h')
-rw-r--r--unwind.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/unwind.h b/unwind.h
index 26276772..98b7a58a 100644
--- a/unwind.h
+++ b/unwind.h
@@ -49,6 +49,7 @@ struct uw_block {
struct uw_dynamic_env {
uw_frame_t *up;
uw_frtype_t type;
+ uw_frame_t *up_env;
val func_bindings;
};