1 /* Scheme/Guile language support routines for GDB, the GNU debugger.
3 Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2005, 2007, 2008
4 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "expression.h"
25 #include "parser-defs.h"
35 static void scm_ipruk (char *, LONGEST
, struct ui_file
*);
36 static void scm_scmlist_print (LONGEST
, struct ui_file
*, int, int,
37 int, enum val_prettyprint
);
38 static int scm_inferior_print (LONGEST
, struct ui_file
*, int, int,
39 int, enum val_prettyprint
);
41 /* Prints the SCM value VALUE by invoking the inferior, if appropraite.
42 Returns >= 0 on success; return -1 if the inferior cannot/should not
46 scm_inferior_print (LONGEST value
, struct ui_file
*stream
, int format
,
47 int deref_ref
, int recurse
, enum val_prettyprint pretty
)
50 struct gdbarch
*gdbarch
;
51 struct value
*func
, *arg
, *result
;
52 struct symbol
*gdb_output_sym
, *gdb_output_len_sym
;
56 func
= find_function_in_inferior ("gdb_print", &objf
);
57 gdbarch
= get_objfile_arch (objf
);
58 arg
= value_from_longest (builtin_type (gdbarch
)->builtin_core_addr
, value
);
60 result
= call_function_by_hand (func
, 1, &arg
);
61 ret
= (int) value_as_long (result
);
64 /* XXX: Should we cache these symbols? */
66 lookup_symbol_global ("gdb_output", NULL
, NULL
, VAR_DOMAIN
);
68 lookup_symbol_global ("gdb_output_length", NULL
, NULL
, VAR_DOMAIN
);
70 if ((gdb_output_sym
== NULL
) || (gdb_output_len_sym
== NULL
))
74 struct value
*remote_buffer
;
76 read_memory (SYMBOL_VALUE_ADDRESS (gdb_output_len_sym
),
77 (char *) &output_len
, sizeof (output_len
));
79 output
= (char *) alloca (output_len
);
80 remote_buffer
= value_at (builtin_type (gdbarch
)->builtin_core_addr
,
81 SYMBOL_VALUE_ADDRESS (gdb_output_sym
));
82 read_memory (value_as_address (remote_buffer
),
85 ui_file_write (stream
, output
, output_len
);
92 /* {Names of immediate symbols}
93 * This table must agree with the declarations in scm.h: {Immediate Symbols}.*/
95 static char *scm_isymnames
[] =
97 /* This table must agree with the declarations */
113 "literal-variable-ref",
114 "literal-variable-set!",
117 "call-with-current-continuation",
119 /* user visible ISYMS */
132 scm_scmlist_print (LONGEST svalue
, struct ui_file
*stream
, int format
,
133 int deref_ref
, int recurse
, enum val_prettyprint pretty
)
135 unsigned int more
= print_max
;
138 fputs_filtered ("...", stream
);
141 scm_scmval_print (SCM_CAR (svalue
), stream
, format
,
142 deref_ref
, recurse
+ 1, pretty
);
143 svalue
= SCM_CDR (svalue
);
144 for (; SCM_NIMP (svalue
); svalue
= SCM_CDR (svalue
))
146 if (SCM_NECONSP (svalue
))
148 fputs_filtered (" ", stream
);
151 fputs_filtered ("...", stream
);
154 scm_scmval_print (SCM_CAR (svalue
), stream
, format
,
155 deref_ref
, recurse
+ 1, pretty
);
157 if (SCM_NNULLP (svalue
))
159 fputs_filtered (" . ", stream
);
160 scm_scmval_print (svalue
, stream
, format
,
161 deref_ref
, recurse
+ 1, pretty
);
166 scm_ipruk (char *hdr
, LONGEST ptr
, struct ui_file
*stream
)
168 fprintf_filtered (stream
, "#<unknown-%s", hdr
);
169 #define SCM_SIZE TYPE_LENGTH (builtin_type_scm)
171 fprintf_filtered (stream
, " (0x%lx . 0x%lx) @",
172 (long) SCM_CAR (ptr
), (long) SCM_CDR (ptr
));
173 fprintf_filtered (stream
, " 0x%s>", paddr_nz (ptr
));
177 scm_scmval_print (LONGEST svalue
, struct ui_file
*stream
, int format
,
178 int deref_ref
, int recurse
, enum val_prettyprint pretty
)
181 switch (7 & (int) svalue
)
185 print_longest (stream
, format
? format
: 'd', 1, svalue
>> 2);
188 if (SCM_ICHRP (svalue
))
190 svalue
= SCM_ICHR (svalue
);
191 scm_printchar (svalue
, stream
);
194 else if (SCM_IFLAGP (svalue
)
195 && (SCM_ISYMNUM (svalue
)
196 < (sizeof scm_isymnames
/ sizeof (char *))))
198 fputs_filtered (SCM_ISYMCHARS (svalue
), stream
);
201 else if (SCM_ILOCP (svalue
))
203 fprintf_filtered (stream
, "#@%ld%c%ld",
204 (long) SCM_IFRAME (svalue
),
205 SCM_ICDRP (svalue
) ? '-' : '+',
206 (long) SCM_IDIST (svalue
));
214 svalue
= SCM_CAR (svalue
- 1);
218 scm_ipruk ("immediate", svalue
, stream
);
222 switch (SCM_TYP7 (svalue
))
224 case scm_tcs_cons_gloc
:
225 if (SCM_CDR (SCM_CAR (svalue
) - 1L) == 0)
230 fputs_filtered ("#<latte ", stream
);
232 fputs_filtered ("???", stream
);
234 name
= ((SCM n
*) (STRUCT_TYPE (exp
)))[struct_i_name
];
235 scm_lfwrite (CHARS (name
),
236 (sizet
) sizeof (char),
237 (sizet
) LENGTH (name
),
240 fprintf_filtered (stream
, " #X%s>", paddr_nz (svalue
));
243 case scm_tcs_cons_imcar
:
244 case scm_tcs_cons_nimcar
:
245 fputs_filtered ("(", stream
);
246 scm_scmlist_print (svalue
, stream
, format
,
247 deref_ref
, recurse
+ 1, pretty
);
248 fputs_filtered (")", stream
);
250 case scm_tcs_closures
:
251 fputs_filtered ("#<CLOSURE ", stream
);
252 scm_scmlist_print (SCM_CODE (svalue
), stream
, format
,
253 deref_ref
, recurse
+ 1, pretty
);
254 fputs_filtered (">", stream
);
258 int len
= SCM_LENGTH (svalue
);
259 CORE_ADDR addr
= (CORE_ADDR
) SCM_CDR (svalue
);
264 int truncate
= print_max
&& len
> (int) print_max
;
267 fputs_filtered ("\"", stream
);
268 for (; done
< len
; done
+= buf_size
)
270 buf_size
= min (len
- done
, 64);
271 read_memory (addr
+ done
, buffer
, buf_size
);
273 for (i
= 0; i
< buf_size
; ++i
)
278 fputs_filtered ("\\", stream
);
280 fprintf_filtered (stream
, "%c", buffer
[i
]);
283 fputs_filtered (truncate
? "...\"" : "\"", stream
);
287 case scm_tcs_symbols
:
289 int len
= SCM_LENGTH (svalue
);
291 char *str
= alloca (len
);
292 read_memory (SCM_CDR (svalue
), (gdb_byte
*) str
, len
+ 1);
293 /* Should handle weird characters FIXME */
295 fputs_filtered (str
, stream
);
300 int len
= SCM_LENGTH (svalue
);
302 LONGEST elements
= SCM_CDR (svalue
);
303 fputs_filtered ("#(", stream
);
304 for (i
= 0; i
< len
; ++i
)
307 fputs_filtered (" ", stream
);
308 scm_scmval_print (scm_get_field (elements
, i
), stream
, format
,
309 deref_ref
, recurse
+ 1, pretty
);
311 fputs_filtered (")", stream
);
319 hook
= scm_get_lvector_hook (exp
, LV_PRINT_FN
);
322 scm_puts ("#<locked-vector ", port
);
323 scm_intprint (CDR (exp
), 16, port
);
324 scm_puts (">", port
);
330 scm_listify (exp
, port
,
331 (writing
? BOOL_T
: BOOL_F
),
334 if (result
== BOOL_F
)
346 scm_raprin1 (exp
, port
, writing
);
351 int index
= SCM_CAR (svalue
) >> 8;
354 sprintf (str
, "#%d", index
);
356 char *str
= index
? SCM_CHARS (scm_heap_org
+ index
) : "";
357 #define SCM_CHARS(x) ((char *)(SCM_CDR(x)))
358 char *str
= CHARS (SNAME (exp
));
360 fprintf_filtered (stream
, "#<primitive-procedure %s>",
367 scm_puts ("#<compiled-closure ", port
);
368 scm_iprin1 (CCLO_SUBR (exp
), port
, writing
);
369 scm_putc ('>', port
);
373 fprintf_filtered (stream
, "#<continuation %d @ #X%lx >",
375 (long) CHARS (svalue
));
380 && scm_ptobs
[i
].print
381 && (scm_ptobs
[i
].print
) (exp
, port
, writing
))
386 if (i
< scm_numsmob
&& scm_smobs
[i
].print
387 && (scm_smobs
[i
].print
) (exp
, port
, writing
))
395 scm_ipruk ("type", svalue
, stream
);
402 scm_val_print (struct type
*type
, const gdb_byte
*valaddr
,
403 int embedded_offset
, CORE_ADDR address
,
404 struct ui_file
*stream
, int format
, int deref_ref
,
405 int recurse
, enum val_prettyprint pretty
)
407 if (is_scmvalue_type (type
))
409 LONGEST svalue
= extract_signed_integer (valaddr
, TYPE_LENGTH (type
));
411 if (scm_inferior_print (svalue
, stream
, format
,
412 deref_ref
, recurse
, pretty
) >= 0)
417 scm_scmval_print (svalue
, stream
, format
,
418 deref_ref
, recurse
, pretty
);
426 return c_val_print (type
, valaddr
, 0, address
, stream
, format
,
427 deref_ref
, recurse
, pretty
);
432 scm_value_print (struct value
*val
, struct ui_file
*stream
, int format
,
433 enum val_prettyprint pretty
)
435 return (common_val_print (val
, stream
, format
, 1, 0, pretty
,
This page took 0.038001 seconds and 4 git commands to generate.