1999-04-16 03:35:26 +02:00
|
|
|
/* Scheme/Guile language support routines for GDB, the GNU debugger.
|
2003-01-13 Andrew Cagney <ac131313@redhat.com>
* ax-gdb.c, c-valprint.c, charset.c, corefile.c: Update copyright.
* demangle.c, disasm.c, dwarf2cfi.c, dwarfread.c: Update copyright.
* elfread.c, eval.c, expprint.c, expression.h: Update copyright.
* f-typeprint.c, findvar.c, gcore.c, gdb_mbuild.sh: Update copyright.
* gdbtypes.h, gnu-v2-abi.c, inferior.h, inftarg.c: Update copyright.
* language.c, language.h, m32r-tdep.c: Update copyright.
* mn10200-tdep.c, scm-lang.c, scm-lang.h: Update copyright.
* somsolib.c, somsolib.h, symfile.c, symtab.h: Update copyright.
* thread-db.c, typeprint.c, utils.c, valarith.c: Update copyright.
* values.c, win32-nat.c, x86-64-linux-nat.c: Update copyright.
* x86-64-linux-tdep.c, z8k-tdep.c: Update copyright.
* cli/cli-decode.h, config/h8500/tm-h8500.h: Update copyright.
Index: mi/ChangeLog
2003-01-13 Andrew Cagney <ac131313@redhat.com>
* mi-cmd-env.c: Update copyright.
2003-01-14 01:49:06 +01:00
|
|
|
|
2005-12-17 23:34:03 +01:00
|
|
|
Copyright (C) 1995, 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005 Free
|
2005-01-29 01:11:12 +01:00
|
|
|
Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2005-12-17 23:34:03 +01:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "symtab.h"
|
|
|
|
#include "gdbtypes.h"
|
|
|
|
#include "expression.h"
|
|
|
|
#include "parser-defs.h"
|
|
|
|
#include "language.h"
|
|
|
|
#include "value.h"
|
|
|
|
#include "c-lang.h"
|
|
|
|
#include "scm-lang.h"
|
|
|
|
#include "scm-tags.h"
|
2002-09-20 16:58:59 +02:00
|
|
|
#include "source.h"
|
1999-04-16 03:35:26 +02:00
|
|
|
#include "gdb_string.h"
|
|
|
|
#include "gdbcore.h"
|
2003-04-21 Andrew Cagney <cagney@redhat.com>
* infcall.c: New file.
* infcall.h: New file.
* valarith.c: Include "infcall.h".
* scm-lang.c, objc-lang.cm, hppa-tdep.c, gcore.c: Ditto.
* eval.c, ada-valprint.c, ada-lang.c: Ditto.
* Makefile.in (valarith.o, scm-lang.o): Update dependencies.
(objc-lang.o, hppa-tdep.o, gcore.o): Update dependencies.
(eval.o, ada-valprint.o, ada-lang.o): Update dependencies.
(SFILES): Add "infcall.c"
(COMMON_OBS): Add "infcall.o".
(infcall.o): Specify dependencies.
* value.h (call_function_by_hand): Delete declaration.
* inferior.h (run_stack_dummy): Delete declaration.
* infcmd.c (breakpoint_auto_delete_contents): Move to "infcall.c".
(run_stack_dummy): Move to "infcall.c", merged into
call_function_by_hand.
* valops.c (call_function_by_hand): Moved to "infcall.c".
(find_function_addr, value_arg_coerce): Ditto.
(unwindonsignal_p, coerce_float_to_double): Ditto.
(_initialize_valops): Move "set/show coerce-float-to-double", and
"set/show unwindonsignal" commands to "infcall.c".
* v850-tdep.c, target.h: Update comments.
* sparc-tdep.c (sparc_fix_call_dummy): Update comments.
* sh-tdep.c (sh_init_extra_frame_info): Update comments.
(sh64_init_extra_frame_info): Update comments.
* mn10300-tdep.c: Update comments.
* mcore-tdep.c (mcore_init_extra_frame_info): Update comments.
* config/sparc/tm-sparc.h: Update comments.
* breakpoint.h: Update comments.
* avr-tdep.c (avr_init_extra_frame_info): Update comments.
* arm-tdep.c: Update comment.
2003-04-21 18:48:41 +02:00
|
|
|
#include "infcall.h"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
extern void _initialize_scheme_language (void);
|
2001-11-10 21:44:38 +01:00
|
|
|
static struct value *evaluate_subexp_scm (struct type *, struct expression *,
|
2000-05-28 03:12:42 +02:00
|
|
|
int *, enum noside);
|
2001-11-10 21:44:38 +01:00
|
|
|
static struct value *scm_lookup_name (char *);
|
2000-05-28 03:12:42 +02:00
|
|
|
static int in_eval_c (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
struct type *builtin_type_scm;
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
scm_printchar (int c, struct ui_file *stream)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
fprintf_filtered (stream, "#\\%c", c);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 23:20:35 +02:00
|
|
|
scm_printstr (struct ui_file *stream, const gdb_byte *string,
|
2005-01-29 01:11:12 +01:00
|
|
|
unsigned int length, int width, int force_ellipses)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
fprintf_filtered (stream, "\"%s\"", string);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-07-30 03:48:28 +02:00
|
|
|
is_scmvalue_type (struct type *type)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
if (TYPE_CODE (type) == TYPE_CODE_INT
|
|
|
|
&& TYPE_NAME (type) && strcmp (TYPE_NAME (type), "SCM") == 0)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the INDEX'th SCM value, assuming SVALUE is the address
|
|
|
|
of the 0'th one. */
|
|
|
|
|
|
|
|
LONGEST
|
2000-07-30 03:48:28 +02:00
|
|
|
scm_get_field (LONGEST svalue, int index)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2005-05-27 06:39:33 +02:00
|
|
|
gdb_byte buffer[20];
|
1999-04-16 03:35:26 +02:00
|
|
|
read_memory (SCM2PTR (svalue) + index * TYPE_LENGTH (builtin_type_scm),
|
|
|
|
buffer, TYPE_LENGTH (builtin_type_scm));
|
|
|
|
return extract_signed_integer (buffer, TYPE_LENGTH (builtin_type_scm));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Unpack a value of type TYPE in buffer VALADDR as an integer
|
|
|
|
(if CONTEXT == TYPE_CODE_IN), a pointer (CONTEXT == TYPE_CODE_PTR),
|
|
|
|
or Boolean (CONTEXT == TYPE_CODE_BOOL). */
|
|
|
|
|
|
|
|
LONGEST
|
2005-05-27 06:39:33 +02:00
|
|
|
scm_unpack (struct type *type, const gdb_byte *valaddr, enum type_code context)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
if (is_scmvalue_type (type))
|
|
|
|
{
|
|
|
|
LONGEST svalue = extract_signed_integer (valaddr, TYPE_LENGTH (type));
|
|
|
|
if (context == TYPE_CODE_BOOL)
|
|
|
|
{
|
|
|
|
if (svalue == SCM_BOOL_F)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
switch (7 & (int) svalue)
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
case 2:
|
|
|
|
case 6: /* fixnum */
|
1999-04-16 03:35:26 +02:00
|
|
|
return svalue >> 2;
|
1999-07-07 22:19:36 +02:00
|
|
|
case 4: /* other immediate value */
|
|
|
|
if (SCM_ICHRP (svalue)) /* character */
|
1999-04-16 03:35:26 +02:00
|
|
|
return SCM_ICHR (svalue);
|
|
|
|
else if (SCM_IFLAGP (svalue))
|
|
|
|
{
|
|
|
|
switch ((int) svalue)
|
|
|
|
{
|
|
|
|
#ifndef SICP
|
|
|
|
case SCM_EOL:
|
|
|
|
#endif
|
|
|
|
case SCM_BOOL_F:
|
|
|
|
return 0;
|
|
|
|
case SCM_BOOL_T:
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
error (_("Value can't be converted to integer."));
|
1999-04-16 03:35:26 +02:00
|
|
|
default:
|
|
|
|
return svalue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return unpack_long (type, valaddr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* True if we're correctly in Guile's eval.c (the evaluator and apply). */
|
|
|
|
|
|
|
|
static int
|
2000-07-30 03:48:28 +02:00
|
|
|
in_eval_c (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2002-09-22 22:29:52 +02:00
|
|
|
struct symtab_and_line cursal = get_current_source_symtab_and_line ();
|
2002-09-20 16:58:59 +02:00
|
|
|
|
|
|
|
if (cursal.symtab && cursal.symtab->filename)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2002-09-20 16:58:59 +02:00
|
|
|
char *filename = cursal.symtab->filename;
|
1999-04-16 03:35:26 +02:00
|
|
|
int len = strlen (filename);
|
|
|
|
if (len >= 6 && strcmp (filename + len - 6, "eval.c") == 0)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Lookup a value for the variable named STR.
|
|
|
|
First lookup in Scheme context (using the scm_lookup_cstr inferior
|
|
|
|
function), then try lookup_symbol for compiled variables. */
|
|
|
|
|
2001-11-10 21:44:38 +01:00
|
|
|
static struct value *
|
2000-07-30 03:48:28 +02:00
|
|
|
scm_lookup_name (char *str)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2002-01-04 06:20:09 +01:00
|
|
|
struct value *args[3];
|
1999-04-16 03:35:26 +02:00
|
|
|
int len = strlen (str);
|
2001-11-10 21:44:38 +01:00
|
|
|
struct value *func;
|
|
|
|
struct value *val;
|
1999-04-16 03:35:26 +02:00
|
|
|
struct symbol *sym;
|
|
|
|
args[0] = value_allocate_space_in_inferior (len);
|
|
|
|
args[1] = value_from_longest (builtin_type_int, len);
|
2005-05-27 06:39:33 +02:00
|
|
|
write_memory (value_as_long (args[0]), (gdb_byte *) str, len);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
if (in_eval_c ()
|
|
|
|
&& (sym = lookup_symbol ("env",
|
|
|
|
expression_context_block,
|
2003-05-14 Elena Zannoni <ezannoni@redhat.com>
* symtab.h (enum domain_enum): Rename from namespace_enum.
(UNDEF_DOMAIN, VAR_DOMAIN, STRUCT_DOMAIN, LABEL_DOMAIN,
VARIABLES_DOMAIN, FUNCTIONS_DOMAIN, TYPES_DOMAIN, METHODS_DOMAIN):
Rename from UNDEF_NAMESPACE, VAR_NAMESPACE, STRUCT_NAMESPACE,
LABEL_NAMESPACE, VARIABLES_NAMESPACE, FUNCTIONS_NAMESPACE,
TYPES_NAMESPACE, METHODS_NAMESPACE.
(SYMBOL_NAMESPACE): Rename to SYMBOL_DOMAIN.
(struct symbol, struct partial_symbol): Rename field
'namespace_enum namespace' to 'domain_enum domain'.
(PSYMBOL_NAMESPACE): Rename to PSYMBOL_DOMAIN.
Delete old define kludge for namespace.
* ada-exp.y, ada-lang.c, ada-lang.h, alpha-tdep.c, arm-tdep.c,
blockframe.c, c-exp.y, c-valprint.c, coffread.c, dbxread.c,
dwarf2read.c, dwarfread.c, f-exp.y, gdbtypes.c, gdbtypes.h,
gnu-v3-abi.c, hppa-tdep.c, hpread.c, jv-exp.y, jv-lang.c,
language.c, linespec.c, m2-exp.y, m3-nat.c, mdebugread.c,
mips-tdep.c, nlmread.c, objc-exp.y, objc-lang.c, objfiles.c,
p-exp.y, p-valprint.c, parse.c, printcmd.c, scm-lang.c, source.c,
stabsread.c, stack.c, symfile.c, symfile.h, symmisc.c, symtab.c,
valops.c, values.c, xcoffread.c, xstormy16-tdep.c: Replace all
occurrences of the above.
2003-05-12 Elena Zannoni <ezannoni@redhat.com>
* mi-mi-cmd-stack.c (list_args_or_locals): Rename VAR_NAMESPACE to
VAR_DOMAIN.
2003-05-14 19:43:20 +02:00
|
|
|
VAR_DOMAIN, (int *) NULL,
|
1999-04-16 03:35:26 +02:00
|
|
|
(struct symtab **) NULL)) != NULL)
|
|
|
|
args[2] = value_of_variable (sym, expression_context_block);
|
|
|
|
else
|
|
|
|
/* FIXME in this case, we should try lookup_symbol first */
|
|
|
|
args[2] = value_from_longest (builtin_type_scm, SCM_EOL);
|
|
|
|
|
|
|
|
func = find_function_in_inferior ("scm_lookup_cstr");
|
|
|
|
val = call_function_by_hand (func, 3, args);
|
|
|
|
if (!value_logical_not (val))
|
|
|
|
return value_ind (val);
|
|
|
|
|
|
|
|
sym = lookup_symbol (str,
|
|
|
|
expression_context_block,
|
2003-05-14 Elena Zannoni <ezannoni@redhat.com>
* symtab.h (enum domain_enum): Rename from namespace_enum.
(UNDEF_DOMAIN, VAR_DOMAIN, STRUCT_DOMAIN, LABEL_DOMAIN,
VARIABLES_DOMAIN, FUNCTIONS_DOMAIN, TYPES_DOMAIN, METHODS_DOMAIN):
Rename from UNDEF_NAMESPACE, VAR_NAMESPACE, STRUCT_NAMESPACE,
LABEL_NAMESPACE, VARIABLES_NAMESPACE, FUNCTIONS_NAMESPACE,
TYPES_NAMESPACE, METHODS_NAMESPACE.
(SYMBOL_NAMESPACE): Rename to SYMBOL_DOMAIN.
(struct symbol, struct partial_symbol): Rename field
'namespace_enum namespace' to 'domain_enum domain'.
(PSYMBOL_NAMESPACE): Rename to PSYMBOL_DOMAIN.
Delete old define kludge for namespace.
* ada-exp.y, ada-lang.c, ada-lang.h, alpha-tdep.c, arm-tdep.c,
blockframe.c, c-exp.y, c-valprint.c, coffread.c, dbxread.c,
dwarf2read.c, dwarfread.c, f-exp.y, gdbtypes.c, gdbtypes.h,
gnu-v3-abi.c, hppa-tdep.c, hpread.c, jv-exp.y, jv-lang.c,
language.c, linespec.c, m2-exp.y, m3-nat.c, mdebugread.c,
mips-tdep.c, nlmread.c, objc-exp.y, objc-lang.c, objfiles.c,
p-exp.y, p-valprint.c, parse.c, printcmd.c, scm-lang.c, source.c,
stabsread.c, stack.c, symfile.c, symfile.h, symmisc.c, symtab.c,
valops.c, values.c, xcoffread.c, xstormy16-tdep.c: Replace all
occurrences of the above.
2003-05-12 Elena Zannoni <ezannoni@redhat.com>
* mi-mi-cmd-stack.c (list_args_or_locals): Rename VAR_NAMESPACE to
VAR_DOMAIN.
2003-05-14 19:43:20 +02:00
|
|
|
VAR_DOMAIN, (int *) NULL,
|
1999-04-16 03:35:26 +02:00
|
|
|
(struct symtab **) NULL);
|
|
|
|
if (sym)
|
|
|
|
return value_of_variable (sym, NULL);
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
error (_("No symbol \"%s\" in current context."), str);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
2001-11-10 21:44:38 +01:00
|
|
|
struct value *
|
2000-07-30 03:48:28 +02:00
|
|
|
scm_evaluate_string (char *str, int len)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2001-11-10 21:44:38 +01:00
|
|
|
struct value *func;
|
|
|
|
struct value *addr = value_allocate_space_in_inferior (len + 1);
|
1999-04-16 03:35:26 +02:00
|
|
|
LONGEST iaddr = value_as_long (addr);
|
2005-05-27 06:39:33 +02:00
|
|
|
write_memory (iaddr, (gdb_byte *) str, len);
|
1999-04-16 03:35:26 +02:00
|
|
|
/* FIXME - should find and pass env */
|
2005-05-27 06:39:33 +02:00
|
|
|
write_memory (iaddr + len, (gdb_byte *) "", 1);
|
1999-04-16 03:35:26 +02:00
|
|
|
func = find_function_in_inferior ("scm_evstr");
|
|
|
|
return call_function_by_hand (func, 1, &addr);
|
|
|
|
}
|
|
|
|
|
2001-11-10 21:44:38 +01:00
|
|
|
static struct value *
|
2003-09-09 10:05:43 +02:00
|
|
|
evaluate_subexp_scm (struct type *expect_type, struct expression *exp,
|
|
|
|
int *pos, enum noside noside)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
enum exp_opcode op = exp->elts[*pos].opcode;
|
1999-07-07 22:19:36 +02:00
|
|
|
int len, pc;
|
|
|
|
char *str;
|
1999-04-16 03:35:26 +02:00
|
|
|
switch (op)
|
|
|
|
{
|
|
|
|
case OP_NAME:
|
|
|
|
pc = (*pos)++;
|
|
|
|
len = longest_to_int (exp->elts[pc + 1].longconst);
|
|
|
|
(*pos) += 3 + BYTES_TO_EXP_ELEM (len + 1);
|
|
|
|
if (noside == EVAL_SKIP)
|
|
|
|
goto nosideret;
|
|
|
|
str = &exp->elts[pc + 2].string;
|
|
|
|
return scm_lookup_name (str);
|
|
|
|
case OP_EXPRSTRING:
|
|
|
|
pc = (*pos)++;
|
|
|
|
len = longest_to_int (exp->elts[pc + 1].longconst);
|
|
|
|
(*pos) += 3 + BYTES_TO_EXP_ELEM (len + 1);
|
|
|
|
if (noside == EVAL_SKIP)
|
|
|
|
goto nosideret;
|
|
|
|
str = &exp->elts[pc + 2].string;
|
|
|
|
return scm_evaluate_string (str, len);
|
1999-07-07 22:19:36 +02:00
|
|
|
default:;
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
return evaluate_subexp_standard (expect_type, exp, pos, noside);
|
1999-07-07 22:19:36 +02:00
|
|
|
nosideret:
|
1999-04-16 03:35:26 +02:00
|
|
|
return value_from_longest (builtin_type_long, (LONGEST) 1);
|
|
|
|
}
|
|
|
|
|
* parser-defs.h (struct exp_descriptor): New definition, containing
language-specific info for printing, prefixifying, dumping, and
evaluating expressions.
(exp_descriptor_standard): Declare new variable.
(print_subexp): Make global and declare here (from expprint.c).
(dump_subexp): Ditto.
(dump_subexp_body_standard): Declare.
(operator_length_standard): Declare.
(op_name_standard): Declare.
(print_subexp): Declare.
(print_subexp_standard): Declare.
* language.h (struct language_defn): Add la_exp_desc field to hold
pointer to table for language-specific operators.
Remove evaluate_exp field, which is now in struct exp_descriptor.
* parse.c (operator_length): Move most code to new
operator_length_standard function. Use language-specific information.
(operator_length_standard): New function taking most code from
operator_length.
(exp_descriptor_standard): New constant.
* expression.h (enum exp_opcode): Add definitions of OP_EXTENDED0
and OP_EXTENDED_LAST.
* expprint.c (print_subexp): Use language-specific print_subexp.
Make global; remove static declaration.
Move most code to print_subexp_standard.
(print_subexp_standard): New function, containing code formerly in
print_subexp.
(op_name): Add expression to argument signature.
Use langauge-specific op_name.
Move most code to op_name_standard.
(op_name_standard): New function, containing code formerly in op_name.
(dump_subexp): Use new version of op_name function.
Use language-specific dump_subexp_body, and move most existing code to
dump_subexp_body_standard.
(dump_raw_expression): Use new op_name interface.
(dump_subexp_body): Move most code to dump_subexp_body_standard.
(dump_subexp_body_standard): New function, containing code formerly
in dump_subexp_body.
* language.c (unknown_language): Add default la_exp_desc field and
remove evaluate_exp field.
(auto_language): Ditto.
(local_language): Ditto.
* f-lang.c (f_language_defn): Ditto.
* c-lang.c (c_language_defn): Ditto.
(cplus_language_defn): Ditto.
(asm_language_defn): Ditto.
(minimal_language_defn): Ditto.
* p-lang.c (pascal_language_defn): Ditto.
* m2-lang.c (m2_language_defn): Ditto.
* objc-lang.c (objc_language_defn): Ditto.
* jv-lang.c (exp_descriptor_java): New variable, containing
Java-specific expression evaluator.
(java_language_defn): Add la_exp_desc field and remove evaluate_exp
field.
* scm-lang.c (exp_descriptor_scm): New variable, containing
Scheme-specific expression evaluator.
(scm_language_defn): Add la_exp_desc field and remove evaluate_exp
field.
* objc-lang.c (print_object_command): Take evaluate_exp from the
la_exp_desc field.
* Makefile.in (eval.o): Add dependency on parser-defs.h.
* eval.c: Include parser-defs.h for the full declaration of
la_exp_desc's type.
(evaluate_subexp): Get evaluate_exp out of la_exp_desc field.
2003-09-25 10:40:45 +02:00
|
|
|
const struct exp_descriptor exp_descriptor_scm =
|
|
|
|
{
|
|
|
|
print_subexp_standard,
|
|
|
|
operator_length_standard,
|
|
|
|
op_name_standard,
|
|
|
|
dump_subexp_body_standard,
|
|
|
|
evaluate_subexp_scm
|
|
|
|
};
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
const struct language_defn scm_language_defn =
|
|
|
|
{
|
1999-04-16 03:35:26 +02:00
|
|
|
"scheme", /* Language name */
|
|
|
|
language_scm,
|
2004-07-28 17:18:08 +02:00
|
|
|
NULL,
|
1999-04-16 03:35:26 +02:00
|
|
|
range_check_off,
|
|
|
|
type_check_off,
|
2000-08-10 Jimmy Guo <guo@cup.hp.com>
* c-lang.c: Set case sensitivity on for c_language_defn,
cplus_language_defn, and asm_language_defn.
* ch-lang.c: Set case sensitivity on for chill_language_defn.
* f-lang.c: Set case sensivitity off for f_language_defn.
* jv-lang.c: Set case sensitivity on for java_language_defn.
* language.h: Add enum case_mode, case_sensitivity.
* language.c: Define case_mode, case_sensitivity. Set case
sensitivity on for unknown_language_defn, auto_language_defn,
and local_language_defn.
(show_case_command,set_case_command,set_case_str): New static func.
(set_type_range_case): New static func, replaces set_type_range ().
(set_language_command,set_type_command,set_range_command,set_language):
Call set_type_range_case ().
(language_info): Print case sensitivity setting.
(_initialize_language): Add set/show commands for 'case-sensitive'.
Set default case mode 'auto'. Set default language 'auto'.
* m2-lang.c: Set case sensitivity on for m2_language_defn.
* p-lang.c: Set case sensitivity on for pascal_language_defn.
* scm-lang.c: Set case sensitivity off for scm_language_defn.
* symtab.c (lookup_symbol): Downcase symbol name if case sensivitity
is off.
2000-08-11 03:02:35 +02:00
|
|
|
case_sensitive_off,
|
2004-08-29 12:12:24 +02:00
|
|
|
array_row_major,
|
* parser-defs.h (struct exp_descriptor): New definition, containing
language-specific info for printing, prefixifying, dumping, and
evaluating expressions.
(exp_descriptor_standard): Declare new variable.
(print_subexp): Make global and declare here (from expprint.c).
(dump_subexp): Ditto.
(dump_subexp_body_standard): Declare.
(operator_length_standard): Declare.
(op_name_standard): Declare.
(print_subexp): Declare.
(print_subexp_standard): Declare.
* language.h (struct language_defn): Add la_exp_desc field to hold
pointer to table for language-specific operators.
Remove evaluate_exp field, which is now in struct exp_descriptor.
* parse.c (operator_length): Move most code to new
operator_length_standard function. Use language-specific information.
(operator_length_standard): New function taking most code from
operator_length.
(exp_descriptor_standard): New constant.
* expression.h (enum exp_opcode): Add definitions of OP_EXTENDED0
and OP_EXTENDED_LAST.
* expprint.c (print_subexp): Use language-specific print_subexp.
Make global; remove static declaration.
Move most code to print_subexp_standard.
(print_subexp_standard): New function, containing code formerly in
print_subexp.
(op_name): Add expression to argument signature.
Use langauge-specific op_name.
Move most code to op_name_standard.
(op_name_standard): New function, containing code formerly in op_name.
(dump_subexp): Use new version of op_name function.
Use language-specific dump_subexp_body, and move most existing code to
dump_subexp_body_standard.
(dump_raw_expression): Use new op_name interface.
(dump_subexp_body): Move most code to dump_subexp_body_standard.
(dump_subexp_body_standard): New function, containing code formerly
in dump_subexp_body.
* language.c (unknown_language): Add default la_exp_desc field and
remove evaluate_exp field.
(auto_language): Ditto.
(local_language): Ditto.
* f-lang.c (f_language_defn): Ditto.
* c-lang.c (c_language_defn): Ditto.
(cplus_language_defn): Ditto.
(asm_language_defn): Ditto.
(minimal_language_defn): Ditto.
* p-lang.c (pascal_language_defn): Ditto.
* m2-lang.c (m2_language_defn): Ditto.
* objc-lang.c (objc_language_defn): Ditto.
* jv-lang.c (exp_descriptor_java): New variable, containing
Java-specific expression evaluator.
(java_language_defn): Add la_exp_desc field and remove evaluate_exp
field.
* scm-lang.c (exp_descriptor_scm): New variable, containing
Scheme-specific expression evaluator.
(scm_language_defn): Add la_exp_desc field and remove evaluate_exp
field.
* objc-lang.c (print_object_command): Take evaluate_exp from the
la_exp_desc field.
* Makefile.in (eval.o): Add dependency on parser-defs.h.
* eval.c: Include parser-defs.h for the full declaration of
la_exp_desc's type.
(evaluate_subexp): Get evaluate_exp out of la_exp_desc field.
2003-09-25 10:40:45 +02:00
|
|
|
&exp_descriptor_scm,
|
1999-04-16 03:35:26 +02:00
|
|
|
scm_parse,
|
|
|
|
c_error,
|
2004-04-11 00:10:01 +02:00
|
|
|
null_post_parser,
|
1999-04-16 03:35:26 +02:00
|
|
|
scm_printchar, /* Print a character constant */
|
|
|
|
scm_printstr, /* Function to print string constant */
|
|
|
|
NULL, /* Function to print a single character */
|
|
|
|
NULL, /* Create fundamental type in this language */
|
|
|
|
c_print_type, /* Print a type using appropriate syntax */
|
|
|
|
scm_val_print, /* Print a value using appropriate syntax */
|
|
|
|
scm_value_print, /* Print a top-level value */
|
2003-03-26 04:39:44 +01:00
|
|
|
NULL, /* Language specific skip_trampoline */
|
2003-05-20 03:55:18 +02:00
|
|
|
value_of_this, /* value_of_this */
|
|
|
|
basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
|
2004-01-24 00:03:31 +01:00
|
|
|
basic_lookup_transparent_type,/* lookup_transparent_type */
|
2003-04-02 05:02:46 +02:00
|
|
|
NULL, /* Language specific symbol demangler */
|
2004-07-06 21:29:31 +02:00
|
|
|
NULL, /* Language specific class_name_from_physname */
|
1999-04-16 03:35:26 +02:00
|
|
|
NULL, /* expression operators for printing */
|
|
|
|
1, /* c-style arrays */
|
|
|
|
0, /* String lower bound */
|
2004-07-28 17:18:08 +02:00
|
|
|
NULL,
|
2003-10-07 00:38:03 +02:00
|
|
|
default_word_break_characters,
|
2004-07-28 17:18:08 +02:00
|
|
|
c_language_arch_info,
|
2005-10-03 23:21:20 +02:00
|
|
|
default_print_array_index,
|
1999-04-16 03:35:26 +02:00
|
|
|
LANG_MAGIC
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
_initialize_scheme_language (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
add_language (&scm_language_defn);
|
|
|
|
builtin_type_scm = init_type (TYPE_CODE_INT,
|
|
|
|
TARGET_LONG_BIT / TARGET_CHAR_BIT,
|
|
|
|
0, "SCM", (struct objfile *) NULL);
|
|
|
|
}
|