Greg's smob patch
[bpt/guile.git] / libguile / debug.c
CommitLineData
f0e9217a 1/* Debugging extensions for Guile
7dc6e754 2 * Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation
ee340120
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
ee340120
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 */
f0e9217a
MD
45
46#include <stdio.h>
47#include "_scm.h"
20e6290e 48#include "eval.h"
a6e350dd 49#include "stackchk.h"
20e6290e
JB
50#include "throw.h"
51#include "genio.h"
41d3b325 52#include "macros.h"
20e6290e
JB
53#include "smob.h"
54#include "procprop.h"
55#include "srcprop.h"
56#include "alist.h"
57#include "continuations.h"
58#include "strports.h"
59#include "read.h"
60#include "feature.h"
260b1416 61#include "dynwind.h"
650de6d7 62#include "modules.h"
f0e9217a 63
20e6290e 64#include "debug.h"
f0e9217a
MD
65\f
66
67/* {Run time control of the debugging evaluator}
68 */
69
5e8d7fd4 70SCM_PROC (s_debug_options, "debug-options-interface", 0, 1, 0, scm_debug_options);
1cc91f1b 71
f0e9217a 72SCM
5e8d7fd4
MD
73scm_debug_options (setting)
74 SCM setting;
f0e9217a
MD
75{
76 SCM ans;
77 SCM_DEFER_INTS;
5e8d7fd4
MD
78 ans = scm_options (setting,
79 scm_debug_opts,
80 SCM_N_DEBUG_OPTIONS,
81 s_debug_options);
f0e9217a 82#ifndef SCM_RECKLESS
5e8d7fd4 83 if (!(1 <= SCM_N_FRAMES && SCM_N_FRAMES <= SCM_MAX_FRAME_SIZE))
f0e9217a 84 {
5e8d7fd4 85 scm_options (ans, scm_debug_opts, SCM_N_DEBUG_OPTIONS, s_debug_options);
52859adf 86 scm_out_of_range (s_debug_options, setting);
f0e9217a
MD
87 }
88#endif
5e8d7fd4 89 SCM_RESET_DEBUG_MODE;
a6e350dd 90 scm_stack_checking_enabled_p = SCM_STACK_CHECKING_P;
5e8d7fd4 91 scm_debug_eframe_size = 2 * SCM_N_FRAMES;
f0e9217a
MD
92 SCM_ALLOW_INTS
93 return ans;
94}
95
260b1416
MD
96SCM_PROC (s_with_traps, "with-traps", 1, 0, 0, scm_with_traps);
97
98static void
99with_traps_before (void *data)
100{
101 int *trap_flag = data;
102 *trap_flag = SCM_TRAPS_P;
103 SCM_TRAPS_P = 1;
104}
105
106static void
107with_traps_after (void *data)
108{
109 int *trap_flag = data;
110 SCM_TRAPS_P = *trap_flag;
111}
112
113static SCM
114with_traps_inner (void *data)
115{
116 SCM thunk = (SCM) data;
117 return scm_apply (thunk, SCM_EOL, SCM_EOL);
118}
1cc91f1b 119
f0e9217a 120SCM
260b1416 121scm_with_traps (SCM thunk)
f0e9217a 122{
260b1416
MD
123 int trap_flag;
124 SCM_ASSERT (SCM_NFALSEP (scm_thunk_p (thunk)),
125 thunk,
126 SCM_ARG1,
127 s_with_traps);
128 return scm_internal_dynamic_wind (with_traps_before,
129 with_traps_inner,
130 with_traps_after,
131 (void *) thunk,
132 &trap_flag);
f0e9217a
MD
133}
134
135\f
136static SCM scm_i_source, scm_i_more;
137static SCM scm_i_proc, scm_i_args, scm_i_eval_args;
138static SCM scm_i_procname;
139
140/* {Memoized Source}
141 */
142
143long scm_tc16_memoized;
144
1cc91f1b
JB
145
146static int prinmemoized SCM_P ((SCM obj, SCM port, scm_print_state *pstate));
147
f0e9217a 148static int
9882ea19 149prinmemoized (obj, port, pstate)
f0e9217a
MD
150 SCM obj;
151 SCM port;
9882ea19 152 scm_print_state *pstate;
f0e9217a 153{
9882ea19 154 int writingp = SCM_WRITINGP (pstate);
b7f3516f 155 scm_puts ("#<memoized ", port);
9882ea19 156 SCM_SET_WRITINGP (pstate, 1);
33b97402
MD
157#ifdef GUILE_DEBUG
158 scm_iprin1 (SCM_MEMOIZED_EXP (obj), port, pstate);
159#else
9882ea19 160 scm_iprin1 (scm_unmemoize (obj), port, pstate);
33b97402 161#endif
9882ea19 162 SCM_SET_WRITINGP (pstate, writingp);
b7f3516f 163 scm_putc ('>', port);
f0e9217a
MD
164 return 1;
165}
166
f0e9217a 167SCM_PROC (s_memoized_p, "memoized?", 1, 0, 0, scm_memoized_p);
1cc91f1b 168
f0e9217a
MD
169SCM
170scm_memoized_p (obj)
171 SCM obj;
f0e9217a
MD
172{
173 return SCM_NIMP (obj) && SCM_MEMOIZEDP (obj) ? SCM_BOOL_T : SCM_BOOL_F;
174}
175
f0e9217a 176SCM
bba4bfdb 177scm_make_memoized (exp, env)
1cc91f1b
JB
178 SCM exp;
179 SCM env;
f0e9217a 180{
6c179711 181 /* *fixme* Check that env is a valid environment. */
f0e9217a 182 register SCM z, ans;
f83e2737 183 SCM_ENTER_A_SECTION;
23a62151
MD
184 SCM_NEWSMOB (z, exp, env);
185 SCM_NEWSMOB (ans, scm_tc16_memoized, z);
f83e2737 186 SCM_EXIT_A_SECTION;
f0e9217a
MD
187 return ans;
188}
189
33b97402
MD
190#ifdef GUILE_DEBUG
191/*
192 * Some primitives for construction of memoized code
193 *
194 * - procedure: memcons CAR CDR [ENV]
195 *
196 * Construct a pair, encapsulated in a memoized object.
197 *
198 * The CAR and CDR can be either normal or memoized. If ENV isn't
199 * specified, the top-level environment of the current module will
200 * be assumed. All environments must match.
201 *
202 * - procedure: make-gloc VARIABLE [ENV]
203 *
204 * Return a gloc, encapsulated in a memoized object.
205 *
206 * (Glocs can't exist in normal list structures, since they will
207 * be mistaken for structs.)
208 *
209 * - procedure: gloc? OBJECT
210 *
211 * Return #t if OBJECT is a memoized gloc.
212 *
213 * - procedure: make-iloc FRAME BINDING CDRP
214 *
215 * Return an iloc referring to frame no. FRAME, binding
216 * no. BINDING. If CDRP is non-#f, the iloc is referring to a
217 * frame consisting of a single pair, with the value stored in the
218 * CDR.
219 *
220 * - procedure: iloc? OBJECT
221 *
222 * Return #t if OBJECT is an iloc.
223 *
224 * - procedure: mem->proc MEMOIZED
225 *
226 * Construct a closure from the memoized lambda expression MEMOIZED
227 *
228 * WARNING! The code is not copied!
229 *
230 * - procedure: proc->mem CLOSURE
231 *
232 * Turn the closure CLOSURE into a memoized object.
233 *
234 * WARNING! The code is not copied!
235 *
236 * - constant: SCM_IM_AND
237 * - constant: SCM_IM_BEGIN
238 * - constant: SCM_IM_CASE
239 * - constant: SCM_IM_COND
240 * - constant: SCM_IM_DO
241 * - constant: SCM_IM_IF
242 * - constant: SCM_IM_LAMBDA
243 * - constant: SCM_IM_LET
244 * - constant: SCM_IM_LETSTAR
245 * - constant: SCM_IM_LETREC
246 * - constant: SCM_IM_OR
247 * - constant: SCM_IM_QUOTE
248 * - constant: SCM_IM_SET
249 * - constant: SCM_IM_DEFINE
250 * - constant: SCM_IM_APPLY
251 * - constant: SCM_IM_CONT
bbab09f6 252 * - constant: SCM_IM_DISPATCH
33b97402
MD
253 */
254
255#include "variable.h"
256#include "procs.h"
257
258SCM_PROC (s_make_gloc, "make-gloc", 1, 1, 0, scm_make_gloc);
259
260SCM
261scm_make_gloc (var, env)
262 SCM var;
263 SCM env;
264{
265#if 1 /* Unsafe */
266 if (SCM_NIMP (var) && SCM_CONSP (var))
267 var = scm_cons (SCM_BOOL_F, var);
268 else
269#endif
270 SCM_ASSERT (SCM_NIMP (var) && SCM_VARIABLEP (var),
271 var,
272 SCM_ARG1,
273 s_make_gloc);
274 if (SCM_UNBNDP (env))
275 env = scm_top_level_env (SCM_CDR (scm_top_level_lookup_closure_var));
276 else
277 SCM_ASSERT (SCM_NULLP (env) || (SCM_NIMP (env) && SCM_CONSP (env)),
278 env,
279 SCM_ARG2,
280 s_make_gloc);
281 return scm_make_memoized (SCM_VARVCELL (var) + 1, env);
282}
283
284SCM_PROC (s_gloc_p, "gloc?", 1, 0, 0, scm_gloc_p);
285
286SCM
287scm_gloc_p (obj)
288 SCM obj;
289{
290 return ((SCM_NIMP (obj)
291 && SCM_MEMOIZEDP (obj)
292 && (SCM_MEMOIZED_EXP (obj) & 7) == 1)
293 ? SCM_BOOL_T
294 : SCM_BOOL_F);
295}
296
297SCM_PROC (s_make_iloc, "make-iloc", 3, 0, 0, scm_make_iloc);
298
299SCM
300scm_make_iloc (frame, binding, cdrp)
301 SCM frame;
302 SCM binding;
303 SCM cdrp;
304{
305 SCM_ASSERT (SCM_INUMP (frame), frame, SCM_ARG1, s_make_iloc);
306 SCM_ASSERT (SCM_INUMP (binding), binding, SCM_ARG2, s_make_iloc);
307 return (SCM_ILOC00
308 + SCM_IFRINC * SCM_INUM (frame)
309 + (SCM_NFALSEP (cdrp) ? SCM_ICDR : 0)
310 + SCM_IDINC * SCM_INUM (binding));
311}
312
313SCM_PROC (s_iloc_p, "iloc?", 1, 0, 0, scm_iloc_p);
314
315SCM
316scm_iloc_p (obj)
317 SCM obj;
318{
319 return SCM_ILOCP (obj) ? SCM_BOOL_T : SCM_BOOL_F;
320}
321
322SCM_PROC (s_memcons, "memcons", 2, 1, 0, scm_memcons);
323
324SCM
325scm_memcons (car, cdr, env)
326 SCM car;
327 SCM cdr;
328 SCM env;
329{
330 if (SCM_NIMP (car) && SCM_MEMOIZEDP (car))
331 {
332 /*fixme* environments may be two different but equal top-level envs */
333 if (!SCM_UNBNDP (env) && SCM_MEMOIZED_ENV (car) != env)
334 scm_misc_error (s_memcons,
335 "environment mismatch arg1 <-> arg3",
336 scm_cons2 (car, env, SCM_EOL));
337 else
338 env = SCM_MEMOIZED_ENV (car);
339 car = SCM_MEMOIZED_EXP (car);
340 }
341 if (SCM_NIMP (cdr) && SCM_MEMOIZEDP (cdr))
342 {
343 if (!SCM_UNBNDP (env) && SCM_MEMOIZED_ENV (cdr) != env)
344 scm_misc_error (s_memcons,
345 "environment mismatch arg2 <-> arg3",
346 scm_cons2 (cdr, env, SCM_EOL));
347 else
348 env = SCM_MEMOIZED_ENV (cdr);
349 cdr = SCM_MEMOIZED_EXP (cdr);
350 }
351 if (SCM_UNBNDP (env))
352 env = scm_top_level_env (SCM_CDR (scm_top_level_lookup_closure_var));
353 else
354 SCM_ASSERT (SCM_NULLP (env) || (SCM_NIMP (env) && SCM_CONSP (env)),
355 env,
356 SCM_ARG3,
357 s_make_iloc);
358 return scm_make_memoized (scm_cons (car, cdr), env);
359}
360
361SCM_PROC (s_mem_to_proc, "mem->proc", 1, 0, 0, scm_mem_to_proc);
362
363SCM
364scm_mem_to_proc (obj)
365 SCM obj;
366{
367 SCM env;
368 SCM_ASSERT (SCM_NIMP (obj) && SCM_MEMOIZEDP (obj),
369 obj,
370 SCM_ARG1,
371 s_mem_to_proc);
372 env = SCM_MEMOIZED_ENV (obj);
373 obj = SCM_MEMOIZED_EXP (obj);
374 if (!(SCM_NIMP (obj) && SCM_CAR (obj) == SCM_IM_LAMBDA))
375 scm_misc_error (s_mem_to_proc,
376 "expected lambda expression",
377 scm_cons (obj, SCM_EOL));
378 return scm_closure (SCM_CDR (obj), env);
379}
380
381SCM_PROC (s_proc_to_mem, "proc->mem", 1, 0, 0, scm_proc_to_mem);
382
383SCM
384scm_proc_to_mem (obj)
385 SCM obj;
386{
387 SCM_ASSERT (SCM_NIMP (obj) && SCM_CLOSUREP (obj),
388 obj,
389 SCM_ARG1,
390 s_proc_to_mem);
391 return scm_make_memoized (scm_cons (SCM_IM_LAMBDA, SCM_CODE (obj)),
392 SCM_ENV (obj));
393}
394
395#endif /* GUILE_DEBUG */
396
f0e9217a 397SCM_PROC (s_unmemoize, "unmemoize", 1, 0, 0, scm_unmemoize);
1cc91f1b 398
f0e9217a
MD
399SCM
400scm_unmemoize (m)
401 SCM m;
f0e9217a 402{
6c179711 403 SCM_ASSERT (SCM_NIMP (m) && SCM_MEMOIZEDP (m), m, SCM_ARG1, s_unmemoize);
bfe3154c 404 return scm_unmemocopy (SCM_MEMOIZED_EXP (m), SCM_MEMOIZED_ENV (m));
f0e9217a
MD
405}
406
407SCM_PROC (s_memoized_environment, "memoized-environment", 1, 0, 0, scm_memoized_environment);
1cc91f1b 408
f0e9217a
MD
409SCM
410scm_memoized_environment (m)
411 SCM m;
f0e9217a 412{
6c179711 413 SCM_ASSERT (SCM_NIMP (m) && SCM_MEMOIZEDP (m), m, SCM_ARG1, s_unmemoize);
bfe3154c 414 return SCM_MEMOIZED_ENV (m);
f0e9217a
MD
415}
416
417SCM_PROC (s_procedure_name, "procedure-name", 1, 0, 0, scm_procedure_name);
1cc91f1b 418
f0e9217a
MD
419SCM
420scm_procedure_name (proc)
421 SCM proc;
f0e9217a
MD
422{
423 SCM_ASSERT(scm_procedure_p (proc) == SCM_BOOL_T,
424 proc,
425 SCM_ARG1,
426 s_procedure_name);
427 switch (SCM_TYP7 (proc)) {
a726dd9d
MD
428 case scm_tcs_subrs:
429 return SCM_SNAME (proc);
430 default:
f0e9217a
MD
431 {
432 SCM name = scm_procedure_property (proc, scm_i_name);
433#if 0
80ea260c 434 /* Source property scm_i_procname not implemented yet... */
f0e9217a
MD
435 SCM name = scm_source_property (SCM_CAR (SCM_CDR (SCM_CODE (proc))), scm_i_procname);
436 if (SCM_FALSEP (name))
437 name = scm_procedure_property (proc, scm_i_name);
438#endif
80ea260c
MD
439 if (SCM_FALSEP (name))
440 name = scm_procedure_property (proc, scm_i_inner_name);
f0e9217a
MD
441 return name;
442 }
f0e9217a
MD
443 }
444}
445
446SCM_PROC (s_procedure_source, "procedure-source", 1, 0, 0, scm_procedure_source);
1cc91f1b 447
f0e9217a
MD
448SCM
449scm_procedure_source (proc)
450 SCM proc;
f0e9217a
MD
451{
452 SCM_ASSERT(SCM_NIMP (proc), proc, SCM_ARG1, s_procedure_source);
453 switch (SCM_TYP7 (proc)) {
454 case scm_tcs_closures:
455 {
456 SCM src;
457 src = scm_source_property (SCM_CDR (SCM_CODE (proc)), scm_i_copy);
458 if (src != SCM_BOOL_F)
459 return scm_cons2 (scm_i_lambda, SCM_CAR (SCM_CODE (proc)), src);
460 src = SCM_CODE (proc);
461 return scm_cons (scm_i_lambda,
462 scm_unmemocopy (src,
e2806c10 463 SCM_EXTEND_ENV (SCM_CAR (src),
f0e9217a
MD
464 SCM_EOL,
465 SCM_ENV (proc))));
466 }
467 case scm_tc7_contin:
468 case scm_tcs_subrs:
469#ifdef CCLO
470 case scm_tc7_cclo:
471#endif
472 /* It would indeed be a nice thing if we supplied source even for
473 built in procedures! */
474 return scm_procedure_property (proc, scm_i_source);
475 default:
476 scm_wta (proc, (char *) SCM_ARG1, s_procedure_source);
477 return 0;
478 }
479}
480
481SCM_PROC (s_procedure_environment, "procedure-environment", 1, 0, 0, scm_procedure_environment);
1cc91f1b 482
f0e9217a
MD
483SCM
484scm_procedure_environment (proc)
485 SCM proc;
f0e9217a
MD
486{
487 SCM_ASSERT (SCM_NIMP (proc), proc, SCM_ARG1, s_procedure_environment);
488 switch (SCM_TYP7 (proc)) {
489 case scm_tcs_closures:
490 return SCM_ENV (proc);
491 case scm_tc7_contin:
492 case scm_tcs_subrs:
493#ifdef CCLO
494 case scm_tc7_cclo:
495#endif
496 return SCM_EOL;
497 default:
498 scm_wta (proc, (char *) SCM_ARG1, s_procedure_environment);
499 return 0;
500 }
501}
502
bfe3154c 503\f
f0e9217a
MD
504
505/* Eval in a local environment. We would like to have the ability to
e38ecb05
MD
506 * evaluate in a specified local environment, but due to the
507 * memoization this isn't normally possible. We solve it by copying
508 * the code before evaluating. One solution would be to have eval.c
509 * generate yet another evaluator. They are not very big actually.
f0e9217a 510 */
6c179711 511SCM_PROC (s_local_eval, "local-eval", 1, 1, 0, scm_local_eval);
1cc91f1b 512
f0e9217a
MD
513SCM
514scm_local_eval (exp, env)
515 SCM exp;
516 SCM env;
f0e9217a 517{
6c179711
MD
518 if (SCM_UNBNDP (env))
519 {
b210cb73 520 SCM_ASSERT (SCM_NIMP (exp) && SCM_MEMOIZEDP (exp), exp, SCM_ARG1, s_local_eval);
6c179711
MD
521 return scm_eval_3 (SCM_MEMOIZED_EXP (exp), 0, SCM_MEMOIZED_ENV (exp));
522 }
f0e9217a
MD
523 return scm_eval_3 (exp, 1, env);
524}
525
bfe3154c 526SCM
9fa2c7b1
MD
527scm_start_stack (id, exp, env)
528 SCM id;
bfe3154c
MD
529 SCM exp;
530 SCM env;
531{
532 SCM answer;
c6b8a41a 533 scm_debug_frame vframe;
c0ab1b8d 534 scm_debug_info vframe_vect_body;
9fa2c7b1
MD
535 vframe.prev = scm_last_debug_frame;
536 vframe.status = SCM_VOIDFRAME;
537 vframe.vect = &vframe_vect_body;
538 vframe.vect[0].id = id;
539 scm_last_debug_frame = &vframe;
cb412265 540 answer = scm_eval_3 (exp, 1, env);
9fa2c7b1
MD
541 scm_last_debug_frame = vframe.prev;
542 return answer;
543}
544
b8229a3b
MS
545SCM_SYNTAX(s_start_stack, "start-stack", scm_makacro, scm_m_start_stack);
546
8a04c1a2 547static SCM
9fa2c7b1
MD
548scm_m_start_stack (exp, env)
549 SCM exp;
550 SCM env;
551{
bfe3154c 552 exp = SCM_CDR (exp);
c6b8a41a 553 SCM_ASSERT (SCM_NIMP (exp)
e38ecb05 554 && SCM_ECONSP (exp)
c6b8a41a 555 && SCM_NIMP (SCM_CDR (exp))
e38ecb05 556 && SCM_ECONSP (SCM_CDR (exp))
c6b8a41a 557 && SCM_NULLP (SCM_CDDR (exp)),
bfe3154c
MD
558 exp,
559 SCM_WNA,
560 s_start_stack);
9fa2c7b1 561 return scm_start_stack (scm_eval_car (exp, env), SCM_CADR (exp), env);
bfe3154c 562}
f0e9217a
MD
563
564/* {Debug Objects}
565 *
566 * The debugging evaluator throws these on frame traps.
567 */
568
569long scm_tc16_debugobj;
570
1cc91f1b
JB
571static int prindebugobj SCM_P ((SCM obj, SCM port, scm_print_state *pstate));
572
f0e9217a 573static int
1cc91f1b 574prindebugobj (obj, port, pstate)
9882ea19
MD
575 SCM obj;
576 SCM port;
577 scm_print_state *pstate;
f0e9217a 578{
b7f3516f 579 scm_puts ("#<debug-object ", port);
bfe3154c 580 scm_intprint (SCM_DEBUGOBJ_FRAME (obj), 16, port);
b7f3516f 581 scm_putc ('>', port);
f0e9217a
MD
582 return 1;
583}
584
f0e9217a 585SCM_PROC (s_debug_object_p, "debug-object?", 1, 0, 0, scm_debug_object_p);
1cc91f1b 586
f0e9217a
MD
587SCM
588scm_debug_object_p (obj)
589 SCM obj;
f0e9217a 590{
bfe3154c 591 return SCM_NIMP (obj) && SCM_DEBUGOBJP (obj) ? SCM_BOOL_T : SCM_BOOL_F;
f0e9217a
MD
592}
593
1cc91f1b 594
f0e9217a
MD
595SCM
596scm_make_debugobj (frame)
597 scm_debug_frame *frame;
f0e9217a
MD
598{
599 register SCM z;
f0e9217a 600 SCM_NEWCELL (z);
f83e2737 601 SCM_ENTER_A_SECTION;
a6c64c3c 602 SCM_SET_DEBUGOBJ_FRAME (z, (SCM) frame);
f83e2737
MD
603 SCM_SETCAR (z, scm_tc16_debugobj);
604 SCM_EXIT_A_SECTION;
f0e9217a
MD
605 return z;
606}
607
f0e9217a
MD
608\f
609
fe57f652
MD
610/* Undocumented debugging procedure */
611#ifdef GUILE_DEBUG
e38ecb05
MD
612SCM_PROC (s_debug_hang, "debug-hang", 0, 1, 0, scm_debug_hang);
613
614SCM
615scm_debug_hang (obj)
616 SCM obj;
617{
618 int go = 0;
619 while (!go) ;
620 return SCM_UNSPECIFIED;
621}
fe57f652 622#endif
e38ecb05
MD
623
624\f
625
f0e9217a
MD
626void
627scm_init_debug ()
628{
5e8d7fd4 629 scm_init_opts (scm_debug_options, scm_debug_opts, SCM_N_DEBUG_OPTIONS);
ee340120 630
23a62151
MD
631 scm_tc16_memoized = scm_make_smob_type_mfpe ("memoized", 0,
632 scm_markcdr, NULL, prinmemoized, NULL);
633
634 scm_tc16_debugobj = scm_make_smob_type_mfpe ("debug-object", 0,
635 NULL, NULL, prindebugobj, NULL);
f0e9217a
MD
636
637 scm_i_procname = SCM_CAR (scm_sysintern ("procname", SCM_UNDEFINED));
638 scm_i_more = SCM_CAR (scm_sysintern ("...", SCM_UNDEFINED));
639 scm_i_source = SCM_CAR (scm_sysintern ("source", SCM_UNDEFINED));
640 scm_i_proc = SCM_CAR (scm_sysintern ("proc", SCM_UNDEFINED));
641 scm_i_args = SCM_CAR (scm_sysintern ("args", SCM_UNDEFINED));
642 scm_i_eval_args = SCM_CAR (scm_sysintern ("eval-args", SCM_UNDEFINED));
643
33b97402
MD
644#ifdef GUILE_DEBUG
645 scm_sysintern ("SCM_IM_AND", SCM_IM_AND);
646 scm_sysintern ("SCM_IM_BEGIN", SCM_IM_BEGIN);
647 scm_sysintern ("SCM_IM_CASE", SCM_IM_CASE);
648 scm_sysintern ("SCM_IM_COND", SCM_IM_COND);
649 scm_sysintern ("SCM_IM_DO", SCM_IM_DO);
650 scm_sysintern ("SCM_IM_IF", SCM_IM_IF);
651 scm_sysintern ("SCM_IM_LAMBDA", SCM_IM_LAMBDA);
652 scm_sysintern ("SCM_IM_LET", SCM_IM_LET);
653 scm_sysintern ("SCM_IM_LETSTAR", SCM_IM_LETSTAR);
654 scm_sysintern ("SCM_IM_LETREC", SCM_IM_LETREC);
655 scm_sysintern ("SCM_IM_OR", SCM_IM_OR);
656 scm_sysintern ("SCM_IM_QUOTE", SCM_IM_QUOTE);
bbab09f6 657 scm_sysintern ("SCM_IM_SET_X", SCM_IM_SET_X);
33b97402
MD
658 scm_sysintern ("SCM_IM_DEFINE", SCM_IM_DEFINE);
659 scm_sysintern ("SCM_IM_APPLY", SCM_IM_APPLY);
660 scm_sysintern ("SCM_IM_CONT", SCM_IM_CONT);
bbab09f6 661 scm_sysintern ("SCM_IM_DISPATCH", SCM_IM_DISPATCH);
33b97402 662#endif
f0e9217a
MD
663 scm_add_feature ("debug-extensions");
664
665#include "debug.x"
666}