diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-10-27 06:12:57 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-10-27 06:12:57 -0700 |
commit | 9144d264ae9600fca5d38affdda262f7ea46282f (patch) | |
tree | 6ac817705f48b96082f7a60eccd8c9079da1ee3f /unwind.c | |
parent | 2bd797a1aa9d30f15ae06fe5da8555906e9af894 (diff) | |
download | txr-9144d264ae9600fca5d38affdda262f7ea46282f.tar.gz txr-9144d264ae9600fca5d38affdda262f7ea46282f.tar.bz2 txr-9144d264ae9600fca5d38affdda262f7ea46282f.zip |
Fix size growth of nested continuation capture.
The issue is that captures from within a restarted
continuation of the same continuation, are using the
restart prompt as the delimiter rather than re-using
captured block of the same name. Thus each successive
capture adds a new frame, causing the size to grow
drastically.
* unwind.c (uw_capture_cont): Allow the existing captured
block to be the delimiter; don't delimit up to
the revive_cont's prompt block of the same name.
Diffstat (limited to 'unwind.c')
-rw-r--r-- | unwind.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -751,7 +751,8 @@ val uw_capture_cont(val tag, val ctx) uw_frame_t *fr; for (fr = uw_stack; fr != 0; fr = fr->uw.up) { - if (fr->uw.type == UW_BLOCK && fr->bl.tag == tag) + if ((fr->uw.type == UW_BLOCK || fr->uw.type == UW_CAPTURED_BLOCK) + && fr->bl.tag == tag) break; } |