+Tue Jul 30 17:57:46 1996 Stan Shebs <shebs@andros.cygnus.com>
+
+ * stabsread.c (get_substring): Declare second arg as int.
+
+ * remote-es.c: Include gdb_string.h after defs.h.
+
Mon Jul 29 21:13:20 1996 Fred Fish <fnf@cygnus.com>
* rs6000-tdep.c (push_arguments): Remove unused variable "pc".
* printcmd.c (_initialize_printcmd): Initialize
tm_print_insn_info.flavour.
+start-sanitize-gdbtk
* gdbtk.c (gdb_disassemble): Initialize di.flavour.
+end-sanitize-gdbtk
Thu Jul 25 19:41:31 1996 Fred Fish <fnf@cygnus.com>
(strerror): Ditto.
* f-valprint.c (f77_print_array_1): Remove extra arg that was being
passed to f77_print_array_1.
- * gdbtk.c (register_changed_p): Remove unused local variable "buf".
* gdbtypes.c (add_name): Remove unused variables lenstrlen and lenstr.
* scm-exp.c (scm_istr2int): Remove unused variable "j".
(scm_parse): Remove unused variable "str".
(debug_to_notice_signals): Ditto.
(debug_to_thread_alive): Ditto.
(debug_to_stop): Ditto.
+start-sanitize-gdbtk
* gdbtk.c (null_routine): Ditto.
(gdbtk_flush): Ditto.
(gdbtk_fputs): Ditto.
(gdbtk_call_command): Ditto.
(tk_command_loop): Ditto.
(gdbtk_init): Ditto.
+end-sanitize-gdbtk
* breakpoint.h (set_breakpoint_sal): Ditto.
* remote-utils.c (usage): Ditto.
* remote.c (set_thread): Ditto.
uninitialized.
* utils.c (vfprintf_maybe_filtered): Change second arg from "char *"
to "const char *".
+start-sanitize-gdbtk
* gdbtk.c (gdb_fetch_registers): Cast fourth arg to map_arg_registers
to proper pointer type, from int.
(gdbtk_query): Change first arg to "const char *" from "char *".
+end-sanitize-gdbtk
* infptrace.c (udot_info): Add two dummy args so that the type is
correct for passing to add_info.
* f-lang.c (saved_fcn): Move decl to head of file so it can be used
* eval.c (init_array_element): Declare previously undeclared
last two args as LONGEST.
* dcache.c (dcache_xfer_memory): Change xfunc decls to prototype form.
+start-sanitize-gdbtk
+ * gdbtk.c (register_changed_p): Remove unused local variable "buf".
+end-sanitize-gdbtk
Thu Jul 25 16:11:54 1996 Doug Evans <dje@canuck.cygnus.com>
partial-stab.h.
* stabsread.h (end_psymtab): Add textlow_not_set arg to prototype.
+start-sanitize-gdbtk
Sat Jul 20 17:46:40 1996 Fred Fish <fnf@cygnus.com>
* gdbtk.tcl (files_command): Reorder the binding tags for
the listbox widget to avoid referencing the listbox after
the containing widget has been destroyed by the action of
a previous binding.
+end-sanitize-gdbtk
Sat Jul 20 10:41:06 1996 Fred Fish <fnf@cygnus.com>
to "struct fileinfo" to avoid conflict with "struct file" in
<sys/file.h> on HPUX and Solaris.
+start-sanitize-gdbtk
Sat Jul 20 10:09:28 1996 Fred Fish <fnf@cygnus.com>
* gdbtk.tcl (delete_expr): Unset corresponding element of
(create_expr_window): Initialize expr_num, delete_expr_num,
and expr_update_list here when each new expression window
is created, rather than once at startup.
+end-sanitize-gdbtk
Fri Jul 19 14:05:57 1996 Stan Shebs <shebs@andros.cygnus.com>
* defs.h printcmd.c: Create global disassemble_info structure
tm_print_insn_info.
+start-sanitize-gdbtk
* gdbtk.c (gdb_disassemble): Setup di.mach from
tm_print_insn_info.mach, and set endian from TARGET_BYTE_ORDER.
+end-sanitize-gdbtk
* i386-tdep.c (set_assembly_language_command): set
tm_print_insn_info.mach to the appropriate value for 386 or 8086
disassembly.
struct type *, struct objfile *));
static char *
-get_substring PARAMS ((char **, char));
+get_substring PARAMS ((char **, int));
static struct type *
dbx_alloc_type PARAMS ((int [2], struct objfile *));
/* This code added to support parsing of ARM/Cfront stabs strings */
-/* get substring from string up to char c
- advance string pointer past suibstring */
+/* Get substring from string up to char c, advance string pointer past
+ suibstring. */
+
static char *
-get_substring(p, c)
+get_substring (p, c)
char ** p;
- char c;
+ int c;
{
- char * str;
+ char *str;
str = *p;
- *p = strchr(*p,c);
+ *p = strchr (*p, c);
if (*p)
{
**p = 0;
return str;
}
-/* Physname gets strcat'd onto sname in order to recreate the mangled name
- (see funtion gdb_mangle_name in gdbtypes.c). For cfront, make the physname
- look like that of g++ - take out the initial mangling
+/* Physname gets strcat'd onto sname in order to recreate the mangled
+ name (see funtion gdb_mangle_name in gdbtypes.c). For cfront, make
+ the physname look like that of g++ - take out the initial mangling
eg: for sname="a" and fname="foo__1aFPFs_i" return "FPFs_i" */
+
static char *
-get_cfront_method_physname(fname)
- char * fname;
+get_cfront_method_physname (fname)
+ char *fname;
{
- int len=0;
+ int len = 0;
/* FIXME would like to make this generic for g++ too, but
that is already handled in read_member_funcctions */
char * p = fname;
/* search ahead to find the start of the mangled suffix */
if (*p == '_' && *(p+1)=='_') /* compiler generated; probably a ctor/dtor */
- p+=2;
- while (p && ((p+1) - fname) < strlen(fname) && *(p+1)!='_')
- p = strchr(p,'_');
- if (!(p && *p=='_' && *(p+1)=='_'))
- error("Invalid mangled function name %s",fname);
- p+=2; /* advance past '__' */
+ p += 2;
+ while (p && ((p+1) - fname) < strlen (fname) && *(p+1) != '_')
+ p = strchr (p, '_');
+ if (!(p && *p == '_' && *(p+1) == '_'))
+ error ("Invalid mangled function name %s",fname);
+ p += 2; /* advance past '__' */
/* struct name length and name of type should come next; advance past it */
- while (isdigit(*p))
+ while (isdigit (*p))
{
- len = len*10 + (*p - '0');
+ len = len * 10 + (*p - '0');
p++;
}
- p+=len;
+ p += len;
return p;
}
A:ZcA;;foopri__1AFv foopro__1AFv __ct__1AFv __ct__1AFRC1A foopub__1AFv ;;;
^
*/
+
static int
-read_cfront_baseclasses(fip, pp, type, objfile)
+read_cfront_baseclasses (fip, pp, type, objfile)
struct field_info *fip;
- struct objfile * objfile;
+ struct objfile *objfile;
char ** pp;
- struct type * type;
+ struct type *type;
{
static struct complaint msg_unknown = {"\
Unsupported token in stabs string %s.\n",
static struct complaint msg_notfound = {"\
Unable to find base type for %s.\n",
0, 0};
- int bnum=0;
+ int bnum = 0;
char * p;
int i;
struct nextfield *new;
- if (**pp==';') /* no base classes; return */
+ if (**pp == ';') /* no base classes; return */
{
++(*pp);
return 1;
}
/* first count base classes so we can allocate space before parsing */
- for (p = *pp; p && *p && *p!=';'; p++)
+ for (p = *pp; p && *p && *p != ';'; p++)
{
- if (*p==' ') bnum++;
+ if (*p == ' ')
+ bnum++;
}
bnum++; /* add one more for last one */
{
int num_bytes = B_BYTES (TYPE_N_BASECLASSES (type));
char *pointer;
+
pointer = (char *) TYPE_ALLOC (type, num_bytes);
TYPE_FIELD_VIRTUAL_BITS (type) = (B_TYPE *) pointer;
}
B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), TYPE_N_BASECLASSES (type));
-
for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
{
new = (struct nextfield *) xmalloc (sizeof (struct nextfield));