* guile-doc-snarf.awk: Removed.
[bpt/guile.git] / libguile / backtrace.c
CommitLineData
ab4f3efb 1/* Printing of backtraces and error messages
78a0461a 2 * Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation
ab4f3efb
MD
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2, or (at your option)
7 * any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this software; see the file COPYING. If not, write to
82892bed
JB
16 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17 * Boston, MA 02111-1307 USA
ab4f3efb
MD
18 *
19 * As a special exception, the Free Software Foundation gives permission
20 * for additional uses of the text contained in its release of GUILE.
21 *
22 * The exception is that, if you link the GUILE library with other files
23 * to produce an executable, this does not by itself cause the
24 * resulting executable to be covered by the GNU General Public License.
25 * Your use of that executable is in no way restricted on account of
26 * linking the GUILE library code into it.
27 *
28 * This exception does not however invalidate any other reasons why
29 * the executable file might be covered by the GNU General Public License.
30 *
31 * This exception applies only to the code released by the
32 * Free Software Foundation under the name GUILE. If you copy
33 * code from other Free Software Foundation releases into a copy of
34 * GUILE, as the General Public License permits, the exception does
35 * not apply to the code that you add in this way. To avoid misleading
36 * anyone as to the status of such modified files, you must delete
37 * this exception notice from them.
38 *
39 * If you write modifications of your own for GUILE, it is your choice
40 * whether to permit this exception to apply to your modifications.
41 * If you do not wish that, delete this exception notice.
42 *
43 * The author can be reached at djurfeldt@nada.kth.se
82892bed 44 * Mikael Djurfeldt, SANS/NADA KTH, 10044 STOCKHOLM, SWEDEN */
ab4f3efb 45
1bbd0b84
GB
46/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
47 gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
48
49
ab4f3efb 50#include <stdio.h>
2b407f9b
MD
51#include <ctype.h>
52
2fb36297
JB
53#include "_scm.h"
54
b1508ade
MD
55#ifdef HAVE_UNISTD_H
56#include <unistd.h>
57#endif
58
ab4f3efb
MD
59#include "stacks.h"
60#include "srcprop.h"
61#include "genio.h"
62#include "struct.h"
63#include "strports.h"
bdf8afff 64#include "throw.h"
a5d6d578 65#include "fluids.h"
ab4f3efb
MD
66
67#include "backtrace.h"
68
69/* {Error reporting and backtraces}
70 * (A first approximation.)
71 *
72 * Note that these functions shouldn't generate errors themselves.
73 */
74
75#ifndef SCM_RECKLESS
76#undef SCM_ASSERT
77#define SCM_ASSERT(_cond, _arg, _pos, _subr) \
78 if (!(_cond)) \
79 return SCM_BOOL_F;
80#endif
81
b6609fc7
MD
82SCM scm_the_last_stack_fluid;
83
ab4f3efb 84static void
1bbd0b84 85display_header (SCM source, SCM port)
ab4f3efb
MD
86{
87 SCM fname = (SCM_NIMP (source) && SCM_MEMOIZEDP (source)
7f2d92b1 88 ? scm_source_property (source, scm_sym_filename)
ab4f3efb
MD
89 : SCM_BOOL_F);
90 if (SCM_NIMP (fname) && SCM_STRINGP (fname))
91 {
92 scm_prin1 (fname, port, 0);
b7f3516f 93 scm_putc (':', port);
7f2d92b1 94 scm_intprint (SCM_INUM (scm_source_property (source, scm_sym_line)) + 1,
0e929db3
MD
95 10,
96 port);
b7f3516f 97 scm_putc (':', port);
7f2d92b1 98 scm_intprint (SCM_INUM (scm_source_property (source, scm_sym_column)) + 1,
0e929db3
MD
99 10,
100 port);
ab4f3efb
MD
101 }
102 else
b7f3516f
TT
103 scm_puts ("ERROR", port);
104 scm_puts (": ", port);
ab4f3efb
MD
105}
106
f3acc5c1
JB
107
108void
6e8d25a6 109scm_display_error_message (SCM message, SCM args, SCM port)
ab4f3efb
MD
110{
111 int writingp;
112 char *start;
113 char *p;
114
89958ad0 115 if (SCM_IMP (message) || !SCM_ROSTRINGP (message) || SCM_IMP (args)
c37e0e55 116 || !scm_list_p (args))
ab4f3efb
MD
117 {
118 scm_prin1 (message, port, 0);
b7f3516f 119 scm_putc ('\n', port);
ab4f3efb
MD
120 return;
121 }
122
89958ad0
JB
123 SCM_COERCE_SUBSTR (message);
124 start = SCM_ROCHARS (message);
ab4f3efb
MD
125 for (p = start; *p != '\0'; ++p)
126 if (*p == '%')
127 {
128 if (SCM_IMP (args) || SCM_NCONSP (args))
129 continue;
130
131 ++p;
132 if (*p == 's')
133 writingp = 0;
134 else if (*p == 'S')
135 writingp = 1;
136 else
137 continue;
138
b7f3516f 139 scm_lfwrite (start, p - start - 1, port);
ab4f3efb
MD
140 scm_prin1 (SCM_CAR (args), port, writingp);
141 args = SCM_CDR (args);
142 start = p + 1;
143 }
b7f3516f
TT
144 scm_lfwrite (start, p - start, port);
145 scm_putc ('\n', port);
ab4f3efb
MD
146}
147
ab4f3efb 148static void
1bbd0b84 149display_expression (SCM frame,SCM pname,SCM source,SCM port)
ab4f3efb
MD
150{
151 SCM print_state = scm_make_print_state ();
152 scm_print_state *pstate = SCM_PRINT_STATE (print_state);
153 pstate->writingp = 0;
154 pstate->fancyp = 1;
155 pstate->level = 2;
156 pstate->length = 3;
157 if (SCM_NIMP (pname) && SCM_ROSTRINGP (pname))
158 {
159 if (SCM_NIMP (frame)
160 && SCM_FRAMEP (frame)
161 && SCM_FRAME_EVAL_ARGS_P (frame))
b7f3516f 162 scm_puts ("While evaluating arguments to ", port);
ab4f3efb 163 else
b7f3516f 164 scm_puts ("In procedure ", port);
ab4f3efb
MD
165 scm_iprin1 (pname, port, pstate);
166 if (SCM_NIMP (source) && SCM_MEMOIZEDP (source))
167 {
b7f3516f 168 scm_puts (" in expression ", port);
ab4f3efb
MD
169 pstate->writingp = 1;
170 scm_iprin1 (scm_unmemoize (source), port, pstate);
171 }
172 }
173 else if (SCM_NIMP (source))
174 {
b7f3516f 175 scm_puts ("In expression ", port);
ab4f3efb
MD
176 pstate->writingp = 1;
177 scm_iprin1 (scm_unmemoize (source), port, pstate);
178 }
b7f3516f 179 scm_puts (":\n", port);
ab4f3efb
MD
180 scm_free_print_state (print_state);
181}
182
bdf8afff
MD
183struct display_error_args {
184 SCM stack;
185 SCM port;
186 SCM subr;
187 SCM message;
188 SCM args;
189 SCM rest;
190};
191
192static SCM
39752bec 193display_error_body (struct display_error_args *a)
ab4f3efb
MD
194{
195 SCM current_frame = SCM_BOOL_F;
196 SCM source = SCM_BOOL_F;
197 SCM pname = SCM_BOOL_F;
a88a4c8a
JB
198 SCM prev_frame = SCM_BOOL_F;
199
841076ac 200 if (SCM_DEBUGGINGP
bdf8afff
MD
201 && SCM_NIMP (a->stack)
202 && SCM_STACKP (a->stack)
203 && SCM_STACK_LENGTH (a->stack) > 0)
ab4f3efb 204 {
bdf8afff 205 current_frame = scm_stack_ref (a->stack, SCM_INUM0);
ab4f3efb 206 source = SCM_FRAME_SOURCE (current_frame);
a88a4c8a
JB
207 prev_frame = SCM_FRAME_PREV (current_frame);
208 if (!(SCM_NIMP (source) && SCM_MEMOIZEDP (source))
209 && prev_frame != SCM_BOOL_F)
210 source = SCM_FRAME_SOURCE (prev_frame);
ab4f3efb 211 if (SCM_FRAME_PROC_P (current_frame)
016e2ce1 212 && scm_procedure_p (SCM_FRAME_PROC (current_frame)) == SCM_BOOL_T)
ab4f3efb
MD
213 pname = scm_procedure_name (SCM_FRAME_PROC (current_frame));
214 }
215 if (!(SCM_NIMP (pname) && SCM_ROSTRINGP (pname)))
bdf8afff 216 pname = a->subr;
e40a5fc8 217 if ((SCM_NIMP (pname) && SCM_ROSTRINGP (pname))
26e19854 218 || (SCM_NIMP (source) && SCM_MEMOIZEDP (source)))
ab4f3efb 219 {
bdf8afff
MD
220 display_header (source, a->port);
221 display_expression (current_frame, pname, source, a->port);
ab4f3efb 222 }
bdf8afff
MD
223 display_header (source, a->port);
224 scm_display_error_message (a->message, a->args, a->port);
225 return SCM_UNSPECIFIED;
226}
227
228struct display_error_handler_data {
229 char *mode;
230 SCM port;
231};
232
233/* This is the exception handler for error reporting routines.
234 Note that it is very important that this handler *doesn't* try to
235 print more than the error tag, since the error very probably is
236 caused by an erroneous print call-back routine. If we would
237 tru to print all objects, we would enter an infinite loop. */
238static SCM
239display_error_handler (struct display_error_handler_data *data,
240 SCM tag, SCM args)
241{
242 SCM print_state = scm_make_print_state ();
b7f3516f
TT
243 scm_puts ("\nException during displaying of ", data->port);
244 scm_puts (data->mode, data->port);
245 scm_puts (": ", data->port);
bdf8afff 246 scm_iprin1 (tag, data->port, SCM_PRINT_STATE (print_state));
b7f3516f 247 scm_putc ('\n', data->port);
bdf8afff
MD
248 return SCM_UNSPECIFIED;
249}
250
1bbd0b84
GB
251GUILE_PROC(scm_display_error, "display-error", 6, 0, 0,
252 (SCM stack, SCM port, SCM subr, SCM message, SCM args, SCM rest),
253"")
254#define FUNC_NAME s_scm_display_error
bdf8afff 255{
0b2cb4ee
MD
256 struct display_error_args a;
257 struct display_error_handler_data data;
258 a.stack = stack;
259 a.port = port;
260 a.subr = subr;
261 a.message = message;
262 a.args = args;
263 a.rest = rest;
264 data.mode = "error";
265 data.port = port;
bdf8afff
MD
266 scm_internal_catch (SCM_BOOL_T,
267 (scm_catch_body_t) display_error_body, &a,
268 (scm_catch_handler_t) display_error_handler, &data);
ab4f3efb
MD
269 return SCM_UNSPECIFIED;
270}
1bbd0b84 271#undef FUNC_NAME
ab4f3efb 272
2b407f9b
MD
273typedef struct {
274 int level;
275 int length;
276} print_params_t;
277
278static int n_print_params = 9;
279static print_params_t default_print_params[] = {
280 { 4, 9 }, { 4, 3 },
281 { 3, 4 }, { 3, 3 },
282 { 2, 4 }, { 2, 3 },
283 { 1, 4 }, { 1, 3 }, { 1, 2 }
284};
285static print_params_t *print_params = default_print_params;
286
287#ifdef GUILE_DEBUG
1bbd0b84 288GUILE_PROC(set_print_params_x, "set-print-params!", 1, 0, 0,
5623a9b4
MD
289 (SCM params),
290"")
1bbd0b84 291#define FUNC_NAME s_set_print_params_x
2b407f9b
MD
292{
293 int i, n = scm_ilength (params);
294 SCM ls;
295 print_params_t *new_params;
1bbd0b84 296 SCM_ASSERT (n >= 1, params, SCM_ARG2, FUNC_NAME);
2b407f9b
MD
297 for (ls = params; SCM_NIMP (ls); ls = SCM_CDR (ls))
298 SCM_ASSERT (scm_ilength (SCM_CAR (params)) == 2
299 && SCM_INUMP (SCM_CAAR (ls))
300 && SCM_INUM (SCM_CAAR (ls)) >= 0
301 && SCM_INUMP (SCM_CADAR (ls))
302 && SCM_INUM (SCM_CADAR (ls)) >= 0,
303 params,
304 SCM_ARG2,
305 s_set_print_params_x);
306 new_params = scm_must_malloc (n * sizeof (print_params_t),
1bbd0b84 307 FUNC_NAME);
2b407f9b
MD
308 if (print_params != default_print_params)
309 scm_must_free (print_params);
310 print_params = new_params;
311 for (i = 0; i < n; ++i)
312 {
313 print_params[i].level = SCM_INUM (SCM_CAAR (params));
314 print_params[i].length = SCM_INUM (SCM_CADAR (params));
315 params = SCM_CDR (params);
316 }
317 n_print_params = n;
318 return SCM_UNSPECIFIED;
319}
1bbd0b84 320#undef FUNC_NAME
2b407f9b
MD
321#endif
322
ab4f3efb 323static void
1bbd0b84 324indent (int n, SCM port)
ab4f3efb
MD
325{
326 int i;
327 for (i = 0; i < n; ++i)
b7f3516f 328 scm_putc (' ', port);
ab4f3efb
MD
329}
330
ab4f3efb 331static void
1bbd0b84 332display_frame_expr (char *hdr,SCM exp,char *tlr,int indentation,SCM sport,SCM port,scm_print_state *pstate)
ab4f3efb 333{
2b407f9b
MD
334 SCM string;
335 int i = 0, n;
336 scm_ptob_descriptor *ptob = scm_ptobs + SCM_PTOBNUM (sport);
337 do
ab4f3efb 338 {
2b407f9b
MD
339 pstate->length = print_params[i].length;
340 ptob->seek (sport, 0, SEEK_SET);
341 if (SCM_NIMP (exp) && SCM_CONSP (exp))
342 {
343 pstate->level = print_params[i].level - 1;
344 scm_iprlist (hdr, exp, tlr[0], sport, pstate);
345 scm_puts (&tlr[1], sport);
346 }
347 else
348 {
349 pstate->level = print_params[i].level;
350 scm_iprin1 (exp, sport, pstate);
351 }
352 ptob->flush (sport);
353 n = ptob->seek (sport, 0, SEEK_CUR);
354 ++i;
ab4f3efb 355 }
2b407f9b
MD
356 while (indentation + n > SCM_BACKTRACE_WIDTH && i < n_print_params);
357 ptob->truncate (sport, n);
358 string = scm_strport_to_string (sport);
359 /* Remove control characters */
360 for (i = 0; i < n; ++i)
361 if (iscntrl (SCM_CHARS (string)[i]))
362 SCM_CHARS (string)[i] = ' ';
363 /* Truncate */
364 if (indentation + n > SCM_BACKTRACE_WIDTH)
365 {
366 n = SCM_BACKTRACE_WIDTH - indentation;
367 SCM_CHARS (string)[n - 1] = '$';
368 }
369
370 scm_lfwrite (SCM_CHARS (string), n, port);
ab4f3efb
MD
371}
372
e3c37929 373static void
1bbd0b84 374display_application (SCM frame,int indentation,SCM sport,SCM port,scm_print_state *pstate)
e3c37929
MD
375{
376 SCM proc = SCM_FRAME_PROC (frame);
377 SCM name = (SCM_NFALSEP (scm_procedure_p (proc))
378 ? scm_procedure_name (proc)
379 : SCM_BOOL_F);
380 display_frame_expr ("[",
381 scm_cons (SCM_NFALSEP (name) ? name : proc,
382 SCM_FRAME_ARGS (frame)),
383 SCM_FRAME_EVAL_ARGS_P (frame) ? " ..." : "]",
384 indentation,
385 sport,
386 port,
387 pstate);
388}
389
1bbd0b84
GB
390GUILE_PROC(scm_display_application, "display-application", 1, 2, 0,
391 (SCM frame, SCM port, SCM indent),
392"")
393#define FUNC_NAME s_scm_display_application
e3c37929 394{
2b407f9b
MD
395 SCM_ASSERT (SCM_NIMP (frame) && SCM_FRAMEP (frame),
396 frame, SCM_ARG1, s_display_application);
e3c37929
MD
397 if (SCM_UNBNDP (port))
398 port = scm_cur_outp;
2b407f9b
MD
399 else
400 SCM_ASSERT (SCM_NIMP (port) && SCM_OPOUTPORTP (port),
401 port, SCM_ARG2, s_display_application);
402 if (SCM_UNBNDP (indent))
403 indent = SCM_INUM0;
404 else
405 SCM_ASSERT (SCM_INUMP (indent), indent, SCM_ARG3, s_display_application);
406
e3c37929
MD
407 if (SCM_FRAME_PROC_P (frame))
408 /* Display an application. */
409 {
2b407f9b 410 SCM sport, print_state;
e3c37929
MD
411 scm_print_state *pstate;
412
2b407f9b
MD
413 /* Create a string port used for adaptation of printing parameters. */
414 sport = scm_mkstrport (SCM_INUM0,
415 scm_make_string (SCM_MAKINUM (240),
416 SCM_UNDEFINED),
417 SCM_OPN | SCM_WRTNG,
1bbd0b84 418 FUNC_NAME);
2b407f9b 419
e3c37929
MD
420 /* Create a print state for printing of frames. */
421 print_state = scm_make_print_state ();
422 pstate = SCM_PRINT_STATE (print_state);
423 pstate->writingp = 1;
424 pstate->fancyp = 1;
e3c37929 425
2b407f9b 426 display_application (frame, SCM_INUM (indent), sport, port, pstate);
e3c37929
MD
427 return SCM_BOOL_T;
428 }
429 else
430 return SCM_BOOL_F;
431}
1bbd0b84 432#undef FUNC_NAME
e3c37929 433
ab4f3efb 434static void
1bbd0b84 435display_frame (SCM frame,int nfield,int indentation,SCM sport,SCM port,scm_print_state *pstate)
ab4f3efb
MD
436{
437 int n, i, j;
438
439 /* Announce missing frames? */
440 if (!SCM_BACKWARDS_P && SCM_FRAME_OVERFLOW_P (frame))
441 {
442 indent (nfield + 1 + indentation, port);
b7f3516f 443 scm_puts ("...\n", port);
ab4f3efb
MD
444 }
445
446 /* Check size of frame number. */
447 n = SCM_FRAME_NUMBER (frame);
448 for (i = 0, j = n; j > 0; ++i) j /= 10;
449
450 /* Number indentation. */
451 indent (nfield - (i ? i : 1), port);
452
453 /* Frame number. */
454 scm_iprin1 (SCM_MAKINUM (n), port, pstate);
455
456 /* Real frame marker */
b7f3516f 457 scm_putc (SCM_FRAME_REAL_P (frame) ? '*' : ' ', port);
ab4f3efb
MD
458
459 /* Indentation. */
460 indent (indentation, port);
461
462 if (SCM_FRAME_PROC_P (frame))
463 /* Display an application. */
e3c37929 464 display_application (frame, nfield + 1 + indentation, sport, port, pstate);
ab4f3efb
MD
465 else
466 /* Display a special form. */
467 {
468 SCM source = SCM_FRAME_SOURCE (frame);
2e9d6c6d 469 SCM copy = (SCM_NIMP (source) && SCM_CONSP (source)
7f2d92b1 470 ? scm_source_property (source, scm_sym_copy)
2e9d6c6d
MD
471 : SCM_BOOL_F);
472 SCM umcopy = (SCM_NIMP (source) && SCM_MEMOIZEDP (source)
473 ? scm_unmemoize (source)
474 : SCM_BOOL_F);
ab4f3efb 475 display_frame_expr ("(",
2e9d6c6d 476 SCM_NIMP (copy) && SCM_CONSP (copy) ? copy : umcopy,
ab4f3efb
MD
477 ")",
478 nfield + 1 + indentation,
479 sport,
480 port,
481 pstate);
482 }
1ae6af28 483 scm_putc ('\n', port);
ab4f3efb
MD
484
485 /* Announce missing frames? */
486 if (SCM_BACKWARDS_P && SCM_FRAME_OVERFLOW_P (frame))
487 {
488 indent (nfield + 1 + indentation, port);
b7f3516f 489 scm_puts ("...\n", port);
ab4f3efb
MD
490 }
491}
492
bdf8afff
MD
493struct display_backtrace_args {
494 SCM stack;
495 SCM port;
496 SCM first;
497 SCM depth;
498};
499
bdf8afff 500static SCM
1bbd0b84
GB
501display_backtrace_body(struct display_backtrace_args *a)
502#define FUNC_NAME "display_backtrace_body"
ab4f3efb
MD
503{
504 int n_frames, beg, end, n, i, j;
505 int nfield, indent_p, indentation;
506 SCM frame, sport, print_state;
507 scm_print_state *pstate;
508
78446828
MV
509 a->port = SCM_COERCE_OUTPORT (a->port);
510
ab4f3efb 511 /* Argument checking and extraction. */
bdf8afff
MD
512 SCM_ASSERT (SCM_NIMP (a->stack) && SCM_STACKP (a->stack),
513 a->stack,
ab4f3efb
MD
514 SCM_ARG1,
515 s_display_backtrace);
bdf8afff
MD
516 SCM_ASSERT (SCM_NIMP (a->port) && SCM_OPOUTPORTP (a->port),
517 a->port,
ab4f3efb
MD
518 SCM_ARG2,
519 s_display_backtrace);
bdf8afff
MD
520 n_frames = SCM_INUM (scm_stack_length (a->stack));
521 n = SCM_INUMP (a->depth) ? SCM_INUM (a->depth) : SCM_BACKTRACE_DEPTH;
ab4f3efb
MD
522 if (SCM_BACKWARDS_P)
523 {
bdf8afff 524 beg = SCM_INUMP (a->first) ? SCM_INUM (a->first) : 0;
ab4f3efb
MD
525 end = beg + n - 1;
526 if (end >= n_frames)
527 end = n_frames - 1;
528 n = end - beg + 1;
529 }
530 else
531 {
bdf8afff 532 if (SCM_INUMP (a->first))
ab4f3efb 533 {
bdf8afff 534 beg = SCM_INUM (a->first);
ab4f3efb
MD
535 end = beg - n + 1;
536 if (end < 0)
537 end = 0;
538 }
539 else
540 {
541 beg = n - 1;
542 end = 0;
543 if (beg >= n_frames)
544 beg = n_frames - 1;
545 }
546 n = beg - end + 1;
547 }
bdf8afff
MD
548 SCM_ASSERT (beg >= 0 && beg < n_frames, a->first, SCM_ARG3, s_display_backtrace);
549 SCM_ASSERT (n > 0, a->depth, SCM_ARG4, s_display_backtrace);
ab4f3efb
MD
550
551 /* Create a string port used for adaptation of printing parameters. */
552 sport = scm_mkstrport (SCM_INUM0,
553 scm_make_string (SCM_MAKINUM (240), SCM_UNDEFINED),
554 SCM_OPN | SCM_WRTNG,
1bbd0b84 555 FUNC_NAME);
ab4f3efb
MD
556
557 /* Create a print state for printing of frames. */
558 print_state = scm_make_print_state ();
559 pstate = SCM_PRINT_STATE (print_state);
560 pstate->writingp = 1;
561 pstate->fancyp = 1;
562
563 /* First find out if it's reasonable to do indentation. */
564 if (SCM_BACKWARDS_P)
565 indent_p = 0;
566 else
567 {
568 indent_p = 1;
bdf8afff 569 frame = scm_stack_ref (a->stack, SCM_MAKINUM (beg));
ab4f3efb
MD
570 for (i = 0, j = 0; i < n; ++i)
571 {
572 if (SCM_FRAME_REAL_P (frame))
573 ++j;
574 if (j > SCM_BACKTRACE_INDENT)
575 {
576 indent_p = 0;
577 break;
578 }
579 frame = (SCM_BACKWARDS_P
580 ? SCM_FRAME_PREV (frame)
581 : SCM_FRAME_NEXT (frame));
582 }
583 }
584
585 /* Determine size of frame number field. */
bdf8afff 586 j = SCM_FRAME_NUMBER (scm_stack_ref (a->stack, SCM_MAKINUM (end)));
ab4f3efb
MD
587 for (i = 0; j > 0; ++i) j /= 10;
588 nfield = i ? i : 1;
589
ab4f3efb 590 /* Print frames. */
bdf8afff 591 frame = scm_stack_ref (a->stack, SCM_MAKINUM (beg));
ab4f3efb 592 indentation = 1;
bdf8afff 593 display_frame (frame, nfield, indentation, sport, a->port, pstate);
ab4f3efb
MD
594 for (i = 1; i < n; ++i)
595 {
596 if (indent_p && SCM_FRAME_EVAL_ARGS_P (frame))
597 ++indentation;
598 frame = SCM_BACKWARDS_P ? SCM_FRAME_PREV (frame) : SCM_FRAME_NEXT (frame);
bdf8afff 599 display_frame (frame, nfield, indentation, sport, a->port, pstate);
ab4f3efb 600 }
bdf8afff
MD
601
602 return SCM_UNSPECIFIED;
603}
1bbd0b84 604#undef FUNC_NAME
bdf8afff 605
1bbd0b84
GB
606GUILE_PROC(scm_display_backtrace, "display-backtrace", 2, 2, 0,
607 (SCM stack, SCM port, SCM first, SCM depth),
608"")
609#define FUNC_NAME s_scm_display_backtrace
bdf8afff 610{
0b2cb4ee
MD
611 struct display_backtrace_args a;
612 struct display_error_handler_data data;
613 a.stack = stack;
614 a.port = port;
615 a.first = first;
616 a.depth = depth;
617 data.mode = "backtrace";
618 data.port = port;
bdf8afff
MD
619 scm_internal_catch (SCM_BOOL_T,
620 (scm_catch_body_t) display_backtrace_body, &a,
621 (scm_catch_handler_t) display_error_handler, &data);
ab4f3efb
MD
622 return SCM_UNSPECIFIED;
623}
1bbd0b84 624#undef FUNC_NAME
ab4f3efb 625
78f9f47b 626SCM_VCELL (scm_has_shown_backtrace_hint_p_var, "has-shown-backtrace-hint?");
5aab5d96 627
1bbd0b84
GB
628GUILE_PROC(scm_backtrace, "backtrace", 0, 0, 0,
629 (),
630"")
631#define FUNC_NAME s_scm_backtrace
5aab5d96 632{
b6609fc7 633 SCM the_last_stack = scm_fluid_ref (SCM_CDR (scm_the_last_stack_fluid));
a5d6d578 634 if (SCM_NFALSEP (the_last_stack))
5aab5d96
MD
635 {
636 scm_newline (scm_cur_outp);
3a1f8447 637 scm_puts ("Backtrace:\n", scm_cur_outp);
a5d6d578 638 scm_display_backtrace (the_last_stack,
5aab5d96
MD
639 scm_cur_outp,
640 SCM_UNDEFINED,
641 SCM_UNDEFINED);
642 scm_newline (scm_cur_outp);
643 if (SCM_FALSEP (SCM_CDR (scm_has_shown_backtrace_hint_p_var))
644 && !SCM_BACKTRACE_P)
645 {
b7f3516f
TT
646 scm_puts ("Type \"(debug-enable 'backtrace)\" if you would like "
647 "a backtrace\n"
648 "automatically if an error occurs in the future.\n",
649 scm_cur_outp);
5aab5d96
MD
650 SCM_SETCDR (scm_has_shown_backtrace_hint_p_var, SCM_BOOL_T);
651 }
652 }
653 else
654 {
b7f3516f 655 scm_puts ("No backtrace available.\n", scm_cur_outp);
5aab5d96
MD
656 }
657 return SCM_UNSPECIFIED;
658}
1bbd0b84 659#undef FUNC_NAME
5aab5d96 660
ab4f3efb
MD
661\f
662
663void
664scm_init_backtrace ()
665{
a5d6d578 666 SCM f = scm_make_fluid ();
b6609fc7 667 scm_the_last_stack_fluid = scm_sysintern ("the-last-stack", f);
5aab5d96 668
ab4f3efb
MD
669#include "backtrace.x"
670}