Merge commit 'feccd2d3100fd2964d4c2df58ab3da7ce4949a66' into vm-check
[bpt/guile.git] / libguile / debug.c
CommitLineData
68baa7e7 1/* Debugging extensions for Guile
dbb605f5 2 * Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003, 2006, 2008 Free Software Foundation
ee340120 3 *
73be1d9e
MV
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
ee340120 8 *
73be1d9e 9 * This library is distributed in the hope that it will be useful,
ee340120 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
ee340120 13 *
73be1d9e
MV
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
92205699 16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
73be1d9e 17 */
f0e9217a 18
1bbd0b84 19
dbb605f5
LC
20#ifdef HAVE_CONFIG_H
21# include <config.h>
22#endif
1bbd0b84 23
a0599745 24#include "libguile/_scm.h"
5e3545d0 25#include "libguile/async.h"
a0599745 26#include "libguile/eval.h"
37c56aec 27#include "libguile/list.h"
a0599745
MD
28#include "libguile/stackchk.h"
29#include "libguile/throw.h"
30#include "libguile/macros.h"
31#include "libguile/smob.h"
32#include "libguile/procprop.h"
33#include "libguile/srcprop.h"
34#include "libguile/alist.h"
35#include "libguile/continuations.h"
36#include "libguile/strports.h"
37#include "libguile/read.h"
38#include "libguile/feature.h"
39#include "libguile/dynwind.h"
40#include "libguile/modules.h"
41#include "libguile/ports.h"
42#include "libguile/root.h"
b06a8b87 43#include "libguile/fluids.h"
b3d7f6df 44#include "libguile/objects.h"
e311f5fa 45#include "libguile/programs.h"
a0599745
MD
46
47#include "libguile/validate.h"
48#include "libguile/debug.h"
22fc179a
HWN
49
50#include "libguile/private-options.h"
f0e9217a
MD
51\f
52
22fc179a 53
f0e9217a
MD
54/* {Run time control of the debugging evaluator}
55 */
56
a1ec6916 57SCM_DEFINE (scm_debug_options, "debug-options-interface", 0, 1, 0,
1bbd0b84 58 (SCM setting),
ba94f79e
MG
59 "Option interface for the debug options. Instead of using\n"
60 "this procedure directly, use the procedures @code{debug-enable},\n"
3939e9df 61 "@code{debug-disable}, @code{debug-set!} and @code{debug-options}.")
1bbd0b84 62#define FUNC_NAME s_scm_debug_options
f0e9217a
MD
63{
64 SCM ans;
5e3545d0 65
661ae7ab
MV
66 scm_dynwind_begin (0);
67 scm_dynwind_critical_section (SCM_BOOL_F);
5e3545d0 68
62560650 69 ans = scm_options (setting, scm_debug_opts, FUNC_NAME);
5e8d7fd4 70 if (!(1 <= SCM_N_FRAMES && SCM_N_FRAMES <= SCM_MAX_FRAME_SIZE))
f0e9217a 71 {
62560650 72 scm_options (ans, scm_debug_opts, FUNC_NAME);
1e76143f 73 SCM_OUT_OF_RANGE (1, setting);
f0e9217a 74 }
5e8d7fd4 75 SCM_RESET_DEBUG_MODE;
c0934652 76#ifdef STACK_CHECKING
a6e350dd 77 scm_stack_checking_enabled_p = SCM_STACK_CHECKING_P;
c0934652 78#endif
5e8d7fd4 79 scm_debug_eframe_size = 2 * SCM_N_FRAMES;
5e3545d0 80
661ae7ab 81 scm_dynwind_end ();
f0e9217a
MD
82 return ans;
83}
1bbd0b84 84#undef FUNC_NAME
260b1416 85
22fc179a 86
260b1416
MD
87static void
88with_traps_before (void *data)
89{
90 int *trap_flag = data;
91 *trap_flag = SCM_TRAPS_P;
92 SCM_TRAPS_P = 1;
93}
94
95static void
96with_traps_after (void *data)
97{
98 int *trap_flag = data;
99 SCM_TRAPS_P = *trap_flag;
100}
101
102static SCM
103with_traps_inner (void *data)
104{
702551e6 105 SCM thunk = SCM_PACK ((scm_t_bits) data);
fdc28395 106 return scm_call_0 (thunk);
260b1416 107}
1cc91f1b 108
a1ec6916 109SCM_DEFINE (scm_with_traps, "with-traps", 1, 0, 0,
1bbd0b84 110 (SCM thunk),
ba94f79e 111 "Call @var{thunk} with traps enabled.")
1bbd0b84 112#define FUNC_NAME s_scm_with_traps
f0e9217a 113{
260b1416 114 int trap_flag;
34d19ef6 115 SCM_VALIDATE_THUNK (1, thunk);
260b1416
MD
116 return scm_internal_dynamic_wind (with_traps_before,
117 with_traps_inner,
118 with_traps_after,
451e591c 119 (void *) SCM_UNPACK (thunk),
260b1416 120 &trap_flag);
f0e9217a 121}
1bbd0b84 122#undef FUNC_NAME
f0e9217a
MD
123
124\f
85db4a2c
DH
125SCM_SYMBOL (scm_sym_procname, "procname");
126SCM_SYMBOL (scm_sym_dots, "...");
127SCM_SYMBOL (scm_sym_source, "source");
f0e9217a
MD
128
129/* {Memoized Source}
130 */
131
92c2555f 132scm_t_bits scm_tc16_memoized;
1cc91f1b 133
f0e9217a 134static int
e841c3e0 135memoized_print (SCM obj, SCM port, scm_print_state *pstate)
f0e9217a 136{
9882ea19 137 int writingp = SCM_WRITINGP (pstate);
b7f3516f 138 scm_puts ("#<memoized ", port);
9882ea19 139 SCM_SET_WRITINGP (pstate, 1);
33b97402 140 scm_iprin1 (SCM_MEMOIZED_EXP (obj), port, pstate);
9882ea19 141 SCM_SET_WRITINGP (pstate, writingp);
b7f3516f 142 scm_putc ('>', port);
f0e9217a
MD
143 return 1;
144}
145
a1ec6916 146SCM_DEFINE (scm_memoized_p, "memoized?", 1, 0, 0,
1bbd0b84 147 (SCM obj),
ba94f79e 148 "Return @code{#t} if @var{obj} is memoized.")
1bbd0b84 149#define FUNC_NAME s_scm_memoized_p
f0e9217a 150{
7888309b 151 return scm_from_bool(SCM_MEMOIZEDP (obj));
f0e9217a 152}
1bbd0b84 153#undef FUNC_NAME
f0e9217a 154
f0e9217a 155SCM
1bbd0b84 156scm_make_memoized (SCM exp, SCM env)
f0e9217a 157{
6c179711 158 /* *fixme* Check that env is a valid environment. */
d193b04b 159 SCM_RETURN_NEWSMOB (scm_tc16_memoized, SCM_UNPACK (scm_cons (exp, env)));
f0e9217a
MD
160}
161
33b97402
MD
162#ifdef GUILE_DEBUG
163/*
164 * Some primitives for construction of memoized code
165 *
166 * - procedure: memcons CAR CDR [ENV]
167 *
168 * Construct a pair, encapsulated in a memoized object.
169 *
170 * The CAR and CDR can be either normal or memoized. If ENV isn't
171 * specified, the top-level environment of the current module will
172 * be assumed. All environments must match.
173 *
33b97402
MD
174 * - procedure: make-iloc FRAME BINDING CDRP
175 *
176 * Return an iloc referring to frame no. FRAME, binding
177 * no. BINDING. If CDRP is non-#f, the iloc is referring to a
178 * frame consisting of a single pair, with the value stored in the
179 * CDR.
180 *
181 * - procedure: iloc? OBJECT
182 *
183 * Return #t if OBJECT is an iloc.
184 *
185 * - procedure: mem->proc MEMOIZED
186 *
187 * Construct a closure from the memoized lambda expression MEMOIZED
188 *
189 * WARNING! The code is not copied!
190 *
191 * - procedure: proc->mem CLOSURE
192 *
193 * Turn the closure CLOSURE into a memoized object.
194 *
195 * WARNING! The code is not copied!
196 *
197 * - constant: SCM_IM_AND
198 * - constant: SCM_IM_BEGIN
199 * - constant: SCM_IM_CASE
200 * - constant: SCM_IM_COND
201 * - constant: SCM_IM_DO
202 * - constant: SCM_IM_IF
203 * - constant: SCM_IM_LAMBDA
204 * - constant: SCM_IM_LET
205 * - constant: SCM_IM_LETSTAR
206 * - constant: SCM_IM_LETREC
207 * - constant: SCM_IM_OR
208 * - constant: SCM_IM_QUOTE
209 * - constant: SCM_IM_SET
210 * - constant: SCM_IM_DEFINE
211 * - constant: SCM_IM_APPLY
212 * - constant: SCM_IM_CONT
bbab09f6 213 * - constant: SCM_IM_DISPATCH
33b97402
MD
214 */
215
a0599745
MD
216#include "libguile/variable.h"
217#include "libguile/procs.h"
33b97402 218
a1ec6916 219SCM_DEFINE (scm_memcons, "memcons", 2, 1, 0,
1bbd0b84 220 (SCM car, SCM cdr, SCM env),
ba94f79e
MG
221 "Return a new memoized cons cell with @var{car} and @var{cdr}\n"
222 "as members and @var{env} as the environment.")
1bbd0b84 223#define FUNC_NAME s_scm_memcons
33b97402 224{
0c95b57d 225 if (SCM_MEMOIZEDP (car))
33b97402
MD
226 {
227 /*fixme* environments may be two different but equal top-level envs */
228 if (!SCM_UNBNDP (env) && SCM_MEMOIZED_ENV (car) != env)
e8e9b690 229 SCM_MISC_ERROR ("environment mismatch arg1 <-> arg3",
37c56aec 230 scm_list_2 (car, env));
33b97402
MD
231 else
232 env = SCM_MEMOIZED_ENV (car);
233 car = SCM_MEMOIZED_EXP (car);
234 }
0c95b57d 235 if (SCM_MEMOIZEDP (cdr))
33b97402
MD
236 {
237 if (!SCM_UNBNDP (env) && SCM_MEMOIZED_ENV (cdr) != env)
e8e9b690 238 SCM_MISC_ERROR ("environment mismatch arg2 <-> arg3",
37c56aec 239 scm_list_2 (cdr, env));
33b97402
MD
240 else
241 env = SCM_MEMOIZED_ENV (cdr);
242 cdr = SCM_MEMOIZED_EXP (cdr);
243 }
244 if (SCM_UNBNDP (env))
7e73eaee 245 env = scm_top_level_env (SCM_TOP_LEVEL_LOOKUP_CLOSURE);
33b97402 246 else
34d19ef6 247 SCM_VALIDATE_NULLORCONS (3, env);
33b97402
MD
248 return scm_make_memoized (scm_cons (car, cdr), env);
249}
1bbd0b84 250#undef FUNC_NAME
33b97402 251
a1ec6916 252SCM_DEFINE (scm_mem_to_proc, "mem->proc", 1, 0, 0,
1bbd0b84 253 (SCM obj),
9fcf3cbb 254 "Convert a memoized object (which must represent a body)\n"
ba94f79e 255 "to a procedure.")
1bbd0b84 256#define FUNC_NAME s_scm_mem_to_proc
33b97402
MD
257{
258 SCM env;
34d19ef6 259 SCM_VALIDATE_MEMOIZED (1, obj);
33b97402
MD
260 env = SCM_MEMOIZED_ENV (obj);
261 obj = SCM_MEMOIZED_EXP (obj);
9fcf3cbb 262 return scm_closure (obj, env);
33b97402 263}
1bbd0b84 264#undef FUNC_NAME
33b97402 265
a1ec6916 266SCM_DEFINE (scm_proc_to_mem, "proc->mem", 1, 0, 0,
1bbd0b84 267 (SCM obj),
ba94f79e 268 "Convert a procedure to a memoized object.")
1bbd0b84 269#define FUNC_NAME s_scm_proc_to_mem
33b97402 270{
5623a9b4 271 SCM_VALIDATE_CLOSURE (1, obj);
9fcf3cbb 272 return scm_make_memoized (SCM_CODE (obj), SCM_ENV (obj));
33b97402 273}
1bbd0b84 274#undef FUNC_NAME
33b97402
MD
275
276#endif /* GUILE_DEBUG */
277
9fcf3cbb 278SCM_DEFINE (scm_i_unmemoize_expr, "unmemoize-expr", 1, 0, 0,
1bbd0b84 279 (SCM m),
ba94f79e 280 "Unmemoize the memoized expression @var{m},")
9fcf3cbb 281#define FUNC_NAME s_scm_i_unmemoize_expr
f0e9217a 282{
34d19ef6 283 SCM_VALIDATE_MEMOIZED (1, m);
9fcf3cbb 284 return scm_i_unmemocopy_expr (SCM_MEMOIZED_EXP (m), SCM_MEMOIZED_ENV (m));
f0e9217a 285}
1bbd0b84 286#undef FUNC_NAME
f0e9217a 287
a1ec6916 288SCM_DEFINE (scm_memoized_environment, "memoized-environment", 1, 0, 0,
1bbd0b84 289 (SCM m),
ba94f79e 290 "Return the environment of the memoized expression @var{m}.")
1bbd0b84 291#define FUNC_NAME s_scm_memoized_environment
f0e9217a 292{
34d19ef6 293 SCM_VALIDATE_MEMOIZED (1, m);
bfe3154c 294 return SCM_MEMOIZED_ENV (m);
f0e9217a 295}
1bbd0b84 296#undef FUNC_NAME
f0e9217a 297
a1ec6916 298SCM_DEFINE (scm_procedure_name, "procedure-name", 1, 0, 0,
1bbd0b84 299 (SCM proc),
ba94f79e 300 "Return the name of the procedure @var{proc}")
1bbd0b84 301#define FUNC_NAME s_scm_procedure_name
f0e9217a 302{
34d19ef6 303 SCM_VALIDATE_PROC (1, proc);
f0e9217a 304 switch (SCM_TYP7 (proc)) {
a726dd9d
MD
305 case scm_tcs_subrs:
306 return SCM_SNAME (proc);
307 default:
f0e9217a 308 {
63c51b9a 309 SCM name = scm_procedure_property (proc, scm_sym_name);
f0e9217a 310#if 0
63c51b9a 311 /* Source property scm_sym_procname not implemented yet... */
f9450cdb 312 SCM name = scm_source_property (SCM_CAR (SCM_CLOSURE_BODY (proc)), scm_sym_procname);
7888309b 313 if (scm_is_false (name))
63c51b9a 314 name = scm_procedure_property (proc, scm_sym_name);
f0e9217a 315#endif
7888309b 316 if (scm_is_false (name) && SCM_CLOSUREP (proc))
c75512d6 317 name = scm_reverse_lookup (SCM_ENV (proc), proc);
e311f5fa
AW
318 if (scm_is_false (name) && SCM_PROGRAM_P (proc))
319 name = scm_program_name (proc);
f0e9217a
MD
320 return name;
321 }
f0e9217a
MD
322 }
323}
1bbd0b84 324#undef FUNC_NAME
f0e9217a 325
a1ec6916 326SCM_DEFINE (scm_procedure_source, "procedure-source", 1, 0, 0,
1bbd0b84 327 (SCM proc),
ba94f79e 328 "Return the source of the procedure @var{proc}.")
1bbd0b84 329#define FUNC_NAME s_scm_procedure_source
f0e9217a 330{
34d19ef6 331 SCM_VALIDATE_NIM (1, proc);
b3d7f6df 332 again:
f0e9217a
MD
333 switch (SCM_TYP7 (proc)) {
334 case scm_tcs_closures:
335 {
212e58ed
DH
336 const SCM formals = SCM_CLOSURE_FORMALS (proc);
337 const SCM body = SCM_CLOSURE_BODY (proc);
338 const SCM src = scm_source_property (body, scm_sym_copy);
339
7888309b 340 if (scm_is_true (src))
212e58ed
DH
341 {
342 return scm_cons2 (scm_sym_lambda, formals, src);
343 }
344 else
345 {
346 const SCM env = SCM_EXTEND_ENV (formals, SCM_EOL, SCM_ENV (proc));
347 return scm_cons2 (scm_sym_lambda,
348 scm_i_finite_list_copy (formals),
9fcf3cbb 349 scm_i_unmemocopy_body (body, env));
212e58ed 350 }
f0e9217a 351 }
b3d7f6df
MD
352 case scm_tcs_struct:
353 if (!SCM_I_OPERATORP (proc))
354 break;
355 goto procprop;
356 case scm_tc7_smob:
357 if (!SCM_SMOB_DESCRIPTOR (proc).apply)
358 break;
f0e9217a
MD
359 case scm_tcs_subrs:
360#ifdef CCLO
361 case scm_tc7_cclo:
362#endif
b3d7f6df 363 procprop:
f0e9217a
MD
364 /* It would indeed be a nice thing if we supplied source even for
365 built in procedures! */
63c51b9a 366 return scm_procedure_property (proc, scm_sym_source);
b3d7f6df
MD
367 case scm_tc7_pws:
368 {
369 SCM src = scm_procedure_property (proc, scm_sym_source);
7888309b 370 if (scm_is_true (src))
b3d7f6df
MD
371 return src;
372 proc = SCM_PROCEDURE (proc);
373 goto again;
374 }
f0e9217a 375 default:
b3d7f6df 376 ;
f0e9217a 377 }
b3d7f6df
MD
378 SCM_WRONG_TYPE_ARG (1, proc);
379 return SCM_BOOL_F; /* not reached */
f0e9217a 380}
1bbd0b84 381#undef FUNC_NAME
f0e9217a 382
a1ec6916 383SCM_DEFINE (scm_procedure_environment, "procedure-environment", 1, 0, 0,
1bbd0b84 384 (SCM proc),
ba94f79e 385 "Return the environment of the procedure @var{proc}.")
1bbd0b84 386#define FUNC_NAME s_scm_procedure_environment
f0e9217a 387{
34d19ef6 388 SCM_VALIDATE_NIM (1, proc);
f0e9217a
MD
389 switch (SCM_TYP7 (proc)) {
390 case scm_tcs_closures:
391 return SCM_ENV (proc);
f0e9217a
MD
392 case scm_tcs_subrs:
393#ifdef CCLO
394 case scm_tc7_cclo:
395#endif
396 return SCM_EOL;
397 default:
276dd677
DH
398 SCM_WRONG_TYPE_ARG (1, proc);
399 /* not reached */
f0e9217a
MD
400 }
401}
1bbd0b84 402#undef FUNC_NAME
f0e9217a 403
bfe3154c 404\f
f0e9217a
MD
405
406/* Eval in a local environment. We would like to have the ability to
e38ecb05
MD
407 * evaluate in a specified local environment, but due to the
408 * memoization this isn't normally possible. We solve it by copying
409 * the code before evaluating. One solution would be to have eval.c
410 * generate yet another evaluator. They are not very big actually.
f0e9217a 411 */
a1ec6916 412SCM_DEFINE (scm_local_eval, "local-eval", 1, 1, 0,
1bbd0b84 413 (SCM exp, SCM env),
b380b885
MD
414 "Evaluate @var{exp} in its environment. If @var{env} is supplied,\n"
415 "it is the environment in which to evaluate @var{exp}. Otherwise,\n"
416 "@var{exp} must be a memoized code object (in which case, its environment\n"
417 "is implicit).")
1bbd0b84 418#define FUNC_NAME s_scm_local_eval
f0e9217a 419{
6c179711
MD
420 if (SCM_UNBNDP (env))
421 {
82b3290d
MD
422 SCM_VALIDATE_MEMOIZED (1, exp);
423 return scm_i_eval_x (SCM_MEMOIZED_EXP (exp), SCM_MEMOIZED_ENV (exp));
6c179711 424 }
82b3290d 425 return scm_i_eval (exp, env);
f0e9217a 426}
1bbd0b84 427#undef FUNC_NAME
f0e9217a 428
c75512d6 429#if 0
1bbd0b84 430SCM_REGISTER_PROC (s_reverse_lookup, "reverse-lookup", 2, 0, 0, scm_reverse_lookup);
c75512d6
MD
431#endif
432
433SCM
434scm_reverse_lookup (SCM env, SCM data)
435{
d2e53ed6 436 while (scm_is_pair (env) && scm_is_pair (SCM_CAR (env)))
c75512d6 437 {
22a52da1
DH
438 SCM names = SCM_CAAR (env);
439 SCM values = SCM_CDAR (env);
d2e53ed6 440 while (scm_is_pair (names))
c75512d6 441 {
bc36d050 442 if (scm_is_eq (SCM_CAR (values), data))
c75512d6
MD
443 return SCM_CAR (names);
444 names = SCM_CDR (names);
445 values = SCM_CDR (values);
446 }
d2e53ed6 447 if (!scm_is_null (names) && scm_is_eq (values, data))
c75512d6
MD
448 return names;
449 env = SCM_CDR (env);
450 }
451 return SCM_BOOL_F;
452}
453
107139ea
AW
454SCM_DEFINE (scm_sys_start_stack, "%start-stack", 2, 0, 0,
455 (SCM id, SCM thunk),
456 "Call @var{thunk} on an evaluator stack tagged with @var{id}.")
457#define FUNC_NAME s_scm_sys_start_stack
bfe3154c
MD
458{
459 SCM answer;
92c2555f
MV
460 scm_t_debug_frame vframe;
461 scm_t_debug_info vframe_vect_body;
9de87eea 462 vframe.prev = scm_i_last_debug_frame ();
9fa2c7b1
MD
463 vframe.status = SCM_VOIDFRAME;
464 vframe.vect = &vframe_vect_body;
465 vframe.vect[0].id = id;
9de87eea 466 scm_i_set_last_debug_frame (&vframe);
107139ea 467 answer = scm_call_0 (thunk);
9de87eea 468 scm_i_set_last_debug_frame (vframe.prev);
9fa2c7b1
MD
469 return answer;
470}
68baa7e7
DH
471#undef FUNC_NAME
472
f0e9217a
MD
473/* {Debug Objects}
474 *
475 * The debugging evaluator throws these on frame traps.
476 */
477
92c2555f 478scm_t_bits scm_tc16_debugobj;
f0e9217a 479
f0e9217a 480static int
e81d98ec 481debugobj_print (SCM obj, SCM port, scm_print_state *pstate SCM_UNUSED)
f0e9217a 482{
b7f3516f 483 scm_puts ("#<debug-object ", port);
37c56aec 484 scm_intprint ((long) SCM_DEBUGOBJ_FRAME (obj), 16, port);
b7f3516f 485 scm_putc ('>', port);
f0e9217a
MD
486 return 1;
487}
488
a1ec6916 489SCM_DEFINE (scm_debug_object_p, "debug-object?", 1, 0, 0,
1bbd0b84 490 (SCM obj),
ba94f79e 491 "Return @code{#t} if @var{obj} is a debug object.")
1bbd0b84 492#define FUNC_NAME s_scm_debug_object_p
f0e9217a 493{
7888309b 494 return scm_from_bool(SCM_DEBUGOBJP (obj));
f0e9217a 495}
1bbd0b84 496#undef FUNC_NAME
f0e9217a 497
1cc91f1b 498
f0e9217a 499SCM
92c2555f 500scm_make_debugobj (scm_t_debug_frame *frame)
f0e9217a 501{
228a24ef 502 return scm_cell (scm_tc16_debugobj, (scm_t_bits) frame);
f0e9217a
MD
503}
504
f0e9217a
MD
505\f
506
fe57f652
MD
507/* Undocumented debugging procedure */
508#ifdef GUILE_DEBUG
a1ec6916 509SCM_DEFINE (scm_debug_hang, "debug-hang", 0, 1, 0,
1bbd0b84 510 (SCM obj),
ba94f79e
MG
511 "Go into an endless loop, which can be only terminated with\n"
512 "a debugger.")
1bbd0b84 513#define FUNC_NAME s_scm_debug_hang
e38ecb05
MD
514{
515 int go = 0;
516 while (!go) ;
517 return SCM_UNSPECIFIED;
518}
1bbd0b84 519#undef FUNC_NAME
fe57f652 520#endif
e38ecb05
MD
521
522\f
523
f0e9217a
MD
524void
525scm_init_debug ()
526{
62560650 527 scm_init_opts (scm_debug_options, scm_debug_opts);
ee340120 528
e841c3e0
KN
529 scm_tc16_memoized = scm_make_smob_type ("memoized", 0);
530 scm_set_smob_mark (scm_tc16_memoized, scm_markcdr);
531 scm_set_smob_print (scm_tc16_memoized, memoized_print);
23a62151 532
e841c3e0
KN
533 scm_tc16_debugobj = scm_make_smob_type ("debug-object", 0);
534 scm_set_smob_print (scm_tc16_debugobj, debugobj_print);
f0e9217a 535
33b97402 536#ifdef GUILE_DEBUG
1be6b49c
ML
537 scm_c_define ("SCM_IM_AND", SCM_IM_AND);
538 scm_c_define ("SCM_IM_BEGIN", SCM_IM_BEGIN);
539 scm_c_define ("SCM_IM_CASE", SCM_IM_CASE);
540 scm_c_define ("SCM_IM_COND", SCM_IM_COND);
541 scm_c_define ("SCM_IM_DO", SCM_IM_DO);
542 scm_c_define ("SCM_IM_IF", SCM_IM_IF);
543 scm_c_define ("SCM_IM_LAMBDA", SCM_IM_LAMBDA);
544 scm_c_define ("SCM_IM_LET", SCM_IM_LET);
545 scm_c_define ("SCM_IM_LETSTAR", SCM_IM_LETSTAR);
546 scm_c_define ("SCM_IM_LETREC", SCM_IM_LETREC);
547 scm_c_define ("SCM_IM_OR", SCM_IM_OR);
548 scm_c_define ("SCM_IM_QUOTE", SCM_IM_QUOTE);
549 scm_c_define ("SCM_IM_SET_X", SCM_IM_SET_X);
550 scm_c_define ("SCM_IM_DEFINE", SCM_IM_DEFINE);
551 scm_c_define ("SCM_IM_APPLY", SCM_IM_APPLY);
552 scm_c_define ("SCM_IM_CONT", SCM_IM_CONT);
553 scm_c_define ("SCM_IM_DISPATCH", SCM_IM_DISPATCH);
33b97402 554#endif
f0e9217a
MD
555 scm_add_feature ("debug-extensions");
556
a0599745 557#include "libguile/debug.x"
f0e9217a 558}
89e00824
ML
559
560/*
561 Local Variables:
562 c-file-style: "gnu"
563 End:
564*/