2002-11-09 Klee Dienes <kdienes@apple.com>
[binutils-gdb.git] / gdb / ChangeLog
1 2002-11-09 Klee Dienes <kdienes@apple.com>
2
3 * blockframe.c (sigtramp_saved_pc): Use
4 builtin_type_void_code_ptr, not builtin_type_void_data_ptr (we are
5 extracting the PC). Use TYPE_LENGTH (builtin_type_void_code_ptr)
6 instead of (TARGET_PTR_BIT / TARGET_CHAR_BIT).
7
8 2002-11-09 Andrew Cagney <ac131313@redhat.com>
9
10 * frame.c (get_prev_frame): Test prev_p to identify a previously
11 unwound frame. Initialize prev_p.
12 * frame.h (struct frame_info): Add field prev_p. Expand prev/next
13 comment.
14
15 2002-11-09 Andrew Cagney <ac131313@redhat.com>
16
17 * frame.c (get_prev_frame): Cleanups. Eliminate redundant tests
18 for a NULL NEXT_FRAME. Simplify fromleaf initialization. Add
19 more comments. Zap dead code.
20
21 2002-11-09 Mark Kettenis <kettenis@gnu.org>
22
23 * infcmd.c (print_vector_info, print_float_info): Move code that
24 checks whether the target has any registers and whether there is a
25 selected frame up, such that it is also used if a target provides
26 multi-arch definitions of these functions.
27
28 2002-11-08 Andrew Cagney <ac131313@redhat.com>
29
30 * Makefile.in (DESTDIR): Define.
31 (install-only, install-gdbtk, uninstall-gdbtk): Add $(DESTDIR)
32 prefix.
33
34 * config/djgpp/fnchange.lst: 8.3 proof i386obsd-nat.c and
35 i386obsd-tdep.c. Rename to "gdb.cxx", paths containing "gdb.c++".
36
37 2002-11-08 Andrew Cagney <ac131313@redhat.com>
38
39 * i386-linux-tdep.c: Include "reggroups.h".
40 (i386_linux_register_reggroup_p): New function.
41 (i386_linux_init_abi): Set register_reggroup_p to
42 i386_linux_register_reggroup_p.
43 * i386-tdep.h (i386_register_reggroup_p): Declare.
44 * i386-tdep.c: Include "reggroups.h".
45 (i386_init_reggroups): New function.
46 (i386_add_reggroups): New function.
47 (i386_register_reggroup_p): New function.
48 (i386_sse_reggroup, i386_mmx_reggroup): New variables.
49 (_initialize_i386_tdep): Call i386_init_reggroups.
50 (i386_gdbarch_init): Set register_reggroup_p and add in the i386
51 specific reggroups.
52
53 2002-11-09 Mark Kettenis <kettenis@gnu.org>
54
55 * infptrace.c (child_xfer_memory): Make use of the new PT_IO
56 request that's available in *BSD.
57
58 * i386-tdep.h (IS_FPU_CTRL_REGNUM): Remove.
59
60 * i387-tdep.c (i387_fill_fxsave): Use FOOFF_REGNUM instead of
61 FDOFF_REGNUM.
62
63 2002-11-08 Andrew Cagney <ac131313@redhat.com>
64
65 * frame.c (set_unwind_by_pc): Use dummy_frame_register_unwind.
66 * dummy-frame.c (find_dummy_frame): Rename
67 generic_find_dummy_frame, make static. Return the dummy frame
68 instead of the regcache.
69 (generic_find_dummy_frame): Re-implement using find_dummy_frame,
70 (cached_find_dummy_frame): New function. Use find_dummy_frame.
71 (dummy_frame_register_unwind): Rename
72 generic_call_dummy_register_unwind. Use cached_find_dummy_frame.
73 * dummy-frame.h (dummy_frame_register_unwind): Rename
74 generic_call_dummy_register_unwind.
75
76 2002-11-08 Mark Kettenis <kettenis@gnu.org>
77
78 * config/i386/tm-i386v42mp.h: Remove file. Move its contents,
79 except the inclusion of "i386/tm-i386.h", to...
80 * config/i386/nm-i386v42mp.h: ...here.
81 * config/i386/i386v42mp.mt (TM_FILE): Set to tm-i386.h.
82
83 2002-11-08 Andrew Cagney <ac131313@redhat.com>
84
85 * Makefile.in (frame.o): Update dependencies.
86 * blockframe.c (current_frame, frame_obstack_alloc)
87 (frame_saved_regs_zalloc, get_current_frame)
88 (set_current_frame, create_new_frame)
89 (set_unwind_by_pc, get_next_frame)
90 (flush_cached_frames, reinit_frame_cache)
91 (frame_saved_regs_register_unwind)
92 (deprecated_generic_get_saved_register)
93 (get_prev_frame, get_frame_pc, get_frame_saved_regs)
94 (_initialize_blockframe): Move frame code from here...
95 * frame.c: ...to here. Include "gdb_obstack.h", "gdbcore.h",
96 "annotate.h" and "dummy-frame.h".
97 (_initialize_frame): New function.
98
99 2002-11-08 Jim Blandy <jimb@redhat.com>
100
101 * dwarf2read.c (read_func_scope): Restore list_in_scope properly
102 when we finish a function a context.
103 * buildsym.h (outermost_context_p): New macro.
104 (Bug analyzed by David Edelsohn.)
105
106 2002-11-08 Andrew Cagney <ac131313@redhat.com>
107
108 * blockframe.c: Include "dummy-frame.h".
109 (struct dummy_frame, dummy_frame_stack)
110 (generic_find_dummy_frame, deprecated_generic_find_dummy_frame)
111 (generic_pc_in_call_dummy, deprecated_read_register_dummy)
112 (generic_push_dummy_frame, generic_save_dummy_frame_tos)
113 (generic_save_call_dummy_addr, generic_pop_current_frame)
114 (generic_pop_dummy_frame, generic_fix_call_dummy)
115 (generic_fix_call_dummy, generic_call_dummy_register_unwind): Move
116 dummy frame code from here...
117 * dummy-frame.c: ...to here. New file.
118 * dummy-frame.h: New file.
119 (generic_call_dummy_register_unwind): Declare.
120 (generic_find_dummy_frame): Declare.
121 * Makefile.in (SFILES): Add dummy-frame.c.
122 (dummy-frame.o): Specify dependencies.
123 (dummy_frame_h): Define.
124 (COMMON_OBS): Add dummy-frame.o.
125 (blockframe.o): Update dependencies.
126
127 2002-11-08 Jim Blandy <jimb@redhat.com>
128
129 * dwarf2read.c (read_func_scope): Restore local_symbols and
130 param_symbols after we finish the function context. (Based on a
131 patch from David Edelsohn.)
132
133 2002-11-08 David Carlton <carlton@math.stanford.edu>
134
135 * linespec.c (symbol_found): New function.
136 (minsym_found): New function.
137 (decode_line_1): Separate out some code into separate functions.
138
139 2002-11-08 Joel Brobecker <brobecker@gnat.com>
140
141 * i386-tdep.c (i386_frameless_signal_p): Make non static for
142 the benefit of the interix target.
143 * i386-tdep.h (i386_frameless_signal_p): Declare.
144
145 2002-11-08 Andrew Cagney <ac131313@redhat.com>
146
147 * i386-tdep.h (i386_linux_orig_eax_regnum_p): Delete stray
148 declaration that snuck in from change below.
149
150 2002-11-06 Andrew Cagney <cagney@redhat.com>
151
152 * i386-tdep.c (i386_mmx_regnum_p): Rename mmx_regnum_p. Update
153 all callers.
154 (i386_fp_regnum_p): New function. Use instead of FP_REGNUM_P.
155 (i386_fpc_regnum_p): New function. Use instead of FPC_REGNUM_P.
156 (i386_sse_regnum_p): New function. Use instead of SSE_REGNUM_P.
157 (i386_mxcsr_regnum_p): new function. Use instead of
158 MXCSR_REGNUM_P.
159 * i386-tdep.h (SSE_REGNUM_P): Delete macro.
160 (i386_sse_regnum_p): Declare.
161 (i386_mxcsr_regnum_p): Declare.
162 (FP_REGNUM_P, FPC_REGNUM_P): Delete macros.
163 (i386_fp_regnum_p, i386_fpc_regnum_p): Declare.
164 (IS_FP_REGNUM): Update definition.
165 (IS_FPU_CTRL_REGNUM): Update definition..
166 (IS_SSE_REGNUM): Update definition..
167 * i386v-nat.c (register_u_addr): Update.
168 * go32-nat.c (fetch_register): Update.
169 (store_register): Update.
170
171 2002-11-07 Joel Brobecker <brobecker@gnat.com>
172
173 Preparation work to convert the hppa targets to multiarch partial.
174
175 * hppa-tdep.c: Add new functions replacing macro bodies from
176 config/pa/tm-hppa.h. These function will be used to initialize
177 the gdbarch structure. Import some comments from tm-hppa.h,
178 and place them where appropriate, to avoid loosing them when
179 we cleanup this file.
180 (hppa_reg_struct_has_addr): New function.
181 (hppa_inner_than): New function.
182 (hppa_stack_align): New function.
183 (hppa_pc_requires_run_before_use): New function.
184 (hppa_instruction_nullified): New function.
185 (hppa_register_byte): New function.
186 (hppa_register_virtual_type): New function.
187 (hppa_store_struct_return): New function.
188 (hppa_cannot_store_register): New function.
189 (hppa_frame_args_address): New function.
190 (hppa_frame_locals_address): New function.
191 (hppa_smash_text_address): New function.
192 (hppa_coerce_float_to_double): New function. Requires the inclusion
193 of "language.h".
194
195 * Makefile.in (hppa-tdep.o): Add dependency on language.h.
196
197 * tm-hppa.h (REG_STRUCT_HAS_ADDR): Change the definition of this
198 gdbarch-eligible macro to a call to the new associated function
199 created in hppa-tdep.c.
200 (INNER_THAN): Likewise.
201 (STACK_ALIGN): Likewise.
202 (PC_REQUIRES_RUN_BEFORE_USE): Likewise.
203 (INSTRUCTION_NULLIFIED): Likewise.
204 (REGISTER_BYTE): Likewise.
205 (REGISTER_VIRTUAL_TYPE): Likewise.
206 (STORE_STRUCT_RETURN): Likewise.
207 (CANNOT_STORE_REGISTER): Likewise.
208 (FRAME_ARGS_ADDRESS): Likewise.
209 (FRAME_LOCALS_ADDRESS): Likewise.
210 (SMASH_TEXT_ADDRESS): Likewise.
211 (COERCE_FLOAT_TO_DOUBLE): Likewise.
212 (ABOUT_TO_RETURN): Delete, as no longer used.
213
214 2002-11-07 Fernando Nasser <fnasser@redhat.com>
215
216 * printcmd.c (disassemble_command): Remove obsolete function.
217 (_initialize_printcmd): Do not create disassemble command here.
218 * cli/cli-cmds.c (disassemble_command): New function. Implements
219 disassemble command.
220 (init_cli_cmds): Create disassemble command here instead.
221
222 2002-11-07 Andrew Cagney <ac131313@redhat.com>
223
224 * MAINTAINERS: Add Daniel Jacobowitz to global maintainers list.
225
226 2002-11-07 Andrew Cagney <ac131313@redhat.com>
227
228 * regcache.h (regcache_cooked_read_using_offset_hack)
229 (regcache_cooked_write_using_offset_hack): Delete declarations.
230 (register_changed): Delete declaration.
231 * regcache.c (regcache_cooked_read_using_offset_hack)
232 (regcache_cooked_write_using_offset_hack): Delete functions.
233 (cooked_xfer_using_offset_hack): Delete function.
234 (register_changed): Delete function.
235
236 2002-11-07 Jim Blandy <jimb@redhat.com>
237
238 * macroscope.c: #include "complaints.h".
239 (sal_macro_scope): Cope with filenames that appear in the symtabs,
240 but not in the macro table.
241 * Makefile.in (macroscope.o): Record dependency.
242
243 2002-11-07 Joel Brobecker <brobecker@gnat.com>
244
245 * PROBLEMS: Document gdb/816 (unable to read core file on alpha-osf).
246
247 2002-11-07 Andrew Cagney <ac131313@redhat.com>
248
249 * regcache.c (deprecated_registers_fetched): Update.
250 * regcache.h (deprecated_registers_fetched): Rename
251 registers_fetched.
252 * remote-vxsparc.c (vx_read_register): Update.
253 * remote-vxmips.c (vx_read_register): Update.
254 * remote-vx68.c (vx_read_register): Update.
255 * irix5-nat.c (fetch_core_registers): Update.
256 * mipsm3-nat.c (fetch_inferior_registers): Update.
257 * sun3-nat.c (fetch_inferior_registers): Update.
258 * symm-nat.c (fetch_inferior_registers): Update.
259 * ns32knbsd-nat.c (fetch_inferior_registers): Update.
260 (fetch_core_registers): Update.
261 (fetch_kcore_registers): Update.
262 * mips-nat.c (fetch_inferior_registers): Update.
263 * corelow.c (get_core_registers): Update.
264 * a68v-nat.c (fetch_inferior_registers): Update.
265
266 2002-11-06 Joel Brobecker <brobecker@gnat.com>
267
268 Put in place the framework necessary for multiarching the hppa targets.
269 * hppa-tdep.c (hppa_gdbarch_init): New function.
270 (hppa_dump_tdep): New function.
271 (_initialize_hppa_tdep): Register the hppa gdbarch init function and
272 tdep structure dumper.
273 * config/pa/tm-hppa.h (GDB_MULTI_ARCH): New macro, defined to 0
274 until the multi-arching conversion has partially been completed.
275
276 2002-11-06 Andrew Cagney <ac131313@redhat.com>
277
278 * valops.c (value_assign): Merge lval_register case into
279 lval_reg_frame_relative. Use frame_register and
280 regcache_cooked_write instead of get_saved_register and
281 write_register_bytes. After flushing the register cache, try to
282 re-select the selected frame.
283
284 2002-11-06 Andrew Cagney <ac131313@redhat.com>
285
286 * regcache.h (deprecated_register_valid): Rename register_valid.
287 * regcache.c: Update.
288 * ia64-aix-nat.c: Update.
289 * i386gnu-nat.c: Update.
290 * alpha-nat.c: Update.
291 * sparc-nat.c: Update.
292 * lynx-nat.c: Update.
293 * remote-mips.c: Update.
294
295 2002-11-06 Joel Brobecker <brobecker@gnat.com>
296
297 * hppa-tdep.c (_initialize_hppa_tdep): Move function body
298 to end of file, to be more consistent with the pratice followed
299 by other targets.
300
301 2002-11-06 Andrew Cagney <ac131313@redhat.com>
302
303 * infcmd.c: Include "reggroups.h" and <ctype.h>.
304 (print_float_info): Print registers in float_reggroup.
305 (print_vector_info): Print registers in vector_reggroup.
306 (default_print_registers_info): When all, print registers in
307 all_reggroup. Otherwize, print registers in general_reggroup.
308 (registers_info): Rewrite. Add support for register groups.
309 Eliminate a goto.
310
311 2002-11-06 Elena Zannoni <ezannoni@redhat.com>
312
313 * symtab.c (methods_info): Delete. It has been ifdeffed out for
314 ages.
315 (symtab_symbol_info): Remove eons old ifdeffed out code.
316 (_initialize_symtab): Remove prehistoric disabled 'info methods'
317 command.
318
319 2002-11-06 Theodore A. Roth <troth@openavr.org>
320
321 * c-exp.y: Add missing semi-colons.
322 * f-exp.y: Add missing semi-colons.
323 * m2-exp.y: Add missing semi-colons.
324 * p-exp.y: Add missing semi-colons.
325 Add empty action to start rule to avoid a type clash error when
326 building with bison >= 1.50.
327
328 2002-11-06 Jim Blandy <jimb@redhat.com>
329
330 * macrotab.h (struct macro_source_file): Doc fix.
331
332 2002-11-05 Jeff Johnston <jjohnstn@redhat.com>
333
334 * varobj.c (child_exists, cplus_number_of_children): Change
335 STREQ macro references to strcmp.
336 (cplus_name_of_child): Change code to handle the fact that
337 fields are not necessarily contiguous with regards to their
338 access control. This is a fix for PR gdb/792.
339
340 2002-11-05 Andrew Cagney <ac131313@redhat.com>
341
342 * gdbarch.sh (GET_SAVED_REGISTER): Change to a predicate function.
343 * gdbarch.h, gdbarch.c: Regnerate.
344 * frame.h (frame_register): Declare.
345 * frame.c (frame_register): New function.
346 (get_saved_register): Test GET_SAVED_REGISTER_P before calling
347 GET_SAVED_REGISTER, otherwize call
348 generic_unwind_get_saved_register.
349 (frame_register_read): Use frame_register instead of
350 get_saved_register.
351
352 2002-11-05 Elena Zannoni <ezannoni@redhat.com>
353
354 From Jim Ingham <jingham@apple.com>:
355 * event-top.c (gdb_disable_readline): New function.
356 (_initialize_event_loop): Move comment.
357
358 2002-11-05 Elena Zannoni <ezannoni@redhat.com>
359
360 * event-loop.c (start_event_loop): Add comment.
361 Update copyright.
362
363 2002-11-05 Andrew Cagney <ac131313@redhat.com>
364
365 * infcmd.c (default_print_registers_info): Do not call
366 PRINT_REGISTER_HOOK.
367
368 2002-11-05 Andrew Cagney <ac131313@redhat.com>
369
370 * sparc-tdep.c (sparc_print_register_hook): Make static.
371 (sparc_print_registers_info): New function.
372 (sparc_do_registers_info): New function.
373 (sparclet_print_registers_info): New function.
374 (sparclet_do_registers_info): New function.
375 (do_sparc_print_registers_info): New function.
376 (sparc_print_registers): New static function, clone of infcmd.c's
377 default_print_registers_info.
378 * config/sparc/tm-sparclet.h (PRINT_REGISTER_HOOK): Delete macro.
379 (sparclet_do_registers_info): Declare.
380 (DEPRECATED_DO_REGISTERS_INFO): Re-define.
381 * config/sparc/tm-sparc.h (DEPRECATED_DO_REGISTERS_INFO):
382 Re-define.
383 (sparc_do_registers_info): Declare.
384 (PRINT_REGISTER_HOOK): Delete macro.
385 (sparc_print_register_hook): Delete declaration.
386
387 2002-11-05 David Carlton <carlton@math.stanford.edu>
388
389 * symtab.c (lookup_symbol_aux): Move chunks of code into separate
390 functions.
391 (lookup_symbol_aux_local): New function.
392 (lookup_symbol_aux_symtabs): New function.
393 (lookup_symbol_aux_psymtabs): New function.
394
395 2002-11-05 David Carlton <carlton@math.stanford.edu>
396
397 * symtab.c (lookup_symbol_aux): In minsym sections, don't use the
398 previous values of 'objfile' and 'block'.
399
400 2002-11-05 Pierre Muller <muller@ics.u-strasbg.fr>
401
402 * values.c (value_change_enclosing_type): Set
403 enclosing_type field correctly also for the case where
404 more memory needs to be allocated.
405
406 2002-11-03 Mark Kettenis <kettenis@gnu.org>
407
408 * i387-tdep.c (i387_print_float_info): Call fputs_filtered instead
409 of puts_filtered.
410
411 * i387-tdep.c (i387_print_float_info): Replace calls to
412 register_read and deprecated_read_register_gen with calls to
413 frame_register_read, and make the necessary adjustments to the
414 surrounding code.
415
416 2002-11-02 Andrew Cagney <ac131313@redhat.com>
417
418 * gdbarch.sh (register_reggroup_p): Allow default value.
419 * gdbarch.h, gdbarch.c: Regenerate.
420
421 2002-11-02 Andrew Cagney <ac131313@redhat.com>
422
423 * regcache.h: Add coment indicating replacements for deprecated
424 functions.
425
426 2002-11-02 Andrew Cagney <cagney@redhat.com>
427
428 * reggroups.h, reggroups.c: New files.
429 * regcache.c: Include "reggroups.h".
430 (enum regcache_dump_what): Add `regcache_dump_groups'.
431 (regcache_dump): Contract size of the "Type" column. When
432 specified, dump the register's groups.
433 (maintenance_print_register_groups): New function.
434 (_initialize_regcache): Add command `maint print register-groups'.
435 * Makefile.in (COMMON_OBS): Add reggroups.o
436 (SFILES): Add reggroups.c.
437 (reggroups_h): Define.
438 (regcache.o, gdbarch.o): Update dependencies.
439 (reggroups.o): Specify dependencies.
440 * gdbarch.sh (register_reggroup_p): Add pure multi-arch method.
441 Add opaque declaration for `struct reggroup' in generated .h file.
442 Include "reggroups.h" in generated .c file.
443 gdbarch.h, gdbarch.c: Re-generate.
444
445 2002-11-02 Andrew Cagney <cagney@redhat.com>
446
447 * regcache.h (deprecated_read_register_gen): Rename
448 read_register_gen.
449 (deprecated_write_register_gen): Rename write_register_gen.
450 * i387-tdep.c: Update.
451 * x86-64-linux-nat.c: Update
452 * wince.c: Update.
453 * thread-db.c: Update.
454 * win32-nat.c: Update.
455 * mips-tdep.c: Update.
456 * d10v-tdep.c: Update.
457 * cris-tdep.c: Update.
458 * remote-sim.c: Update.
459 * remote-rdi.c: Update.
460 * remote-rdp.c: Update.
461 * frame.c: Update.
462 * target.c: Update.
463 * blockframe.c: Update.
464 * x86-64-tdep.c: Update.
465 * xstormy16-tdep.c: Update.
466 * sh-tdep.c: Update.
467 * s390-tdep.c: Update.
468 * rs6000-tdep.c: Update.
469 * sparc-tdep.c: Update.
470 * i386-tdep.c: Update.
471 * dwarf2cfi.c: Update.
472 * regcache.c: Update.
473
474 2002-11-01 Joel Brobecker <brobecker@gnat.com>
475
476 New interix-specific files:
477 * config/i386/nm-interix.h: New file.
478 * config/i386/interix.mh: New file.
479 * config/i386/interix.mt: New file.
480 * i386-interix-nat.c: New file.
481 * i386-interix-tdep.c: New file.
482
483 2002-11-01 Andrew Cagney <cagney@redhat.com>
484
485 * frame.h (deprecated_generic_get_saved_register): Rename
486 generic_get_saved_register.
487 * blockframe.c (deprecated_generic_get_saved_register): Update.
488 * xstormy16-tdep.c (xstormy16_get_saved_register): Update.
489 (xstormy16_frame_saved_register): Update.
490 * sh-tdep.c (sh_gdbarch_init): Update.
491 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
492 * ia64-tdep.c (ia64_get_saved_register): Update.
493 * cris-tdep.c (cris_gdbarch_init): Update.
494 * config/m32r/tm-m32r.h (GET_SAVED_REGISTER): Update.
495 * arm-tdep.c (arm_gdbarch_init): Update.
496
497 2002-10-31 Daniel Jacobowitz <drow@mvista.com>
498
499 * lin-lwp.c (lin_lwp_resume): Remove resume_all test for !step.
500
501 2002-10-31 Daniel Jacobowitz <drow@mvista.com>
502
503 * i386-linux-tdep.c (i386_linux_pc_in_sigtramp): Check for
504 trampolines in sigaction.
505
506 2002-10-31 Andrew Cagney <cagney@redhat.com>
507
508 * h8300-tdep.c: Include "gdb_assert.h".
509 (h8300_print_register): Add gdbarch, file and frame parameters.
510 Use frame_read_unsigned_register to read the register's value.
511 Use fprintf_filtered to display output.
512 (h8300_print_registers_info): Replace h8300_do_registers_info.
513 (h8300_gdbarch_init): Set print_registers_info.
514
515 2002-10-31 Andrew Cagney <cagney@redhat.com>
516
517 * frame.c (frame_read_unsigned_register): New function.
518 (frame_read_signed_register): New function.
519 * frame.h (frame_read_unsigned_register): Declare.
520 (frame_read_signed_register): Declare.
521
522 2002-10-31 Andrew Cagney <cagney@redhat.com>
523
524 * h8500-tdep.c (h8500_print_registers_info): New static function,
525 clone of infcmd.c's default_print_registers_info.
526 (h8500_do_registers_info): New funtion.
527 (h8500_print_register_hook): Rename print_register_hook, make
528 static.
529
530 * config/h8500/tm-h8500.h: Update copyright.
531 (DEPRECATED_DO_REGISTERS_INFO): Define.
532 (h8500_do_registers_info: Declare.
533 (PRINT_REGISTER_HOOK): Delete macro.
534 (print_register_hook): Delete function.
535
536 2002-10-31 Andrew Cagney <cagney@redhat.com>
537
538 * z8k-tdep.c (z8k_print_register_hook): Make static.
539 (z8k_print_registers_info): New static function, clone of
540 infcmd.c's default_print_registers_info.
541 (z8k_do_registers_info): New function. Wrap
542 z8k_print_registers_info.
543 * config/z8k/tm-z8k.h: Update copyright.
544 (PRINT_REGISTER_HOOK): Delete macro.
545 (z8k_print_register_hook): Delete declaration.
546 (DEPRECATED_DO_REGISTERS_INFO): Define.
547 (z8k_do_registers_info): Declare.
548
549 2002-10-30 Joel Brobecker <brobecker@gnat.com>
550
551 * hppa-tdep.c (find_function_in_inferior): Remove this extern,
552 as this is already provided by value.h, and was actually causing
553 a compilation error because of a conflict in parameter type
554 declaration due to a missing const keyword.
555 (low_text_segment_addres): Fix a compilation warning.
556
557 2002-10-29 Daniel Jacobowitz <drow@mvista.com>
558
559 * mips-linux-nat.c (mips_linux_cannot_fetch_register): Don't fetch
560 registers without a name.
561 (mips_linux_cannot_store_register): Don't store registers without
562 a name.
563
564 2002-10-28 David Carlton <carlton@math.stanford.edu>
565
566 * symtab.c (find_addr_symbol): Delete. (It was already commented
567 out.)
568 * symtab.h: Delete prototype for find_addr_symbol.
569
570 2002-10-26 Andrew Cagney <cagney@redhat.com>
571
572 * gdbarch.sh (DEPRECATED_DO_REGISTERS_INFO): Rename
573 DO_REGISTERS_INFO.
574 gdbarch.h, gdbarch.c: Re-generate.
575 * infcmd.c (default_print_registers_info): Update reference.
576 * mips-tdep.c (mips_gdbarch_init): Set deprecated_do_registers_info.
577 (mips_dump_tdep): Do not print DO_REGISTERS_INFO.
578 * sh-tdep.c (sh_gdbarch_init): Ditto.
579 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
580 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
581
582 2002-10-26 Mark Kettenis <kettenis@gnu.org>
583
584 * x86-64-tdep.c (x86_64_init_abi): Set init_extra_frame_info to
585 cfi_init_extra_frame_info.
586 * x86-64-tdep.h (x86_64_init_extra_frame_info): Remove prototype.
587 * x86-64-linux-tdep.c (x86_64_init_extra_frame_info): Remove function.
588
589 * x86-64-tdep.c (x86_64_init_abi): Add calls to override the i386
590 target where necessary. Add more comments and remove the ones
591 that don't provide any useful information.
592
593 * i386-tdep.c (i386_frame_saved_pc): Replace call to
594 deprecated_read_register_dummy with
595 frame_unwind_unsigned_register.
596
597 * i386-tdep.c (i386_extract_struct_value_address): Use
598 regcache_raw_read_unsigned instead of
599 regcache_cooked_read_unsigned since we know that the register
600 we're reading isn't a pseudo register. Rename variable 'val' into
601 the more descriptive 'addr'.
602
603 * x86-64-tdep.c: Fix some formatting problems, mostly in comments.
604 (x86_64_push_return_address): Add comment.
605 (x86_64_pop_frame): Make static.
606 (examine_argument): Clarify comment.
607 (x86_64_skip_prologue): Make prolog_expact variable static.
608
609 * dwarf2cfi.c: Fix some formatting problems.
610 (context_cpy, read_encoded_pointer): Clarify comments.
611
612 * x86-64-tdep.c (x86_64_breakpoint_from_pc): Constify.
613 (x86_64_init_abi): Move set_gdbarch_* calls that overlap with the
614 i386 target back into x86_64_gdbarch_init. Add some comments and
615 remove meaningless ones.
616
617 2002-10-25 Andrew Cagney <cagney@redhat.com>
618
619 * complaints.h (struct deprecated_complaint): Rename `struct
620 complaint'.
621 * complaints.c (complain): Update.
622 * remote-vx68.c, remote-vxmips.c, remote-vxsparc.c: Delete
623 incorrect comment indicating that "symfile.h" was being included
624 for the `struct complaint' definition.
625 * remote-vx.c: Update.
626 * objc-lang.c: Update.
627 * xcoffread.c: Update.
628 * hpread.c: Update.
629 * mdebugread.c: Update.
630 * stabsread.c: Update.
631 * dwarf2read.c: Update.
632 * dwarfread.c: Update.
633 * elfread.c: Update.
634 * coffread.c: Update.
635 * stabsread.h: Update.
636 * dbxread.c: Update.
637 * buildsym.c: Update.
638 * gdbtypes.c: Update.
639 * macrotab.c: Update.
640
641 2002-10-25 Mark Kettenis <kettenis@gnu.org>
642
643 * x86-64-tdep.c (x86_64_gdbarch_init): Make a bit more similar to
644 the version in i386-tdep.c. Move set_gdbarch_* calls out into...
645 (x86_64_init_abi): ...new function.
646
647 * Makefile.in (i386v-nat.o): Add $(i386_tdep_h).
648 * i386v-nat.c: Include "i386-tdep.h".
649
650 2002-10-25 Andrew Cagney <cagney@redhat.com>
651
652 * gdbtypes.c (address_space_name_to_int): Update.
653 (address_space_int_to_name): Update.
654 * gdbarch.sh (address_class_type_flags_to_name): Change to a pure
655 multi-arch predicate.
656 (address_class_name_to_type_flags): Ditto.
657 * gdbarch.h, gdbarch.c: Re-generate.
658
659 * MAINTAINERS: Check all warnings when h8300hms and alpha-elf.
660
661 2002-10-24 Martin M. Hunt <hunt@redhat.com>
662
663 * utils.c (string_to_core_addr): Revert patch from 11 Oct.
664
665 2002-10-24 Elena Zannoni <ezannoni@redhat.com>
666
667 * symtab.h (INIT_SAL): Delete macro.
668 (init_sal): Export.
669 * symtab.c (init_sal): New function.
670
671 * ada-lang.c (ada_finish_decode_line_1): Change INIT_SAL macro
672 to init_sal function call.
673 (find_sal_from_funcs_and_line): Ditto.
674 (all_sals_for_line): Ditto.
675 * breakpoint.c (create_internal_breakpoint): Ditto.
676 (create_fork_vfork_event_catchpoint): Ditto.
677 (create_exec_event_catchpoint): Ditto.
678 (parse_breakpoint_sals): Ditto.
679 (watch_command_1): Ditto.
680 (handle_gnu_4_16_catch_command): Ditto.
681 (clear_command): Ditto.
682 * hppa-tdep.c (child_enable_exception_callback): Ditto.
683 * infcmd.c (run_stack_dummy): Ditto.
684 * infrun.c (process_event_stop_test): Ditto.
685 (check_sigtramp2): Ditto.
686 (step_over_function): Ditto.
687 * linespec.c (decode_line_2): Ditto.
688 (decode_line_1): Ditto.
689 * source.c (line_info): Ditto.
690 * symtab.c (find_pc_sect_line): Ditto.
691
692 2002-10-24 Michal Ludvig <mludvig@suse.cz>
693
694 * dwarf2cfi.c (struct context)
695 (struct context_reg): Moved to dwarf2cfi.h
696 (context_alloc, frame_state_alloc, context_cpy):
697 Made extern instead of static, removed prototypes.
698 * dwarf2cfi.h (struct context)
699 (struct context_reg): New, moved from dwarf2cfi.c
700 (context_alloc, frame_state_alloc, context_cpy):
701 New prototypes.
702 * x86-64-linux-tdep.c (x86_64_linux_sigtramp_saved_pc):
703 Changed from static to extern.
704 (LINUX_SIGINFO_SIZE, LINUX_SIGCONTEXT_PC_OFFSET)
705 (LINUX_SIGCONTEXT_FP_OFFSET)
706 (LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Adjusted.
707 (x86_64_linux_in_sigtramp, x86_64_linux_frame_chain)
708 (x86_64_init_frame_pc, x86_64_init_extra_frame_info): New.
709 * x86-64-tdep.c (x86_64_gdbarch_init): Several
710 set_gdbarch_*() calls now use x86-64 specific functions
711 instead of DWARF2 CFI ones.
712 * x86-64-tdep.h (x86_64_linux_in_sigtramp)
713 (x86_64_linux_frame_chain, x86_64_init_frame_pc)
714 (x86_64_init_extra_frame_info): New prototypes.
715
716 2002-10-23 David Carlton <carlton@math.stanford.edu>
717
718 * linespec.c: #include "parser-defs.h".
719 Delete prototype for find_template_name_end.
720 * Makefile.in (linespec.o): Depend on $(parser_defs_h).
721
722 2002-10-23 Jeff Johnston <jjohnstn@redhat.com>
723
724 * NEWS: add recent mi fixes.
725 * varobj.c (struct varobj): Add new "updated" flag.
726 (new_variable): Default "updated" flag to 0.
727 (varobj_set_value): Set "updated" flag to 1 if value
728 changes.
729 (varobj_update): Check varobj "updated" flag before
730 comparing old and refreshed values. Fix for
731 PR gdb/702.
732
733 2002-10-23 David Carlton <carlton@math.stanford.edu>
734
735 * parse.c (parse_exp_1): Use BLOCK_START.
736 * x86-64-tdep.c (x86_64_skip_prologue): Use BLOCK_END,
737 SYMBOL_BLOCK_VALUE.
738 * objc-lang.c (find_methods): Use BLOCK_START, BLOCK_END.
739
740 2002-10-23 David Carlton <carlton@math.stanford.edu>
741
742 * symtab.c: Delete cplusplus_hint.
743 Delete prototype for find_template_name_end.
744
745 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
746
747 * symtab.h: Update comment.
748
749 2002-10-23 Michael Snyder <msnyder@redhat.com>
750
751 * printcmd.c (address_info): Restore quotes in output.
752 * valops.c (value_of_local): Restore quotes in error message.
753
754 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
755
756 * symtab.c (symbol_demangled_name): New function.
757 * symtab.h (SYMBOL_DEMANGLED_NAME): Simplify macro, by
758 turning most of it into a function.
759 (symbol_demangled_name): Export.
760
761 2002-10-23 Michael Snyder <msnyder@redhat.com>
762
763 * valops.c (value_of_local): Restore quotes in error message.
764
765 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
766
767 * symtab.c (symbol_init_language_specific): New function.
768 * symtab.h (SYMBOL_INIT_LANGUAGE_SPECIFIC): Simplify macro, by
769 turning most of it into a function.
770 (symbol_init_language_specific): Export.
771
772 2002-10-23 David Carlton <carlton@math.stanford.edu>
773
774 * dwarf2read.c (dwarf_tag_name): Add DWARF 3 names.
775 (dwarf_attr_name): Ditto.
776 (dwarf_type_encoding_name): Ditto.
777 (scan_partial_symbols): Descend into DW_TAG_namespace entries.
778 (process_die): Handle DW_TAG_namespace,
779 DW_TAG_imported_declaration, DW_TAG_imported_module.
780 (read_namespace): New function.
781
782 2002-10-22 Joel Brobecker <brobecker@gnat.com>
783
784 * configure.in: Define NEW_PROC_API on Interix too.
785 * configure: Regenerate.
786
787 2002-10-21 Joel Brobecker <brobecker@gnat.com>
788
789 * configure: Regenerate using the proper version of autoconf.
790
791 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
792
793 * findvar.c (read_var_value): Temporarily disable TLS code, until
794 complete TLS support is added.
795
796 2002-10-21 Jim Blandy <jimb@redhat.com>
797 Elena Zannoni <ezannoni@redhat.com>
798
799 * symtab.h (address_class): Re-add LOC_THREAD_LOCAL_STATIC
800 for thread local storage locations.
801 (struct symbol): Add objfile field.
802 (SYMBOL_OBJFILE): Define.
803 * dwarf2read.c (is_thread_local): New static variable.
804 (new_symbol): If variable is in thread local fill in address class
805 and objfile appropriately.
806 (decode_locdesc): Recognize and handle DW_OP_GNU_push_tls_address
807 stack operation.
808 * printcmd.c (address_info): Print the information for thread
809 local storage variable.
810 * findvar.c (read_var_value): In case of thread local variable,
811 defer to the target vector code to compute address.
812
813 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
814
815 * solib-svr4.c (svr4_fetch_objfile_link_map): New function.
816 * solib-svr4.h (svr4_fetch_objfile_link_map): Export.
817
818 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
819
820 * symtab.h (address_class): Rename
821 LOC_THREAD_LOCAL_STATIC to LOC_HP_THREAD_LOCAL_STATIC.
822 * hpread.c (hpread_process_one_debug_symbol): Ditto.
823 * printcmd.c (address_info): Ditto.
824 * findvar.c (symbol_read_needs_frame, read_var_value): Ditto.
825
826 2002-10-20 Mark Kettenis <kettenis@gnu.org>
827
828 * i386bsd-nat.c (i386bsd_dr_set, i386bsd_dr_get_status): Use
829 DBREG_DRX macro to acces debug registers.
830
831 * Makefile.in (i386obsd-tdep.o): New target.
832
833 * solib-sunos.c: Include "bcache.h" and "regcache.h".
834 * Makefile.in (solib-sunos.o): Add $(bcache_h) and $(regcache_h).
835
836 * configure.tgt (i[3456]86-*-openbsd*): Set gdb_target to obds.
837 * config/i386/obsd.mt: New file.
838 * i386bsd-nat.c (_initialize_i386bsd_nat): Introduce
839 i386obsd_sc_pc_offset and i386obsd_sc_sp_offset;
840 * i386obsd-nat.c (_initialize_i386obsd_nat): Set
841 i386obsd_sigtramp_start and i386obsd_sigtramp_end instead of
842 i386nbsd_sigtramp_start and i386nbsd_sigtramp_end.
843 * i386obsd-tdep.c: New file.
844
845 2002-10-19 Adam Fedor <fedor@gnu.org>
846
847 * objc-exp.y (name_not_typename): Fix invalid comment.
848
849 2002-10-20 Mark Kettenis <kettenis@gnu.org>
850
851 * solib-sunos.c (allocate_rt_common_objfile): Use bcache_xmalloc
852 to allocate partial syms and macro byte caches.
853
854 2002-10-18 David Carlton <carlton@math.stanford.edu>
855
856 * symtab.h: Delete 'struct source' and 'struct sourcevector'.
857
858 2002-10-18 Adam Fedor <fedor@gnu.org>
859
860 * stabsread.c (find_name_end): New function.
861 (define_symbol): Use it.
862
863 2002-10-18 Daniel Jacobowitz <drow@mvista.com>
864
865 * config/alpha/nm-fbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
866 * config/alpha/nm-linux.h (CANNOT_STEP_BREAKPOINT): Define to 1.
867 * config/alpha/nm-nbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
868 * config/alpha/nm-osf.h (CANNOT_STEP_BREAKPOINT): Define to 1.
869
870 2002-10-17 David Carlton <carlton@math.stanford.edu>
871
872 * symfile.h: Add opaque declaration for struct obstack.
873 Declare obsavestring to take a const char *.
874 * symfile.c (obsavestring): Make first argument a const char *.
875
876 2002-10-16 Adam Fedor <fedor@gnu.org>
877
878 * breakpoint.c (parse_breakpoint_sals): Ignore ObjC method
879 names when matching breakpoints in current file.
880
881 2002-10-16 Kevin Buettner <kevinb@redhat.com>
882
883 * dwarf2read.c (dwarf2_invalid_pointer_size): New complaint.
884 (read_tag_pointer_type): Add address class support.
885 * gdbarch.sh (ADDRESS_CLASS_TYPE_FLAGS)
886 (ADDRESS_CLASS_TYPE_FLAGS_TO_NAME, ADDRESS_CLASS_NAME_TO_TYPE_FLAGS):
887 New methods.
888 * gdbarch.h, gdbarch.c: Regenerate.
889 * gdbtypes.c (address_space_name_to_int, address_space_int_to_name)
890 (make_type_with_address_space, recursive_type_dump): Add address
891 class support.
892 * gdbtypes.h (TYPE_FLAG_ADDRESS_CLASS_1, TYPE_FLAG_ADDRESS_CLASS_2)
893 (TYPE_FLAG_ADDRESS_CLASS_ALL, TYPE_ADDRESS_CLASS_1)
894 (TYPE_ADDRESS_CLASS_2, TYPE_ADDRESS_CLASS_ALL): New defines
895
896 2002-10-16 Klee Dienes <kdienes@apple.com>
897
898 * stabsread.c (read_tilde_fields): Use name[sizeof(vptr_name)-2]
899 to get the last character of a char[] buffer, not
900 name[sizeof(vptr_name)-1].
901
902 2002-10-14 Adam Fedor <fedor@gnu.org>
903
904 * symtab.h: New objc_specific struct.
905 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Handle ObjC.
906 (SYMBOL_DEMANGLED_NAME): Likewise.
907
908 2002-10-14 Adam Fedor <fedor@gnu.org>
909
910 * symfile.c (init_filename_language_table): Add ObjC file extension.
911
912 2002-10-14 Adam Fedor <fedor@gnu.org>
913
914 * utils.c (puts_filtered_tabular): New function.
915 (fprintf_symbol_filtered): Get ObjC demangled name.
916 * defs.h (puts_filtered_tabular): Declared.
917
918 2002-10-14 Kevin Buettner <kevinb@redhat.com>
919
920 * c-lang.h (c_type_print_varspec_prefix): Delete.
921 * c-typeprint.c (c_type_print_varspec_prefix): Make static. Add
922 ``need_post_space'' parameter. Adjust all callers.
923
924 2002-10-14 Daniel Jacobowitz <drow@mvista.com>
925
926 * config/mips/nm-irix4.h (HAVE_NONSTEPPABLE_WATCHPOINT): Define to 1.
927 * config/mips/nm-irix5.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
928 * config/mips/tm-embed.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
929 * config/pa/nm-hppah.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
930
931 2002-10-13 Adam Fedor <fedor@gnu.org>
932
933 * source.c (print_source_lines): Update comments.
934
935 2002-10-13 Adam Fedor <fedor@gnu.org>
936
937 * valops.c (value_of_local): New function.
938 (value_of_this): Use it.
939 * value.h (value_of_local): Declared.
940
941 2002-10-13 Adam Fedor <fedor@gnu.org>
942
943 * parse.c: (length_of_subexp, prefixify_subexp): Handle
944 OP_MSGCALL, OP_SELECTOR, OP_NSSTRING, and OP_SELF.
945
946 2002-10-12 Adam Fedor <fedor@gnu.org>
947
948 * language.c (binop_result_type): Add language_objc to case.
949 (integral_type): Likewise.
950 (character_type): Likewise.
951 (string_type): Likewise.
952 (boolean_type): Likewise.
953 (structured_type): Likewise.
954 (binop_type_check): Likewise.
955
956 2002-10-11 Adam Fedor <fedor@gnu.org>
957
958 * printcmd.c (address_info): Print 'self' for ObjC.
959
960 2002-10-11 Adam Fedor <fedor@gnu.org>
961
962 * expression.h: New ops OP_NSSTRING, OP_SELECTOR, OP_MSGCALL, and
963 OP_SELF.
964
965 2002-10-11 Adam Fedor <fedor@gnu.org>
966
967 * language.h (CAST_IS_CONVERSION): Add language_objc.
968
969 2002-10-11 Adam Fedor <fedor@gnu.org>
970
971 * defs.h (enum language): Add language_objc.
972
973 2002-10-11 Klee Dienes <kdienes@apple.com>
974
975 * corefile.c (read_memory_typed_address): New function.
976 * gdbcore.h (read_memory_typed_address): Add prototype.
977 * blockframe.c (sigtramp_saved_pc): Use read_memory_typed_address
978 to read a value destined for a CORE_ADDR, not read_memory_integer.
979 * f-valprint.c (f77_get_dynamic_upperbound): Ditto.
980 (f77_get_dynamic_lowerbound): Ditto.
981
982 2002-10-11 Martin M. Hunt <hunt@redhat.com>
983
984 * utils.c (string_to_core_addr): After turning string into
985 a number, convert to a CORE_ADDR using INTEGER_TO_ADDRESS
986 which will do necessary sign-extension, etc.
987
988 2002-10-11 Daniel Jacobowitz <drow@mvista.com>
989
990 * c-exp.y (THIS): Delete token and grammar rule.
991 (yylex): Don't return THIS.
992 * cp-valprint.c (vtbl_ptr_name_old): Delete.
993 (cp_is_vtbl_ptr_type): Don't check vtbl_ptr_name_old.
994 * demangle.c (cplus_markers): Update comment. Put '$'
995 first. Remove CPLUS_MARKER.
996 (_initialize_demangler): Don't call set_cplus_marker_for_demangling.
997 * jv-exp.y (THIS): Delete token and grammar rule.
998 (yylex): Don't return THIS.
999 * mips-tdep.c (mips_dump_tdep): Don't dump CPLUS_MARKER.
1000 * objc-exp.y (THIS): Delete token and grammar rule.
1001 (yylex): Don't return THIS.
1002 * p-exp.y (yylex): Remove reference to CPLUS_MARKER.
1003 * stabsread.c (vptr_name, vb_name): Replace CPLUS_MARKER with '$'.
1004 (read_member_functions): Likewise for opname.
1005 (read_tilde_fields): Use is_cplus_marker.
1006
1007 * defs.h (CPLUS_MARKER): Don't define.
1008 * config/tm-sysv4.h (CPLUS_MARKER): Likewise.
1009 * config/i386/xm-i386sco.h (CPLUS_MARKER): Likewise.
1010 * config/mips/tm-irix3.h (CPLUS_MARKER): Likewise.
1011 * config/mips/tm-irix6.h (CPLUS_MARKER): Likewise.
1012 * config/rs6000/tm-rs6000.h (CPLUS_MARKER): Likewise.
1013
1014 * config/i386/tm-i386v4.h: Delete file.
1015 * config/djgpp/fnchange.lst: Delete tm-i386v4.h.
1016 * config/i386/tm-i386sol2.h: Include "i386/tm-i386.h" instead.
1017 * config/i386/tm-i386v42mp.h: Include "i386/tm-i386.h" instead.
1018 * config/i386/tm-ptx.h: Include "i386/tm-i386.h" instead.
1019 * config/i386/i386gnu.mt (TM_FILE): Use tm-i386.h.
1020 * config/i386/i386sco5.mt (TM_FILE): Likewise.
1021 * config/i386/i386v4.mt (TM_FILE): Likewise.
1022 * config/i386/ncr3000.mt (TM_FILE): Likewise.
1023
1024 2002-10-10 Marko Mlinar <markom@opencores.org>
1025
1026 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C,
1027 accidentially not commited 2002-10-09
1028 * gdbarch.h, gdbarch.c: Re-generate.
1029
1030 2002-10-09 Marko Mlinar <markom@opencores.org>
1031
1032 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C.
1033 * gdbarch.sh (HAVE_NONSTEPPABLE_WATCHPOINT): Add.
1034 * gdbarch.h, gdbarch.c: Re-generate.
1035
1036 2002-10-08 Petr Sorfa <petrs@caldera.com>
1037
1038 Revised and re-submitted by John Wolfe <jlw@caldera.com>
1039
1040 Move the Dwarf 2 abbrev table to a per-compilation-unit structure,
1041 so we can work on more than one compilation unit at a time. This
1042 helps prepare GDB to handle inter-CU die references.
1043 * dwarf2read.c (ABBREV_HASH_SIZE): moved definition forward in
1044 the code to be defined before struct comp_unit_head.
1045 (comp_unit_head): Added new members - offset, cu_head,
1046 begin_die, next and dwarf2_abbrevs.
1047 (dwarf2_abbrevs): Removed single static var; now member of
1048 struct comp_unit_head.
1049 dwarf2_build_psymtabs_hard): Complete new struct comp_unit_head
1050 members.
1051 (psymtab_to_symtab_1): Changed to work with the new
1052 struct comp_unit_head.
1053 (dwarf2_read_abbrevs): Now accepts a cu_header parameter and
1054 constructs the dwarf2_abbrevs[] inside the cu_header.
1055 (dwarf2_empty_abbrev_table): Now expects a ptr to a
1056 dwarf2_abbrev table to clean up.
1057 (dwarf2_lookup_abbrev): Now accepts a cu_header parameter and
1058 handling of dwarf2_abbrevs inside the cu_header.
1059 (read_partial_die): Now supports the call to the new
1060 dwarf2_lookup_abbrev.
1061 (read_full_die): Now supports the call to the new
1062 dwarf2_lookup_abbrev.
1063
1064 2002-10-06 Christopher Faylor <cgf@redhat.com>
1065
1066 * Makefile.in (install-gdbtk): Add missing continuation backslash to
1067 insure that shell variables, such as "transformed_name" are propagated
1068 to later shell statements in rule.
1069
1070 2002-10-06 Mark Kettenis <kettenis@gnu.org>
1071
1072 * config/i386/nm-i386sco.h: Add protection against
1073 multiple-inclusion. Include "i386/nm-i386v.h".
1074 (REGISTER_U_ADDR): Remove define.
1075 (i386_register_u_addr): Remove prototype.
1076
1077 2002-10-04 Michael Snyder <msnyder@redhat.com>
1078
1079 * m32r-stub.c (handle_exception): Make sure exception is "trap"
1080 before treating it as a single-step event.
1081
1082 2002-10-03 Adam Fedor <fedor@gnu.org>
1083
1084 * objc-lang.c: ARI fixes. Change string.h to gdb_string.h.
1085 (objc_demangle): Remove assignment in if statements, Replace
1086 free with xfree.
1087 (add_msglist): Likewise.
1088 (end_msglist): Likewise.
1089 (complare_selectors): Likewise.
1090 (selectors_info): Likewise.
1091 (compare_classes): Likewise.
1092 (classes_info): Likewise.
1093 (print_object_command): Likewise.
1094 (find_objc_msgcall_submethod): Replace PTR with void *.
1095 * objc-lang.h: Remove check for __STDC__.
1096
1097 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
1098
1099 * ui-out.h (ui_out_field_fmt_int): New prototype.
1100 * ui-out.c (ui_out_field_fmt_int): New function allowing specification
1101 of field width and alignment.
1102 * stack.c (print_frame_info_base): When printing frame level, use
1103 ui_out_field_fmt_int with a width of 2 and left alignment. Fix for
1104 PR gdb/192
1105
1106 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
1107
1108 * MAINTAINERS: Add self to Write After Approval list.
1109
1110 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
1111
1112 * infcmd.c (interrupt_target_command_wrapper): Delete.
1113 (interrupt_target_command): Make non static.
1114 (nofp_registers_info): Make static.
1115 * stack.c (return_command_wrapper): Delete.
1116 (return_command): Make non static.
1117
1118 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
1119
1120 * event-top.c (gdb_setup_readline): New function. Code moved from
1121 _initialize_event_loop().
1122 (_initialize_event_loop): Call gdb_setup_readline().
1123
1124 2002-10-02 Andrew Cagney <ac131313@redhat.com>
1125
1126 * infrun.c (resume): Convert #ifdef CANNOT_STEP_BREAKPOINT into C.
1127 * gdbarch.sh (CANNOT_STEP_BREAKPOINT): Add.
1128 * gdbarch.h, gdbarch.c: Re-generate.
1129
1130 2002-10-02 Daniel Jacobowitz <drow@mvista.com>
1131
1132 Fix PR gdb/778
1133 * gdbtypes.c (fill_in_vptr_fieldno): Call check_typedef
1134 before recursing.
1135 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Check return value
1136 of fill_in_vptr_fieldno.
1137
1138 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
1139
1140 * inferior.h (registers_info, stepi_command, nexti_command,
1141 continue_command, interrupt_target_command): Export from infcmd.c.
1142 * frame.h (args_info, selected_frame_level_changed_hook,
1143 return_command): Export from stack.c.
1144 * v850ice.c (stepi_command, nexti_command, continue_command): use
1145 prototypes from inferior.h.
1146 * tracepoint.c (registers_info, args_info, locals_info): Use
1147 prototypes from frame.h and inferior.h.
1148 * Makefile.in (mi-main.o): Add dependency on frame.h.
1149
1150 2002-10-02 Andrew Cagney <ac131313@redhat.com>
1151
1152 * rs6000-tdep.c (rs6000_store_struct_return): Store struct_return
1153 value in register 3 adjusted by ppc_gp0_regnum.
1154
1155 * rs6000-tdep.c (skip_prologue): Bias alloca_reg by ppc_gp0_regnum.
1156
1157 2002-10-02 Marko Mlinar <markom@opencores.org>
1158
1159 * MAINTAINERS: Add myself to the Write After Approval list.
1160
1161 2002-10-01 Alexandre Oliva <aoliva@redhat.com>
1162
1163 * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
1164 of the section for the N64 ABI, fixed.
1165
1166 * config/mips/tm-irix6.h: Include solib.h.
1167
1168 2002-10-01 Elena Zannoni <ezannoni@redhat.com>
1169
1170 * dwarf2read.c (dwarf_stack_op_name): Recognize more dwarf3 and
1171 GNU operators.
1172
1173 2002-10-01 Andrew Cagney <ac131313@redhat.com>
1174
1175 * NEWS: Mention that MI syntax, selected by "mi" changed to "mi2"
1176 and that "mi0" syntax has been removed.
1177
1178 2002-09-30 David Carlton <carlton@math.stanford.edu>
1179
1180 * Makefile.in (ppc-sysv-tdep.o): Depend on gdb_string_h.
1181 * ppc-sysv-tdep.c: #include "gdb_string.h".
1182 * remote-sds.c (getmessage): Add semicolon after 'retry' label to
1183 pacify GCC.
1184
1185 2002-10-01 Andrew Cagney <ac131313@redhat.com>
1186
1187 * rs6000-tdep.c (rs6000_gdbarch_init): For powerpc:7400, fix
1188 "vrsave"'s register number.
1189
1190 2002-09-30 Andrew Cagney <ac131313@redhat.com>
1191
1192 * mips-tdep.c (mips_frame_saved_pc): When a generic dummy frame,
1193 use frame_unwind_signed_register to obtain the PC.
1194 (mips_frame_chain): Handle a generic dummy frame.
1195 (mips_init_extra_frame_info): When a generic dummy frame, don't
1196 re-compute the frame base.
1197 (mips_pop_frame): Handle generic dummy frames.
1198 (mips_gdbarch_init): When generic dummy frames, set
1199 use_generic_dummy_frames, push_dummy_frame to
1200 generic_push_dummy_frame, pc_in_call_dummy to
1201 generic_pc_in_call_dummy, and save_dummy_frame_top_of_stack to
1202 generic_save_dummy_frame_tos.
1203
1204 2002-09-30 Andrew Cagney <ac131313@redhat.com>
1205
1206 * blockframe.c (generic_find_dummy_frame): Rewrite. Only test
1207 against TOP when TOP was explictly set.
1208 (generic_push_dummy_frame): Set TOP to zero.
1209
1210 2002-09-30 Elena Zannoni <ezannoni@redhat.com>
1211
1212 * event-loop.c (start_event_loop): Rename variable 'result' to
1213 'gdb_result', to avoid conflicts with upcoming intepreters changes.
1214
1215 2002-09-30 Keith Seitz <keiths@redhat.com>
1216
1217 * gdb-events.sh (selected_thread_changed): New event.
1218 * gdb-events.c: Regenerated.
1219 * gdb-events.h: Regenerated.
1220
1221 2002-09-30 Hans-Peter Nilsson <hp@bitrange.com>
1222
1223 * MAINTAINERS: Add self to Write After Approval list.
1224
1225 2002-09-30 Fernando Nasser <fnasser@redhat.com>
1226
1227 * disasm.c: New file.
1228 * disasm.h: New file.
1229 * mi/mi-cmd-disas.c (gdb_dis_asm_read_memory): Moved to disasm.c.
1230 (compare_lines): Ditto.
1231 (dump_insns): Ditto.
1232 (do_mixed_source_and_assembly): Moved to disasm.c. Added uiout
1233 argument.
1234 (do_assembly_only): Ditto.
1235 (do_disassembly): Renamed to gdb_disassembly and moved to
1236 disasm.c. Sdded uiout argument.
1237 * Makefile.in: Add new files. Reorder SFILES list. Update
1238 dependencies. Include libgdb.a later in the insight executable.
1239
1240 2002-09-29 Andrew Cagney <ac131313@redhat.com>
1241
1242 * config/djgpp/fnchange.lst: Rename bfd/elf64-alpha.c and
1243 bfd/elf64-alpha-fbsd.c.
1244
1245 2002-09-29 Andrew Cagney <ac131313@redhat.com>
1246
1247 * config/djgpp/fnchange.lst: Rename i386gnu-nat.c and
1248 i386gnu-tdep.c.
1249
1250 2002-09-29 Andrew Cagney <ac131313@redhat.com>
1251
1252 * gnu-nat.h (debug): Use __FILE__ and __LINE__ instead of
1253 __FUNCTION__.
1254 * gnu-nat.c (do_mach_notify_no_senders): Replace __FUNCTION__ with
1255 function name.
1256 (do_mach_notify_port_deleted, do_mach_notify_msg_accepted): Ditto.
1257 (do_mach_notify_port_destroyed, do_mach_notify_send_once): Ditto.
1258 (S_proc_setmsgport_reply, S_proc_getmsgport_reply): Ditto.
1259 (S_msg_sig_post_reply): Ditto.
1260
1261 2002-09-28 Corinna Vinschen <vinschen@redhat.com>
1262
1263 * sh-tdep.c (sh_use_struct_convention): Use definition according
1264 to ABI.
1265 (sh_push_arguments): Store in register with correct endianess.
1266 (sh_default_store_return_value): Ditto.
1267 (sh_gdbarch_init): Set sizeof long double to 8.
1268
1269 2002-09-27 Mark Kettenis <kettenis@gnu.org>
1270
1271 * defs.h: Move inclusion of "ansidecl.h" before "gdb_locale.h".
1272 Fix some whitespace problems.
1273
1274 2002-09-27 David Carlton <carlton@math.stanford.edu>
1275
1276 * Makefile.in (cris-tdep.o): Depend on gdb_string_h.
1277 (mcore-tdep.o): Ditto.
1278 (ns32k-tdep.o): Ditto.
1279 (ns32knbsd-tdep.o): Ditto.
1280 (sh3-rom.o): Ditto.
1281 (vax-tdep.o): Ditto.
1282 * cris-tdep.c: #include "gdb_string.h"
1283 * mcore-tdep.c: Ditto.
1284 * ns32k-tdep.c: Ditto.
1285 * ns32knbsd-tdep.c: Ditto.
1286 * sh3-rom.c: Ditto.
1287 * vax-tdep.c: Ditto.
1288
1289 2002-09-27 David Carlton <carlton@math.stanford.edu>
1290
1291 * config/djgpp/fnchange.lst: Add entries for
1292 gdb/testsuite/gdb.c++/m-static files.
1293
1294 2002-09-27 Jim Wilson <wilson@redhat.com>
1295
1296 * MAINTAINERS: Add myself to the Write After Approval list.
1297
1298 2002-09-26 Martin M. Hunt <hunt@redhat.com>
1299
1300 * mips-tdep.c (find_proc_desc): Initialize startaddr.
1301
1302
1303 2002-09-26 Andrew Cagney <ac131313@redhat.com>
1304
1305 * rs6000-tdep.c (rs6000_frame_chain): Don't chain past the dummy
1306 frame.
1307
1308 2002-09-26 Andrew Cagney <ac131313@redhat.com>
1309
1310 * rs6000-tdep.c (rs6000_extract_struct_value_address): Return 0.
1311 (rs6000_struct_return_address): Delete variable.
1312 (rs6000_store_struct_return): Update.
1313 (rs6000_gdbarch_init): Set extract_struct_value_address instead of
1314 deprecated_extract_struct_value_address.
1315 (rs6000_frame_align): New function.
1316 (rs6000_gdbarch_init): Set frame_align.
1317
1318 2002-09-26 Andrew Cagney <ac131313@redhat.com>
1319
1320 From Grace Sainsbury <graces@redhat.com>:
1321 * Makefile.in (gdbtk-main.o): New target.
1322 (gdb.o): New target.
1323 (main_h): Define.
1324 (main.o): Update dependencies.
1325 (gdb$(EXEEXT)): Add gdb.o.
1326 (SUBDIR_GDBTK_SRCS): Add gdbtk-main.c.
1327 (SUBDIR_GDBTK_ALL, SUBDIR_GDBTK_UNINSTALL): Set.
1328 (SUBDIR_GDBTK_CLEAN): Set.
1329 (install-gdbtk): Install the insight binary.
1330 (uninstall-gdbtk): New target.
1331 (all-gdbtk, clean-gdbtk): New rule.
1332 * top.c (use_windows): Default to zero.
1333 * main.c: Include "main.h".
1334 (main): Delete.
1335 (struct captured_main_args): Delete.
1336 (gdb_main): New function.
1337 * main.h: New file.
1338 * gdb.c: New File.
1339
1340 2002-09-25 Andrew Cagney <cagney@redhat.com>
1341
1342 * frame.c: Include "gdb_string.h" and "builtin-regs.h".
1343 (frame_map_regnum_to_name): New function.
1344 (frame_map_name_to_regnum): New function.
1345 * frame.h (frame_map_name_to_regnum): Declare.
1346 (frame_map_regnum_to_name): Declare.
1347 * builtin-regs.c (builtin_reg_map_regnum_to_name): New function.
1348 * builtin-regs.h (builtin_reg_map_regnum_to_name): Declare.
1349 * parse.c: Do not include "builtin-regs.h".
1350 (target_map_name_to_register): Delete function.
1351 (write_dollar_variable): Use frame_map_name_to_regnum.
1352 * parser-defs.h (target_map_name_to_register): Delete declaration.
1353 * expprint.c: Include "frame.h".
1354 (print_subexp): Use frame_map_regnum_to_name.
1355 * eval.c (evaluate_subexp_standard): Use frame_map_regnum_to_name.
1356 * infcmd.c (registers_info): Use frame_map_name_to_regnum.
1357
1358 2002-09-25 Andrew Cagney <ac131313@redhat.com>
1359
1360 * rs6000-tdep.c (rs6000_frame_saved_pc): If the link register
1361 wasn't saved, and the next innermost frame is a dummy, return the
1362 dummy frame's link register.
1363
1364 2002-09-24 Jim Blandy <jimb@redhat.com>
1365
1366 Fix from Paul Breed:
1367 * main.c (captured_main): Add a `break' after the case for 'b'.
1368
1369 2002-09-24 Keith Seitz <keiths@redhat.com>
1370
1371 * varobj.c (c_type_of_child): Use get_target_type instead
1372 of TYPE_TARGET_TYPE.
1373
1374 2002-09-22 Fernando Nasser <fnasser@redhat.com>
1375
1376 * source.c (get_current_or_default_source_symtab_and_line): Remove
1377 function.
1378 (set_default_source_symtab_and_line): New function. Attempts to
1379 determine a source file to list lines from if one is not currently
1380 defined.
1381 (get_current_source_symtab_and_line): Initialize sal.pc and
1382 sal.end fields.
1383 (set_current_source_symtab_and_line): Mark argument as const.
1384 * source.h: Update declarations and comments.
1385 * linespec.c (decode_line_1): Replace call to removed routine above.
1386 * stack.c (print_frame_info_base): Ditto.
1387 * cli/cli-cmds.c (edit_command): Ditto.
1388 (list_command): Ditto.
1389
1390 2002-09-22 Fernando Nasser <fnasser@redhat.com>
1391
1392 * source.c (get_current_or_default_source_symtab_and_line): Initialize
1393 sal.pc and sal.end fields.
1394 (get_current_or_default_source_symtab_and_line): Ditto.
1395 * breakpoint.c (parse_breakpoint_sals): Use correct accessor function
1396 so we do not cause a new source symtab to be searched for (reverting an
1397 unintentional change from the 2002-09-20 patch).
1398 * scm-lang.c (scm_unpac): Ditto.
1399
1400 2002-09-21 Andrew Cagney <cagney@redhat.com>
1401
1402 * complaints.c (symfile_explanations): Remove new-line from
1403 ``isolated_message''.
1404 (vcomplaint): When ISOLATED_MESSAGE, force a line break.
1405 (clear_complaints): When a SUBSEQUENT_MESSAGE, force a line break.
1406
1407 2002-09-20 Nick Clifton <nickc@redhat.com>
1408
1409 * NEWS: Announce that V850EA ISA is no longer supported.
1410 * v850-tdep.c: Remove reference to bfd_mach_v850ea.
1411
1412 2002-09-20 David Carlton <carlton@math.stanford.edu>
1413
1414 * Makefile.in (c-lang.o): Correct dependencies.
1415 (utils.o): Gather dependencies.
1416 (charset.o): Move.
1417 * c-lang.c: #include "gdb_string.h"
1418
1419 2002-09-20 Fernando Nasser <fnasser@redhat.com>
1420
1421 From 2002-07-02 George Helffrich <george@gly.bris.ac.uk>
1422 * cli/cli-cmds.c (list_command): New function. Implements the new
1423 cli edit command.
1424 (_init_cli_cmds): Add new command definition.
1425 * gdb.1: Document edit command.
1426 * doc/gdb.texinfo: Document edit command.
1427
1428 2002-09-20 Fernando Nasser <fnasser@redhat.com>
1429
1430 * source.c: Make global variables current_source_symtab and
1431 current_source_line static.
1432 (list_command): Moved to cli/cli-cmds.c.
1433 (ambiguous_line_spec): Moved to cli/cli-cmds.c.
1434 (get_first_line_listed): New accessor function.
1435 (get_lines_to_list): New accessor function.
1436 (get_current_source_symtab_and_line): New function. Retrieves the
1437 position in the source code that we consider current.
1438 (get_current_or_default_source_symtab_and_line): New function.
1439 Like the above but attempts to determine a default position if one
1440 is not currently defined.
1441 (set_current_source_symtab_and_line): New function. Sets the source
1442 code position considered current and returns the previously set one.
1443 (clear_current_source_symtab_and_line): Reset stored information about
1444 a current source line.
1445 (_initialize_source): Remove registration for the "list" command and
1446 its alias.
1447 * source.h: Add declarations for the new functions above.
1448 * symtab.h: Remove declarations for the global variables mentioned
1449 above.
1450 * breakpoint.c (parse_breakpoint_sals): Use accessor functions to
1451 obtain current source line.
1452 * linespec.c (decode_line_1): Ditto.
1453 * macroscope.c (default_macro_scope): Ditto.
1454 * scm-lang.c (scm_unpac): Ditto.
1455 * stack.c (print_frame_info_base): Ditto.
1456 * symfile.c (clear_symtab_users): Ditto.
1457 * symtab.c (decode_line_spec): Ditto.
1458 * cli/cli-cmds.c (list_command): Moved here from source.c.
1459 (ambiguous_line_spec): Moved here from source.c.
1460 (_init_cli_cmds): Add definition for "list" and its alias.
1461 * Makefile.in: Update dependencies.
1462
1463 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
1464
1465 * h8300-tdep.c (h8300_examine_prologue): Match saved regs location
1466 with what gcc thinks is correct.
1467
1468 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
1469
1470 * h8300-tdep.c (h8300_examine_prologue): Fix loop for saved regs in
1471 multiple register push instruction.
1472
1473 2002-09-19 Jim Blandy <jimb@redhat.com>
1474
1475 Add support for distinct host and target character sets.
1476 * charset.c, charset.h: New files.
1477 * c-exp.y: #include "charset.h".
1478 (yylex): Convert character and string literals to the target
1479 character set, before returning them as the semantic value of the
1480 token.
1481 * c-lang.c: #include "charset.h".
1482 (c_emit_char): Use charset-specific methods to recognize
1483 characters with backslash escape forms, to decide which characters
1484 to print literally and which to print using numeric escape
1485 sequences, and to convert target characters to host characters
1486 before printing.
1487 * utils.c: #include "charset.h".
1488 (no_control_char_error): New function.
1489 (parse_escape): Use charset-specific methods to recognize
1490 backslash escapes, parse `control character' notation, and convert
1491 characters from the host character set to the target character set.
1492 * configure.in: Set the default host character set.
1493 Check where to find iconv, and what its argument types might be.
1494 * acinclude.m4 (AM_ICONV): New macro, borrowed from GCC.
1495 * Makefile.in (SFILES): List charset.c.
1496 (COMMON_OBS): List charset.o.
1497 (charset.o): New rule.
1498 (charset_h): New header dependency variable.
1499 (c-lang.o, utils.o, c-exp.tab.o): Note dependency on $(charset_h).
1500 (LIBICONV): New variable, set by configure.
1501 (CLIBS): Include $(LIBICONV) here.
1502 * aclocal.m4, config.in, configure: Regenerated.
1503
1504 2002-09-19 Joel Brobecker <brobecker@gnat.com>
1505
1506 * ada-exp.y: Add missing semicolons to end rules. Fixes a
1507 bison 1.35 warning.
1508
1509 2002-09-19 Richard Earnshaw <rearnsha@arm.com>
1510
1511 * gdb_mbuild.sh: New file.
1512
1513 2002-09-19 Andrew Cagney <ac131313@redhat.com>
1514
1515 * objc-exp.y, objc-lang.h, objc-lang.c: Fix copyright notice.
1516
1517 2002-09-18 Andrew Cagney <ac131313@redhat.com>
1518
1519 * breakpoint.c, c-exp.y, defs.h, elfread.c, expression.h,
1520 jv-exp.y, language.c, language.h, p-exp.y, parse.c, parser-defs.h,
1521 printcmd.c, source.c, stabsread.c, symfile.c, symtab.h, utils.c,
1522 valops.c, value.h: Revert previous change.
1523
1524 2002-09-18 Michael Snyder <msnyder@redhat.com>
1525
1526 Preliminary support for Objective-C:
1527 * defs.h (language_objc): New enum value.
1528 (puts_filtered_tabular): Declaration only, exported from utils.c.
1529 (skip_quoted): Delete, declared in completer.h.
1530 * c-exp.y: Include completer.h.
1531 * p-exp.y: Ditto.
1532 * jv-exp.y: Ditto.
1533 * expression.h (OP_MSGCALL, OP_SELECTOR, OP_SELF, OP_NSSTRING):
1534 New operator enum values.
1535 * language.h (CAST_IS_CONVERSION): Test for language_objc.
1536 * language.c (binop_result_type): Handle language_objc case.
1537 (integral_type, character_type, string_type, boolean_type,
1538 structured_type, binop_type_check): Ditto.
1539 * symtab.h (SYMBOL_OBJC_DEMANGLED_NAME): Define.
1540 (struct objc_specific): Add to general_symbol_info.
1541 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Add objc initialization.
1542 (SYMBOL_DEMANGLED_NAME): Handle objc case.
1543 * parser-defs.h (struct objc_class_str): New struct type.
1544 (start_msglist, end_msglist, add_msglist): Declaration only,
1545 exported from objc-lang.c.
1546 * value.h (value_of_local, value_nsstring,
1547 call_function_by_hand_expecting_type): Exported from valops.c.
1548 * valops.c (find_function_addr): Export.
1549 (call_function_by_hand_expecting_type): New function.
1550 (value_of_local): New function.
1551 * symfile.c (init_filename_language_table): Add ".m" extension
1552 for Objective-C.
1553 * utils.c (puts_filtered_tabular): New function.
1554 (fprintf_symbol_filtered): Add objc demangling support (disabled).
1555 (set/show demangle): Extend help-string to refer to ObjC.
1556 * elfread.c (elf_symtab_read): Skip Objective-C special symbols.
1557 * stabsread.c (symbol_reference_defined): Objective-C symbols
1558 may contain colons: make allowances when scanning stabs strings
1559 for colons.
1560 (objc_find_colon): New function.
1561 * printcmd.c (address_info): If language == objc then print
1562 "self" instead of "this".
1563 * parse.c (length_of_subexp): Handle new operators OP_MSGCALL,
1564 OP_NSSTRING, and OP_SELF.
1565 (prefixify_subexp): Ditto.
1566 * source.c (print_source_lines): Mention objc in comment.
1567 * breakpoint.c (parse_breakpoint_sals): Recognize Objective-C
1568 method names.
1569
1570 2002-09-18 Andrew Cagney <ac131313@redhat.com>
1571
1572 * complaints.h: Update copyright.
1573 (struct complaints): Declare.
1574 (struct complaint): Make `message' constant.
1575 (internal_complaint): Declare.
1576 (complaint): Declare.
1577 (complaint_root): Delete declaration.
1578 (symfile_complaints): Delete declaration.
1579 (struct complaints): Add opaque declaration.
1580 (clear_complaints): Add a complaints parameter.
1581 * complaints.c: Update copyright.
1582 (enum complaint_series): Define.
1583 (complaint_root): Delete.
1584 (struct complaints): Define.
1585 (complaint_sentinel, symfile_complaint_book): New variables.
1586 (symfile_explanations, symfile_complaints): New variables.
1587 New variables.
1588 (get_complaints): New function.
1589 (vcomplaint): New function.
1590 (complaint): New function.
1591 (internal_complaint): New function.
1592 (complain): Call vcomplain with symfile_complaint.
1593 (clear_complaints): Rewrite.
1594 (_initialize_complaints): Use add_setshow_command.
1595 * Makefile.in (complaints.o): Update dependencies.
1596 * symfile.c (syms_from_objfile): Add symfile_complaints parameter
1597 to call to clear_complaints.
1598 (new_symfile_objfile, reread_symbols): Ditto.
1599 (oldsyms_complaint): Delete.
1600 (empty_symtab_complaint, unknown_option_complaint): Delete.
1601 (free_named_symtabs): Use complaint instead of complain.
1602
1603 2002-09-18 Michael Snyder <msnyder@redhat.com>
1604
1605 Contributed by Apple Computer, Inc. Merged with current sources
1606 by Adam Fedor <fedor@doc.com> [cagney].
1607
1608 * objc-lang.c: First clean-up round: comments, indentation.
1609 * objc-lang.h: Ditto.
1610 * objc-lang.y: Ditto.
1611
1612 2002-09-18 Andrew Cagney <ac131313@redhat.com>
1613
1614 * maint.c (maintenance_internal_error): Print the parameter as the
1615 error message.
1616 (maintenance_internal_warning): New function.
1617 (_initialize_maint_cmds): Add command `maint internal-warning'.
1618
1619 * defs.h (internal_warning, internal_vwarning): Declare.
1620 * utils.c (struct internal_problem): Define.
1621 (internal_vproblem): New function.
1622 (internal_warning): New function.
1623 (internal_vwarning): New function.
1624 (internal_warning_problem, internal_error_problem): New variables.
1625 (internal_verror): Just call internal_vproblem.
1626
1627 2002-09-18 Michael Snyder <msnyder@redhat.com>
1628
1629 * objc-lang.c: New file, support for Objective-C.
1630 Preliminary check-in, not yet integrated into gdb.
1631 * objc-lang.h: New file.
1632 * objc-exp.y: New file.
1633
1634 2002-09-18 Andrew Cagney <ac131313@redhat.com>
1635
1636 * infrun.c (signal_stop_update): Convert definition to ISO C.
1637 (signal_print_update): Ditto.
1638 (signal_pass_update): Ditto.
1639 * inflow.c (terminal_save_ours): Ditto.
1640
1641 * h8300-tdep.c (h8300_gdbarch_init): Use C instead of C++
1642 comments.
1643
1644 * config/djgpp/fnchange.lst: Handle name clashes between
1645 bfd/coff-tic30.c, bfd/coff-tic4x.c, bfd/coff-tic54x.c and
1646 bfd/coff-tic80.c.
1647
1648 * i386-linux-tdep.h: Fix tipo.
1649
1650 2002-09-18 Adam Fedor <fedor@gnu.org>
1651
1652 * MAINTAINERS: Add myself to the Write After Approval list.
1653
1654 2002-09-18 Jim Blandy <jimb@redhat.com>
1655
1656 * dbxread.c, mdebugread.c: Revert my change of 2001-10-23. Moving
1657 texthigh and textlow to reader-specific structs caused
1658 objfile_relocate to miss them. This is fixable, but the work that
1659 the change was supposed to prepare GDB for never got done anyway.
1660
1661 2002-09-18 David Carlton <carlton@math.stanford.edu>
1662
1663 * MAINTAINERS: Alphabetize Write After Approval list.
1664
1665 2002-09-18 Daniel Jacobowitz <drow@mvista.com>
1666
1667 Fix PR gdb/709
1668 * values.c (value_static_field): Call read_var_value.
1669
1670 2002-09-18 Andrew Cagney <ac131313@redhat.com>
1671
1672 * valops.c (hand_function_call): Align the initial stack pointer
1673 and STRUCT_ADDR using frame_align. When STRUCT_RETURN and
1674 FRAME_ALIGN_P, use STRUCT_ADDR to obtain the called function's
1675 return value.
1676 * mips-tdep.c (mips_frame_align): New function.
1677 (mips_gdbarch_init): Set frame_align.
1678 * gdbarch.sh (FRAME_ALIGN): New method.
1679 * gdbarch.h, gdbarch.c: Re-generate.
1680
1681 2002-09-18 Michal Ludvig <mludvig@suse.cz>
1682
1683 * x86-64-linux-nat.c (x86_64_regmap): Added CS and SS
1684 registers.
1685
1686 2002-09-17 Andrew Cagney <ac131313@redhat.com>
1687
1688 * NEWS: Mention that MIPS $fp behavior changed.
1689 * mipsnbsd-tdep.c (mipsnbsd_cannot_fetch_register): Delete
1690 reference to FP_REGNUM.
1691 (mipsnbsd_cannot_store_register): Ditto.
1692 * mips-linux-nat.c: Update copyright.
1693 (mips_linux_cannot_fetch_register): Delete reference to FP_REGNUM.
1694 (mips_linux_cannot_store_register): Ditto.
1695 * mips-linux-tdep.c (supply_gregset): Ditto. Update copyright.
1696 * config/mips/tm-mips.h: Update copyright.
1697 (FP_REGNUM): Delete macro.
1698 (MIPS_REGISTER_NAMES): Replace "fp" with "".
1699 * config/mips/tm-irix6.h (FP_REGNUM): Delete macro.
1700 * mips-tdep.c (mips_gdbarch_init): Set read_fp to mips_read_sp.
1701 (mips_r3041_reg_names, mips_r3051_reg_names)
1702 (mips_r3081_reg_names): Replace "fp" with "".
1703 Fix PR gdb/480.
1704
1705 2002-09-17 Theodore A. Roth <troth@verinet.com>
1706
1707 * gdb/avr-tdep.c(avr_scan_prologue): Fix bad call to
1708 generic_read_register_dummy() (PR gdb/703).
1709 (avr_push_return_address): #if 0 out unused vars.
1710 (avr_gdbarch_init): Enable use of avr_push_return_address().
1711
1712 2002-09-17 Michael Snyder <msnyder@redhat.com>
1713
1714 * m32r-stub.c (restore_and_return): Postpone restoring of PSW.
1715 RTE will take care of it.
1716
1717 2002-09-17 Andrew Cagney <ac131313@redhat.com>
1718
1719 * arch-utils.c (legacy_virtual_frame_pointer): If FP_REGNUM is
1720 invalid, return SP_REGNUM.
1721
1722 2002-09-17 Michael Snyder <msnyder@redhat.com>
1723
1724 * mips-tdep.c (mips_pop_frame): Read saved values of floating
1725 point registers without sign extension.
1726
1727 2002-09-17 Andrew Cagney <cagney@redhat.com>
1728
1729 * blockframe.c (deprecated_read_register_dummy): Rename
1730 generic_read_register_dummy.
1731 * frame.c (frame_unwind_signed_register): New function.
1732 (frame_unwind_unsigned_register): New function.
1733 * frame.h (frame_unwind_signed_register): Declare.
1734 (frame_unwind_unsigned_register): Declare.
1735 (deprecated_read_register_dummy): Rename
1736 generic_read_register_dummy.
1737
1738 * h8300-tdep.c (h8300_frame_chain): Update.
1739 (h8300_frame_saved_pc): Update.
1740 * xstormy16-tdep.c (xstormy16_frame_saved_pc): Update.
1741 * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
1742 * s390-tdep.c (s390_frame_saved_pc_nofix): Update.
1743 (s390_frame_chain): Update.
1744 * v850-tdep.c (v850_find_callers_reg): Update.
1745 (v850_frame_saved_pc): Update.
1746 * m32r-tdep.c (m32r_init_extra_frame_info): Update.
1747 (m32r_find_callers_reg): Update.
1748 (m32r_frame_saved_pc): Update.
1749 * sh-tdep.c (sh_find_callers_reg): Update.
1750 (sh64_get_saved_pr): Update.
1751 (sh_init_extra_frame_info): Update.
1752 (sh_init_extra_frame_info): Update.
1753 (sh64_init_extra_frame_info): Update.
1754 (sh64_init_extra_frame_info): Update.
1755 * mcore-tdep.c (mcore_find_callers_reg): Update.
1756 (mcore_frame_saved_pc): Update.
1757 (mcore_init_extra_frame_info): Update.
1758 * i386-tdep.c (i386_frame_saved_pc): Update.
1759 * ia64-tdep.c (ia64_frame_saved_pc): Update.
1760 (ia64_init_extra_frame_info): Update.
1761 (ia64_init_extra_frame_info): Update.
1762 * d10v-tdep.c (d10v_frame_saved_pc): Update.
1763 * cris-tdep.c (cris_init_extra_frame_info): Update.
1764 * avr-tdep.c (avr_frame_chain): Update.
1765 (avr_init_extra_frame_info): Update.
1766 (avr_frame_saved_pc): Update.
1767 * arm-tdep.c (arm_find_callers_reg): Update.
1768 (arm_init_extra_frame_info): Update.
1769 (arm_frame_saved_pc): Update.
1770
1771 2002-09-17 Tom Tromey <tromey@redhat.com>
1772
1773 * c-lang.c (c_emit_char): Don't treat \0 specially unless quoter
1774 is "'".
1775
1776 2002-09-17 Corinna Vinschen <vinschen@redhat.com>
1777
1778 * MAINTAINERS: Remove "non multi-arched" text from h8300.
1779 * h8300-tdep.c (h8300_next_prologue_insn) Renamed from
1780 NEXT_PROLOGUE_INSN.
1781 (h8300_examine_prologue): Call h8300_next_prologue_insn instead of
1782 NEXT_PROLOGUE_INSN.
1783
1784 2002-09-16 Joel Brobecker <brobecker@gnat.com>
1785
1786 * osfsolib.c: Remove file, replaced by solib-osf.c.
1787 * Makefile.in: Remove compilation rules for osfsolib.c.
1788
1789 2002-09-16 David Carlton <carlton@math.stanford.edu>
1790
1791 * cp-valprint.c (cp_print_class_method): Correct args to
1792 check_stub_method_group.
1793
1794 2002-09-16 Corinna Vinschen <vinschen@redhat.com>
1795
1796 * h8300-tdep.c: Multiarch. Drop `set machine' command in favor of
1797 `set architecture'. Unify naming convention of functions.
1798 (h8300_skip_prologue): Improve prologue analysis.
1799 (h8300_push_arguments): Rewritten to more closely match GCC's
1800 bizarre argument-passing behavior, along with the comment describing
1801 said behavior.
1802 * remote-hms.c (hms_regnames): Don't use NUM_REGS in definition.
1803 * config/h8300/tm-h8300.h: Multiarch. Just keep stuff needed by
1804 sim, remote-e7000.c, remote-hms.c and remote.c
1805
1806 2002-09-15 Mark Kettenis <kettenis@gnu.org>
1807
1808 * i386-tdep.c (gdb_print_insn_i386): Removed.
1809 (i386_print_insn): New function.
1810 (i386_gdbarch_init): Set print_insn to i386_print_insns.
1811 (_initialize_i386_tdep): Don't initialize tm_print_insn and
1812 tm_print_insn_info.
1813
1814 2002-09-14 Mark Kettenis <kettenis@gnu.org>
1815
1816 * gdbtypes.c (check_stub_method_group): Initialize found_stub to
1817 zero.
1818
1819 2002-09-14 Corinna Vinschen <vinschen@redhat.com>
1820
1821 * arch-utils.c (legacy_pc_in_sigtramp): Move preprocessor expression
1822 for IN_SIGTRAMP to here. Use IN_SIGTRAMP only if it's defined.
1823 Guard usage of SIGTRAMP_START() by using SIGTRAMP_START_P.
1824
1825 2002-09-13 Christopher Faylor <cgf@redhat.com>
1826
1827 * win32-nat.c (child_create_inferior): Honor 'tty' command.
1828
1829 2002-09-13 Daniel Jacobowitz <drow@mvista.com>
1830
1831 * gdbtypes.c (check_stub_method): Make static.
1832 (check_stub_method_group): New function.
1833 * gdbtypes.h: Update prototypes.
1834 * cp-support.c: New file.
1835 * cp-support.h: New file.
1836
1837 * stabsread.c: Include "cp-abi.h" and "cp-support.h".
1838 (update_method_name_from_physname): New function.
1839 (read_member_functions): Correct method names for operators
1840 and v3 constructors/destructors. Separate v2 constructors and
1841 destructors.
1842 * Makefile.in (stabsread.o): Update dependencies.
1843 (SFILES): Add cp-support.c.
1844 (COMMON_OBS): Add cp-support.o.
1845 (cp_support_h, cp-support.o): Add.
1846
1847 * cp-valprint.c (cp_print_class_method): Call
1848 check_stub_method_group instead of check_stub_method. Remove
1849 extraneous QUITs.
1850 * p-valprint.c (pascal_object_print_class_method): Likewise.
1851 * valops.c (search_struct_method): Likewise.
1852 (find_method_list, value_struct_elt_for_reference): Likewise.
1853
1854 2002-09-13 Andrew Cagney <cagney@redhat.com>
1855
1856 * gdbarch.sh (SIGTRAMP_END): Change to a predicate function.
1857 * gdbarch.h, gdbarch.c: Regenerate.
1858
1859 2002-09-13 Andrew Cagney <ac131313@redhat.com>
1860
1861 * frame.c (find_saved_register): Delete function.
1862 * frame.h (find_saved_register): Delete declaration.
1863 Fix PR gdb/631.
1864
1865 Fri Sep 13 14:59:55 2002 Andrew Cagney <cagney@redhat.com>
1866
1867 * mips-tdep.c (read_next_frame_reg): Re-hack using
1868 frame_register_unwind.
1869
1870 Fri Sep 13 07:42:09 2002 Andrew Cagney <cagney@redhat.com>
1871
1872 * mips-tdep.c (mips_get_saved_register): Re-hack using
1873 frame_register_unwind.
1874
1875 2002-09-12 Joel Brobecker <brobecker@gnat.com>
1876
1877 * gdbarch.sh (NAME_OF_MALLOC): New variable in the architecture
1878 vector. Will be useful for Interix.
1879 * gdbarch.h, gdbarch.c: Regenerate.
1880
1881 * valops.c (value_allocate_space_in_inferior): Replace hard-coded
1882 name of the malloc function by NAME_OF_MALLOC.
1883
1884 2002-09-12 Joel Brobecker <brobecker@gnat.com>
1885
1886 * value.h (find_function_in_inferior): Add const keyword to
1887 one of the parameters. Allows us to invoke this function with
1888 a const char *.
1889 * valops.c (find_function_in_inferior): Likewise.
1890
1891 2002-09-12 Joel Brobecker <brobecker@gnat.com>
1892
1893 * exec.c (xfer_memory): Fix compilation warning with old versions
1894 of GCC.
1895 * tracepoint.c (trace_find_tracepoint_command): Likewise.
1896
1897 2002-09-12 David Carlton <carlton@math.stanford.edu>
1898
1899 * symtab.h: Run through gdb_indent.h.
1900 Add 2002 to Copyright year list.
1901
1902 2002-09-12 Alan Modra <amodra@bigpond.net.au>
1903
1904 * x86-64-tdep.c (_initialize_x86_64_tdep): Don't use hard-coded
1905 mach constants.
1906 * MAINTAINERS: Add myself to write after approval list.
1907
1908 2002-09-11 J. Brobecker <brobecker@gnat.com>
1909
1910 * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX.
1911
1912 2002-09-11 J. Brobecker <brobecker@gnat.com>
1913
1914 * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for
1915 Interix.
1916
1917 2002-06-05 Paul N. Hilfinger <hilfingr@otisco.mckusick.com>
1918
1919 * procfs.c (do_detach): Clear current signal, not just fault.
1920 Corrects problem with breakpoint trap signal leaking to detached
1921 process on Tru64.
1922
1923 2002-09-10 Michael Snyder <msnyder@redhat.com>
1924
1925 * buildsym.c (finish_block): Protect against null pointer.
1926
1927 2002-09-10 Andrew Cagney <cagney@redhat.com>
1928
1929 * infcmd.c (default_print_registers_info): Send all output to
1930 ``file'' instead of ``gdb_stdout''.
1931
1932 2002-09-10 Michael Snyder <msnyder@redhat.com>
1933
1934 * mips-tdep.c (mips_extract_struct_value_address): Make val a
1935 LONGEST, and use signed register read (addresses are sign-
1936 extended for mips).
1937
1938 2002-09-10 Stephane Carrez <stcarrez@nerim.fr>
1939
1940 * event-loop.c (gdb_do_one_event): Make public.
1941 * event-loop.h (gdb_do_one_event): Declare.
1942
1943 2002-09-10 Jeff Law <law@redhat.com>
1944
1945 * infttrace.c (child_resume): Simplify and rework to avoid
1946 TT_PROC_CONTINUE.
1947
1948 2002-09-09 Fred Fish <fnf@intrinsity.com>
1949
1950 * printcmd.c (print_scalar_formatted): "len" is the number of
1951 target bytes, NOT the number of target bits.
1952
1953 2002-09-09 Elena Zannoni <ezannoni@redhat.com>
1954
1955 From: Emmanuel Thome' <thome@lix.polytechnique.fr>
1956 * top.c (init_main): Set rl_terminal_name.
1957
1958 2002-09-08 Aidan Skinner <aidan@velvet.net>
1959
1960 * ada-lang.c (ada_array_bound, ada_type_match,
1961 _initialize_ada_language): Fix K&R definitions.
1962 * ada-tasks.c (get_current_task): Fix K&R definitions.
1963 * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
1964
1965 2002-09-07 Christopher Faylor <cgf@redhat.com>
1966
1967 * MAINTAINERS: Remove CE from list of maintainership responsibilities.
1968 Add XP.
1969
1970 2002-09-06 Mark Kettenis <kettenis@gnu.org>
1971
1972 * i386-tdep.c (i386_register_virtual_type,
1973 i386_register_convertible, i386_register_convert_to_virtual,
1974 i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P
1975 instead of IS_FP_REGNUM and IS_SSE_REGNUM.
1976 (i386_gdbarch_init): Fix comment. Add comments on calls that set
1977 sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum.
1978 Don't set push_arguments twice.
1979
1980 * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and
1981 sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end.
1982 * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and
1983 sigtramp_end to NULL.
1984 * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove
1985 defines.
1986 (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
1987
1988 * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spurious
1989 whitespace.
1990
1991 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.
1992 * gdbarch.h, gdbarch.c: Re-generate.
1993 * blockframe.c (find_pc_sect_partial_function): Convert to use
1994 SIGTRAMP_START_P predicate.
1995
1996 2002-09-05 Michael Snyder <msnyder@redhat.com>
1997
1998 * arm-tdep.c (arm_init_extra_frame_info): Distinguish between
1999 generic_dummy_frame method and old method. Also distinguish
2000 between ARM_FP_REGNUM and THUMB_FP_REGNUM.
2001 (arm_extract_return_value): Use new regcache method.
2002
2003 * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment
2004 adjustment that doesn't conform to the ABI.
2005 (mips_extract_struct_value_address): Retrieve V0_REGNUM from
2006 saved regcache, not from current regcache.
2007
2008 2002-09-05 Andrew Cagney <ac131313@redhat.com>
2009
2010 * NEWS: Update for 5.3. Add new section ``Changes since 5.3''.
2011 * README: Update.
2012
2013 2002-09-04 Jason Thorpe <thorpej@wasabisystems.com>
2014
2015 * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode
2016 if arm_apcs_32 is false.
2017
2018 2002-09-04 Andrew Cagney <ac131313@redhat.com>
2019
2020 GDB 5.3 branch created.
2021
2022 2002-09-03 Theodore A. Roth <troth@verinet.com>
2023
2024 * gdb/avr-tdep.c (avr_gdbarch_init): Use
2025 generic_unwind_get_saved_register.
2026
2027 2002-09-03 David Carlton <carlton@math.stanford.edu>
2028
2029 * dwarf2read.c (dwarf2_add_member_fn): Add the 'type'
2030 argument (PR gdb/653). Update call to smash_to_method_type.
2031 (read_structure_scope): Update call to dwarf2_add_member_fn.
2032
2033 2002-09-03 Michal Ludvig <mludvig@suse.cz>
2034
2035 * x86-64-linux-tdep.c: Include gdb_string.h
2036 * x86-64-linux-nat.c: Ditto.
2037
2038 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2039
2040 * ada-exp.y (yyname, yyrule): Remap global variables that appear
2041 when YYDEBUG is set to 1.
2042 * c-exp.y: Likewise.
2043 * f-exp.y: Likewise.
2044 * jv-exp.y: Likewise.
2045 * m2-exp.y: Likewise.
2046 * p-exp.y: Likewise.
2047
2048 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2049
2050 * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to
2051 dependency list.
2052 * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set
2053 solib_svr4_fetch_link_map_offsets to
2054 nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
2055 * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
2056 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
2057 * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o,
2058 solib-svr4.o, and solib-legacy.o.
2059 * config/i386/tm-nbsd.h: Include solib.h.
2060
2061 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2062
2063 * configure.tgt (i[3456]86-*-netbsdelf*): Merge with...
2064 (i[3456]86-*-netbsd*): ...this. Set gdb_target to nbsd.
2065 (i[3456]86-*-openbsd*): Make this a separate entry. Add a
2066 comment noting that this needs its own target configuration.
2067 * config/i386/nbsd.mt: New file.
2068 * config/i386/nbsdaout.mt: Remove.
2069 * config/i386/nbsdelf.mt: Ditto.
2070 * config/i386/tm-nbsdaout.h: Ditto.
2071
2072 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2073
2074 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function.
2075 (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset.
2076 (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or
2077 tdep->sigtramp_end.
2078 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove.
2079 * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END)
2080 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
2081
2082 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2083
2084 * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),
2085 $(i386_tdep_h), and $(nbsd_tdep_h) to dependency list.
2086 * i386-tdep.h (i386bsd_init_abi): New prototype.
2087 * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from
2088 function declaration.
2089 (_initialize_i386bsd_tdep): Don't register OS ABI handlers
2090 for NetBSD-a.out or NetBSD-ELF.
2091 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end)
2092 (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset)
2093 (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to...
2094 * i386nbsd-tdep.c: ...here. Include arch-utils.h, i386-tdep.h,
2095 and nbsd-tdep.h.
2096 (i386nbsd_pc_in_sigtramp): New function.
2097 (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2098 i386nbsd_pc_in_sigtramp.
2099 (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi
2100 and i386nbsdelf_init_abi OS ABI handlers.
2101 * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o.
2102 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
2103
2104 2002-09-02 Mark Kettenis <kettenis@gnu.org>
2105
2106 * i386-linux-nat.c (dummy_sse_values): Only try to fill in the SSE
2107 registers if the target really has them.
2108
2109 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2110
2111 * Makefile.in (mipsnbsd-tdep.o): Use $(nbsd_tdep_h) rather
2112 than nbsd-tdep.h.
2113
2114 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2115
2116 * Makefile.in (alphanbsd-tdep.o): Add $(frame_h) to dependency
2117 list.
2118 * alphanbsd-tdep.c (alphanbsd_sigcontext_addr)
2119 (alphanbsd_skip_sigtramp_frame): New functions.
2120 (alphanbsd_init_abi): Set tdep->skip_sigtramp_frame to
2121 alphanbsd_skip_sigtramp_frame. Set tdep->sigcontext_addr
2122 to alphanbsd_sigcontext_addr.
2123
2124 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2125
2126 * Makefile.in (mipsnbsd-tdep.o): Add nbsd-tdep.h to dependency
2127 list.
2128 (nbsd-tdep.o): Add $(gdb_string_h) to dependency list.
2129 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): Use
2130 nbsd_pc_in_sigtramp.
2131 * mipsnbsd-tdep.c: Include nbsd-tdep.h.
2132 (mipsnbsd_pc_in_sigtramp): Use nbsd_pc_in_sigtramp.
2133 * nbsd-tdep.c: Include gdb_string.h.
2134 (nbsd_pc_in_sigtramp): New function.
2135 * nbsd-tdep.h (nbsd_pc_in_sigtramp): New prototype.
2136 * ppcnbsd-tdep.c (ppcnbsd_pc_in_sigtramp): New function.
2137 (ppcnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2138 ppcnbsd_pc_in_sigtramp.
2139 * shnbsd-tdep.c (shnbsd_pc_in_sigtramp): New function.
2140 (shnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2141 shnbsd_pc_in_sigtramp.
2142 * sparcnbsd-tdep.c (sparcnbsd_init_abi_elf): Set
2143 gdbarch_pc_in_sigtramp to nbsd_pc_in_sigtramp.
2144 * config/mips/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
2145
2146 2002-08-30 Pierre Muller <muller@ics.u-strasbg.fr>
2147
2148 * breakpoint.c (breakpoint_init_inferior): Reset the val field of
2149 watchpoints to NULL.
2150 (insert_breakpoints): set val field of watchpoints if NULL.
2151
2152
2153 2002-08-29 Jim Blandy <jimb@redhat.com>
2154
2155 * symtab.c (lookup_symbol_aux): In the cases where we find a
2156 minimal symbol of an appropriate name and use its address to
2157 select a symtab to read and search, use `name' (as passed to us)
2158 as the demangled name when searching the symtab's global and
2159 static blocks, not the minsym's name.
2160
2161 2002-08-29 Keith Seitz <keiths@redhat.com>
2162
2163 * stack.c (print_frame_info_base): Always set current_source_symtab
2164 and current_source_line.
2165
2166 2002-08-29 Donn Terry <donnte@microsoft.com>
2167
2168 * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S).
2169
2170 2002-08-28 Keith Seitz <keiths@redhat.com>
2171
2172 * stack.c (select_frame): Add FIXME concerning selected-frame
2173 events.
2174 (select_frame_command): Send selected-frame-level-changed
2175 event notification, but only if the level actually changed.
2176 (up_silently_base): Add selected-frame-level-changed event
2177 notification.
2178 (down_silently_base): Likewise.
2179
2180 2002-08-28 Andrew Cagney <ac131313@redhat.com>
2181
2182 * Makefile.in: Update dependencies for all gdb/*.c files.
2183
2184 2002-08-27 Tom Tromey <tromey@redhat.com>
2185
2186 * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
2187 ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
2188 Update dependencies.
2189 * i387-tdep.c: Include gdb_string.h.
2190 * osabi.c: Likewise.
2191 * i386-linux-nat.c: Likewise.
2192 * lin-lwp.c: Likewise.
2193 * ax-gdb.c: Likewise.
2194 * signals/signals.c: Likewise.
2195 * jv-valprint.c: Likewise.
2196 * p-lang.c: Likewise.
2197 * c-valprint.c: Likewise.
2198 * cp-abi.c: Likewise.
2199
2200 2002-08-27 Elena Zannoni <ezannoni@redhat.com>
2201
2202 * cli/cli-script.h (copy_command_lines): Export.
2203 * breakpoint.c: Include cli/cli-script.h.
2204 * Makefile.in (breakpoint.o): Update dependencies.
2205
2206 2002-08-26 Michael Snyder <msnyder@redhat.com>
2207
2208 * breakpoint.c (insert_breakpoints): Protect all references
2209 to 'process_warning'. Shorten long lines.
2210
2211 2002-08-26 Joel Brobecker <brobecker@gnat.com>
2212
2213 * cli/cli-script.c (copy_command_lines): New function.
2214 * defs.h (copy_command_lines): Export.
2215 * testsuite/gdb.base/commands.exp: New tests for commands
2216 attached to a temporary breakpoint, and for commands that
2217 delete the breakpoint they are attached to.
2218
2219 2002-08-26 Michael Snyder <msnyder@redhat.com>
2220
2221 * breakpoint.c (bpstat_stop_status): Instead of copying the
2222 pointer to the breakpoint commands struct, make a new copy
2223 of the struct and point to that.
2224 (bpstat_clear): Free the commands struct.
2225 (bpstat_clear_actions): Free the commands struct.
2226 (bpstat_do_actions): Free the command actions. Also execute
2227 the local cleanups, instead of deleting them.
2228 (delete_breakpoint): Leave the commands field of the bpstat
2229 chain alone -- it will be freed later.
2230
2231 2002-08-26 Kevin Buettner <kevinb@redhat.com>
2232
2233 * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
2234 deleted in 2002-08-20 commit. This function is still used by
2235 ppc-linux-nat.c.
2236
2237 2002-08-26 Keith Seitz <keiths@redhat.com>
2238
2239 * gdb-events.sh: Add selected-frame-level-changed event.
2240 * gdb-events.c: Regenerated.
2241 * gdb-events.h: Regenerated.
2242
2243 2002-08-26 Stephane Carrez <stcarrez@nerim.fr>
2244
2245 Fix PR gdb/393:
2246 * inflow.c (terminal_save_ours): New function to save terminal
2247 settings.
2248 * inferior.h (terminal_save_ours): Declare.
2249 * target.c (debug_to_terminal_save_ours): New function.
2250 (cleanup_target): Defaults to_terminal_save_ours.
2251 (update_current_target): Inherit to_terminal_save_ours.
2252 (setup_target_debug): Set to_terminal_save_ours.
2253 * target.h (target_terminal_save_ours): New to save terminal settings.
2254 (target_ops): New member to_terminal_save_ours.
2255 * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
2256 * hpux-thread.c (init_hpux_thread_ops): Likewise.
2257 * inftarg.c (init_child_ops): Likewise.
2258 * m3-nat.c (init_m3_ops): Likewise.
2259 * procfs.c (init_procfs_ops): Likewise.
2260 * wince.c (init_child_ops): Likewise.
2261 * win32-nat.c (init_child_ops): Likewise.
2262 * sol-thread.c (init_sol_thread_ops): Likewise.
2263
2264 2002-08-26 Mark Kettenis <kettenis@gnu.org>
2265
2266 * i386-tdep.c (i386_store_return_value): Undeprecate. Convert to
2267 use regcache_* functions.
2268 (i386_gdbarch_init): Set store_return_value instead of
2269 deprecated_store_return_value.
2270
2271 * regcache.c (regcache_raw_write_signed,
2272 regcache_raw_write_unsigned): New functions.
2273 * regcache.h (regcache_raw_write_signed,
2274 regcache_raw_write_unsigned): New prototypes.
2275
2276 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2277
2278 * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
2279 (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
2280 source file dependencies. Cleanup corresponding generator rules.
2281
2282 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2283
2284 * regcache.h (register_offset_hack): Declare.
2285 (regcache_cooked_read_using_offset_hack): Declare.
2286 (regcache_cooked_write_using_offset_hack): Declare.
2287
2288 * regcache.c (register_offset_hack): New function.
2289 (regcache_cooked_read_using_offset_hack): New function.
2290 (regcache_cooked_write_using_offset_hack): New function.
2291 (regcache_dump): Check that the registers, according to their
2292 offset, are packed hard against each other.
2293 (cooked_xfer_using_offset_hack): New function.
2294
2295 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2296
2297 * regcache.c (struct regcache_descr): Add field register_type.
2298 (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
2299 in as a parameter
2300 (init_regcache_descr): Initialize register_type. Pass the descr
2301 to init_legacy_regcache_descr. Use register_type instead of
2302 REGISTER_VIRTUAL_TYPE.
2303 (register_type): New function.
2304 (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
2305 * regcache.h (register_type): Declare.
2306
2307 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2308
2309 * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
2310 instead of deprecated_store_return_value. Fix fallout from
2311 2002-08-23 Andrew Cagney <cagney@redhat.com>.
2312
2313 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2314
2315 * regcache.c (max_register_size): New function.
2316 (init_legacy_regcache_descr): Ensure that max_register_size is
2317 large enough for REGISTER_VIRTUAL_SIZE.
2318 * regcache.h (max_register_size): Declare.
2319
2320 2002-08-24 Andrew Cagney <ac131313@redhat.com>
2321
2322 * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
2323 store_return_value.
2324 (e500_extract_return_value): Change type of valbuf pointer to
2325 void.
2326
2327 2002-08-24 Mark Kettenis <kettenis@gnu.org>
2328
2329 * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
2330 workaround.
2331
2332 * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
2333 PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
2334 long long) to prevent compiler warning on 64-bit systems.
2335
2336 2002-08-23 Andrew Cagney <cagney@redhat.com>
2337
2338 * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
2339 (DEPRECATED_STORE_RETURN_VALUE): New method.
2340 (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
2341 * gdbarch.h, gdbarch.c: Re-generate.
2342
2343 * values.c (set_return_value): Pass current_regcache to
2344 STORE_RETURN_VALUE.
2345 * arch-utils.h (legacy_store_return_value): Declare.
2346 * arch-utils.c (legacy_store_return_value): New function.
2347 (legacy_extract_return_value): Update parameters.
2348
2349 * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
2350 STORE_RETURN_VALUE.
2351 * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2352 * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2353 * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2354 * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2355 * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2356 * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2357 * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2358 * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2359 * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2360 * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2361
2362 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2363 * i386-tdep.c (i386_extract_return_value): Update.
2364 * arch-utils.c (legacy_extract_return_value): Update.
2365 * frv-tdep.c (frv_gdbarch_init): Update.
2366 * cris-tdep.c (cris_gdbarch_init): Update.
2367 * d10v-tdep.c (d10v_gdbarch_init): Update.
2368 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2369 * m68k-tdep.c (m68k_gdbarch_init): Update.
2370 * mcore-tdep.c (mcore_gdbarch_init): Update.
2371 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2372 * s390-tdep.c (s390_gdbarch_init): Update.
2373 * sparc-tdep.c (sparc_gdbarch_init): Update.
2374 * sh-tdep.c (sh_gdbarch_init): Update.
2375 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
2376 * v850-tdep.c (v850_gdbarch_init): Update.
2377 * avr-tdep.c (avr_gdbarch_init): Update.
2378 * ia64-tdep.c (ia64_gdbarch_init): Update.
2379 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
2380 * vax-tdep.c (vax_gdbarch_init): Update.
2381 * alpha-tdep.c (alpha_gdbarch_init): Update.
2382 * arm-tdep.c (arm_gdbarch_init): Update.
2383 * mips-tdep.c (mips_gdbarch_init): Update.
2384 * i386-tdep.c (i386_gdbarch_init): Update.
2385
2386 2002-08-23 Andrew Cagney <ac131313@redhat.com>
2387
2388 * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
2389 bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
2390
2391 2002-08-24 Mark Kettenis <kettenis@gnu.org>
2392
2393 * PROBLEMS: Refer to GDB 5.3 instead of 5.2. Mention FreeBSD
2394 problems.
2395
2396 2002-08-23 Joel Brobecker <brobecker@gnat.com>
2397
2398 * infrun.c (handle_inferior_event): Move a comment outside of a
2399 function call, in order to avoid indent reformatting this part
2400 of the code in an unreadable way.
2401
2402 2002-08-23 Grace Sainsbury <graces@redhat.com>
2403
2404 * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
2405 when breakpoints fail. Move general breakpoint error messages to
2406 insert_breakpoints.
2407 * breakpoint.c (insert_breakpoints): Change warnings when
2408 breakpoints are nto inserted to specify the type. Remove call to
2409 memory_error when hardware breakpoints can't be inserted. Remove
2410 multiple calls to warning so all messages are sent to the user at
2411 once.
2412 (delete_breakpoints): Make insert error messsages more explicit.
2413
2414 2002-08-23 Daniel Jacobowitz <drow@mvista.com>
2415
2416 * ChangeLog: Move gdbserver entries after GDB 5.2 to
2417 gdbserver/ChangeLog.
2418
2419 2002-08-23 Mark Kettenis <kettenis@gnu.org>
2420
2421 * i386-tdep.c: Include "objfiles.h".
2422 (i386_svr4_init_abi): Set in_solib_call_trampoline and
2423 skip_trampoline_code.
2424 * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
2425 (CPLUS_MARKER): Define to '.'.
2426
2427 * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
2428 member.
2429 (linux_corefile_thread_callback): Increase args->num_notes.
2430 (linux_make_note_section): Initialize thread_args.num_notes, and
2431 use it to determine whether notes for any threads were created.
2432
2433 2002-08-23 Donn Terry <donnte@microsoft.com>
2434
2435 * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
2436 corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
2437 and PCUNKILL.
2438 (write_with_trace): Conditionalize out the switch branch handling
2439 PCSHOLD if the corresponding macro is not defined. Likewise for
2440 PRSABORT and PRSTOP.
2441 This change will be needed by the Interix port.
2442
2443 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
2444
2445 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
2446 write_register wherever possible instead of manipulating the
2447 register bytes directly.
2448 Assign VALUE_CONTENTS to a variable and use that.
2449 The GPR numbers are now dependent on the architecture.
2450
2451 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
2452
2453 * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
2454 ev_offset fields.
2455 (skip_prologue): Add support for BookE/e500 instructions.
2456 (e500_extract_return_value): New function.
2457 (frame_get_saved_regs): Add support for saving ev registers and
2458 pseudo gpr's.
2459 (e500_store_return_value): New function.
2460 (rs6000_gdbarch_init): Move up default intializations of
2461 deprecated_extract_return_value and store_return_value. Overwrite
2462 init of store_return_value with e500 specific version.
2463 Set extract_return_value for e500.
2464
2465 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
2466
2467 * blockframe.c (generic_call_dummy_register_unwind): Use
2468 regcache_cooked_read to catch cases in which the variable is
2469 stored in a pseudo register.
2470
2471 2002-08-22 Andrew Cagney <cagney@redhat.com>
2472
2473 * NEWS: Mention that the i960 has been made obsolete.
2474 * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
2475 i960-tdep.c
2476 (remote-nrom.o): Obsolete target.
2477 (remote-nindy.o, i960-tdep.o): Ditto.
2478 * remote-nrom.c: Make file obsolete.
2479 * remote-nindy.c, remote-vx960.c: Ditto.
2480 * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
2481 * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
2482 * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
2483 * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
2484 * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
2485 i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
2486 i960-*-vxworks* obsolete.
2487 * MAINTAINERS: Note that the i960 is obsolete.
2488
2489 2002-08-21 Corinna Vinschen <vinschen@redhat.com
2490
2491 * aix-thread.c (aix_thread_detach): Disable thread debugging on
2492 detach to allow reinitialization.
2493
2494 2002-08-22 Andrew Cagney <ac131313@redhat.com>
2495
2496 * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
2497 attempt).
2498
2499 2002-08-22 Jim Blandy <jimb@redhat.com>
2500
2501 * coffread.c (coff_symfile_read): Don't try to read the line
2502 number table from disk if the image file doesn't have a symbol
2503 table; we'll never actually look at the info anyway, and Windows
2504 ships DLL's with bogus file offsets for the line number data.
2505
2506 2002-08-21 Elena Zannoni <ezannoni@redhat.com>
2507
2508 * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
2509 an e500 executable.
2510
2511 2002-08-21 Michael Snyder <msnyder@redhat.com>
2512
2513 * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
2514 (MSYMBOL_SIZE): Replace macro with function.
2515 (DEFAULT_MIPS_TYPE): Delete unused macro.
2516 * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
2517 * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
2518
2519 2002-08-21 Jim Blandy <jimb@redhat.com>
2520
2521 * valops.c (value_cast): Simplify and correct logic for doing a
2522 static cast from a pointer to a base class to a pointer to a
2523 derived class.
2524
2525 2002-08-21 Andrew Cagney <ac131313@redhat.com>
2526
2527 * infcmd.c (default_print_registers_info): Replace
2528 do_registers_info.
2529 (registers_info): Use gdbarch_print_registers_info instead of
2530 DO_REGISTERS_INFO.
2531 * inferior.h (default_print_registers_info): Replace
2532 do_registers_info.
2533 * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
2534 (DO_REGISTERS_INFO): Change to a predicate function.
2535 * gdbarch.h, gdbarch.c: Regenerate.
2536
2537 2002-08-21 Keith Seitz <keiths@redhat.com>
2538
2539 * gdb-events.sh: Add target-changed event.
2540 * gdb-events.c: Regenerated.
2541 * gdb-events.c: Regenerated.
2542 * valops.c (value_assign): Add target-changed event notification
2543 to inlval_register, lval_memory, and lval_reg_frame_relative.
2544
2545 2002-08-21 Joel Brobecker <brobecker@gnat.com>
2546
2547 * NEWS: Add an entry regarding the improvement of the next/step
2548 operation on Alpha Tru64 multi-processor machines.
2549
2550 2002-08-21 Andrew Cagney <ac131313@redhat.com>
2551
2552 * Makefile.in: Update dependencies for mi/ cli/ and tui/
2553 directores.
2554 * Makefile.in: Update all _h macro definitions.
2555 * Makefile.in (install-gdbtk): Move to install section.
2556 (rdi-share/libangsd.a): Move to end of file.
2557
2558 2002-08-19 Andrew Cagney <ac131313@redhat.com>
2559
2560 * frame.c (frame_register_unwind): When a register, set addrp to
2561 the register's byte.
2562
2563 2002-08-20 Michael Snyder <msnyder@redhat.com>
2564
2565 * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
2566 used locally, so move them from the target machine header to here.
2567 (mips_set_processor_type, mips_register_name, mips32_next_pc,
2568 mips16_next_pc, cached_proc_desc, mips_set_processor_type):
2569 Make static.
2570 * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
2571
2572 2002-08-20 Andrew Cagney <cagney@redhat.com>
2573
2574 * NEWS: Mention that the Apollo line was made obsolete.
2575 * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
2576 m68*-hp-hpux* obsolete.
2577 * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
2578 m68*-hp-bsd* and m68*-hp-hpux* obsolete.
2579 * buildsym.c (make_blockvector): Make static.
2580 * buildsym.h (make_blockvector): Make extern declaration obsolete.
2581 * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
2582 (ALLDEPFILES): Remove dstread.c.
2583 (dstread.o): Obsolete make rule.
2584 * dstread.c: Makefile obsolete.
2585 * dst.h: Ditto.
2586 * config/m68k/hp300hpux.mt: Ditto.
2587 * config/m68k/hp300hpux.mh: Ditto.
2588 * config/m68k/hp300bsd.mt: Ditto.
2589 * config/m68k/hp300bsd.mh: Ditto.
2590 * config/m68k/apollo68b.mt: Ditto.
2591 * config/m68k/apollo68v.mh: Ditto.
2592 * config/m68k/apollo68b.mh: Ditto.
2593
2594 2002-08-20 Michael Snyder <msnyder@redhat.com>
2595
2596 * mips-tdep.c (mips_in_return_stub): Make static.
2597 (mips_gdbarch_init): Set in_solib_return_trampoline.
2598 * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
2599
2600 2002-08-20 Michael Snyder <msnyder@redhat.com>
2601
2602 * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
2603 * gdbarch.c, gdbarch.h: Regenerate.
2604 * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
2605 Add.
2606 * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
2607
2608 2002-08-20 Michael Snyder <msnyder@redhat.com>
2609
2610 * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
2611 (mips_gdbarch_init): Set skip_trampoline_code,
2612 in_solib_call_trampoline.
2613 * config/mips/tm-mips.h (REGISTER_NAME): Delete.
2614 (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
2615
2616 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
2617
2618 * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
2619
2620 * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
2621 vector type for ev registers.
2622 (e500_pseudo_register_read): New function.
2623 (e500_pseudo_register_write): New function.
2624 (e500_dwarf2_reg_to_regnum): New function.
2625 (PPC_UISA_NOFP_SPRS): New macro.
2626 (PPC_EV_REGS): New macro.
2627 (PPC_GPRS_PSEUDO_REGS): New macro.
2628 (registers_e500): New register set for e500.
2629 (variants): Add e500 variant.
2630 (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
2631 before setting architectural dependent variations. Initialize ev
2632 registers numbers. Add case for e500 architecture. Set the
2633 number of pseudo registers.
2634
2635 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
2636
2637 * rs6000-tdep.c: Clean up comments.
2638
2639 2002-08-20 Andrew Cagney <cagney@redhat.com>
2640
2641 * h8300-tdep.c: Re-indent file.
2642
2643 2002-08-20 Jim Blandy <jimb@redhat.com>
2644
2645 * Makefile.in (LDFLAGS): Allow the configure script to establish a
2646 default for this.
2647
2648 2002-08-20 Keith Seitz <keiths@redhat.com>
2649
2650 * breakpoints.c (watch_command_1): Use internal breakpoint
2651 when setting a watchpoint_scope breakpoint.
2652
2653 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
2654
2655 * gdbtypes.c (build_builtin_type_vec64): Add name to type.
2656 (build_builtin_type_vec64i): Ditto.
2657 (build_builtin_type_vec128): Ditto.
2658 (build_builtin_type_vec128i): Ditto.
2659
2660 2002-08-19 Michael Snyder <msnyder@redhat.com>
2661
2662 * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
2663 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
2664 (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
2665 POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
2666 (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
2667 CALL_DUMMY_ADDRESS): Delete.
2668 * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
2669 mips_msymbol_is_special, mips_fix_call_dummy): New functions.
2670 (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame,
2671 push_dummy_frame, fix_call_dummy, init_extra_frame_info,
2672 push_return_address.
2673 (mips_register_raw_size, mips_eabi_use_struct_convention,
2674 mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
2675 mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
2676 mips_init_extra_frame_info, mips_eabi_push_arguments,
2677 mips_n32n64_push_arguments, mips_push_return_address,
2678 mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
2679 mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
2680
2681 2002-08-19 Michael Snyder <msnyder@redhat.com>
2682
2683 * mips-tdep.c (mips_frame_num_args): New function.
2684 (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
2685 frame_saved_pc, frame_args_address, frame_locals_address,
2686 frame_num_args, and frame_args_skip.
2687 * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
2688 FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS,
2689 FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
2690 * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
2691
2692 2002-08-20 Michael Snyder <msnyder@redhat.com>
2693
2694 * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
2695 (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
2696 * mips-tdep.c (mips_store_struct_return): New function.
2697 (mips_extract_struct_value_address): New function.
2698 (mips_gdbarch_init): Set store_struct_return and
2699 extract_struct_value_address.
2700
2701 2002-08-20 David Carlton <carlton@math.stanford.edu>
2702
2703 * dwarf2read.c (dwarf2_build_psymtabs): Check that
2704 dwarf_line_offset is nonzero before creating dwarf_line_buffer.
2705 (read_file_scope): Check that line_header is nonzero before
2706 decoding macro information.
2707
2708 2002-08-20 Mark Kettenis <kettenis@gnu.org>
2709
2710 * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
2711 flag the general-purpose registers as floating-point on targets
2712 that don't support the floating-point registers.
2713
2714 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
2715
2716 * rs6000-tdep.c (altivec_register_p): Delete.
2717 (rs6000_do_altivec_registers): Delete.
2718 (rs6000_altivec_registers_info): Delete.
2719 (rs6000_do_registers_info): Delete.
2720 (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
2721 (rs6000_gdbarch_init): Remove setting of do_registers_info.
2722
2723 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
2724
2725 * infcmd.c (do_registers_info): Print vector registers in hex
2726 format only.
2727 (print_vector_info): Check that printing registers
2728 makes sense.
2729 (print_float_info): Ditto.
2730
2731 2002-08-20 Andrew Cagney <ac131313@redhat.com>
2732
2733 * mips-tdep.c (mips_gdbarch_init): Update.
2734 (mips_o32_extract_return_value): Rewrite.
2735 (mips_o32_store_return_value): Rewrite.
2736 (mips_o32_xfer_return_value): New function.
2737 (mips_xfer_register): Tweak debug print message. Allow for
2738 buf_offset when dumping the value transfered.
2739
2740 2002-08-20 Andrew Cagney <ac131313@redhat.com>
2741
2742 * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
2743 * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
2744 * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
2745 * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
2746 * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
2747
2748 2002-08-14 Michael Snyder <msnyder@redhat.com>
2749
2750 * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
2751
2752 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
2753
2754 * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
2755 register.
2756 (P): New macro to define a register as a pseudo register.
2757 (R, R4, R8, R16, FR32, R64, R0): Updated.
2758 (struct variant): Add new fields for number of pseudo registers
2759 and number of total registers.
2760 (tot_num_registers): New macro replacing....
2761 (num_registers): ...deleted macro.
2762 (num_registers): New function.
2763 (num_pseudo_registers): New function.
2764 (variants): Update all variants to intialize new fields correctly.
2765 Postpone initialization of number of pseudo regs and real regs.
2766 (init_variants): New function.
2767 (rs6000_gdbarch_init): Initialize variants. Update calculation of
2768 registers offsets.
2769
2770 2002-08-19 David Carlton <carlton@math.stanford.edu>
2771
2772 * valops.c (search_struct_field): Change error message to treat
2773 return value of 0 from value_static_field as meaning that field is
2774 optimized out.
2775 (value_struct_elt_for_reference): Ditto.
2776 * values.c (value_static_field): Treat an unresolved location the
2777 same as a nonexistent symbol. Fix PR gdb/635.
2778 * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
2779 enclosed. Fix PR gdb/574.
2780 * MAINTAINERS: Add self to Write After Approval list.
2781
2782 2002-08-19 Andrew Cagney <ac131313@redhat.com>
2783
2784 * mips-tdep.c (mips_xfer_register): New function.
2785 (mips_n32n64_extract_return_value): Rewrite.
2786 (mips_gdbarch_init): For N32 and N64, set extract_return_value
2787 instead of deprecated_extract_return_value.
2788
2789 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
2790
2791 * rs6000-tdep.c (TDEP): Delete macro.
2792 (branch_dest): Replace use of TDEP macro with its body.
2793 (rs6000_pop_frame): Ditto.
2794 (rs6000_push_arguments): Ditto.
2795 (rs6000_skip_trampoline_code): Ditto.
2796 (rs6000_frame_saved_pc): Ditto.
2797 (rs6000_frame_chain): Ditto.
2798 (rs6000_register_name): Ditto.
2799 (rs6000_register_byte): Ditto.
2800 (rs6000_register_raw_size): Ditto.
2801 (rs6000_register_virtual_type): Ditto.
2802 (rs6000_register_convertible): Ditto.
2803 (rs6000_convert_from_func_ptr_addr): Ditto.
2804
2805 2002-08-19 Daniel Jacobowitz <drow@mvista.com>
2806
2807 * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
2808 conditionally.
2809 (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
2810 MIPS_LINUX_JB_ELEMENT_SIZE.
2811 * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
2812 for MAX_REGISTER_RAW_SIZE arrays.
2813 (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
2814 MIPS_LINUX_JB_ELEMENT_SIZE.
2815
2816 2002-08-19 Pierre Muller <muller@ics.u-strasbg.fr>
2817
2818 * i387-tdep.c (i387_print_float_info): Fix typo in comment.
2819
2820 2002-08-19 Aidan Skinner <aidan@velvet.net>
2821
2822 * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
2823 ada-valprint.c ada-tasks.c.
2824 (YYFILES): Add ada-exp.y.
2825 (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
2826 (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
2827 (ada-exp.tab.o): New target.
2828
2829 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2830
2831 * regcache.c (regcache_xfer_part): New function.
2832 (regcache_raw_read_part): New function.
2833 (regcache_raw_write_part): New function.
2834 (regcache_cooked_read_part): New function.
2835 (regcache_cooked_write_part): New function.
2836 * regcache.h (regcache_raw_read_part): Declare.
2837 (regcache_raw_write_part): Declare.
2838 (regcache_cooked_read_part): Declare.
2839 (regcache_cooked_write_part): Declare.
2840
2841 2002-08-18 Daniel Jacobowitz <drow@mvista.com>
2842
2843 * remote.c (remote_open_1): Add async_p.
2844 (remote_async_open_1): Delete.
2845 (open_remote_target): Delete.
2846 (remote_open, extended_remote_open): Update calls to remote_open_1.
2847 (remote_async_open, extended_remote_async_open): Call
2848 remote_open_1 instead of remote_async_open_1.
2849
2850 2002-08-19 Mark Kettenis <kettenis@gnu.org>
2851
2852 * blockframe.c: Fix a few coding standard violations.
2853
2854 2002-08-19 Mark Kettenis <kettenis@gnu.org>
2855
2856 * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
2857 here from ...
2858 * config/i386/tm-i386sco5.h: ... here. File removed.
2859 * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
2860
2861 * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
2862 * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
2863 (TM_FILE): Set to tm-i386.h.
2864 * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
2865 * config/i386/tm-i386v.h: Remove file.
2866 * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
2867 instead of "i386/tm-i386v.h".
2868 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
2869 * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
2870 "i386/tm-i386v.h".
2871 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
2872 * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
2873 "i386/tm-i386.h".
2874
2875 2002-08-18 Mark Kettenis <kettenis@gnu.org>
2876
2877 * config/i386/nm-i386v.h: Add protection against
2878 multiple-inclusion.
2879 (i386_register_u_addr): Remove prototype.
2880 (register_u_addr): New prototype.
2881 (REGISTER_U_ADDR): Redefine accordingly.
2882 * i386v-nat.c: Improve several comments.
2883 (i386_register_u_addr): Change signature and rename to
2884 register_u_addr. Use FP_REGNUM_P. Rewrite slightly to get rid of
2885 ubase variable.
2886
2887 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2888
2889 * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
2890 (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
2891 * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
2892 deprecated_extract_return_value.
2893 (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
2894 rename mips_o32o64_push_arguments.
2895 (mips_gdbarch_init): Update.
2896 (mips_extract_return_value): Delete.
2897 (mips_o32_extract_return_value): Clone mips_extract_return_value.
2898 (mips_o64_extract_return_value): Clone mips_extract_return_value.
2899 (mips_eabi_extract_return_value): Clone mips_extract_return_value.
2900 (mips_n32n64_extract_return_value): Clone
2901 mips_extract_return_value.
2902 (mips_store_return_value): Delete.
2903 (mips_o32_store_return_value): Clone mips_store_return_value.
2904 (mips_o64_store_return_value): Clone mips_store_return_value.
2905 (mips_eabi_store_return_value): Clone mips_store_return_value.
2906 (mips_n32n64_store_return_value): Clone mips_store_return_value.
2907
2908 2002-08-18 Aidan Skinner <aidan@velvet.net>
2909
2910 * ada-lang.c: Use gdb_string.h instead of <string.h>.
2911 * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
2912
2913 2002-08-18 Aidan Skinner <aidan@velvet.net>
2914
2915 * ada-lang.c: Run through gdb_indent.sh.
2916 * ada-lang.h: Run through gdb_indent.sh.
2917 * ada-tasks.c: Run through gdb_indent.sh.
2918 * ada-typeprint.c: Run through gdb_indent.sh.
2919 * ada-valprint.c: Run through gdb_indent.sh.
2920
2921 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2922
2923 * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
2924 ABI.
2925
2926 2002-08-18 Mark Kettenis <kettenis@gnu.org>
2927
2928 * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
2929
2930 * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
2931 * i386b-nat.c [FLOAT_INFO]: Remove dead code.
2932
2933 * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
2934 write_register_gen instead of write_register_bytes.
2935
2936 * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
2937 i[3456]-*-osf1mk* configurations have been made obsolete.
2938 * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
2939 i[3456]86-*-osf1mk* hosts obsolete.
2940 * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
2941 targets obsolete.
2942 * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
2943 config/i386/xm-i386mach.h, config/i386/i386m3.mh,
2944 config/i386/i386m3.mt, config/i386/nm-m3.h,
2945 config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
2946 config/i386/i386mk.mh, config/i386/i386mk.mt,
2947 config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
2948 obsolete.
2949 * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
2950 * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
2951 (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
2952
2953 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2954
2955 * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
2956 (hppa_value_returned_from_stack): Declare.
2957 (hppa_extract_return_value): Declare.
2958 * config/pa/hppa.mt: New file.
2959 * configure.tgt: Recognize hppa*-*-*.
2960 * MAINTAINERS: Change HPPA target to hppa-elf. Still broken.
2961
2962 2002-08-18 Mark Kettenis <kettenis@gnu.org>
2963
2964 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
2965 comment.
2966
2967 2002-08-17 Mark Kettenis <kettenis@gnu.org>
2968
2969 * top.c (gdb_rl_operate_and_get_next): Make sure
2970 operate-and-get-next functions correctly even when the history
2971 list is completely filled.
2972
2973 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2974
2975 * MAINTAINERS (Target Instruction Set Architectures): Rename
2976 Target/Architectures. Replace vax-dec-vms5.5 with vax-netbsd.
2977 Replace s390-linux with s390-linux-gnu. Remove i386-aout,
2978 mcore-pe, mips64-elf, sparc64-elf. Remove i586-pc-msdosdjgpp,
2979 already listed under Host/Native.
2980
2981 * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
2982 i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*. Add
2983 mips*-*-*.
2984
2985 2002-08-17 Andrew Cagney <ac131313@redhat.com>
2986
2987 * config/ia64/ia64.mt: New file.
2988 * config/alpha/alpha.mt: New file.
2989 * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
2990 ia64-linux-gnu. Mention that ia64-elf is broken.
2991 * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
2992
2993 2002-08-17 Mark Kettenis <kettenis@elgar.kettenis.dyndns.org>
2994
2995 * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
2996 generic_func_frame_valid instead of func_frame_valid.
2997
2998 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2999
3000 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
3001 procfs appears to be broken when debugging on multi-processor
3002 machines. So enable software single stepping in order to avoid
3003 using the procfs interface to do next/step operations, using
3004 internal breakpoints instead.
3005
3006 * infrun.c (handle_inferior_event): Readjust the stop_pc by
3007 DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
3008 make this pc address equal to the value it would have if the
3009 system stepping capability was used. Also set a new flag used
3010 to ensure that we don't readjust the PC one more time later.
3011
3012 * breakpoint.c (bpstat_stop_status): Do not adjust the PC
3013 address by DECR_PC_AFTER_BREAK when software single step is
3014 in use for this architecture, as this has already been taken
3015 care of in handle_inferior_event().
3016
3017 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3018
3019 * infrun.c (handle_inferior_event): Minor reformatting, to make
3020 a rather long condition expression easier to read.
3021
3022 2002-08-16 Andrew Cagney <ac131313@redhat.com>
3023
3024 * Makefile.in (gdbtk.o): Move to end of file.
3025 (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
3026 (gdbtk-hooks.o, gdbtk-register.o): Ditto.
3027 (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
3028 (gdbtk-wrapper.o, gdbres.o): Ditto.
3029
3030 2002-08-16 Andrew Cagney <ac131313@redhat.com>
3031
3032 * Makefile.in (copying.o): Separate out compile rule.
3033 (hpux-thread.o, procfs.o, signals.o): Ditto.
3034 (v850ice.o, z8k-tdep.o): Ditto.
3035 (tui-file.o): Move to TUI section.
3036 (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
3037 (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
3038
3039 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3040
3041 * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
3042 skip_trampoline_code, for better namespace-proofing.
3043
3044 * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
3045
3046 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3047
3048 * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
3049
3050 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3051
3052 * infrun.c (handle_inferior_event): When receiving a SIGTRAP
3053 signal, check whether we hit a breakpoint before checking for a
3054 single step breakpoint. Otherwise, GDB fails to notice that a
3055 breakpoint has been hit when stepping onto a breakpoint.
3056
3057 2002-08-16 Keith Seitz <keiths@redhat.com>
3058
3059 * gdb-events.sh (clear_gdb_event_hooks): New function.
3060 * gdb-events.c: Regenerate.
3061 * gdb-events.h: Regenerate.
3062
3063 2002-08-16 Andrew Cagney <ac131313@redhat.com>
3064
3065 * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
3066 not_a_sw_breakpoint.
3067 * breakpoint.h (bpstat_stop_status): Add parameter names.
3068
3069 2002-08-16 Grace Sainsbury <graces@redhat.com>
3070
3071 * remote.c (remote_insert_hw_breakpoint)
3072 (remote_remove_hw_breakpoint): Fix calculation of length field
3073 for Z-packet.
3074
3075 2002-08-15 Michael Snyder <msnyder@redhat.com>
3076
3077 * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
3078 (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
3079 (supply_fpregset): Ditto.
3080
3081 * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL,
3082 REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE,
3083 MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
3084 (TARGET_READ_SP): Delete.
3085 (DO_REGISTERS_INFO): Delete.
3086 (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
3087 Delete.
3088 (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
3089 from macros to functions.
3090
3091 * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
3092 (mips_register_convertible, mips_register_convert_to_virtual,
3093 mips_register_convert_to_raw): Make static.
3094 (mips_read_sp): New function.
3095 (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
3096 (mips_do_registers_info): Make static.
3097 (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
3098 (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
3099 (mips_register_convert_from_type, mips_register_convert_to_type):
3100 New functions.
3101 (mips_gdbarch_init): Set up function_start_offset,
3102 register_virtual_size, pc_in_sigtramp.
3103
3104 2002-08-15 Andrew Cagney <ac131313@redhat.com>
3105
3106 * infcmd.c (vector_info): New function.
3107 (_initialize_infcmd): Add command "info vector".
3108 (print_vector_info): New function.
3109
3110 * gdbarch.sh (PRINT_VECTOR_INFO): New method
3111 * gdbarch.h, gdbarch.c: Regenerate.
3112
3113 2002-08-15 Andrew Cagney <ac131313@redhat.com>
3114
3115 * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
3116 ``print_all''. Only print vector registers when ``print_all''.
3117
3118 2002-08-15 Andrew Cagney <ac131313@redhat.com>
3119
3120 * i387-tdep.h (i387_print_float_info): Add `args' parameter.
3121 * i387-tdep.c (i387_print_float_info): Add `args' parameter.
3122
3123 * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
3124 Add `args' parameter.
3125 * gdbarch.h, gdbarch.c: Regenerate.
3126
3127 * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
3128
3129 * infcmd.c (float_info): Call print_float_info.
3130 (print_float_info): New function. By default, print the
3131 floating-point registers.
3132
3133 * arch-utils.h (default_print_float_info): Delete declaration.
3134 * arch-utils.c (default_print_float_info): Delete function.
3135
3136 2002-08-16 Mark Kettenis <kettenis@gnu.org>
3137
3138 * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
3139 out define.
3140
3141 * i387-tdep.c (i387_print_float_info): Add comment about ignoring
3142 FRAME.
3143
3144 * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
3145 * configure.host: Make i[3456]86-*-aix host obsolete.
3146 * configure.tgt: Make i[3456]86-*-aix target obsolete.
3147 * config/i386/i386aix.mh, config/i386/i386aix.mt,
3148 config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
3149 config/i386/xm-i386aix.h: Make files obsolete.
3150 * i386aix-nat.c: Make file obsolete.
3151 * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
3152 (i386aix-nat.o): Make target obsolete.
3153
3154 * config/i386/nm-gnu.h: Removed.
3155 * config/i386/nm-i386gnu.h: New file.
3156 (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
3157 THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
3158 Moved here from ...
3159 * config/i386/tm-i386gnu.h: ... here. Removed.
3160 * config/i386/xm-i386gnu.h: Removed.
3161 * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
3162 (NAT_FILE): Set to nm-i386gnu.h.
3163 * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
3164 * i386-tdep.c: New file.
3165 * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
3166 (i386gnu-tdep.o): Specify dependencies.
3167
3168 2002-08-15 Mark Kettenis <kettenis@gnu.org>
3169
3170 * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
3171 "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
3172 Adjust a few comments to reflect reality a bit closer.
3173 (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
3174 TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
3175 HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
3176 target_insert_watchpoint, target_remove_watchpoint):
3177 Move defines to ...
3178 * config/i386/nm-i386sco5.h: ... here.
3179 (kernel_u_size): Add prototype. Improve a few comments and add
3180 protection against multiple inclusion.
3181
3182 * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
3183 out define.
3184
3185 * uw-thread.c (SP_ARG0): Define if not already defined.
3186 * config/i386/tm-i386.h (SO_ARG0): Remove define.
3187
3188 * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
3189
3190 * config/i386/tm-i386.h: Don't include "regcache.h".
3191
3192 * i387-tdep.h (i387_print_float_info): New prototype.
3193 * i387-tdep.c (print_i387_value, print_i387_ext,
3194 print_i387_status_word, print_i387_control_word): Add `struct
3195 ui_file *' argument and use it for output.
3196 (i387_print_float_info): Renamed from i387_float_info. Add
3197 `struct gdbarch *' and `struct ui_file *' arguments and use the
3198 latter for output.
3199 * i386-tdep.c: Include "i387-tdep.h".
3200 (i386_gdbarch_init): Set print_float_info.
3201 * config/i386/tm-i386.h (i387_float_info): Remove prototype.
3202 (FLOAT_INFO): Remove define.
3203
3204 2002-08-13 Michael Snyder <msnyder@redhat.com>
3205
3206 * mips-tdep.c (mips_push_arguments): Rename to
3207 mips_eabi_push_arguments, and tune for EABI.
3208 (MIPS_REGS_HAVE_HOME_P): Delete.
3209 (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
3210 (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
3211 Delete references to mips_regs_have_home_p.
3212
3213 2002-08-14 Keith Seitz <keiths@redhat.com>
3214
3215 * Makefile.in (install-gdbtk): Create insight plugin directory.
3216 Install plugins.tcl file.
3217
3218 2002-08-14 Keith Seitz <keiths@redhat.com>
3219
3220 * configure.in: Move SUBDIRS to near top of the file so that
3221 --enable options may add things to it.
3222 If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
3223 * configure: Regenerate.
3224
3225 2002-08-13 Michael Snyder <msnyder@redhat.com>
3226
3227 * mips-tdep.c (mips_o32o64_push_arguments): New function,
3228 cloned from mips_push_arguments, tuned for o32/o64 ABI.
3229 (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
3230
3231 2002-08-13 Andrew Cagney <ac131313@redhat.com>
3232
3233 * vax-tdep.c (vax_get_saved_register): Delete function.
3234 (vax_gdbarch_init): Update.
3235 * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
3236 (ns32k_gdbarch_init): Update.
3237 * alpha-tdep.c (alpha_get_saved_register): Delete function.
3238 (alpha_gdbarch_init): Update.
3239
3240 2002-08-13 Andrew Cagney <cagney@redhat.com>
3241
3242 * regcache.c (init_regcache_descr): Overallocate the
3243 raw_register_valid_p array including space for NUM_PSEUDO_REGS.
3244 (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
3245 nr_raw_registers.
3246 (set_register_cached): Add range checking assertions. Use
3247 current_regcache.
3248
3249 2002-08-13 Mark Kettenis <kettenis@gnu.org>
3250
3251 * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
3252 numbers for MMX registers.
3253
3254 2002-08-13 Andrew Cagney <cagney@redhat.com>
3255
3256 * i386-tdep.c (i386_gdbarch_init): Use
3257 generic_unwind_get_saved_register.
3258
3259 2002-08-13 Kevin Buettner <kevinb@redhat.com>
3260
3261 * procfs.c (procfs_can_use_hw_breakpoint): New function.
3262 (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
3263 target vector.
3264 * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
3265 Delete. Add comment regarding this now-deleted target method.
3266
3267 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3268
3269 * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
3270 (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
3271 (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
3272 real PC and the page number (if it's within the memory bank window).
3273 (m68hc11_pseudo_register_write): Likewise when saving.
3274 (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
3275 (m68hc11_register_virtual_type): Return uint32 for virtual pc.
3276 (m68hc11_register_raw_size): And use 32-bit for it.
3277 (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
3278 16K memory bank is used by the prog; also use the virtual pc.
3279
3280 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3281
3282 * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
3283 (m68hc11_gdbarch_init): Install it in gdbarch.
3284 (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
3285 (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
3286 (MSYMBOL_SIZE): New for documentation.
3287 (insn_return_kind): Enum to specify how a function returns.
3288 (frame_extra_info): Cleanup and record the return mode.
3289 (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page
3290 register in address computation.
3291 (m68hc11_get_return_insn): New to obtain the return instruction used
3292 by the function.
3293 (m68hc11_frame_init_saved_regs): Take into account the return
3294 instruction used by the function for far and interrupt functions.
3295 (m68hc11_init_extra_frame_info): Take into account page register.
3296 (m68hc11_frame_args_address): Adjust according to the return mode.
3297 (show_regs): Print page register only when it's used.
3298
3299 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3300
3301 * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
3302 (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
3303 (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
3304 registers.
3305 (m68hc11_register_raw_size): Likewise.
3306
3307 2002-08-13 Andrew Cagney <cagney@redhat.com>
3308
3309 * i386-tdep.c (i386_register_name): Handle mmx registers.
3310 (mmx_regnum_p): New function.
3311 (i386_mmx_names): New array.
3312 (mmx_num_regs): New variable.
3313 (i386_pseudo_register_read): New function.
3314 (i386_pseudo_register_write): New function.
3315 (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
3316
3317 * regcache.c (regcache_raw_read_unsigned): New function.
3318 (regcache_raw_read_signed): New function.
3319 * regcache.h (regcache_raw_read_unsigned): Declare.
3320 (regcache_raw_read_signed): Declare.
3321
3322 2002-08-13 Andrew Cagney <cagney@redhat.com>
3323
3324 * regcache.c (regcache_raw_read_as_address): Delete function.
3325 (regcache_cooked_read_signed): New function.
3326 (regcache_cooked_read_unsigned): New function.
3327 * regcache.h (regcache_cooked_read_signed): Declare.
3328 (regcache_cooked_read_unsigned): Declare.
3329 (regcache_raw_read_as_address): Delete declaration.
3330
3331 * blockframe.c (generic_read_register_dummy): Use
3332 regcache_cooked_read_unsigned.
3333 * i386-tdep.c (i386_extract_struct_value_address): Use
3334 regcache_cooked_read_unsigned.
3335
3336 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3337
3338 * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
3339 double sizes according to ELF ABI flags.
3340 (gdbarch_tdep): Record elf_flags.
3341
3342 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3343
3344 * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
3345 (m6812_prolog): They can appear in 68HC12 function prologue.
3346 (m68hc11_frame_chain): Cleanup.
3347
3348 2002-08-12 Andrew Cagney <cagney@redhat.com>
3349
3350 * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
3351 declarations.
3352 * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
3353 (i386_linux_register_raw_size): Delete function.
3354 (i386_linux_init_abi): Update.
3355 * i386-tdep.c (i386_register_raw_size): Delete function.
3356 (i386_register_byte): Delete function.
3357 (i386_gdbarch_init): Update.
3358 (i386_register_size): Delete array.
3359 (i386_register_offset): Delete array.
3360
3361 * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
3362 (REGISTER_RAW_SIZE): Delete macro.
3363 * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
3364 (REGISTER_BYTE): Delete macro.
3365
3366 2002-08-11 Aidan Skinner <aidan@velvet.net>
3367
3368 * ada-lang.c (ada_lookup_partial_symbol)
3369 (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
3370 prototype names so that grep ^func works properly.
3371
3372 * ada-lang.c (ada_array_element_type)
3373 (ada_lookup_partial_symbol): Fix typos in parameter list.
3374
3375 * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
3376 Fix prototype names so that grep ^func works properly.
3377
3378 2002-08-10 Andrew Cagney <cagney@redhat.com>
3379 Elena Zannoni <ezannoni@redhat.com>
3380 Martin M. Hunt <hunt@redhat.com>
3381
3382 * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
3383 (build_builtin_type_vec128i): Set the vector bit.
3384 * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
3385 * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
3386 (build_builtin_type_vec64): New function.
3387 (build_builtin_type_vec64i): New function.
3388 (build_gdbtypes): Initialize builtin_type_vec64 and
3389 builtin_type_vec64i.
3390
3391 2002-08-09 Andrew Cagney <cagney@redhat.com>
3392
3393 * regcache.c (regcache_dump): Compare the register offset
3394 with REGISTER_BYTE.
3395 * arch-utils.c (generic_register_byte): New function.
3396 * arch-utils.h (generic_register_byte): Declare.
3397 * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
3398 * gdbarch.h, gdbarch.c: Regenerate.
3399
3400 2002-08-09 Andrew Cagney <cagney@redhat.com>
3401
3402 * regcache.c: Include "gdbcmd.h"
3403 (_initialize_regcache): Add commands "maintenance print
3404 registers", "maintenance print raw-registers" and "maintenance
3405 print cooked-registers".
3406 (enum regcache_dump_what): Define.
3407 (dump_endian_bytes): New function.
3408 (regcache_dump): New function.
3409 (regcache_print): New function.
3410 (maintenance_print_registers): New function.
3411 (maintenance_print_raw_registers): New function.
3412 (maintenance_print_cooked_registers): New function.
3413 * Makefile.in (regcache.o): Update dependencies.
3414
3415 2002-08-09 Michael Snyder <msnyder@redhat.com>
3416
3417 * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
3418 (mips_push_arguments): Correct some comments. Use paddr_nz
3419 for printing addresses in debug output. Replace static
3420 allocation using MAX_REGISTER_RAW_SIZE with alloca.
3421 (mips_n32n64_push_arguments): New function, cloned from
3422 mips_push_arguments and tuned for the n32/n64 ABI.
3423 (mips_push_register): Buffer needs dynamic allocation.
3424 (mips_print_register): Ditto.
3425 (do_gp_register_row): Ditto.
3426 (mips_store_return_value): Ditto.
3427 (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
3428
3429 2002-08-09 Don Howard <dhoward@redhat.com>
3430
3431 * memattr.c (mem_info_command): Print special case of upper bound
3432 as max CORE_ADDR + 1.
3433
3434 2002-08-08 Michael Snyder <msnyder@redhat.com>
3435
3436 * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only
3437 returns structs by ref if they're too big to fit in two registers.
3438
3439 2002-08-09 Kevin Buettner <kevinb@redhat.com>
3440
3441 * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
3442 saved regs value.
3443 (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
3444 mips_find_saved_regs().
3445 (mips_pop_frame): Likewise.
3446
3447 2002-08-09 Kevin Buettner <kevinb@redhat.com>
3448
3449 * blockframe.c (frame_saved_regs_register_unwind): Revise
3450 PC_IN_CALL_DUMMY assertion to only apply when generic dummy
3451 frames are in use.
3452
3453 2002-08-09 Grace Sainsbury <graces@redhat.com>
3454
3455 * remote.c: (remote_wait, remote_async_wait): Add check for awatch
3456 T-packets; the 'a' is not taken as a register number.
3457 (remote_check_watch_resources, remote_stopped_by_watchpoint)
3458 (remote_stopped_data_address): New functions; add to target
3459 vector.
3460 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
3461 prototypes to match other implementations of this
3462 function. replace integer argument with pointer -- the length
3463 field in the Z-packet is the length of what is pointed to or 1 if
3464 pointer is null. Add to target vector.
3465 (remote_insert_watchpoint, remote_remove_watchpoint): Add to
3466 target vector.
3467
3468 From Mark Salter:
3469 * remote.c (remote_wait): Add support to extract optional
3470 watchpoint information from T-packet. Ignore unrecognized
3471 optional info in T-packet.
3472 (remote_async_wait): Ditto.
3473
3474 2002-08-09 Corinna Vinschen <vinschen@redhat.com>
3475
3476 * cli/cli-dump.c: Change fopen modes to use binary open modes
3477 as defined in include/fopen-bin.h throughout.
3478
3479 2002-08-08 Michael Snyder <msnyder@redhat.com>
3480
3481 * mips-tdep.c: Minor whitespace and indentation clean-ups.
3482
3483 2002-08-08 Kevin Buettner <kevinb@redhat.com>
3484
3485 * doublest.c (store_floating): Avoid floatformat_from_doublest()
3486 assertion failure by returning early after a warning.
3487
3488 2002-08-08 Kevin Buettner <kevinb@redhat.com>
3489
3490 * mips-tdep.c (mips_find_saved_regs): Make static.
3491 (mips_frame_init_saved_regs): New function.
3492 (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
3493 * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
3494 (mips_find_saved_regs): Delete declaration.
3495
3496 2002-08-08 Grace Sainsbury <graces@redhat.com>
3497
3498 * remote.c (remote_wait, remote_async_wait): Change
3499 thread_num from int to ULONGEST.
3500 (unpack_varlen_hex): Change result parameter from
3501 int * to ULONGEST *.
3502
3503 2002-08-08 Andrew Cagney <ac131313@redhat.com>
3504
3505 * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
3506 powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
3507 powerpc*-*-*.
3508 * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
3509
3510 2002-08-08 Andrew Cagney <cagney@redhat.com>
3511
3512 * gcore.c (override_derive_stack_segment): Delete variable.
3513 (preempt_derive_stack_segment): Delete function.
3514 (derive_stack_segment): Delete function.
3515 (default_derive_stack_segment): Renamed to derive_stack_segment.
3516 (override_derive_heap_segment): Delete variable.
3517 (preempt_derive_heap_segment): Delete function.
3518 (derive_heap_segment): Delete function.
3519 (default_derive_heap_segment): Rename to derive_heap_segment.
3520
3521 2002-08-06 Michael Snyder <msnyder@redhat.com>
3522
3523 * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
3524 * mips-tdep.c (mips_EABI_use_struct_convention,
3525 mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
3526 New functions. (mips_use_struct_convention): Delete.
3527 (mips_gdbarch_init): set use_gdbarch_convention.
3528
3529 2002-08-06 Michael Snyder <msnyder@redhat.com>
3530
3531 * mips-tdep.c: gdbarch-ify reg_struct_has_addr.
3532 (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr,
3533 mips_o32_reg_struct_has_addr): New functions.
3534 (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
3535
3536 2002-08-07 Andrew Cagney <ac131313@redhat.com>
3537
3538 * regcache.c (pseudo_register): Delete function.
3539 (fetch_register): Delete function.
3540 (store_register): Delete function.
3541 (regcache_raw_read, legacy_read_register_gen): Use
3542 target_fetch_registers instead of fetch_register.
3543 (legacy_write_register_gen, regcache_raw_write): Use
3544 target_store_register instead of store_register.
3545 (write_register_bytes): Ditto.
3546
3547 * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
3548 (STORE_PSEUDO_REGISTER): Delete.
3549 * gdbarch.h, gdbarch.c: Regenerate.
3550
3551 2002-08-06 Corinna Vinschen <vinschen@redhat.com>
3552
3553 * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
3554 write dump file binary.
3555
3556 2002-08-05 Michael Snyder <msnyder@redhat.com>
3557
3558 * mips-tdep.c (mips_find_saved_regs): Adjust stack according
3559 to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64. Enhance comment.
3560 (mips_gdbarch_init): Set N32 target to be mips64.
3561
3562 2002-08-06 Kevin Buettner <kevinb@redhat.com>
3563
3564 * frame.c (find_saved_register): Break out of loop once saved
3565 register address is found. Don't mention sparc in loop comment
3566 anymore.
3567
3568 2002-08-06 Kevin Buettner <kevinb@redhat.com>
3569
3570 * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
3571 mips_default_saved_regsize to 8.
3572
3573 2002-08-06 Andrew Cagney <ac131313@redhat.com>
3574
3575 * gcore.c: Do not include <sys/procfs.h>.
3576 * Makefile.in (gcore.o): Update dependencies.
3577
3578 2002-08-06 Andrew Cagney <cagney@redhat.com>
3579
3580 * configure.tgt: Make arc-*-* obsolete.
3581 * NEWS: Mention that arc-*-* has been identifed as obsolete.
3582 * MAINTAINERS: Make arc-elf obsolete.
3583 * arc-tdep.c: Make file obsolete.
3584 * config/arc/arc.mt: Ditto.
3585 * config/arc/tm-arc.h: Ditto.
3586
3587 2002-08-05 Theodore A. Roth <troth@verinet.com>
3588
3589 * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
3590
3591 2002-08-05 Andrew Cagney <ac131313@redhat.com>
3592
3593 * mcore-tdep.c (mcore_gdbarch_init): Use
3594 generic_unwind_get_saved_register instead of
3595 generic_get_saved_register.
3596 * v850-tdep.c (v850_gdbarch_init): Ditto.
3597 * frv-tdep.c (frv_gdbarch_init): Ditto.
3598 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
3599 * s390-tdep.c (s390_gdbarch_init): Ditto.
3600 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
3601 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
3602 * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
3603
3604 2002-08-05 Joel Brobecker <brobecker@gnat.com>
3605
3606 * objfiles.h: Add missing #include "symfile.h"
3607
3608 * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
3609
3610 2002-08-04 Andrew Cagney <ac131313@redhat.com>
3611
3612 From 2002-08-01 david carlton <carlton@math.stanford.edu>:
3613 * hpread.c (hpread_read_struct_type): Deleted superfluous setting
3614 of FIELD_BITSIZE.
3615
3616 2002-08-04 Daniel Jacobowitz <drow@mvista.com>
3617
3618 * NEWS: Cleanup and nitpick.
3619
3620 2002-08-03 Andrew Cagney <ac131313@redhat.com>
3621
3622 * NEWS: Cleanup. Use *-linux*-gnu*. Only use `*' for headings.
3623
3624 2002-08-03 Andrew Cagney <ac131313@redhat.com>
3625
3626 * Makefile.in (gdbtk-bp.o): Update dependencies.
3627 (gdbtk-register.o): Ditto.
3628 (gdbtk-varobj.o): Ditto.
3629
3630 2002-08-03 Andrew Cagney <cagney@redhat.com>
3631
3632 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
3633 m68hc11_fetch_pseudo_register.
3634 (m68hc11_pseudo_register_write): Replace
3635 m68hc11_store_pseudo_register.
3636 (m68hc11_gdbarch_init): Update.
3637
3638 Fri Aug 2 15:53:50 2002 Andrew Cagney <cagney@redhat.com>
3639
3640 * gdbarch.sh: Include "gdb_string.h".
3641 * gdbarch.c: Regenerate.
3642
3643 * regcache.c: Include "gdb_string.h".
3644 * ax-general.c: Ditto.
3645 * varobj.c: Ditto.
3646 * std-regs.c: Ditto.
3647 * fbsd-proc.c: Ditto.
3648 * thread.c: Ditto.
3649
3650 * Makefile.in (regcache.o): Update dependencies.
3651 (thread.o, gdbarch.o): Ditto.
3652 (ax-general.o, gdbarch.o): Ditto.
3653 (varobj.o, std-regs.o): Ditto.
3654 (fbsd-proc.o): Specify dependencies.
3655
3656 2002-08-02 Andrew Cagney <cagney@redhat.com>
3657
3658 * regcache.c (regcache_cooked_read): Rename rawnum parameter to
3659 regnum.
3660 (regcache_cooked_write): Ditto.
3661
3662 2002-08-02 Andrew Cagney <ac131313@redhat.com>
3663
3664 * regcache.c (regcache_cooked_read): New function.
3665 (regcache_cooked_write): New function.
3666 (read_register_gen): Rewrite using regcache_cooked_read.
3667 (write_register_gen): Rewrite using regcache_cooked_write.
3668
3669 * regcache.h (regcache_cooked_read, regcache_cooked_write):
3670 Declare.
3671
3672 2002-08-02 Andrew Cagney <cagney@redhat.com>
3673
3674 * gdbarch.sh (pseudo_register_read, pseudo_register_write):
3675 Replace the architecture methods register_read and register_write.
3676 * gdbarch.h, gdbarch.c: Regenerate.
3677 * regcache.c (init_regcache_descr): Update.
3678 (read_register_gen): Update.
3679 (write_register_gen): Update.
3680 (supply_register): Update comment.
3681
3682 * sh-tdep.c (sh_gdbarch_init): Update.
3683 (sh_pseudo_register_read, sh64_pseudo_register_read): Add
3684 `regcache' and `gdbarch' parameters. Make `buffer' a void
3685 pointer. Update code.
3686 (sh_pseudo_register_write, sh64_pseudo_register_write): Add
3687 `regcache' and `gdbarch' parameters. Make `buffer' a constant
3688 void pointer. Update code.
3689 (sh64_register_write): Delete.
3690 (sh4_register_read): Delete.
3691 (sh64_register_read): Delete.
3692 (sh4_register_write): Delete.
3693 (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
3694 void pointer, `to' parameter a void pointer.
3695 (sh_sh64_register_convert_to_raw): Ditto.
3696
3697 2002-08-01 Kevin Buettner <kevinb@redhat.com>
3698
3699 * mips-tdep.c (mips_register_virtual_type): Use architecture
3700 invariant return values.
3701
3702 2002-08-01 Andrew Cagney <cagney@redhat.com>
3703
3704 * linux-proc.c: Include "gdb_string.h".
3705 * Makefile.in (linux-proc.o): Update dependency list.
3706
3707 2002-08-01 Kevin Buettner <kevinb@redhat.com>
3708
3709 * mips-tdep.c (mips_gdbarch_init): Add comments. Fix typo in
3710 comment.
3711
3712 2002-08-01 Grace Sainsbury <graces@redhat.com>
3713
3714 * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
3715 to_insert_watchpoint, to_remove_watchpoint,
3716 to_stopped_by_watchpoint, to_stopped_data_address,
3717 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
3718 target vecctor. Define their corresponding macros so they call
3719 them.
3720
3721 * target.c: Add default and debug versions of for
3722 to_insert_hw_breakpoint, to_remove_hw_breakpoint,
3723 to_insert_watchpoint, to_remove_watchpoint,
3724 to_stopped_by_watchpoint, to_stopped_data_address,
3725 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
3726
3727 2002-08-01 Kevin Buettner <kevinb@redhat.com>
3728
3729 * mips-tdep.c (mips_register_virtual_type): New function.
3730 (mips_gdbarch_init): Register mips_register_virtual_type()
3731 with gdbarch machinery.
3732 * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
3733 this file instead of tm-bigmips.h.
3734 (MIPS_REGSIZE): Delete this macro.
3735 (REGISTER_VIRTUAL_TYPE): Delete macro. Undef macro so that
3736 multiarch version in mips-tdep.c will be found.
3737
3738 2002-08-01 Andrew Cagney <cagney@redhat.com>
3739
3740 * NEWS: Menion that CHILL has been made obsolete.
3741
3742 * gdbtypes.c (chill_varying_type): Make chill references obsolete.
3743 * stabsread.c (read_range_type): Ditto.
3744 * gdbtypes.h: Ditto.
3745 * language.c (binop_type_check): Ditto.
3746 (binop_result_type): Ditto.
3747 (integral_type): Ditto.
3748 (character_type): Ditto.
3749 (string_type): Ditto.
3750 (boolean_type): Ditto.
3751 (structured_type): Ditto.
3752 (lang_bool_type): Ditto.
3753 (binop_type_check): Ditto.
3754 * language.h (_LANG_chill): Ditto.
3755 * dwarfread.c (set_cu_language): Ditto.
3756 * dwarfread.c (CHILL_PRODUCER): Ditto.
3757 * dwarfread.c (handle_producer): Ditto.
3758 * expression.h (enum exp_opcode): Ditto.
3759 * eval.c: Ditto for comments.
3760 * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
3761 * expprint.c (print_subexp): Ditto.
3762 (print_subexp): Ditto.
3763 * valops.c (value_cast): Ditto.
3764 (search_struct_field): Ditto.
3765 * value.h (COERCE_VARYING_ARRAY): Ditto.
3766 * symfile.c (init_filename_language_table): Ditto.
3767 (add_psymbol_with_dem_name_to_list): Ditto.
3768 * valarith.c (value_binop): Ditto.
3769 (value_neg): Ditto.
3770 * valops.c (value_slice): Ditto.
3771 * symtab.h (union language_specific): Ditto.
3772 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
3773 (SYMBOL_DEMANGLED_NAME): Ditto.
3774 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
3775 * defs.h (enum language): Ditto.
3776 * symtab.c (got_symtab): Ditto.
3777 * utils.c (fprintf_symbol_filtered): Ditto.
3778
3779 * ch-typeprint.c: Make file obsolete.
3780 * ch-valprint.c: Make file obsolete.
3781 * ch-lang.h: Make file obsolete.
3782 * ch-exp.c: Make file obsolete.
3783 * ch-lang.c: Make file obsolete.
3784
3785 * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
3786 CHILL_LIB.
3787 (TARGET_FLAGS_TO_PASS): Ditto.
3788 (CHILLFLAGS): Obsolete.
3789 (CHILL): Obsolete.
3790 (CHILL_FOR_TARGET): Obsolete.
3791 (CHILL_LIB): Obsolete.
3792 (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
3793 ch-valprint.c.
3794 (HFILES_NO_SRCDIR): Remove ch-lang.h.
3795 (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
3796 ch-lang.o.
3797 (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
3798 targets.
3799
3800 2002-07-31 Joel Brobecker <brobecker@gnat.com>
3801
3802 * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
3803 This does not change anything at the moment, but will be helpful
3804 later when full Ada support is integrated.
3805
3806 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3807
3808 * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
3809 help message.
3810
3811 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3812
3813 * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
3814 and save it in a local variable. Use variable in later test.
3815
3816 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3817
3818 * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
3819 test. (Thanks to Daniel Jacobowitz.)
3820
3821 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3822
3823 * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
3824 (mips_abi_strings): Add "n64".
3825 (mips_gdbarch_init): Add test for n64 abi. Add MIPS_ABI_N64 case.
3826
3827 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3828
3829 * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
3830 (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
3831
3832 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3833
3834 * utils.c (host_pointer_to_address, address_to_host_pointer):
3835 Use gdb_assert() instead of explicit call to internal_error().
3836
3837 2002-07-30 Kevin Buettner <kevinb@redhat.com>
3838
3839 * Makefile.in (rs6000-nat.o): Update dependencies.
3840
3841 From Nicholas Duffek:
3842 * Makefile.in (ALLDEPFILES): Add aix-thread.c.
3843 (aix-thread.o): New rule.
3844 * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
3845 * config/powerpc/aix432.mh: New file.
3846
3847 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
3848
3849 * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
3850 (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
3851 (fetch_core_registers, ppc_linux_supply_gregset)
3852 (ppc_linux_supply_fpregset): New functions.
3853 (ppc_linux_regset_core_fns): New.
3854 (_initialize_ppc_linux_tdep): Call add_core_fns.
3855 * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
3856 and ppc_linux_supply_gregset.
3857 * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
3858 (supply_fpregset): Call ppc_linux_supply_fpregset.
3859 * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
3860 corelow.o.
3861 * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
3862
3863 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
3864
3865 * symtab.c (lookup_symbol): Demangle before lowercasing.
3866
3867 2002-07-30 Andrew Cagney <ac131313@redhat.com>
3868
3869 * symtab.h: Replace #include "gdb_obstack.h" with opaque
3870 declaration.
3871 * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
3872 * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
3873 * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
3874 * arch-utils.c, cli/cli-setshow.c: Unconditionally include
3875 "gdb_string.h".
3876 * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
3877 (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
3878 (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
3879 (avr-tdep.o, mon960-rom.o): Ditto.
3880 (aout_stabs_gnu_h): Define.
3881 (symtab_h): Remove $(gdb_obstack_h).
3882
3883 2002-07-30 Jim Blandy <jimb@redhat.com>
3884
3885 Patch from David Carlton <carlton@math.stanford.edu>:
3886 * gdbinit.in: Move the `dir' commands that add GDB's own source
3887 directory to the search path to the end, so that the `gdb' source
3888 directory will be searched first.
3889
3890 2002-07-29 Andrew Cagney <ac131313@redhat.com>
3891
3892 * gdb_obstack.h: New file.
3893 * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
3894 (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
3895 * objfiles.h: Include "gdb_obstack.h".
3896 * Makefile.in (gdb_obstack_h): Define.
3897 (symtab_h): Add $(gdb_obstack_h).
3898 (objfiles_h): Add $(gdb_obstack_h).
3899
3900 * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
3901 * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
3902 * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
3903 * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
3904 * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
3905 * p-valprint.c, symmisc.c, typeprint.c: Ditto.
3906 * symfile.c, coffread.c, c-typeprint.c: Ditto.
3907 * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
3908
3909 * Makefile.in (bcache.o): Update dependencies.
3910 (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
3911 (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
3912 (dbxread.o, dstread.o, f-typeprint.o): Ditto.
3913 (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
3914 (stabsread.o, symfile.o, symmisc.o): Ditto.
3915 (symtab.o, typeprint.o, macroexp.o): Ditto.
3916 (macrotab.o, mdebugread.o): Ditto.
3917 (f_lang_h, coff_sym_h, coff_symconst_h): Define.
3918 (coff_ecoff_h, aout_aout64_h): Define.
3919 (aout_stabs_gnu_h, libaout_h): Define.
3920
3921 2002-07-29 Andrew Cagney <cagney@redhat.com>
3922
3923 * regcache.c (struct regcache_descr): Rename nr_registers to
3924 nr_cooked_registers. Revise comments describing the structure
3925 member fields.
3926 (init_regcache_descr): Update.
3927 (init_legacy_regcache_descr): Update.
3928 (read_register_gen, write_register_gen): When a cooked register in
3929 the raw register range, directly access the value from the raw
3930 register cache.
3931
3932 2002-07-29 Andrew Cagney <ac131313@redhat.com>
3933
3934 * z8k-tdep.c: Do not include "obstack.h".
3935 * h8300-tdep.c, h8500-tdep.c: Ditto.
3936 * m68hc11-tdep.c, sh-tdep.c: Ditto.
3937 * valprint.c, v850-tdep.c: Ditto.
3938 * d10v-tdep.c, mn10300-tdep.c: Ditto.
3939 * mn10200-tdep.c: Ditto.
3940
3941 * Makefile.in (z8k-tdep.o): Update dependencies.
3942 (m68hc11-tdep.o, valprint.o): Ditto.
3943 (v850-tdep.o, d10v-tdep.o): Ditto.
3944 (mn10300-tdep.o, sparc-tdep.o): Ditto.
3945 (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
3946 (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
3947 (sh_opc_h, gdb_sim_sh_h): Define.
3948 (elf_sh_h, elf_bfd_h): Define.
3949 (opcode_m68hc11_h): Define.
3950 (OPCODES_SRC, OPCODES_DIR): define.
3951 (OPCODES): Use $(OPCODES_DIR).
3952 (gdb_sim_d10v_h): Rename sim_d10v_h.
3953 (gdb_sim_arm_h): Rename sim_arm_h.
3954
3955 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3956
3957 * utils.c (host_pointer_to_address, address_to_host_pointer):
3958 Change internal_error() message to indicate function responsible
3959 for the error.
3960
3961 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3962
3963 * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
3964 calls to local_hex_string_custom().
3965
3966 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3967
3968 * irix5-nat.c: Move IRIX shared library support from here...
3969 * solib-irix.c: ...to here. Revised substantially to work with
3970 generic solib framework.
3971
3972 * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
3973 * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
3974 * mips-irix-tdep.c: New file.
3975
3976 * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
3977 (mips-irix-tdep.o, solib-irix.o): New rules.
3978 * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
3979 solib-irix.o.
3980 * config/mips/irix6.mt (TDEPFILES): Likewise.
3981 * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
3982
3983 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3984
3985 * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
3986 disabled (via ``#if 0'') includes.
3987
3988 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3989
3990 * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
3991 (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
3992 (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
3993 Add support for the fpscr register.
3994 * rs6000-nat.c (regmap, fetch_inferior_registers)
3995 (store_inferior_registers, fetch_core_registers): Likewise.
3996
3997 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3998
3999 * rs6000-nat.c (language.h): Include.
4000 (special_regs): Delete this array.
4001 (regmap): New function.
4002 (fetch_register, store_register): Use regmap() to map gdb
4003 register numbers to ptrace register numbers. Also, use
4004 outputs from regmap() to make decisions regarding type of
4005 ptrace() call to make. In particular, don't compare against
4006 FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
4007 (fetch_inferior_registers, store_inferior_registers): Where
4008 possible, obtain register numbers from tdep struct. Don't
4009 refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
4010 * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
4011 (LAST_UISA_SP_REGNUM): Delete.
4012
4013 2002-07-25 Kevin Buettner <kevinb@redhat.com>
4014
4015 * rs6000-nat.c (ppc-tdep.h): Include.
4016 (fetch_registers, store_register, fetch_core_registers): Don't
4017 access registers[] directly. Instead, use supply_register() or
4018 regcache_collect() as appropriate.
4019 (find_toc_address): Format hex address with local_hex_string().
4020
4021 2002-07-25 Andrew Cagney <ac131313@redhat.com>
4022
4023 * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
4024 bfd/elf32-frv.c.
4025
4026 2002-07-24 Tom Tromey <tromey@redhat.com>
4027
4028 * jv-exp.y: Marked all strings with _().
4029 (ClassInstanceCreationExpression, ArrayCreationExpression): Use
4030 internal_error.
4031 (MethodInvocation, CastExpression, parse_number, yyerror,
4032 java_type_from_name, push_expression_name, yylex): Typo fixes.
4033
4034 2002-07-24 Daniel Jacobowitz <drow@mvista.com>
4035
4036 * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
4037 (tee_file_flush, tee_file_write, tee_file_fputs)
4038 (tee_file_isatty): New.
4039 * ui-file.h (tee_file_new): Add prototype.
4040
4041 2002-07-24 Aidan Skinner <aidan@velvet.net>
4042
4043 * ada-lang.c: Change k&r style function definitions to prototyped
4044 form.
4045 * ada-typeprint.c: Change k&r style function definitions to prototyped
4046 form.
4047 * ada-valprint.c: Change k&r style function definitions to prototyped
4048 form.
4049
4050 2002-07-24 Andrew Cagney <cagney@redhat.com>
4051
4052 * README: Remove reference to remote-bug.
4053 * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
4054 remote-bug.c.
4055 (m88k-nat.o): Delete rule.
4056 (m88k-tdep.o): Delete rule.
4057 (remote-bug.o): Delete rule.
4058 * MAINTAINERS: Mark as obsolete.
4059 * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
4060 * m88k-tdep.c: Make file obsolete.
4061 * config/m88k/m88k.mh: Ditto.
4062 * config/m88k/delta88v4.mh: Ditto.
4063 * config/m88k/delta88v4.mt: Ditto.
4064 * config/m88k/delta88.mt: Ditto.
4065 * config/m88k/delta88.mh: Ditto.
4066 * remote-bug.c: Ditto.
4067 * config/m88k/tm-delta88.h: Ditto.
4068 * config/m88k/nm-delta88v4.h: Ditto.
4069 * config/m88k/xm-delta88.h: Ditto.
4070 * config/m88k/xm-dgux.h: Ditto.
4071 * config/m88k/tm-m88k.h: Ditto.
4072 * config/m88k/nm-m88k.h: Ditto.
4073 * config/m88k/tm-delta88v4.h: Ditto.
4074 * m88k-nat.c: Ditto.
4075 * cxux-nat.c: Ditto.
4076 * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
4077 and m88*-*-* obsolete.
4078 * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
4079 m88*-*-* obsolete.
4080
4081 2002-07-24 Andrew Cagney <cagney@redhat.com>
4082
4083 * findvar.c (extract_unsigned_integer): Make `addr' parameter
4084 constant. Same for local pointer variables.
4085 (extract_signed_integer): Ditto.
4086 * defs.h (extract_unsigned_integer): Update.
4087 (extract_signed_integer): Update.
4088
4089 2002-07-24 Andrew Cagney <cagney@redhat.com>
4090
4091 * regcache.c (regcache_raw_write): Change buf parameter to a
4092 constant void pointer.
4093 (regcache_raw_read): Change buf parameter to a void pointer.
4094 (legacy_write_register_gen): Change myaddr parameter a constant
4095 void pointer.
4096 (supply_register): Change val parameter to a const void pointer.
4097 * regcache.h (regcache_raw_write): Update declaration.
4098 (regcache_raw_read): Update declaration.
4099 (supply_register): Update declaration.
4100
4101 2002-07-24 Tom Tromey <tromey@redhat.com>
4102
4103 * defs.h (gdb_readline_wrapper): Declare.
4104 * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
4105 * tracepoint.c (read_actions): Use gdb_readline_wrapper.
4106 * top.c (gdb_readline_wrapper): New function.
4107 (command_line_input): Use it.
4108
4109 2002-07-24 Andrew Cagney <cagney@redhat.com>
4110
4111 * regcache.h (regcache_raw_read, regcache_raw_write): Replace
4112 regcache_read and regcache_write.
4113 (regcache_raw_read_as_address): Replace regcache_read_as_address.
4114 * regcache.c: Update.
4115 * sh-tdep.c (sh64_push_arguments): Update comment.
4116 (sh_pseudo_register_read): Update.
4117 (sh_pseudo_register_write): Update.
4118 (sh4_register_read): Update.
4119 (sh4_register_write): Update.
4120 (sh64_pseudo_register_read): Update.
4121 (sh64_pseudo_register_write): Update.
4122 (sh64_register_read): Update.
4123 (sh64_register_write): Update.
4124 * i386-tdep.c (i386_extract_return_value): Update.
4125 (i386_extract_struct_value_address): Update.
4126 (i386_extract_return_value): Update.
4127 * blockframe.c (generic_read_register_dummy): Update.
4128 (generic_call_dummy_register_unwind): Update
4129 * infrun.c (write_inferior_status_register): Update.
4130
4131 2002-07-23 Jim Blandy <jimb@redhat.com>
4132
4133 * parser-defs.h (expression_context_pc): Make this extern.
4134 (Thanks to Michael Snyder.)
4135
4136 2002-07-23 Andrew Cagney <ac131313@redhat.com>
4137
4138 GDB 5.2.1 released from 5.2 branch.
4139 * NEWS: Mention changes in 5.2.1 including addition of AVR target.
4140 * README: Update to mention 5.2.1.
4141
4142 2002-07-23 Mark Salter <msalter@redhat.com>
4143
4144 * remote.c (remote_read_bytes): Fix check for error.
4145
4146 2002-07-22 Kevin Buettner <kevinb@redhat.com>
4147
4148 * aix-thread.c (language.h): Include.
4149 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
4150 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
4151 Print newlines at end of debug messages.
4152 (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
4153 (pdc_write_data): Use local_hex_string() instead of %llx formats.
4154
4155 2002-07-22 Kevin Buettner <kevinb@redhat.com>
4156
4157 * aix-thread.c (ppc-tdep.h): Include.
4158 (special_register_p): New function.
4159 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
4160 (store_regs_user_thread): Use register number information from
4161 gdbarch_tdep struct instead of hardcoded offsets relative to
4162 FIRST_UISA_SP_REGNUM.
4163 (fetch_regs_kernel_thread, store_regs_kernel_thread): Call
4164 special_register_p() instead of using FPLAST_REGNUM and
4165 LAST_UISA_SP_REGNUM as lower and upper bounds on the special
4166 register numbers. Also, don't assume that LAST_UISA_SP_REGNUM
4167 will be MQ's register number.
4168
4169 2002-07-22 Michael Snyder <msnyder@redhat.com>
4170
4171 * aix-thread.c (ops): Rename to aix_thread_ops.
4172 (base_ops): Rename to base_target.
4173 (ops_attach): Rename to aix_thread_attach.
4174 (ops_detach): Rename to aix_thread_detach.
4175 (ops_resume): Rename to aix_thread_detach.
4176 (ops_wait): Rename to aix_thread_wait.
4177 (ops_kill): Rename to aix_thread_kill.
4178 (init_ops): Rename to init_aix_thread_ops.
4179 (ops_fetch_register): Rename to aix_thread_fetch_register.
4180 (ops_store_register): Rename to aix_thread_store_register.
4181 (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
4182 (ops_thread_alive): Rename to aix_thread_thread_alive.
4183 (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
4184 (ops_pid_to_str): Rename to aix_thread_pid_to_str.
4185 (ops_xfer_memory): Rename to aix_thread_xfer_memory.
4186 (fetch_regs_lib): Rename to fetch_regs_user_thread.
4187 (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
4188 (store_regs_lib): Rename to store_regs_user_thread.
4189 (store_regs_kern): Rename to store_regs_kernel_thread.
4190
4191 2002-07-22 Michael Snyder <msnyder@redhat.com>
4192
4193 * aix-thread.c (ops_prepare_to_store): Eliminate.
4194 (init_ops): Don't initialize ops.prepare_to_store.
4195 (store_regs_kern): Pre-fetch register buffers from child,
4196 because some registers may not be in the cache. Copy
4197 regs from register cache only if they are cached.
4198 (store_regs_lib): Copy regs from register cache only
4199 if they are cached.
4200 (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
4201 fill_gprs64): Ditto.
4202
4203 2002-07-22 Kevin Buettner <kevinb@redhat.com>
4204
4205 * aix-thread.c (gdb_assert.h): Include.
4206 (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
4207 register sizes (from register cache) match size of buffer holding
4208 register data.
4209 (fill_sprs32): Change parameter types to match those in the ptrace()
4210 buffer.
4211 (store_regs_lib): Likewise, but for 32-bit temporary variables.
4212 (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
4213
4214 2002-07-22 Michael Snyder <msnyder@redhat.com>
4215
4216 * aix-thread.c (supply_sprs64): Cosmetic change.
4217 (supply_sprs32): Cosmetic change.
4218 (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
4219 (fill_sprs64): Use regcache_collect instead of read_register.
4220 (store_regs_lib): Use regcache_collect instead of
4221 read_register. Use fill_sprs32 instead of fill_sprs64,
4222 if debugging a 32-bit architecture.
4223 (store_regs_kern): Use fill_gprs64 etc. to pull the values
4224 out of the register cache, instead of passing a pointer into
4225 the register cache directly to ptrace. Use regcache_collect
4226 insteaad of read_register.
4227 (ops_prepare_to_store): Use target_read_registers instead
4228 of read_register_bytes.
4229
4230 2002-07-20 Aidan Skinner <aidan@velvet.net>
4231
4232 * MAINTAINERS: Add self under write after approval.
4233
4234 2002-07-20 Aidan Skinner <aidan@velvet.net>
4235
4236 * ada-tasks.c: Change k&r style function definitions to prototyped
4237 form.
4238
4239 2002-07-19 Andrew Cagney <ac131313@redhat.com>
4240
4241 * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
4242 * x86-64-tdep.c: Include "objfiles.h".
4243 (x86_64_gdbarch_init): Set in_solib_call_trampoline to
4244 in_plt_section. From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
4245
4246 2002-07-17 Michal Ludvig <michal@suse.cz>
4247
4248 * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
4249 (update_context): Initialise cfa variable.
4250
4251 2002-07-17 Michael Snyder <msnyder@redhat.com>
4252
4253 * aix-thread.c: Shorten some long lines.
4254 Bring comments into line with code spec.
4255
4256 2002-07-18 Joel Brobecker <brobecker@gnat.com>
4257
4258 * infrun.c: Re-indent using gdb_indent.sh.
4259
4260 2002-07-18 Joel Brobecker <brobecker@gnat.com>
4261
4262 * infrun.c (handle_inferior_event): Remove unneeded extra brace.
4263 Leave the indentation temporarily untouched, to minimize the diffs.
4264
4265 2002-07-18 Elena Zannoni <ezannoni@redhat.com>
4266
4267 * stabsread.c: Make os9k sections of the code obsolete,
4268 for real this time.
4269 * stabsread.h: Make os9k sections of the code obsolete.
4270
4271 2002-07-18 Michal Ludvig <mludvig@suse.cz>
4272
4273 * linux-low.c (regsets_store_inferior_registers): Add free()
4274 at the end of a loop to prevent memory leak.
4275 * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
4276 (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
4277 * config/sparc/tm-sp64linux.h: Make the rest of #endif
4278 line a comment.
4279 * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
4280
4281 2002-07-17 Jim Blandy <jimb@redhat.com>
4282
4283 * macrocmd.c (info_macro_command): Remove newline from error
4284 message.
4285
4286 2002-07-17 J"orn Rennecke <joern.rennecke@superh.com>
4287
4288 * sh-tdep.c (sh_dsp_register_sim_regno): New function.
4289 (sh_gdbarch_init): Use it for sh-dsp.
4290
4291 2002-07-16 Kevin Buettner <kevinb@redhat.com>
4292
4293 * dwarf2read.c (read_initial_length): Handle older, non-standard,
4294 64-bit DWARF2 format.
4295
4296 2002-07-16 Joel Brobecker <brobecker@gnat.com>
4297
4298 * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
4299 <sys/proc.h> when not available.
4300
4301 2002-07-16 Andrew Cagney <ac131313@redhat.com>
4302
4303 * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
4304 * stabsread.c: Make os9k sections of the code obsolete.
4305 * configure.tgt: Make i[3456]86-*-os9k target obsolete.
4306 * config/i386/i386os9k.mt: Make file obsolete.
4307 * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
4308 (COMMON_OBS): Remove os9kread.o
4309 (SFILES): Remove os9kread.c.
4310 (os9kread.o, remote-os9k.o): Make target obsolete.
4311 * remote-os9k.c: Make file obsolete.
4312 * os9kread.c: Make file obsolete.
4313 * Makefile.in
4314
4315 2002-07-16 Andrew Cagney <ac131313@redhat.com>
4316
4317 * NEWS: Mention that the FR30 has been made obsolete.
4318 * fr30-tdep.c: Make file obsolete.
4319 * config/fr30/tm-fr30.h: Ditto.
4320 * config/fr30/fr30.mt: Ditto.
4321 * configure.tgt: Make fr30-*-elf obsolete.
4322 * MAINTAINERS: Make fr30-elf obsolete.
4323
4324 2002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
4325
4326 * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
4327 found is not inside a section.
4328
4329 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4330
4331 * aix-thread.c (ptrace_check): Use safe_strerror() instead of
4332 strerror().
4333 (pdc_realloc): Use xrealloc() instead of realloc().
4334
4335 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4336
4337 * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
4338 (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
4339 (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
4340 macros.
4341
4342 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4343
4344 * aix-thread.c (ptrace_check): Eliminate goto.
4345 (sync_threadlists): Eliminate gotos. Also, fix array overrun
4346 problem.
4347
4348 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4349
4350 * aix-thread.c (gdbcmd.h): Include.
4351 (DEBUG, DBG, DBG2, dbg): Eliminate.
4352 (debug_aix_thread): New static global.
4353 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
4354 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
4355 (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
4356 invocations to DBG and DBG2 macros to test against
4357 ``debug_aix_thread'' and call fprintf_unfiltered().
4358 (_initialize_aix_thread): Add new command "set debug aix-thread".
4359
4360 2002-07-15 Andrew Cagney <ac131313@redhat.com>
4361
4362 From Gerhard Tonn <TON@de.ibm.com>:
4363 * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
4364 instead of supply_register.
4365
4366 2002-07-15 Andrew Cagney <ac131313@redhat.com>
4367
4368 * dwarf2cfi.c: Include "gdb_assert.h".
4369 (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
4370 non-NULL.
4371 (update_context): Do not use __func__. Add missing ``break''.
4372 (update_context): Do not use __func__.
4373
4374 2002-07-15 Elena Zannoni <ezannoni@redhat.com>
4375
4376 * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
4377 and its setting. Set gdbarch instruction printing functions
4378 directly. For non-rs6000 case use new function
4379 gdb_print_insn_powerpc.
4380 (gdb_print_insn_powerpc): New function.
4381
4382 2002-07-13 Andrew Cagney <ac131313@redhat.com>
4383
4384 * NEWS: Mention that the d30v has been marked obsolete.
4385 * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
4386 * configure.tgt: Mark d30v-*-* as obsolete.
4387 * d30v-tdep.c: Mark file as obsolete.
4388 * config/d30v/d30v.mt: Ditto.
4389 * config/d30v/tm-d30v.h: Ditto.
4390
4391 2002-07-13 Aidan Skinner <aidan@velvet.net>
4392
4393 * ada-tasks.c (add_task_entry): replace calls to
4394 malloc() with xmalloc
4395 * ada-tasks.c (init_task_list): replace calls to free with xfree()
4396
4397 * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
4398 ada_finish_decode_line_1, all_sals_for_line
4399 ada_breakpoint_rewrite): replace calls to free() with xfree()
4400
4401 2002-07-12 Kevin Buettner <kevinb@redhat.com>
4402
4403 From Nicholas Duffek (with minor changes by Martin Hunt,
4404 Louis Hamilton, and Kevin Buettner):
4405 * aix-thread.c: New file.
4406
4407 2002-07-12 Petr Sorfa <petrs@caldera.com>
4408
4409 * dwarf2read.c (dwarf2_invalid_attrib_class): New
4410 complaint for invalid attribute class or form.
4411 (read_func_scope): DW_AT_frame_base
4412 better handling of DW_AT_block*.
4413 (dwarf2_add_member_fn): DW_AT_vtable_elem_location
4414 better handling of DW_AT_block*.
4415 (read_common_block): DW_AT_location
4416 better handling of DW_AT_block*.
4417 (read_partial_die): DW_AT_location better handling
4418 of DW_AT_block*.
4419 (new_symbol): DW_AT_external better handling of
4420 DW_AT_block*. Proper initialization of variable
4421 "addr".
4422 (attr_form_is_block): New function that returns true
4423 if the attribute's form is of DW_FORM_block*.
4424
4425 2002-07-12 Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
4426
4427 * valops.c (find_method_list): Remove comment about
4428 removed STATIC_MEMFUNCP argument.
4429 (value_find_oload_method_list): Likewise.
4430
4431 2002-07-12 Kevin Buettner <kevinb@redhat.com>
4432
4433 From Nicholas Duffek:
4434 * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
4435 target_new_objfile_hook.
4436
4437 2002-07-12 Kevin Buettner <kevinb@redhat.com>
4438
4439 From Nicholas Duffek:
4440 * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
4441 csect.
4442
4443 2002-07-12 Andrew Cagney <cagney@redhat.com>
4444
4445 * MAINTAINERS: Mention --enable-sim-build-warnings.
4446 (m68hc11-elf): Disable sim build warnings.
4447 (m32r-elf): Mark as broken obsolete candidate.
4448 (x86_64-linux-gnu): Mark as buildable with -Werror.
4449 (arm-elf): Change -w to ``,'' which enables warnings but not
4450 -Werror.
4451
4452 2002-07-12 Andrew Cagney <ac131313@redhat.com>
4453
4454 * bcache.h: Update copyright.
4455 (struct bstring, struct bcache): Move definition to "bcache.c".
4456 Replaced by opaque declaration.
4457 (bcache_xfree): Replace free_bcache.
4458 (bcache_xmalloc, bcache_memory_used): Declare.
4459
4460 * bcache.c: Update copyright.
4461 (struct bstring, struct bcache): Moved to here from "bcache.h".
4462 Update comments.
4463 (bcache_xmalloc, bcache_memory_used): New functions.
4464 (bcache_xfree): Replace function free_bcache.
4465
4466 * Makefile.in (objfiles.o): Add $(bcache_h).
4467 (objfiles_h): Remove $(bcache_h).
4468 (symfile.o): Add $(bcache_h).
4469
4470 * symmisc.c: Update copyright.
4471 (print_symbol_bcache_statistics): Pass psymbol_cache by value.
4472 (print_objfile_statistics): Use bcache_memory_used.
4473
4474 * symfile.c: Include "bcache.h".
4475 (reread_symbols): Use bcache_xfree.
4476 (reread_symbols): Use bcache_xmalloc and bcache_xfree.
4477 (add_psymbol_to_list): Pass psymbol_cache by value.
4478 (add_psymbol_with_dem_name_to_list): Ditto.
4479
4480 * objfiles.h: Update copyright.
4481 (struct bcache): Declare opaque. Do not include "bcache.h".
4482 (struct objfile): Change psymbol_cache and macro_cache to ``struct
4483 bcache'' pointers.
4484 * dwarf2read.c (macro_start_file): Pass macro_cache by value.
4485
4486 * objfiles.c: Include "bcache.h". Update copyright.
4487 (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
4488 macro_cache.
4489 (free_objfile): Use bcache_xfree.
4490
4491 2002-07-11 Grace Sainsbury <graces@redhat.com>
4492
4493 * monitor.c (monitor_fetch_register): Make name a constant.
4494 (monitor_store_register): Same.
4495
4496 2002-07-11 Daniel Jacobowitz <drow@mvista.com>
4497
4498 Based on patch from Daniel Berlin <dberlin@dberlin.org>.
4499 * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
4500 (finish_block) For non-function blocks, hash the symbol table. For
4501 function blocks, mark the symbol table as unhashed.
4502 * minsyms.c (msymbol_hash): Return hash value without taking modulus.
4503 (msymbol_hash_iw): Likewise.
4504 (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
4505 value.
4506 (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
4507 (lookup_minimal_symbol): Likewise for both.
4508 * symtab.h (struct block): Add `hashtable' flag. Comment the
4509 hashtable.
4510 (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
4511 (ALL_BLOCK_SYMBOLS): Update.
4512 (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
4513 (struct symbol): Add `hash_next' pointer.
4514 * symtab.c (lookup_block_symbol): Search using the hash table when
4515 possible.
4516 (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
4517 (search_symbols, find_addr_symbol): Likewise.
4518
4519 * dstread.c (process_dst_block): Clear hashtable bit for new block.
4520 (read_dst_symtab): Likewise.
4521 * jv-lang.c (get_java_class_symtab): Likewise.
4522 * mdebugread.c: Include "gdb_assert.h".
4523 (shrink_block): Assert that the block being modified is not hashed.
4524 * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
4525 * symmisc.c (free_symtab_block): Walk the hash table when freeing
4526 symbols.
4527 (dump_symtab): Recognize hashed blocks.
4528 * printcmd.c (print_frame_args): Assert that function blocks do not
4529 have hashed symbol tables.
4530 * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
4531 (fill_in_ada_prototype, debug_print_block): Likewise.
4532 (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS. Handle hash tables.
4533
4534 2002-07-11 Corinna Vinschen <vinschen@redhat.com>
4535
4536 * stack.c (print_frame): Use result of frame_address_in_block()
4537 instead of fi->pc when evaluating symbols.
4538 (backtrace_command_1): Ditto.
4539
4540 2002-07-11 Andrew Cagney <cagney@redhat.com>
4541
4542 * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
4543 Make static.
4544
4545 * arm-tdep.c (arm_register_name): Make return type constant.
4546
4547 2002-07-10 Andrew Cagney <ac131313@redhat.com>
4548
4549 * win32-nat.c (has_detach_ability): Convert to strict ISO C
4550 prototype.
4551 * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
4552 * s390-tdep.c (s390_fp_regnum): Ditto.
4553 (s390_read_fp): Ditto.
4554 (s390_pop_frame): Ditto.
4555 (_initialize_s390_tdep): Ditto.
4556 * remote.c (get_remote_state): Ditto.
4557 * procfs.c (mappingflags): Ditto.
4558 * memattr.c (_initialize_mem): Ditto.
4559 * mcore-tdep.c (mcore_pop_frame): Ditto.
4560 * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
4561 * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
4562 * language.c (set_case_str): Ditto.
4563 * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
4564 * frv-tdep.c (new_variant): Ditto.
4565 (frv_stopped_data_address): Ditto.
4566 * dwarf2cfi.c (fde_chunks_need_space): Ditto.
4567 (context_alloc): Ditto.
4568 (frame_state_alloc): Ditto.
4569 (unwind_tmp_obstack_init): Ditto.
4570 (unwind_tmp_obstack_free): Ditto.
4571 (cfi_read_fp): Ditto.
4572 * cris-tdep.c (cris_saved_pc_after_call): Ditto.
4573 (cris_pop_frame): Ditto.
4574 * c-lang.c (scanning_macro_expansion): Ditto.
4575 (finished_macro_expansion): Ditto.
4576 (c_preprocess_and_parse): Ditto.
4577 * gdbarch.sh: Ditto.
4578 * gdbarch.h, gdbarch.c: Regenerate.
4579 * config/mn10200/tm-mn10200.h: Adjust indentation.
4580 * target.c: Adjust indentation.
4581 * symtab.h: Adjust indentation.
4582 * stabsread.h: Adjust indentation.
4583 * remote-es.c: Adjust indentation.
4584 * os9kread.c: Adjust indentation.
4585
4586 2002-07-10 Andrew Cagney <ac131313@redhat.com>
4587
4588 * wince.c (_initialize_wince): Rename _initialize_inftarg.
4589 * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
4590
4591 2002-07-10 Grace Sainsbury <graces@redhat.com>
4592
4593 * NEWS: Mention m68k, mcore multi-arching.
4594 * MAINTAINERS: Change status of m68k, mcore to reflect
4595 multi-arching.
4596
4597 2002-07-10 Daniel Jacobowitz <drow@mvista.com>
4598
4599 * valops.c (find_overload_match): Free oload_syms.
4600
4601 2002-07-09 Joel Brobecker <brobecker@gnat.com>
4602
4603 Define HAVE_SYS_PROC_H if sys/proc.h exists
4604 * configure.in: Add check for sys/proc.h
4605 * config.in: Regenerate.
4606 * configure: Regenerate.
4607
4608 2002-07-09 Grace Sainsbury <graces@redhat.com>
4609
4610 * config/m68k/tm-m68k.h: Remove macros wrapped in
4611 #if !GDB_MULTI_ARCH.
4612
4613 2002-07-08 Andrew Cagney <ac131313@redhat.com>
4614
4615 * config.in, configure: Regenerate.
4616
4617 2002-07-08 Mark Kettenis <kettenis@gnu.org>
4618
4619 * dwarf2cfi.c: Include "gcore.h".
4620 (execute_stack_op): Fix implementation of the
4621 DW_OP_deref and DW_OP_deref_size operators by letting do their
4622 lookup in the target.
4623
4624 2002-07-07 Mark Kettenis <kettenis@gnu.org>
4625
4626 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
4627 * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
4628 tdep->sc_sp_offset.
4629
4630 2002-07-05 Daniel Jacobowitz <drow@mvista.com>
4631
4632 Fix PR gdb/595, gdb/602
4633 * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
4634 Don't call value_cast, just read the vtable pointer; update comments
4635 to match.
4636
4637 2002-07-05 Grace Sainsbury <graces@redhat.com>
4638
4639 * config/mcore/tm-mcore.h: Remove file.
4640 * config/mcore/mcore.mt: Remove definition of TM_FILE
4641 * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
4642
4643 2002-07-05 Mark Kettenis <kettenis@gnu.org>
4644
4645 * i386bsd-tdep.c: Include "gdb_string.h".
4646
4647 2002-07-04 Grace Sainsbury <graces@redhat.com>
4648
4649 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
4650 (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
4651 mcore-tdep.
4652 (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
4653 (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
4654 * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
4655 (RETVAL_REGNUM): Move macros from tm-mcore.h
4656 (mcore_reg_struct_has_addr): New function.
4657 (mcore_gdbarch_init): Added initializations for the macros removed
4658 from tm-mcore.h.
4659
4660 2002-07-04 Mark Kettenis <kettenis@gnu.org>
4661
4662 * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
4663 traditonal string branding within the ELF header.
4664
4665 2002-07-04 Daniel Jacobowitz <drow@mvista.com>
4666
4667 * symtab.c (remove_params): New function.
4668 (make_symbol_overload_list): Use it instead of cplus_demangle.
4669 (overload_list_add_symbol): Likewise. Reorder. Fix memory leak.
4670
4671 2002-07-04 Mark Kettenis <kettenis@gnu.org>
4672
4673 * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
4674
4675 * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
4676 New variables.
4677 (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
4678 and tdep->sigtramp_end.
4679 * i386obsd-nat.c: New file.
4680 * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
4681
4682 * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
4683 Don't call get_current_frame().
4684
4685 2002-07-04 Pierre Muller <muller@ics.u-strasbg.fr>
4686
4687 * i386-nat.c (child_post_startup_inferior): New function
4688 calling i386_cleanup_dregs if
4689 I386_USE_GENERIC_WATCHPOINTS is defined.
4690 * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
4691 conditional to acknowledge that i386-nat.c has its
4692 own child_post_startup_inferior function.
4693
4694 2002-07-04 Mark Kettenis <kettenis@gnu.org>
4695
4696 * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
4697 * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
4698 instead of MAX_REGISTER_RAW_SIZE.
4699 (i386_extract_return_value, i386_extract_struct_value_address):
4700 Convert to use regcache.
4701 (i386_gdbarch_init): Set max_register_raw_size and
4702 max_register_virtual_size to I386_MAX_REGISTER_SIZE.
4703 Set extract_return_value and extract_struct_value_address instead
4704 of their deprecated variants.
4705
4706 Convert i386 target to generic dummy frames.
4707 * i386-tdep.c: Include "symfile.h".
4708 (i386_frameless_signal_p): Consider a function to be frameless if
4709 the pc points at the first instruction of the function.
4710 (i386_frame_chain): Handle (generic) call dummies.
4711 (i386_frame_saved_pc): Likewise.
4712 (i386_frame_init_saved_regs): Remove code dealing with call
4713 dummies on the stack.
4714 (i386_push_dummy_frame): Removed.
4715 (i386_call_dummy_words): Removed.
4716 (i386_fix_call_dummy): Removed.
4717 (i386_push_return_address): New function.
4718 (i386_do_pop_frame): Renamed from i386_pop_frame. Add FRAME
4719 parameter, and don't call get_current_frame.
4720 (i386_pop_frame): New function.
4721 (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
4722 call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
4723 entry_point_address, set call_dummy_breakpoint_offset to 0, set
4724 call_dummy_length to 0, set call_dummy_words to NULL, set
4725 sizeof_call_dummy_words to 0, set fix_call_dummy to
4726 generic_fix_call_dummy, set pc_in_call_dummy to
4727 pc_in_call_dummy_at_entry_point, set push_dummy_frame to
4728 generic_push_dummy_frame, set push_return_address to
4729 i386_push_return_address and set frame_chain_valid to
4730 generic_file_frame_chain_valid.
4731
4732 2002-07-03 Andrew Cagney <ac131313@redhat.com>
4733
4734 * gdbarch.sh (struct regcache): Add opaque declaration.
4735 (EXTRACT_RETURN_VALUE): New architecture method.
4736 (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
4737 * gdbarch.h, gdbarch.c: Regenerate.
4738 * arch-utils.c (legacy_extract_return_value): New function.
4739 * arch-utils.h (legacy_extract_return_value): Declare.
4740 * values.c (value_being_returned): Re-enable code handling
4741 EXTRACT_STRUCT_VALUE_ADDRESS. Move
4742 deprecated_grub_regcache_for_registers call to block handling
4743 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
4744 (EXTRACT_RETURN_VALUE): Do not define.
4745
4746 2002-07-03 Grace Sainsbury <graces@redhat.com>
4747
4748 * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
4749 (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
4750 (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
4751 (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
4752 (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
4753 (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
4754 (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
4755 (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
4756 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
4757 (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
4758 * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
4759 argument so the function fits the prototype in the architecture
4760 vector.
4761 (mcore_pop_frame): Remove argument so the function fits the
4762 prototype. Use get_current_frame instead of the argument.
4763 (mcore_push_arguments): Change type of struct_return so the
4764 function can be used in the architecture vector.
4765 (mcore_store_struct_return): Add.
4766 (mcore_frame_init_saved_regs): Add.
4767 (mcore_gdbarch_init): Add function calls to replace the macros
4768 removed from tm-mcore.h
4769
4770 2002-07-03 Andrew Cagney <ac131313@redhat.com>
4771
4772 * infcmd.c (print_return_value): Remove compatibility code calling
4773 deprecated_grub_regcache_for_registers.
4774
4775 * values.c: Include "regcache.h".
4776 (value_being_returned): Update. Use
4777 deprecated_grub_regcache_for_registers to extract the register
4778 buffer address.
4779 * value.h (value_being_returned): Change ``retbuf'' parameter to a
4780 ``struct regcache''.
4781 * Makefile.in (values.o): Add dependency on $(regcache_h).
4782
4783 * inferior.h (run_stack_dummy): Change type of second parameter to
4784 a ``struct regcache''.
4785 * valops.c (hand_function_call): Change type of retbuf to ``struct
4786 regcache''. Allocate using regcache_xmalloc, clean using
4787 make_cleanup_regcache_xfree.
4788 * infcmd.c (run_stack_dummy): Update. Use
4789 regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
4790
4791 * regcache.c (do_regcache_xfree): New function.
4792 (make_cleanup_regcache_xfree): New function.
4793 * regcache.h (make_cleanup_regcache_xfree): Declare.
4794
4795 2002-07-03 Martin M. Hunt <hunt@redhat.com>
4796
4797 * event-top.c (command_line_handler): Don't read past
4798 beginning of buffer.
4799
4800 2002-07-03 Martin M. Hunt <hunt@redhat.com>
4801
4802 * varobj.c (struct varobj_root): Change frame from CORE_ADDR to
4803 struct frame_id.
4804 (varobj_create): Store frame_id for root.
4805 (varobj_gen_name): Use xasprintf.
4806 (varobj_update): Save and restore frame using get_frame_id() and
4807 frame_find_by_id().
4808 (create_child): Use xasprintf.
4809 (new_root_variable): Initialize frame_id.
4810 (c_name_of_child): Use xasprintf. Call find_frame_by_id().
4811 (c_value_of_variable): Use xasprintf. Move mem_fileopen call
4812 to prevent memory leak.
4813
4814 2002-07-03 Andrew Cagney <ac131313@redhat.com>
4815
4816 * valops.c (hand_function_call): Move declaration of retbuf to
4817 start of function, allocate using malloc, add a cleanup but before
4818 the inf_status cleanup, cleanup the buffer. Rename local variable
4819 old_chain to inf_status_cleanup.
4820
4821 2002-07-03 Martin M. Hunt <hunt@redhat.com>
4822
4823 * top.c (execute_command): Use cmd_func() and cmd_func_p().
4824
4825 * cli/cli-decode.c (cmd_func_p): New function.
4826 (cmd_func): New function.
4827
4828 * command.h: Add cmd_func() and cmd_func_p().
4829
4830 2002-07-03 Grace Sainsbury <graces@redhat.com>
4831
4832 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
4833 (REGISTER_SIZE): Remove.
4834 (MAX_REGISTER_RAW_SIZE): Remove.
4835 (REGISTER_VIRTUAL_TYPE): Remove.
4836 (MAX_REGISTER_VIRTUAL_SIZE): Remove.
4837 (REGISTER_NAME): Remove.
4838 (USE_GENERIC_DUMMY_FRAMES): Remove.
4839 (CALL_DUMMY): Remove.
4840 (CALL_DUMMY_START_OFFSET): Remove.
4841 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
4842 (CALL_DUMMY_LOCATION): Remove.
4843 (FIX_CALL_DUMMY): Remove.
4844 (CALL_DUMMY_ADDRESS): Remove.
4845 (SIZEOF_CALL_DUMMY_WORDS): Remove.
4846 (SAVE_DUMMY_FRAME_TOS): Remove.
4847 * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
4848 (mcore_register_virtual_type): New function.
4849 (mcore_register_byte): New function.
4850 (mcore_register_size): New function.
4851 (mcore_register_name): New function.
4852 (mcore_gdbarch_init): New function. Add set_gdbarch calls for
4853 macros removed from tm-mcore.h.
4854 (mcore_dump_tdep): Add.
4855 (_initialize_mcore_tdep): Add gdbarch_register call.
4856
4857 2002-07-03 Mark Kettenis <kettenis@gnu.org>
4858
4859 * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
4860 frameless_look_for_prologue, such that we actually call this
4861 function.
4862
4863 2002-07-02 Joel Brobecker <brobecker@gnat.com>
4864
4865 * frame.h (frame_address_in_block): New function.
4866
4867 * blockframe.c (frame_address_in_block): New function extracted
4868 from get_frame_block().
4869 (get_frame_block): Use frame_address_in_block().
4870 (block_innermost_frame): Use frame_address_in_block() to match
4871 the frame pc address against the block boundaries rather than
4872 the frame pc directly. This prevents a failure when a frame pc
4873 is actually a return-address pointing immediately after the end
4874 of the given block.
4875
4876 2002-07-02 Grace Sainsbury <graces@redhat.com>
4877
4878 * MAINTAINERS: Add self under write after approval.
4879
4880 2002-07-02 Grace Sainsbury <graces@redhat.com>
4881
4882 * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
4883 used in architecture vector. The default is
4884 m68k_local_breakpoint_from_pc.
4885 (m68k_local_breakpoint_from_pc): Add.
4886 (enum): Add register numbers from tm-m68k.h.
4887 (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
4888 vector.
4889 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
4890 GDB_MULTI_ARCH_PARTIAL.
4891 (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
4892 (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
4893 m68k-tdep.c.
4894 (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
4895 (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
4896 to enum in m68k-tdep.c
4897
4898 2002-07-02 Joel Brobecker <brobecker@gnat.com>
4899
4900 * solib-osf.c (open_map): Compute the list of shared libraries
4901 loaded by the inferior, rather than the list of libraries loaded
4902 by GDB itself. Otherwise, GDB ends up reading the symbols from
4903 the wrong shared libraries...
4904
4905 2002-07-02 Mark Kettenis <kettenis@gnu.org>
4906
4907 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
4908 (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
4909 macros.
4910 (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
4911 Remove functions.
4912 (FRAMELESS_SIGNAL): Remove function.
4913 (i386_linux_frame_chain, i386_linux_frame_saved_pc,
4914 i386_linux_saved_pc_after_call): Removed.
4915 (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
4916 tdep->sc_pc_offset and tdep->sc_sp_offset. Don't override
4917 frame_chain, frame_saved_pc and saved_pc_after_call any longer.
4918
4919 * i386-tdep.c (i386_frameless_signal_p): New function.
4920 (i386_frame_chain): Deal with frameless signals.
4921 (i386_sigtramp_saved_sp): New function.
4922 (i386_frame_saved_pc): Deal with frameless signals.
4923 (i386_saved_pc_after_call): Make sure the correct value is
4924 returned just after entry into a sigtramp.
4925 * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
4926 i386fbsd4_sc_sp_offset): New variables.
4927 (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
4928 these variables to initialize tdep->sc_sp_offset. * i386bsd-nat.c
4929 (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
4930 similiar to what we already did for sc_pc_offset.
4931 * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
4932 tdep->sc_sp_offset.
4933
4934 * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
4935
4936 2002-07-02 Michal Ludvig <mludvig@suse.cz>
4937
4938 * config/i386/tm-x86-64linux.h: New.
4939 * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
4940 definitions.
4941 * config/i386/nm-x86-64.h: Rename to ...
4942 * config/i386/nm-x86-64linux.h: ... this one.
4943 * config/i386/x86-64linux.mh: Reflect the above change.
4944
4945 2002-07-01 Mark Kettenis <kettenis@gnu.org>
4946
4947 * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
4948 with sigcontext_addr. Add sc_sp_offset.
4949 (i386bsd_sigtramp_saved_pc): Remove prototype.
4950 (i386bsd_sicontext_addr): Add prototype.
4951 * i386-tdep.c (i386_sigtramp_saved_pc): New function.
4952 (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
4953 (i386_svr4_sigtramp_saved_pc): Removed.
4954 (i386_svr4_sigcontext_addr): New function.
4955 (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
4956 Initialize tdep->sigcontext_addr instead. Initialize
4957 tdep->sc_pc_offset and tdep->sc_sp_offset.
4958 (i386_gdbarch_init): Likewise.
4959 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
4960 any more.
4961 (i386bsd_sigtramp_saved_pc): Remove function.
4962 (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
4963 Initialize tdep->sigcontext_addr instead. Initialize
4964 tdep->sc_pc_offset.
4965 * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
4966 of tdep->sigtramp_saved_pc.
4967 * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
4968 tdep->sigtramp_saved_pc. Initialize tdep->sigcontext_addr
4969 instead.
4970
4971 * i386-tdep.c (i386_frameless_function_invocation,
4972 i386_frame_num_args, i386_frame_init_saved_regs,
4973 i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
4974 i386_pop_frame, i386_push_arguments, i386_store_struct_return,
4975 i386_extract_return_value, i386_store_return_value,
4976 i386_extract_struct_value_address, i386_register_virtual_type,
4977 i386_register_convertible, i386_register_convert_to_virtual,
4978 i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
4979 i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
4980 static.
4981
4982 2002-07-01 Mark Kettenis <kettenis@gnu.org>
4983
4984 * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
4985
4986 * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
4987 * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
4988 this macro. Include "value.h".
4989
4990 2002-06-30 Aidan Skinner <aidan@velvet.net>
4991
4992 * ada-exp.tab.c: remove as it's a generated file
4993 * ada-lex.c: remove as it's a generated file
4994
4995 2002-06-30 Mark Kettenis <kettenis@gnu.org>
4996
4997 * config/i386/tm-i386.h (struct frame_info, struct
4998 frame_saved_regs, struct value, struct type): Remove forward
4999 declarations.
5000
5001 * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
5002 (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
5003 * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
5004 (FILL_FPXREGSET): Define.
5005
5006 * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
5007
5008 * configure.tgt (i[3456]86-*-openbsd*): Fold into
5009 i[3456]86-*-netbsd* case.
5010 * config/i386/tm-obsd.h: Removed.
5011 * config/i386/obsd.mt: Removed.
5012 * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
5013 core-aout.o.
5014 (MH_CFLAGS): Add -DYYDEBUG=0.
5015
5016 * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
5017 i386nbsd_sc_pc_offset on OpenBSD too.
5018
5019 * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
5020 (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
5021 * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
5022 define.
5023 * i386bsd-tdep.c: Include "arch-utils.h".
5024 (i386bsd_aout_in_solib_call_trampoline): New function.
5025 (i386bsd_init_abi): Set in_solib_call_trampoline to
5026 i386bsd_aout_in_solib_call_trampoline.
5027 (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
5028 in_solib_call_trampoline to generic_in_solib_call_trampoline.
5029
5030 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5031
5032 * macrotab.h: Do not include "obstack.h" or "bcache.h".
5033 (struct obstack, struct bcache): Add opaque declarations.
5034 * Makefile.in (macrotab_h): Update
5035
5036 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5037
5038 * blockframe.c (generic_find_dummy_frame): Change return type to
5039 ``struct regcache''.
5040 (struct dummy_frame): Replace field ``registers'' with regcache, a
5041 struct regcache object.
5042 (generic_find_dummy_frame): Update.
5043 (generic_push_dummy_frame): Update. Use regcache_xfree,
5044 regcache_xmalloc and regcache_cpy.
5045 (generic_pop_dummy_frame): Update. Use regcache_cpy and
5046 regcache_xfree.
5047 (deprecated_generic_find_dummy_frame): Update.
5048 (generic_read_register_dummy): Update. Use
5049 regcache_read_as_address.
5050 (generic_call_dummy_register_unwind): Update. Use regcache_read.
5051 (generic_get_saved_register): Update. Use regcache_read.
5052
5053 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5054
5055 * Makefile.in (objfiles_h): Add $(bcache_h).
5056 * objfiles.h: Include "bcache.h".
5057
5058 * Makefile.in (symtab_h): Remove $(bcache_h).
5059 * symtab.h: Do not include "bcache.h".
5060
5061 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5062
5063 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
5064 generic_func_frame_chain_valid.
5065
5066 2002-06-28 David O'Brien <obrien@FreeBSD.org>
5067
5068 * config/i386/nm-fbsd.h: Include <sys/param.h>.
5069 * config/i386/tm-fbsd.h: Likewise.
5070
5071 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5072
5073 * rs6000-tdep.c (rs6000_gdbarch_init): Use
5074 generic_unwind_get_saved_register.
5075
5076 2002-06-27 Andrew Cagney <ac131313@redhat.com>
5077
5078 From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
5079 * regcache.c (supply_register): Add missing argument to
5080 register_buffer call.
5081
5082 2002-06-27 Andrew Cagney <ac131313@redhat.com>
5083
5084 * Makefile.in (init.c): Drop -e option to grep. Not necessary and
5085 Solaris /bin/grep does not not like it. From Peter Schauer.
5086
5087 2002-06-26 Tom Tromey <tromey@redhat.com>
5088
5089 * command.h (add_setshow_cmd): Declare.
5090 (add_setshow_cmd_full): Declare.
5091 * cli/cli-decode.c (add_setshow_cmd): No longer static. Now
5092 returns void. Use add_setshow_cmd_full.
5093 (add_setshow_cmd_full): New function.
5094 (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
5095 (add_setshow_boolean_cmd): Likewise.
5096
5097 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5098
5099 * config/vax/tm-vax.h: Protect from multiple inclusion.
5100 (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
5101 (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
5102 * config/vax/tm-vaxbsd.h: ...here. New file.
5103 * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
5104
5105 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5106
5107 * config/vax/tm-vax.h (BREAKPOINT): Remove.
5108 (BELIEVE_PCC_PROMOTION): Remove.
5109 (AP_REGNUM): Move to...
5110 * config/vax/nm-vax.h: ...here.
5111 * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
5112 (vax_breakpoint_from_pc): New function.
5113 (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
5114 and gdbarch_believe_pcc_promotion.
5115
5116 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5117
5118 * Makefile.in (vax_tdep_h): Define.
5119 (vax-tdep.o): Use $(vax_tdep_h).
5120 * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
5121 (vax_dump_tdep): New function.
5122 (_initialize_vax_tdep): Register vax_dump_tdep.
5123 * vax-tdep.h: Include osabi.h.
5124 (struct gdbarch_tdep): New.
5125
5126 2002-06-26 Andrew Cagney <cagney@redhat.com>
5127
5128 * frame.h (deprecated_generic_find_dummy_frame): Rename
5129 generic_find_dummy_frame.
5130 * blockframe.c (generic_find_dummy_frame): Make static.
5131 (deprecated_generic_find_dummy_frame): New function.
5132 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
5133 generic_find_dummy_frame with deprecated_find_dummy_frame.
5134 (sh64_nofp_frame_init_saved_regs): Ditto.
5135 (sh_fp_frame_init_saved_regs): Ditto.
5136 * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
5137 (s390_frame_chain): Ditto.
5138 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
5139
5140 2002-06-26 Grace Sainsbury <graces@redhat.com>
5141
5142 * config/m68k/tm-m68k.h: Rearrange code so macros not in the
5143 gdbarch vector are at the top.
5144 (NUM_REGS): Remove.
5145 (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
5146 (FRAME_ARGS_ADDRESS): Remove.
5147 (FRAME_LOCALS_ADDRESS): Remove.
5148 (FRAME_NUM_ARGS): Remove.
5149 (FRAME_ARGS_SKIP): Remove.
5150 * m68k-tdep.c (enum): Add eumeration of special register numbers.
5151 (m68k_gdbarch_init): Add gdbarch initializations for macros
5152 undefined in tm-m68k.h
5153
5154 2002-06-26 Grace Sainsbury <graces@redhat.com>
5155
5156 * monitor.h: Add the function regname to monitor_ops
5157 structure. This way NUM_REGS does not have to be a constant.
5158 * monitor.c (monitor_fetch_register): Added support for regname
5159 function. The function is called if the array regnames is NULL.
5160 (monitor_store_register): Same.
5161 * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
5162 regnames array.
5163 (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
5164 cpu32bug_cmds.regname to point to new function.
5165 * abug-rom.c (abug_regname): Same as above.
5166 (init_abug_cmds): Same.
5167 * dbug-rom.c (dbug_regname): Same as above.
5168 (init_dbug_cmds): Same.
5169 * remote-est.c (est_regname): Same.
5170 (init_est_cmds): Same.
5171 * rom68k-rom.c (rom68k_regname): Same.
5172 (init_rom68k_cmds): Same.
5173
5174 2002-06-25 Tom Tromey <tromey@redhat.com>
5175
5176 * breakpoint.c (delete_command): Don't repeat `delete' commands.
5177
5178 2002-06-25 Andrew Cagney <cagney@redhat.com>
5179
5180 * infrun.c (stop_registers): Change variable's type to ``struct
5181 regcache'''.
5182 (xmalloc_inferior_status): Delete function.
5183 (free_inferior_status): Delete function.
5184 (normal_stop): Use regcache_cpy.
5185 (struct inferior_status): Change type of fields ``stop_registers''
5186 and ``registers'' to ``struct regcache''.
5187 (write_inferior_status_register): Use regcache_write.
5188 (save_inferior_status): Instead of calling
5189 xmalloc_inferior_status, allocate the inf_status buffer directly.
5190 Use regcache_dup_no_passthrough and regcache_dup to save the
5191 buffers.
5192 (restore_inferior_status): Use regcache_xfree and regcache_cpy.
5193 Replace the stop_registers regcache instead of overriding it. Use
5194 regcache_xfree. Instead of calling free_inferior_status, xfree
5195 the buffer directly.
5196 (discard_inferior_status): Use regcache_xfree. Instead of calling
5197 free_inferior_status, xfree the buffer directly.
5198 (build_infrun): Use regcache_xmalloc.
5199 (_initialize_infrun): Delete redundant call to build_infrun.
5200
5201 * Makefile.in (infcmd.o): Add $(regcache_h).
5202
5203 * infcmd.c: Include "regcache.h".
5204 (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
5205 obtain the address of `stop_registers' register buffer.
5206 (print_return_value): Ditto.
5207
5208 * inferior.h (struct regcache): Add opaque declaration.
5209 (stop_registers): Change variable's declared type to ``struct
5210 regcache''.
5211
5212 2002-06-24 Tom Tromey <tromey@redhat.com>
5213
5214 * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
5215 * target.c (initialize_targets): Fixed typo in
5216 trust-readonly-sections `show' documentation.
5217
5218 * main.c: Marked all strings with _().
5219
5220 2002-06-24 Don Howard <dhoward@redhat.com>
5221
5222 * memattr.c (create_mem_region): Treat hi == 0 as a special case
5223 that means max CORE_ADDR+1.
5224 (lookup_mem_region): Ditto.
5225 (mem_info_command): Ditto.
5226
5227 2002-06-24 Grace Sainsbury <graces@redhat.com>
5228
5229 * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
5230 (REGISTER_BYTES_OK): Remove.
5231 (REGISTER_BYTES): Remove.
5232 (STORE_STRUCT_RETURN): Remove.
5233 (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
5234 (STORE_RETURN_VALUE): Remove.
5235 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
5236 (FRAME_CHAIN): Remove.
5237 (FRAMELESS_FUNCTION_INVOCATION): Remove.
5238 (FRAME_SAVED_PC): Remove.
5239 * m68k-tdep.c (m68k_register_bytes_ok):Add.
5240 (m68k_store_struct_return): Add.
5241 (m68k_deprecated_extract_return_value): Add.
5242 (m68k_deprecated_extract_struct_value_address): Add.
5243 (m68k_store_return_value): Add.
5244 (m68k_frame_chain): Add.
5245 (m68k_frameless_function_invocation): Add.
5246 (m68k_frame_saved_pc): Add.
5247 (m68k_gdbarch_init): added set_gdbarch calls for new
5248 functions and deleted macros.
5249
5250 2002-06-23 Tom Tromey <tromey@redhat.com>
5251
5252 * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
5253 (ALLDEPFILES): Likewise.
5254 (udiheaders): Removed.
5255 (udip2soc.o): Likewise.
5256 (udi2go32.o): Likewise.
5257 (udr.o): Likewise.
5258 (HFILES_WITH_SRCDIR): Don't mention udiheaders.
5259
5260 2002-06-22 Andrew Cagney <ac131313@redhat.com>
5261
5262 * infrun.c (_initialize_infrun): Delete unnecessary call to
5263 build_infrun.
5264
5265 * regcache.h: Update comments describing the regcache_cpy family
5266 of functions.
5267 (regcache_save, regcache_restore): Delete declaration.
5268 (regcache_save_no_passthrough): Delete declaration.
5269 (regcache_restore_no_passthrough): Delete declaration.
5270 * regcache.c (regcache_save): Delete function.
5271 (regcache_save_no_passthrough): Delete function.
5272 (regcache_restore): Delete function.
5273 (regcache_restore_no_passthrough): Delete function.
5274
5275 2002-06-21 Andrew Cagney <ac131313@redhat.com>
5276
5277 * config/m68k/tm-m68k.h: Fix typo.
5278 (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
5279 (m68k_frame_init_saved_regs): Declare.
5280
5281 2002-06-21 Jim Blandy <jimb@redhat.com>
5282
5283 Remove some vestiges of Harris 88k support.
5284 * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
5285 register numbering quirk.
5286 * elfread.c (elf_symtab_read): Remove `#if' block for skipping
5287 odd symbols occurring in Harris 88k ELF targets.
5288
5289 2002-06-21 Tom Tromey <tromey@redhat.com>
5290
5291 * gdb_locale.h: New file.
5292 * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
5293 (defs_h): Added gdb_locale.h.
5294 * configure, config.in: Rebuilt.
5295 * configure.in (PACKAGE): Define.
5296 * defs.h: Include gdb_locale.h.
5297 * main.c (captured_main): Call setlocale, bindtextdomain,
5298 textdomain.
5299
5300 2002-06-21 Dave Brolley <brolley@redhat.com>
5301
5302 From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
5303 * config/frv/frv.mt: New file.
5304 * config/frv/tm-frv.h: New file.
5305 * configure.tgt: Support frv-*-*.
5306 * Makefile.in (frv-tdep.o): New target.
5307 * frv-tdep.c: New file.
5308 * NEWS: Mention frv.
5309
5310 2002-06-21 Dave Brolley <brolley@redhat.com>
5311
5312 * MAINTAINERS: Add self to "Write After Approval" list.
5313
5314 2002-06-21 Grace Sainsbury <graces@redhat.com>
5315
5316 * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
5317 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
5318 (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
5319 (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
5320 (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
5321
5322 * m68k-tdep.c: Include arch-utils.h
5323 (m68k_register_raw_size): Add.
5324 (m68k_register_virtual_size): Add.
5325 (m68k_register_virtual_type): Add.
5326 (m68k_register_name): Add.
5327 (m68k_stack_align): Add.
5328 (m68k_register_byte): Add.
5329 (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
5330 tm-m68k.h.
5331
5332 2002-06-21 Grace Sainsbury <graces@redhat.com>
5333
5334 * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
5335 m68k_find_saved_regs.
5336 (m68k_pop_frame): Removed saved_regs structure, and replaced
5337 references to it with frame->saved_regs.
5338 (m68k_gdbarch_init): Added function calls to initialize the
5339 gdbarch structure.
5340 (m68k_fix_call_dummy): Add.
5341 * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
5342 (CALL_DUMMY): Remove.
5343 (CALL_DUMMY_LENGTH): Remove.
5344 (CALL_DUMMY_START_OFFSET): Remove.
5345 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
5346 (FIX_CALL_DUMMY): Remove.
5347 (PUSH_DUMMY_FRAME): Remove.
5348 (POP_FRAME): Remove.
5349
5350 2002-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
5351
5352 * parse.c (parse_fprintf): New function used to avoid calls to
5353 fprintf in bison parser generated debug code.
5354 * parser-defs.h: Declaration of new parse_fprintf function.
5355 * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
5356 Set YYDEBUG to 1 by default.
5357 Set YYFPRINTF as parse_fprintf.
5358
5359 2002-06-21 Michal Ludvig <mludvig@suse.cz>
5360
5361 * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer
5362 encoding anymore.
5363 (pointer_encoding, enum ptr_encoding): New.
5364 (execute_cfa_program): Take care about pointer encoding.
5365 (dwarf2_build_frame_info): Only call parse_frame_info for
5366 .debug_frame and .eh_frame.
5367 (parse_frame_info): New, derived from former dwarf2_build_frame_info.
5368 fixed augmentation handling, added relative addressing,
5369 ignore duplicate FDEs. Added comments.
5370 * dwarf2cfi.c: Reindented.
5371
5372 2002-06-20 Elena Zannoni <ezannoni@redhat.com>
5373
5374 * event-top.c (command_handler): Don't use space_at_cmd_start
5375 unless there is sbrk() on the host. Assign time and space data
5376 to union fields of the appropriate length.
5377
5378 2002-06-20 Michal Ludvig <mludvig@suse.cz>
5379
5380 * x86-64-tdep.c (x86_64_register_nr2name): Rename to
5381 x86_64_register_name. Return type changed to 'const char *'.
5382 (x86_64_register_name2nr): Rename to x86_64_register_number.
5383 (x86_64_gdbarch_init): Update to reflect the change.
5384 * x86-64-tdep.h: Ditto.
5385 * x86-64-linux-nat.c (x86_64_fxsave_offset)
5386 (supply_fpregset): Ditto.
5387
5388 2002-06-19 Andrew Cagney <cagney@redhat.com>
5389
5390 * regcache.h: Update copyright.
5391 (struct regcache, struct gdbarch): Add opaque declarations.
5392 (current_regcache): Declare global variable.
5393 (regcache_read, regcache_write): Add gdbarch parameter.
5394 (regcache_save, regcache_save_no_passthrough)
5395 (regcache_restore, regcache_restore_no_passthrough)
5396 (regcache_dup, regcache_dup_no_passthrough)
5397 (regcache_cpy, regcache_cpy_no_passthrough)
5398 (deprecated_grub_regcache_for_registers)
5399 (deprecated_grub_regcache_for_register_valid)
5400 (regcache_valid_p): Add function declarations.
5401
5402 * regcache.c: Update copyright.
5403 (regcache_descr_handle): New global variable.
5404 (struct regcache_descr): Define.
5405 (init_legacy_regcache_descr, init_regcache_descr): New functions.
5406 (regcache_descr, xfree_regcache_descr): New functions.
5407 (struct regcache): Define.
5408 (regcache_xmalloc, regcache_xfree): New functions.
5409 (regcache_cpy, regcache_cpy_no_passthrough): New functions.
5410 (regcache_dup, regcache_dup_no_passthrough): New functions.
5411 (regcache_valid_p, regcache_read_as_address): New functions.
5412 (deprecated_grub_regcache_for_registers): New function.
5413 (deprecated_grub_regcache_for_register_valid): New function.
5414 (current_regcache): New global variable.
5415 (register_buffer): Add regcache parameter. Update calls.
5416 (regcache_read, regcache_write): Add regcache parameter. Rewrite.
5417 (read_register_gen, write_register_gen): Update register_buffer
5418 call. Test for legacy_p instead of gdbarch_register_read_p or
5419 gdbarch_register_write_p.
5420 (regcache_collect): Update register_buffer call.
5421 (build_regcache): Rewrite. Use deprecated grub functions.
5422 (regcache_save, regcache_save_no_passthrough): New functions.
5423 (regcache_restore, regcache_restore_no_passthrough): New
5424 functions.
5425 (_initialize_regcache): Create the regcache_data_handle. Swap
5426 current_regcache global variable.
5427
5428 * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
5429 parameter to regcache_read and regcache_write calls.
5430 (sh4_register_read): Ditto.
5431 (sh64_pseudo_register_read): Ditto.
5432 (sh64_register_read): Ditto.
5433 (sh_pseudo_register_write): Ditto.
5434 (sh4_register_write): Ditto.
5435 (sh64_pseudo_register_write): Ditto.
5436 (sh64_register_write): Ditto.
5437
5438 * defs.h (XCALLOC): Define.
5439
5440 2002-06-19 Grace Sainsbury <graces@redhat.com>
5441
5442 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
5443 * m68k-tdep.c (m68k_gdbarch_init): Added.
5444 (m68k_dump_tdep): Added.
5445
5446 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
5447
5448 * ada-lang.c (fill_in_ada_prototype): Update comment.
5449
5450 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
5451
5452 * mips-tdep.c (enum mips_abi): Explicitly start at 0. Add
5453 MIPS_ABI_LAST.
5454 (mips_abi_string, mips_abi_strings): New.
5455 (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
5456 (mips_gdbarch_init): Set tdep->found_abi. Don't set
5457 tdep->mips_abi_string. Honor mips_abi_string. Default to
5458 O32 if no ABI is found.
5459 (mips_dump_tdep): Use mips_abi_strings.
5460 (mips_abi_update): New function.
5461 (_initialize_mips_tdep): Initialize mips_abi_string. Add
5462 ``set mips abi'' and ``show mips abi''. Check the size of
5463 mips_abi_strings.
5464
5465 2002-06-19 Andrew Cagney <cagney@redhat.com>
5466
5467 * i386-linux-tdep.c (i386_linux_register_name): Make return type
5468 constant.
5469
5470 2002-06-18 Joel Brobecker <brobecker@gnat.com>
5471
5472 * alpha-tdep.c (heuristic_proc_desc): Compute the size of the
5473 current frame using only the first stack size adjustment. All
5474 subsequent size adjustments are not considered to be part of
5475 the "static" part of the current frame.
5476 Compute the address of the saved registers relative to the
5477 Frame Pointer ($fp) instead of the Stack Pointer if $fp is
5478 in use in this frame.
5479
5480 2002-06-18 Don Howard <dhoward@redhat.com>
5481
5482 * valops.c (value_ind): Use value_at_lazy() when dereferencing
5483 type int expressions. Thanks to Jim Blandy <jimb@redhat.com> for
5484 suggesting this solution.
5485
5486 2002-06-18 Andrew Cagney <ac131313@redhat.com>
5487
5488 * config/romp/xm-rtbsd.h: Delete file.
5489 * config/romp/rtbsd.mh: Delete file.
5490
5491 2002-06-18 Keith Seitz <keiths@redhat.com>
5492
5493 * breakpoint.c (condition_command): Post breakpoint_modify
5494 when a condition is added to an existing breakpoint.
5495 (commands_command): Likewise for commands.
5496 (set_ignore_count): Likewise for ignore counts.
5497 If no tty, do not simply return, still need to send event
5498 notification.
5499 (ignore_command): Only print a newline if the command came
5500 from a tty.
5501 Don't call breakpoints_changed, since this is now properly
5502 handled by set_ignore_count.
5503
5504 2002-06-18 Andrew Cagney <cagney@redhat.com>
5505
5506 * MAINTAINERS: Note that cris-elf target can be compiled with
5507 -Werror.
5508 * cris-tdep.c (cris_register_name): Make return type constant.
5509 (cris_breakpoint_from_pc): Ditto.
5510
5511 2002-06-18 Michal Ludvig <mludvig@suse.cz>
5512
5513 * frame.h (struct frame_info): Change type of context to
5514 'struct context'.
5515
5516 2002-06-17 Andrew Cagney <cagney@redhat.com>
5517
5518 * gdbarch.sh (REGISTER_NAME): Change return type a constant string
5519 pointer.
5520 * gdbarch.h, gdbarch.c: Regenerate.
5521 * config/mips/tm-mips.h (mips_register_name): Update.
5522 * i386-tdep.h (i386_register_name): Update.
5523 * mips-tdep.c (mips_register_name): Update
5524 * alpha-tdep.c (alpha_register_name): Update.
5525 * arch-utils.c (legacy_register_name): Update.
5526 * arch-utils.h (legacy_register_name): Update.
5527 * avr-tdep.c (avr_register_name): Update.
5528 * ia64-tdep.c (ia64_register_name): Update.
5529 * i386-tdep.c (i386_register_name): Update.
5530 * sparc-tdep.c (sparc32_register_name): Update.
5531 (sparc64_register_name): Update.
5532 (sparclite_register_name): Update.
5533 (sparclet_register_name): Update.
5534 * sh-tdep.c (sh_generic_register_name): Update.
5535 (sh_sh_register_name): Update.
5536 (sh_sh3_register_name): Update.
5537 (sh_sh3e_register_name): Update.
5538 (sh_sh_dsp_register_name): Update.
5539 (sh_sh3_dsp_register_name): Update.
5540 (sh_sh4_register_name): Update.
5541 (sh_sh64_register_name): Update.
5542 * s390-tdep.c (s390_register_name): Update.
5543 * rs6000-tdep.c (rs6000_register_name): Update.
5544 * ns32k-tdep.c (ns32k_register_name_32082): Update.
5545 (ns32k_register_name_32382): Update.
5546 * d10v-tdep.c (d10v_ts2_register_name): Update.
5547 (d10v_ts3_register_name): Update.
5548 * xstormy16-tdep.c (xstormy16_register_name): Update.
5549 * vax-tdep.c (vax_register_name): Update.
5550 * v850-tdep.c (v850_register_name): Update.
5551 * m68hc11-tdep.c (m68hc11_register_name): Update.
5552 * mn10300-tdep.c (mn10300_generic_register_name): Update.
5553 (am33_register_name): Update.
5554
5555 2002-06-17 Grace Sainsbury <graces@redhat.com>
5556
5557 * m68k-tdep.c: Reindented.
5558
5559 2002-06-17 Andrew Cagney <ac131313@redhat.com>
5560
5561 * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
5562 list of predefined types.
5563
5564 2002-06-16 Mark Kettenis <kettenis@gnu.org>
5565
5566 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
5567 REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
5568 REGISTER_CONVERT_TO_RAW): Remove defines.
5569 (i386_register_virtual_type, i386_register_convertible,
5570 i386_register_convert_to_virtual, i386_register_convert_to_raw):
5571 Remove prototypes.
5572 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
5573 macros mentioned above.
5574
5575 * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
5576 (i386lynx_saved_pc_after_call): Remove prototype.
5577 * i386ly-tdep.c: Include "i386-tdep.h".
5578 (i386lynx_saved_pc_after_call): Make static. Use
5579 read_memory_nobpt instead of read_memory. Use
5580 read_memory_unsigned_integer instead of read_memory_integer.
5581 (i386lynx_init_abi): New function.
5582 (i386lynx_coff_osabi_sniffer): New function.
5583 (_initialize_i386bsd_tdep): New function.
5584
5585 * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
5586 CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
5587 CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
5588 (i386_fix_call_dummy): Remove prototype.
5589 * i386-tdep.c (i386_call_dummy_words): New variable.
5590 (i386_gdbarch_init): Adjust for removal of the
5591 macros mentioned above.
5592
5593 2002-06-15 Andrew Cagney <ac131313@redhat.com>
5594
5595 * command.h (add_setshow_auto_boolean_cmd): Replace
5596 add_set_auto_boolean_cmd.
5597 * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
5598 add_set_auto_boolean_cmd.
5599 * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
5600 * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
5601 mask-address'' command.
5602 (show_mask_address): Add cmd parameter.
5603 * remote.c (add_packet_config_cmd): Update. Change type of
5604 set_func and show_func to cmd_sfunc_ftype.
5605 (_initialize_remote): Update `set remote Z-packet'
5606 (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
5607 (show_remote_protocol_e_packet_cmd): Ditto.
5608 (show_remote_protocol_E_packet_cmd): Ditto.
5609 (show_remote_protocol_P_packet_cmd): Ditto.
5610 (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
5611 (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
5612 (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
5613 (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
5614 (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
5615 (show_remote_protocol_Z_packet_cmd): Ditto.
5616 (show_remote_protocol_binary_download_cmd): Ditto.
5617 (show_remote_cmd): Pass NULL to all of above.
5618
5619 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5620
5621 * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
5622 DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
5623 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
5624 POP_FRAME): Remove defines.
5625 (i386_push_arguments, i386_store_struct_return,
5626 i386_extract_return_value, i386_store_return_value,
5627 i386_extract_struct_value_address, i386_push_dummy_frame,
5628 i386_pop_frame): Renove prototypes.
5629 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
5630 macros mentioned above.
5631
5632 2002-06-15 Andrew Cagney <ac131313@redhat.com>
5633
5634 * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
5635 add_set_boolean_cmd.
5636 (add_setshow_cmd): New function.
5637 * command.h (add_setshow_boolean_cmd): Replace
5638 add_set_boolean_cmd.
5639 * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
5640 and ``set rdiromatzero''.
5641 * maint.c (_initialize_maint_cmds): Update commented out code.
5642 * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
5643 * target.c (initialize_targets): Update `set
5644 trust-readonly-sections'.
5645 * remote.c (_initialize_remote): Update `set remotebreak'.
5646
5647 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5648
5649 * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
5650 BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
5651 * i386-tdep.c (i386_skip_prologue): Adjust function signature to
5652 fit into multi-arch framework.
5653 (i386_breakpoint_from_pc): New function.
5654 (i386_gdbarch_init): Adjust for removal of the macros mentioned
5655 above.
5656
5657 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
5658 FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
5659 FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
5660 (i386_frameless_function_invocation, i386_frame_num_args,
5661 i386_frame_init_saved_regs): Remove prototypes.
5662 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
5663 macros mentioned above.
5664
5665 2002-06-15 Andrew Cagney <ac131313@redhat.com>
5666
5667 * cli/cli-decode.c (set_cmd_cfunc): Update.
5668 (set_cmd_sfunc): Update.
5669 * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
5670 (set_cmd_sfunc, set_cmd_cfunc): Update.
5671 * cli/cli-decode.h: Update.
5672
5673 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5674
5675 * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
5676 (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
5677
5678 2002-06-15 Andrew Cagney <ac131313@redhat.com>
5679
5680 * defs.h (auto_boolean): Declare enum.
5681 * command.h (cmd_auto_boolean): Delete enum.
5682 * mips-tdep.c (mask_address_var): Update.
5683 (mips_mask_address_p): Update.
5684 (show_mask_address): Update.
5685 * remote.c (struct packet_config): Update.
5686 (update_packet_config): Update.
5687 (show_packet_config_cmd): Update.
5688 (packet_ok): Update.
5689 (add_packet_config_cmd): Update.
5690 (_initialize_remote):
5691 * command.h: Update.
5692 * cli/cli-setshow.c (parse_auto_binary_operation): Update.
5693 (do_setshow_command): Update.
5694 * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
5695 * cli/cli-decode.h: Update.
5696
5697 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5698
5699 * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
5700 config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
5701 config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
5702 config/i386/tm-linux.h, config/i386/tm-nbsd.h,
5703 config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
5704 * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
5705
5706 * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
5707 list of DJGPP COFF targets.
5708
5709 * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
5710 (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
5711 (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
5712 (FP0_REGNUM): Remove define.
5713 (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
5714 MAX_REGISTER_VIRTUAL_SIZE): Remove define.
5715 (i386_register_virtual_size): Remove protoype.
5716 * i386-tdep.c (i386_register_virtual_size): Removed.
5717 (i386_extract_return_value, i386_store_return_value): Use
5718 FP0_REGNUM instead of NUM_FREGS to determine whether the
5719 floating-point registers are available.
5720 (i386_gdbarch_init): Tweak FIXME about FPU registers.
5721 Adjust for removal of macros mentioned above.
5722
5723 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5724
5725 * i386v4-nat.c: Include "i386-tdep.h". Reformat and tweak various
5726 comments.
5727 (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
5728 Remove prototypes.
5729 (supply_gregset, fill_gregset): Remove use of register keyword and
5730 remove declaration for regmap. Use I386_NUM_GREGS instead of
5731 NUM_REGS and NUM_FREGS.
5732 (FPREGSET_FSAVE_OFFSET): Remove.
5733 (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
5734 NUM_FREGS to determine whether the floating-point registers are
5735 available.
5736
5737 * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
5738 gnu_store_registers): Replace usage of NUM_GREGS with
5739 I386_NUM_GREGS.
5740
5741 * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
5742 OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
5743 usage of NUM_GREGS with I386_NUM_GREGS.
5744
5745 * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
5746
5747 * i386bsd-nat.c: Include "i386-tdep.h".
5748 (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
5749 I386_NUM_GREGS.
5750
5751 * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
5752 and associated comment. They no longer make any sense, since we
5753 don't use this file anymore on Linux.
5754
5755 * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
5756 * i386-tdep.c (i386_register_offset, i386_register_size): Use
5757 I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
5758 elements in these arrays.
5759 (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
5760 MAX_NUM_REGS.
5761
5762 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5763
5764 * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
5765 * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
5766
5767 2002-06-14 Andrew Cagney <cagney@redhat.com>
5768
5769 * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
5770 EXTRACT_RETURN_VALUE.
5771 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
5772 EXTRACT_STRUCT_VALUE_ADDRESS.
5773 * gdbarch.h, gdbarch.c: Regenerate.
5774
5775 * values.c (value_being_returned): Handle
5776 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
5777 (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
5778
5779 * arm-linux-tdep.c (arm_linux_init_abi): Update.
5780 * arm-tdep.c (arm_gdbarch_init): Update.
5781 * avr-tdep.c (avr_gdbarch_init): Update.
5782 * cris-tdep.c (cris_gdbarch_init): Update.
5783 * d10v-tdep.c (d10v_gdbarch_init): Update.
5784 * ia64-tdep.c (ia64_gdbarch_init): Update.
5785 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
5786 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
5787 * s390-tdep.c (s390_gdbarch_init): Update.
5788 * sh-tdep.c (sh_gdbarch_init): Update.
5789 * s390-tdep.c (s390_gdbarch_init): Update.
5790 * sparc-tdep.c (sparc_gdbarch_init): Update.
5791 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
5792 * v850-tdep.c (v850_gdbarch_init): Update.
5793 * vax-tdep.c (vax_gdbarch_init): Update.
5794 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
5795 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
5796
5797 * config/arc/tm-arc.h: Update.
5798 * config/d30v/tm-d30v.h: Update.
5799 * config/fr30/tm-fr30.h: Update.
5800 * config/h8300/tm-h8300.h: Update.
5801 * config/h8500/tm-h8500.h: Update.
5802 * config/i386/tm-i386.h: Update.
5803 * config/i386/tm-ptx.h: Update.
5804 * config/i386/tm-symmetry.h: Update.
5805 * config/i960/tm-i960.h: Update.
5806 * config/m32r/tm-m32r.h: Update.
5807 * config/m68k/tm-delta68.h: Update.
5808 * config/m68k/tm-linux.h: Update.
5809 * config/m68k/tm-m68k.h: Update.
5810 * config/m88k/tm-m88k.h: Update.
5811 * config/mcore/tm-mcore.h: Update.
5812 * config/mips/tm-mips.h: Update.
5813 * config/mn10200/tm-mn10200.h: Update.
5814 * config/pa/tm-hppa.h: Update.
5815 * config/pa/tm-hppa64.h: Update.
5816 * config/sparc/tm-sp64.h: Update.
5817 * config/sparc/tm-sparc.h: Update.
5818 * config/sparc/tm-sparclet.h: Update.
5819 * config/z8k/tm-z8k.h: Update.
5820
5821 2002-06-14 Andrew Cagney <cagney@redhat.com>
5822
5823 * Makefile.in (i386_linux_tdep_h): Define.
5824 (i386_tdep_h, i387_tdep_h): Define.
5825 (i386-linux-nat.o): Add $(i386_linux_tdep_h),
5826 $(i386_tdep_h) and $(i387_tdep_h).
5827 * i386-linux-nat.c: Include "i386-linux-tdep.h".
5828
5829 2002-06-14 Mark Kettenis <kettenis@gnu.org>
5830
5831 * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
5832 Already covered by the default.
5833
5834 * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
5835 TARGET_LONG_DOUBLE_BIT): Remove. * i386-tdep.c
5836 (i386_gdbarch_init): Initialize long_double_format and long_double
5837 bit.
5838
5839 * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
5840 i386bsd-tdep.o. Remove solib.o, solib-svr4.o and solib-legacy.o.
5841 Move these to ...
5842 * config/i386/i386sol2.mh: ... here.
5843 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
5844 (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
5845 (SIGCONTEXT_PC_OFFSET): Remove define.
5846 (IN_SIGTRAMP): Remove define.
5847 * i386-sol2-tdep.c: New file.
5848
5849 * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
5850 * config/i386/tm-i386nw.h: Removed.
5851
5852 * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
5853 USE_STRUCT_CONVENTION): Remove defines.
5854 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5855 (get_longjmp_target): Remove prototype.
5856 (IN_SIGTRAMP): Remove define.
5857 (i386bsd_in_sigtramp): Remove prototype.
5858 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
5859 function. Update comment accordingly
5860 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
5861 (FRAME_SAVED_PC): Remove define.
5862 (i386bsd_frame_saved_pc): Remove prototype.
5863 * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
5864 GET_LONGJMP_TARGET): Remove defines.
5865 (get_longjmp_target): Remove prototype.
5866 (IN_SIGTRAMP): Remove define.
5867 (i386bsd_in_sigtramp): Remove prototype.
5868 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
5869 function. Update comment accordingly
5870 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
5871 (FRAME_SAVED_PC): Remove define.
5872 (i386bsd_frame_saved_pc): Remove prototype.
5873 * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
5874 Remove prototype.
5875 (USE_STRUCT_CONVENTION): Remove prototype.
5876 * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
5877 declaration.
5878 (_initialize_i386bsd_nat): Revise logic to determine some
5879 constants at compile time when compiling a native GDB. Warn if
5880 things don't match up with what we expect.
5881 * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
5882 Remove variables.
5883 (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp. Rewrite
5884 to use date stored in `struct gdbarch_tdep'.
5885 (i386bsd_sigcontext_offset): Remove varaible.
5886 (i386bsd_sigtramp_saved_pc): Make public. Rewrite to use data
5887 stored in `struct gdbarch_tdep'.
5888 (i386bsd_frame_saved_pc): Make static.
5889 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
5890 (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
5891 i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
5892 i386fbsd4_sc_pc_offset): New variables.
5893 (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
5894 i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
5895 functions.
5896 (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
5897 functions.
5898 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
5899 Modify the value of i386fbsd_sigtramp_start and
5900 i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
5901 i386fbsd_sigtramp_end.
5902 * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
5903 function.
5904
5905 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
5906 define to i386-linux-tdep.h.
5907 (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
5908 REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
5909 defines.
5910 (i386_linux_register_name, i386_linux_register_byte,
5911 i386_linux_register_raw_size): Remove prototypes.
5912 (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
5913 (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
5914 (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
5915 TARGET_WRITE_PC): Remove defines.
5916 (i386_linux_in_sigtramp, i386_linux_frame_chain,
5917 i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
5918 i386_linux_write_pc): Remove prototypes.
5919 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5920 (get_longjmp_target): Remove prototype.
5921 * i386-linux-tdep.h: New file.
5922 * i386-linux-nat.c: Include "i386-linux-tdep.h".
5923 * i386-linux-tdep.c: Include "i386-tdep.h" and
5924 "i386-linux-tdep.h".
5925 (i386_linux_register_name, i386_linux_register_byte,
5926 i386_linux_register_raw_size, i386_linux_in_sigtramp,
5927 i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
5928 Make static.
5929 (i386_linux_init_abi): New function.
5930 (_initialize_i386_linux_tdep): New function.
5931
5932 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
5933 (i386_saved_pc_after_call): Remove prototype.
5934 (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
5935 (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
5936 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
5937 (i386_register_name, i386_stab_reg_to_regnum,
5938 i386_dwarf_reg_to_regnum): Remove prototypes.
5939 (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
5940 SIZEOF_SSE_REGS): Remove defines.
5941 (REGISTER_BYTES): Remove define.
5942 (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
5943 (i386_register_byte, i386_register_raw_size): Remove prototypes.
5944 (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
5945 (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
5946 * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
5947 (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
5948 JB_EDX, GET_LONGJMP_TARGET): Remove defines.
5949 (get_longjmp_target): Remove prototype.
5950 (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
5951 (sigtramp_saved_pc): Remove define.
5952 (i386v4_sigtramp_saved_pc): Remove prototype.
5953 * config/i386/tm-go32.h (FRAME_CHAIN,
5954 FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
5955 (i386go32_frame_saved_pc): Remove prototype.
5956 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5957 (get_longjmp_target): Remove prototype.
5958 * i386-tdep.h: Include "osabi.h".
5959 (enum i386_abi): Removed.
5960 (enum struct_return): New enum.
5961 (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
5962 struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
5963 sc_pc_offset members.
5964 (i386_gdbarch_register_os_abi): Remove prototype.
5965 (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
5966 I386_SSE_NUM_REGS): New defines.
5967 (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
5968 I386_SSE_SIZEOF_REGS): New defines.
5969 (i386_register_name, i386_register_byte, i386_register_raw_size):
5970 New prototypes.
5971 (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
5972 (i386bsd_sigtramp_saved_pc): New prototype.
5973 * i386-tdep.c: Don't include "elf-bfd.h".
5974 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
5975 i386_frame_chain, i386_saved_pc_after_call): Make static.
5976 (i386_frame_saved_pc): Rewrite to call architecture dependent
5977 function to deal with signal handlers. Make static.
5978 (i386go32_frame_saved_pc): Removed.
5979 [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
5980 Removed.
5981 (i386_get_longjmp_target): New function.
5982 (default_struct_convention, pcc_struct_convention,
5983 reg_struct_convention, valid_conventions, struct_convention): New
5984 variables.
5985 (i386_use_struct_convention): New function.
5986 (i386v4_sigtramp_saved_pc): Renamed to
5987 i386_svr4_sigtramp_saved_pc. Made static. Moved.
5988 (i386_pc_in_sigtramp): New function.
5989 (i386_abi_names): Removed.
5990 (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
5991 ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
5992 Removed.
5993 (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
5994 i386_gdbarch_register_os_abi): Removed.
5995 (struct i386_abi_handler): Removed.
5996 (i386_abi_handler_list): Removed.
5997 (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
5998 functions.
5999 (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
6000 i386_nw_init_abi): New functions.
6001 (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
6002 Use set_gdbarch_xxx() calls instead of relying on macros for a
6003 number of calls.
6004 (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
6005 (_initialize_i386_tdep): Add new 'struct-convcention' command.
6006 Register the various architecture variants defined in this file.
6007
6008 2002-06-14 Daniel Jacobowitz <drow@mvista.com>
6009
6010 * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
6011 (struct main_type): Remove arg_types member. Update comments for
6012 struct field.
6013 (TYPE_ARG_TYPES): Remove.
6014 (TYPE_FN_FIELD_ARGS): Update.
6015 (smash_to_method_type): Update prototype.
6016
6017 * c-typeprint.c (cp_type_print_method_args): Take method type
6018 instead of argument list. Use new argument layout. Simplify.
6019 (c_type_print_args): Use new argument layout. Simplify.
6020 (c_type_print_base): Update call to cp_type_print_method_args.
6021 * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
6022 argument; use die->type instead. Update call to
6023 smash_to_method_type.
6024 (read_structure_scope): Update call to dwarf2_add_member_fn.
6025 * gdbtypes.c (allocate_stub_method): Update comment.
6026 (smash_to_method_type): Take new NARGS and VARARGS arguments.
6027 Use new argument layout.
6028 (check_stub_method): Use new argument layout. Don't count
6029 void as an argument.
6030 (print_arg_types): Update comments. Use new argument layout.
6031 (recursive_dump_type): Don't print arg_types member.
6032 * hpread.c (hpread_read_struct_type): Use new argument layout.
6033 (fixup_class_method_type): Likewise.
6034 (hpread_type_lookup): Likewise.
6035 * stabsread.c (read_type): Update calls to read_args and
6036 smash_to_method_type.
6037 (read_args): Use new argument layout. Simplify.
6038 * valops.c (typecmp): Use new argument layout. Update parameters
6039 and comments. Simplify.
6040 (hand_function_call): Use new argument layout.
6041 (search_struct_method): Update call to typecmp.
6042 (find_overload_match): Use new argument layout.
6043
6044 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
6045
6046 * NEWS: Mention multithreaded debug support for gdbserver.
6047
6048 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
6049
6050 * MAINTAINERS: Mention NEWS.
6051
6052 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
6053
6054 * mips-tdep.c (PROC_SYMBOL): Add warning comment.
6055 (struct mips_objfile_private, compare_pdr_entries): New.
6056 (non_heuristic_proc_desc): Read the ".pdr" section if it
6057 is present.
6058
6059 2002-06-12 Andrew Cagney <ac131313@redhat.com>
6060
6061 * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
6062 (arm_debug): New static variable.
6063 (_initialize_arm_tdep): Add ``set debug arm'' command.
6064
6065 2002-06-12 Andrew Cagney <ac131313@redhat.com>
6066
6067 * Makefile.in (sim_arm_h): Define.
6068 (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
6069 * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
6070 (arm_register_sim_regno): New function, map an internal REGNUM
6071 onto a simulator register number.
6072 (arm_gdbarch_init): Set register_sim_regno.
6073
6074 2002-06-09 Aldy Hernandez <aldyh@redhat.com>
6075
6076 * MAINTAINERS: Add self.
6077
6078 2002-06-11 Jim Blandy <jimb@redhat.com>
6079
6080 * source.c (source_info): Mention whether the symtab has
6081 information about preprocessor macros.
6082
6083 Call the command `info macro', not `show macro'.
6084 * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
6085 Fix error message.
6086 (_initialize_macrocmd): Register `info_macro_command' in
6087 `infolist', not `showlist'.
6088
6089 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
6090
6091 * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
6092 (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
6093 (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
6094 (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
6095 (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions. Define
6096 unconditionally.
6097 (set_mipsfpu_single_command, set_mipsfpu_double_command)
6098 (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
6099 (_initialize_mips_tdep): Remove dead code.
6100 * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
6101 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
6102 * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
6103 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
6104 * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
6105 MIPS_LAST_FP_ARG_REGNUM): Remove.
6106
6107 2002-06-11 Michal Ludvig <mludvig@suse.cz>
6108
6109 * dwarf2cfi.c (unwind_tmp_obstack_init): New.
6110 (unwind_tmp_obstack_free, parse_frame_info)
6111 (update_context, cfi_read_fp, cfi_write_fp)
6112 (cfi_frame_chain, cfi_init_extra_frame_info)
6113 (cfi_virtual_frame_pointer): Use the above function.
6114 * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
6115
6116 2002-06-11 Corinna Vinschen <vinschen@redhat.com>
6117
6118 * v850-tdep.c (v850_type_is_scalar): New function.
6119 (v850_use_struct_convention): Match current gcc implementation
6120 as close as possible.
6121 (v850_push_arguments): Fix stack_offset handling. Don't write
6122 struct_addr into register. This is done by v850_store_struct_return.
6123 (v850_extract_return_value): Care for structs.
6124 (v850_store_return_value): Ditto.
6125 (v850_store_struct_return): Actually write address.
6126
6127 2002-06-11 Michal Ludvig <mludvig@suse.cz>
6128
6129 * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
6130 without debug information too.
6131
6132 2002-06-10 Andrew Cagney <ac131313@redhat.com>
6133
6134 * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
6135 Make multi-arch pure.
6136 * gdbarch.h, gdbarch.c: Re-generate.
6137 * arm-tdep.c (arm_print_float_info): Update.
6138 * arch-utils.h (default_print_float_info): Update.
6139 * arch-utils.c (default_print_float_info): Update.
6140 * infcmd.c (float_info): Update call.
6141
6142 2002-06-10 Andrew Cagney <ac131313@redhat.com>
6143
6144 * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
6145 the front of the initialize list.
6146
6147 2002-06-10 Andrew Cagney <ac131313@redhat.com>
6148
6149 * infrun.c (struct inferior_status): Replace fields
6150 selected_frame_address and selected_level with field
6151 selected_frame_id.
6152 (save_inferior_status): Update. Use get_frame_id.
6153 (struct restore_selected_frame_args): Delete.
6154 (restore_selected_frame): Update. Use frame_find_by_id.
6155 (restore_inferior_status): Update.
6156
6157 * breakpoint.h (struct breakpoint): Change type of
6158 watchpoint_frame to frame_id.
6159 * breakpoint.c (insert_breakpoints): Use frame_find_by_id. Remove
6160 call to get_current_frame.
6161 (do_enable_breakpoint): Use frame_find_by_id. Remove call to
6162 get_current_frame.
6163 (watchpoint_check): Use frame_find_by_id.
6164
6165 * frame.h (record_selected_frame): Delete declaration.
6166 * stack.c (record_selected_frame): Delete function.
6167
6168 * frame.h (struct frame_id): Define.
6169 (get_frame_id): Declare.
6170 (frame_find_by_id): Declare.
6171 * frame.c (frame_find_by_id): New function.
6172 (get_frame_id): New function.
6173
6174 2002-06-10 Andrey Volkov <avolkov@transas.com>
6175
6176 * ser-e7kpc.c: Fix duplicated define and call of
6177 _initialize_ser_e7000pc
6178
6179 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
6180
6181 * signals/signals.c (target_signal_from_host): Fix #ifdef
6182 SIGRTMIN case.
6183 (do_target_signal_to_host): Likewise.
6184
6185 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
6186
6187 * mips-tdep.c (mips_find_abi_section): New function.
6188 (mips_gdbarch_init): Call it.
6189
6190 2002-06-09 Mark Kettenis <kettenis@gnu.org>
6191
6192 * solib-svr4.c (init_fetch_link_map_offsets): Simply return
6193 legacy_fetch_link_map_offsets. Adjust comment to reflect reality
6194 after Andrew's 2002-06-08 gdbarch change.
6195
6196 2002-06-09 Mark Kettenis <kettenis@gnu.org>
6197
6198 * i386-linux-nat.c (suppy_gregset): Don't supply
6199 I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
6200 register cache.
6201 (fill_gregset): Don't fetch it under the same circumstances.
6202
6203 2002-06-09 Andrew Cagney <cagney@redhat.com>
6204
6205 * Makefile.in (callback_h): Define.
6206 (remote_sim_h): Update path to remote-sim.h.
6207 (remote-rdp.o): Add $(callback_h).
6208 (remote-sim.o): Use $(callback_h).
6209 * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
6210 * remote-rdp.c: Include "gdb/callback.h".
6211
6212 2002-06-09 Mark Kettenis <kettenis@gnu.org>
6213
6214 * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
6215 * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
6216
6217 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6218
6219 * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
6220 * rdi-share/serpardr.c: Ditto.
6221 * rdi-share/unixcomm.c: Ditto.
6222 * rdi-share/serdrv.c: Ditto.
6223 * rdi-share/hostchan.h: Ditto.
6224 * rdi-share/hostchan.c: Ditto.
6225 * rdi-share/host.h: Ditto.
6226 * rdi-share/devsw.c: Ditto.
6227
6228 * objfiles.h: Change type of obj_private to void pointer.
6229 * pa64solib.c: Update copyright. Don't include "assert.h", use
6230 strcmp instead of STREQ, use LONGEST, do not use PTR
6231 * somsolib.c: Ditto.
6232
6233 * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
6234 bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
6235 bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
6236
6237 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6238
6239 * frame.c (GET_SAVED_REGISTER): Delete macro definition.
6240 (default_get_saved_register): Delete function.
6241 * gdbarch.sh (GET_SAVED_REGISTER): Set default to
6242 generic_unwind_get_saved_register.
6243 * gdbarch.h, gdbarch.c: Re-generate.
6244
6245 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6246
6247 * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
6248 generic_func_frame_chain_valid.
6249 * gdbarch.h, gdbarch.c: Re-generate.
6250 * blockframe.c (generic_func_frame_chain_valid): Only check
6251 PC_IN_CALL_DUMMY when generic dummy frames. Don't worry about
6252 passing FP to PC_IN_CALL_DUMMY.
6253 Fix PR gdb/360.
6254
6255 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6256
6257 * gdbarch.sh (struct gdbarch_data): Add field init_p.
6258 (register_gdbarch_data): Initialize init_p.
6259 (gdbarch_data): Initialize data pointer using the init function.
6260 (init_gdbarch_data): Delete function.
6261 (gdbarch_update_p): Update.
6262 (initialize_non_multiarch): Update.
6263 (struct gdbarch): Add field initialized_p.
6264 * gdbarch.h, gdbarch.c: Re-generate.
6265
6266 2002-06-07 Michal Ludvig <mludvig@suse.cz>
6267
6268 * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
6269 (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
6270 better do the things actually here.
6271 * x86-64-tdep.c (x86_64_register_name2nr): New.
6272 (x86_64_register_name): Renamed to x86_64_register_nr2name.
6273 (x86_64_gdbarch_init): Respect the above change.
6274 * x86-64-tdep.h (x86_64_register_name2nr)
6275 (x86_64_register_nr2name): Add prototypes.
6276 * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
6277
6278 2002-06-06 Michael Snyder <msnyder@redhat.com>
6279
6280 * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
6281 Delete extra braces and re-indent.
6282 (d10v_store_return_value): Char return values
6283 must be shifted over by one byte in R0.
6284 (d10v_extract_return_value): Delete extra braces, re-indent.
6285
6286 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
6287
6288 * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
6289 (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
6290 (d10v_integer_to_address): Rewrite.
6291 (d10v_frame_init_saved_regs): When reading fp and sp registers use
6292 the d10v specific functions which take care of converting to the
6293 correct space.
6294
6295 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
6296
6297 * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
6298 altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
6299
6300 2002-06-02 Andrew Cagney <ac131313@redhat.com>
6301
6302 * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
6303 includes.
6304 * config/tm-linux.h: Ditto.
6305 * config/alpha/tm-alphalinux.h: Ditto.
6306 * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
6307 * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
6308 * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
6309 * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
6310 * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
6311 * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
6312 * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
6313 * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
6314 * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
6315 * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
6316 * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
6317 * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
6318 * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
6319 * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
6320 * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
6321 * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
6322 * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
6323 * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
6324 * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
6325 * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
6326 * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
6327 * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
6328 * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
6329 * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
6330 * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
6331 * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
6332 * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
6333 * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
6334 * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
6335 * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
6336 * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
6337 * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
6338 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
6339 * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
6340 * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
6341 * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
6342 * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
6343
6344 2002-05-04 Aidan Skinner <aidan@velvet.net>
6345
6346 * ada-exp.tab.c: New file
6347 * ada-exp.y: New file
6348 * ada-lang.c: New file
6349 * ada-lang.h: New file
6350 * ada-lex.c: New file
6351 * ada-lex.l: New file
6352 * ada-tasks.c: New file
6353 * ada-typeprint.c: New file
6354 * ada-valprint.c: New file
6355
6356 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
6357
6358 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
6359 use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
6360
6361 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
6362
6363 * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
6364 insetead of ppc-linux-tdep.o.
6365 * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
6366 * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
6367
6368 2002-06-02 Andrew Cagney <ac131313@redhat.com>
6369
6370 2002-05-07 Christian Groessler <chris@groessler.org>
6371 * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
6372 bit register contents for little endian hosts.
6373
6374 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6375
6376 * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
6377 any maintainer.
6378
6379 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6380
6381 * gdbarch.h: Regenerate.
6382
6383 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6384
6385 * MAINTAINERS: Add everyone to write-after-approval list.
6386
6387 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6388
6389 * stack.c (frame_info): Use frame_register_unwind instead of
6390 saved_regs. Mention when the SP is on the stack or in a register.
6391
6392 * frame.h (frame_register_unwind_ftype): Define. Document.
6393 (struct frame_info): Add field register_unwind and
6394 register_unwind_cache.
6395 (frame_register_unwind): Declare.
6396 (generic_unwind_get_saved_register): Declare.
6397
6398 * frame.c (frame_register_unwind): New function.
6399 (generic_unwind_get_saved_register): New function.
6400
6401 * blockframe.c (generic_call_dummy_register_unwind): New function.
6402 (frame_saved_regs_register_unwind): New function.
6403 (set_unwind_by_pc): New function.
6404 (create_new_frame): New function.
6405 (get_prev_frame): New function.
6406
6407 2002-05-30 Andrew Cagney <ac131313@redhat.com>
6408
6409 * a29k-share/: Delete directory.
6410 * remote-vx29k.c: Delete file.
6411
6412 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
6413
6414 * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
6415 ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
6416
6417 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
6418
6419 * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
6420 sparcnbsd-nat.c, and sparcnbsd-tdep.c.
6421 (sparc64nbsd-nat.o)
6422 (sparcnbsd-nat.o)
6423 (sparcnbsd-tdep.o): New dependency lists.
6424 * NEWS: Note new UltraSPARC NetBSD native configuration.
6425 * configure.host (sparc64-*-netbsd*): New host.
6426 * configure.tgt (sparc-*-netbsdelf*)
6427 (sparc-*-netbsd*): Set gdb_target to nbsd.
6428 (sparc64-*-netbsd*): New target.
6429 * sparc64nbsd-nat.c: New file.
6430 * sparcnbsd-nat.c: New file.
6431 * sparcnbsd-tdep.c: New file.
6432 * sparcnbsd-tdep.h: New file.
6433 * config/sparc/nbsd.mt: New file.
6434 * config/sparc/nbsd64.mh: New file.
6435 * config/sparc/nbsd64.mt: New file.
6436 * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
6437 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
6438 (HOST_IPC): Remove.
6439 * config/sparc/nbsdaout.mt: Remove.
6440 * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
6441 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
6442 (HOST_IPC): Remove.
6443 * config/sparc/nbsdelf.mt: Remove.
6444 * config/sparc/nm-nbsd.h: Update copyright years. Remove all
6445 sparc-nat.c compatiblity defines.
6446 * config/sparc/tm-nbsd.h: Update copyright years. Include solib.h.
6447 (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
6448 * config/sparc/tm-nbsd64.h: New file.
6449 * config/sparc/tm-nbsdaout.h: Remove.
6450 * config/sparc/xm-nbsd.h: Remove.
6451
6452 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
6453
6454 * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
6455 * sparc-tdep.c: Include osabi.h.
6456 (gdbarch_tdep): Add osabi member.
6457 (_initialize_sparc_tdep): Use gdbarch_register.
6458 (sparc_gdbarch_init): Use generic OS ABI framework.
6459 (sparc_dump_tdep): New function.
6460
6461 2002-05-30 Kevin Buettner <kevinb@redhat.com>
6462
6463 * corefile.c (do_captured_read_memory_integer): Return non-zero
6464 result.
6465 (safe_read_memory_integer): Copy result of memory read when
6466 status is non-zero. Also, add comments.
6467
6468 2002-05-20 Jason Thorpe <thorpej@wasabisystems.com>
6469
6470 * Makefile.in (ppc_tdep_h): Define.
6471 (ppc-linux-nat.o)
6472 (ppc-linux-tdep.o)
6473 (rs6000-tdep.o): Use $(ppc_tdep_h).
6474 (ppc-sysv-tdep.o)
6475 (ppcnbsd-nat.o)
6476 (ppcnbsd-tdep.o): New dependency lists.
6477 * ppc-tdep.h: Use generic OS ABI framework.
6478 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
6479 (ppc_linux_init_abi): New functions.
6480 (ppc_sysv_abi_broken_use_struct_convention)
6481 (ppc_sysv_abi_use_struct_convention)
6482 (ppc_sysv_abi_push_arguments): Move to...
6483 * ppc-sysv-tdep.c: ...here.
6484 * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
6485 * rs6000-tdep.c (process_note_abi_tag_sections)
6486 (get_elfosabi): Remove.
6487 (rs6000_gdbarch_init): Use generic OS ABI framework.
6488 (rs6000_dump_tdep): New function.
6489 (_initialize_rs6000_tdep): Use gdbarch_register.
6490 * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
6491 * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
6492 * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
6493 of ppc-linux-tdep.o.
6494 * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
6495 * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
6496 * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
6497 * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
6498 * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
6499 * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
6500
6501 2002-05-29 Jim Blandy <jimb@redhat.com>
6502
6503 * macroscope.c (default_macro_scope): Put `void' in empty argument
6504 list.
6505
6506 2002-05-29 Andrew Cagney <ac131313@redhat.com>
6507
6508 * Makefile.in (arch-utils.o): Add $(sim_regno_h).
6509 * arch-utils.c: Include "sim-regno.h".
6510 * gdbarch.sh: Don't include "sim-regno.h".
6511 * gdbarch.h, gdbarch.c: Regenerate.
6512 * sim-regno.h (legacy_register_sim_regno): Move declaration from
6513 here.
6514 * arch-utils.h (legacy_register_sim_regno): To here.
6515 * remote-sim.c (legacy_register_sim_regno): Move function from
6516 here.
6517 * arch-utils.c (legacy_register_sim_regno): To here.
6518
6519 2002-05-28 Andrew Cagney <ac131313@redhat.com>
6520
6521 * sim-regno.h: New file.
6522 * Makefile.in (sim_regno_h): Define.
6523 (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
6524 * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
6525 (legacy_register_sim_regno): New function.
6526 (one2one_register_sim_regno): New function.
6527 (gdbsim_fetch_register): Rewrite.
6528 (gdbsim_store_register): Only store a register when
6529 REGISTER_SIM_REGNO is valid.
6530 * d10v-tdep.c: Include "sim-regno.h".
6531 (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
6532 (d10v_ts3_register_sim_regno): Ditto.
6533 * gdbarch.sh: Include "sim-regno.h".
6534 (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
6535 * gdbarch.h, gdbarch.c: Regenerate.
6536 * arch-utils.h (default_register_sim_regno): Delete declaration.
6537 * arch-utils.c (default_register_sim_regno): Delete function.
6538
6539 2002-05-28 Jason Thorpe <thorpej@wasabisystems.com>
6540
6541 * ppcnbsd-nat.c: Rewrite.
6542 * ppcnbsd-tdep.c: New file.
6543 * ppcnbsd-tdep.h: New file.
6544 * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
6545 solib.o, and solib-svr4.o.
6546 * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
6547 nbsd-tdep.o, and corelow.o.
6548
6549 2002-05-28 Andrew Cagney <ac131313@redhat.com>
6550
6551 * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
6552 `tr' and `sed'. Mention that `broken' targets are not expected to
6553 build.
6554
6555 2002-05-27 Michal Ludvig <mludvig@suse.cz>
6556
6557 * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
6558 Let PC point right after the prologue before looking up symbols.
6559
6560 2002-05-27 Martin M. Hunt <hunt@redhat.com>
6561
6562 * i386-tdep.c (i386_register_virtual_type): Return
6563 builtin_type_vec128i for SSE registers.
6564
6565 * gdbtypes.h (builtin_type_vec128i): Declare.
6566
6567 * gdbtypes.c (build_builtin_type_vec128i): New function.
6568 (builtin_type_v2_double, builtin_type_v4_int64): New types.
6569 (builtin_type_vec128i): New type for SSE2 128-bit registers.
6570 (build_gdbtypes): Initialize new builtin vector types.
6571 (_initialize_gdbtypes): Register new vector types with gdbarch.
6572
6573 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6574
6575 * MAINTAINERS: ns32k is not longer an obsolete candidate,
6576 since it has been multi-arch'd.
6577 * NEWS: Note that ns32k-*-* is now partial multi-arch.
6578 Move Alpha and VAX multi-arch news entries to same section
6579 as other multi-arch news.
6580
6581 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6582
6583 * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
6584 target.s, arch-utils.h, ns32k-tdep.h. Make many functions
6585 static. Rename some register numbers to put them in ns32k-tdep
6586 private namespace.
6587 (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
6588 ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
6589 functions.
6590 (_initialize_ns32k_tdep): Use gdbarch_register.
6591 * ns32k-tdep.h: New file.
6592 * ns32knbsd-tdep.c: New file.
6593 * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
6594 * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
6595 (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
6596 REGISTER_BYTES, REGISTER_BYTE): Remove.
6597 * config/ns32k/tm-ns32k.h: New file.
6598 * config/ns32k/tm-umax.h: Remove.
6599
6600 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6601
6602 * ns32k-tdep.c (ns32k_saved_pc_after_call,
6603 ns32k_store_struct_return, ns32k_extract_return_value,
6604 ns32k_store_return_value, ns32k_extract_struct_value_address): New
6605 functions.
6606 * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
6607 ns32k_saved_pc_after_call.
6608 (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
6609 (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
6610 (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
6611 (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
6612 ns32k_extract_struct_value_address.
6613
6614 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6615
6616 * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
6617 ns32k_fix_call_dummy): New.
6618 * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
6619 ns32k_call_dummy_words.
6620 (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
6621 (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
6622 CALL_DUMMY_NARGS): Remove.
6623 (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
6624
6625 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6626
6627 * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
6628 ns32k_frame_saved_pc, ns32k_frame_args_address,
6629 ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
6630 ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
6631 * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
6632 * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
6633 (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
6634 (BREAKPOINT): Remove..
6635 (FRAME_CHAIN): Define as ns32k_frame_chain.
6636 (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
6637 (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
6638 (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
6639 (FRAME_FIND_SAVED_REGS): Remove.
6640 (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
6641 (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
6642 (POP_FRAME): Define as ns32k_pop_frame.
6643
6644 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6645
6646 * ns32k-tdep.c (ns32k_register_byte_32082,
6647 ns32k_register_byte_32382, ns32k_register_raw_size,
6648 ns32k_register_virtual_size, ns32k_register_virtual_type): New
6649 functions.
6650 * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
6651 ns32k_register_byte_32382.
6652 * config/ns32k/tm-umax.h: Update copyright years.
6653 (REGISTER_BYTE): Define as ns32k_register_byte_32082.
6654 (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
6655 (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
6656 (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
6657 (ns32k_get_enter_addr): Fix prototype.
6658
6659 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6660
6661 * ns32k-tdep.c: Update copyright years.
6662 (ns32k_register_name_32082): New function.
6663 (ns32k_register_name_32382): Ditto.
6664 * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
6665 (REGISTER_NAME): Define as ns32k_register_name_32382.
6666 * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
6667 (REGISTER_NAME): Define as ns32k_register_name_32082.
6668
6669 2002-05-24 Jim Blandy <jimb@redhat.com>
6670
6671 * dwarf2read.c (free_line_header): Use xfree, not free.
6672
6673 2002-05-24 Jason Thorpe <thorpej@wasabisystems.com>
6674
6675 * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
6676 alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
6677
6678 2002-05-23 Andrew Cagney <ac131313@redhat.com>
6679
6680 * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
6681
6682 2002-05-23 Andrew Cagney <ac131313@redhat.com>
6683
6684 From Ross Alexander at NEC Europe:
6685 * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
6686
6687 2002-05-23 Michael Snyder <msnyder@redhat.com>
6688
6689 * cli/cli-dump.c (restore_command): Use parse_and_eval_long
6690 for input, rather than parse_and_eval_address.
6691
6692 2002-05-23 Andrew Cagney <ac131313@redhat.com>
6693
6694 * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
6695 * Makefile.in (sim_d10v_h): Update definition.
6696
6697 2002-05-24 Andrew Cagney <cagney@redhat.com>
6698
6699 * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
6700 change `2002-05-22 Michael Snyder' below.
6701 (d10v_push_arguments): Ditto.
6702 (d10v_extract_return_value): Ditto.
6703
6704 2002-05-23 Jim Blandy <jimb@redhat.com>
6705
6706 * macrotab.c (check_for_redefinition): Don't complain if the new
6707 definition is the same as the previous one. Take more arguments
6708 to allow the comparison.
6709 (macro_define_object, macro_define_function): Pass more arguments
6710 to check_for_redefinition.
6711
6712 2002-05-22 Michael Snyder <msnyder@redhat.com>
6713
6714 * d10v-tdep.c: Change a few macros to enums for ease of debugging.
6715 (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
6716 (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
6717 (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
6718 Don't bail if return_pc is PC_IN_CALL_DUMMY.
6719 Add a temp variable to save a call (and a memory read).
6720 (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
6721 if possible (so that PC_IN_CALL_DUMMY will work).
6722
6723 2002-05-22 Corinna Vinschen <vinschen@redhat.com>
6724
6725 * MAINTAINERS: Remove status `OBSOLETE' from v850.
6726
6727 2002-05-22 Michal Ludvig <mludvig@suse.cz>
6728
6729 * dwarf2cfi.c (frame_state_for): Added safety check for a valid
6730 fde->cie_ptr.
6731 (dwarf2_build_frame_info): Corrected handling of eh_frame.
6732 (dwarf2_build_frame_info): Add offset to fde->initial_location
6733 so that frames of shared libraries are mapped correctly.
6734 (execute_stack_op): Change type of 'result' from ULONGEST to
6735 CORE_ADDR.
6736
6737 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6738
6739 * config/alpha/tm-nbsd.h: Include solib.h.
6740
6741 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6742
6743 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
6744 assumptions about the host's byte order.
6745
6746 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6747
6748 * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
6749 to dependency list.
6750 * alphanbsd-tdep.c: Include solib-svr4.h.
6751 * shnbsd-tdep.c: Ditto.
6752
6753 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6754
6755 * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
6756 nbsd-tdep.h to dependency list.
6757 * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
6758 i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
6759 ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
6760 nbsdaout.mh and nbsdelf.mh consistently.
6761 * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
6762 ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
6763 nbsdaout.mt and nbsdelf.mh consistently.
6764 * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h.
6765 (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
6766 to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
6767 * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS. Move
6768 a.out shared library stuff from here...
6769 * config/nm-nbsdaout.h: ...to here.
6770 * config/tm-nbsd.h: Remove.
6771 * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
6772 * config/arm/nbsd.mh: Remove.
6773 * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
6774 nbsd-tdep.o.
6775 * config/arm/nbsdaout.mh: New file.
6776 * config/arm/nbsdelf.mh: New file.
6777 * config/arm/nm-nbsdaout.h: New file.
6778 * config/i386/nbsd.mh: Remove.
6779 * config/i386/nbsd.mt: Remove.
6780 * config/i386/nbsdaout.mh: New file.
6781 * config/i386/nbsdaout.mt: New file.
6782 * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
6783 * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
6784 * config/i386/nm-nbsd.h (REGISTER_U_ADDR,
6785 i386_register_u_addr): Remove.
6786 * config/i386/nm-nbsdaout.h: New file.
6787 * config/i386/nm-nbsdelf.h: Remove.
6788 * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
6789 (USE_STRUCT_CONVENTION): Remove.
6790 * config/i386/tm-nbsdaout.h: New file.
6791 * config/i386/tm-nbsdelf.h: Remove.
6792 * config/m68k/nbsd.mh: Remove.
6793 * config/m68k/nbsd.mt: Remove.
6794 * config/m68k/nbsdaout.mh: New file.
6795 * config/m68k/nbsdaout.mt: New file.
6796 * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
6797 * config/m68k/nm-nbsdaout.h: New file.
6798 * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
6799 (IN_SOLIB_CALL_TRAMPOLINE): Define.
6800 * config/ns32k/nbsd.mh: Remove.
6801 * config/ns32k/nbsd.mt: Remove.
6802 * config/ns32k/nbsdaout.mh: New file.
6803 * config/ns32k/nbsdaout.mt: New file.
6804 * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h.
6805 * config/ns32k/nm-nbsdaout.h: New file.
6806 * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.
6807 (IN_SOLIB_CALL_TRAMPOLINE): Define.
6808 * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
6809 (SVR4_SHARED_LIBS): Remove.
6810 * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
6811 * config/sparc/nbsd.mh: Remove.
6812 * config/sparc/nbsd.mt: Remove.
6813 * config/sparc/nbsdaout.mh: New file.
6814 * config/sparc/nbsdaout.mt: New file.
6815 * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
6816 * config/sparc/nbsdelf.mt: New file.
6817 * config/sparc/nm-nbsdaout.h: New file.
6818 * config/sparc/nm-nbsdelf.h: Remove.
6819 * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
6820 * config/sparc/tm-nbsdaout.h: New file.
6821
6822 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6823
6824 * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
6825 mipsnbsd-tdep.c
6826 (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
6827
6828 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6829
6830 * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
6831 shnbsd-nat.c.
6832 (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
6833
6834 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6835
6836 * NEWS: Note new MIPS NetBSD native configuration.
6837 * configure.host (mips*-*-netbsd*): New host.
6838 * configure.tgt (mips*-*-netbsd*): New target.
6839 * mipsnbsd-nat.c: New file.
6840 * mipsnbsd-tdep.c: New file.
6841 * mipsnbsd-tdep.h: New file.
6842 * config/mips/nbsd.mh: New file.
6843 * config/mips/nbsd.mt: New file.
6844 * config/mips/nm-nbsd.h: New file.
6845 * config/mips/tm-nbsd.h: New file.
6846
6847 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6848
6849 * Makefile.in (SFILES): Add osabi.c.
6850 (COMMON_OBS): Add osabi.o.
6851 (osabi.o): New dependency list.
6852 * osabi.c: New file.
6853 * osabi.h: New file.
6854 * doc/gdbint.texinfo: Document new generic OS ABI framework.
6855
6856 * Makefile.in (alpha_tdep_h): Define and use instead of
6857 alpha-tdep.h.
6858 * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
6859 get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
6860 Remove.
6861 (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
6862 * alpha-tdep.h: Include osabi.h.
6863 (alpha_abi): Remove.
6864 (gdbarch_tdep): Use generic OS ABI framework.
6865 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
6866 gdbarch_register_osabi.
6867 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
6868 * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
6869 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
6870
6871 * Makefile.in (sh_tdep_h): Add osabi.h.
6872 * sh-tdep.h (sh_osabi): Remove.
6873 (gdbarch_tdep): Use generic OS ABI framework.
6874 * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
6875 sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
6876 (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
6877 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
6878
6879 * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
6880 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
6881 gdbarch_register_osabi.
6882 * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
6883 arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
6884 (get_elfosabi): Rename to...
6885 (arm_elf_osabi_sniffer): ...this. Adjust to use generic OS
6886 ABI framework support routines.
6887 (arm_gdbarch_init): Use generic OS ABI framework.
6888 (arm_dump_tdep): Likewise.
6889 (_initialize_arm_tdep): Likewise.
6890 * arm-tdep.h: Include osabi.h.
6891 (arm_abi): Remove.
6892 (gdbarch_tdep): Remove arm_abi and abi_name members. Add
6893 osabi member.
6894 (arm_gdbarch_register_os_abi): Remove prototype.
6895 * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
6896 (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
6897
6898 * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
6899 * mips-tdep.c: Include osabi.h.
6900 (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
6901 OS ABI framework.
6902
6903 2002-05-20 Kazu Hirata <kazu@cs.umass.edu>
6904
6905 * h8300-tdep.c: Fix formatting.
6906
6907 2002-05-20 Elena Zannoni <ezannoni@redhat.com>
6908
6909 * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
6910 printing vector registers.
6911
6912 2002-05-19 Andrew Cagney <ac131313@redhat.com>
6913
6914 From Fernando Nasser:
6915 * remote.c (remote_async_open_1): Re-throw the exception when the
6916 connection fails.
6917 (remote_cisco_open): Ditto.
6918 (remote_open_1): Ditto.
6919
6920 2002-05-19 Andrew Cagney <ac131313@redhat.com>
6921
6922 * remote.c (remote_start_remote_dummy): Add uiout parameter.
6923 (remote_start_remote): Add uiout parameter. Pass through to
6924 remote_start_remote_dummy.
6925 (remote_open_1): Use catch_exception instead of catch_errors.
6926 (remote_async_open_1): Ditto.
6927 (remote_cisco_open): Ditto.
6928
6929 2002-05-19 Andrew Cagney <ac131313@redhat.com>
6930
6931 * remote.c (remote_start_remote): Replace PTR with void pointer.
6932 (sigint_remote_twice_token, sigint_remote_token): Ditto. Make
6933 static.
6934
6935 2002-05-18 Andrew Cagney <ac131313@redhat.com>
6936
6937 * gdb_indent.sh: Allow the script to be run in the sim directory.
6938
6939 2002-05-18 Mark Kettenis <kettenis@gnu.org>
6940
6941 * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
6942 * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
6943
6944 * corelow.c (core_open): Only call set_gdbarch_from_file if
6945 exec_bfd is NULL.
6946
6947 2002-05-17 Andrey Volkov <avolkov@transas.com>
6948
6949 * h8300-tdep.c: Add support of EXR register
6950 * config/h8300/tm-h8300.h: Ditto.
6951
6952 2002-05-17 Andrey Volkov <avolkov@transas.com>
6953
6954 * h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
6955
6956 2002-05-17 Andrey Volkov <avolkov@transas.com>
6957
6958 * h8300-tdep.c: Change literal regnums to REGNO.
6959
6960 2002-05-17 Jim Blandy <jimb@redhat.com>
6961
6962 * NEWS: Note addition of macro support.
6963
6964 Expand preprocessor macros in C expressions.
6965 * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
6966 (scan_macro_expansion, scanning_macro_expansion,
6967 finished_macro_expansion): New function declarations.
6968 (expression_macro_lookup_func, expression_macro_lookup_baton): New
6969 variable declarations.
6970 * parser-defs.h (expression_context_pc): New declaration.
6971 * parse.c (expression_context_pc): New variable.
6972 (parse_exp_1): Set expression_context_pc, as well as
6973 expression_context_block.
6974 * c-exp.y (yylex): If we're not already reading the result of a
6975 macro expansion, try to macro-expand the next token. When we're
6976 done scanning a macro expansion, switch back to the mainline text.
6977 Commas and `if's in a macro's expansion don't terminate the input.
6978 * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
6979 (macro_original_text, macro_expanded_text,
6980 expression_macro_lookup_func, expression_macro_lookup_baton): New
6981 variables.
6982 (scan_macro_expansion, scanning_macro_expansion,
6983 finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
6984 c_preprocess_and_parse): New functions.
6985 (c_language_defn, cplus_language_defn, asm_language_defn): Call
6986 c_preprocess_and_parse, instead of c_parse.
6987 * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
6988 (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
6989
6990 Fri May 17 14:26:19 2002 J"orn Rennecke <joern.rennecke@superh.com>
6991
6992 * sh-tdep.c (gdb_print_insn_sh64): Delete.
6993 (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
6994 (sh_gdbarch_init): Always use gdb_print_insn_sh.
6995
6996 2002-05-17 Corinna Vinschen <vinschen@redhat.com>
6997
6998 * NEWS: Add section for multi-arched targets. Add v850 to that section.
6999
7000 2002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
7001
7002 * Makefile.in (sh_tdep_h): Define and use.
7003 * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
7004 register enum): Move to...
7005 * * sh-tdep.h: ...here.
7006 * sh-tdep.c: Include sh-tdep.h.
7007 * sh3-rom.c: Likewise.
7008 * shnbsd-tdep.c: Likewise.
7009
7010 2002-05-16 Michael Snyder <msnyder@redhat.com>
7011
7012 * arm-tdep.c: Spelling fix in comment.
7013
7014 2002-05-16 Jim Blandy <jimb@redhat.com>
7015
7016 Add commands for manually expanding macros and showing their
7017 definitions.
7018 * macrocmd.c, macroscope.c, macroscope.h: New files.
7019 * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
7020 (macroscope_h): New variable.
7021 (HFILES_NO_SRCDIR): Add macroscope.h.
7022 (COMMON_OBS): Add macrocmd.o, macroscope.o.
7023 (macroscope.o, macrocmd.o): New rules.
7024
7025 Teach the Dwarf 2 reader to read macro information.
7026 * dwarf2read.c: #include "macrotab.h".
7027 (dwarf_macinfo_buffer): New variable.
7028 (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
7029 dwarf_macinfo_size.
7030 (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
7031 (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
7032 dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
7033 dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
7034 dwarf2_macro_spaces_in_definition): New complaints.
7035 (dwarf2_has_info): Initialize dwarf_macinfo_offset.
7036 (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
7037 (dwarf2_build_psymtabs_hard): Record the buffer and its size in
7038 the partial symbol table.
7039 (psymtab_to_symtab_1): Set the macinfo buffer and size globals
7040 from what's recorded in the partial symbol table.
7041 (read_file_scope): If the compilation unit has a
7042 `DW_AT_macro_info' attribute, read its macro information.
7043 * Makefile.in (dwarf2read.o): Depend on macrotab.h.
7044
7045 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
7046
7047 Fix PR gdb/546
7048 * ser-tcp.c: Don't include <netinet/udp.h>.
7049
7050 2002-05-16 Stephane Carrez <stcarrez@nerim.fr>
7051
7052 * MAINTAINERS: Update my email address.
7053
7054 2002-05-16 Richard Earnshaw <rearnsha@arm.com>
7055
7056 * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
7057 include file of the same name.
7058
7059 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7060
7061 * configure.tgt: Mark v850 as multi-arched.
7062 * config/v850/tm-v850.h: Remove file.
7063 * config/v850/v850.mt: Eliminate TM_FILE.
7064
7065 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7066
7067 * v850-tdep.c: Full multi-arch.
7068 * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
7069 Define GDB_MULTI_ARCH to 2.
7070
7071 2002-05-16 Pierre Muller <muller@ics.u-strasbg.fr>
7072
7073 * p-exp.y (current_type): New static variable.
7074 Carries the type of the expression at the position that is parsed.
7075 (push_current_type, pop_current_type): Two new functions. Used
7076 to store/restore current_type in expression on specific tokens.
7077 (search_field): New static variable. Set to one after parsing a point
7078 as at that point only a FIELDNAME token should be searched.
7079 (FIELDNAME): New token. After a point only a token belonging to
7080 current_type type definition is allowed.
7081 (all over token rules): reset and change current_type according
7082 to rules.
7083 (exp '[' rule): insert implicit array index field if
7084 exp is a pascal string type.
7085
7086 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7087
7088 * v850-tdep.c: Fix comment for v850_scan_prologue. Remove extra
7089 frame info. Use frame_info's saved_regs instead of matching member
7090 in extra_frame_info throughout.
7091 (v850_frame_init_saved_regs): New function.
7092 (v850_init_extra_frame_info): Move most functionality into
7093 v850_frame_init_saved_regs().
7094 * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
7095 (v850_frame_find_saved_regs): Remove declaration.
7096 (FRAME_FIND_SAVED_REGS): Remove definition.
7097 (v850_frame_init_saved_regs): Add declaration.
7098 (FRAME_INIT_SAVED_REGS): Add definition.
7099
7100 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7101
7102 * v850-tdep.c: Begin multi-arch'ing v850.
7103 (v850_target_architecture_hook): Remove function.
7104 (v850_gdbarch_init): New function. Add code previously in
7105 v850_target_architecture_hook().
7106 (_initialize_v850_tdep): Don't set target_architecture_hook.
7107 Call register_gdbarch_init() instead.
7108
7109 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
7110
7111 * gdbtypes.h (struct cplus_struct_type): Remove args field.
7112 * hpread.c (hpread_read_struct_type): Remove assignments to args.
7113 (fixup_class_method_type): Likewise.
7114
7115 2002-05-15 Jim Blandy <jimb@redhat.com>
7116
7117 Add macro structures to GDB's symbol tables. Nobody puts anything
7118 in them yet.
7119 * symtab.h (struct symtab): New member: `macro_table'.
7120 * buildsym.h (pending_macros): New global variable.
7121 * buildsym.c: #include "macrotab.h".
7122 (buildsym_init): Initialize `pending_macros'.
7123 (end_symtab): If we found macro information while reading a CU's
7124 debugging info, do build a symtab structure for it. Make the
7125 symtab point to the macro information, and clear the
7126 `pending_macros' pointer which held it while we were reading the
7127 debug info.
7128 (really_free_pendings): Free any pending macro table.
7129 * objfiles.h (struct objfile): New member: `macro_cache'.
7130 * objfiles.c (allocate_objfile): Set allocate and free functions
7131 for the macro cache's objstack.
7132 (free_objfile): Empty the macro cache's obstack.
7133 * symfile.c (reread_symbols): Empty the macro cache's obstack, and
7134 set new allocate and free functions for it.
7135 * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
7136 free functions for the macro cache's objstack. (Why is this
7137 function building its own objfile?)
7138 * symmisc.c (print_objfile_statistics): Print statistics on the
7139 macro bcache.
7140 * Makefile.in: Note that buildsym.o depends on macrotab.h.
7141
7142 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
7143
7144 * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
7145 (REGISTER_U_ADDR): Delete definition.
7146 (arm_register_u_addr): Delete declaration.
7147
7148 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
7149
7150 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
7151 (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
7152
7153 2002-05-14 Andrew Cagney <ac131313@redhat.com>
7154
7155 * regcache.c (register_valid): Revise comments refering to "Not
7156 available" and "unavailable".
7157 * frame.c (frame_register_read): Ditto.
7158 * findvar.c (value_of_register): Ditto.
7159
7160 2002-05-15 Andrew Cagney <cagney@redhat.com>
7161
7162 * Makefile.in (remote_sim_h): Replace remote-sim_h.
7163 (remote-sim.o): Update dependencies.
7164 (d10v-tdep.o): Specify dependencies.
7165 (sim_d10v_h): Define.
7166
7167 2002-05-14 Jim Blandy <jimb@redhat.com>
7168
7169 * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
7170 * macrotab.c (macro_lookup_inclusion, find_definition,
7171 new_macro_table): Same.
7172
7173 * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
7174 not `! strcmp ()'. This is a dubious improvement.
7175 * macrotab.c (macro_lookup_inclusion, find_definition): Same.
7176
7177 * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
7178 although it's not necessary, to avoid a warning.
7179
7180 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
7181
7182 * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
7183 (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
7184 TYPE_INSTANCE_FLAGS.
7185 (struct main_type): New.
7186 (struct type): Move most members to struct main_type. Change
7187 cv_type and as_type to new type_chain member. Add instance_flags.
7188 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
7189 (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
7190 (finish_cv_type): Remove prototype.
7191 * gdbtypes.c (alloc_type): Update comment. Allocate TYPE_MAIN_TYPE.
7192 Set TYPE_CHAIN.
7193 (alloc_type_instance): New function.
7194 (smash_type): New function.
7195 (make_pointer_type, make_reference_type, make_function_type)
7196 (smash_to_member_type, smash_to_method_type): Call smash_type.
7197 (make_qualified_type): New function.
7198 (make_type_with_address_space): Call make_qualified_type.
7199 (make_cv_type): Likewise.
7200 (finish_cv_type): Remove unnecessary function.
7201 (replace_type): Update comment. Copy TYPE_MAIN_TYPE.
7202 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
7203 remove TYPE_CV_TYPE and TYPE_AS_TYPE.
7204 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
7205 * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
7206 * hpread.c (hpread_read_struct_type): Likewise.
7207 * stabsread.c (read_struct_type): Likewise.
7208
7209 2002-05-14 Elena Zannoni <ezannoni@redhat.com>
7210
7211 * configure.tgt: Add a catch all sh* target, for cases like
7212 sh[2,3,4]-elf and sh-hms.
7213
7214 2002-05-14 Keith Seitz <keiths@redhat.com>
7215
7216 * event-loop.c (create_file_handler): Don't do anything but
7217 update data when we are given a fd which we are already
7218 monitoring.
7219
7220 2002-05-14 Michal Ludvig <mludvig@suse.cz>
7221
7222 * dwarf2cfi.c (context_cpy): Copy registers correctly.
7223 (update_context): Use __func__ in warnings.
7224
7225 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
7226
7227 * ser-tcp.c: Include <netinet/udp.h>. Rename tcp_open
7228 and tcp_close to net_open and net_close.
7229 (net_open): Accept "udp:" and "tcp:" specifications. Connect
7230 using UDP if requested. Don't try to disable Nagle on UDP
7231 sockets.
7232 * remote.c (remote_serial_open): New function. Warn about UDP.
7233 (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
7234
7235 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
7236
7237 * MAINTAINERS: List sh-elf as buildable with ,-Werror.
7238
7239 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
7240
7241 * configure.tgt: Remove sh-hms target.
7242 * MAINTAINERS: Don't list sh-hms as a separate target.
7243
7244 2002-05-13 Jim Blandy <jimb@redhat.com>
7245
7246 Add first preprocessor macro-expansion files.
7247 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
7248 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
7249 (splay_tree_h, macroexp_h, macrotab_h): New variable.
7250 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
7251 (COMMON_OBS): Add macrotab.o, macroexp.o.
7252 (macroexp.o, macrotab.o): New rules.
7253
7254 2002-05-13 Andrew Cagney <ac131313@redhat.com>
7255
7256 * config/m88k/tm-m88k.h: Update copyright.
7257 (m88k_target_write_pc): Declare
7258 (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
7259 (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
7260 (SHIFT_INST_REGS): Update definition.
7261 * m88k-tdep.c (m88k_target_write_pc): New function. Implement
7262 using old definition of TARGET_WRITE_PC.
7263 * regcache.c (generic_target_write_pc): Delete code handling
7264 NNPC_REGNUM.
7265 * gdbarch.sh (NNPC_REGNUM): Delete.
7266 * gdbarch.h, gdbarch.c: Regenerate.
7267
7268 2002-05-13 Richard Earnshaw <rearnsha@arm.com>
7269
7270 * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
7271 builtin reg number.
7272
7273 2002-05-13 Daniel Jacobowitz <drow@mvista.com>
7274
7275 * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
7276 (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
7277 (gen_address_of, gen_struct_ref, gen_repeat): Use type
7278 access macros.
7279 * c-typeprint.c (cp_type_print_method_args): Likewise.
7280 (c_type_print_args): Likewise.
7281 * d10v-tdep.c (d10v_push_arguments): Likewise.
7282 (d10v_extract_return_value): Likewise.
7283 * expprint.c (print_subexp): Likewise.
7284 * gdbtypes.c (lookup_primitive_typename): Likewise.
7285 (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
7286 * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
7287 (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
7288 (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
7289 (TYPE_VECTOR): Likewise.
7290 * hpread.c (hpread_read_struct_type)
7291 (fix_static_member_physnames, fixup_class_method_type)
7292 (hpread_type_lookup): Likewise.
7293 * mdebugread.c (parse_symbol, parse_type): Likewise.
7294 * p-lang.c (is_pascal_string_type): Likewise.
7295 * valops.c (hand_function_call): Likewise.
7296 * x86-64-tdep.c (classify_argument): Likewise.
7297
7298 * hpread.c (hpread_read_function_type)
7299 (hpread_read_doc_function_type): Call replace_type.
7300 * dstread.c (create_new_type): Delete.
7301 (decode_dst_structure, process_dst_function): Call alloc_type.
7302 Use type access macros.
7303
7304 2002-05-12 Mark Kettenis <kettenis@gnu.org>
7305
7306 * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
7307 the're not supported by the current architecture.
7308 (i387_fill_fxsave): Likewise.
7309
7310 2002-05-12 Fred Fish <fnf@redhat.com>
7311
7312 * symfile.c (default_symfile_offsets): Arrange for uninitialized
7313 sect_index_xxx members to index the first slot in section_offsets
7314 if all of the section_offsets are zero.
7315
7316 2002-05-12 Mark Kettenis <kettenis@gnu.org>
7317
7318 * configure.tgt (sparc-*openbsd): Remove entry accidentially
7319 checked in with last change.
7320
7321 2002-05-12 Mark Kettenis <kettenis@gnu.org>
7322
7323 * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
7324 Remove targets. These are canonicalized to i386-*-sysv4.2uw by
7325 config.sub.
7326
7327 2002-05-12 Daniel Jacobowitz <drow@mvista.com>
7328
7329 * Makefile.in: Update dependencies.
7330
7331 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7332
7333 * language.c (local_hex_string_custom): Simplify. Do not depend
7334 on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
7335
7336 * memattr.c (mem_info_command): Replace calls to
7337 longest_local_hex_string and longest_local_hex_string_custom.
7338 * buildsym.c (make_blockvector): Ditto.
7339 * solib.c (info_sharedlibrary_command): Ditto.
7340 * tracepoint.c (tracepoints_info): Ditto.
7341 * symtab.c (print_msymbol_info): Ditto.
7342
7343 * language.c (local_hex_string): Delete.
7344 (local_hex_string_custom): Delete.
7345 (longest_local_hex_string): Rename to local_hex_string.
7346 (longest_local_hex_string_custom): Rename to
7347 local_hex_string_custom.
7348 * language.h (local_hex_string): Change parameter type to LONGEST.
7349 (local_hex_string_custom): Ditto.
7350 (longest_local_hex_string): Delete declaration.
7351 (longest_local_hex_string_custom): Ditto.
7352
7353 * solib.c: Update copyright.
7354 * memattr.c: Update copyright.
7355
7356 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7357
7358 * arch-utils.h (legacy_register_to_value): Declare.
7359 (legacy_value_to_register): Declare.
7360 (legacy_convert_register_p): Declare.
7361 * arch-utils.c (legacy_register_to_value): New function.
7362 (legacy_value_to_register): New function.
7363 (legacy_convert_register_p): New function.
7364
7365 * gdbarch.sh (REGISTER_TO_VALUE): Define.
7366 (VALUE_TO_REGISTER): Define.
7367 (CONVERT_REGISTER_P): Define.
7368 * gdbarch.h, gdbarch.c: Regenerate.
7369
7370 * valops.c (value_assign): Use CONVERT_REGISTER_P and
7371 VALUE_TO_REGISTER.
7372 * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
7373 CONVERT_REGISTER_P.
7374
7375 2005-05-11 Daniel Jacobowitz <drow@mvista.com>
7376 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
7377
7378 * Makefile.in: Update dependencies for valops.c.
7379 * valops.c: Include "gdb_assert.h".
7380 (typecmp): Skip THIS parameter to methods.
7381 (find_method_list): Remove static_memfuncp argument,
7382 update callers. Check for stub methods.
7383 (find_value_oload_method_list): Don't set *static_memfuncp.
7384 (find_overload_match): Don't check for stub methods. Assert
7385 that methods are not stubbed. Handle static methods.
7386 (value_find_oload_method_list): Remove static_memfuncp argument.
7387 * gdbtypes.c (check_stub_method): Do not add THIS pointer
7388 to the argument list for static stub methods.
7389 * value.h (value_find_oload_method_list): Update prototype.
7390
7391 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7392
7393 * arch-utils.h (generic_register_size): Declare.
7394 (generic_register_raw_size, generic_register_virtual_size): Delete
7395 declarations.
7396 * arch-utils.c (generic_register_raw_size): Delete.
7397 (generic_register_size): New function.
7398 (generic_register_virtual_size): Delete.
7399
7400 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
7401 default generic_register_size.
7402 * gdbarch.h, gdbarch.c: Re-generate.
7403
7404 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
7405 register_virtual_size.
7406 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
7407 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
7408
7409 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7410
7411 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
7412 * gdbarch.h, gdbarch.c: Regenerate.
7413 * gnu-v3-abi.c: Update copyright.
7414 (vtable_address_point_offset): Update.
7415 (gnuv3_rtti_type): Update.
7416 (gnuv3_baseclass_offset): Update.
7417 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
7418 (init_fetch_link_map_offsets): Update.
7419 * remote.c (get_remote_state): Update.
7420
7421 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
7422
7423 * TODO: Remove value_headof/value_from_vtable_info comment.
7424 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
7425 * values.c (value_headof, value_from_vtable_info): Delete.
7426 * value.h (value_from_vtable_info): Delete prototype.
7427
7428 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7429
7430 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
7431 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
7432 $(gdb_regex_h).
7433 (gdb_assert_h): Define.
7434 (gdb_wait_h): Define.
7435 (gdb_regex_h): Define.
7436
7437 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
7438
7439 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
7440 * linespec.c (find_methods): Handle GCC 3.x template constructors.
7441
7442 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7443
7444 * nbsd-tdep.c: Fix comment.
7445
7446 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7447
7448 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
7449 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
7450 (nbsd-tdep.o): New dependency list.
7451 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
7452 nbsd-tdep.h.
7453 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
7454 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
7455 * nbsd-tdep.c: New file.
7456 * nbsd-tdep.h: New file.
7457 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
7458 nbsd-tdep.h.
7459 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
7460 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
7461 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
7462 * config/sh/nbsd.mt (TDEPFILES): Ditto.
7463
7464 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7465
7466 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
7467 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
7468 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
7469 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
7470 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
7471 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
7472
7473 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7474
7475 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
7476 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7477 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
7478 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
7479 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
7480 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
7481 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
7482
7483 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7484
7485 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
7486 fetch_elfcore_registers to...
7487 * i386nbsd-tdep.c: ...here.
7488 (i386nbsd_use_struct_convention): Rename to...
7489 (i386nbsd_aout_use_struct_convention): ...this.
7490 (i386nbsd_supply_reg): New function.
7491 (i386nbsd_fill_reg): New function.
7492 (fetch_core_registers): Use i386nbsd_supply_reg.
7493 (fetch_elfcore_registers): Likewise.
7494 (_initialize_i386nbsd_tdep): New function.
7495 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
7496 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7497 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
7498 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
7499 (i386nbsd_aout_use_struct_convention): ...this.
7500
7501 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7502
7503 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
7504 (store_inferior_registers): Use shnbsd_fill_reg.
7505 * shnbsd-tdep.c (sh_nbsd_supply_registers,
7506 sh_nbsd_supply_register): Collapse into...
7507 (shnbsd_supply_reg): ...this.
7508 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
7509 (shnbsd_fill_reg): ...this.
7510 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
7511 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
7512 (fetch_core_registers): Use shnbsd_supply_reg.
7513 (fetch_elfcore_registers): Use shnbsd_supply_reg.
7514 (sh_nbsd_core_fns): Rename to...
7515 (shnbsd_core_fns): ...this.
7516 (sh_nbsd_elfcore_fns): Rename to...
7517 (shnbsd_elfcore_fns): ...this.
7518 (sh_nbsd_init_abi): Rename to...
7519 (shnbsd_init_abi): ...this.
7520 (_initialize_sh_nbsd_tdep): Rename to...
7521 (_initialize_shnbsd_tdep): ...this.
7522 * shnbsd-tdep.h (sh_nbsd_supply_registers,
7523 sh_nbsd_supply_register, sh_nbsd_fill_registers,
7524 sh_nbsd_fill_register): Remove prototypes.
7525 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
7526
7527 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7528
7529 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
7530 (i387-nat.o): Delete dependency list.
7531 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
7532 (x86-64-linux-nat.o): Likewise.
7533 * i387-nat.c: Delete file, moving contents to...
7534 * i387-tdep.c: ...here.
7535 * i387-nat.h: Rename...
7536 * i387-tdep.h: ...to this.
7537 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
7538 * i386-linux-nat.c: Likewise.
7539 * i386bsd-nat.c: Likewise.
7540 * i386gnu-nat.c: Likewise.
7541 * i386nbsd-nat.c: Likewise.
7542 * i386v4-nat.c: Likewise.
7543 * x86-64-linux-nat.c: Likewise.
7544 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
7545 * config/i386/go32.mh (NATDEPFILES): Likewise.
7546 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
7547 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
7548 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
7549 * config/i386/linux.mh (NATDEPFILES): Likewise.
7550 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
7551 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7552 * config/i386/obsd.mh (NATDEPFILES): Likewise.
7553 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
7554
7555 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7556
7557 * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
7558 (alphanbsd-nat.o): Remove dependency list.
7559 (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
7560 * alphanbsd-nat.c: Delete. Contents moved to...
7561 * alphanbsd-tdep.c: ...here.
7562 (_initialize_alphanbsd_tdep): Register core functions.
7563 * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
7564
7565 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7566
7567 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
7568 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
7569 (alphanbsd-nat.o): Likewise.
7570 (alphabsd-tdep.o): New dependency list.
7571 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
7572 (fill_gregset): Use alphabsd_fill_reg.
7573 (supply_fpregset): Use alphabsd_supply_fpreg.
7574 (fill_fpregset): Use alphabsd_fill_fpreg.
7575 (fetch_inferior_registers): Use struct reg and struct fpreg
7576 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
7577 and alphabsd_supply_fpreg.
7578 (store_inferior_registers): Use struct reg and struct fpreg
7579 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
7580 and alphabsd_fill_fpreg.
7581 * alphabsd-tdep.c: New file.
7582 * alphabsd-tdep.h: New file.
7583 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
7584 (fetch_elfcore_registers): Use alphabsd_supply_reg and
7585 alphabsd_supply_fpreg.
7586 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
7587 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
7588
7589 2002-05-11 Eric Christopher <echristo@redhat.com>
7590
7591 * mips-tdep.c (mips_double_register_type): Fix thinko.
7592 (mips_single_register_type): Ditto.
7593 * MAINTAINERS: Add self.
7594
7595 2002-05-11 Mark Kettenis <kettenis@gnu.org>
7596
7597 * i387-nat.c (i387_supply_register, i387_fill_fsave,
7598 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
7599 right thing on architectures with different endianness and/or
7600 integer sizes.
7601
7602 2002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
7603
7604 From Christian Limpach <chris@Pin.LU>
7605 * configure.in: Change sed expression which comments out
7606 NATDEPFILES to also comment out continuation lines.
7607 * configure: Regenerate.
7608
7609 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
7610
7611 * sh-tdep.c: Clean up code erroneously reintroduced by previous
7612 big patch.
7613
7614 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
7615
7616 * sh-tdep.c: Include correct file.
7617
7618 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
7619
7620 New support for sh64-elf (sh5) target.
7621
7622 * configure.tgt: For sh64-elf target, default to sh-elf.
7623
7624 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
7625 (struct gdbarch_tdep): Add new fields for new registers and ABI
7626 info.
7627
7628 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
7629 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
7630 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
7631 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
7632 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
7633 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
7634 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
7635 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
7636 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
7637 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
7638 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
7639 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
7640 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
7641 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
7642 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
7643 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
7644 sh64_get_gdb_regnum, sh64_media_reg_base_num,
7645 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
7646 sign_extend, sh64_nofp_frame_init_saved_regs,
7647 sh64_init_extra_frame_info, sh64_get_saved_register,
7648 sh64_extract_struct_value_address, sh64_pop_frame,
7649 sh64_push_arguments, sh64_extract_return_value,
7650 sh64_store_return_value, sh64_show_media_regs,
7651 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
7652 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
7653 sh_sh64_register_virtual_type,
7654 sh_sh64_register_convert_to_virtual,
7655 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
7656 sh64_register_read, sh64_pseudo_register_write,
7657 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
7658 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
7659 sh64_do_pseudo_register, sh_compact_do_registers_info,
7660 sh64_do_registers_info, sh_gdbarch_init): New functions.
7661
7662 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
7663
7664 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
7665
7666 2002-05-10 Daniel Jacobowitz <drow@mvista.com>
7667
7668 * linespec.c (decode_line_1): Check for a double quote after
7669 a filename correctly.
7670
7671 2002-05-10 Jim Blandy <jimb@redhat.com>
7672
7673 Properly track the size of the current objfile's .debug_line section.
7674 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
7675 (DWARF_LINE_SIZE): New macro.
7676 (dwarf2_build_psymtabs_hard): Record the line section's size in
7677 the partial symbol table.
7678 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
7679 symbol table.
7680
7681 2002-05-10 Petr Sorfa <petrs@caldera.com>
7682
7683 * ia64-tdep.c: Handle breakpoints on L instruction type
7684 in MLX instruction bundle by moving the breakpoint to
7685 the third slot (X instruction type) as L holds only data.
7686
7687 2002-05-10 Kevin Buettner <kevinb@redhat.com>
7688
7689 * dbxread.c (discarding_local_symbols_complaint): New complaint.
7690 (process_one_symbol): Complain about discarding local symbols
7691 due to a misplaced N_LBRAC entry.
7692
7693 2002-05-09 Elena Zannoni <ezannoni@redhat.com>
7694
7695 From Daniel Berlin <dan@cgsoftware.com>
7696 * linespec.c (find_toplevel_char): '<' and '>' also increase and
7697 decrease the depth we are at, in the case of templates.
7698
7699 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
7700
7701 * mips-tdep.c (mips_float_register_type): New function.
7702 (mips_double_register_type): New function.
7703 (mips_print_register): Use them.
7704 (do_fp_register_row): Likewise.
7705
7706 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
7707
7708 * signals/signals.c (signals): Remove conditional compilation around
7709 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
7710 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
7711
7712 2002-05-09 Michael Snyder <msnyder@redhat.com>
7713
7714 * remote-rdp.c (remote_rdp_can_run): Remove.
7715
7716 2002-05-09 Tom Tromey <tromey@redhat.com>
7717
7718 * jv-valprint.c (java_val_print): Handle `char' as a special case
7719 of TYPE_CODE_INT.
7720
7721 2002-05-09 Michael Snyder <msnyder@redhat.com>
7722
7723 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
7724 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
7725 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
7726 str r(0123),[sp,#nn].
7727 (arm_skip_prologue): Ditto. Also make disassembly
7728 order-independent by placing it in a loop.
7729
7730 2002-05-06 Michael Snyder <msnyder@redhat.com>
7731
7732 * stabsread.c (read_type): Add recognition for new attribute:
7733 "@V;" means that an array type is actually a vector.
7734 This is analogous to the vector flag that's been added to dwarf2.
7735
7736 2002-05-09 Mark Kettenis <kettenis@gnu.org>
7737
7738 * i386-tdep.h (i386_abi): New enum.
7739 (struct gdbarch_tdep): Replace os_ident member with abi.
7740 (i386_gdbarch_register_os_abi): New prototype.
7741 * i386-tdep.c (i386_abi_names): New array.
7742 (process_note_abi_tag_sections): Removed.
7743 (process_note_sections): New function.
7744 (i386_elf_abi_from_note, i386_elf_abi): New functions.
7745 (struct i386_abi_handler): New struct.
7746 (i386_abi_handler_list): New variable.
7747 (i386_gdbarch_register_os_abi): New function.
7748 (i386_gdbarch_init): Adapt for the changes given above.
7749
7750 2002-05-08 Daniel Jacobowitz <drow@mvista.com>
7751
7752 * gregset.h: Say "GNU/Linux".
7753
7754 2002-05-08 Elena Zannoni <ezannoni@redhat.com>
7755
7756 * gdbtypes.c : Add new builtin type for 64 bit vectors.
7757 (build_gdbtypes): Build builtin_type_v2_float.
7758 (_initialize_gdbtypes): Register new builtin type.
7759
7760 2002-05-08 Andrew Cagney <ac131313@redhat.com>
7761
7762 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
7763 (clear_gdbarch_swap): New function.
7764 (initialize_non_multiarch): Call.
7765 (gdbarch_update_p): Before calling init(), swap out and clear the
7766 existing architecture.
7767 * gdbarch.c: Regenerate.
7768
7769 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7770
7771 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
7772 alphanbsd-tdep.c.
7773
7774 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7775
7776 * sh-nbsd-nat.c: Rename to...
7777 * shnbsd-nat.c: ...this.
7778 * sh-nbsd-tdep.c: Rename to...
7779 * shnbsd-tdep.c: ...this.
7780 * sh-nbsd-tdep.h: Rename to...
7781 * shnbsd-tdep.h: ...this.
7782 * config/sh/nbsd.mh: Use shnbsd-nat.o.
7783 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
7784
7785 2002-05-08 Richard Earnshaw <rearnsha@arm.com>
7786
7787 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
7788 concatenation for command help messages.
7789
7790 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7791
7792 * NEWS: Note new sh*-*-netbsdelf* configuration.
7793 * configure.host: Set gdb_host_cpu to sh for all sh*.
7794 (sh*-*-netbsdelf*): New host.
7795 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
7796 (sh*-*-netbsdelf*): New target.
7797 * sh-nbsd-nat.c: New file.
7798 * sh-nbsd-tdep.c: New file.
7799 * sh-nbsd-tdep.h: New file.
7800 * config/sh/nbsd.mh: New file.
7801 * config/sh/nbsd.mt: New file.
7802 * config/sh/nm-nbsd.h: New file.
7803 * config/sh/tm-nbsd.h: New file.
7804
7805 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7806
7807 * sh-tdep.c (sh_osabi_names): Declare.
7808 (process_note_abi_tag_sections): New function.
7809 (get_elfosabi): Ditto.
7810 (sh_gdbarch_register_os_abi): Ditto.
7811 (sh_dump_tdep): Ditto.
7812 _initialize_sh_tdep): Use gdbarch_register to register
7813 sh_gdbarch_init and sh_dump_tdep.
7814 * config/sh/tm-sh.h (sh_osabi): Declare.
7815 (gdbarch_tdep): Add sh_osabi and osabi_name members.
7816
7817 2002-05-07 Andrew Cagney <ac131313@redhat.com>
7818
7819 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
7820 (thumb_scan_prologue): Ditto.
7821 (arm_find_callers_reg): Ditto.
7822 (arm_frame_chain): Ditto.
7823 (arm_init_extra_frame_info): Ditto.
7824 (arm_frame_saved_pc): Ditto.
7825 (arm_pop_frame): Ditto.
7826 (arm_push_return_address): New function.
7827 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
7828 call_dummy_location, call_dummy_breakpoint_offset_p,
7829 call_dummy_breakpoint_offset, call_dummy_p,
7830 call_dummy_stack_adjust_p, call_dummy_words,
7831 sizeof_call_dummy_words, call_dummy_start_offset,
7832 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
7833 call_dummy_address, push_return_address and push_dummy_frame for
7834 generic dummy frames.
7835
7836 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
7837
7838 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
7839 size computation for alloca.
7840 (sh_fp_frame_init_saved_regs): Likewise.
7841
7842 2002-05-07 Richard Earnshaw <rearnsha@arm.com>
7843
7844 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
7845 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
7846 * arm-tdep.c (arm_store_return_value): Use them.
7847 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
7848 * remote-rdp.c (remote_rdp_fetch_register): Use
7849 ARM_MAX_REGISTER_RAW_SIZE.
7850 (remote_rdp_store_register): Likewise.
7851
7852 2002-05-07 Michal Ludvig <mludvig@suse.cz>
7853
7854 * dwarf2cfi.c: Code cleanup, removed unused variables,
7855 added default labels to switch {} statements.
7856 * x86-64-tdep.c: Ditto.
7857 * x86-64-linux-nat.c: Ditto.
7858
7859 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
7860
7861 * solib.h: Protect against multiple inclusion.
7862
7863 2002-05-06 Jim Blandy <jimb@redhat.com>
7864
7865 Add first preprocessor macro-expansion files.
7866 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
7867 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
7868 (splay_tree_h, macroexp_h, macrotab_h): New variable.
7869 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
7870 (COMMON_OBS): Add macrotab.o, macroexp.o.
7871 (macroexp.o, macrotab.o): New rules.
7872
7873 Separate the job of reading the line number info statement program
7874 header (...expialidocious) out into its own function.
7875 * dwarf2read.c (struct line_head, struct filenames, struct
7876 directories): Replace with...
7877 (struct line_header): New structure, containing the full
7878 contents of the statement program header, including the
7879 include directory and file name tables.
7880 (read_file_scope): If we have line number info, instead of just
7881 calling dwarf_decode_lines to do all the work, call
7882 dwarf_decode_line_header first to get a `struct line_header'
7883 containing the data in the statement program header, and then
7884 pass that to dwarf_decode_lines, which will pick up where that
7885 left off. Be sure to clean up the `struct line_header' object.
7886 (dwarf_decode_line_header, free_line_header, add_include_dir,
7887 add_file_name): New functions.
7888 (dwarf_decode_lines): Move all the code to read the statement
7889 program header into dwarf_decode_line_header. Take the line
7890 header it built as the first argument, instead of the offset to
7891 the compilation unit's line number info. Use the new `struct
7892 line_header' type instead of the old structures. No need to do
7893 cleanups here now, since we don't allocate anything.
7894 (dwarf2_statement_list_fits_in_line_number_section,
7895 dwarf2_line_header_too_long): New complaints.
7896
7897 2002-05-06 Elena Zannoni <ezannoni@redhat.com>
7898
7899 * gdbtypes.c (init_vector_type): New function.
7900 (build_builtin_type_vec128): Simplify the representation of SIMD
7901 registers.
7902 (build_gdbtypes): Initialize new builtin vector types.
7903 (_initialize_gdbtypes): Register new vector types with gdbarch.
7904 (builtin_type_v4_float, builtin_type_v4_int32,
7905 builtin_type_v8_int16, builtin_type_v16_int8,
7906 builtin_type_v2_int32, builtin_type_v4_int16,
7907 builtin_type_v8_int8): New (renamed) SIMD types.
7908
7909 2002-05-06 Mark Kettenis <kettenis@gnu.org>
7910
7911 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
7912 (i387_fill_fxsave): Likewise.
7913
7914 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
7915
7916 * alpha-tdep.c (alpha_extract_return_value): Don't use
7917 non-constant array size in prototype.
7918
7919 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7920
7921 From Brian Taylor <briant at model dot com>:
7922 * ui-out.c (ui_out_field_core_addr): Use the function
7923 longest_local_hex_string_custom'to format addresses > 32 bits
7924 wide.
7925
7926 * ui-out.c (ui_out_field_core_addr): Update comment.
7927
7928 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7929
7930 * stack.c (select_and_print_frame): Make static. Delete the
7931 parameter `level'.
7932 (func_command): Update call.
7933 (select_frame_command): Delete code computing the frame level.
7934 * frame.h (select_and_print_frame): Delete declaration.
7935
7936 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7937
7938 * sparc-tdep.c (sparc_get_saved_register): Comment why
7939 get_prev_frame call is safe.
7940
7941 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7942
7943 * frame.h (select_frame): Delete level parameter.
7944 * stack.c (select_frame): Update. Use frame_relative_level to
7945 obtain the frame's level.
7946 (select_and_print_frame): Update call.
7947 (select_frame_command): Ditto.
7948 (up_silently_base): Ditto.
7949 (down_silently_base): Ditto.
7950 * ocd.c (ocd_start_remote): Ditto.
7951 * remote-rdp.c (remote_rdp_open): Ditto.
7952 * remote-mips.c (mips_initialize): Ditto.
7953 (common_open): Ditto.
7954 * remote-e7000.c (e7000_start_remote): Ditto.
7955 * m3-nat.c (select_thread): Ditto.
7956 * hppa-tdep.c (child_get_current_exception_event): Ditto.
7957 (child_get_current_exception_event): Ditto.
7958 * varobj.c (varobj_create): Ditto.
7959 (varobj_update): Ditto.
7960 (c_value_of_root): Ditto.
7961 * tracepoint.c (finish_tfind_command): Ditto.
7962 * corelow.c (core_open): Ditto.
7963 * arch-utils.c (generic_prepare_to_proceed): Ditto.
7964 * thread.c (info_threads_command): Ditto.
7965 (switch_to_thread): Ditto.
7966 * infrun.c (normal_stop): Ditto.
7967 (restore_selected_frame): Ditto.
7968 (restore_inferior_status): Ditto.
7969 * breakpoint.c (insert_breakpoints): Ditto.
7970 (watchpoint_check): Ditto.
7971 (bpstat_stop_status): Ditto.
7972 (do_enable_breakpoint): Ditto.
7973 * blockframe.c (flush_cached_frames): Ditto.
7974 (reinit_frame_cache): Ditto.
7975
7976 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7977
7978 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
7979 maintainer.
7980
7981 2002-05-04 Jim Blandy <jimb@redhat.com>
7982
7983 * gdbtypes.c (replace_type): Doc fix.
7984
7985 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7986
7987 * valprint.c (strcat_longest): Delete commented out function.
7988 Update copyright.
7989
7990 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7991
7992 * MAINTAINERS: Mark a29k as deleted.
7993 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
7994 Move new configurations to the top.
7995 * configure.tgt: Remove a29k.
7996 * config/a29k/tm-vx29k.h: Delete.
7997 * config/a29k/vx29k.mt: Delete.
7998 * config/a29k/tm-a29k.h: Delete.
7999 * config/a29k/a29k-udi.mt: Delete.
8000 * config/a29k/a29k.mt: Delete.
8001 * a29k-tdep.c: Delete.
8002 * remote-udi.c: Delete.
8003 * remote-mm.c: Delete.
8004 * remote-eb.c: Delete.
8005 * remote-adapt.c: Delete.
8006 * Makefile.in: Remove obsolete code.
8007 * config/s390/s390x.mt: Ditto.
8008 * config/s390/s390.mt: Ditto.
8009 * config/sparc/sparclynx.mh: Ditto.
8010 * config/sparc/linux.mh: Ditto.
8011 * config/pa/hppaosf.mh: Ditto.
8012 * config/pa/hppabsd.mh: Ditto.
8013 * config/ns32k/nbsd.mt: Ditto.
8014 * config/mips/vr5000.mt: Ditto.
8015 * config/m68k/sun3os4.mh: Ditto.
8016 * config/m68k/nbsd.mt: Ditto.
8017 * config/m68k/m68klynx.mh: Ditto.
8018 * config/m32r/m32r.mt: Ditto.
8019 * config/i386/x86-64linux.mt: Ditto.
8020 * config/i386/nbsdelf.mt: Ditto.
8021 * config/i386/nbsd.mt: Ditto.
8022 * config/i386/i386lynx.mh: Ditto.
8023
8024 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8025
8026 * target.c (debug_print_register): New function. Handle oversize
8027 registers.
8028 (debug_to_fetch_registers): Call.
8029 (debug_to_store_registers): Call.
8030
8031 2002-05-03 Jim Blandy <jimb@redhat.com>
8032
8033 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
8034 (read_type): Doc fix.
8035 * gdbtypes.c (replace_type): Doc fix.
8036
8037 * stabsread.c (multiply_defined_struct): New complaint.
8038 (read_struct_type): If the type we were passed isn't empty, or
8039 incomplete, don't read the new struct type into it; complain,
8040 and return the original type unchanged. Take a new `type_code'
8041 argument, which is the type code for the new type.
8042 (read_type): Rather than storing the type's type code here, pass
8043 it as an argument to read_struct_type, and let that take care of
8044 storing it. That way, we don't overwrite the original type code,
8045 so read_struct_type can use it to decide whether we're overwriting
8046 something we shouldn't.
8047 (complain_about_struct_wipeout): New function.
8048
8049 2002-05-03 Andrew Cagney <ac131313@redhat.com>
8050
8051 * gdbarch.sh: Assert that gdbarch is non-NULL.
8052 * gdbarch.c: Regenerate.
8053
8054 2002-05-03 Jason Merrill <jason@redhat.com>
8055
8056 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
8057 and return NULL.
8058
8059 2002-05-03 Michal Ludvig <mludvig@suse.cz>
8060
8061 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
8062 (x86_64_dwarf2gdb_regno_map_length),
8063 (x86_64_dwarf2_reg_to_regnum): Added.
8064 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
8065 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
8066 (_initialize_x86_64_tdep): Synced with the change above.
8067 (x86_64_skip_prologue): Reformulated message.
8068
8069 2002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
8070
8071 * f-exp.y: Also use new prev_lexptr variable
8072 to improve error reporting. Based on Michael Snyder
8073 2002-04-24 dated patch to c-exp.y.
8074 * jv-exp.y: Likewise.
8075 * m2-exp.y: Likewise.
8076
8077 2002-05-02 Elena Zannoni <ezannoni@redhat.com>
8078
8079 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
8080 we are dealing with vectors.
8081
8082 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8083
8084 * config/m68k/tm-nbsd.h: Obvious fix,
8085 correct machine name.
8086
8087 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8088
8089 * p-typeprint.c (pascal_type_print_base): Add support
8090 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
8091
8092 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8093
8094 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
8095 for fondamental pascal 'char' type.
8096
8097 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8098
8099 * p-lang.h (is_pascal_string_type): Declaration changed,
8100 new sixth argument of type char ** added.
8101 * p-lang.c (is_pascal_string_type): Implementation
8102 changed. Args length_pos, length_size, string_pos, char_size
8103 can now be NULL. New argument arrayname set to the field
8104 name of the char array. Return value set to char array
8105 field index plus one.
8106 * p-valprint.c (pascal_val_print): Adapt to new declaration of
8107 is_pascal_string_type function.
8108
8109 2002-05-02 Andrew Cagney <cagney@redhat.com>
8110
8111 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
8112 <cagney@redhat.com> change.
8113 * gdbarch.c: Regenerate.
8114
8115 2002-05-02 Andrew Cagney <cagney@redhat.com>
8116
8117 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
8118 before probing for a new one. Detect errorenous gdbarch_init
8119 functions.
8120 * gdbarch.c: Regenerate.
8121
8122 2002-05-01 Andrew Cagney <cagney@redhat.com>
8123
8124 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
8125 * config/mcore/tm-mcore.h: Ditto. Update copyright.
8126 * config/v850/tm-v850.h: Ditto. Update copyright.
8127
8128 2002-04-30 Andrew Cagney <ac131313@redhat.com>
8129
8130 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
8131 current_gdbarch.
8132
8133 2002-04-30 Michael Snyder <msnyder@redhat.com>
8134
8135 * arm-tdep.c: Whitespace clean-ups.
8136 (arm_skip_prologue): Fix thinko; two lines
8137 should have been removed as part of 4/24 change.
8138
8139 2002-04-30 Kevin Buettner <kevinb@redhat.com>
8140
8141 * rs6000-tdep.c: Added comment describing how fpscr register
8142 numbers were chosen.
8143
8144 2002-04-30 Michael Snyder <msnyder@redhat.com>
8145
8146 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
8147
8148 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
8149
8150 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
8151 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
8152 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
8153
8154 2002-04-29 Kevin Buettner <kevinb@redhat.com>
8155
8156 From Louis Hamilton <hamilton@redhat.com>:
8157 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
8158 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
8159 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
8160 not bfd-private xcoff data, to determine wordsize.
8161 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
8162
8163 2002-04-29 Andrew Cagney <ac131313@redhat.com>
8164
8165 GDB 5.2 released from 5.2 branch.
8166
8167 2002-04-29 Michal Ludvig <mludvig@suse.cz>
8168
8169 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
8170 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
8171 (x86_64_register_info_table): Added comments with register numbers.
8172
8173 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
8174
8175 * rs6000-tdep.c (rs6000_extract_return_value,
8176 rs6000_store_return_value): Handle returning vectors.
8177 (rs6000_gdbarch_init): Use
8178 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
8179 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
8180 New function.
8181 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
8182 vectors.
8183 (ppc_sysv_abi_push_arguments): Handle vector parameters.
8184 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
8185
8186 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
8187
8188 * hpread.c (hpread_psymtab_to_symtab_1,
8189 hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
8190 with fprintf_unfiltered (gdb_stderr,...).
8191
8192 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
8193
8194 * remote-array.c (printf_monitor, write_monitor,
8195 array_insert_breakpoint, array_remove_breakpoint ):
8196 Replace fprintf (stderr,...
8197 with fprintf_unfiltered (gdb_stderr,....
8198 * remote-es.c: Likewise.
8199 * remote-os9k.c: Likewise.
8200 * remote-st.c: Likewise.
8201
8202 2002-04-28 Andreas Schwab <schwab@suse.de>
8203
8204 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
8205 linux-proc.o and gcore.o.
8206
8207 2002-04-26 Michal Ludvig <mludvig@suse.cz>
8208
8209 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
8210 code without frame pointers.
8211
8212 2002-04-26 Andrew Cagney <ac131313@redhat.com>
8213
8214 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
8215 ON_STACK is needed.
8216
8217 2002-04-26 Ben Elliston <bje@redhat.com>
8218
8219 * target.c (do_xfer_memory): Correct reference to the new option
8220 "trust-readonly-sections".
8221
8222 2002-04-26 Elena Zannoni <ezannoni@redhat.com>
8223
8224 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
8225 * gdbtypes.c (recursive_dump_type): Output the vector flag.
8226 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
8227 vectors.
8228 (read_array_type): Record the fact that this array type is really a
8229 vector (i.e. are passed in by value).
8230
8231 2002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
8232
8233 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
8234 * alpha-tdep.c (alpha_sigcontext_addr): New function.
8235 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
8236 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
8237 * alpha-linux-tdep.c: Include frame.h.
8238 (alpha_linux_sigcontext_addr): New function.
8239 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
8240 alpha_linux_sigcontext_addr.
8241 * alpha-osf1-tdep.c: Include gdbcore.h.
8242 (alpha_osf1_sigcontext_addr): New function.
8243 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
8244 alpha_osf1_sigcontext_addr.
8245 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
8246 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
8247
8248 2002-04-26 Andrew Cagney <ac131313@redhat.com>
8249
8250 * stack.c (selected_frame_level):
8251 (select_frame): Do not set selected_frame_level.
8252 * frame.h (selected_frame_level): Delete declaration.
8253
8254 2002-04-26 Andrew Cagney <ac131313@redhat.com>
8255
8256 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
8257 convert_from_func_ptr-addr when AIX / PowerOpen.
8258
8259 2002-04-25 Andrew Cagney <ac131313@redhat.com>
8260
8261 * valops.c (hand_function_call): Call
8262 generic_save_call_dummy_addr.
8263 * frame.h (generic_save_call_dummy_addr): Declare.
8264 * blockframe.c (struct dummy_frame): Add fields call_lo and
8265 call_hi.
8266 (generic_find_dummy_frame): Check for PC in range call_lo to
8267 call_hi instead of entry_point_address.
8268 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
8269 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
8270 (generic_save_call_dummy_addr): New function.
8271
8272 2002-04-24 David S. Miller <davem@redhat.com>
8273
8274 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
8275 sparc_skip_prologue.
8276 (sparc_skip_prologue): Kill frameless_p arg, and use line number
8277 information to find prologue when possible.
8278 (sparc_prologue_frameless_p): Call examine_prologue directly.
8279 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
8280 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
8281 second argument.
8282 (SKIP_PROLOGUE): Likewise.
8283
8284 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8285
8286 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
8287 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
8288 indicate that the condition it was testing is always true.
8289 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
8290 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
8291 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
8292
8293 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8294
8295 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
8296 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
8297 tdep->jb_pc and tdep->jb_elt_size.
8298 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
8299 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
8300 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
8301 * alpha-nat.c (get_longjmp_target): Remove.
8302 (JB_ELEMENT_SIZE): Ditto.
8303 (JB_PC): Ditto.
8304 * alpha-tdep.c (alpha_get_longjmp_target): New function.
8305 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
8306 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
8307 to alpha_get_longjmp_target.
8308 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
8309 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
8310 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
8311
8312 2002-04-25 Andrew Cagney <ac131313@redhat.com>
8313
8314 * README: Update to GDB 5.2.
8315
8316 2002-04-25 Andrew Cagney <ac131313@redhat.com>
8317
8318 * gdbarch.sh (LC_ALL): Set to `c'.
8319
8320 2002-04-25 Theodore A. Roth <troth@verinet.com>
8321
8322 * avr-tdep.c: Ran through gdb_indent.sh.
8323
8324 2002-04-25 Theodore A. Roth <troth@verinet.com>
8325
8326 * MAINTAINERS: Add myself as AVR maintainer.
8327 * NEWS: Note new target avr.
8328
8329 2002-04-25 Theodore A. Roth <troth@verinet.com>
8330
8331 * Makefile.in: Add support for AVR target.
8332 * configure.tgt: Add support for AVR target.
8333 * avr-tdep.c: New file
8334 * config/avr/avr.mt: New file.
8335
8336 2002-04-25 Theodore A. Roth <troth@verinet.com>
8337
8338 * MAINTAINERS: Add myself to write-after-approval.
8339
8340 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
8341
8342 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
8343 with fprintf_unfiltered (gdb_stderr,....
8344
8345 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
8346
8347 Fix PR gdb/508.
8348 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
8349
8350 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
8351
8352 * p-exp.y: Also use new prev_lexptr variable
8353 to improve error reporting. Based on Michael Snyder
8354 2002-04-24 dated patch to c-exp.y.
8355
8356 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8357
8358 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
8359 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
8360 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
8361 to 0.
8362 * config/alpha/tm-alpha.h: Remove forward decls of struct type
8363 and struct value.
8364 (FUNCTION_START_OFFSET): Remove.
8365 (BREAKPOINT): Ditto.
8366
8367 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8368
8369 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
8370 * NEWS: Ditto.
8371
8372 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8373
8374 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
8375 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
8376 alpha_linux_pc_in_sigtramp.
8377 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
8378 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
8379 alpha_osf1_pc_in_sigtramp.
8380 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
8381 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
8382 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
8383 alphafbsd_pc_in_sigtramp.
8384 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
8385 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
8386 alphanbsd_pc_in_sigtramp.
8387 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
8388 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
8389
8390 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8391
8392 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
8393
8394 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8395
8396 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
8397 alphanbsd-tdep.c.
8398 (alphanbsd-nat.o): New dependency list.
8399 (alphanbsd-tdep.o): Ditto.
8400 * NEWS: Note new native NetBSD/alpha configuration.
8401 * alphanbsd-nat.c: New file.
8402 * alphanbsd-tdep.c: Ditto.
8403 * configure.host (alpha*-*-netbsd*): New host.
8404 * configure.tgt (alpha*-*-netbsd*): New target.
8405 * config/alpha/nbsd.mh: New file.
8406 * config/alpha/nbsd.mt: Ditto.
8407 * config/alpha/nm-nbsd.h: Ditto.
8408 * config/alpha/tm-nbsd.h: Ditto.
8409
8410 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8411
8412 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
8413 (alpha-osf1-tdep.o): New dependency list.
8414 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
8415 and skip_sigtramp_frame members.
8416 * alpha-linux-tdep.c: Include gdbcore.h.
8417 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
8418 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
8419 * alpha-osf1-tdep.c: New file.
8420 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
8421 alpha-osf1-dep.c.
8422 (alpha_frame_past_sigtramp_frame): New function.
8423 (alpha_dynamic_sigtramp_offset): Ditto.
8424 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
8425 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
8426 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
8427 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
8428 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
8429 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
8430 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
8431 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
8432 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
8433 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
8434 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
8435 to find_solib_trampoline_target.
8436 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
8437 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
8438 (SKIP_TRAMPOLINE_CODE): Remove.
8439 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8440 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8441 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
8442 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
8443 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
8444 (PROC_SIGTRAMP_MAGIC): Ditto.
8445 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8446 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8447 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8448 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
8449 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
8450
8451 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8452
8453 * NEWS: Note that Alpha targets are now multi-arch.
8454
8455 2002-04-24 Michael Snyder <msnyder@redhat.com>
8456
8457 * parser-defs.h (prev_lexptr): New external variable.
8458 * parse.c (parse_exp_1): Set prev_lexptr to null before
8459 calling the language-specific parser.
8460 * c-exp.y (yylex): Set prev_lexptr to start of current token.
8461 (yyerror): Use prev_lexptr in error reporting.
8462
8463 2002-04-24 Daniel Jacobowitz <drow@mvista.com>
8464
8465 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
8466 * gregset.h: If FILL_FPXREGSET is defined, provide
8467 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
8468 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
8469 is defined, call fill_fpxregset.
8470
8471 2002-04-24 Roland McGrath <roland@frob.com>
8472
8473 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
8474 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
8475 (supply_gregset, supply_fpregset): New functions.
8476
8477 * gnu-nat.c (gnu_find_memory_regions): New function.
8478 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
8479 (gnu_xfer_memory): Add a cast.
8480
8481 2002-04-24 Michael Snyder <msnyder@redhat.com>
8482
8483 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
8484 loop. Add handling for "str lr, [sp, #-4]!" and for saves
8485 of argument regs ("str r(0123), [r11, #-nn"]).
8486 (arm_skip_prologue): Better handling for frameless functions.
8487 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
8488 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
8489
8490 Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
8491
8492 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
8493 NUM_PSEUDO_REGS can be used.
8494
8495 2002-04-24 Andrew Cagney <ac131313@redhat.com>
8496
8497 * arch-utils.h: Update copyright.
8498
8499 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
8500 * gdbarch.h, gdbarch.c: Re-generate.
8501
8502 * inferior.h (IN_SIGTRAMP): Delete definition.
8503 * arch-utils.c (legacy_pc_in_sigtramp): New function.
8504 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
8505
8506 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
8507 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
8508 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
8509 (find_proc_framesize): Ditto.
8510 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
8511 (alpha_init_extra_frame_info): Ditto.
8512 * infrun.c (handle_inferior_event): Ditto.
8513 (handle_inferior_event): Ditto.
8514 (check_sigtramp2): Ditto.
8515 * blockframe.c (create_new_frame): Ditto.
8516 (get_prev_frame): Ditto.
8517 * ppc-linux-tdep.c: Update comments.
8518 * i386-linux-tdep.c: Update comments.
8519 * breakpoint.c (bpstat_what): Update comment.
8520
8521 2002-04-24 David S. Miller <davem@redhat.com>
8522
8523 * i960-tdep.c (register_in_window_p): New function.
8524 (i960_find_saved_register): Use it instead of
8525 REGISTER_IN_WINDOW_P.
8526 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
8527
8528 * symtab.h (find_stab_function_addr): Kill extern.
8529 * minsyms.c (find_stab_function_addr): Remove from here...
8530 * dbxread.c: ... to here, and mark it static.
8531
8532 2002-04-20 David S. Miller <davem@redhat.com>
8533
8534 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
8535 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
8536
8537 2002-04-21 David S. Miller <davem@redhat.com>
8538
8539 * remote-vxsparc.c (vx_read_register): Fix typo, we want
8540 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
8541 (vx_write_register): Likewise.
8542
8543 2002-04-23 J. Brobecker <brobecker@gnat.com>
8544
8545 * source.c (is_regular_file): New function.
8546 (openp): Check wether file to open is a regular file
8547 to avoid opening directories.
8548
8549 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8550
8551 * findvar.c (extract_signed_integer): Cast printf argument
8552 to suppress format warning.
8553 (extract_unsigned_integer): Likewise.
8554 * infcmd.c (registers_info): Likewise.
8555 * top.c (get_prompt_1): Likewise.
8556 * valops.c (value_assign): Likewise.
8557 * valprint.c (print_decimal): Likewise.
8558
8559 2002-04-22 H.J. Lu (hjl@gnu.org)
8560
8561 * c-exp.y (typebase): Support
8562
8563 [long|long long|short] [signed|unsigned] [int|]
8564
8565 and
8566
8567 signed [long|long long|short] int
8568
8569 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8570
8571 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
8572 and vax-tdep.h.
8573 * vax-tdep.h: New file.
8574 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
8575 Make several routines static.
8576 (vax_get_saved_register): New function.
8577 (vax_gdbarch_init): New function.
8578 (_initialize_vax_tdep): Register vax_gdbarch_init.
8579 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
8580 Remove macros now under the control of gdbarch.
8581
8582 2002-04-22 Michael Snyder <msnyder@redhat.com>
8583
8584 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
8585 Some whitespace and coding standards tweaks.
8586
8587 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8588
8589 * vax-tdep.c: Include regcache.h.
8590 (vax_call_dummy_words): New.
8591 (sizeof_vax_call_dummy_words): New.
8592 (vax_fix_call_dummy): New function.
8593 (vax_saved_pc_after_call): Ditto.
8594 * config/vax/tm-vax.h: Don't include regcache.h.
8595 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
8596 (CALL_DUMMY): Remove.
8597 (CALL_DUMMY_WORDS): Define.
8598 (SIZEOF_CALL_DUMMY_WORDS): Define.
8599 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
8600
8601 2002-04-18 Michael Snyder <msnyder@redhat.com>
8602
8603 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
8604
8605 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8606
8607 * vax-tdep.c (vax_frame_chain): New function.
8608 (vax_push_dummy_frame): Ditto.
8609 (vax_pop_frame): Ditto.
8610 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
8611 (FRAMELESS_FUNCTION_INVOCATION): Use
8612 generic_frameless_function_invocation_not.
8613 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
8614 (POP_FRAME): Use vax_pop_frame.
8615
8616 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8617
8618 * vax-tdep.c (vax_store_struct_return): New function.
8619 (vax_extract_return_value): Ditto.
8620 (vax_store_return_value): Ditto.
8621 (vax_extract_struct_value_address): Ditto.
8622 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
8623 vax_store_struct_return.
8624 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
8625 (STORE_RETURN_VALUE): Use vax_store_return_value.
8626 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
8627
8628 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8629
8630 * vax-tdep.c (vax_frame_saved_pc): New function.
8631 (vax_frame_args_address_correct): Ditto.
8632 (vax_frame_args_address): Ditto.
8633 (vax_frame_locals_address): Ditto.
8634 (vax_frame_num_args): Move code to be in proximity to
8635 other frame-related functions.
8636 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
8637 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
8638 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
8639 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
8640 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
8641
8642 2002-04-22 H.J. Lu (hjl@gnu.org)
8643
8644 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
8645 includedir.
8646
8647 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8648
8649 * vax-tdep.c (vax_frame_init_saved_regs): New function.
8650 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
8651 (FRAME_INIT_SAVED_REGS): New macro.
8652
8653 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8654
8655 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
8656
8657 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8658
8659 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
8660 where needed.
8661 (fetch_osf_core_registers): Likewise.
8662 (supply_gregset): Likewise.
8663
8664 2002-04-22 J. Brobecker <brobecker@gnat.com>
8665
8666 * symfile.h (get_section_index): Define.
8667 * symfile.c (get_section_index): New function.
8668 * mdebugread.c (SC_IS_SBSS): New macro.
8669 (SC_IS_BSS): Return true for the scBss storage class only, as
8670 the scSBss storage class refers to the .sbss section.
8671 (parse_partial_symbols): Discard the symbols which associated
8672 section does not exist.
8673 Make sure to use the .sbss section index for symbols which
8674 storage class is scBss, rather than using the .bss section index.
8675
8676 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8677
8678 * vax-tdep.c: Update copyright years.
8679 (vax_register_name): New function.
8680 (vax_register_byte): Ditto.
8681 (vax_register_raw_size): Ditto.
8682 (vax_register_virtual_size): Ditto.
8683 (vax_register_virtual_type): Ditto.
8684 * config/vax/tm-vax.h: Update copyright years.
8685 (REGISTER_NAMES): Remove.
8686 (REGISTER_NAME): Define.
8687 (REGISTER_BYTE): Use vax_register_byte.
8688 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
8689 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
8690 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
8691
8692 2002-04-21 Andrew Cagney <ac131313@redhat.com>
8693
8694 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
8695 declaration
8696 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
8697
8698 2002-04-21 David S. Miller <davem@redhat.com>
8699
8700 * arch-utils.c (generic_prologue_frameless_p): Kill
8701 SKIP_PROLOGUE_FRAMELESS_P code.
8702 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
8703 references.
8704 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
8705 * arc-tdep.c (arc_prologue_frameless_p): Implement.
8706 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
8707 references.
8708 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
8709 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
8710 (sparc_gdbarch_init): Pass it to
8711 set_gdbarch_prologue_frameless_p.
8712
8713 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8714
8715 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
8716 (alphabsd-nat.o): New dependency list.
8717
8718 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8719
8720 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
8721 alphafbsd-tdep.c.
8722 (alpha-linux-tdep.o): New dependency list.
8723 (alphafbsd-tdep.o): Likewise.
8724
8725 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8726
8727 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
8728 to here...
8729 * alpha-tdep.c: ...from here.
8730 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
8731
8732 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8733
8734 * config/alpha/tm-alpha.h: Move alpha_software_single_step
8735 prototype from here...
8736 * alpha-tdep.h: ...to here.
8737
8738 2002-04-21 Andrew Cagney <ac131313@redhat.com>
8739
8740 * frame.h (selected_frame_level): Document as deprecated.
8741 (frame_relative_level): Declare.
8742 * stack.c (frame_relative_level): New function.
8743 (selected_frame_level): Document as deprecated.
8744 (select_frame): Do not set the selected_frame_level.
8745
8746 * stack.c (frame_info, record_selected_frame): Update.
8747 (frame_command, current_frame_command): Update.
8748 (up_silently_base, up_command, down_silently_base): Update.
8749 (down_command): Update.
8750 * inflow.c (kill_command): Update.
8751 * tracepoint.c (finish_tfind_command): Update.
8752 * corelow.c (core_open): Update.
8753 * thread.c (info_threads_command): Update.
8754 (do_captured_thread_select): Update.
8755 * infcmd.c (finish_command): Update.
8756 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
8757
8758 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8759
8760 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
8761
8762 2002-04-21 Andrew Cagney <ac131313@redhat.com>
8763
8764 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
8765 type const.
8766
8767 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8768
8769 * alphafbsd-tdep.c: Update copyright years. Include
8770 alpha-tdep.h.
8771 (alphafbsd_use_struct_convention): Make static.
8772 (alphafbsd_init_abi): New function.
8773 (_initialize_alphafbsd_tdep): New function.
8774 * config/alpha/tm-fbsd.h: Update copyright years.
8775 (USE_STRUCT_CONVENTION): Remove.
8776
8777 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8778
8779 * alpha-tdep.c (alpha_abi_handler): New structure to describe
8780 an Alpha ABI variant.
8781 (alpha_abi_handler_list): Declare.
8782 (alpha_gdbarch_register_os_abi): New function.
8783 (alpha_gdbarch_init): Give registered ABI variant handlers a
8784 chance to tweak the gdbarch once we have set up defaults.
8785 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
8786
8787 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8788
8789 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
8790 to standard_coerce_float_to_double.
8791 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
8792
8793 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8794
8795 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
8796 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
8797 from gdbarch_tdep rather than a constant.
8798 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
8799 the default text address for all Alpha Unix ABIs.
8800 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
8801 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
8802
8803 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8804
8805 * alpha-tdep.h: New file. Includes several Alpha target constants
8806 taken from...
8807 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
8808 let gdbarch deal with.
8809 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
8810 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
8811 to dependency list.
8812 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
8813 Alpha target register names.
8814 * alphabsd-nat.c: Likewise.
8815 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
8816 Alpha target register names. Make serveral routines static.
8817 (alpha_get_saved_register): New function.
8818 (alpha_abi_names): New.
8819 (process_note_abi_tag_sections): New function.
8820 (get_elfosabi): New function.
8821 (alpha_gdbarch_init): New function.
8822 (alpha_dump_tdep): New function.
8823 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
8824
8825 2002-04-21 Andrew Cagney <ac131313@redhat.com>
8826
8827 * frame.c (find_saved_register): Delete #ifdef
8828 HAVE_REGISTER_WINDOWS code.
8829 * config/sparc/tm-sparc.h: Update comments.
8830 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
8831
8832 2002-04-21 Andrew Cagney <ac131313@redhat.com>
8833
8834 * i960-tdep.c (i960_find_saved_register): New function.
8835 (i960_get_saved_register): New function.
8836 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
8837 (i960_get_saved_register): Declare.
8838 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
8839
8840 2002-04-20 David S. Miller <davem@redhat.com>
8841
8842 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
8843
8844 2002-04-20 Andrew Cagney <ac131313@redhat.com>
8845
8846 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
8847 instead of NUM_PSEUDO_REGS.
8848
8849 2002-04-20 David S. Miller <davem@redhat.com>
8850
8851 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
8852 GDB_MULTI_ARCH_PARTIAL
8853 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
8854 define, let tm-sp64.h do it.
8855
8856 2002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
8857
8858 * frame.c (find_saved_register): Avoid a NULL pointer
8859 dereference and actually walk the frame list.
8860
8861 2002-04-20 Andrew Cagney <ac131313@redhat.com>
8862
8863 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
8864 sorted in most most-recent-used order. Document.
8865 * gdbarch.h, gdbarch.c: Regenerate.
8866
8867 2002-04-19 Andrew Cagney <ac131313@redhat.com>
8868
8869 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
8870 instead of ->prev.
8871 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
8872 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
8873 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
8874 instead of ->prev.
8875
8876 2002-04-19 Elena Zannoni <ezannoni@redhat.com>
8877
8878 Fix PR gdb/471.
8879 * gdbtypes.c (init_simd_type): Rewrite using new functions.
8880 (build_builtin_type_vec128): Ditto.
8881 (append_composite_type_field): Fix calculation of type length in
8882 union case.
8883
8884 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
8885
8886 * config/djgpp/README: Update.
8887
8888 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
8889 compiler warnings.
8890
8891 2002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
8892
8893 * alpha-tdep.c (setup_arbitrary_frame): Rename...
8894 (alpha_setup_arbitrary_frame): ...to this.
8895 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
8896 for alpha_setup_arbitrary_frame.
8897
8898 2002-04-18 Andrew Cagney <cagney@redhat.com>
8899
8900 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
8901 * gdbarch.h, gdbarch.c: Regenerate.
8902
8903 * defs.h (breakpoint_from_pc_fn): Delete type definition.
8904 * target.h (memory_breakpoint_from_pc): Update declaration.
8905 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
8906
8907 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
8908 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
8909 * mem-break.c (memory_breakpoint_from_pc): Ditto.
8910 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
8911 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
8912 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
8913 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
8914 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
8915 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
8916 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
8917 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
8918 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
8919
8920 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
8921 const pointer.
8922 * monitor.c (monitor_insert_breakpoint): Ditto.
8923 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
8924
8925 * config/mcore/tm-mcore.h: Update copyright.
8926 * mem-break.c: Ditto.
8927 * xstormy16-tdep.c: Ditto.
8928
8929 2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
8930
8931 * p-exp.y: Add precedence rule for '^' token.
8932 This removes the shift/reduce conflicts.
8933 Remove the comment concerning these shift/reduce conflicts.
8934
8935 2002-04-18 Elena Zannoni <ezannoni@redhat.com>
8936
8937 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
8938 (registers_powerpc_nofp): New register set for processors
8939 without floating point unit.
8940
8941 2002-04-18 David S. Miller <davem@redhat.com>
8942
8943 * MAINTAINERS: Add myself to write-after-approval.
8944
8945 2002-04-17 Michael Snyder <msnyder@redhat.com>
8946
8947 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
8948
8949 2002-04-17 Andrew Cagney <ac131313@redhat.com>
8950
8951 * rs6000-tdep.c (frame_initial_stack_address): Use
8952 frame_register_read to read the alloca_reg.
8953
8954 2002-04-17 Andrew Cagney <ac131313@redhat.com>
8955
8956 * frame.c (find_saved_register): Find saved registers in the next
8957 not prev frame.
8958 Fix PR gdb/365.
8959
8960 2002-04-17 Andrew Cagney <ac131313@redhat.com>
8961
8962 * gdbarch.sh (LANG): Set to ``c''.
8963
8964 2002-04-15 Andrew Cagney <ac131313@redhat.com>
8965
8966 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
8967
8968 2002-04-15 Andrew Cagney <ac131313@redhat.com>
8969
8970 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
8971 Update copyright.
8972
8973 * hpread.c (hpread_get_lntt): Add declaration.
8974 Also fix PR gdb/391.
8975
8976 2002-04-14 Andrew Cagney <ac131313@redhat.com>
8977
8978 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
8979 * aclocal.m4, configure: Re-generate.
8980 Fix PR gdb/391.
8981
8982 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
8983
8984 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
8985 instead of tm_print_insn.
8986
8987 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
8988
8989 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
8990
8991 2002-04-14 Andrew Cagney <ac131313@redhat.com>
8992
8993 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
8994 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
8995 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
8996
8997 2002-04-12 Don Howard <dhoward@redhat.com>
8998
8999 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
9000 max_user_call_depth.
9001 (init_cmd_lists): Initialize the new value;
9002 * cli/cli-script.c (execute_user_command): Limit the call depth of
9003 user defined commands. This avoids a core-dump when user commands
9004 are infinitly recursive.
9005
9006 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9007
9008 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
9009 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
9010 from tdep struct instead of DEFAULT_LR_SAVE.
9011 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
9012 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
9013 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
9014
9015 2002-04-12 Michael Snyder <msnyder@redhat.com>
9016
9017 * Remote.c: Spelling fix.
9018 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
9019 If no symbol found for "sbrk", try "_sbrk".
9020 (make_output_phdrs): Use bfd_section_name.
9021 (gcore_copy_callback): Use bfd_section_name.
9022 * eval.c: Indentation fix-ups.
9023 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
9024 in case it gets applied to an address that is already
9025 in the instruction space.
9026 * cli/cli-decode.c (help_list): Allow long lines to wrap.
9027 * symfile.c: Fix indentation, long lines.
9028 * source.c: White space fix-up.
9029
9030 2002-04-12 Andrew Cagney <cagney@redhat.com>
9031
9032 * defs.h (read_relative_register_raw_bytes): Delete declaration.
9033 * frame.c (frame_register_read): New function. Return non-zero on
9034 success.
9035 (read_relative_register_raw_bytes_for_frame): Delete.
9036 (read_relative_register_raw_bytes): Delete.
9037 * frame.h (frame_register_read): Declare.
9038 * d30v-tdep.c: Update Copyright. Use frame_register_read.
9039 * sh-tdep.c: Ditto.
9040 * infcmd.c (do_registers_info): Ditto.
9041 * hppa-tdep.c: Ditto.
9042 * rs6000-tdep.c: Ditto.
9043 * h8500-tdep.c: Ditto.
9044 * mips-tdep.c: Ditto.
9045 * h8300-tdep.c: Ditto.
9046 * z8k-tdep.c: Ditto.
9047
9048 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9049
9050 From Jimi X <jimix@watson.ibm.com>:
9051 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
9052 64-bit SysV ABI.
9053
9054 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9055
9056 From Jimi X <jimix@watson.ibm.com>:
9057 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
9058 bfd info.
9059
9060 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9061
9062 From Jimi X <jimix@watson.ibm.com>:
9063 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
9064 register sets for these processor variants.
9065
9066 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
9067
9068 * regformats/reg-ppc.dat: Support FPSCR.
9069
9070 2002-04-11 Kevin Buettner <kevinb@redhat.com>
9071
9072 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
9073 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
9074 Add fpscr as an invalid/unfetchable register.
9075 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
9076 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
9077 (fill_fpregset): Add support for register fpscr.
9078 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
9079 (fill_gregset): Account for the fact that register ``mq'' might
9080 not exist.
9081 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
9082 (registers_power): Add fpscr to register set at slot 71.
9083 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
9084 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
9085
9086 2002-04-11 Michael Snyder <msnyder@redhat.com>
9087
9088 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
9089 * configure: Regenerate.
9090 * config.in: Regenerate.
9091 * acconfig.h: Add define for _SYSCALL32.
9092 * core-sol2.c: Remove #define _SYSCALL32.
9093 * solib-legacy.c: Remove #define _SYSCALL32.
9094
9095 2002-04-10 Andrew Cagney <ac131313@redhat.com>
9096
9097 * stack.c (select_frame): Cleanup internal error message, do not
9098 use %p.
9099
9100 2002-04-10 Andrew Cagney <ac131313@redhat.com>
9101
9102 * stack.c (select_frame): Check that selected_frame and the
9103 specified level are as expected.
9104 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
9105 Update copyright.
9106 * frame.h (struct frame_info): Add field `level'. Update
9107 copyright.
9108 Work-in-progress PR gdb/464.
9109
9110 2002-04-10 Andrew Cagney <ac131313@redhat.com>
9111
9112 * maint.c (maint_print_section_info): Rename print_section_info.
9113 (print_bfd_section_info, print_objfile_section_info): Update.
9114 * inferior.h (struct gdbarch): Add opaque declaration.
9115 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
9116 * gdbarch.h: Regenerate.
9117
9118 2002-04-10 Michal Ludvig <mludvig@suse.cz>
9119
9120 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
9121 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
9122 (kernel_u_size): Added.
9123 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
9124 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
9125
9126 2002-04-04 Jim Ingham <jingham@apple.com>
9127
9128 * valarith.c (find_size_for_pointer_math): New function, either returns
9129 the size for a pointer's target, returns 1 for void *, or errors for
9130 incomplete types.
9131 (value_add, value_sub): use find_size_for_pointer_math.
9132
9133 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
9134
9135 * linux-low.c (linux_look_up_symbols): New hook.
9136 (linux_target_ops): Add linux_look_up_symbols.
9137 * remote-utils.c (decode_address): New function.
9138 (look_up_one_symbol): New function.
9139 * server.c (handle_query): Call target look_up_symbols hook.
9140 * server.h (look_up_one_symbol): Add prototype.
9141 * target.h (struct target_ops): Add look_up_symbols hook.
9142
9143 2002-04-09 Andrew Cagney <ac131313@redhat.com>
9144
9145 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
9146 override FP_REGNUM with frame->fp. Update copyright.
9147 * parse.c (num_std_regs, std_regs): Delete.
9148 (target_map_name_to_register): Do not search std_regs. Update
9149 function description.
9150 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
9151 declarations. Update copyright.
9152 Fix PR gdb/251.
9153
9154 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
9155
9156 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
9157 after the last symbol in a block.
9158
9159 2002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
9160
9161 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
9162 is non zero as a found symbol.
9163
9164 2002-04-08 Andrew Cagney <ac131313@redhat.com>
9165
9166 * findvar.c: Include "builtin-regs.h".
9167 (value_of_register): Call value_of_builtin_reg when applicable.
9168 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
9169 (target_map_name_to_register): Call
9170 builtin_reg_map_name_to_regnum.
9171 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
9172 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
9173 (builtin_regs_h): Define.
9174 (builtin-regs.o): New target.
9175 (findvar.o): Add $(builtin_regs_h).
9176 * builtin-regs.c, builtin-regs.h: New files.
9177 * std-regs.c: New file.
9178 Partial fix for PR gdb/251.
9179
9180 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9181
9182 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
9183 it's no longer required.
9184
9185 2002-04-08 Andrew Cagney <ac131313@redhat.com>
9186
9187 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
9188
9189 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9190
9191 From Jimi X <jimix@watson.ibm.com>:
9192 * rs6000-tdep.c (rs6000_software_single_step): Use
9193 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
9194 and size. Use target_insert_breakpoint() and
9195 target_remove_breakpoint() to insert and remove breakpoints
9196 instead of explicit memory reads and writes.
9197
9198 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9199
9200 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
9201 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
9202 ELF_OBJECT_FORMAT ifdef.
9203
9204 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9205
9206 From Jimi X <jimix@watson.ibm.com>:
9207 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
9208
9209 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9210
9211 From Jimi X <jimix@watson.ibm.com>:
9212 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
9213 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
9214
9215 2002-04-07 Mark Kettenis <kettenis@gnu.org>
9216
9217 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
9218 s/asprintf/xasprintf/.
9219 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
9220
9221 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9222
9223 I believe Jeff Law denies responsability for this one:
9224 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
9225 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
9226 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
9227 Work-around for PR gdb/366.
9228
9229 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
9230
9231 * remote-e7000.c (write_small, e7000_read_inferior_memory,
9232 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
9233 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
9234
9235 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
9236
9237 * sh-tdep.c (sh_fp_frame_init_saved_regs,
9238 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
9239 information.
9240
9241 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9242
9243 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
9244 maintainer.
9245
9246 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9247
9248 * README (Reporting Bugs in GDB): Document the bug web page as the
9249 prefered way of submitting bugs.
9250 Fix PR gdb/402.
9251
9252 2002-04-06 Andrew Cagney <ac131313@redhat.com>
9253
9254 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
9255 -1. Update comment.
9256 * gdbarch.h, gdbarch.c: Re-generate.
9257
9258 2002-04-07 Andreas Schwab <schwab@suse.de>
9259
9260 * m68klinux-nat.c (fill_fpregset): Properly pass address of
9261 buffer to regcache_collect.
9262
9263 2002-04-06 Andrew Cagney <ac131313@redhat.com>
9264
9265 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
9266 * gdbarch.c, gdbarch.h: Re-generate.
9267
9268 2002-04-06 Andrew Cagney <ac131313@redhat.com>
9269
9270 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
9271 declaration. Fix -Werror.
9272
9273 2002-04-05 Daniel Jacobowitz <drow@mvista.com>
9274
9275 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
9276 * gdbarch.c: Regenerate.
9277
9278 2002-04-05 Michael Snyder <msnyder@redhat.com>
9279
9280 * breakpoint.c (clear_command): Rewrite middle section to
9281 combine two loops with identical control conditions.
9282 Add a cleanup to eliminate a memory leak.
9283 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
9284
9285 2002-04-05 H.J. Lu (hjl@gnu.org)
9286
9287 * solib-svr4.c (bkpt_names): Add "__start".
9288
9289 2002-04-04 Andrew Cagney <ac131313@redhat.com>
9290
9291 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
9292 as test for 64 bit target.
9293
9294 2002-04-05 Andrew Cagney <ac131313@redhat.com>
9295
9296 * h8500-tdep.c (h8500_write_fp): Delete function.
9297 * dwarf2cfi.c (cfi_write_fp): Document as not used.
9298 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
9299 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
9300 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
9301 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
9302 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
9303 (s390_write_fp):
9304 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
9305 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
9306 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
9307 (d10v_write_fp): Delete function.
9308 * inferior.h (write_fp, generic_target_write_fp): Delete
9309 declarations.
9310 * regcache.c (generic_target_write_fp): Delete function.
9311 (write_fp): Delete function.
9312 * gdbarch.sh (TARGET_WRITE_FP): Delete.
9313 * gdbarch.h, gdbarch.c: Regenerate.
9314 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
9315 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
9316 (sparc64_write_fp): Delete declaration.
9317 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
9318 (h8500_write_fp): Delete declaration.
9319
9320 2002-04-04 Andrew Cagney <ac131313@redhat.com>
9321
9322 * sparc-tdep.c (sparc64_write_fp): Delete.
9323 (sparc_push_dummy_frame): Replace write_fp call with code to store
9324 the FP directly.
9325 (sparc_gdbarch_init): Do not initialize write_fp.
9326
9327 2002-04-05 Kevin Buettner <kevinb@redhat.com>
9328
9329 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
9330 clause.
9331
9332 2002-03-29 Jim Blandy <jimb@redhat.com>
9333
9334 * stack.c (get_selected_block): Add new argument `addr_in_block',
9335 used to return the exact code address we used to select the block,
9336 not just the block.
9337 * blockframe.c (get_frame_block, get_current_block): Same.
9338 * frame.h (get_frame_block, get_current_block,
9339 get_selected_block): Update declarations.
9340 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
9341 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
9342
9343 2002-04-05 Michael Snyder <msnyder@redhat.com>
9344
9345 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
9346 warning message.
9347
9348 2002-04-05 J. Brobecker <brobecker@gnat.com>
9349
9350 * utils.c (xfullpath): New function.
9351 * defs.h (xfullpath): Add declaration.
9352 * source.c (openp): Use xfullpath in place of gdb_realpath to
9353 avoid resolving the basename part of filenames when the
9354 associated file is a symbolic link. This fixes a potential
9355 inconsistency between the filenames known to GDB and the
9356 filenames it prints in the annotations.
9357 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
9358 to be able to match a filename with either the real filename, or
9359 the name of any symbolic link to this file.
9360 (lookup_partial_symtab): Ditto.
9361
9362 2002-04-04 Michael Snyder <msnyder@redhat.com>
9363
9364 * breakpoint.c: Add support for hardware breakpoints in overlays.
9365 (overlay_events_enabled): New state variable.
9366 (insert_breakpoints): Use overlay_events_enabled to decide
9367 whether to attempt to set a breakpoint at the overlay load addr.
9368 Handle bp_hardware_breakpoint as well as bp_breakpoint.
9369 (remove_breakpoint): Use overlay_events_enabled to decide
9370 whether breakpoints need to be removed from overlay load addr.
9371 Handle bp_hardware_breakpoint as well as bp_breakpoint.
9372 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
9373 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
9374 disable_overlay_breakpoints): Update overlay_events_enabled.
9375
9376 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
9377
9378 * dwarf2read.c (struct function_range): New.
9379 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
9380 (check_cu_functions): New.
9381 (read_file_scope): Initialize global function lists.
9382 Call dwarf_decode_line after processing children.
9383 (read_func_scope): Add to global function list.
9384 (dwarf_decode_lines): Call check_cu_functions everywhere
9385 record_line is called. Call record_line with a linenumber
9386 of 0 to mark sequence ends.
9387
9388 2002-04-04 Michal Ludvig <mludvig@suse.cz>
9389
9390 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
9391 change sync with glibc.
9392
9393 2002-04-03 Jim Blandy <jimb@redhat.com>
9394
9395 * configure.in: Call AC_C_INLINE.
9396 * configure: Regenerated.
9397
9398 2002-04-01 Daniel Jacobowitz <drow@mvista.com>
9399
9400 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
9401 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
9402
9403 2002-03-31 Mark Kettenis <kettenis@gnu.org>
9404
9405 * NEWS: Mention gcore support on FreeBSD/i386.
9406
9407 * fbsd-proc.c: New file.
9408 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
9409 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
9410
9411 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
9412 while statement.
9413
9414 2002-03-29 Jim Blandy <jimb@redhat.com>
9415
9416 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
9417 unescaped newlines in string literals, but newer ones don't. So
9418 escape them.
9419
9420 2002-03-26 Michael Snyder <msnyder@redhat.com>
9421 Andrew Cagney <cagney@redhat.com>
9422
9423 * cli/cli-dump.c: New file. Dump memory to file,
9424 restore file to memory.
9425 * cli/cli-dump.h: New file.
9426 * Makefile.in: Add rules, dependencies for cli-dump.o.
9427 * NEWS: Mention new commands.
9428
9429 2002-03-28 Michael Snyder <msnyder@redhat.com>
9430
9431 * symfile.c (symbol_file_add): Move test for null symbols to later.
9432
9433 2002-03-27 Andrew Cagney <ac131313@redhat.com>
9434
9435 From veksler at il.ibm.com:
9436 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
9437 the xstrduped original path.
9438 Fix PR gdb/417.
9439
9440 2002-03-27 Michael Snyder <msnyder@redhat.com>
9441
9442 * breakpoint.c (_initialize_breakpoint): Clean up help string.
9443 * infcmd.c (_initialize_infcmd): Ditto.
9444 * language.c (_initialize_language): Ditto.
9445 * symfile.c (_initialize_symfile): Ditto.
9446 * top.c (_init_main): Ditto.
9447 * cli/cli-cmds.c (init_cli_cmds): Ditto.
9448
9449 2002-03-27 Elena Zannoni <ezannoni@redhat.com>
9450
9451 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
9452 vector registers handling.
9453 (skip_prologue): Handle new AltiVec instructions. Fill in new
9454 fields of frame data.
9455 (frame_get_saved_regs): Fill in information for AltiVec registers.
9456
9457 2002-03-27 Jim Blandy <jimb@redhat.com>
9458
9459 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
9460 a function; leave this macro here to invoke that function.
9461 (symbol_init_mangled_name): Declaration for that function.
9462 * symtab.c (symbol_init_mangled_name): New function.
9463
9464 2002-03-27 Andrew Cagney <ac131313@redhat.com>
9465
9466 * valarith.c: Replace strerror with safe_strerror.
9467 * tracepoint.c: Ditto.
9468 * lin-lwp.c: Ditto.
9469 * go32-nat.c: Ditto.
9470 * inflow.c: Ditto.
9471 * gnu-nat.c: Ditto.
9472
9473 2002-03-27 Andreas Schwab <schwab@suse.de>
9474
9475 * event-top.c (command_line_handler): Remove useless if.
9476
9477 2002-03-27 Andreas Jaeger <aj@suse.de>
9478
9479 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
9480 comment.
9481
9482 2002-03-27 Michal Ludvig <mludvig@suse.cz>
9483
9484 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
9485 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
9486 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
9487 (x86_64_linux_dr_get_status, supply_gregset),
9488 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
9489 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
9490 (x86_64_register_info_table): Add.
9491 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
9492 (x86_64_register_raw_size, x86_64_register_virtual_type),
9493 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
9494 general x86_64_register_info_table.
9495 (i386_gdbarch_init): gdbarch_register_bytes is now set
9496 dynamicaly during initialization.
9497 * regformats/reg-x86-64.dat: Synced with changes to registers above.
9498 * gdbserver/linux-x86-64-low.c: Ditto.
9499
9500 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
9501
9502 * gdbserver/server.c (main): Call target_signal_to_host_p
9503 and target_signal_to_host on signals received from the remote.
9504 * gdbserver/remote-utils.c (prepare_resume_reply): Call
9505 target_signal_from_host on signals sent to the remote.
9506 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
9507 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
9508
9509 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
9510
9511 * signals/signals.c: Include "server.h" in gdbserver build.
9512 (target_signal_from_name): Don't use STREQ.
9513 (_initialize_signals): Likewise. Don't include function in
9514 gdbserver build.
9515
9516 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
9517
9518 * signals.c: Moved to...
9519 * signals/signals.c: Here.
9520 * Makefile (signals.o): Update.
9521
9522 2002-03-26 Jeff Law (law@redhat.com)
9523
9524 * somread.c (som_symtab_read): Remove some commented out code and
9525 updated related comments. Do not set the minimal symbol table to
9526 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
9527 in a dynamic executable.
9528 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
9529 where we are unable to find the minimal symbol for the given
9530 PC value.
9531
9532 2002-03-25 Jeff Law (law@redhat.com)
9533
9534 * linux-proc.c (read_mapping): Scan up to end of line for filename.
9535
9536 2002-03-25 Michal Ludvig <mludvig@suse.cz>
9537
9538 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
9539
9540 2002-03-23 Andrew Cagney <ac131313@redhat.com>
9541
9542 * command.h: Update copyright.
9543 (struct cmd_list_element): Replace definition with opaque
9544 declaration.
9545 (enum cmd_types): Document that it will eventually be moved to
9546 cli/cli-decode.h
9547 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
9548 (MALLOCED_REPLACEMENT): Delete macro.
9549 * Makefile.in (cli_decode_h): Add $(command_h).
9550 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
9551 * top.c: Include "cli/cli-decode.h".
9552 * completer.c: Include "cli/cli-decode.h".
9553 * maint.c: Include "cli/cli-decode.h".
9554 * cli/cli-decode.h: Include "command.h".
9555 (enum command_class): Delete.
9556 (enum cmd_types): Comment out.
9557 (enum cmd_auto_boolean): Delete.
9558 (enum var_types): Delete.
9559
9560 2002-03-23 Andrew Cagney <ac131313@redhat.com>
9561
9562 * cli/cli-decode.c: Include "gdb_assert.h".
9563 (add_set_or_show_cmd): New static function.
9564 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
9565 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
9566 all fields, such as func, from the set command.
9567
9568 2002-03-23 Andrew Cagney <ac131313@redhat.com>
9569
9570 * MAINTAINERS (sh-elf): Change warning flag to -w.
9571
9572 2002-03-23 Andrew Cagney <cagney@redhat.com>
9573
9574 * defs.h (error): Add printf format attribute.
9575 * thread-db.c (thread_from_lwp): Fix error format string.
9576 * stack.c (parse_frame_specification): Ditto.
9577 * cli/cli-decode.c (undef_cmd_error): Ditto.
9578 * scm-lang.c (scm_lookup_name): Ditto.
9579 * tracepoint.c (trace_error): Ditto.
9580 * remote-utils.c (usage): Ditto.
9581 * remote.c (compare_sections_command): Ditto.
9582 Fix PR gdb/328.
9583
9584 2002-03-22 Andrew Cagney <ac131313@redhat.com>
9585
9586 * gdbtypes.c (append_composite_type_field): New function.
9587 (init_composite_type): New function.
9588 * gdbtypes.h (append_composite_type_field): Declare.
9589 (init_composite_type): Ditto.
9590
9591 2002-03-22 Elena Zannoni <ezannoni@redhat.com>
9592
9593 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
9594 function.
9595 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
9596 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
9597 structure returning convention for SYSV ABI case, but not
9598 for GNU/Linux, FreeBSD, or NetBSD.
9599
9600 2002-03-22 Daniel Jacobowitz <drow@mvista.com>
9601
9602 * symtab.h (lookup_block_symbol): Add mangled_name argument
9603 to prototype.
9604
9605 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
9606 with new mangled_name argument.
9607 * linespec.c (decode_line_1): Likewise.
9608 * valops (value_of_this): Likewise.
9609 * symtab.c (lookup_transparent_type): Likewise.
9610 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
9611 (lookup_symbol): If we are given a mangled name, pass it down
9612 to lookup_symbol_aux.
9613 (lookup_block_symbol): If we are given a mangled name to check
9614 against, only return symbols which match it.
9615
9616 2002-03-22 Christopher Faylor <cgf@redhat.com>
9617
9618 * win32-nat.c (child_create_inferior): Check for proper shell to use
9619 here, in case the user changes it on the fly.
9620 (_initialize_inftarg): Remove shell path considerations.
9621
9622 2002-03-21 Elena Zannoni <ezannoni@redhat.com>
9623
9624 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
9625 for gdbarch_max_register_raw_size and max_register_virtual_size.
9626 Adjust copyright year.
9627
9628 2002-03-21 Daniel Jacobowitz <drow@mvista.com>
9629
9630 * dbxread.c (process_one_symbol): Extend the first N_SLINE
9631 in a function to cover the entire beginning of the function
9632 as well if it does not already.
9633
9634 2002-03-21 Tom Rix <trix@redhat.com>
9635
9636 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
9637 (rs6000_ptrace64): Renamed from ptrace64.
9638
9639 2002-03-20 Martin M. Hunt <hunt@redhat.com>
9640
9641 * gdbserver/remote-utils.c (remote_open): Don't call
9642 getprotobyname, we're all using TCP here so just use
9643 IPPROTO_TCP.
9644 * gdbserver/gdbreplay.c (remote_open): Ditto.
9645
9646 2002-03-20 Martin M. Hunt <hunt@redhat.com>
9647
9648 * regcache.c (_initialize_regcache): No need to call
9649 build_regcache() at this time; it gets called whenever
9650 the gdbarch changes.
9651
9652 2002-03-20 David O'Brien <obrien@FreeBSD.org>
9653
9654 * sparc-nat.c: Include sys/param.h where possible.
9655
9656 2002-03-20 Daniel Jacobowitz <drow@mvista.com>
9657
9658 Fix PR gdb/422.
9659 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
9660 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
9661 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
9662 complex types.
9663 * stabsread.c (rs6000_builtin_type): Likewise.
9664 (read_sun_floating_type): Likewise.
9665
9666 2002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9667
9668 * stabsread.c (read_member_functions): Remove skip code for duplicate
9669 constructor/destructor methods. Use standard parsing for these
9670 methods and just do not chain them to the list of methods after
9671 parsing.
9672
9673 2002-03-19 Alexandre Oliva <aoliva@redhat.com>
9674
9675 * coffread.c: Remove redundant static declarations. Replace
9676 occurrences of `PTR' with `void *'.
9677 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
9678 * top.h (quit_cover): Likewise.
9679 * defs.h (catch_errors): Likewise.
9680
9681 2002-03-18 Andrew Cagney <ac131313@redhat.com>
9682
9683 * defs.h (XMALLOC): Define.
9684 * gdb-events.sh (XMALLOC): Delete macro.
9685 * gdb-events.c, gdb-events.h: Regenerate.
9686 * gdbarch.sh (XMALLOC): Delete macro.
9687 * gdbarch.c: Regenerate.
9688 * serial.c (XMALLOC): Delete macro.
9689 * ui-file.c (XMALLOC): Ditto.
9690 * ser-unix.h (XMALLOC): Ditto.
9691 * sh-tdep.c (XMALLOC): Ditto.
9692 * ui-out.c (XMALLOC): Ditto.
9693 * utils.c (XMALLOC): Ditto.
9694 * i386-tdep.c (XMALLOC): Ditto.
9695 * gdb-events.c (XMALLOC): Ditto.
9696 * d10v-tdep.c (XMALLOC): Ditto.
9697 * cli-out.c (XMALLOC): Ditto.
9698
9699 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
9700 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
9701 * ui-file.c, ui-out.c: Ditto.
9702
9703 2002-03-18 Andrew Cagney <ac131313@redhat.com>
9704
9705 * command.h (struct cmd_list_element): Add field context.
9706 (set_cmd_context, get_cmd_context): Declare.
9707 * cli/cli-decode.h: Ditto.
9708 * cli/cli-decode.c (get_cmd_context): New function.
9709 (set_cmd_context): New function.
9710 (add_cmd): Initialize context.
9711 Part of fixing PR gdb/145 and PR gdb/146.
9712
9713 2002-03-17 Andrew Cagney <ac131313@redhat.com>
9714
9715 * cli/cli-decode.c (cmd_type): New function.
9716 * command.h (cmd_type): Declare.
9717 * infrun.c (set_schedlock_func): Call function cmd_type.
9718 * kod.c (kod_set_os): Call cmd_type.
9719 * cris-tdep.c (cris_version_update): Use function cmd_type.
9720 (cris_mode_update, cris_abi_update): Ditto.
9721
9722 * command.h: (execute_cmd_post_hook): Declare.
9723 (execute_cmd_pre_hook): Declare.
9724 * cli/cli-script.c (clear_hook_in_cleanup): New function.
9725 (execute_cmd_post_hook, execute_cmd_pre_hook): New
9726 functions. Execute pre/post hook while ensuring that afterwords
9727 hook_in is cleared.
9728 * top.c (execute_command): Use execute_cmd_post_hook, and
9729 execute_cmd_pre_hook to execute pre/post commands.
9730 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
9731 hook_stop_stub.
9732 (hook_stop_stub): Call execute_cmd_pre_hook.
9733
9734 2002-03-17 Andrew Cagney <ac131313@redhat.com>
9735
9736 * kod.c (kod_set_os): Revert previous change. Is called by ``info
9737 set'' and this leads to a core dump. Move xstrdup of
9738 operating_system to after check that it is not NULL.
9739
9740 2002-03-17 Andrew Cagney <ac131313@redhat.com>
9741
9742 * kod.c (kod_set_os): Remove unnecessary check that
9743 ``command->type'' is set_cmd.
9744
9745 * valprint.c (set_input_radix): Use input_radix.
9746 (set_output_radix): Use output_radix.
9747 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
9748 isn't reverted.
9749
9750 2002-03-16 Andrew Cagney <ac131313@redhat.com>
9751
9752 * value.h (struct value): Delete field ``substring_addr''. Change
9753 aligner fields to force_doublest_align, force_longest_align,
9754 force_core_addr_align and force_pointer_aligh.
9755
9756 * value.h (struct value): Fix typo in above change.
9757
9758 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9759
9760 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
9761 to fix internal_error from ``maintenance print architecture''.
9762
9763 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9764
9765 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
9766 for gcc versions after gcc-2.8.1.
9767
9768 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9769
9770 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
9771 for method resolution. Restore adjustment of ``this'' pointer after
9772 calling value_struct_elt, which was accidentally removed during the
9773 HP merge.
9774
9775 2002-03-15 Andrew Cagney <ac131313@redhat.com>
9776
9777 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
9778 value_of_register.
9779 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
9780 get_saved_register.
9781 * value.h (value_of_register): Update.
9782
9783 2002-03-14 Richard Henderson <rth@redhat.com>
9784
9785 * configure.in: Detect declaration for canonicalize_file_name.
9786 * utils.c (canonicalize_file_name): Declare, if needed.
9787 (gdb_realpath): Prefer realpath if available and usable.
9788 * config.in, configure: Rebuild.
9789
9790 2002-03-14 Richard Henderson <rth@redhat.com>
9791
9792 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
9793 a constant array bound.
9794
9795 * MAINTAINERS: Add myself to write-after-approval.
9796
9797 2002-03-14 Michael Snyder <msnyder@redhat.com>
9798
9799 * symfile.c (syms_from_objfile): Return immediately if no syms.
9800 (symbol_file_add): Return immediately if no syms.
9801 (find_sym_fns): Return immediately if no syms.
9802
9803 2002-03-13 Michal Ludvig <mludvig@suse.cz>
9804
9805 * gdbserver/remote-util.c (remote_open): Print remote-side's
9806 IP address when remote debugging over the network.
9807
9808 2002-03-12 David O'Brien <obrien@FreeBSD.org>
9809
9810 * config/sparc/fbsd.mh: Fix copyright.
9811 * config/sparc/fbsd.mt: Likewise.
9812
9813 2002-03-11 Richard Earnshaw <rearnsha@arm.com>
9814
9815 * MAINTAINERS: Fix typo in name of gdb warnings option.
9816 (x86-64): Fix formating so that this can be parsed by awk.
9817
9818 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
9819
9820 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
9821 * defs.h: Include "gdb/signals.h".
9822 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
9823
9824 2002-03-10 Michal Ludvig <mludvig@suse.cz>
9825
9826 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
9827 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
9828 from x86-64-tdep.h
9829
9830 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
9831 Don Howard <dhoward@redhat.com>
9832
9833 * mips-tdep.c (ST0_FR): Define.
9834 (mips2_fp_compat): New function, temporarily disabled.
9835 (mips_read_fp_register_single): New function.
9836 (mips_read_fp_register_double): New function.
9837 (mips_print_register): Use them.
9838 (do_fp_register_row): Likewise.
9839
9840 2002-03-09 Andrew Cagney <ac131313@redhat.com>
9841
9842 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
9843 approval''.
9844
9845 2002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9846
9847 * stabsread.c (read_member_functions): Fix is_stub test for
9848 static member functions, improve comment.
9849
9850 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
9851
9852 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
9853 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
9854 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
9855 commands that set boolean values.
9856 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
9857 (arm_rdi_resume): Always initialize PC.
9858 (arm_rdi_open): Don't use rslt as a boolean.
9859 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
9860 (arm_rdi_fetch_registers, arm_rdi_store_registers)
9861 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
9862 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
9863
9864 2002-03-06 Alexandre Oliva <aoliva@redhat.com>
9865
9866 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
9867 * configure: Rebuilt.
9868
9869 2002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9870
9871 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
9872 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
9873
9874 2002-03-06 Andrew Cagney <ac131313@redhat.com>
9875
9876 * cli/cli-decode.c (set_cmd_completer): New function.
9877 * command.h (set_cmd_completer): Declare.
9878 * cli/cli-decode.h (set_cmd_completer): Ditto.
9879
9880 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
9881 * cli/cli-cmds.c (init_cli_cmds): Ditto.
9882 * win32-nat.c (_initialize_inftarg): Ditto.
9883 * remote-rdi.c (_initialize_remote_rdi): Ditto.
9884 * proc-api.c (_initialize_proc_api): Ditto.
9885 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
9886 * source.c (_initialize_source): Ditto.
9887 * exec.c (_initialize_exec): Ditto.
9888 * solib.c (_initialize_solib): Ditto.
9889 * top.c (init_main): Ditto.
9890 * tracepoint.c (_initialize_tracepoint): Ditto.
9891 * symfile.c (_initialize_symfile): Ditto.
9892 * printcmd.c (_initialize_printcmd): Ditto.
9893 * infcmd.c (_initialize_infcmd): Ditto.
9894 * corefile.c (_initialize_core): Ditto.
9895
9896 2002-03-05 Andrew Cagney <ac131313@redhat.com>
9897
9898 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
9899
9900 2002-03-05 Andrew Cagney <ac131313@redhat.com>
9901
9902 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
9903
9904 2002-03-05 Andrew Cagney <ac131313@redhat.com>
9905
9906 * NEWS: Update headings, 5.2 has branched.
9907
9908 2002-03-04 Daniel Jacobowitz <drow@mvista.com>
9909
9910 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
9911 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
9912 (register_addr, REGISTER_RAW_SIZE): Likewise.
9913 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
9914 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
9915
9916 2002-03-03 Michal Ludvig <mludvig@suse.cz>
9917
9918 * MAINTAINERS (x86-64): Add myself.
9919 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
9920 changed value_ptr -> struct value *
9921
9922 2002-03-01 David O'Brien <obrien@FreeBSD.org>
9923
9924 * configure.host (sparc64-*-freebsd): Add.
9925 * configure.tgt: Likewise.
9926 * config/sparc/fbsd.mh: New file.
9927 * config/sparc/fbsd.mt: Likewise.
9928 * config/sparc/nm-fbsd.h: Likewise.
9929 * config/sparc/tm-fbsd.h: Likewise.
9930
9931 2002-03-01 Daniel Jacobowitz <drow@mvista.com>
9932
9933 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
9934 regformats/reg-s390x.dat.
9935
9936 2002-03-01 Andrew Cagney <ac131313@redhat.com>
9937
9938 * utils.c: Add FIXME explaining true/false problem.
9939
9940 2002-02-28 Andrew Cagney <ac131313@redhat.com>
9941
9942 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
9943
9944 2002-02-28 Michael Chastain <mec@shout.net>
9945
9946 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
9947
9948 2002-02-28 Daniel Jacobowitz <drow@mvista.com>
9949
9950 * gdbserver/linux-s390-low.c: New file.
9951 * regformats/reg-s390.dat: New file.
9952 * regformats/reg-s390x.dat: New file.
9953 * gdbserver/configure.srv: Add S/390.
9954 * gdbserver/Makefile.in: Add S/390.
9955 * configure.tgt: Enable gdbserver for S/390.
9956
9957 2002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
9958
9959 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
9960 first line of the doc string for "info dos", except at the end of
9961 the sentence, since the short help stops at the first period.
9962
9963 2002-02-28 Jason Merrill <jason@redhat.com>
9964
9965 * dwarf2read.c (dwarf_cfi_name): Add new codes.
9966
9967 2002-02-27 Fred Fish <fnf@redhat.com>
9968
9969 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
9970 comment (dumy -> dummy).
9971
9972 2002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9973
9974 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
9975
9976 2002-02-27 Rodney Brown <rbrown64@csc.com.au>
9977
9978 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
9979
9980 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
9981
9982 * gdbserver/acconfig.h: New file.
9983 * gdbserver/i387-fp.c: New file.
9984 * gdbserver/i387-fp.h: New file.
9985 * gdbserver/linux-x86-64.c: New file.
9986 * regformats/reg-x86-64.dat: New file.
9987 * configure.tgt: Add x86_64-*-linux* gdbserver support.
9988 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
9989 * gdbserver/configure.in: Add support for regsets.
9990 * gdbserver/config.in: Regenerate.
9991 * gdbserver/configure: Regenerate.
9992 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
9993 * gdbserver/linux-low.h: New file.
9994 * gdbserver/linux-low.c: Include "linux-low.h". Add support
9995 for regsets.
9996 * gdbserver/linux-arm-low.c: Include "linux-low.h".
9997 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
9998 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
9999 * gdbserver/linux-mips-low.c: Include "linux-low.h".
10000 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
10001 * gdbserver/linux-sh-low.c: Include "linux-low.h".
10002 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
10003 "i387-fp.h". Add PTRACE_GETREGS and friends.
10004 * gdbserver/regcache.c (supply_register): New function.
10005 (supply_register_by_name): New function.
10006 (collect_register): New function.
10007 (collect_register_by_name): New function.
10008
10009 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
10010
10011 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
10012 (config.status): Add configure.srv dependency.
10013 (server_h): Add config.h dependency.
10014
10015 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
10016
10017 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
10018 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
10019 * gdbserver/configure.srv: Change i386-*-linux* to use
10020 reg-i386-linux.o.
10021
10022 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10023
10024 * x86-64-tdep.c: Re-indent. Update copyright date.
10025
10026 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10027
10028 From Michal Ludvig <mludvig@suse.cz>:
10029 * x86-64-tdep.c (value.h): Delete.
10030 (gdb_assert.h): Include.
10031 (x86_64_register_convert_to_virtual,
10032 x86_64_register_convert_to_raw ): Add check which lets only
10033 floating-point values to be converted.
10034 (value_push): Delete.
10035 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
10036 (i386_gdbarch_init): Number of register_bytes fixed.
10037
10038 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10039
10040 * MAINTAINERS: Add x86-64 target.
10041
10042 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10043
10044 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
10045 * osfsolib.c (solib_map_sections): Ditto.
10046 * irix5-nat.c (solib_map_sections): Ditto.
10047 * corelow.c (gdb_check_format): Ditto.
10048 * symfile.c (symfile_bfd_open): Ditto.
10049 * solib.c (solib_map_sections): Ditto.
10050 Fix PR gdb/354.
10051
10052 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10053
10054 * remote.c (_initialize_remote): By default, disable ``e'' and
10055 ``E'' step out-of-range packets.
10056
10057 2002-02-26 Andreas Schwab <schwab@suse.de>
10058
10059 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
10060 m68k_linux_frame_saved_pc.
10061 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
10062 in_sigtramp.
10063 (SIGCONTEXT_PC_OFFSET): Remove.
10064 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
10065 m68k_linux_sigtramp_saved_pc): New functions.
10066 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
10067 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
10068 (UCONTEXT_PC_OFFSET): Define.
10069 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
10070 non-RT and RT signal trampolines.
10071
10072 2002-02-26 Richard Earnshaw <rearnsha@arm.com>
10073
10074 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
10075 (TARGET_NBPG, STACK_END_ADDR): Delete
10076 (VARIABLES_INSIDE_BLOCK): Delete.
10077
10078 2002-02-25 Andrew Cagney <ac131313@redhat.com>
10079
10080 * utils.c (perror_with_name): Make string parameter constant.
10081 (print_sys_errmsg): Ditto.
10082 (query): Ditto.
10083 * defs.h (perror_with_name): Update.
10084 (print_sys_errmsg): Update.
10085 (query): Update.
10086
10087 2002-02-25 Daniel Jacobowitz <drow@mvista.com>
10088
10089 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
10090 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
10091
10092 2002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10093
10094 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
10095 if it already matches the current architecture from the exec file.
10096 Include arch-utils.h for gdbarch_info_init prototype.
10097 * Makefile.in (rs6000-nat.o): Update dependencies.
10098
10099 2002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
10100
10101 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
10102 list of exported variables.
10103
10104 2002-02-24 Daniel Jacobowitz <drow@mvista.com>
10105
10106 * gdbserver/configure.srv: New file.
10107 * gdbserver/configure.in: Use configure.srv instead
10108 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
10109 from it.
10110 * gdbserver/configure: Regenerated.
10111 * gdbserver/terminal.h: New file.
10112 * gdbserver/Makefile.in: Update for configure changes. Remove
10113 more unneeded include paths.
10114
10115 2002-02-24 Andrew Cagney <ac131313@redhat.com>
10116
10117 From wiz at danbala:
10118 * config/sparc/tm-sp64.h: Fix grammar and typos.
10119 Fix PR gdb/287.
10120
10121 2002-02-24 Andrew Cagney <ac131313@redhat.com>
10122
10123 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
10124 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
10125 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
10126 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
10127 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
10128 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
10129 * s390-tdep.c: Ditto.
10130 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
10131 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
10132 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
10133 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
10134 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
10135 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
10136 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
10137 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
10138 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
10139 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
10140 Fix PR gdb/378.
10141
10142 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10143
10144 * lin-thread.c: Delete file.
10145 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
10146 to gdb_proc_service.h.
10147 * configure: Re-generate.
10148
10149 * ocd.c (ocd_open): Do not try to open the "ocd" device.
10150 * serial.c (serial_open): Delete check for "ocd".
10151 Fix PR gdb/349.
10152
10153 * Makefile.in (linux-thread.o): Delete target.
10154 * linux-thread.c: Delete file.
10155
10156 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
10157 renamed SH files to be consistent.
10158
10159 * symtab.c (sort_search_symbols): Use xfree.
10160
10161 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
10162
10163 * arm-linux-tdep.c (arm_linux_init_abi): Register
10164 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
10165 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
10166 definition with undef, since we don't want the sysvr4 definition.
10167 (SKIP_TRAMPOLINE_CODE): Likewise.
10168
10169 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10170
10171 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
10172
10173 * configure.in: (AC_CHECK_FUNCS) Added test for
10174 canonicalize_file_name Regenerated.
10175 * config.in, configure: Regenerated.
10176 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
10177 defined use canonicalize_file_name.
10178
10179 2002-02-23 Michael Chastain <mec@shout.net>
10180
10181 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
10182
10183 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10184
10185 * README: Remove references to cygnus.com.
10186 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
10187 dot com'' form. Remove references to cygnus.com and sourceware.
10188
10189 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10190
10191 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
10192 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
10193 1003.1-2001 no longer allows "head -1".
10194 * gdb/Makefile.in (version.c): Likewise.
10195 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
10196 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
10197 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
10198
10199 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10200
10201 * cli/cli-decode.c (cmd_cfunc_eq): New function.
10202 * command.h (cmd_cfunc_eq): Declare.
10203 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
10204
10205 * cli/cli-cmds.h (is_complete_command): Change parameter to a
10206 ``struct cmd_list_element *''.
10207 * cli/cli-cmds.c (is_complete_command): Update. Use
10208 cmd_cfunc_eq.
10209 * top.c (execute_command): Pass the command to
10210 is_complete_command.
10211 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
10212
10213 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10214
10215 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
10216 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
10217 architecture defines.
10218 * s390-tdep.c (s390_gdbarch_init): Likewise.
10219
10220 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
10221
10222 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
10223 (arm_linux_push_arguments): Likewise.
10224 (arm_linux_init_abi): Register them. Also register linux-specific
10225 call_dummy_words.
10226 (find_minsym_and_objfile): Use strcmp, not STREQ.
10227 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
10228 (arm_linux_call_dummy_words): Delete declaration.
10229 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
10230 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
10231 declarations.
10232 (LOWEST_PC): Delete.
10233
10234 2002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10235
10236 * maint.c (print_section_info): Do not prepend `0x' to filepos
10237 output, it will be handled by local_hex_string_custom.
10238
10239 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
10240
10241 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
10242 (store_newfpe_double, store_newfpe_extended, store_fpregister)
10243 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
10244
10245 2002-02-22 Jim Blandy <jimb@redhat.com>
10246
10247 Indicate that the bcache functions don't change the strings
10248 they're passed.
10249 * bcache.h (bcache, hash): Add `const' keywords to declarations.
10250 * bcache.c (bcache, hash): Add `const' keywords to definitions.
10251
10252 2002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
10253
10254 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
10255
10256 2002-02-21 Christopher Faylor <cgf@redhat.com>
10257
10258 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
10259 find the complete path to a loaded DLL.
10260
10261 2002-02-21 Fred Fish <fnf@redhat.com>
10262
10263 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
10264 that marks the end of the range of a function, enter a line number
10265 entry that has a line number of zero and a PC offset that matches
10266 the end of the function. This starts a range of PC's for which no
10267 line number information is known.
10268 * symtab.c (find_pc_sect_line): If our best fit is in a range of
10269 PC's for which no line number info is found (line number is zero)
10270 then we didn't find any valid line information.
10271 * symtab.h: Document use of zero line number entry.
10272
10273 2002-02-21 Elena Zannoni <ezannoni@redhat.com>
10274
10275 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
10276 (have_ptrace_getvrregs): Define for run time checks.
10277 (gdb_vrregset_t): New type for Altivec register handling.
10278 (fetch_register, store_register): Fetch/store altivec register
10279 when needed.
10280 (fetch_altivec_register, store_altivec_register): New functions.
10281 (supply_vrregset, fill_vrregset): New functions.
10282 (fetch_altivec_registers, store_altivec_registers): New functions.
10283 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
10284 registers as well.
10285
10286 2002-02-21 Jiri Smid <smid@suse.cz>
10287
10288 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
10289
10290 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
10291
10292 * Makefile.in (armnbsd-nat.o): Update dependencies.
10293 * armnbsd-nat.c (supply_gregset): New function. Common code to
10294 supply the integer register set.
10295 (supply_fparegset): New function. Similar for FPA registers.
10296 (fetch_regs, fetch_fp_regs): Use them.
10297 (fetch_core_registers): Likewise.
10298 (fetch_elfcore_registers): New function.
10299 (arm_netbsd_elfcore_fns): New core-file type specification.
10300 (_initialize_arm_netbsd_nat): Register it.
10301
10302 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
10303
10304 * armnbsd-nat.c: Include gdbcore.h.
10305 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
10306 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
10307 'void' to declaration, to shut up ARI.
10308 (fetch_core_registers): Make static. Rewrite using supply_register.
10309 (arm_netbsd_core_fns): New core-file type specification.
10310 (_initialize_arm_netbsd_nat): New function.
10311
10312 2002-02-21 Christopher Faylor <cgf@redhat.com>
10313
10314 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
10315 value.
10316
10317 2002-02-20 Christopher Faylor <cgf@redhat.com>
10318
10319 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
10320 fails.
10321
10322 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10323
10324 * jv-exp.y (parse_number): Change type of implicit longs
10325 to builtin_type_uint64.
10326
10327 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10328
10329 * gdbserver/linux-low.c (mywait): Change argument to waitpid
10330 to be an integer instead of a `union wait'.
10331
10332 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10333
10334 * mips-linux-nat.c: Call the operating system GNU/Linux.
10335 * mips-linux-tdep.c: Likewise.
10336 * mips-tdep.c: Likewise.
10337
10338 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10339
10340 Fix PR gdb/265.
10341 * jv-exp.y (parse_number): Handle 64-bit integers.
10342
10343 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10344
10345 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
10346 AC_STDC_HEADERS to AC_HEADER_STDC.
10347 * gdbserver/configure: Regenerated.
10348
10349 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
10350
10351 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
10352 is defined.
10353 * sparc-tdep.c (get_longjmp_target): Likewise.
10354
10355 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
10356
10357 * News: Add news about ARM and Multi-arch. Mention the new target
10358 arm*-*-netbsd*.
10359
10360 2002-02-19 Jim Blandy <jimb@redhat.com>
10361
10362 * stabsread.c (error_type_complaint): Improve error message.
10363
10364 2002-02-19 Daniel Jacobowitz <drow@mvista.com>
10365
10366 * gdbserver/README: Update documentation.
10367 * gdbserver/configure.in: Update configury to match documentation.
10368 * gdbserver/Makefile.in: Likewise.
10369 * gdbserver/configure: Regenerated.
10370 * gdbserver/aclocal.m4: New file, generated by aclocal.
10371 * gdbserver/config.in: New file, generated by autoheader.
10372
10373 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10374
10375 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
10376 armnbsd-nat.c.
10377
10378 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10379
10380 * arm-tdep.h (enum arm_float_model): New enum.
10381 (struct gdbarch_tdep): Add fp_model.
10382 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
10383 up floating-point conversions until we know the floating-point model
10384 in use by the inferior. Don't complain about being unable to
10385 determine the ABI of the inferior when we don't have one.
10386 (arm_extract_return_value): Support different floating-point models.
10387 (arm_store_return_value): Likewise.
10388 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
10389 ARM_FLOAT_SOFT.
10390 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
10391
10392 2002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10393
10394 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
10395 of ``current_gdbarch''.
10396
10397 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10398
10399 * armnbsd-nat.c : ANSIfy all function declarations.
10400 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
10401 (fetch_inferior_registers): Re-implement in terms of above.
10402 (store_register, store_regs, store_fp_register, store_fp_regs): New.
10403 (store_inferior_registers): Re-implement in terms of above.
10404
10405 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10406
10407 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
10408 kernel.
10409 * arm-linux-tdep.c: Likewise.
10410 * config/arm/tm-linux.h: Likewise.
10411
10412 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10413
10414 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
10415 * config/arm/nbsd.mt (TM_FILE): Delete.
10416 * config/arm/tm-nbsd.h: Delete.
10417
10418 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10419
10420 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
10421 Initialize CALL_DUMMY_LENGTH.
10422
10423 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10424
10425 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
10426 function.
10427 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
10428 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
10429 defines one thing and that is incorrect for this port.
10430 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
10431
10432 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
10433
10434 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
10435
10436 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
10437
10438 * win32-nat.c (display_selector): New function. Displays information
10439 about the information returned by GetThreadSelectorEntry API function.
10440 (display_selectors): New function. Displays the infomation of
10441 the selector given as argument, or of CS, DS ans FS selectors
10442 if no argument is given.
10443 ( _initialize_inftarg): Add "w32" as info prefix command.
10444 Add "info w32 selector" as command calling display_selectors.
10445
10446 2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
10447
10448 * i386-tdep.c (get_longjmp_target): Fix compilation failure
10449 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
10450 if not defined.
10451
10452 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
10453
10454 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
10455
10456 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
10457
10458 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
10459 (arm_fix_call_dummy): Call it.
10460 (arm_call_dummy_breakpoint_offset): Delete.
10461 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
10462 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
10463
10464 2002-02-18 Andrew Cagney <ac131313@redhat.com>
10465
10466 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
10467 Default to func_frame_chain_valid.
10468 * gdbarch.h, gdbarch.c: Re-generate.
10469 * frame.h (FRAME_CHAIN_VALID): Delete definition.
10470
10471 2002-02-18 Elena Zannoni <ezannoni@redhat.com>
10472
10473 * ppc-linux-nat.c: Update copyright.
10474 (fetch_register, store_register): Add tid parameter, don't compute
10475 tid here.
10476 (fetch_ppc_registers, store_ppc_registers): Add tid
10477 parameter. Pass it along to callees.
10478 (fetch_inferior_registers, store_inferior_registers): Compute tid
10479 here, and pass it to calleed functions.
10480 (fill_gregset, supply_fpregset): Clean up formatting.
10481
10482 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
10483
10484 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
10485 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
10486
10487 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
10488
10489 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
10490 * gdbarch.c gdbarch.h: Regenerate.
10491 * breakpoint.c (create_longjmp_breakpoint): Always compile this
10492 function.
10493 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
10494 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
10495 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
10496
10497 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
10498 * arm-tdep.c (arm_get_longjmp_target): New function.
10499 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
10500 this to a positive value register arm_get_longjmp_target as the
10501 longjmp handler.
10502 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
10503 (arm_linux_init_abi): Set up longjmp description in tdep.
10504 * armnbsd-nat.c (get_longjmp_target): Delete.
10505 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
10506 description in tdep.
10507 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
10508 (get_longjmp_target): Delete declaration.
10509 (GET_LONGJMP_TARGET): Delete.
10510 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
10511 (GET_LONGJMP_TARGET): Delete.
10512
10513 2002-02-17 Kevin Buettner <kevinb@redhat.com>
10514
10515 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
10516 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
10517 of ``current_gdbarch''.
10518
10519 2002-02-17 Tom Tromey <tromey@redhat.com>
10520
10521 * cli/cli-cmds.c (compare_strings): New function.
10522 (complete_command): Only print each unique item once.
10523 * completer.h (complete_line): Declare.
10524 * completer.c (complete_line): New function.
10525 (line_completion_function): Use it.
10526
10527 2002-02-16 Andrew Cagney <ac131313@redhat.com>
10528
10529 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
10530 * gdbarch.h, gdbarch.c: Re-generate.
10531
10532 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
10533
10534 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
10535
10536 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
10537
10538 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
10539 * valops.c (value_arg_coerce): Don't take the address of a reference
10540 to convert an argument to a reference.
10541
10542 2002-02-15 Christopher Faylor <cgf@redhat.com>
10543
10544 * win32-nat.c (get_image_name): New function.
10545 (handle_load_dll): Use get_image_name function.
10546 (get_child_debug_event): Avoid registering debug events until possibly
10547 execed process is started.
10548 (child_create_inferior): Allow invocation via shell so that command
10549 line redirection, etc. works ok.
10550 (_initialize_inftarg): Add new command: "set shell" to control whether
10551 a shell is used to start a process.
10552
10553 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
10554
10555 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
10556 instead of find_register_by_number.
10557 (cannot_store_register): Likewise.
10558
10559 2002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
10560
10561 * dwarf2read.c: Replace fprintf (stderr, ...) by
10562 fprintf_unfiltered (gdb_stderr, ...).
10563
10564 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
10565
10566 * gdbserver/gdbserver.1: Document --attach.
10567
10568 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
10569
10570 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
10571 descriptions.
10572 * arm-tdep.c (arm_default_arm_le_breakpoint)
10573 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
10574 (arm_default_thumb_be_breakpoint): New. Initialize them from
10575 traditional breakpoint defines.
10576 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
10577 (arm_gdbarch_init): Initialize new breakpoint variables.
10578 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
10579 (arm_linux_init_abi): Initialize linux-specific breakpoint.
10580 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
10581 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
10582 code out to ...
10583 (arm_netbsd_init_abi_common): ... here; new function.
10584 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
10585 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
10586 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
10587 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
10588
10589 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
10590
10591 * arm-tdep.h (enum arm_abi): New enum.
10592 (struct gdbarch_tdep): New structure.
10593 (LOWEST_PC): Provide a default.
10594 (arm_gdbarch_register_os_abi): Declare new function.
10595 * arm-tdep.c (arm_abi_names): New array.
10596 (process_note_abi_tag_sections): New function.
10597 (get_elfosabi): New function.
10598 (arm_gdbarch_register_os_abi): New function.
10599 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
10600 support for that ABI has been built in, then call the appropriate
10601 configuration routine. Use gdbarch_num_regs() to get the number
10602 of registers.
10603 (arm_dump_tdep): New function.
10604 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
10605 place-holder functions.
10606 (_initialize_arm_tdep): Register them.
10607 * config/arm/tm-arm.h (LOWEST_PC): Delete.
10608
10609 * armnbsd-tdep.c: New file.
10610 * Makefile.in (armnbsd-tdep.o): Add dependencies.
10611 * config/arm/nbsd.mt (TDEPFILES): Add it.
10612 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
10613
10614 * armnbsd-nat.c: Include regcache.h.
10615 * Makefile.in (armnbsd-nat.o): Update dependency list.
10616
10617 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
10618
10619 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
10620
10621 * gdbserver/Makefile.in: Fix typos in target rules.
10622
10623 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
10624
10625 Fix part of PR gdb/267.
10626 * linespec.c (find_methods): Handle constructors specially for now.
10627
10628 2002-02-14 Corinna Vinschen <vinschen@redhat.com>
10629
10630 * arm-tdep.c (arm_push_arguments): Eliminate special float type
10631 handling.
10632 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
10633 standard_coerce_float_to_double().
10634
10635 2002-02-14 Christopher Faylor <cgf@redhat.com>
10636
10637 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
10638 GDBINIT_FILENAME.
10639
10640 2002-02-14 Elena Zannoni <ezannoni@redhat.com>
10641
10642 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
10643 find_variant_by_name, because it confuses the multiarch
10644 framework. Return NULL if there isn't an architecture with the
10645 user supplied name, instead of forcing a different one without
10646 recording the change with the multiarch machinery.
10647 (find_variant_by_name): Delete.
10648
10649 2002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10650
10651 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
10652 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
10653
10654 2002-02-13 Martin M. Hunt <hunt@redhat.com>
10655
10656 * stack.c (print_frame_info_base): When calling
10657 print_frame_info_listing_hook, set current_source_symtab.
10658
10659 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
10660
10661 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
10662 and remove unused $(INCLUDE_DIR).
10663 Add regcache.c to OBS.
10664 Add generated register protocol files to clean target.
10665 Update dependencies for new objects, obsolete old target code.
10666
10667 * gdbserver/linux-low.c: Remove all platform-specific code to
10668 new files. Remove various dead code. Update to use regcache
10669 functionality.
10670 * gdbserver/remote-utils.c (fromhex): Add return statement
10671 to quiet warning.
10672 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
10673 constant.
10674 (input_interrupt): Add integer parameter to match prototype
10675 of a signal handler.
10676 (outreg): Use register_data ().
10677 (prepare_resume_reply): Use gdbserver_expedite_regs.
10678 * gdbserver/server.c (main): Dynamically allocate own_buf because
10679 PBUFSIZ is no longer constant. Use registers_to_string () and
10680 registers_from_string ().
10681 * gdbserver/server.h: No longer include "defs.h". Add prototypes
10682 for error (), fatal (), and warning (). Update definition of
10683 PBUFSIZ to use regcache functionality. Add include guard.
10684 * gdbserver/utils.c (fatal): Add missing ``const''.
10685 (warning): New function.
10686
10687 * regformats/regdat.sh: Include "regcache.h" in generated files.
10688 Provide init_registers () function.
10689 * regformats/regdef.h: Add prototype for set_register_cache ().
10690 Add include guard.
10691
10692 * gdbserver/linux-arm-low.c: New file.
10693 * gdbserver/linux-i386-low.c: New file.
10694 * gdbserver/linux-ia64-low.c: New file.
10695 * gdbserver/linux-m68k-low.c: New file.
10696 * gdbserver/linux-mips-low.c: New file.
10697 * gdbserver/linux-ppc-low.c: New file.
10698 * gdbserver/linux-sh-low.c: New file.
10699
10700 * gdbserver/regcache.c: New file.
10701 * gdbserver/regcache.h: New file.
10702
10703 * gdbserver/low-linux.c: Removed obsolete file.
10704
10705 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
10706
10707 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
10708 * config/i386/linux.mt: Likewise.
10709 * config/ia64/linux.mt: Likewise.
10710 * config/m68k/linux.mh: Likewise.
10711 * config/powerpc/linux.mh: Likewise.
10712 * config/mips/linux.mt: Likewise.
10713
10714 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
10715
10716 * config/i386/i386lynx.mh: Mark gdbserver variables
10717 as (currently) obsolete for this target.
10718 * config/i386/nbsd.mt: Likewise.
10719 * config/i386/nbsdelf.mt: Likewise.
10720 * config/m32r/m32r.mt: Likewise.
10721 * config/m68k/m68klynx.mh: Likewise.
10722 * config/m68k/nbsd.mt: Likewise.
10723 * config/m68k/sun3os4.mh: Likewise.
10724 * config/mips/vr5000.mt: Likewise.
10725 * config/ns32k/nbsd.mt: Likewise.
10726 * config/pa/hppabsd.mh: Likewise.
10727 * config/pa/hppaosf.mh: Likewise.
10728 * config/powerpc/nbsd.mt: Likewise.
10729 * config/rs6000/rs6000lynx.mh: Likewise.
10730 * config/s390/s390.mt: Likewise.
10731 * config/s390/s390x.mt: Likewise.
10732 * config/sparc/sparclynx.mh: Likewise.
10733 * config/sparc/sun4os4.mh: Likewise.
10734 * config/i386/x86-64linux.mt: Likewise.
10735 * config/sparc/linux.mh: Likewise.
10736
10737 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
10738
10739 * configure.tgt: Configure gdbserver only for known working
10740 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
10741 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
10742 SUBDIRS if it is configured. Update comment for ${nativefile}.
10743 * configure: Regenerated.
10744
10745 2002-02-13 Michael Snyder <msnyder@redhat.com>
10746
10747 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
10748
10749 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
10750 (default_gcore_mach): Just return 0, work around a problem in bfd.
10751 (default_gcore_target): OK to return NULL if exec_bfd is null.
10752 (make_mem_sec): Use a cast, avoid a warning.
10753
10754 * procfs.c (find_memory_regions_callback): Use a cast instead of
10755 calling host_pointer_to_address (which complains if
10756 sizeof (host pointer) != sizeof (target pointer)).
10757 (procfs_make_note_section): Avoid overflow in psargs string.
10758
10759 * procfs.c (procfs_make_note_section): Make the default
10760 implementation return an error.
10761
10762 2002-02-13 Rodney Brown <rbrown64@csc.com.au>
10763
10764 * procfs.c (procfs_make_note_section): Provide a default definition
10765 (for alpha-dec-osf4.0f). Fix typos.
10766
10767 2002-02-13 Elena Zannoni <ezannoni@redhat.com>
10768
10769 * linux-proc.c: Add include of regcache.h.
10770 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
10771
10772 2002-02-13 Andrew Cagney <ac131313@redhat.com>
10773
10774 From 2002-01-18 Greg McGary <greg@mcgary.org>:
10775 * memattr.c (create_mem_region): Disallow useless empty region.
10776 Regions are half-open intervals, so allow [A..B) [B..C) as
10777 non-overlapping.
10778
10779 2002-02-13 Michael Chastain <mec@shout.net>
10780
10781 * defs.h: Kill CONST_PTR.
10782 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
10783 * c-lang.c (c_builtin_types): Likewise.
10784 * ch-lang.c (ch_builtin_types): Likewise.
10785 * f-lang.c (f_builtin_types): Likewise.
10786 * language.c (unknown_builtin_types): Likewise.
10787 * m2-lang.c (m2_builtin_types): Likewise.
10788 * p-lang.c (pascal_builtin_types): Likewise.
10789 * scm-lang.c (c_builtin_types): Likewise.
10790
10791 2002-02-13 Keith Seitz <keiths@redhat.com>
10792
10793 * arm-tdep.h (arm_get_next_pc): Add declaration.
10794
10795 2002-02-13 Richard Earnshaw <rearnsha@arm.com>
10796
10797 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
10798 with other related struct-returning functions.
10799 (arm_extract_struct_value_address): New function.
10800 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
10801 initialize float_format, double_format and long_double_format as
10802 appropriate to the endianness of the target.
10803 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
10804 (arm_use_struct_convention): Delete declaration.
10805 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
10806
10807 2002-02-13 Keith Seitz <keiths@redhat.com>
10808
10809 * defs.h (core_addr_to_string_nz): New function.
10810
10811 2002-02-13 Mark Kettenis <kettenis@gnu.org>
10812
10813 Apply missing bits of 2002-01-15 patch.
10814 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
10815 (fill_fpregset): Use i387_fill_fsave.
10816
10817 2002-02-12 Keith Seitz <keiths@redhat.com>
10818
10819 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
10820 (core_addr_to_string_nz): New function.
10821
10822 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
10823
10824 * arm-linux-nat.c: Really include arm-tdep.h.
10825 * config/arm/tm-linux.h (struct type, struct value): Declare.
10826
10827 2002-02-11 Michael Snyder <msnyder@redhat.com>
10828
10829 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
10830 (gcore section): Ifdef for Solaris and Unixware only.
10831 (procfs_do_thread_registers): Unixware needs one lwpstatus
10832 per thread (not one prstatus or pstatus).
10833 (procfs_make_note_section): Iterate only over kernel threads (lwps),
10834 not over all gdb threads. For unixware, call elfcore_write_pstatus
10835 once before iterating over threads.
10836
10837 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
10838
10839 * arm-tdep.h: New file.
10840 * arm-tdep.c: Include arm-tdep.h.
10841 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
10842 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
10843 (arm_print_float_info, arm_register_type, convert_to_extended)
10844 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
10845 (arm_extract_return_value, arm_register_name): Make static.
10846 (arm_software_single_step): Similarly. Fix types in declaration.
10847 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
10848 (arm_store_return_value, arm_store_struct_return): New functions.
10849 (arm_gdbarch_init): Register the above functions. Also register
10850 call_dummy_start_offset, sizeof_call_dummy_words,
10851 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
10852 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
10853 max_register_virtual_size, register_size. Set up
10854 prologue_cache.saved_regs here, rather than ...
10855 (_initialize_arm_tdep): ... here.
10856 * config/arm/tm-arm.h (struct type, struct value): Delete forward
10857 declarations.
10858 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
10859 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
10860 (arm_print_float_info, arm_register_type, convert_to_extended)
10861 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
10862 (arm_extract_return_value, arm_register_name): Delete declarations.
10863 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
10864 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
10865 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
10866 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
10867 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
10868 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
10869 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
10870 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
10871 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
10872 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
10873 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
10874 (arm_get_next_pc): No-longer static -- these are needed by the RDI
10875 interface.
10876 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
10877 * remote-rdi.c remote-rdp.c: Likewise.
10878 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
10879 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
10880 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
10881 definition.
10882
10883 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
10884 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
10885 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
10886 from non-ARM_ prefixed definitions.
10887 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
10888 all uses of above.
10889 * remote-rdi.c remote-rdp.c: Likewise.
10890 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
10891
10892 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
10893
10894 * arm-tdep.c (arm_frameless_function_invocation)
10895 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
10896 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
10897 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
10898 (arm_pop_frame, arm_get_next_pc): Make static.
10899 (arm_gdbarch_init): Register above in gdbarch structure.
10900 (arm_read_fp): Renamed from arm_target_read_fp.
10901 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
10902 * config/arm/tm-arm.h (arm_frameless_function_invocation)
10903 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
10904 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
10905 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
10906 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
10907 (arm_pc_is_thumb_dummy): Delete declarations.
10908 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
10909 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
10910 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
10911 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
10912
10913 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
10914
10915 * symtab.c (compare_search_syms): New function.
10916 (sort_search_symbols): New function.
10917 (search_symbols): Sort symbols after searching rather than
10918 before.
10919
10920 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10921
10922 * NEWS: Linux -> GNU/Linux.
10923
10924 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10925
10926 * gdbarch.sh: For for level one methods, disallow a definition
10927 when partially multi-arched. Add comments explaining rationale.
10928 * gdbarch.h: Re-generate.
10929
10930 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10931
10932 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
10933 multi-arch partial.
10934
10935 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10936
10937 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
10938 field. Use diff -u.
10939 * gdbarch.c: Re-generate.
10940
10941 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10942
10943 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
10944 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
10945 partial.
10946
10947 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10948
10949 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
10950 multi-arch partial.
10951 (PUSH_ARGUMENTS): Switch to using predefault.
10952 * gdbarch.c: Regenerate.
10953
10954 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10955
10956 * valops.c (PUSH_ARGUMENTS): Delete definition.
10957 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
10958 partial. Default to default_push_arguments.
10959 * gdbarch.h, gdbarch.c: Regenerate.
10960
10961 2002-02-09 Andrew Cagney <ac131313@redhat.com>
10962
10963 * defs.h (throw_exception): Rename return_to_top_level. Update
10964 comments.
10965 * utils.c (error_stream, internal_verror, quit): Ditto.
10966 * top.c (throw_exception, catcher): Ditto.
10967 * sparclet-rom.c (sparclet_load): Ditto.
10968 * remote.c (interrupt_query, minitelnet): Ditto.
10969 * remote-sds.c (interrupt_query): Ditto.
10970 * remote-mips.c (mips_error, mips_kill): Ditto.
10971 * ocd.c (interrupt_query): Ditto.
10972 * monitor.c (monitor_interrupt_query): Ditto.
10973 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
10974 * target.h: Update comment.
10975
10976 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
10977
10978 2002-02-09 Andrew Cagney <ac131313@redhat.com>
10979
10980 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
10981 default_double_format.
10982 * gdbarch.h, gdbarch.c: Re-generate.
10983 * findvar.c (floatformat_unknown): Delete variable definition.
10984 * doublest.h (floatformat_unknown): Delete variable declaration.
10985
10986 2002-02-09 Jim Blandy <jimb@redhat.com>
10987
10988 * stabsread.c (read_type): Add code to parse Sun's syntax for
10989 prototyped function types.
10990
10991 2002-02-09 Andrew Cagney <ac131313@redhat.com>
10992
10993 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
10994 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
10995
10996 2002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10997
10998 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
10999 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
11000 now _initialize_xcoffsolib gets called again and overrides the
11001 commands from solib.c in a native configuration.
11002
11003 2002-02-09 Mark Kettenis <kettenis@gnu.org>
11004
11005 * doublest.c (store_typed_floating): Don't try to return a value.
11006 Fixes PR gdb/290.
11007
11008 2002-02-08 Jim Blandy <jimb@redhat.com>
11009
11010 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
11011 is prototyped and has no arguments, print its argument list as
11012 `(void)'.
11013
11014 2002-02-08 Chris Demetriou <cgd@broadcom.com>
11015
11016 * MAINTAINERS (write-after-approval): Add myself.
11017 (paper-trail): I've escaped!
11018
11019 2002-02-08 Christopher Faylor <cgf@redhat.com>
11020
11021 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
11022 changes.
11023 (_initialize_check_for_gdb_ini): Ditto.
11024
11025 2002-02-08 Martin M. Hunt <hunt@redhat.com>
11026
11027 * win32-nat.c (cygwin_pid_to_str): Fix typo.
11028 xaprintf -> xasprintf.
11029
11030 2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
11031
11032 * win32-nat.c: Remove use of printf and sprintf functions.
11033
11034 2002-02-08 Richard Earnshaw <rearnsha@arm.com>
11035
11036 * arm-tdep.c (arm_frame_chain_valid): Make static.
11037 (arm_push_arguments): Likewise.
11038 (arm_gdbarch_init): New function.
11039 (_initialize_arm_tdep): Call it.
11040 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
11041 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
11042 (FRAME_CHAIN_VALID): Delete.
11043 (arm_frame_chain_valid): Delete declaration.
11044 (PUSH_ARGUMENTS): Delete.
11045 (arm_push_arguments): Delete declaration.
11046 (CALL_DUMMY_P): Delete.
11047
11048 2002-02-08 Andrew Cagney <ac131313@redhat.com>
11049 Corinna Vinschen <vinschen@redhat.com>
11050
11051 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
11052 on builtin float types.
11053
11054 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
11055
11056 * utils.c: Include <curses.h> before "bfd.h".
11057 * tui/tui-hooks.c: Likewise.
11058 * tui/tui.c: Likewise.
11059 * tui/tuiCommand.c: Likewise.
11060 * tui/tuiData.c: Likewise.
11061 * tui/tuiDataWin.c: Likewise.
11062 * tui/tuiDisassem.c: Likewise.
11063 * tui/tuiGeneralWin.c: Likewise.
11064 * tui/tuiIO.c: Likewise.
11065 * tui/tuiLayout.c: Likewise.
11066 * tui/tuiRegs.c: Likewise.
11067 * tui/tuiSource.c: Likewise.
11068 * tui/tuiSourceWin.c: Likewise.
11069 * tui/tuiStack.c: Likewise.
11070 * tui/tuiWin.c: Likewise.
11071
11072 2002-02-07 Elena Zannoni <ezannoni@redhat.com>
11073
11074 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
11075 to include space for pseudoregs as well. Update loops accordingly.
11076 (sh_fp_frame_init_saved_regs): Ditto.
11077 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
11078
11079 2002-02-07 Andrew Cagney <ac131313@redhat.com>
11080
11081 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
11082 Add Richard Earnshaw to Arm maintainers.
11083
11084 2002-02-07 Andrew Cagney <ac131313@redhat.com>
11085
11086 * defs.h (warning_begin): Delete declaration.
11087
11088 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
11089 Delete macro.
11090
11091 2002-02-07 Michael Snyder <msnyder@redhat.com>
11092
11093 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
11094 Logic bug, remove misplaced else.
11095
11096 2002-02-07 Klee Dienes <klee@apple.com>
11097
11098 * fork-inferior.c (fork_inferior): Add '!' to the list of
11099 characters that need to be quoted when building a string for the
11100 shell. Quote '!' specifically with a backslash, since CSH chokes
11101 when trying to evaluate "str!str".
11102
11103 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
11104
11105 * rdi-share/host.h: Only provide a typedef for bool if it is not
11106 defined.
11107
11108 2002-02-04 Michael Snyder <msnyder@redhat.com>
11109
11110 * breakpoint.h (enum bptype): Add new overlay event bp type.
11111 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
11112
11113 * breakpoint.c (create_internal_breakpoint): New function.
11114 (internal_breakpoint_number): Moved into create_internal_breakpoint.
11115 (create_longjmp_breakpoint): Use create_internal_breakpoint.
11116 (create_thread_event_breakpoint): Ditto.
11117 (create_solib_event_breakpoint): Ditto.
11118 (create_overlay_event_breakpoint): New function.
11119 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
11120 (update_breakpoints_after_exec): Delete and re-initialize
11121 overlay event breakpoints after an exec. Add FIXME comment
11122 about longjmp breakpoint.
11123 (print_it_typical): Ignore overlay event breakpoints.
11124 (print_one_breakpoint): Ditto.
11125 (mention): Ditto.
11126 (bpstat_what): Do not stop for overlay event breakpoints.
11127 (delete_breakpoint): Don't delete overlay event breakpoints.
11128 (breakpoint_re_set_one): Delete the overlay event breakpoint.
11129 (breakpoint_re_set): Re-create overlay event breakpoint.
11130
11131 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
11132 (overlay_manual_command): Disable overlay breakpoints.
11133 (overlay_off_command): Disable overlay breakpoints.
11134
11135 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
11136
11137 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
11138 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
11139 to here from config/tm-arm.h.
11140 (coff_sym_is_thumb): Make static.
11141 (arm_elf_make_msymbol_special): New function.
11142 (arm_coff_make_msymbol_special): New function.
11143 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
11144 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
11145 (coff_sym_is_thumb): Delete declaration.
11146 (arm_elf_make_msymbol_special): Declare.
11147 (arm_coff_make_msymbol_special): Declare.
11148 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
11149 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
11150
11151 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
11152
11153 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
11154
11155 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
11156
11157 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
11158 * gdbarch.c gdbarch.h: Regenerate.
11159 * arch-utils.c (default_print_float_info): New function.
11160 * arch-utils.h (default_print_float_info): Prototype it.
11161 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
11162 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
11163 (PRINT_FLOAT_INFO): Document it.
11164
11165 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
11166 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
11167 (PRINT_FLOAT_INFO): Define.
11168
11169 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
11170
11171 * win32-nat.c (_initialize_check_for_gdb_ini):
11172 Add typecast to sprintf argument to suppress a warning.
11173
11174 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
11175
11176 * win32-nat.c (last_sig): Changed type of variable to target_signal,
11177 to allow easier handling of pass state.
11178 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
11179 that gives exception name and address.
11180 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
11181 and set last_sig value to ourstatus->value.sig. Some missing
11182 exceptions added.
11183 (child_continue): Correctly report continue_status.
11184 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
11185 TARGET_SIGNAL_0 (new default value).
11186 (child_resume): consider sig argument passed to decide if
11187 the exception should be passed to debuggee or not.
11188
11189 2002-02-05 Michael Snyder <msnyder@redhat.com>
11190
11191 * regcache.c (fetch_register): Call target_fetch_register
11192 only if we don't call FETCH_PSEUDO_REGISTER.
11193 (store_register): Call target_store_register only if we
11194 don't call STORE_PSEUDO_REGISTER.
11195
11196 2002-02-05 Elena Zannoni <ezannoni@redhat.com>
11197
11198 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
11199 ELF_MAKE_MSYMBOL_SPECIAL.
11200 * gdbarch.c, gdbarch.h: Regenerate.
11201 * arch-utils.c (default_make_msymbol_special): New function.
11202 * arch-utils.h (default_make_msymbol_special): Export.
11203 * elfread.c (elf_symtab_read): Compile use of
11204 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
11205 multiarched.
11206 * coffread.c (coff_symtab_read): Ditto, for
11207 COFF_MAKE_MSYMBOL_SPECIAL.
11208
11209 2002-02-05 Jim Blandy <jimb@redhat.com>
11210
11211 * solib-svr4.c (svr4_truncate_ptr): New function.
11212 (svr4_relocate_section_addresses): Do the address arithmetic with
11213 the appropriate truncation for target addresses, even when
11214 CORE_ADDR is larger than a target address.
11215
11216 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11217
11218 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
11219 to (int *).
11220
11221 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11222
11223 * gdbserver/linux-low.c (kill_inferior): Remove commented out
11224 code.
11225
11226 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11227
11228 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
11229
11230 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11231
11232 * gdbserver/linux-low.c: Remove unused include files.
11233
11234 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11235
11236 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
11237 (read_inferior_memory): Use it.
11238 (write_inferior_memory): Likewise.
11239
11240 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11241
11242 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
11243 grubbing through sys_errlist.
11244
11245 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11246
11247 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
11248
11249 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
11250 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
11251
11252 2002-02-04 Andrew Cagney <ac131313@redhat.com>
11253
11254 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
11255 (do_sfunc, set_cmd_sfunc): New functions.
11256
11257 * command.h (struct cmd_list_element): Add field func.
11258 * cli/cli-decode.h (struct cmd_list_element): Ditto.
11259 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
11260 * cli/cli-decode.h: Ditto.
11261
11262 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
11263 (help_all, help_cmd_list): Ditto.
11264 (find_cmd, complete_on_cmdlist): Ditto.
11265 * top.c (execute_command): Ditto.
11266
11267 * cli/cli-setshow.c (do_setshow_command): Call func instead of
11268 function.sfunc.
11269
11270 * infcmd.c (notice_args_read): Fix function signature.
11271
11272 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
11273 * cli/cli-decode.c (add_set_cmd): Ditto.
11274 * utils.c (initialize_utils): Ditto.
11275 * maint.c (_initialize_maint_cmds): Ditto.
11276 * infrun.c (_initialize_infrun): Ditto.
11277 * demangle.c (_initialize_demangler): Ditto.
11278 * remote.c (add_packet_config_cmd): Ditto.
11279 * mips-tdep.c (_initialize_mips_tdep): Ditto.
11280 * cris-tdep.c (_initialize_cris_tdep): Ditto.
11281 * proc-api.c (_initialize_proc_api): Ditto.
11282 * kod.c (_initialize_kod): Ditto.
11283 * valprint.c (_initialize_valprint): Ditto.
11284 * top.c (init_main): Ditto.
11285 * infcmd.c (_initialize_infcmd): Ditto.
11286 * corefile.c (_initialize_core): Ditto.
11287 * arm-tdep.c (_initialize_arm_tdep): Ditto.
11288 * arch-utils.c (initialize_current_architecture): Ditto.
11289 (_initialize_gdbarch_utils): Ditto.
11290 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
11291
11292 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
11293 * wince.c (_initialize_inftarg): Ditto.
11294 * symfile.c (_initialize_symfile): Ditto.
11295 * mips-tdep.c (_initialize_mips_tdep): Ditto.
11296 * language.c (_initialize_language): Ditto.
11297 * arc-tdep.c (_initialize_arc_tdep): Ditto.
11298
11299 2002-02-04 Michael Snyder <msnyder@redhat.com>
11300
11301 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
11302
11303 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
11304
11305 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
11306 Add rules for building the register data files.
11307
11308 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
11309
11310 * regformats/regdat.sh: Add braces to the definition of
11311 expedite_regs_${arch}.
11312
11313 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
11314
11315 * regformats/regdef.h (struct reg): Add comment describing the
11316 requirements for offset and size fields.
11317
11318 2002-02-04 Andreas Schwab <schwab@suse.de>
11319
11320 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
11321 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
11322
11323 2002-02-04 Richard Earnshaw <rearnsha@arm.com>
11324
11325 * gdbarch.sh (copyright): Update years in generated header.
11326 (SMASH_TEXT_ADDRESS): Add rule.
11327 * gdbarch.h, gdbarch.c: Re-generate.
11328 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
11329 * dbxread.c: Likewise.
11330 * dwarfread.c: Likewise.
11331 * elfread.c: Likewise.
11332 * somread.c: Likewise.
11333
11334 * arm-tdep.c (arm_smash_text_address): New function.
11335 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
11336
11337 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
11338
11339 Add support for hardware watchpoints on win32 native.
11340 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
11341 CONTEXT_DEBUG_REGISTERS.
11342 (dr variable): New variable. Static array containing a local copy
11343 of debug registers.
11344 (debug_registers_changed): New variable. Reflects when debug registers
11345 are changed and need to be written to inferior.
11346 (debug_registers_used): New variable. Reflects when any debug register
11347 was set, used when new threads are created.
11348 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
11349 i386-nat code.
11350 (thread_rec): Set dr array if id is the thread of current_event .
11351 (child_continue, child_resume): Change the debug registers for all
11352 threads if debug_registers_changed.
11353 (child_add_thread): Change the debug registers if debug_registers_used.
11354 * config/i386/cygwin.mh: Add use of i386-nat.o file.
11355 Link nm.h to new nm-cygwin.h file.
11356 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
11357 of hardware registers.
11358
11359 2002-02-03 Andrew Cagney <ac131313@redhat.com>
11360
11361 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
11362 Restore behavour broken by 2002-01-20 Andrew Cagney
11363 <ac131313@redhat.com> IEEE_FLOAT removal.
11364
11365 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11366
11367 * c-valprint.c (c_val_print): Pass a proper valaddr to
11368 cp_print_class_method.
11369 * valops.c (search_struct_method): If there is only one method
11370 and args is NULL, return that method.
11371
11372 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11373
11374 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
11375 accessing tag_name directly.
11376
11377 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11378
11379 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
11380 of accessing tag_name directly.
11381
11382 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11383
11384 PR gdb/280
11385 * gdbtypes.c (replace_type): New function.
11386 * gdbtypes.h (replace_type): Add prototype.
11387 * stabsread.c (read_type): Use replace_type.
11388
11389 2002-02-03 Richard Earnshaw <rearnsha@arm.com>
11390
11391 * Makefile.in (memattr.o): Add missing dependencies rule.
11392
11393 2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11394
11395 * breakpoint.c (break_at_finish_command): Really export.
11396 (break_at_finish_at_depth_command): Ditto.
11397 (tbreak_at_finish_command): Ditto.
11398 * hppa-tdep.c: Include completer.h.
11399 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
11400 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
11401
11402 2002-02-01 Andrew Cagney <ac131313@redhat.com>
11403
11404 * utils.c (do_write): New function.
11405 (error_stream): Rewrite combining the code from error_begin and
11406 verror.
11407 (verror): Rewrite using error_stream.
11408 (error_begin): Delete function.
11409
11410 2002-02-01 Andrew Cagney <ac131313@redhat.com>
11411
11412 * utils.c (error_begin): Make static.
11413 * defs.h (error_begin): Delete declaration.
11414
11415 * linespec.c (cplusplus_error): Replace cplusplus_hint.
11416 (decode_line_1): Use cplusplus_error instead of error_begin,
11417 cplusplus_hint and return_to_top_level.
11418 * coffread.c (coff_symfile_read): Use error instead of error_begin
11419 and return_to_top_level.
11420 * infrun.c (default_skip_permanent_breakpoint): Ditto.
11421
11422 2002-02-01 Andrew Cagney <ac131313@redhat.com>
11423
11424 * language.h (type_error, range_error): Make string parameter
11425 constant.
11426 * language.c (warning_pre_print): Delete extern declaration.
11427 * dwarfread.c (warning_pre_print): Ditto.
11428 * language.c (type_error, range_error): Rewrite to use verror and
11429 vwarning instead of warning_begin.
11430
11431 2002-02-01 Michael Snyder <msnyder@redhat.com>
11432
11433 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
11434 (set_ignore_count): Move misplaced comment back where it belongs.
11435
11436 2002-02-01 Andrew Cagney <ac131313@redhat.com>
11437
11438 * command.h (NO_FUNCTION): Delete macro.
11439 * cli/cli-decode.h (NO_FUNCTION): Ditto.
11440 * top.c (execute_command): Replace NO_FUNCTION with NULL.
11441 * tracepoint.c (_initialize_tracepoint): Ditto.
11442 * cli/cli-decode.c (add_set_cmd): Ditto.
11443 * cli/cli-cmds.c (init_cli_cmds): Ditto.
11444
11445 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
11446
11447 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
11448 Update ``this'' pointer when calling virtual functions.
11449
11450 2002-02-01 Michael Snyder <msnyder@redhat.com>
11451
11452 * breakpoint.c (create_temp_exception_breakpoint): Delete.
11453 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
11454
11455 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
11456
11457 * regformats/reg-arm.dat: New file.
11458 * regformats/reg-i386.dat: New file.
11459 * regformats/reg-ia64.dat: New file.
11460 * regformats/reg-m68k.dat: New file.
11461 * regformats/reg-mips.dat: New file.
11462 * regformats/reg-ppc.dat: New file.
11463 * regformats/reg-sh.dat: New file.
11464 * regformats/regdef.h: New file.
11465 * regformats/regdat.sh: New file.
11466
11467 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
11468
11469 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
11470 (arm_frame_args_address, arm_frame_locals_address): New functions.
11471 (arm_frame_num_args): New function.
11472 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
11473 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
11474 (FRMA_NUM_ARGS): Call arm_frame_num_args.
11475
11476 2002-01-31 Michael Snyder <msnyder@redhat.com>
11477
11478 * breakpoint.c (break_at_finish_command): Export.
11479 (break_at_finish_at_depth_command): Export.
11480 (tbreak_at_finish_command): Export.
11481 (_initialize_breakpoint): Delete "xbreak" and "txbreak" commands.
11482 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
11483 "txbreak" commands, which are HPPA specific.
11484
11485 * printcmd.c (disassemble_command): Remove an ancient
11486 artifact of an old merge.
11487
11488 * symfile.h (enum overlay_debugging_state):
11489 Define enum constant values for overlay mode.
11490 * symfile.c (overlay_debugging): Use enums instead of literals.
11491 (overlay_is_mapped, overlay_auto_command,
11492 overlay_manual_command): Ditto.
11493
11494 * breakpoint.c (insert_breakpoints, remove_breakpoint,
11495 breakpoint_here_p, breakpoint_inserted_here_p,
11496 breakpoint_thread_match, bpstat_stop_status,
11497 describe_other_breakpoints, check_duplicates, clear_command):
11498 Coding standard fixes.
11499
11500 * target.c (target_xfer_memory): Add spaces, coding standard.
11501 (do_xfer_memory): Add missing line to trust-readonly
11502 code: check bfd SEC_READONLY flag for section.
11503
11504 2002-01-31 Andrew Cagney <ac131313@redhat.com>
11505
11506 * PROBLEMS: Fix typo, 5.1->5.1.1.
11507
11508 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
11509
11510 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
11511 data symbols, since we search based on textlow and texthigh.
11512 (find_pc_sect_symtab): Likewise.
11513
11514 2002-01-30 Andrew Cagney <ac131313@redhat.com>
11515
11516 * defs.h (vwarning): Declare.
11517 * utils.c (vwarning): New function.
11518 (warning): Call vwarning.
11519 (warning_begin): Delete function.
11520
11521 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
11522 the warning message.
11523 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
11524 warning_begin.
11525
11526 2002-01-30 Michael Snyder <msnyder@redhat.com>
11527
11528 * NEWS: Mention "set trust-readonly-sections" command.
11529 Mention generate-core-file command.
11530
11531 2002-01-15 Michael Snyder <msnyder@redhat.com>
11532
11533 * target.c: New command, "set trust-readonly-sections on".
11534 (do_xfer_memory): Honor the suggestion to trust readonly sections
11535 by reading them from the object file instead of from the target.
11536 (initialize_targets): Register command "set trust-readonly-sections".
11537
11538 2002-01-29 Andrew Cagney <ac131313@redhat.com>
11539
11540 * parse.c (target_map_name_to_register): Simplify, search regs and
11541 pseudo-regs using a single loop.
11542
11543 2002-01-30 Andrew Cagney <ac131313@redhat.com>
11544
11545 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
11546
11547 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
11548
11549 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
11550 * config/i386/i386v42mp.mh: Add i387-nat.o .
11551 * i386v4-nat.c: Include i387-nat.h.
11552 (supply_fpregset): Use i387_supply_fsave.
11553 (fill_fpregset): Use i387_fill_fsave.
11554
11555 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
11556
11557 * arm-tdep.c (arm_call_dummy_words): Define.
11558 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
11559 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
11560 (CALL_DUMMY_WORDS): Define.
11561 (arm_call_dummy_words): Declare.
11562 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
11563 (arm_linux_call_dummy_words): Declare.
11564
11565 2002-01-30 Andreas Schwab <schwab@suse.de>
11566
11567 * m68klinux-nat.c: Fix last change to use regcache_collect
11568 instead of referencing registers[] directly.
11569
11570 2002-01-29 Andrew Cagney <ac131313@redhat.com>
11571
11572 * parse.c (target_map_name_to_register): Delete code wrapped in
11573 #ifdef REGISTER_NAME_ALIAS_HOOK.
11574
11575 2002-01-28 Michael Snyder <msnyder@redhat.com>
11576
11577 * regcache.c (legacy_read_register_gen): Need to be able to
11578 read pseudo-register as well as real register.
11579 (legacy_write_register_gen): Ditto.
11580
11581 2002-01-28 Andrew Cagney <ac131313@redhat.com>
11582
11583 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
11584 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
11585 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
11586 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
11587 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
11588 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
11589 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
11590 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
11591 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
11592 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
11593 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
11594 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
11595 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
11596 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
11597 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
11598 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
11599 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
11600 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
11601 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
11602 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
11603
11604 2002-01-28 Andrew Cagney <ac131313@redhat.com>
11605
11606 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
11607 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
11608 (initialize_current_architecture): Update target_byte_order using
11609 information from BFD.
11610 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
11611 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
11612
11613 2002-01-28 Andrew Cagney <ac131313@redhat.com>
11614
11615 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
11616 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
11617
11618 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
11619 #ifdef INVALID_FLOAT.
11620 * infcmd.c (do_registers_info): Ditto.
11621 * values.c (unpack_double): Ditto. Add comment.
11622
11623 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
11624 already commented out.
11625
11626 2002-01-26 Andreas Schwab <schwab@suse.de>
11627
11628 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
11629 * m68klinux-nat.c: Update ptrace interface for fetching/storing
11630 registers and add support for PTRACE_GETREGS.
11631
11632 2002-01-24 Andrew Cagney <ac131313@redhat.com>
11633
11634 GDB 5.1.1 released from 5.1 branch.
11635 * NEWS: Add 5.1.1 news.
11636 * README: Sync with 5.1 branch.
11637
11638 2002-01-23 Fred Fish <fnf@redhat.com>
11639
11640 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
11641 stabstring on initial malloc. Reallocing will copy it for us,
11642 if necessary.
11643
11644 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
11645
11646 * Makefile.in (hpread_h): Delete.
11647 (HFILES_NO_SRCDIR): Remove hpread.h.
11648 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
11649 (hpread.o): Update dependencies.
11650 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
11651
11652 * hp-psymtab-read.c: Remove file.
11653 * hp-symtab-read.c: Remove file.
11654 * hpread.h: Remove file.
11655
11656 * hpread.c: Merge all contents of hp-psymtab-read.c,
11657 hp-symtab-read.c and hpread.h into this file, as it was prior to
11658 January 1999.
11659
11660 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
11661 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
11662 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
11663 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
11664
11665 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
11666
11667 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
11668 fill_gregset): Call gdbarch_tdep() just once, assign result to
11669 variable and use that, instead of calling the function several
11670 times.
11671
11672 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
11673
11674 * configure.host: Accept sparcv9 as alias for sparc64.
11675 * configure.tgt: Likewise.
11676
11677 2002-01-22 Kevin Buettner <kevinb@redhat.com>
11678
11679 * solib-aix5.c (build_so_list_from_mapfile)
11680 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
11681 arguments is not reversed.
11682 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
11683 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
11684
11685 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
11686
11687 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
11688 modified version of obsolete sh_fetch_pseudo_register.
11689 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
11690 (sh4_register_read): New function.
11691 (sh_pseudo_register_write): New function. Renamed and modified
11692 version of obsolete sh_store_pseudo_register.
11693 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
11694 (sh4_register_write): New function.
11695 (sh_gdbarch_init): Remove setting of gdbarch function
11696 fetch_pseudo_register and store_pseudo_register. Remove setting of
11697 register_convert_to_raw, register_convert_to_virtual,
11698 register_convertible.
11699 (sh_sh4_register_convertible): Delete. No longer needed. All is
11700 taken care by architecture specific functions
11701 register_read/register_write.
11702 (sh_sh4_register_convert_to_virtual): Make static.
11703 (sh_sh4_register_convert_to_raw): Ditto.
11704
11705 2002-01-22 Andrew Cagney <ac131313@redhat.com>
11706
11707 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
11708 (floatformat_is_nan, floatformat_mantissa): Ditto.
11709
11710 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
11711 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
11712 builtin_type_ieee_double_little,
11713 builtin_type_ieee_double_littlebyte_bigword,
11714 builtin_type_m68881_ext, builtin_type_i960_ext,
11715 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
11716 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
11717 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
11718 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
11719
11720 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
11721
11722 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
11723 parameter. Set frameless flag if it exists and depended of
11724 whether the scanned function is frameless or not.
11725 (xstormy16_skip_prologue): If function is frameless, return
11726 result of xstormy16_scan_prologue().
11727 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
11728 call.
11729
11730 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
11731
11732 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
11733 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
11734 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
11735 sh_sh4_register_byte, sh_sh4_register_raw_size,
11736 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
11737 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
11738 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
11739 sh_store_pseudo_register, sh_do_pseudo_register): Call
11740 gdbarch_tdep() just once, assign result to variable and use that,
11741 instead of calling the function several times.
11742
11743 2002-01-20 Mark Kettenis <kettenis@gnu.org>
11744
11745 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
11746 macros instead of LAST_FPU_CTRL_REGNUM.
11747 (store_register): Likewise.
11748
11749 2002-01-21 Jim Blandy <jimb@redhat.com>
11750
11751 * infcmd.c (run_command): Check that the `exec' target layer's BFD
11752 is up-to-date before running the program, not just when a program
11753 exits.
11754
11755 2002-01-21 Fred Fish <fnf@redhat.com>
11756
11757 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
11758 when we have found all instructions we are looking for.
11759
11760 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
11761
11762 * arm-tdep.c (arm_register_name): New function.
11763 (arm_registers_names): Make static.
11764 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
11765 (arm_register_name): Declare.
11766 (REGISTER_NAME): Use it.
11767
11768 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
11769 Kevin Buettner <kevinb@redhat.com>
11770
11771 Convert arm targets to new FRAME interface.
11772 * arm-tdep.c (struct frame_extra_info): Remove fsr.
11773 (arm_frame_find_save_regs): Delete.
11774 (arm_frame_init_saved_regs): New.
11775 (arm_init_extra_frame_info): Alloacte saved_regs as required.
11776 Allocate extra_info as required. Convert all uses of fsr.regs
11777 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
11778 to use extra_info.
11779 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
11780 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
11781 (check_prologue_cache, save_prologue_cache): Likewise.
11782 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
11783 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
11784 (FRAME_FIND_SAVED_REGS): Delete.
11785 (arm_frame_find_saved_regs): Delete prototype.
11786 (arm_frame_init_saved_regs): New prototype.
11787 (FRAME_INIT_SAVED_REGS): Define.
11788
11789 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11790
11791 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
11792
11793 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11794
11795 From Jeff Law <law@redhat.com>:
11796 * infttrace.c: Include <sys/pstat.h>.
11797 (child_pid_to_exec_file): Revamp. Use pstat call to get the
11798 exec file if the ttrace equivalent fails.
11799
11800 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11801
11802 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
11803 (closeLogFile): Ditto.
11804
11805 2002-01-20 Michael Chastain <mec@shout.net>
11806
11807 * top.c (print_gdb_version): Bump copyright year to 2002.
11808
11809 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11810
11811 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
11812 Zannoni and Eli Zaretskii.
11813
11814 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
11815
11816 * buildsym.c: Update copyright years.
11817 * c-typeprint.c: Likewise.
11818 * dwarf2read.c: Likewise.
11819 * f-typeprint.c: Likewise.
11820 * gdbtypes.c: Likewise.
11821 * gdbtypes.h: Likewise.
11822 * hp-symtab-read.c: Likewise.
11823 * hpread.c: Likewise.
11824 * mdebugread.c: Likewise.
11825 * p-typeprint.c: Likewise.
11826
11827 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11828
11829 * remote-sim.c (gdbsim_open): Simplify code testing the macro
11830 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
11831 byte-order selectable.
11832 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
11833 * arch-utils.c: Ditto.
11834 (set_endian): Ditto.
11835 (set_endian_from_file): Ditto.
11836 * gdbserver/low-sim.c (create_inferior): Ditto.
11837 * gdbarch.sh: Ditto.
11838 * gdbarch.h: Re-generate.
11839 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11840 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
11841 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
11842 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11843 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11844 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11845 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
11846 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
11847 macro definition.
11848 * config/mips/tm-wince.h: Remove #undef of macro
11849 TARGET_BYTE_ORDER_SELECTABLE.
11850 * config/sh/tm-wince.h: Ditto.
11851
11852 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
11853
11854 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
11855 member function fields. Add accessor macro
11856 TYPE_FN_FIELD_ARTIFICIAL.
11857 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
11858 * c-typeprint.c (c_type_print_base): Skip artificial member
11859 functions.
11860
11861 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
11862
11863 * f-typeprint.c: Delete unused function f_type_print_args.
11864 * p-typeprint.c: Delete unused function pascal_type_print_args.
11865
11866 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
11867
11868 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
11869 comment. Add ``artificial'' to ``union field_location''.
11870
11871 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
11872
11873 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
11874 * mdebugread.c (parse_symbol): Likewise.
11875 * stabsread.c (define_symbol): Likewise.
11876 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
11877 initializing TYPE_FIELD_BITPOS to n (obsolete).
11878 (hpread_doc_function_type): Likewise.
11879 * hpread.c (hpread_function_type): Likewise.
11880
11881 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11882
11883 * configure.in (host_makefile_frag): Only require a host makefile
11884 fragment when a native build.
11885 * configure: Re-generate.
11886
11887 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11888
11889 * doublest.h (floatformat_from_type): Declare.
11890 * doublest.c (floatformat_from_type): New function.
11891 (convert_typed_floating): Use.
11892
11893 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
11894 call to function floatformat_from_type.
11895
11896 * gdbarch.sh (IEEE_FLOAT): Delete.
11897 * gdbarch.h, gdbarch.c: Re-generate.
11898 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
11899 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
11900 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
11901 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
11902 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
11903 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
11904 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
11905 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
11906 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
11907 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
11908 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
11909 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
11910
11911 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
11912 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
11913 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
11914 * sh-tdep.c (sh_gdbarch_init): Ditto.
11915 * mips-tdep.c (mips_gdbarch_init): Ditto.
11916 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
11917 * cris-tdep.c (cris_gdbarch_init): Ditto.
11918
11919 2002-01-20 Jiri Smid <smid@suse.cz>
11920
11921 * configure.host, configure.tgt: Support x86-64.
11922 * NEWS: Note new target x86-64.
11923
11924 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
11925 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
11926 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
11927 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
11928 x86-64-linux-nat.o): Fix dependencies.
11929
11930 2002-01-19 Andrew Cagney <ac131313@redhat.com>
11931
11932 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
11933 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
11934 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
11935 * config/sparc/xm-sun4os4.h: Delete file.
11936 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
11937
11938 2002-01-19 Andrew Cagney <ac131313@redhat.com>
11939
11940 * config/sparc/sparclynx.mh (XM_FILE): Delete.
11941 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
11942 * config/m68k/m68klynx.mh (XM_FILE): Delete.
11943 * config/i386/i386lynx.mh (XM_FILE): Delete.
11944 * config/rs6000/xm-rs6000ly.h: Delete file.
11945 * config/sparc/xm-sparclynx.h: Delete file.
11946 * config/m68k/xm-m68klynx.h: Delete file.
11947 * config/i386/xm-i386lynx.h: Delete file.
11948 * config/xm-lynx.h: Delete file.
11949 * config/djgpp/fnchange.lst: Update.
11950
11951 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
11952
11953 * alpha-tdep.c (alpha_register_byte): New function.
11954 (alpha_register_raw_size): Ditto.
11955 (alpha_register_virtual_size): Ditto.
11956 (alpha_skip_prologue_internal): Renamed from
11957 alpha_skip_prologue.
11958 (alpha_skip_prologue): New version that calls
11959 alpha_skip_prologue_internal.
11960 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
11961 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
11962 second argument from alpha_skip_prologue.
11963 (REGISTER_BYTE): Use alpha_register_byte.
11964 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
11965 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
11966 (FRAMELESS_FUNCTION_INVOCATION): Use
11967 generic_frameless_function_invocation_not.
11968 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
11969 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
11970
11971 2002-01-19 Andrew Cagney <ac131313@redhat.com>
11972
11973 * config/mips/xm-news-mips.h: Delete file.
11974 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
11975
11976 * config/m88k/xm-m88k.h: Delete file.
11977 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
11978 * config/m88k/xm-delta88v4.h: Ditto.
11979 * config/m88k/xm-delta88.h: Ditto.
11980
11981 * config/alpha/xm-fbsd.h: Delete file.
11982 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
11983
11984 * config/sparc/xm-sparc.h: Delete file.
11985 * Makefile.in (xm-sun4os4.h): Delete dependency.
11986 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
11987 * config/sparc/xm-sun4os4.h: Ditto.
11988 * config/sparc/xm-linux.h: Ditto.
11989
11990 * config/i386/xm-windows.h: Delete file.
11991
11992 2002-01-19 Andrew Cagney <ac131313@redhat.com>
11993
11994 * utils.c: Include <sys/param.h> for MAXPATHLEN.
11995 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
11996
11997 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
11998
11999 * alpha-tdep.c (alpha_call_dummy_words): New.
12000 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
12001 (CALL_DUMMY_P): Define.
12002 (CALL_DUMMY_WORDS): Define.
12003 (SIZEOF_CALL_DUMMY_WORDS): Define.
12004
12005 2002-01-19 Per Bothner <per@bothner.com>
12006
12007 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
12008 isn't NULL, which can happen with some gcj-3.x-produced code.
12009
12010 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
12011
12012 * alpha-tdep.c (alpha_register_virtual_type): New function.
12013 (alpha_init_frame_pc_first): Ditto.
12014 (alpha_fix_call_dummy): Ditto.
12015 (alpha_store_struct_return): Ditto.
12016 (alpha_extract_struct_value_address): Ditto.
12017 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
12018 alpha_register_virtual_type.
12019 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
12020 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
12021 alpha_extract_struct_value_address.
12022 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
12023 (INIT_FRAME_PC): Use init_frame_pc_noop.
12024 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
12025
12026 2002-01-19 Mark Kettenis <kettenis@gnu.org>
12027
12028 * i386gnu-nat.c: Include "i386-tdep.h".
12029 (fetch_fpregs): Simplify code dealing with uninitialized floating
12030 point states such that it doesn't require FP7_REGNUM.
12031
12032 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12033
12034 * alpha-tdep.c (frame_extra_info): New.
12035 (alpha_find_saved_regs): Make static. Use
12036 frame->extra_info.
12037 (alpha_frame_init_saved_regs): New function.
12038 (alpha_frame_saved_pc): Use frame->extra_info.
12039 (temp_saved_regs): Don't declare as struct frame_saved_regs.
12040 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
12041 (init_extra_frame_info): Rename to...
12042 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
12043 (alpha_print_extra_frame_info): New function.
12044 (alpha_frame_locals_address): Ditto.
12045 (alpha_frame_args_address): Ditto.
12046 (alpha_pop_frame): Use frame->extra_info.
12047 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
12048 alpha_frame_args_address.
12049 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
12050 (alpha_find_saved_regs): Remove prototype.
12051 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
12052 (EXTRA_FRAME_INFO): Remove.
12053 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
12054 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
12055
12056 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12057
12058 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
12059 (alpha_cannot_fetch_register): Ditto.
12060 (alpha_cannot_store_register): Ditto.
12061 (alpha_register_convertible): Ditto.
12062 (alpha_use_struct_convention): Ditto.
12063 * config/alpha/tm-alpha.h: Update copyright years.
12064 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
12065 (INNER_THAN): Use core_addr_lessthan.
12066 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
12067 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
12068 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
12069 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
12070 (FRAME_CHAIN): Remove unnecessary cast.
12071
12072 2002-01-18 Andrew Cagney <ac131313@redhat.com>
12073
12074 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
12075 obsolete.
12076
12077 2002-01-18 Andrew Cagney <ac131313@redhat.com>
12078
12079 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
12080 * monitor.c, remote-array.c, remote-bug.c: Ditto.
12081 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
12082 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
12083 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
12084 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
12085 * x86-64-linux-nat.c: Ditto.
12086
12087 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12088
12089 * alpha-tdep.c (alpha_register_name): New function.
12090 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
12091 (REGISTER_NAME): Define.
12092
12093 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12094
12095 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
12096
12097 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12098
12099 * alpha-tdep.c: Update copyright years.
12100 (alpha_next_pc): New function.
12101 (alpha_software_single_step): Ditto.
12102 * config/alpha/tm-alpha.h: Add prototype for
12103 alpha_software_single_step.
12104
12105 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12106
12107 * alphabsd-nat.c: Update copyright years.
12108 (fill_gregset): Use regcache_collect.
12109 (fill_fpregset): Likewise.
12110 (fetch_inferior_registers): Only fetch integer registers
12111 if requested to do so.
12112 (store_inferior_registers): Only store integer registers
12113 if requested to do so.
12114
12115 2002-01-17 Andrew Cagney <ac131313@redhat.com>
12116
12117 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
12118 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
12119 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
12120 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
12121 * config/alpha/fbsd.mh (XDEPFILES): Delete.
12122 * config/arm/linux.mh (XDEPFILES): Delete.
12123 * config/arm/nbsd.mh (XDEPFILES): Delete.
12124 * config/i386/i386dgux.mh (XDEPFILES): Delete.
12125 * config/i386/i386sol2.mh (XDEPFILES): Delete.
12126 * config/i386/i386m3.mh (XDEPFILES): Delete.
12127 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
12128 * config/i386/i386gnu.mh (XDEPFILES): Delete.
12129 * config/i386/fbsd.mh (XDEPFILES): Delete.
12130 * config/i386/i386bsd.mh (XDEPFILES): Delete.
12131 * config/i386/i386sco5.mh (XDEPFILES): Delete.
12132 * config/i386/i386v4.mh (XDEPFILES): Delete.
12133 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
12134 * config/i386/i386sco4.mh (XDEPFILES): Delete.
12135 * config/i386/i386aix.mh (XDEPFILES): Delete.
12136 * config/i386/go32.mh (XDEPFILES): Delete.
12137 * config/i386/cygwin.mh (XDEPFILES): Delete.
12138 * config/i386/i386lynx.mh (XDEPFILES): Delete.
12139 * config/i386/i386mach.mh (XDEPFILES): Delete.
12140 * config/i386/i386v32.mh (XDEPFILES): Delete.
12141 * config/i386/linux.mh (XDEPFILES): Delete.
12142 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
12143 * config/i386/ncr3000.mh (XDEPFILES): Delete.
12144 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
12145 * config/i386/i386sco.mh (XDEPFILES): Delete.
12146 * config/i386/i386v.mh (XDEPFILES): Delete.
12147 * config/i386/nbsd.mh (XDEPFILES): Delete.
12148 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
12149 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
12150 * config/i386/symmetry.mh (XDEPFILES): Delete.
12151 * config/i386/obsd.mh (XDEPFILES): Delete.
12152 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
12153 * config/ia64/linux.mh (XDEPFILES): Delete.
12154 * config/ia64/aix.mh (XDEPFILES): Delete.
12155 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
12156 * config/m68k/dpx2.mh (XDEPFILES): Delete.
12157 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
12158 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
12159 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
12160 * config/m68k/linux.mh (XDEPFILES): Delete.
12161 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
12162 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
12163 * config/m68k/nbsd.mh (XDEPFILES): Delete.
12164 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
12165 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
12166 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
12167 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
12168 * config/m88k/delta88.mh (XDEPFILES): Delete.
12169 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
12170 * config/m88k/m88k.mh (XDEPFILES): Delete.
12171 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
12172 * config/mips/linux.mh (XDEPFILES): Delete.
12173 * config/mips/irix6.mh (XDEPFILES): Delete.
12174 * config/mips/irix5.mh (XDEPFILES): Delete.
12175 * config/mips/irix4.mh (XDEPFILES): Delete.
12176 * config/mips/irix3.mh (XDEPFILES): Delete.
12177 * config/mips/decstation.mh (XDEPFILES): Delete.
12178 * config/mips/mipsm3.mh (XDEPFILES): Delete.
12179 (NATDEPFILES): Move core-aout.o to here.
12180 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
12181 * config/pa/hpux1020.mh (XDEPFILES): Delete.
12182 * config/pa/hppabsd.mh (XDEPFILES): Delete.
12183 * config/pa/hppahpux.mh (XDEPFILES): Delete.
12184 * config/pa/hpux11w.mh (XDEPFILES): Delete.
12185 * config/pa/hppaosf.mh (XDEPFILES): Delete.
12186 * config/pa/hpux11.mh (XDEPFILES): Delete.
12187 * config/powerpc/aix.mh (XDEPFILES): Delete.
12188 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
12189 * config/powerpc/linux.mh (XDEPFILES): Delete.
12190 * config/romp/rtbsd.mh: Rename XDEPFILES.
12191 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
12192 * config/rs6000/aix4.mh (XDEPFILES): Delete.
12193 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
12194 * config/s390/s390.mh (XDEPFILES): Delete.
12195 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
12196 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
12197 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
12198 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
12199 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
12200 * config/sparc/nbsd.mh (XDEPFILES): Delete.
12201 * config/sparc/linux.mh (XDEPFILES): Delete.
12202 * config/vax/vaxult.mh (XDEPFILES): Delete.
12203 * config/vax/vaxult2.mh (XDEPFILES): Delete.
12204 * Makefile.in (DEPFILES): Remove XDEPFILES.
12205
12206 2002-01-17 Andrew Cagney <ac131313@redhat.com>
12207
12208 * utils.c (internal_verror): Fix comments, default is yes not no.
12209 Update queries to match. Default to quit and dump core.
12210
12211 2002-01-17 Andrew Cagney <ac131313@redhat.com>
12212
12213 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
12214 copyright.
12215 * defs.h, event-top.c, gdbcmd.h: Ditto.
12216 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
12217 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
12218 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
12219 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
12220 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
12221 * mi/mi-main.c:Ditto.
12222
12223 * stack.c, symfile.c: Update copyright.
12224
12225 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
12226
12227 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
12228 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
12229 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
12230 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
12231
12232 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
12233
12234 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
12235 * gdbserver/low-lynx.c (myattach): Likewise.
12236 * gdbserver/low-nbsd.c (myattach): Likewise.
12237 * gdbserver/low-sim.c (myattach): Likewise.
12238 * gdbserver/low-sparc.c (myattach): Likewise.
12239 * gdbserver/low-sun3.c (myattach): Likewise.
12240
12241 * gdbserver/low-linux.c (myattach): New function.
12242
12243 * gdbserver/server.c (attach_inferior): New function.
12244 (main): Handle "--attach".
12245
12246 2002-01-16 Andrew Cagney <ac131313@redhat.com>
12247
12248 * MAINTAINERS (language support): Daniel Jacobwitz is C++
12249 maintainer.
12250
12251 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
12252
12253 * c-typeprint.c (is_type_conversion_operator): Add additional
12254 check for non-conversion operators.
12255
12256 2002-01-15 Michael Snyder <msnyder@redhat.com>
12257
12258 * linux-proc.c: Add "info proc" command, a la procfs.c.
12259 (read_mapping): New function, abstract and re-use code.
12260 (linux_find_memory_regions): Use new func read_mapping.
12261 (linux_info_proc_cmd): New function, implement "info proc".
12262 (_initialize_linux_proc): Add new command "info proc".
12263
12264 2002-01-15 Michael Snyder <msnyder@redhat.com>
12265
12266 * symfile.c (generic_load): Use bfd_map_over_sections method
12267 instead of manipulating bfd structure members directly.
12268 (add_section_size_callback): New function, bfd sections callback
12269 used by generic_load.
12270 (load_sections_callback): New function, bfd sections callback
12271 used by generic_load.
12272
12273 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
12274
12275 [Based on work by Jim Blandy]
12276 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
12277 (builtin_type_vec128): Export.
12278 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
12279 types.
12280 (builtin_type_vec128): New builtin type for 128 bit vector
12281 registers.
12282 (build_gdbtypes): Initialize builtin_type_v16qi and
12283 builtin_type_v8hi. Create the vec128 register builtin type
12284 structure.
12285 (build_builtin_type_vec128): New function.
12286 (_initialize_gdbtypes): Register builtin_type_v16qi and
12287 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
12288 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
12289 AltiVec register to new builtin type.
12290
12291 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
12292
12293 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
12294 to make_cv_type.
12295
12296 2002-01-14 Andrew Cagney <ac131313@redhat.com>
12297
12298 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
12299 CLEAN_UP_REGISTER_VALUE.
12300 * regcache.c (supply_register): Update only call.
12301
12302 2002-01-14 Andrew Cagney <ac131313@redhat.com>
12303
12304 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
12305 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
12306 a29k-*-vxworks* targets as obsolete.
12307
12308 2002-01-14 Michael Snyder <msnyder@redhat.com>
12309
12310 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
12311 until we can resolve portability issues.
12312 * gregset.h: Remove references to fpxregs.
12313 * gcore.c (gcore_command): Initialize note_sec to NULL.
12314
12315 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12316
12317 * signals.c (target_signal_to_name): Rewrite. Only use
12318 signals[].name when in bounds and non-NULL.
12319
12320 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12321
12322 From Petr Ledvina <ledvinap@kae.zcu.cz>:
12323 * signals.c (target_signal_to_name): Verify that SIG is within the
12324 bounds of the signals array.
12325
12326 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12327
12328 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
12329
12330 2002-01-13 Keith Seitz <keiths@redhat.com>
12331
12332 * stack.c (print_frame_info_base): Print the frame's pc
12333 only if when print_frame_info_listing_hook is not defined.
12334
12335 2002-01-13 Keith Seitz <keiths@redhat.com>
12336
12337 * varobj.c (varobj_set_value): Make sure that there were no
12338 errors evaluating the object before attempting to set its
12339 value.
12340 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
12341 so this offset adjustment is no longer necessary.
12342 (create_child): Don't set the error flag if the child is
12343 a CPLUS_FAKE_CHILD.
12344 (value_of_child): If value_fetch_lazy fails, return NULL
12345 so that callers will be notified that an error occurred.
12346 (c_value_of_variable): Delay check of variable's validity
12347 until later. We actually want all structs and unions to have
12348 the value "{...}".
12349 Do not return "???" for variables which could not be evaluated.
12350 This error condition must be returned to the caller so that it
12351 can get the error condition from gdb.
12352 (cplus_name_of_child): Adjust index for vptr before figuring
12353 out the name of the child.
12354 (cplus_value_of_child): If a child's (real) parent is not valid,
12355 don't even bother trying to give a value for it. Just return
12356 an error. Change all instances in this function.
12357 (cplus_type_of_child): If our parent is one of the "fake"
12358 parents, we need to get at the type of the real parent, and
12359 derive the child's true type using this information.
12360
12361 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12362
12363 From 2002-01-09 John Marshall <johnm@falch.net>:
12364 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
12365 sources.redhat.com, and tweak some related URLs which had
12366 suffered from linkrot.
12367
12368 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12369
12370 From Jeff law:
12371 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
12372 structures passed in registers.
12373
12374 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
12375
12376 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
12377 white space which prevented compilation. Reported by DSK
12378 <dsk@student.unsw.edu.au>.
12379
12380 2002-01-11 Michael Snyder <msnyder@redhat.com>
12381
12382 * symfile.c (build_section_addr_info_from_section_tab):
12383 Use bfd access method instead of manipulating bfd directly.
12384 (syms_from_objfile): Ditto.
12385 (simple_overlay_update_1): Ditto.
12386 (simple_overlay_update): Ditto.
12387 (generic_load): Ditto.
12388 (overlay_unmapped_address): FIXME comment, bfd access methods.
12389 (sections_overlap): FIXME comment, bfd access methods.
12390 (pc_in_mapped_range): FIXME comment, bfd access methods.
12391 (pc_in_unmapped_range): FIXME comment, bfd access methods.
12392 (section_is_mapped): FIXME comment, bfd access methods.
12393 (section_is_overlay): FIXME comment, bfd access methods.
12394
12395 * symfile.c (generic_load): Whitespace and long line cleanups.
12396 Remove duplicate variable, change several local variables to
12397 more appropriate data types.
12398 (print_transfer_performance): Use %lu instead of %ld for ulongs.
12399
12400 2002-01-12 Andrew Cagney <ac131313@redhat.com>
12401
12402 From Peter Schauer:
12403 * language.c (longest_local_hex_string_custom): Use phex_nz to
12404 convert NUM to a hex string.
12405
12406 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
12407
12408 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
12409 the function.
12410 Update Copyright year.
12411
12412 2002-01-12 Andrew Cagney <ac131313@redhat.com>
12413
12414 * language.c (longest_raw_hex_string): Delete unused function.
12415
12416 2002-01-11 Petr Sorfa <petrs@caldera.com>
12417
12418 * MAINTAINERS (write-after-approval): Add myself.
12419 * dwarf2read.c (read_tag_string_type): Handling of
12420 DW_AT_byte_size.
12421 (read_tag_string_type): FORTRAN fix to prevent propagation of
12422 first string size.
12423 (set_cu_language): Handling of DW_LANG_Fortran95
12424
12425 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
12426
12427 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
12428 GETPID(inferior_ptid).
12429 (store_inferior_registers): Likewise.
12430
12431 2002-01-10 Jason Merrill <jason@redhat.com>
12432
12433 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
12434 Fix DW_OP_minus.
12435
12436 2002-01-10 Andrew Cagney <ac131313@redhat.com>
12437
12438 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
12439 and bfd/elf32-sh-nbsd.c.
12440
12441 2002-01-10 Michael Snyder <msnyder@redhat.com>
12442
12443 * NEWS: Mention --pid and corefile/proc-id behavior change.
12444
12445 * Makefile.in: Add rules for gcore.o and linux-proc.o.
12446 * gcore.c: Include cli/cli-decode.h instead of command.h.
12447
12448 * main.c (captured_main): Add new command line option "--pid".
12449 If the second command line argument (following the symbol-file)
12450 begins with a digit, try to attach to it before trying to open
12451 it as a corefile.
12452 (print_gdb_help): Document the "--pid" argument.
12453
12454 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
12455
12456 * completer.c (command_completer): New function.
12457
12458 * completer.h <command_completer>: Add prototype.
12459
12460 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
12461 completer for the "help" command.
12462
12463 2002-01-09 Jason Merrill <jason@redhat.com>
12464
12465 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
12466
12467 2002-01-09 Michael Snyder <msnyder@redhat.com>
12468
12469 * i386-linux-nat.c (fill_fpxregset): Make global.
12470 (store_fpxregset): Ditto.
12471
12472 * gregset.h (gdb_fpxregset_t): Define.
12473 (supply_fpxregset): Prototype.
12474 (fill_fpxregset): Prototype.
12475
12476 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
12477
12478 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
12479
12480 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
12481 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
12482 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
12483
12484 2002-01-09 Andrew Cagney <ac131313@redhat.com>
12485
12486 * MAINTAINERS: Update target maintainer rules so that any
12487 Maintainer can approve a tested patch for a maintenance-only
12488 target.
12489
12490 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
12491
12492 * MAINTAINERS (write-after-approval): Add myself.
12493
12494 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
12495 IN_SIGTRAMP.
12496
12497 2002-01-08 Michael Snyder <msnyder@redhat.com>
12498
12499 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
12500 real name of the executable, rather than the /proc name.
12501
12502 2002-01-03 Michael Snyder <msnyder@redhat.com>
12503
12504 Implement a "generate-core-file" command in gdb, save target state.
12505 * gcore.c: New file. Implement new command 'generate-core-file'.
12506 Save a corefile image of the current state of the inferior.
12507 * linux-proc.c: Add linux-specific code for saving corefiles.
12508 * target.h (struct target_ops): Add new target vectors for saving
12509 corefiles; to_find_memory_regions and to_make_corefile_notes.
12510 (target_find_memory_regions): New macro.
12511 (target_make_corefile_notes): New macro.
12512 * target.c (update_current_target): Inherit new target methods.
12513 (dummy_find_memory_regions): New place-holder method.
12514 (dummy_make_corefile_notes): New place-holder method.
12515 (init_dummy_target): Initialize new dummy target vectors.
12516 * exec.c (exec_set_find_memory_regions): New function.
12517 Allow the exec_ops vector for memory regions to be taken over.
12518 (exec_make_note_section): New function, target vector method.
12519 * defs.h (exec_set_find_memory_regions): Export prototype.
12520 * procfs.c (proc_find_memory_regions): New function, corefile method.
12521 (procfs_make_note_section): New function, corefile method.
12522 (init_procfs_ops): Set new target vector pointers.
12523 (find_memory_regions_callback): New function.
12524 (procfs_do_thread_registers): New function.
12525 (procfs_corefile_thread_callback): New function.
12526 * sol-thread.c (sol_find_memory_regions): New function.
12527 (sol_make_note_section): New function.
12528 (init_sol_thread_ops): Initialize new target vectors.
12529 * inftarg.c (inftarg_set_find_memory_regions): New function.
12530 Allow to_find_memory_regions vector to be taken over.
12531 (inftarg_set_make_corefile_notes): New function.
12532 Allow to_make_corefile_notes vector to be taken over.
12533 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
12534 interface layer if not target_has_execution (may be a corefile).
12535 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
12536 * config/sparc/sun4sol2.mh: Ditto.
12537 * config/alpha/alpha-linux.mh: Ditto.
12538 * config/arm/linux.mh: Ditto.
12539 * config/i386/x86-64linux.mh: Ditto.
12540 * config/ia64/linux.mh: Ditto.
12541 * config/m68k/linux.mh: Ditto.
12542 * config/mips/linux.mh: Ditto.
12543 * config/powerpc/linux.mh: Ditto.
12544 * config/sparc/linux.mh: Ditto.
12545
12546 2002-01-07 Michael Snyder <msnyder@redhat.com>
12547
12548 * arm-linux-nat.c: Remove references to regcache.c internal data
12549 (registers[] and register_valid[]).
12550
12551 2002-01-07 Michael Snyder <msnyder@redhat.com>
12552
12553 * linux-proc.c: New file. Implement child_pid_to_exec_file,
12554 so that attaching to a pid will automatically read the process's
12555 symbol file and shlibs.
12556 * Makefile.in: Add rule for linux-proc.o.
12557 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
12558 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
12559 * config/arm/linux.mh: Ditto.
12560 * config/i386/linux.mh: Ditto.
12561 * config/i386/x86-64linux.mh: Ditto.
12562 * config/ia64/linux.mh: Ditto.
12563 * config/m68k/linux.mh: Ditto.
12564 * config/mips/linux.mh: Ditto.
12565 * config/powerpc/linux.mh: Ditto.
12566 * config/sparc/linux.mh: Ditto.
12567
12568 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
12569
12570 * win32-nat.c: Add i386-tdep.h dependency.
12571
12572 2002-01-07 Michael Snyder <msnyder@redhat.com>
12573
12574 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
12575 instead of bfd_get_arch_size. Don't bail out just because
12576 there's no exec_bfd.
12577
12578 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
12579 * p-valprint.c (pascal_object_print_value): Ditto.
12580 * somread.c (som_symtab_read): Ditto.
12581 * symfile.c (simple_free_overlay_region_table): Ditto.
12582 * valops.c (value_assign): Ditto.
12583
12584 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
12585 use tilde_expand and strerror for opening save-tracepoints file.
12586
12587 * thread-db.c (thread_db_new_objfile): Indendation fix.
12588
12589 * infptrace.c (GDB_MAX_ALLOCA): New define.
12590 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
12591 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
12592 can be overridden with whatever value is appropriate to the host).
12593 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
12594 alloca to allocate potentially large buffer.
12595 * rs6000-nat.c (child_xfer_memory): Ditto.
12596 * symm-nat.c (child_xfer_memory): Ditto.
12597 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
12598
12599 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
12600
12601 From Nick Clifton <nickc@redhat.com>
12602 * d10v-tdep.c: Set STACK_START to 0x200bffe.
12603
12604 2002-01-07 Michael Snyder <msnyder@redhat.com>
12605
12606 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
12607 Don't use exec_bfd if it's NULL.
12608
12609 2002-01-06 Mark Kettenis <kettenis@gnu.org>
12610
12611 * valops.c (value_arg_coerce): Fix formatting.
12612
12613 2002-01-06 Andrew Cagney <ac131313@redhat.com>
12614
12615 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
12616 * gnu-nat.c: Ditto.
12617
12618 2002-01-06 Andrew Cagney <ac131313@redhat.com>
12619
12620 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
12621 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
12622 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
12623 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
12624 z8k-coff have not been multi-arched. Update z8k-coff build
12625 status.
12626
12627 2002-01-06 Andrew Cagney <ac131313@redhat.com>
12628
12629 * MAINTAINERS: Mark a29k target as obsolete.
12630 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
12631 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
12632 comments.
12633 * NEWS: Note that a29k targets are obsolete.
12634 * a29k-tdep.c: Mark as obsolete.
12635 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
12636 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
12637 a29k-*-vxworks* targets as obsolete.
12638 * remote-adapt.c: Obsolete.
12639 * remote-eb.c: Obsolete.
12640 * remote-mm.c: Obsolete.
12641 * remote-udi.c: Obsolete.
12642 * config/a29k/a29k-udi.mt: Obsolete.
12643 * config/a29k/a29k.mt: Obsolete.
12644 * config/a29k/tm-a29k.h: Obsolete.
12645 * config/a29k/tm-vx29k.h: Obsolete.
12646 * config/a29k/vx29k.mt: Obsolete.
12647
12648 2002-01-05 Andrew Cagney <ac131313@redhat.com>
12649
12650 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
12651 with BFD_ENDIAN_BIG.
12652
12653 2002-01-05 Andrew Cagney <ac131313@redhat.com>
12654
12655 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
12656 * configure, config.in: Re-generate.
12657 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
12658 * defs.h: Do not include <endian.h>.
12659
12660 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
12661
12662 * acconfig.h (HAVE_PT_GETXMMREGS): New.
12663 * config.in: Regenerate.
12664 * configure.in: Update copyright years.
12665 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
12666 * configure: Regenerate.
12667 * i386bsd-nat.c: Update copyright years.
12668 (fill_gregset): Use regcache_collect.
12669 (fetch_inferior_registers): Only fetch integer registers
12670 if requested to do so. Add support for XMM registers
12671 using PT_GETXMMREGS.
12672 (store_inferior_registers): Only store integer registers
12673 if requested to do so. Add support for XMM registers
12674 using PT_SETXMMREGS.
12675 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
12676 (store_inferior_registers): Remove.
12677 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
12678 (fetch_elfcore_registers): New function.
12679 (i386nbsd_elfcore_fns): New.
12680 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
12681 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
12682 i386bsd-nat.o.
12683 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
12684 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
12685 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
12686 * config/i386/tm-nbsd.h: Update copyright years.
12687 (HAVE_SSE_REGS): Define.
12688 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
12689 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
12690 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
12691 (SIGCONTEXT_PC_OFFSET): Remove.
12692 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
12693
12694 2002-01-05 Andrew Cagney <ac131313@redhat.com>
12695
12696 * configure.tgt: Remove powerpc-*-macos* target.
12697 * config/m68k/xm-mpw.h: Delete file.
12698 * config/xm-mpw.h: Delete file.
12699 * ser-mac.c: Delete file.
12700 * mpw-make.sed: Delete file.
12701 * mpw-config.in: Delete file.
12702 * mac-xdep.c: Delete file.
12703 * mac-gdb.r: Delete file.
12704 * mac-defs.h: Delete file.
12705 * mac-nat.c: Delete file.
12706 * config/powerpc/macos.mh: Delete file.
12707 * config/powerpc/macos.mt: Delete file.
12708 * config/powerpc/nm-macos.h: Delete file.
12709 * config/powerpc/tm-macos.h: Delete file.
12710 * source.c (openp, open_source_file): Remove obsolete code.
12711 * top.c (gdb_readline): Ditto.
12712 * utils.c (query): Ditto.
12713 * event-top.c (display_gdb_prompt): Ditto.
12714 * Makefile.in (ser-mac.o): Delete obsolete target.
12715 * NEWS: Update.
12716
12717 2002-01-04 Andrew Cagney <ac131313@redhat.com>
12718
12719 * defs.h (BIG_ENDIAN): Delete macro definition.
12720 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
12721 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
12722 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
12723 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
12724 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
12725 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
12726 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
12727 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
12728 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
12729 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
12730 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
12731 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
12732 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
12733 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
12734 * gdbarch.c: Re-generate.
12735
12736 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
12737
12738 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
12739 for core files.
12740
12741 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
12742
12743 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
12744
12745 2002-01-04 Andrew Cagney <ac131313@redhat.com>
12746
12747 * value.h (value_ptr): Delete typedef.
12748
12749 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
12750
12751 * i386nbsd-nat.c: Update copyright years.
12752 Include i386-tdep.h.
12753
12754 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
12755
12756 * stabsread.c: Update copyright years.
12757
12758 From Debashis Mahata <debashis.mahata@wipro.com>:
12759 (read_struct_fields): Deal with Sun C compiler erroneous stab
12760 output for structs and unions.
12761 Fix PR gdb/269.
12762
12763 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
12764
12765 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
12766 prototype.
12767
12768 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
12769
12770 * cp-abi.c: Fix whitespace.
12771 (baseclass_offset): New wrapper function.
12772 * cp-abi.h (baseclass_offset): Add prototype.
12773 (struct cp_abi_ops): Add baseclass_offset pointer.
12774
12775 * valops.c (vb_match): Move to...
12776 * gnu-v2-abi.c (vb_match): here.
12777 * valops.c (baseclass_offset): Move to...
12778 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
12779
12780 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
12781
12782 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
12783 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
12784 * hpacc-abi.c (init_hpacc_ops): Likewise.
12785
12786 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
12787
12788 * valops.c (find_overload_match): Accept obj as a
12789 reference parameter. Update it before returning.
12790 * value.h (find_overload_match): Update prototype.
12791 * eval.c (evaluate_subexp_standard): Pass object to
12792 find_overload_match by reference.
12793
12794 2002-01-03 Andrew Cagney <ac131313@redhat.com>
12795
12796 * valarith.c: Replace value_ptr with struct value pointer. Remove
12797 register attribute from value declarations.
12798 * valops.c: Ditto.
12799 * value.h: Ditto.
12800 * scm-lang.c (scm_lookup_name): Ditto.
12801
12802 2002-01-03 Michael Snyder <msnyder@redhat.com>
12803
12804 Abstract the functionality of iterating over mapped memory
12805 regions into a general purpose iterator function.
12806 * procfs.c (iterate_over_mappings): New function, general purpose
12807 iterator for memory sections.
12808 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
12809 (solib_mappings_callback): New function, callback for above.
12810 (info_proc_mappings): Reimpliment using iterate_over_mappings.
12811 (info_mappings_callback): New function, callback for above.
12812
12813 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
12814
12815 2002-01-01 Mark Kettenis <kettenis@gnu.org>
12816
12817 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
12818 * i386-tdep.c: Include "elf-bfd.h".
12819 (process_note_abi_tag_sections): New function.
12820 (i386_gdbarch_init): Add code to recognize various OS/ABI
12821 combinations.
12822
12823 * maint.c (_initialize_maint_cmds): Add missing \ in
12824 string-literal.
12825
12826 For older changes see ChangeLog-2001
12827 \f
12828 Local Variables:
12829 mode: change-log
12830 left-margin: 8
12831 fill-column: 74
12832 version-control: never
12833 End: