2002-11-11 Elena Zannoni <ezannoni@redhat.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2002-11-11 Elena Zannoni <ezannoni@redhat.com>
2
3 * findvar.c (read_var_value): Reenable TLS code.
4
5 2002-11-11 Elena Zannoni <ezannoni@redhat.com>
6 Jim Blandy <jimb@redhat.com>
7
8 * gdb_thread_db.h (enum): Add TD_NOTALLOC.
9 * target.c (update_current_target): Add
10 to_get_thread_local_address.
11 * target.h (to_get_thread_local_address): Export.
12 (target_get_thread_local_address): Define.
13 (target_get_thread_local_address_p): Define.
14 * thread-db.c: Include solib-svr4.h.
15 (td_thr_tls_get_addr_p): Define.
16 (thread_db_load): Get a pointer to td_thr_tls_get_addr.
17 (thread_db_get_thread_local_address): New function.
18 (init_thread_db_ops): Initialize to_get_thread_local_address.
19 * configure.in: Add test for TD_NOTALLOC in thread_db.h.
20 * configure: Regenerate.
21 * config.in: Regenerate.
22
23 2002-11-11 David Carlton <carlton@math.stanford.edu>
24
25 * linespec.c (set_flags): New function.
26 (decode_line_1): Move code into set_flags.
27
28 2002-11-11 David Carlton <carlton@math.stanford.edu>
29
30 * linespec.c (decode_line_1): Move chunks of code to separate
31 functions.
32 (initialize_defaults): New function.
33 (decode_indirect): New function.
34
35 2002-11-11 Andrew Cagney <ac131313@redhat.com>
36
37 * blockframe.c (sigtramp_saved_pc): Fix tipo. void_func_ptr
38 instead of void_code_ptr.
39 (sigtramp_saved_pc): Ditto.
40
41 * x86-64-tdep.c (i386_fp_regnum_p): Copy i386-tdep.c's
42 i386_fp_regnum_p.
43
44 2002-11-10 Daniel Jacobowitz <drow@mvista.com>
45
46 * gdbtypes.h (struct main_type): Move artificial flag out of
47 loc. New member of ``struct field'' named static_kind. Reduce
48 overloaded meaning of bitsize.
49 (FIELD_ARTIFICIAL, SET_FIELD_PHYSNAME, SET_FIELD_PHYSADDR)
50 (TYPE_FIELD_STATIC, TYPE_FIELD_STATIC_HAS_ADDR): Likewise.
51 (FIELD_STATIC_KIND, TYPE_FIELD_STATIC_KIND): New macros.
52
53 * ada-lang.c (fill_in_ada_prototype): Initialize static_kind for
54 new fields.
55 (template_to_fixed_record_type, template_to_static_fixed_type)
56 (to_record_with_fixed_variant_part): Likewise.
57 * coffread.c (coff_read_struct_type, coff_read_enum_type): Likewise.
58 * dwarf2read.c (dwarf2_add_field, read_enumeration): Likewise.
59 * dwarfread.c (struct_type, enum_type): Likewise.
60 * hpread.c (hpread_read_enum_type)
61 (hpread_read_function_type, hpread_read_doc_function_type)
62 (hpread_read_struct_type): Likewise.
63 * mdebugread.c (parse_symbol): Likewise.
64
65 2002-11-10 Andrew Cagney <ac131313@redhat.com>
66
67 * breakpoint.h (deprecated_frame_in_dummy): Rename frame_in_dummy.
68 * stack.c (print_frame_info_base): Update.
69 (print_frame_info_base, frame_info): Update.
70 * sparc-tdep.c (sparc_init_extra_frame_info): Update.
71 (sparc_frame_saved_pc): Update.
72 * ada-lang.c (find_printable_frame): Update.
73 * breakpoint.c (deprecated_frame_in_dummy): Update.
74
75 2002-11-09 Mark Kettenis <kettenis@gnu.org>
76
77 * i386-linux-nat.c (ORIG_EAX): Define to -1 if not already
78 defined.
79 (regmap): Extend to cover all registers.
80 (PT_READ_U, PT_WRITE_U, PTRACE_XFER_TYPE,
81 OLD_CANNOT_FETCH_REGISTERS, OLD_CANNOT_STORE_REGISTERS): Remove
82 definitions.
83 (fetch_register, sore_register): Simplify.
84 (old_fetch_inferior_registers, old_store_inferior_registers):
85 Remove functions.
86 (cannot_fetch_register, cannot_store_register): Change
87 implementation to use regmap array to decide which registers
88 cannot be fetched/stored. This removes $orig_eax from the
89 registers that cannot be fetched/stored.
90 (fetch_inferior_registers): Call fetch_register directly instead
91 of calling old_fetch_inferior_registers.
92 (store_inferior_registers): Call store_register directly instead
93 of calling old_store_inferior_registers.
94 (i386_linux_dr_get): Replace PT_READ_U with PTRACE_PEEKUSER.
95 (i386_linux_dr_set): Replace PT_WRITE_U with PTRACE_POKEUSER.
96 * config/i386/nm-linux.h (U_REGS_OFFSET): Remove definition.
97
98 2002-11-09 Klee Dienes <kdienes@apple.com>
99
100 * i387-tdep.c (i387_supply_register): When called with NULL as a
101 buffer, mark the register as not provided (to mirror the behavior
102 of supply_register).
103 (i387_supply_fxsave): Ditto.
104 (i387_supply_fsave): Ditto (inherits the behavior from
105 i387_supply_register).
106
107 2002-11-09 Klee Dienes <kdienes@apple.com>
108
109 * blockframe.c (sigtramp_saved_pc): Use
110 builtin_type_void_code_ptr, not builtin_type_void_data_ptr (we are
111 extracting the PC). Use TYPE_LENGTH (builtin_type_void_code_ptr)
112 instead of (TARGET_PTR_BIT / TARGET_CHAR_BIT).
113
114 2002-11-09 Andrew Cagney <ac131313@redhat.com>
115
116 * frame.c (get_prev_frame): Test prev_p to identify a previously
117 unwound frame. Initialize prev_p.
118 * frame.h (struct frame_info): Add field prev_p. Expand prev/next
119 comment.
120
121 2002-11-09 Andrew Cagney <ac131313@redhat.com>
122
123 * frame.c (get_prev_frame): Cleanups. Eliminate redundant tests
124 for a NULL NEXT_FRAME. Simplify fromleaf initialization. Add
125 more comments. Zap dead code.
126
127 2002-11-09 Mark Kettenis <kettenis@gnu.org>
128
129 * infcmd.c (print_vector_info, print_float_info): Move code that
130 checks whether the target has any registers and whether there is a
131 selected frame up, such that it is also used if a target provides
132 multi-arch definitions of these functions.
133
134 2002-11-08 Andrew Cagney <ac131313@redhat.com>
135
136 * Makefile.in (DESTDIR): Define.
137 (install-only, install-gdbtk, uninstall-gdbtk): Add $(DESTDIR)
138 prefix.
139
140 * config/djgpp/fnchange.lst: 8.3 proof i386obsd-nat.c and
141 i386obsd-tdep.c. Rename to "gdb.cxx", paths containing "gdb.c++".
142
143 2002-11-08 Andrew Cagney <ac131313@redhat.com>
144
145 * i386-linux-tdep.c: Include "reggroups.h".
146 (i386_linux_register_reggroup_p): New function.
147 (i386_linux_init_abi): Set register_reggroup_p to
148 i386_linux_register_reggroup_p.
149 * i386-tdep.h (i386_register_reggroup_p): Declare.
150 * i386-tdep.c: Include "reggroups.h".
151 (i386_init_reggroups): New function.
152 (i386_add_reggroups): New function.
153 (i386_register_reggroup_p): New function.
154 (i386_sse_reggroup, i386_mmx_reggroup): New variables.
155 (_initialize_i386_tdep): Call i386_init_reggroups.
156 (i386_gdbarch_init): Set register_reggroup_p and add in the i386
157 specific reggroups.
158
159 2002-11-09 Mark Kettenis <kettenis@gnu.org>
160
161 * infptrace.c (child_xfer_memory): Make use of the new PT_IO
162 request that's available in *BSD.
163
164 * i386-tdep.h (IS_FPU_CTRL_REGNUM): Remove.
165
166 * i387-tdep.c (i387_fill_fxsave): Use FOOFF_REGNUM instead of
167 FDOFF_REGNUM.
168
169 2002-11-08 Andrew Cagney <ac131313@redhat.com>
170
171 * frame.c (set_unwind_by_pc): Use dummy_frame_register_unwind.
172 * dummy-frame.c (find_dummy_frame): Rename
173 generic_find_dummy_frame, make static. Return the dummy frame
174 instead of the regcache.
175 (generic_find_dummy_frame): Re-implement using find_dummy_frame,
176 (cached_find_dummy_frame): New function. Use find_dummy_frame.
177 (dummy_frame_register_unwind): Rename
178 generic_call_dummy_register_unwind. Use cached_find_dummy_frame.
179 * dummy-frame.h (dummy_frame_register_unwind): Rename
180 generic_call_dummy_register_unwind.
181
182 2002-11-08 Mark Kettenis <kettenis@gnu.org>
183
184 * config/i386/tm-i386v42mp.h: Remove file. Move its contents,
185 except the inclusion of "i386/tm-i386.h", to...
186 * config/i386/nm-i386v42mp.h: ...here.
187 * config/i386/i386v42mp.mt (TM_FILE): Set to tm-i386.h.
188
189 2002-11-08 Andrew Cagney <ac131313@redhat.com>
190
191 * Makefile.in (frame.o): Update dependencies.
192 * blockframe.c (current_frame, frame_obstack_alloc)
193 (frame_saved_regs_zalloc, get_current_frame)
194 (set_current_frame, create_new_frame)
195 (set_unwind_by_pc, get_next_frame)
196 (flush_cached_frames, reinit_frame_cache)
197 (frame_saved_regs_register_unwind)
198 (deprecated_generic_get_saved_register)
199 (get_prev_frame, get_frame_pc, get_frame_saved_regs)
200 (_initialize_blockframe): Move frame code from here...
201 * frame.c: ...to here. Include "gdb_obstack.h", "gdbcore.h",
202 "annotate.h" and "dummy-frame.h".
203 (_initialize_frame): New function.
204
205 2002-11-08 Jim Blandy <jimb@redhat.com>
206
207 * dwarf2read.c (read_func_scope): Restore list_in_scope properly
208 when we finish a function a context.
209 * buildsym.h (outermost_context_p): New macro.
210 (Bug analyzed by David Edelsohn.)
211
212 2002-11-08 Andrew Cagney <ac131313@redhat.com>
213
214 * blockframe.c: Include "dummy-frame.h".
215 (struct dummy_frame, dummy_frame_stack)
216 (generic_find_dummy_frame, deprecated_generic_find_dummy_frame)
217 (generic_pc_in_call_dummy, deprecated_read_register_dummy)
218 (generic_push_dummy_frame, generic_save_dummy_frame_tos)
219 (generic_save_call_dummy_addr, generic_pop_current_frame)
220 (generic_pop_dummy_frame, generic_fix_call_dummy)
221 (generic_fix_call_dummy, generic_call_dummy_register_unwind): Move
222 dummy frame code from here...
223 * dummy-frame.c: ...to here. New file.
224 * dummy-frame.h: New file.
225 (generic_call_dummy_register_unwind): Declare.
226 (generic_find_dummy_frame): Declare.
227 * Makefile.in (SFILES): Add dummy-frame.c.
228 (dummy-frame.o): Specify dependencies.
229 (dummy_frame_h): Define.
230 (COMMON_OBS): Add dummy-frame.o.
231 (blockframe.o): Update dependencies.
232
233 2002-11-08 Jim Blandy <jimb@redhat.com>
234
235 * dwarf2read.c (read_func_scope): Restore local_symbols and
236 param_symbols after we finish the function context. (Based on a
237 patch from David Edelsohn.)
238
239 2002-11-08 David Carlton <carlton@math.stanford.edu>
240
241 * linespec.c (symbol_found): New function.
242 (minsym_found): New function.
243 (decode_line_1): Separate out some code into separate functions.
244
245 2002-11-08 Joel Brobecker <brobecker@gnat.com>
246
247 * i386-tdep.c (i386_frameless_signal_p): Make non static for
248 the benefit of the interix target.
249 * i386-tdep.h (i386_frameless_signal_p): Declare.
250
251 2002-11-08 Andrew Cagney <ac131313@redhat.com>
252
253 * i386-tdep.h (i386_linux_orig_eax_regnum_p): Delete stray
254 declaration that snuck in from change below.
255
256 2002-11-06 Andrew Cagney <cagney@redhat.com>
257
258 * i386-tdep.c (i386_mmx_regnum_p): Rename mmx_regnum_p. Update
259 all callers.
260 (i386_fp_regnum_p): New function. Use instead of FP_REGNUM_P.
261 (i386_fpc_regnum_p): New function. Use instead of FPC_REGNUM_P.
262 (i386_sse_regnum_p): New function. Use instead of SSE_REGNUM_P.
263 (i386_mxcsr_regnum_p): new function. Use instead of
264 MXCSR_REGNUM_P.
265 * i386-tdep.h (SSE_REGNUM_P): Delete macro.
266 (i386_sse_regnum_p): Declare.
267 (i386_mxcsr_regnum_p): Declare.
268 (FP_REGNUM_P, FPC_REGNUM_P): Delete macros.
269 (i386_fp_regnum_p, i386_fpc_regnum_p): Declare.
270 (IS_FP_REGNUM): Update definition.
271 (IS_FPU_CTRL_REGNUM): Update definition..
272 (IS_SSE_REGNUM): Update definition..
273 * i386v-nat.c (register_u_addr): Update.
274 * go32-nat.c (fetch_register): Update.
275 (store_register): Update.
276
277 2002-11-07 Joel Brobecker <brobecker@gnat.com>
278
279 Preparation work to convert the hppa targets to multiarch partial.
280
281 * hppa-tdep.c: Add new functions replacing macro bodies from
282 config/pa/tm-hppa.h. These function will be used to initialize
283 the gdbarch structure. Import some comments from tm-hppa.h,
284 and place them where appropriate, to avoid loosing them when
285 we cleanup this file.
286 (hppa_reg_struct_has_addr): New function.
287 (hppa_inner_than): New function.
288 (hppa_stack_align): New function.
289 (hppa_pc_requires_run_before_use): New function.
290 (hppa_instruction_nullified): New function.
291 (hppa_register_byte): New function.
292 (hppa_register_virtual_type): New function.
293 (hppa_store_struct_return): New function.
294 (hppa_cannot_store_register): New function.
295 (hppa_frame_args_address): New function.
296 (hppa_frame_locals_address): New function.
297 (hppa_smash_text_address): New function.
298 (hppa_coerce_float_to_double): New function. Requires the inclusion
299 of "language.h".
300
301 * Makefile.in (hppa-tdep.o): Add dependency on language.h.
302
303 * tm-hppa.h (REG_STRUCT_HAS_ADDR): Change the definition of this
304 gdbarch-eligible macro to a call to the new associated function
305 created in hppa-tdep.c.
306 (INNER_THAN): Likewise.
307 (STACK_ALIGN): Likewise.
308 (PC_REQUIRES_RUN_BEFORE_USE): Likewise.
309 (INSTRUCTION_NULLIFIED): Likewise.
310 (REGISTER_BYTE): Likewise.
311 (REGISTER_VIRTUAL_TYPE): Likewise.
312 (STORE_STRUCT_RETURN): Likewise.
313 (CANNOT_STORE_REGISTER): Likewise.
314 (FRAME_ARGS_ADDRESS): Likewise.
315 (FRAME_LOCALS_ADDRESS): Likewise.
316 (SMASH_TEXT_ADDRESS): Likewise.
317 (COERCE_FLOAT_TO_DOUBLE): Likewise.
318 (ABOUT_TO_RETURN): Delete, as no longer used.
319
320 2002-11-07 Fernando Nasser <fnasser@redhat.com>
321
322 * printcmd.c (disassemble_command): Remove obsolete function.
323 (_initialize_printcmd): Do not create disassemble command here.
324 * cli/cli-cmds.c (disassemble_command): New function. Implements
325 disassemble command.
326 (init_cli_cmds): Create disassemble command here instead.
327
328 2002-11-07 Andrew Cagney <ac131313@redhat.com>
329
330 * MAINTAINERS: Add Daniel Jacobowitz to global maintainers list.
331
332 2002-11-07 Andrew Cagney <ac131313@redhat.com>
333
334 * regcache.h (regcache_cooked_read_using_offset_hack)
335 (regcache_cooked_write_using_offset_hack): Delete declarations.
336 (register_changed): Delete declaration.
337 * regcache.c (regcache_cooked_read_using_offset_hack)
338 (regcache_cooked_write_using_offset_hack): Delete functions.
339 (cooked_xfer_using_offset_hack): Delete function.
340 (register_changed): Delete function.
341
342 2002-11-07 Jim Blandy <jimb@redhat.com>
343
344 * macroscope.c: #include "complaints.h".
345 (sal_macro_scope): Cope with filenames that appear in the symtabs,
346 but not in the macro table.
347 * Makefile.in (macroscope.o): Record dependency.
348
349 2002-11-07 Joel Brobecker <brobecker@gnat.com>
350
351 * PROBLEMS: Document gdb/816 (unable to read core file on alpha-osf).
352
353 2002-11-07 Andrew Cagney <ac131313@redhat.com>
354
355 * regcache.c (deprecated_registers_fetched): Update.
356 * regcache.h (deprecated_registers_fetched): Rename
357 registers_fetched.
358 * remote-vxsparc.c (vx_read_register): Update.
359 * remote-vxmips.c (vx_read_register): Update.
360 * remote-vx68.c (vx_read_register): Update.
361 * irix5-nat.c (fetch_core_registers): Update.
362 * mipsm3-nat.c (fetch_inferior_registers): Update.
363 * sun3-nat.c (fetch_inferior_registers): Update.
364 * symm-nat.c (fetch_inferior_registers): Update.
365 * ns32knbsd-nat.c (fetch_inferior_registers): Update.
366 (fetch_core_registers): Update.
367 (fetch_kcore_registers): Update.
368 * mips-nat.c (fetch_inferior_registers): Update.
369 * corelow.c (get_core_registers): Update.
370 * a68v-nat.c (fetch_inferior_registers): Update.
371
372 2002-11-06 Joel Brobecker <brobecker@gnat.com>
373
374 Put in place the framework necessary for multiarching the hppa targets.
375 * hppa-tdep.c (hppa_gdbarch_init): New function.
376 (hppa_dump_tdep): New function.
377 (_initialize_hppa_tdep): Register the hppa gdbarch init function and
378 tdep structure dumper.
379 * config/pa/tm-hppa.h (GDB_MULTI_ARCH): New macro, defined to 0
380 until the multi-arching conversion has partially been completed.
381
382 2002-11-06 Andrew Cagney <ac131313@redhat.com>
383
384 * valops.c (value_assign): Merge lval_register case into
385 lval_reg_frame_relative. Use frame_register and
386 regcache_cooked_write instead of get_saved_register and
387 write_register_bytes. After flushing the register cache, try to
388 re-select the selected frame.
389
390 2002-11-06 Andrew Cagney <ac131313@redhat.com>
391
392 * regcache.h (deprecated_register_valid): Rename register_valid.
393 * regcache.c: Update.
394 * ia64-aix-nat.c: Update.
395 * i386gnu-nat.c: Update.
396 * alpha-nat.c: Update.
397 * sparc-nat.c: Update.
398 * lynx-nat.c: Update.
399 * remote-mips.c: Update.
400
401 2002-11-06 Joel Brobecker <brobecker@gnat.com>
402
403 * hppa-tdep.c (_initialize_hppa_tdep): Move function body
404 to end of file, to be more consistent with the pratice followed
405 by other targets.
406
407 2002-11-06 Andrew Cagney <ac131313@redhat.com>
408
409 * infcmd.c: Include "reggroups.h" and <ctype.h>.
410 (print_float_info): Print registers in float_reggroup.
411 (print_vector_info): Print registers in vector_reggroup.
412 (default_print_registers_info): When all, print registers in
413 all_reggroup. Otherwize, print registers in general_reggroup.
414 (registers_info): Rewrite. Add support for register groups.
415 Eliminate a goto.
416
417 2002-11-06 Elena Zannoni <ezannoni@redhat.com>
418
419 * symtab.c (methods_info): Delete. It has been ifdeffed out for
420 ages.
421 (symtab_symbol_info): Remove eons old ifdeffed out code.
422 (_initialize_symtab): Remove prehistoric disabled 'info methods'
423 command.
424
425 2002-11-06 Theodore A. Roth <troth@openavr.org>
426
427 * c-exp.y: Add missing semi-colons.
428 * f-exp.y: Add missing semi-colons.
429 * m2-exp.y: Add missing semi-colons.
430 * p-exp.y: Add missing semi-colons.
431 Add empty action to start rule to avoid a type clash error when
432 building with bison >= 1.50.
433
434 2002-11-06 Jim Blandy <jimb@redhat.com>
435
436 * macrotab.h (struct macro_source_file): Doc fix.
437
438 2002-11-05 Jeff Johnston <jjohnstn@redhat.com>
439
440 * varobj.c (child_exists, cplus_number_of_children): Change
441 STREQ macro references to strcmp.
442 (cplus_name_of_child): Change code to handle the fact that
443 fields are not necessarily contiguous with regards to their
444 access control. This is a fix for PR gdb/792.
445
446 2002-11-05 Andrew Cagney <ac131313@redhat.com>
447
448 * gdbarch.sh (GET_SAVED_REGISTER): Change to a predicate function.
449 * gdbarch.h, gdbarch.c: Regnerate.
450 * frame.h (frame_register): Declare.
451 * frame.c (frame_register): New function.
452 (get_saved_register): Test GET_SAVED_REGISTER_P before calling
453 GET_SAVED_REGISTER, otherwize call
454 generic_unwind_get_saved_register.
455 (frame_register_read): Use frame_register instead of
456 get_saved_register.
457
458 2002-11-05 Elena Zannoni <ezannoni@redhat.com>
459
460 From Jim Ingham <jingham@apple.com>:
461 * event-top.c (gdb_disable_readline): New function.
462 (_initialize_event_loop): Move comment.
463
464 2002-11-05 Elena Zannoni <ezannoni@redhat.com>
465
466 * event-loop.c (start_event_loop): Add comment.
467 Update copyright.
468
469 2002-11-05 Andrew Cagney <ac131313@redhat.com>
470
471 * infcmd.c (default_print_registers_info): Do not call
472 PRINT_REGISTER_HOOK.
473
474 2002-11-05 Andrew Cagney <ac131313@redhat.com>
475
476 * sparc-tdep.c (sparc_print_register_hook): Make static.
477 (sparc_print_registers_info): New function.
478 (sparc_do_registers_info): New function.
479 (sparclet_print_registers_info): New function.
480 (sparclet_do_registers_info): New function.
481 (do_sparc_print_registers_info): New function.
482 (sparc_print_registers): New static function, clone of infcmd.c's
483 default_print_registers_info.
484 * config/sparc/tm-sparclet.h (PRINT_REGISTER_HOOK): Delete macro.
485 (sparclet_do_registers_info): Declare.
486 (DEPRECATED_DO_REGISTERS_INFO): Re-define.
487 * config/sparc/tm-sparc.h (DEPRECATED_DO_REGISTERS_INFO):
488 Re-define.
489 (sparc_do_registers_info): Declare.
490 (PRINT_REGISTER_HOOK): Delete macro.
491 (sparc_print_register_hook): Delete declaration.
492
493 2002-11-05 David Carlton <carlton@math.stanford.edu>
494
495 * symtab.c (lookup_symbol_aux): Move chunks of code into separate
496 functions.
497 (lookup_symbol_aux_local): New function.
498 (lookup_symbol_aux_symtabs): New function.
499 (lookup_symbol_aux_psymtabs): New function.
500
501 2002-11-05 David Carlton <carlton@math.stanford.edu>
502
503 * symtab.c (lookup_symbol_aux): In minsym sections, don't use the
504 previous values of 'objfile' and 'block'.
505
506 2002-11-05 Pierre Muller <muller@ics.u-strasbg.fr>
507
508 * values.c (value_change_enclosing_type): Set
509 enclosing_type field correctly also for the case where
510 more memory needs to be allocated.
511
512 2002-11-03 Mark Kettenis <kettenis@gnu.org>
513
514 * i387-tdep.c (i387_print_float_info): Call fputs_filtered instead
515 of puts_filtered.
516
517 * i387-tdep.c (i387_print_float_info): Replace calls to
518 register_read and deprecated_read_register_gen with calls to
519 frame_register_read, and make the necessary adjustments to the
520 surrounding code.
521
522 2002-11-02 Andrew Cagney <ac131313@redhat.com>
523
524 * gdbarch.sh (register_reggroup_p): Allow default value.
525 * gdbarch.h, gdbarch.c: Regenerate.
526
527 2002-11-02 Andrew Cagney <ac131313@redhat.com>
528
529 * regcache.h: Add coment indicating replacements for deprecated
530 functions.
531
532 2002-11-02 Andrew Cagney <cagney@redhat.com>
533
534 * reggroups.h, reggroups.c: New files.
535 * regcache.c: Include "reggroups.h".
536 (enum regcache_dump_what): Add `regcache_dump_groups'.
537 (regcache_dump): Contract size of the "Type" column. When
538 specified, dump the register's groups.
539 (maintenance_print_register_groups): New function.
540 (_initialize_regcache): Add command `maint print register-groups'.
541 * Makefile.in (COMMON_OBS): Add reggroups.o
542 (SFILES): Add reggroups.c.
543 (reggroups_h): Define.
544 (regcache.o, gdbarch.o): Update dependencies.
545 (reggroups.o): Specify dependencies.
546 * gdbarch.sh (register_reggroup_p): Add pure multi-arch method.
547 Add opaque declaration for `struct reggroup' in generated .h file.
548 Include "reggroups.h" in generated .c file.
549 gdbarch.h, gdbarch.c: Re-generate.
550
551 2002-11-02 Andrew Cagney <cagney@redhat.com>
552
553 * regcache.h (deprecated_read_register_gen): Rename
554 read_register_gen.
555 (deprecated_write_register_gen): Rename write_register_gen.
556 * i387-tdep.c: Update.
557 * x86-64-linux-nat.c: Update
558 * wince.c: Update.
559 * thread-db.c: Update.
560 * win32-nat.c: Update.
561 * mips-tdep.c: Update.
562 * d10v-tdep.c: Update.
563 * cris-tdep.c: Update.
564 * remote-sim.c: Update.
565 * remote-rdi.c: Update.
566 * remote-rdp.c: Update.
567 * frame.c: Update.
568 * target.c: Update.
569 * blockframe.c: Update.
570 * x86-64-tdep.c: Update.
571 * xstormy16-tdep.c: Update.
572 * sh-tdep.c: Update.
573 * s390-tdep.c: Update.
574 * rs6000-tdep.c: Update.
575 * sparc-tdep.c: Update.
576 * i386-tdep.c: Update.
577 * dwarf2cfi.c: Update.
578 * regcache.c: Update.
579
580 2002-11-01 Joel Brobecker <brobecker@gnat.com>
581
582 New interix-specific files:
583 * config/i386/nm-interix.h: New file.
584 * config/i386/interix.mh: New file.
585 * config/i386/interix.mt: New file.
586 * i386-interix-nat.c: New file.
587 * i386-interix-tdep.c: New file.
588
589 2002-11-01 Andrew Cagney <cagney@redhat.com>
590
591 * frame.h (deprecated_generic_get_saved_register): Rename
592 generic_get_saved_register.
593 * blockframe.c (deprecated_generic_get_saved_register): Update.
594 * xstormy16-tdep.c (xstormy16_get_saved_register): Update.
595 (xstormy16_frame_saved_register): Update.
596 * sh-tdep.c (sh_gdbarch_init): Update.
597 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
598 * ia64-tdep.c (ia64_get_saved_register): Update.
599 * cris-tdep.c (cris_gdbarch_init): Update.
600 * config/m32r/tm-m32r.h (GET_SAVED_REGISTER): Update.
601 * arm-tdep.c (arm_gdbarch_init): Update.
602
603 2002-10-31 Daniel Jacobowitz <drow@mvista.com>
604
605 * lin-lwp.c (lin_lwp_resume): Remove resume_all test for !step.
606
607 2002-10-31 Daniel Jacobowitz <drow@mvista.com>
608
609 * i386-linux-tdep.c (i386_linux_pc_in_sigtramp): Check for
610 trampolines in sigaction.
611
612 2002-10-31 Andrew Cagney <cagney@redhat.com>
613
614 * h8300-tdep.c: Include "gdb_assert.h".
615 (h8300_print_register): Add gdbarch, file and frame parameters.
616 Use frame_read_unsigned_register to read the register's value.
617 Use fprintf_filtered to display output.
618 (h8300_print_registers_info): Replace h8300_do_registers_info.
619 (h8300_gdbarch_init): Set print_registers_info.
620
621 2002-10-31 Andrew Cagney <cagney@redhat.com>
622
623 * frame.c (frame_read_unsigned_register): New function.
624 (frame_read_signed_register): New function.
625 * frame.h (frame_read_unsigned_register): Declare.
626 (frame_read_signed_register): Declare.
627
628 2002-10-31 Andrew Cagney <cagney@redhat.com>
629
630 * h8500-tdep.c (h8500_print_registers_info): New static function,
631 clone of infcmd.c's default_print_registers_info.
632 (h8500_do_registers_info): New funtion.
633 (h8500_print_register_hook): Rename print_register_hook, make
634 static.
635
636 * config/h8500/tm-h8500.h: Update copyright.
637 (DEPRECATED_DO_REGISTERS_INFO): Define.
638 (h8500_do_registers_info: Declare.
639 (PRINT_REGISTER_HOOK): Delete macro.
640 (print_register_hook): Delete function.
641
642 2002-10-31 Andrew Cagney <cagney@redhat.com>
643
644 * z8k-tdep.c (z8k_print_register_hook): Make static.
645 (z8k_print_registers_info): New static function, clone of
646 infcmd.c's default_print_registers_info.
647 (z8k_do_registers_info): New function. Wrap
648 z8k_print_registers_info.
649 * config/z8k/tm-z8k.h: Update copyright.
650 (PRINT_REGISTER_HOOK): Delete macro.
651 (z8k_print_register_hook): Delete declaration.
652 (DEPRECATED_DO_REGISTERS_INFO): Define.
653 (z8k_do_registers_info): Declare.
654
655 2002-10-30 Joel Brobecker <brobecker@gnat.com>
656
657 * hppa-tdep.c (find_function_in_inferior): Remove this extern,
658 as this is already provided by value.h, and was actually causing
659 a compilation error because of a conflict in parameter type
660 declaration due to a missing const keyword.
661 (low_text_segment_addres): Fix a compilation warning.
662
663 2002-10-29 Daniel Jacobowitz <drow@mvista.com>
664
665 * mips-linux-nat.c (mips_linux_cannot_fetch_register): Don't fetch
666 registers without a name.
667 (mips_linux_cannot_store_register): Don't store registers without
668 a name.
669
670 2002-10-28 David Carlton <carlton@math.stanford.edu>
671
672 * symtab.c (find_addr_symbol): Delete. (It was already commented
673 out.)
674 * symtab.h: Delete prototype for find_addr_symbol.
675
676 2002-10-26 Andrew Cagney <cagney@redhat.com>
677
678 * gdbarch.sh (DEPRECATED_DO_REGISTERS_INFO): Rename
679 DO_REGISTERS_INFO.
680 gdbarch.h, gdbarch.c: Re-generate.
681 * infcmd.c (default_print_registers_info): Update reference.
682 * mips-tdep.c (mips_gdbarch_init): Set deprecated_do_registers_info.
683 (mips_dump_tdep): Do not print DO_REGISTERS_INFO.
684 * sh-tdep.c (sh_gdbarch_init): Ditto.
685 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
686 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
687
688 2002-10-26 Mark Kettenis <kettenis@gnu.org>
689
690 * x86-64-tdep.c (x86_64_init_abi): Set init_extra_frame_info to
691 cfi_init_extra_frame_info.
692 * x86-64-tdep.h (x86_64_init_extra_frame_info): Remove prototype.
693 * x86-64-linux-tdep.c (x86_64_init_extra_frame_info): Remove function.
694
695 * x86-64-tdep.c (x86_64_init_abi): Add calls to override the i386
696 target where necessary. Add more comments and remove the ones
697 that don't provide any useful information.
698
699 * i386-tdep.c (i386_frame_saved_pc): Replace call to
700 deprecated_read_register_dummy with
701 frame_unwind_unsigned_register.
702
703 * i386-tdep.c (i386_extract_struct_value_address): Use
704 regcache_raw_read_unsigned instead of
705 regcache_cooked_read_unsigned since we know that the register
706 we're reading isn't a pseudo register. Rename variable 'val' into
707 the more descriptive 'addr'.
708
709 * x86-64-tdep.c: Fix some formatting problems, mostly in comments.
710 (x86_64_push_return_address): Add comment.
711 (x86_64_pop_frame): Make static.
712 (examine_argument): Clarify comment.
713 (x86_64_skip_prologue): Make prolog_expact variable static.
714
715 * dwarf2cfi.c: Fix some formatting problems.
716 (context_cpy, read_encoded_pointer): Clarify comments.
717
718 * x86-64-tdep.c (x86_64_breakpoint_from_pc): Constify.
719 (x86_64_init_abi): Move set_gdbarch_* calls that overlap with the
720 i386 target back into x86_64_gdbarch_init. Add some comments and
721 remove meaningless ones.
722
723 2002-10-25 Andrew Cagney <cagney@redhat.com>
724
725 * complaints.h (struct deprecated_complaint): Rename `struct
726 complaint'.
727 * complaints.c (complain): Update.
728 * remote-vx68.c, remote-vxmips.c, remote-vxsparc.c: Delete
729 incorrect comment indicating that "symfile.h" was being included
730 for the `struct complaint' definition.
731 * remote-vx.c: Update.
732 * objc-lang.c: Update.
733 * xcoffread.c: Update.
734 * hpread.c: Update.
735 * mdebugread.c: Update.
736 * stabsread.c: Update.
737 * dwarf2read.c: Update.
738 * dwarfread.c: Update.
739 * elfread.c: Update.
740 * coffread.c: Update.
741 * stabsread.h: Update.
742 * dbxread.c: Update.
743 * buildsym.c: Update.
744 * gdbtypes.c: Update.
745 * macrotab.c: Update.
746
747 2002-10-25 Mark Kettenis <kettenis@gnu.org>
748
749 * x86-64-tdep.c (x86_64_gdbarch_init): Make a bit more similar to
750 the version in i386-tdep.c. Move set_gdbarch_* calls out into...
751 (x86_64_init_abi): ...new function.
752
753 * Makefile.in (i386v-nat.o): Add $(i386_tdep_h).
754 * i386v-nat.c: Include "i386-tdep.h".
755
756 2002-10-25 Andrew Cagney <cagney@redhat.com>
757
758 * gdbtypes.c (address_space_name_to_int): Update.
759 (address_space_int_to_name): Update.
760 * gdbarch.sh (address_class_type_flags_to_name): Change to a pure
761 multi-arch predicate.
762 (address_class_name_to_type_flags): Ditto.
763 * gdbarch.h, gdbarch.c: Re-generate.
764
765 * MAINTAINERS: Check all warnings when h8300hms and alpha-elf.
766
767 2002-10-24 Martin M. Hunt <hunt@redhat.com>
768
769 * utils.c (string_to_core_addr): Revert patch from 11 Oct.
770
771 2002-10-24 Elena Zannoni <ezannoni@redhat.com>
772
773 * symtab.h (INIT_SAL): Delete macro.
774 (init_sal): Export.
775 * symtab.c (init_sal): New function.
776
777 * ada-lang.c (ada_finish_decode_line_1): Change INIT_SAL macro
778 to init_sal function call.
779 (find_sal_from_funcs_and_line): Ditto.
780 (all_sals_for_line): Ditto.
781 * breakpoint.c (create_internal_breakpoint): Ditto.
782 (create_fork_vfork_event_catchpoint): Ditto.
783 (create_exec_event_catchpoint): Ditto.
784 (parse_breakpoint_sals): Ditto.
785 (watch_command_1): Ditto.
786 (handle_gnu_4_16_catch_command): Ditto.
787 (clear_command): Ditto.
788 * hppa-tdep.c (child_enable_exception_callback): Ditto.
789 * infcmd.c (run_stack_dummy): Ditto.
790 * infrun.c (process_event_stop_test): Ditto.
791 (check_sigtramp2): Ditto.
792 (step_over_function): Ditto.
793 * linespec.c (decode_line_2): Ditto.
794 (decode_line_1): Ditto.
795 * source.c (line_info): Ditto.
796 * symtab.c (find_pc_sect_line): Ditto.
797
798 2002-10-24 Michal Ludvig <mludvig@suse.cz>
799
800 * dwarf2cfi.c (struct context)
801 (struct context_reg): Moved to dwarf2cfi.h
802 (context_alloc, frame_state_alloc, context_cpy):
803 Made extern instead of static, removed prototypes.
804 * dwarf2cfi.h (struct context)
805 (struct context_reg): New, moved from dwarf2cfi.c
806 (context_alloc, frame_state_alloc, context_cpy):
807 New prototypes.
808 * x86-64-linux-tdep.c (x86_64_linux_sigtramp_saved_pc):
809 Changed from static to extern.
810 (LINUX_SIGINFO_SIZE, LINUX_SIGCONTEXT_PC_OFFSET)
811 (LINUX_SIGCONTEXT_FP_OFFSET)
812 (LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Adjusted.
813 (x86_64_linux_in_sigtramp, x86_64_linux_frame_chain)
814 (x86_64_init_frame_pc, x86_64_init_extra_frame_info): New.
815 * x86-64-tdep.c (x86_64_gdbarch_init): Several
816 set_gdbarch_*() calls now use x86-64 specific functions
817 instead of DWARF2 CFI ones.
818 * x86-64-tdep.h (x86_64_linux_in_sigtramp)
819 (x86_64_linux_frame_chain, x86_64_init_frame_pc)
820 (x86_64_init_extra_frame_info): New prototypes.
821
822 2002-10-23 David Carlton <carlton@math.stanford.edu>
823
824 * linespec.c: #include "parser-defs.h".
825 Delete prototype for find_template_name_end.
826 * Makefile.in (linespec.o): Depend on $(parser_defs_h).
827
828 2002-10-23 Jeff Johnston <jjohnstn@redhat.com>
829
830 * NEWS: add recent mi fixes.
831 * varobj.c (struct varobj): Add new "updated" flag.
832 (new_variable): Default "updated" flag to 0.
833 (varobj_set_value): Set "updated" flag to 1 if value
834 changes.
835 (varobj_update): Check varobj "updated" flag before
836 comparing old and refreshed values. Fix for
837 PR gdb/702.
838
839 2002-10-23 David Carlton <carlton@math.stanford.edu>
840
841 * parse.c (parse_exp_1): Use BLOCK_START.
842 * x86-64-tdep.c (x86_64_skip_prologue): Use BLOCK_END,
843 SYMBOL_BLOCK_VALUE.
844 * objc-lang.c (find_methods): Use BLOCK_START, BLOCK_END.
845
846 2002-10-23 David Carlton <carlton@math.stanford.edu>
847
848 * symtab.c: Delete cplusplus_hint.
849 Delete prototype for find_template_name_end.
850
851 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
852
853 * symtab.h: Update comment.
854
855 2002-10-23 Michael Snyder <msnyder@redhat.com>
856
857 * printcmd.c (address_info): Restore quotes in output.
858 * valops.c (value_of_local): Restore quotes in error message.
859
860 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
861
862 * symtab.c (symbol_demangled_name): New function.
863 * symtab.h (SYMBOL_DEMANGLED_NAME): Simplify macro, by
864 turning most of it into a function.
865 (symbol_demangled_name): Export.
866
867 2002-10-23 Michael Snyder <msnyder@redhat.com>
868
869 * valops.c (value_of_local): Restore quotes in error message.
870
871 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
872
873 * symtab.c (symbol_init_language_specific): New function.
874 * symtab.h (SYMBOL_INIT_LANGUAGE_SPECIFIC): Simplify macro, by
875 turning most of it into a function.
876 (symbol_init_language_specific): Export.
877
878 2002-10-23 David Carlton <carlton@math.stanford.edu>
879
880 * dwarf2read.c (dwarf_tag_name): Add DWARF 3 names.
881 (dwarf_attr_name): Ditto.
882 (dwarf_type_encoding_name): Ditto.
883 (scan_partial_symbols): Descend into DW_TAG_namespace entries.
884 (process_die): Handle DW_TAG_namespace,
885 DW_TAG_imported_declaration, DW_TAG_imported_module.
886 (read_namespace): New function.
887
888 2002-10-22 Joel Brobecker <brobecker@gnat.com>
889
890 * configure.in: Define NEW_PROC_API on Interix too.
891 * configure: Regenerate.
892
893 2002-10-21 Joel Brobecker <brobecker@gnat.com>
894
895 * configure: Regenerate using the proper version of autoconf.
896
897 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
898
899 * findvar.c (read_var_value): Temporarily disable TLS code, until
900 complete TLS support is added.
901
902 2002-10-21 Jim Blandy <jimb@redhat.com>
903 Elena Zannoni <ezannoni@redhat.com>
904
905 * symtab.h (address_class): Re-add LOC_THREAD_LOCAL_STATIC
906 for thread local storage locations.
907 (struct symbol): Add objfile field.
908 (SYMBOL_OBJFILE): Define.
909 * dwarf2read.c (is_thread_local): New static variable.
910 (new_symbol): If variable is in thread local fill in address class
911 and objfile appropriately.
912 (decode_locdesc): Recognize and handle DW_OP_GNU_push_tls_address
913 stack operation.
914 * printcmd.c (address_info): Print the information for thread
915 local storage variable.
916 * findvar.c (read_var_value): In case of thread local variable,
917 defer to the target vector code to compute address.
918
919 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
920
921 * solib-svr4.c (svr4_fetch_objfile_link_map): New function.
922 * solib-svr4.h (svr4_fetch_objfile_link_map): Export.
923
924 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
925
926 * symtab.h (address_class): Rename
927 LOC_THREAD_LOCAL_STATIC to LOC_HP_THREAD_LOCAL_STATIC.
928 * hpread.c (hpread_process_one_debug_symbol): Ditto.
929 * printcmd.c (address_info): Ditto.
930 * findvar.c (symbol_read_needs_frame, read_var_value): Ditto.
931
932 2002-10-20 Mark Kettenis <kettenis@gnu.org>
933
934 * i386bsd-nat.c (i386bsd_dr_set, i386bsd_dr_get_status): Use
935 DBREG_DRX macro to acces debug registers.
936
937 * Makefile.in (i386obsd-tdep.o): New target.
938
939 * solib-sunos.c: Include "bcache.h" and "regcache.h".
940 * Makefile.in (solib-sunos.o): Add $(bcache_h) and $(regcache_h).
941
942 * configure.tgt (i[3456]86-*-openbsd*): Set gdb_target to obds.
943 * config/i386/obsd.mt: New file.
944 * i386bsd-nat.c (_initialize_i386bsd_nat): Introduce
945 i386obsd_sc_pc_offset and i386obsd_sc_sp_offset;
946 * i386obsd-nat.c (_initialize_i386obsd_nat): Set
947 i386obsd_sigtramp_start and i386obsd_sigtramp_end instead of
948 i386nbsd_sigtramp_start and i386nbsd_sigtramp_end.
949 * i386obsd-tdep.c: New file.
950
951 2002-10-19 Adam Fedor <fedor@gnu.org>
952
953 * objc-exp.y (name_not_typename): Fix invalid comment.
954
955 2002-10-20 Mark Kettenis <kettenis@gnu.org>
956
957 * solib-sunos.c (allocate_rt_common_objfile): Use bcache_xmalloc
958 to allocate partial syms and macro byte caches.
959
960 2002-10-18 David Carlton <carlton@math.stanford.edu>
961
962 * symtab.h: Delete 'struct source' and 'struct sourcevector'.
963
964 2002-10-18 Adam Fedor <fedor@gnu.org>
965
966 * stabsread.c (find_name_end): New function.
967 (define_symbol): Use it.
968
969 2002-10-18 Daniel Jacobowitz <drow@mvista.com>
970
971 * config/alpha/nm-fbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
972 * config/alpha/nm-linux.h (CANNOT_STEP_BREAKPOINT): Define to 1.
973 * config/alpha/nm-nbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
974 * config/alpha/nm-osf.h (CANNOT_STEP_BREAKPOINT): Define to 1.
975
976 2002-10-17 David Carlton <carlton@math.stanford.edu>
977
978 * symfile.h: Add opaque declaration for struct obstack.
979 Declare obsavestring to take a const char *.
980 * symfile.c (obsavestring): Make first argument a const char *.
981
982 2002-10-16 Adam Fedor <fedor@gnu.org>
983
984 * breakpoint.c (parse_breakpoint_sals): Ignore ObjC method
985 names when matching breakpoints in current file.
986
987 2002-10-16 Kevin Buettner <kevinb@redhat.com>
988
989 * dwarf2read.c (dwarf2_invalid_pointer_size): New complaint.
990 (read_tag_pointer_type): Add address class support.
991 * gdbarch.sh (ADDRESS_CLASS_TYPE_FLAGS)
992 (ADDRESS_CLASS_TYPE_FLAGS_TO_NAME, ADDRESS_CLASS_NAME_TO_TYPE_FLAGS):
993 New methods.
994 * gdbarch.h, gdbarch.c: Regenerate.
995 * gdbtypes.c (address_space_name_to_int, address_space_int_to_name)
996 (make_type_with_address_space, recursive_type_dump): Add address
997 class support.
998 * gdbtypes.h (TYPE_FLAG_ADDRESS_CLASS_1, TYPE_FLAG_ADDRESS_CLASS_2)
999 (TYPE_FLAG_ADDRESS_CLASS_ALL, TYPE_ADDRESS_CLASS_1)
1000 (TYPE_ADDRESS_CLASS_2, TYPE_ADDRESS_CLASS_ALL): New defines
1001
1002 2002-10-16 Klee Dienes <kdienes@apple.com>
1003
1004 * stabsread.c (read_tilde_fields): Use name[sizeof(vptr_name)-2]
1005 to get the last character of a char[] buffer, not
1006 name[sizeof(vptr_name)-1].
1007
1008 2002-10-14 Adam Fedor <fedor@gnu.org>
1009
1010 * symtab.h: New objc_specific struct.
1011 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Handle ObjC.
1012 (SYMBOL_DEMANGLED_NAME): Likewise.
1013
1014 2002-10-14 Adam Fedor <fedor@gnu.org>
1015
1016 * symfile.c (init_filename_language_table): Add ObjC file extension.
1017
1018 2002-10-14 Adam Fedor <fedor@gnu.org>
1019
1020 * utils.c (puts_filtered_tabular): New function.
1021 (fprintf_symbol_filtered): Get ObjC demangled name.
1022 * defs.h (puts_filtered_tabular): Declared.
1023
1024 2002-10-14 Kevin Buettner <kevinb@redhat.com>
1025
1026 * c-lang.h (c_type_print_varspec_prefix): Delete.
1027 * c-typeprint.c (c_type_print_varspec_prefix): Make static. Add
1028 ``need_post_space'' parameter. Adjust all callers.
1029
1030 2002-10-14 Daniel Jacobowitz <drow@mvista.com>
1031
1032 * config/mips/nm-irix4.h (HAVE_NONSTEPPABLE_WATCHPOINT): Define to 1.
1033 * config/mips/nm-irix5.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
1034 * config/mips/tm-embed.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
1035 * config/pa/nm-hppah.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
1036
1037 2002-10-13 Adam Fedor <fedor@gnu.org>
1038
1039 * source.c (print_source_lines): Update comments.
1040
1041 2002-10-13 Adam Fedor <fedor@gnu.org>
1042
1043 * valops.c (value_of_local): New function.
1044 (value_of_this): Use it.
1045 * value.h (value_of_local): Declared.
1046
1047 2002-10-13 Adam Fedor <fedor@gnu.org>
1048
1049 * parse.c: (length_of_subexp, prefixify_subexp): Handle
1050 OP_MSGCALL, OP_SELECTOR, OP_NSSTRING, and OP_SELF.
1051
1052 2002-10-12 Adam Fedor <fedor@gnu.org>
1053
1054 * language.c (binop_result_type): Add language_objc to case.
1055 (integral_type): Likewise.
1056 (character_type): Likewise.
1057 (string_type): Likewise.
1058 (boolean_type): Likewise.
1059 (structured_type): Likewise.
1060 (binop_type_check): Likewise.
1061
1062 2002-10-11 Adam Fedor <fedor@gnu.org>
1063
1064 * printcmd.c (address_info): Print 'self' for ObjC.
1065
1066 2002-10-11 Adam Fedor <fedor@gnu.org>
1067
1068 * expression.h: New ops OP_NSSTRING, OP_SELECTOR, OP_MSGCALL, and
1069 OP_SELF.
1070
1071 2002-10-11 Adam Fedor <fedor@gnu.org>
1072
1073 * language.h (CAST_IS_CONVERSION): Add language_objc.
1074
1075 2002-10-11 Adam Fedor <fedor@gnu.org>
1076
1077 * defs.h (enum language): Add language_objc.
1078
1079 2002-10-11 Klee Dienes <kdienes@apple.com>
1080
1081 * corefile.c (read_memory_typed_address): New function.
1082 * gdbcore.h (read_memory_typed_address): Add prototype.
1083 * blockframe.c (sigtramp_saved_pc): Use read_memory_typed_address
1084 to read a value destined for a CORE_ADDR, not read_memory_integer.
1085 * f-valprint.c (f77_get_dynamic_upperbound): Ditto.
1086 (f77_get_dynamic_lowerbound): Ditto.
1087
1088 2002-10-11 Martin M. Hunt <hunt@redhat.com>
1089
1090 * utils.c (string_to_core_addr): After turning string into
1091 a number, convert to a CORE_ADDR using INTEGER_TO_ADDRESS
1092 which will do necessary sign-extension, etc.
1093
1094 2002-10-11 Daniel Jacobowitz <drow@mvista.com>
1095
1096 * c-exp.y (THIS): Delete token and grammar rule.
1097 (yylex): Don't return THIS.
1098 * cp-valprint.c (vtbl_ptr_name_old): Delete.
1099 (cp_is_vtbl_ptr_type): Don't check vtbl_ptr_name_old.
1100 * demangle.c (cplus_markers): Update comment. Put '$'
1101 first. Remove CPLUS_MARKER.
1102 (_initialize_demangler): Don't call set_cplus_marker_for_demangling.
1103 * jv-exp.y (THIS): Delete token and grammar rule.
1104 (yylex): Don't return THIS.
1105 * mips-tdep.c (mips_dump_tdep): Don't dump CPLUS_MARKER.
1106 * objc-exp.y (THIS): Delete token and grammar rule.
1107 (yylex): Don't return THIS.
1108 * p-exp.y (yylex): Remove reference to CPLUS_MARKER.
1109 * stabsread.c (vptr_name, vb_name): Replace CPLUS_MARKER with '$'.
1110 (read_member_functions): Likewise for opname.
1111 (read_tilde_fields): Use is_cplus_marker.
1112
1113 * defs.h (CPLUS_MARKER): Don't define.
1114 * config/tm-sysv4.h (CPLUS_MARKER): Likewise.
1115 * config/i386/xm-i386sco.h (CPLUS_MARKER): Likewise.
1116 * config/mips/tm-irix3.h (CPLUS_MARKER): Likewise.
1117 * config/mips/tm-irix6.h (CPLUS_MARKER): Likewise.
1118 * config/rs6000/tm-rs6000.h (CPLUS_MARKER): Likewise.
1119
1120 * config/i386/tm-i386v4.h: Delete file.
1121 * config/djgpp/fnchange.lst: Delete tm-i386v4.h.
1122 * config/i386/tm-i386sol2.h: Include "i386/tm-i386.h" instead.
1123 * config/i386/tm-i386v42mp.h: Include "i386/tm-i386.h" instead.
1124 * config/i386/tm-ptx.h: Include "i386/tm-i386.h" instead.
1125 * config/i386/i386gnu.mt (TM_FILE): Use tm-i386.h.
1126 * config/i386/i386sco5.mt (TM_FILE): Likewise.
1127 * config/i386/i386v4.mt (TM_FILE): Likewise.
1128 * config/i386/ncr3000.mt (TM_FILE): Likewise.
1129
1130 2002-10-10 Marko Mlinar <markom@opencores.org>
1131
1132 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C,
1133 accidentially not commited 2002-10-09
1134 * gdbarch.h, gdbarch.c: Re-generate.
1135
1136 2002-10-09 Marko Mlinar <markom@opencores.org>
1137
1138 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C.
1139 * gdbarch.sh (HAVE_NONSTEPPABLE_WATCHPOINT): Add.
1140 * gdbarch.h, gdbarch.c: Re-generate.
1141
1142 2002-10-08 Petr Sorfa <petrs@caldera.com>
1143
1144 Revised and re-submitted by John Wolfe <jlw@caldera.com>
1145
1146 Move the Dwarf 2 abbrev table to a per-compilation-unit structure,
1147 so we can work on more than one compilation unit at a time. This
1148 helps prepare GDB to handle inter-CU die references.
1149 * dwarf2read.c (ABBREV_HASH_SIZE): moved definition forward in
1150 the code to be defined before struct comp_unit_head.
1151 (comp_unit_head): Added new members - offset, cu_head,
1152 begin_die, next and dwarf2_abbrevs.
1153 (dwarf2_abbrevs): Removed single static var; now member of
1154 struct comp_unit_head.
1155 dwarf2_build_psymtabs_hard): Complete new struct comp_unit_head
1156 members.
1157 (psymtab_to_symtab_1): Changed to work with the new
1158 struct comp_unit_head.
1159 (dwarf2_read_abbrevs): Now accepts a cu_header parameter and
1160 constructs the dwarf2_abbrevs[] inside the cu_header.
1161 (dwarf2_empty_abbrev_table): Now expects a ptr to a
1162 dwarf2_abbrev table to clean up.
1163 (dwarf2_lookup_abbrev): Now accepts a cu_header parameter and
1164 handling of dwarf2_abbrevs inside the cu_header.
1165 (read_partial_die): Now supports the call to the new
1166 dwarf2_lookup_abbrev.
1167 (read_full_die): Now supports the call to the new
1168 dwarf2_lookup_abbrev.
1169
1170 2002-10-06 Christopher Faylor <cgf@redhat.com>
1171
1172 * Makefile.in (install-gdbtk): Add missing continuation backslash to
1173 insure that shell variables, such as "transformed_name" are propagated
1174 to later shell statements in rule.
1175
1176 2002-10-06 Mark Kettenis <kettenis@gnu.org>
1177
1178 * config/i386/nm-i386sco.h: Add protection against
1179 multiple-inclusion. Include "i386/nm-i386v.h".
1180 (REGISTER_U_ADDR): Remove define.
1181 (i386_register_u_addr): Remove prototype.
1182
1183 2002-10-04 Michael Snyder <msnyder@redhat.com>
1184
1185 * m32r-stub.c (handle_exception): Make sure exception is "trap"
1186 before treating it as a single-step event.
1187
1188 2002-10-03 Adam Fedor <fedor@gnu.org>
1189
1190 * objc-lang.c: ARI fixes. Change string.h to gdb_string.h.
1191 (objc_demangle): Remove assignment in if statements, Replace
1192 free with xfree.
1193 (add_msglist): Likewise.
1194 (end_msglist): Likewise.
1195 (complare_selectors): Likewise.
1196 (selectors_info): Likewise.
1197 (compare_classes): Likewise.
1198 (classes_info): Likewise.
1199 (print_object_command): Likewise.
1200 (find_objc_msgcall_submethod): Replace PTR with void *.
1201 * objc-lang.h: Remove check for __STDC__.
1202
1203 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
1204
1205 * ui-out.h (ui_out_field_fmt_int): New prototype.
1206 * ui-out.c (ui_out_field_fmt_int): New function allowing specification
1207 of field width and alignment.
1208 * stack.c (print_frame_info_base): When printing frame level, use
1209 ui_out_field_fmt_int with a width of 2 and left alignment. Fix for
1210 PR gdb/192
1211
1212 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
1213
1214 * MAINTAINERS: Add self to Write After Approval list.
1215
1216 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
1217
1218 * infcmd.c (interrupt_target_command_wrapper): Delete.
1219 (interrupt_target_command): Make non static.
1220 (nofp_registers_info): Make static.
1221 * stack.c (return_command_wrapper): Delete.
1222 (return_command): Make non static.
1223
1224 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
1225
1226 * event-top.c (gdb_setup_readline): New function. Code moved from
1227 _initialize_event_loop().
1228 (_initialize_event_loop): Call gdb_setup_readline().
1229
1230 2002-10-02 Andrew Cagney <ac131313@redhat.com>
1231
1232 * infrun.c (resume): Convert #ifdef CANNOT_STEP_BREAKPOINT into C.
1233 * gdbarch.sh (CANNOT_STEP_BREAKPOINT): Add.
1234 * gdbarch.h, gdbarch.c: Re-generate.
1235
1236 2002-10-02 Daniel Jacobowitz <drow@mvista.com>
1237
1238 Fix PR gdb/778
1239 * gdbtypes.c (fill_in_vptr_fieldno): Call check_typedef
1240 before recursing.
1241 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Check return value
1242 of fill_in_vptr_fieldno.
1243
1244 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
1245
1246 * inferior.h (registers_info, stepi_command, nexti_command,
1247 continue_command, interrupt_target_command): Export from infcmd.c.
1248 * frame.h (args_info, selected_frame_level_changed_hook,
1249 return_command): Export from stack.c.
1250 * v850ice.c (stepi_command, nexti_command, continue_command): use
1251 prototypes from inferior.h.
1252 * tracepoint.c (registers_info, args_info, locals_info): Use
1253 prototypes from frame.h and inferior.h.
1254 * Makefile.in (mi-main.o): Add dependency on frame.h.
1255
1256 2002-10-02 Andrew Cagney <ac131313@redhat.com>
1257
1258 * rs6000-tdep.c (rs6000_store_struct_return): Store struct_return
1259 value in register 3 adjusted by ppc_gp0_regnum.
1260
1261 * rs6000-tdep.c (skip_prologue): Bias alloca_reg by ppc_gp0_regnum.
1262
1263 2002-10-02 Marko Mlinar <markom@opencores.org>
1264
1265 * MAINTAINERS: Add myself to the Write After Approval list.
1266
1267 2002-10-01 Alexandre Oliva <aoliva@redhat.com>
1268
1269 * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
1270 of the section for the N64 ABI, fixed.
1271
1272 * config/mips/tm-irix6.h: Include solib.h.
1273
1274 2002-10-01 Elena Zannoni <ezannoni@redhat.com>
1275
1276 * dwarf2read.c (dwarf_stack_op_name): Recognize more dwarf3 and
1277 GNU operators.
1278
1279 2002-10-01 Andrew Cagney <ac131313@redhat.com>
1280
1281 * NEWS: Mention that MI syntax, selected by "mi" changed to "mi2"
1282 and that "mi0" syntax has been removed.
1283
1284 2002-09-30 David Carlton <carlton@math.stanford.edu>
1285
1286 * Makefile.in (ppc-sysv-tdep.o): Depend on gdb_string_h.
1287 * ppc-sysv-tdep.c: #include "gdb_string.h".
1288 * remote-sds.c (getmessage): Add semicolon after 'retry' label to
1289 pacify GCC.
1290
1291 2002-10-01 Andrew Cagney <ac131313@redhat.com>
1292
1293 * rs6000-tdep.c (rs6000_gdbarch_init): For powerpc:7400, fix
1294 "vrsave"'s register number.
1295
1296 2002-09-30 Andrew Cagney <ac131313@redhat.com>
1297
1298 * mips-tdep.c (mips_frame_saved_pc): When a generic dummy frame,
1299 use frame_unwind_signed_register to obtain the PC.
1300 (mips_frame_chain): Handle a generic dummy frame.
1301 (mips_init_extra_frame_info): When a generic dummy frame, don't
1302 re-compute the frame base.
1303 (mips_pop_frame): Handle generic dummy frames.
1304 (mips_gdbarch_init): When generic dummy frames, set
1305 use_generic_dummy_frames, push_dummy_frame to
1306 generic_push_dummy_frame, pc_in_call_dummy to
1307 generic_pc_in_call_dummy, and save_dummy_frame_top_of_stack to
1308 generic_save_dummy_frame_tos.
1309
1310 2002-09-30 Andrew Cagney <ac131313@redhat.com>
1311
1312 * blockframe.c (generic_find_dummy_frame): Rewrite. Only test
1313 against TOP when TOP was explictly set.
1314 (generic_push_dummy_frame): Set TOP to zero.
1315
1316 2002-09-30 Elena Zannoni <ezannoni@redhat.com>
1317
1318 * event-loop.c (start_event_loop): Rename variable 'result' to
1319 'gdb_result', to avoid conflicts with upcoming intepreters changes.
1320
1321 2002-09-30 Keith Seitz <keiths@redhat.com>
1322
1323 * gdb-events.sh (selected_thread_changed): New event.
1324 * gdb-events.c: Regenerated.
1325 * gdb-events.h: Regenerated.
1326
1327 2002-09-30 Hans-Peter Nilsson <hp@bitrange.com>
1328
1329 * MAINTAINERS: Add self to Write After Approval list.
1330
1331 2002-09-30 Fernando Nasser <fnasser@redhat.com>
1332
1333 * disasm.c: New file.
1334 * disasm.h: New file.
1335 * mi/mi-cmd-disas.c (gdb_dis_asm_read_memory): Moved to disasm.c.
1336 (compare_lines): Ditto.
1337 (dump_insns): Ditto.
1338 (do_mixed_source_and_assembly): Moved to disasm.c. Added uiout
1339 argument.
1340 (do_assembly_only): Ditto.
1341 (do_disassembly): Renamed to gdb_disassembly and moved to
1342 disasm.c. Sdded uiout argument.
1343 * Makefile.in: Add new files. Reorder SFILES list. Update
1344 dependencies. Include libgdb.a later in the insight executable.
1345
1346 2002-09-29 Andrew Cagney <ac131313@redhat.com>
1347
1348 * config/djgpp/fnchange.lst: Rename bfd/elf64-alpha.c and
1349 bfd/elf64-alpha-fbsd.c.
1350
1351 2002-09-29 Andrew Cagney <ac131313@redhat.com>
1352
1353 * config/djgpp/fnchange.lst: Rename i386gnu-nat.c and
1354 i386gnu-tdep.c.
1355
1356 2002-09-29 Andrew Cagney <ac131313@redhat.com>
1357
1358 * gnu-nat.h (debug): Use __FILE__ and __LINE__ instead of
1359 __FUNCTION__.
1360 * gnu-nat.c (do_mach_notify_no_senders): Replace __FUNCTION__ with
1361 function name.
1362 (do_mach_notify_port_deleted, do_mach_notify_msg_accepted): Ditto.
1363 (do_mach_notify_port_destroyed, do_mach_notify_send_once): Ditto.
1364 (S_proc_setmsgport_reply, S_proc_getmsgport_reply): Ditto.
1365 (S_msg_sig_post_reply): Ditto.
1366
1367 2002-09-28 Corinna Vinschen <vinschen@redhat.com>
1368
1369 * sh-tdep.c (sh_use_struct_convention): Use definition according
1370 to ABI.
1371 (sh_push_arguments): Store in register with correct endianess.
1372 (sh_default_store_return_value): Ditto.
1373 (sh_gdbarch_init): Set sizeof long double to 8.
1374
1375 2002-09-27 Mark Kettenis <kettenis@gnu.org>
1376
1377 * defs.h: Move inclusion of "ansidecl.h" before "gdb_locale.h".
1378 Fix some whitespace problems.
1379
1380 2002-09-27 David Carlton <carlton@math.stanford.edu>
1381
1382 * Makefile.in (cris-tdep.o): Depend on gdb_string_h.
1383 (mcore-tdep.o): Ditto.
1384 (ns32k-tdep.o): Ditto.
1385 (ns32knbsd-tdep.o): Ditto.
1386 (sh3-rom.o): Ditto.
1387 (vax-tdep.o): Ditto.
1388 * cris-tdep.c: #include "gdb_string.h"
1389 * mcore-tdep.c: Ditto.
1390 * ns32k-tdep.c: Ditto.
1391 * ns32knbsd-tdep.c: Ditto.
1392 * sh3-rom.c: Ditto.
1393 * vax-tdep.c: Ditto.
1394
1395 2002-09-27 David Carlton <carlton@math.stanford.edu>
1396
1397 * config/djgpp/fnchange.lst: Add entries for
1398 gdb/testsuite/gdb.c++/m-static files.
1399
1400 2002-09-27 Jim Wilson <wilson@redhat.com>
1401
1402 * MAINTAINERS: Add myself to the Write After Approval list.
1403
1404 2002-09-26 Martin M. Hunt <hunt@redhat.com>
1405
1406 * mips-tdep.c (find_proc_desc): Initialize startaddr.
1407
1408
1409 2002-09-26 Andrew Cagney <ac131313@redhat.com>
1410
1411 * rs6000-tdep.c (rs6000_frame_chain): Don't chain past the dummy
1412 frame.
1413
1414 2002-09-26 Andrew Cagney <ac131313@redhat.com>
1415
1416 * rs6000-tdep.c (rs6000_extract_struct_value_address): Return 0.
1417 (rs6000_struct_return_address): Delete variable.
1418 (rs6000_store_struct_return): Update.
1419 (rs6000_gdbarch_init): Set extract_struct_value_address instead of
1420 deprecated_extract_struct_value_address.
1421 (rs6000_frame_align): New function.
1422 (rs6000_gdbarch_init): Set frame_align.
1423
1424 2002-09-26 Andrew Cagney <ac131313@redhat.com>
1425
1426 From Grace Sainsbury <graces@redhat.com>:
1427 * Makefile.in (gdbtk-main.o): New target.
1428 (gdb.o): New target.
1429 (main_h): Define.
1430 (main.o): Update dependencies.
1431 (gdb$(EXEEXT)): Add gdb.o.
1432 (SUBDIR_GDBTK_SRCS): Add gdbtk-main.c.
1433 (SUBDIR_GDBTK_ALL, SUBDIR_GDBTK_UNINSTALL): Set.
1434 (SUBDIR_GDBTK_CLEAN): Set.
1435 (install-gdbtk): Install the insight binary.
1436 (uninstall-gdbtk): New target.
1437 (all-gdbtk, clean-gdbtk): New rule.
1438 * top.c (use_windows): Default to zero.
1439 * main.c: Include "main.h".
1440 (main): Delete.
1441 (struct captured_main_args): Delete.
1442 (gdb_main): New function.
1443 * main.h: New file.
1444 * gdb.c: New File.
1445
1446 2002-09-25 Andrew Cagney <cagney@redhat.com>
1447
1448 * frame.c: Include "gdb_string.h" and "builtin-regs.h".
1449 (frame_map_regnum_to_name): New function.
1450 (frame_map_name_to_regnum): New function.
1451 * frame.h (frame_map_name_to_regnum): Declare.
1452 (frame_map_regnum_to_name): Declare.
1453 * builtin-regs.c (builtin_reg_map_regnum_to_name): New function.
1454 * builtin-regs.h (builtin_reg_map_regnum_to_name): Declare.
1455 * parse.c: Do not include "builtin-regs.h".
1456 (target_map_name_to_register): Delete function.
1457 (write_dollar_variable): Use frame_map_name_to_regnum.
1458 * parser-defs.h (target_map_name_to_register): Delete declaration.
1459 * expprint.c: Include "frame.h".
1460 (print_subexp): Use frame_map_regnum_to_name.
1461 * eval.c (evaluate_subexp_standard): Use frame_map_regnum_to_name.
1462 * infcmd.c (registers_info): Use frame_map_name_to_regnum.
1463
1464 2002-09-25 Andrew Cagney <ac131313@redhat.com>
1465
1466 * rs6000-tdep.c (rs6000_frame_saved_pc): If the link register
1467 wasn't saved, and the next innermost frame is a dummy, return the
1468 dummy frame's link register.
1469
1470 2002-09-24 Jim Blandy <jimb@redhat.com>
1471
1472 Fix from Paul Breed:
1473 * main.c (captured_main): Add a `break' after the case for 'b'.
1474
1475 2002-09-24 Keith Seitz <keiths@redhat.com>
1476
1477 * varobj.c (c_type_of_child): Use get_target_type instead
1478 of TYPE_TARGET_TYPE.
1479
1480 2002-09-22 Fernando Nasser <fnasser@redhat.com>
1481
1482 * source.c (get_current_or_default_source_symtab_and_line): Remove
1483 function.
1484 (set_default_source_symtab_and_line): New function. Attempts to
1485 determine a source file to list lines from if one is not currently
1486 defined.
1487 (get_current_source_symtab_and_line): Initialize sal.pc and
1488 sal.end fields.
1489 (set_current_source_symtab_and_line): Mark argument as const.
1490 * source.h: Update declarations and comments.
1491 * linespec.c (decode_line_1): Replace call to removed routine above.
1492 * stack.c (print_frame_info_base): Ditto.
1493 * cli/cli-cmds.c (edit_command): Ditto.
1494 (list_command): Ditto.
1495
1496 2002-09-22 Fernando Nasser <fnasser@redhat.com>
1497
1498 * source.c (get_current_or_default_source_symtab_and_line): Initialize
1499 sal.pc and sal.end fields.
1500 (get_current_or_default_source_symtab_and_line): Ditto.
1501 * breakpoint.c (parse_breakpoint_sals): Use correct accessor function
1502 so we do not cause a new source symtab to be searched for (reverting an
1503 unintentional change from the 2002-09-20 patch).
1504 * scm-lang.c (scm_unpac): Ditto.
1505
1506 2002-09-21 Andrew Cagney <cagney@redhat.com>
1507
1508 * complaints.c (symfile_explanations): Remove new-line from
1509 ``isolated_message''.
1510 (vcomplaint): When ISOLATED_MESSAGE, force a line break.
1511 (clear_complaints): When a SUBSEQUENT_MESSAGE, force a line break.
1512
1513 2002-09-20 Nick Clifton <nickc@redhat.com>
1514
1515 * NEWS: Announce that V850EA ISA is no longer supported.
1516 * v850-tdep.c: Remove reference to bfd_mach_v850ea.
1517
1518 2002-09-20 David Carlton <carlton@math.stanford.edu>
1519
1520 * Makefile.in (c-lang.o): Correct dependencies.
1521 (utils.o): Gather dependencies.
1522 (charset.o): Move.
1523 * c-lang.c: #include "gdb_string.h"
1524
1525 2002-09-20 Fernando Nasser <fnasser@redhat.com>
1526
1527 From 2002-07-02 George Helffrich <george@gly.bris.ac.uk>
1528 * cli/cli-cmds.c (list_command): New function. Implements the new
1529 cli edit command.
1530 (_init_cli_cmds): Add new command definition.
1531 * gdb.1: Document edit command.
1532 * doc/gdb.texinfo: Document edit command.
1533
1534 2002-09-20 Fernando Nasser <fnasser@redhat.com>
1535
1536 * source.c: Make global variables current_source_symtab and
1537 current_source_line static.
1538 (list_command): Moved to cli/cli-cmds.c.
1539 (ambiguous_line_spec): Moved to cli/cli-cmds.c.
1540 (get_first_line_listed): New accessor function.
1541 (get_lines_to_list): New accessor function.
1542 (get_current_source_symtab_and_line): New function. Retrieves the
1543 position in the source code that we consider current.
1544 (get_current_or_default_source_symtab_and_line): New function.
1545 Like the above but attempts to determine a default position if one
1546 is not currently defined.
1547 (set_current_source_symtab_and_line): New function. Sets the source
1548 code position considered current and returns the previously set one.
1549 (clear_current_source_symtab_and_line): Reset stored information about
1550 a current source line.
1551 (_initialize_source): Remove registration for the "list" command and
1552 its alias.
1553 * source.h: Add declarations for the new functions above.
1554 * symtab.h: Remove declarations for the global variables mentioned
1555 above.
1556 * breakpoint.c (parse_breakpoint_sals): Use accessor functions to
1557 obtain current source line.
1558 * linespec.c (decode_line_1): Ditto.
1559 * macroscope.c (default_macro_scope): Ditto.
1560 * scm-lang.c (scm_unpac): Ditto.
1561 * stack.c (print_frame_info_base): Ditto.
1562 * symfile.c (clear_symtab_users): Ditto.
1563 * symtab.c (decode_line_spec): Ditto.
1564 * cli/cli-cmds.c (list_command): Moved here from source.c.
1565 (ambiguous_line_spec): Moved here from source.c.
1566 (_init_cli_cmds): Add definition for "list" and its alias.
1567 * Makefile.in: Update dependencies.
1568
1569 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
1570
1571 * h8300-tdep.c (h8300_examine_prologue): Match saved regs location
1572 with what gcc thinks is correct.
1573
1574 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
1575
1576 * h8300-tdep.c (h8300_examine_prologue): Fix loop for saved regs in
1577 multiple register push instruction.
1578
1579 2002-09-19 Jim Blandy <jimb@redhat.com>
1580
1581 Add support for distinct host and target character sets.
1582 * charset.c, charset.h: New files.
1583 * c-exp.y: #include "charset.h".
1584 (yylex): Convert character and string literals to the target
1585 character set, before returning them as the semantic value of the
1586 token.
1587 * c-lang.c: #include "charset.h".
1588 (c_emit_char): Use charset-specific methods to recognize
1589 characters with backslash escape forms, to decide which characters
1590 to print literally and which to print using numeric escape
1591 sequences, and to convert target characters to host characters
1592 before printing.
1593 * utils.c: #include "charset.h".
1594 (no_control_char_error): New function.
1595 (parse_escape): Use charset-specific methods to recognize
1596 backslash escapes, parse `control character' notation, and convert
1597 characters from the host character set to the target character set.
1598 * configure.in: Set the default host character set.
1599 Check where to find iconv, and what its argument types might be.
1600 * acinclude.m4 (AM_ICONV): New macro, borrowed from GCC.
1601 * Makefile.in (SFILES): List charset.c.
1602 (COMMON_OBS): List charset.o.
1603 (charset.o): New rule.
1604 (charset_h): New header dependency variable.
1605 (c-lang.o, utils.o, c-exp.tab.o): Note dependency on $(charset_h).
1606 (LIBICONV): New variable, set by configure.
1607 (CLIBS): Include $(LIBICONV) here.
1608 * aclocal.m4, config.in, configure: Regenerated.
1609
1610 2002-09-19 Joel Brobecker <brobecker@gnat.com>
1611
1612 * ada-exp.y: Add missing semicolons to end rules. Fixes a
1613 bison 1.35 warning.
1614
1615 2002-09-19 Richard Earnshaw <rearnsha@arm.com>
1616
1617 * gdb_mbuild.sh: New file.
1618
1619 2002-09-19 Andrew Cagney <ac131313@redhat.com>
1620
1621 * objc-exp.y, objc-lang.h, objc-lang.c: Fix copyright notice.
1622
1623 2002-09-18 Andrew Cagney <ac131313@redhat.com>
1624
1625 * breakpoint.c, c-exp.y, defs.h, elfread.c, expression.h,
1626 jv-exp.y, language.c, language.h, p-exp.y, parse.c, parser-defs.h,
1627 printcmd.c, source.c, stabsread.c, symfile.c, symtab.h, utils.c,
1628 valops.c, value.h: Revert previous change.
1629
1630 2002-09-18 Michael Snyder <msnyder@redhat.com>
1631
1632 Preliminary support for Objective-C:
1633 * defs.h (language_objc): New enum value.
1634 (puts_filtered_tabular): Declaration only, exported from utils.c.
1635 (skip_quoted): Delete, declared in completer.h.
1636 * c-exp.y: Include completer.h.
1637 * p-exp.y: Ditto.
1638 * jv-exp.y: Ditto.
1639 * expression.h (OP_MSGCALL, OP_SELECTOR, OP_SELF, OP_NSSTRING):
1640 New operator enum values.
1641 * language.h (CAST_IS_CONVERSION): Test for language_objc.
1642 * language.c (binop_result_type): Handle language_objc case.
1643 (integral_type, character_type, string_type, boolean_type,
1644 structured_type, binop_type_check): Ditto.
1645 * symtab.h (SYMBOL_OBJC_DEMANGLED_NAME): Define.
1646 (struct objc_specific): Add to general_symbol_info.
1647 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Add objc initialization.
1648 (SYMBOL_DEMANGLED_NAME): Handle objc case.
1649 * parser-defs.h (struct objc_class_str): New struct type.
1650 (start_msglist, end_msglist, add_msglist): Declaration only,
1651 exported from objc-lang.c.
1652 * value.h (value_of_local, value_nsstring,
1653 call_function_by_hand_expecting_type): Exported from valops.c.
1654 * valops.c (find_function_addr): Export.
1655 (call_function_by_hand_expecting_type): New function.
1656 (value_of_local): New function.
1657 * symfile.c (init_filename_language_table): Add ".m" extension
1658 for Objective-C.
1659 * utils.c (puts_filtered_tabular): New function.
1660 (fprintf_symbol_filtered): Add objc demangling support (disabled).
1661 (set/show demangle): Extend help-string to refer to ObjC.
1662 * elfread.c (elf_symtab_read): Skip Objective-C special symbols.
1663 * stabsread.c (symbol_reference_defined): Objective-C symbols
1664 may contain colons: make allowances when scanning stabs strings
1665 for colons.
1666 (objc_find_colon): New function.
1667 * printcmd.c (address_info): If language == objc then print
1668 "self" instead of "this".
1669 * parse.c (length_of_subexp): Handle new operators OP_MSGCALL,
1670 OP_NSSTRING, and OP_SELF.
1671 (prefixify_subexp): Ditto.
1672 * source.c (print_source_lines): Mention objc in comment.
1673 * breakpoint.c (parse_breakpoint_sals): Recognize Objective-C
1674 method names.
1675
1676 2002-09-18 Andrew Cagney <ac131313@redhat.com>
1677
1678 * complaints.h: Update copyright.
1679 (struct complaints): Declare.
1680 (struct complaint): Make `message' constant.
1681 (internal_complaint): Declare.
1682 (complaint): Declare.
1683 (complaint_root): Delete declaration.
1684 (symfile_complaints): Delete declaration.
1685 (struct complaints): Add opaque declaration.
1686 (clear_complaints): Add a complaints parameter.
1687 * complaints.c: Update copyright.
1688 (enum complaint_series): Define.
1689 (complaint_root): Delete.
1690 (struct complaints): Define.
1691 (complaint_sentinel, symfile_complaint_book): New variables.
1692 (symfile_explanations, symfile_complaints): New variables.
1693 New variables.
1694 (get_complaints): New function.
1695 (vcomplaint): New function.
1696 (complaint): New function.
1697 (internal_complaint): New function.
1698 (complain): Call vcomplain with symfile_complaint.
1699 (clear_complaints): Rewrite.
1700 (_initialize_complaints): Use add_setshow_command.
1701 * Makefile.in (complaints.o): Update dependencies.
1702 * symfile.c (syms_from_objfile): Add symfile_complaints parameter
1703 to call to clear_complaints.
1704 (new_symfile_objfile, reread_symbols): Ditto.
1705 (oldsyms_complaint): Delete.
1706 (empty_symtab_complaint, unknown_option_complaint): Delete.
1707 (free_named_symtabs): Use complaint instead of complain.
1708
1709 2002-09-18 Michael Snyder <msnyder@redhat.com>
1710
1711 Contributed by Apple Computer, Inc. Merged with current sources
1712 by Adam Fedor <fedor@doc.com> [cagney].
1713
1714 * objc-lang.c: First clean-up round: comments, indentation.
1715 * objc-lang.h: Ditto.
1716 * objc-lang.y: Ditto.
1717
1718 2002-09-18 Andrew Cagney <ac131313@redhat.com>
1719
1720 * maint.c (maintenance_internal_error): Print the parameter as the
1721 error message.
1722 (maintenance_internal_warning): New function.
1723 (_initialize_maint_cmds): Add command `maint internal-warning'.
1724
1725 * defs.h (internal_warning, internal_vwarning): Declare.
1726 * utils.c (struct internal_problem): Define.
1727 (internal_vproblem): New function.
1728 (internal_warning): New function.
1729 (internal_vwarning): New function.
1730 (internal_warning_problem, internal_error_problem): New variables.
1731 (internal_verror): Just call internal_vproblem.
1732
1733 2002-09-18 Michael Snyder <msnyder@redhat.com>
1734
1735 * objc-lang.c: New file, support for Objective-C.
1736 Preliminary check-in, not yet integrated into gdb.
1737 * objc-lang.h: New file.
1738 * objc-exp.y: New file.
1739
1740 2002-09-18 Andrew Cagney <ac131313@redhat.com>
1741
1742 * infrun.c (signal_stop_update): Convert definition to ISO C.
1743 (signal_print_update): Ditto.
1744 (signal_pass_update): Ditto.
1745 * inflow.c (terminal_save_ours): Ditto.
1746
1747 * h8300-tdep.c (h8300_gdbarch_init): Use C instead of C++
1748 comments.
1749
1750 * config/djgpp/fnchange.lst: Handle name clashes between
1751 bfd/coff-tic30.c, bfd/coff-tic4x.c, bfd/coff-tic54x.c and
1752 bfd/coff-tic80.c.
1753
1754 * i386-linux-tdep.h: Fix tipo.
1755
1756 2002-09-18 Adam Fedor <fedor@gnu.org>
1757
1758 * MAINTAINERS: Add myself to the Write After Approval list.
1759
1760 2002-09-18 Jim Blandy <jimb@redhat.com>
1761
1762 * dbxread.c, mdebugread.c: Revert my change of 2001-10-23. Moving
1763 texthigh and textlow to reader-specific structs caused
1764 objfile_relocate to miss them. This is fixable, but the work that
1765 the change was supposed to prepare GDB for never got done anyway.
1766
1767 2002-09-18 David Carlton <carlton@math.stanford.edu>
1768
1769 * MAINTAINERS: Alphabetize Write After Approval list.
1770
1771 2002-09-18 Daniel Jacobowitz <drow@mvista.com>
1772
1773 Fix PR gdb/709
1774 * values.c (value_static_field): Call read_var_value.
1775
1776 2002-09-18 Andrew Cagney <ac131313@redhat.com>
1777
1778 * valops.c (hand_function_call): Align the initial stack pointer
1779 and STRUCT_ADDR using frame_align. When STRUCT_RETURN and
1780 FRAME_ALIGN_P, use STRUCT_ADDR to obtain the called function's
1781 return value.
1782 * mips-tdep.c (mips_frame_align): New function.
1783 (mips_gdbarch_init): Set frame_align.
1784 * gdbarch.sh (FRAME_ALIGN): New method.
1785 * gdbarch.h, gdbarch.c: Re-generate.
1786
1787 2002-09-18 Michal Ludvig <mludvig@suse.cz>
1788
1789 * x86-64-linux-nat.c (x86_64_regmap): Added CS and SS
1790 registers.
1791
1792 2002-09-17 Andrew Cagney <ac131313@redhat.com>
1793
1794 * NEWS: Mention that MIPS $fp behavior changed.
1795 * mipsnbsd-tdep.c (mipsnbsd_cannot_fetch_register): Delete
1796 reference to FP_REGNUM.
1797 (mipsnbsd_cannot_store_register): Ditto.
1798 * mips-linux-nat.c: Update copyright.
1799 (mips_linux_cannot_fetch_register): Delete reference to FP_REGNUM.
1800 (mips_linux_cannot_store_register): Ditto.
1801 * mips-linux-tdep.c (supply_gregset): Ditto. Update copyright.
1802 * config/mips/tm-mips.h: Update copyright.
1803 (FP_REGNUM): Delete macro.
1804 (MIPS_REGISTER_NAMES): Replace "fp" with "".
1805 * config/mips/tm-irix6.h (FP_REGNUM): Delete macro.
1806 * mips-tdep.c (mips_gdbarch_init): Set read_fp to mips_read_sp.
1807 (mips_r3041_reg_names, mips_r3051_reg_names)
1808 (mips_r3081_reg_names): Replace "fp" with "".
1809 Fix PR gdb/480.
1810
1811 2002-09-17 Theodore A. Roth <troth@verinet.com>
1812
1813 * gdb/avr-tdep.c(avr_scan_prologue): Fix bad call to
1814 generic_read_register_dummy() (PR gdb/703).
1815 (avr_push_return_address): #if 0 out unused vars.
1816 (avr_gdbarch_init): Enable use of avr_push_return_address().
1817
1818 2002-09-17 Michael Snyder <msnyder@redhat.com>
1819
1820 * m32r-stub.c (restore_and_return): Postpone restoring of PSW.
1821 RTE will take care of it.
1822
1823 2002-09-17 Andrew Cagney <ac131313@redhat.com>
1824
1825 * arch-utils.c (legacy_virtual_frame_pointer): If FP_REGNUM is
1826 invalid, return SP_REGNUM.
1827
1828 2002-09-17 Michael Snyder <msnyder@redhat.com>
1829
1830 * mips-tdep.c (mips_pop_frame): Read saved values of floating
1831 point registers without sign extension.
1832
1833 2002-09-17 Andrew Cagney <cagney@redhat.com>
1834
1835 * blockframe.c (deprecated_read_register_dummy): Rename
1836 generic_read_register_dummy.
1837 * frame.c (frame_unwind_signed_register): New function.
1838 (frame_unwind_unsigned_register): New function.
1839 * frame.h (frame_unwind_signed_register): Declare.
1840 (frame_unwind_unsigned_register): Declare.
1841 (deprecated_read_register_dummy): Rename
1842 generic_read_register_dummy.
1843
1844 * h8300-tdep.c (h8300_frame_chain): Update.
1845 (h8300_frame_saved_pc): Update.
1846 * xstormy16-tdep.c (xstormy16_frame_saved_pc): Update.
1847 * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
1848 * s390-tdep.c (s390_frame_saved_pc_nofix): Update.
1849 (s390_frame_chain): Update.
1850 * v850-tdep.c (v850_find_callers_reg): Update.
1851 (v850_frame_saved_pc): Update.
1852 * m32r-tdep.c (m32r_init_extra_frame_info): Update.
1853 (m32r_find_callers_reg): Update.
1854 (m32r_frame_saved_pc): Update.
1855 * sh-tdep.c (sh_find_callers_reg): Update.
1856 (sh64_get_saved_pr): Update.
1857 (sh_init_extra_frame_info): Update.
1858 (sh_init_extra_frame_info): Update.
1859 (sh64_init_extra_frame_info): Update.
1860 (sh64_init_extra_frame_info): Update.
1861 * mcore-tdep.c (mcore_find_callers_reg): Update.
1862 (mcore_frame_saved_pc): Update.
1863 (mcore_init_extra_frame_info): Update.
1864 * i386-tdep.c (i386_frame_saved_pc): Update.
1865 * ia64-tdep.c (ia64_frame_saved_pc): Update.
1866 (ia64_init_extra_frame_info): Update.
1867 (ia64_init_extra_frame_info): Update.
1868 * d10v-tdep.c (d10v_frame_saved_pc): Update.
1869 * cris-tdep.c (cris_init_extra_frame_info): Update.
1870 * avr-tdep.c (avr_frame_chain): Update.
1871 (avr_init_extra_frame_info): Update.
1872 (avr_frame_saved_pc): Update.
1873 * arm-tdep.c (arm_find_callers_reg): Update.
1874 (arm_init_extra_frame_info): Update.
1875 (arm_frame_saved_pc): Update.
1876
1877 2002-09-17 Tom Tromey <tromey@redhat.com>
1878
1879 * c-lang.c (c_emit_char): Don't treat \0 specially unless quoter
1880 is "'".
1881
1882 2002-09-17 Corinna Vinschen <vinschen@redhat.com>
1883
1884 * MAINTAINERS: Remove "non multi-arched" text from h8300.
1885 * h8300-tdep.c (h8300_next_prologue_insn) Renamed from
1886 NEXT_PROLOGUE_INSN.
1887 (h8300_examine_prologue): Call h8300_next_prologue_insn instead of
1888 NEXT_PROLOGUE_INSN.
1889
1890 2002-09-16 Joel Brobecker <brobecker@gnat.com>
1891
1892 * osfsolib.c: Remove file, replaced by solib-osf.c.
1893 * Makefile.in: Remove compilation rules for osfsolib.c.
1894
1895 2002-09-16 David Carlton <carlton@math.stanford.edu>
1896
1897 * cp-valprint.c (cp_print_class_method): Correct args to
1898 check_stub_method_group.
1899
1900 2002-09-16 Corinna Vinschen <vinschen@redhat.com>
1901
1902 * h8300-tdep.c: Multiarch. Drop `set machine' command in favor of
1903 `set architecture'. Unify naming convention of functions.
1904 (h8300_skip_prologue): Improve prologue analysis.
1905 (h8300_push_arguments): Rewritten to more closely match GCC's
1906 bizarre argument-passing behavior, along with the comment describing
1907 said behavior.
1908 * remote-hms.c (hms_regnames): Don't use NUM_REGS in definition.
1909 * config/h8300/tm-h8300.h: Multiarch. Just keep stuff needed by
1910 sim, remote-e7000.c, remote-hms.c and remote.c
1911
1912 2002-09-15 Mark Kettenis <kettenis@gnu.org>
1913
1914 * i386-tdep.c (gdb_print_insn_i386): Removed.
1915 (i386_print_insn): New function.
1916 (i386_gdbarch_init): Set print_insn to i386_print_insns.
1917 (_initialize_i386_tdep): Don't initialize tm_print_insn and
1918 tm_print_insn_info.
1919
1920 2002-09-14 Mark Kettenis <kettenis@gnu.org>
1921
1922 * gdbtypes.c (check_stub_method_group): Initialize found_stub to
1923 zero.
1924
1925 2002-09-14 Corinna Vinschen <vinschen@redhat.com>
1926
1927 * arch-utils.c (legacy_pc_in_sigtramp): Move preprocessor expression
1928 for IN_SIGTRAMP to here. Use IN_SIGTRAMP only if it's defined.
1929 Guard usage of SIGTRAMP_START() by using SIGTRAMP_START_P.
1930
1931 2002-09-13 Christopher Faylor <cgf@redhat.com>
1932
1933 * win32-nat.c (child_create_inferior): Honor 'tty' command.
1934
1935 2002-09-13 Daniel Jacobowitz <drow@mvista.com>
1936
1937 * gdbtypes.c (check_stub_method): Make static.
1938 (check_stub_method_group): New function.
1939 * gdbtypes.h: Update prototypes.
1940 * cp-support.c: New file.
1941 * cp-support.h: New file.
1942
1943 * stabsread.c: Include "cp-abi.h" and "cp-support.h".
1944 (update_method_name_from_physname): New function.
1945 (read_member_functions): Correct method names for operators
1946 and v3 constructors/destructors. Separate v2 constructors and
1947 destructors.
1948 * Makefile.in (stabsread.o): Update dependencies.
1949 (SFILES): Add cp-support.c.
1950 (COMMON_OBS): Add cp-support.o.
1951 (cp_support_h, cp-support.o): Add.
1952
1953 * cp-valprint.c (cp_print_class_method): Call
1954 check_stub_method_group instead of check_stub_method. Remove
1955 extraneous QUITs.
1956 * p-valprint.c (pascal_object_print_class_method): Likewise.
1957 * valops.c (search_struct_method): Likewise.
1958 (find_method_list, value_struct_elt_for_reference): Likewise.
1959
1960 2002-09-13 Andrew Cagney <cagney@redhat.com>
1961
1962 * gdbarch.sh (SIGTRAMP_END): Change to a predicate function.
1963 * gdbarch.h, gdbarch.c: Regenerate.
1964
1965 2002-09-13 Andrew Cagney <ac131313@redhat.com>
1966
1967 * frame.c (find_saved_register): Delete function.
1968 * frame.h (find_saved_register): Delete declaration.
1969 Fix PR gdb/631.
1970
1971 Fri Sep 13 14:59:55 2002 Andrew Cagney <cagney@redhat.com>
1972
1973 * mips-tdep.c (read_next_frame_reg): Re-hack using
1974 frame_register_unwind.
1975
1976 Fri Sep 13 07:42:09 2002 Andrew Cagney <cagney@redhat.com>
1977
1978 * mips-tdep.c (mips_get_saved_register): Re-hack using
1979 frame_register_unwind.
1980
1981 2002-09-12 Joel Brobecker <brobecker@gnat.com>
1982
1983 * gdbarch.sh (NAME_OF_MALLOC): New variable in the architecture
1984 vector. Will be useful for Interix.
1985 * gdbarch.h, gdbarch.c: Regenerate.
1986
1987 * valops.c (value_allocate_space_in_inferior): Replace hard-coded
1988 name of the malloc function by NAME_OF_MALLOC.
1989
1990 2002-09-12 Joel Brobecker <brobecker@gnat.com>
1991
1992 * value.h (find_function_in_inferior): Add const keyword to
1993 one of the parameters. Allows us to invoke this function with
1994 a const char *.
1995 * valops.c (find_function_in_inferior): Likewise.
1996
1997 2002-09-12 Joel Brobecker <brobecker@gnat.com>
1998
1999 * exec.c (xfer_memory): Fix compilation warning with old versions
2000 of GCC.
2001 * tracepoint.c (trace_find_tracepoint_command): Likewise.
2002
2003 2002-09-12 David Carlton <carlton@math.stanford.edu>
2004
2005 * symtab.h: Run through gdb_indent.h.
2006 Add 2002 to Copyright year list.
2007
2008 2002-09-12 Alan Modra <amodra@bigpond.net.au>
2009
2010 * x86-64-tdep.c (_initialize_x86_64_tdep): Don't use hard-coded
2011 mach constants.
2012 * MAINTAINERS: Add myself to write after approval list.
2013
2014 2002-09-11 J. Brobecker <brobecker@gnat.com>
2015
2016 * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX.
2017
2018 2002-09-11 J. Brobecker <brobecker@gnat.com>
2019
2020 * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for
2021 Interix.
2022
2023 2002-06-05 Paul N. Hilfinger <hilfingr@otisco.mckusick.com>
2024
2025 * procfs.c (do_detach): Clear current signal, not just fault.
2026 Corrects problem with breakpoint trap signal leaking to detached
2027 process on Tru64.
2028
2029 2002-09-10 Michael Snyder <msnyder@redhat.com>
2030
2031 * buildsym.c (finish_block): Protect against null pointer.
2032
2033 2002-09-10 Andrew Cagney <cagney@redhat.com>
2034
2035 * infcmd.c (default_print_registers_info): Send all output to
2036 ``file'' instead of ``gdb_stdout''.
2037
2038 2002-09-10 Michael Snyder <msnyder@redhat.com>
2039
2040 * mips-tdep.c (mips_extract_struct_value_address): Make val a
2041 LONGEST, and use signed register read (addresses are sign-
2042 extended for mips).
2043
2044 2002-09-10 Stephane Carrez <stcarrez@nerim.fr>
2045
2046 * event-loop.c (gdb_do_one_event): Make public.
2047 * event-loop.h (gdb_do_one_event): Declare.
2048
2049 2002-09-10 Jeff Law <law@redhat.com>
2050
2051 * infttrace.c (child_resume): Simplify and rework to avoid
2052 TT_PROC_CONTINUE.
2053
2054 2002-09-09 Fred Fish <fnf@intrinsity.com>
2055
2056 * printcmd.c (print_scalar_formatted): "len" is the number of
2057 target bytes, NOT the number of target bits.
2058
2059 2002-09-09 Elena Zannoni <ezannoni@redhat.com>
2060
2061 From: Emmanuel Thome' <thome@lix.polytechnique.fr>
2062 * top.c (init_main): Set rl_terminal_name.
2063
2064 2002-09-08 Aidan Skinner <aidan@velvet.net>
2065
2066 * ada-lang.c (ada_array_bound, ada_type_match,
2067 _initialize_ada_language): Fix K&R definitions.
2068 * ada-tasks.c (get_current_task): Fix K&R definitions.
2069 * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
2070
2071 2002-09-07 Christopher Faylor <cgf@redhat.com>
2072
2073 * MAINTAINERS: Remove CE from list of maintainership responsibilities.
2074 Add XP.
2075
2076 2002-09-06 Mark Kettenis <kettenis@gnu.org>
2077
2078 * i386-tdep.c (i386_register_virtual_type,
2079 i386_register_convertible, i386_register_convert_to_virtual,
2080 i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P
2081 instead of IS_FP_REGNUM and IS_SSE_REGNUM.
2082 (i386_gdbarch_init): Fix comment. Add comments on calls that set
2083 sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum.
2084 Don't set push_arguments twice.
2085
2086 * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and
2087 sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end.
2088 * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and
2089 sigtramp_end to NULL.
2090 * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove
2091 defines.
2092 (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
2093
2094 * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spurious
2095 whitespace.
2096
2097 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.
2098 * gdbarch.h, gdbarch.c: Re-generate.
2099 * blockframe.c (find_pc_sect_partial_function): Convert to use
2100 SIGTRAMP_START_P predicate.
2101
2102 2002-09-05 Michael Snyder <msnyder@redhat.com>
2103
2104 * arm-tdep.c (arm_init_extra_frame_info): Distinguish between
2105 generic_dummy_frame method and old method. Also distinguish
2106 between ARM_FP_REGNUM and THUMB_FP_REGNUM.
2107 (arm_extract_return_value): Use new regcache method.
2108
2109 * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment
2110 adjustment that doesn't conform to the ABI.
2111 (mips_extract_struct_value_address): Retrieve V0_REGNUM from
2112 saved regcache, not from current regcache.
2113
2114 2002-09-05 Andrew Cagney <ac131313@redhat.com>
2115
2116 * NEWS: Update for 5.3. Add new section ``Changes since 5.3''.
2117 * README: Update.
2118
2119 2002-09-04 Jason Thorpe <thorpej@wasabisystems.com>
2120
2121 * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode
2122 if arm_apcs_32 is false.
2123
2124 2002-09-04 Andrew Cagney <ac131313@redhat.com>
2125
2126 GDB 5.3 branch created.
2127
2128 2002-09-03 Theodore A. Roth <troth@verinet.com>
2129
2130 * gdb/avr-tdep.c (avr_gdbarch_init): Use
2131 generic_unwind_get_saved_register.
2132
2133 2002-09-03 David Carlton <carlton@math.stanford.edu>
2134
2135 * dwarf2read.c (dwarf2_add_member_fn): Add the 'type'
2136 argument (PR gdb/653). Update call to smash_to_method_type.
2137 (read_structure_scope): Update call to dwarf2_add_member_fn.
2138
2139 2002-09-03 Michal Ludvig <mludvig@suse.cz>
2140
2141 * x86-64-linux-tdep.c: Include gdb_string.h
2142 * x86-64-linux-nat.c: Ditto.
2143
2144 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2145
2146 * ada-exp.y (yyname, yyrule): Remap global variables that appear
2147 when YYDEBUG is set to 1.
2148 * c-exp.y: Likewise.
2149 * f-exp.y: Likewise.
2150 * jv-exp.y: Likewise.
2151 * m2-exp.y: Likewise.
2152 * p-exp.y: Likewise.
2153
2154 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2155
2156 * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to
2157 dependency list.
2158 * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set
2159 solib_svr4_fetch_link_map_offsets to
2160 nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
2161 * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
2162 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
2163 * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o,
2164 solib-svr4.o, and solib-legacy.o.
2165 * config/i386/tm-nbsd.h: Include solib.h.
2166
2167 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2168
2169 * configure.tgt (i[3456]86-*-netbsdelf*): Merge with...
2170 (i[3456]86-*-netbsd*): ...this. Set gdb_target to nbsd.
2171 (i[3456]86-*-openbsd*): Make this a separate entry. Add a
2172 comment noting that this needs its own target configuration.
2173 * config/i386/nbsd.mt: New file.
2174 * config/i386/nbsdaout.mt: Remove.
2175 * config/i386/nbsdelf.mt: Ditto.
2176 * config/i386/tm-nbsdaout.h: Ditto.
2177
2178 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2179
2180 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function.
2181 (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset.
2182 (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or
2183 tdep->sigtramp_end.
2184 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove.
2185 * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END)
2186 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
2187
2188 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2189
2190 * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),
2191 $(i386_tdep_h), and $(nbsd_tdep_h) to dependency list.
2192 * i386-tdep.h (i386bsd_init_abi): New prototype.
2193 * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from
2194 function declaration.
2195 (_initialize_i386bsd_tdep): Don't register OS ABI handlers
2196 for NetBSD-a.out or NetBSD-ELF.
2197 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end)
2198 (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset)
2199 (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to...
2200 * i386nbsd-tdep.c: ...here. Include arch-utils.h, i386-tdep.h,
2201 and nbsd-tdep.h.
2202 (i386nbsd_pc_in_sigtramp): New function.
2203 (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2204 i386nbsd_pc_in_sigtramp.
2205 (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi
2206 and i386nbsdelf_init_abi OS ABI handlers.
2207 * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o.
2208 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
2209
2210 2002-09-02 Mark Kettenis <kettenis@gnu.org>
2211
2212 * i386-linux-nat.c (dummy_sse_values): Only try to fill in the SSE
2213 registers if the target really has them.
2214
2215 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2216
2217 * Makefile.in (mipsnbsd-tdep.o): Use $(nbsd_tdep_h) rather
2218 than nbsd-tdep.h.
2219
2220 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2221
2222 * Makefile.in (alphanbsd-tdep.o): Add $(frame_h) to dependency
2223 list.
2224 * alphanbsd-tdep.c (alphanbsd_sigcontext_addr)
2225 (alphanbsd_skip_sigtramp_frame): New functions.
2226 (alphanbsd_init_abi): Set tdep->skip_sigtramp_frame to
2227 alphanbsd_skip_sigtramp_frame. Set tdep->sigcontext_addr
2228 to alphanbsd_sigcontext_addr.
2229
2230 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2231
2232 * Makefile.in (mipsnbsd-tdep.o): Add nbsd-tdep.h to dependency
2233 list.
2234 (nbsd-tdep.o): Add $(gdb_string_h) to dependency list.
2235 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): Use
2236 nbsd_pc_in_sigtramp.
2237 * mipsnbsd-tdep.c: Include nbsd-tdep.h.
2238 (mipsnbsd_pc_in_sigtramp): Use nbsd_pc_in_sigtramp.
2239 * nbsd-tdep.c: Include gdb_string.h.
2240 (nbsd_pc_in_sigtramp): New function.
2241 * nbsd-tdep.h (nbsd_pc_in_sigtramp): New prototype.
2242 * ppcnbsd-tdep.c (ppcnbsd_pc_in_sigtramp): New function.
2243 (ppcnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2244 ppcnbsd_pc_in_sigtramp.
2245 * shnbsd-tdep.c (shnbsd_pc_in_sigtramp): New function.
2246 (shnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2247 shnbsd_pc_in_sigtramp.
2248 * sparcnbsd-tdep.c (sparcnbsd_init_abi_elf): Set
2249 gdbarch_pc_in_sigtramp to nbsd_pc_in_sigtramp.
2250 * config/mips/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
2251
2252 2002-08-30 Pierre Muller <muller@ics.u-strasbg.fr>
2253
2254 * breakpoint.c (breakpoint_init_inferior): Reset the val field of
2255 watchpoints to NULL.
2256 (insert_breakpoints): set val field of watchpoints if NULL.
2257
2258
2259 2002-08-29 Jim Blandy <jimb@redhat.com>
2260
2261 * symtab.c (lookup_symbol_aux): In the cases where we find a
2262 minimal symbol of an appropriate name and use its address to
2263 select a symtab to read and search, use `name' (as passed to us)
2264 as the demangled name when searching the symtab's global and
2265 static blocks, not the minsym's name.
2266
2267 2002-08-29 Keith Seitz <keiths@redhat.com>
2268
2269 * stack.c (print_frame_info_base): Always set current_source_symtab
2270 and current_source_line.
2271
2272 2002-08-29 Donn Terry <donnte@microsoft.com>
2273
2274 * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S).
2275
2276 2002-08-28 Keith Seitz <keiths@redhat.com>
2277
2278 * stack.c (select_frame): Add FIXME concerning selected-frame
2279 events.
2280 (select_frame_command): Send selected-frame-level-changed
2281 event notification, but only if the level actually changed.
2282 (up_silently_base): Add selected-frame-level-changed event
2283 notification.
2284 (down_silently_base): Likewise.
2285
2286 2002-08-28 Andrew Cagney <ac131313@redhat.com>
2287
2288 * Makefile.in: Update dependencies for all gdb/*.c files.
2289
2290 2002-08-27 Tom Tromey <tromey@redhat.com>
2291
2292 * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
2293 ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
2294 Update dependencies.
2295 * i387-tdep.c: Include gdb_string.h.
2296 * osabi.c: Likewise.
2297 * i386-linux-nat.c: Likewise.
2298 * lin-lwp.c: Likewise.
2299 * ax-gdb.c: Likewise.
2300 * signals/signals.c: Likewise.
2301 * jv-valprint.c: Likewise.
2302 * p-lang.c: Likewise.
2303 * c-valprint.c: Likewise.
2304 * cp-abi.c: Likewise.
2305
2306 2002-08-27 Elena Zannoni <ezannoni@redhat.com>
2307
2308 * cli/cli-script.h (copy_command_lines): Export.
2309 * breakpoint.c: Include cli/cli-script.h.
2310 * Makefile.in (breakpoint.o): Update dependencies.
2311
2312 2002-08-26 Michael Snyder <msnyder@redhat.com>
2313
2314 * breakpoint.c (insert_breakpoints): Protect all references
2315 to 'process_warning'. Shorten long lines.
2316
2317 2002-08-26 Joel Brobecker <brobecker@gnat.com>
2318
2319 * cli/cli-script.c (copy_command_lines): New function.
2320 * defs.h (copy_command_lines): Export.
2321 * testsuite/gdb.base/commands.exp: New tests for commands
2322 attached to a temporary breakpoint, and for commands that
2323 delete the breakpoint they are attached to.
2324
2325 2002-08-26 Michael Snyder <msnyder@redhat.com>
2326
2327 * breakpoint.c (bpstat_stop_status): Instead of copying the
2328 pointer to the breakpoint commands struct, make a new copy
2329 of the struct and point to that.
2330 (bpstat_clear): Free the commands struct.
2331 (bpstat_clear_actions): Free the commands struct.
2332 (bpstat_do_actions): Free the command actions. Also execute
2333 the local cleanups, instead of deleting them.
2334 (delete_breakpoint): Leave the commands field of the bpstat
2335 chain alone -- it will be freed later.
2336
2337 2002-08-26 Kevin Buettner <kevinb@redhat.com>
2338
2339 * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
2340 deleted in 2002-08-20 commit. This function is still used by
2341 ppc-linux-nat.c.
2342
2343 2002-08-26 Keith Seitz <keiths@redhat.com>
2344
2345 * gdb-events.sh: Add selected-frame-level-changed event.
2346 * gdb-events.c: Regenerated.
2347 * gdb-events.h: Regenerated.
2348
2349 2002-08-26 Stephane Carrez <stcarrez@nerim.fr>
2350
2351 Fix PR gdb/393:
2352 * inflow.c (terminal_save_ours): New function to save terminal
2353 settings.
2354 * inferior.h (terminal_save_ours): Declare.
2355 * target.c (debug_to_terminal_save_ours): New function.
2356 (cleanup_target): Defaults to_terminal_save_ours.
2357 (update_current_target): Inherit to_terminal_save_ours.
2358 (setup_target_debug): Set to_terminal_save_ours.
2359 * target.h (target_terminal_save_ours): New to save terminal settings.
2360 (target_ops): New member to_terminal_save_ours.
2361 * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
2362 * hpux-thread.c (init_hpux_thread_ops): Likewise.
2363 * inftarg.c (init_child_ops): Likewise.
2364 * m3-nat.c (init_m3_ops): Likewise.
2365 * procfs.c (init_procfs_ops): Likewise.
2366 * wince.c (init_child_ops): Likewise.
2367 * win32-nat.c (init_child_ops): Likewise.
2368 * sol-thread.c (init_sol_thread_ops): Likewise.
2369
2370 2002-08-26 Mark Kettenis <kettenis@gnu.org>
2371
2372 * i386-tdep.c (i386_store_return_value): Undeprecate. Convert to
2373 use regcache_* functions.
2374 (i386_gdbarch_init): Set store_return_value instead of
2375 deprecated_store_return_value.
2376
2377 * regcache.c (regcache_raw_write_signed,
2378 regcache_raw_write_unsigned): New functions.
2379 * regcache.h (regcache_raw_write_signed,
2380 regcache_raw_write_unsigned): New prototypes.
2381
2382 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2383
2384 * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
2385 (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
2386 source file dependencies. Cleanup corresponding generator rules.
2387
2388 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2389
2390 * regcache.h (register_offset_hack): Declare.
2391 (regcache_cooked_read_using_offset_hack): Declare.
2392 (regcache_cooked_write_using_offset_hack): Declare.
2393
2394 * regcache.c (register_offset_hack): New function.
2395 (regcache_cooked_read_using_offset_hack): New function.
2396 (regcache_cooked_write_using_offset_hack): New function.
2397 (regcache_dump): Check that the registers, according to their
2398 offset, are packed hard against each other.
2399 (cooked_xfer_using_offset_hack): New function.
2400
2401 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2402
2403 * regcache.c (struct regcache_descr): Add field register_type.
2404 (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
2405 in as a parameter
2406 (init_regcache_descr): Initialize register_type. Pass the descr
2407 to init_legacy_regcache_descr. Use register_type instead of
2408 REGISTER_VIRTUAL_TYPE.
2409 (register_type): New function.
2410 (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
2411 * regcache.h (register_type): Declare.
2412
2413 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2414
2415 * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
2416 instead of deprecated_store_return_value. Fix fallout from
2417 2002-08-23 Andrew Cagney <cagney@redhat.com>.
2418
2419 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2420
2421 * regcache.c (max_register_size): New function.
2422 (init_legacy_regcache_descr): Ensure that max_register_size is
2423 large enough for REGISTER_VIRTUAL_SIZE.
2424 * regcache.h (max_register_size): Declare.
2425
2426 2002-08-24 Andrew Cagney <ac131313@redhat.com>
2427
2428 * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
2429 store_return_value.
2430 (e500_extract_return_value): Change type of valbuf pointer to
2431 void.
2432
2433 2002-08-24 Mark Kettenis <kettenis@gnu.org>
2434
2435 * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
2436 workaround.
2437
2438 * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
2439 PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
2440 long long) to prevent compiler warning on 64-bit systems.
2441
2442 2002-08-23 Andrew Cagney <cagney@redhat.com>
2443
2444 * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
2445 (DEPRECATED_STORE_RETURN_VALUE): New method.
2446 (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
2447 * gdbarch.h, gdbarch.c: Re-generate.
2448
2449 * values.c (set_return_value): Pass current_regcache to
2450 STORE_RETURN_VALUE.
2451 * arch-utils.h (legacy_store_return_value): Declare.
2452 * arch-utils.c (legacy_store_return_value): New function.
2453 (legacy_extract_return_value): Update parameters.
2454
2455 * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
2456 STORE_RETURN_VALUE.
2457 * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2458 * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2459 * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2460 * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2461 * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2462 * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2463 * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2464 * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2465 * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2466 * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2467
2468 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2469 * i386-tdep.c (i386_extract_return_value): Update.
2470 * arch-utils.c (legacy_extract_return_value): Update.
2471 * frv-tdep.c (frv_gdbarch_init): Update.
2472 * cris-tdep.c (cris_gdbarch_init): Update.
2473 * d10v-tdep.c (d10v_gdbarch_init): Update.
2474 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2475 * m68k-tdep.c (m68k_gdbarch_init): Update.
2476 * mcore-tdep.c (mcore_gdbarch_init): Update.
2477 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2478 * s390-tdep.c (s390_gdbarch_init): Update.
2479 * sparc-tdep.c (sparc_gdbarch_init): Update.
2480 * sh-tdep.c (sh_gdbarch_init): Update.
2481 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
2482 * v850-tdep.c (v850_gdbarch_init): Update.
2483 * avr-tdep.c (avr_gdbarch_init): Update.
2484 * ia64-tdep.c (ia64_gdbarch_init): Update.
2485 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
2486 * vax-tdep.c (vax_gdbarch_init): Update.
2487 * alpha-tdep.c (alpha_gdbarch_init): Update.
2488 * arm-tdep.c (arm_gdbarch_init): Update.
2489 * mips-tdep.c (mips_gdbarch_init): Update.
2490 * i386-tdep.c (i386_gdbarch_init): Update.
2491
2492 2002-08-23 Andrew Cagney <ac131313@redhat.com>
2493
2494 * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
2495 bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
2496
2497 2002-08-24 Mark Kettenis <kettenis@gnu.org>
2498
2499 * PROBLEMS: Refer to GDB 5.3 instead of 5.2. Mention FreeBSD
2500 problems.
2501
2502 2002-08-23 Joel Brobecker <brobecker@gnat.com>
2503
2504 * infrun.c (handle_inferior_event): Move a comment outside of a
2505 function call, in order to avoid indent reformatting this part
2506 of the code in an unreadable way.
2507
2508 2002-08-23 Grace Sainsbury <graces@redhat.com>
2509
2510 * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
2511 when breakpoints fail. Move general breakpoint error messages to
2512 insert_breakpoints.
2513 * breakpoint.c (insert_breakpoints): Change warnings when
2514 breakpoints are nto inserted to specify the type. Remove call to
2515 memory_error when hardware breakpoints can't be inserted. Remove
2516 multiple calls to warning so all messages are sent to the user at
2517 once.
2518 (delete_breakpoints): Make insert error messsages more explicit.
2519
2520 2002-08-23 Daniel Jacobowitz <drow@mvista.com>
2521
2522 * ChangeLog: Move gdbserver entries after GDB 5.2 to
2523 gdbserver/ChangeLog.
2524
2525 2002-08-23 Mark Kettenis <kettenis@gnu.org>
2526
2527 * i386-tdep.c: Include "objfiles.h".
2528 (i386_svr4_init_abi): Set in_solib_call_trampoline and
2529 skip_trampoline_code.
2530 * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
2531 (CPLUS_MARKER): Define to '.'.
2532
2533 * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
2534 member.
2535 (linux_corefile_thread_callback): Increase args->num_notes.
2536 (linux_make_note_section): Initialize thread_args.num_notes, and
2537 use it to determine whether notes for any threads were created.
2538
2539 2002-08-23 Donn Terry <donnte@microsoft.com>
2540
2541 * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
2542 corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
2543 and PCUNKILL.
2544 (write_with_trace): Conditionalize out the switch branch handling
2545 PCSHOLD if the corresponding macro is not defined. Likewise for
2546 PRSABORT and PRSTOP.
2547 This change will be needed by the Interix port.
2548
2549 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
2550
2551 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
2552 write_register wherever possible instead of manipulating the
2553 register bytes directly.
2554 Assign VALUE_CONTENTS to a variable and use that.
2555 The GPR numbers are now dependent on the architecture.
2556
2557 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
2558
2559 * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
2560 ev_offset fields.
2561 (skip_prologue): Add support for BookE/e500 instructions.
2562 (e500_extract_return_value): New function.
2563 (frame_get_saved_regs): Add support for saving ev registers and
2564 pseudo gpr's.
2565 (e500_store_return_value): New function.
2566 (rs6000_gdbarch_init): Move up default intializations of
2567 deprecated_extract_return_value and store_return_value. Overwrite
2568 init of store_return_value with e500 specific version.
2569 Set extract_return_value for e500.
2570
2571 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
2572
2573 * blockframe.c (generic_call_dummy_register_unwind): Use
2574 regcache_cooked_read to catch cases in which the variable is
2575 stored in a pseudo register.
2576
2577 2002-08-22 Andrew Cagney <cagney@redhat.com>
2578
2579 * NEWS: Mention that the i960 has been made obsolete.
2580 * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
2581 i960-tdep.c
2582 (remote-nrom.o): Obsolete target.
2583 (remote-nindy.o, i960-tdep.o): Ditto.
2584 * remote-nrom.c: Make file obsolete.
2585 * remote-nindy.c, remote-vx960.c: Ditto.
2586 * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
2587 * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
2588 * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
2589 * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
2590 * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
2591 i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
2592 i960-*-vxworks* obsolete.
2593 * MAINTAINERS: Note that the i960 is obsolete.
2594
2595 2002-08-21 Corinna Vinschen <vinschen@redhat.com
2596
2597 * aix-thread.c (aix_thread_detach): Disable thread debugging on
2598 detach to allow reinitialization.
2599
2600 2002-08-22 Andrew Cagney <ac131313@redhat.com>
2601
2602 * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
2603 attempt).
2604
2605 2002-08-22 Jim Blandy <jimb@redhat.com>
2606
2607 * coffread.c (coff_symfile_read): Don't try to read the line
2608 number table from disk if the image file doesn't have a symbol
2609 table; we'll never actually look at the info anyway, and Windows
2610 ships DLL's with bogus file offsets for the line number data.
2611
2612 2002-08-21 Elena Zannoni <ezannoni@redhat.com>
2613
2614 * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
2615 an e500 executable.
2616
2617 2002-08-21 Michael Snyder <msnyder@redhat.com>
2618
2619 * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
2620 (MSYMBOL_SIZE): Replace macro with function.
2621 (DEFAULT_MIPS_TYPE): Delete unused macro.
2622 * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
2623 * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
2624
2625 2002-08-21 Jim Blandy <jimb@redhat.com>
2626
2627 * valops.c (value_cast): Simplify and correct logic for doing a
2628 static cast from a pointer to a base class to a pointer to a
2629 derived class.
2630
2631 2002-08-21 Andrew Cagney <ac131313@redhat.com>
2632
2633 * infcmd.c (default_print_registers_info): Replace
2634 do_registers_info.
2635 (registers_info): Use gdbarch_print_registers_info instead of
2636 DO_REGISTERS_INFO.
2637 * inferior.h (default_print_registers_info): Replace
2638 do_registers_info.
2639 * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
2640 (DO_REGISTERS_INFO): Change to a predicate function.
2641 * gdbarch.h, gdbarch.c: Regenerate.
2642
2643 2002-08-21 Keith Seitz <keiths@redhat.com>
2644
2645 * gdb-events.sh: Add target-changed event.
2646 * gdb-events.c: Regenerated.
2647 * gdb-events.c: Regenerated.
2648 * valops.c (value_assign): Add target-changed event notification
2649 to inlval_register, lval_memory, and lval_reg_frame_relative.
2650
2651 2002-08-21 Joel Brobecker <brobecker@gnat.com>
2652
2653 * NEWS: Add an entry regarding the improvement of the next/step
2654 operation on Alpha Tru64 multi-processor machines.
2655
2656 2002-08-21 Andrew Cagney <ac131313@redhat.com>
2657
2658 * Makefile.in: Update dependencies for mi/ cli/ and tui/
2659 directores.
2660 * Makefile.in: Update all _h macro definitions.
2661 * Makefile.in (install-gdbtk): Move to install section.
2662 (rdi-share/libangsd.a): Move to end of file.
2663
2664 2002-08-19 Andrew Cagney <ac131313@redhat.com>
2665
2666 * frame.c (frame_register_unwind): When a register, set addrp to
2667 the register's byte.
2668
2669 2002-08-20 Michael Snyder <msnyder@redhat.com>
2670
2671 * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
2672 used locally, so move them from the target machine header to here.
2673 (mips_set_processor_type, mips_register_name, mips32_next_pc,
2674 mips16_next_pc, cached_proc_desc, mips_set_processor_type):
2675 Make static.
2676 * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
2677
2678 2002-08-20 Andrew Cagney <cagney@redhat.com>
2679
2680 * NEWS: Mention that the Apollo line was made obsolete.
2681 * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
2682 m68*-hp-hpux* obsolete.
2683 * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
2684 m68*-hp-bsd* and m68*-hp-hpux* obsolete.
2685 * buildsym.c (make_blockvector): Make static.
2686 * buildsym.h (make_blockvector): Make extern declaration obsolete.
2687 * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
2688 (ALLDEPFILES): Remove dstread.c.
2689 (dstread.o): Obsolete make rule.
2690 * dstread.c: Makefile obsolete.
2691 * dst.h: Ditto.
2692 * config/m68k/hp300hpux.mt: Ditto.
2693 * config/m68k/hp300hpux.mh: Ditto.
2694 * config/m68k/hp300bsd.mt: Ditto.
2695 * config/m68k/hp300bsd.mh: Ditto.
2696 * config/m68k/apollo68b.mt: Ditto.
2697 * config/m68k/apollo68v.mh: Ditto.
2698 * config/m68k/apollo68b.mh: Ditto.
2699
2700 2002-08-20 Michael Snyder <msnyder@redhat.com>
2701
2702 * mips-tdep.c (mips_in_return_stub): Make static.
2703 (mips_gdbarch_init): Set in_solib_return_trampoline.
2704 * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
2705
2706 2002-08-20 Michael Snyder <msnyder@redhat.com>
2707
2708 * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
2709 * gdbarch.c, gdbarch.h: Regenerate.
2710 * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
2711 Add.
2712 * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
2713
2714 2002-08-20 Michael Snyder <msnyder@redhat.com>
2715
2716 * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
2717 (mips_gdbarch_init): Set skip_trampoline_code,
2718 in_solib_call_trampoline.
2719 * config/mips/tm-mips.h (REGISTER_NAME): Delete.
2720 (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
2721
2722 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
2723
2724 * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
2725
2726 * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
2727 vector type for ev registers.
2728 (e500_pseudo_register_read): New function.
2729 (e500_pseudo_register_write): New function.
2730 (e500_dwarf2_reg_to_regnum): New function.
2731 (PPC_UISA_NOFP_SPRS): New macro.
2732 (PPC_EV_REGS): New macro.
2733 (PPC_GPRS_PSEUDO_REGS): New macro.
2734 (registers_e500): New register set for e500.
2735 (variants): Add e500 variant.
2736 (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
2737 before setting architectural dependent variations. Initialize ev
2738 registers numbers. Add case for e500 architecture. Set the
2739 number of pseudo registers.
2740
2741 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
2742
2743 * rs6000-tdep.c: Clean up comments.
2744
2745 2002-08-20 Andrew Cagney <cagney@redhat.com>
2746
2747 * h8300-tdep.c: Re-indent file.
2748
2749 2002-08-20 Jim Blandy <jimb@redhat.com>
2750
2751 * Makefile.in (LDFLAGS): Allow the configure script to establish a
2752 default for this.
2753
2754 2002-08-20 Keith Seitz <keiths@redhat.com>
2755
2756 * breakpoints.c (watch_command_1): Use internal breakpoint
2757 when setting a watchpoint_scope breakpoint.
2758
2759 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
2760
2761 * gdbtypes.c (build_builtin_type_vec64): Add name to type.
2762 (build_builtin_type_vec64i): Ditto.
2763 (build_builtin_type_vec128): Ditto.
2764 (build_builtin_type_vec128i): Ditto.
2765
2766 2002-08-19 Michael Snyder <msnyder@redhat.com>
2767
2768 * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
2769 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
2770 (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
2771 POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
2772 (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
2773 CALL_DUMMY_ADDRESS): Delete.
2774 * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
2775 mips_msymbol_is_special, mips_fix_call_dummy): New functions.
2776 (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame,
2777 push_dummy_frame, fix_call_dummy, init_extra_frame_info,
2778 push_return_address.
2779 (mips_register_raw_size, mips_eabi_use_struct_convention,
2780 mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
2781 mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
2782 mips_init_extra_frame_info, mips_eabi_push_arguments,
2783 mips_n32n64_push_arguments, mips_push_return_address,
2784 mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
2785 mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
2786
2787 2002-08-19 Michael Snyder <msnyder@redhat.com>
2788
2789 * mips-tdep.c (mips_frame_num_args): New function.
2790 (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
2791 frame_saved_pc, frame_args_address, frame_locals_address,
2792 frame_num_args, and frame_args_skip.
2793 * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
2794 FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS,
2795 FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
2796 * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
2797
2798 2002-08-20 Michael Snyder <msnyder@redhat.com>
2799
2800 * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
2801 (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
2802 * mips-tdep.c (mips_store_struct_return): New function.
2803 (mips_extract_struct_value_address): New function.
2804 (mips_gdbarch_init): Set store_struct_return and
2805 extract_struct_value_address.
2806
2807 2002-08-20 David Carlton <carlton@math.stanford.edu>
2808
2809 * dwarf2read.c (dwarf2_build_psymtabs): Check that
2810 dwarf_line_offset is nonzero before creating dwarf_line_buffer.
2811 (read_file_scope): Check that line_header is nonzero before
2812 decoding macro information.
2813
2814 2002-08-20 Mark Kettenis <kettenis@gnu.org>
2815
2816 * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
2817 flag the general-purpose registers as floating-point on targets
2818 that don't support the floating-point registers.
2819
2820 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
2821
2822 * rs6000-tdep.c (altivec_register_p): Delete.
2823 (rs6000_do_altivec_registers): Delete.
2824 (rs6000_altivec_registers_info): Delete.
2825 (rs6000_do_registers_info): Delete.
2826 (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
2827 (rs6000_gdbarch_init): Remove setting of do_registers_info.
2828
2829 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
2830
2831 * infcmd.c (do_registers_info): Print vector registers in hex
2832 format only.
2833 (print_vector_info): Check that printing registers
2834 makes sense.
2835 (print_float_info): Ditto.
2836
2837 2002-08-20 Andrew Cagney <ac131313@redhat.com>
2838
2839 * mips-tdep.c (mips_gdbarch_init): Update.
2840 (mips_o32_extract_return_value): Rewrite.
2841 (mips_o32_store_return_value): Rewrite.
2842 (mips_o32_xfer_return_value): New function.
2843 (mips_xfer_register): Tweak debug print message. Allow for
2844 buf_offset when dumping the value transfered.
2845
2846 2002-08-20 Andrew Cagney <ac131313@redhat.com>
2847
2848 * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
2849 * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
2850 * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
2851 * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
2852 * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
2853
2854 2002-08-14 Michael Snyder <msnyder@redhat.com>
2855
2856 * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
2857
2858 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
2859
2860 * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
2861 register.
2862 (P): New macro to define a register as a pseudo register.
2863 (R, R4, R8, R16, FR32, R64, R0): Updated.
2864 (struct variant): Add new fields for number of pseudo registers
2865 and number of total registers.
2866 (tot_num_registers): New macro replacing....
2867 (num_registers): ...deleted macro.
2868 (num_registers): New function.
2869 (num_pseudo_registers): New function.
2870 (variants): Update all variants to intialize new fields correctly.
2871 Postpone initialization of number of pseudo regs and real regs.
2872 (init_variants): New function.
2873 (rs6000_gdbarch_init): Initialize variants. Update calculation of
2874 registers offsets.
2875
2876 2002-08-19 David Carlton <carlton@math.stanford.edu>
2877
2878 * valops.c (search_struct_field): Change error message to treat
2879 return value of 0 from value_static_field as meaning that field is
2880 optimized out.
2881 (value_struct_elt_for_reference): Ditto.
2882 * values.c (value_static_field): Treat an unresolved location the
2883 same as a nonexistent symbol. Fix PR gdb/635.
2884 * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
2885 enclosed. Fix PR gdb/574.
2886 * MAINTAINERS: Add self to Write After Approval list.
2887
2888 2002-08-19 Andrew Cagney <ac131313@redhat.com>
2889
2890 * mips-tdep.c (mips_xfer_register): New function.
2891 (mips_n32n64_extract_return_value): Rewrite.
2892 (mips_gdbarch_init): For N32 and N64, set extract_return_value
2893 instead of deprecated_extract_return_value.
2894
2895 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
2896
2897 * rs6000-tdep.c (TDEP): Delete macro.
2898 (branch_dest): Replace use of TDEP macro with its body.
2899 (rs6000_pop_frame): Ditto.
2900 (rs6000_push_arguments): Ditto.
2901 (rs6000_skip_trampoline_code): Ditto.
2902 (rs6000_frame_saved_pc): Ditto.
2903 (rs6000_frame_chain): Ditto.
2904 (rs6000_register_name): Ditto.
2905 (rs6000_register_byte): Ditto.
2906 (rs6000_register_raw_size): Ditto.
2907 (rs6000_register_virtual_type): Ditto.
2908 (rs6000_register_convertible): Ditto.
2909 (rs6000_convert_from_func_ptr_addr): Ditto.
2910
2911 2002-08-19 Daniel Jacobowitz <drow@mvista.com>
2912
2913 * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
2914 conditionally.
2915 (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
2916 MIPS_LINUX_JB_ELEMENT_SIZE.
2917 * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
2918 for MAX_REGISTER_RAW_SIZE arrays.
2919 (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
2920 MIPS_LINUX_JB_ELEMENT_SIZE.
2921
2922 2002-08-19 Pierre Muller <muller@ics.u-strasbg.fr>
2923
2924 * i387-tdep.c (i387_print_float_info): Fix typo in comment.
2925
2926 2002-08-19 Aidan Skinner <aidan@velvet.net>
2927
2928 * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
2929 ada-valprint.c ada-tasks.c.
2930 (YYFILES): Add ada-exp.y.
2931 (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
2932 (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
2933 (ada-exp.tab.o): New target.
2934
2935 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2936
2937 * regcache.c (regcache_xfer_part): New function.
2938 (regcache_raw_read_part): New function.
2939 (regcache_raw_write_part): New function.
2940 (regcache_cooked_read_part): New function.
2941 (regcache_cooked_write_part): New function.
2942 * regcache.h (regcache_raw_read_part): Declare.
2943 (regcache_raw_write_part): Declare.
2944 (regcache_cooked_read_part): Declare.
2945 (regcache_cooked_write_part): Declare.
2946
2947 2002-08-18 Daniel Jacobowitz <drow@mvista.com>
2948
2949 * remote.c (remote_open_1): Add async_p.
2950 (remote_async_open_1): Delete.
2951 (open_remote_target): Delete.
2952 (remote_open, extended_remote_open): Update calls to remote_open_1.
2953 (remote_async_open, extended_remote_async_open): Call
2954 remote_open_1 instead of remote_async_open_1.
2955
2956 2002-08-19 Mark Kettenis <kettenis@gnu.org>
2957
2958 * blockframe.c: Fix a few coding standard violations.
2959
2960 2002-08-19 Mark Kettenis <kettenis@gnu.org>
2961
2962 * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
2963 here from ...
2964 * config/i386/tm-i386sco5.h: ... here. File removed.
2965 * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
2966
2967 * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
2968 * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
2969 (TM_FILE): Set to tm-i386.h.
2970 * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
2971 * config/i386/tm-i386v.h: Remove file.
2972 * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
2973 instead of "i386/tm-i386v.h".
2974 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
2975 * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
2976 "i386/tm-i386v.h".
2977 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
2978 * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
2979 "i386/tm-i386.h".
2980
2981 2002-08-18 Mark Kettenis <kettenis@gnu.org>
2982
2983 * config/i386/nm-i386v.h: Add protection against
2984 multiple-inclusion.
2985 (i386_register_u_addr): Remove prototype.
2986 (register_u_addr): New prototype.
2987 (REGISTER_U_ADDR): Redefine accordingly.
2988 * i386v-nat.c: Improve several comments.
2989 (i386_register_u_addr): Change signature and rename to
2990 register_u_addr. Use FP_REGNUM_P. Rewrite slightly to get rid of
2991 ubase variable.
2992
2993 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2994
2995 * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
2996 (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
2997 * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
2998 deprecated_extract_return_value.
2999 (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
3000 rename mips_o32o64_push_arguments.
3001 (mips_gdbarch_init): Update.
3002 (mips_extract_return_value): Delete.
3003 (mips_o32_extract_return_value): Clone mips_extract_return_value.
3004 (mips_o64_extract_return_value): Clone mips_extract_return_value.
3005 (mips_eabi_extract_return_value): Clone mips_extract_return_value.
3006 (mips_n32n64_extract_return_value): Clone
3007 mips_extract_return_value.
3008 (mips_store_return_value): Delete.
3009 (mips_o32_store_return_value): Clone mips_store_return_value.
3010 (mips_o64_store_return_value): Clone mips_store_return_value.
3011 (mips_eabi_store_return_value): Clone mips_store_return_value.
3012 (mips_n32n64_store_return_value): Clone mips_store_return_value.
3013
3014 2002-08-18 Aidan Skinner <aidan@velvet.net>
3015
3016 * ada-lang.c: Use gdb_string.h instead of <string.h>.
3017 * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
3018
3019 2002-08-18 Aidan Skinner <aidan@velvet.net>
3020
3021 * ada-lang.c: Run through gdb_indent.sh.
3022 * ada-lang.h: Run through gdb_indent.sh.
3023 * ada-tasks.c: Run through gdb_indent.sh.
3024 * ada-typeprint.c: Run through gdb_indent.sh.
3025 * ada-valprint.c: Run through gdb_indent.sh.
3026
3027 2002-08-18 Andrew Cagney <ac131313@redhat.com>
3028
3029 * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
3030 ABI.
3031
3032 2002-08-18 Mark Kettenis <kettenis@gnu.org>
3033
3034 * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
3035
3036 * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
3037 * i386b-nat.c [FLOAT_INFO]: Remove dead code.
3038
3039 * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
3040 write_register_gen instead of write_register_bytes.
3041
3042 * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
3043 i[3456]-*-osf1mk* configurations have been made obsolete.
3044 * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
3045 i[3456]86-*-osf1mk* hosts obsolete.
3046 * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
3047 targets obsolete.
3048 * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
3049 config/i386/xm-i386mach.h, config/i386/i386m3.mh,
3050 config/i386/i386m3.mt, config/i386/nm-m3.h,
3051 config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
3052 config/i386/i386mk.mh, config/i386/i386mk.mt,
3053 config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
3054 obsolete.
3055 * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
3056 * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
3057 (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
3058
3059 2002-08-18 Andrew Cagney <ac131313@redhat.com>
3060
3061 * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
3062 (hppa_value_returned_from_stack): Declare.
3063 (hppa_extract_return_value): Declare.
3064 * config/pa/hppa.mt: New file.
3065 * configure.tgt: Recognize hppa*-*-*.
3066 * MAINTAINERS: Change HPPA target to hppa-elf. Still broken.
3067
3068 2002-08-18 Mark Kettenis <kettenis@gnu.org>
3069
3070 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
3071 comment.
3072
3073 2002-08-17 Mark Kettenis <kettenis@gnu.org>
3074
3075 * top.c (gdb_rl_operate_and_get_next): Make sure
3076 operate-and-get-next functions correctly even when the history
3077 list is completely filled.
3078
3079 2002-08-18 Andrew Cagney <ac131313@redhat.com>
3080
3081 * MAINTAINERS (Target Instruction Set Architectures): Rename
3082 Target/Architectures. Replace vax-dec-vms5.5 with vax-netbsd.
3083 Replace s390-linux with s390-linux-gnu. Remove i386-aout,
3084 mcore-pe, mips64-elf, sparc64-elf. Remove i586-pc-msdosdjgpp,
3085 already listed under Host/Native.
3086
3087 * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
3088 i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*. Add
3089 mips*-*-*.
3090
3091 2002-08-17 Andrew Cagney <ac131313@redhat.com>
3092
3093 * config/ia64/ia64.mt: New file.
3094 * config/alpha/alpha.mt: New file.
3095 * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
3096 ia64-linux-gnu. Mention that ia64-elf is broken.
3097 * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
3098
3099 2002-08-17 Mark Kettenis <kettenis@elgar.kettenis.dyndns.org>
3100
3101 * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
3102 generic_func_frame_valid instead of func_frame_valid.
3103
3104 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3105
3106 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
3107 procfs appears to be broken when debugging on multi-processor
3108 machines. So enable software single stepping in order to avoid
3109 using the procfs interface to do next/step operations, using
3110 internal breakpoints instead.
3111
3112 * infrun.c (handle_inferior_event): Readjust the stop_pc by
3113 DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
3114 make this pc address equal to the value it would have if the
3115 system stepping capability was used. Also set a new flag used
3116 to ensure that we don't readjust the PC one more time later.
3117
3118 * breakpoint.c (bpstat_stop_status): Do not adjust the PC
3119 address by DECR_PC_AFTER_BREAK when software single step is
3120 in use for this architecture, as this has already been taken
3121 care of in handle_inferior_event().
3122
3123 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3124
3125 * infrun.c (handle_inferior_event): Minor reformatting, to make
3126 a rather long condition expression easier to read.
3127
3128 2002-08-16 Andrew Cagney <ac131313@redhat.com>
3129
3130 * Makefile.in (gdbtk.o): Move to end of file.
3131 (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
3132 (gdbtk-hooks.o, gdbtk-register.o): Ditto.
3133 (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
3134 (gdbtk-wrapper.o, gdbres.o): Ditto.
3135
3136 2002-08-16 Andrew Cagney <ac131313@redhat.com>
3137
3138 * Makefile.in (copying.o): Separate out compile rule.
3139 (hpux-thread.o, procfs.o, signals.o): Ditto.
3140 (v850ice.o, z8k-tdep.o): Ditto.
3141 (tui-file.o): Move to TUI section.
3142 (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
3143 (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
3144
3145 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3146
3147 * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
3148 skip_trampoline_code, for better namespace-proofing.
3149
3150 * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
3151
3152 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3153
3154 * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
3155
3156 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3157
3158 * infrun.c (handle_inferior_event): When receiving a SIGTRAP
3159 signal, check whether we hit a breakpoint before checking for a
3160 single step breakpoint. Otherwise, GDB fails to notice that a
3161 breakpoint has been hit when stepping onto a breakpoint.
3162
3163 2002-08-16 Keith Seitz <keiths@redhat.com>
3164
3165 * gdb-events.sh (clear_gdb_event_hooks): New function.
3166 * gdb-events.c: Regenerate.
3167 * gdb-events.h: Regenerate.
3168
3169 2002-08-16 Andrew Cagney <ac131313@redhat.com>
3170
3171 * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
3172 not_a_sw_breakpoint.
3173 * breakpoint.h (bpstat_stop_status): Add parameter names.
3174
3175 2002-08-16 Grace Sainsbury <graces@redhat.com>
3176
3177 * remote.c (remote_insert_hw_breakpoint)
3178 (remote_remove_hw_breakpoint): Fix calculation of length field
3179 for Z-packet.
3180
3181 2002-08-15 Michael Snyder <msnyder@redhat.com>
3182
3183 * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
3184 (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
3185 (supply_fpregset): Ditto.
3186
3187 * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL,
3188 REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE,
3189 MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
3190 (TARGET_READ_SP): Delete.
3191 (DO_REGISTERS_INFO): Delete.
3192 (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
3193 Delete.
3194 (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
3195 from macros to functions.
3196
3197 * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
3198 (mips_register_convertible, mips_register_convert_to_virtual,
3199 mips_register_convert_to_raw): Make static.
3200 (mips_read_sp): New function.
3201 (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
3202 (mips_do_registers_info): Make static.
3203 (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
3204 (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
3205 (mips_register_convert_from_type, mips_register_convert_to_type):
3206 New functions.
3207 (mips_gdbarch_init): Set up function_start_offset,
3208 register_virtual_size, pc_in_sigtramp.
3209
3210 2002-08-15 Andrew Cagney <ac131313@redhat.com>
3211
3212 * infcmd.c (vector_info): New function.
3213 (_initialize_infcmd): Add command "info vector".
3214 (print_vector_info): New function.
3215
3216 * gdbarch.sh (PRINT_VECTOR_INFO): New method
3217 * gdbarch.h, gdbarch.c: Regenerate.
3218
3219 2002-08-15 Andrew Cagney <ac131313@redhat.com>
3220
3221 * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
3222 ``print_all''. Only print vector registers when ``print_all''.
3223
3224 2002-08-15 Andrew Cagney <ac131313@redhat.com>
3225
3226 * i387-tdep.h (i387_print_float_info): Add `args' parameter.
3227 * i387-tdep.c (i387_print_float_info): Add `args' parameter.
3228
3229 * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
3230 Add `args' parameter.
3231 * gdbarch.h, gdbarch.c: Regenerate.
3232
3233 * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
3234
3235 * infcmd.c (float_info): Call print_float_info.
3236 (print_float_info): New function. By default, print the
3237 floating-point registers.
3238
3239 * arch-utils.h (default_print_float_info): Delete declaration.
3240 * arch-utils.c (default_print_float_info): Delete function.
3241
3242 2002-08-16 Mark Kettenis <kettenis@gnu.org>
3243
3244 * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
3245 out define.
3246
3247 * i387-tdep.c (i387_print_float_info): Add comment about ignoring
3248 FRAME.
3249
3250 * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
3251 * configure.host: Make i[3456]86-*-aix host obsolete.
3252 * configure.tgt: Make i[3456]86-*-aix target obsolete.
3253 * config/i386/i386aix.mh, config/i386/i386aix.mt,
3254 config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
3255 config/i386/xm-i386aix.h: Make files obsolete.
3256 * i386aix-nat.c: Make file obsolete.
3257 * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
3258 (i386aix-nat.o): Make target obsolete.
3259
3260 * config/i386/nm-gnu.h: Removed.
3261 * config/i386/nm-i386gnu.h: New file.
3262 (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
3263 THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
3264 Moved here from ...
3265 * config/i386/tm-i386gnu.h: ... here. Removed.
3266 * config/i386/xm-i386gnu.h: Removed.
3267 * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
3268 (NAT_FILE): Set to nm-i386gnu.h.
3269 * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
3270 * i386-tdep.c: New file.
3271 * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
3272 (i386gnu-tdep.o): Specify dependencies.
3273
3274 2002-08-15 Mark Kettenis <kettenis@gnu.org>
3275
3276 * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
3277 "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
3278 Adjust a few comments to reflect reality a bit closer.
3279 (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
3280 TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
3281 HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
3282 target_insert_watchpoint, target_remove_watchpoint):
3283 Move defines to ...
3284 * config/i386/nm-i386sco5.h: ... here.
3285 (kernel_u_size): Add prototype. Improve a few comments and add
3286 protection against multiple inclusion.
3287
3288 * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
3289 out define.
3290
3291 * uw-thread.c (SP_ARG0): Define if not already defined.
3292 * config/i386/tm-i386.h (SO_ARG0): Remove define.
3293
3294 * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
3295
3296 * config/i386/tm-i386.h: Don't include "regcache.h".
3297
3298 * i387-tdep.h (i387_print_float_info): New prototype.
3299 * i387-tdep.c (print_i387_value, print_i387_ext,
3300 print_i387_status_word, print_i387_control_word): Add `struct
3301 ui_file *' argument and use it for output.
3302 (i387_print_float_info): Renamed from i387_float_info. Add
3303 `struct gdbarch *' and `struct ui_file *' arguments and use the
3304 latter for output.
3305 * i386-tdep.c: Include "i387-tdep.h".
3306 (i386_gdbarch_init): Set print_float_info.
3307 * config/i386/tm-i386.h (i387_float_info): Remove prototype.
3308 (FLOAT_INFO): Remove define.
3309
3310 2002-08-13 Michael Snyder <msnyder@redhat.com>
3311
3312 * mips-tdep.c (mips_push_arguments): Rename to
3313 mips_eabi_push_arguments, and tune for EABI.
3314 (MIPS_REGS_HAVE_HOME_P): Delete.
3315 (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
3316 (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
3317 Delete references to mips_regs_have_home_p.
3318
3319 2002-08-14 Keith Seitz <keiths@redhat.com>
3320
3321 * Makefile.in (install-gdbtk): Create insight plugin directory.
3322 Install plugins.tcl file.
3323
3324 2002-08-14 Keith Seitz <keiths@redhat.com>
3325
3326 * configure.in: Move SUBDIRS to near top of the file so that
3327 --enable options may add things to it.
3328 If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
3329 * configure: Regenerate.
3330
3331 2002-08-13 Michael Snyder <msnyder@redhat.com>
3332
3333 * mips-tdep.c (mips_o32o64_push_arguments): New function,
3334 cloned from mips_push_arguments, tuned for o32/o64 ABI.
3335 (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
3336
3337 2002-08-13 Andrew Cagney <ac131313@redhat.com>
3338
3339 * vax-tdep.c (vax_get_saved_register): Delete function.
3340 (vax_gdbarch_init): Update.
3341 * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
3342 (ns32k_gdbarch_init): Update.
3343 * alpha-tdep.c (alpha_get_saved_register): Delete function.
3344 (alpha_gdbarch_init): Update.
3345
3346 2002-08-13 Andrew Cagney <cagney@redhat.com>
3347
3348 * regcache.c (init_regcache_descr): Overallocate the
3349 raw_register_valid_p array including space for NUM_PSEUDO_REGS.
3350 (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
3351 nr_raw_registers.
3352 (set_register_cached): Add range checking assertions. Use
3353 current_regcache.
3354
3355 2002-08-13 Mark Kettenis <kettenis@gnu.org>
3356
3357 * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
3358 numbers for MMX registers.
3359
3360 2002-08-13 Andrew Cagney <cagney@redhat.com>
3361
3362 * i386-tdep.c (i386_gdbarch_init): Use
3363 generic_unwind_get_saved_register.
3364
3365 2002-08-13 Kevin Buettner <kevinb@redhat.com>
3366
3367 * procfs.c (procfs_can_use_hw_breakpoint): New function.
3368 (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
3369 target vector.
3370 * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
3371 Delete. Add comment regarding this now-deleted target method.
3372
3373 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3374
3375 * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
3376 (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
3377 (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
3378 real PC and the page number (if it's within the memory bank window).
3379 (m68hc11_pseudo_register_write): Likewise when saving.
3380 (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
3381 (m68hc11_register_virtual_type): Return uint32 for virtual pc.
3382 (m68hc11_register_raw_size): And use 32-bit for it.
3383 (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
3384 16K memory bank is used by the prog; also use the virtual pc.
3385
3386 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3387
3388 * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
3389 (m68hc11_gdbarch_init): Install it in gdbarch.
3390 (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
3391 (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
3392 (MSYMBOL_SIZE): New for documentation.
3393 (insn_return_kind): Enum to specify how a function returns.
3394 (frame_extra_info): Cleanup and record the return mode.
3395 (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page
3396 register in address computation.
3397 (m68hc11_get_return_insn): New to obtain the return instruction used
3398 by the function.
3399 (m68hc11_frame_init_saved_regs): Take into account the return
3400 instruction used by the function for far and interrupt functions.
3401 (m68hc11_init_extra_frame_info): Take into account page register.
3402 (m68hc11_frame_args_address): Adjust according to the return mode.
3403 (show_regs): Print page register only when it's used.
3404
3405 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3406
3407 * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
3408 (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
3409 (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
3410 registers.
3411 (m68hc11_register_raw_size): Likewise.
3412
3413 2002-08-13 Andrew Cagney <cagney@redhat.com>
3414
3415 * i386-tdep.c (i386_register_name): Handle mmx registers.
3416 (mmx_regnum_p): New function.
3417 (i386_mmx_names): New array.
3418 (mmx_num_regs): New variable.
3419 (i386_pseudo_register_read): New function.
3420 (i386_pseudo_register_write): New function.
3421 (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
3422
3423 * regcache.c (regcache_raw_read_unsigned): New function.
3424 (regcache_raw_read_signed): New function.
3425 * regcache.h (regcache_raw_read_unsigned): Declare.
3426 (regcache_raw_read_signed): Declare.
3427
3428 2002-08-13 Andrew Cagney <cagney@redhat.com>
3429
3430 * regcache.c (regcache_raw_read_as_address): Delete function.
3431 (regcache_cooked_read_signed): New function.
3432 (regcache_cooked_read_unsigned): New function.
3433 * regcache.h (regcache_cooked_read_signed): Declare.
3434 (regcache_cooked_read_unsigned): Declare.
3435 (regcache_raw_read_as_address): Delete declaration.
3436
3437 * blockframe.c (generic_read_register_dummy): Use
3438 regcache_cooked_read_unsigned.
3439 * i386-tdep.c (i386_extract_struct_value_address): Use
3440 regcache_cooked_read_unsigned.
3441
3442 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3443
3444 * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
3445 double sizes according to ELF ABI flags.
3446 (gdbarch_tdep): Record elf_flags.
3447
3448 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3449
3450 * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
3451 (m6812_prolog): They can appear in 68HC12 function prologue.
3452 (m68hc11_frame_chain): Cleanup.
3453
3454 2002-08-12 Andrew Cagney <cagney@redhat.com>
3455
3456 * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
3457 declarations.
3458 * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
3459 (i386_linux_register_raw_size): Delete function.
3460 (i386_linux_init_abi): Update.
3461 * i386-tdep.c (i386_register_raw_size): Delete function.
3462 (i386_register_byte): Delete function.
3463 (i386_gdbarch_init): Update.
3464 (i386_register_size): Delete array.
3465 (i386_register_offset): Delete array.
3466
3467 * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
3468 (REGISTER_RAW_SIZE): Delete macro.
3469 * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
3470 (REGISTER_BYTE): Delete macro.
3471
3472 2002-08-11 Aidan Skinner <aidan@velvet.net>
3473
3474 * ada-lang.c (ada_lookup_partial_symbol)
3475 (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
3476 prototype names so that grep ^func works properly.
3477
3478 * ada-lang.c (ada_array_element_type)
3479 (ada_lookup_partial_symbol): Fix typos in parameter list.
3480
3481 * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
3482 Fix prototype names so that grep ^func works properly.
3483
3484 2002-08-10 Andrew Cagney <cagney@redhat.com>
3485 Elena Zannoni <ezannoni@redhat.com>
3486 Martin M. Hunt <hunt@redhat.com>
3487
3488 * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
3489 (build_builtin_type_vec128i): Set the vector bit.
3490 * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
3491 * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
3492 (build_builtin_type_vec64): New function.
3493 (build_builtin_type_vec64i): New function.
3494 (build_gdbtypes): Initialize builtin_type_vec64 and
3495 builtin_type_vec64i.
3496
3497 2002-08-09 Andrew Cagney <cagney@redhat.com>
3498
3499 * regcache.c (regcache_dump): Compare the register offset
3500 with REGISTER_BYTE.
3501 * arch-utils.c (generic_register_byte): New function.
3502 * arch-utils.h (generic_register_byte): Declare.
3503 * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
3504 * gdbarch.h, gdbarch.c: Regenerate.
3505
3506 2002-08-09 Andrew Cagney <cagney@redhat.com>
3507
3508 * regcache.c: Include "gdbcmd.h"
3509 (_initialize_regcache): Add commands "maintenance print
3510 registers", "maintenance print raw-registers" and "maintenance
3511 print cooked-registers".
3512 (enum regcache_dump_what): Define.
3513 (dump_endian_bytes): New function.
3514 (regcache_dump): New function.
3515 (regcache_print): New function.
3516 (maintenance_print_registers): New function.
3517 (maintenance_print_raw_registers): New function.
3518 (maintenance_print_cooked_registers): New function.
3519 * Makefile.in (regcache.o): Update dependencies.
3520
3521 2002-08-09 Michael Snyder <msnyder@redhat.com>
3522
3523 * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
3524 (mips_push_arguments): Correct some comments. Use paddr_nz
3525 for printing addresses in debug output. Replace static
3526 allocation using MAX_REGISTER_RAW_SIZE with alloca.
3527 (mips_n32n64_push_arguments): New function, cloned from
3528 mips_push_arguments and tuned for the n32/n64 ABI.
3529 (mips_push_register): Buffer needs dynamic allocation.
3530 (mips_print_register): Ditto.
3531 (do_gp_register_row): Ditto.
3532 (mips_store_return_value): Ditto.
3533 (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
3534
3535 2002-08-09 Don Howard <dhoward@redhat.com>
3536
3537 * memattr.c (mem_info_command): Print special case of upper bound
3538 as max CORE_ADDR + 1.
3539
3540 2002-08-08 Michael Snyder <msnyder@redhat.com>
3541
3542 * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only
3543 returns structs by ref if they're too big to fit in two registers.
3544
3545 2002-08-09 Kevin Buettner <kevinb@redhat.com>
3546
3547 * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
3548 saved regs value.
3549 (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
3550 mips_find_saved_regs().
3551 (mips_pop_frame): Likewise.
3552
3553 2002-08-09 Kevin Buettner <kevinb@redhat.com>
3554
3555 * blockframe.c (frame_saved_regs_register_unwind): Revise
3556 PC_IN_CALL_DUMMY assertion to only apply when generic dummy
3557 frames are in use.
3558
3559 2002-08-09 Grace Sainsbury <graces@redhat.com>
3560
3561 * remote.c: (remote_wait, remote_async_wait): Add check for awatch
3562 T-packets; the 'a' is not taken as a register number.
3563 (remote_check_watch_resources, remote_stopped_by_watchpoint)
3564 (remote_stopped_data_address): New functions; add to target
3565 vector.
3566 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
3567 prototypes to match other implementations of this
3568 function. replace integer argument with pointer -- the length
3569 field in the Z-packet is the length of what is pointed to or 1 if
3570 pointer is null. Add to target vector.
3571 (remote_insert_watchpoint, remote_remove_watchpoint): Add to
3572 target vector.
3573
3574 From Mark Salter:
3575 * remote.c (remote_wait): Add support to extract optional
3576 watchpoint information from T-packet. Ignore unrecognized
3577 optional info in T-packet.
3578 (remote_async_wait): Ditto.
3579
3580 2002-08-09 Corinna Vinschen <vinschen@redhat.com>
3581
3582 * cli/cli-dump.c: Change fopen modes to use binary open modes
3583 as defined in include/fopen-bin.h throughout.
3584
3585 2002-08-08 Michael Snyder <msnyder@redhat.com>
3586
3587 * mips-tdep.c: Minor whitespace and indentation clean-ups.
3588
3589 2002-08-08 Kevin Buettner <kevinb@redhat.com>
3590
3591 * doublest.c (store_floating): Avoid floatformat_from_doublest()
3592 assertion failure by returning early after a warning.
3593
3594 2002-08-08 Kevin Buettner <kevinb@redhat.com>
3595
3596 * mips-tdep.c (mips_find_saved_regs): Make static.
3597 (mips_frame_init_saved_regs): New function.
3598 (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
3599 * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
3600 (mips_find_saved_regs): Delete declaration.
3601
3602 2002-08-08 Grace Sainsbury <graces@redhat.com>
3603
3604 * remote.c (remote_wait, remote_async_wait): Change
3605 thread_num from int to ULONGEST.
3606 (unpack_varlen_hex): Change result parameter from
3607 int * to ULONGEST *.
3608
3609 2002-08-08 Andrew Cagney <ac131313@redhat.com>
3610
3611 * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
3612 powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
3613 powerpc*-*-*.
3614 * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
3615
3616 2002-08-08 Andrew Cagney <cagney@redhat.com>
3617
3618 * gcore.c (override_derive_stack_segment): Delete variable.
3619 (preempt_derive_stack_segment): Delete function.
3620 (derive_stack_segment): Delete function.
3621 (default_derive_stack_segment): Renamed to derive_stack_segment.
3622 (override_derive_heap_segment): Delete variable.
3623 (preempt_derive_heap_segment): Delete function.
3624 (derive_heap_segment): Delete function.
3625 (default_derive_heap_segment): Rename to derive_heap_segment.
3626
3627 2002-08-06 Michael Snyder <msnyder@redhat.com>
3628
3629 * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
3630 * mips-tdep.c (mips_EABI_use_struct_convention,
3631 mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
3632 New functions. (mips_use_struct_convention): Delete.
3633 (mips_gdbarch_init): set use_gdbarch_convention.
3634
3635 2002-08-06 Michael Snyder <msnyder@redhat.com>
3636
3637 * mips-tdep.c: gdbarch-ify reg_struct_has_addr.
3638 (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr,
3639 mips_o32_reg_struct_has_addr): New functions.
3640 (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
3641
3642 2002-08-07 Andrew Cagney <ac131313@redhat.com>
3643
3644 * regcache.c (pseudo_register): Delete function.
3645 (fetch_register): Delete function.
3646 (store_register): Delete function.
3647 (regcache_raw_read, legacy_read_register_gen): Use
3648 target_fetch_registers instead of fetch_register.
3649 (legacy_write_register_gen, regcache_raw_write): Use
3650 target_store_register instead of store_register.
3651 (write_register_bytes): Ditto.
3652
3653 * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
3654 (STORE_PSEUDO_REGISTER): Delete.
3655 * gdbarch.h, gdbarch.c: Regenerate.
3656
3657 2002-08-06 Corinna Vinschen <vinschen@redhat.com>
3658
3659 * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
3660 write dump file binary.
3661
3662 2002-08-05 Michael Snyder <msnyder@redhat.com>
3663
3664 * mips-tdep.c (mips_find_saved_regs): Adjust stack according
3665 to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64. Enhance comment.
3666 (mips_gdbarch_init): Set N32 target to be mips64.
3667
3668 2002-08-06 Kevin Buettner <kevinb@redhat.com>
3669
3670 * frame.c (find_saved_register): Break out of loop once saved
3671 register address is found. Don't mention sparc in loop comment
3672 anymore.
3673
3674 2002-08-06 Kevin Buettner <kevinb@redhat.com>
3675
3676 * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
3677 mips_default_saved_regsize to 8.
3678
3679 2002-08-06 Andrew Cagney <ac131313@redhat.com>
3680
3681 * gcore.c: Do not include <sys/procfs.h>.
3682 * Makefile.in (gcore.o): Update dependencies.
3683
3684 2002-08-06 Andrew Cagney <cagney@redhat.com>
3685
3686 * configure.tgt: Make arc-*-* obsolete.
3687 * NEWS: Mention that arc-*-* has been identifed as obsolete.
3688 * MAINTAINERS: Make arc-elf obsolete.
3689 * arc-tdep.c: Make file obsolete.
3690 * config/arc/arc.mt: Ditto.
3691 * config/arc/tm-arc.h: Ditto.
3692
3693 2002-08-05 Theodore A. Roth <troth@verinet.com>
3694
3695 * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
3696
3697 2002-08-05 Andrew Cagney <ac131313@redhat.com>
3698
3699 * mcore-tdep.c (mcore_gdbarch_init): Use
3700 generic_unwind_get_saved_register instead of
3701 generic_get_saved_register.
3702 * v850-tdep.c (v850_gdbarch_init): Ditto.
3703 * frv-tdep.c (frv_gdbarch_init): Ditto.
3704 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
3705 * s390-tdep.c (s390_gdbarch_init): Ditto.
3706 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
3707 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
3708 * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
3709
3710 2002-08-05 Joel Brobecker <brobecker@gnat.com>
3711
3712 * objfiles.h: Add missing #include "symfile.h"
3713
3714 * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
3715
3716 2002-08-04 Andrew Cagney <ac131313@redhat.com>
3717
3718 From 2002-08-01 david carlton <carlton@math.stanford.edu>:
3719 * hpread.c (hpread_read_struct_type): Deleted superfluous setting
3720 of FIELD_BITSIZE.
3721
3722 2002-08-04 Daniel Jacobowitz <drow@mvista.com>
3723
3724 * NEWS: Cleanup and nitpick.
3725
3726 2002-08-03 Andrew Cagney <ac131313@redhat.com>
3727
3728 * NEWS: Cleanup. Use *-linux*-gnu*. Only use `*' for headings.
3729
3730 2002-08-03 Andrew Cagney <ac131313@redhat.com>
3731
3732 * Makefile.in (gdbtk-bp.o): Update dependencies.
3733 (gdbtk-register.o): Ditto.
3734 (gdbtk-varobj.o): Ditto.
3735
3736 2002-08-03 Andrew Cagney <cagney@redhat.com>
3737
3738 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
3739 m68hc11_fetch_pseudo_register.
3740 (m68hc11_pseudo_register_write): Replace
3741 m68hc11_store_pseudo_register.
3742 (m68hc11_gdbarch_init): Update.
3743
3744 Fri Aug 2 15:53:50 2002 Andrew Cagney <cagney@redhat.com>
3745
3746 * gdbarch.sh: Include "gdb_string.h".
3747 * gdbarch.c: Regenerate.
3748
3749 * regcache.c: Include "gdb_string.h".
3750 * ax-general.c: Ditto.
3751 * varobj.c: Ditto.
3752 * std-regs.c: Ditto.
3753 * fbsd-proc.c: Ditto.
3754 * thread.c: Ditto.
3755
3756 * Makefile.in (regcache.o): Update dependencies.
3757 (thread.o, gdbarch.o): Ditto.
3758 (ax-general.o, gdbarch.o): Ditto.
3759 (varobj.o, std-regs.o): Ditto.
3760 (fbsd-proc.o): Specify dependencies.
3761
3762 2002-08-02 Andrew Cagney <cagney@redhat.com>
3763
3764 * regcache.c (regcache_cooked_read): Rename rawnum parameter to
3765 regnum.
3766 (regcache_cooked_write): Ditto.
3767
3768 2002-08-02 Andrew Cagney <ac131313@redhat.com>
3769
3770 * regcache.c (regcache_cooked_read): New function.
3771 (regcache_cooked_write): New function.
3772 (read_register_gen): Rewrite using regcache_cooked_read.
3773 (write_register_gen): Rewrite using regcache_cooked_write.
3774
3775 * regcache.h (regcache_cooked_read, regcache_cooked_write):
3776 Declare.
3777
3778 2002-08-02 Andrew Cagney <cagney@redhat.com>
3779
3780 * gdbarch.sh (pseudo_register_read, pseudo_register_write):
3781 Replace the architecture methods register_read and register_write.
3782 * gdbarch.h, gdbarch.c: Regenerate.
3783 * regcache.c (init_regcache_descr): Update.
3784 (read_register_gen): Update.
3785 (write_register_gen): Update.
3786 (supply_register): Update comment.
3787
3788 * sh-tdep.c (sh_gdbarch_init): Update.
3789 (sh_pseudo_register_read, sh64_pseudo_register_read): Add
3790 `regcache' and `gdbarch' parameters. Make `buffer' a void
3791 pointer. Update code.
3792 (sh_pseudo_register_write, sh64_pseudo_register_write): Add
3793 `regcache' and `gdbarch' parameters. Make `buffer' a constant
3794 void pointer. Update code.
3795 (sh64_register_write): Delete.
3796 (sh4_register_read): Delete.
3797 (sh64_register_read): Delete.
3798 (sh4_register_write): Delete.
3799 (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
3800 void pointer, `to' parameter a void pointer.
3801 (sh_sh64_register_convert_to_raw): Ditto.
3802
3803 2002-08-01 Kevin Buettner <kevinb@redhat.com>
3804
3805 * mips-tdep.c (mips_register_virtual_type): Use architecture
3806 invariant return values.
3807
3808 2002-08-01 Andrew Cagney <cagney@redhat.com>
3809
3810 * linux-proc.c: Include "gdb_string.h".
3811 * Makefile.in (linux-proc.o): Update dependency list.
3812
3813 2002-08-01 Kevin Buettner <kevinb@redhat.com>
3814
3815 * mips-tdep.c (mips_gdbarch_init): Add comments. Fix typo in
3816 comment.
3817
3818 2002-08-01 Grace Sainsbury <graces@redhat.com>
3819
3820 * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
3821 to_insert_watchpoint, to_remove_watchpoint,
3822 to_stopped_by_watchpoint, to_stopped_data_address,
3823 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
3824 target vecctor. Define their corresponding macros so they call
3825 them.
3826
3827 * target.c: Add default and debug versions of for
3828 to_insert_hw_breakpoint, to_remove_hw_breakpoint,
3829 to_insert_watchpoint, to_remove_watchpoint,
3830 to_stopped_by_watchpoint, to_stopped_data_address,
3831 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
3832
3833 2002-08-01 Kevin Buettner <kevinb@redhat.com>
3834
3835 * mips-tdep.c (mips_register_virtual_type): New function.
3836 (mips_gdbarch_init): Register mips_register_virtual_type()
3837 with gdbarch machinery.
3838 * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
3839 this file instead of tm-bigmips.h.
3840 (MIPS_REGSIZE): Delete this macro.
3841 (REGISTER_VIRTUAL_TYPE): Delete macro. Undef macro so that
3842 multiarch version in mips-tdep.c will be found.
3843
3844 2002-08-01 Andrew Cagney <cagney@redhat.com>
3845
3846 * NEWS: Menion that CHILL has been made obsolete.
3847
3848 * gdbtypes.c (chill_varying_type): Make chill references obsolete.
3849 * stabsread.c (read_range_type): Ditto.
3850 * gdbtypes.h: Ditto.
3851 * language.c (binop_type_check): Ditto.
3852 (binop_result_type): Ditto.
3853 (integral_type): Ditto.
3854 (character_type): Ditto.
3855 (string_type): Ditto.
3856 (boolean_type): Ditto.
3857 (structured_type): Ditto.
3858 (lang_bool_type): Ditto.
3859 (binop_type_check): Ditto.
3860 * language.h (_LANG_chill): Ditto.
3861 * dwarfread.c (set_cu_language): Ditto.
3862 * dwarfread.c (CHILL_PRODUCER): Ditto.
3863 * dwarfread.c (handle_producer): Ditto.
3864 * expression.h (enum exp_opcode): Ditto.
3865 * eval.c: Ditto for comments.
3866 * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
3867 * expprint.c (print_subexp): Ditto.
3868 (print_subexp): Ditto.
3869 * valops.c (value_cast): Ditto.
3870 (search_struct_field): Ditto.
3871 * value.h (COERCE_VARYING_ARRAY): Ditto.
3872 * symfile.c (init_filename_language_table): Ditto.
3873 (add_psymbol_with_dem_name_to_list): Ditto.
3874 * valarith.c (value_binop): Ditto.
3875 (value_neg): Ditto.
3876 * valops.c (value_slice): Ditto.
3877 * symtab.h (union language_specific): Ditto.
3878 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
3879 (SYMBOL_DEMANGLED_NAME): Ditto.
3880 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
3881 * defs.h (enum language): Ditto.
3882 * symtab.c (got_symtab): Ditto.
3883 * utils.c (fprintf_symbol_filtered): Ditto.
3884
3885 * ch-typeprint.c: Make file obsolete.
3886 * ch-valprint.c: Make file obsolete.
3887 * ch-lang.h: Make file obsolete.
3888 * ch-exp.c: Make file obsolete.
3889 * ch-lang.c: Make file obsolete.
3890
3891 * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
3892 CHILL_LIB.
3893 (TARGET_FLAGS_TO_PASS): Ditto.
3894 (CHILLFLAGS): Obsolete.
3895 (CHILL): Obsolete.
3896 (CHILL_FOR_TARGET): Obsolete.
3897 (CHILL_LIB): Obsolete.
3898 (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
3899 ch-valprint.c.
3900 (HFILES_NO_SRCDIR): Remove ch-lang.h.
3901 (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
3902 ch-lang.o.
3903 (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
3904 targets.
3905
3906 2002-07-31 Joel Brobecker <brobecker@gnat.com>
3907
3908 * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
3909 This does not change anything at the moment, but will be helpful
3910 later when full Ada support is integrated.
3911
3912 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3913
3914 * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
3915 help message.
3916
3917 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3918
3919 * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
3920 and save it in a local variable. Use variable in later test.
3921
3922 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3923
3924 * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
3925 test. (Thanks to Daniel Jacobowitz.)
3926
3927 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3928
3929 * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
3930 (mips_abi_strings): Add "n64".
3931 (mips_gdbarch_init): Add test for n64 abi. Add MIPS_ABI_N64 case.
3932
3933 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3934
3935 * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
3936 (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
3937
3938 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3939
3940 * utils.c (host_pointer_to_address, address_to_host_pointer):
3941 Use gdb_assert() instead of explicit call to internal_error().
3942
3943 2002-07-30 Kevin Buettner <kevinb@redhat.com>
3944
3945 * Makefile.in (rs6000-nat.o): Update dependencies.
3946
3947 From Nicholas Duffek:
3948 * Makefile.in (ALLDEPFILES): Add aix-thread.c.
3949 (aix-thread.o): New rule.
3950 * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
3951 * config/powerpc/aix432.mh: New file.
3952
3953 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
3954
3955 * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
3956 (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
3957 (fetch_core_registers, ppc_linux_supply_gregset)
3958 (ppc_linux_supply_fpregset): New functions.
3959 (ppc_linux_regset_core_fns): New.
3960 (_initialize_ppc_linux_tdep): Call add_core_fns.
3961 * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
3962 and ppc_linux_supply_gregset.
3963 * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
3964 (supply_fpregset): Call ppc_linux_supply_fpregset.
3965 * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
3966 corelow.o.
3967 * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
3968
3969 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
3970
3971 * symtab.c (lookup_symbol): Demangle before lowercasing.
3972
3973 2002-07-30 Andrew Cagney <ac131313@redhat.com>
3974
3975 * symtab.h: Replace #include "gdb_obstack.h" with opaque
3976 declaration.
3977 * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
3978 * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
3979 * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
3980 * arch-utils.c, cli/cli-setshow.c: Unconditionally include
3981 "gdb_string.h".
3982 * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
3983 (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
3984 (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
3985 (avr-tdep.o, mon960-rom.o): Ditto.
3986 (aout_stabs_gnu_h): Define.
3987 (symtab_h): Remove $(gdb_obstack_h).
3988
3989 2002-07-30 Jim Blandy <jimb@redhat.com>
3990
3991 Patch from David Carlton <carlton@math.stanford.edu>:
3992 * gdbinit.in: Move the `dir' commands that add GDB's own source
3993 directory to the search path to the end, so that the `gdb' source
3994 directory will be searched first.
3995
3996 2002-07-29 Andrew Cagney <ac131313@redhat.com>
3997
3998 * gdb_obstack.h: New file.
3999 * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
4000 (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
4001 * objfiles.h: Include "gdb_obstack.h".
4002 * Makefile.in (gdb_obstack_h): Define.
4003 (symtab_h): Add $(gdb_obstack_h).
4004 (objfiles_h): Add $(gdb_obstack_h).
4005
4006 * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
4007 * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
4008 * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
4009 * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
4010 * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
4011 * p-valprint.c, symmisc.c, typeprint.c: Ditto.
4012 * symfile.c, coffread.c, c-typeprint.c: Ditto.
4013 * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
4014
4015 * Makefile.in (bcache.o): Update dependencies.
4016 (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
4017 (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
4018 (dbxread.o, dstread.o, f-typeprint.o): Ditto.
4019 (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
4020 (stabsread.o, symfile.o, symmisc.o): Ditto.
4021 (symtab.o, typeprint.o, macroexp.o): Ditto.
4022 (macrotab.o, mdebugread.o): Ditto.
4023 (f_lang_h, coff_sym_h, coff_symconst_h): Define.
4024 (coff_ecoff_h, aout_aout64_h): Define.
4025 (aout_stabs_gnu_h, libaout_h): Define.
4026
4027 2002-07-29 Andrew Cagney <cagney@redhat.com>
4028
4029 * regcache.c (struct regcache_descr): Rename nr_registers to
4030 nr_cooked_registers. Revise comments describing the structure
4031 member fields.
4032 (init_regcache_descr): Update.
4033 (init_legacy_regcache_descr): Update.
4034 (read_register_gen, write_register_gen): When a cooked register in
4035 the raw register range, directly access the value from the raw
4036 register cache.
4037
4038 2002-07-29 Andrew Cagney <ac131313@redhat.com>
4039
4040 * z8k-tdep.c: Do not include "obstack.h".
4041 * h8300-tdep.c, h8500-tdep.c: Ditto.
4042 * m68hc11-tdep.c, sh-tdep.c: Ditto.
4043 * valprint.c, v850-tdep.c: Ditto.
4044 * d10v-tdep.c, mn10300-tdep.c: Ditto.
4045 * mn10200-tdep.c: Ditto.
4046
4047 * Makefile.in (z8k-tdep.o): Update dependencies.
4048 (m68hc11-tdep.o, valprint.o): Ditto.
4049 (v850-tdep.o, d10v-tdep.o): Ditto.
4050 (mn10300-tdep.o, sparc-tdep.o): Ditto.
4051 (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
4052 (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
4053 (sh_opc_h, gdb_sim_sh_h): Define.
4054 (elf_sh_h, elf_bfd_h): Define.
4055 (opcode_m68hc11_h): Define.
4056 (OPCODES_SRC, OPCODES_DIR): define.
4057 (OPCODES): Use $(OPCODES_DIR).
4058 (gdb_sim_d10v_h): Rename sim_d10v_h.
4059 (gdb_sim_arm_h): Rename sim_arm_h.
4060
4061 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4062
4063 * utils.c (host_pointer_to_address, address_to_host_pointer):
4064 Change internal_error() message to indicate function responsible
4065 for the error.
4066
4067 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4068
4069 * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
4070 calls to local_hex_string_custom().
4071
4072 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4073
4074 * irix5-nat.c: Move IRIX shared library support from here...
4075 * solib-irix.c: ...to here. Revised substantially to work with
4076 generic solib framework.
4077
4078 * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
4079 * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
4080 * mips-irix-tdep.c: New file.
4081
4082 * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
4083 (mips-irix-tdep.o, solib-irix.o): New rules.
4084 * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
4085 solib-irix.o.
4086 * config/mips/irix6.mt (TDEPFILES): Likewise.
4087 * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
4088
4089 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4090
4091 * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
4092 disabled (via ``#if 0'') includes.
4093
4094 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4095
4096 * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
4097 (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
4098 (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
4099 Add support for the fpscr register.
4100 * rs6000-nat.c (regmap, fetch_inferior_registers)
4101 (store_inferior_registers, fetch_core_registers): Likewise.
4102
4103 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4104
4105 * rs6000-nat.c (language.h): Include.
4106 (special_regs): Delete this array.
4107 (regmap): New function.
4108 (fetch_register, store_register): Use regmap() to map gdb
4109 register numbers to ptrace register numbers. Also, use
4110 outputs from regmap() to make decisions regarding type of
4111 ptrace() call to make. In particular, don't compare against
4112 FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
4113 (fetch_inferior_registers, store_inferior_registers): Where
4114 possible, obtain register numbers from tdep struct. Don't
4115 refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
4116 * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
4117 (LAST_UISA_SP_REGNUM): Delete.
4118
4119 2002-07-25 Kevin Buettner <kevinb@redhat.com>
4120
4121 * rs6000-nat.c (ppc-tdep.h): Include.
4122 (fetch_registers, store_register, fetch_core_registers): Don't
4123 access registers[] directly. Instead, use supply_register() or
4124 regcache_collect() as appropriate.
4125 (find_toc_address): Format hex address with local_hex_string().
4126
4127 2002-07-25 Andrew Cagney <ac131313@redhat.com>
4128
4129 * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
4130 bfd/elf32-frv.c.
4131
4132 2002-07-24 Tom Tromey <tromey@redhat.com>
4133
4134 * jv-exp.y: Marked all strings with _().
4135 (ClassInstanceCreationExpression, ArrayCreationExpression): Use
4136 internal_error.
4137 (MethodInvocation, CastExpression, parse_number, yyerror,
4138 java_type_from_name, push_expression_name, yylex): Typo fixes.
4139
4140 2002-07-24 Daniel Jacobowitz <drow@mvista.com>
4141
4142 * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
4143 (tee_file_flush, tee_file_write, tee_file_fputs)
4144 (tee_file_isatty): New.
4145 * ui-file.h (tee_file_new): Add prototype.
4146
4147 2002-07-24 Aidan Skinner <aidan@velvet.net>
4148
4149 * ada-lang.c: Change k&r style function definitions to prototyped
4150 form.
4151 * ada-typeprint.c: Change k&r style function definitions to prototyped
4152 form.
4153 * ada-valprint.c: Change k&r style function definitions to prototyped
4154 form.
4155
4156 2002-07-24 Andrew Cagney <cagney@redhat.com>
4157
4158 * README: Remove reference to remote-bug.
4159 * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
4160 remote-bug.c.
4161 (m88k-nat.o): Delete rule.
4162 (m88k-tdep.o): Delete rule.
4163 (remote-bug.o): Delete rule.
4164 * MAINTAINERS: Mark as obsolete.
4165 * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
4166 * m88k-tdep.c: Make file obsolete.
4167 * config/m88k/m88k.mh: Ditto.
4168 * config/m88k/delta88v4.mh: Ditto.
4169 * config/m88k/delta88v4.mt: Ditto.
4170 * config/m88k/delta88.mt: Ditto.
4171 * config/m88k/delta88.mh: Ditto.
4172 * remote-bug.c: Ditto.
4173 * config/m88k/tm-delta88.h: Ditto.
4174 * config/m88k/nm-delta88v4.h: Ditto.
4175 * config/m88k/xm-delta88.h: Ditto.
4176 * config/m88k/xm-dgux.h: Ditto.
4177 * config/m88k/tm-m88k.h: Ditto.
4178 * config/m88k/nm-m88k.h: Ditto.
4179 * config/m88k/tm-delta88v4.h: Ditto.
4180 * m88k-nat.c: Ditto.
4181 * cxux-nat.c: Ditto.
4182 * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
4183 and m88*-*-* obsolete.
4184 * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
4185 m88*-*-* obsolete.
4186
4187 2002-07-24 Andrew Cagney <cagney@redhat.com>
4188
4189 * findvar.c (extract_unsigned_integer): Make `addr' parameter
4190 constant. Same for local pointer variables.
4191 (extract_signed_integer): Ditto.
4192 * defs.h (extract_unsigned_integer): Update.
4193 (extract_signed_integer): Update.
4194
4195 2002-07-24 Andrew Cagney <cagney@redhat.com>
4196
4197 * regcache.c (regcache_raw_write): Change buf parameter to a
4198 constant void pointer.
4199 (regcache_raw_read): Change buf parameter to a void pointer.
4200 (legacy_write_register_gen): Change myaddr parameter a constant
4201 void pointer.
4202 (supply_register): Change val parameter to a const void pointer.
4203 * regcache.h (regcache_raw_write): Update declaration.
4204 (regcache_raw_read): Update declaration.
4205 (supply_register): Update declaration.
4206
4207 2002-07-24 Tom Tromey <tromey@redhat.com>
4208
4209 * defs.h (gdb_readline_wrapper): Declare.
4210 * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
4211 * tracepoint.c (read_actions): Use gdb_readline_wrapper.
4212 * top.c (gdb_readline_wrapper): New function.
4213 (command_line_input): Use it.
4214
4215 2002-07-24 Andrew Cagney <cagney@redhat.com>
4216
4217 * regcache.h (regcache_raw_read, regcache_raw_write): Replace
4218 regcache_read and regcache_write.
4219 (regcache_raw_read_as_address): Replace regcache_read_as_address.
4220 * regcache.c: Update.
4221 * sh-tdep.c (sh64_push_arguments): Update comment.
4222 (sh_pseudo_register_read): Update.
4223 (sh_pseudo_register_write): Update.
4224 (sh4_register_read): Update.
4225 (sh4_register_write): Update.
4226 (sh64_pseudo_register_read): Update.
4227 (sh64_pseudo_register_write): Update.
4228 (sh64_register_read): Update.
4229 (sh64_register_write): Update.
4230 * i386-tdep.c (i386_extract_return_value): Update.
4231 (i386_extract_struct_value_address): Update.
4232 (i386_extract_return_value): Update.
4233 * blockframe.c (generic_read_register_dummy): Update.
4234 (generic_call_dummy_register_unwind): Update
4235 * infrun.c (write_inferior_status_register): Update.
4236
4237 2002-07-23 Jim Blandy <jimb@redhat.com>
4238
4239 * parser-defs.h (expression_context_pc): Make this extern.
4240 (Thanks to Michael Snyder.)
4241
4242 2002-07-23 Andrew Cagney <ac131313@redhat.com>
4243
4244 GDB 5.2.1 released from 5.2 branch.
4245 * NEWS: Mention changes in 5.2.1 including addition of AVR target.
4246 * README: Update to mention 5.2.1.
4247
4248 2002-07-23 Mark Salter <msalter@redhat.com>
4249
4250 * remote.c (remote_read_bytes): Fix check for error.
4251
4252 2002-07-22 Kevin Buettner <kevinb@redhat.com>
4253
4254 * aix-thread.c (language.h): Include.
4255 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
4256 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
4257 Print newlines at end of debug messages.
4258 (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
4259 (pdc_write_data): Use local_hex_string() instead of %llx formats.
4260
4261 2002-07-22 Kevin Buettner <kevinb@redhat.com>
4262
4263 * aix-thread.c (ppc-tdep.h): Include.
4264 (special_register_p): New function.
4265 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
4266 (store_regs_user_thread): Use register number information from
4267 gdbarch_tdep struct instead of hardcoded offsets relative to
4268 FIRST_UISA_SP_REGNUM.
4269 (fetch_regs_kernel_thread, store_regs_kernel_thread): Call
4270 special_register_p() instead of using FPLAST_REGNUM and
4271 LAST_UISA_SP_REGNUM as lower and upper bounds on the special
4272 register numbers. Also, don't assume that LAST_UISA_SP_REGNUM
4273 will be MQ's register number.
4274
4275 2002-07-22 Michael Snyder <msnyder@redhat.com>
4276
4277 * aix-thread.c (ops): Rename to aix_thread_ops.
4278 (base_ops): Rename to base_target.
4279 (ops_attach): Rename to aix_thread_attach.
4280 (ops_detach): Rename to aix_thread_detach.
4281 (ops_resume): Rename to aix_thread_detach.
4282 (ops_wait): Rename to aix_thread_wait.
4283 (ops_kill): Rename to aix_thread_kill.
4284 (init_ops): Rename to init_aix_thread_ops.
4285 (ops_fetch_register): Rename to aix_thread_fetch_register.
4286 (ops_store_register): Rename to aix_thread_store_register.
4287 (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
4288 (ops_thread_alive): Rename to aix_thread_thread_alive.
4289 (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
4290 (ops_pid_to_str): Rename to aix_thread_pid_to_str.
4291 (ops_xfer_memory): Rename to aix_thread_xfer_memory.
4292 (fetch_regs_lib): Rename to fetch_regs_user_thread.
4293 (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
4294 (store_regs_lib): Rename to store_regs_user_thread.
4295 (store_regs_kern): Rename to store_regs_kernel_thread.
4296
4297 2002-07-22 Michael Snyder <msnyder@redhat.com>
4298
4299 * aix-thread.c (ops_prepare_to_store): Eliminate.
4300 (init_ops): Don't initialize ops.prepare_to_store.
4301 (store_regs_kern): Pre-fetch register buffers from child,
4302 because some registers may not be in the cache. Copy
4303 regs from register cache only if they are cached.
4304 (store_regs_lib): Copy regs from register cache only
4305 if they are cached.
4306 (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
4307 fill_gprs64): Ditto.
4308
4309 2002-07-22 Kevin Buettner <kevinb@redhat.com>
4310
4311 * aix-thread.c (gdb_assert.h): Include.
4312 (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
4313 register sizes (from register cache) match size of buffer holding
4314 register data.
4315 (fill_sprs32): Change parameter types to match those in the ptrace()
4316 buffer.
4317 (store_regs_lib): Likewise, but for 32-bit temporary variables.
4318 (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
4319
4320 2002-07-22 Michael Snyder <msnyder@redhat.com>
4321
4322 * aix-thread.c (supply_sprs64): Cosmetic change.
4323 (supply_sprs32): Cosmetic change.
4324 (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
4325 (fill_sprs64): Use regcache_collect instead of read_register.
4326 (store_regs_lib): Use regcache_collect instead of
4327 read_register. Use fill_sprs32 instead of fill_sprs64,
4328 if debugging a 32-bit architecture.
4329 (store_regs_kern): Use fill_gprs64 etc. to pull the values
4330 out of the register cache, instead of passing a pointer into
4331 the register cache directly to ptrace. Use regcache_collect
4332 insteaad of read_register.
4333 (ops_prepare_to_store): Use target_read_registers instead
4334 of read_register_bytes.
4335
4336 2002-07-20 Aidan Skinner <aidan@velvet.net>
4337
4338 * MAINTAINERS: Add self under write after approval.
4339
4340 2002-07-20 Aidan Skinner <aidan@velvet.net>
4341
4342 * ada-tasks.c: Change k&r style function definitions to prototyped
4343 form.
4344
4345 2002-07-19 Andrew Cagney <ac131313@redhat.com>
4346
4347 * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
4348 * x86-64-tdep.c: Include "objfiles.h".
4349 (x86_64_gdbarch_init): Set in_solib_call_trampoline to
4350 in_plt_section. From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
4351
4352 2002-07-17 Michal Ludvig <michal@suse.cz>
4353
4354 * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
4355 (update_context): Initialise cfa variable.
4356
4357 2002-07-17 Michael Snyder <msnyder@redhat.com>
4358
4359 * aix-thread.c: Shorten some long lines.
4360 Bring comments into line with code spec.
4361
4362 2002-07-18 Joel Brobecker <brobecker@gnat.com>
4363
4364 * infrun.c: Re-indent using gdb_indent.sh.
4365
4366 2002-07-18 Joel Brobecker <brobecker@gnat.com>
4367
4368 * infrun.c (handle_inferior_event): Remove unneeded extra brace.
4369 Leave the indentation temporarily untouched, to minimize the diffs.
4370
4371 2002-07-18 Elena Zannoni <ezannoni@redhat.com>
4372
4373 * stabsread.c: Make os9k sections of the code obsolete,
4374 for real this time.
4375 * stabsread.h: Make os9k sections of the code obsolete.
4376
4377 2002-07-18 Michal Ludvig <mludvig@suse.cz>
4378
4379 * linux-low.c (regsets_store_inferior_registers): Add free()
4380 at the end of a loop to prevent memory leak.
4381 * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
4382 (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
4383 * config/sparc/tm-sp64linux.h: Make the rest of #endif
4384 line a comment.
4385 * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
4386
4387 2002-07-17 Jim Blandy <jimb@redhat.com>
4388
4389 * macrocmd.c (info_macro_command): Remove newline from error
4390 message.
4391
4392 2002-07-17 J"orn Rennecke <joern.rennecke@superh.com>
4393
4394 * sh-tdep.c (sh_dsp_register_sim_regno): New function.
4395 (sh_gdbarch_init): Use it for sh-dsp.
4396
4397 2002-07-16 Kevin Buettner <kevinb@redhat.com>
4398
4399 * dwarf2read.c (read_initial_length): Handle older, non-standard,
4400 64-bit DWARF2 format.
4401
4402 2002-07-16 Joel Brobecker <brobecker@gnat.com>
4403
4404 * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
4405 <sys/proc.h> when not available.
4406
4407 2002-07-16 Andrew Cagney <ac131313@redhat.com>
4408
4409 * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
4410 * stabsread.c: Make os9k sections of the code obsolete.
4411 * configure.tgt: Make i[3456]86-*-os9k target obsolete.
4412 * config/i386/i386os9k.mt: Make file obsolete.
4413 * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
4414 (COMMON_OBS): Remove os9kread.o
4415 (SFILES): Remove os9kread.c.
4416 (os9kread.o, remote-os9k.o): Make target obsolete.
4417 * remote-os9k.c: Make file obsolete.
4418 * os9kread.c: Make file obsolete.
4419 * Makefile.in
4420
4421 2002-07-16 Andrew Cagney <ac131313@redhat.com>
4422
4423 * NEWS: Mention that the FR30 has been made obsolete.
4424 * fr30-tdep.c: Make file obsolete.
4425 * config/fr30/tm-fr30.h: Ditto.
4426 * config/fr30/fr30.mt: Ditto.
4427 * configure.tgt: Make fr30-*-elf obsolete.
4428 * MAINTAINERS: Make fr30-elf obsolete.
4429
4430 2002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
4431
4432 * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
4433 found is not inside a section.
4434
4435 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4436
4437 * aix-thread.c (ptrace_check): Use safe_strerror() instead of
4438 strerror().
4439 (pdc_realloc): Use xrealloc() instead of realloc().
4440
4441 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4442
4443 * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
4444 (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
4445 (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
4446 macros.
4447
4448 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4449
4450 * aix-thread.c (ptrace_check): Eliminate goto.
4451 (sync_threadlists): Eliminate gotos. Also, fix array overrun
4452 problem.
4453
4454 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4455
4456 * aix-thread.c (gdbcmd.h): Include.
4457 (DEBUG, DBG, DBG2, dbg): Eliminate.
4458 (debug_aix_thread): New static global.
4459 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
4460 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
4461 (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
4462 invocations to DBG and DBG2 macros to test against
4463 ``debug_aix_thread'' and call fprintf_unfiltered().
4464 (_initialize_aix_thread): Add new command "set debug aix-thread".
4465
4466 2002-07-15 Andrew Cagney <ac131313@redhat.com>
4467
4468 From Gerhard Tonn <TON@de.ibm.com>:
4469 * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
4470 instead of supply_register.
4471
4472 2002-07-15 Andrew Cagney <ac131313@redhat.com>
4473
4474 * dwarf2cfi.c: Include "gdb_assert.h".
4475 (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
4476 non-NULL.
4477 (update_context): Do not use __func__. Add missing ``break''.
4478 (update_context): Do not use __func__.
4479
4480 2002-07-15 Elena Zannoni <ezannoni@redhat.com>
4481
4482 * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
4483 and its setting. Set gdbarch instruction printing functions
4484 directly. For non-rs6000 case use new function
4485 gdb_print_insn_powerpc.
4486 (gdb_print_insn_powerpc): New function.
4487
4488 2002-07-13 Andrew Cagney <ac131313@redhat.com>
4489
4490 * NEWS: Mention that the d30v has been marked obsolete.
4491 * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
4492 * configure.tgt: Mark d30v-*-* as obsolete.
4493 * d30v-tdep.c: Mark file as obsolete.
4494 * config/d30v/d30v.mt: Ditto.
4495 * config/d30v/tm-d30v.h: Ditto.
4496
4497 2002-07-13 Aidan Skinner <aidan@velvet.net>
4498
4499 * ada-tasks.c (add_task_entry): replace calls to
4500 malloc() with xmalloc
4501 * ada-tasks.c (init_task_list): replace calls to free with xfree()
4502
4503 * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
4504 ada_finish_decode_line_1, all_sals_for_line
4505 ada_breakpoint_rewrite): replace calls to free() with xfree()
4506
4507 2002-07-12 Kevin Buettner <kevinb@redhat.com>
4508
4509 From Nicholas Duffek (with minor changes by Martin Hunt,
4510 Louis Hamilton, and Kevin Buettner):
4511 * aix-thread.c: New file.
4512
4513 2002-07-12 Petr Sorfa <petrs@caldera.com>
4514
4515 * dwarf2read.c (dwarf2_invalid_attrib_class): New
4516 complaint for invalid attribute class or form.
4517 (read_func_scope): DW_AT_frame_base
4518 better handling of DW_AT_block*.
4519 (dwarf2_add_member_fn): DW_AT_vtable_elem_location
4520 better handling of DW_AT_block*.
4521 (read_common_block): DW_AT_location
4522 better handling of DW_AT_block*.
4523 (read_partial_die): DW_AT_location better handling
4524 of DW_AT_block*.
4525 (new_symbol): DW_AT_external better handling of
4526 DW_AT_block*. Proper initialization of variable
4527 "addr".
4528 (attr_form_is_block): New function that returns true
4529 if the attribute's form is of DW_FORM_block*.
4530
4531 2002-07-12 Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
4532
4533 * valops.c (find_method_list): Remove comment about
4534 removed STATIC_MEMFUNCP argument.
4535 (value_find_oload_method_list): Likewise.
4536
4537 2002-07-12 Kevin Buettner <kevinb@redhat.com>
4538
4539 From Nicholas Duffek:
4540 * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
4541 target_new_objfile_hook.
4542
4543 2002-07-12 Kevin Buettner <kevinb@redhat.com>
4544
4545 From Nicholas Duffek:
4546 * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
4547 csect.
4548
4549 2002-07-12 Andrew Cagney <cagney@redhat.com>
4550
4551 * MAINTAINERS: Mention --enable-sim-build-warnings.
4552 (m68hc11-elf): Disable sim build warnings.
4553 (m32r-elf): Mark as broken obsolete candidate.
4554 (x86_64-linux-gnu): Mark as buildable with -Werror.
4555 (arm-elf): Change -w to ``,'' which enables warnings but not
4556 -Werror.
4557
4558 2002-07-12 Andrew Cagney <ac131313@redhat.com>
4559
4560 * bcache.h: Update copyright.
4561 (struct bstring, struct bcache): Move definition to "bcache.c".
4562 Replaced by opaque declaration.
4563 (bcache_xfree): Replace free_bcache.
4564 (bcache_xmalloc, bcache_memory_used): Declare.
4565
4566 * bcache.c: Update copyright.
4567 (struct bstring, struct bcache): Moved to here from "bcache.h".
4568 Update comments.
4569 (bcache_xmalloc, bcache_memory_used): New functions.
4570 (bcache_xfree): Replace function free_bcache.
4571
4572 * Makefile.in (objfiles.o): Add $(bcache_h).
4573 (objfiles_h): Remove $(bcache_h).
4574 (symfile.o): Add $(bcache_h).
4575
4576 * symmisc.c: Update copyright.
4577 (print_symbol_bcache_statistics): Pass psymbol_cache by value.
4578 (print_objfile_statistics): Use bcache_memory_used.
4579
4580 * symfile.c: Include "bcache.h".
4581 (reread_symbols): Use bcache_xfree.
4582 (reread_symbols): Use bcache_xmalloc and bcache_xfree.
4583 (add_psymbol_to_list): Pass psymbol_cache by value.
4584 (add_psymbol_with_dem_name_to_list): Ditto.
4585
4586 * objfiles.h: Update copyright.
4587 (struct bcache): Declare opaque. Do not include "bcache.h".
4588 (struct objfile): Change psymbol_cache and macro_cache to ``struct
4589 bcache'' pointers.
4590 * dwarf2read.c (macro_start_file): Pass macro_cache by value.
4591
4592 * objfiles.c: Include "bcache.h". Update copyright.
4593 (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
4594 macro_cache.
4595 (free_objfile): Use bcache_xfree.
4596
4597 2002-07-11 Grace Sainsbury <graces@redhat.com>
4598
4599 * monitor.c (monitor_fetch_register): Make name a constant.
4600 (monitor_store_register): Same.
4601
4602 2002-07-11 Daniel Jacobowitz <drow@mvista.com>
4603
4604 Based on patch from Daniel Berlin <dberlin@dberlin.org>.
4605 * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
4606 (finish_block) For non-function blocks, hash the symbol table. For
4607 function blocks, mark the symbol table as unhashed.
4608 * minsyms.c (msymbol_hash): Return hash value without taking modulus.
4609 (msymbol_hash_iw): Likewise.
4610 (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
4611 value.
4612 (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
4613 (lookup_minimal_symbol): Likewise for both.
4614 * symtab.h (struct block): Add `hashtable' flag. Comment the
4615 hashtable.
4616 (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
4617 (ALL_BLOCK_SYMBOLS): Update.
4618 (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
4619 (struct symbol): Add `hash_next' pointer.
4620 * symtab.c (lookup_block_symbol): Search using the hash table when
4621 possible.
4622 (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
4623 (search_symbols, find_addr_symbol): Likewise.
4624
4625 * dstread.c (process_dst_block): Clear hashtable bit for new block.
4626 (read_dst_symtab): Likewise.
4627 * jv-lang.c (get_java_class_symtab): Likewise.
4628 * mdebugread.c: Include "gdb_assert.h".
4629 (shrink_block): Assert that the block being modified is not hashed.
4630 * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
4631 * symmisc.c (free_symtab_block): Walk the hash table when freeing
4632 symbols.
4633 (dump_symtab): Recognize hashed blocks.
4634 * printcmd.c (print_frame_args): Assert that function blocks do not
4635 have hashed symbol tables.
4636 * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
4637 (fill_in_ada_prototype, debug_print_block): Likewise.
4638 (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS. Handle hash tables.
4639
4640 2002-07-11 Corinna Vinschen <vinschen@redhat.com>
4641
4642 * stack.c (print_frame): Use result of frame_address_in_block()
4643 instead of fi->pc when evaluating symbols.
4644 (backtrace_command_1): Ditto.
4645
4646 2002-07-11 Andrew Cagney <cagney@redhat.com>
4647
4648 * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
4649 Make static.
4650
4651 * arm-tdep.c (arm_register_name): Make return type constant.
4652
4653 2002-07-10 Andrew Cagney <ac131313@redhat.com>
4654
4655 * win32-nat.c (has_detach_ability): Convert to strict ISO C
4656 prototype.
4657 * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
4658 * s390-tdep.c (s390_fp_regnum): Ditto.
4659 (s390_read_fp): Ditto.
4660 (s390_pop_frame): Ditto.
4661 (_initialize_s390_tdep): Ditto.
4662 * remote.c (get_remote_state): Ditto.
4663 * procfs.c (mappingflags): Ditto.
4664 * memattr.c (_initialize_mem): Ditto.
4665 * mcore-tdep.c (mcore_pop_frame): Ditto.
4666 * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
4667 * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
4668 * language.c (set_case_str): Ditto.
4669 * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
4670 * frv-tdep.c (new_variant): Ditto.
4671 (frv_stopped_data_address): Ditto.
4672 * dwarf2cfi.c (fde_chunks_need_space): Ditto.
4673 (context_alloc): Ditto.
4674 (frame_state_alloc): Ditto.
4675 (unwind_tmp_obstack_init): Ditto.
4676 (unwind_tmp_obstack_free): Ditto.
4677 (cfi_read_fp): Ditto.
4678 * cris-tdep.c (cris_saved_pc_after_call): Ditto.
4679 (cris_pop_frame): Ditto.
4680 * c-lang.c (scanning_macro_expansion): Ditto.
4681 (finished_macro_expansion): Ditto.
4682 (c_preprocess_and_parse): Ditto.
4683 * gdbarch.sh: Ditto.
4684 * gdbarch.h, gdbarch.c: Regenerate.
4685 * config/mn10200/tm-mn10200.h: Adjust indentation.
4686 * target.c: Adjust indentation.
4687 * symtab.h: Adjust indentation.
4688 * stabsread.h: Adjust indentation.
4689 * remote-es.c: Adjust indentation.
4690 * os9kread.c: Adjust indentation.
4691
4692 2002-07-10 Andrew Cagney <ac131313@redhat.com>
4693
4694 * wince.c (_initialize_wince): Rename _initialize_inftarg.
4695 * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
4696
4697 2002-07-10 Grace Sainsbury <graces@redhat.com>
4698
4699 * NEWS: Mention m68k, mcore multi-arching.
4700 * MAINTAINERS: Change status of m68k, mcore to reflect
4701 multi-arching.
4702
4703 2002-07-10 Daniel Jacobowitz <drow@mvista.com>
4704
4705 * valops.c (find_overload_match): Free oload_syms.
4706
4707 2002-07-09 Joel Brobecker <brobecker@gnat.com>
4708
4709 Define HAVE_SYS_PROC_H if sys/proc.h exists
4710 * configure.in: Add check for sys/proc.h
4711 * config.in: Regenerate.
4712 * configure: Regenerate.
4713
4714 2002-07-09 Grace Sainsbury <graces@redhat.com>
4715
4716 * config/m68k/tm-m68k.h: Remove macros wrapped in
4717 #if !GDB_MULTI_ARCH.
4718
4719 2002-07-08 Andrew Cagney <ac131313@redhat.com>
4720
4721 * config.in, configure: Regenerate.
4722
4723 2002-07-08 Mark Kettenis <kettenis@gnu.org>
4724
4725 * dwarf2cfi.c: Include "gcore.h".
4726 (execute_stack_op): Fix implementation of the
4727 DW_OP_deref and DW_OP_deref_size operators by letting do their
4728 lookup in the target.
4729
4730 2002-07-07 Mark Kettenis <kettenis@gnu.org>
4731
4732 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
4733 * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
4734 tdep->sc_sp_offset.
4735
4736 2002-07-05 Daniel Jacobowitz <drow@mvista.com>
4737
4738 Fix PR gdb/595, gdb/602
4739 * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
4740 Don't call value_cast, just read the vtable pointer; update comments
4741 to match.
4742
4743 2002-07-05 Grace Sainsbury <graces@redhat.com>
4744
4745 * config/mcore/tm-mcore.h: Remove file.
4746 * config/mcore/mcore.mt: Remove definition of TM_FILE
4747 * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
4748
4749 2002-07-05 Mark Kettenis <kettenis@gnu.org>
4750
4751 * i386bsd-tdep.c: Include "gdb_string.h".
4752
4753 2002-07-04 Grace Sainsbury <graces@redhat.com>
4754
4755 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
4756 (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
4757 mcore-tdep.
4758 (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
4759 (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
4760 * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
4761 (RETVAL_REGNUM): Move macros from tm-mcore.h
4762 (mcore_reg_struct_has_addr): New function.
4763 (mcore_gdbarch_init): Added initializations for the macros removed
4764 from tm-mcore.h.
4765
4766 2002-07-04 Mark Kettenis <kettenis@gnu.org>
4767
4768 * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
4769 traditonal string branding within the ELF header.
4770
4771 2002-07-04 Daniel Jacobowitz <drow@mvista.com>
4772
4773 * symtab.c (remove_params): New function.
4774 (make_symbol_overload_list): Use it instead of cplus_demangle.
4775 (overload_list_add_symbol): Likewise. Reorder. Fix memory leak.
4776
4777 2002-07-04 Mark Kettenis <kettenis@gnu.org>
4778
4779 * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
4780
4781 * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
4782 New variables.
4783 (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
4784 and tdep->sigtramp_end.
4785 * i386obsd-nat.c: New file.
4786 * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
4787
4788 * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
4789 Don't call get_current_frame().
4790
4791 2002-07-04 Pierre Muller <muller@ics.u-strasbg.fr>
4792
4793 * i386-nat.c (child_post_startup_inferior): New function
4794 calling i386_cleanup_dregs if
4795 I386_USE_GENERIC_WATCHPOINTS is defined.
4796 * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
4797 conditional to acknowledge that i386-nat.c has its
4798 own child_post_startup_inferior function.
4799
4800 2002-07-04 Mark Kettenis <kettenis@gnu.org>
4801
4802 * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
4803 * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
4804 instead of MAX_REGISTER_RAW_SIZE.
4805 (i386_extract_return_value, i386_extract_struct_value_address):
4806 Convert to use regcache.
4807 (i386_gdbarch_init): Set max_register_raw_size and
4808 max_register_virtual_size to I386_MAX_REGISTER_SIZE.
4809 Set extract_return_value and extract_struct_value_address instead
4810 of their deprecated variants.
4811
4812 Convert i386 target to generic dummy frames.
4813 * i386-tdep.c: Include "symfile.h".
4814 (i386_frameless_signal_p): Consider a function to be frameless if
4815 the pc points at the first instruction of the function.
4816 (i386_frame_chain): Handle (generic) call dummies.
4817 (i386_frame_saved_pc): Likewise.
4818 (i386_frame_init_saved_regs): Remove code dealing with call
4819 dummies on the stack.
4820 (i386_push_dummy_frame): Removed.
4821 (i386_call_dummy_words): Removed.
4822 (i386_fix_call_dummy): Removed.
4823 (i386_push_return_address): New function.
4824 (i386_do_pop_frame): Renamed from i386_pop_frame. Add FRAME
4825 parameter, and don't call get_current_frame.
4826 (i386_pop_frame): New function.
4827 (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
4828 call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
4829 entry_point_address, set call_dummy_breakpoint_offset to 0, set
4830 call_dummy_length to 0, set call_dummy_words to NULL, set
4831 sizeof_call_dummy_words to 0, set fix_call_dummy to
4832 generic_fix_call_dummy, set pc_in_call_dummy to
4833 pc_in_call_dummy_at_entry_point, set push_dummy_frame to
4834 generic_push_dummy_frame, set push_return_address to
4835 i386_push_return_address and set frame_chain_valid to
4836 generic_file_frame_chain_valid.
4837
4838 2002-07-03 Andrew Cagney <ac131313@redhat.com>
4839
4840 * gdbarch.sh (struct regcache): Add opaque declaration.
4841 (EXTRACT_RETURN_VALUE): New architecture method.
4842 (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
4843 * gdbarch.h, gdbarch.c: Regenerate.
4844 * arch-utils.c (legacy_extract_return_value): New function.
4845 * arch-utils.h (legacy_extract_return_value): Declare.
4846 * values.c (value_being_returned): Re-enable code handling
4847 EXTRACT_STRUCT_VALUE_ADDRESS. Move
4848 deprecated_grub_regcache_for_registers call to block handling
4849 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
4850 (EXTRACT_RETURN_VALUE): Do not define.
4851
4852 2002-07-03 Grace Sainsbury <graces@redhat.com>
4853
4854 * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
4855 (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
4856 (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
4857 (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
4858 (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
4859 (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
4860 (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
4861 (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
4862 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
4863 (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
4864 * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
4865 argument so the function fits the prototype in the architecture
4866 vector.
4867 (mcore_pop_frame): Remove argument so the function fits the
4868 prototype. Use get_current_frame instead of the argument.
4869 (mcore_push_arguments): Change type of struct_return so the
4870 function can be used in the architecture vector.
4871 (mcore_store_struct_return): Add.
4872 (mcore_frame_init_saved_regs): Add.
4873 (mcore_gdbarch_init): Add function calls to replace the macros
4874 removed from tm-mcore.h
4875
4876 2002-07-03 Andrew Cagney <ac131313@redhat.com>
4877
4878 * infcmd.c (print_return_value): Remove compatibility code calling
4879 deprecated_grub_regcache_for_registers.
4880
4881 * values.c: Include "regcache.h".
4882 (value_being_returned): Update. Use
4883 deprecated_grub_regcache_for_registers to extract the register
4884 buffer address.
4885 * value.h (value_being_returned): Change ``retbuf'' parameter to a
4886 ``struct regcache''.
4887 * Makefile.in (values.o): Add dependency on $(regcache_h).
4888
4889 * inferior.h (run_stack_dummy): Change type of second parameter to
4890 a ``struct regcache''.
4891 * valops.c (hand_function_call): Change type of retbuf to ``struct
4892 regcache''. Allocate using regcache_xmalloc, clean using
4893 make_cleanup_regcache_xfree.
4894 * infcmd.c (run_stack_dummy): Update. Use
4895 regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
4896
4897 * regcache.c (do_regcache_xfree): New function.
4898 (make_cleanup_regcache_xfree): New function.
4899 * regcache.h (make_cleanup_regcache_xfree): Declare.
4900
4901 2002-07-03 Martin M. Hunt <hunt@redhat.com>
4902
4903 * event-top.c (command_line_handler): Don't read past
4904 beginning of buffer.
4905
4906 2002-07-03 Martin M. Hunt <hunt@redhat.com>
4907
4908 * varobj.c (struct varobj_root): Change frame from CORE_ADDR to
4909 struct frame_id.
4910 (varobj_create): Store frame_id for root.
4911 (varobj_gen_name): Use xasprintf.
4912 (varobj_update): Save and restore frame using get_frame_id() and
4913 frame_find_by_id().
4914 (create_child): Use xasprintf.
4915 (new_root_variable): Initialize frame_id.
4916 (c_name_of_child): Use xasprintf. Call find_frame_by_id().
4917 (c_value_of_variable): Use xasprintf. Move mem_fileopen call
4918 to prevent memory leak.
4919
4920 2002-07-03 Andrew Cagney <ac131313@redhat.com>
4921
4922 * valops.c (hand_function_call): Move declaration of retbuf to
4923 start of function, allocate using malloc, add a cleanup but before
4924 the inf_status cleanup, cleanup the buffer. Rename local variable
4925 old_chain to inf_status_cleanup.
4926
4927 2002-07-03 Martin M. Hunt <hunt@redhat.com>
4928
4929 * top.c (execute_command): Use cmd_func() and cmd_func_p().
4930
4931 * cli/cli-decode.c (cmd_func_p): New function.
4932 (cmd_func): New function.
4933
4934 * command.h: Add cmd_func() and cmd_func_p().
4935
4936 2002-07-03 Grace Sainsbury <graces@redhat.com>
4937
4938 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
4939 (REGISTER_SIZE): Remove.
4940 (MAX_REGISTER_RAW_SIZE): Remove.
4941 (REGISTER_VIRTUAL_TYPE): Remove.
4942 (MAX_REGISTER_VIRTUAL_SIZE): Remove.
4943 (REGISTER_NAME): Remove.
4944 (USE_GENERIC_DUMMY_FRAMES): Remove.
4945 (CALL_DUMMY): Remove.
4946 (CALL_DUMMY_START_OFFSET): Remove.
4947 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
4948 (CALL_DUMMY_LOCATION): Remove.
4949 (FIX_CALL_DUMMY): Remove.
4950 (CALL_DUMMY_ADDRESS): Remove.
4951 (SIZEOF_CALL_DUMMY_WORDS): Remove.
4952 (SAVE_DUMMY_FRAME_TOS): Remove.
4953 * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
4954 (mcore_register_virtual_type): New function.
4955 (mcore_register_byte): New function.
4956 (mcore_register_size): New function.
4957 (mcore_register_name): New function.
4958 (mcore_gdbarch_init): New function. Add set_gdbarch calls for
4959 macros removed from tm-mcore.h.
4960 (mcore_dump_tdep): Add.
4961 (_initialize_mcore_tdep): Add gdbarch_register call.
4962
4963 2002-07-03 Mark Kettenis <kettenis@gnu.org>
4964
4965 * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
4966 frameless_look_for_prologue, such that we actually call this
4967 function.
4968
4969 2002-07-02 Joel Brobecker <brobecker@gnat.com>
4970
4971 * frame.h (frame_address_in_block): New function.
4972
4973 * blockframe.c (frame_address_in_block): New function extracted
4974 from get_frame_block().
4975 (get_frame_block): Use frame_address_in_block().
4976 (block_innermost_frame): Use frame_address_in_block() to match
4977 the frame pc address against the block boundaries rather than
4978 the frame pc directly. This prevents a failure when a frame pc
4979 is actually a return-address pointing immediately after the end
4980 of the given block.
4981
4982 2002-07-02 Grace Sainsbury <graces@redhat.com>
4983
4984 * MAINTAINERS: Add self under write after approval.
4985
4986 2002-07-02 Grace Sainsbury <graces@redhat.com>
4987
4988 * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
4989 used in architecture vector. The default is
4990 m68k_local_breakpoint_from_pc.
4991 (m68k_local_breakpoint_from_pc): Add.
4992 (enum): Add register numbers from tm-m68k.h.
4993 (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
4994 vector.
4995 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
4996 GDB_MULTI_ARCH_PARTIAL.
4997 (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
4998 (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
4999 m68k-tdep.c.
5000 (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
5001 (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
5002 to enum in m68k-tdep.c
5003
5004 2002-07-02 Joel Brobecker <brobecker@gnat.com>
5005
5006 * solib-osf.c (open_map): Compute the list of shared libraries
5007 loaded by the inferior, rather than the list of libraries loaded
5008 by GDB itself. Otherwise, GDB ends up reading the symbols from
5009 the wrong shared libraries...
5010
5011 2002-07-02 Mark Kettenis <kettenis@gnu.org>
5012
5013 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
5014 (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
5015 macros.
5016 (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
5017 Remove functions.
5018 (FRAMELESS_SIGNAL): Remove function.
5019 (i386_linux_frame_chain, i386_linux_frame_saved_pc,
5020 i386_linux_saved_pc_after_call): Removed.
5021 (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
5022 tdep->sc_pc_offset and tdep->sc_sp_offset. Don't override
5023 frame_chain, frame_saved_pc and saved_pc_after_call any longer.
5024
5025 * i386-tdep.c (i386_frameless_signal_p): New function.
5026 (i386_frame_chain): Deal with frameless signals.
5027 (i386_sigtramp_saved_sp): New function.
5028 (i386_frame_saved_pc): Deal with frameless signals.
5029 (i386_saved_pc_after_call): Make sure the correct value is
5030 returned just after entry into a sigtramp.
5031 * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
5032 i386fbsd4_sc_sp_offset): New variables.
5033 (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
5034 these variables to initialize tdep->sc_sp_offset. * i386bsd-nat.c
5035 (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
5036 similiar to what we already did for sc_pc_offset.
5037 * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
5038 tdep->sc_sp_offset.
5039
5040 * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
5041
5042 2002-07-02 Michal Ludvig <mludvig@suse.cz>
5043
5044 * config/i386/tm-x86-64linux.h: New.
5045 * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
5046 definitions.
5047 * config/i386/nm-x86-64.h: Rename to ...
5048 * config/i386/nm-x86-64linux.h: ... this one.
5049 * config/i386/x86-64linux.mh: Reflect the above change.
5050
5051 2002-07-01 Mark Kettenis <kettenis@gnu.org>
5052
5053 * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
5054 with sigcontext_addr. Add sc_sp_offset.
5055 (i386bsd_sigtramp_saved_pc): Remove prototype.
5056 (i386bsd_sicontext_addr): Add prototype.
5057 * i386-tdep.c (i386_sigtramp_saved_pc): New function.
5058 (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
5059 (i386_svr4_sigtramp_saved_pc): Removed.
5060 (i386_svr4_sigcontext_addr): New function.
5061 (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
5062 Initialize tdep->sigcontext_addr instead. Initialize
5063 tdep->sc_pc_offset and tdep->sc_sp_offset.
5064 (i386_gdbarch_init): Likewise.
5065 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
5066 any more.
5067 (i386bsd_sigtramp_saved_pc): Remove function.
5068 (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
5069 Initialize tdep->sigcontext_addr instead. Initialize
5070 tdep->sc_pc_offset.
5071 * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
5072 of tdep->sigtramp_saved_pc.
5073 * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
5074 tdep->sigtramp_saved_pc. Initialize tdep->sigcontext_addr
5075 instead.
5076
5077 * i386-tdep.c (i386_frameless_function_invocation,
5078 i386_frame_num_args, i386_frame_init_saved_regs,
5079 i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
5080 i386_pop_frame, i386_push_arguments, i386_store_struct_return,
5081 i386_extract_return_value, i386_store_return_value,
5082 i386_extract_struct_value_address, i386_register_virtual_type,
5083 i386_register_convertible, i386_register_convert_to_virtual,
5084 i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
5085 i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
5086 static.
5087
5088 2002-07-01 Mark Kettenis <kettenis@gnu.org>
5089
5090 * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
5091
5092 * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
5093 * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
5094 this macro. Include "value.h".
5095
5096 2002-06-30 Aidan Skinner <aidan@velvet.net>
5097
5098 * ada-exp.tab.c: remove as it's a generated file
5099 * ada-lex.c: remove as it's a generated file
5100
5101 2002-06-30 Mark Kettenis <kettenis@gnu.org>
5102
5103 * config/i386/tm-i386.h (struct frame_info, struct
5104 frame_saved_regs, struct value, struct type): Remove forward
5105 declarations.
5106
5107 * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
5108 (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
5109 * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
5110 (FILL_FPXREGSET): Define.
5111
5112 * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
5113
5114 * configure.tgt (i[3456]86-*-openbsd*): Fold into
5115 i[3456]86-*-netbsd* case.
5116 * config/i386/tm-obsd.h: Removed.
5117 * config/i386/obsd.mt: Removed.
5118 * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
5119 core-aout.o.
5120 (MH_CFLAGS): Add -DYYDEBUG=0.
5121
5122 * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
5123 i386nbsd_sc_pc_offset on OpenBSD too.
5124
5125 * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
5126 (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
5127 * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
5128 define.
5129 * i386bsd-tdep.c: Include "arch-utils.h".
5130 (i386bsd_aout_in_solib_call_trampoline): New function.
5131 (i386bsd_init_abi): Set in_solib_call_trampoline to
5132 i386bsd_aout_in_solib_call_trampoline.
5133 (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
5134 in_solib_call_trampoline to generic_in_solib_call_trampoline.
5135
5136 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5137
5138 * macrotab.h: Do not include "obstack.h" or "bcache.h".
5139 (struct obstack, struct bcache): Add opaque declarations.
5140 * Makefile.in (macrotab_h): Update
5141
5142 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5143
5144 * blockframe.c (generic_find_dummy_frame): Change return type to
5145 ``struct regcache''.
5146 (struct dummy_frame): Replace field ``registers'' with regcache, a
5147 struct regcache object.
5148 (generic_find_dummy_frame): Update.
5149 (generic_push_dummy_frame): Update. Use regcache_xfree,
5150 regcache_xmalloc and regcache_cpy.
5151 (generic_pop_dummy_frame): Update. Use regcache_cpy and
5152 regcache_xfree.
5153 (deprecated_generic_find_dummy_frame): Update.
5154 (generic_read_register_dummy): Update. Use
5155 regcache_read_as_address.
5156 (generic_call_dummy_register_unwind): Update. Use regcache_read.
5157 (generic_get_saved_register): Update. Use regcache_read.
5158
5159 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5160
5161 * Makefile.in (objfiles_h): Add $(bcache_h).
5162 * objfiles.h: Include "bcache.h".
5163
5164 * Makefile.in (symtab_h): Remove $(bcache_h).
5165 * symtab.h: Do not include "bcache.h".
5166
5167 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5168
5169 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
5170 generic_func_frame_chain_valid.
5171
5172 2002-06-28 David O'Brien <obrien@FreeBSD.org>
5173
5174 * config/i386/nm-fbsd.h: Include <sys/param.h>.
5175 * config/i386/tm-fbsd.h: Likewise.
5176
5177 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5178
5179 * rs6000-tdep.c (rs6000_gdbarch_init): Use
5180 generic_unwind_get_saved_register.
5181
5182 2002-06-27 Andrew Cagney <ac131313@redhat.com>
5183
5184 From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
5185 * regcache.c (supply_register): Add missing argument to
5186 register_buffer call.
5187
5188 2002-06-27 Andrew Cagney <ac131313@redhat.com>
5189
5190 * Makefile.in (init.c): Drop -e option to grep. Not necessary and
5191 Solaris /bin/grep does not not like it. From Peter Schauer.
5192
5193 2002-06-26 Tom Tromey <tromey@redhat.com>
5194
5195 * command.h (add_setshow_cmd): Declare.
5196 (add_setshow_cmd_full): Declare.
5197 * cli/cli-decode.c (add_setshow_cmd): No longer static. Now
5198 returns void. Use add_setshow_cmd_full.
5199 (add_setshow_cmd_full): New function.
5200 (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
5201 (add_setshow_boolean_cmd): Likewise.
5202
5203 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5204
5205 * config/vax/tm-vax.h: Protect from multiple inclusion.
5206 (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
5207 (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
5208 * config/vax/tm-vaxbsd.h: ...here. New file.
5209 * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
5210
5211 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5212
5213 * config/vax/tm-vax.h (BREAKPOINT): Remove.
5214 (BELIEVE_PCC_PROMOTION): Remove.
5215 (AP_REGNUM): Move to...
5216 * config/vax/nm-vax.h: ...here.
5217 * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
5218 (vax_breakpoint_from_pc): New function.
5219 (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
5220 and gdbarch_believe_pcc_promotion.
5221
5222 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5223
5224 * Makefile.in (vax_tdep_h): Define.
5225 (vax-tdep.o): Use $(vax_tdep_h).
5226 * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
5227 (vax_dump_tdep): New function.
5228 (_initialize_vax_tdep): Register vax_dump_tdep.
5229 * vax-tdep.h: Include osabi.h.
5230 (struct gdbarch_tdep): New.
5231
5232 2002-06-26 Andrew Cagney <cagney@redhat.com>
5233
5234 * frame.h (deprecated_generic_find_dummy_frame): Rename
5235 generic_find_dummy_frame.
5236 * blockframe.c (generic_find_dummy_frame): Make static.
5237 (deprecated_generic_find_dummy_frame): New function.
5238 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
5239 generic_find_dummy_frame with deprecated_find_dummy_frame.
5240 (sh64_nofp_frame_init_saved_regs): Ditto.
5241 (sh_fp_frame_init_saved_regs): Ditto.
5242 * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
5243 (s390_frame_chain): Ditto.
5244 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
5245
5246 2002-06-26 Grace Sainsbury <graces@redhat.com>
5247
5248 * config/m68k/tm-m68k.h: Rearrange code so macros not in the
5249 gdbarch vector are at the top.
5250 (NUM_REGS): Remove.
5251 (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
5252 (FRAME_ARGS_ADDRESS): Remove.
5253 (FRAME_LOCALS_ADDRESS): Remove.
5254 (FRAME_NUM_ARGS): Remove.
5255 (FRAME_ARGS_SKIP): Remove.
5256 * m68k-tdep.c (enum): Add eumeration of special register numbers.
5257 (m68k_gdbarch_init): Add gdbarch initializations for macros
5258 undefined in tm-m68k.h
5259
5260 2002-06-26 Grace Sainsbury <graces@redhat.com>
5261
5262 * monitor.h: Add the function regname to monitor_ops
5263 structure. This way NUM_REGS does not have to be a constant.
5264 * monitor.c (monitor_fetch_register): Added support for regname
5265 function. The function is called if the array regnames is NULL.
5266 (monitor_store_register): Same.
5267 * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
5268 regnames array.
5269 (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
5270 cpu32bug_cmds.regname to point to new function.
5271 * abug-rom.c (abug_regname): Same as above.
5272 (init_abug_cmds): Same.
5273 * dbug-rom.c (dbug_regname): Same as above.
5274 (init_dbug_cmds): Same.
5275 * remote-est.c (est_regname): Same.
5276 (init_est_cmds): Same.
5277 * rom68k-rom.c (rom68k_regname): Same.
5278 (init_rom68k_cmds): Same.
5279
5280 2002-06-25 Tom Tromey <tromey@redhat.com>
5281
5282 * breakpoint.c (delete_command): Don't repeat `delete' commands.
5283
5284 2002-06-25 Andrew Cagney <cagney@redhat.com>
5285
5286 * infrun.c (stop_registers): Change variable's type to ``struct
5287 regcache'''.
5288 (xmalloc_inferior_status): Delete function.
5289 (free_inferior_status): Delete function.
5290 (normal_stop): Use regcache_cpy.
5291 (struct inferior_status): Change type of fields ``stop_registers''
5292 and ``registers'' to ``struct regcache''.
5293 (write_inferior_status_register): Use regcache_write.
5294 (save_inferior_status): Instead of calling
5295 xmalloc_inferior_status, allocate the inf_status buffer directly.
5296 Use regcache_dup_no_passthrough and regcache_dup to save the
5297 buffers.
5298 (restore_inferior_status): Use regcache_xfree and regcache_cpy.
5299 Replace the stop_registers regcache instead of overriding it. Use
5300 regcache_xfree. Instead of calling free_inferior_status, xfree
5301 the buffer directly.
5302 (discard_inferior_status): Use regcache_xfree. Instead of calling
5303 free_inferior_status, xfree the buffer directly.
5304 (build_infrun): Use regcache_xmalloc.
5305 (_initialize_infrun): Delete redundant call to build_infrun.
5306
5307 * Makefile.in (infcmd.o): Add $(regcache_h).
5308
5309 * infcmd.c: Include "regcache.h".
5310 (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
5311 obtain the address of `stop_registers' register buffer.
5312 (print_return_value): Ditto.
5313
5314 * inferior.h (struct regcache): Add opaque declaration.
5315 (stop_registers): Change variable's declared type to ``struct
5316 regcache''.
5317
5318 2002-06-24 Tom Tromey <tromey@redhat.com>
5319
5320 * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
5321 * target.c (initialize_targets): Fixed typo in
5322 trust-readonly-sections `show' documentation.
5323
5324 * main.c: Marked all strings with _().
5325
5326 2002-06-24 Don Howard <dhoward@redhat.com>
5327
5328 * memattr.c (create_mem_region): Treat hi == 0 as a special case
5329 that means max CORE_ADDR+1.
5330 (lookup_mem_region): Ditto.
5331 (mem_info_command): Ditto.
5332
5333 2002-06-24 Grace Sainsbury <graces@redhat.com>
5334
5335 * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
5336 (REGISTER_BYTES_OK): Remove.
5337 (REGISTER_BYTES): Remove.
5338 (STORE_STRUCT_RETURN): Remove.
5339 (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
5340 (STORE_RETURN_VALUE): Remove.
5341 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
5342 (FRAME_CHAIN): Remove.
5343 (FRAMELESS_FUNCTION_INVOCATION): Remove.
5344 (FRAME_SAVED_PC): Remove.
5345 * m68k-tdep.c (m68k_register_bytes_ok):Add.
5346 (m68k_store_struct_return): Add.
5347 (m68k_deprecated_extract_return_value): Add.
5348 (m68k_deprecated_extract_struct_value_address): Add.
5349 (m68k_store_return_value): Add.
5350 (m68k_frame_chain): Add.
5351 (m68k_frameless_function_invocation): Add.
5352 (m68k_frame_saved_pc): Add.
5353 (m68k_gdbarch_init): added set_gdbarch calls for new
5354 functions and deleted macros.
5355
5356 2002-06-23 Tom Tromey <tromey@redhat.com>
5357
5358 * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
5359 (ALLDEPFILES): Likewise.
5360 (udiheaders): Removed.
5361 (udip2soc.o): Likewise.
5362 (udi2go32.o): Likewise.
5363 (udr.o): Likewise.
5364 (HFILES_WITH_SRCDIR): Don't mention udiheaders.
5365
5366 2002-06-22 Andrew Cagney <ac131313@redhat.com>
5367
5368 * infrun.c (_initialize_infrun): Delete unnecessary call to
5369 build_infrun.
5370
5371 * regcache.h: Update comments describing the regcache_cpy family
5372 of functions.
5373 (regcache_save, regcache_restore): Delete declaration.
5374 (regcache_save_no_passthrough): Delete declaration.
5375 (regcache_restore_no_passthrough): Delete declaration.
5376 * regcache.c (regcache_save): Delete function.
5377 (regcache_save_no_passthrough): Delete function.
5378 (regcache_restore): Delete function.
5379 (regcache_restore_no_passthrough): Delete function.
5380
5381 2002-06-21 Andrew Cagney <ac131313@redhat.com>
5382
5383 * config/m68k/tm-m68k.h: Fix typo.
5384 (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
5385 (m68k_frame_init_saved_regs): Declare.
5386
5387 2002-06-21 Jim Blandy <jimb@redhat.com>
5388
5389 Remove some vestiges of Harris 88k support.
5390 * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
5391 register numbering quirk.
5392 * elfread.c (elf_symtab_read): Remove `#if' block for skipping
5393 odd symbols occurring in Harris 88k ELF targets.
5394
5395 2002-06-21 Tom Tromey <tromey@redhat.com>
5396
5397 * gdb_locale.h: New file.
5398 * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
5399 (defs_h): Added gdb_locale.h.
5400 * configure, config.in: Rebuilt.
5401 * configure.in (PACKAGE): Define.
5402 * defs.h: Include gdb_locale.h.
5403 * main.c (captured_main): Call setlocale, bindtextdomain,
5404 textdomain.
5405
5406 2002-06-21 Dave Brolley <brolley@redhat.com>
5407
5408 From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
5409 * config/frv/frv.mt: New file.
5410 * config/frv/tm-frv.h: New file.
5411 * configure.tgt: Support frv-*-*.
5412 * Makefile.in (frv-tdep.o): New target.
5413 * frv-tdep.c: New file.
5414 * NEWS: Mention frv.
5415
5416 2002-06-21 Dave Brolley <brolley@redhat.com>
5417
5418 * MAINTAINERS: Add self to "Write After Approval" list.
5419
5420 2002-06-21 Grace Sainsbury <graces@redhat.com>
5421
5422 * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
5423 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
5424 (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
5425 (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
5426 (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
5427
5428 * m68k-tdep.c: Include arch-utils.h
5429 (m68k_register_raw_size): Add.
5430 (m68k_register_virtual_size): Add.
5431 (m68k_register_virtual_type): Add.
5432 (m68k_register_name): Add.
5433 (m68k_stack_align): Add.
5434 (m68k_register_byte): Add.
5435 (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
5436 tm-m68k.h.
5437
5438 2002-06-21 Grace Sainsbury <graces@redhat.com>
5439
5440 * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
5441 m68k_find_saved_regs.
5442 (m68k_pop_frame): Removed saved_regs structure, and replaced
5443 references to it with frame->saved_regs.
5444 (m68k_gdbarch_init): Added function calls to initialize the
5445 gdbarch structure.
5446 (m68k_fix_call_dummy): Add.
5447 * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
5448 (CALL_DUMMY): Remove.
5449 (CALL_DUMMY_LENGTH): Remove.
5450 (CALL_DUMMY_START_OFFSET): Remove.
5451 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
5452 (FIX_CALL_DUMMY): Remove.
5453 (PUSH_DUMMY_FRAME): Remove.
5454 (POP_FRAME): Remove.
5455
5456 2002-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
5457
5458 * parse.c (parse_fprintf): New function used to avoid calls to
5459 fprintf in bison parser generated debug code.
5460 * parser-defs.h: Declaration of new parse_fprintf function.
5461 * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
5462 Set YYDEBUG to 1 by default.
5463 Set YYFPRINTF as parse_fprintf.
5464
5465 2002-06-21 Michal Ludvig <mludvig@suse.cz>
5466
5467 * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer
5468 encoding anymore.
5469 (pointer_encoding, enum ptr_encoding): New.
5470 (execute_cfa_program): Take care about pointer encoding.
5471 (dwarf2_build_frame_info): Only call parse_frame_info for
5472 .debug_frame and .eh_frame.
5473 (parse_frame_info): New, derived from former dwarf2_build_frame_info.
5474 fixed augmentation handling, added relative addressing,
5475 ignore duplicate FDEs. Added comments.
5476 * dwarf2cfi.c: Reindented.
5477
5478 2002-06-20 Elena Zannoni <ezannoni@redhat.com>
5479
5480 * event-top.c (command_handler): Don't use space_at_cmd_start
5481 unless there is sbrk() on the host. Assign time and space data
5482 to union fields of the appropriate length.
5483
5484 2002-06-20 Michal Ludvig <mludvig@suse.cz>
5485
5486 * x86-64-tdep.c (x86_64_register_nr2name): Rename to
5487 x86_64_register_name. Return type changed to 'const char *'.
5488 (x86_64_register_name2nr): Rename to x86_64_register_number.
5489 (x86_64_gdbarch_init): Update to reflect the change.
5490 * x86-64-tdep.h: Ditto.
5491 * x86-64-linux-nat.c (x86_64_fxsave_offset)
5492 (supply_fpregset): Ditto.
5493
5494 2002-06-19 Andrew Cagney <cagney@redhat.com>
5495
5496 * regcache.h: Update copyright.
5497 (struct regcache, struct gdbarch): Add opaque declarations.
5498 (current_regcache): Declare global variable.
5499 (regcache_read, regcache_write): Add gdbarch parameter.
5500 (regcache_save, regcache_save_no_passthrough)
5501 (regcache_restore, regcache_restore_no_passthrough)
5502 (regcache_dup, regcache_dup_no_passthrough)
5503 (regcache_cpy, regcache_cpy_no_passthrough)
5504 (deprecated_grub_regcache_for_registers)
5505 (deprecated_grub_regcache_for_register_valid)
5506 (regcache_valid_p): Add function declarations.
5507
5508 * regcache.c: Update copyright.
5509 (regcache_descr_handle): New global variable.
5510 (struct regcache_descr): Define.
5511 (init_legacy_regcache_descr, init_regcache_descr): New functions.
5512 (regcache_descr, xfree_regcache_descr): New functions.
5513 (struct regcache): Define.
5514 (regcache_xmalloc, regcache_xfree): New functions.
5515 (regcache_cpy, regcache_cpy_no_passthrough): New functions.
5516 (regcache_dup, regcache_dup_no_passthrough): New functions.
5517 (regcache_valid_p, regcache_read_as_address): New functions.
5518 (deprecated_grub_regcache_for_registers): New function.
5519 (deprecated_grub_regcache_for_register_valid): New function.
5520 (current_regcache): New global variable.
5521 (register_buffer): Add regcache parameter. Update calls.
5522 (regcache_read, regcache_write): Add regcache parameter. Rewrite.
5523 (read_register_gen, write_register_gen): Update register_buffer
5524 call. Test for legacy_p instead of gdbarch_register_read_p or
5525 gdbarch_register_write_p.
5526 (regcache_collect): Update register_buffer call.
5527 (build_regcache): Rewrite. Use deprecated grub functions.
5528 (regcache_save, regcache_save_no_passthrough): New functions.
5529 (regcache_restore, regcache_restore_no_passthrough): New
5530 functions.
5531 (_initialize_regcache): Create the regcache_data_handle. Swap
5532 current_regcache global variable.
5533
5534 * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
5535 parameter to regcache_read and regcache_write calls.
5536 (sh4_register_read): Ditto.
5537 (sh64_pseudo_register_read): Ditto.
5538 (sh64_register_read): Ditto.
5539 (sh_pseudo_register_write): Ditto.
5540 (sh4_register_write): Ditto.
5541 (sh64_pseudo_register_write): Ditto.
5542 (sh64_register_write): Ditto.
5543
5544 * defs.h (XCALLOC): Define.
5545
5546 2002-06-19 Grace Sainsbury <graces@redhat.com>
5547
5548 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
5549 * m68k-tdep.c (m68k_gdbarch_init): Added.
5550 (m68k_dump_tdep): Added.
5551
5552 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
5553
5554 * ada-lang.c (fill_in_ada_prototype): Update comment.
5555
5556 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
5557
5558 * mips-tdep.c (enum mips_abi): Explicitly start at 0. Add
5559 MIPS_ABI_LAST.
5560 (mips_abi_string, mips_abi_strings): New.
5561 (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
5562 (mips_gdbarch_init): Set tdep->found_abi. Don't set
5563 tdep->mips_abi_string. Honor mips_abi_string. Default to
5564 O32 if no ABI is found.
5565 (mips_dump_tdep): Use mips_abi_strings.
5566 (mips_abi_update): New function.
5567 (_initialize_mips_tdep): Initialize mips_abi_string. Add
5568 ``set mips abi'' and ``show mips abi''. Check the size of
5569 mips_abi_strings.
5570
5571 2002-06-19 Andrew Cagney <cagney@redhat.com>
5572
5573 * i386-linux-tdep.c (i386_linux_register_name): Make return type
5574 constant.
5575
5576 2002-06-18 Joel Brobecker <brobecker@gnat.com>
5577
5578 * alpha-tdep.c (heuristic_proc_desc): Compute the size of the
5579 current frame using only the first stack size adjustment. All
5580 subsequent size adjustments are not considered to be part of
5581 the "static" part of the current frame.
5582 Compute the address of the saved registers relative to the
5583 Frame Pointer ($fp) instead of the Stack Pointer if $fp is
5584 in use in this frame.
5585
5586 2002-06-18 Don Howard <dhoward@redhat.com>
5587
5588 * valops.c (value_ind): Use value_at_lazy() when dereferencing
5589 type int expressions. Thanks to Jim Blandy <jimb@redhat.com> for
5590 suggesting this solution.
5591
5592 2002-06-18 Andrew Cagney <ac131313@redhat.com>
5593
5594 * config/romp/xm-rtbsd.h: Delete file.
5595 * config/romp/rtbsd.mh: Delete file.
5596
5597 2002-06-18 Keith Seitz <keiths@redhat.com>
5598
5599 * breakpoint.c (condition_command): Post breakpoint_modify
5600 when a condition is added to an existing breakpoint.
5601 (commands_command): Likewise for commands.
5602 (set_ignore_count): Likewise for ignore counts.
5603 If no tty, do not simply return, still need to send event
5604 notification.
5605 (ignore_command): Only print a newline if the command came
5606 from a tty.
5607 Don't call breakpoints_changed, since this is now properly
5608 handled by set_ignore_count.
5609
5610 2002-06-18 Andrew Cagney <cagney@redhat.com>
5611
5612 * MAINTAINERS: Note that cris-elf target can be compiled with
5613 -Werror.
5614 * cris-tdep.c (cris_register_name): Make return type constant.
5615 (cris_breakpoint_from_pc): Ditto.
5616
5617 2002-06-18 Michal Ludvig <mludvig@suse.cz>
5618
5619 * frame.h (struct frame_info): Change type of context to
5620 'struct context'.
5621
5622 2002-06-17 Andrew Cagney <cagney@redhat.com>
5623
5624 * gdbarch.sh (REGISTER_NAME): Change return type a constant string
5625 pointer.
5626 * gdbarch.h, gdbarch.c: Regenerate.
5627 * config/mips/tm-mips.h (mips_register_name): Update.
5628 * i386-tdep.h (i386_register_name): Update.
5629 * mips-tdep.c (mips_register_name): Update
5630 * alpha-tdep.c (alpha_register_name): Update.
5631 * arch-utils.c (legacy_register_name): Update.
5632 * arch-utils.h (legacy_register_name): Update.
5633 * avr-tdep.c (avr_register_name): Update.
5634 * ia64-tdep.c (ia64_register_name): Update.
5635 * i386-tdep.c (i386_register_name): Update.
5636 * sparc-tdep.c (sparc32_register_name): Update.
5637 (sparc64_register_name): Update.
5638 (sparclite_register_name): Update.
5639 (sparclet_register_name): Update.
5640 * sh-tdep.c (sh_generic_register_name): Update.
5641 (sh_sh_register_name): Update.
5642 (sh_sh3_register_name): Update.
5643 (sh_sh3e_register_name): Update.
5644 (sh_sh_dsp_register_name): Update.
5645 (sh_sh3_dsp_register_name): Update.
5646 (sh_sh4_register_name): Update.
5647 (sh_sh64_register_name): Update.
5648 * s390-tdep.c (s390_register_name): Update.
5649 * rs6000-tdep.c (rs6000_register_name): Update.
5650 * ns32k-tdep.c (ns32k_register_name_32082): Update.
5651 (ns32k_register_name_32382): Update.
5652 * d10v-tdep.c (d10v_ts2_register_name): Update.
5653 (d10v_ts3_register_name): Update.
5654 * xstormy16-tdep.c (xstormy16_register_name): Update.
5655 * vax-tdep.c (vax_register_name): Update.
5656 * v850-tdep.c (v850_register_name): Update.
5657 * m68hc11-tdep.c (m68hc11_register_name): Update.
5658 * mn10300-tdep.c (mn10300_generic_register_name): Update.
5659 (am33_register_name): Update.
5660
5661 2002-06-17 Grace Sainsbury <graces@redhat.com>
5662
5663 * m68k-tdep.c: Reindented.
5664
5665 2002-06-17 Andrew Cagney <ac131313@redhat.com>
5666
5667 * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
5668 list of predefined types.
5669
5670 2002-06-16 Mark Kettenis <kettenis@gnu.org>
5671
5672 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
5673 REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
5674 REGISTER_CONVERT_TO_RAW): Remove defines.
5675 (i386_register_virtual_type, i386_register_convertible,
5676 i386_register_convert_to_virtual, i386_register_convert_to_raw):
5677 Remove prototypes.
5678 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
5679 macros mentioned above.
5680
5681 * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
5682 (i386lynx_saved_pc_after_call): Remove prototype.
5683 * i386ly-tdep.c: Include "i386-tdep.h".
5684 (i386lynx_saved_pc_after_call): Make static. Use
5685 read_memory_nobpt instead of read_memory. Use
5686 read_memory_unsigned_integer instead of read_memory_integer.
5687 (i386lynx_init_abi): New function.
5688 (i386lynx_coff_osabi_sniffer): New function.
5689 (_initialize_i386bsd_tdep): New function.
5690
5691 * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
5692 CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
5693 CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
5694 (i386_fix_call_dummy): Remove prototype.
5695 * i386-tdep.c (i386_call_dummy_words): New variable.
5696 (i386_gdbarch_init): Adjust for removal of the
5697 macros mentioned above.
5698
5699 2002-06-15 Andrew Cagney <ac131313@redhat.com>
5700
5701 * command.h (add_setshow_auto_boolean_cmd): Replace
5702 add_set_auto_boolean_cmd.
5703 * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
5704 add_set_auto_boolean_cmd.
5705 * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
5706 * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
5707 mask-address'' command.
5708 (show_mask_address): Add cmd parameter.
5709 * remote.c (add_packet_config_cmd): Update. Change type of
5710 set_func and show_func to cmd_sfunc_ftype.
5711 (_initialize_remote): Update `set remote Z-packet'
5712 (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
5713 (show_remote_protocol_e_packet_cmd): Ditto.
5714 (show_remote_protocol_E_packet_cmd): Ditto.
5715 (show_remote_protocol_P_packet_cmd): Ditto.
5716 (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
5717 (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
5718 (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
5719 (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
5720 (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
5721 (show_remote_protocol_Z_packet_cmd): Ditto.
5722 (show_remote_protocol_binary_download_cmd): Ditto.
5723 (show_remote_cmd): Pass NULL to all of above.
5724
5725 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5726
5727 * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
5728 DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
5729 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
5730 POP_FRAME): Remove defines.
5731 (i386_push_arguments, i386_store_struct_return,
5732 i386_extract_return_value, i386_store_return_value,
5733 i386_extract_struct_value_address, i386_push_dummy_frame,
5734 i386_pop_frame): Renove prototypes.
5735 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
5736 macros mentioned above.
5737
5738 2002-06-15 Andrew Cagney <ac131313@redhat.com>
5739
5740 * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
5741 add_set_boolean_cmd.
5742 (add_setshow_cmd): New function.
5743 * command.h (add_setshow_boolean_cmd): Replace
5744 add_set_boolean_cmd.
5745 * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
5746 and ``set rdiromatzero''.
5747 * maint.c (_initialize_maint_cmds): Update commented out code.
5748 * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
5749 * target.c (initialize_targets): Update `set
5750 trust-readonly-sections'.
5751 * remote.c (_initialize_remote): Update `set remotebreak'.
5752
5753 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5754
5755 * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
5756 BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
5757 * i386-tdep.c (i386_skip_prologue): Adjust function signature to
5758 fit into multi-arch framework.
5759 (i386_breakpoint_from_pc): New function.
5760 (i386_gdbarch_init): Adjust for removal of the macros mentioned
5761 above.
5762
5763 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
5764 FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
5765 FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
5766 (i386_frameless_function_invocation, i386_frame_num_args,
5767 i386_frame_init_saved_regs): Remove prototypes.
5768 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
5769 macros mentioned above.
5770
5771 2002-06-15 Andrew Cagney <ac131313@redhat.com>
5772
5773 * cli/cli-decode.c (set_cmd_cfunc): Update.
5774 (set_cmd_sfunc): Update.
5775 * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
5776 (set_cmd_sfunc, set_cmd_cfunc): Update.
5777 * cli/cli-decode.h: Update.
5778
5779 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5780
5781 * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
5782 (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
5783
5784 2002-06-15 Andrew Cagney <ac131313@redhat.com>
5785
5786 * defs.h (auto_boolean): Declare enum.
5787 * command.h (cmd_auto_boolean): Delete enum.
5788 * mips-tdep.c (mask_address_var): Update.
5789 (mips_mask_address_p): Update.
5790 (show_mask_address): Update.
5791 * remote.c (struct packet_config): Update.
5792 (update_packet_config): Update.
5793 (show_packet_config_cmd): Update.
5794 (packet_ok): Update.
5795 (add_packet_config_cmd): Update.
5796 (_initialize_remote):
5797 * command.h: Update.
5798 * cli/cli-setshow.c (parse_auto_binary_operation): Update.
5799 (do_setshow_command): Update.
5800 * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
5801 * cli/cli-decode.h: Update.
5802
5803 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5804
5805 * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
5806 config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
5807 config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
5808 config/i386/tm-linux.h, config/i386/tm-nbsd.h,
5809 config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
5810 * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
5811
5812 * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
5813 list of DJGPP COFF targets.
5814
5815 * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
5816 (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
5817 (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
5818 (FP0_REGNUM): Remove define.
5819 (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
5820 MAX_REGISTER_VIRTUAL_SIZE): Remove define.
5821 (i386_register_virtual_size): Remove protoype.
5822 * i386-tdep.c (i386_register_virtual_size): Removed.
5823 (i386_extract_return_value, i386_store_return_value): Use
5824 FP0_REGNUM instead of NUM_FREGS to determine whether the
5825 floating-point registers are available.
5826 (i386_gdbarch_init): Tweak FIXME about FPU registers.
5827 Adjust for removal of macros mentioned above.
5828
5829 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5830
5831 * i386v4-nat.c: Include "i386-tdep.h". Reformat and tweak various
5832 comments.
5833 (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
5834 Remove prototypes.
5835 (supply_gregset, fill_gregset): Remove use of register keyword and
5836 remove declaration for regmap. Use I386_NUM_GREGS instead of
5837 NUM_REGS and NUM_FREGS.
5838 (FPREGSET_FSAVE_OFFSET): Remove.
5839 (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
5840 NUM_FREGS to determine whether the floating-point registers are
5841 available.
5842
5843 * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
5844 gnu_store_registers): Replace usage of NUM_GREGS with
5845 I386_NUM_GREGS.
5846
5847 * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
5848 OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
5849 usage of NUM_GREGS with I386_NUM_GREGS.
5850
5851 * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
5852
5853 * i386bsd-nat.c: Include "i386-tdep.h".
5854 (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
5855 I386_NUM_GREGS.
5856
5857 * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
5858 and associated comment. They no longer make any sense, since we
5859 don't use this file anymore on Linux.
5860
5861 * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
5862 * i386-tdep.c (i386_register_offset, i386_register_size): Use
5863 I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
5864 elements in these arrays.
5865 (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
5866 MAX_NUM_REGS.
5867
5868 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5869
5870 * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
5871 * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
5872
5873 2002-06-14 Andrew Cagney <cagney@redhat.com>
5874
5875 * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
5876 EXTRACT_RETURN_VALUE.
5877 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
5878 EXTRACT_STRUCT_VALUE_ADDRESS.
5879 * gdbarch.h, gdbarch.c: Regenerate.
5880
5881 * values.c (value_being_returned): Handle
5882 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
5883 (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
5884
5885 * arm-linux-tdep.c (arm_linux_init_abi): Update.
5886 * arm-tdep.c (arm_gdbarch_init): Update.
5887 * avr-tdep.c (avr_gdbarch_init): Update.
5888 * cris-tdep.c (cris_gdbarch_init): Update.
5889 * d10v-tdep.c (d10v_gdbarch_init): Update.
5890 * ia64-tdep.c (ia64_gdbarch_init): Update.
5891 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
5892 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
5893 * s390-tdep.c (s390_gdbarch_init): Update.
5894 * sh-tdep.c (sh_gdbarch_init): Update.
5895 * s390-tdep.c (s390_gdbarch_init): Update.
5896 * sparc-tdep.c (sparc_gdbarch_init): Update.
5897 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
5898 * v850-tdep.c (v850_gdbarch_init): Update.
5899 * vax-tdep.c (vax_gdbarch_init): Update.
5900 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
5901 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
5902
5903 * config/arc/tm-arc.h: Update.
5904 * config/d30v/tm-d30v.h: Update.
5905 * config/fr30/tm-fr30.h: Update.
5906 * config/h8300/tm-h8300.h: Update.
5907 * config/h8500/tm-h8500.h: Update.
5908 * config/i386/tm-i386.h: Update.
5909 * config/i386/tm-ptx.h: Update.
5910 * config/i386/tm-symmetry.h: Update.
5911 * config/i960/tm-i960.h: Update.
5912 * config/m32r/tm-m32r.h: Update.
5913 * config/m68k/tm-delta68.h: Update.
5914 * config/m68k/tm-linux.h: Update.
5915 * config/m68k/tm-m68k.h: Update.
5916 * config/m88k/tm-m88k.h: Update.
5917 * config/mcore/tm-mcore.h: Update.
5918 * config/mips/tm-mips.h: Update.
5919 * config/mn10200/tm-mn10200.h: Update.
5920 * config/pa/tm-hppa.h: Update.
5921 * config/pa/tm-hppa64.h: Update.
5922 * config/sparc/tm-sp64.h: Update.
5923 * config/sparc/tm-sparc.h: Update.
5924 * config/sparc/tm-sparclet.h: Update.
5925 * config/z8k/tm-z8k.h: Update.
5926
5927 2002-06-14 Andrew Cagney <cagney@redhat.com>
5928
5929 * Makefile.in (i386_linux_tdep_h): Define.
5930 (i386_tdep_h, i387_tdep_h): Define.
5931 (i386-linux-nat.o): Add $(i386_linux_tdep_h),
5932 $(i386_tdep_h) and $(i387_tdep_h).
5933 * i386-linux-nat.c: Include "i386-linux-tdep.h".
5934
5935 2002-06-14 Mark Kettenis <kettenis@gnu.org>
5936
5937 * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
5938 Already covered by the default.
5939
5940 * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
5941 TARGET_LONG_DOUBLE_BIT): Remove. * i386-tdep.c
5942 (i386_gdbarch_init): Initialize long_double_format and long_double
5943 bit.
5944
5945 * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
5946 i386bsd-tdep.o. Remove solib.o, solib-svr4.o and solib-legacy.o.
5947 Move these to ...
5948 * config/i386/i386sol2.mh: ... here.
5949 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
5950 (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
5951 (SIGCONTEXT_PC_OFFSET): Remove define.
5952 (IN_SIGTRAMP): Remove define.
5953 * i386-sol2-tdep.c: New file.
5954
5955 * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
5956 * config/i386/tm-i386nw.h: Removed.
5957
5958 * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
5959 USE_STRUCT_CONVENTION): Remove defines.
5960 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5961 (get_longjmp_target): Remove prototype.
5962 (IN_SIGTRAMP): Remove define.
5963 (i386bsd_in_sigtramp): Remove prototype.
5964 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
5965 function. Update comment accordingly
5966 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
5967 (FRAME_SAVED_PC): Remove define.
5968 (i386bsd_frame_saved_pc): Remove prototype.
5969 * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
5970 GET_LONGJMP_TARGET): Remove defines.
5971 (get_longjmp_target): Remove prototype.
5972 (IN_SIGTRAMP): Remove define.
5973 (i386bsd_in_sigtramp): Remove prototype.
5974 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
5975 function. Update comment accordingly
5976 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
5977 (FRAME_SAVED_PC): Remove define.
5978 (i386bsd_frame_saved_pc): Remove prototype.
5979 * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
5980 Remove prototype.
5981 (USE_STRUCT_CONVENTION): Remove prototype.
5982 * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
5983 declaration.
5984 (_initialize_i386bsd_nat): Revise logic to determine some
5985 constants at compile time when compiling a native GDB. Warn if
5986 things don't match up with what we expect.
5987 * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
5988 Remove variables.
5989 (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp. Rewrite
5990 to use date stored in `struct gdbarch_tdep'.
5991 (i386bsd_sigcontext_offset): Remove varaible.
5992 (i386bsd_sigtramp_saved_pc): Make public. Rewrite to use data
5993 stored in `struct gdbarch_tdep'.
5994 (i386bsd_frame_saved_pc): Make static.
5995 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
5996 (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
5997 i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
5998 i386fbsd4_sc_pc_offset): New variables.
5999 (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
6000 i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
6001 functions.
6002 (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
6003 functions.
6004 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
6005 Modify the value of i386fbsd_sigtramp_start and
6006 i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
6007 i386fbsd_sigtramp_end.
6008 * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
6009 function.
6010
6011 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
6012 define to i386-linux-tdep.h.
6013 (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
6014 REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
6015 defines.
6016 (i386_linux_register_name, i386_linux_register_byte,
6017 i386_linux_register_raw_size): Remove prototypes.
6018 (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
6019 (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
6020 (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
6021 TARGET_WRITE_PC): Remove defines.
6022 (i386_linux_in_sigtramp, i386_linux_frame_chain,
6023 i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
6024 i386_linux_write_pc): Remove prototypes.
6025 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
6026 (get_longjmp_target): Remove prototype.
6027 * i386-linux-tdep.h: New file.
6028 * i386-linux-nat.c: Include "i386-linux-tdep.h".
6029 * i386-linux-tdep.c: Include "i386-tdep.h" and
6030 "i386-linux-tdep.h".
6031 (i386_linux_register_name, i386_linux_register_byte,
6032 i386_linux_register_raw_size, i386_linux_in_sigtramp,
6033 i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
6034 Make static.
6035 (i386_linux_init_abi): New function.
6036 (_initialize_i386_linux_tdep): New function.
6037
6038 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
6039 (i386_saved_pc_after_call): Remove prototype.
6040 (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
6041 (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
6042 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
6043 (i386_register_name, i386_stab_reg_to_regnum,
6044 i386_dwarf_reg_to_regnum): Remove prototypes.
6045 (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
6046 SIZEOF_SSE_REGS): Remove defines.
6047 (REGISTER_BYTES): Remove define.
6048 (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
6049 (i386_register_byte, i386_register_raw_size): Remove prototypes.
6050 (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
6051 (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
6052 * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
6053 (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
6054 JB_EDX, GET_LONGJMP_TARGET): Remove defines.
6055 (get_longjmp_target): Remove prototype.
6056 (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
6057 (sigtramp_saved_pc): Remove define.
6058 (i386v4_sigtramp_saved_pc): Remove prototype.
6059 * config/i386/tm-go32.h (FRAME_CHAIN,
6060 FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
6061 (i386go32_frame_saved_pc): Remove prototype.
6062 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
6063 (get_longjmp_target): Remove prototype.
6064 * i386-tdep.h: Include "osabi.h".
6065 (enum i386_abi): Removed.
6066 (enum struct_return): New enum.
6067 (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
6068 struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
6069 sc_pc_offset members.
6070 (i386_gdbarch_register_os_abi): Remove prototype.
6071 (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
6072 I386_SSE_NUM_REGS): New defines.
6073 (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
6074 I386_SSE_SIZEOF_REGS): New defines.
6075 (i386_register_name, i386_register_byte, i386_register_raw_size):
6076 New prototypes.
6077 (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
6078 (i386bsd_sigtramp_saved_pc): New prototype.
6079 * i386-tdep.c: Don't include "elf-bfd.h".
6080 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
6081 i386_frame_chain, i386_saved_pc_after_call): Make static.
6082 (i386_frame_saved_pc): Rewrite to call architecture dependent
6083 function to deal with signal handlers. Make static.
6084 (i386go32_frame_saved_pc): Removed.
6085 [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
6086 Removed.
6087 (i386_get_longjmp_target): New function.
6088 (default_struct_convention, pcc_struct_convention,
6089 reg_struct_convention, valid_conventions, struct_convention): New
6090 variables.
6091 (i386_use_struct_convention): New function.
6092 (i386v4_sigtramp_saved_pc): Renamed to
6093 i386_svr4_sigtramp_saved_pc. Made static. Moved.
6094 (i386_pc_in_sigtramp): New function.
6095 (i386_abi_names): Removed.
6096 (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
6097 ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
6098 Removed.
6099 (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
6100 i386_gdbarch_register_os_abi): Removed.
6101 (struct i386_abi_handler): Removed.
6102 (i386_abi_handler_list): Removed.
6103 (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
6104 functions.
6105 (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
6106 i386_nw_init_abi): New functions.
6107 (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
6108 Use set_gdbarch_xxx() calls instead of relying on macros for a
6109 number of calls.
6110 (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
6111 (_initialize_i386_tdep): Add new 'struct-convcention' command.
6112 Register the various architecture variants defined in this file.
6113
6114 2002-06-14 Daniel Jacobowitz <drow@mvista.com>
6115
6116 * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
6117 (struct main_type): Remove arg_types member. Update comments for
6118 struct field.
6119 (TYPE_ARG_TYPES): Remove.
6120 (TYPE_FN_FIELD_ARGS): Update.
6121 (smash_to_method_type): Update prototype.
6122
6123 * c-typeprint.c (cp_type_print_method_args): Take method type
6124 instead of argument list. Use new argument layout. Simplify.
6125 (c_type_print_args): Use new argument layout. Simplify.
6126 (c_type_print_base): Update call to cp_type_print_method_args.
6127 * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
6128 argument; use die->type instead. Update call to
6129 smash_to_method_type.
6130 (read_structure_scope): Update call to dwarf2_add_member_fn.
6131 * gdbtypes.c (allocate_stub_method): Update comment.
6132 (smash_to_method_type): Take new NARGS and VARARGS arguments.
6133 Use new argument layout.
6134 (check_stub_method): Use new argument layout. Don't count
6135 void as an argument.
6136 (print_arg_types): Update comments. Use new argument layout.
6137 (recursive_dump_type): Don't print arg_types member.
6138 * hpread.c (hpread_read_struct_type): Use new argument layout.
6139 (fixup_class_method_type): Likewise.
6140 (hpread_type_lookup): Likewise.
6141 * stabsread.c (read_type): Update calls to read_args and
6142 smash_to_method_type.
6143 (read_args): Use new argument layout. Simplify.
6144 * valops.c (typecmp): Use new argument layout. Update parameters
6145 and comments. Simplify.
6146 (hand_function_call): Use new argument layout.
6147 (search_struct_method): Update call to typecmp.
6148 (find_overload_match): Use new argument layout.
6149
6150 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
6151
6152 * NEWS: Mention multithreaded debug support for gdbserver.
6153
6154 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
6155
6156 * MAINTAINERS: Mention NEWS.
6157
6158 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
6159
6160 * mips-tdep.c (PROC_SYMBOL): Add warning comment.
6161 (struct mips_objfile_private, compare_pdr_entries): New.
6162 (non_heuristic_proc_desc): Read the ".pdr" section if it
6163 is present.
6164
6165 2002-06-12 Andrew Cagney <ac131313@redhat.com>
6166
6167 * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
6168 (arm_debug): New static variable.
6169 (_initialize_arm_tdep): Add ``set debug arm'' command.
6170
6171 2002-06-12 Andrew Cagney <ac131313@redhat.com>
6172
6173 * Makefile.in (sim_arm_h): Define.
6174 (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
6175 * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
6176 (arm_register_sim_regno): New function, map an internal REGNUM
6177 onto a simulator register number.
6178 (arm_gdbarch_init): Set register_sim_regno.
6179
6180 2002-06-09 Aldy Hernandez <aldyh@redhat.com>
6181
6182 * MAINTAINERS: Add self.
6183
6184 2002-06-11 Jim Blandy <jimb@redhat.com>
6185
6186 * source.c (source_info): Mention whether the symtab has
6187 information about preprocessor macros.
6188
6189 Call the command `info macro', not `show macro'.
6190 * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
6191 Fix error message.
6192 (_initialize_macrocmd): Register `info_macro_command' in
6193 `infolist', not `showlist'.
6194
6195 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
6196
6197 * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
6198 (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
6199 (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
6200 (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
6201 (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions. Define
6202 unconditionally.
6203 (set_mipsfpu_single_command, set_mipsfpu_double_command)
6204 (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
6205 (_initialize_mips_tdep): Remove dead code.
6206 * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
6207 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
6208 * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
6209 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
6210 * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
6211 MIPS_LAST_FP_ARG_REGNUM): Remove.
6212
6213 2002-06-11 Michal Ludvig <mludvig@suse.cz>
6214
6215 * dwarf2cfi.c (unwind_tmp_obstack_init): New.
6216 (unwind_tmp_obstack_free, parse_frame_info)
6217 (update_context, cfi_read_fp, cfi_write_fp)
6218 (cfi_frame_chain, cfi_init_extra_frame_info)
6219 (cfi_virtual_frame_pointer): Use the above function.
6220 * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
6221
6222 2002-06-11 Corinna Vinschen <vinschen@redhat.com>
6223
6224 * v850-tdep.c (v850_type_is_scalar): New function.
6225 (v850_use_struct_convention): Match current gcc implementation
6226 as close as possible.
6227 (v850_push_arguments): Fix stack_offset handling. Don't write
6228 struct_addr into register. This is done by v850_store_struct_return.
6229 (v850_extract_return_value): Care for structs.
6230 (v850_store_return_value): Ditto.
6231 (v850_store_struct_return): Actually write address.
6232
6233 2002-06-11 Michal Ludvig <mludvig@suse.cz>
6234
6235 * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
6236 without debug information too.
6237
6238 2002-06-10 Andrew Cagney <ac131313@redhat.com>
6239
6240 * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
6241 Make multi-arch pure.
6242 * gdbarch.h, gdbarch.c: Re-generate.
6243 * arm-tdep.c (arm_print_float_info): Update.
6244 * arch-utils.h (default_print_float_info): Update.
6245 * arch-utils.c (default_print_float_info): Update.
6246 * infcmd.c (float_info): Update call.
6247
6248 2002-06-10 Andrew Cagney <ac131313@redhat.com>
6249
6250 * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
6251 the front of the initialize list.
6252
6253 2002-06-10 Andrew Cagney <ac131313@redhat.com>
6254
6255 * infrun.c (struct inferior_status): Replace fields
6256 selected_frame_address and selected_level with field
6257 selected_frame_id.
6258 (save_inferior_status): Update. Use get_frame_id.
6259 (struct restore_selected_frame_args): Delete.
6260 (restore_selected_frame): Update. Use frame_find_by_id.
6261 (restore_inferior_status): Update.
6262
6263 * breakpoint.h (struct breakpoint): Change type of
6264 watchpoint_frame to frame_id.
6265 * breakpoint.c (insert_breakpoints): Use frame_find_by_id. Remove
6266 call to get_current_frame.
6267 (do_enable_breakpoint): Use frame_find_by_id. Remove call to
6268 get_current_frame.
6269 (watchpoint_check): Use frame_find_by_id.
6270
6271 * frame.h (record_selected_frame): Delete declaration.
6272 * stack.c (record_selected_frame): Delete function.
6273
6274 * frame.h (struct frame_id): Define.
6275 (get_frame_id): Declare.
6276 (frame_find_by_id): Declare.
6277 * frame.c (frame_find_by_id): New function.
6278 (get_frame_id): New function.
6279
6280 2002-06-10 Andrey Volkov <avolkov@transas.com>
6281
6282 * ser-e7kpc.c: Fix duplicated define and call of
6283 _initialize_ser_e7000pc
6284
6285 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
6286
6287 * signals/signals.c (target_signal_from_host): Fix #ifdef
6288 SIGRTMIN case.
6289 (do_target_signal_to_host): Likewise.
6290
6291 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
6292
6293 * mips-tdep.c (mips_find_abi_section): New function.
6294 (mips_gdbarch_init): Call it.
6295
6296 2002-06-09 Mark Kettenis <kettenis@gnu.org>
6297
6298 * solib-svr4.c (init_fetch_link_map_offsets): Simply return
6299 legacy_fetch_link_map_offsets. Adjust comment to reflect reality
6300 after Andrew's 2002-06-08 gdbarch change.
6301
6302 2002-06-09 Mark Kettenis <kettenis@gnu.org>
6303
6304 * i386-linux-nat.c (suppy_gregset): Don't supply
6305 I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
6306 register cache.
6307 (fill_gregset): Don't fetch it under the same circumstances.
6308
6309 2002-06-09 Andrew Cagney <cagney@redhat.com>
6310
6311 * Makefile.in (callback_h): Define.
6312 (remote_sim_h): Update path to remote-sim.h.
6313 (remote-rdp.o): Add $(callback_h).
6314 (remote-sim.o): Use $(callback_h).
6315 * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
6316 * remote-rdp.c: Include "gdb/callback.h".
6317
6318 2002-06-09 Mark Kettenis <kettenis@gnu.org>
6319
6320 * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
6321 * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
6322
6323 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6324
6325 * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
6326 * rdi-share/serpardr.c: Ditto.
6327 * rdi-share/unixcomm.c: Ditto.
6328 * rdi-share/serdrv.c: Ditto.
6329 * rdi-share/hostchan.h: Ditto.
6330 * rdi-share/hostchan.c: Ditto.
6331 * rdi-share/host.h: Ditto.
6332 * rdi-share/devsw.c: Ditto.
6333
6334 * objfiles.h: Change type of obj_private to void pointer.
6335 * pa64solib.c: Update copyright. Don't include "assert.h", use
6336 strcmp instead of STREQ, use LONGEST, do not use PTR
6337 * somsolib.c: Ditto.
6338
6339 * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
6340 bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
6341 bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
6342
6343 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6344
6345 * frame.c (GET_SAVED_REGISTER): Delete macro definition.
6346 (default_get_saved_register): Delete function.
6347 * gdbarch.sh (GET_SAVED_REGISTER): Set default to
6348 generic_unwind_get_saved_register.
6349 * gdbarch.h, gdbarch.c: Re-generate.
6350
6351 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6352
6353 * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
6354 generic_func_frame_chain_valid.
6355 * gdbarch.h, gdbarch.c: Re-generate.
6356 * blockframe.c (generic_func_frame_chain_valid): Only check
6357 PC_IN_CALL_DUMMY when generic dummy frames. Don't worry about
6358 passing FP to PC_IN_CALL_DUMMY.
6359 Fix PR gdb/360.
6360
6361 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6362
6363 * gdbarch.sh (struct gdbarch_data): Add field init_p.
6364 (register_gdbarch_data): Initialize init_p.
6365 (gdbarch_data): Initialize data pointer using the init function.
6366 (init_gdbarch_data): Delete function.
6367 (gdbarch_update_p): Update.
6368 (initialize_non_multiarch): Update.
6369 (struct gdbarch): Add field initialized_p.
6370 * gdbarch.h, gdbarch.c: Re-generate.
6371
6372 2002-06-07 Michal Ludvig <mludvig@suse.cz>
6373
6374 * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
6375 (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
6376 better do the things actually here.
6377 * x86-64-tdep.c (x86_64_register_name2nr): New.
6378 (x86_64_register_name): Renamed to x86_64_register_nr2name.
6379 (x86_64_gdbarch_init): Respect the above change.
6380 * x86-64-tdep.h (x86_64_register_name2nr)
6381 (x86_64_register_nr2name): Add prototypes.
6382 * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
6383
6384 2002-06-06 Michael Snyder <msnyder@redhat.com>
6385
6386 * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
6387 Delete extra braces and re-indent.
6388 (d10v_store_return_value): Char return values
6389 must be shifted over by one byte in R0.
6390 (d10v_extract_return_value): Delete extra braces, re-indent.
6391
6392 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
6393
6394 * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
6395 (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
6396 (d10v_integer_to_address): Rewrite.
6397 (d10v_frame_init_saved_regs): When reading fp and sp registers use
6398 the d10v specific functions which take care of converting to the
6399 correct space.
6400
6401 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
6402
6403 * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
6404 altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
6405
6406 2002-06-02 Andrew Cagney <ac131313@redhat.com>
6407
6408 * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
6409 includes.
6410 * config/tm-linux.h: Ditto.
6411 * config/alpha/tm-alphalinux.h: Ditto.
6412 * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
6413 * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
6414 * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
6415 * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
6416 * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
6417 * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
6418 * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
6419 * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
6420 * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
6421 * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
6422 * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
6423 * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
6424 * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
6425 * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
6426 * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
6427 * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
6428 * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
6429 * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
6430 * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
6431 * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
6432 * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
6433 * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
6434 * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
6435 * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
6436 * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
6437 * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
6438 * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
6439 * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
6440 * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
6441 * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
6442 * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
6443 * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
6444 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
6445 * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
6446 * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
6447 * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
6448 * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
6449
6450 2002-05-04 Aidan Skinner <aidan@velvet.net>
6451
6452 * ada-exp.tab.c: New file
6453 * ada-exp.y: New file
6454 * ada-lang.c: New file
6455 * ada-lang.h: New file
6456 * ada-lex.c: New file
6457 * ada-lex.l: New file
6458 * ada-tasks.c: New file
6459 * ada-typeprint.c: New file
6460 * ada-valprint.c: New file
6461
6462 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
6463
6464 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
6465 use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
6466
6467 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
6468
6469 * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
6470 insetead of ppc-linux-tdep.o.
6471 * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
6472 * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
6473
6474 2002-06-02 Andrew Cagney <ac131313@redhat.com>
6475
6476 2002-05-07 Christian Groessler <chris@groessler.org>
6477 * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
6478 bit register contents for little endian hosts.
6479
6480 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6481
6482 * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
6483 any maintainer.
6484
6485 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6486
6487 * gdbarch.h: Regenerate.
6488
6489 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6490
6491 * MAINTAINERS: Add everyone to write-after-approval list.
6492
6493 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6494
6495 * stack.c (frame_info): Use frame_register_unwind instead of
6496 saved_regs. Mention when the SP is on the stack or in a register.
6497
6498 * frame.h (frame_register_unwind_ftype): Define. Document.
6499 (struct frame_info): Add field register_unwind and
6500 register_unwind_cache.
6501 (frame_register_unwind): Declare.
6502 (generic_unwind_get_saved_register): Declare.
6503
6504 * frame.c (frame_register_unwind): New function.
6505 (generic_unwind_get_saved_register): New function.
6506
6507 * blockframe.c (generic_call_dummy_register_unwind): New function.
6508 (frame_saved_regs_register_unwind): New function.
6509 (set_unwind_by_pc): New function.
6510 (create_new_frame): New function.
6511 (get_prev_frame): New function.
6512
6513 2002-05-30 Andrew Cagney <ac131313@redhat.com>
6514
6515 * a29k-share/: Delete directory.
6516 * remote-vx29k.c: Delete file.
6517
6518 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
6519
6520 * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
6521 ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
6522
6523 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
6524
6525 * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
6526 sparcnbsd-nat.c, and sparcnbsd-tdep.c.
6527 (sparc64nbsd-nat.o)
6528 (sparcnbsd-nat.o)
6529 (sparcnbsd-tdep.o): New dependency lists.
6530 * NEWS: Note new UltraSPARC NetBSD native configuration.
6531 * configure.host (sparc64-*-netbsd*): New host.
6532 * configure.tgt (sparc-*-netbsdelf*)
6533 (sparc-*-netbsd*): Set gdb_target to nbsd.
6534 (sparc64-*-netbsd*): New target.
6535 * sparc64nbsd-nat.c: New file.
6536 * sparcnbsd-nat.c: New file.
6537 * sparcnbsd-tdep.c: New file.
6538 * sparcnbsd-tdep.h: New file.
6539 * config/sparc/nbsd.mt: New file.
6540 * config/sparc/nbsd64.mh: New file.
6541 * config/sparc/nbsd64.mt: New file.
6542 * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
6543 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
6544 (HOST_IPC): Remove.
6545 * config/sparc/nbsdaout.mt: Remove.
6546 * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
6547 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
6548 (HOST_IPC): Remove.
6549 * config/sparc/nbsdelf.mt: Remove.
6550 * config/sparc/nm-nbsd.h: Update copyright years. Remove all
6551 sparc-nat.c compatiblity defines.
6552 * config/sparc/tm-nbsd.h: Update copyright years. Include solib.h.
6553 (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
6554 * config/sparc/tm-nbsd64.h: New file.
6555 * config/sparc/tm-nbsdaout.h: Remove.
6556 * config/sparc/xm-nbsd.h: Remove.
6557
6558 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
6559
6560 * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
6561 * sparc-tdep.c: Include osabi.h.
6562 (gdbarch_tdep): Add osabi member.
6563 (_initialize_sparc_tdep): Use gdbarch_register.
6564 (sparc_gdbarch_init): Use generic OS ABI framework.
6565 (sparc_dump_tdep): New function.
6566
6567 2002-05-30 Kevin Buettner <kevinb@redhat.com>
6568
6569 * corefile.c (do_captured_read_memory_integer): Return non-zero
6570 result.
6571 (safe_read_memory_integer): Copy result of memory read when
6572 status is non-zero. Also, add comments.
6573
6574 2002-05-20 Jason Thorpe <thorpej@wasabisystems.com>
6575
6576 * Makefile.in (ppc_tdep_h): Define.
6577 (ppc-linux-nat.o)
6578 (ppc-linux-tdep.o)
6579 (rs6000-tdep.o): Use $(ppc_tdep_h).
6580 (ppc-sysv-tdep.o)
6581 (ppcnbsd-nat.o)
6582 (ppcnbsd-tdep.o): New dependency lists.
6583 * ppc-tdep.h: Use generic OS ABI framework.
6584 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
6585 (ppc_linux_init_abi): New functions.
6586 (ppc_sysv_abi_broken_use_struct_convention)
6587 (ppc_sysv_abi_use_struct_convention)
6588 (ppc_sysv_abi_push_arguments): Move to...
6589 * ppc-sysv-tdep.c: ...here.
6590 * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
6591 * rs6000-tdep.c (process_note_abi_tag_sections)
6592 (get_elfosabi): Remove.
6593 (rs6000_gdbarch_init): Use generic OS ABI framework.
6594 (rs6000_dump_tdep): New function.
6595 (_initialize_rs6000_tdep): Use gdbarch_register.
6596 * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
6597 * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
6598 * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
6599 of ppc-linux-tdep.o.
6600 * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
6601 * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
6602 * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
6603 * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
6604 * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
6605 * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
6606
6607 2002-05-29 Jim Blandy <jimb@redhat.com>
6608
6609 * macroscope.c (default_macro_scope): Put `void' in empty argument
6610 list.
6611
6612 2002-05-29 Andrew Cagney <ac131313@redhat.com>
6613
6614 * Makefile.in (arch-utils.o): Add $(sim_regno_h).
6615 * arch-utils.c: Include "sim-regno.h".
6616 * gdbarch.sh: Don't include "sim-regno.h".
6617 * gdbarch.h, gdbarch.c: Regenerate.
6618 * sim-regno.h (legacy_register_sim_regno): Move declaration from
6619 here.
6620 * arch-utils.h (legacy_register_sim_regno): To here.
6621 * remote-sim.c (legacy_register_sim_regno): Move function from
6622 here.
6623 * arch-utils.c (legacy_register_sim_regno): To here.
6624
6625 2002-05-28 Andrew Cagney <ac131313@redhat.com>
6626
6627 * sim-regno.h: New file.
6628 * Makefile.in (sim_regno_h): Define.
6629 (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
6630 * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
6631 (legacy_register_sim_regno): New function.
6632 (one2one_register_sim_regno): New function.
6633 (gdbsim_fetch_register): Rewrite.
6634 (gdbsim_store_register): Only store a register when
6635 REGISTER_SIM_REGNO is valid.
6636 * d10v-tdep.c: Include "sim-regno.h".
6637 (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
6638 (d10v_ts3_register_sim_regno): Ditto.
6639 * gdbarch.sh: Include "sim-regno.h".
6640 (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
6641 * gdbarch.h, gdbarch.c: Regenerate.
6642 * arch-utils.h (default_register_sim_regno): Delete declaration.
6643 * arch-utils.c (default_register_sim_regno): Delete function.
6644
6645 2002-05-28 Jason Thorpe <thorpej@wasabisystems.com>
6646
6647 * ppcnbsd-nat.c: Rewrite.
6648 * ppcnbsd-tdep.c: New file.
6649 * ppcnbsd-tdep.h: New file.
6650 * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
6651 solib.o, and solib-svr4.o.
6652 * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
6653 nbsd-tdep.o, and corelow.o.
6654
6655 2002-05-28 Andrew Cagney <ac131313@redhat.com>
6656
6657 * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
6658 `tr' and `sed'. Mention that `broken' targets are not expected to
6659 build.
6660
6661 2002-05-27 Michal Ludvig <mludvig@suse.cz>
6662
6663 * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
6664 Let PC point right after the prologue before looking up symbols.
6665
6666 2002-05-27 Martin M. Hunt <hunt@redhat.com>
6667
6668 * i386-tdep.c (i386_register_virtual_type): Return
6669 builtin_type_vec128i for SSE registers.
6670
6671 * gdbtypes.h (builtin_type_vec128i): Declare.
6672
6673 * gdbtypes.c (build_builtin_type_vec128i): New function.
6674 (builtin_type_v2_double, builtin_type_v4_int64): New types.
6675 (builtin_type_vec128i): New type for SSE2 128-bit registers.
6676 (build_gdbtypes): Initialize new builtin vector types.
6677 (_initialize_gdbtypes): Register new vector types with gdbarch.
6678
6679 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6680
6681 * MAINTAINERS: ns32k is not longer an obsolete candidate,
6682 since it has been multi-arch'd.
6683 * NEWS: Note that ns32k-*-* is now partial multi-arch.
6684 Move Alpha and VAX multi-arch news entries to same section
6685 as other multi-arch news.
6686
6687 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6688
6689 * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
6690 target.s, arch-utils.h, ns32k-tdep.h. Make many functions
6691 static. Rename some register numbers to put them in ns32k-tdep
6692 private namespace.
6693 (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
6694 ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
6695 functions.
6696 (_initialize_ns32k_tdep): Use gdbarch_register.
6697 * ns32k-tdep.h: New file.
6698 * ns32knbsd-tdep.c: New file.
6699 * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
6700 * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
6701 (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
6702 REGISTER_BYTES, REGISTER_BYTE): Remove.
6703 * config/ns32k/tm-ns32k.h: New file.
6704 * config/ns32k/tm-umax.h: Remove.
6705
6706 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6707
6708 * ns32k-tdep.c (ns32k_saved_pc_after_call,
6709 ns32k_store_struct_return, ns32k_extract_return_value,
6710 ns32k_store_return_value, ns32k_extract_struct_value_address): New
6711 functions.
6712 * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
6713 ns32k_saved_pc_after_call.
6714 (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
6715 (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
6716 (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
6717 (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
6718 ns32k_extract_struct_value_address.
6719
6720 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6721
6722 * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
6723 ns32k_fix_call_dummy): New.
6724 * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
6725 ns32k_call_dummy_words.
6726 (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
6727 (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
6728 CALL_DUMMY_NARGS): Remove.
6729 (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
6730
6731 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6732
6733 * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
6734 ns32k_frame_saved_pc, ns32k_frame_args_address,
6735 ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
6736 ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
6737 * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
6738 * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
6739 (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
6740 (BREAKPOINT): Remove..
6741 (FRAME_CHAIN): Define as ns32k_frame_chain.
6742 (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
6743 (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
6744 (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
6745 (FRAME_FIND_SAVED_REGS): Remove.
6746 (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
6747 (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
6748 (POP_FRAME): Define as ns32k_pop_frame.
6749
6750 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6751
6752 * ns32k-tdep.c (ns32k_register_byte_32082,
6753 ns32k_register_byte_32382, ns32k_register_raw_size,
6754 ns32k_register_virtual_size, ns32k_register_virtual_type): New
6755 functions.
6756 * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
6757 ns32k_register_byte_32382.
6758 * config/ns32k/tm-umax.h: Update copyright years.
6759 (REGISTER_BYTE): Define as ns32k_register_byte_32082.
6760 (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
6761 (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
6762 (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
6763 (ns32k_get_enter_addr): Fix prototype.
6764
6765 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6766
6767 * ns32k-tdep.c: Update copyright years.
6768 (ns32k_register_name_32082): New function.
6769 (ns32k_register_name_32382): Ditto.
6770 * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
6771 (REGISTER_NAME): Define as ns32k_register_name_32382.
6772 * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
6773 (REGISTER_NAME): Define as ns32k_register_name_32082.
6774
6775 2002-05-24 Jim Blandy <jimb@redhat.com>
6776
6777 * dwarf2read.c (free_line_header): Use xfree, not free.
6778
6779 2002-05-24 Jason Thorpe <thorpej@wasabisystems.com>
6780
6781 * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
6782 alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
6783
6784 2002-05-23 Andrew Cagney <ac131313@redhat.com>
6785
6786 * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
6787
6788 2002-05-23 Andrew Cagney <ac131313@redhat.com>
6789
6790 From Ross Alexander at NEC Europe:
6791 * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
6792
6793 2002-05-23 Michael Snyder <msnyder@redhat.com>
6794
6795 * cli/cli-dump.c (restore_command): Use parse_and_eval_long
6796 for input, rather than parse_and_eval_address.
6797
6798 2002-05-23 Andrew Cagney <ac131313@redhat.com>
6799
6800 * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
6801 * Makefile.in (sim_d10v_h): Update definition.
6802
6803 2002-05-24 Andrew Cagney <cagney@redhat.com>
6804
6805 * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
6806 change `2002-05-22 Michael Snyder' below.
6807 (d10v_push_arguments): Ditto.
6808 (d10v_extract_return_value): Ditto.
6809
6810 2002-05-23 Jim Blandy <jimb@redhat.com>
6811
6812 * macrotab.c (check_for_redefinition): Don't complain if the new
6813 definition is the same as the previous one. Take more arguments
6814 to allow the comparison.
6815 (macro_define_object, macro_define_function): Pass more arguments
6816 to check_for_redefinition.
6817
6818 2002-05-22 Michael Snyder <msnyder@redhat.com>
6819
6820 * d10v-tdep.c: Change a few macros to enums for ease of debugging.
6821 (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
6822 (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
6823 (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
6824 Don't bail if return_pc is PC_IN_CALL_DUMMY.
6825 Add a temp variable to save a call (and a memory read).
6826 (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
6827 if possible (so that PC_IN_CALL_DUMMY will work).
6828
6829 2002-05-22 Corinna Vinschen <vinschen@redhat.com>
6830
6831 * MAINTAINERS: Remove status `OBSOLETE' from v850.
6832
6833 2002-05-22 Michal Ludvig <mludvig@suse.cz>
6834
6835 * dwarf2cfi.c (frame_state_for): Added safety check for a valid
6836 fde->cie_ptr.
6837 (dwarf2_build_frame_info): Corrected handling of eh_frame.
6838 (dwarf2_build_frame_info): Add offset to fde->initial_location
6839 so that frames of shared libraries are mapped correctly.
6840 (execute_stack_op): Change type of 'result' from ULONGEST to
6841 CORE_ADDR.
6842
6843 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6844
6845 * config/alpha/tm-nbsd.h: Include solib.h.
6846
6847 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6848
6849 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
6850 assumptions about the host's byte order.
6851
6852 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6853
6854 * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
6855 to dependency list.
6856 * alphanbsd-tdep.c: Include solib-svr4.h.
6857 * shnbsd-tdep.c: Ditto.
6858
6859 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6860
6861 * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
6862 nbsd-tdep.h to dependency list.
6863 * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
6864 i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
6865 ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
6866 nbsdaout.mh and nbsdelf.mh consistently.
6867 * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
6868 ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
6869 nbsdaout.mt and nbsdelf.mh consistently.
6870 * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h.
6871 (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
6872 to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
6873 * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS. Move
6874 a.out shared library stuff from here...
6875 * config/nm-nbsdaout.h: ...to here.
6876 * config/tm-nbsd.h: Remove.
6877 * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
6878 * config/arm/nbsd.mh: Remove.
6879 * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
6880 nbsd-tdep.o.
6881 * config/arm/nbsdaout.mh: New file.
6882 * config/arm/nbsdelf.mh: New file.
6883 * config/arm/nm-nbsdaout.h: New file.
6884 * config/i386/nbsd.mh: Remove.
6885 * config/i386/nbsd.mt: Remove.
6886 * config/i386/nbsdaout.mh: New file.
6887 * config/i386/nbsdaout.mt: New file.
6888 * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
6889 * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
6890 * config/i386/nm-nbsd.h (REGISTER_U_ADDR,
6891 i386_register_u_addr): Remove.
6892 * config/i386/nm-nbsdaout.h: New file.
6893 * config/i386/nm-nbsdelf.h: Remove.
6894 * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
6895 (USE_STRUCT_CONVENTION): Remove.
6896 * config/i386/tm-nbsdaout.h: New file.
6897 * config/i386/tm-nbsdelf.h: Remove.
6898 * config/m68k/nbsd.mh: Remove.
6899 * config/m68k/nbsd.mt: Remove.
6900 * config/m68k/nbsdaout.mh: New file.
6901 * config/m68k/nbsdaout.mt: New file.
6902 * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
6903 * config/m68k/nm-nbsdaout.h: New file.
6904 * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
6905 (IN_SOLIB_CALL_TRAMPOLINE): Define.
6906 * config/ns32k/nbsd.mh: Remove.
6907 * config/ns32k/nbsd.mt: Remove.
6908 * config/ns32k/nbsdaout.mh: New file.
6909 * config/ns32k/nbsdaout.mt: New file.
6910 * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h.
6911 * config/ns32k/nm-nbsdaout.h: New file.
6912 * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.
6913 (IN_SOLIB_CALL_TRAMPOLINE): Define.
6914 * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
6915 (SVR4_SHARED_LIBS): Remove.
6916 * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
6917 * config/sparc/nbsd.mh: Remove.
6918 * config/sparc/nbsd.mt: Remove.
6919 * config/sparc/nbsdaout.mh: New file.
6920 * config/sparc/nbsdaout.mt: New file.
6921 * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
6922 * config/sparc/nbsdelf.mt: New file.
6923 * config/sparc/nm-nbsdaout.h: New file.
6924 * config/sparc/nm-nbsdelf.h: Remove.
6925 * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
6926 * config/sparc/tm-nbsdaout.h: New file.
6927
6928 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6929
6930 * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
6931 mipsnbsd-tdep.c
6932 (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
6933
6934 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6935
6936 * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
6937 shnbsd-nat.c.
6938 (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
6939
6940 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6941
6942 * NEWS: Note new MIPS NetBSD native configuration.
6943 * configure.host (mips*-*-netbsd*): New host.
6944 * configure.tgt (mips*-*-netbsd*): New target.
6945 * mipsnbsd-nat.c: New file.
6946 * mipsnbsd-tdep.c: New file.
6947 * mipsnbsd-tdep.h: New file.
6948 * config/mips/nbsd.mh: New file.
6949 * config/mips/nbsd.mt: New file.
6950 * config/mips/nm-nbsd.h: New file.
6951 * config/mips/tm-nbsd.h: New file.
6952
6953 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6954
6955 * Makefile.in (SFILES): Add osabi.c.
6956 (COMMON_OBS): Add osabi.o.
6957 (osabi.o): New dependency list.
6958 * osabi.c: New file.
6959 * osabi.h: New file.
6960 * doc/gdbint.texinfo: Document new generic OS ABI framework.
6961
6962 * Makefile.in (alpha_tdep_h): Define and use instead of
6963 alpha-tdep.h.
6964 * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
6965 get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
6966 Remove.
6967 (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
6968 * alpha-tdep.h: Include osabi.h.
6969 (alpha_abi): Remove.
6970 (gdbarch_tdep): Use generic OS ABI framework.
6971 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
6972 gdbarch_register_osabi.
6973 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
6974 * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
6975 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
6976
6977 * Makefile.in (sh_tdep_h): Add osabi.h.
6978 * sh-tdep.h (sh_osabi): Remove.
6979 (gdbarch_tdep): Use generic OS ABI framework.
6980 * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
6981 sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
6982 (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
6983 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
6984
6985 * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
6986 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
6987 gdbarch_register_osabi.
6988 * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
6989 arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
6990 (get_elfosabi): Rename to...
6991 (arm_elf_osabi_sniffer): ...this. Adjust to use generic OS
6992 ABI framework support routines.
6993 (arm_gdbarch_init): Use generic OS ABI framework.
6994 (arm_dump_tdep): Likewise.
6995 (_initialize_arm_tdep): Likewise.
6996 * arm-tdep.h: Include osabi.h.
6997 (arm_abi): Remove.
6998 (gdbarch_tdep): Remove arm_abi and abi_name members. Add
6999 osabi member.
7000 (arm_gdbarch_register_os_abi): Remove prototype.
7001 * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
7002 (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
7003
7004 * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
7005 * mips-tdep.c: Include osabi.h.
7006 (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
7007 OS ABI framework.
7008
7009 2002-05-20 Kazu Hirata <kazu@cs.umass.edu>
7010
7011 * h8300-tdep.c: Fix formatting.
7012
7013 2002-05-20 Elena Zannoni <ezannoni@redhat.com>
7014
7015 * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
7016 printing vector registers.
7017
7018 2002-05-19 Andrew Cagney <ac131313@redhat.com>
7019
7020 From Fernando Nasser:
7021 * remote.c (remote_async_open_1): Re-throw the exception when the
7022 connection fails.
7023 (remote_cisco_open): Ditto.
7024 (remote_open_1): Ditto.
7025
7026 2002-05-19 Andrew Cagney <ac131313@redhat.com>
7027
7028 * remote.c (remote_start_remote_dummy): Add uiout parameter.
7029 (remote_start_remote): Add uiout parameter. Pass through to
7030 remote_start_remote_dummy.
7031 (remote_open_1): Use catch_exception instead of catch_errors.
7032 (remote_async_open_1): Ditto.
7033 (remote_cisco_open): Ditto.
7034
7035 2002-05-19 Andrew Cagney <ac131313@redhat.com>
7036
7037 * remote.c (remote_start_remote): Replace PTR with void pointer.
7038 (sigint_remote_twice_token, sigint_remote_token): Ditto. Make
7039 static.
7040
7041 2002-05-18 Andrew Cagney <ac131313@redhat.com>
7042
7043 * gdb_indent.sh: Allow the script to be run in the sim directory.
7044
7045 2002-05-18 Mark Kettenis <kettenis@gnu.org>
7046
7047 * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
7048 * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
7049
7050 * corelow.c (core_open): Only call set_gdbarch_from_file if
7051 exec_bfd is NULL.
7052
7053 2002-05-17 Andrey Volkov <avolkov@transas.com>
7054
7055 * h8300-tdep.c: Add support of EXR register
7056 * config/h8300/tm-h8300.h: Ditto.
7057
7058 2002-05-17 Andrey Volkov <avolkov@transas.com>
7059
7060 * h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
7061
7062 2002-05-17 Andrey Volkov <avolkov@transas.com>
7063
7064 * h8300-tdep.c: Change literal regnums to REGNO.
7065
7066 2002-05-17 Jim Blandy <jimb@redhat.com>
7067
7068 * NEWS: Note addition of macro support.
7069
7070 Expand preprocessor macros in C expressions.
7071 * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
7072 (scan_macro_expansion, scanning_macro_expansion,
7073 finished_macro_expansion): New function declarations.
7074 (expression_macro_lookup_func, expression_macro_lookup_baton): New
7075 variable declarations.
7076 * parser-defs.h (expression_context_pc): New declaration.
7077 * parse.c (expression_context_pc): New variable.
7078 (parse_exp_1): Set expression_context_pc, as well as
7079 expression_context_block.
7080 * c-exp.y (yylex): If we're not already reading the result of a
7081 macro expansion, try to macro-expand the next token. When we're
7082 done scanning a macro expansion, switch back to the mainline text.
7083 Commas and `if's in a macro's expansion don't terminate the input.
7084 * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
7085 (macro_original_text, macro_expanded_text,
7086 expression_macro_lookup_func, expression_macro_lookup_baton): New
7087 variables.
7088 (scan_macro_expansion, scanning_macro_expansion,
7089 finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
7090 c_preprocess_and_parse): New functions.
7091 (c_language_defn, cplus_language_defn, asm_language_defn): Call
7092 c_preprocess_and_parse, instead of c_parse.
7093 * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
7094 (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
7095
7096 Fri May 17 14:26:19 2002 J"orn Rennecke <joern.rennecke@superh.com>
7097
7098 * sh-tdep.c (gdb_print_insn_sh64): Delete.
7099 (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
7100 (sh_gdbarch_init): Always use gdb_print_insn_sh.
7101
7102 2002-05-17 Corinna Vinschen <vinschen@redhat.com>
7103
7104 * NEWS: Add section for multi-arched targets. Add v850 to that section.
7105
7106 2002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
7107
7108 * Makefile.in (sh_tdep_h): Define and use.
7109 * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
7110 register enum): Move to...
7111 * * sh-tdep.h: ...here.
7112 * sh-tdep.c: Include sh-tdep.h.
7113 * sh3-rom.c: Likewise.
7114 * shnbsd-tdep.c: Likewise.
7115
7116 2002-05-16 Michael Snyder <msnyder@redhat.com>
7117
7118 * arm-tdep.c: Spelling fix in comment.
7119
7120 2002-05-16 Jim Blandy <jimb@redhat.com>
7121
7122 Add commands for manually expanding macros and showing their
7123 definitions.
7124 * macrocmd.c, macroscope.c, macroscope.h: New files.
7125 * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
7126 (macroscope_h): New variable.
7127 (HFILES_NO_SRCDIR): Add macroscope.h.
7128 (COMMON_OBS): Add macrocmd.o, macroscope.o.
7129 (macroscope.o, macrocmd.o): New rules.
7130
7131 Teach the Dwarf 2 reader to read macro information.
7132 * dwarf2read.c: #include "macrotab.h".
7133 (dwarf_macinfo_buffer): New variable.
7134 (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
7135 dwarf_macinfo_size.
7136 (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
7137 (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
7138 dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
7139 dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
7140 dwarf2_macro_spaces_in_definition): New complaints.
7141 (dwarf2_has_info): Initialize dwarf_macinfo_offset.
7142 (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
7143 (dwarf2_build_psymtabs_hard): Record the buffer and its size in
7144 the partial symbol table.
7145 (psymtab_to_symtab_1): Set the macinfo buffer and size globals
7146 from what's recorded in the partial symbol table.
7147 (read_file_scope): If the compilation unit has a
7148 `DW_AT_macro_info' attribute, read its macro information.
7149 * Makefile.in (dwarf2read.o): Depend on macrotab.h.
7150
7151 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
7152
7153 Fix PR gdb/546
7154 * ser-tcp.c: Don't include <netinet/udp.h>.
7155
7156 2002-05-16 Stephane Carrez <stcarrez@nerim.fr>
7157
7158 * MAINTAINERS: Update my email address.
7159
7160 2002-05-16 Richard Earnshaw <rearnsha@arm.com>
7161
7162 * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
7163 include file of the same name.
7164
7165 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7166
7167 * configure.tgt: Mark v850 as multi-arched.
7168 * config/v850/tm-v850.h: Remove file.
7169 * config/v850/v850.mt: Eliminate TM_FILE.
7170
7171 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7172
7173 * v850-tdep.c: Full multi-arch.
7174 * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
7175 Define GDB_MULTI_ARCH to 2.
7176
7177 2002-05-16 Pierre Muller <muller@ics.u-strasbg.fr>
7178
7179 * p-exp.y (current_type): New static variable.
7180 Carries the type of the expression at the position that is parsed.
7181 (push_current_type, pop_current_type): Two new functions. Used
7182 to store/restore current_type in expression on specific tokens.
7183 (search_field): New static variable. Set to one after parsing a point
7184 as at that point only a FIELDNAME token should be searched.
7185 (FIELDNAME): New token. After a point only a token belonging to
7186 current_type type definition is allowed.
7187 (all over token rules): reset and change current_type according
7188 to rules.
7189 (exp '[' rule): insert implicit array index field if
7190 exp is a pascal string type.
7191
7192 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7193
7194 * v850-tdep.c: Fix comment for v850_scan_prologue. Remove extra
7195 frame info. Use frame_info's saved_regs instead of matching member
7196 in extra_frame_info throughout.
7197 (v850_frame_init_saved_regs): New function.
7198 (v850_init_extra_frame_info): Move most functionality into
7199 v850_frame_init_saved_regs().
7200 * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
7201 (v850_frame_find_saved_regs): Remove declaration.
7202 (FRAME_FIND_SAVED_REGS): Remove definition.
7203 (v850_frame_init_saved_regs): Add declaration.
7204 (FRAME_INIT_SAVED_REGS): Add definition.
7205
7206 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7207
7208 * v850-tdep.c: Begin multi-arch'ing v850.
7209 (v850_target_architecture_hook): Remove function.
7210 (v850_gdbarch_init): New function. Add code previously in
7211 v850_target_architecture_hook().
7212 (_initialize_v850_tdep): Don't set target_architecture_hook.
7213 Call register_gdbarch_init() instead.
7214
7215 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
7216
7217 * gdbtypes.h (struct cplus_struct_type): Remove args field.
7218 * hpread.c (hpread_read_struct_type): Remove assignments to args.
7219 (fixup_class_method_type): Likewise.
7220
7221 2002-05-15 Jim Blandy <jimb@redhat.com>
7222
7223 Add macro structures to GDB's symbol tables. Nobody puts anything
7224 in them yet.
7225 * symtab.h (struct symtab): New member: `macro_table'.
7226 * buildsym.h (pending_macros): New global variable.
7227 * buildsym.c: #include "macrotab.h".
7228 (buildsym_init): Initialize `pending_macros'.
7229 (end_symtab): If we found macro information while reading a CU's
7230 debugging info, do build a symtab structure for it. Make the
7231 symtab point to the macro information, and clear the
7232 `pending_macros' pointer which held it while we were reading the
7233 debug info.
7234 (really_free_pendings): Free any pending macro table.
7235 * objfiles.h (struct objfile): New member: `macro_cache'.
7236 * objfiles.c (allocate_objfile): Set allocate and free functions
7237 for the macro cache's objstack.
7238 (free_objfile): Empty the macro cache's obstack.
7239 * symfile.c (reread_symbols): Empty the macro cache's obstack, and
7240 set new allocate and free functions for it.
7241 * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
7242 free functions for the macro cache's objstack. (Why is this
7243 function building its own objfile?)
7244 * symmisc.c (print_objfile_statistics): Print statistics on the
7245 macro bcache.
7246 * Makefile.in: Note that buildsym.o depends on macrotab.h.
7247
7248 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
7249
7250 * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
7251 (REGISTER_U_ADDR): Delete definition.
7252 (arm_register_u_addr): Delete declaration.
7253
7254 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
7255
7256 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
7257 (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
7258
7259 2002-05-14 Andrew Cagney <ac131313@redhat.com>
7260
7261 * regcache.c (register_valid): Revise comments refering to "Not
7262 available" and "unavailable".
7263 * frame.c (frame_register_read): Ditto.
7264 * findvar.c (value_of_register): Ditto.
7265
7266 2002-05-15 Andrew Cagney <cagney@redhat.com>
7267
7268 * Makefile.in (remote_sim_h): Replace remote-sim_h.
7269 (remote-sim.o): Update dependencies.
7270 (d10v-tdep.o): Specify dependencies.
7271 (sim_d10v_h): Define.
7272
7273 2002-05-14 Jim Blandy <jimb@redhat.com>
7274
7275 * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
7276 * macrotab.c (macro_lookup_inclusion, find_definition,
7277 new_macro_table): Same.
7278
7279 * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
7280 not `! strcmp ()'. This is a dubious improvement.
7281 * macrotab.c (macro_lookup_inclusion, find_definition): Same.
7282
7283 * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
7284 although it's not necessary, to avoid a warning.
7285
7286 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
7287
7288 * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
7289 (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
7290 TYPE_INSTANCE_FLAGS.
7291 (struct main_type): New.
7292 (struct type): Move most members to struct main_type. Change
7293 cv_type and as_type to new type_chain member. Add instance_flags.
7294 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
7295 (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
7296 (finish_cv_type): Remove prototype.
7297 * gdbtypes.c (alloc_type): Update comment. Allocate TYPE_MAIN_TYPE.
7298 Set TYPE_CHAIN.
7299 (alloc_type_instance): New function.
7300 (smash_type): New function.
7301 (make_pointer_type, make_reference_type, make_function_type)
7302 (smash_to_member_type, smash_to_method_type): Call smash_type.
7303 (make_qualified_type): New function.
7304 (make_type_with_address_space): Call make_qualified_type.
7305 (make_cv_type): Likewise.
7306 (finish_cv_type): Remove unnecessary function.
7307 (replace_type): Update comment. Copy TYPE_MAIN_TYPE.
7308 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
7309 remove TYPE_CV_TYPE and TYPE_AS_TYPE.
7310 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
7311 * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
7312 * hpread.c (hpread_read_struct_type): Likewise.
7313 * stabsread.c (read_struct_type): Likewise.
7314
7315 2002-05-14 Elena Zannoni <ezannoni@redhat.com>
7316
7317 * configure.tgt: Add a catch all sh* target, for cases like
7318 sh[2,3,4]-elf and sh-hms.
7319
7320 2002-05-14 Keith Seitz <keiths@redhat.com>
7321
7322 * event-loop.c (create_file_handler): Don't do anything but
7323 update data when we are given a fd which we are already
7324 monitoring.
7325
7326 2002-05-14 Michal Ludvig <mludvig@suse.cz>
7327
7328 * dwarf2cfi.c (context_cpy): Copy registers correctly.
7329 (update_context): Use __func__ in warnings.
7330
7331 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
7332
7333 * ser-tcp.c: Include <netinet/udp.h>. Rename tcp_open
7334 and tcp_close to net_open and net_close.
7335 (net_open): Accept "udp:" and "tcp:" specifications. Connect
7336 using UDP if requested. Don't try to disable Nagle on UDP
7337 sockets.
7338 * remote.c (remote_serial_open): New function. Warn about UDP.
7339 (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
7340
7341 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
7342
7343 * MAINTAINERS: List sh-elf as buildable with ,-Werror.
7344
7345 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
7346
7347 * configure.tgt: Remove sh-hms target.
7348 * MAINTAINERS: Don't list sh-hms as a separate target.
7349
7350 2002-05-13 Jim Blandy <jimb@redhat.com>
7351
7352 Add first preprocessor macro-expansion files.
7353 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
7354 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
7355 (splay_tree_h, macroexp_h, macrotab_h): New variable.
7356 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
7357 (COMMON_OBS): Add macrotab.o, macroexp.o.
7358 (macroexp.o, macrotab.o): New rules.
7359
7360 2002-05-13 Andrew Cagney <ac131313@redhat.com>
7361
7362 * config/m88k/tm-m88k.h: Update copyright.
7363 (m88k_target_write_pc): Declare
7364 (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
7365 (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
7366 (SHIFT_INST_REGS): Update definition.
7367 * m88k-tdep.c (m88k_target_write_pc): New function. Implement
7368 using old definition of TARGET_WRITE_PC.
7369 * regcache.c (generic_target_write_pc): Delete code handling
7370 NNPC_REGNUM.
7371 * gdbarch.sh (NNPC_REGNUM): Delete.
7372 * gdbarch.h, gdbarch.c: Regenerate.
7373
7374 2002-05-13 Richard Earnshaw <rearnsha@arm.com>
7375
7376 * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
7377 builtin reg number.
7378
7379 2002-05-13 Daniel Jacobowitz <drow@mvista.com>
7380
7381 * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
7382 (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
7383 (gen_address_of, gen_struct_ref, gen_repeat): Use type
7384 access macros.
7385 * c-typeprint.c (cp_type_print_method_args): Likewise.
7386 (c_type_print_args): Likewise.
7387 * d10v-tdep.c (d10v_push_arguments): Likewise.
7388 (d10v_extract_return_value): Likewise.
7389 * expprint.c (print_subexp): Likewise.
7390 * gdbtypes.c (lookup_primitive_typename): Likewise.
7391 (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
7392 * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
7393 (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
7394 (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
7395 (TYPE_VECTOR): Likewise.
7396 * hpread.c (hpread_read_struct_type)
7397 (fix_static_member_physnames, fixup_class_method_type)
7398 (hpread_type_lookup): Likewise.
7399 * mdebugread.c (parse_symbol, parse_type): Likewise.
7400 * p-lang.c (is_pascal_string_type): Likewise.
7401 * valops.c (hand_function_call): Likewise.
7402 * x86-64-tdep.c (classify_argument): Likewise.
7403
7404 * hpread.c (hpread_read_function_type)
7405 (hpread_read_doc_function_type): Call replace_type.
7406 * dstread.c (create_new_type): Delete.
7407 (decode_dst_structure, process_dst_function): Call alloc_type.
7408 Use type access macros.
7409
7410 2002-05-12 Mark Kettenis <kettenis@gnu.org>
7411
7412 * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
7413 the're not supported by the current architecture.
7414 (i387_fill_fxsave): Likewise.
7415
7416 2002-05-12 Fred Fish <fnf@redhat.com>
7417
7418 * symfile.c (default_symfile_offsets): Arrange for uninitialized
7419 sect_index_xxx members to index the first slot in section_offsets
7420 if all of the section_offsets are zero.
7421
7422 2002-05-12 Mark Kettenis <kettenis@gnu.org>
7423
7424 * configure.tgt (sparc-*openbsd): Remove entry accidentially
7425 checked in with last change.
7426
7427 2002-05-12 Mark Kettenis <kettenis@gnu.org>
7428
7429 * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
7430 Remove targets. These are canonicalized to i386-*-sysv4.2uw by
7431 config.sub.
7432
7433 2002-05-12 Daniel Jacobowitz <drow@mvista.com>
7434
7435 * Makefile.in: Update dependencies.
7436
7437 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7438
7439 * language.c (local_hex_string_custom): Simplify. Do not depend
7440 on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
7441
7442 * memattr.c (mem_info_command): Replace calls to
7443 longest_local_hex_string and longest_local_hex_string_custom.
7444 * buildsym.c (make_blockvector): Ditto.
7445 * solib.c (info_sharedlibrary_command): Ditto.
7446 * tracepoint.c (tracepoints_info): Ditto.
7447 * symtab.c (print_msymbol_info): Ditto.
7448
7449 * language.c (local_hex_string): Delete.
7450 (local_hex_string_custom): Delete.
7451 (longest_local_hex_string): Rename to local_hex_string.
7452 (longest_local_hex_string_custom): Rename to
7453 local_hex_string_custom.
7454 * language.h (local_hex_string): Change parameter type to LONGEST.
7455 (local_hex_string_custom): Ditto.
7456 (longest_local_hex_string): Delete declaration.
7457 (longest_local_hex_string_custom): Ditto.
7458
7459 * solib.c: Update copyright.
7460 * memattr.c: Update copyright.
7461
7462 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7463
7464 * arch-utils.h (legacy_register_to_value): Declare.
7465 (legacy_value_to_register): Declare.
7466 (legacy_convert_register_p): Declare.
7467 * arch-utils.c (legacy_register_to_value): New function.
7468 (legacy_value_to_register): New function.
7469 (legacy_convert_register_p): New function.
7470
7471 * gdbarch.sh (REGISTER_TO_VALUE): Define.
7472 (VALUE_TO_REGISTER): Define.
7473 (CONVERT_REGISTER_P): Define.
7474 * gdbarch.h, gdbarch.c: Regenerate.
7475
7476 * valops.c (value_assign): Use CONVERT_REGISTER_P and
7477 VALUE_TO_REGISTER.
7478 * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
7479 CONVERT_REGISTER_P.
7480
7481 2005-05-11 Daniel Jacobowitz <drow@mvista.com>
7482 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
7483
7484 * Makefile.in: Update dependencies for valops.c.
7485 * valops.c: Include "gdb_assert.h".
7486 (typecmp): Skip THIS parameter to methods.
7487 (find_method_list): Remove static_memfuncp argument,
7488 update callers. Check for stub methods.
7489 (find_value_oload_method_list): Don't set *static_memfuncp.
7490 (find_overload_match): Don't check for stub methods. Assert
7491 that methods are not stubbed. Handle static methods.
7492 (value_find_oload_method_list): Remove static_memfuncp argument.
7493 * gdbtypes.c (check_stub_method): Do not add THIS pointer
7494 to the argument list for static stub methods.
7495 * value.h (value_find_oload_method_list): Update prototype.
7496
7497 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7498
7499 * arch-utils.h (generic_register_size): Declare.
7500 (generic_register_raw_size, generic_register_virtual_size): Delete
7501 declarations.
7502 * arch-utils.c (generic_register_raw_size): Delete.
7503 (generic_register_size): New function.
7504 (generic_register_virtual_size): Delete.
7505
7506 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
7507 default generic_register_size.
7508 * gdbarch.h, gdbarch.c: Re-generate.
7509
7510 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
7511 register_virtual_size.
7512 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
7513 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
7514
7515 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7516
7517 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
7518 * gdbarch.h, gdbarch.c: Regenerate.
7519 * gnu-v3-abi.c: Update copyright.
7520 (vtable_address_point_offset): Update.
7521 (gnuv3_rtti_type): Update.
7522 (gnuv3_baseclass_offset): Update.
7523 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
7524 (init_fetch_link_map_offsets): Update.
7525 * remote.c (get_remote_state): Update.
7526
7527 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
7528
7529 * TODO: Remove value_headof/value_from_vtable_info comment.
7530 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
7531 * values.c (value_headof, value_from_vtable_info): Delete.
7532 * value.h (value_from_vtable_info): Delete prototype.
7533
7534 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7535
7536 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
7537 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
7538 $(gdb_regex_h).
7539 (gdb_assert_h): Define.
7540 (gdb_wait_h): Define.
7541 (gdb_regex_h): Define.
7542
7543 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
7544
7545 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
7546 * linespec.c (find_methods): Handle GCC 3.x template constructors.
7547
7548 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7549
7550 * nbsd-tdep.c: Fix comment.
7551
7552 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7553
7554 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
7555 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
7556 (nbsd-tdep.o): New dependency list.
7557 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
7558 nbsd-tdep.h.
7559 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
7560 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
7561 * nbsd-tdep.c: New file.
7562 * nbsd-tdep.h: New file.
7563 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
7564 nbsd-tdep.h.
7565 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
7566 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
7567 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
7568 * config/sh/nbsd.mt (TDEPFILES): Ditto.
7569
7570 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7571
7572 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
7573 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
7574 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
7575 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
7576 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
7577 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
7578
7579 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7580
7581 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
7582 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7583 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
7584 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
7585 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
7586 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
7587 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
7588
7589 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7590
7591 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
7592 fetch_elfcore_registers to...
7593 * i386nbsd-tdep.c: ...here.
7594 (i386nbsd_use_struct_convention): Rename to...
7595 (i386nbsd_aout_use_struct_convention): ...this.
7596 (i386nbsd_supply_reg): New function.
7597 (i386nbsd_fill_reg): New function.
7598 (fetch_core_registers): Use i386nbsd_supply_reg.
7599 (fetch_elfcore_registers): Likewise.
7600 (_initialize_i386nbsd_tdep): New function.
7601 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
7602 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7603 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
7604 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
7605 (i386nbsd_aout_use_struct_convention): ...this.
7606
7607 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7608
7609 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
7610 (store_inferior_registers): Use shnbsd_fill_reg.
7611 * shnbsd-tdep.c (sh_nbsd_supply_registers,
7612 sh_nbsd_supply_register): Collapse into...
7613 (shnbsd_supply_reg): ...this.
7614 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
7615 (shnbsd_fill_reg): ...this.
7616 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
7617 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
7618 (fetch_core_registers): Use shnbsd_supply_reg.
7619 (fetch_elfcore_registers): Use shnbsd_supply_reg.
7620 (sh_nbsd_core_fns): Rename to...
7621 (shnbsd_core_fns): ...this.
7622 (sh_nbsd_elfcore_fns): Rename to...
7623 (shnbsd_elfcore_fns): ...this.
7624 (sh_nbsd_init_abi): Rename to...
7625 (shnbsd_init_abi): ...this.
7626 (_initialize_sh_nbsd_tdep): Rename to...
7627 (_initialize_shnbsd_tdep): ...this.
7628 * shnbsd-tdep.h (sh_nbsd_supply_registers,
7629 sh_nbsd_supply_register, sh_nbsd_fill_registers,
7630 sh_nbsd_fill_register): Remove prototypes.
7631 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
7632
7633 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7634
7635 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
7636 (i387-nat.o): Delete dependency list.
7637 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
7638 (x86-64-linux-nat.o): Likewise.
7639 * i387-nat.c: Delete file, moving contents to...
7640 * i387-tdep.c: ...here.
7641 * i387-nat.h: Rename...
7642 * i387-tdep.h: ...to this.
7643 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
7644 * i386-linux-nat.c: Likewise.
7645 * i386bsd-nat.c: Likewise.
7646 * i386gnu-nat.c: Likewise.
7647 * i386nbsd-nat.c: Likewise.
7648 * i386v4-nat.c: Likewise.
7649 * x86-64-linux-nat.c: Likewise.
7650 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
7651 * config/i386/go32.mh (NATDEPFILES): Likewise.
7652 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
7653 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
7654 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
7655 * config/i386/linux.mh (NATDEPFILES): Likewise.
7656 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
7657 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7658 * config/i386/obsd.mh (NATDEPFILES): Likewise.
7659 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
7660
7661 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7662
7663 * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
7664 (alphanbsd-nat.o): Remove dependency list.
7665 (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
7666 * alphanbsd-nat.c: Delete. Contents moved to...
7667 * alphanbsd-tdep.c: ...here.
7668 (_initialize_alphanbsd_tdep): Register core functions.
7669 * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
7670
7671 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7672
7673 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
7674 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
7675 (alphanbsd-nat.o): Likewise.
7676 (alphabsd-tdep.o): New dependency list.
7677 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
7678 (fill_gregset): Use alphabsd_fill_reg.
7679 (supply_fpregset): Use alphabsd_supply_fpreg.
7680 (fill_fpregset): Use alphabsd_fill_fpreg.
7681 (fetch_inferior_registers): Use struct reg and struct fpreg
7682 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
7683 and alphabsd_supply_fpreg.
7684 (store_inferior_registers): Use struct reg and struct fpreg
7685 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
7686 and alphabsd_fill_fpreg.
7687 * alphabsd-tdep.c: New file.
7688 * alphabsd-tdep.h: New file.
7689 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
7690 (fetch_elfcore_registers): Use alphabsd_supply_reg and
7691 alphabsd_supply_fpreg.
7692 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
7693 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
7694
7695 2002-05-11 Eric Christopher <echristo@redhat.com>
7696
7697 * mips-tdep.c (mips_double_register_type): Fix thinko.
7698 (mips_single_register_type): Ditto.
7699 * MAINTAINERS: Add self.
7700
7701 2002-05-11 Mark Kettenis <kettenis@gnu.org>
7702
7703 * i387-nat.c (i387_supply_register, i387_fill_fsave,
7704 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
7705 right thing on architectures with different endianness and/or
7706 integer sizes.
7707
7708 2002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
7709
7710 From Christian Limpach <chris@Pin.LU>
7711 * configure.in: Change sed expression which comments out
7712 NATDEPFILES to also comment out continuation lines.
7713 * configure: Regenerate.
7714
7715 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
7716
7717 * sh-tdep.c: Clean up code erroneously reintroduced by previous
7718 big patch.
7719
7720 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
7721
7722 * sh-tdep.c: Include correct file.
7723
7724 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
7725
7726 New support for sh64-elf (sh5) target.
7727
7728 * configure.tgt: For sh64-elf target, default to sh-elf.
7729
7730 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
7731 (struct gdbarch_tdep): Add new fields for new registers and ABI
7732 info.
7733
7734 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
7735 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
7736 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
7737 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
7738 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
7739 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
7740 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
7741 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
7742 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
7743 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
7744 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
7745 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
7746 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
7747 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
7748 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
7749 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
7750 sh64_get_gdb_regnum, sh64_media_reg_base_num,
7751 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
7752 sign_extend, sh64_nofp_frame_init_saved_regs,
7753 sh64_init_extra_frame_info, sh64_get_saved_register,
7754 sh64_extract_struct_value_address, sh64_pop_frame,
7755 sh64_push_arguments, sh64_extract_return_value,
7756 sh64_store_return_value, sh64_show_media_regs,
7757 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
7758 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
7759 sh_sh64_register_virtual_type,
7760 sh_sh64_register_convert_to_virtual,
7761 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
7762 sh64_register_read, sh64_pseudo_register_write,
7763 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
7764 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
7765 sh64_do_pseudo_register, sh_compact_do_registers_info,
7766 sh64_do_registers_info, sh_gdbarch_init): New functions.
7767
7768 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
7769
7770 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
7771
7772 2002-05-10 Daniel Jacobowitz <drow@mvista.com>
7773
7774 * linespec.c (decode_line_1): Check for a double quote after
7775 a filename correctly.
7776
7777 2002-05-10 Jim Blandy <jimb@redhat.com>
7778
7779 Properly track the size of the current objfile's .debug_line section.
7780 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
7781 (DWARF_LINE_SIZE): New macro.
7782 (dwarf2_build_psymtabs_hard): Record the line section's size in
7783 the partial symbol table.
7784 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
7785 symbol table.
7786
7787 2002-05-10 Petr Sorfa <petrs@caldera.com>
7788
7789 * ia64-tdep.c: Handle breakpoints on L instruction type
7790 in MLX instruction bundle by moving the breakpoint to
7791 the third slot (X instruction type) as L holds only data.
7792
7793 2002-05-10 Kevin Buettner <kevinb@redhat.com>
7794
7795 * dbxread.c (discarding_local_symbols_complaint): New complaint.
7796 (process_one_symbol): Complain about discarding local symbols
7797 due to a misplaced N_LBRAC entry.
7798
7799 2002-05-09 Elena Zannoni <ezannoni@redhat.com>
7800
7801 From Daniel Berlin <dan@cgsoftware.com>
7802 * linespec.c (find_toplevel_char): '<' and '>' also increase and
7803 decrease the depth we are at, in the case of templates.
7804
7805 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
7806
7807 * mips-tdep.c (mips_float_register_type): New function.
7808 (mips_double_register_type): New function.
7809 (mips_print_register): Use them.
7810 (do_fp_register_row): Likewise.
7811
7812 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
7813
7814 * signals/signals.c (signals): Remove conditional compilation around
7815 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
7816 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
7817
7818 2002-05-09 Michael Snyder <msnyder@redhat.com>
7819
7820 * remote-rdp.c (remote_rdp_can_run): Remove.
7821
7822 2002-05-09 Tom Tromey <tromey@redhat.com>
7823
7824 * jv-valprint.c (java_val_print): Handle `char' as a special case
7825 of TYPE_CODE_INT.
7826
7827 2002-05-09 Michael Snyder <msnyder@redhat.com>
7828
7829 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
7830 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
7831 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
7832 str r(0123),[sp,#nn].
7833 (arm_skip_prologue): Ditto. Also make disassembly
7834 order-independent by placing it in a loop.
7835
7836 2002-05-06 Michael Snyder <msnyder@redhat.com>
7837
7838 * stabsread.c (read_type): Add recognition for new attribute:
7839 "@V;" means that an array type is actually a vector.
7840 This is analogous to the vector flag that's been added to dwarf2.
7841
7842 2002-05-09 Mark Kettenis <kettenis@gnu.org>
7843
7844 * i386-tdep.h (i386_abi): New enum.
7845 (struct gdbarch_tdep): Replace os_ident member with abi.
7846 (i386_gdbarch_register_os_abi): New prototype.
7847 * i386-tdep.c (i386_abi_names): New array.
7848 (process_note_abi_tag_sections): Removed.
7849 (process_note_sections): New function.
7850 (i386_elf_abi_from_note, i386_elf_abi): New functions.
7851 (struct i386_abi_handler): New struct.
7852 (i386_abi_handler_list): New variable.
7853 (i386_gdbarch_register_os_abi): New function.
7854 (i386_gdbarch_init): Adapt for the changes given above.
7855
7856 2002-05-08 Daniel Jacobowitz <drow@mvista.com>
7857
7858 * gregset.h: Say "GNU/Linux".
7859
7860 2002-05-08 Elena Zannoni <ezannoni@redhat.com>
7861
7862 * gdbtypes.c : Add new builtin type for 64 bit vectors.
7863 (build_gdbtypes): Build builtin_type_v2_float.
7864 (_initialize_gdbtypes): Register new builtin type.
7865
7866 2002-05-08 Andrew Cagney <ac131313@redhat.com>
7867
7868 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
7869 (clear_gdbarch_swap): New function.
7870 (initialize_non_multiarch): Call.
7871 (gdbarch_update_p): Before calling init(), swap out and clear the
7872 existing architecture.
7873 * gdbarch.c: Regenerate.
7874
7875 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7876
7877 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
7878 alphanbsd-tdep.c.
7879
7880 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7881
7882 * sh-nbsd-nat.c: Rename to...
7883 * shnbsd-nat.c: ...this.
7884 * sh-nbsd-tdep.c: Rename to...
7885 * shnbsd-tdep.c: ...this.
7886 * sh-nbsd-tdep.h: Rename to...
7887 * shnbsd-tdep.h: ...this.
7888 * config/sh/nbsd.mh: Use shnbsd-nat.o.
7889 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
7890
7891 2002-05-08 Richard Earnshaw <rearnsha@arm.com>
7892
7893 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
7894 concatenation for command help messages.
7895
7896 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7897
7898 * NEWS: Note new sh*-*-netbsdelf* configuration.
7899 * configure.host: Set gdb_host_cpu to sh for all sh*.
7900 (sh*-*-netbsdelf*): New host.
7901 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
7902 (sh*-*-netbsdelf*): New target.
7903 * sh-nbsd-nat.c: New file.
7904 * sh-nbsd-tdep.c: New file.
7905 * sh-nbsd-tdep.h: New file.
7906 * config/sh/nbsd.mh: New file.
7907 * config/sh/nbsd.mt: New file.
7908 * config/sh/nm-nbsd.h: New file.
7909 * config/sh/tm-nbsd.h: New file.
7910
7911 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7912
7913 * sh-tdep.c (sh_osabi_names): Declare.
7914 (process_note_abi_tag_sections): New function.
7915 (get_elfosabi): Ditto.
7916 (sh_gdbarch_register_os_abi): Ditto.
7917 (sh_dump_tdep): Ditto.
7918 _initialize_sh_tdep): Use gdbarch_register to register
7919 sh_gdbarch_init and sh_dump_tdep.
7920 * config/sh/tm-sh.h (sh_osabi): Declare.
7921 (gdbarch_tdep): Add sh_osabi and osabi_name members.
7922
7923 2002-05-07 Andrew Cagney <ac131313@redhat.com>
7924
7925 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
7926 (thumb_scan_prologue): Ditto.
7927 (arm_find_callers_reg): Ditto.
7928 (arm_frame_chain): Ditto.
7929 (arm_init_extra_frame_info): Ditto.
7930 (arm_frame_saved_pc): Ditto.
7931 (arm_pop_frame): Ditto.
7932 (arm_push_return_address): New function.
7933 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
7934 call_dummy_location, call_dummy_breakpoint_offset_p,
7935 call_dummy_breakpoint_offset, call_dummy_p,
7936 call_dummy_stack_adjust_p, call_dummy_words,
7937 sizeof_call_dummy_words, call_dummy_start_offset,
7938 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
7939 call_dummy_address, push_return_address and push_dummy_frame for
7940 generic dummy frames.
7941
7942 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
7943
7944 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
7945 size computation for alloca.
7946 (sh_fp_frame_init_saved_regs): Likewise.
7947
7948 2002-05-07 Richard Earnshaw <rearnsha@arm.com>
7949
7950 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
7951 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
7952 * arm-tdep.c (arm_store_return_value): Use them.
7953 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
7954 * remote-rdp.c (remote_rdp_fetch_register): Use
7955 ARM_MAX_REGISTER_RAW_SIZE.
7956 (remote_rdp_store_register): Likewise.
7957
7958 2002-05-07 Michal Ludvig <mludvig@suse.cz>
7959
7960 * dwarf2cfi.c: Code cleanup, removed unused variables,
7961 added default labels to switch {} statements.
7962 * x86-64-tdep.c: Ditto.
7963 * x86-64-linux-nat.c: Ditto.
7964
7965 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
7966
7967 * solib.h: Protect against multiple inclusion.
7968
7969 2002-05-06 Jim Blandy <jimb@redhat.com>
7970
7971 Add first preprocessor macro-expansion files.
7972 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
7973 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
7974 (splay_tree_h, macroexp_h, macrotab_h): New variable.
7975 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
7976 (COMMON_OBS): Add macrotab.o, macroexp.o.
7977 (macroexp.o, macrotab.o): New rules.
7978
7979 Separate the job of reading the line number info statement program
7980 header (...expialidocious) out into its own function.
7981 * dwarf2read.c (struct line_head, struct filenames, struct
7982 directories): Replace with...
7983 (struct line_header): New structure, containing the full
7984 contents of the statement program header, including the
7985 include directory and file name tables.
7986 (read_file_scope): If we have line number info, instead of just
7987 calling dwarf_decode_lines to do all the work, call
7988 dwarf_decode_line_header first to get a `struct line_header'
7989 containing the data in the statement program header, and then
7990 pass that to dwarf_decode_lines, which will pick up where that
7991 left off. Be sure to clean up the `struct line_header' object.
7992 (dwarf_decode_line_header, free_line_header, add_include_dir,
7993 add_file_name): New functions.
7994 (dwarf_decode_lines): Move all the code to read the statement
7995 program header into dwarf_decode_line_header. Take the line
7996 header it built as the first argument, instead of the offset to
7997 the compilation unit's line number info. Use the new `struct
7998 line_header' type instead of the old structures. No need to do
7999 cleanups here now, since we don't allocate anything.
8000 (dwarf2_statement_list_fits_in_line_number_section,
8001 dwarf2_line_header_too_long): New complaints.
8002
8003 2002-05-06 Elena Zannoni <ezannoni@redhat.com>
8004
8005 * gdbtypes.c (init_vector_type): New function.
8006 (build_builtin_type_vec128): Simplify the representation of SIMD
8007 registers.
8008 (build_gdbtypes): Initialize new builtin vector types.
8009 (_initialize_gdbtypes): Register new vector types with gdbarch.
8010 (builtin_type_v4_float, builtin_type_v4_int32,
8011 builtin_type_v8_int16, builtin_type_v16_int8,
8012 builtin_type_v2_int32, builtin_type_v4_int16,
8013 builtin_type_v8_int8): New (renamed) SIMD types.
8014
8015 2002-05-06 Mark Kettenis <kettenis@gnu.org>
8016
8017 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
8018 (i387_fill_fxsave): Likewise.
8019
8020 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
8021
8022 * alpha-tdep.c (alpha_extract_return_value): Don't use
8023 non-constant array size in prototype.
8024
8025 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8026
8027 From Brian Taylor <briant at model dot com>:
8028 * ui-out.c (ui_out_field_core_addr): Use the function
8029 longest_local_hex_string_custom'to format addresses > 32 bits
8030 wide.
8031
8032 * ui-out.c (ui_out_field_core_addr): Update comment.
8033
8034 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8035
8036 * stack.c (select_and_print_frame): Make static. Delete the
8037 parameter `level'.
8038 (func_command): Update call.
8039 (select_frame_command): Delete code computing the frame level.
8040 * frame.h (select_and_print_frame): Delete declaration.
8041
8042 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8043
8044 * sparc-tdep.c (sparc_get_saved_register): Comment why
8045 get_prev_frame call is safe.
8046
8047 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8048
8049 * frame.h (select_frame): Delete level parameter.
8050 * stack.c (select_frame): Update. Use frame_relative_level to
8051 obtain the frame's level.
8052 (select_and_print_frame): Update call.
8053 (select_frame_command): Ditto.
8054 (up_silently_base): Ditto.
8055 (down_silently_base): Ditto.
8056 * ocd.c (ocd_start_remote): Ditto.
8057 * remote-rdp.c (remote_rdp_open): Ditto.
8058 * remote-mips.c (mips_initialize): Ditto.
8059 (common_open): Ditto.
8060 * remote-e7000.c (e7000_start_remote): Ditto.
8061 * m3-nat.c (select_thread): Ditto.
8062 * hppa-tdep.c (child_get_current_exception_event): Ditto.
8063 (child_get_current_exception_event): Ditto.
8064 * varobj.c (varobj_create): Ditto.
8065 (varobj_update): Ditto.
8066 (c_value_of_root): Ditto.
8067 * tracepoint.c (finish_tfind_command): Ditto.
8068 * corelow.c (core_open): Ditto.
8069 * arch-utils.c (generic_prepare_to_proceed): Ditto.
8070 * thread.c (info_threads_command): Ditto.
8071 (switch_to_thread): Ditto.
8072 * infrun.c (normal_stop): Ditto.
8073 (restore_selected_frame): Ditto.
8074 (restore_inferior_status): Ditto.
8075 * breakpoint.c (insert_breakpoints): Ditto.
8076 (watchpoint_check): Ditto.
8077 (bpstat_stop_status): Ditto.
8078 (do_enable_breakpoint): Ditto.
8079 * blockframe.c (flush_cached_frames): Ditto.
8080 (reinit_frame_cache): Ditto.
8081
8082 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8083
8084 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
8085 maintainer.
8086
8087 2002-05-04 Jim Blandy <jimb@redhat.com>
8088
8089 * gdbtypes.c (replace_type): Doc fix.
8090
8091 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8092
8093 * valprint.c (strcat_longest): Delete commented out function.
8094 Update copyright.
8095
8096 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8097
8098 * MAINTAINERS: Mark a29k as deleted.
8099 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
8100 Move new configurations to the top.
8101 * configure.tgt: Remove a29k.
8102 * config/a29k/tm-vx29k.h: Delete.
8103 * config/a29k/vx29k.mt: Delete.
8104 * config/a29k/tm-a29k.h: Delete.
8105 * config/a29k/a29k-udi.mt: Delete.
8106 * config/a29k/a29k.mt: Delete.
8107 * a29k-tdep.c: Delete.
8108 * remote-udi.c: Delete.
8109 * remote-mm.c: Delete.
8110 * remote-eb.c: Delete.
8111 * remote-adapt.c: Delete.
8112 * Makefile.in: Remove obsolete code.
8113 * config/s390/s390x.mt: Ditto.
8114 * config/s390/s390.mt: Ditto.
8115 * config/sparc/sparclynx.mh: Ditto.
8116 * config/sparc/linux.mh: Ditto.
8117 * config/pa/hppaosf.mh: Ditto.
8118 * config/pa/hppabsd.mh: Ditto.
8119 * config/ns32k/nbsd.mt: Ditto.
8120 * config/mips/vr5000.mt: Ditto.
8121 * config/m68k/sun3os4.mh: Ditto.
8122 * config/m68k/nbsd.mt: Ditto.
8123 * config/m68k/m68klynx.mh: Ditto.
8124 * config/m32r/m32r.mt: Ditto.
8125 * config/i386/x86-64linux.mt: Ditto.
8126 * config/i386/nbsdelf.mt: Ditto.
8127 * config/i386/nbsd.mt: Ditto.
8128 * config/i386/i386lynx.mh: Ditto.
8129
8130 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8131
8132 * target.c (debug_print_register): New function. Handle oversize
8133 registers.
8134 (debug_to_fetch_registers): Call.
8135 (debug_to_store_registers): Call.
8136
8137 2002-05-03 Jim Blandy <jimb@redhat.com>
8138
8139 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
8140 (read_type): Doc fix.
8141 * gdbtypes.c (replace_type): Doc fix.
8142
8143 * stabsread.c (multiply_defined_struct): New complaint.
8144 (read_struct_type): If the type we were passed isn't empty, or
8145 incomplete, don't read the new struct type into it; complain,
8146 and return the original type unchanged. Take a new `type_code'
8147 argument, which is the type code for the new type.
8148 (read_type): Rather than storing the type's type code here, pass
8149 it as an argument to read_struct_type, and let that take care of
8150 storing it. That way, we don't overwrite the original type code,
8151 so read_struct_type can use it to decide whether we're overwriting
8152 something we shouldn't.
8153 (complain_about_struct_wipeout): New function.
8154
8155 2002-05-03 Andrew Cagney <ac131313@redhat.com>
8156
8157 * gdbarch.sh: Assert that gdbarch is non-NULL.
8158 * gdbarch.c: Regenerate.
8159
8160 2002-05-03 Jason Merrill <jason@redhat.com>
8161
8162 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
8163 and return NULL.
8164
8165 2002-05-03 Michal Ludvig <mludvig@suse.cz>
8166
8167 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
8168 (x86_64_dwarf2gdb_regno_map_length),
8169 (x86_64_dwarf2_reg_to_regnum): Added.
8170 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
8171 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
8172 (_initialize_x86_64_tdep): Synced with the change above.
8173 (x86_64_skip_prologue): Reformulated message.
8174
8175 2002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
8176
8177 * f-exp.y: Also use new prev_lexptr variable
8178 to improve error reporting. Based on Michael Snyder
8179 2002-04-24 dated patch to c-exp.y.
8180 * jv-exp.y: Likewise.
8181 * m2-exp.y: Likewise.
8182
8183 2002-05-02 Elena Zannoni <ezannoni@redhat.com>
8184
8185 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
8186 we are dealing with vectors.
8187
8188 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8189
8190 * config/m68k/tm-nbsd.h: Obvious fix,
8191 correct machine name.
8192
8193 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8194
8195 * p-typeprint.c (pascal_type_print_base): Add support
8196 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
8197
8198 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8199
8200 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
8201 for fondamental pascal 'char' type.
8202
8203 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8204
8205 * p-lang.h (is_pascal_string_type): Declaration changed,
8206 new sixth argument of type char ** added.
8207 * p-lang.c (is_pascal_string_type): Implementation
8208 changed. Args length_pos, length_size, string_pos, char_size
8209 can now be NULL. New argument arrayname set to the field
8210 name of the char array. Return value set to char array
8211 field index plus one.
8212 * p-valprint.c (pascal_val_print): Adapt to new declaration of
8213 is_pascal_string_type function.
8214
8215 2002-05-02 Andrew Cagney <cagney@redhat.com>
8216
8217 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
8218 <cagney@redhat.com> change.
8219 * gdbarch.c: Regenerate.
8220
8221 2002-05-02 Andrew Cagney <cagney@redhat.com>
8222
8223 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
8224 before probing for a new one. Detect errorenous gdbarch_init
8225 functions.
8226 * gdbarch.c: Regenerate.
8227
8228 2002-05-01 Andrew Cagney <cagney@redhat.com>
8229
8230 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
8231 * config/mcore/tm-mcore.h: Ditto. Update copyright.
8232 * config/v850/tm-v850.h: Ditto. Update copyright.
8233
8234 2002-04-30 Andrew Cagney <ac131313@redhat.com>
8235
8236 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
8237 current_gdbarch.
8238
8239 2002-04-30 Michael Snyder <msnyder@redhat.com>
8240
8241 * arm-tdep.c: Whitespace clean-ups.
8242 (arm_skip_prologue): Fix thinko; two lines
8243 should have been removed as part of 4/24 change.
8244
8245 2002-04-30 Kevin Buettner <kevinb@redhat.com>
8246
8247 * rs6000-tdep.c: Added comment describing how fpscr register
8248 numbers were chosen.
8249
8250 2002-04-30 Michael Snyder <msnyder@redhat.com>
8251
8252 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
8253
8254 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
8255
8256 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
8257 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
8258 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
8259
8260 2002-04-29 Kevin Buettner <kevinb@redhat.com>
8261
8262 From Louis Hamilton <hamilton@redhat.com>:
8263 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
8264 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
8265 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
8266 not bfd-private xcoff data, to determine wordsize.
8267 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
8268
8269 2002-04-29 Andrew Cagney <ac131313@redhat.com>
8270
8271 GDB 5.2 released from 5.2 branch.
8272
8273 2002-04-29 Michal Ludvig <mludvig@suse.cz>
8274
8275 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
8276 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
8277 (x86_64_register_info_table): Added comments with register numbers.
8278
8279 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
8280
8281 * rs6000-tdep.c (rs6000_extract_return_value,
8282 rs6000_store_return_value): Handle returning vectors.
8283 (rs6000_gdbarch_init): Use
8284 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
8285 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
8286 New function.
8287 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
8288 vectors.
8289 (ppc_sysv_abi_push_arguments): Handle vector parameters.
8290 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
8291
8292 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
8293
8294 * hpread.c (hpread_psymtab_to_symtab_1,
8295 hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
8296 with fprintf_unfiltered (gdb_stderr,...).
8297
8298 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
8299
8300 * remote-array.c (printf_monitor, write_monitor,
8301 array_insert_breakpoint, array_remove_breakpoint ):
8302 Replace fprintf (stderr,...
8303 with fprintf_unfiltered (gdb_stderr,....
8304 * remote-es.c: Likewise.
8305 * remote-os9k.c: Likewise.
8306 * remote-st.c: Likewise.
8307
8308 2002-04-28 Andreas Schwab <schwab@suse.de>
8309
8310 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
8311 linux-proc.o and gcore.o.
8312
8313 2002-04-26 Michal Ludvig <mludvig@suse.cz>
8314
8315 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
8316 code without frame pointers.
8317
8318 2002-04-26 Andrew Cagney <ac131313@redhat.com>
8319
8320 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
8321 ON_STACK is needed.
8322
8323 2002-04-26 Ben Elliston <bje@redhat.com>
8324
8325 * target.c (do_xfer_memory): Correct reference to the new option
8326 "trust-readonly-sections".
8327
8328 2002-04-26 Elena Zannoni <ezannoni@redhat.com>
8329
8330 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
8331 * gdbtypes.c (recursive_dump_type): Output the vector flag.
8332 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
8333 vectors.
8334 (read_array_type): Record the fact that this array type is really a
8335 vector (i.e. are passed in by value).
8336
8337 2002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
8338
8339 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
8340 * alpha-tdep.c (alpha_sigcontext_addr): New function.
8341 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
8342 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
8343 * alpha-linux-tdep.c: Include frame.h.
8344 (alpha_linux_sigcontext_addr): New function.
8345 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
8346 alpha_linux_sigcontext_addr.
8347 * alpha-osf1-tdep.c: Include gdbcore.h.
8348 (alpha_osf1_sigcontext_addr): New function.
8349 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
8350 alpha_osf1_sigcontext_addr.
8351 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
8352 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
8353
8354 2002-04-26 Andrew Cagney <ac131313@redhat.com>
8355
8356 * stack.c (selected_frame_level):
8357 (select_frame): Do not set selected_frame_level.
8358 * frame.h (selected_frame_level): Delete declaration.
8359
8360 2002-04-26 Andrew Cagney <ac131313@redhat.com>
8361
8362 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
8363 convert_from_func_ptr-addr when AIX / PowerOpen.
8364
8365 2002-04-25 Andrew Cagney <ac131313@redhat.com>
8366
8367 * valops.c (hand_function_call): Call
8368 generic_save_call_dummy_addr.
8369 * frame.h (generic_save_call_dummy_addr): Declare.
8370 * blockframe.c (struct dummy_frame): Add fields call_lo and
8371 call_hi.
8372 (generic_find_dummy_frame): Check for PC in range call_lo to
8373 call_hi instead of entry_point_address.
8374 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
8375 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
8376 (generic_save_call_dummy_addr): New function.
8377
8378 2002-04-24 David S. Miller <davem@redhat.com>
8379
8380 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
8381 sparc_skip_prologue.
8382 (sparc_skip_prologue): Kill frameless_p arg, and use line number
8383 information to find prologue when possible.
8384 (sparc_prologue_frameless_p): Call examine_prologue directly.
8385 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
8386 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
8387 second argument.
8388 (SKIP_PROLOGUE): Likewise.
8389
8390 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8391
8392 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
8393 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
8394 indicate that the condition it was testing is always true.
8395 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
8396 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
8397 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
8398
8399 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8400
8401 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
8402 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
8403 tdep->jb_pc and tdep->jb_elt_size.
8404 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
8405 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
8406 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
8407 * alpha-nat.c (get_longjmp_target): Remove.
8408 (JB_ELEMENT_SIZE): Ditto.
8409 (JB_PC): Ditto.
8410 * alpha-tdep.c (alpha_get_longjmp_target): New function.
8411 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
8412 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
8413 to alpha_get_longjmp_target.
8414 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
8415 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
8416 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
8417
8418 2002-04-25 Andrew Cagney <ac131313@redhat.com>
8419
8420 * README: Update to GDB 5.2.
8421
8422 2002-04-25 Andrew Cagney <ac131313@redhat.com>
8423
8424 * gdbarch.sh (LC_ALL): Set to `c'.
8425
8426 2002-04-25 Theodore A. Roth <troth@verinet.com>
8427
8428 * avr-tdep.c: Ran through gdb_indent.sh.
8429
8430 2002-04-25 Theodore A. Roth <troth@verinet.com>
8431
8432 * MAINTAINERS: Add myself as AVR maintainer.
8433 * NEWS: Note new target avr.
8434
8435 2002-04-25 Theodore A. Roth <troth@verinet.com>
8436
8437 * Makefile.in: Add support for AVR target.
8438 * configure.tgt: Add support for AVR target.
8439 * avr-tdep.c: New file
8440 * config/avr/avr.mt: New file.
8441
8442 2002-04-25 Theodore A. Roth <troth@verinet.com>
8443
8444 * MAINTAINERS: Add myself to write-after-approval.
8445
8446 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
8447
8448 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
8449 with fprintf_unfiltered (gdb_stderr,....
8450
8451 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
8452
8453 Fix PR gdb/508.
8454 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
8455
8456 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
8457
8458 * p-exp.y: Also use new prev_lexptr variable
8459 to improve error reporting. Based on Michael Snyder
8460 2002-04-24 dated patch to c-exp.y.
8461
8462 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8463
8464 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
8465 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
8466 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
8467 to 0.
8468 * config/alpha/tm-alpha.h: Remove forward decls of struct type
8469 and struct value.
8470 (FUNCTION_START_OFFSET): Remove.
8471 (BREAKPOINT): Ditto.
8472
8473 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8474
8475 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
8476 * NEWS: Ditto.
8477
8478 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8479
8480 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
8481 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
8482 alpha_linux_pc_in_sigtramp.
8483 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
8484 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
8485 alpha_osf1_pc_in_sigtramp.
8486 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
8487 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
8488 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
8489 alphafbsd_pc_in_sigtramp.
8490 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
8491 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
8492 alphanbsd_pc_in_sigtramp.
8493 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
8494 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
8495
8496 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8497
8498 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
8499
8500 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8501
8502 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
8503 alphanbsd-tdep.c.
8504 (alphanbsd-nat.o): New dependency list.
8505 (alphanbsd-tdep.o): Ditto.
8506 * NEWS: Note new native NetBSD/alpha configuration.
8507 * alphanbsd-nat.c: New file.
8508 * alphanbsd-tdep.c: Ditto.
8509 * configure.host (alpha*-*-netbsd*): New host.
8510 * configure.tgt (alpha*-*-netbsd*): New target.
8511 * config/alpha/nbsd.mh: New file.
8512 * config/alpha/nbsd.mt: Ditto.
8513 * config/alpha/nm-nbsd.h: Ditto.
8514 * config/alpha/tm-nbsd.h: Ditto.
8515
8516 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8517
8518 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
8519 (alpha-osf1-tdep.o): New dependency list.
8520 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
8521 and skip_sigtramp_frame members.
8522 * alpha-linux-tdep.c: Include gdbcore.h.
8523 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
8524 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
8525 * alpha-osf1-tdep.c: New file.
8526 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
8527 alpha-osf1-dep.c.
8528 (alpha_frame_past_sigtramp_frame): New function.
8529 (alpha_dynamic_sigtramp_offset): Ditto.
8530 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
8531 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
8532 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
8533 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
8534 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
8535 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
8536 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
8537 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
8538 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
8539 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
8540 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
8541 to find_solib_trampoline_target.
8542 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
8543 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
8544 (SKIP_TRAMPOLINE_CODE): Remove.
8545 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8546 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8547 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
8548 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
8549 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
8550 (PROC_SIGTRAMP_MAGIC): Ditto.
8551 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8552 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8553 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8554 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
8555 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
8556
8557 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8558
8559 * NEWS: Note that Alpha targets are now multi-arch.
8560
8561 2002-04-24 Michael Snyder <msnyder@redhat.com>
8562
8563 * parser-defs.h (prev_lexptr): New external variable.
8564 * parse.c (parse_exp_1): Set prev_lexptr to null before
8565 calling the language-specific parser.
8566 * c-exp.y (yylex): Set prev_lexptr to start of current token.
8567 (yyerror): Use prev_lexptr in error reporting.
8568
8569 2002-04-24 Daniel Jacobowitz <drow@mvista.com>
8570
8571 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
8572 * gregset.h: If FILL_FPXREGSET is defined, provide
8573 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
8574 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
8575 is defined, call fill_fpxregset.
8576
8577 2002-04-24 Roland McGrath <roland@frob.com>
8578
8579 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
8580 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
8581 (supply_gregset, supply_fpregset): New functions.
8582
8583 * gnu-nat.c (gnu_find_memory_regions): New function.
8584 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
8585 (gnu_xfer_memory): Add a cast.
8586
8587 2002-04-24 Michael Snyder <msnyder@redhat.com>
8588
8589 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
8590 loop. Add handling for "str lr, [sp, #-4]!" and for saves
8591 of argument regs ("str r(0123), [r11, #-nn"]).
8592 (arm_skip_prologue): Better handling for frameless functions.
8593 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
8594 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
8595
8596 Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
8597
8598 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
8599 NUM_PSEUDO_REGS can be used.
8600
8601 2002-04-24 Andrew Cagney <ac131313@redhat.com>
8602
8603 * arch-utils.h: Update copyright.
8604
8605 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
8606 * gdbarch.h, gdbarch.c: Re-generate.
8607
8608 * inferior.h (IN_SIGTRAMP): Delete definition.
8609 * arch-utils.c (legacy_pc_in_sigtramp): New function.
8610 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
8611
8612 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
8613 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
8614 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
8615 (find_proc_framesize): Ditto.
8616 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
8617 (alpha_init_extra_frame_info): Ditto.
8618 * infrun.c (handle_inferior_event): Ditto.
8619 (handle_inferior_event): Ditto.
8620 (check_sigtramp2): Ditto.
8621 * blockframe.c (create_new_frame): Ditto.
8622 (get_prev_frame): Ditto.
8623 * ppc-linux-tdep.c: Update comments.
8624 * i386-linux-tdep.c: Update comments.
8625 * breakpoint.c (bpstat_what): Update comment.
8626
8627 2002-04-24 David S. Miller <davem@redhat.com>
8628
8629 * i960-tdep.c (register_in_window_p): New function.
8630 (i960_find_saved_register): Use it instead of
8631 REGISTER_IN_WINDOW_P.
8632 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
8633
8634 * symtab.h (find_stab_function_addr): Kill extern.
8635 * minsyms.c (find_stab_function_addr): Remove from here...
8636 * dbxread.c: ... to here, and mark it static.
8637
8638 2002-04-20 David S. Miller <davem@redhat.com>
8639
8640 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
8641 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
8642
8643 2002-04-21 David S. Miller <davem@redhat.com>
8644
8645 * remote-vxsparc.c (vx_read_register): Fix typo, we want
8646 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
8647 (vx_write_register): Likewise.
8648
8649 2002-04-23 J. Brobecker <brobecker@gnat.com>
8650
8651 * source.c (is_regular_file): New function.
8652 (openp): Check wether file to open is a regular file
8653 to avoid opening directories.
8654
8655 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8656
8657 * findvar.c (extract_signed_integer): Cast printf argument
8658 to suppress format warning.
8659 (extract_unsigned_integer): Likewise.
8660 * infcmd.c (registers_info): Likewise.
8661 * top.c (get_prompt_1): Likewise.
8662 * valops.c (value_assign): Likewise.
8663 * valprint.c (print_decimal): Likewise.
8664
8665 2002-04-22 H.J. Lu (hjl@gnu.org)
8666
8667 * c-exp.y (typebase): Support
8668
8669 [long|long long|short] [signed|unsigned] [int|]
8670
8671 and
8672
8673 signed [long|long long|short] int
8674
8675 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8676
8677 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
8678 and vax-tdep.h.
8679 * vax-tdep.h: New file.
8680 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
8681 Make several routines static.
8682 (vax_get_saved_register): New function.
8683 (vax_gdbarch_init): New function.
8684 (_initialize_vax_tdep): Register vax_gdbarch_init.
8685 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
8686 Remove macros now under the control of gdbarch.
8687
8688 2002-04-22 Michael Snyder <msnyder@redhat.com>
8689
8690 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
8691 Some whitespace and coding standards tweaks.
8692
8693 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8694
8695 * vax-tdep.c: Include regcache.h.
8696 (vax_call_dummy_words): New.
8697 (sizeof_vax_call_dummy_words): New.
8698 (vax_fix_call_dummy): New function.
8699 (vax_saved_pc_after_call): Ditto.
8700 * config/vax/tm-vax.h: Don't include regcache.h.
8701 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
8702 (CALL_DUMMY): Remove.
8703 (CALL_DUMMY_WORDS): Define.
8704 (SIZEOF_CALL_DUMMY_WORDS): Define.
8705 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
8706
8707 2002-04-18 Michael Snyder <msnyder@redhat.com>
8708
8709 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
8710
8711 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8712
8713 * vax-tdep.c (vax_frame_chain): New function.
8714 (vax_push_dummy_frame): Ditto.
8715 (vax_pop_frame): Ditto.
8716 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
8717 (FRAMELESS_FUNCTION_INVOCATION): Use
8718 generic_frameless_function_invocation_not.
8719 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
8720 (POP_FRAME): Use vax_pop_frame.
8721
8722 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8723
8724 * vax-tdep.c (vax_store_struct_return): New function.
8725 (vax_extract_return_value): Ditto.
8726 (vax_store_return_value): Ditto.
8727 (vax_extract_struct_value_address): Ditto.
8728 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
8729 vax_store_struct_return.
8730 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
8731 (STORE_RETURN_VALUE): Use vax_store_return_value.
8732 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
8733
8734 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8735
8736 * vax-tdep.c (vax_frame_saved_pc): New function.
8737 (vax_frame_args_address_correct): Ditto.
8738 (vax_frame_args_address): Ditto.
8739 (vax_frame_locals_address): Ditto.
8740 (vax_frame_num_args): Move code to be in proximity to
8741 other frame-related functions.
8742 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
8743 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
8744 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
8745 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
8746 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
8747
8748 2002-04-22 H.J. Lu (hjl@gnu.org)
8749
8750 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
8751 includedir.
8752
8753 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8754
8755 * vax-tdep.c (vax_frame_init_saved_regs): New function.
8756 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
8757 (FRAME_INIT_SAVED_REGS): New macro.
8758
8759 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8760
8761 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
8762
8763 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8764
8765 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
8766 where needed.
8767 (fetch_osf_core_registers): Likewise.
8768 (supply_gregset): Likewise.
8769
8770 2002-04-22 J. Brobecker <brobecker@gnat.com>
8771
8772 * symfile.h (get_section_index): Define.
8773 * symfile.c (get_section_index): New function.
8774 * mdebugread.c (SC_IS_SBSS): New macro.
8775 (SC_IS_BSS): Return true for the scBss storage class only, as
8776 the scSBss storage class refers to the .sbss section.
8777 (parse_partial_symbols): Discard the symbols which associated
8778 section does not exist.
8779 Make sure to use the .sbss section index for symbols which
8780 storage class is scBss, rather than using the .bss section index.
8781
8782 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8783
8784 * vax-tdep.c: Update copyright years.
8785 (vax_register_name): New function.
8786 (vax_register_byte): Ditto.
8787 (vax_register_raw_size): Ditto.
8788 (vax_register_virtual_size): Ditto.
8789 (vax_register_virtual_type): Ditto.
8790 * config/vax/tm-vax.h: Update copyright years.
8791 (REGISTER_NAMES): Remove.
8792 (REGISTER_NAME): Define.
8793 (REGISTER_BYTE): Use vax_register_byte.
8794 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
8795 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
8796 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
8797
8798 2002-04-21 Andrew Cagney <ac131313@redhat.com>
8799
8800 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
8801 declaration
8802 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
8803
8804 2002-04-21 David S. Miller <davem@redhat.com>
8805
8806 * arch-utils.c (generic_prologue_frameless_p): Kill
8807 SKIP_PROLOGUE_FRAMELESS_P code.
8808 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
8809 references.
8810 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
8811 * arc-tdep.c (arc_prologue_frameless_p): Implement.
8812 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
8813 references.
8814 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
8815 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
8816 (sparc_gdbarch_init): Pass it to
8817 set_gdbarch_prologue_frameless_p.
8818
8819 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8820
8821 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
8822 (alphabsd-nat.o): New dependency list.
8823
8824 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8825
8826 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
8827 alphafbsd-tdep.c.
8828 (alpha-linux-tdep.o): New dependency list.
8829 (alphafbsd-tdep.o): Likewise.
8830
8831 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8832
8833 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
8834 to here...
8835 * alpha-tdep.c: ...from here.
8836 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
8837
8838 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8839
8840 * config/alpha/tm-alpha.h: Move alpha_software_single_step
8841 prototype from here...
8842 * alpha-tdep.h: ...to here.
8843
8844 2002-04-21 Andrew Cagney <ac131313@redhat.com>
8845
8846 * frame.h (selected_frame_level): Document as deprecated.
8847 (frame_relative_level): Declare.
8848 * stack.c (frame_relative_level): New function.
8849 (selected_frame_level): Document as deprecated.
8850 (select_frame): Do not set the selected_frame_level.
8851
8852 * stack.c (frame_info, record_selected_frame): Update.
8853 (frame_command, current_frame_command): Update.
8854 (up_silently_base, up_command, down_silently_base): Update.
8855 (down_command): Update.
8856 * inflow.c (kill_command): Update.
8857 * tracepoint.c (finish_tfind_command): Update.
8858 * corelow.c (core_open): Update.
8859 * thread.c (info_threads_command): Update.
8860 (do_captured_thread_select): Update.
8861 * infcmd.c (finish_command): Update.
8862 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
8863
8864 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8865
8866 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
8867
8868 2002-04-21 Andrew Cagney <ac131313@redhat.com>
8869
8870 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
8871 type const.
8872
8873 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8874
8875 * alphafbsd-tdep.c: Update copyright years. Include
8876 alpha-tdep.h.
8877 (alphafbsd_use_struct_convention): Make static.
8878 (alphafbsd_init_abi): New function.
8879 (_initialize_alphafbsd_tdep): New function.
8880 * config/alpha/tm-fbsd.h: Update copyright years.
8881 (USE_STRUCT_CONVENTION): Remove.
8882
8883 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8884
8885 * alpha-tdep.c (alpha_abi_handler): New structure to describe
8886 an Alpha ABI variant.
8887 (alpha_abi_handler_list): Declare.
8888 (alpha_gdbarch_register_os_abi): New function.
8889 (alpha_gdbarch_init): Give registered ABI variant handlers a
8890 chance to tweak the gdbarch once we have set up defaults.
8891 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
8892
8893 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8894
8895 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
8896 to standard_coerce_float_to_double.
8897 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
8898
8899 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8900
8901 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
8902 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
8903 from gdbarch_tdep rather than a constant.
8904 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
8905 the default text address for all Alpha Unix ABIs.
8906 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
8907 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
8908
8909 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8910
8911 * alpha-tdep.h: New file. Includes several Alpha target constants
8912 taken from...
8913 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
8914 let gdbarch deal with.
8915 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
8916 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
8917 to dependency list.
8918 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
8919 Alpha target register names.
8920 * alphabsd-nat.c: Likewise.
8921 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
8922 Alpha target register names. Make serveral routines static.
8923 (alpha_get_saved_register): New function.
8924 (alpha_abi_names): New.
8925 (process_note_abi_tag_sections): New function.
8926 (get_elfosabi): New function.
8927 (alpha_gdbarch_init): New function.
8928 (alpha_dump_tdep): New function.
8929 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
8930
8931 2002-04-21 Andrew Cagney <ac131313@redhat.com>
8932
8933 * frame.c (find_saved_register): Delete #ifdef
8934 HAVE_REGISTER_WINDOWS code.
8935 * config/sparc/tm-sparc.h: Update comments.
8936 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
8937
8938 2002-04-21 Andrew Cagney <ac131313@redhat.com>
8939
8940 * i960-tdep.c (i960_find_saved_register): New function.
8941 (i960_get_saved_register): New function.
8942 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
8943 (i960_get_saved_register): Declare.
8944 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
8945
8946 2002-04-20 David S. Miller <davem@redhat.com>
8947
8948 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
8949
8950 2002-04-20 Andrew Cagney <ac131313@redhat.com>
8951
8952 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
8953 instead of NUM_PSEUDO_REGS.
8954
8955 2002-04-20 David S. Miller <davem@redhat.com>
8956
8957 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
8958 GDB_MULTI_ARCH_PARTIAL
8959 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
8960 define, let tm-sp64.h do it.
8961
8962 2002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
8963
8964 * frame.c (find_saved_register): Avoid a NULL pointer
8965 dereference and actually walk the frame list.
8966
8967 2002-04-20 Andrew Cagney <ac131313@redhat.com>
8968
8969 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
8970 sorted in most most-recent-used order. Document.
8971 * gdbarch.h, gdbarch.c: Regenerate.
8972
8973 2002-04-19 Andrew Cagney <ac131313@redhat.com>
8974
8975 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
8976 instead of ->prev.
8977 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
8978 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
8979 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
8980 instead of ->prev.
8981
8982 2002-04-19 Elena Zannoni <ezannoni@redhat.com>
8983
8984 Fix PR gdb/471.
8985 * gdbtypes.c (init_simd_type): Rewrite using new functions.
8986 (build_builtin_type_vec128): Ditto.
8987 (append_composite_type_field): Fix calculation of type length in
8988 union case.
8989
8990 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
8991
8992 * config/djgpp/README: Update.
8993
8994 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
8995 compiler warnings.
8996
8997 2002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
8998
8999 * alpha-tdep.c (setup_arbitrary_frame): Rename...
9000 (alpha_setup_arbitrary_frame): ...to this.
9001 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
9002 for alpha_setup_arbitrary_frame.
9003
9004 2002-04-18 Andrew Cagney <cagney@redhat.com>
9005
9006 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
9007 * gdbarch.h, gdbarch.c: Regenerate.
9008
9009 * defs.h (breakpoint_from_pc_fn): Delete type definition.
9010 * target.h (memory_breakpoint_from_pc): Update declaration.
9011 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
9012
9013 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
9014 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
9015 * mem-break.c (memory_breakpoint_from_pc): Ditto.
9016 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
9017 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
9018 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
9019 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
9020 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
9021 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
9022 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
9023 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
9024 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
9025
9026 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
9027 const pointer.
9028 * monitor.c (monitor_insert_breakpoint): Ditto.
9029 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
9030
9031 * config/mcore/tm-mcore.h: Update copyright.
9032 * mem-break.c: Ditto.
9033 * xstormy16-tdep.c: Ditto.
9034
9035 2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
9036
9037 * p-exp.y: Add precedence rule for '^' token.
9038 This removes the shift/reduce conflicts.
9039 Remove the comment concerning these shift/reduce conflicts.
9040
9041 2002-04-18 Elena Zannoni <ezannoni@redhat.com>
9042
9043 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
9044 (registers_powerpc_nofp): New register set for processors
9045 without floating point unit.
9046
9047 2002-04-18 David S. Miller <davem@redhat.com>
9048
9049 * MAINTAINERS: Add myself to write-after-approval.
9050
9051 2002-04-17 Michael Snyder <msnyder@redhat.com>
9052
9053 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
9054
9055 2002-04-17 Andrew Cagney <ac131313@redhat.com>
9056
9057 * rs6000-tdep.c (frame_initial_stack_address): Use
9058 frame_register_read to read the alloca_reg.
9059
9060 2002-04-17 Andrew Cagney <ac131313@redhat.com>
9061
9062 * frame.c (find_saved_register): Find saved registers in the next
9063 not prev frame.
9064 Fix PR gdb/365.
9065
9066 2002-04-17 Andrew Cagney <ac131313@redhat.com>
9067
9068 * gdbarch.sh (LANG): Set to ``c''.
9069
9070 2002-04-15 Andrew Cagney <ac131313@redhat.com>
9071
9072 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
9073
9074 2002-04-15 Andrew Cagney <ac131313@redhat.com>
9075
9076 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
9077 Update copyright.
9078
9079 * hpread.c (hpread_get_lntt): Add declaration.
9080 Also fix PR gdb/391.
9081
9082 2002-04-14 Andrew Cagney <ac131313@redhat.com>
9083
9084 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
9085 * aclocal.m4, configure: Re-generate.
9086 Fix PR gdb/391.
9087
9088 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
9089
9090 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
9091 instead of tm_print_insn.
9092
9093 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
9094
9095 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
9096
9097 2002-04-14 Andrew Cagney <ac131313@redhat.com>
9098
9099 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
9100 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
9101 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
9102
9103 2002-04-12 Don Howard <dhoward@redhat.com>
9104
9105 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
9106 max_user_call_depth.
9107 (init_cmd_lists): Initialize the new value;
9108 * cli/cli-script.c (execute_user_command): Limit the call depth of
9109 user defined commands. This avoids a core-dump when user commands
9110 are infinitly recursive.
9111
9112 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9113
9114 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
9115 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
9116 from tdep struct instead of DEFAULT_LR_SAVE.
9117 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
9118 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
9119 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
9120
9121 2002-04-12 Michael Snyder <msnyder@redhat.com>
9122
9123 * Remote.c: Spelling fix.
9124 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
9125 If no symbol found for "sbrk", try "_sbrk".
9126 (make_output_phdrs): Use bfd_section_name.
9127 (gcore_copy_callback): Use bfd_section_name.
9128 * eval.c: Indentation fix-ups.
9129 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
9130 in case it gets applied to an address that is already
9131 in the instruction space.
9132 * cli/cli-decode.c (help_list): Allow long lines to wrap.
9133 * symfile.c: Fix indentation, long lines.
9134 * source.c: White space fix-up.
9135
9136 2002-04-12 Andrew Cagney <cagney@redhat.com>
9137
9138 * defs.h (read_relative_register_raw_bytes): Delete declaration.
9139 * frame.c (frame_register_read): New function. Return non-zero on
9140 success.
9141 (read_relative_register_raw_bytes_for_frame): Delete.
9142 (read_relative_register_raw_bytes): Delete.
9143 * frame.h (frame_register_read): Declare.
9144 * d30v-tdep.c: Update Copyright. Use frame_register_read.
9145 * sh-tdep.c: Ditto.
9146 * infcmd.c (do_registers_info): Ditto.
9147 * hppa-tdep.c: Ditto.
9148 * rs6000-tdep.c: Ditto.
9149 * h8500-tdep.c: Ditto.
9150 * mips-tdep.c: Ditto.
9151 * h8300-tdep.c: Ditto.
9152 * z8k-tdep.c: Ditto.
9153
9154 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9155
9156 From Jimi X <jimix@watson.ibm.com>:
9157 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
9158 64-bit SysV ABI.
9159
9160 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9161
9162 From Jimi X <jimix@watson.ibm.com>:
9163 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
9164 bfd info.
9165
9166 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9167
9168 From Jimi X <jimix@watson.ibm.com>:
9169 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
9170 register sets for these processor variants.
9171
9172 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
9173
9174 * regformats/reg-ppc.dat: Support FPSCR.
9175
9176 2002-04-11 Kevin Buettner <kevinb@redhat.com>
9177
9178 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
9179 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
9180 Add fpscr as an invalid/unfetchable register.
9181 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
9182 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
9183 (fill_fpregset): Add support for register fpscr.
9184 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
9185 (fill_gregset): Account for the fact that register ``mq'' might
9186 not exist.
9187 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
9188 (registers_power): Add fpscr to register set at slot 71.
9189 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
9190 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
9191
9192 2002-04-11 Michael Snyder <msnyder@redhat.com>
9193
9194 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
9195 * configure: Regenerate.
9196 * config.in: Regenerate.
9197 * acconfig.h: Add define for _SYSCALL32.
9198 * core-sol2.c: Remove #define _SYSCALL32.
9199 * solib-legacy.c: Remove #define _SYSCALL32.
9200
9201 2002-04-10 Andrew Cagney <ac131313@redhat.com>
9202
9203 * stack.c (select_frame): Cleanup internal error message, do not
9204 use %p.
9205
9206 2002-04-10 Andrew Cagney <ac131313@redhat.com>
9207
9208 * stack.c (select_frame): Check that selected_frame and the
9209 specified level are as expected.
9210 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
9211 Update copyright.
9212 * frame.h (struct frame_info): Add field `level'. Update
9213 copyright.
9214 Work-in-progress PR gdb/464.
9215
9216 2002-04-10 Andrew Cagney <ac131313@redhat.com>
9217
9218 * maint.c (maint_print_section_info): Rename print_section_info.
9219 (print_bfd_section_info, print_objfile_section_info): Update.
9220 * inferior.h (struct gdbarch): Add opaque declaration.
9221 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
9222 * gdbarch.h: Regenerate.
9223
9224 2002-04-10 Michal Ludvig <mludvig@suse.cz>
9225
9226 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
9227 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
9228 (kernel_u_size): Added.
9229 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
9230 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
9231
9232 2002-04-04 Jim Ingham <jingham@apple.com>
9233
9234 * valarith.c (find_size_for_pointer_math): New function, either returns
9235 the size for a pointer's target, returns 1 for void *, or errors for
9236 incomplete types.
9237 (value_add, value_sub): use find_size_for_pointer_math.
9238
9239 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
9240
9241 * linux-low.c (linux_look_up_symbols): New hook.
9242 (linux_target_ops): Add linux_look_up_symbols.
9243 * remote-utils.c (decode_address): New function.
9244 (look_up_one_symbol): New function.
9245 * server.c (handle_query): Call target look_up_symbols hook.
9246 * server.h (look_up_one_symbol): Add prototype.
9247 * target.h (struct target_ops): Add look_up_symbols hook.
9248
9249 2002-04-09 Andrew Cagney <ac131313@redhat.com>
9250
9251 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
9252 override FP_REGNUM with frame->fp. Update copyright.
9253 * parse.c (num_std_regs, std_regs): Delete.
9254 (target_map_name_to_register): Do not search std_regs. Update
9255 function description.
9256 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
9257 declarations. Update copyright.
9258 Fix PR gdb/251.
9259
9260 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
9261
9262 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
9263 after the last symbol in a block.
9264
9265 2002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
9266
9267 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
9268 is non zero as a found symbol.
9269
9270 2002-04-08 Andrew Cagney <ac131313@redhat.com>
9271
9272 * findvar.c: Include "builtin-regs.h".
9273 (value_of_register): Call value_of_builtin_reg when applicable.
9274 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
9275 (target_map_name_to_register): Call
9276 builtin_reg_map_name_to_regnum.
9277 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
9278 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
9279 (builtin_regs_h): Define.
9280 (builtin-regs.o): New target.
9281 (findvar.o): Add $(builtin_regs_h).
9282 * builtin-regs.c, builtin-regs.h: New files.
9283 * std-regs.c: New file.
9284 Partial fix for PR gdb/251.
9285
9286 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9287
9288 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
9289 it's no longer required.
9290
9291 2002-04-08 Andrew Cagney <ac131313@redhat.com>
9292
9293 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
9294
9295 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9296
9297 From Jimi X <jimix@watson.ibm.com>:
9298 * rs6000-tdep.c (rs6000_software_single_step): Use
9299 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
9300 and size. Use target_insert_breakpoint() and
9301 target_remove_breakpoint() to insert and remove breakpoints
9302 instead of explicit memory reads and writes.
9303
9304 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9305
9306 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
9307 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
9308 ELF_OBJECT_FORMAT ifdef.
9309
9310 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9311
9312 From Jimi X <jimix@watson.ibm.com>:
9313 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
9314
9315 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9316
9317 From Jimi X <jimix@watson.ibm.com>:
9318 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
9319 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
9320
9321 2002-04-07 Mark Kettenis <kettenis@gnu.org>
9322
9323 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
9324 s/asprintf/xasprintf/.
9325 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
9326
9327 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9328
9329 I believe Jeff Law denies responsability for this one:
9330 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
9331 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
9332 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
9333 Work-around for PR gdb/366.
9334
9335 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
9336
9337 * remote-e7000.c (write_small, e7000_read_inferior_memory,
9338 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
9339 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
9340
9341 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
9342
9343 * sh-tdep.c (sh_fp_frame_init_saved_regs,
9344 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
9345 information.
9346
9347 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9348
9349 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
9350 maintainer.
9351
9352 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9353
9354 * README (Reporting Bugs in GDB): Document the bug web page as the
9355 prefered way of submitting bugs.
9356 Fix PR gdb/402.
9357
9358 2002-04-06 Andrew Cagney <ac131313@redhat.com>
9359
9360 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
9361 -1. Update comment.
9362 * gdbarch.h, gdbarch.c: Re-generate.
9363
9364 2002-04-07 Andreas Schwab <schwab@suse.de>
9365
9366 * m68klinux-nat.c (fill_fpregset): Properly pass address of
9367 buffer to regcache_collect.
9368
9369 2002-04-06 Andrew Cagney <ac131313@redhat.com>
9370
9371 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
9372 * gdbarch.c, gdbarch.h: Re-generate.
9373
9374 2002-04-06 Andrew Cagney <ac131313@redhat.com>
9375
9376 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
9377 declaration. Fix -Werror.
9378
9379 2002-04-05 Daniel Jacobowitz <drow@mvista.com>
9380
9381 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
9382 * gdbarch.c: Regenerate.
9383
9384 2002-04-05 Michael Snyder <msnyder@redhat.com>
9385
9386 * breakpoint.c (clear_command): Rewrite middle section to
9387 combine two loops with identical control conditions.
9388 Add a cleanup to eliminate a memory leak.
9389 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
9390
9391 2002-04-05 H.J. Lu (hjl@gnu.org)
9392
9393 * solib-svr4.c (bkpt_names): Add "__start".
9394
9395 2002-04-04 Andrew Cagney <ac131313@redhat.com>
9396
9397 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
9398 as test for 64 bit target.
9399
9400 2002-04-05 Andrew Cagney <ac131313@redhat.com>
9401
9402 * h8500-tdep.c (h8500_write_fp): Delete function.
9403 * dwarf2cfi.c (cfi_write_fp): Document as not used.
9404 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
9405 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
9406 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
9407 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
9408 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
9409 (s390_write_fp):
9410 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
9411 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
9412 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
9413 (d10v_write_fp): Delete function.
9414 * inferior.h (write_fp, generic_target_write_fp): Delete
9415 declarations.
9416 * regcache.c (generic_target_write_fp): Delete function.
9417 (write_fp): Delete function.
9418 * gdbarch.sh (TARGET_WRITE_FP): Delete.
9419 * gdbarch.h, gdbarch.c: Regenerate.
9420 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
9421 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
9422 (sparc64_write_fp): Delete declaration.
9423 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
9424 (h8500_write_fp): Delete declaration.
9425
9426 2002-04-04 Andrew Cagney <ac131313@redhat.com>
9427
9428 * sparc-tdep.c (sparc64_write_fp): Delete.
9429 (sparc_push_dummy_frame): Replace write_fp call with code to store
9430 the FP directly.
9431 (sparc_gdbarch_init): Do not initialize write_fp.
9432
9433 2002-04-05 Kevin Buettner <kevinb@redhat.com>
9434
9435 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
9436 clause.
9437
9438 2002-03-29 Jim Blandy <jimb@redhat.com>
9439
9440 * stack.c (get_selected_block): Add new argument `addr_in_block',
9441 used to return the exact code address we used to select the block,
9442 not just the block.
9443 * blockframe.c (get_frame_block, get_current_block): Same.
9444 * frame.h (get_frame_block, get_current_block,
9445 get_selected_block): Update declarations.
9446 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
9447 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
9448
9449 2002-04-05 Michael Snyder <msnyder@redhat.com>
9450
9451 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
9452 warning message.
9453
9454 2002-04-05 J. Brobecker <brobecker@gnat.com>
9455
9456 * utils.c (xfullpath): New function.
9457 * defs.h (xfullpath): Add declaration.
9458 * source.c (openp): Use xfullpath in place of gdb_realpath to
9459 avoid resolving the basename part of filenames when the
9460 associated file is a symbolic link. This fixes a potential
9461 inconsistency between the filenames known to GDB and the
9462 filenames it prints in the annotations.
9463 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
9464 to be able to match a filename with either the real filename, or
9465 the name of any symbolic link to this file.
9466 (lookup_partial_symtab): Ditto.
9467
9468 2002-04-04 Michael Snyder <msnyder@redhat.com>
9469
9470 * breakpoint.c: Add support for hardware breakpoints in overlays.
9471 (overlay_events_enabled): New state variable.
9472 (insert_breakpoints): Use overlay_events_enabled to decide
9473 whether to attempt to set a breakpoint at the overlay load addr.
9474 Handle bp_hardware_breakpoint as well as bp_breakpoint.
9475 (remove_breakpoint): Use overlay_events_enabled to decide
9476 whether breakpoints need to be removed from overlay load addr.
9477 Handle bp_hardware_breakpoint as well as bp_breakpoint.
9478 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
9479 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
9480 disable_overlay_breakpoints): Update overlay_events_enabled.
9481
9482 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
9483
9484 * dwarf2read.c (struct function_range): New.
9485 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
9486 (check_cu_functions): New.
9487 (read_file_scope): Initialize global function lists.
9488 Call dwarf_decode_line after processing children.
9489 (read_func_scope): Add to global function list.
9490 (dwarf_decode_lines): Call check_cu_functions everywhere
9491 record_line is called. Call record_line with a linenumber
9492 of 0 to mark sequence ends.
9493
9494 2002-04-04 Michal Ludvig <mludvig@suse.cz>
9495
9496 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
9497 change sync with glibc.
9498
9499 2002-04-03 Jim Blandy <jimb@redhat.com>
9500
9501 * configure.in: Call AC_C_INLINE.
9502 * configure: Regenerated.
9503
9504 2002-04-01 Daniel Jacobowitz <drow@mvista.com>
9505
9506 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
9507 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
9508
9509 2002-03-31 Mark Kettenis <kettenis@gnu.org>
9510
9511 * NEWS: Mention gcore support on FreeBSD/i386.
9512
9513 * fbsd-proc.c: New file.
9514 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
9515 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
9516
9517 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
9518 while statement.
9519
9520 2002-03-29 Jim Blandy <jimb@redhat.com>
9521
9522 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
9523 unescaped newlines in string literals, but newer ones don't. So
9524 escape them.
9525
9526 2002-03-26 Michael Snyder <msnyder@redhat.com>
9527 Andrew Cagney <cagney@redhat.com>
9528
9529 * cli/cli-dump.c: New file. Dump memory to file,
9530 restore file to memory.
9531 * cli/cli-dump.h: New file.
9532 * Makefile.in: Add rules, dependencies for cli-dump.o.
9533 * NEWS: Mention new commands.
9534
9535 2002-03-28 Michael Snyder <msnyder@redhat.com>
9536
9537 * symfile.c (symbol_file_add): Move test for null symbols to later.
9538
9539 2002-03-27 Andrew Cagney <ac131313@redhat.com>
9540
9541 From veksler at il.ibm.com:
9542 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
9543 the xstrduped original path.
9544 Fix PR gdb/417.
9545
9546 2002-03-27 Michael Snyder <msnyder@redhat.com>
9547
9548 * breakpoint.c (_initialize_breakpoint): Clean up help string.
9549 * infcmd.c (_initialize_infcmd): Ditto.
9550 * language.c (_initialize_language): Ditto.
9551 * symfile.c (_initialize_symfile): Ditto.
9552 * top.c (_init_main): Ditto.
9553 * cli/cli-cmds.c (init_cli_cmds): Ditto.
9554
9555 2002-03-27 Elena Zannoni <ezannoni@redhat.com>
9556
9557 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
9558 vector registers handling.
9559 (skip_prologue): Handle new AltiVec instructions. Fill in new
9560 fields of frame data.
9561 (frame_get_saved_regs): Fill in information for AltiVec registers.
9562
9563 2002-03-27 Jim Blandy <jimb@redhat.com>
9564
9565 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
9566 a function; leave this macro here to invoke that function.
9567 (symbol_init_mangled_name): Declaration for that function.
9568 * symtab.c (symbol_init_mangled_name): New function.
9569
9570 2002-03-27 Andrew Cagney <ac131313@redhat.com>
9571
9572 * valarith.c: Replace strerror with safe_strerror.
9573 * tracepoint.c: Ditto.
9574 * lin-lwp.c: Ditto.
9575 * go32-nat.c: Ditto.
9576 * inflow.c: Ditto.
9577 * gnu-nat.c: Ditto.
9578
9579 2002-03-27 Andreas Schwab <schwab@suse.de>
9580
9581 * event-top.c (command_line_handler): Remove useless if.
9582
9583 2002-03-27 Andreas Jaeger <aj@suse.de>
9584
9585 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
9586 comment.
9587
9588 2002-03-27 Michal Ludvig <mludvig@suse.cz>
9589
9590 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
9591 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
9592 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
9593 (x86_64_linux_dr_get_status, supply_gregset),
9594 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
9595 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
9596 (x86_64_register_info_table): Add.
9597 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
9598 (x86_64_register_raw_size, x86_64_register_virtual_type),
9599 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
9600 general x86_64_register_info_table.
9601 (i386_gdbarch_init): gdbarch_register_bytes is now set
9602 dynamicaly during initialization.
9603 * regformats/reg-x86-64.dat: Synced with changes to registers above.
9604 * gdbserver/linux-x86-64-low.c: Ditto.
9605
9606 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
9607
9608 * gdbserver/server.c (main): Call target_signal_to_host_p
9609 and target_signal_to_host on signals received from the remote.
9610 * gdbserver/remote-utils.c (prepare_resume_reply): Call
9611 target_signal_from_host on signals sent to the remote.
9612 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
9613 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
9614
9615 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
9616
9617 * signals/signals.c: Include "server.h" in gdbserver build.
9618 (target_signal_from_name): Don't use STREQ.
9619 (_initialize_signals): Likewise. Don't include function in
9620 gdbserver build.
9621
9622 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
9623
9624 * signals.c: Moved to...
9625 * signals/signals.c: Here.
9626 * Makefile (signals.o): Update.
9627
9628 2002-03-26 Jeff Law (law@redhat.com)
9629
9630 * somread.c (som_symtab_read): Remove some commented out code and
9631 updated related comments. Do not set the minimal symbol table to
9632 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
9633 in a dynamic executable.
9634 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
9635 where we are unable to find the minimal symbol for the given
9636 PC value.
9637
9638 2002-03-25 Jeff Law (law@redhat.com)
9639
9640 * linux-proc.c (read_mapping): Scan up to end of line for filename.
9641
9642 2002-03-25 Michal Ludvig <mludvig@suse.cz>
9643
9644 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
9645
9646 2002-03-23 Andrew Cagney <ac131313@redhat.com>
9647
9648 * command.h: Update copyright.
9649 (struct cmd_list_element): Replace definition with opaque
9650 declaration.
9651 (enum cmd_types): Document that it will eventually be moved to
9652 cli/cli-decode.h
9653 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
9654 (MALLOCED_REPLACEMENT): Delete macro.
9655 * Makefile.in (cli_decode_h): Add $(command_h).
9656 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
9657 * top.c: Include "cli/cli-decode.h".
9658 * completer.c: Include "cli/cli-decode.h".
9659 * maint.c: Include "cli/cli-decode.h".
9660 * cli/cli-decode.h: Include "command.h".
9661 (enum command_class): Delete.
9662 (enum cmd_types): Comment out.
9663 (enum cmd_auto_boolean): Delete.
9664 (enum var_types): Delete.
9665
9666 2002-03-23 Andrew Cagney <ac131313@redhat.com>
9667
9668 * cli/cli-decode.c: Include "gdb_assert.h".
9669 (add_set_or_show_cmd): New static function.
9670 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
9671 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
9672 all fields, such as func, from the set command.
9673
9674 2002-03-23 Andrew Cagney <ac131313@redhat.com>
9675
9676 * MAINTAINERS (sh-elf): Change warning flag to -w.
9677
9678 2002-03-23 Andrew Cagney <cagney@redhat.com>
9679
9680 * defs.h (error): Add printf format attribute.
9681 * thread-db.c (thread_from_lwp): Fix error format string.
9682 * stack.c (parse_frame_specification): Ditto.
9683 * cli/cli-decode.c (undef_cmd_error): Ditto.
9684 * scm-lang.c (scm_lookup_name): Ditto.
9685 * tracepoint.c (trace_error): Ditto.
9686 * remote-utils.c (usage): Ditto.
9687 * remote.c (compare_sections_command): Ditto.
9688 Fix PR gdb/328.
9689
9690 2002-03-22 Andrew Cagney <ac131313@redhat.com>
9691
9692 * gdbtypes.c (append_composite_type_field): New function.
9693 (init_composite_type): New function.
9694 * gdbtypes.h (append_composite_type_field): Declare.
9695 (init_composite_type): Ditto.
9696
9697 2002-03-22 Elena Zannoni <ezannoni@redhat.com>
9698
9699 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
9700 function.
9701 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
9702 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
9703 structure returning convention for SYSV ABI case, but not
9704 for GNU/Linux, FreeBSD, or NetBSD.
9705
9706 2002-03-22 Daniel Jacobowitz <drow@mvista.com>
9707
9708 * symtab.h (lookup_block_symbol): Add mangled_name argument
9709 to prototype.
9710
9711 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
9712 with new mangled_name argument.
9713 * linespec.c (decode_line_1): Likewise.
9714 * valops (value_of_this): Likewise.
9715 * symtab.c (lookup_transparent_type): Likewise.
9716 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
9717 (lookup_symbol): If we are given a mangled name, pass it down
9718 to lookup_symbol_aux.
9719 (lookup_block_symbol): If we are given a mangled name to check
9720 against, only return symbols which match it.
9721
9722 2002-03-22 Christopher Faylor <cgf@redhat.com>
9723
9724 * win32-nat.c (child_create_inferior): Check for proper shell to use
9725 here, in case the user changes it on the fly.
9726 (_initialize_inftarg): Remove shell path considerations.
9727
9728 2002-03-21 Elena Zannoni <ezannoni@redhat.com>
9729
9730 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
9731 for gdbarch_max_register_raw_size and max_register_virtual_size.
9732 Adjust copyright year.
9733
9734 2002-03-21 Daniel Jacobowitz <drow@mvista.com>
9735
9736 * dbxread.c (process_one_symbol): Extend the first N_SLINE
9737 in a function to cover the entire beginning of the function
9738 as well if it does not already.
9739
9740 2002-03-21 Tom Rix <trix@redhat.com>
9741
9742 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
9743 (rs6000_ptrace64): Renamed from ptrace64.
9744
9745 2002-03-20 Martin M. Hunt <hunt@redhat.com>
9746
9747 * gdbserver/remote-utils.c (remote_open): Don't call
9748 getprotobyname, we're all using TCP here so just use
9749 IPPROTO_TCP.
9750 * gdbserver/gdbreplay.c (remote_open): Ditto.
9751
9752 2002-03-20 Martin M. Hunt <hunt@redhat.com>
9753
9754 * regcache.c (_initialize_regcache): No need to call
9755 build_regcache() at this time; it gets called whenever
9756 the gdbarch changes.
9757
9758 2002-03-20 David O'Brien <obrien@FreeBSD.org>
9759
9760 * sparc-nat.c: Include sys/param.h where possible.
9761
9762 2002-03-20 Daniel Jacobowitz <drow@mvista.com>
9763
9764 Fix PR gdb/422.
9765 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
9766 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
9767 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
9768 complex types.
9769 * stabsread.c (rs6000_builtin_type): Likewise.
9770 (read_sun_floating_type): Likewise.
9771
9772 2002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9773
9774 * stabsread.c (read_member_functions): Remove skip code for duplicate
9775 constructor/destructor methods. Use standard parsing for these
9776 methods and just do not chain them to the list of methods after
9777 parsing.
9778
9779 2002-03-19 Alexandre Oliva <aoliva@redhat.com>
9780
9781 * coffread.c: Remove redundant static declarations. Replace
9782 occurrences of `PTR' with `void *'.
9783 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
9784 * top.h (quit_cover): Likewise.
9785 * defs.h (catch_errors): Likewise.
9786
9787 2002-03-18 Andrew Cagney <ac131313@redhat.com>
9788
9789 * defs.h (XMALLOC): Define.
9790 * gdb-events.sh (XMALLOC): Delete macro.
9791 * gdb-events.c, gdb-events.h: Regenerate.
9792 * gdbarch.sh (XMALLOC): Delete macro.
9793 * gdbarch.c: Regenerate.
9794 * serial.c (XMALLOC): Delete macro.
9795 * ui-file.c (XMALLOC): Ditto.
9796 * ser-unix.h (XMALLOC): Ditto.
9797 * sh-tdep.c (XMALLOC): Ditto.
9798 * ui-out.c (XMALLOC): Ditto.
9799 * utils.c (XMALLOC): Ditto.
9800 * i386-tdep.c (XMALLOC): Ditto.
9801 * gdb-events.c (XMALLOC): Ditto.
9802 * d10v-tdep.c (XMALLOC): Ditto.
9803 * cli-out.c (XMALLOC): Ditto.
9804
9805 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
9806 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
9807 * ui-file.c, ui-out.c: Ditto.
9808
9809 2002-03-18 Andrew Cagney <ac131313@redhat.com>
9810
9811 * command.h (struct cmd_list_element): Add field context.
9812 (set_cmd_context, get_cmd_context): Declare.
9813 * cli/cli-decode.h: Ditto.
9814 * cli/cli-decode.c (get_cmd_context): New function.
9815 (set_cmd_context): New function.
9816 (add_cmd): Initialize context.
9817 Part of fixing PR gdb/145 and PR gdb/146.
9818
9819 2002-03-17 Andrew Cagney <ac131313@redhat.com>
9820
9821 * cli/cli-decode.c (cmd_type): New function.
9822 * command.h (cmd_type): Declare.
9823 * infrun.c (set_schedlock_func): Call function cmd_type.
9824 * kod.c (kod_set_os): Call cmd_type.
9825 * cris-tdep.c (cris_version_update): Use function cmd_type.
9826 (cris_mode_update, cris_abi_update): Ditto.
9827
9828 * command.h: (execute_cmd_post_hook): Declare.
9829 (execute_cmd_pre_hook): Declare.
9830 * cli/cli-script.c (clear_hook_in_cleanup): New function.
9831 (execute_cmd_post_hook, execute_cmd_pre_hook): New
9832 functions. Execute pre/post hook while ensuring that afterwords
9833 hook_in is cleared.
9834 * top.c (execute_command): Use execute_cmd_post_hook, and
9835 execute_cmd_pre_hook to execute pre/post commands.
9836 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
9837 hook_stop_stub.
9838 (hook_stop_stub): Call execute_cmd_pre_hook.
9839
9840 2002-03-17 Andrew Cagney <ac131313@redhat.com>
9841
9842 * kod.c (kod_set_os): Revert previous change. Is called by ``info
9843 set'' and this leads to a core dump. Move xstrdup of
9844 operating_system to after check that it is not NULL.
9845
9846 2002-03-17 Andrew Cagney <ac131313@redhat.com>
9847
9848 * kod.c (kod_set_os): Remove unnecessary check that
9849 ``command->type'' is set_cmd.
9850
9851 * valprint.c (set_input_radix): Use input_radix.
9852 (set_output_radix): Use output_radix.
9853 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
9854 isn't reverted.
9855
9856 2002-03-16 Andrew Cagney <ac131313@redhat.com>
9857
9858 * value.h (struct value): Delete field ``substring_addr''. Change
9859 aligner fields to force_doublest_align, force_longest_align,
9860 force_core_addr_align and force_pointer_aligh.
9861
9862 * value.h (struct value): Fix typo in above change.
9863
9864 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9865
9866 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
9867 to fix internal_error from ``maintenance print architecture''.
9868
9869 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9870
9871 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
9872 for gcc versions after gcc-2.8.1.
9873
9874 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9875
9876 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
9877 for method resolution. Restore adjustment of ``this'' pointer after
9878 calling value_struct_elt, which was accidentally removed during the
9879 HP merge.
9880
9881 2002-03-15 Andrew Cagney <ac131313@redhat.com>
9882
9883 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
9884 value_of_register.
9885 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
9886 get_saved_register.
9887 * value.h (value_of_register): Update.
9888
9889 2002-03-14 Richard Henderson <rth@redhat.com>
9890
9891 * configure.in: Detect declaration for canonicalize_file_name.
9892 * utils.c (canonicalize_file_name): Declare, if needed.
9893 (gdb_realpath): Prefer realpath if available and usable.
9894 * config.in, configure: Rebuild.
9895
9896 2002-03-14 Richard Henderson <rth@redhat.com>
9897
9898 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
9899 a constant array bound.
9900
9901 * MAINTAINERS: Add myself to write-after-approval.
9902
9903 2002-03-14 Michael Snyder <msnyder@redhat.com>
9904
9905 * symfile.c (syms_from_objfile): Return immediately if no syms.
9906 (symbol_file_add): Return immediately if no syms.
9907 (find_sym_fns): Return immediately if no syms.
9908
9909 2002-03-13 Michal Ludvig <mludvig@suse.cz>
9910
9911 * gdbserver/remote-util.c (remote_open): Print remote-side's
9912 IP address when remote debugging over the network.
9913
9914 2002-03-12 David O'Brien <obrien@FreeBSD.org>
9915
9916 * config/sparc/fbsd.mh: Fix copyright.
9917 * config/sparc/fbsd.mt: Likewise.
9918
9919 2002-03-11 Richard Earnshaw <rearnsha@arm.com>
9920
9921 * MAINTAINERS: Fix typo in name of gdb warnings option.
9922 (x86-64): Fix formating so that this can be parsed by awk.
9923
9924 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
9925
9926 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
9927 * defs.h: Include "gdb/signals.h".
9928 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
9929
9930 2002-03-10 Michal Ludvig <mludvig@suse.cz>
9931
9932 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
9933 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
9934 from x86-64-tdep.h
9935
9936 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
9937 Don Howard <dhoward@redhat.com>
9938
9939 * mips-tdep.c (ST0_FR): Define.
9940 (mips2_fp_compat): New function, temporarily disabled.
9941 (mips_read_fp_register_single): New function.
9942 (mips_read_fp_register_double): New function.
9943 (mips_print_register): Use them.
9944 (do_fp_register_row): Likewise.
9945
9946 2002-03-09 Andrew Cagney <ac131313@redhat.com>
9947
9948 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
9949 approval''.
9950
9951 2002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9952
9953 * stabsread.c (read_member_functions): Fix is_stub test for
9954 static member functions, improve comment.
9955
9956 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
9957
9958 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
9959 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
9960 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
9961 commands that set boolean values.
9962 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
9963 (arm_rdi_resume): Always initialize PC.
9964 (arm_rdi_open): Don't use rslt as a boolean.
9965 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
9966 (arm_rdi_fetch_registers, arm_rdi_store_registers)
9967 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
9968 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
9969
9970 2002-03-06 Alexandre Oliva <aoliva@redhat.com>
9971
9972 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
9973 * configure: Rebuilt.
9974
9975 2002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9976
9977 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
9978 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
9979
9980 2002-03-06 Andrew Cagney <ac131313@redhat.com>
9981
9982 * cli/cli-decode.c (set_cmd_completer): New function.
9983 * command.h (set_cmd_completer): Declare.
9984 * cli/cli-decode.h (set_cmd_completer): Ditto.
9985
9986 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
9987 * cli/cli-cmds.c (init_cli_cmds): Ditto.
9988 * win32-nat.c (_initialize_inftarg): Ditto.
9989 * remote-rdi.c (_initialize_remote_rdi): Ditto.
9990 * proc-api.c (_initialize_proc_api): Ditto.
9991 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
9992 * source.c (_initialize_source): Ditto.
9993 * exec.c (_initialize_exec): Ditto.
9994 * solib.c (_initialize_solib): Ditto.
9995 * top.c (init_main): Ditto.
9996 * tracepoint.c (_initialize_tracepoint): Ditto.
9997 * symfile.c (_initialize_symfile): Ditto.
9998 * printcmd.c (_initialize_printcmd): Ditto.
9999 * infcmd.c (_initialize_infcmd): Ditto.
10000 * corefile.c (_initialize_core): Ditto.
10001
10002 2002-03-05 Andrew Cagney <ac131313@redhat.com>
10003
10004 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
10005
10006 2002-03-05 Andrew Cagney <ac131313@redhat.com>
10007
10008 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
10009
10010 2002-03-05 Andrew Cagney <ac131313@redhat.com>
10011
10012 * NEWS: Update headings, 5.2 has branched.
10013
10014 2002-03-04 Daniel Jacobowitz <drow@mvista.com>
10015
10016 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
10017 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
10018 (register_addr, REGISTER_RAW_SIZE): Likewise.
10019 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
10020 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
10021
10022 2002-03-03 Michal Ludvig <mludvig@suse.cz>
10023
10024 * MAINTAINERS (x86-64): Add myself.
10025 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
10026 changed value_ptr -> struct value *
10027
10028 2002-03-01 David O'Brien <obrien@FreeBSD.org>
10029
10030 * configure.host (sparc64-*-freebsd): Add.
10031 * configure.tgt: Likewise.
10032 * config/sparc/fbsd.mh: New file.
10033 * config/sparc/fbsd.mt: Likewise.
10034 * config/sparc/nm-fbsd.h: Likewise.
10035 * config/sparc/tm-fbsd.h: Likewise.
10036
10037 2002-03-01 Daniel Jacobowitz <drow@mvista.com>
10038
10039 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
10040 regformats/reg-s390x.dat.
10041
10042 2002-03-01 Andrew Cagney <ac131313@redhat.com>
10043
10044 * utils.c: Add FIXME explaining true/false problem.
10045
10046 2002-02-28 Andrew Cagney <ac131313@redhat.com>
10047
10048 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
10049
10050 2002-02-28 Michael Chastain <mec@shout.net>
10051
10052 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
10053
10054 2002-02-28 Daniel Jacobowitz <drow@mvista.com>
10055
10056 * gdbserver/linux-s390-low.c: New file.
10057 * regformats/reg-s390.dat: New file.
10058 * regformats/reg-s390x.dat: New file.
10059 * gdbserver/configure.srv: Add S/390.
10060 * gdbserver/Makefile.in: Add S/390.
10061 * configure.tgt: Enable gdbserver for S/390.
10062
10063 2002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
10064
10065 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
10066 first line of the doc string for "info dos", except at the end of
10067 the sentence, since the short help stops at the first period.
10068
10069 2002-02-28 Jason Merrill <jason@redhat.com>
10070
10071 * dwarf2read.c (dwarf_cfi_name): Add new codes.
10072
10073 2002-02-27 Fred Fish <fnf@redhat.com>
10074
10075 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
10076 comment (dumy -> dummy).
10077
10078 2002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10079
10080 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
10081
10082 2002-02-27 Rodney Brown <rbrown64@csc.com.au>
10083
10084 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
10085
10086 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
10087
10088 * gdbserver/acconfig.h: New file.
10089 * gdbserver/i387-fp.c: New file.
10090 * gdbserver/i387-fp.h: New file.
10091 * gdbserver/linux-x86-64.c: New file.
10092 * regformats/reg-x86-64.dat: New file.
10093 * configure.tgt: Add x86_64-*-linux* gdbserver support.
10094 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
10095 * gdbserver/configure.in: Add support for regsets.
10096 * gdbserver/config.in: Regenerate.
10097 * gdbserver/configure: Regenerate.
10098 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
10099 * gdbserver/linux-low.h: New file.
10100 * gdbserver/linux-low.c: Include "linux-low.h". Add support
10101 for regsets.
10102 * gdbserver/linux-arm-low.c: Include "linux-low.h".
10103 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
10104 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
10105 * gdbserver/linux-mips-low.c: Include "linux-low.h".
10106 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
10107 * gdbserver/linux-sh-low.c: Include "linux-low.h".
10108 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
10109 "i387-fp.h". Add PTRACE_GETREGS and friends.
10110 * gdbserver/regcache.c (supply_register): New function.
10111 (supply_register_by_name): New function.
10112 (collect_register): New function.
10113 (collect_register_by_name): New function.
10114
10115 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
10116
10117 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
10118 (config.status): Add configure.srv dependency.
10119 (server_h): Add config.h dependency.
10120
10121 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
10122
10123 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
10124 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
10125 * gdbserver/configure.srv: Change i386-*-linux* to use
10126 reg-i386-linux.o.
10127
10128 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10129
10130 * x86-64-tdep.c: Re-indent. Update copyright date.
10131
10132 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10133
10134 From Michal Ludvig <mludvig@suse.cz>:
10135 * x86-64-tdep.c (value.h): Delete.
10136 (gdb_assert.h): Include.
10137 (x86_64_register_convert_to_virtual,
10138 x86_64_register_convert_to_raw ): Add check which lets only
10139 floating-point values to be converted.
10140 (value_push): Delete.
10141 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
10142 (i386_gdbarch_init): Number of register_bytes fixed.
10143
10144 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10145
10146 * MAINTAINERS: Add x86-64 target.
10147
10148 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10149
10150 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
10151 * osfsolib.c (solib_map_sections): Ditto.
10152 * irix5-nat.c (solib_map_sections): Ditto.
10153 * corelow.c (gdb_check_format): Ditto.
10154 * symfile.c (symfile_bfd_open): Ditto.
10155 * solib.c (solib_map_sections): Ditto.
10156 Fix PR gdb/354.
10157
10158 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10159
10160 * remote.c (_initialize_remote): By default, disable ``e'' and
10161 ``E'' step out-of-range packets.
10162
10163 2002-02-26 Andreas Schwab <schwab@suse.de>
10164
10165 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
10166 m68k_linux_frame_saved_pc.
10167 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
10168 in_sigtramp.
10169 (SIGCONTEXT_PC_OFFSET): Remove.
10170 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
10171 m68k_linux_sigtramp_saved_pc): New functions.
10172 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
10173 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
10174 (UCONTEXT_PC_OFFSET): Define.
10175 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
10176 non-RT and RT signal trampolines.
10177
10178 2002-02-26 Richard Earnshaw <rearnsha@arm.com>
10179
10180 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
10181 (TARGET_NBPG, STACK_END_ADDR): Delete
10182 (VARIABLES_INSIDE_BLOCK): Delete.
10183
10184 2002-02-25 Andrew Cagney <ac131313@redhat.com>
10185
10186 * utils.c (perror_with_name): Make string parameter constant.
10187 (print_sys_errmsg): Ditto.
10188 (query): Ditto.
10189 * defs.h (perror_with_name): Update.
10190 (print_sys_errmsg): Update.
10191 (query): Update.
10192
10193 2002-02-25 Daniel Jacobowitz <drow@mvista.com>
10194
10195 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
10196 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
10197
10198 2002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10199
10200 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
10201 if it already matches the current architecture from the exec file.
10202 Include arch-utils.h for gdbarch_info_init prototype.
10203 * Makefile.in (rs6000-nat.o): Update dependencies.
10204
10205 2002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
10206
10207 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
10208 list of exported variables.
10209
10210 2002-02-24 Daniel Jacobowitz <drow@mvista.com>
10211
10212 * gdbserver/configure.srv: New file.
10213 * gdbserver/configure.in: Use configure.srv instead
10214 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
10215 from it.
10216 * gdbserver/configure: Regenerated.
10217 * gdbserver/terminal.h: New file.
10218 * gdbserver/Makefile.in: Update for configure changes. Remove
10219 more unneeded include paths.
10220
10221 2002-02-24 Andrew Cagney <ac131313@redhat.com>
10222
10223 From wiz at danbala:
10224 * config/sparc/tm-sp64.h: Fix grammar and typos.
10225 Fix PR gdb/287.
10226
10227 2002-02-24 Andrew Cagney <ac131313@redhat.com>
10228
10229 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
10230 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
10231 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
10232 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
10233 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
10234 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
10235 * s390-tdep.c: Ditto.
10236 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
10237 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
10238 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
10239 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
10240 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
10241 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
10242 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
10243 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
10244 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
10245 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
10246 Fix PR gdb/378.
10247
10248 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10249
10250 * lin-thread.c: Delete file.
10251 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
10252 to gdb_proc_service.h.
10253 * configure: Re-generate.
10254
10255 * ocd.c (ocd_open): Do not try to open the "ocd" device.
10256 * serial.c (serial_open): Delete check for "ocd".
10257 Fix PR gdb/349.
10258
10259 * Makefile.in (linux-thread.o): Delete target.
10260 * linux-thread.c: Delete file.
10261
10262 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
10263 renamed SH files to be consistent.
10264
10265 * symtab.c (sort_search_symbols): Use xfree.
10266
10267 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
10268
10269 * arm-linux-tdep.c (arm_linux_init_abi): Register
10270 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
10271 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
10272 definition with undef, since we don't want the sysvr4 definition.
10273 (SKIP_TRAMPOLINE_CODE): Likewise.
10274
10275 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10276
10277 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
10278
10279 * configure.in: (AC_CHECK_FUNCS) Added test for
10280 canonicalize_file_name Regenerated.
10281 * config.in, configure: Regenerated.
10282 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
10283 defined use canonicalize_file_name.
10284
10285 2002-02-23 Michael Chastain <mec@shout.net>
10286
10287 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
10288
10289 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10290
10291 * README: Remove references to cygnus.com.
10292 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
10293 dot com'' form. Remove references to cygnus.com and sourceware.
10294
10295 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10296
10297 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
10298 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
10299 1003.1-2001 no longer allows "head -1".
10300 * gdb/Makefile.in (version.c): Likewise.
10301 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
10302 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
10303 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
10304
10305 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10306
10307 * cli/cli-decode.c (cmd_cfunc_eq): New function.
10308 * command.h (cmd_cfunc_eq): Declare.
10309 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
10310
10311 * cli/cli-cmds.h (is_complete_command): Change parameter to a
10312 ``struct cmd_list_element *''.
10313 * cli/cli-cmds.c (is_complete_command): Update. Use
10314 cmd_cfunc_eq.
10315 * top.c (execute_command): Pass the command to
10316 is_complete_command.
10317 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
10318
10319 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10320
10321 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
10322 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
10323 architecture defines.
10324 * s390-tdep.c (s390_gdbarch_init): Likewise.
10325
10326 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
10327
10328 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
10329 (arm_linux_push_arguments): Likewise.
10330 (arm_linux_init_abi): Register them. Also register linux-specific
10331 call_dummy_words.
10332 (find_minsym_and_objfile): Use strcmp, not STREQ.
10333 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
10334 (arm_linux_call_dummy_words): Delete declaration.
10335 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
10336 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
10337 declarations.
10338 (LOWEST_PC): Delete.
10339
10340 2002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10341
10342 * maint.c (print_section_info): Do not prepend `0x' to filepos
10343 output, it will be handled by local_hex_string_custom.
10344
10345 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
10346
10347 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
10348 (store_newfpe_double, store_newfpe_extended, store_fpregister)
10349 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
10350
10351 2002-02-22 Jim Blandy <jimb@redhat.com>
10352
10353 Indicate that the bcache functions don't change the strings
10354 they're passed.
10355 * bcache.h (bcache, hash): Add `const' keywords to declarations.
10356 * bcache.c (bcache, hash): Add `const' keywords to definitions.
10357
10358 2002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
10359
10360 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
10361
10362 2002-02-21 Christopher Faylor <cgf@redhat.com>
10363
10364 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
10365 find the complete path to a loaded DLL.
10366
10367 2002-02-21 Fred Fish <fnf@redhat.com>
10368
10369 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
10370 that marks the end of the range of a function, enter a line number
10371 entry that has a line number of zero and a PC offset that matches
10372 the end of the function. This starts a range of PC's for which no
10373 line number information is known.
10374 * symtab.c (find_pc_sect_line): If our best fit is in a range of
10375 PC's for which no line number info is found (line number is zero)
10376 then we didn't find any valid line information.
10377 * symtab.h: Document use of zero line number entry.
10378
10379 2002-02-21 Elena Zannoni <ezannoni@redhat.com>
10380
10381 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
10382 (have_ptrace_getvrregs): Define for run time checks.
10383 (gdb_vrregset_t): New type for Altivec register handling.
10384 (fetch_register, store_register): Fetch/store altivec register
10385 when needed.
10386 (fetch_altivec_register, store_altivec_register): New functions.
10387 (supply_vrregset, fill_vrregset): New functions.
10388 (fetch_altivec_registers, store_altivec_registers): New functions.
10389 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
10390 registers as well.
10391
10392 2002-02-21 Jiri Smid <smid@suse.cz>
10393
10394 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
10395
10396 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
10397
10398 * Makefile.in (armnbsd-nat.o): Update dependencies.
10399 * armnbsd-nat.c (supply_gregset): New function. Common code to
10400 supply the integer register set.
10401 (supply_fparegset): New function. Similar for FPA registers.
10402 (fetch_regs, fetch_fp_regs): Use them.
10403 (fetch_core_registers): Likewise.
10404 (fetch_elfcore_registers): New function.
10405 (arm_netbsd_elfcore_fns): New core-file type specification.
10406 (_initialize_arm_netbsd_nat): Register it.
10407
10408 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
10409
10410 * armnbsd-nat.c: Include gdbcore.h.
10411 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
10412 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
10413 'void' to declaration, to shut up ARI.
10414 (fetch_core_registers): Make static. Rewrite using supply_register.
10415 (arm_netbsd_core_fns): New core-file type specification.
10416 (_initialize_arm_netbsd_nat): New function.
10417
10418 2002-02-21 Christopher Faylor <cgf@redhat.com>
10419
10420 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
10421 value.
10422
10423 2002-02-20 Christopher Faylor <cgf@redhat.com>
10424
10425 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
10426 fails.
10427
10428 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10429
10430 * jv-exp.y (parse_number): Change type of implicit longs
10431 to builtin_type_uint64.
10432
10433 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10434
10435 * gdbserver/linux-low.c (mywait): Change argument to waitpid
10436 to be an integer instead of a `union wait'.
10437
10438 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10439
10440 * mips-linux-nat.c: Call the operating system GNU/Linux.
10441 * mips-linux-tdep.c: Likewise.
10442 * mips-tdep.c: Likewise.
10443
10444 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10445
10446 Fix PR gdb/265.
10447 * jv-exp.y (parse_number): Handle 64-bit integers.
10448
10449 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10450
10451 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
10452 AC_STDC_HEADERS to AC_HEADER_STDC.
10453 * gdbserver/configure: Regenerated.
10454
10455 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
10456
10457 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
10458 is defined.
10459 * sparc-tdep.c (get_longjmp_target): Likewise.
10460
10461 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
10462
10463 * News: Add news about ARM and Multi-arch. Mention the new target
10464 arm*-*-netbsd*.
10465
10466 2002-02-19 Jim Blandy <jimb@redhat.com>
10467
10468 * stabsread.c (error_type_complaint): Improve error message.
10469
10470 2002-02-19 Daniel Jacobowitz <drow@mvista.com>
10471
10472 * gdbserver/README: Update documentation.
10473 * gdbserver/configure.in: Update configury to match documentation.
10474 * gdbserver/Makefile.in: Likewise.
10475 * gdbserver/configure: Regenerated.
10476 * gdbserver/aclocal.m4: New file, generated by aclocal.
10477 * gdbserver/config.in: New file, generated by autoheader.
10478
10479 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10480
10481 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
10482 armnbsd-nat.c.
10483
10484 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10485
10486 * arm-tdep.h (enum arm_float_model): New enum.
10487 (struct gdbarch_tdep): Add fp_model.
10488 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
10489 up floating-point conversions until we know the floating-point model
10490 in use by the inferior. Don't complain about being unable to
10491 determine the ABI of the inferior when we don't have one.
10492 (arm_extract_return_value): Support different floating-point models.
10493 (arm_store_return_value): Likewise.
10494 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
10495 ARM_FLOAT_SOFT.
10496 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
10497
10498 2002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10499
10500 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
10501 of ``current_gdbarch''.
10502
10503 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10504
10505 * armnbsd-nat.c : ANSIfy all function declarations.
10506 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
10507 (fetch_inferior_registers): Re-implement in terms of above.
10508 (store_register, store_regs, store_fp_register, store_fp_regs): New.
10509 (store_inferior_registers): Re-implement in terms of above.
10510
10511 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10512
10513 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
10514 kernel.
10515 * arm-linux-tdep.c: Likewise.
10516 * config/arm/tm-linux.h: Likewise.
10517
10518 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10519
10520 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
10521 * config/arm/nbsd.mt (TM_FILE): Delete.
10522 * config/arm/tm-nbsd.h: Delete.
10523
10524 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10525
10526 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
10527 Initialize CALL_DUMMY_LENGTH.
10528
10529 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10530
10531 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
10532 function.
10533 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
10534 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
10535 defines one thing and that is incorrect for this port.
10536 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
10537
10538 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
10539
10540 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
10541
10542 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
10543
10544 * win32-nat.c (display_selector): New function. Displays information
10545 about the information returned by GetThreadSelectorEntry API function.
10546 (display_selectors): New function. Displays the infomation of
10547 the selector given as argument, or of CS, DS ans FS selectors
10548 if no argument is given.
10549 ( _initialize_inftarg): Add "w32" as info prefix command.
10550 Add "info w32 selector" as command calling display_selectors.
10551
10552 2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
10553
10554 * i386-tdep.c (get_longjmp_target): Fix compilation failure
10555 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
10556 if not defined.
10557
10558 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
10559
10560 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
10561
10562 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
10563
10564 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
10565 (arm_fix_call_dummy): Call it.
10566 (arm_call_dummy_breakpoint_offset): Delete.
10567 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
10568 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
10569
10570 2002-02-18 Andrew Cagney <ac131313@redhat.com>
10571
10572 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
10573 Default to func_frame_chain_valid.
10574 * gdbarch.h, gdbarch.c: Re-generate.
10575 * frame.h (FRAME_CHAIN_VALID): Delete definition.
10576
10577 2002-02-18 Elena Zannoni <ezannoni@redhat.com>
10578
10579 * ppc-linux-nat.c: Update copyright.
10580 (fetch_register, store_register): Add tid parameter, don't compute
10581 tid here.
10582 (fetch_ppc_registers, store_ppc_registers): Add tid
10583 parameter. Pass it along to callees.
10584 (fetch_inferior_registers, store_inferior_registers): Compute tid
10585 here, and pass it to calleed functions.
10586 (fill_gregset, supply_fpregset): Clean up formatting.
10587
10588 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
10589
10590 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
10591 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
10592
10593 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
10594
10595 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
10596 * gdbarch.c gdbarch.h: Regenerate.
10597 * breakpoint.c (create_longjmp_breakpoint): Always compile this
10598 function.
10599 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
10600 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
10601 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
10602
10603 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
10604 * arm-tdep.c (arm_get_longjmp_target): New function.
10605 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
10606 this to a positive value register arm_get_longjmp_target as the
10607 longjmp handler.
10608 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
10609 (arm_linux_init_abi): Set up longjmp description in tdep.
10610 * armnbsd-nat.c (get_longjmp_target): Delete.
10611 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
10612 description in tdep.
10613 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
10614 (get_longjmp_target): Delete declaration.
10615 (GET_LONGJMP_TARGET): Delete.
10616 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
10617 (GET_LONGJMP_TARGET): Delete.
10618
10619 2002-02-17 Kevin Buettner <kevinb@redhat.com>
10620
10621 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
10622 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
10623 of ``current_gdbarch''.
10624
10625 2002-02-17 Tom Tromey <tromey@redhat.com>
10626
10627 * cli/cli-cmds.c (compare_strings): New function.
10628 (complete_command): Only print each unique item once.
10629 * completer.h (complete_line): Declare.
10630 * completer.c (complete_line): New function.
10631 (line_completion_function): Use it.
10632
10633 2002-02-16 Andrew Cagney <ac131313@redhat.com>
10634
10635 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
10636 * gdbarch.h, gdbarch.c: Re-generate.
10637
10638 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
10639
10640 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
10641
10642 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
10643
10644 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
10645 * valops.c (value_arg_coerce): Don't take the address of a reference
10646 to convert an argument to a reference.
10647
10648 2002-02-15 Christopher Faylor <cgf@redhat.com>
10649
10650 * win32-nat.c (get_image_name): New function.
10651 (handle_load_dll): Use get_image_name function.
10652 (get_child_debug_event): Avoid registering debug events until possibly
10653 execed process is started.
10654 (child_create_inferior): Allow invocation via shell so that command
10655 line redirection, etc. works ok.
10656 (_initialize_inftarg): Add new command: "set shell" to control whether
10657 a shell is used to start a process.
10658
10659 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
10660
10661 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
10662 instead of find_register_by_number.
10663 (cannot_store_register): Likewise.
10664
10665 2002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
10666
10667 * dwarf2read.c: Replace fprintf (stderr, ...) by
10668 fprintf_unfiltered (gdb_stderr, ...).
10669
10670 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
10671
10672 * gdbserver/gdbserver.1: Document --attach.
10673
10674 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
10675
10676 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
10677 descriptions.
10678 * arm-tdep.c (arm_default_arm_le_breakpoint)
10679 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
10680 (arm_default_thumb_be_breakpoint): New. Initialize them from
10681 traditional breakpoint defines.
10682 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
10683 (arm_gdbarch_init): Initialize new breakpoint variables.
10684 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
10685 (arm_linux_init_abi): Initialize linux-specific breakpoint.
10686 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
10687 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
10688 code out to ...
10689 (arm_netbsd_init_abi_common): ... here; new function.
10690 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
10691 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
10692 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
10693 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
10694
10695 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
10696
10697 * arm-tdep.h (enum arm_abi): New enum.
10698 (struct gdbarch_tdep): New structure.
10699 (LOWEST_PC): Provide a default.
10700 (arm_gdbarch_register_os_abi): Declare new function.
10701 * arm-tdep.c (arm_abi_names): New array.
10702 (process_note_abi_tag_sections): New function.
10703 (get_elfosabi): New function.
10704 (arm_gdbarch_register_os_abi): New function.
10705 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
10706 support for that ABI has been built in, then call the appropriate
10707 configuration routine. Use gdbarch_num_regs() to get the number
10708 of registers.
10709 (arm_dump_tdep): New function.
10710 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
10711 place-holder functions.
10712 (_initialize_arm_tdep): Register them.
10713 * config/arm/tm-arm.h (LOWEST_PC): Delete.
10714
10715 * armnbsd-tdep.c: New file.
10716 * Makefile.in (armnbsd-tdep.o): Add dependencies.
10717 * config/arm/nbsd.mt (TDEPFILES): Add it.
10718 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
10719
10720 * armnbsd-nat.c: Include regcache.h.
10721 * Makefile.in (armnbsd-nat.o): Update dependency list.
10722
10723 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
10724
10725 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
10726
10727 * gdbserver/Makefile.in: Fix typos in target rules.
10728
10729 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
10730
10731 Fix part of PR gdb/267.
10732 * linespec.c (find_methods): Handle constructors specially for now.
10733
10734 2002-02-14 Corinna Vinschen <vinschen@redhat.com>
10735
10736 * arm-tdep.c (arm_push_arguments): Eliminate special float type
10737 handling.
10738 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
10739 standard_coerce_float_to_double().
10740
10741 2002-02-14 Christopher Faylor <cgf@redhat.com>
10742
10743 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
10744 GDBINIT_FILENAME.
10745
10746 2002-02-14 Elena Zannoni <ezannoni@redhat.com>
10747
10748 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
10749 find_variant_by_name, because it confuses the multiarch
10750 framework. Return NULL if there isn't an architecture with the
10751 user supplied name, instead of forcing a different one without
10752 recording the change with the multiarch machinery.
10753 (find_variant_by_name): Delete.
10754
10755 2002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10756
10757 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
10758 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
10759
10760 2002-02-13 Martin M. Hunt <hunt@redhat.com>
10761
10762 * stack.c (print_frame_info_base): When calling
10763 print_frame_info_listing_hook, set current_source_symtab.
10764
10765 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
10766
10767 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
10768 and remove unused $(INCLUDE_DIR).
10769 Add regcache.c to OBS.
10770 Add generated register protocol files to clean target.
10771 Update dependencies for new objects, obsolete old target code.
10772
10773 * gdbserver/linux-low.c: Remove all platform-specific code to
10774 new files. Remove various dead code. Update to use regcache
10775 functionality.
10776 * gdbserver/remote-utils.c (fromhex): Add return statement
10777 to quiet warning.
10778 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
10779 constant.
10780 (input_interrupt): Add integer parameter to match prototype
10781 of a signal handler.
10782 (outreg): Use register_data ().
10783 (prepare_resume_reply): Use gdbserver_expedite_regs.
10784 * gdbserver/server.c (main): Dynamically allocate own_buf because
10785 PBUFSIZ is no longer constant. Use registers_to_string () and
10786 registers_from_string ().
10787 * gdbserver/server.h: No longer include "defs.h". Add prototypes
10788 for error (), fatal (), and warning (). Update definition of
10789 PBUFSIZ to use regcache functionality. Add include guard.
10790 * gdbserver/utils.c (fatal): Add missing ``const''.
10791 (warning): New function.
10792
10793 * regformats/regdat.sh: Include "regcache.h" in generated files.
10794 Provide init_registers () function.
10795 * regformats/regdef.h: Add prototype for set_register_cache ().
10796 Add include guard.
10797
10798 * gdbserver/linux-arm-low.c: New file.
10799 * gdbserver/linux-i386-low.c: New file.
10800 * gdbserver/linux-ia64-low.c: New file.
10801 * gdbserver/linux-m68k-low.c: New file.
10802 * gdbserver/linux-mips-low.c: New file.
10803 * gdbserver/linux-ppc-low.c: New file.
10804 * gdbserver/linux-sh-low.c: New file.
10805
10806 * gdbserver/regcache.c: New file.
10807 * gdbserver/regcache.h: New file.
10808
10809 * gdbserver/low-linux.c: Removed obsolete file.
10810
10811 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
10812
10813 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
10814 * config/i386/linux.mt: Likewise.
10815 * config/ia64/linux.mt: Likewise.
10816 * config/m68k/linux.mh: Likewise.
10817 * config/powerpc/linux.mh: Likewise.
10818 * config/mips/linux.mt: Likewise.
10819
10820 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
10821
10822 * config/i386/i386lynx.mh: Mark gdbserver variables
10823 as (currently) obsolete for this target.
10824 * config/i386/nbsd.mt: Likewise.
10825 * config/i386/nbsdelf.mt: Likewise.
10826 * config/m32r/m32r.mt: Likewise.
10827 * config/m68k/m68klynx.mh: Likewise.
10828 * config/m68k/nbsd.mt: Likewise.
10829 * config/m68k/sun3os4.mh: Likewise.
10830 * config/mips/vr5000.mt: Likewise.
10831 * config/ns32k/nbsd.mt: Likewise.
10832 * config/pa/hppabsd.mh: Likewise.
10833 * config/pa/hppaosf.mh: Likewise.
10834 * config/powerpc/nbsd.mt: Likewise.
10835 * config/rs6000/rs6000lynx.mh: Likewise.
10836 * config/s390/s390.mt: Likewise.
10837 * config/s390/s390x.mt: Likewise.
10838 * config/sparc/sparclynx.mh: Likewise.
10839 * config/sparc/sun4os4.mh: Likewise.
10840 * config/i386/x86-64linux.mt: Likewise.
10841 * config/sparc/linux.mh: Likewise.
10842
10843 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
10844
10845 * configure.tgt: Configure gdbserver only for known working
10846 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
10847 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
10848 SUBDIRS if it is configured. Update comment for ${nativefile}.
10849 * configure: Regenerated.
10850
10851 2002-02-13 Michael Snyder <msnyder@redhat.com>
10852
10853 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
10854
10855 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
10856 (default_gcore_mach): Just return 0, work around a problem in bfd.
10857 (default_gcore_target): OK to return NULL if exec_bfd is null.
10858 (make_mem_sec): Use a cast, avoid a warning.
10859
10860 * procfs.c (find_memory_regions_callback): Use a cast instead of
10861 calling host_pointer_to_address (which complains if
10862 sizeof (host pointer) != sizeof (target pointer)).
10863 (procfs_make_note_section): Avoid overflow in psargs string.
10864
10865 * procfs.c (procfs_make_note_section): Make the default
10866 implementation return an error.
10867
10868 2002-02-13 Rodney Brown <rbrown64@csc.com.au>
10869
10870 * procfs.c (procfs_make_note_section): Provide a default definition
10871 (for alpha-dec-osf4.0f). Fix typos.
10872
10873 2002-02-13 Elena Zannoni <ezannoni@redhat.com>
10874
10875 * linux-proc.c: Add include of regcache.h.
10876 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
10877
10878 2002-02-13 Andrew Cagney <ac131313@redhat.com>
10879
10880 From 2002-01-18 Greg McGary <greg@mcgary.org>:
10881 * memattr.c (create_mem_region): Disallow useless empty region.
10882 Regions are half-open intervals, so allow [A..B) [B..C) as
10883 non-overlapping.
10884
10885 2002-02-13 Michael Chastain <mec@shout.net>
10886
10887 * defs.h: Kill CONST_PTR.
10888 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
10889 * c-lang.c (c_builtin_types): Likewise.
10890 * ch-lang.c (ch_builtin_types): Likewise.
10891 * f-lang.c (f_builtin_types): Likewise.
10892 * language.c (unknown_builtin_types): Likewise.
10893 * m2-lang.c (m2_builtin_types): Likewise.
10894 * p-lang.c (pascal_builtin_types): Likewise.
10895 * scm-lang.c (c_builtin_types): Likewise.
10896
10897 2002-02-13 Keith Seitz <keiths@redhat.com>
10898
10899 * arm-tdep.h (arm_get_next_pc): Add declaration.
10900
10901 2002-02-13 Richard Earnshaw <rearnsha@arm.com>
10902
10903 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
10904 with other related struct-returning functions.
10905 (arm_extract_struct_value_address): New function.
10906 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
10907 initialize float_format, double_format and long_double_format as
10908 appropriate to the endianness of the target.
10909 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
10910 (arm_use_struct_convention): Delete declaration.
10911 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
10912
10913 2002-02-13 Keith Seitz <keiths@redhat.com>
10914
10915 * defs.h (core_addr_to_string_nz): New function.
10916
10917 2002-02-13 Mark Kettenis <kettenis@gnu.org>
10918
10919 Apply missing bits of 2002-01-15 patch.
10920 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
10921 (fill_fpregset): Use i387_fill_fsave.
10922
10923 2002-02-12 Keith Seitz <keiths@redhat.com>
10924
10925 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
10926 (core_addr_to_string_nz): New function.
10927
10928 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
10929
10930 * arm-linux-nat.c: Really include arm-tdep.h.
10931 * config/arm/tm-linux.h (struct type, struct value): Declare.
10932
10933 2002-02-11 Michael Snyder <msnyder@redhat.com>
10934
10935 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
10936 (gcore section): Ifdef for Solaris and Unixware only.
10937 (procfs_do_thread_registers): Unixware needs one lwpstatus
10938 per thread (not one prstatus or pstatus).
10939 (procfs_make_note_section): Iterate only over kernel threads (lwps),
10940 not over all gdb threads. For unixware, call elfcore_write_pstatus
10941 once before iterating over threads.
10942
10943 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
10944
10945 * arm-tdep.h: New file.
10946 * arm-tdep.c: Include arm-tdep.h.
10947 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
10948 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
10949 (arm_print_float_info, arm_register_type, convert_to_extended)
10950 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
10951 (arm_extract_return_value, arm_register_name): Make static.
10952 (arm_software_single_step): Similarly. Fix types in declaration.
10953 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
10954 (arm_store_return_value, arm_store_struct_return): New functions.
10955 (arm_gdbarch_init): Register the above functions. Also register
10956 call_dummy_start_offset, sizeof_call_dummy_words,
10957 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
10958 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
10959 max_register_virtual_size, register_size. Set up
10960 prologue_cache.saved_regs here, rather than ...
10961 (_initialize_arm_tdep): ... here.
10962 * config/arm/tm-arm.h (struct type, struct value): Delete forward
10963 declarations.
10964 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
10965 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
10966 (arm_print_float_info, arm_register_type, convert_to_extended)
10967 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
10968 (arm_extract_return_value, arm_register_name): Delete declarations.
10969 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
10970 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
10971 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
10972 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
10973 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
10974 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
10975 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
10976 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
10977 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
10978 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
10979 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
10980 (arm_get_next_pc): No-longer static -- these are needed by the RDI
10981 interface.
10982 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
10983 * remote-rdi.c remote-rdp.c: Likewise.
10984 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
10985 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
10986 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
10987 definition.
10988
10989 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
10990 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
10991 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
10992 from non-ARM_ prefixed definitions.
10993 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
10994 all uses of above.
10995 * remote-rdi.c remote-rdp.c: Likewise.
10996 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
10997
10998 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
10999
11000 * arm-tdep.c (arm_frameless_function_invocation)
11001 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
11002 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
11003 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
11004 (arm_pop_frame, arm_get_next_pc): Make static.
11005 (arm_gdbarch_init): Register above in gdbarch structure.
11006 (arm_read_fp): Renamed from arm_target_read_fp.
11007 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
11008 * config/arm/tm-arm.h (arm_frameless_function_invocation)
11009 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
11010 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
11011 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
11012 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
11013 (arm_pc_is_thumb_dummy): Delete declarations.
11014 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
11015 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
11016 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
11017 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
11018
11019 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
11020
11021 * symtab.c (compare_search_syms): New function.
11022 (sort_search_symbols): New function.
11023 (search_symbols): Sort symbols after searching rather than
11024 before.
11025
11026 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11027
11028 * NEWS: Linux -> GNU/Linux.
11029
11030 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11031
11032 * gdbarch.sh: For for level one methods, disallow a definition
11033 when partially multi-arched. Add comments explaining rationale.
11034 * gdbarch.h: Re-generate.
11035
11036 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11037
11038 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
11039 multi-arch partial.
11040
11041 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11042
11043 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
11044 field. Use diff -u.
11045 * gdbarch.c: Re-generate.
11046
11047 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11048
11049 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
11050 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
11051 partial.
11052
11053 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11054
11055 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
11056 multi-arch partial.
11057 (PUSH_ARGUMENTS): Switch to using predefault.
11058 * gdbarch.c: Regenerate.
11059
11060 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11061
11062 * valops.c (PUSH_ARGUMENTS): Delete definition.
11063 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
11064 partial. Default to default_push_arguments.
11065 * gdbarch.h, gdbarch.c: Regenerate.
11066
11067 2002-02-09 Andrew Cagney <ac131313@redhat.com>
11068
11069 * defs.h (throw_exception): Rename return_to_top_level. Update
11070 comments.
11071 * utils.c (error_stream, internal_verror, quit): Ditto.
11072 * top.c (throw_exception, catcher): Ditto.
11073 * sparclet-rom.c (sparclet_load): Ditto.
11074 * remote.c (interrupt_query, minitelnet): Ditto.
11075 * remote-sds.c (interrupt_query): Ditto.
11076 * remote-mips.c (mips_error, mips_kill): Ditto.
11077 * ocd.c (interrupt_query): Ditto.
11078 * monitor.c (monitor_interrupt_query): Ditto.
11079 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
11080 * target.h: Update comment.
11081
11082 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
11083
11084 2002-02-09 Andrew Cagney <ac131313@redhat.com>
11085
11086 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
11087 default_double_format.
11088 * gdbarch.h, gdbarch.c: Re-generate.
11089 * findvar.c (floatformat_unknown): Delete variable definition.
11090 * doublest.h (floatformat_unknown): Delete variable declaration.
11091
11092 2002-02-09 Jim Blandy <jimb@redhat.com>
11093
11094 * stabsread.c (read_type): Add code to parse Sun's syntax for
11095 prototyped function types.
11096
11097 2002-02-09 Andrew Cagney <ac131313@redhat.com>
11098
11099 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
11100 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
11101
11102 2002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11103
11104 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
11105 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
11106 now _initialize_xcoffsolib gets called again and overrides the
11107 commands from solib.c in a native configuration.
11108
11109 2002-02-09 Mark Kettenis <kettenis@gnu.org>
11110
11111 * doublest.c (store_typed_floating): Don't try to return a value.
11112 Fixes PR gdb/290.
11113
11114 2002-02-08 Jim Blandy <jimb@redhat.com>
11115
11116 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
11117 is prototyped and has no arguments, print its argument list as
11118 `(void)'.
11119
11120 2002-02-08 Chris Demetriou <cgd@broadcom.com>
11121
11122 * MAINTAINERS (write-after-approval): Add myself.
11123 (paper-trail): I've escaped!
11124
11125 2002-02-08 Christopher Faylor <cgf@redhat.com>
11126
11127 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
11128 changes.
11129 (_initialize_check_for_gdb_ini): Ditto.
11130
11131 2002-02-08 Martin M. Hunt <hunt@redhat.com>
11132
11133 * win32-nat.c (cygwin_pid_to_str): Fix typo.
11134 xaprintf -> xasprintf.
11135
11136 2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
11137
11138 * win32-nat.c: Remove use of printf and sprintf functions.
11139
11140 2002-02-08 Richard Earnshaw <rearnsha@arm.com>
11141
11142 * arm-tdep.c (arm_frame_chain_valid): Make static.
11143 (arm_push_arguments): Likewise.
11144 (arm_gdbarch_init): New function.
11145 (_initialize_arm_tdep): Call it.
11146 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
11147 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
11148 (FRAME_CHAIN_VALID): Delete.
11149 (arm_frame_chain_valid): Delete declaration.
11150 (PUSH_ARGUMENTS): Delete.
11151 (arm_push_arguments): Delete declaration.
11152 (CALL_DUMMY_P): Delete.
11153
11154 2002-02-08 Andrew Cagney <ac131313@redhat.com>
11155 Corinna Vinschen <vinschen@redhat.com>
11156
11157 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
11158 on builtin float types.
11159
11160 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
11161
11162 * utils.c: Include <curses.h> before "bfd.h".
11163 * tui/tui-hooks.c: Likewise.
11164 * tui/tui.c: Likewise.
11165 * tui/tuiCommand.c: Likewise.
11166 * tui/tuiData.c: Likewise.
11167 * tui/tuiDataWin.c: Likewise.
11168 * tui/tuiDisassem.c: Likewise.
11169 * tui/tuiGeneralWin.c: Likewise.
11170 * tui/tuiIO.c: Likewise.
11171 * tui/tuiLayout.c: Likewise.
11172 * tui/tuiRegs.c: Likewise.
11173 * tui/tuiSource.c: Likewise.
11174 * tui/tuiSourceWin.c: Likewise.
11175 * tui/tuiStack.c: Likewise.
11176 * tui/tuiWin.c: Likewise.
11177
11178 2002-02-07 Elena Zannoni <ezannoni@redhat.com>
11179
11180 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
11181 to include space for pseudoregs as well. Update loops accordingly.
11182 (sh_fp_frame_init_saved_regs): Ditto.
11183 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
11184
11185 2002-02-07 Andrew Cagney <ac131313@redhat.com>
11186
11187 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
11188 Add Richard Earnshaw to Arm maintainers.
11189
11190 2002-02-07 Andrew Cagney <ac131313@redhat.com>
11191
11192 * defs.h (warning_begin): Delete declaration.
11193
11194 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
11195 Delete macro.
11196
11197 2002-02-07 Michael Snyder <msnyder@redhat.com>
11198
11199 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
11200 Logic bug, remove misplaced else.
11201
11202 2002-02-07 Klee Dienes <klee@apple.com>
11203
11204 * fork-inferior.c (fork_inferior): Add '!' to the list of
11205 characters that need to be quoted when building a string for the
11206 shell. Quote '!' specifically with a backslash, since CSH chokes
11207 when trying to evaluate "str!str".
11208
11209 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
11210
11211 * rdi-share/host.h: Only provide a typedef for bool if it is not
11212 defined.
11213
11214 2002-02-04 Michael Snyder <msnyder@redhat.com>
11215
11216 * breakpoint.h (enum bptype): Add new overlay event bp type.
11217 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
11218
11219 * breakpoint.c (create_internal_breakpoint): New function.
11220 (internal_breakpoint_number): Moved into create_internal_breakpoint.
11221 (create_longjmp_breakpoint): Use create_internal_breakpoint.
11222 (create_thread_event_breakpoint): Ditto.
11223 (create_solib_event_breakpoint): Ditto.
11224 (create_overlay_event_breakpoint): New function.
11225 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
11226 (update_breakpoints_after_exec): Delete and re-initialize
11227 overlay event breakpoints after an exec. Add FIXME comment
11228 about longjmp breakpoint.
11229 (print_it_typical): Ignore overlay event breakpoints.
11230 (print_one_breakpoint): Ditto.
11231 (mention): Ditto.
11232 (bpstat_what): Do not stop for overlay event breakpoints.
11233 (delete_breakpoint): Don't delete overlay event breakpoints.
11234 (breakpoint_re_set_one): Delete the overlay event breakpoint.
11235 (breakpoint_re_set): Re-create overlay event breakpoint.
11236
11237 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
11238 (overlay_manual_command): Disable overlay breakpoints.
11239 (overlay_off_command): Disable overlay breakpoints.
11240
11241 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
11242
11243 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
11244 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
11245 to here from config/tm-arm.h.
11246 (coff_sym_is_thumb): Make static.
11247 (arm_elf_make_msymbol_special): New function.
11248 (arm_coff_make_msymbol_special): New function.
11249 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
11250 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
11251 (coff_sym_is_thumb): Delete declaration.
11252 (arm_elf_make_msymbol_special): Declare.
11253 (arm_coff_make_msymbol_special): Declare.
11254 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
11255 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
11256
11257 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
11258
11259 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
11260
11261 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
11262
11263 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
11264 * gdbarch.c gdbarch.h: Regenerate.
11265 * arch-utils.c (default_print_float_info): New function.
11266 * arch-utils.h (default_print_float_info): Prototype it.
11267 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
11268 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
11269 (PRINT_FLOAT_INFO): Document it.
11270
11271 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
11272 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
11273 (PRINT_FLOAT_INFO): Define.
11274
11275 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
11276
11277 * win32-nat.c (_initialize_check_for_gdb_ini):
11278 Add typecast to sprintf argument to suppress a warning.
11279
11280 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
11281
11282 * win32-nat.c (last_sig): Changed type of variable to target_signal,
11283 to allow easier handling of pass state.
11284 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
11285 that gives exception name and address.
11286 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
11287 and set last_sig value to ourstatus->value.sig. Some missing
11288 exceptions added.
11289 (child_continue): Correctly report continue_status.
11290 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
11291 TARGET_SIGNAL_0 (new default value).
11292 (child_resume): consider sig argument passed to decide if
11293 the exception should be passed to debuggee or not.
11294
11295 2002-02-05 Michael Snyder <msnyder@redhat.com>
11296
11297 * regcache.c (fetch_register): Call target_fetch_register
11298 only if we don't call FETCH_PSEUDO_REGISTER.
11299 (store_register): Call target_store_register only if we
11300 don't call STORE_PSEUDO_REGISTER.
11301
11302 2002-02-05 Elena Zannoni <ezannoni@redhat.com>
11303
11304 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
11305 ELF_MAKE_MSYMBOL_SPECIAL.
11306 * gdbarch.c, gdbarch.h: Regenerate.
11307 * arch-utils.c (default_make_msymbol_special): New function.
11308 * arch-utils.h (default_make_msymbol_special): Export.
11309 * elfread.c (elf_symtab_read): Compile use of
11310 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
11311 multiarched.
11312 * coffread.c (coff_symtab_read): Ditto, for
11313 COFF_MAKE_MSYMBOL_SPECIAL.
11314
11315 2002-02-05 Jim Blandy <jimb@redhat.com>
11316
11317 * solib-svr4.c (svr4_truncate_ptr): New function.
11318 (svr4_relocate_section_addresses): Do the address arithmetic with
11319 the appropriate truncation for target addresses, even when
11320 CORE_ADDR is larger than a target address.
11321
11322 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11323
11324 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
11325 to (int *).
11326
11327 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11328
11329 * gdbserver/linux-low.c (kill_inferior): Remove commented out
11330 code.
11331
11332 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11333
11334 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
11335
11336 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11337
11338 * gdbserver/linux-low.c: Remove unused include files.
11339
11340 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11341
11342 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
11343 (read_inferior_memory): Use it.
11344 (write_inferior_memory): Likewise.
11345
11346 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11347
11348 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
11349 grubbing through sys_errlist.
11350
11351 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11352
11353 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
11354
11355 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
11356 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
11357
11358 2002-02-04 Andrew Cagney <ac131313@redhat.com>
11359
11360 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
11361 (do_sfunc, set_cmd_sfunc): New functions.
11362
11363 * command.h (struct cmd_list_element): Add field func.
11364 * cli/cli-decode.h (struct cmd_list_element): Ditto.
11365 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
11366 * cli/cli-decode.h: Ditto.
11367
11368 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
11369 (help_all, help_cmd_list): Ditto.
11370 (find_cmd, complete_on_cmdlist): Ditto.
11371 * top.c (execute_command): Ditto.
11372
11373 * cli/cli-setshow.c (do_setshow_command): Call func instead of
11374 function.sfunc.
11375
11376 * infcmd.c (notice_args_read): Fix function signature.
11377
11378 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
11379 * cli/cli-decode.c (add_set_cmd): Ditto.
11380 * utils.c (initialize_utils): Ditto.
11381 * maint.c (_initialize_maint_cmds): Ditto.
11382 * infrun.c (_initialize_infrun): Ditto.
11383 * demangle.c (_initialize_demangler): Ditto.
11384 * remote.c (add_packet_config_cmd): Ditto.
11385 * mips-tdep.c (_initialize_mips_tdep): Ditto.
11386 * cris-tdep.c (_initialize_cris_tdep): Ditto.
11387 * proc-api.c (_initialize_proc_api): Ditto.
11388 * kod.c (_initialize_kod): Ditto.
11389 * valprint.c (_initialize_valprint): Ditto.
11390 * top.c (init_main): Ditto.
11391 * infcmd.c (_initialize_infcmd): Ditto.
11392 * corefile.c (_initialize_core): Ditto.
11393 * arm-tdep.c (_initialize_arm_tdep): Ditto.
11394 * arch-utils.c (initialize_current_architecture): Ditto.
11395 (_initialize_gdbarch_utils): Ditto.
11396 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
11397
11398 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
11399 * wince.c (_initialize_inftarg): Ditto.
11400 * symfile.c (_initialize_symfile): Ditto.
11401 * mips-tdep.c (_initialize_mips_tdep): Ditto.
11402 * language.c (_initialize_language): Ditto.
11403 * arc-tdep.c (_initialize_arc_tdep): Ditto.
11404
11405 2002-02-04 Michael Snyder <msnyder@redhat.com>
11406
11407 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
11408
11409 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
11410
11411 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
11412 Add rules for building the register data files.
11413
11414 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
11415
11416 * regformats/regdat.sh: Add braces to the definition of
11417 expedite_regs_${arch}.
11418
11419 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
11420
11421 * regformats/regdef.h (struct reg): Add comment describing the
11422 requirements for offset and size fields.
11423
11424 2002-02-04 Andreas Schwab <schwab@suse.de>
11425
11426 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
11427 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
11428
11429 2002-02-04 Richard Earnshaw <rearnsha@arm.com>
11430
11431 * gdbarch.sh (copyright): Update years in generated header.
11432 (SMASH_TEXT_ADDRESS): Add rule.
11433 * gdbarch.h, gdbarch.c: Re-generate.
11434 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
11435 * dbxread.c: Likewise.
11436 * dwarfread.c: Likewise.
11437 * elfread.c: Likewise.
11438 * somread.c: Likewise.
11439
11440 * arm-tdep.c (arm_smash_text_address): New function.
11441 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
11442
11443 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
11444
11445 Add support for hardware watchpoints on win32 native.
11446 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
11447 CONTEXT_DEBUG_REGISTERS.
11448 (dr variable): New variable. Static array containing a local copy
11449 of debug registers.
11450 (debug_registers_changed): New variable. Reflects when debug registers
11451 are changed and need to be written to inferior.
11452 (debug_registers_used): New variable. Reflects when any debug register
11453 was set, used when new threads are created.
11454 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
11455 i386-nat code.
11456 (thread_rec): Set dr array if id is the thread of current_event .
11457 (child_continue, child_resume): Change the debug registers for all
11458 threads if debug_registers_changed.
11459 (child_add_thread): Change the debug registers if debug_registers_used.
11460 * config/i386/cygwin.mh: Add use of i386-nat.o file.
11461 Link nm.h to new nm-cygwin.h file.
11462 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
11463 of hardware registers.
11464
11465 2002-02-03 Andrew Cagney <ac131313@redhat.com>
11466
11467 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
11468 Restore behavour broken by 2002-01-20 Andrew Cagney
11469 <ac131313@redhat.com> IEEE_FLOAT removal.
11470
11471 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11472
11473 * c-valprint.c (c_val_print): Pass a proper valaddr to
11474 cp_print_class_method.
11475 * valops.c (search_struct_method): If there is only one method
11476 and args is NULL, return that method.
11477
11478 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11479
11480 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
11481 accessing tag_name directly.
11482
11483 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11484
11485 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
11486 of accessing tag_name directly.
11487
11488 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11489
11490 PR gdb/280
11491 * gdbtypes.c (replace_type): New function.
11492 * gdbtypes.h (replace_type): Add prototype.
11493 * stabsread.c (read_type): Use replace_type.
11494
11495 2002-02-03 Richard Earnshaw <rearnsha@arm.com>
11496
11497 * Makefile.in (memattr.o): Add missing dependencies rule.
11498
11499 2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11500
11501 * breakpoint.c (break_at_finish_command): Really export.
11502 (break_at_finish_at_depth_command): Ditto.
11503 (tbreak_at_finish_command): Ditto.
11504 * hppa-tdep.c: Include completer.h.
11505 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
11506 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
11507
11508 2002-02-01 Andrew Cagney <ac131313@redhat.com>
11509
11510 * utils.c (do_write): New function.
11511 (error_stream): Rewrite combining the code from error_begin and
11512 verror.
11513 (verror): Rewrite using error_stream.
11514 (error_begin): Delete function.
11515
11516 2002-02-01 Andrew Cagney <ac131313@redhat.com>
11517
11518 * utils.c (error_begin): Make static.
11519 * defs.h (error_begin): Delete declaration.
11520
11521 * linespec.c (cplusplus_error): Replace cplusplus_hint.
11522 (decode_line_1): Use cplusplus_error instead of error_begin,
11523 cplusplus_hint and return_to_top_level.
11524 * coffread.c (coff_symfile_read): Use error instead of error_begin
11525 and return_to_top_level.
11526 * infrun.c (default_skip_permanent_breakpoint): Ditto.
11527
11528 2002-02-01 Andrew Cagney <ac131313@redhat.com>
11529
11530 * language.h (type_error, range_error): Make string parameter
11531 constant.
11532 * language.c (warning_pre_print): Delete extern declaration.
11533 * dwarfread.c (warning_pre_print): Ditto.
11534 * language.c (type_error, range_error): Rewrite to use verror and
11535 vwarning instead of warning_begin.
11536
11537 2002-02-01 Michael Snyder <msnyder@redhat.com>
11538
11539 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
11540 (set_ignore_count): Move misplaced comment back where it belongs.
11541
11542 2002-02-01 Andrew Cagney <ac131313@redhat.com>
11543
11544 * command.h (NO_FUNCTION): Delete macro.
11545 * cli/cli-decode.h (NO_FUNCTION): Ditto.
11546 * top.c (execute_command): Replace NO_FUNCTION with NULL.
11547 * tracepoint.c (_initialize_tracepoint): Ditto.
11548 * cli/cli-decode.c (add_set_cmd): Ditto.
11549 * cli/cli-cmds.c (init_cli_cmds): Ditto.
11550
11551 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
11552
11553 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
11554 Update ``this'' pointer when calling virtual functions.
11555
11556 2002-02-01 Michael Snyder <msnyder@redhat.com>
11557
11558 * breakpoint.c (create_temp_exception_breakpoint): Delete.
11559 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
11560
11561 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
11562
11563 * regformats/reg-arm.dat: New file.
11564 * regformats/reg-i386.dat: New file.
11565 * regformats/reg-ia64.dat: New file.
11566 * regformats/reg-m68k.dat: New file.
11567 * regformats/reg-mips.dat: New file.
11568 * regformats/reg-ppc.dat: New file.
11569 * regformats/reg-sh.dat: New file.
11570 * regformats/regdef.h: New file.
11571 * regformats/regdat.sh: New file.
11572
11573 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
11574
11575 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
11576 (arm_frame_args_address, arm_frame_locals_address): New functions.
11577 (arm_frame_num_args): New function.
11578 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
11579 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
11580 (FRMA_NUM_ARGS): Call arm_frame_num_args.
11581
11582 2002-01-31 Michael Snyder <msnyder@redhat.com>
11583
11584 * breakpoint.c (break_at_finish_command): Export.
11585 (break_at_finish_at_depth_command): Export.
11586 (tbreak_at_finish_command): Export.
11587 (_initialize_breakpoint): Delete "xbreak" and "txbreak" commands.
11588 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
11589 "txbreak" commands, which are HPPA specific.
11590
11591 * printcmd.c (disassemble_command): Remove an ancient
11592 artifact of an old merge.
11593
11594 * symfile.h (enum overlay_debugging_state):
11595 Define enum constant values for overlay mode.
11596 * symfile.c (overlay_debugging): Use enums instead of literals.
11597 (overlay_is_mapped, overlay_auto_command,
11598 overlay_manual_command): Ditto.
11599
11600 * breakpoint.c (insert_breakpoints, remove_breakpoint,
11601 breakpoint_here_p, breakpoint_inserted_here_p,
11602 breakpoint_thread_match, bpstat_stop_status,
11603 describe_other_breakpoints, check_duplicates, clear_command):
11604 Coding standard fixes.
11605
11606 * target.c (target_xfer_memory): Add spaces, coding standard.
11607 (do_xfer_memory): Add missing line to trust-readonly
11608 code: check bfd SEC_READONLY flag for section.
11609
11610 2002-01-31 Andrew Cagney <ac131313@redhat.com>
11611
11612 * PROBLEMS: Fix typo, 5.1->5.1.1.
11613
11614 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
11615
11616 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
11617 data symbols, since we search based on textlow and texthigh.
11618 (find_pc_sect_symtab): Likewise.
11619
11620 2002-01-30 Andrew Cagney <ac131313@redhat.com>
11621
11622 * defs.h (vwarning): Declare.
11623 * utils.c (vwarning): New function.
11624 (warning): Call vwarning.
11625 (warning_begin): Delete function.
11626
11627 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
11628 the warning message.
11629 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
11630 warning_begin.
11631
11632 2002-01-30 Michael Snyder <msnyder@redhat.com>
11633
11634 * NEWS: Mention "set trust-readonly-sections" command.
11635 Mention generate-core-file command.
11636
11637 2002-01-15 Michael Snyder <msnyder@redhat.com>
11638
11639 * target.c: New command, "set trust-readonly-sections on".
11640 (do_xfer_memory): Honor the suggestion to trust readonly sections
11641 by reading them from the object file instead of from the target.
11642 (initialize_targets): Register command "set trust-readonly-sections".
11643
11644 2002-01-29 Andrew Cagney <ac131313@redhat.com>
11645
11646 * parse.c (target_map_name_to_register): Simplify, search regs and
11647 pseudo-regs using a single loop.
11648
11649 2002-01-30 Andrew Cagney <ac131313@redhat.com>
11650
11651 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
11652
11653 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
11654
11655 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
11656 * config/i386/i386v42mp.mh: Add i387-nat.o .
11657 * i386v4-nat.c: Include i387-nat.h.
11658 (supply_fpregset): Use i387_supply_fsave.
11659 (fill_fpregset): Use i387_fill_fsave.
11660
11661 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
11662
11663 * arm-tdep.c (arm_call_dummy_words): Define.
11664 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
11665 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
11666 (CALL_DUMMY_WORDS): Define.
11667 (arm_call_dummy_words): Declare.
11668 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
11669 (arm_linux_call_dummy_words): Declare.
11670
11671 2002-01-30 Andreas Schwab <schwab@suse.de>
11672
11673 * m68klinux-nat.c: Fix last change to use regcache_collect
11674 instead of referencing registers[] directly.
11675
11676 2002-01-29 Andrew Cagney <ac131313@redhat.com>
11677
11678 * parse.c (target_map_name_to_register): Delete code wrapped in
11679 #ifdef REGISTER_NAME_ALIAS_HOOK.
11680
11681 2002-01-28 Michael Snyder <msnyder@redhat.com>
11682
11683 * regcache.c (legacy_read_register_gen): Need to be able to
11684 read pseudo-register as well as real register.
11685 (legacy_write_register_gen): Ditto.
11686
11687 2002-01-28 Andrew Cagney <ac131313@redhat.com>
11688
11689 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
11690 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
11691 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
11692 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
11693 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
11694 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
11695 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
11696 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
11697 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
11698 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
11699 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
11700 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
11701 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
11702 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
11703 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
11704 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
11705 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
11706 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
11707 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
11708 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
11709
11710 2002-01-28 Andrew Cagney <ac131313@redhat.com>
11711
11712 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
11713 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
11714 (initialize_current_architecture): Update target_byte_order using
11715 information from BFD.
11716 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
11717 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
11718
11719 2002-01-28 Andrew Cagney <ac131313@redhat.com>
11720
11721 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
11722 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
11723
11724 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
11725 #ifdef INVALID_FLOAT.
11726 * infcmd.c (do_registers_info): Ditto.
11727 * values.c (unpack_double): Ditto. Add comment.
11728
11729 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
11730 already commented out.
11731
11732 2002-01-26 Andreas Schwab <schwab@suse.de>
11733
11734 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
11735 * m68klinux-nat.c: Update ptrace interface for fetching/storing
11736 registers and add support for PTRACE_GETREGS.
11737
11738 2002-01-24 Andrew Cagney <ac131313@redhat.com>
11739
11740 GDB 5.1.1 released from 5.1 branch.
11741 * NEWS: Add 5.1.1 news.
11742 * README: Sync with 5.1 branch.
11743
11744 2002-01-23 Fred Fish <fnf@redhat.com>
11745
11746 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
11747 stabstring on initial malloc. Reallocing will copy it for us,
11748 if necessary.
11749
11750 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
11751
11752 * Makefile.in (hpread_h): Delete.
11753 (HFILES_NO_SRCDIR): Remove hpread.h.
11754 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
11755 (hpread.o): Update dependencies.
11756 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
11757
11758 * hp-psymtab-read.c: Remove file.
11759 * hp-symtab-read.c: Remove file.
11760 * hpread.h: Remove file.
11761
11762 * hpread.c: Merge all contents of hp-psymtab-read.c,
11763 hp-symtab-read.c and hpread.h into this file, as it was prior to
11764 January 1999.
11765
11766 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
11767 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
11768 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
11769 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
11770
11771 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
11772
11773 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
11774 fill_gregset): Call gdbarch_tdep() just once, assign result to
11775 variable and use that, instead of calling the function several
11776 times.
11777
11778 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
11779
11780 * configure.host: Accept sparcv9 as alias for sparc64.
11781 * configure.tgt: Likewise.
11782
11783 2002-01-22 Kevin Buettner <kevinb@redhat.com>
11784
11785 * solib-aix5.c (build_so_list_from_mapfile)
11786 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
11787 arguments is not reversed.
11788 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
11789 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
11790
11791 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
11792
11793 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
11794 modified version of obsolete sh_fetch_pseudo_register.
11795 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
11796 (sh4_register_read): New function.
11797 (sh_pseudo_register_write): New function. Renamed and modified
11798 version of obsolete sh_store_pseudo_register.
11799 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
11800 (sh4_register_write): New function.
11801 (sh_gdbarch_init): Remove setting of gdbarch function
11802 fetch_pseudo_register and store_pseudo_register. Remove setting of
11803 register_convert_to_raw, register_convert_to_virtual,
11804 register_convertible.
11805 (sh_sh4_register_convertible): Delete. No longer needed. All is
11806 taken care by architecture specific functions
11807 register_read/register_write.
11808 (sh_sh4_register_convert_to_virtual): Make static.
11809 (sh_sh4_register_convert_to_raw): Ditto.
11810
11811 2002-01-22 Andrew Cagney <ac131313@redhat.com>
11812
11813 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
11814 (floatformat_is_nan, floatformat_mantissa): Ditto.
11815
11816 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
11817 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
11818 builtin_type_ieee_double_little,
11819 builtin_type_ieee_double_littlebyte_bigword,
11820 builtin_type_m68881_ext, builtin_type_i960_ext,
11821 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
11822 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
11823 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
11824 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
11825
11826 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
11827
11828 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
11829 parameter. Set frameless flag if it exists and depended of
11830 whether the scanned function is frameless or not.
11831 (xstormy16_skip_prologue): If function is frameless, return
11832 result of xstormy16_scan_prologue().
11833 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
11834 call.
11835
11836 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
11837
11838 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
11839 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
11840 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
11841 sh_sh4_register_byte, sh_sh4_register_raw_size,
11842 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
11843 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
11844 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
11845 sh_store_pseudo_register, sh_do_pseudo_register): Call
11846 gdbarch_tdep() just once, assign result to variable and use that,
11847 instead of calling the function several times.
11848
11849 2002-01-20 Mark Kettenis <kettenis@gnu.org>
11850
11851 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
11852 macros instead of LAST_FPU_CTRL_REGNUM.
11853 (store_register): Likewise.
11854
11855 2002-01-21 Jim Blandy <jimb@redhat.com>
11856
11857 * infcmd.c (run_command): Check that the `exec' target layer's BFD
11858 is up-to-date before running the program, not just when a program
11859 exits.
11860
11861 2002-01-21 Fred Fish <fnf@redhat.com>
11862
11863 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
11864 when we have found all instructions we are looking for.
11865
11866 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
11867
11868 * arm-tdep.c (arm_register_name): New function.
11869 (arm_registers_names): Make static.
11870 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
11871 (arm_register_name): Declare.
11872 (REGISTER_NAME): Use it.
11873
11874 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
11875 Kevin Buettner <kevinb@redhat.com>
11876
11877 Convert arm targets to new FRAME interface.
11878 * arm-tdep.c (struct frame_extra_info): Remove fsr.
11879 (arm_frame_find_save_regs): Delete.
11880 (arm_frame_init_saved_regs): New.
11881 (arm_init_extra_frame_info): Alloacte saved_regs as required.
11882 Allocate extra_info as required. Convert all uses of fsr.regs
11883 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
11884 to use extra_info.
11885 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
11886 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
11887 (check_prologue_cache, save_prologue_cache): Likewise.
11888 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
11889 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
11890 (FRAME_FIND_SAVED_REGS): Delete.
11891 (arm_frame_find_saved_regs): Delete prototype.
11892 (arm_frame_init_saved_regs): New prototype.
11893 (FRAME_INIT_SAVED_REGS): Define.
11894
11895 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11896
11897 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
11898
11899 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11900
11901 From Jeff Law <law@redhat.com>:
11902 * infttrace.c: Include <sys/pstat.h>.
11903 (child_pid_to_exec_file): Revamp. Use pstat call to get the
11904 exec file if the ttrace equivalent fails.
11905
11906 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11907
11908 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
11909 (closeLogFile): Ditto.
11910
11911 2002-01-20 Michael Chastain <mec@shout.net>
11912
11913 * top.c (print_gdb_version): Bump copyright year to 2002.
11914
11915 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11916
11917 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
11918 Zannoni and Eli Zaretskii.
11919
11920 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
11921
11922 * buildsym.c: Update copyright years.
11923 * c-typeprint.c: Likewise.
11924 * dwarf2read.c: Likewise.
11925 * f-typeprint.c: Likewise.
11926 * gdbtypes.c: Likewise.
11927 * gdbtypes.h: Likewise.
11928 * hp-symtab-read.c: Likewise.
11929 * hpread.c: Likewise.
11930 * mdebugread.c: Likewise.
11931 * p-typeprint.c: Likewise.
11932
11933 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11934
11935 * remote-sim.c (gdbsim_open): Simplify code testing the macro
11936 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
11937 byte-order selectable.
11938 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
11939 * arch-utils.c: Ditto.
11940 (set_endian): Ditto.
11941 (set_endian_from_file): Ditto.
11942 * gdbserver/low-sim.c (create_inferior): Ditto.
11943 * gdbarch.sh: Ditto.
11944 * gdbarch.h: Re-generate.
11945 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11946 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
11947 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
11948 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11949 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11950 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11951 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
11952 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
11953 macro definition.
11954 * config/mips/tm-wince.h: Remove #undef of macro
11955 TARGET_BYTE_ORDER_SELECTABLE.
11956 * config/sh/tm-wince.h: Ditto.
11957
11958 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
11959
11960 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
11961 member function fields. Add accessor macro
11962 TYPE_FN_FIELD_ARTIFICIAL.
11963 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
11964 * c-typeprint.c (c_type_print_base): Skip artificial member
11965 functions.
11966
11967 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
11968
11969 * f-typeprint.c: Delete unused function f_type_print_args.
11970 * p-typeprint.c: Delete unused function pascal_type_print_args.
11971
11972 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
11973
11974 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
11975 comment. Add ``artificial'' to ``union field_location''.
11976
11977 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
11978
11979 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
11980 * mdebugread.c (parse_symbol): Likewise.
11981 * stabsread.c (define_symbol): Likewise.
11982 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
11983 initializing TYPE_FIELD_BITPOS to n (obsolete).
11984 (hpread_doc_function_type): Likewise.
11985 * hpread.c (hpread_function_type): Likewise.
11986
11987 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11988
11989 * configure.in (host_makefile_frag): Only require a host makefile
11990 fragment when a native build.
11991 * configure: Re-generate.
11992
11993 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11994
11995 * doublest.h (floatformat_from_type): Declare.
11996 * doublest.c (floatformat_from_type): New function.
11997 (convert_typed_floating): Use.
11998
11999 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
12000 call to function floatformat_from_type.
12001
12002 * gdbarch.sh (IEEE_FLOAT): Delete.
12003 * gdbarch.h, gdbarch.c: Re-generate.
12004 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
12005 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
12006 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
12007 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
12008 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
12009 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
12010 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
12011 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
12012 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
12013 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
12014 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
12015 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
12016
12017 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
12018 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
12019 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
12020 * sh-tdep.c (sh_gdbarch_init): Ditto.
12021 * mips-tdep.c (mips_gdbarch_init): Ditto.
12022 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
12023 * cris-tdep.c (cris_gdbarch_init): Ditto.
12024
12025 2002-01-20 Jiri Smid <smid@suse.cz>
12026
12027 * configure.host, configure.tgt: Support x86-64.
12028 * NEWS: Note new target x86-64.
12029
12030 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
12031 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
12032 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
12033 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
12034 x86-64-linux-nat.o): Fix dependencies.
12035
12036 2002-01-19 Andrew Cagney <ac131313@redhat.com>
12037
12038 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
12039 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
12040 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
12041 * config/sparc/xm-sun4os4.h: Delete file.
12042 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
12043
12044 2002-01-19 Andrew Cagney <ac131313@redhat.com>
12045
12046 * config/sparc/sparclynx.mh (XM_FILE): Delete.
12047 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
12048 * config/m68k/m68klynx.mh (XM_FILE): Delete.
12049 * config/i386/i386lynx.mh (XM_FILE): Delete.
12050 * config/rs6000/xm-rs6000ly.h: Delete file.
12051 * config/sparc/xm-sparclynx.h: Delete file.
12052 * config/m68k/xm-m68klynx.h: Delete file.
12053 * config/i386/xm-i386lynx.h: Delete file.
12054 * config/xm-lynx.h: Delete file.
12055 * config/djgpp/fnchange.lst: Update.
12056
12057 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
12058
12059 * alpha-tdep.c (alpha_register_byte): New function.
12060 (alpha_register_raw_size): Ditto.
12061 (alpha_register_virtual_size): Ditto.
12062 (alpha_skip_prologue_internal): Renamed from
12063 alpha_skip_prologue.
12064 (alpha_skip_prologue): New version that calls
12065 alpha_skip_prologue_internal.
12066 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
12067 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
12068 second argument from alpha_skip_prologue.
12069 (REGISTER_BYTE): Use alpha_register_byte.
12070 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
12071 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
12072 (FRAMELESS_FUNCTION_INVOCATION): Use
12073 generic_frameless_function_invocation_not.
12074 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
12075 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
12076
12077 2002-01-19 Andrew Cagney <ac131313@redhat.com>
12078
12079 * config/mips/xm-news-mips.h: Delete file.
12080 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
12081
12082 * config/m88k/xm-m88k.h: Delete file.
12083 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
12084 * config/m88k/xm-delta88v4.h: Ditto.
12085 * config/m88k/xm-delta88.h: Ditto.
12086
12087 * config/alpha/xm-fbsd.h: Delete file.
12088 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
12089
12090 * config/sparc/xm-sparc.h: Delete file.
12091 * Makefile.in (xm-sun4os4.h): Delete dependency.
12092 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
12093 * config/sparc/xm-sun4os4.h: Ditto.
12094 * config/sparc/xm-linux.h: Ditto.
12095
12096 * config/i386/xm-windows.h: Delete file.
12097
12098 2002-01-19 Andrew Cagney <ac131313@redhat.com>
12099
12100 * utils.c: Include <sys/param.h> for MAXPATHLEN.
12101 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
12102
12103 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
12104
12105 * alpha-tdep.c (alpha_call_dummy_words): New.
12106 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
12107 (CALL_DUMMY_P): Define.
12108 (CALL_DUMMY_WORDS): Define.
12109 (SIZEOF_CALL_DUMMY_WORDS): Define.
12110
12111 2002-01-19 Per Bothner <per@bothner.com>
12112
12113 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
12114 isn't NULL, which can happen with some gcj-3.x-produced code.
12115
12116 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
12117
12118 * alpha-tdep.c (alpha_register_virtual_type): New function.
12119 (alpha_init_frame_pc_first): Ditto.
12120 (alpha_fix_call_dummy): Ditto.
12121 (alpha_store_struct_return): Ditto.
12122 (alpha_extract_struct_value_address): Ditto.
12123 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
12124 alpha_register_virtual_type.
12125 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
12126 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
12127 alpha_extract_struct_value_address.
12128 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
12129 (INIT_FRAME_PC): Use init_frame_pc_noop.
12130 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
12131
12132 2002-01-19 Mark Kettenis <kettenis@gnu.org>
12133
12134 * i386gnu-nat.c: Include "i386-tdep.h".
12135 (fetch_fpregs): Simplify code dealing with uninitialized floating
12136 point states such that it doesn't require FP7_REGNUM.
12137
12138 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12139
12140 * alpha-tdep.c (frame_extra_info): New.
12141 (alpha_find_saved_regs): Make static. Use
12142 frame->extra_info.
12143 (alpha_frame_init_saved_regs): New function.
12144 (alpha_frame_saved_pc): Use frame->extra_info.
12145 (temp_saved_regs): Don't declare as struct frame_saved_regs.
12146 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
12147 (init_extra_frame_info): Rename to...
12148 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
12149 (alpha_print_extra_frame_info): New function.
12150 (alpha_frame_locals_address): Ditto.
12151 (alpha_frame_args_address): Ditto.
12152 (alpha_pop_frame): Use frame->extra_info.
12153 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
12154 alpha_frame_args_address.
12155 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
12156 (alpha_find_saved_regs): Remove prototype.
12157 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
12158 (EXTRA_FRAME_INFO): Remove.
12159 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
12160 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
12161
12162 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12163
12164 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
12165 (alpha_cannot_fetch_register): Ditto.
12166 (alpha_cannot_store_register): Ditto.
12167 (alpha_register_convertible): Ditto.
12168 (alpha_use_struct_convention): Ditto.
12169 * config/alpha/tm-alpha.h: Update copyright years.
12170 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
12171 (INNER_THAN): Use core_addr_lessthan.
12172 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
12173 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
12174 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
12175 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
12176 (FRAME_CHAIN): Remove unnecessary cast.
12177
12178 2002-01-18 Andrew Cagney <ac131313@redhat.com>
12179
12180 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
12181 obsolete.
12182
12183 2002-01-18 Andrew Cagney <ac131313@redhat.com>
12184
12185 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
12186 * monitor.c, remote-array.c, remote-bug.c: Ditto.
12187 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
12188 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
12189 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
12190 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
12191 * x86-64-linux-nat.c: Ditto.
12192
12193 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12194
12195 * alpha-tdep.c (alpha_register_name): New function.
12196 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
12197 (REGISTER_NAME): Define.
12198
12199 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12200
12201 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
12202
12203 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12204
12205 * alpha-tdep.c: Update copyright years.
12206 (alpha_next_pc): New function.
12207 (alpha_software_single_step): Ditto.
12208 * config/alpha/tm-alpha.h: Add prototype for
12209 alpha_software_single_step.
12210
12211 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12212
12213 * alphabsd-nat.c: Update copyright years.
12214 (fill_gregset): Use regcache_collect.
12215 (fill_fpregset): Likewise.
12216 (fetch_inferior_registers): Only fetch integer registers
12217 if requested to do so.
12218 (store_inferior_registers): Only store integer registers
12219 if requested to do so.
12220
12221 2002-01-17 Andrew Cagney <ac131313@redhat.com>
12222
12223 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
12224 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
12225 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
12226 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
12227 * config/alpha/fbsd.mh (XDEPFILES): Delete.
12228 * config/arm/linux.mh (XDEPFILES): Delete.
12229 * config/arm/nbsd.mh (XDEPFILES): Delete.
12230 * config/i386/i386dgux.mh (XDEPFILES): Delete.
12231 * config/i386/i386sol2.mh (XDEPFILES): Delete.
12232 * config/i386/i386m3.mh (XDEPFILES): Delete.
12233 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
12234 * config/i386/i386gnu.mh (XDEPFILES): Delete.
12235 * config/i386/fbsd.mh (XDEPFILES): Delete.
12236 * config/i386/i386bsd.mh (XDEPFILES): Delete.
12237 * config/i386/i386sco5.mh (XDEPFILES): Delete.
12238 * config/i386/i386v4.mh (XDEPFILES): Delete.
12239 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
12240 * config/i386/i386sco4.mh (XDEPFILES): Delete.
12241 * config/i386/i386aix.mh (XDEPFILES): Delete.
12242 * config/i386/go32.mh (XDEPFILES): Delete.
12243 * config/i386/cygwin.mh (XDEPFILES): Delete.
12244 * config/i386/i386lynx.mh (XDEPFILES): Delete.
12245 * config/i386/i386mach.mh (XDEPFILES): Delete.
12246 * config/i386/i386v32.mh (XDEPFILES): Delete.
12247 * config/i386/linux.mh (XDEPFILES): Delete.
12248 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
12249 * config/i386/ncr3000.mh (XDEPFILES): Delete.
12250 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
12251 * config/i386/i386sco.mh (XDEPFILES): Delete.
12252 * config/i386/i386v.mh (XDEPFILES): Delete.
12253 * config/i386/nbsd.mh (XDEPFILES): Delete.
12254 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
12255 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
12256 * config/i386/symmetry.mh (XDEPFILES): Delete.
12257 * config/i386/obsd.mh (XDEPFILES): Delete.
12258 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
12259 * config/ia64/linux.mh (XDEPFILES): Delete.
12260 * config/ia64/aix.mh (XDEPFILES): Delete.
12261 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
12262 * config/m68k/dpx2.mh (XDEPFILES): Delete.
12263 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
12264 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
12265 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
12266 * config/m68k/linux.mh (XDEPFILES): Delete.
12267 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
12268 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
12269 * config/m68k/nbsd.mh (XDEPFILES): Delete.
12270 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
12271 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
12272 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
12273 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
12274 * config/m88k/delta88.mh (XDEPFILES): Delete.
12275 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
12276 * config/m88k/m88k.mh (XDEPFILES): Delete.
12277 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
12278 * config/mips/linux.mh (XDEPFILES): Delete.
12279 * config/mips/irix6.mh (XDEPFILES): Delete.
12280 * config/mips/irix5.mh (XDEPFILES): Delete.
12281 * config/mips/irix4.mh (XDEPFILES): Delete.
12282 * config/mips/irix3.mh (XDEPFILES): Delete.
12283 * config/mips/decstation.mh (XDEPFILES): Delete.
12284 * config/mips/mipsm3.mh (XDEPFILES): Delete.
12285 (NATDEPFILES): Move core-aout.o to here.
12286 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
12287 * config/pa/hpux1020.mh (XDEPFILES): Delete.
12288 * config/pa/hppabsd.mh (XDEPFILES): Delete.
12289 * config/pa/hppahpux.mh (XDEPFILES): Delete.
12290 * config/pa/hpux11w.mh (XDEPFILES): Delete.
12291 * config/pa/hppaosf.mh (XDEPFILES): Delete.
12292 * config/pa/hpux11.mh (XDEPFILES): Delete.
12293 * config/powerpc/aix.mh (XDEPFILES): Delete.
12294 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
12295 * config/powerpc/linux.mh (XDEPFILES): Delete.
12296 * config/romp/rtbsd.mh: Rename XDEPFILES.
12297 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
12298 * config/rs6000/aix4.mh (XDEPFILES): Delete.
12299 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
12300 * config/s390/s390.mh (XDEPFILES): Delete.
12301 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
12302 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
12303 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
12304 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
12305 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
12306 * config/sparc/nbsd.mh (XDEPFILES): Delete.
12307 * config/sparc/linux.mh (XDEPFILES): Delete.
12308 * config/vax/vaxult.mh (XDEPFILES): Delete.
12309 * config/vax/vaxult2.mh (XDEPFILES): Delete.
12310 * Makefile.in (DEPFILES): Remove XDEPFILES.
12311
12312 2002-01-17 Andrew Cagney <ac131313@redhat.com>
12313
12314 * utils.c (internal_verror): Fix comments, default is yes not no.
12315 Update queries to match. Default to quit and dump core.
12316
12317 2002-01-17 Andrew Cagney <ac131313@redhat.com>
12318
12319 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
12320 copyright.
12321 * defs.h, event-top.c, gdbcmd.h: Ditto.
12322 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
12323 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
12324 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
12325 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
12326 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
12327 * mi/mi-main.c:Ditto.
12328
12329 * stack.c, symfile.c: Update copyright.
12330
12331 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
12332
12333 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
12334 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
12335 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
12336 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
12337
12338 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
12339
12340 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
12341 * gdbserver/low-lynx.c (myattach): Likewise.
12342 * gdbserver/low-nbsd.c (myattach): Likewise.
12343 * gdbserver/low-sim.c (myattach): Likewise.
12344 * gdbserver/low-sparc.c (myattach): Likewise.
12345 * gdbserver/low-sun3.c (myattach): Likewise.
12346
12347 * gdbserver/low-linux.c (myattach): New function.
12348
12349 * gdbserver/server.c (attach_inferior): New function.
12350 (main): Handle "--attach".
12351
12352 2002-01-16 Andrew Cagney <ac131313@redhat.com>
12353
12354 * MAINTAINERS (language support): Daniel Jacobwitz is C++
12355 maintainer.
12356
12357 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
12358
12359 * c-typeprint.c (is_type_conversion_operator): Add additional
12360 check for non-conversion operators.
12361
12362 2002-01-15 Michael Snyder <msnyder@redhat.com>
12363
12364 * linux-proc.c: Add "info proc" command, a la procfs.c.
12365 (read_mapping): New function, abstract and re-use code.
12366 (linux_find_memory_regions): Use new func read_mapping.
12367 (linux_info_proc_cmd): New function, implement "info proc".
12368 (_initialize_linux_proc): Add new command "info proc".
12369
12370 2002-01-15 Michael Snyder <msnyder@redhat.com>
12371
12372 * symfile.c (generic_load): Use bfd_map_over_sections method
12373 instead of manipulating bfd structure members directly.
12374 (add_section_size_callback): New function, bfd sections callback
12375 used by generic_load.
12376 (load_sections_callback): New function, bfd sections callback
12377 used by generic_load.
12378
12379 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
12380
12381 [Based on work by Jim Blandy]
12382 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
12383 (builtin_type_vec128): Export.
12384 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
12385 types.
12386 (builtin_type_vec128): New builtin type for 128 bit vector
12387 registers.
12388 (build_gdbtypes): Initialize builtin_type_v16qi and
12389 builtin_type_v8hi. Create the vec128 register builtin type
12390 structure.
12391 (build_builtin_type_vec128): New function.
12392 (_initialize_gdbtypes): Register builtin_type_v16qi and
12393 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
12394 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
12395 AltiVec register to new builtin type.
12396
12397 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
12398
12399 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
12400 to make_cv_type.
12401
12402 2002-01-14 Andrew Cagney <ac131313@redhat.com>
12403
12404 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
12405 CLEAN_UP_REGISTER_VALUE.
12406 * regcache.c (supply_register): Update only call.
12407
12408 2002-01-14 Andrew Cagney <ac131313@redhat.com>
12409
12410 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
12411 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
12412 a29k-*-vxworks* targets as obsolete.
12413
12414 2002-01-14 Michael Snyder <msnyder@redhat.com>
12415
12416 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
12417 until we can resolve portability issues.
12418 * gregset.h: Remove references to fpxregs.
12419 * gcore.c (gcore_command): Initialize note_sec to NULL.
12420
12421 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12422
12423 * signals.c (target_signal_to_name): Rewrite. Only use
12424 signals[].name when in bounds and non-NULL.
12425
12426 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12427
12428 From Petr Ledvina <ledvinap@kae.zcu.cz>:
12429 * signals.c (target_signal_to_name): Verify that SIG is within the
12430 bounds of the signals array.
12431
12432 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12433
12434 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
12435
12436 2002-01-13 Keith Seitz <keiths@redhat.com>
12437
12438 * stack.c (print_frame_info_base): Print the frame's pc
12439 only if when print_frame_info_listing_hook is not defined.
12440
12441 2002-01-13 Keith Seitz <keiths@redhat.com>
12442
12443 * varobj.c (varobj_set_value): Make sure that there were no
12444 errors evaluating the object before attempting to set its
12445 value.
12446 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
12447 so this offset adjustment is no longer necessary.
12448 (create_child): Don't set the error flag if the child is
12449 a CPLUS_FAKE_CHILD.
12450 (value_of_child): If value_fetch_lazy fails, return NULL
12451 so that callers will be notified that an error occurred.
12452 (c_value_of_variable): Delay check of variable's validity
12453 until later. We actually want all structs and unions to have
12454 the value "{...}".
12455 Do not return "???" for variables which could not be evaluated.
12456 This error condition must be returned to the caller so that it
12457 can get the error condition from gdb.
12458 (cplus_name_of_child): Adjust index for vptr before figuring
12459 out the name of the child.
12460 (cplus_value_of_child): If a child's (real) parent is not valid,
12461 don't even bother trying to give a value for it. Just return
12462 an error. Change all instances in this function.
12463 (cplus_type_of_child): If our parent is one of the "fake"
12464 parents, we need to get at the type of the real parent, and
12465 derive the child's true type using this information.
12466
12467 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12468
12469 From 2002-01-09 John Marshall <johnm@falch.net>:
12470 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
12471 sources.redhat.com, and tweak some related URLs which had
12472 suffered from linkrot.
12473
12474 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12475
12476 From Jeff law:
12477 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
12478 structures passed in registers.
12479
12480 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
12481
12482 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
12483 white space which prevented compilation. Reported by DSK
12484 <dsk@student.unsw.edu.au>.
12485
12486 2002-01-11 Michael Snyder <msnyder@redhat.com>
12487
12488 * symfile.c (build_section_addr_info_from_section_tab):
12489 Use bfd access method instead of manipulating bfd directly.
12490 (syms_from_objfile): Ditto.
12491 (simple_overlay_update_1): Ditto.
12492 (simple_overlay_update): Ditto.
12493 (generic_load): Ditto.
12494 (overlay_unmapped_address): FIXME comment, bfd access methods.
12495 (sections_overlap): FIXME comment, bfd access methods.
12496 (pc_in_mapped_range): FIXME comment, bfd access methods.
12497 (pc_in_unmapped_range): FIXME comment, bfd access methods.
12498 (section_is_mapped): FIXME comment, bfd access methods.
12499 (section_is_overlay): FIXME comment, bfd access methods.
12500
12501 * symfile.c (generic_load): Whitespace and long line cleanups.
12502 Remove duplicate variable, change several local variables to
12503 more appropriate data types.
12504 (print_transfer_performance): Use %lu instead of %ld for ulongs.
12505
12506 2002-01-12 Andrew Cagney <ac131313@redhat.com>
12507
12508 From Peter Schauer:
12509 * language.c (longest_local_hex_string_custom): Use phex_nz to
12510 convert NUM to a hex string.
12511
12512 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
12513
12514 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
12515 the function.
12516 Update Copyright year.
12517
12518 2002-01-12 Andrew Cagney <ac131313@redhat.com>
12519
12520 * language.c (longest_raw_hex_string): Delete unused function.
12521
12522 2002-01-11 Petr Sorfa <petrs@caldera.com>
12523
12524 * MAINTAINERS (write-after-approval): Add myself.
12525 * dwarf2read.c (read_tag_string_type): Handling of
12526 DW_AT_byte_size.
12527 (read_tag_string_type): FORTRAN fix to prevent propagation of
12528 first string size.
12529 (set_cu_language): Handling of DW_LANG_Fortran95
12530
12531 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
12532
12533 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
12534 GETPID(inferior_ptid).
12535 (store_inferior_registers): Likewise.
12536
12537 2002-01-10 Jason Merrill <jason@redhat.com>
12538
12539 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
12540 Fix DW_OP_minus.
12541
12542 2002-01-10 Andrew Cagney <ac131313@redhat.com>
12543
12544 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
12545 and bfd/elf32-sh-nbsd.c.
12546
12547 2002-01-10 Michael Snyder <msnyder@redhat.com>
12548
12549 * NEWS: Mention --pid and corefile/proc-id behavior change.
12550
12551 * Makefile.in: Add rules for gcore.o and linux-proc.o.
12552 * gcore.c: Include cli/cli-decode.h instead of command.h.
12553
12554 * main.c (captured_main): Add new command line option "--pid".
12555 If the second command line argument (following the symbol-file)
12556 begins with a digit, try to attach to it before trying to open
12557 it as a corefile.
12558 (print_gdb_help): Document the "--pid" argument.
12559
12560 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
12561
12562 * completer.c (command_completer): New function.
12563
12564 * completer.h <command_completer>: Add prototype.
12565
12566 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
12567 completer for the "help" command.
12568
12569 2002-01-09 Jason Merrill <jason@redhat.com>
12570
12571 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
12572
12573 2002-01-09 Michael Snyder <msnyder@redhat.com>
12574
12575 * i386-linux-nat.c (fill_fpxregset): Make global.
12576 (store_fpxregset): Ditto.
12577
12578 * gregset.h (gdb_fpxregset_t): Define.
12579 (supply_fpxregset): Prototype.
12580 (fill_fpxregset): Prototype.
12581
12582 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
12583
12584 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
12585
12586 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
12587 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
12588 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
12589
12590 2002-01-09 Andrew Cagney <ac131313@redhat.com>
12591
12592 * MAINTAINERS: Update target maintainer rules so that any
12593 Maintainer can approve a tested patch for a maintenance-only
12594 target.
12595
12596 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
12597
12598 * MAINTAINERS (write-after-approval): Add myself.
12599
12600 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
12601 IN_SIGTRAMP.
12602
12603 2002-01-08 Michael Snyder <msnyder@redhat.com>
12604
12605 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
12606 real name of the executable, rather than the /proc name.
12607
12608 2002-01-03 Michael Snyder <msnyder@redhat.com>
12609
12610 Implement a "generate-core-file" command in gdb, save target state.
12611 * gcore.c: New file. Implement new command 'generate-core-file'.
12612 Save a corefile image of the current state of the inferior.
12613 * linux-proc.c: Add linux-specific code for saving corefiles.
12614 * target.h (struct target_ops): Add new target vectors for saving
12615 corefiles; to_find_memory_regions and to_make_corefile_notes.
12616 (target_find_memory_regions): New macro.
12617 (target_make_corefile_notes): New macro.
12618 * target.c (update_current_target): Inherit new target methods.
12619 (dummy_find_memory_regions): New place-holder method.
12620 (dummy_make_corefile_notes): New place-holder method.
12621 (init_dummy_target): Initialize new dummy target vectors.
12622 * exec.c (exec_set_find_memory_regions): New function.
12623 Allow the exec_ops vector for memory regions to be taken over.
12624 (exec_make_note_section): New function, target vector method.
12625 * defs.h (exec_set_find_memory_regions): Export prototype.
12626 * procfs.c (proc_find_memory_regions): New function, corefile method.
12627 (procfs_make_note_section): New function, corefile method.
12628 (init_procfs_ops): Set new target vector pointers.
12629 (find_memory_regions_callback): New function.
12630 (procfs_do_thread_registers): New function.
12631 (procfs_corefile_thread_callback): New function.
12632 * sol-thread.c (sol_find_memory_regions): New function.
12633 (sol_make_note_section): New function.
12634 (init_sol_thread_ops): Initialize new target vectors.
12635 * inftarg.c (inftarg_set_find_memory_regions): New function.
12636 Allow to_find_memory_regions vector to be taken over.
12637 (inftarg_set_make_corefile_notes): New function.
12638 Allow to_make_corefile_notes vector to be taken over.
12639 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
12640 interface layer if not target_has_execution (may be a corefile).
12641 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
12642 * config/sparc/sun4sol2.mh: Ditto.
12643 * config/alpha/alpha-linux.mh: Ditto.
12644 * config/arm/linux.mh: Ditto.
12645 * config/i386/x86-64linux.mh: Ditto.
12646 * config/ia64/linux.mh: Ditto.
12647 * config/m68k/linux.mh: Ditto.
12648 * config/mips/linux.mh: Ditto.
12649 * config/powerpc/linux.mh: Ditto.
12650 * config/sparc/linux.mh: Ditto.
12651
12652 2002-01-07 Michael Snyder <msnyder@redhat.com>
12653
12654 * arm-linux-nat.c: Remove references to regcache.c internal data
12655 (registers[] and register_valid[]).
12656
12657 2002-01-07 Michael Snyder <msnyder@redhat.com>
12658
12659 * linux-proc.c: New file. Implement child_pid_to_exec_file,
12660 so that attaching to a pid will automatically read the process's
12661 symbol file and shlibs.
12662 * Makefile.in: Add rule for linux-proc.o.
12663 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
12664 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
12665 * config/arm/linux.mh: Ditto.
12666 * config/i386/linux.mh: Ditto.
12667 * config/i386/x86-64linux.mh: Ditto.
12668 * config/ia64/linux.mh: Ditto.
12669 * config/m68k/linux.mh: Ditto.
12670 * config/mips/linux.mh: Ditto.
12671 * config/powerpc/linux.mh: Ditto.
12672 * config/sparc/linux.mh: Ditto.
12673
12674 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
12675
12676 * win32-nat.c: Add i386-tdep.h dependency.
12677
12678 2002-01-07 Michael Snyder <msnyder@redhat.com>
12679
12680 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
12681 instead of bfd_get_arch_size. Don't bail out just because
12682 there's no exec_bfd.
12683
12684 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
12685 * p-valprint.c (pascal_object_print_value): Ditto.
12686 * somread.c (som_symtab_read): Ditto.
12687 * symfile.c (simple_free_overlay_region_table): Ditto.
12688 * valops.c (value_assign): Ditto.
12689
12690 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
12691 use tilde_expand and strerror for opening save-tracepoints file.
12692
12693 * thread-db.c (thread_db_new_objfile): Indendation fix.
12694
12695 * infptrace.c (GDB_MAX_ALLOCA): New define.
12696 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
12697 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
12698 can be overridden with whatever value is appropriate to the host).
12699 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
12700 alloca to allocate potentially large buffer.
12701 * rs6000-nat.c (child_xfer_memory): Ditto.
12702 * symm-nat.c (child_xfer_memory): Ditto.
12703 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
12704
12705 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
12706
12707 From Nick Clifton <nickc@redhat.com>
12708 * d10v-tdep.c: Set STACK_START to 0x200bffe.
12709
12710 2002-01-07 Michael Snyder <msnyder@redhat.com>
12711
12712 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
12713 Don't use exec_bfd if it's NULL.
12714
12715 2002-01-06 Mark Kettenis <kettenis@gnu.org>
12716
12717 * valops.c (value_arg_coerce): Fix formatting.
12718
12719 2002-01-06 Andrew Cagney <ac131313@redhat.com>
12720
12721 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
12722 * gnu-nat.c: Ditto.
12723
12724 2002-01-06 Andrew Cagney <ac131313@redhat.com>
12725
12726 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
12727 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
12728 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
12729 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
12730 z8k-coff have not been multi-arched. Update z8k-coff build
12731 status.
12732
12733 2002-01-06 Andrew Cagney <ac131313@redhat.com>
12734
12735 * MAINTAINERS: Mark a29k target as obsolete.
12736 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
12737 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
12738 comments.
12739 * NEWS: Note that a29k targets are obsolete.
12740 * a29k-tdep.c: Mark as obsolete.
12741 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
12742 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
12743 a29k-*-vxworks* targets as obsolete.
12744 * remote-adapt.c: Obsolete.
12745 * remote-eb.c: Obsolete.
12746 * remote-mm.c: Obsolete.
12747 * remote-udi.c: Obsolete.
12748 * config/a29k/a29k-udi.mt: Obsolete.
12749 * config/a29k/a29k.mt: Obsolete.
12750 * config/a29k/tm-a29k.h: Obsolete.
12751 * config/a29k/tm-vx29k.h: Obsolete.
12752 * config/a29k/vx29k.mt: Obsolete.
12753
12754 2002-01-05 Andrew Cagney <ac131313@redhat.com>
12755
12756 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
12757 with BFD_ENDIAN_BIG.
12758
12759 2002-01-05 Andrew Cagney <ac131313@redhat.com>
12760
12761 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
12762 * configure, config.in: Re-generate.
12763 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
12764 * defs.h: Do not include <endian.h>.
12765
12766 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
12767
12768 * acconfig.h (HAVE_PT_GETXMMREGS): New.
12769 * config.in: Regenerate.
12770 * configure.in: Update copyright years.
12771 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
12772 * configure: Regenerate.
12773 * i386bsd-nat.c: Update copyright years.
12774 (fill_gregset): Use regcache_collect.
12775 (fetch_inferior_registers): Only fetch integer registers
12776 if requested to do so. Add support for XMM registers
12777 using PT_GETXMMREGS.
12778 (store_inferior_registers): Only store integer registers
12779 if requested to do so. Add support for XMM registers
12780 using PT_SETXMMREGS.
12781 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
12782 (store_inferior_registers): Remove.
12783 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
12784 (fetch_elfcore_registers): New function.
12785 (i386nbsd_elfcore_fns): New.
12786 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
12787 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
12788 i386bsd-nat.o.
12789 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
12790 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
12791 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
12792 * config/i386/tm-nbsd.h: Update copyright years.
12793 (HAVE_SSE_REGS): Define.
12794 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
12795 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
12796 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
12797 (SIGCONTEXT_PC_OFFSET): Remove.
12798 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
12799
12800 2002-01-05 Andrew Cagney <ac131313@redhat.com>
12801
12802 * configure.tgt: Remove powerpc-*-macos* target.
12803 * config/m68k/xm-mpw.h: Delete file.
12804 * config/xm-mpw.h: Delete file.
12805 * ser-mac.c: Delete file.
12806 * mpw-make.sed: Delete file.
12807 * mpw-config.in: Delete file.
12808 * mac-xdep.c: Delete file.
12809 * mac-gdb.r: Delete file.
12810 * mac-defs.h: Delete file.
12811 * mac-nat.c: Delete file.
12812 * config/powerpc/macos.mh: Delete file.
12813 * config/powerpc/macos.mt: Delete file.
12814 * config/powerpc/nm-macos.h: Delete file.
12815 * config/powerpc/tm-macos.h: Delete file.
12816 * source.c (openp, open_source_file): Remove obsolete code.
12817 * top.c (gdb_readline): Ditto.
12818 * utils.c (query): Ditto.
12819 * event-top.c (display_gdb_prompt): Ditto.
12820 * Makefile.in (ser-mac.o): Delete obsolete target.
12821 * NEWS: Update.
12822
12823 2002-01-04 Andrew Cagney <ac131313@redhat.com>
12824
12825 * defs.h (BIG_ENDIAN): Delete macro definition.
12826 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
12827 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
12828 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
12829 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
12830 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
12831 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
12832 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
12833 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
12834 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
12835 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
12836 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
12837 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
12838 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
12839 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
12840 * gdbarch.c: Re-generate.
12841
12842 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
12843
12844 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
12845 for core files.
12846
12847 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
12848
12849 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
12850
12851 2002-01-04 Andrew Cagney <ac131313@redhat.com>
12852
12853 * value.h (value_ptr): Delete typedef.
12854
12855 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
12856
12857 * i386nbsd-nat.c: Update copyright years.
12858 Include i386-tdep.h.
12859
12860 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
12861
12862 * stabsread.c: Update copyright years.
12863
12864 From Debashis Mahata <debashis.mahata@wipro.com>:
12865 (read_struct_fields): Deal with Sun C compiler erroneous stab
12866 output for structs and unions.
12867 Fix PR gdb/269.
12868
12869 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
12870
12871 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
12872 prototype.
12873
12874 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
12875
12876 * cp-abi.c: Fix whitespace.
12877 (baseclass_offset): New wrapper function.
12878 * cp-abi.h (baseclass_offset): Add prototype.
12879 (struct cp_abi_ops): Add baseclass_offset pointer.
12880
12881 * valops.c (vb_match): Move to...
12882 * gnu-v2-abi.c (vb_match): here.
12883 * valops.c (baseclass_offset): Move to...
12884 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
12885
12886 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
12887
12888 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
12889 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
12890 * hpacc-abi.c (init_hpacc_ops): Likewise.
12891
12892 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
12893
12894 * valops.c (find_overload_match): Accept obj as a
12895 reference parameter. Update it before returning.
12896 * value.h (find_overload_match): Update prototype.
12897 * eval.c (evaluate_subexp_standard): Pass object to
12898 find_overload_match by reference.
12899
12900 2002-01-03 Andrew Cagney <ac131313@redhat.com>
12901
12902 * valarith.c: Replace value_ptr with struct value pointer. Remove
12903 register attribute from value declarations.
12904 * valops.c: Ditto.
12905 * value.h: Ditto.
12906 * scm-lang.c (scm_lookup_name): Ditto.
12907
12908 2002-01-03 Michael Snyder <msnyder@redhat.com>
12909
12910 Abstract the functionality of iterating over mapped memory
12911 regions into a general purpose iterator function.
12912 * procfs.c (iterate_over_mappings): New function, general purpose
12913 iterator for memory sections.
12914 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
12915 (solib_mappings_callback): New function, callback for above.
12916 (info_proc_mappings): Reimpliment using iterate_over_mappings.
12917 (info_mappings_callback): New function, callback for above.
12918
12919 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
12920
12921 2002-01-01 Mark Kettenis <kettenis@gnu.org>
12922
12923 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
12924 * i386-tdep.c: Include "elf-bfd.h".
12925 (process_note_abi_tag_sections): New function.
12926 (i386_gdbarch_init): Add code to recognize various OS/ABI
12927 combinations.
12928
12929 * maint.c (_initialize_maint_cmds): Add missing \ in
12930 string-literal.
12931
12932 For older changes see ChangeLog-2001
12933 \f
12934 Local Variables:
12935 mode: change-log
12936 left-margin: 8
12937 fill-column: 74
12938 version-control: never
12939 End:
This page took 0.355677 seconds and 4 git commands to generate.