2000-02-02 01:21:19 +01: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, 1999, 2000, 2003, 2005 Free Software
|
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
|
|
|
Foundation, Inc.
|
2000-02-02 01:21:19 +01:00
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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. */
|
2000-02-02 01:21:19 +01:00
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
#define SICP
|
|
|
|
#include "scm-tags.h"
|
|
|
|
#undef SCM_NCELLP
|
|
|
|
#define SCM_NCELLP(x) ((SCM_SIZE-1) & (int)(x))
|
|
|
|
#define SCM_ITAG8_DATA(X) ((X)>>8)
|
|
|
|
#define SCM_ICHR(x) ((unsigned char)SCM_ITAG8_DATA(x))
|
|
|
|
#define SCM_ICHRP(x) (SCM_ITAG8(x) == scm_tc8_char)
|
|
|
|
#define scm_tc8_char 0xf4
|
|
|
|
#define SCM_IFLAGP(n) ((0x87 & (int)(n))==4)
|
|
|
|
#define SCM_ISYMNUM(n) ((int)((n)>>9))
|
|
|
|
#define SCM_ISYMCHARS(n) (scm_isymnames[SCM_ISYMNUM(n)])
|
|
|
|
#define SCM_ILOCP(n) ((0xff & (int)(n))==0xfc)
|
|
|
|
#define SCM_ITAG8(X) ((int)(X) & 0xff)
|
|
|
|
#define SCM_TYP7(x) (0x7f & (int)SCM_CAR(x))
|
|
|
|
#define SCM_LENGTH(x) (((unsigned long)SCM_CAR(x))>>8)
|
|
|
|
#define SCM_NCONSP(x) (1 & (int)SCM_CAR(x))
|
|
|
|
#define SCM_NECONSP(x) (SCM_NCONSP(x) && (1 != SCM_TYP3(x)))
|
|
|
|
#define SCM_CAR(x) scm_get_field (x, 0)
|
|
|
|
#define SCM_CDR(x) scm_get_field (x, 1)
|
|
|
|
#define SCM_VELTS(x) ((SCM *)SCM_CDR(x))
|
|
|
|
#define SCM_CLOSCAR(x) (SCM_CAR(x)-scm_tc3_closure)
|
|
|
|
#define SCM_CODE(x) SCM_CAR(SCM_CLOSCAR (x))
|
|
|
|
#define SCM_MAKINUM(x) (((x)<<2)+2L)
|
|
|
|
|
1999-08-31 03:14:27 +02:00
|
|
|
/* Forward decls for prototypes */
|
1999-04-16 03:35:26 +02:00
|
|
|
struct value;
|
|
|
|
|
2000-02-02 01:21:19 +01:00
|
|
|
extern int scm_value_print (struct value *, struct ui_file *,
|
|
|
|
int, enum val_prettyprint);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
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
|
|
|
extern int scm_val_print (struct type *, const gdb_byte *, int, CORE_ADDR,
|
2000-02-02 01:21:19 +01:00
|
|
|
struct ui_file *, int, int, int,
|
|
|
|
enum val_prettyprint);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
extern LONGEST scm_get_field (LONGEST, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-02-02 01:21:19 +01:00
|
|
|
extern void scm_scmval_print (LONGEST, struct ui_file *, int, int, int,
|
|
|
|
enum val_prettyprint);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
extern int is_scmvalue_type (struct type *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-02-02 01:21:19 +01:00
|
|
|
extern void scm_printchar (int, struct ui_file *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
extern struct value *scm_evaluate_string (char *, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
extern struct type *builtin_type_scm;
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
extern int scm_parse (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2005-05-27 06:39:33 +02:00
|
|
|
extern LONGEST scm_unpack (struct type *, const gdb_byte *, enum type_code);
|