]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/scm-lang.c
* win32-low.c (win32_add_one_solib): If the dll name is
[thirdparty/binutils-gdb.git] / gdb / scm-lang.c
1 /* Scheme/Guile language support routines for GDB, the GNU debugger.
2
3 Copyright (C) 1995, 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2007,
4 2008, 2009 Free Software Foundation, Inc.
5
6 This file is part of GDB.
7
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.
12
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.
17
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/>. */
20
21 #include "defs.h"
22 #include "symtab.h"
23 #include "gdbtypes.h"
24 #include "expression.h"
25 #include "parser-defs.h"
26 #include "language.h"
27 #include "value.h"
28 #include "c-lang.h"
29 #include "scm-lang.h"
30 #include "scm-tags.h"
31 #include "source.h"
32 #include "gdb_string.h"
33 #include "gdbcore.h"
34 #include "infcall.h"
35 #include "objfiles.h"
36
37 extern void _initialize_scheme_language (void);
38 static struct value *evaluate_subexp_scm (struct type *, struct expression *,
39 int *, enum noside);
40 static struct value *scm_lookup_name (struct gdbarch *, char *);
41 static int in_eval_c (void);
42
43 void
44 scm_printchar (int c, struct type *type, struct ui_file *stream)
45 {
46 fprintf_filtered (stream, "#\\%c", c);
47 }
48
49 static void
50 scm_printstr (struct ui_file *stream, struct type *type, const gdb_byte *string,
51 unsigned int length, int force_ellipses,
52 const struct value_print_options *options)
53 {
54 fprintf_filtered (stream, "\"%s\"", string);
55 }
56
57 int
58 is_scmvalue_type (struct type *type)
59 {
60 if (TYPE_NAME (type) && strcmp (TYPE_NAME (type), "SCM") == 0)
61 {
62 return 1;
63 }
64 return 0;
65 }
66
67 /* Get the INDEX'th SCM value, assuming SVALUE is the address
68 of the 0'th one. */
69
70 LONGEST
71 scm_get_field (LONGEST svalue, int index, int size,
72 enum bfd_endian byte_order)
73 {
74 gdb_byte buffer[20];
75 read_memory (SCM2PTR (svalue) + index * size, buffer, size);
76 return extract_signed_integer (buffer, size, byte_order);
77 }
78
79 /* Unpack a value of type TYPE in buffer VALADDR as an integer
80 (if CONTEXT == TYPE_CODE_IN), a pointer (CONTEXT == TYPE_CODE_PTR),
81 or Boolean (CONTEXT == TYPE_CODE_BOOL). */
82
83 LONGEST
84 scm_unpack (struct type *type, const gdb_byte *valaddr, enum type_code context)
85 {
86 if (is_scmvalue_type (type))
87 {
88 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
89 LONGEST svalue
90 = extract_signed_integer (valaddr, TYPE_LENGTH (type), byte_order);
91
92 if (context == TYPE_CODE_BOOL)
93 {
94 if (svalue == SCM_BOOL_F)
95 return 0;
96 else
97 return 1;
98 }
99 switch (7 & (int) svalue)
100 {
101 case 2:
102 case 6: /* fixnum */
103 return svalue >> 2;
104 case 4: /* other immediate value */
105 if (SCM_ICHRP (svalue)) /* character */
106 return SCM_ICHR (svalue);
107 else if (SCM_IFLAGP (svalue))
108 {
109 switch ((int) svalue)
110 {
111 #ifndef SICP
112 case SCM_EOL:
113 #endif
114 case SCM_BOOL_F:
115 return 0;
116 case SCM_BOOL_T:
117 return 1;
118 }
119 }
120 error (_("Value can't be converted to integer."));
121 default:
122 return svalue;
123 }
124 }
125 else
126 return unpack_long (type, valaddr);
127 }
128
129 /* True if we're correctly in Guile's eval.c (the evaluator and apply). */
130
131 static int
132 in_eval_c (void)
133 {
134 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
135
136 if (cursal.symtab && cursal.symtab->filename)
137 {
138 char *filename = cursal.symtab->filename;
139 int len = strlen (filename);
140 if (len >= 6 && strcmp (filename + len - 6, "eval.c") == 0)
141 return 1;
142 }
143 return 0;
144 }
145
146 /* Lookup a value for the variable named STR.
147 First lookup in Scheme context (using the scm_lookup_cstr inferior
148 function), then try lookup_symbol for compiled variables. */
149
150 static struct value *
151 scm_lookup_name (struct gdbarch *gdbarch, char *str)
152 {
153 struct value *args[3];
154 int len = strlen (str);
155 struct value *func;
156 struct value *val;
157 struct symbol *sym;
158
159 func = find_function_in_inferior ("scm_lookup_cstr", NULL);
160
161 args[0] = value_allocate_space_in_inferior (len);
162 args[1] = value_from_longest (builtin_type (gdbarch)->builtin_int, len);
163 write_memory (value_as_long (args[0]), (gdb_byte *) str, len);
164
165 if (in_eval_c ()
166 && (sym = lookup_symbol ("env",
167 expression_context_block,
168 VAR_DOMAIN, (int *) NULL)) != NULL)
169 args[2] = value_of_variable (sym, expression_context_block);
170 else
171 /* FIXME in this case, we should try lookup_symbol first */
172 args[2] = value_from_longest (builtin_scm_type (gdbarch)->builtin_scm,
173 SCM_EOL);
174
175 val = call_function_by_hand (func, 3, args);
176 if (!value_logical_not (val))
177 return value_ind (val);
178
179 sym = lookup_symbol (str,
180 expression_context_block,
181 VAR_DOMAIN, (int *) NULL);
182 if (sym)
183 return value_of_variable (sym, NULL);
184 error (_("No symbol \"%s\" in current context."), str);
185 }
186
187 struct value *
188 scm_evaluate_string (char *str, int len)
189 {
190 struct value *func;
191 struct value *addr = value_allocate_space_in_inferior (len + 1);
192 LONGEST iaddr = value_as_long (addr);
193 write_memory (iaddr, (gdb_byte *) str, len);
194 /* FIXME - should find and pass env */
195 write_memory (iaddr + len, (gdb_byte *) "", 1);
196 func = find_function_in_inferior ("scm_evstr", NULL);
197 return call_function_by_hand (func, 1, &addr);
198 }
199
200 static struct value *
201 evaluate_exp (struct type *expect_type, struct expression *exp,
202 int *pos, enum noside noside)
203 {
204 enum exp_opcode op = exp->elts[*pos].opcode;
205 int len, pc;
206 char *str;
207 switch (op)
208 {
209 case OP_NAME:
210 pc = (*pos)++;
211 len = longest_to_int (exp->elts[pc + 1].longconst);
212 (*pos) += 3 + BYTES_TO_EXP_ELEM (len + 1);
213 if (noside == EVAL_SKIP)
214 goto nosideret;
215 str = &exp->elts[pc + 2].string;
216 return scm_lookup_name (exp->gdbarch, str);
217 case OP_STRING:
218 pc = (*pos)++;
219 len = longest_to_int (exp->elts[pc + 1].longconst);
220 (*pos) += 3 + BYTES_TO_EXP_ELEM (len + 1);
221 if (noside == EVAL_SKIP)
222 goto nosideret;
223 str = &exp->elts[pc + 2].string;
224 return scm_evaluate_string (str, len);
225 default:;
226 }
227 return evaluate_subexp_standard (expect_type, exp, pos, noside);
228 nosideret:
229 return value_from_longest (builtin_type (exp->gdbarch)->builtin_int, 1);
230 }
231
232 const struct exp_descriptor exp_descriptor_scm =
233 {
234 print_subexp_standard,
235 operator_length_standard,
236 op_name_standard,
237 dump_subexp_body_standard,
238 evaluate_exp
239 };
240
241 const struct language_defn scm_language_defn =
242 {
243 "scheme", /* Language name */
244 language_scm,
245 range_check_off,
246 type_check_off,
247 case_sensitive_off,
248 array_row_major,
249 macro_expansion_no,
250 &exp_descriptor_scm,
251 scm_parse,
252 c_error,
253 null_post_parser,
254 scm_printchar, /* Print a character constant */
255 scm_printstr, /* Function to print string constant */
256 NULL, /* Function to print a single character */
257 c_print_type, /* Print a type using appropriate syntax */
258 default_print_typedef, /* Print a typedef using appropriate syntax */
259 scm_val_print, /* Print a value using appropriate syntax */
260 scm_value_print, /* Print a top-level value */
261 NULL, /* Language specific skip_trampoline */
262 NULL, /* name_of_this */
263 basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
264 basic_lookup_transparent_type,/* lookup_transparent_type */
265 NULL, /* Language specific symbol demangler */
266 NULL, /* Language specific class_name_from_physname */
267 NULL, /* expression operators for printing */
268 1, /* c-style arrays */
269 0, /* String lower bound */
270 default_word_break_characters,
271 default_make_symbol_completion_list,
272 c_language_arch_info,
273 default_print_array_index,
274 default_pass_by_reference,
275 default_get_string,
276 LANG_MAGIC
277 };
278
279 static void *
280 build_scm_types (struct gdbarch *gdbarch)
281 {
282 struct builtin_scm_type *builtin_scm_type
283 = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct builtin_scm_type);
284
285 builtin_scm_type->builtin_scm
286 = arch_integer_type (gdbarch, gdbarch_long_bit (gdbarch), 0, "SCM");
287
288 return builtin_scm_type;
289 }
290
291 static struct gdbarch_data *scm_type_data;
292
293 const struct builtin_scm_type *
294 builtin_scm_type (struct gdbarch *gdbarch)
295 {
296 return gdbarch_data (gdbarch, scm_type_data);
297 }
298
299 void
300 _initialize_scheme_language (void)
301 {
302 scm_type_data = gdbarch_data_register_post_init (build_scm_types);
303
304 add_language (&scm_language_defn);
305 }