* Replace function scm_makstr with new function scm_allocate_string.
[bpt/guile.git] / libguile / gdbint.c
CommitLineData
4907ff5a 1/* GDB interface for Guile
be54b15d 2 * Copyright (C) 1996,1997,1999,2000,2001 Free Software Foundation, Inc.
4907ff5a
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
4907ff5a
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 */
4907ff5a 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
a0599745 50#include "libguile/_scm.h"
681b9005
MD
51
52#include <stdio.h>
783e7774 53#include <string.h>
681b9005
MD
54#ifdef HAVE_UNISTD_H
55#include <unistd.h>
56#endif
57
a0599745
MD
58#include "libguile/tag.h"
59#include "libguile/strports.h"
60#include "libguile/read.h"
61#include "libguile/eval.h"
62#include "libguile/chars.h"
63#include "libguile/modules.h"
64#include "libguile/ports.h"
7e73eaee 65#include "libguile/fluids.h"
a0599745 66#include "libguile/strings.h"
9293b3c6 67#include "libguile/init.h"
4907ff5a 68
a0599745 69#include "libguile/gdbint.h"
4907ff5a
MD
70\f
71/* {Support for debugging with gdb}
72 *
73 * TODO:
74 *
75 * 1. Redirect outputs
76 * 2. Catch errors
77 * 3. Prevent print from causing segmentation fault when given broken pairs
78 */
79
4907ff5a
MD
80#define GDB_TYPE SCM
81
a0599745 82#include "libguile/gdb_interface.h"
4907ff5a
MD
83
84\f
85
86/* Be carefull when this macro is true.
406c7d90 87 scm_gc_running_p is set during gc.
4907ff5a 88 */
406c7d90 89#define SCM_GC_P (scm_gc_running_p)
4907ff5a
MD
90
91/* Macros that encapsulate blocks of code which can be called by the
92 * debugger.
93 */
94#define SCM_BEGIN_FOREIGN_BLOCK \
d3a6bc94 95do { \
4907ff5a
MD
96 old_ints = scm_ints_disabled; scm_ints_disabled = 1; \
97 old_gc = scm_block_gc; scm_block_gc = 1; \
98 scm_print_carefully_p = 1; \
d3a6bc94 99} while (0)
4907ff5a
MD
100
101
102#define SCM_END_FOREIGN_BLOCK \
d3a6bc94 103do { \
4907ff5a
MD
104 scm_print_carefully_p = 0; \
105 scm_block_gc = old_gc; \
106 scm_ints_disabled = old_ints; \
d3a6bc94 107} while (0)
4907ff5a
MD
108
109
110#define RESET_STRING { gdb_output_length = 0; }
111
112#define SEND_STRING(str) \
d3a6bc94 113do { \
a57c1cc7
MD
114 gdb_output = (char *) (str); \
115 gdb_output_length = strlen ((const char *) (str)); \
d3a6bc94 116} while (0)
380b6b4c 117
4907ff5a
MD
118
119/* {Gdb interface}
120 */
121
122unsigned short gdb_options = GDB_HAVE_BINDINGS;
123
124char *gdb_language = "lisp/c";
125
126SCM gdb_result;
127
128char *gdb_output;
129
130int gdb_output_length;
131
132int scm_print_carefully_p;
133
134static SCM gdb_input_port;
380b6b4c
MD
135static int port_mark_p, stream_mark_p, string_mark_p;
136
137static SCM tok_buf;
138static int tok_buf_mark_p;
139
4907ff5a
MD
140static SCM gdb_output_port;
141static int old_ints, old_gc;
142
1cc91f1b 143
380b6b4c 144static void
1bbd0b84 145unmark_port (SCM port)
380b6b4c
MD
146{
147 SCM stream, string;
fd336365
DH
148 port_mark_p = SCM_GCMARKP (port);
149 SCM_CLRGCMARK (port);
74a16888 150 stream = SCM_PACK (SCM_STREAM (port));
380b6b4c
MD
151 stream_mark_p = SCM_GCMARKP (stream);
152 SCM_CLRGCMARK (stream);
153 string = SCM_CDR (stream);
fd336365
DH
154 string_mark_p = SCM_GCMARKP (string);
155 SCM_CLRGCMARK (string);
380b6b4c
MD
156}
157
1cc91f1b 158
380b6b4c 159static void
1bbd0b84 160remark_port (SCM port)
380b6b4c 161{
74a16888 162 SCM stream = SCM_PACK (SCM_STREAM (port));
380b6b4c 163 SCM string = SCM_CDR (stream);
fd336365 164 if (string_mark_p) SCM_SETGCMARK (string);
380b6b4c 165 if (stream_mark_p) SCM_SETGCMARK (stream);
fd336365 166 if (port_mark_p) SCM_SETGCMARK (port);
380b6b4c
MD
167}
168
1cc91f1b 169
4907ff5a 170int
6e8d25a6 171gdb_maybe_valid_type_p (SCM value)
4907ff5a 172{
56100716 173 return SCM_IMP (value) || scm_cellp (value);
4907ff5a
MD
174}
175
1cc91f1b 176
4907ff5a 177int
6e8d25a6 178gdb_read (char *str)
4907ff5a
MD
179{
180 SCM ans;
181 int status = 0;
182 RESET_STRING;
183 /* Need to be restrictive about what to read? */
184 if (SCM_GC_P)
185 {
186 char *p;
187 for (p = str; *p != '\0'; ++p)
188 switch (*p)
189 {
190 case '(':
191 case '\'':
192 case '"':
193 SEND_STRING ("Can't read this kind of expressions during gc");
194 return -1;
195 case '#':
196 if (*++p == '\0')
197 goto premature;
198 if (*p == '\\')
199 {
200 if (*++p != '\0')
201 continue;
202 premature:
203 SEND_STRING ("Premature end of lisp expression");
204 return -1;
205 }
206 default:
207 continue;
208 }
209 }
210 SCM_BEGIN_FOREIGN_BLOCK;
380b6b4c 211 unmark_port (gdb_input_port);
c94577b4 212 scm_seek (gdb_input_port, SCM_INUM0, SCM_MAKINUM (SEEK_SET));
840ae05d 213 scm_puts (str, gdb_input_port);
69bc9ff3 214 scm_truncate_file (gdb_input_port, SCM_UNDEFINED);
c94577b4 215 scm_seek (gdb_input_port, SCM_INUM0, SCM_MAKINUM (SEEK_SET));
4907ff5a 216 /* Read one object */
fd336365
DH
217 tok_buf_mark_p = SCM_GCMARKP (tok_buf);
218 SCM_CLRGCMARK (tok_buf);
deca31e1 219 ans = scm_lreadr (&tok_buf, gdb_input_port, &ans);
4907ff5a
MD
220 if (SCM_GC_P)
221 {
380b6b4c 222 if (SCM_NIMP (ans))
4907ff5a
MD
223 {
224 SEND_STRING ("Non-immediate created during gc. Memory may be trashed.");
225 status = -1;
226 goto exit;
227 }
228 }
380b6b4c 229 gdb_result = ans;
4907ff5a 230 /* Protect answer from future GC */
380b6b4c
MD
231 if (SCM_NIMP (ans))
232 scm_permanent_object (ans);
4907ff5a 233exit:
380b6b4c 234 if (tok_buf_mark_p)
fd336365 235 SCM_SETGCMARK (tok_buf);
380b6b4c 236 remark_port (gdb_input_port);
4907ff5a
MD
237 SCM_END_FOREIGN_BLOCK;
238 return status;
239}
240
1cc91f1b 241
4907ff5a 242int
6e8d25a6 243gdb_eval (SCM exp)
4907ff5a
MD
244{
245 RESET_STRING;
246 if (SCM_IMP (exp))
247 {
248 gdb_result = exp;
249 return 0;
250 }
251 if (SCM_GC_P)
252 {
253 SEND_STRING ("Can't evaluate lisp expressions during gc");
254 return -1;
255 }
256 SCM_BEGIN_FOREIGN_BLOCK;
257 {
7e73eaee 258 SCM env = scm_top_level_env (SCM_TOP_LEVEL_LOOKUP_CLOSURE);
4907ff5a
MD
259 gdb_result = scm_permanent_object (scm_ceval (exp, env));
260 }
261 SCM_END_FOREIGN_BLOCK;
262 return 0;
263}
264
1cc91f1b 265
4907ff5a 266int
6e8d25a6 267gdb_print (SCM obj)
4907ff5a 268{
9293b3c6
MD
269 if (!scm_initialized_p)
270 SEND_STRING ("*** Guile not initialized ***");
271 else
272 {
273 RESET_STRING;
274 SCM_BEGIN_FOREIGN_BLOCK;
275 /* Reset stream */
276 scm_seek (gdb_output_port, SCM_INUM0, SCM_MAKINUM (SEEK_SET));
277 scm_write (obj, gdb_output_port);
278 scm_truncate_file (gdb_output_port, SCM_UNDEFINED);
279 {
280 scm_port *pt = SCM_PTAB_ENTRY (gdb_output_port);
281
282 scm_flush (gdb_output_port);
283 *(pt->write_buf + pt->read_buf_size) = 0;
284 SEND_STRING (pt->read_buf);
285 }
286 SCM_END_FOREIGN_BLOCK;
287 }
4907ff5a
MD
288 return 0;
289}
290
1cc91f1b 291
4907ff5a 292int
6e8d25a6 293gdb_binding (SCM name, SCM value)
4907ff5a
MD
294{
295 RESET_STRING;
296 if (SCM_GC_P)
297 {
298 SEND_STRING ("Can't create new bindings during gc");
299 return -1;
300 }
301 SCM_BEGIN_FOREIGN_BLOCK;
302 {
303 SCM vcell = scm_sym2vcell (name,
7e73eaee 304 SCM_TOP_LEVEL_LOOKUP_CLOSURE,
4907ff5a
MD
305 SCM_BOOL_T);
306 SCM_SETCDR (vcell, value);
307 }
308 SCM_END_FOREIGN_BLOCK;
309 return 0;
310}
311
312void
313scm_init_gdbint ()
314{
315 static char *s = "scm_init_gdb_interface";
316 SCM port;
317
318 scm_print_carefully_p = 0;
319
320 port = scm_mkstrport (SCM_INUM0,
840ae05d 321 scm_make_string (SCM_MAKINUM (0), SCM_UNDEFINED),
4907ff5a
MD
322 SCM_OPN | SCM_WRTNG,
323 s);
324 gdb_output_port = scm_permanent_object (port);
325
326 port = scm_mkstrport (SCM_INUM0,
327 scm_make_string (SCM_MAKINUM (0), SCM_UNDEFINED),
840ae05d 328 SCM_OPN | SCM_RDNG | SCM_WRTNG,
4907ff5a
MD
329 s);
330 gdb_input_port = scm_permanent_object (port);
380b6b4c 331
be54b15d 332 tok_buf = scm_permanent_object (scm_allocate_string (30));
4907ff5a 333}
89e00824
ML
334
335/*
336 Local Variables:
337 c-file-style: "gnu"
338 End:
339*/