summaryrefslogtreecommitdiffstats
path: root/eval.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-02-16 01:52:56 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-02-16 01:52:56 -0800
commit83778347170b3168bbfd5a87bad1eb12700f5cd0 (patch)
tree9af5a9c884ab7834519e6650022d763f8415bb62 /eval.h
parentb68fb2aad15663edfe7c3671c97bd85bc531c565 (diff)
downloadtxr-83778347170b3168bbfd5a87bad1eb12700f5cd0.tar.gz
txr-83778347170b3168bbfd5a87bad1eb12700f5cd0.tar.bz2
txr-83778347170b3168bbfd5a87bad1eb12700f5cd0.zip
In the spirit of the previous hack, here is another hack to
alleviate a long-standing pain: when an exception happens in TXR's library somewhere, the program dies without leaving a clue about what code was being evaluated when that happened. What we can do is have the evaluator publish the most recent compound form it has processed by stashing it in a variable. Then when an unhandled exception occurs, we can peek at that and try to pull out source location info. * eval.c (last_form_evaled): New variable. (do_eval): When evaluating a compound form, stash it in last_form_evaled. (eval_init): Protect last_form_evaled from gc. * eval.h (last_form_evaled): Declared. (eval_error_s): Existing variable declared. * unwind.c: Has to include "eval.h" for the above variable and "parser.h" for the source_loc function. (uw_throw): When an exception is unhandled, if last_form_evaled has source info, add it to the diagnostic. But not if the exception is eval-error; because errors from the evaluators already have the info.
Diffstat (limited to 'eval.h')
-rw-r--r--eval.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/eval.h b/eval.h
index 03bfea23..713f50b8 100644
--- a/eval.h
+++ b/eval.h
@@ -26,6 +26,8 @@
extern val dwim_s, vector_lit_s, vector_list_s;
extern val hash_lit_s, hash_construct_s;
+extern val eval_error_s;
+extern val last_form_evaled;
val make_env(val fbindings, val vbindings, val up_env);
val env_fbind(val env, val sym, val fun);