1 /* Scheme/Guile language support routines for GDB, the GNU debugger.
3 Copyright 1995, 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005 Free
4 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 2 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, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
26 #include "expression.h"
27 #include "parser-defs.h"
34 #include "gdb_string.h"
38 extern void _initialize_scheme_language (void);
39 static struct value
*evaluate_subexp_scm (struct type
*, struct expression
*,
41 static struct value
*scm_lookup_name (char *);
42 static int in_eval_c (void);
44 struct type
*builtin_type_scm
;
47 scm_printchar (int c
, struct ui_file
*stream
)
49 fprintf_filtered (stream
, "#\\%c", c
);
53 scm_printstr (struct ui_file
*stream
, const gdb_byte
*string
,
54 unsigned int length
, int width
, int force_ellipses
)
56 fprintf_filtered (stream
, "\"%s\"", string
);
60 is_scmvalue_type (struct type
*type
)
62 if (TYPE_CODE (type
) == TYPE_CODE_INT
63 && TYPE_NAME (type
) && strcmp (TYPE_NAME (type
), "SCM") == 0)
70 /* Get the INDEX'th SCM value, assuming SVALUE is the address
74 scm_get_field (LONGEST svalue
, int index
)
77 read_memory (SCM2PTR (svalue
) + index
* TYPE_LENGTH (builtin_type_scm
),
78 buffer
, TYPE_LENGTH (builtin_type_scm
));
79 return extract_signed_integer (buffer
, TYPE_LENGTH (builtin_type_scm
));
82 /* Unpack a value of type TYPE in buffer VALADDR as an integer
83 (if CONTEXT == TYPE_CODE_IN), a pointer (CONTEXT == TYPE_CODE_PTR),
84 or Boolean (CONTEXT == TYPE_CODE_BOOL). */
87 scm_unpack (struct type
*type
, const gdb_byte
*valaddr
, enum type_code context
)
89 if (is_scmvalue_type (type
))
91 LONGEST svalue
= extract_signed_integer (valaddr
, TYPE_LENGTH (type
));
92 if (context
== TYPE_CODE_BOOL
)
94 if (svalue
== SCM_BOOL_F
)
99 switch (7 & (int) svalue
)
104 case 4: /* other immediate value */
105 if (SCM_ICHRP (svalue
)) /* character */
106 return SCM_ICHR (svalue
);
107 else if (SCM_IFLAGP (svalue
))
109 switch ((int) svalue
)
120 error (_("Value can't be converted to integer."));
126 return unpack_long (type
, valaddr
);
129 /* True if we're correctly in Guile's eval.c (the evaluator and apply). */
134 struct symtab_and_line cursal
= get_current_source_symtab_and_line ();
136 if (cursal
.symtab
&& cursal
.symtab
->filename
)
138 char *filename
= cursal
.symtab
->filename
;
139 int len
= strlen (filename
);
140 if (len
>= 6 && strcmp (filename
+ len
- 6, "eval.c") == 0)
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. */
150 static struct value
*
151 scm_lookup_name (char *str
)
153 struct value
*args
[3];
154 int len
= strlen (str
);
158 args
[0] = value_allocate_space_in_inferior (len
);
159 args
[1] = value_from_longest (builtin_type_int
, len
);
160 write_memory (value_as_long (args
[0]), (gdb_byte
*) str
, len
);
163 && (sym
= lookup_symbol ("env",
164 expression_context_block
,
165 VAR_DOMAIN
, (int *) NULL
,
166 (struct symtab
**) NULL
)) != NULL
)
167 args
[2] = value_of_variable (sym
, expression_context_block
);
169 /* FIXME in this case, we should try lookup_symbol first */
170 args
[2] = value_from_longest (builtin_type_scm
, SCM_EOL
);
172 func
= find_function_in_inferior ("scm_lookup_cstr");
173 val
= call_function_by_hand (func
, 3, args
);
174 if (!value_logical_not (val
))
175 return value_ind (val
);
177 sym
= lookup_symbol (str
,
178 expression_context_block
,
179 VAR_DOMAIN
, (int *) NULL
,
180 (struct symtab
**) NULL
);
182 return value_of_variable (sym
, NULL
);
183 error (_("No symbol \"%s\" in current context."), str
);
187 scm_evaluate_string (char *str
, int len
)
190 struct value
*addr
= value_allocate_space_in_inferior (len
+ 1);
191 LONGEST iaddr
= value_as_long (addr
);
192 write_memory (iaddr
, (gdb_byte
*) str
, len
);
193 /* FIXME - should find and pass env */
194 write_memory (iaddr
+ len
, (gdb_byte
*) "", 1);
195 func
= find_function_in_inferior ("scm_evstr");
196 return call_function_by_hand (func
, 1, &addr
);
199 static struct value
*
200 evaluate_subexp_scm (struct type
*expect_type
, struct expression
*exp
,
201 int *pos
, enum noside noside
)
203 enum exp_opcode op
= exp
->elts
[*pos
].opcode
;
210 len
= longest_to_int (exp
->elts
[pc
+ 1].longconst
);
211 (*pos
) += 3 + BYTES_TO_EXP_ELEM (len
+ 1);
212 if (noside
== EVAL_SKIP
)
214 str
= &exp
->elts
[pc
+ 2].string
;
215 return scm_lookup_name (str
);
218 len
= longest_to_int (exp
->elts
[pc
+ 1].longconst
);
219 (*pos
) += 3 + BYTES_TO_EXP_ELEM (len
+ 1);
220 if (noside
== EVAL_SKIP
)
222 str
= &exp
->elts
[pc
+ 2].string
;
223 return scm_evaluate_string (str
, len
);
226 return evaluate_subexp_standard (expect_type
, exp
, pos
, noside
);
228 return value_from_longest (builtin_type_long
, (LONGEST
) 1);
231 const struct exp_descriptor exp_descriptor_scm
=
233 print_subexp_standard
,
234 operator_length_standard
,
236 dump_subexp_body_standard
,
240 const struct language_defn scm_language_defn
=
242 "scheme", /* Language name */
253 scm_printchar
, /* Print a character constant */
254 scm_printstr
, /* Function to print string constant */
255 NULL
, /* Function to print a single character */
256 NULL
, /* Create fundamental type in this language */
257 c_print_type
, /* Print a type using appropriate syntax */
258 scm_val_print
, /* Print a value using appropriate syntax */
259 scm_value_print
, /* Print a top-level value */
260 NULL
, /* Language specific skip_trampoline */
261 value_of_this
, /* value_of_this */
262 basic_lookup_symbol_nonlocal
, /* lookup_symbol_nonlocal */
263 basic_lookup_transparent_type
,/* lookup_transparent_type */
264 NULL
, /* Language specific symbol demangler */
265 NULL
, /* Language specific class_name_from_physname */
266 NULL
, /* expression operators for printing */
267 1, /* c-style arrays */
268 0, /* String lower bound */
270 default_word_break_characters
,
271 c_language_arch_info
,
276 _initialize_scheme_language (void)
278 add_language (&scm_language_defn
);
279 builtin_type_scm
= init_type (TYPE_CODE_INT
,
280 TARGET_LONG_BIT
/ TARGET_CHAR_BIT
,
281 0, "SCM", (struct objfile
*) NULL
);