2002-11-08 Andrew Cagney <ac131313@redhat.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
9c1412c1
AC
12002-11-08 Andrew Cagney <ac131313@redhat.com>
2
3 * blockframe.c: Include "dummy-frame.h".
4 (struct dummy_frame, dummy_frame_stack)
5 (generic_find_dummy_frame, deprecated_generic_find_dummy_frame)
6 (generic_pc_in_call_dummy, deprecated_read_register_dummy)
7 (generic_push_dummy_frame, generic_save_dummy_frame_tos)
8 (generic_save_call_dummy_addr, generic_pop_current_frame)
9 (generic_pop_dummy_frame, generic_fix_call_dummy)
10 (generic_fix_call_dummy, generic_call_dummy_register_unwind): Move
11 dummy frame code from here...
12 * dummy-frame.c: ...to here. New file.
13 * dummy-frame.h: New file.
14 (generic_call_dummy_register_unwind): Declare.
15 (generic_find_dummy_frame): Declare.
16 * Makefile.in (SFILES): Add dummy-frame.c.
17 (dummy-frame.o): Specify dependencies.
18 (dummy_frame_h): Define.
19 (COMMON_OBS): Add dummy-frame.o.
20 (blockframe.o): Update dependencies.
21
208d8187
JB
222002-11-08 Jim Blandy <jimb@redhat.com>
23
24 * dwarf2read.c (read_func_scope): Restore local_symbols and
25 param_symbols after we finish the function context. (Based on a
26 patch from David Edelsohn.)
27
413dad4d
DC
282002-11-08 David Carlton <carlton@math.stanford.edu>
29
30 * linespec.c (symbol_found): New function.
31 (minsym_found): New function.
32 (decode_line_1): Separate out some code into separate functions.
33
5512c44a
JB
342002-11-08 Joel Brobecker <brobecker@gnat.com>
35
36 * i386-tdep.c (i386_frameless_signal_p): Make non static for
37 the benefit of the interix target.
38 * i386-tdep.h (i386_frameless_signal_p): Declare.
39
1b33ef47
AC
402002-11-08 Andrew Cagney <ac131313@redhat.com>
41
42 * i386-tdep.h (i386_linux_orig_eax_regnum_p): Delete stray
43 declaration that snuck in from change below.
44
23a34459
AC
452002-11-06 Andrew Cagney <cagney@redhat.com>
46
47 * i386-tdep.c (i386_mmx_regnum_p): Rename mmx_regnum_p. Update
48 all callers.
49 (i386_fp_regnum_p): New function. Use instead of FP_REGNUM_P.
50 (i386_fpc_regnum_p): New function. Use instead of FPC_REGNUM_P.
51 (i386_sse_regnum_p): New function. Use instead of SSE_REGNUM_P.
52 (i386_mxcsr_regnum_p): new function. Use instead of
53 MXCSR_REGNUM_P.
54 * i386-tdep.h (SSE_REGNUM_P): Delete macro.
55 (i386_sse_regnum_p): Declare.
56 (i386_mxcsr_regnum_p): Declare.
57 (FP_REGNUM_P, FPC_REGNUM_P): Delete macros.
58 (i386_fp_regnum_p, i386_fpc_regnum_p): Declare.
59 (IS_FP_REGNUM): Update definition.
60 (IS_FPU_CTRL_REGNUM): Update definition..
61 (IS_SSE_REGNUM): Update definition..
62 * i386v-nat.c (register_u_addr): Update.
63 * go32-nat.c (fetch_register): Update.
64 (store_register): Update.
65
d709c020
JB
662002-11-07 Joel Brobecker <brobecker@gnat.com>
67
68 Preparation work to convert the hppa targets to multiarch partial.
69
70 * hppa-tdep.c: Add new functions replacing macro bodies from
71 config/pa/tm-hppa.h. These function will be used to initialize
72 the gdbarch structure. Import some comments from tm-hppa.h,
73 and place them where appropriate, to avoid loosing them when
74 we cleanup this file.
75 (hppa_reg_struct_has_addr): New function.
76 (hppa_inner_than): New function.
77 (hppa_stack_align): New function.
78 (hppa_pc_requires_run_before_use): New function.
79 (hppa_instruction_nullified): New function.
80 (hppa_register_byte): New function.
81 (hppa_register_virtual_type): New function.
82 (hppa_store_struct_return): New function.
83 (hppa_cannot_store_register): New function.
84 (hppa_frame_args_address): New function.
85 (hppa_frame_locals_address): New function.
86 (hppa_smash_text_address): New function.
87 (hppa_coerce_float_to_double): New function. Requires the inclusion
88 of "language.h".
89
90 * Makefile.in (hppa-tdep.o): Add dependency on language.h.
91
92 * tm-hppa.h (REG_STRUCT_HAS_ADDR): Change the definition of this
93 gdbarch-eligible macro to a call to the new associated function
94 created in hppa-tdep.c.
95 (INNER_THAN): Likewise.
96 (STACK_ALIGN): Likewise.
97 (PC_REQUIRES_RUN_BEFORE_USE): Likewise.
98 (INSTRUCTION_NULLIFIED): Likewise.
99 (REGISTER_BYTE): Likewise.
100 (REGISTER_VIRTUAL_TYPE): Likewise.
101 (STORE_STRUCT_RETURN): Likewise.
102 (CANNOT_STORE_REGISTER): Likewise.
103 (FRAME_ARGS_ADDRESS): Likewise.
104 (FRAME_LOCALS_ADDRESS): Likewise.
105 (SMASH_TEXT_ADDRESS): Likewise.
106 (COERCE_FLOAT_TO_DOUBLE): Likewise.
107 (ABOUT_TO_RETURN): Delete, as no longer used.
108
83c31e7d
FN
1092002-11-07 Fernando Nasser <fnasser@redhat.com>
110
111 * printcmd.c (disassemble_command): Remove obsolete function.
112 (_initialize_printcmd): Do not create disassemble command here.
113 * cli/cli-cmds.c (disassemble_command): New function. Implements
114 disassemble command.
115 (init_cli_cmds): Create disassemble command here instead.
116
0ec30a36
AC
1172002-11-07 Andrew Cagney <ac131313@redhat.com>
118
119 * MAINTAINERS: Add Daniel Jacobowitz to global maintainers list.
120
e600bd34
AC
1212002-11-07 Andrew Cagney <ac131313@redhat.com>
122
123 * regcache.h (regcache_cooked_read_using_offset_hack)
124 (regcache_cooked_write_using_offset_hack): Delete declarations.
125 (register_changed): Delete declaration.
126 * regcache.c (regcache_cooked_read_using_offset_hack)
127 (regcache_cooked_write_using_offset_hack): Delete functions.
128 (cooked_xfer_using_offset_hack): Delete function.
129 (register_changed): Delete function.
130
568f8739
JB
1312002-11-07 Jim Blandy <jimb@redhat.com>
132
133 * macroscope.c: #include "complaints.h".
134 (sal_macro_scope): Cope with filenames that appear in the symtabs,
135 but not in the macro table.
136 * Makefile.in (macroscope.o): Record dependency.
137
b0718b7b
JB
1382002-11-07 Joel Brobecker <brobecker@gnat.com>
139
140 * PROBLEMS: Document gdb/816 (unable to read core file on alpha-osf).
141
2b9e5f3f
AC
1422002-11-07 Andrew Cagney <ac131313@redhat.com>
143
144 * regcache.c (deprecated_registers_fetched): Update.
145 * regcache.h (deprecated_registers_fetched): Rename
146 registers_fetched.
147 * remote-vxsparc.c (vx_read_register): Update.
148 * remote-vxmips.c (vx_read_register): Update.
149 * remote-vx68.c (vx_read_register): Update.
150 * irix5-nat.c (fetch_core_registers): Update.
151 * mipsm3-nat.c (fetch_inferior_registers): Update.
152 * sun3-nat.c (fetch_inferior_registers): Update.
153 * symm-nat.c (fetch_inferior_registers): Update.
154 * ns32knbsd-nat.c (fetch_inferior_registers): Update.
155 (fetch_core_registers): Update.
156 (fetch_kcore_registers): Update.
157 * mips-nat.c (fetch_inferior_registers): Update.
158 * corelow.c (get_core_registers): Update.
159 * a68v-nat.c (fetch_inferior_registers): Update.
160
e6e68f1f
JB
1612002-11-06 Joel Brobecker <brobecker@gnat.com>
162
163 Put in place the framework necessary for multiarching the hppa targets.
164 * hppa-tdep.c (hppa_gdbarch_init): New function.
165 (hppa_dump_tdep): New function.
166 (_initialize_hppa_tdep): Register the hppa gdbarch init function and
167 tdep structure dumper.
168 * config/pa/tm-hppa.h (GDB_MULTI_ARCH): New macro, defined to 0
169 until the multi-arching conversion has partially been completed.
170
492254e9
AC
1712002-11-06 Andrew Cagney <ac131313@redhat.com>
172
173 * valops.c (value_assign): Merge lval_register case into
174 lval_reg_frame_relative. Use frame_register and
175 regcache_cooked_write instead of get_saved_register and
176 write_register_bytes. After flushing the register cache, try to
177 re-select the selected frame.
178
8262ee23
AC
1792002-11-06 Andrew Cagney <ac131313@redhat.com>
180
181 * regcache.h (deprecated_register_valid): Rename register_valid.
182 * regcache.c: Update.
183 * ia64-aix-nat.c: Update.
184 * i386gnu-nat.c: Update.
185 * alpha-nat.c: Update.
186 * sparc-nat.c: Update.
187 * lynx-nat.c: Update.
188 * remote-mips.c: Update.
189
4facf7e8
JB
1902002-11-06 Joel Brobecker <brobecker@gnat.com>
191
192 * hppa-tdep.c (_initialize_hppa_tdep): Move function body
193 to end of file, to be more consistent with the pratice followed
194 by other targets.
195
f9418c0f
AC
1962002-11-06 Andrew Cagney <ac131313@redhat.com>
197
198 * infcmd.c: Include "reggroups.h" and <ctype.h>.
199 (print_float_info): Print registers in float_reggroup.
200 (print_vector_info): Print registers in vector_reggroup.
201 (default_print_registers_info): When all, print registers in
202 all_reggroup. Otherwize, print registers in general_reggroup.
203 (registers_info): Rewrite. Add support for register groups.
204 Eliminate a goto.
205
3fe235a7
EZ
2062002-11-06 Elena Zannoni <ezannoni@redhat.com>
207
208 * symtab.c (methods_info): Delete. It has been ifdeffed out for
209 ages.
210 (symtab_symbol_info): Remove eons old ifdeffed out code.
211 (_initialize_symtab): Remove prehistoric disabled 'info methods'
212 command.
213
ef944135
TR
2142002-11-06 Theodore A. Roth <troth@openavr.org>
215
216 * c-exp.y: Add missing semi-colons.
217 * f-exp.y: Add missing semi-colons.
218 * m2-exp.y: Add missing semi-colons.
219 * p-exp.y: Add missing semi-colons.
220 Add empty action to start rule to avoid a type clash error when
221 building with bison >= 1.50.
222
f8302a57
JB
2232002-11-06 Jim Blandy <jimb@redhat.com>
224
225 * macrotab.h (struct macro_source_file): Doc fix.
226
6e382aa3
JJ
2272002-11-05 Jeff Johnston <jjohnstn@redhat.com>
228
229 * varobj.c (child_exists, cplus_number_of_children): Change
230 STREQ macro references to strcmp.
231 (cplus_name_of_child): Change code to handle the fact that
232 fields are not necessarily contiguous with regards to their
233 access control. This is a fix for PR gdb/792.
234
a216a322
AC
2352002-11-05 Andrew Cagney <ac131313@redhat.com>
236
237 * gdbarch.sh (GET_SAVED_REGISTER): Change to a predicate function.
238 * gdbarch.h, gdbarch.c: Regnerate.
239 * frame.h (frame_register): Declare.
240 * frame.c (frame_register): New function.
241 (get_saved_register): Test GET_SAVED_REGISTER_P before calling
242 GET_SAVED_REGISTER, otherwize call
243 generic_unwind_get_saved_register.
244 (frame_register_read): Use frame_register instead of
245 get_saved_register.
246
7d5b6fdd
EZ
2472002-11-05 Elena Zannoni <ezannoni@redhat.com>
248
249 From Jim Ingham <jingham@apple.com>:
250 * event-top.c (gdb_disable_readline): New function.
251 (_initialize_event_loop): Move comment.
252
b7c64260
EZ
2532002-11-05 Elena Zannoni <ezannoni@redhat.com>
254
255 * event-loop.c (start_event_loop): Add comment.
256 Update copyright.
257
c2e1b8f2
AC
2582002-11-05 Andrew Cagney <ac131313@redhat.com>
259
260 * infcmd.c (default_print_registers_info): Do not call
261 PRINT_REGISTER_HOOK.
262
87647bb0
AC
2632002-11-05 Andrew Cagney <ac131313@redhat.com>
264
265 * sparc-tdep.c (sparc_print_register_hook): Make static.
266 (sparc_print_registers_info): New function.
267 (sparc_do_registers_info): New function.
268 (sparclet_print_registers_info): New function.
269 (sparclet_do_registers_info): New function.
270 (do_sparc_print_registers_info): New function.
271 (sparc_print_registers): New static function, clone of infcmd.c's
272 default_print_registers_info.
273 * config/sparc/tm-sparclet.h (PRINT_REGISTER_HOOK): Delete macro.
274 (sparclet_do_registers_info): Declare.
275 (DEPRECATED_DO_REGISTERS_INFO): Re-define.
276 * config/sparc/tm-sparc.h (DEPRECATED_DO_REGISTERS_INFO):
277 Re-define.
278 (sparc_do_registers_info): Declare.
279 (PRINT_REGISTER_HOOK): Delete macro.
280 (sparc_print_register_hook): Delete declaration.
281
8155455b
DC
2822002-11-05 David Carlton <carlton@math.stanford.edu>
283
284 * symtab.c (lookup_symbol_aux): Move chunks of code into separate
285 functions.
286 (lookup_symbol_aux_local): New function.
287 (lookup_symbol_aux_symtabs): New function.
288 (lookup_symbol_aux_psymtabs): New function.
289
29924310
DC
2902002-11-05 David Carlton <carlton@math.stanford.edu>
291
292 * symtab.c (lookup_symbol_aux): In minsym sections, don't use the
293 previous values of 'objfile' and 'block'.
294
cc303028
PM
2952002-11-05 Pierre Muller <muller@ics.u-strasbg.fr>
296
297 * values.c (value_change_enclosing_type): Set
298 enclosing_type field correctly also for the case where
299 more memory needs to be allocated.
300
1d70089a
MK
3012002-11-03 Mark Kettenis <kettenis@gnu.org>
302
f16a25ae
MK
303 * i387-tdep.c (i387_print_float_info): Call fputs_filtered instead
304 of puts_filtered.
305
1d70089a
MK
306 * i387-tdep.c (i387_print_float_info): Replace calls to
307 register_read and deprecated_read_register_gen with calls to
308 frame_register_read, and make the necessary adjustments to the
309 surrounding code.
310
7e20f3fb
AC
3112002-11-02 Andrew Cagney <ac131313@redhat.com>
312
313 * gdbarch.sh (register_reggroup_p): Allow default value.
314 * gdbarch.h, gdbarch.c: Regenerate.
315
192dbe33
AC
3162002-11-02 Andrew Cagney <ac131313@redhat.com>
317
318 * regcache.h: Add coment indicating replacements for deprecated
319 functions.
320
b59ff9d5
AC
3212002-11-02 Andrew Cagney <cagney@redhat.com>
322
323 * reggroups.h, reggroups.c: New files.
324 * regcache.c: Include "reggroups.h".
325 (enum regcache_dump_what): Add `regcache_dump_groups'.
326 (regcache_dump): Contract size of the "Type" column. When
327 specified, dump the register's groups.
328 (maintenance_print_register_groups): New function.
329 (_initialize_regcache): Add command `maint print register-groups'.
330 * Makefile.in (COMMON_OBS): Add reggroups.o
331 (SFILES): Add reggroups.c.
332 (reggroups_h): Define.
333 (regcache.o, gdbarch.o): Update dependencies.
334 (reggroups.o): Specify dependencies.
335 * gdbarch.sh (register_reggroup_p): Add pure multi-arch method.
336 Add opaque declaration for `struct reggroup' in generated .h file.
337 Include "reggroups.h" in generated .c file.
338 gdbarch.h, gdbarch.c: Re-generate.
339
4caf0990
AC
3402002-11-02 Andrew Cagney <cagney@redhat.com>
341
342 * regcache.h (deprecated_read_register_gen): Rename
343 read_register_gen.
344 (deprecated_write_register_gen): Rename write_register_gen.
345 * i387-tdep.c: Update.
346 * x86-64-linux-nat.c: Update
347 * wince.c: Update.
348 * thread-db.c: Update.
349 * win32-nat.c: Update.
350 * mips-tdep.c: Update.
351 * d10v-tdep.c: Update.
352 * cris-tdep.c: Update.
353 * remote-sim.c: Update.
354 * remote-rdi.c: Update.
355 * remote-rdp.c: Update.
356 * frame.c: Update.
357 * target.c: Update.
358 * blockframe.c: Update.
359 * x86-64-tdep.c: Update.
360 * xstormy16-tdep.c: Update.
361 * sh-tdep.c: Update.
362 * s390-tdep.c: Update.
363 * rs6000-tdep.c: Update.
364 * sparc-tdep.c: Update.
365 * i386-tdep.c: Update.
366 * dwarf2cfi.c: Update.
367 * regcache.c: Update.
368
7a7adcdf
JB
3692002-11-01 Joel Brobecker <brobecker@gnat.com>
370
371 New interix-specific files:
372 * config/i386/nm-interix.h: New file.
373 * config/i386/interix.mh: New file.
374 * config/i386/interix.mt: New file.
375 * i386-interix-nat.c: New file.
376 * i386-interix-tdep.c: New file.
377
bdcdd535
AC
3782002-11-01 Andrew Cagney <cagney@redhat.com>
379
380 * frame.h (deprecated_generic_get_saved_register): Rename
381 generic_get_saved_register.
382 * blockframe.c (deprecated_generic_get_saved_register): Update.
383 * xstormy16-tdep.c (xstormy16_get_saved_register): Update.
384 (xstormy16_frame_saved_register): Update.
385 * sh-tdep.c (sh_gdbarch_init): Update.
386 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
387 * ia64-tdep.c (ia64_get_saved_register): Update.
388 * cris-tdep.c (cris_gdbarch_init): Update.
389 * config/m32r/tm-m32r.h (GET_SAVED_REGISTER): Update.
390 * arm-tdep.c (arm_gdbarch_init): Update.
391
2a4b7c45
DJ
3922002-10-31 Daniel Jacobowitz <drow@mvista.com>
393
394 * lin-lwp.c (lin_lwp_resume): Remove resume_all test for !step.
395
ef17e74b
DJ
3962002-10-31 Daniel Jacobowitz <drow@mvista.com>
397
398 * i386-linux-tdep.c (i386_linux_pc_in_sigtramp): Check for
399 trampolines in sigaction.
400
4904ba5b
AC
4012002-10-31 Andrew Cagney <cagney@redhat.com>
402
403 * h8300-tdep.c: Include "gdb_assert.h".
404 (h8300_print_register): Add gdbarch, file and frame parameters.
405 Use frame_read_unsigned_register to read the register's value.
406 Use fprintf_filtered to display output.
407 (h8300_print_registers_info): Replace h8300_do_registers_info.
408 (h8300_gdbarch_init): Set print_registers_info.
409
f908a0eb
AC
4102002-10-31 Andrew Cagney <cagney@redhat.com>
411
412 * frame.c (frame_read_unsigned_register): New function.
413 (frame_read_signed_register): New function.
414 * frame.h (frame_read_unsigned_register): Declare.
415 (frame_read_signed_register): Declare.
416
c5646e11
AC
4172002-10-31 Andrew Cagney <cagney@redhat.com>
418
419 * h8500-tdep.c (h8500_print_registers_info): New static function,
420 clone of infcmd.c's default_print_registers_info.
421 (h8500_do_registers_info): New funtion.
422 (h8500_print_register_hook): Rename print_register_hook, make
423 static.
424
425 * config/h8500/tm-h8500.h: Update copyright.
426 (DEPRECATED_DO_REGISTERS_INFO): Define.
427 (h8500_do_registers_info: Declare.
428 (PRINT_REGISTER_HOOK): Delete macro.
429 (print_register_hook): Delete function.
430
0bdd672b
AC
4312002-10-31 Andrew Cagney <cagney@redhat.com>
432
433 * z8k-tdep.c (z8k_print_register_hook): Make static.
434 (z8k_print_registers_info): New static function, clone of
435 infcmd.c's default_print_registers_info.
436 (z8k_do_registers_info): New function. Wrap
437 z8k_print_registers_info.
438 * config/z8k/tm-z8k.h: Update copyright.
439 (PRINT_REGISTER_HOOK): Delete macro.
440 (z8k_print_register_hook): Delete declaration.
441 (DEPRECATED_DO_REGISTERS_INFO): Define.
442 (z8k_do_registers_info): Declare.
443
bf9c25dc
JB
4442002-10-30 Joel Brobecker <brobecker@gnat.com>
445
446 * hppa-tdep.c (find_function_in_inferior): Remove this extern,
447 as this is already provided by value.h, and was actually causing
448 a compilation error because of a conflict in parameter type
449 declaration due to a missing const keyword.
450 (low_text_segment_addres): Fix a compilation warning.
451
2c665b51
DJ
4522002-10-29 Daniel Jacobowitz <drow@mvista.com>
453
454 * mips-linux-nat.c (mips_linux_cannot_fetch_register): Don't fetch
455 registers without a name.
456 (mips_linux_cannot_store_register): Don't store registers without
457 a name.
458
e70ea697
DC
4592002-10-28 David Carlton <carlton@math.stanford.edu>
460
461 * symtab.c (find_addr_symbol): Delete. (It was already commented
462 out.)
463 * symtab.h: Delete prototype for find_addr_symbol.
464
903ad3a6
AC
4652002-10-26 Andrew Cagney <cagney@redhat.com>
466
467 * gdbarch.sh (DEPRECATED_DO_REGISTERS_INFO): Rename
468 DO_REGISTERS_INFO.
469 gdbarch.h, gdbarch.c: Re-generate.
470 * infcmd.c (default_print_registers_info): Update reference.
471 * mips-tdep.c (mips_gdbarch_init): Set deprecated_do_registers_info.
472 (mips_dump_tdep): Do not print DO_REGISTERS_INFO.
473 * sh-tdep.c (sh_gdbarch_init): Ditto.
474 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
475 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
476
ab91194c
MK
4772002-10-26 Mark Kettenis <kettenis@gnu.org>
478
e3033f15
MK
479 * x86-64-tdep.c (x86_64_init_abi): Set init_extra_frame_info to
480 cfi_init_extra_frame_info.
481 * x86-64-tdep.h (x86_64_init_extra_frame_info): Remove prototype.
482 * x86-64-linux-tdep.c (x86_64_init_extra_frame_info): Remove function.
483
b83b026c
MK
484 * x86-64-tdep.c (x86_64_init_abi): Add calls to override the i386
485 target where necessary. Add more comments and remove the ones
486 that don't provide any useful information.
487
267bf4bb
MK
488 * i386-tdep.c (i386_frame_saved_pc): Replace call to
489 deprecated_read_register_dummy with
490 frame_unwind_unsigned_register.
491
751f1375
MK
492 * i386-tdep.c (i386_extract_struct_value_address): Use
493 regcache_raw_read_unsigned instead of
494 regcache_cooked_read_unsigned since we know that the register
495 we're reading isn't a pseudo register. Rename variable 'val' into
496 the more descriptive 'addr'.
497
26abbdc4
MK
498 * x86-64-tdep.c: Fix some formatting problems, mostly in comments.
499 (x86_64_push_return_address): Add comment.
500 (x86_64_pop_frame): Make static.
501 (examine_argument): Clarify comment.
502 (x86_64_skip_prologue): Make prolog_expact variable static.
503
9f1549cc
MK
504 * dwarf2cfi.c: Fix some formatting problems.
505 (context_cpy, read_encoded_pointer): Clarify comments.
506
ab91194c
MK
507 * x86-64-tdep.c (x86_64_breakpoint_from_pc): Constify.
508 (x86_64_init_abi): Move set_gdbarch_* calls that overlap with the
509 i386 target back into x86_64_gdbarch_init. Add some comments and
510 remove meaningless ones.
511
72367fb4
AC
5122002-10-25 Andrew Cagney <cagney@redhat.com>
513
514 * complaints.h (struct deprecated_complaint): Rename `struct
515 complaint'.
516 * complaints.c (complain): Update.
517 * remote-vx68.c, remote-vxmips.c, remote-vxsparc.c: Delete
518 incorrect comment indicating that "symfile.h" was being included
519 for the `struct complaint' definition.
520 * remote-vx.c: Update.
521 * objc-lang.c: Update.
522 * xcoffread.c: Update.
523 * hpread.c: Update.
524 * mdebugread.c: Update.
525 * stabsread.c: Update.
526 * dwarf2read.c: Update.
527 * dwarfread.c: Update.
528 * elfread.c: Update.
529 * coffread.c: Update.
530 * stabsread.h: Update.
531 * dbxread.c: Update.
532 * buildsym.c: Update.
533 * gdbtypes.c: Update.
534 * macrotab.c: Update.
535
1f2baacc
MK
5362002-10-25 Mark Kettenis <kettenis@gnu.org>
537
0c1a73d6
MK
538 * x86-64-tdep.c (x86_64_gdbarch_init): Make a bit more similar to
539 the version in i386-tdep.c. Move set_gdbarch_* calls out into...
540 (x86_64_init_abi): ...new function.
541
6aee4d54 542 * Makefile.in (i386v-nat.o): Add $(i386_tdep_h).
1f2baacc
MK
543 * i386v-nat.c: Include "i386-tdep.h".
544
8f9cbe01
AC
5452002-10-25 Andrew Cagney <cagney@redhat.com>
546
5f11f355
AC
547 * gdbtypes.c (address_space_name_to_int): Update.
548 (address_space_int_to_name): Update.
549 * gdbarch.sh (address_class_type_flags_to_name): Change to a pure
550 multi-arch predicate.
551 (address_class_name_to_type_flags): Ditto.
552 * gdbarch.h, gdbarch.c: Re-generate.
553
8f9cbe01
AC
554 * MAINTAINERS: Check all warnings when h8300hms and alpha-elf.
555
e8d96a5d
MH
5562002-10-24 Martin M. Hunt <hunt@redhat.com>
557
558 * utils.c (string_to_core_addr): Revert patch from 11 Oct.
559
fe39c653
EZ
5602002-10-24 Elena Zannoni <ezannoni@redhat.com>
561
562 * symtab.h (INIT_SAL): Delete macro.
563 (init_sal): Export.
564 * symtab.c (init_sal): New function.
565
566 * ada-lang.c (ada_finish_decode_line_1): Change INIT_SAL macro
567 to init_sal function call.
568 (find_sal_from_funcs_and_line): Ditto.
569 (all_sals_for_line): Ditto.
570 * breakpoint.c (create_internal_breakpoint): Ditto.
571 (create_fork_vfork_event_catchpoint): Ditto.
572 (create_exec_event_catchpoint): Ditto.
573 (parse_breakpoint_sals): Ditto.
574 (watch_command_1): Ditto.
575 (handle_gnu_4_16_catch_command): Ditto.
576 (clear_command): Ditto.
577 * hppa-tdep.c (child_enable_exception_callback): Ditto.
578 * infcmd.c (run_stack_dummy): Ditto.
579 * infrun.c (process_event_stop_test): Ditto.
580 (check_sigtramp2): Ditto.
581 (step_over_function): Ditto.
582 * linespec.c (decode_line_2): Ditto.
583 (decode_line_1): Ditto.
584 * source.c (line_info): Ditto.
585 * symtab.c (find_pc_sect_line): Ditto.
586
baed091b
ML
5872002-10-24 Michal Ludvig <mludvig@suse.cz>
588
589 * dwarf2cfi.c (struct context)
590 (struct context_reg): Moved to dwarf2cfi.h
591 (context_alloc, frame_state_alloc, context_cpy):
592 Made extern instead of static, removed prototypes.
593 * dwarf2cfi.h (struct context)
594 (struct context_reg): New, moved from dwarf2cfi.c
595 (context_alloc, frame_state_alloc, context_cpy):
596 New prototypes.
597 * x86-64-linux-tdep.c (x86_64_linux_sigtramp_saved_pc):
598 Changed from static to extern.
599 (LINUX_SIGINFO_SIZE, LINUX_SIGCONTEXT_PC_OFFSET)
600 (LINUX_SIGCONTEXT_FP_OFFSET)
601 (LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Adjusted.
602 (x86_64_linux_in_sigtramp, x86_64_linux_frame_chain)
603 (x86_64_init_frame_pc, x86_64_init_extra_frame_info): New.
604 * x86-64-tdep.c (x86_64_gdbarch_init): Several
605 set_gdbarch_*() calls now use x86-64 specific functions
606 instead of DWARF2 CFI ones.
607 * x86-64-tdep.h (x86_64_linux_in_sigtramp)
608 (x86_64_linux_frame_chain, x86_64_init_frame_pc)
609 (x86_64_init_extra_frame_info): New prototypes.
610
c38da1af
DC
6112002-10-23 David Carlton <carlton@math.stanford.edu>
612
613 * linespec.c: #include "parser-defs.h".
614 Delete prototype for find_template_name_end.
615 * Makefile.in (linespec.o): Depend on $(parser_defs_h).
616
fb9b6b35
JJ
6172002-10-23 Jeff Johnston <jjohnstn@redhat.com>
618
619 * NEWS: add recent mi fixes.
620 * varobj.c (struct varobj): Add new "updated" flag.
621 (new_variable): Default "updated" flag to 0.
622 (varobj_set_value): Set "updated" flag to 1 if value
623 changes.
624 (varobj_update): Check varobj "updated" flag before
625 comparing old and refreshed values. Fix for
626 PR gdb/702.
627
8da065d5
DC
6282002-10-23 David Carlton <carlton@math.stanford.edu>
629
630 * parse.c (parse_exp_1): Use BLOCK_START.
631 * x86-64-tdep.c (x86_64_skip_prologue): Use BLOCK_END,
632 SYMBOL_BLOCK_VALUE.
633 * objc-lang.c (find_methods): Use BLOCK_START, BLOCK_END.
634
87f2f08c
DC
6352002-10-23 David Carlton <carlton@math.stanford.edu>
636
637 * symtab.c: Delete cplusplus_hint.
638 Delete prototype for find_template_name_end.
639
88cda038
EZ
6402002-10-23 Elena Zannoni <ezannoni@redhat.com>
641
642 * symtab.h: Update comment.
643
2625d86c
MS
6442002-10-23 Michael Snyder <msnyder@redhat.com>
645
646 * printcmd.c (address_info): Restore quotes in output.
647 * valops.c (value_of_local): Restore quotes in error message.
648
9cc0d196
EZ
6492002-10-23 Elena Zannoni <ezannoni@redhat.com>
650
651 * symtab.c (symbol_demangled_name): New function.
652 * symtab.h (SYMBOL_DEMANGLED_NAME): Simplify macro, by
653 turning most of it into a function.
654 (symbol_demangled_name): Export.
655
19de93d0
MS
6562002-10-23 Michael Snyder <msnyder@redhat.com>
657
658 * valops.c (value_of_local): Restore quotes in error message.
659
89aad1f9
EZ
6602002-10-23 Elena Zannoni <ezannoni@redhat.com>
661
662 * symtab.c (symbol_init_language_specific): New function.
663 * symtab.h (SYMBOL_INIT_LANGUAGE_SPECIFIC): Simplify macro, by
664 turning most of it into a function.
665 (symbol_init_language_specific): Export.
666
d9fa45fe
DC
6672002-10-23 David Carlton <carlton@math.stanford.edu>
668
669 * dwarf2read.c (dwarf_tag_name): Add DWARF 3 names.
670 (dwarf_attr_name): Ditto.
671 (dwarf_type_encoding_name): Ditto.
672 (scan_partial_symbols): Descend into DW_TAG_namespace entries.
673 (process_die): Handle DW_TAG_namespace,
674 DW_TAG_imported_declaration, DW_TAG_imported_module.
675 (read_namespace): New function.
676
1045b512
JB
6772002-10-22 Joel Brobecker <brobecker@gnat.com>
678
679 * configure.in: Define NEW_PROC_API on Interix too.
680 * configure: Regenerate.
681
6822002-10-21 Joel Brobecker <brobecker@gnat.com>
8ec41317
JB
683
684 * configure: Regenerate using the proper version of autoconf.
685
3987b9d4
EZ
6862002-10-21 Elena Zannoni <ezannoni@redhat.com>
687
688 * findvar.c (read_var_value): Temporarily disable TLS code, until
689 complete TLS support is added.
690
9d774e44
EZ
6912002-10-21 Jim Blandy <jimb@redhat.com>
692 Elena Zannoni <ezannoni@redhat.com>
693
694 * symtab.h (address_class): Re-add LOC_THREAD_LOCAL_STATIC
695 for thread local storage locations.
696 (struct symbol): Add objfile field.
697 (SYMBOL_OBJFILE): Define.
698 * dwarf2read.c (is_thread_local): New static variable.
699 (new_symbol): If variable is in thread local fill in address class
700 and objfile appropriately.
701 (decode_locdesc): Recognize and handle DW_OP_GNU_push_tls_address
702 stack operation.
703 * printcmd.c (address_info): Print the information for thread
704 local storage variable.
705 * findvar.c (read_var_value): In case of thread local variable,
706 defer to the target vector code to compute address.
707
bc4a16ae
EZ
7082002-10-21 Elena Zannoni <ezannoni@redhat.com>
709
710 * solib-svr4.c (svr4_fetch_objfile_link_map): New function.
711 * solib-svr4.h (svr4_fetch_objfile_link_map): Export.
712
407caf07
EZ
7132002-10-21 Elena Zannoni <ezannoni@redhat.com>
714
715 * symtab.h (address_class): Rename
716 LOC_THREAD_LOCAL_STATIC to LOC_HP_THREAD_LOCAL_STATIC.
717 * hpread.c (hpread_process_one_debug_symbol): Ditto.
718 * printcmd.c (address_info): Ditto.
719 * findvar.c (symbol_read_needs_frame, read_var_value): Ditto.
720
005328e3
MK
7212002-10-20 Mark Kettenis <kettenis@gnu.org>
722
afdb036a
MK
723 * i386bsd-nat.c (i386bsd_dr_set, i386bsd_dr_get_status): Use
724 DBREG_DRX macro to acces debug registers.
725
ca02e098
MK
726 * Makefile.in (i386obsd-tdep.o): New target.
727
03cc47f7
MK
728 * solib-sunos.c: Include "bcache.h" and "regcache.h".
729 * Makefile.in (solib-sunos.o): Add $(bcache_h) and $(regcache_h).
730
005328e3
MK
731 * configure.tgt (i[3456]86-*-openbsd*): Set gdb_target to obds.
732 * config/i386/obsd.mt: New file.
733 * i386bsd-nat.c (_initialize_i386bsd_nat): Introduce
734 i386obsd_sc_pc_offset and i386obsd_sc_sp_offset;
735 * i386obsd-nat.c (_initialize_i386obsd_nat): Set
736 i386obsd_sigtramp_start and i386obsd_sigtramp_end instead of
737 i386nbsd_sigtramp_start and i386nbsd_sigtramp_end.
738 * i386obsd-tdep.c: New file.
739
9c96f9f2
AF
7402002-10-19 Adam Fedor <fedor@gnu.org>
741
742 * objc-exp.y (name_not_typename): Fix invalid comment.
743
ce1ed485
MK
7442002-10-20 Mark Kettenis <kettenis@gnu.org>
745
746 * solib-sunos.c (allocate_rt_common_objfile): Use bcache_xmalloc
747 to allocate partial syms and macro byte caches.
748
1efc7aaa
DC
7492002-10-18 David Carlton <carlton@math.stanford.edu>
750
751 * symtab.h: Delete 'struct source' and 'struct sourcevector'.
752
7e1d63ec
AF
7532002-10-18 Adam Fedor <fedor@gnu.org>
754
755 * stabsread.c (find_name_end): New function.
756 (define_symbol): Use it.
757
6e8d29a9
DJ
7582002-10-18 Daniel Jacobowitz <drow@mvista.com>
759
760 * config/alpha/nm-fbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
761 * config/alpha/nm-linux.h (CANNOT_STEP_BREAKPOINT): Define to 1.
762 * config/alpha/nm-nbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
763 * config/alpha/nm-osf.h (CANNOT_STEP_BREAKPOINT): Define to 1.
764
1efc7aaa 7652002-10-17 David Carlton <carlton@math.stanford.edu>
63ca651f
DC
766
767 * symfile.h: Add opaque declaration for struct obstack.
768 Declare obsavestring to take a const char *.
769 * symfile.c (obsavestring): Make first argument a const char *.
770
1aeae86e
AF
7712002-10-16 Adam Fedor <fedor@gnu.org>
772
773 * breakpoint.c (parse_breakpoint_sals): Ignore ObjC method
774 names when matching breakpoints in current file.
775
8b2dbe47
KB
7762002-10-16 Kevin Buettner <kevinb@redhat.com>
777
778 * dwarf2read.c (dwarf2_invalid_pointer_size): New complaint.
779 (read_tag_pointer_type): Add address class support.
780 * gdbarch.sh (ADDRESS_CLASS_TYPE_FLAGS)
781 (ADDRESS_CLASS_TYPE_FLAGS_TO_NAME, ADDRESS_CLASS_NAME_TO_TYPE_FLAGS):
782 New methods.
783 * gdbarch.h, gdbarch.c: Regenerate.
784 * gdbtypes.c (address_space_name_to_int, address_space_int_to_name)
785 (make_type_with_address_space, recursive_type_dump): Add address
786 class support.
787 * gdbtypes.h (TYPE_FLAG_ADDRESS_CLASS_1, TYPE_FLAG_ADDRESS_CLASS_2)
788 (TYPE_FLAG_ADDRESS_CLASS_ALL, TYPE_ADDRESS_CLASS_1)
789 (TYPE_ADDRESS_CLASS_2, TYPE_ADDRESS_CLASS_ALL): New defines
790
74451869
KD
7912002-10-16 Klee Dienes <kdienes@apple.com>
792
793 * stabsread.c (read_tilde_fields): Use name[sizeof(vptr_name)-2]
794 to get the last character of a char[] buffer, not
795 name[sizeof(vptr_name)-1].
796
ff4cb3e8
AF
7972002-10-14 Adam Fedor <fedor@gnu.org>
798
799 * symtab.h: New objc_specific struct.
800 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Handle ObjC.
801 (SYMBOL_DEMANGLED_NAME): Likewise.
802
da2cf7e0
AF
8032002-10-14 Adam Fedor <fedor@gnu.org>
804
805 * symfile.c (init_filename_language_table): Add ObjC file extension.
806
4a351cef
AF
8072002-10-14 Adam Fedor <fedor@gnu.org>
808
809 * utils.c (puts_filtered_tabular): New function.
810 (fprintf_symbol_filtered): Get ObjC demangled name.
811 * defs.h (puts_filtered_tabular): Declared.
812
9750e763
KB
8132002-10-14 Kevin Buettner <kevinb@redhat.com>
814
815 * c-lang.h (c_type_print_varspec_prefix): Delete.
816 * c-typeprint.c (c_type_print_varspec_prefix): Make static. Add
817 ``need_post_space'' parameter. Adjust all callers.
818
eee771c1
DJ
8192002-10-14 Daniel Jacobowitz <drow@mvista.com>
820
821 * config/mips/nm-irix4.h (HAVE_NONSTEPPABLE_WATCHPOINT): Define to 1.
822 * config/mips/nm-irix5.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
823 * config/mips/tm-embed.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
824 * config/pa/nm-hppah.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
825
46c82446
AF
8262002-10-13 Adam Fedor <fedor@gnu.org>
827
828 * source.c (print_source_lines): Update comments.
829
d069f99d
AF
8302002-10-13 Adam Fedor <fedor@gnu.org>
831
832 * valops.c (value_of_local): New function.
833 (value_of_this): Use it.
834 * value.h (value_of_local): Declared.
835
53c551b7
AF
8362002-10-13 Adam Fedor <fedor@gnu.org>
837
838 * parse.c: (length_of_subexp, prefixify_subexp): Handle
839 OP_MSGCALL, OP_SELECTOR, OP_NSSTRING, and OP_SELF.
840
eb392fbf
AF
8412002-10-12 Adam Fedor <fedor@gnu.org>
842
843 * language.c (binop_result_type): Add language_objc to case.
844 (integral_type): Likewise.
845 (character_type): Likewise.
846 (string_type): Likewise.
847 (boolean_type): Likewise.
848 (structured_type): Likewise.
849 (binop_type_check): Likewise.
850
e2b23ee9
AF
8512002-10-11 Adam Fedor <fedor@gnu.org>
852
853 * printcmd.c (address_info): Print 'self' for ObjC.
854
b01ab485
AF
8552002-10-11 Adam Fedor <fedor@gnu.org>
856
857 * expression.h: New ops OP_NSSTRING, OP_SELECTOR, OP_MSGCALL, and
858 OP_SELF.
859
806e6073
AF
8602002-10-11 Adam Fedor <fedor@gnu.org>
861
862 * language.h (CAST_IS_CONVERSION): Add language_objc.
863
50f85cdf
AF
8642002-10-11 Adam Fedor <fedor@gnu.org>
865
866 * defs.h (enum language): Add language_objc.
867
0d540cdf
KD
8682002-10-11 Klee Dienes <kdienes@apple.com>
869
69266111 870 * corefile.c (read_memory_typed_address): New function.
0d540cdf
KD
871 * gdbcore.h (read_memory_typed_address): Add prototype.
872 * blockframe.c (sigtramp_saved_pc): Use read_memory_typed_address
873 to read a value destined for a CORE_ADDR, not read_memory_integer.
874 * f-valprint.c (f77_get_dynamic_upperbound): Ditto.
875 (f77_get_dynamic_lowerbound): Ditto.
876
d5dc7960
MH
8772002-10-11 Martin M. Hunt <hunt@redhat.com>
878
879 * utils.c (string_to_core_addr): After turning string into
880 a number, convert to a CORE_ADDR using INTEGER_TO_ADDRESS
881 which will do necessary sign-extension, etc.
882
8343f86c
DJ
8832002-10-11 Daniel Jacobowitz <drow@mvista.com>
884
885 * c-exp.y (THIS): Delete token and grammar rule.
886 (yylex): Don't return THIS.
887 * cp-valprint.c (vtbl_ptr_name_old): Delete.
888 (cp_is_vtbl_ptr_type): Don't check vtbl_ptr_name_old.
889 * demangle.c (cplus_markers): Update comment. Put '$'
890 first. Remove CPLUS_MARKER.
891 (_initialize_demangler): Don't call set_cplus_marker_for_demangling.
892 * jv-exp.y (THIS): Delete token and grammar rule.
893 (yylex): Don't return THIS.
894 * mips-tdep.c (mips_dump_tdep): Don't dump CPLUS_MARKER.
895 * objc-exp.y (THIS): Delete token and grammar rule.
896 (yylex): Don't return THIS.
897 * p-exp.y (yylex): Remove reference to CPLUS_MARKER.
898 * stabsread.c (vptr_name, vb_name): Replace CPLUS_MARKER with '$'.
899 (read_member_functions): Likewise for opname.
900 (read_tilde_fields): Use is_cplus_marker.
901
902 * defs.h (CPLUS_MARKER): Don't define.
903 * config/tm-sysv4.h (CPLUS_MARKER): Likewise.
904 * config/i386/xm-i386sco.h (CPLUS_MARKER): Likewise.
905 * config/mips/tm-irix3.h (CPLUS_MARKER): Likewise.
906 * config/mips/tm-irix6.h (CPLUS_MARKER): Likewise.
907 * config/rs6000/tm-rs6000.h (CPLUS_MARKER): Likewise.
908
909 * config/i386/tm-i386v4.h: Delete file.
910 * config/djgpp/fnchange.lst: Delete tm-i386v4.h.
911 * config/i386/tm-i386sol2.h: Include "i386/tm-i386.h" instead.
912 * config/i386/tm-i386v42mp.h: Include "i386/tm-i386.h" instead.
913 * config/i386/tm-ptx.h: Include "i386/tm-i386.h" instead.
914 * config/i386/i386gnu.mt (TM_FILE): Use tm-i386.h.
915 * config/i386/i386sco5.mt (TM_FILE): Likewise.
916 * config/i386/i386v4.mt (TM_FILE): Likewise.
917 * config/i386/ncr3000.mt (TM_FILE): Likewise.
918
967c0d83
MM
9192002-10-10 Marko Mlinar <markom@opencores.org>
920
921 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C,
922 accidentially not commited 2002-10-09
923 * gdbarch.h, gdbarch.c: Re-generate.
924
f74fa174
MM
9252002-10-09 Marko Mlinar <markom@opencores.org>
926
927 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C.
928 * gdbarch.sh (HAVE_NONSTEPPABLE_WATCHPOINT): Add.
929 * gdbarch.h, gdbarch.c: Re-generate.
930
57349743
JB
9312002-10-08 Petr Sorfa <petrs@caldera.com>
932
933 Revised and re-submitted by John Wolfe <jlw@caldera.com>
934
935 Move the Dwarf 2 abbrev table to a per-compilation-unit structure,
936 so we can work on more than one compilation unit at a time. This
937 helps prepare GDB to handle inter-CU die references.
938 * dwarf2read.c (ABBREV_HASH_SIZE): moved definition forward in
939 the code to be defined before struct comp_unit_head.
940 (comp_unit_head): Added new members - offset, cu_head,
941 begin_die, next and dwarf2_abbrevs.
942 (dwarf2_abbrevs): Removed single static var; now member of
943 struct comp_unit_head.
944 dwarf2_build_psymtabs_hard): Complete new struct comp_unit_head
945 members.
946 (psymtab_to_symtab_1): Changed to work with the new
947 struct comp_unit_head.
948 (dwarf2_read_abbrevs): Now accepts a cu_header parameter and
949 constructs the dwarf2_abbrevs[] inside the cu_header.
950 (dwarf2_empty_abbrev_table): Now expects a ptr to a
951 dwarf2_abbrev table to clean up.
952 (dwarf2_lookup_abbrev): Now accepts a cu_header parameter and
953 handling of dwarf2_abbrevs inside the cu_header.
954 (read_partial_die): Now supports the call to the new
955 dwarf2_lookup_abbrev.
956 (read_full_die): Now supports the call to the new
957 dwarf2_lookup_abbrev.
958
4092aadb
CF
9592002-10-06 Christopher Faylor <cgf@redhat.com>
960
961 * Makefile.in (install-gdbtk): Add missing continuation backslash to
962 insure that shell variables, such as "transformed_name" are propagated
963 to later shell statements in rule.
964
af0b2512
MK
9652002-10-06 Mark Kettenis <kettenis@gnu.org>
966
967 * config/i386/nm-i386sco.h: Add protection against
968 multiple-inclusion. Include "i386/nm-i386v.h".
969 (REGISTER_U_ADDR): Remove define.
970 (i386_register_u_addr): Remove prototype.
971
d6020d45
MS
9722002-10-04 Michael Snyder <msnyder@redhat.com>
973
974 * m32r-stub.c (handle_exception): Make sure exception is "trap"
975 before treating it as a single-step event.
976
7248f48e
AF
9772002-10-03 Adam Fedor <fedor@gnu.org>
978
979 * objc-lang.c: ARI fixes. Change string.h to gdb_string.h.
980 (objc_demangle): Remove assignment in if statements, Replace
981 free with xfree.
982 (add_msglist): Likewise.
983 (end_msglist): Likewise.
984 (complare_selectors): Likewise.
985 (selectors_info): Likewise.
986 (compare_classes): Likewise.
987 (classes_info): Likewise.
988 (print_object_command): Likewise.
989 (find_objc_msgcall_submethod): Replace PTR with void *.
990 * objc-lang.h: Remove check for __STDC__.
991
52c6a6ac
JJ
9922002-10-03 Jeff Johnston <jjohnstn@redhat.com>
993
994 * ui-out.h (ui_out_field_fmt_int): New prototype.
995 * ui-out.c (ui_out_field_fmt_int): New function allowing specification
996 of field width and alignment.
997 * stack.c (print_frame_info_base): When printing frame level, use
998 ui_out_field_fmt_int with a width of 2 and left alignment. Fix for
999 PR gdb/192
1000
7e3cec17
JJ
10012002-10-03 Jeff Johnston <jjohnstn@redhat.com>
1002
1003 * MAINTAINERS: Add self to Write After Approval list.
1004
a58dd373
EZ
10052002-10-02 Elena Zannoni <ezannoni@redhat.com>
1006
1007 * infcmd.c (interrupt_target_command_wrapper): Delete.
1008 (interrupt_target_command): Make non static.
1009 (nofp_registers_info): Make static.
1010 * stack.c (return_command_wrapper): Delete.
1011 (return_command): Make non static.
1012
cee6ddeb
EZ
10132002-10-02 Elena Zannoni <ezannoni@redhat.com>
1014
1015 * event-top.c (gdb_setup_readline): New function. Code moved from
1016 _initialize_event_loop().
1017 (_initialize_event_loop): Call gdb_setup_readline().
1018
c4ed33b9
AC
10192002-10-02 Andrew Cagney <ac131313@redhat.com>
1020
1021 * infrun.c (resume): Convert #ifdef CANNOT_STEP_BREAKPOINT into C.
1022 * gdbarch.sh (CANNOT_STEP_BREAKPOINT): Add.
1023 * gdbarch.h, gdbarch.c: Re-generate.
1024
cef4f5dd
DJ
10252002-10-02 Daniel Jacobowitz <drow@mvista.com>
1026
1027 Fix PR gdb/778
1028 * gdbtypes.c (fill_in_vptr_fieldno): Call check_typedef
1029 before recursing.
1030 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Check return value
1031 of fill_in_vptr_fieldno.
1032
36dc181b 10332002-10-02 Elena Zannoni <ezannoni@redhat.com>
cee6ddeb 1034
36dc181b
EZ
1035 * inferior.h (registers_info, stepi_command, nexti_command,
1036 continue_command, interrupt_target_command): Export from infcmd.c.
1037 * frame.h (args_info, selected_frame_level_changed_hook,
1038 return_command): Export from stack.c.
1039 * v850ice.c (stepi_command, nexti_command, continue_command): use
1040 prototypes from inferior.h.
1041 * tracepoint.c (registers_info, args_info, locals_info): Use
1042 prototypes from frame.h and inferior.h.
1043 * Makefile.in (mi-main.o): Add dependency on frame.h.
1044
6f99cb26
AC
10452002-10-02 Andrew Cagney <ac131313@redhat.com>
1046
da3eff49
AC
1047 * rs6000-tdep.c (rs6000_store_struct_return): Store struct_return
1048 value in register 3 adjusted by ppc_gp0_regnum.
1049
6f99cb26
AC
1050 * rs6000-tdep.c (skip_prologue): Bias alloca_reg by ppc_gp0_regnum.
1051
da615bee
MM
10522002-10-02 Marko Mlinar <markom@opencores.org>
1053
1054 * MAINTAINERS: Add myself to the Write After Approval list.
1055
d154bee2
AO
10562002-10-01 Alexandre Oliva <aoliva@redhat.com>
1057
62a49b2c
AO
1058 * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
1059 of the section for the N64 ABI, fixed.
1060
d154bee2
AO
1061 * config/mips/tm-irix6.h: Include solib.h.
1062
ed348acc
EZ
10632002-10-01 Elena Zannoni <ezannoni@redhat.com>
1064
1065 * dwarf2read.c (dwarf_stack_op_name): Recognize more dwarf3 and
1066 GNU operators.
1067
da0f9dcd
AC
10682002-10-01 Andrew Cagney <ac131313@redhat.com>
1069
1070 * NEWS: Mention that MI syntax, selected by "mi" changed to "mi2"
1071 and that "mi0" syntax has been removed.
1072
bdf64bac
DC
10732002-09-30 David Carlton <carlton@math.stanford.edu>
1074
1075 * Makefile.in (ppc-sysv-tdep.o): Depend on gdb_string_h.
1076 * ppc-sysv-tdep.c: #include "gdb_string.h".
1077 * remote-sds.c (getmessage): Add semicolon after 'retry' label to
1078 pacify GCC.
1079
54c2a1e6
AC
10802002-10-01 Andrew Cagney <ac131313@redhat.com>
1081
1082 * rs6000-tdep.c (rs6000_gdbarch_init): For powerpc:7400, fix
1083 "vrsave"'s register number.
1084
cedea778
AC
10852002-09-30 Andrew Cagney <ac131313@redhat.com>
1086
1087 * mips-tdep.c (mips_frame_saved_pc): When a generic dummy frame,
1088 use frame_unwind_signed_register to obtain the PC.
1089 (mips_frame_chain): Handle a generic dummy frame.
1090 (mips_init_extra_frame_info): When a generic dummy frame, don't
1091 re-compute the frame base.
1092 (mips_pop_frame): Handle generic dummy frames.
1093 (mips_gdbarch_init): When generic dummy frames, set
1094 use_generic_dummy_frames, push_dummy_frame to
1095 generic_push_dummy_frame, pc_in_call_dummy to
1096 generic_pc_in_call_dummy, and save_dummy_frame_top_of_stack to
1097 generic_save_dummy_frame_tos.
1098
68315eb8
AC
10992002-09-30 Andrew Cagney <ac131313@redhat.com>
1100
1101 * blockframe.c (generic_find_dummy_frame): Rewrite. Only test
1102 against TOP when TOP was explictly set.
1103 (generic_push_dummy_frame): Set TOP to zero.
1104
3b8630c3
EZ
11052002-09-30 Elena Zannoni <ezannoni@redhat.com>
1106
1107 * event-loop.c (start_event_loop): Rename variable 'result' to
1108 'gdb_result', to avoid conflicts with upcoming intepreters changes.
1109
28ee05e9
KS
11102002-09-30 Keith Seitz <keiths@redhat.com>
1111
1112 * gdb-events.sh (selected_thread_changed): New event.
1113 * gdb-events.c: Regenerated.
1114 * gdb-events.h: Regenerated.
1115
6eecb1c8
HPN
11162002-09-30 Hans-Peter Nilsson <hp@bitrange.com>
1117
1118 * MAINTAINERS: Add self to Write After Approval list.
1119
92df71f0
FN
11202002-09-30 Fernando Nasser <fnasser@redhat.com>
1121
3b8630c3
EZ
1122 * disasm.c: New file.
1123 * disasm.h: New file.
92df71f0
FN
1124 * mi/mi-cmd-disas.c (gdb_dis_asm_read_memory): Moved to disasm.c.
1125 (compare_lines): Ditto.
1126 (dump_insns): Ditto.
3b8630c3
EZ
1127 (do_mixed_source_and_assembly): Moved to disasm.c. Added uiout
1128 argument.
92df71f0 1129 (do_assembly_only): Ditto.
3b8630c3
EZ
1130 (do_disassembly): Renamed to gdb_disassembly and moved to
1131 disasm.c. Sdded uiout argument.
1132 * Makefile.in: Add new files. Reorder SFILES list. Update
1133 dependencies. Include libgdb.a later in the insight executable.
92df71f0 1134
0c22854d
AC
11352002-09-29 Andrew Cagney <ac131313@redhat.com>
1136
1137 * config/djgpp/fnchange.lst: Rename bfd/elf64-alpha.c and
1138 bfd/elf64-alpha-fbsd.c.
1139
e67f2023
AC
11402002-09-29 Andrew Cagney <ac131313@redhat.com>
1141
1142 * config/djgpp/fnchange.lst: Rename i386gnu-nat.c and
1143 i386gnu-tdep.c.
1144
89396210
AC
11452002-09-29 Andrew Cagney <ac131313@redhat.com>
1146
1147 * gnu-nat.h (debug): Use __FILE__ and __LINE__ instead of
1148 __FUNCTION__.
1149 * gnu-nat.c (do_mach_notify_no_senders): Replace __FUNCTION__ with
1150 function name.
1151 (do_mach_notify_port_deleted, do_mach_notify_msg_accepted): Ditto.
1152 (do_mach_notify_port_destroyed, do_mach_notify_send_once): Ditto.
1153 (S_proc_setmsgport_reply, S_proc_getmsgport_reply): Ditto.
1154 (S_msg_sig_post_reply): Ditto.
1155
7079c36c
CV
11562002-09-28 Corinna Vinschen <vinschen@redhat.com>
1157
89396210
AC
1158 * sh-tdep.c (sh_use_struct_convention): Use definition according
1159 to ABI.
7079c36c
CV
1160 (sh_push_arguments): Store in register with correct endianess.
1161 (sh_default_store_return_value): Ditto.
1162 (sh_gdbarch_init): Set sizeof long double to 8.
1163
975ac915
MK
11642002-09-27 Mark Kettenis <kettenis@gnu.org>
1165
1166 * defs.h: Move inclusion of "ansidecl.h" before "gdb_locale.h".
1167 Fix some whitespace problems.
1168
9bbe19fb
DC
11692002-09-27 David Carlton <carlton@math.stanford.edu>
1170
1171 * Makefile.in (cris-tdep.o): Depend on gdb_string_h.
1172 (mcore-tdep.o): Ditto.
1173 (ns32k-tdep.o): Ditto.
1174 (ns32knbsd-tdep.o): Ditto.
1175 (sh3-rom.o): Ditto.
1176 (vax-tdep.o): Ditto.
1177 * cris-tdep.c: #include "gdb_string.h"
1178 * mcore-tdep.c: Ditto.
1179 * ns32k-tdep.c: Ditto.
1180 * ns32knbsd-tdep.c: Ditto.
1181 * sh3-rom.c: Ditto.
1182 * vax-tdep.c: Ditto.
1183
43b2fdc7
DC
11842002-09-27 David Carlton <carlton@math.stanford.edu>
1185
1186 * config/djgpp/fnchange.lst: Add entries for
1187 gdb/testsuite/gdb.c++/m-static files.
1188
e8cfbbd9
JW
11892002-09-27 Jim Wilson <wilson@redhat.com>
1190
1191 * MAINTAINERS: Add myself to the Write After Approval list.
1192
43b2fdc7 11932002-09-26 Martin M. Hunt <hunt@redhat.com>
4e0df2df
MH
1194
1195 * mips-tdep.c (find_proc_desc): Initialize startaddr.
1196
1197
9f3b7f07
AC
11982002-09-26 Andrew Cagney <ac131313@redhat.com>
1199
1200 * rs6000-tdep.c (rs6000_frame_chain): Don't chain past the dummy
1201 frame.
1202
11269d7e
AC
12032002-09-26 Andrew Cagney <ac131313@redhat.com>
1204
1205 * rs6000-tdep.c (rs6000_extract_struct_value_address): Return 0.
1206 (rs6000_struct_return_address): Delete variable.
1207 (rs6000_store_struct_return): Update.
1208 (rs6000_gdbarch_init): Set extract_struct_value_address instead of
1209 deprecated_extract_struct_value_address.
1210 (rs6000_frame_align): New function.
1211 (rs6000_gdbarch_init): Set frame_align.
1212
f15ab4a7
AC
12132002-09-26 Andrew Cagney <ac131313@redhat.com>
1214
1215 From Grace Sainsbury <graces@redhat.com>:
1216 * Makefile.in (gdbtk-main.o): New target.
1217 (gdb.o): New target.
1218 (main_h): Define.
1219 (main.o): Update dependencies.
1220 (gdb$(EXEEXT)): Add gdb.o.
1221 (SUBDIR_GDBTK_SRCS): Add gdbtk-main.c.
1222 (SUBDIR_GDBTK_ALL, SUBDIR_GDBTK_UNINSTALL): Set.
1223 (SUBDIR_GDBTK_CLEAN): Set.
1224 (install-gdbtk): Install the insight binary.
1225 (uninstall-gdbtk): New target.
1226 (all-gdbtk, clean-gdbtk): New rule.
1227 * top.c (use_windows): Default to zero.
1228 * main.c: Include "main.h".
1229 (main): Delete.
1230 (struct captured_main_args): Delete.
1231 (gdb_main): New function.
1232 * main.h: New file.
1233 * gdb.c: New File.
1234
e36180d7
AC
12352002-09-25 Andrew Cagney <cagney@redhat.com>
1236
1237 * frame.c: Include "gdb_string.h" and "builtin-regs.h".
1238 (frame_map_regnum_to_name): New function.
1239 (frame_map_name_to_regnum): New function.
1240 * frame.h (frame_map_name_to_regnum): Declare.
1241 (frame_map_regnum_to_name): Declare.
1242 * builtin-regs.c (builtin_reg_map_regnum_to_name): New function.
1243 * builtin-regs.h (builtin_reg_map_regnum_to_name): Declare.
1244 * parse.c: Do not include "builtin-regs.h".
1245 (target_map_name_to_register): Delete function.
1246 (write_dollar_variable): Use frame_map_name_to_regnum.
1247 * parser-defs.h (target_map_name_to_register): Delete declaration.
1248 * expprint.c: Include "frame.h".
1249 (print_subexp): Use frame_map_regnum_to_name.
1250 * eval.c (evaluate_subexp_standard): Use frame_map_regnum_to_name.
1251 * infcmd.c (registers_info): Use frame_map_name_to_regnum.
1252
8b69000d
AC
12532002-09-25 Andrew Cagney <ac131313@redhat.com>
1254
1255 * rs6000-tdep.c (rs6000_frame_saved_pc): If the link register
1256 wasn't saved, and the next innermost frame is a dummy, return the
1257 dummy frame's link register.
1258
046ca86a
JB
12592002-09-24 Jim Blandy <jimb@redhat.com>
1260
1261 Fix from Paul Breed:
1262 * main.c (captured_main): Add a `break' after the case for 'b'.
1263
94b66fa7
KS
12642002-09-24 Keith Seitz <keiths@redhat.com>
1265
1266 * varobj.c (c_type_of_child): Use get_target_type instead
1267 of TYPE_TARGET_TYPE.
1268
c214a6fd
FN
12692002-09-22 Fernando Nasser <fnasser@redhat.com>
1270
53cb0458
FN
1271 * source.c (get_current_or_default_source_symtab_and_line): Remove
1272 function.
1273 (set_default_source_symtab_and_line): New function. Attempts to
1274 determine a source file to list lines from if one is not currently
1275 defined.
1276 (get_current_source_symtab_and_line): Initialize sal.pc and
1277 sal.end fields.
1278 (set_current_source_symtab_and_line): Mark argument as const.
1279 * source.h: Update declarations and comments.
1280 * linespec.c (decode_line_1): Replace call to removed routine above.
1281 * stack.c (print_frame_info_base): Ditto.
1282 * cli/cli-cmds.c (edit_command): Ditto.
1283 (list_command): Ditto.
1284
12852002-09-22 Fernando Nasser <fnasser@redhat.com>
1286
d6020d45 1287 * source.c (get_current_or_default_source_symtab_and_line): Initialize
53cb0458 1288 sal.pc and sal.end fields.
c214a6fd
FN
1289 (get_current_or_default_source_symtab_and_line): Ditto.
1290 * breakpoint.c (parse_breakpoint_sals): Use correct accessor function
1291 so we do not cause a new source symtab to be searched for (reverting an
1292 unintentional change from the 2002-09-20 patch).
1293 * scm-lang.c (scm_unpac): Ditto.
1294
cc3b68a5
AC
12952002-09-21 Andrew Cagney <cagney@redhat.com>
1296
1297 * complaints.c (symfile_explanations): Remove new-line from
1298 ``isolated_message''.
1299 (vcomplaint): When ISOLATED_MESSAGE, force a line break.
1300 (clear_complaints): When a SUBSEQUENT_MESSAGE, force a line break.
1301
5835abe7
NC
13022002-09-20 Nick Clifton <nickc@redhat.com>
1303
1304 * NEWS: Announce that V850EA ISA is no longer supported.
1305 * v850-tdep.c: Remove reference to bfd_mach_v850ea.
1306
a15ef5f5
DC
13072002-09-20 David Carlton <carlton@math.stanford.edu>
1308
06ba1b39
DC
1309 * Makefile.in (c-lang.o): Correct dependencies.
1310 (utils.o): Gather dependencies.
1311 (charset.o): Move.
a15ef5f5
DC
1312 * c-lang.c: #include "gdb_string.h"
1313
87885426
FN
13142002-09-20 Fernando Nasser <fnasser@redhat.com>
1315
1316 From 2002-07-02 George Helffrich <george@gly.bris.ac.uk>
1317 * cli/cli-cmds.c (list_command): New function. Implements the new
1318 cli edit command.
1319 (_init_cli_cmds): Add new command definition.
1320 * gdb.1: Document edit command.
1321 * doc/gdb.texinfo: Document edit command.
1322
13232002-09-20 Fernando Nasser <fnasser@redhat.com>
0378c332
FN
1324
1325 * source.c: Make global variables current_source_symtab and
1326 current_source_line static.
1327 (list_command): Moved to cli/cli-cmds.c.
1328 (ambiguous_line_spec): Moved to cli/cli-cmds.c.
1329 (get_first_line_listed): New accessor function.
1330 (get_lines_to_list): New accessor function.
1331 (get_current_source_symtab_and_line): New function. Retrieves the
1332 position in the source code that we consider current.
1333 (get_current_or_default_source_symtab_and_line): New function.
1334 Like the above but attempts to determine a default position if one
1335 is not currently defined.
1336 (set_current_source_symtab_and_line): New function. Sets the source
1337 code position considered current and returns the previously set one.
1338 (clear_current_source_symtab_and_line): Reset stored information about
1339 a current source line.
1340 (_initialize_source): Remove registration for the "list" command and
1341 its alias.
1342 * source.h: Add declarations for the new functions above.
1343 * symtab.h: Remove declarations for the global variables mentioned
1344 above.
1345 * breakpoint.c (parse_breakpoint_sals): Use accessor functions to
1346 obtain current source line.
1347 * linespec.c (decode_line_1): Ditto.
1348 * macroscope.c (default_macro_scope): Ditto.
1349 * scm-lang.c (scm_unpac): Ditto.
1350 * stack.c (print_frame_info_base): Ditto.
1351 * symfile.c (clear_symtab_users): Ditto.
1352 * symtab.c (decode_line_spec): Ditto.
1353 * cli/cli-cmds.c (list_command): Moved here from source.c.
1354 (ambiguous_line_spec): Moved here from source.c.
1355 (_init_cli_cmds): Add definition for "list" and its alias.
1356 * Makefile.in: Update dependencies.
1357
ddd216ea
CV
13582002-09-20 Corinna Vinschen <vinschen@redhat.com>
1359
1360 * h8300-tdep.c (h8300_examine_prologue): Match saved regs location
1361 with what gcc thinks is correct.
1362
6d305052
CV
13632002-09-20 Corinna Vinschen <vinschen@redhat.com>
1364
1365 * h8300-tdep.c (h8300_examine_prologue): Fix loop for saved regs in
1366 multiple register push instruction.
1367
234b45d4
KB
13682002-09-19 Jim Blandy <jimb@redhat.com>
1369
1370 Add support for distinct host and target character sets.
1371 * charset.c, charset.h: New files.
1372 * c-exp.y: #include "charset.h".
1373 (yylex): Convert character and string literals to the target
1374 character set, before returning them as the semantic value of the
1375 token.
1376 * c-lang.c: #include "charset.h".
1377 (c_emit_char): Use charset-specific methods to recognize
1378 characters with backslash escape forms, to decide which characters
1379 to print literally and which to print using numeric escape
1380 sequences, and to convert target characters to host characters
1381 before printing.
1382 * utils.c: #include "charset.h".
1383 (no_control_char_error): New function.
1384 (parse_escape): Use charset-specific methods to recognize
1385 backslash escapes, parse `control character' notation, and convert
1386 characters from the host character set to the target character set.
1387 * configure.in: Set the default host character set.
1388 Check where to find iconv, and what its argument types might be.
1389 * acinclude.m4 (AM_ICONV): New macro, borrowed from GCC.
1390 * Makefile.in (SFILES): List charset.c.
1391 (COMMON_OBS): List charset.o.
1392 (charset.o): New rule.
1393 (charset_h): New header dependency variable.
1394 (c-lang.o, utils.o, c-exp.tab.o): Note dependency on $(charset_h).
1395 (LIBICONV): New variable, set by configure.
1396 (CLIBS): Include $(LIBICONV) here.
1397 * aclocal.m4, config.in, configure: Regenerated.
1398
525d6a61
JB
13992002-09-19 Joel Brobecker <brobecker@gnat.com>
1400
1401 * ada-exp.y: Add missing semicolons to end rules. Fixes a
1402 bison 1.35 warning.
1403
3ed93867
RE
14042002-09-19 Richard Earnshaw <rearnsha@arm.com>
1405
1406 * gdb_mbuild.sh: New file.
1407
437666f8
AC
14082002-09-19 Andrew Cagney <ac131313@redhat.com>
1409
1410 * objc-exp.y, objc-lang.h, objc-lang.c: Fix copyright notice.
1411
389e51db
AC
14122002-09-18 Andrew Cagney <ac131313@redhat.com>
1413
1414 * breakpoint.c, c-exp.y, defs.h, elfread.c, expression.h,
1415 jv-exp.y, language.c, language.h, p-exp.y, parse.c, parser-defs.h,
1416 printcmd.c, source.c, stabsread.c, symfile.c, symtab.h, utils.c,
1417 valops.c, value.h: Revert previous change.
1418
3b4efeaa
MS
14192002-09-18 Michael Snyder <msnyder@redhat.com>
1420
1421 Preliminary support for Objective-C:
1422 * defs.h (language_objc): New enum value.
1423 (puts_filtered_tabular): Declaration only, exported from utils.c.
1424 (skip_quoted): Delete, declared in completer.h.
1425 * c-exp.y: Include completer.h.
1426 * p-exp.y: Ditto.
1427 * jv-exp.y: Ditto.
1428 * expression.h (OP_MSGCALL, OP_SELECTOR, OP_SELF, OP_NSSTRING):
1429 New operator enum values.
1430 * language.h (CAST_IS_CONVERSION): Test for language_objc.
1431 * language.c (binop_result_type): Handle language_objc case.
1432 (integral_type, character_type, string_type, boolean_type,
1433 structured_type, binop_type_check): Ditto.
1434 * symtab.h (SYMBOL_OBJC_DEMANGLED_NAME): Define.
1435 (struct objc_specific): Add to general_symbol_info.
1436 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Add objc initialization.
1437 (SYMBOL_DEMANGLED_NAME): Handle objc case.
1438 * parser-defs.h (struct objc_class_str): New struct type.
1439 (start_msglist, end_msglist, add_msglist): Declaration only,
1440 exported from objc-lang.c.
1441 * value.h (value_of_local, value_nsstring,
1442 call_function_by_hand_expecting_type): Exported from valops.c.
1443 * valops.c (find_function_addr): Export.
1444 (call_function_by_hand_expecting_type): New function.
1445 (value_of_local): New function.
1446 * symfile.c (init_filename_language_table): Add ".m" extension
1447 for Objective-C.
1448 * utils.c (puts_filtered_tabular): New function.
1449 (fprintf_symbol_filtered): Add objc demangling support (disabled).
1450 (set/show demangle): Extend help-string to refer to ObjC.
1451 * elfread.c (elf_symtab_read): Skip Objective-C special symbols.
1452 * stabsread.c (symbol_reference_defined): Objective-C symbols
1453 may contain colons: make allowances when scanning stabs strings
1454 for colons.
1455 (objc_find_colon): New function.
1456 * printcmd.c (address_info): If language == objc then print
1457 "self" instead of "this".
1458 * parse.c (length_of_subexp): Handle new operators OP_MSGCALL,
1459 OP_NSSTRING, and OP_SELF.
1460 (prefixify_subexp): Ditto.
1461 * source.c (print_source_lines): Mention objc in comment.
1462 * breakpoint.c (parse_breakpoint_sals): Recognize Objective-C
1463 method names.
1464
b9caf505
AC
14652002-09-18 Andrew Cagney <ac131313@redhat.com>
1466
1467 * complaints.h: Update copyright.
1468 (struct complaints): Declare.
1469 (struct complaint): Make `message' constant.
1470 (internal_complaint): Declare.
1471 (complaint): Declare.
1472 (complaint_root): Delete declaration.
1473 (symfile_complaints): Delete declaration.
1474 (struct complaints): Add opaque declaration.
1475 (clear_complaints): Add a complaints parameter.
1476 * complaints.c: Update copyright.
1477 (enum complaint_series): Define.
1478 (complaint_root): Delete.
1479 (struct complaints): Define.
1480 (complaint_sentinel, symfile_complaint_book): New variables.
1481 (symfile_explanations, symfile_complaints): New variables.
1482 New variables.
1483 (get_complaints): New function.
1484 (vcomplaint): New function.
1485 (complaint): New function.
1486 (internal_complaint): New function.
1487 (complain): Call vcomplain with symfile_complaint.
1488 (clear_complaints): Rewrite.
1489 (_initialize_complaints): Use add_setshow_command.
1490 * Makefile.in (complaints.o): Update dependencies.
1491 * symfile.c (syms_from_objfile): Add symfile_complaints parameter
1492 to call to clear_complaints.
1493 (new_symfile_objfile, reread_symbols): Ditto.
1494 (oldsyms_complaint): Delete.
1495 (empty_symtab_complaint, unknown_option_complaint): Delete.
1496 (free_named_symtabs): Use complaint instead of complain.
1497
d2e6263c
MS
14982002-09-18 Michael Snyder <msnyder@redhat.com>
1499
5fb2031a
AC
1500 Contributed by Apple Computer, Inc. Merged with current sources
1501 by Adam Fedor <fedor@doc.com> [cagney].
1502
d2e6263c
MS
1503 * objc-lang.c: First clean-up round: comments, indentation.
1504 * objc-lang.h: Ditto.
1505 * objc-lang.y: Ditto.
1506
dec43320
AC
15072002-09-18 Andrew Cagney <ac131313@redhat.com>
1508
1509 * maint.c (maintenance_internal_error): Print the parameter as the
1510 error message.
1511 (maintenance_internal_warning): New function.
1512 (_initialize_maint_cmds): Add command `maint internal-warning'.
1513
1514 * defs.h (internal_warning, internal_vwarning): Declare.
1515 * utils.c (struct internal_problem): Define.
1516 (internal_vproblem): New function.
1517 (internal_warning): New function.
1518 (internal_vwarning): New function.
1519 (internal_warning_problem, internal_error_problem): New variables.
1520 (internal_verror): Just call internal_vproblem.
1521
b81654f1
MS
15222002-09-18 Michael Snyder <msnyder@redhat.com>
1523
1524 * objc-lang.c: New file, support for Objective-C.
1525 Preliminary check-in, not yet integrated into gdb.
1526 * objc-lang.h: New file.
1527 * objc-exp.y: New file.
1528
0542c381
AC
15292002-09-18 Andrew Cagney <ac131313@redhat.com>
1530
7bda5e4a
AC
1531 * infrun.c (signal_stop_update): Convert definition to ISO C.
1532 (signal_print_update): Ditto.
1533 (signal_pass_update): Ditto.
1534 * inflow.c (terminal_save_ours): Ditto.
1535
5247b418
AC
1536 * h8300-tdep.c (h8300_gdbarch_init): Use C instead of C++
1537 comments.
1538
fc60962c
AC
1539 * config/djgpp/fnchange.lst: Handle name clashes between
1540 bfd/coff-tic30.c, bfd/coff-tic4x.c, bfd/coff-tic54x.c and
1541 bfd/coff-tic80.c.
1542
0542c381
AC
1543 * i386-linux-tdep.h: Fix tipo.
1544
5b924b9b
AF
15452002-09-18 Adam Fedor <fedor@gnu.org>
1546
1547 * MAINTAINERS: Add myself to the Write After Approval list.
1548
5afc051b
JB
15492002-09-18 Jim Blandy <jimb@redhat.com>
1550
1551 * dbxread.c, mdebugread.c: Revert my change of 2001-10-23. Moving
1552 texthigh and textlow to reader-specific structs caused
1553 objfile_relocate to miss them. This is fixable, but the work that
1554 the change was supposed to prepare GDB for never got done anyway.
1555
eb944380
DC
15562002-09-18 David Carlton <carlton@math.stanford.edu>
1557
1558 * MAINTAINERS: Alphabetize Write After Approval list.
1559
948e66d9
DJ
15602002-09-18 Daniel Jacobowitz <drow@mvista.com>
1561
1562 Fix PR gdb/709
1563 * values.c (value_static_field): Call read_var_value.
1564
dc604539
AC
15652002-09-18 Andrew Cagney <ac131313@redhat.com>
1566
1567 * valops.c (hand_function_call): Align the initial stack pointer
1568 and STRUCT_ADDR using frame_align. When STRUCT_RETURN and
1569 FRAME_ALIGN_P, use STRUCT_ADDR to obtain the called function's
1570 return value.
1571 * mips-tdep.c (mips_frame_align): New function.
1572 (mips_gdbarch_init): Set frame_align.
1573 * gdbarch.sh (FRAME_ALIGN): New method.
1574 * gdbarch.h, gdbarch.c: Re-generate.
1575
cb7e422f
ML
15762002-09-18 Michal Ludvig <mludvig@suse.cz>
1577
1578 * x86-64-linux-nat.c (x86_64_regmap): Added CS and SS
1579 registers.
1580
a094c6fb
AC
15812002-09-17 Andrew Cagney <ac131313@redhat.com>
1582
1583 * NEWS: Mention that MIPS $fp behavior changed.
1584 * mipsnbsd-tdep.c (mipsnbsd_cannot_fetch_register): Delete
1585 reference to FP_REGNUM.
1586 (mipsnbsd_cannot_store_register): Ditto.
1587 * mips-linux-nat.c: Update copyright.
1588 (mips_linux_cannot_fetch_register): Delete reference to FP_REGNUM.
1589 (mips_linux_cannot_store_register): Ditto.
1590 * mips-linux-tdep.c (supply_gregset): Ditto. Update copyright.
1591 * config/mips/tm-mips.h: Update copyright.
1592 (FP_REGNUM): Delete macro.
1593 (MIPS_REGISTER_NAMES): Replace "fp" with "".
1594 * config/mips/tm-irix6.h (FP_REGNUM): Delete macro.
1595 * mips-tdep.c (mips_gdbarch_init): Set read_fp to mips_read_sp.
1596 (mips_r3041_reg_names, mips_r3051_reg_names)
1597 (mips_r3081_reg_names): Replace "fp" with "".
1598 Fix PR gdb/480.
1599
45cf40d1
TR
16002002-09-17 Theodore A. Roth <troth@verinet.com>
1601
1602 * gdb/avr-tdep.c(avr_scan_prologue): Fix bad call to
1603 generic_read_register_dummy() (PR gdb/703).
1604 (avr_push_return_address): #if 0 out unused vars.
1605 (avr_gdbarch_init): Enable use of avr_push_return_address().
1606
c7e701b5
MS
16072002-09-17 Michael Snyder <msnyder@redhat.com>
1608
d76ba2a5 1609 * m32r-stub.c (restore_and_return): Postpone restoring of PSW.
c7e701b5
MS
1610 RTE will take care of it.
1611
20bcf01c
AC
16122002-09-17 Andrew Cagney <ac131313@redhat.com>
1613
1614 * arch-utils.c (legacy_virtual_frame_pointer): If FP_REGNUM is
1615 invalid, return SP_REGNUM.
1616
009a9971 16172002-09-17 Michael Snyder <msnyder@redhat.com>
21f87145
MS
1618
1619 * mips-tdep.c (mips_pop_frame): Read saved values of floating
1620 point registers without sign extension.
1621
135c175f
AC
16222002-09-17 Andrew Cagney <cagney@redhat.com>
1623
1624 * blockframe.c (deprecated_read_register_dummy): Rename
1625 generic_read_register_dummy.
1626 * frame.c (frame_unwind_signed_register): New function.
1627 (frame_unwind_unsigned_register): New function.
1628 * frame.h (frame_unwind_signed_register): Declare.
1629 (frame_unwind_unsigned_register): Declare.
1630 (deprecated_read_register_dummy): Rename
1631 generic_read_register_dummy.
1632
1633 * h8300-tdep.c (h8300_frame_chain): Update.
1634 (h8300_frame_saved_pc): Update.
1635 * xstormy16-tdep.c (xstormy16_frame_saved_pc): Update.
1636 * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
1637 * s390-tdep.c (s390_frame_saved_pc_nofix): Update.
1638 (s390_frame_chain): Update.
1639 * v850-tdep.c (v850_find_callers_reg): Update.
1640 (v850_frame_saved_pc): Update.
1641 * m32r-tdep.c (m32r_init_extra_frame_info): Update.
1642 (m32r_find_callers_reg): Update.
1643 (m32r_frame_saved_pc): Update.
1644 * sh-tdep.c (sh_find_callers_reg): Update.
1645 (sh64_get_saved_pr): Update.
1646 (sh_init_extra_frame_info): Update.
1647 (sh_init_extra_frame_info): Update.
1648 (sh64_init_extra_frame_info): Update.
1649 (sh64_init_extra_frame_info): Update.
1650 * mcore-tdep.c (mcore_find_callers_reg): Update.
1651 (mcore_frame_saved_pc): Update.
1652 (mcore_init_extra_frame_info): Update.
1653 * i386-tdep.c (i386_frame_saved_pc): Update.
1654 * ia64-tdep.c (ia64_frame_saved_pc): Update.
1655 (ia64_init_extra_frame_info): Update.
1656 (ia64_init_extra_frame_info): Update.
1657 * d10v-tdep.c (d10v_frame_saved_pc): Update.
1658 * cris-tdep.c (cris_init_extra_frame_info): Update.
1659 * avr-tdep.c (avr_frame_chain): Update.
1660 (avr_init_extra_frame_info): Update.
1661 (avr_frame_saved_pc): Update.
1662 * arm-tdep.c (arm_find_callers_reg): Update.
1663 (arm_init_extra_frame_info): Update.
1664 (arm_frame_saved_pc): Update.
1665
a741e514
TT
16662002-09-17 Tom Tromey <tromey@redhat.com>
1667
1668 * c-lang.c (c_emit_char): Don't treat \0 specially unless quoter
1669 is "'".
1670
d1a8e808
CV
16712002-09-17 Corinna Vinschen <vinschen@redhat.com>
1672
1673 * MAINTAINERS: Remove "non multi-arched" text from h8300.
1674 * h8300-tdep.c (h8300_next_prologue_insn) Renamed from
1675 NEXT_PROLOGUE_INSN.
1676 (h8300_examine_prologue): Call h8300_next_prologue_insn instead of
1677 NEXT_PROLOGUE_INSN.
1678
d9025a18
JB
16792002-09-16 Joel Brobecker <brobecker@gnat.com>
1680
1681 * osfsolib.c: Remove file, replaced by solib-osf.c.
1682 * Makefile.in: Remove compilation rules for osfsolib.c.
1683
1b2ef1b6
DC
16842002-09-16 David Carlton <carlton@math.stanford.edu>
1685
1686 * cp-valprint.c (cp_print_class_method): Correct args to
1687 check_stub_method_group.
1688
928e48af
CV
16892002-09-16 Corinna Vinschen <vinschen@redhat.com>
1690
1691 * h8300-tdep.c: Multiarch. Drop `set machine' command in favor of
1692 `set architecture'. Unify naming convention of functions.
1693 (h8300_skip_prologue): Improve prologue analysis.
1694 (h8300_push_arguments): Rewritten to more closely match GCC's
1695 bizarre argument-passing behavior, along with the comment describing
1696 said behavior.
1697 * remote-hms.c (hms_regnames): Don't use NUM_REGS in definition.
1698 * config/h8300/tm-h8300.h: Multiarch. Just keep stuff needed by
1699 sim, remote-e7000.c, remote-hms.c and remote.c
1700
5e3397bb
MK
17012002-09-15 Mark Kettenis <kettenis@gnu.org>
1702
1703 * i386-tdep.c (gdb_print_insn_i386): Removed.
1704 (i386_print_insn): New function.
1705 (i386_gdbarch_init): Set print_insn to i386_print_insns.
1706 (_initialize_i386_tdep): Don't initialize tm_print_insn and
1707 tm_print_insn_info.
1708
f710f4fc
MK
17092002-09-14 Mark Kettenis <kettenis@gnu.org>
1710
1711 * gdbtypes.c (check_stub_method_group): Initialize found_stub to
1712 zero.
1713
db54fef4
CV
17142002-09-14 Corinna Vinschen <vinschen@redhat.com>
1715
1716 * arch-utils.c (legacy_pc_in_sigtramp): Move preprocessor expression
1717 for IN_SIGTRAMP to here. Use IN_SIGTRAMP only if it's defined.
1718 Guard usage of SIGTRAMP_START() by using SIGTRAMP_START_P.
1719
2becadee
CF
17202002-09-13 Christopher Faylor <cgf@redhat.com>
1721
1722 * win32-nat.c (child_create_inferior): Honor 'tty' command.
1723
de17c821
DJ
17242002-09-13 Daniel Jacobowitz <drow@mvista.com>
1725
1726 * gdbtypes.c (check_stub_method): Make static.
1727 (check_stub_method_group): New function.
1728 * gdbtypes.h: Update prototypes.
1729 * cp-support.c: New file.
1730 * cp-support.h: New file.
1731
1732 * stabsread.c: Include "cp-abi.h" and "cp-support.h".
1733 (update_method_name_from_physname): New function.
1734 (read_member_functions): Correct method names for operators
1735 and v3 constructors/destructors. Separate v2 constructors and
1736 destructors.
1737 * Makefile.in (stabsread.o): Update dependencies.
1738 (SFILES): Add cp-support.c.
1739 (COMMON_OBS): Add cp-support.o.
1740 (cp_support_h, cp-support.o): Add.
1741
1742 * cp-valprint.c (cp_print_class_method): Call
1743 check_stub_method_group instead of check_stub_method. Remove
1744 extraneous QUITs.
1745 * p-valprint.c (pascal_object_print_class_method): Likewise.
1746 * valops.c (search_struct_method): Likewise.
1747 (find_method_list, value_struct_elt_for_reference): Likewise.
1748
e76cff22
AC
17492002-09-13 Andrew Cagney <cagney@redhat.com>
1750
1751 * gdbarch.sh (SIGTRAMP_END): Change to a predicate function.
1752 * gdbarch.h, gdbarch.c: Regenerate.
1753
905abb3f
AC
17542002-09-13 Andrew Cagney <ac131313@redhat.com>
1755
1756 * frame.c (find_saved_register): Delete function.
1757 * frame.h (find_saved_register): Delete declaration.
1758 Fix PR gdb/631.
1759
64159455
AC
1760Fri Sep 13 14:59:55 2002 Andrew Cagney <cagney@redhat.com>
1761
1762 * mips-tdep.c (read_next_frame_reg): Re-hack using
1763 frame_register_unwind.
1764
795e1e11
AC
1765Fri Sep 13 07:42:09 2002 Andrew Cagney <cagney@redhat.com>
1766
1767 * mips-tdep.c (mips_get_saved_register): Re-hack using
1768 frame_register_unwind.
1769
5720643c
JB
17702002-09-12 Joel Brobecker <brobecker@gnat.com>
1771
1772 * gdbarch.sh (NAME_OF_MALLOC): New variable in the architecture
1773 vector. Will be useful for Interix.
1774 * gdbarch.h, gdbarch.c: Regenerate.
1775
1776 * valops.c (value_allocate_space_in_inferior): Replace hard-coded
1777 name of the malloc function by NAME_OF_MALLOC.
1778
3bada2a2
JB
17792002-09-12 Joel Brobecker <brobecker@gnat.com>
1780
1781 * value.h (find_function_in_inferior): Add const keyword to
1782 one of the parameters. Allows us to invoke this function with
1783 a const char *.
1784 * valops.c (find_function_in_inferior): Likewise.
1785
3db26b01
JB
17862002-09-12 Joel Brobecker <brobecker@gnat.com>
1787
1788 * exec.c (xfer_memory): Fix compilation warning with old versions
1789 of GCC.
1790 * tracepoint.c (trace_find_tracepoint_command): Likewise.
1791
17c5ed2c
DC
17922002-09-12 David Carlton <carlton@math.stanford.edu>
1793
1794 * symtab.h: Run through gdb_indent.h.
1795 Add 2002 to Copyright year list.
1796
ecd1107e
AM
17972002-09-12 Alan Modra <amodra@bigpond.net.au>
1798
1799 * x86-64-tdep.c (_initialize_x86_64_tdep): Don't use hard-coded
1800 mach constants.
1801 * MAINTAINERS: Add myself to write after approval list.
1802
e64f66d1
JB
18032002-09-11 J. Brobecker <brobecker@gnat.com>
1804
1805 * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX.
1806
f9395794
JB
18072002-09-11 J. Brobecker <brobecker@gnat.com>
1808
1809 * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for
1810 Interix.
1811
1a303dec
MS
18122002-06-05 Paul N. Hilfinger <hilfingr@otisco.mckusick.com>
1813
1814 * procfs.c (do_detach): Clear current signal, not just fault.
1815 Corrects problem with breakpoint trap signal leaking to detached
1816 process on Tru64.
1817
c0219d42
MS
18182002-09-10 Michael Snyder <msnyder@redhat.com>
1819
1820 * buildsym.c (finish_block): Protect against null pointer.
1821
9d84ac84
AC
18222002-09-10 Andrew Cagney <cagney@redhat.com>
1823
1824 * infcmd.c (default_print_registers_info): Send all output to
1825 ``file'' instead of ``gdb_stdout''.
1826
77d8f2b4
MS
18272002-09-10 Michael Snyder <msnyder@redhat.com>
1828
1829 * mips-tdep.c (mips_extract_struct_value_address): Make val a
1830 LONGEST, and use signed register read (addresses are sign-
1831 extended for mips).
1832
99656a61
SC
18332002-09-10 Stephane Carrez <stcarrez@nerim.fr>
1834
1835 * event-loop.c (gdb_do_one_event): Make public.
1836 * event-loop.h (gdb_do_one_event): Declare.
1837
da12f4d8
JL
18382002-09-10 Jeff Law <law@redhat.com>
1839
1840 * infttrace.c (child_resume): Simplify and rework to avoid
1841 TT_PROC_CONTINUE.
1842
d0aee0c4
FF
18432002-09-09 Fred Fish <fnf@intrinsity.com>
1844
1845 * printcmd.c (print_scalar_formatted): "len" is the number of
1846 target bytes, NOT the number of target bits.
1847
7cb3ec5e
EZ
18482002-09-09 Elena Zannoni <ezannoni@redhat.com>
1849
1850 From: Emmanuel Thome' <thome@lix.polytechnique.fr>
1851 * top.c (init_main): Set rl_terminal_name.
1852
4dc81987
AS
18532002-09-08 Aidan Skinner <aidan@velvet.net>
1854
1855 * ada-lang.c (ada_array_bound, ada_type_match,
1856 _initialize_ada_language): Fix K&R definitions.
1857 * ada-tasks.c (get_current_task): Fix K&R definitions.
1858 * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
1859
842330b4
CF
18602002-09-07 Christopher Faylor <cgf@redhat.com>
1861
1862 * MAINTAINERS: Remove CE from list of maintainership responsibilities.
1863 Add XP.
1864
43156d82
MK
18652002-09-06 Mark Kettenis <kettenis@gnu.org>
1866
66da5fd8
MK
1867 * i386-tdep.c (i386_register_virtual_type,
1868 i386_register_convertible, i386_register_convert_to_virtual,
1869 i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P
1870 instead of IS_FP_REGNUM and IS_SSE_REGNUM.
1871 (i386_gdbarch_init): Fix comment. Add comments on calls that set
1872 sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum.
1873 Don't set push_arguments twice.
1874
4b218c18
MK
1875 * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and
1876 sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end.
1877 * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and
1878 sigtramp_end to NULL.
1879 * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove
1880 defines.
1881 (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
1882
4cc314d5
MK
1883 * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spurious
1884 whitespace.
1885
43156d82
MK
1886 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.
1887 * gdbarch.h, gdbarch.c: Re-generate.
1888 * blockframe.c (find_pc_sect_partial_function): Convert to use
1889 SIGTRAMP_START_P predicate.
1890
6672060b
MS
18912002-09-05 Michael Snyder <msnyder@redhat.com>
1892
a90c3637
MS
1893 * arm-tdep.c (arm_init_extra_frame_info): Distinguish between
1894 generic_dummy_frame method and old method. Also distinguish
1895 between ARM_FP_REGNUM and THUMB_FP_REGNUM.
95f95911 1896 (arm_extract_return_value): Use new regcache method.
a90c3637 1897
6672060b
MS
1898 * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment
1899 adjustment that doesn't conform to the ABI.
1900 (mips_extract_struct_value_address): Retrieve V0_REGNUM from
1901 saved regcache, not from current regcache.
1902
299ffc64
AC
19032002-09-05 Andrew Cagney <ac131313@redhat.com>
1904
1905 * NEWS: Update for 5.3. Add new section ``Changes since 5.3''.
1906 * README: Update.
1907
a3a2ee65
JT
19082002-09-04 Jason Thorpe <thorpej@wasabisystems.com>
1909
1910 * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode
1911 if arm_apcs_32 is false.
1912
2bc7eea9
AC
19132002-09-04 Andrew Cagney <ac131313@redhat.com>
1914
1915 GDB 5.3 branch created.
1916
8a55a7c5
TR
19172002-09-03 Theodore A. Roth <troth@verinet.com>
1918
1919 * gdb/avr-tdep.c (avr_gdbarch_init): Use
1920 generic_unwind_get_saved_register.
1921
e26fb1d7
DC
19222002-09-03 David Carlton <carlton@math.stanford.edu>
1923
1924 * dwarf2read.c (dwarf2_add_member_fn): Add the 'type'
1925 argument (PR gdb/653). Update call to smash_to_method_type.
1926 (read_structure_scope): Update call to dwarf2_add_member_fn.
1927
30d52491
ML
19282002-09-03 Michal Ludvig <mludvig@suse.cz>
1929
1930 * x86-64-linux-tdep.c: Include gdb_string.h
1931 * x86-64-linux-nat.c: Ditto.
1932
06891d83
JT
19332002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1934
1935 * ada-exp.y (yyname, yyrule): Remap global variables that appear
1936 when YYDEBUG is set to 1.
1937 * c-exp.y: Likewise.
1938 * f-exp.y: Likewise.
1939 * jv-exp.y: Likewise.
1940 * m2-exp.y: Likewise.
1941 * p-exp.y: Likewise.
1942
7d400e77
JT
19432002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1944
1945 * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to
1946 dependency list.
1947 * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set
1948 solib_svr4_fetch_link_map_offsets to
1949 nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
1950 * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
1951 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
1952 * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o,
1953 solib-svr4.o, and solib-legacy.o.
1954 * config/i386/tm-nbsd.h: Include solib.h.
1955
704a27c4
JT
19562002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1957
1958 * configure.tgt (i[3456]86-*-netbsdelf*): Merge with...
1959 (i[3456]86-*-netbsd*): ...this. Set gdb_target to nbsd.
1960 (i[3456]86-*-openbsd*): Make this a separate entry. Add a
1961 comment noting that this needs its own target configuration.
1962 * config/i386/nbsd.mt: New file.
1963 * config/i386/nbsdaout.mt: Remove.
1964 * config/i386/nbsdelf.mt: Ditto.
1965 * config/i386/tm-nbsdaout.h: Ditto.
1966
d66198e1
JT
19672002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1968
1969 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function.
1970 (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset.
1971 (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or
1972 tdep->sigtramp_end.
1973 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove.
1974 * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END)
1975 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
1976
3cac699e
JT
19772002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1978
1979 * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),
1980 $(i386_tdep_h), and $(nbsd_tdep_h) to dependency list.
1981 * i386-tdep.h (i386bsd_init_abi): New prototype.
1982 * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from
1983 function declaration.
1984 (_initialize_i386bsd_tdep): Don't register OS ABI handlers
1985 for NetBSD-a.out or NetBSD-ELF.
1986 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end)
1987 (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset)
1988 (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to...
1989 * i386nbsd-tdep.c: ...here. Include arch-utils.h, i386-tdep.h,
1990 and nbsd-tdep.h.
1991 (i386nbsd_pc_in_sigtramp): New function.
1992 (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to
1993 i386nbsd_pc_in_sigtramp.
1994 (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi
1995 and i386nbsdelf_init_abi OS ABI handlers.
1996 * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o.
1997 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
1998
7010ca0a
MK
19992002-09-02 Mark Kettenis <kettenis@gnu.org>
2000
2001 * i386-linux-nat.c (dummy_sse_values): Only try to fill in the SSE
2002 registers if the target really has them.
2003
6dd93b72
JT
20042002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2005
2006 * Makefile.in (mipsnbsd-tdep.o): Use $(nbsd_tdep_h) rather
2007 than nbsd-tdep.h.
2008
2ca8ae21
JT
20092002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2010
2011 * Makefile.in (alphanbsd-tdep.o): Add $(frame_h) to dependency
2012 list.
2013 * alphanbsd-tdep.c (alphanbsd_sigcontext_addr)
2014 (alphanbsd_skip_sigtramp_frame): New functions.
2015 (alphanbsd_init_abi): Set tdep->skip_sigtramp_frame to
2016 alphanbsd_skip_sigtramp_frame. Set tdep->sigcontext_addr
2017 to alphanbsd_sigcontext_addr.
2018
3d9b49b0
JT
20192002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2020
2021 * Makefile.in (mipsnbsd-tdep.o): Add nbsd-tdep.h to dependency
2022 list.
2023 (nbsd-tdep.o): Add $(gdb_string_h) to dependency list.
2024 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): Use
2025 nbsd_pc_in_sigtramp.
2026 * mipsnbsd-tdep.c: Include nbsd-tdep.h.
2027 (mipsnbsd_pc_in_sigtramp): Use nbsd_pc_in_sigtramp.
2028 * nbsd-tdep.c: Include gdb_string.h.
2029 (nbsd_pc_in_sigtramp): New function.
2030 * nbsd-tdep.h (nbsd_pc_in_sigtramp): New prototype.
2031 * ppcnbsd-tdep.c (ppcnbsd_pc_in_sigtramp): New function.
2032 (ppcnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2033 ppcnbsd_pc_in_sigtramp.
2034 * shnbsd-tdep.c (shnbsd_pc_in_sigtramp): New function.
2035 (shnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2036 shnbsd_pc_in_sigtramp.
2037 * sparcnbsd-tdep.c (sparcnbsd_init_abi_elf): Set
2038 gdbarch_pc_in_sigtramp to nbsd_pc_in_sigtramp.
2039 * config/mips/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
2040
c860120c
PM
20412002-08-30 Pierre Muller <muller@ics.u-strasbg.fr>
2042
2043 * breakpoint.c (breakpoint_init_inferior): Reset the val field of
2044 watchpoints to NULL.
2045 (insert_breakpoints): set val field of watchpoints if NULL.
2046
2047
c7612d53
JB
20482002-08-29 Jim Blandy <jimb@redhat.com>
2049
2050 * symtab.c (lookup_symbol_aux): In the cases where we find a
2051 minimal symbol of an appropriate name and use its address to
2052 select a symtab to read and search, use `name' (as passed to us)
2053 as the demangled name when searching the symtab's global and
2054 static blocks, not the minsym's name.
2055
66609862
KS
20562002-08-29 Keith Seitz <keiths@redhat.com>
2057
2058 * stack.c (print_frame_info_base): Always set current_source_symtab
2059 and current_source_line.
2060
151fefe2
JB
20612002-08-29 Donn Terry <donnte@microsoft.com>
2062
2063 * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S).
2064
bfb3754e
KS
20652002-08-28 Keith Seitz <keiths@redhat.com>
2066
2067 * stack.c (select_frame): Add FIXME concerning selected-frame
2068 events.
2069 (select_frame_command): Send selected-frame-level-changed
2070 event notification, but only if the level actually changed.
2071 (up_silently_base): Add selected-frame-level-changed event
2072 notification.
2073 (down_silently_base): Likewise.
2074
e822a2a0
AC
20752002-08-28 Andrew Cagney <ac131313@redhat.com>
2076
2077 * Makefile.in: Update dependencies for all gdb/*.c files.
2078
309367d4
TT
20792002-08-27 Tom Tromey <tromey@redhat.com>
2080
2081 * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
2082 ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
2083 Update dependencies.
2084 * i387-tdep.c: Include gdb_string.h.
2085 * osabi.c: Likewise.
2086 * i386-linux-nat.c: Likewise.
2087 * lin-lwp.c: Likewise.
2088 * ax-gdb.c: Likewise.
2089 * signals/signals.c: Likewise.
2090 * jv-valprint.c: Likewise.
2091 * p-lang.c: Likewise.
2092 * c-valprint.c: Likewise.
2093 * cp-abi.c: Likewise.
2094
e1507482
EZ
20952002-08-27 Elena Zannoni <ezannoni@redhat.com>
2096
2097 * cli/cli-script.h (copy_command_lines): Export.
2098 * breakpoint.c: Include cli/cli-script.h.
2099 * Makefile.in (breakpoint.o): Update dependencies.
2100
c6510018
MS
21012002-08-26 Michael Snyder <msnyder@redhat.com>
2102
2103 * breakpoint.c (insert_breakpoints): Protect all references
2104 to 'process_warning'. Shorten long lines.
2105
c2b8ed2c
MS
21062002-08-26 Joel Brobecker <brobecker@gnat.com>
2107
2108 * cli/cli-script.c (copy_command_lines): New function.
2109 * defs.h (copy_command_lines): Export.
2110 * testsuite/gdb.base/commands.exp: New tests for commands
2111 attached to a temporary breakpoint, and for commands that
2112 delete the breakpoint they are attached to.
2113
21142002-08-26 Michael Snyder <msnyder@redhat.com>
2115
2116 * breakpoint.c (bpstat_stop_status): Instead of copying the
2117 pointer to the breakpoint commands struct, make a new copy
2118 of the struct and point to that.
2119 (bpstat_clear): Free the commands struct.
2120 (bpstat_clear_actions): Free the commands struct.
2121 (bpstat_do_actions): Free the command actions. Also execute
2122 the local cleanups, instead of deleting them.
2123 (delete_breakpoint): Leave the commands field of the bpstat
2124 chain alone -- it will be freed later.
2125
64b84175
KB
21262002-08-26 Kevin Buettner <kevinb@redhat.com>
2127
2128 * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
2129 deleted in 2002-08-20 commit. This function is still used by
2130 ppc-linux-nat.c.
2131
55970da6
KS
21322002-08-26 Keith Seitz <keiths@redhat.com>
2133
2134 * gdb-events.sh: Add selected-frame-level-changed event.
2135 * gdb-events.c: Regenerated.
2136 * gdb-events.h: Regenerated.
2137
a790ad35
SC
21382002-08-26 Stephane Carrez <stcarrez@nerim.fr>
2139
2140 Fix PR gdb/393:
2141 * inflow.c (terminal_save_ours): New function to save terminal
2142 settings.
2143 * inferior.h (terminal_save_ours): Declare.
2144 * target.c (debug_to_terminal_save_ours): New function.
2145 (cleanup_target): Defaults to_terminal_save_ours.
2146 (update_current_target): Inherit to_terminal_save_ours.
2147 (setup_target_debug): Set to_terminal_save_ours.
2148 * target.h (target_terminal_save_ours): New to save terminal settings.
2149 (target_ops): New member to_terminal_save_ours.
2150 * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
2151 * hpux-thread.c (init_hpux_thread_ops): Likewise.
2152 * inftarg.c (init_child_ops): Likewise.
2153 * m3-nat.c (init_m3_ops): Likewise.
2154 * procfs.c (init_procfs_ops): Likewise.
2155 * wince.c (init_child_ops): Likewise.
2156 * win32-nat.c (init_child_ops): Likewise.
2157 * sol-thread.c (init_sol_thread_ops): Likewise.
2158
c00dcbe9
MK
21592002-08-26 Mark Kettenis <kettenis@gnu.org>
2160
3d7f4f49
MK
2161 * i386-tdep.c (i386_store_return_value): Undeprecate. Convert to
2162 use regcache_* functions.
2163 (i386_gdbarch_init): Set store_return_value instead of
2164 deprecated_store_return_value.
2165
c00dcbe9
MK
2166 * regcache.c (regcache_raw_write_signed,
2167 regcache_raw_write_unsigned): New functions.
2168 * regcache.h (regcache_raw_write_signed,
2169 regcache_raw_write_unsigned): New prototypes.
2170
0e0d15ca
AC
21712002-08-25 Andrew Cagney <ac131313@redhat.com>
2172
2173 * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
2174 (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
2175 source file dependencies. Cleanup corresponding generator rules.
2176
d3b22ed5
AC
21772002-08-25 Andrew Cagney <ac131313@redhat.com>
2178
2179 * regcache.h (register_offset_hack): Declare.
2180 (regcache_cooked_read_using_offset_hack): Declare.
2181 (regcache_cooked_write_using_offset_hack): Declare.
2182
2183 * regcache.c (register_offset_hack): New function.
2184 (regcache_cooked_read_using_offset_hack): New function.
2185 (regcache_cooked_write_using_offset_hack): New function.
2186 (regcache_dump): Check that the registers, according to their
2187 offset, are packed hard against each other.
2188 (cooked_xfer_using_offset_hack): New function.
2189
bb425013
AC
21902002-08-25 Andrew Cagney <ac131313@redhat.com>
2191
2192 * regcache.c (struct regcache_descr): Add field register_type.
2193 (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
2194 in as a parameter
2195 (init_regcache_descr): Initialize register_type. Pass the descr
2196 to init_legacy_regcache_descr. Use register_type instead of
2197 REGISTER_VIRTUAL_TYPE.
2198 (register_type): New function.
2199 (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
2200 * regcache.h (register_type): Declare.
2201
d0403e00
AC
22022002-08-25 Andrew Cagney <ac131313@redhat.com>
2203
2204 * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
2205 instead of deprecated_store_return_value. Fix fallout from
2206 2002-08-23 Andrew Cagney <cagney@redhat.com>.
2207
0ed04cce
AC
22082002-08-25 Andrew Cagney <ac131313@redhat.com>
2209
2210 * regcache.c (max_register_size): New function.
2211 (init_legacy_regcache_descr): Ensure that max_register_size is
2212 large enough for REGISTER_VIRTUAL_SIZE.
2213 * regcache.h (max_register_size): Declare.
2214
46d79c04
AC
22152002-08-24 Andrew Cagney <ac131313@redhat.com>
2216
2217 * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
2218 store_return_value.
2219 (e500_extract_return_value): Change type of valbuf pointer to
2220 void.
2221
853c7bd0
MK
22222002-08-24 Mark Kettenis <kettenis@gnu.org>
2223
cd87e769
MK
2224 * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
2225 workaround.
2226
853c7bd0
MK
2227 * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
2228 PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
2229 long long) to prevent compiler warning on 64-bit systems.
2230
ebba8386
AC
22312002-08-23 Andrew Cagney <cagney@redhat.com>
2232
2233 * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
2234 (DEPRECATED_STORE_RETURN_VALUE): New method.
2235 (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
2236 * gdbarch.h, gdbarch.c: Re-generate.
2237
2238 * values.c (set_return_value): Pass current_regcache to
2239 STORE_RETURN_VALUE.
2240 * arch-utils.h (legacy_store_return_value): Declare.
2241 * arch-utils.c (legacy_store_return_value): New function.
2242 (legacy_extract_return_value): Update parameters.
2243
2244 * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
2245 STORE_RETURN_VALUE.
2246 * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2247 * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2248 * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2249 * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2250 * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2251 * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2252 * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2253 * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2254 * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2255 * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2256
2257 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2258 * i386-tdep.c (i386_extract_return_value): Update.
2259 * arch-utils.c (legacy_extract_return_value): Update.
2260 * frv-tdep.c (frv_gdbarch_init): Update.
2261 * cris-tdep.c (cris_gdbarch_init): Update.
2262 * d10v-tdep.c (d10v_gdbarch_init): Update.
2263 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2264 * m68k-tdep.c (m68k_gdbarch_init): Update.
2265 * mcore-tdep.c (mcore_gdbarch_init): Update.
2266 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2267 * s390-tdep.c (s390_gdbarch_init): Update.
2268 * sparc-tdep.c (sparc_gdbarch_init): Update.
2269 * sh-tdep.c (sh_gdbarch_init): Update.
2270 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
2271 * v850-tdep.c (v850_gdbarch_init): Update.
2272 * avr-tdep.c (avr_gdbarch_init): Update.
2273 * ia64-tdep.c (ia64_gdbarch_init): Update.
2274 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
2275 * vax-tdep.c (vax_gdbarch_init): Update.
2276 * alpha-tdep.c (alpha_gdbarch_init): Update.
2277 * arm-tdep.c (arm_gdbarch_init): Update.
2278 * mips-tdep.c (mips_gdbarch_init): Update.
2279 * i386-tdep.c (i386_gdbarch_init): Update.
2280
5bd8c6d0
AC
22812002-08-23 Andrew Cagney <ac131313@redhat.com>
2282
2283 * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
2284 bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
2285
e73e1724
MK
22862002-08-24 Mark Kettenis <kettenis@gnu.org>
2287
2288 * PROBLEMS: Refer to GDB 5.3 instead of 5.2. Mention FreeBSD
2289 problems.
2290
3e6564e1
JB
22912002-08-23 Joel Brobecker <brobecker@gnat.com>
2292
2293 * infrun.c (handle_inferior_event): Move a comment outside of a
2294 function call, in order to avoid indent reformatting this part
2295 of the code in an unreadable way.
2296
81d0cc19
GS
22972002-08-23 Grace Sainsbury <graces@redhat.com>
2298
2299 * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
2300 when breakpoints fail. Move general breakpoint error messages to
2301 insert_breakpoints.
2302 * breakpoint.c (insert_breakpoints): Change warnings when
2303 breakpoints are nto inserted to specify the type. Remove call to
2304 memory_error when hardware breakpoints can't be inserted. Remove
2305 multiple calls to warning so all messages are sent to the user at
2306 once.
2307 (delete_breakpoints): Make insert error messsages more explicit.
2308
17574093
DJ
23092002-08-23 Daniel Jacobowitz <drow@mvista.com>
2310
2311 * ChangeLog: Move gdbserver entries after GDB 5.2 to
2312 gdbserver/ChangeLog.
2313
8acc2935
MK
23142002-08-23 Mark Kettenis <kettenis@gnu.org>
2315
dfe01d39
MK
2316 * i386-tdep.c: Include "objfiles.h".
2317 (i386_svr4_init_abi): Set in_solib_call_trampoline and
2318 skip_trampoline_code.
2319 * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
2320 (CPLUS_MARKER): Define to '.'.
2321
8acc2935
MK
2322 * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
2323 member.
2324 (linux_corefile_thread_callback): Increase args->num_notes.
2325 (linux_make_note_section): Initialize thread_args.num_notes, and
2326 use it to determine whether notes for any threads were created.
2327
151fefe2 23282002-08-23 Donn Terry <donnte@microsoft.com>
640b227f
JB
2329
2330 * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
2331 corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
2332 and PCUNKILL.
2333 (write_with_trace): Conditionalize out the switch branch handling
2334 PCSHOLD if the corresponding macro is not defined. Likewise for
2335 PRSABORT and PRSTOP.
2336 This change will be needed by the Interix port.
2337
e1507482
EZ
23382002-08-22 Elena Zannoni <ezannoni@redhat.com>
2339
2340 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
2341 write_register wherever possible instead of manipulating the
2342 register bytes directly.
2343 Assign VALUE_CONTENTS to a variable and use that.
2344 The GPR numbers are now dependent on the architecture.
2345
96ff0de4
EZ
23462002-08-22 Elena Zannoni <ezannoni@redhat.com>
2347
2348 * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
2349 ev_offset fields.
2350 (skip_prologue): Add support for BookE/e500 instructions.
2351 (e500_extract_return_value): New function.
2352 (frame_get_saved_regs): Add support for saving ev registers and
2353 pseudo gpr's.
2354 (e500_store_return_value): New function.
2355 (rs6000_gdbarch_init): Move up default intializations of
2356 deprecated_extract_return_value and store_return_value. Overwrite
2357 init of store_return_value with e500 specific version.
2358 Set extract_return_value for e500.
2359
fbefca5b
EZ
23602002-08-22 Elena Zannoni <ezannoni@redhat.com>
2361
2362 * blockframe.c (generic_call_dummy_register_unwind): Use
2363 regcache_cooked_read to catch cases in which the variable is
2364 stored in a pseudo register.
2365
4d210288
AC
23662002-08-22 Andrew Cagney <cagney@redhat.com>
2367
2368 * NEWS: Mention that the i960 has been made obsolete.
2369 * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
2370 i960-tdep.c
2371 (remote-nrom.o): Obsolete target.
2372 (remote-nindy.o, i960-tdep.o): Ditto.
2373 * remote-nrom.c: Make file obsolete.
2374 * remote-nindy.c, remote-vx960.c: Ditto.
2375 * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
2376 * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
2377 * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
2378 * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
2379 * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
2380 i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
2381 i960-*-vxworks* obsolete.
2382 * MAINTAINERS: Note that the i960 is obsolete.
2383
6c0c456d
CV
23842002-08-21 Corinna Vinschen <vinschen@redhat.com
2385
2386 * aix-thread.c (aix_thread_detach): Disable thread debugging on
2387 detach to allow reinitialization.
2388
9f9d12b3
AC
23892002-08-22 Andrew Cagney <ac131313@redhat.com>
2390
2391 * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
2392 attempt).
2393
ebeb39fe
JB
23942002-08-22 Jim Blandy <jimb@redhat.com>
2395
2396 * coffread.c (coff_symfile_read): Don't try to read the line
2397 number table from disk if the image file doesn't have a symbol
2398 table; we'll never actually look at the info anyway, and Windows
2399 ships DLL's with bogus file offsets for the line number data.
2400
5bf1c677
EZ
24012002-08-21 Elena Zannoni <ezannoni@redhat.com>
2402
2403 * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
2404 an e500 executable.
2405
71b8ef93
MS
24062002-08-21 Michael Snyder <msnyder@redhat.com>
2407
2408 * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
2409 (MSYMBOL_SIZE): Replace macro with function.
18f81521
MS
2410 (DEFAULT_MIPS_TYPE): Delete unused macro.
2411 * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
2412 * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
71b8ef93 2413
d174216d
JB
24142002-08-21 Jim Blandy <jimb@redhat.com>
2415
2416 * valops.c (value_cast): Simplify and correct logic for doing a
2417 static cast from a pointer to a base class to a pointer to a
2418 derived class.
2419
0ab7a791
AC
24202002-08-21 Andrew Cagney <ac131313@redhat.com>
2421
2422 * infcmd.c (default_print_registers_info): Replace
2423 do_registers_info.
2424 (registers_info): Use gdbarch_print_registers_info instead of
2425 DO_REGISTERS_INFO.
2426 * inferior.h (default_print_registers_info): Replace
2427 do_registers_info.
2428 * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
2429 (DO_REGISTERS_INFO): Change to a predicate function.
2430 * gdbarch.h, gdbarch.c: Regenerate.
2431
e23792cc
KS
24322002-08-21 Keith Seitz <keiths@redhat.com>
2433
2434 * gdb-events.sh: Add target-changed event.
2435 * gdb-events.c: Regenerated.
2436 * gdb-events.c: Regenerated.
2437 * valops.c (value_assign): Add target-changed event notification
2438 to inlval_register, lval_memory, and lval_reg_frame_relative.
2439
9fb14e79
JB
24402002-08-21 Joel Brobecker <brobecker@gnat.com>
2441
2442 * NEWS: Add an entry regarding the improvement of the next/step
2443 operation on Alpha Tru64 multi-processor machines.
2444
6d39a69f
AC
24452002-08-21 Andrew Cagney <ac131313@redhat.com>
2446
72acd513
AC
2447 * Makefile.in: Update dependencies for mi/ cli/ and tui/
2448 directores.
342af04b 2449 * Makefile.in: Update all _h macro definitions.
6d39a69f
AC
2450 * Makefile.in (install-gdbtk): Move to install section.
2451 (rdi-share/libangsd.a): Move to end of file.
2452
fa5f27c7
AC
24532002-08-19 Andrew Cagney <ac131313@redhat.com>
2454
2455 * frame.c (frame_register_unwind): When a register, set addrp to
2456 the register's byte.
2457
5a89d8aa
MS
24582002-08-20 Michael Snyder <msnyder@redhat.com>
2459
2460 * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
2461 used locally, so move them from the target machine header to here.
2462 (mips_set_processor_type, mips_register_name, mips32_next_pc,
2463 mips16_next_pc, cached_proc_desc, mips_set_processor_type):
2464 Make static.
2465 * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
2466
822e978b
AC
24672002-08-20 Andrew Cagney <cagney@redhat.com>
2468
2469 * NEWS: Mention that the Apollo line was made obsolete.
2470 * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
2471 m68*-hp-hpux* obsolete.
2472 * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
2473 m68*-hp-bsd* and m68*-hp-hpux* obsolete.
2474 * buildsym.c (make_blockvector): Make static.
2475 * buildsym.h (make_blockvector): Make extern declaration obsolete.
2476 * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
2477 (ALLDEPFILES): Remove dstread.c.
2478 (dstread.o): Obsolete make rule.
2479 * dstread.c: Makefile obsolete.
2480 * dst.h: Ditto.
2481 * config/m68k/hp300hpux.mt: Ditto.
2482 * config/m68k/hp300hpux.mh: Ditto.
2483 * config/m68k/hp300bsd.mt: Ditto.
2484 * config/m68k/hp300bsd.mh: Ditto.
2485 * config/m68k/apollo68b.mt: Ditto.
2486 * config/m68k/apollo68v.mh: Ditto.
2487 * config/m68k/apollo68b.mh: Ditto.
2488
e41b17f0
MS
24892002-08-20 Michael Snyder <msnyder@redhat.com>
2490
2491 * mips-tdep.c (mips_in_return_stub): Make static.
2492 (mips_gdbarch_init): Set in_solib_return_trampoline.
2493 * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
2494
d50355b6
MS
24952002-08-20 Michael Snyder <msnyder@redhat.com>
2496
2497 * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
2498 * gdbarch.c, gdbarch.h: Regenerate.
2499 * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
2500 Add.
2501 * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
2502
757a7cc6
MS
25032002-08-20 Michael Snyder <msnyder@redhat.com>
2504
2505 * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
2506 (mips_gdbarch_init): Set skip_trampoline_code,
2507 in_solib_call_trampoline.
2508 * config/mips/tm-mips.h (REGISTER_NAME): Delete.
2509 (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
2510
c8001721
EZ
25112002-08-20 Elena Zannoni <ezannoni@redhat.com>
2512
2513 * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
2514
2515 * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
2516 vector type for ev registers.
2517 (e500_pseudo_register_read): New function.
2518 (e500_pseudo_register_write): New function.
2519 (e500_dwarf2_reg_to_regnum): New function.
2520 (PPC_UISA_NOFP_SPRS): New macro.
2521 (PPC_EV_REGS): New macro.
2522 (PPC_GPRS_PSEUDO_REGS): New macro.
2523 (registers_e500): New register set for e500.
2524 (variants): Add e500 variant.
2525 (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
2526 before setting architectural dependent variations. Initialize ev
2527 registers numbers. Add case for e500 architecture. Set the
2528 number of pseudo registers.
2529
64366f1c
EZ
25302002-08-20 Elena Zannoni <ezannoni@redhat.com>
2531
2532 * rs6000-tdep.c: Clean up comments.
2533
7e78f0ca
AC
25342002-08-20 Andrew Cagney <cagney@redhat.com>
2535
2536 * h8300-tdep.c: Re-indent file.
2537
697f7479
JB
25382002-08-20 Jim Blandy <jimb@redhat.com>
2539
2540 * Makefile.in (LDFLAGS): Allow the configure script to establish a
2541 default for this.
697f7479 2542
e86ae29f
KS
25432002-08-20 Keith Seitz <keiths@redhat.com>
2544
2545 * breakpoints.c (watch_command_1): Use internal breakpoint
2546 when setting a watchpoint_scope breakpoint.
2547
216b504f
EZ
25482002-08-20 Elena Zannoni <ezannoni@redhat.com>
2549
2550 * gdbtypes.c (build_builtin_type_vec64): Add name to type.
2551 (build_builtin_type_vec64i): Ditto.
2552 (build_builtin_type_vec128): Ditto.
2553 (build_builtin_type_vec128i): Ditto.
2554
f7ab6ec6
MS
25552002-08-19 Michael Snyder <msnyder@redhat.com>
2556
2557 * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
2558 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
2559 (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
2560 POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
2561 (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
2562 CALL_DUMMY_ADDRESS): Delete.
2563 * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
2564 mips_msymbol_is_special, mips_fix_call_dummy): New functions.
2565 (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame,
2566 push_dummy_frame, fix_call_dummy, init_extra_frame_info,
2567 push_return_address.
2568 (mips_register_raw_size, mips_eabi_use_struct_convention,
2569 mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
2570 mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
2571 mips_init_extra_frame_info, mips_eabi_push_arguments,
2572 mips_n32n64_push_arguments, mips_push_return_address,
2573 mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
2574 mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
2575
b5d1566e
MS
25762002-08-19 Michael Snyder <msnyder@redhat.com>
2577
2578 * mips-tdep.c (mips_frame_num_args): New function.
2579 (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
2580 frame_saved_pc, frame_args_address, frame_locals_address,
2581 frame_num_args, and frame_args_skip.
2582 * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
2583 FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS,
2584 FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
2585 * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
2586
2f1488ce
MS
25872002-08-20 Michael Snyder <msnyder@redhat.com>
2588
2589 * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
2590 (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
2591 * mips-tdep.c (mips_store_struct_return): New function.
2592 (mips_extract_struct_value_address): New function.
2593 (mips_gdbarch_init): Set store_struct_return and
2594 extract_struct_value_address.
2595
41ff2da1
DC
25962002-08-20 David Carlton <carlton@math.stanford.edu>
2597
2598 * dwarf2read.c (dwarf2_build_psymtabs): Check that
2599 dwarf_line_offset is nonzero before creating dwarf_line_buffer.
2600 (read_file_scope): Check that line_header is nonzero before
2601 decoding macro information.
2602
e5451d58
MK
26032002-08-20 Mark Kettenis <kettenis@gnu.org>
2604
2605 * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
2606 flag the general-purpose registers as floating-point on targets
2607 that don't support the floating-point registers.
2608
4a6daafa
EZ
26092002-08-20 Elena Zannoni <ezannoni@redhat.com>
2610
2611 * rs6000-tdep.c (altivec_register_p): Delete.
2612 (rs6000_do_altivec_registers): Delete.
2613 (rs6000_altivec_registers_info): Delete.
2614 (rs6000_do_registers_info): Delete.
2615 (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
2616 (rs6000_gdbarch_init): Remove setting of do_registers_info.
2617
ab4327e0
EZ
26182002-08-20 Elena Zannoni <ezannoni@redhat.com>
2619
2620 * infcmd.c (do_registers_info): Print vector registers in hex
2621 format only.
2622 (print_vector_info): Check that printing registers
2623 makes sense.
2624 (print_float_info): Ditto.
2625
cb1d2653
AC
26262002-08-20 Andrew Cagney <ac131313@redhat.com>
2627
2628 * mips-tdep.c (mips_gdbarch_init): Update.
2629 (mips_o32_extract_return_value): Rewrite.
2630 (mips_o32_store_return_value): Rewrite.
2631 (mips_o32_xfer_return_value): New function.
2632 (mips_xfer_register): Tweak debug print message. Allow for
2633 buf_offset when dumping the value transfered.
2634
dfc3d9b2
AC
26352002-08-20 Andrew Cagney <ac131313@redhat.com>
2636
2637 * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
2638 * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
2639 * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
2640 * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
2641 * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
2642
7807aa61
MS
26432002-08-14 Michael Snyder <msnyder@redhat.com>
2644
2645 * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
2646
489461e2
EZ
26472002-08-19 Elena Zannoni <ezannoni@redhat.com>
2648
2649 * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
2650 register.
2651 (P): New macro to define a register as a pseudo register.
2652 (R, R4, R8, R16, FR32, R64, R0): Updated.
2653 (struct variant): Add new fields for number of pseudo registers
2654 and number of total registers.
2655 (tot_num_registers): New macro replacing....
2656 (num_registers): ...deleted macro.
2657 (num_registers): New function.
2658 (num_pseudo_registers): New function.
2659 (variants): Update all variants to intialize new fields correctly.
2660 Postpone initialization of number of pseudo regs and real regs.
2661 (init_variants): New function.
2662 (rs6000_gdbarch_init): Initialize variants. Update calculation of
2663 registers offsets.
2664
fcaffe4c
DC
26652002-08-19 David Carlton <carlton@math.stanford.edu>
2666
2c2738a0
DC
2667 * valops.c (search_struct_field): Change error message to treat
2668 return value of 0 from value_static_field as meaning that field is
2669 optimized out.
2670 (value_struct_elt_for_reference): Ditto.
2671 * values.c (value_static_field): Treat an unresolved location the
2672 same as a nonexistent symbol. Fix PR gdb/635.
2a73a662
DC
2673 * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
2674 enclosed. Fix PR gdb/574.
fcaffe4c
DC
2675 * MAINTAINERS: Add self to Write After Approval list.
2676
88658117
AC
26772002-08-19 Andrew Cagney <ac131313@redhat.com>
2678
2679 * mips-tdep.c (mips_xfer_register): New function.
2680 (mips_n32n64_extract_return_value): Rewrite.
2681 (mips_gdbarch_init): For N32 and N64, set extract_return_value
2682 instead of deprecated_extract_return_value.
2683
21283beb
EZ
26842002-08-19 Elena Zannoni <ezannoni@redhat.com>
2685
2686 * rs6000-tdep.c (TDEP): Delete macro.
2687 (branch_dest): Replace use of TDEP macro with its body.
2688 (rs6000_pop_frame): Ditto.
2689 (rs6000_push_arguments): Ditto.
2690 (rs6000_skip_trampoline_code): Ditto.
2691 (rs6000_frame_saved_pc): Ditto.
2692 (rs6000_frame_chain): Ditto.
2693 (rs6000_register_name): Ditto.
2694 (rs6000_register_byte): Ditto.
2695 (rs6000_register_raw_size): Ditto.
2696 (rs6000_register_virtual_type): Ditto.
2697 (rs6000_register_convertible): Ditto.
2698 (rs6000_convert_from_func_ptr_addr): Ditto.
2699
bf072999
DJ
27002002-08-19 Daniel Jacobowitz <drow@mvista.com>
2701
2702 * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
2703 conditionally.
2704 (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
2705 MIPS_LINUX_JB_ELEMENT_SIZE.
2706 * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
2707 for MAX_REGISTER_RAW_SIZE arrays.
2708 (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
2709 MIPS_LINUX_JB_ELEMENT_SIZE.
2710
9b949a49
PM
27112002-08-19 Pierre Muller <muller@ics.u-strasbg.fr>
2712
2713 * i387-tdep.c (i387_print_float_info): Fix typo in comment.
2714
6d3e79c6
AS
27152002-08-19 Aidan Skinner <aidan@velvet.net>
2716
2717 * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
2718 ada-valprint.c ada-tasks.c.
2719 (YYFILES): Add ada-exp.y.
2720 (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
2721 (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
2722 (ada-exp.tab.o): New target.
2723
06c0b04e
AC
27242002-08-18 Andrew Cagney <ac131313@redhat.com>
2725
2726 * regcache.c (regcache_xfer_part): New function.
2727 (regcache_raw_read_part): New function.
2728 (regcache_raw_write_part): New function.
2729 (regcache_cooked_read_part): New function.
2730 (regcache_cooked_write_part): New function.
2731 * regcache.h (regcache_raw_read_part): Declare.
2732 (regcache_raw_write_part): Declare.
2733 (regcache_cooked_read_part): Declare.
2734 (regcache_cooked_write_part): Declare.
2735
92d1e331
DJ
27362002-08-18 Daniel Jacobowitz <drow@mvista.com>
2737
2738 * remote.c (remote_open_1): Add async_p.
2739 (remote_async_open_1): Delete.
2740 (open_remote_target): Delete.
2741 (remote_open, extended_remote_open): Update calls to remote_open_1.
2742 (remote_async_open, extended_remote_async_open): Call
2743 remote_open_1 instead of remote_async_open_1.
2744
247055de
MK
27452002-08-19 Mark Kettenis <kettenis@gnu.org>
2746
2747 * blockframe.c: Fix a few coding standard violations.
2748
641eda39
MK
27492002-08-19 Mark Kettenis <kettenis@gnu.org>
2750
0b717710
MK
2751 * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
2752 here from ...
2753 * config/i386/tm-i386sco5.h: ... here. File removed.
2754 * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
2755
26d28e12 2756 * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
641eda39
MK
2757 * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
2758 (TM_FILE): Set to tm-i386.h.
2759 * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
2760 * config/i386/tm-i386v.h: Remove file.
2761 * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
2762 instead of "i386/tm-i386v.h".
2763 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
2764 * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
2765 "i386/tm-i386v.h".
2766 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
2767 * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
2768 "i386/tm-i386.h".
2769
d4e0bab4
MK
27702002-08-18 Mark Kettenis <kettenis@gnu.org>
2771
2772 * config/i386/nm-i386v.h: Add protection against
2773 multiple-inclusion.
2774 (i386_register_u_addr): Remove prototype.
2775 (register_u_addr): New prototype.
2776 (REGISTER_U_ADDR): Redefine accordingly.
2777 * i386v-nat.c: Improve several comments.
2778 (i386_register_u_addr): Change signature and rename to
2779 register_u_addr. Use FP_REGNUM_P. Rewrite slightly to get rid of
2780 ubase variable.
2781
46cac009
AC
27822002-08-18 Andrew Cagney <ac131313@redhat.com>
2783
2784 * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
2785 (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
2786 * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
2787 deprecated_extract_return_value.
2788 (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
2789 rename mips_o32o64_push_arguments.
2790 (mips_gdbarch_init): Update.
2791 (mips_extract_return_value): Delete.
2792 (mips_o32_extract_return_value): Clone mips_extract_return_value.
2793 (mips_o64_extract_return_value): Clone mips_extract_return_value.
2794 (mips_eabi_extract_return_value): Clone mips_extract_return_value.
2795 (mips_n32n64_extract_return_value): Clone
2796 mips_extract_return_value.
2797 (mips_store_return_value): Delete.
2798 (mips_o32_store_return_value): Clone mips_store_return_value.
2799 (mips_o64_store_return_value): Clone mips_store_return_value.
2800 (mips_eabi_store_return_value): Clone mips_store_return_value.
2801 (mips_n32n64_store_return_value): Clone mips_store_return_value.
2802
d2e4a39e
AS
28032002-08-18 Aidan Skinner <aidan@velvet.net>
2804
0c30c098
AS
2805 * ada-lang.c: Use gdb_string.h instead of <string.h>.
2806 * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
2807
28082002-08-18 Aidan Skinner <aidan@velvet.net>
2809
2810 * ada-lang.c: Run through gdb_indent.sh.
2811 * ada-lang.h: Run through gdb_indent.sh.
2812 * ada-tasks.c: Run through gdb_indent.sh.
2813 * ada-typeprint.c: Run through gdb_indent.sh.
2814 * ada-valprint.c: Run through gdb_indent.sh.
d2e4a39e 2815
01fc4e33
AC
28162002-08-18 Andrew Cagney <ac131313@redhat.com>
2817
2818 * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
2819 ABI.
2820
d8ee244c
MK
28212002-08-18 Mark Kettenis <kettenis@gnu.org>
2822
c38d8261
MK
2823 * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
2824
222db64c
MK
2825 * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
2826 * i386b-nat.c [FLOAT_INFO]: Remove dead code.
2827
c2848c82
MK
2828 * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
2829 write_register_gen instead of write_register_bytes.
2830
d8ee244c
MK
2831 * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
2832 i[3456]-*-osf1mk* configurations have been made obsolete.
2833 * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
2834 i[3456]86-*-osf1mk* hosts obsolete.
2835 * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
2836 targets obsolete.
2837 * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
2838 config/i386/xm-i386mach.h, config/i386/i386m3.mh,
2839 config/i386/i386m3.mt, config/i386/nm-m3.h,
2840 config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
2841 config/i386/i386mk.mh, config/i386/i386mk.mt,
2842 config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
2843 obsolete.
2844 * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
2845 * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
2846 (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
2847
61d8d407
AC
28482002-08-18 Andrew Cagney <ac131313@redhat.com>
2849
2850 * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
2851 (hppa_value_returned_from_stack): Declare.
2852 (hppa_extract_return_value): Declare.
2853 * config/pa/hppa.mt: New file.
2854 * configure.tgt: Recognize hppa*-*-*.
2855 * MAINTAINERS: Change HPPA target to hppa-elf. Still broken.
2856
0c52bd59
MK
28572002-08-18 Mark Kettenis <kettenis@gnu.org>
2858
2859 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
2860 comment.
2861
b5686e99
MK
28622002-08-17 Mark Kettenis <kettenis@gnu.org>
2863
2864 * top.c (gdb_rl_operate_and_get_next): Make sure
2865 operate-and-get-next functions correctly even when the history
2866 list is completely filled.
2867
c1bab85b
AC
28682002-08-18 Andrew Cagney <ac131313@redhat.com>
2869
2870 * MAINTAINERS (Target Instruction Set Architectures): Rename
2871 Target/Architectures. Replace vax-dec-vms5.5 with vax-netbsd.
2872 Replace s390-linux with s390-linux-gnu. Remove i386-aout,
2873 mcore-pe, mips64-elf, sparc64-elf. Remove i586-pc-msdosdjgpp,
2874 already listed under Host/Native.
2875
2876 * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
2877 i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*. Add
2878 mips*-*-*.
2879
32089c7c
AC
28802002-08-17 Andrew Cagney <ac131313@redhat.com>
2881
2882 * config/ia64/ia64.mt: New file.
2883 * config/alpha/alpha.mt: New file.
2884 * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
2885 ia64-linux-gnu. Mention that ia64-elf is broken.
2886 * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
2887
b4671f85
MK
28882002-08-17 Mark Kettenis <kettenis@elgar.kettenis.dyndns.org>
2889
2890 * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
2891 generic_func_frame_valid instead of func_frame_valid.
2892
c8edd8b4
JB
28932002-08-16 Joel Brobecker <brobecker@gnat.com>
2894
2895 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
2896 procfs appears to be broken when debugging on multi-processor
2897 machines. So enable software single stepping in order to avoid
2898 using the procfs interface to do next/step operations, using
2899 internal breakpoints instead.
2900
2901 * infrun.c (handle_inferior_event): Readjust the stop_pc by
2902 DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
2903 make this pc address equal to the value it would have if the
2904 system stepping capability was used. Also set a new flag used
2905 to ensure that we don't readjust the PC one more time later.
2906
2907 * breakpoint.c (bpstat_stop_status): Do not adjust the PC
2908 address by DECR_PC_AFTER_BREAK when software single step is
2909 in use for this architecture, as this has already been taken
2910 care of in handle_inferior_event().
2911
238617f6
JB
29122002-08-16 Joel Brobecker <brobecker@gnat.com>
2913
2914 * infrun.c (handle_inferior_event): Minor reformatting, to make
2915 a rather long condition expression easier to read.
2916
541a7aac
AC
29172002-08-16 Andrew Cagney <ac131313@redhat.com>
2918
2919 * Makefile.in (gdbtk.o): Move to end of file.
2920 (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
2921 (gdbtk-hooks.o, gdbtk-register.o): Ditto.
2922 (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
2923 (gdbtk-wrapper.o, gdbres.o): Ditto.
2924
f92d4a7b
AC
29252002-08-16 Andrew Cagney <ac131313@redhat.com>
2926
2927 * Makefile.in (copying.o): Separate out compile rule.
2928 (hpux-thread.o, procfs.o, signals.o): Ditto.
2929 (v850ice.o, z8k-tdep.o): Ditto.
2930 (tui-file.o): Move to TUI section.
2931 (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
2932 (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
2933
1cce71eb
JB
29342002-08-16 Joel Brobecker <brobecker@gnat.com>
2935
2936 * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
2937 skip_trampoline_code, for better namespace-proofing.
2938
2939 * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
2940
0851f23d
JB
29412002-08-16 Joel Brobecker <brobecker@gnat.com>
2942
2943 * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
2944
f8d40ec8
JB
29452002-08-16 Joel Brobecker <brobecker@gnat.com>
2946
2947 * infrun.c (handle_inferior_event): When receiving a SIGTRAP
2948 signal, check whether we hit a breakpoint before checking for a
2949 single step breakpoint. Otherwise, GDB fails to notice that a
2950 breakpoint has been hit when stepping onto a breakpoint.
2951
63d022e0
KS
29522002-08-16 Keith Seitz <keiths@redhat.com>
2953
2954 * gdb-events.sh (clear_gdb_event_hooks): New function.
2955 * gdb-events.c: Regenerate.
2956 * gdb-events.h: Regenerate.
2957
6e31adb3
AC
29582002-08-16 Andrew Cagney <ac131313@redhat.com>
2959
2960 * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
2961 not_a_sw_breakpoint.
2962 * breakpoint.h (bpstat_stop_status): Add parameter names.
2963
c8189ed1
GS
29642002-08-16 Grace Sainsbury <graces@redhat.com>
2965
2966 * remote.c (remote_insert_hw_breakpoint)
2967 (remote_remove_hw_breakpoint): Fix calculation of length field
2968 for Z-packet.
2969
d05285fa
MS
29702002-08-15 Michael Snyder <msnyder@redhat.com>
2971
466d7106
MS
2972 * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
2973 (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
2974 (supply_fpregset): Ditto.
2975
d05285fa
MS
2976 * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL,
2977 REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE,
2978 MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
bcb0cc15 2979 (TARGET_READ_SP): Delete.
bf1f5b4c 2980 (DO_REGISTERS_INFO): Delete.
102182a9
MS
2981 (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
2982 Delete.
2983 (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
2984 from macros to functions.
bf1f5b4c 2985
d05285fa
MS
2986 * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
2987 (mips_register_convertible, mips_register_convert_to_virtual,
2988 mips_register_convert_to_raw): Make static.
bcb0cc15
MS
2989 (mips_read_sp): New function.
2990 (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
bf1f5b4c
MS
2991 (mips_do_registers_info): Make static.
2992 (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
102182a9
MS
2993 (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
2994 (mips_register_convert_from_type, mips_register_convert_to_type):
2995 New functions.
2996 (mips_gdbarch_init): Set up function_start_offset,
2997 register_virtual_size, pc_in_sigtramp.
d05285fa 2998
e76f1f2e
AC
29992002-08-15 Andrew Cagney <ac131313@redhat.com>
3000
3001 * infcmd.c (vector_info): New function.
3002 (_initialize_infcmd): Add command "info vector".
3003 (print_vector_info): New function.
3004
3005 * gdbarch.sh (PRINT_VECTOR_INFO): New method
3006 * gdbarch.h, gdbarch.c: Regenerate.
3007
4782dc19
AC
30082002-08-15 Andrew Cagney <ac131313@redhat.com>
3009
3010 * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
3011 ``print_all''. Only print vector registers when ``print_all''.
3012
23e3a7ac
AC
30132002-08-15 Andrew Cagney <ac131313@redhat.com>
3014
8e186fd6
AC
3015 * i387-tdep.h (i387_print_float_info): Add `args' parameter.
3016 * i387-tdep.c (i387_print_float_info): Add `args' parameter.
3017
23e3a7ac
AC
3018 * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
3019 Add `args' parameter.
3020 * gdbarch.h, gdbarch.c: Regenerate.
3021
3022 * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
3023
3024 * infcmd.c (float_info): Call print_float_info.
3025 (print_float_info): New function. By default, print the
3026 floating-point registers.
3027
3028 * arch-utils.h (default_print_float_info): Delete declaration.
3029 * arch-utils.c (default_print_float_info): Delete function.
3030
e0ca2bb9
MK
30312002-08-16 Mark Kettenis <kettenis@gnu.org>
3032
3f733acc
MK
3033 * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
3034 out define.
3035
7d8d2918
MK
3036 * i387-tdep.c (i387_print_float_info): Add comment about ignoring
3037 FRAME.
3038
1c7cc583
MK
3039 * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
3040 * configure.host: Make i[3456]86-*-aix host obsolete.
3041 * configure.tgt: Make i[3456]86-*-aix target obsolete.
3042 * config/i386/i386aix.mh, config/i386/i386aix.mt,
3043 config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
3044 config/i386/xm-i386aix.h: Make files obsolete.
3045 * i386aix-nat.c: Make file obsolete.
3046 * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
3047 (i386aix-nat.o): Make target obsolete.
3048
e0ca2bb9
MK
3049 * config/i386/nm-gnu.h: Removed.
3050 * config/i386/nm-i386gnu.h: New file.
3051 (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
3052 THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
3053 Moved here from ...
3054 * config/i386/tm-i386gnu.h: ... here. Removed.
3055 * config/i386/xm-i386gnu.h: Removed.
3056 * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
3057 (NAT_FILE): Set to nm-i386gnu.h.
3058 * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
3059 * i386-tdep.c: New file.
3060 * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
3061 (i386gnu-tdep.o): Specify dependencies.
3062
16057ec7 30632002-08-15 Mark Kettenis <kettenis@gnu.org>
61113f8b 3064
6b99ee2e
MK
3065 * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
3066 "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
3067 Adjust a few comments to reflect reality a bit closer.
3068 (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
3069 TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
3070 HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
3071 target_insert_watchpoint, target_remove_watchpoint):
3072 Move defines to ...
3073 * config/i386/nm-i386sco5.h: ... here.
3074 (kernel_u_size): Add prototype. Improve a few comments and add
3075 protection against multiple inclusion.
3076
d9a6f65c
MK
3077 * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
3078 out define.
3079
047eff6a
MK
3080 * uw-thread.c (SP_ARG0): Define if not already defined.
3081 * config/i386/tm-i386.h (SO_ARG0): Remove define.
3082
dcdb1290
MK
3083 * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
3084
5d2d0b2a
MK
3085 * config/i386/tm-i386.h: Don't include "regcache.h".
3086
61113f8b
MK
3087 * i387-tdep.h (i387_print_float_info): New prototype.
3088 * i387-tdep.c (print_i387_value, print_i387_ext,
3089 print_i387_status_word, print_i387_control_word): Add `struct
3090 ui_file *' argument and use it for output.
3091 (i387_print_float_info): Renamed from i387_float_info. Add
3092 `struct gdbarch *' and `struct ui_file *' arguments and use the
3093 latter for output.
3094 * i386-tdep.c: Include "i387-tdep.h".
3095 (i386_gdbarch_init): Set print_float_info.
3096 * config/i386/tm-i386.h (i387_float_info): Remove prototype.
3097 (FLOAT_INFO): Remove define.
3098
46e0f506
MS
30992002-08-13 Michael Snyder <msnyder@redhat.com>
3100
3101 * mips-tdep.c (mips_push_arguments): Rename to
3102 mips_eabi_push_arguments, and tune for EABI.
3103 (MIPS_REGS_HAVE_HOME_P): Delete.
3104 (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
3105 (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
3106 Delete references to mips_regs_have_home_p.
3107
409268de
KS
31082002-08-14 Keith Seitz <keiths@redhat.com>
3109
3110 * Makefile.in (install-gdbtk): Create insight plugin directory.
3111 Install plugins.tcl file.
3112
ffc6a242
KS
31132002-08-14 Keith Seitz <keiths@redhat.com>
3114
3115 * configure.in: Move SUBDIRS to near top of the file so that
3116 --enable options may add things to it.
3117 If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
3118 * configure: Regenerate.
3119
ebafbe83
MS
31202002-08-13 Michael Snyder <msnyder@redhat.com>
3121
3122 * mips-tdep.c (mips_o32o64_push_arguments): New function,
3123 cloned from mips_push_arguments, tuned for o32/o64 ABI.
3124 (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
3125
32f6f25d
AC
31262002-08-13 Andrew Cagney <ac131313@redhat.com>
3127
3128 * vax-tdep.c (vax_get_saved_register): Delete function.
3129 (vax_gdbarch_init): Update.
3130 * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
3131 (ns32k_gdbarch_init): Update.
3132 * alpha-tdep.c (alpha_get_saved_register): Delete function.
3133 (alpha_gdbarch_init): Update.
3134
53826de9
AC
31352002-08-13 Andrew Cagney <cagney@redhat.com>
3136
3137 * regcache.c (init_regcache_descr): Overallocate the
3138 raw_register_valid_p array including space for NUM_PSEUDO_REGS.
3139 (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
3140 nr_raw_registers.
3141 (set_register_cached): Add range checking assertions. Use
3142 current_regcache.
3143
16057ec7 31442002-08-13 Mark Kettenis <kettenis@gnu.org>
7d12f766
MK
3145
3146 * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
3147 numbers for MMX registers.
3148
7b4c2dce
AC
31492002-08-13 Andrew Cagney <cagney@redhat.com>
3150
3151 * i386-tdep.c (i386_gdbarch_init): Use
3152 generic_unwind_get_saved_register.
3153
1e03ad20
KB
31542002-08-13 Kevin Buettner <kevinb@redhat.com>
3155
3156 * procfs.c (procfs_can_use_hw_breakpoint): New function.
3157 (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
3158 target vector.
3159 * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
3160 Delete. Add comment regarding this now-deleted target method.
3161
548bcbec
SC
31622002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3163
3164 * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
3165 (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
3166 (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
3167 real PC and the page number (if it's within the memory bank window).
3168 (m68hc11_pseudo_register_write): Likewise when saving.
3169 (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
3170 (m68hc11_register_virtual_type): Return uint32 for virtual pc.
3171 (m68hc11_register_raw_size): And use 32-bit for it.
3172 (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
3173 16K memory bank is used by the prog; also use the virtual pc.
3174
7df11f59
SC
31752002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3176
3177 * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
3178 (m68hc11_gdbarch_init): Install it in gdbarch.
3179 (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
3180 (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
3181 (MSYMBOL_SIZE): New for documentation.
3182 (insn_return_kind): Enum to specify how a function returns.
3183 (frame_extra_info): Cleanup and record the return mode.
3184 (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page
3185 register in address computation.
3186 (m68hc11_get_return_insn): New to obtain the return instruction used
3187 by the function.
3188 (m68hc11_frame_init_saved_regs): Take into account the return
3189 instruction used by the function for far and interrupt functions.
3190 (m68hc11_init_extra_frame_info): Take into account page register.
3191 (m68hc11_frame_args_address): Adjust according to the return mode.
3192 (show_regs): Print page register only when it's used.
3193
5706502a
SC
31942002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3195
3196 * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
3197 (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
3198 (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
3199 registers.
3200 (m68hc11_register_raw_size): Likewise.
3201
28fc6740
AC
32022002-08-13 Andrew Cagney <cagney@redhat.com>
3203
3204 * i386-tdep.c (i386_register_name): Handle mmx registers.
3205 (mmx_regnum_p): New function.
3206 (i386_mmx_names): New array.
3207 (mmx_num_regs): New variable.
3208 (i386_pseudo_register_read): New function.
3209 (i386_pseudo_register_write): New function.
3210 (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
3211
3212 * regcache.c (regcache_raw_read_unsigned): New function.
3213 (regcache_raw_read_signed): New function.
3214 * regcache.h (regcache_raw_read_unsigned): Declare.
3215 (regcache_raw_read_signed): Declare.
3216
a378f419
AC
32172002-08-13 Andrew Cagney <cagney@redhat.com>
3218
3219 * regcache.c (regcache_raw_read_as_address): Delete function.
3220 (regcache_cooked_read_signed): New function.
3221 (regcache_cooked_read_unsigned): New function.
3222 * regcache.h (regcache_cooked_read_signed): Declare.
3223 (regcache_cooked_read_unsigned): Declare.
3224 (regcache_raw_read_as_address): Delete declaration.
3225
3226 * blockframe.c (generic_read_register_dummy): Use
3227 regcache_cooked_read_unsigned.
3228 * i386-tdep.c (i386_extract_struct_value_address): Use
3229 regcache_cooked_read_unsigned.
3230
81967506
SC
32312002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3232
3233 * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
3234 double sizes according to ELF ABI flags.
3235 (gdbarch_tdep): Record elf_flags.
3236
ffe1f3ee
SC
32372002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3238
3239 * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
3240 (m6812_prolog): They can appear in 68HC12 function prologue.
3241 (m68hc11_frame_chain): Cleanup.
3242
98216c5d
AC
32432002-08-12 Andrew Cagney <cagney@redhat.com>
3244
3245 * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
3246 declarations.
3247 * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
3248 (i386_linux_register_raw_size): Delete function.
3249 (i386_linux_init_abi): Update.
3250 * i386-tdep.c (i386_register_raw_size): Delete function.
3251 (i386_register_byte): Delete function.
3252 (i386_gdbarch_init): Update.
3253 (i386_register_size): Delete array.
3254 (i386_register_offset): Delete array.
3255
3256 * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
3257 (REGISTER_RAW_SIZE): Delete macro.
3258 * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
3259 (REGISTER_BYTE): Delete macro.
3260
3b19021e
AS
32612002-08-11 Aidan Skinner <aidan@velvet.net>
3262
3263 * ada-lang.c (ada_lookup_partial_symbol)
3264 (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
3265 prototype names so that grep ^func works properly.
3266
3267 * ada-lang.c (ada_array_element_type)
3268 (ada_lookup_partial_symbol): Fix typos in parameter list.
3269
3270 * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
3271 Fix prototype names so that grep ^func works properly.
3272
b063e7a2
AC
32732002-08-10 Andrew Cagney <cagney@redhat.com>
3274 Elena Zannoni <ezannoni@redhat.com>
3275 Martin M. Hunt <hunt@redhat.com>
3276
3277 * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
3278 (build_builtin_type_vec128i): Set the vector bit.
3279 * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
3280 * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
3281 (build_builtin_type_vec64): New function.
3282 (build_builtin_type_vec64i): New function.
3283 (build_gdbtypes): Initialize builtin_type_vec64 and
3284 builtin_type_vec64i.
3285
a7e3c2ad
AC
32862002-08-09 Andrew Cagney <cagney@redhat.com>
3287
3288 * regcache.c (regcache_dump): Compare the register offset
3289 with REGISTER_BYTE.
3290 * arch-utils.c (generic_register_byte): New function.
3291 * arch-utils.h (generic_register_byte): Declare.
3292 * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
3293 * gdbarch.h, gdbarch.c: Regenerate.
3294
af030b9a
AC
32952002-08-09 Andrew Cagney <cagney@redhat.com>
3296
3297 * regcache.c: Include "gdbcmd.h"
3298 (_initialize_regcache): Add commands "maintenance print
3299 registers", "maintenance print raw-registers" and "maintenance
3300 print cooked-registers".
3301 (enum regcache_dump_what): Define.
3302 (dump_endian_bytes): New function.
3303 (regcache_dump): New function.
3304 (regcache_print): New function.
3305 (maintenance_print_registers): New function.
3306 (maintenance_print_raw_registers): New function.
3307 (maintenance_print_cooked_registers): New function.
3308 * Makefile.in (regcache.o): Update dependencies.
3309
cb3d25d1
MS
33102002-08-09 Michael Snyder <msnyder@redhat.com>
3311
3312 * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
3313 (mips_push_arguments): Correct some comments. Use paddr_nz
3314 for printing addresses in debug output. Replace static
3315 allocation using MAX_REGISTER_RAW_SIZE with alloca.
3316 (mips_n32n64_push_arguments): New function, cloned from
3317 mips_push_arguments and tuned for the n32/n64 ABI.
3318 (mips_push_register): Buffer needs dynamic allocation.
3319 (mips_print_register): Ditto.
3320 (do_gp_register_row): Ditto.
3321 (mips_store_return_value): Ditto.
3322 (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
3323
2163ab9d
DH
33242002-08-09 Don Howard <dhoward@redhat.com>
3325
3326 * memattr.c (mem_info_command): Print special case of upper bound
3327 as max CORE_ADDR + 1.
3328
b78bcb18
MS
33292002-08-08 Michael Snyder <msnyder@redhat.com>
3330
3331 * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only
3332 returns structs by ref if they're too big to fit in two registers.
3333
ffabd70d
KB
33342002-08-09 Kevin Buettner <kevinb@redhat.com>
3335
3336 * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
3337 saved regs value.
3338 (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
3339 mips_find_saved_regs().
3340 (mips_pop_frame): Likewise.
3341
fbcdb4a3
KB
33422002-08-09 Kevin Buettner <kevinb@redhat.com>
3343
3344 * blockframe.c (frame_saved_regs_register_unwind): Revise
3345 PC_IN_CALL_DUMMY assertion to only apply when generic dummy
3346 frames are in use.
3347
3c3bea1c
GS
33482002-08-09 Grace Sainsbury <graces@redhat.com>
3349
3350 * remote.c: (remote_wait, remote_async_wait): Add check for awatch
3351 T-packets; the 'a' is not taken as a register number.
3352 (remote_check_watch_resources, remote_stopped_by_watchpoint)
3353 (remote_stopped_data_address): New functions; add to target
3354 vector.
3355 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
3356 prototypes to match other implementations of this
3357 function. replace integer argument with pointer -- the length
3358 field in the Z-packet is the length of what is pointed to or 1 if
3359 pointer is null. Add to target vector.
3360 (remote_insert_watchpoint, remote_remove_watchpoint): Add to
3361 target vector.
3362
3363 From Mark Salter:
3364 * remote.c (remote_wait): Add support to extract optional
3365 watchpoint information from T-packet. Ignore unrecognized
3366 optional info in T-packet.
3367 (remote_async_wait): Ditto.
3368
5d1d95de
CV
33692002-08-09 Corinna Vinschen <vinschen@redhat.com>
3370
3371 * cli/cli-dump.c: Change fopen modes to use binary open modes
3372 as defined in include/fopen-bin.h throughout.
3373
c86b5b38
MS
33742002-08-08 Michael Snyder <msnyder@redhat.com>
3375
3376 * mips-tdep.c: Minor whitespace and indentation clean-ups.
3377
b30590dc
KB
33782002-08-08 Kevin Buettner <kevinb@redhat.com>
3379
3380 * doublest.c (store_floating): Avoid floatformat_from_doublest()
3381 assertion failure by returning early after a warning.
3382
498868ed
KB
33832002-08-08 Kevin Buettner <kevinb@redhat.com>
3384
3385 * mips-tdep.c (mips_find_saved_regs): Make static.
3386 (mips_frame_init_saved_regs): New function.
3387 (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
3388 * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
3389 (mips_find_saved_regs): Delete declaration.
3390
b2dd6311
GS
33912002-08-08 Grace Sainsbury <graces@redhat.com>
3392
3c3bea1c
GS
3393 * remote.c (remote_wait, remote_async_wait): Change
3394 thread_num from int to ULONGEST.
3395 (unpack_varlen_hex): Change result parameter from
3396 int * to ULONGEST *.
b2dd6311 3397
ea47855f
AC
33982002-08-08 Andrew Cagney <ac131313@redhat.com>
3399
3400 * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
3401 powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
3402 powerpc*-*-*.
3403 * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
3404
69db8bae
AC
34052002-08-08 Andrew Cagney <cagney@redhat.com>
3406
3407 * gcore.c (override_derive_stack_segment): Delete variable.
3408 (preempt_derive_stack_segment): Delete function.
3409 (derive_stack_segment): Delete function.
3410 (default_derive_stack_segment): Renamed to derive_stack_segment.
3411 (override_derive_heap_segment): Delete variable.
3412 (preempt_derive_heap_segment): Delete function.
3413 (derive_heap_segment): Delete function.
3414 (default_derive_heap_segment): Rename to derive_heap_segment.
3415
cb811fe7
MS
34162002-08-06 Michael Snyder <msnyder@redhat.com>
3417
3418 * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
3419 * mips-tdep.c (mips_EABI_use_struct_convention,
3420 mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
3421 New functions. (mips_use_struct_convention): Delete.
3422 (mips_gdbarch_init): set use_gdbarch_convention.
3423
8b389c40
MS
34242002-08-06 Michael Snyder <msnyder@redhat.com>
3425
3426 * mips-tdep.c: gdbarch-ify reg_struct_has_addr.
3427 (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr,
3428 mips_o32_reg_struct_has_addr): New functions.
3429 (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
3430
5c27f28a
AC
34312002-08-07 Andrew Cagney <ac131313@redhat.com>
3432
3433 * regcache.c (pseudo_register): Delete function.
3434 (fetch_register): Delete function.
3435 (store_register): Delete function.
3436 (regcache_raw_read, legacy_read_register_gen): Use
3437 target_fetch_registers instead of fetch_register.
3438 (legacy_write_register_gen, regcache_raw_write): Use
3439 target_store_register instead of store_register.
3440 (write_register_bytes): Ditto.
3441
3442 * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
3443 (STORE_PSEUDO_REGISTER): Delete.
3444 * gdbarch.h, gdbarch.c: Regenerate.
3445
5b331675
CV
34462002-08-06 Corinna Vinschen <vinschen@redhat.com>
3447
3448 * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
3449 write dump file binary.
3450
6acdf5c7
MS
34512002-08-05 Michael Snyder <msnyder@redhat.com>
3452
3453 * mips-tdep.c (mips_find_saved_regs): Adjust stack according
3454 to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64. Enhance comment.
3455 (mips_gdbarch_init): Set N32 target to be mips64.
3456
b2f01c35
KB
34572002-08-06 Kevin Buettner <kevinb@redhat.com>
3458
3459 * frame.c (find_saved_register): Break out of loop once saved
3460 register address is found. Don't mention sparc in loop comment
3461 anymore.
3462
63db5580
KB
34632002-08-06 Kevin Buettner <kevinb@redhat.com>
3464
3465 * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
3466 mips_default_saved_regsize to 8.
3467
5e34e75e
AC
34682002-08-06 Andrew Cagney <ac131313@redhat.com>
3469
3470 * gcore.c: Do not include <sys/procfs.h>.
3471 * Makefile.in (gcore.o): Update dependencies.
3472
eb4c54a2
AC
34732002-08-06 Andrew Cagney <cagney@redhat.com>
3474
3475 * configure.tgt: Make arc-*-* obsolete.
3476 * NEWS: Mention that arc-*-* has been identifed as obsolete.
3477 * MAINTAINERS: Make arc-elf obsolete.
3478 * arc-tdep.c: Make file obsolete.
3479 * config/arc/arc.mt: Ditto.
3480 * config/arc/tm-arc.h: Ditto.
3481
ced15480
TR
34822002-08-05 Theodore A. Roth <troth@verinet.com>
3483
c1bab85b 3484 * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
ced15480 3485
b4743822
AC
34862002-08-05 Andrew Cagney <ac131313@redhat.com>
3487
3488 * mcore-tdep.c (mcore_gdbarch_init): Use
3489 generic_unwind_get_saved_register instead of
3490 generic_get_saved_register.
3491 * v850-tdep.c (v850_gdbarch_init): Ditto.
3492 * frv-tdep.c (frv_gdbarch_init): Ditto.
3493 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
3494 * s390-tdep.c (s390_gdbarch_init): Ditto.
3495 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
3496 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
3497 * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
3498
3956d554
JB
34992002-08-05 Joel Brobecker <brobecker@gnat.com>
3500
3501 * objfiles.h: Add missing #include "symfile.h"
3502
3503 * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
3504
8249c0d6
AC
35052002-08-04 Andrew Cagney <ac131313@redhat.com>
3506
3507 From 2002-08-01 david carlton <carlton@math.stanford.edu>:
3508 * hpread.c (hpread_read_struct_type): Deleted superfluous setting
3509 of FIELD_BITSIZE.
3510
b9d14705
DJ
35112002-08-04 Daniel Jacobowitz <drow@mvista.com>
3512
3513 * NEWS: Cleanup and nitpick.
3514
dd73b9bb
AC
35152002-08-03 Andrew Cagney <ac131313@redhat.com>
3516
3517 * NEWS: Cleanup. Use *-linux*-gnu*. Only use `*' for headings.
3518
043a27f8
AC
35192002-08-03 Andrew Cagney <ac131313@redhat.com>
3520
3521 * Makefile.in (gdbtk-bp.o): Update dependencies.
3522 (gdbtk-register.o): Ditto.
3523 (gdbtk-varobj.o): Ditto.
3524
46ce284d
AC
35252002-08-03 Andrew Cagney <cagney@redhat.com>
3526
3527 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
3528 m68hc11_fetch_pseudo_register.
3529 (m68hc11_pseudo_register_write): Replace
3530 m68hc11_store_pseudo_register.
3531 (m68hc11_gdbarch_init): Update.
3532
b66d6d2e
AC
3533Fri Aug 2 15:53:50 2002 Andrew Cagney <cagney@redhat.com>
3534
3535 * gdbarch.sh: Include "gdb_string.h".
3536 * gdbarch.c: Regenerate.
3537
3538 * regcache.c: Include "gdb_string.h".
3539 * ax-general.c: Ditto.
3540 * varobj.c: Ditto.
3541 * std-regs.c: Ditto.
3542 * fbsd-proc.c: Ditto.
3543 * thread.c: Ditto.
3544
3545 * Makefile.in (regcache.o): Update dependencies.
3546 (thread.o, gdbarch.o): Ditto.
3547 (ax-general.o, gdbarch.o): Ditto.
3548 (varobj.o, std-regs.o): Ditto.
3549 (fbsd-proc.o): Specify dependencies.
3550
29e1842b
AC
35512002-08-02 Andrew Cagney <cagney@redhat.com>
3552
3553 * regcache.c (regcache_cooked_read): Rename rawnum parameter to
3554 regnum.
3555 (regcache_cooked_write): Ditto.
3556
68365089
AC
35572002-08-02 Andrew Cagney <ac131313@redhat.com>
3558
3559 * regcache.c (regcache_cooked_read): New function.
3560 (regcache_cooked_write): New function.
3561 (read_register_gen): Rewrite using regcache_cooked_read.
3562 (write_register_gen): Rewrite using regcache_cooked_write.
3563
3564 * regcache.h (regcache_cooked_read, regcache_cooked_write):
3565 Declare.
3566
d8124050
AC
35672002-08-02 Andrew Cagney <cagney@redhat.com>
3568
3569 * gdbarch.sh (pseudo_register_read, pseudo_register_write):
3570 Replace the architecture methods register_read and register_write.
3571 * gdbarch.h, gdbarch.c: Regenerate.
3572 * regcache.c (init_regcache_descr): Update.
3573 (read_register_gen): Update.
3574 (write_register_gen): Update.
3575 (supply_register): Update comment.
3576
3577 * sh-tdep.c (sh_gdbarch_init): Update.
3578 (sh_pseudo_register_read, sh64_pseudo_register_read): Add
3579 `regcache' and `gdbarch' parameters. Make `buffer' a void
3580 pointer. Update code.
3581 (sh_pseudo_register_write, sh64_pseudo_register_write): Add
3582 `regcache' and `gdbarch' parameters. Make `buffer' a constant
3583 void pointer. Update code.
3584 (sh64_register_write): Delete.
3585 (sh4_register_read): Delete.
3586 (sh64_register_read): Delete.
3587 (sh4_register_write): Delete.
3588 (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
3589 void pointer, `to' parameter a void pointer.
3590 (sh_sh64_register_convert_to_raw): Ditto.
3591
a6425924
KB
35922002-08-01 Kevin Buettner <kevinb@redhat.com>
3593
3594 * mips-tdep.c (mips_register_virtual_type): Use architecture
3595 invariant return values.
3596
ff5922b5
AC
35972002-08-01 Andrew Cagney <cagney@redhat.com>
3598
3599 * linux-proc.c: Include "gdb_string.h".
3600 * Makefile.in (linux-proc.o): Update dependency list.
3601
32a6503c
KB
36022002-08-01 Kevin Buettner <kevinb@redhat.com>
3603
3604 * mips-tdep.c (mips_gdbarch_init): Add comments. Fix typo in
3605 comment.
3606
ccaa32c7
GS
36072002-08-01 Grace Sainsbury <graces@redhat.com>
3608
3609 * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
3610 to_insert_watchpoint, to_remove_watchpoint,
3611 to_stopped_by_watchpoint, to_stopped_data_address,
3612 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
3613 target vecctor. Define their corresponding macros so they call
3614 them.
3615
3616 * target.c: Add default and debug versions of for
3617 to_insert_hw_breakpoint, to_remove_hw_breakpoint,
3618 to_insert_watchpoint, to_remove_watchpoint,
3619 to_stopped_by_watchpoint, to_stopped_data_address,
3620 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
3621
78fde5f8
KB
36222002-08-01 Kevin Buettner <kevinb@redhat.com>
3623
3624 * mips-tdep.c (mips_register_virtual_type): New function.
3625 (mips_gdbarch_init): Register mips_register_virtual_type()
3626 with gdbarch machinery.
3627 * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
3628 this file instead of tm-bigmips.h.
3629 (MIPS_REGSIZE): Delete this macro.
3630 (REGISTER_VIRTUAL_TYPE): Delete macro. Undef macro so that
3631 multiarch version in mips-tdep.c will be found.
3632
db034ac5
AC
36332002-08-01 Andrew Cagney <cagney@redhat.com>
3634
3635 * NEWS: Menion that CHILL has been made obsolete.
3636
3637 * gdbtypes.c (chill_varying_type): Make chill references obsolete.
db034ac5
AC
3638 * stabsread.c (read_range_type): Ditto.
3639 * gdbtypes.h: Ditto.
3640 * language.c (binop_type_check): Ditto.
3641 (binop_result_type): Ditto.
3642 (integral_type): Ditto.
3643 (character_type): Ditto.
3644 (string_type): Ditto.
3645 (boolean_type): Ditto.
3646 (structured_type): Ditto.
3647 (lang_bool_type): Ditto.
3648 (binop_type_check): Ditto.
3649 * language.h (_LANG_chill): Ditto.
3650 * dwarfread.c (set_cu_language): Ditto.
3651 * dwarfread.c (CHILL_PRODUCER): Ditto.
3652 * dwarfread.c (handle_producer): Ditto.
3653 * expression.h (enum exp_opcode): Ditto.
3654 * eval.c: Ditto for comments.
3655 * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
3656 * expprint.c (print_subexp): Ditto.
3657 (print_subexp): Ditto.
3658 * valops.c (value_cast): Ditto.
3659 (search_struct_field): Ditto.
3660 * value.h (COERCE_VARYING_ARRAY): Ditto.
3661 * symfile.c (init_filename_language_table): Ditto.
3662 (add_psymbol_with_dem_name_to_list): Ditto.
3663 * valarith.c (value_binop): Ditto.
3664 (value_neg): Ditto.
3665 * valops.c (value_slice): Ditto.
3666 * symtab.h (union language_specific): Ditto.
3667 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
3668 (SYMBOL_DEMANGLED_NAME): Ditto.
3669 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
3670 * defs.h (enum language): Ditto.
3671 * symtab.c (got_symtab): Ditto.
3672 * utils.c (fprintf_symbol_filtered): Ditto.
3673
3674 * ch-typeprint.c: Make file obsolete.
3675 * ch-valprint.c: Make file obsolete.
3676 * ch-lang.h: Make file obsolete.
3677 * ch-exp.c: Make file obsolete.
3678 * ch-lang.c: Make file obsolete.
3679
3680 * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
3681 CHILL_LIB.
3682 (TARGET_FLAGS_TO_PASS): Ditto.
3683 (CHILLFLAGS): Obsolete.
3684 (CHILL): Obsolete.
3685 (CHILL_FOR_TARGET): Obsolete.
3686 (CHILL_LIB): Obsolete.
3687 (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
3688 ch-valprint.c.
3689 (HFILES_NO_SRCDIR): Remove ch-lang.h.
3690 (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
3691 ch-lang.o.
3692 (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
3693 targets.
3694
8aaf0b47
JB
36952002-07-31 Joel Brobecker <brobecker@gnat.com>
3696
3697 * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
3698 This does not change anything at the moment, but will be helpful
3699 later when full Ada support is integrated.
3700
f3a7b3a5
KB
37012002-07-31 Kevin Buettner <kevinb@redhat.com>
3702
3703 * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
3704 help message.
3705
fb850278
KB
37062002-07-31 Kevin Buettner <kevinb@redhat.com>
3707
3708 * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
3709 and save it in a local variable. Use variable in later test.
3710
e3bddbfa
KB
37112002-07-31 Kevin Buettner <kevinb@redhat.com>
3712
3713 * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
3714 test. (Thanks to Daniel Jacobowitz.)
3715
28d169de
KB
37162002-07-31 Kevin Buettner <kevinb@redhat.com>
3717
3718 * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
3719 (mips_abi_strings): Add "n64".
3720 (mips_gdbarch_init): Add test for n64 abi. Add MIPS_ABI_N64 case.
3721
7fe7e44e
KB
37222002-07-31 Kevin Buettner <kevinb@redhat.com>
3723
3724 * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
3725 (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
3726
c6caf090
KB
37272002-07-31 Kevin Buettner <kevinb@redhat.com>
3728
3729 * utils.c (host_pointer_to_address, address_to_host_pointer):
3730 Use gdb_assert() instead of explicit call to internal_error().
3731
c41669e0
KB
37322002-07-30 Kevin Buettner <kevinb@redhat.com>
3733
3734 * Makefile.in (rs6000-nat.o): Update dependencies.
3735
3736 From Nicholas Duffek:
3737 * Makefile.in (ALLDEPFILES): Add aix-thread.c.
3738 (aix-thread.o): New rule.
3739 * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
3740 * config/powerpc/aix432.mh: New file.
3741
2fda4977
DJ
37422002-07-30 Daniel Jacobowitz <drow@mvista.com>
3743
3744 * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
3745 (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
3746 (fetch_core_registers, ppc_linux_supply_gregset)
3747 (ppc_linux_supply_fpregset): New functions.
3748 (ppc_linux_regset_core_fns): New.
3749 (_initialize_ppc_linux_tdep): Call add_core_fns.
3750 * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
3751 and ppc_linux_supply_gregset.
3752 * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
3753 (supply_fpregset): Call ppc_linux_supply_fpregset.
3754 * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
3755 corelow.o.
3756 * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
3757
729051e6
DJ
37582002-07-30 Daniel Jacobowitz <drow@mvista.com>
3759
3760 * symtab.c (lookup_symbol): Demangle before lowercasing.
3761
5f8a3188
AC
37622002-07-30 Andrew Cagney <ac131313@redhat.com>
3763
3764 * symtab.h: Replace #include "gdb_obstack.h" with opaque
3765 declaration.
3766 * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
3767 * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
3768 * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
3769 * arch-utils.c, cli/cli-setshow.c: Unconditionally include
3770 "gdb_string.h".
3771 * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
3772 (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
3773 (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
3774 (avr-tdep.o, mon960-rom.o): Ditto.
3775 (aout_stabs_gnu_h): Define.
3776 (symtab_h): Remove $(gdb_obstack_h).
3777
67f07146
JB
37782002-07-30 Jim Blandy <jimb@redhat.com>
3779
3780 Patch from David Carlton <carlton@math.stanford.edu>:
3781 * gdbinit.in: Move the `dir' commands that add GDB's own source
3782 directory to the search path to the end, so that the `gdb' source
3783 directory will be searched first.
3784
04ea0df1
AC
37852002-07-29 Andrew Cagney <ac131313@redhat.com>
3786
3787 * gdb_obstack.h: New file.
3788 * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
3789 (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
3790 * objfiles.h: Include "gdb_obstack.h".
3791 * Makefile.in (gdb_obstack_h): Define.
3792 (symtab_h): Add $(gdb_obstack_h).
3793 (objfiles_h): Add $(gdb_obstack_h).
3794
3795 * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
3796 * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
3797 * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
3798 * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
3799 * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
3800 * p-valprint.c, symmisc.c, typeprint.c: Ditto.
3801 * symfile.c, coffread.c, c-typeprint.c: Ditto.
3802 * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
3803
3804 * Makefile.in (bcache.o): Update dependencies.
3805 (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
3806 (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
3807 (dbxread.o, dstread.o, f-typeprint.o): Ditto.
3808 (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
3809 (stabsread.o, symfile.o, symmisc.o): Ditto.
3810 (symtab.o, typeprint.o, macroexp.o): Ditto.
3811 (macrotab.o, mdebugread.o): Ditto.
3812 (f_lang_h, coff_sym_h, coff_symconst_h): Define.
3813 (coff_ecoff_h, aout_aout64_h): Define.
3814 (aout_stabs_gnu_h, libaout_h): Define.
3815
d138e37a
AC
38162002-07-29 Andrew Cagney <cagney@redhat.com>
3817
3818 * regcache.c (struct regcache_descr): Rename nr_registers to
3819 nr_cooked_registers. Revise comments describing the structure
3820 member fields.
3821 (init_regcache_descr): Update.
3822 (init_legacy_regcache_descr): Update.
3823 (read_register_gen, write_register_gen): When a cooked register in
3824 the raw register range, directly access the value from the raw
3825 register cache.
3826
460e6ec3
AC
38272002-07-29 Andrew Cagney <ac131313@redhat.com>
3828
3829 * z8k-tdep.c: Do not include "obstack.h".
3830 * h8300-tdep.c, h8500-tdep.c: Ditto.
3831 * m68hc11-tdep.c, sh-tdep.c: Ditto.
3832 * valprint.c, v850-tdep.c: Ditto.
3833 * d10v-tdep.c, mn10300-tdep.c: Ditto.
3834 * mn10200-tdep.c: Ditto.
3835
3836 * Makefile.in (z8k-tdep.o): Update dependencies.
3837 (m68hc11-tdep.o, valprint.o): Ditto.
3838 (v850-tdep.o, d10v-tdep.o): Ditto.
3839 (mn10300-tdep.o, sparc-tdep.o): Ditto.
3840 (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
3841 (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
3842 (sh_opc_h, gdb_sim_sh_h): Define.
3843 (elf_sh_h, elf_bfd_h): Define.
3844 (opcode_m68hc11_h): Define.
3845 (OPCODES_SRC, OPCODES_DIR): define.
3846 (OPCODES): Use $(OPCODES_DIR).
3847 (gdb_sim_d10v_h): Rename sim_d10v_h.
3848 (gdb_sim_arm_h): Rename sim_arm_h.
3849
790c9cf0
KB
38502002-07-26 Kevin Buettner <kevinb@redhat.com>
3851
3852 * utils.c (host_pointer_to_address, address_to_host_pointer):
3853 Change internal_error() message to indicate function responsible
3854 for the error.
3855
9647fa49
KB
38562002-07-26 Kevin Buettner <kevinb@redhat.com>
3857
3858 * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
3859 calls to local_hex_string_custom().
3860
dabbe2c0
KB
38612002-07-26 Kevin Buettner <kevinb@redhat.com>
3862
3863 * irix5-nat.c: Move IRIX shared library support from here...
3864 * solib-irix.c: ...to here. Revised substantially to work with
3865 generic solib framework.
3866
b96d0a4e
KB
3867 * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
3868 * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
3869 * mips-irix-tdep.c: New file.
3870
313fb2f6
KB
3871 * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
3872 (mips-irix-tdep.o, solib-irix.o): New rules.
3873 * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
3874 solib-irix.o.
3875 * config/mips/irix6.mt (TDEPFILES): Likewise.
3876 * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
3877
ab2eaf26
KB
38782002-07-26 Kevin Buettner <kevinb@redhat.com>
3879
177e4768 3880 * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
ab2eaf26
KB
3881 disabled (via ``#if 0'') includes.
3882
7244546a
KB
38832002-07-26 Kevin Buettner <kevinb@redhat.com>
3884
3885 * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
3886 (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
3887 (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
3888 Add support for the fpscr register.
3889 * rs6000-nat.c (regmap, fetch_inferior_registers)
3890 (store_inferior_registers, fetch_core_registers): Likewise.
3891
dd7be90a
KB
38922002-07-26 Kevin Buettner <kevinb@redhat.com>
3893
3894 * rs6000-nat.c (language.h): Include.
3895 (special_regs): Delete this array.
3896 (regmap): New function.
3897 (fetch_register, store_register): Use regmap() to map gdb
3898 register numbers to ptrace register numbers. Also, use
3899 outputs from regmap() to make decisions regarding type of
3900 ptrace() call to make. In particular, don't compare against
3901 FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
3902 (fetch_inferior_registers, store_inferior_registers): Where
3903 possible, obtain register numbers from tdep struct. Don't
3904 refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
3905 * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
3906 (LAST_UISA_SP_REGNUM): Delete.
3907
11bf77db
KB
39082002-07-25 Kevin Buettner <kevinb@redhat.com>
3909
3910 * rs6000-nat.c (ppc-tdep.h): Include.
d959a6ab
KB
3911 (fetch_registers, store_register, fetch_core_registers): Don't
3912 access registers[] directly. Instead, use supply_register() or
11bf77db
KB
3913 regcache_collect() as appropriate.
3914 (find_toc_address): Format hex address with local_hex_string().
3915
06afebeb
AC
39162002-07-25 Andrew Cagney <ac131313@redhat.com>
3917
3918 * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
3919 bfd/elf32-frv.c.
3920
8c554d79
TT
39212002-07-24 Tom Tromey <tromey@redhat.com>
3922
3923 * jv-exp.y: Marked all strings with _().
3924 (ClassInstanceCreationExpression, ArrayCreationExpression): Use
3925 internal_error.
3926 (MethodInvocation, CastExpression, parse_number, yyerror,
3927 java_type_from_name, push_expression_name, yylex): Typo fixes.
3928
e4c242d9
DJ
39292002-07-24 Daniel Jacobowitz <drow@mvista.com>
3930
3931 * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
3932 (tee_file_flush, tee_file_write, tee_file_fputs)
3933 (tee_file_isatty): New.
3934 * ui-file.h (tee_file_new): Add prototype.
3935
ebf56fd3
AS
39362002-07-24 Aidan Skinner <aidan@velvet.net>
3937
3938 * ada-lang.c: Change k&r style function definitions to prototyped
3939 form.
3940 * ada-typeprint.c: Change k&r style function definitions to prototyped
3941 form.
3942 * ada-valprint.c: Change k&r style function definitions to prototyped
3943 form.
3944
7fb623f7
AC
39452002-07-24 Andrew Cagney <cagney@redhat.com>
3946
3947 * README: Remove reference to remote-bug.
3948 * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
3949 remote-bug.c.
3950 (m88k-nat.o): Delete rule.
3951 (m88k-tdep.o): Delete rule.
3952 (remote-bug.o): Delete rule.
3953 * MAINTAINERS: Mark as obsolete.
3954 * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
3955 * m88k-tdep.c: Make file obsolete.
3956 * config/m88k/m88k.mh: Ditto.
3957 * config/m88k/delta88v4.mh: Ditto.
3958 * config/m88k/delta88v4.mt: Ditto.
3959 * config/m88k/delta88.mt: Ditto.
3960 * config/m88k/delta88.mh: Ditto.
3961 * remote-bug.c: Ditto.
3962 * config/m88k/tm-delta88.h: Ditto.
3963 * config/m88k/nm-delta88v4.h: Ditto.
3964 * config/m88k/xm-delta88.h: Ditto.
3965 * config/m88k/xm-dgux.h: Ditto.
3966 * config/m88k/tm-m88k.h: Ditto.
3967 * config/m88k/nm-m88k.h: Ditto.
3968 * config/m88k/tm-delta88v4.h: Ditto.
3969 * m88k-nat.c: Ditto.
3970 * cxux-nat.c: Ditto.
3971 * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
3972 and m88*-*-* obsolete.
3973 * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
3974 m88*-*-* obsolete.
3975
37611a2b
AC
39762002-07-24 Andrew Cagney <cagney@redhat.com>
3977
3978 * findvar.c (extract_unsigned_integer): Make `addr' parameter
3979 constant. Same for local pointer variables.
3980 (extract_signed_integer): Ditto.
3981 * defs.h (extract_unsigned_integer): Update.
3982 (extract_signed_integer): Update.
3983
1aaa5f99
AC
39842002-07-24 Andrew Cagney <cagney@redhat.com>
3985
3986 * regcache.c (regcache_raw_write): Change buf parameter to a
3987 constant void pointer.
3988 (regcache_raw_read): Change buf parameter to a void pointer.
3989 (legacy_write_register_gen): Change myaddr parameter a constant
3990 void pointer.
3991 (supply_register): Change val parameter to a const void pointer.
3992 * regcache.h (regcache_raw_write): Update declaration.
3993 (regcache_raw_read): Update declaration.
3994 (supply_register): Update declaration.
3995
b4f5539f
TT
39962002-07-24 Tom Tromey <tromey@redhat.com>
3997
3998 * defs.h (gdb_readline_wrapper): Declare.
3999 * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
4000 * tracepoint.c (read_actions): Use gdb_readline_wrapper.
4001 * top.c (gdb_readline_wrapper): New function.
4002 (command_line_input): Use it.
4003
0818c12a
AC
40042002-07-24 Andrew Cagney <cagney@redhat.com>
4005
4006 * regcache.h (regcache_raw_read, regcache_raw_write): Replace
4007 regcache_read and regcache_write.
4008 (regcache_raw_read_as_address): Replace regcache_read_as_address.
4009 * regcache.c: Update.
4010 * sh-tdep.c (sh64_push_arguments): Update comment.
4011 (sh_pseudo_register_read): Update.
4012 (sh_pseudo_register_write): Update.
4013 (sh4_register_read): Update.
4014 (sh4_register_write): Update.
4015 (sh64_pseudo_register_read): Update.
4016 (sh64_pseudo_register_write): Update.
4017 (sh64_register_read): Update.
4018 (sh64_register_write): Update.
4019 * i386-tdep.c (i386_extract_return_value): Update.
4020 (i386_extract_struct_value_address): Update.
4021 (i386_extract_return_value): Update.
4022 * blockframe.c (generic_read_register_dummy): Update.
4023 (generic_call_dummy_register_unwind): Update
4024 * infrun.c (write_inferior_status_register): Update.
4025
f7321c06
JB
40262002-07-23 Jim Blandy <jimb@redhat.com>
4027
4028 * parser-defs.h (expression_context_pc): Make this extern.
4029 (Thanks to Michael Snyder.)
4030
2037aebb
AC
40312002-07-23 Andrew Cagney <ac131313@redhat.com>
4032
4033 GDB 5.2.1 released from 5.2 branch.
4034 * NEWS: Mention changes in 5.2.1 including addition of AVR target.
4035 * README: Update to mention 5.2.1.
4036
66504d44
MS
40372002-07-23 Mark Salter <msalter@redhat.com>
4038
4039 * remote.c (remote_read_bytes): Fix check for error.
4040
27bae383
KB
40412002-07-22 Kevin Buettner <kevinb@redhat.com>
4042
4043 * aix-thread.c (language.h): Include.
4044 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
4045 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
4046 Print newlines at end of debug messages.
4047 (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
4048 (pdc_write_data): Use local_hex_string() instead of %llx formats.
4049
40502002-07-22 Kevin Buettner <kevinb@redhat.com>
4051
4052 * aix-thread.c (ppc-tdep.h): Include.
4053 (special_register_p): New function.
4054 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
4055 (store_regs_user_thread): Use register number information from
4056 gdbarch_tdep struct instead of hardcoded offsets relative to
4057 FIRST_UISA_SP_REGNUM.
4058 (fetch_regs_kernel_thread, store_regs_kernel_thread): Call
4059 special_register_p() instead of using FPLAST_REGNUM and
4060 LAST_UISA_SP_REGNUM as lower and upper bounds on the special
4061 register numbers. Also, don't assume that LAST_UISA_SP_REGNUM
4062 will be MQ's register number.
4063
40642002-07-22 Michael Snyder <msnyder@redhat.com>
206d3d3c
KB
4065
4066 * aix-thread.c (ops): Rename to aix_thread_ops.
4067 (base_ops): Rename to base_target.
4068 (ops_attach): Rename to aix_thread_attach.
4069 (ops_detach): Rename to aix_thread_detach.
4070 (ops_resume): Rename to aix_thread_detach.
4071 (ops_wait): Rename to aix_thread_wait.
4072 (ops_kill): Rename to aix_thread_kill.
4073 (init_ops): Rename to init_aix_thread_ops.
4074 (ops_fetch_register): Rename to aix_thread_fetch_register.
4075 (ops_store_register): Rename to aix_thread_store_register.
4076 (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
4077 (ops_thread_alive): Rename to aix_thread_thread_alive.
4078 (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
4079 (ops_pid_to_str): Rename to aix_thread_pid_to_str.
4080 (ops_xfer_memory): Rename to aix_thread_xfer_memory.
4081 (fetch_regs_lib): Rename to fetch_regs_user_thread.
4082 (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
4083 (store_regs_lib): Rename to store_regs_user_thread.
4084 (store_regs_kern): Rename to store_regs_kernel_thread.
4085
27bae383 40862002-07-22 Michael Snyder <msnyder@redhat.com>
cbe92db4
KB
4087
4088 * aix-thread.c (ops_prepare_to_store): Eliminate.
4089 (init_ops): Don't initialize ops.prepare_to_store.
4090 (store_regs_kern): Pre-fetch register buffers from child,
4091 because some registers may not be in the cache. Copy
4092 regs from register cache only if they are cached.
4093 (store_regs_lib): Copy regs from register cache only
4094 if they are cached.
4095 (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
4096 fill_gprs64): Ditto.
4097
61c5da0b
KB
40982002-07-22 Kevin Buettner <kevinb@redhat.com>
4099
4100 * aix-thread.c (gdb_assert.h): Include.
4101 (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
4102 register sizes (from register cache) match size of buffer holding
4103 register data.
4104 (fill_sprs32): Change parameter types to match those in the ptrace()
4105 buffer.
4106 (store_regs_lib): Likewise, but for 32-bit temporary variables.
4107 (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
4108
41092002-07-22 Michael Snyder <msnyder@redhat.com>
4110
4111 * aix-thread.c (supply_sprs64): Cosmetic change.
4112 (supply_sprs32): Cosmetic change.
4113 (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
4114 (fill_sprs64): Use regcache_collect instead of read_register.
4115 (store_regs_lib): Use regcache_collect instead of
4116 read_register. Use fill_sprs32 instead of fill_sprs64,
4117 if debugging a 32-bit architecture.
4118 (store_regs_kern): Use fill_gprs64 etc. to pull the values
4119 out of the register cache, instead of passing a pointer into
4120 the register cache directly to ptrace. Use regcache_collect
4121 insteaad of read_register.
4122 (ops_prepare_to_store): Use target_read_registers instead
4123 of read_register_bytes.
4124
36479eb1
AS
41252002-07-20 Aidan Skinner <aidan@velvet.net>
4126
4127 * MAINTAINERS: Add self under write after approval.
4128
80ae6ee2
AS
41292002-07-20 Aidan Skinner <aidan@velvet.net>
4130
4131 * ada-tasks.c: Change k&r style function definitions to prototyped
4132 form.
4133
8a8ab2b9
AC
41342002-07-19 Andrew Cagney <ac131313@redhat.com>
4135
4136 * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
4137 * x86-64-tdep.c: Include "objfiles.h".
4138 (x86_64_gdbarch_init): Set in_solib_call_trampoline to
4139 in_plt_section. From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
4140
fb16b900
ML
41412002-07-17 Michal Ludvig <michal@suse.cz>
4142
4143 * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
4144 (update_context): Initialise cfa variable.
4145
0fe7bf7b
MS
41462002-07-17 Michael Snyder <msnyder@redhat.com>
4147
4148 * aix-thread.c: Shorten some long lines.
4149 Bring comments into line with code spec.
4150
488f131b
JB
41512002-07-18 Joel Brobecker <brobecker@gnat.com>
4152
4153 * infrun.c: Re-indent using gdb_indent.sh.
4154
46c415d2
JB
41552002-07-18 Joel Brobecker <brobecker@gnat.com>
4156
4157 * infrun.c (handle_inferior_event): Remove unneeded extra brace.
4158 Leave the indentation temporarily untouched, to minimize the diffs.
4159
cdecafbe
EZ
41602002-07-18 Elena Zannoni <ezannoni@redhat.com>
4161
4162 * stabsread.c: Make os9k sections of the code obsolete,
4163 for real this time.
4164 * stabsread.h: Make os9k sections of the code obsolete.
4165
7b6aa020
ML
41662002-07-18 Michal Ludvig <mludvig@suse.cz>
4167
09ec9b38
ML
4168 * linux-low.c (regsets_store_inferior_registers): Add free()
4169 at the end of a loop to prevent memory leak.
4170 * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
4171 (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
7b6aa020
ML
4172 * config/sparc/tm-sp64linux.h: Make the rest of #endif
4173 line a comment.
4894ac5d 4174 * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
7b6aa020 4175
233282cd
JB
41762002-07-17 Jim Blandy <jimb@redhat.com>
4177
4178 * macrocmd.c (info_macro_command): Remove newline from error
4179 message.
4180
7b6aa020 41812002-07-17 J"orn Rennecke <joern.rennecke@superh.com>
2f14585c
JR
4182
4183 * sh-tdep.c (sh_dsp_register_sim_regno): New function.
4184 (sh_gdbarch_init): Use it for sh-dsp.
4185
f7ef9339
KB
41862002-07-16 Kevin Buettner <kevinb@redhat.com>
4187
4188 * dwarf2read.c (read_initial_length): Handle older, non-standard,
4189 64-bit DWARF2 format.
4190
8dd72958
JB
41912002-07-16 Joel Brobecker <brobecker@gnat.com>
4192
4193 * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
4194 <sys/proc.h> when not available.
4195
a99a9e1b
AC
41962002-07-16 Andrew Cagney <ac131313@redhat.com>
4197
4198 * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
4199 * stabsread.c: Make os9k sections of the code obsolete.
4200 * configure.tgt: Make i[3456]86-*-os9k target obsolete.
4201 * config/i386/i386os9k.mt: Make file obsolete.
4202 * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
4203 (COMMON_OBS): Remove os9kread.o
4204 (SFILES): Remove os9kread.c.
4205 (os9kread.o, remote-os9k.o): Make target obsolete.
4206 * remote-os9k.c: Make file obsolete.
4207 * os9kread.c: Make file obsolete.
4208 * Makefile.in
4209
7a3085c1
AC
42102002-07-16 Andrew Cagney <ac131313@redhat.com>
4211
4212 * NEWS: Mention that the FR30 has been made obsolete.
4213 * fr30-tdep.c: Make file obsolete.
4214 * config/fr30/tm-fr30.h: Ditto.
4215 * config/fr30/fr30.mt: Ditto.
4216 * configure.tgt: Make fr30-*-elf obsolete.
4217 * MAINTAINERS: Make fr30-elf obsolete.
4218
28a93f5a
PM
42192002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
4220
4221 * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
4222 found is not inside a section.
4223
be006b8b
KB
42242002-07-15 Kevin Buettner <kevinb@redhat.com>
4225
4226 * aix-thread.c (ptrace_check): Use safe_strerror() instead of
4227 strerror().
4228 (pdc_realloc): Use xrealloc() instead of realloc().
4229
14fa3751
KB
42302002-07-15 Kevin Buettner <kevinb@redhat.com>
4231
4232 * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
4233 (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
4234 (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
4235 macros.
4236
42cc437f
KB
42372002-07-15 Kevin Buettner <kevinb@redhat.com>
4238
4239 * aix-thread.c (ptrace_check): Eliminate goto.
4240 (sync_threadlists): Eliminate gotos. Also, fix array overrun
4241 problem.
4242
8e2c28d4
KB
42432002-07-15 Kevin Buettner <kevinb@redhat.com>
4244
4245 * aix-thread.c (gdbcmd.h): Include.
4246 (DEBUG, DBG, DBG2, dbg): Eliminate.
4247 (debug_aix_thread): New static global.
4248 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
4249 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
4250 (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
4251 invocations to DBG and DBG2 macros to test against
4252 ``debug_aix_thread'' and call fprintf_unfiltered().
4253 (_initialize_aix_thread): Add new command "set debug aix-thread".
4254
30413464
AC
42552002-07-15 Andrew Cagney <ac131313@redhat.com>
4256
4257 From Gerhard Tonn <TON@de.ibm.com>:
4258 * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
4259 instead of supply_register.
4260
7c43edc1
AC
42612002-07-15 Andrew Cagney <ac131313@redhat.com>
4262
4263 * dwarf2cfi.c: Include "gdb_assert.h".
4264 (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
4265 non-NULL.
4266 (update_context): Do not use __func__. Add missing ``break''.
4267 (update_context): Do not use __func__.
4268
9364a0ef
EZ
42692002-07-15 Elena Zannoni <ezannoni@redhat.com>
4270
4271 * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
4272 and its setting. Set gdbarch instruction printing functions
4273 directly. For non-rs6000 case use new function
4274 gdb_print_insn_powerpc.
4275 (gdb_print_insn_powerpc): New function.
4276
3fbeef0b
AC
42772002-07-13 Andrew Cagney <ac131313@redhat.com>
4278
92eb23c5 4279 * NEWS: Mention that the d30v has been marked obsolete.
3fbeef0b
AC
4280 * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
4281 * configure.tgt: Mark d30v-*-* as obsolete.
4282 * d30v-tdep.c: Mark file as obsolete.
4283 * config/d30v/d30v.mt: Ditto.
4284 * config/d30v/tm-d30v.h: Ditto.
4285
aacb1f0a
AS
42862002-07-13 Aidan Skinner <aidan@velvet.net>
4287
4288 * ada-tasks.c (add_task_entry): replace calls to
4289 malloc() with xmalloc
4290 * ada-tasks.c (init_task_list): replace calls to free with xfree()
4291
4292 * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
4293 ada_finish_decode_line_1, all_sals_for_line
4294 ada_breakpoint_rewrite): replace calls to free() with xfree()
4295
c11d79f2
KB
42962002-07-12 Kevin Buettner <kevinb@redhat.com>
4297
4298 From Nicholas Duffek (with minor changes by Martin Hunt,
4299 Louis Hamilton, and Kevin Buettner):
4300 * aix-thread.c: New file.
4301
8e19ed76
PS
43022002-07-12 Petr Sorfa <petrs@caldera.com>
4303
4304 * dwarf2read.c (dwarf2_invalid_attrib_class): New
4305 complaint for invalid attribute class or form.
4306 (read_func_scope): DW_AT_frame_base
4307 better handling of DW_AT_block*.
4308 (dwarf2_add_member_fn): DW_AT_vtable_elem_location
4309 better handling of DW_AT_block*.
4310 (read_common_block): DW_AT_location
4311 better handling of DW_AT_block*.
4312 (read_partial_die): DW_AT_location better handling
4313 of DW_AT_block*.
4314 (new_symbol): DW_AT_external better handling of
4315 DW_AT_block*. Proper initialization of variable
4316 "addr".
4317 (attr_form_is_block): New function that returns true
4318 if the attribute's form is of DW_FORM_block*.
4319
295401f7
DJ
43202002-07-12 Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
4321
4322 * valops.c (find_method_list): Remove comment about
4323 removed STATIC_MEMFUNCP argument.
4324 (value_find_oload_method_list): Likewise.
4325
e42dc924
KB
43262002-07-12 Kevin Buettner <kevinb@redhat.com>
4327
4328 From Nicholas Duffek:
4329 * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
4330 target_new_objfile_hook.
4331
6904b546
KB
43322002-07-12 Kevin Buettner <kevinb@redhat.com>
4333
4334 From Nicholas Duffek:
4335 * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
4336 csect.
4337
53fe9346
AC
43382002-07-12 Andrew Cagney <cagney@redhat.com>
4339
4340 * MAINTAINERS: Mention --enable-sim-build-warnings.
4341 (m68hc11-elf): Disable sim build warnings.
4342 (m32r-elf): Mark as broken obsolete candidate.
4343 (x86_64-linux-gnu): Mark as buildable with -Werror.
4344 (arm-elf): Change -w to ``,'' which enables warnings but not
4345 -Werror.
4346
af5f3db6
AC
43472002-07-12 Andrew Cagney <ac131313@redhat.com>
4348
4349 * bcache.h: Update copyright.
4350 (struct bstring, struct bcache): Move definition to "bcache.c".
4351 Replaced by opaque declaration.
4352 (bcache_xfree): Replace free_bcache.
4353 (bcache_xmalloc, bcache_memory_used): Declare.
4354
4355 * bcache.c: Update copyright.
4356 (struct bstring, struct bcache): Moved to here from "bcache.h".
4357 Update comments.
4358 (bcache_xmalloc, bcache_memory_used): New functions.
4359 (bcache_xfree): Replace function free_bcache.
4360
4361 * Makefile.in (objfiles.o): Add $(bcache_h).
4362 (objfiles_h): Remove $(bcache_h).
4363 (symfile.o): Add $(bcache_h).
4364
4365 * symmisc.c: Update copyright.
4366 (print_symbol_bcache_statistics): Pass psymbol_cache by value.
4367 (print_objfile_statistics): Use bcache_memory_used.
4368
4369 * symfile.c: Include "bcache.h".
4370 (reread_symbols): Use bcache_xfree.
4371 (reread_symbols): Use bcache_xmalloc and bcache_xfree.
4372 (add_psymbol_to_list): Pass psymbol_cache by value.
4373 (add_psymbol_with_dem_name_to_list): Ditto.
4374
4375 * objfiles.h: Update copyright.
4376 (struct bcache): Declare opaque. Do not include "bcache.h".
4377 (struct objfile): Change psymbol_cache and macro_cache to ``struct
4378 bcache'' pointers.
4379 * dwarf2read.c (macro_start_file): Pass macro_cache by value.
4380
4381 * objfiles.c: Include "bcache.h". Update copyright.
4382 (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
4383 macro_cache.
4384 (free_objfile): Use bcache_xfree.
4385
444199e7
GS
43862002-07-11 Grace Sainsbury <graces@redhat.com>
4387
4388 * monitor.c (monitor_fetch_register): Make name a constant.
4389 (monitor_store_register): Same.
4390
261397f8
DJ
43912002-07-11 Daniel Jacobowitz <drow@mvista.com>
4392
4393 Based on patch from Daniel Berlin <dberlin@dberlin.org>.
4394 * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
4395 (finish_block) For non-function blocks, hash the symbol table. For
4396 function blocks, mark the symbol table as unhashed.
4397 * minsyms.c (msymbol_hash): Return hash value without taking modulus.
4398 (msymbol_hash_iw): Likewise.
4399 (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
4400 value.
4401 (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
4402 (lookup_minimal_symbol): Likewise for both.
4403 * symtab.h (struct block): Add `hashtable' flag. Comment the
4404 hashtable.
4405 (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
4406 (ALL_BLOCK_SYMBOLS): Update.
4407 (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
4408 (struct symbol): Add `hash_next' pointer.
4409 * symtab.c (lookup_block_symbol): Search using the hash table when
4410 possible.
4411 (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
4412 (search_symbols, find_addr_symbol): Likewise.
4413
4414 * dstread.c (process_dst_block): Clear hashtable bit for new block.
4415 (read_dst_symtab): Likewise.
4416 * jv-lang.c (get_java_class_symtab): Likewise.
4417 * mdebugread.c: Include "gdb_assert.h".
4418 (shrink_block): Assert that the block being modified is not hashed.
4419 * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
4420 * symmisc.c (free_symtab_block): Walk the hash table when freeing
4421 symbols.
4422 (dump_symtab): Recognize hashed blocks.
4423 * printcmd.c (print_frame_args): Assert that function blocks do not
4424 have hashed symbol tables.
4425 * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
4426 (fill_in_ada_prototype, debug_print_block): Likewise.
4427 (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS. Handle hash tables.
4428
6f0eaa01
CV
44292002-07-11 Corinna Vinschen <vinschen@redhat.com>
4430
4431 * stack.c (print_frame): Use result of frame_address_in_block()
4432 instead of fi->pc when evaluating symbols.
4433 (backtrace_command_1): Ditto.
4434
a208b0cb
AC
44352002-07-11 Andrew Cagney <cagney@redhat.com>
4436
4437 * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
4438 Make static.
4439
4440 * arm-tdep.c (arm_register_name): Make return type constant.
4441
a6b6b089
AC
44422002-07-10 Andrew Cagney <ac131313@redhat.com>
4443
5ae5f592
AC
4444 * win32-nat.c (has_detach_ability): Convert to strict ISO C
4445 prototype.
4446 * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
4447 * s390-tdep.c (s390_fp_regnum): Ditto.
4448 (s390_read_fp): Ditto.
4449 (s390_pop_frame): Ditto.
4450 (_initialize_s390_tdep): Ditto.
4451 * remote.c (get_remote_state): Ditto.
4452 * procfs.c (mappingflags): Ditto.
4453 * memattr.c (_initialize_mem): Ditto.
4454 * mcore-tdep.c (mcore_pop_frame): Ditto.
4455 * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
4456 * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
4457 * language.c (set_case_str): Ditto.
4458 * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
4459 * frv-tdep.c (new_variant): Ditto.
4460 (frv_stopped_data_address): Ditto.
4461 * dwarf2cfi.c (fde_chunks_need_space): Ditto.
4462 (context_alloc): Ditto.
4463 (frame_state_alloc): Ditto.
4464 (unwind_tmp_obstack_init): Ditto.
4465 (unwind_tmp_obstack_free): Ditto.
4466 (cfi_read_fp): Ditto.
4467 * cris-tdep.c (cris_saved_pc_after_call): Ditto.
4468 (cris_pop_frame): Ditto.
4469 * c-lang.c (scanning_macro_expansion): Ditto.
4470 (finished_macro_expansion): Ditto.
4471 (c_preprocess_and_parse): Ditto.
4472 * gdbarch.sh: Ditto.
4473 * gdbarch.h, gdbarch.c: Regenerate.
4474 * config/mn10200/tm-mn10200.h: Adjust indentation.
4475 * target.c: Adjust indentation.
4476 * symtab.h: Adjust indentation.
4477 * stabsread.h: Adjust indentation.
4478 * remote-es.c: Adjust indentation.
4479 * os9kread.c: Adjust indentation.
4480
44812002-07-10 Andrew Cagney <ac131313@redhat.com>
4482
a6b6b089
AC
4483 * wince.c (_initialize_wince): Rename _initialize_inftarg.
4484 * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
4485
a1789893
GS
44862002-07-10 Grace Sainsbury <graces@redhat.com>
4487
4488 * NEWS: Mention m68k, mcore multi-arching.
4489 * MAINTAINERS: Change status of m68k, mcore to reflect
4490 multi-arching.
4491
02f0d45d
DJ
44922002-07-10 Daniel Jacobowitz <drow@mvista.com>
4493
4494 * valops.c (find_overload_match): Free oload_syms.
4495
f15f768e
JB
44962002-07-09 Joel Brobecker <brobecker@gnat.com>
4497
4498 Define HAVE_SYS_PROC_H if sys/proc.h exists
4499 * configure.in: Add check for sys/proc.h
4500 * config.in: Regenerate.
4501 * configure: Regenerate.
4502
902a7139
GS
45032002-07-09 Grace Sainsbury <graces@redhat.com>
4504
4505 * config/m68k/tm-m68k.h: Remove macros wrapped in
4506 #if !GDB_MULTI_ARCH.
4507
a534e424
AC
45082002-07-08 Andrew Cagney <ac131313@redhat.com>
4509
4510 * config.in, configure: Regenerate.
4511
9b94f7bf
MK
45122002-07-08 Mark Kettenis <kettenis@gnu.org>
4513
4514 * dwarf2cfi.c: Include "gcore.h".
4515 (execute_stack_op): Fix implementation of the
4516 DW_OP_deref and DW_OP_deref_size operators by letting do their
4517 lookup in the target.
4518
1d34db41
MK
45192002-07-07 Mark Kettenis <kettenis@gnu.org>
4520
4521 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
4522 * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
4523 tdep->sc_sp_offset.
4524
79d5b63a
DJ
45252002-07-05 Daniel Jacobowitz <drow@mvista.com>
4526
4527 Fix PR gdb/595, gdb/602
4528 * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
4529 Don't call value_cast, just read the vtable pointer; update comments
4530 to match.
4531
3bb912e8
GS
45322002-07-05 Grace Sainsbury <graces@redhat.com>
4533
4534 * config/mcore/tm-mcore.h: Remove file.
4535 * config/mcore/mcore.mt: Remove definition of TM_FILE
4536 * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
4537
ca39387d
MK
45382002-07-05 Mark Kettenis <kettenis@gnu.org>
4539
4540 * i386bsd-tdep.c: Include "gdb_string.h".
4541
efdc1108
GS
45422002-07-04 Grace Sainsbury <graces@redhat.com>
4543
4544 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
4545 (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
4546 mcore-tdep.
4547 (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
4548 (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
4549 * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
4550 (RETVAL_REGNUM): Move macros from tm-mcore.h
4551 (mcore_reg_struct_has_addr): New function.
4552 (mcore_gdbarch_init): Added initializations for the macros removed
4553 from tm-mcore.h.
4554
bb21884d
MK
45552002-07-04 Mark Kettenis <kettenis@gnu.org>
4556
4557 * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
4558 traditonal string branding within the ELF header.
4559
228c6d41
DJ
45602002-07-04 Daniel Jacobowitz <drow@mvista.com>
4561
4562 * symtab.c (remove_params): New function.
4563 (make_symbol_overload_list): Use it instead of cplus_demangle.
4564 (overload_list_add_symbol): Likewise. Reorder. Fix memory leak.
4565
2404952e
MK
45662002-07-04 Mark Kettenis <kettenis@gnu.org>
4567
e5e4acad
MK
4568 * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
4569
baadce09
MK
4570 * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
4571 New variables.
4572 (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
4573 and tdep->sigtramp_end.
4574 * i386obsd-nat.c: New file.
4575 * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
4576
2404952e
MK
4577 * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
4578 Don't call get_current_frame().
4579
9b4f1ba7
PM
45802002-07-04 Pierre Muller <muller@ics.u-strasbg.fr>
4581
4582 * i386-nat.c (child_post_startup_inferior): New function
4583 calling i386_cleanup_dregs if
4584 I386_USE_GENERIC_WATCHPOINTS is defined.
4585 * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
4586 conditional to acknowledge that i386-nat.c has its
4587 own child_post_startup_inferior function.
4588
c0d1d883
MK
45892002-07-04 Mark Kettenis <kettenis@gnu.org>
4590
00f8375e
MK
4591 * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
4592 * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
4593 instead of MAX_REGISTER_RAW_SIZE.
4594 (i386_extract_return_value, i386_extract_struct_value_address):
4595 Convert to use regcache.
4596 (i386_gdbarch_init): Set max_register_raw_size and
4597 max_register_virtual_size to I386_MAX_REGISTER_SIZE.
4598 Set extract_return_value and extract_struct_value_address instead
4599 of their deprecated variants.
4600
c0d1d883
MK
4601 Convert i386 target to generic dummy frames.
4602 * i386-tdep.c: Include "symfile.h".
4603 (i386_frameless_signal_p): Consider a function to be frameless if
4604 the pc points at the first instruction of the function.
4605 (i386_frame_chain): Handle (generic) call dummies.
4606 (i386_frame_saved_pc): Likewise.
4607 (i386_frame_init_saved_regs): Remove code dealing with call
4608 dummies on the stack.
4609 (i386_push_dummy_frame): Removed.
4610 (i386_call_dummy_words): Removed.
4611 (i386_fix_call_dummy): Removed.
4612 (i386_push_return_address): New function.
4613 (i386_do_pop_frame): Renamed from i386_pop_frame. Add FRAME
4614 parameter, and don't call get_current_frame.
4615 (i386_pop_frame): New function.
4616 (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
4617 call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
4618 entry_point_address, set call_dummy_breakpoint_offset to 0, set
4619 call_dummy_length to 0, set call_dummy_words to NULL, set
4620 sizeof_call_dummy_words to 0, set fix_call_dummy to
4621 generic_fix_call_dummy, set pc_in_call_dummy to
4622 pc_in_call_dummy_at_entry_point, set push_dummy_frame to
4623 generic_push_dummy_frame, set push_return_address to
4624 i386_push_return_address and set frame_chain_valid to
4625 generic_file_frame_chain_valid.
4626
049ee0e4
AC
46272002-07-03 Andrew Cagney <ac131313@redhat.com>
4628
4629 * gdbarch.sh (struct regcache): Add opaque declaration.
4630 (EXTRACT_RETURN_VALUE): New architecture method.
4631 (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
4632 * gdbarch.h, gdbarch.c: Regenerate.
4633 * arch-utils.c (legacy_extract_return_value): New function.
4634 * arch-utils.h (legacy_extract_return_value): Declare.
4635 * values.c (value_being_returned): Re-enable code handling
4636 EXTRACT_STRUCT_VALUE_ADDRESS. Move
4637 deprecated_grub_regcache_for_registers call to block handling
4638 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
4639 (EXTRACT_RETURN_VALUE): Do not define.
4640
4e0d9804
GS
46412002-07-03 Grace Sainsbury <graces@redhat.com>
4642
4643 * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
4644 (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
4645 (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
4646 (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
4647 (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
4648 (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
4649 (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
4650 (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
4651 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
4652 (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
4653 * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
4654 argument so the function fits the prototype in the architecture
4655 vector.
4656 (mcore_pop_frame): Remove argument so the function fits the
4657 prototype. Use get_current_frame instead of the argument.
4658 (mcore_push_arguments): Change type of struct_return so the
4659 function can be used in the architecture vector.
4660 (mcore_store_struct_return): Add.
4661 (mcore_frame_init_saved_regs): Add.
4662 (mcore_gdbarch_init): Add function calls to replace the macros
4663 removed from tm-mcore.h
4664
36160dc4
AC
46652002-07-03 Andrew Cagney <ac131313@redhat.com>
4666
4667 * infcmd.c (print_return_value): Remove compatibility code calling
4668 deprecated_grub_regcache_for_registers.
4669
4670 * values.c: Include "regcache.h".
4671 (value_being_returned): Update. Use
4672 deprecated_grub_regcache_for_registers to extract the register
4673 buffer address.
4674 * value.h (value_being_returned): Change ``retbuf'' parameter to a
4675 ``struct regcache''.
4676 * Makefile.in (values.o): Add dependency on $(regcache_h).
4677
4678 * inferior.h (run_stack_dummy): Change type of second parameter to
4679 a ``struct regcache''.
4680 * valops.c (hand_function_call): Change type of retbuf to ``struct
4681 regcache''. Allocate using regcache_xmalloc, clean using
4682 make_cleanup_regcache_xfree.
4683 * infcmd.c (run_stack_dummy): Update. Use
4684 regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
4685
4686 * regcache.c (do_regcache_xfree): New function.
4687 (make_cleanup_regcache_xfree): New function.
4688 * regcache.h (make_cleanup_regcache_xfree): Declare.
4689
e64d9b3d
MH
46902002-07-03 Martin M. Hunt <hunt@redhat.com>
4691
4dd79c29
MH
4692 * event-top.c (command_line_handler): Don't read past
4693 beginning of buffer.
e64d9b3d 4694
4dd79c29
MH
46952002-07-03 Martin M. Hunt <hunt@redhat.com>
4696
e64d9b3d
MH
4697 * varobj.c (struct varobj_root): Change frame from CORE_ADDR to
4698 struct frame_id.
4699 (varobj_create): Store frame_id for root.
4700 (varobj_gen_name): Use xasprintf.
4701 (varobj_update): Save and restore frame using get_frame_id() and
4702 frame_find_by_id().
4703 (create_child): Use xasprintf.
4704 (new_root_variable): Initialize frame_id.
4705 (c_name_of_child): Use xasprintf. Call find_frame_by_id().
4706 (c_value_of_variable): Use xasprintf. Move mem_fileopen call
4707 to prevent memory leak.
4708
26e6c56a
AC
47092002-07-03 Andrew Cagney <ac131313@redhat.com>
4710
4711 * valops.c (hand_function_call): Move declaration of retbuf to
4712 start of function, allocate using malloc, add a cleanup but before
4713 the inf_status cleanup, cleanup the buffer. Rename local variable
4714 old_chain to inf_status_cleanup.
4715
f436dd25
MH
47162002-07-03 Martin M. Hunt <hunt@redhat.com>
4717
4718 * top.c (execute_command): Use cmd_func() and cmd_func_p().
4719
4720 * cli/cli-decode.c (cmd_func_p): New function.
4721 (cmd_func): New function.
4722
4723 * command.h: Add cmd_func() and cmd_func_p().
4724
4cfe2084
GS
47252002-07-03 Grace Sainsbury <graces@redhat.com>
4726
4727 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
4728 (REGISTER_SIZE): Remove.
4729 (MAX_REGISTER_RAW_SIZE): Remove.
4730 (REGISTER_VIRTUAL_TYPE): Remove.
4731 (MAX_REGISTER_VIRTUAL_SIZE): Remove.
4732 (REGISTER_NAME): Remove.
4733 (USE_GENERIC_DUMMY_FRAMES): Remove.
4734 (CALL_DUMMY): Remove.
4735 (CALL_DUMMY_START_OFFSET): Remove.
4736 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
4737 (CALL_DUMMY_LOCATION): Remove.
4738 (FIX_CALL_DUMMY): Remove.
4739 (CALL_DUMMY_ADDRESS): Remove.
4740 (SIZEOF_CALL_DUMMY_WORDS): Remove.
4741 (SAVE_DUMMY_FRAME_TOS): Remove.
4742 * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
4743 (mcore_register_virtual_type): New function.
4744 (mcore_register_byte): New function.
4745 (mcore_register_size): New function.
4746 (mcore_register_name): New function.
4747 (mcore_gdbarch_init): New function. Add set_gdbarch calls for
4748 macros removed from tm-mcore.h.
4749 (mcore_dump_tdep): Add.
4750 (_initialize_mcore_tdep): Add gdbarch_register call.
4751
4fd667e9
MK
47522002-07-03 Mark Kettenis <kettenis@gnu.org>
4753
4754 * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
4755 frameless_look_for_prologue, such that we actually call this
4756 function.
4757
42f99ac2
JB
47582002-07-02 Joel Brobecker <brobecker@gnat.com>
4759
4760 * frame.h (frame_address_in_block): New function.
4761
4762 * blockframe.c (frame_address_in_block): New function extracted
4763 from get_frame_block().
4764 (get_frame_block): Use frame_address_in_block().
4765 (block_innermost_frame): Use frame_address_in_block() to match
4766 the frame pc address against the block boundaries rather than
4767 the frame pc directly. This prevents a failure when a frame pc
4768 is actually a return-address pointing immediately after the end
4769 of the given block.
4770
103a1597 47712002-07-02 Grace Sainsbury <graces@redhat.com>
83b4a0fe
GS
4772
4773 * MAINTAINERS: Add self under write after approval.
4774
47752002-07-02 Grace Sainsbury <graces@redhat.com>
4776
103a1597
GS
4777 * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
4778 used in architecture vector. The default is
4779 m68k_local_breakpoint_from_pc.
4780 (m68k_local_breakpoint_from_pc): Add.
4781 (enum): Add register numbers from tm-m68k.h.
4782 (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
4783 vector.
4784 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
4785 GDB_MULTI_ARCH_PARTIAL.
4786 (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
4787 (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
4788 m68k-tdep.c.
4789 (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
4790 (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
4791 to enum in m68k-tdep.c
4792
7a5a0534
JB
47932002-07-02 Joel Brobecker <brobecker@gnat.com>
4794
4795 * solib-osf.c (open_map): Compute the list of shared libraries
4796 loaded by the inferior, rather than the list of libraries loaded
4797 by GDB itself. Otherwise, GDB ends up reading the symbols from
4798 the wrong shared libraries...
4799
6f558d74
MK
48002002-07-02 Mark Kettenis <kettenis@gnu.org>
4801
b7d15bf7
MK
4802 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
4803 (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
4804 macros.
4805 (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
4806 Remove functions.
4807 (FRAMELESS_SIGNAL): Remove function.
4808 (i386_linux_frame_chain, i386_linux_frame_saved_pc,
4809 i386_linux_saved_pc_after_call): Removed.
4810 (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
4811 tdep->sc_pc_offset and tdep->sc_sp_offset. Don't override
4812 frame_chain, frame_saved_pc and saved_pc_after_call any longer.
4813
6bff26de
MK
4814 * i386-tdep.c (i386_frameless_signal_p): New function.
4815 (i386_frame_chain): Deal with frameless signals.
4816 (i386_sigtramp_saved_sp): New function.
4817 (i386_frame_saved_pc): Deal with frameless signals.
4818 (i386_saved_pc_after_call): Make sure the correct value is
4819 returned just after entry into a sigtramp.
4820 * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
4821 i386fbsd4_sc_sp_offset): New variables.
4822 (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
4823 these variables to initialize tdep->sc_sp_offset. * i386bsd-nat.c
4824 (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
4825 similiar to what we already did for sc_pc_offset.
4826 * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
4827 tdep->sc_sp_offset.
4828
6f558d74
MK
4829 * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
4830
145564b7
ML
48312002-07-02 Michal Ludvig <mludvig@suse.cz>
4832
4833 * config/i386/tm-x86-64linux.h: New.
4834 * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
4835 definitions.
4836 * config/i386/nm-x86-64.h: Rename to ...
4837 * config/i386/nm-x86-64linux.h: ... this one.
4838 * config/i386/x86-64linux.mh: Reflect the above change.
4839
3a1e71e3
MK
48402002-07-01 Mark Kettenis <kettenis@gnu.org>
4841
21d0e8a4
MK
4842 * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
4843 with sigcontext_addr. Add sc_sp_offset.
4844 (i386bsd_sigtramp_saved_pc): Remove prototype.
4845 (i386bsd_sicontext_addr): Add prototype.
4846 * i386-tdep.c (i386_sigtramp_saved_pc): New function.
4847 (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
4848 (i386_svr4_sigtramp_saved_pc): Removed.
4849 (i386_svr4_sigcontext_addr): New function.
4850 (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
4851 Initialize tdep->sigcontext_addr instead. Initialize
4852 tdep->sc_pc_offset and tdep->sc_sp_offset.
4853 (i386_gdbarch_init): Likewise.
4854 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
4855 any more.
4856 (i386bsd_sigtramp_saved_pc): Remove function.
4857 (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
4858 Initialize tdep->sigcontext_addr instead. Initialize
4859 tdep->sc_pc_offset.
4860 * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
4861 of tdep->sigtramp_saved_pc.
4862 * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
4863 tdep->sigtramp_saved_pc. Initialize tdep->sigcontext_addr
4864 instead.
4865
3a1e71e3
MK
4866 * i386-tdep.c (i386_frameless_function_invocation,
4867 i386_frame_num_args, i386_frame_init_saved_regs,
4868 i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
4869 i386_pop_frame, i386_push_arguments, i386_store_struct_return,
4870 i386_extract_return_value, i386_store_return_value,
4871 i386_extract_struct_value_address, i386_register_virtual_type,
4872 i386_register_convertible, i386_register_convert_to_virtual,
4873 i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
4874 i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
4875 static.
4876
52e9098c
MK
48772002-07-01 Mark Kettenis <kettenis@gnu.org>
4878
77b13a25
MK
4879 * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
4880
52e9098c
MK
4881 * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
4882 * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
4883 this macro. Include "value.h".
4884
1b372fff
AS
48852002-06-30 Aidan Skinner <aidan@velvet.net>
4886
4887 * ada-exp.tab.c: remove as it's a generated file
4888 * ada-lex.c: remove as it's a generated file
4889
9c5045b5
MK
48902002-06-30 Mark Kettenis <kettenis@gnu.org>
4891
4a93c5bb
MK
4892 * config/i386/tm-i386.h (struct frame_info, struct
4893 frame_saved_regs, struct value, struct type): Remove forward
4894 declarations.
4895
322d4fe0
MK
4896 * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
4897 (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
4898 * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
4899 (FILL_FPXREGSET): Define.
4900
fdd8263d
MK
4901 * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
4902
482e577b
MK
4903 * configure.tgt (i[3456]86-*-openbsd*): Fold into
4904 i[3456]86-*-netbsd* case.
4905 * config/i386/tm-obsd.h: Removed.
4906 * config/i386/obsd.mt: Removed.
4907 * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
4908 core-aout.o.
4909 (MH_CFLAGS): Add -DYYDEBUG=0.
4910
6916549a
MK
4911 * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
4912 i386nbsd_sc_pc_offset on OpenBSD too.
4913
9c5045b5
MK
4914 * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
4915 (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
4916 * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
4917 define.
4918 * i386bsd-tdep.c: Include "arch-utils.h".
4919 (i386bsd_aout_in_solib_call_trampoline): New function.
4920 (i386bsd_init_abi): Set in_solib_call_trampoline to
4921 i386bsd_aout_in_solib_call_trampoline.
4922 (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
4923 in_solib_call_trampoline to generic_in_solib_call_trampoline.
4924
aa84d1bb
AC
49252002-06-28 Andrew Cagney <ac131313@redhat.com>
4926
4927 * macrotab.h: Do not include "obstack.h" or "bcache.h".
4928 (struct obstack, struct bcache): Add opaque declarations.
4929 * Makefile.in (macrotab_h): Update
4930
b4d83933
AC
49312002-06-28 Andrew Cagney <ac131313@redhat.com>
4932
4933 * blockframe.c (generic_find_dummy_frame): Change return type to
4934 ``struct regcache''.
4935 (struct dummy_frame): Replace field ``registers'' with regcache, a
4936 struct regcache object.
4937 (generic_find_dummy_frame): Update.
4938 (generic_push_dummy_frame): Update. Use regcache_xfree,
4939 regcache_xmalloc and regcache_cpy.
4940 (generic_pop_dummy_frame): Update. Use regcache_cpy and
4941 regcache_xfree.
4942 (deprecated_generic_find_dummy_frame): Update.
4943 (generic_read_register_dummy): Update. Use
4944 regcache_read_as_address.
4945 (generic_call_dummy_register_unwind): Update. Use regcache_read.
4946 (generic_get_saved_register): Update. Use regcache_read.
4947
08c0b5bc
AC
49482002-06-28 Andrew Cagney <ac131313@redhat.com>
4949
4950 * Makefile.in (objfiles_h): Add $(bcache_h).
4951 * objfiles.h: Include "bcache.h".
4952
4953 * Makefile.in (symtab_h): Remove $(bcache_h).
4954 * symtab.h: Do not include "bcache.h".
4955
1f89801a
AC
49562002-06-28 Andrew Cagney <ac131313@redhat.com>
4957
4958 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
4959 generic_func_frame_chain_valid.
4960
b9644b58
DB
49612002-06-28 David O'Brien <obrien@FreeBSD.org>
4962
4963 * config/i386/nm-fbsd.h: Include <sys/param.h>.
4964 * config/i386/tm-fbsd.h: Likewise.
4965
dd486634
AC
49662002-06-28 Andrew Cagney <ac131313@redhat.com>
4967
4968 * rs6000-tdep.c (rs6000_gdbarch_init): Use
4969 generic_unwind_get_saved_register.
4970
0b434a00
AC
49712002-06-27 Andrew Cagney <ac131313@redhat.com>
4972
4973 From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
4974 * regcache.c (supply_register): Add missing argument to
4975 register_buffer call.
4976
f30e5a77
AC
49772002-06-27 Andrew Cagney <ac131313@redhat.com>
4978
4979 * Makefile.in (init.c): Drop -e option to grep. Not necessary and
4980 Solaris /bin/grep does not not like it. From Peter Schauer.
4981
9f064c95
TT
49822002-06-26 Tom Tromey <tromey@redhat.com>
4983
4984 * command.h (add_setshow_cmd): Declare.
4985 (add_setshow_cmd_full): Declare.
4986 * cli/cli-decode.c (add_setshow_cmd): No longer static. Now
4987 returns void. Use add_setshow_cmd_full.
4988 (add_setshow_cmd_full): New function.
4989 (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
4990 (add_setshow_boolean_cmd): Likewise.
4991
099c7589
JT
49922002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
4993
4994 * config/vax/tm-vax.h: Protect from multiple inclusion.
4995 (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
4996 (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
4997 * config/vax/tm-vaxbsd.h: ...here. New file.
4998 * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
4999
1d049c5e
JT
50002002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5001
5002 * config/vax/tm-vax.h (BREAKPOINT): Remove.
5003 (BELIEVE_PCC_PROMOTION): Remove.
5004 (AP_REGNUM): Move to...
5005 * config/vax/nm-vax.h: ...here.
5006 * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
5007 (vax_breakpoint_from_pc): New function.
5008 (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
5009 and gdbarch_believe_pcc_promotion.
5010
4791e091
JT
50112002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5012
5013 * Makefile.in (vax_tdep_h): Define.
5014 (vax-tdep.o): Use $(vax_tdep_h).
5015 * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
5016 (vax_dump_tdep): New function.
5017 (_initialize_vax_tdep): Register vax_dump_tdep.
5018 * vax-tdep.h: Include osabi.h.
5019 (struct gdbarch_tdep): New.
5020
da130f98
AC
50212002-06-26 Andrew Cagney <cagney@redhat.com>
5022
5023 * frame.h (deprecated_generic_find_dummy_frame): Rename
5024 generic_find_dummy_frame.
5025 * blockframe.c (generic_find_dummy_frame): Make static.
5026 (deprecated_generic_find_dummy_frame): New function.
5027 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
5028 generic_find_dummy_frame with deprecated_find_dummy_frame.
5029 (sh64_nofp_frame_init_saved_regs): Ditto.
5030 (sh_fp_frame_init_saved_regs): Ditto.
5031 * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
5032 (s390_frame_chain): Ditto.
5033 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
5034
6300c360
GS
50352002-06-26 Grace Sainsbury <graces@redhat.com>
5036
5037 * config/m68k/tm-m68k.h: Rearrange code so macros not in the
5038 gdbarch vector are at the top.
5039 (NUM_REGS): Remove.
5040 (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
5041 (FRAME_ARGS_ADDRESS): Remove.
5042 (FRAME_LOCALS_ADDRESS): Remove.
5043 (FRAME_NUM_ARGS): Remove.
5044 (FRAME_ARGS_SKIP): Remove.
5045 * m68k-tdep.c (enum): Add eumeration of special register numbers.
5046 (m68k_gdbarch_init): Add gdbarch initializations for macros
5047 undefined in tm-m68k.h
5048
1c617db8
GS
50492002-06-26 Grace Sainsbury <graces@redhat.com>
5050
5051 * monitor.h: Add the function regname to monitor_ops
5052 structure. This way NUM_REGS does not have to be a constant.
5053 * monitor.c (monitor_fetch_register): Added support for regname
5054 function. The function is called if the array regnames is NULL.
5055 (monitor_store_register): Same.
da130f98
AC
5056 * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
5057 regnames array.
1c617db8
GS
5058 (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
5059 cpu32bug_cmds.regname to point to new function.
5060 * abug-rom.c (abug_regname): Same as above.
5061 (init_abug_cmds): Same.
5062 * dbug-rom.c (dbug_regname): Same as above.
5063 (init_dbug_cmds): Same.
5064 * remote-est.c (est_regname): Same.
5065 (init_est_cmds): Same.
5066 * rom68k-rom.c (rom68k_regname): Same.
5067 (init_rom68k_cmds): Same.
5068
ea9365bb
TT
50692002-06-25 Tom Tromey <tromey@redhat.com>
5070
5071 * breakpoint.c (delete_command): Don't repeat `delete' commands.
5072
72cec141
AC
50732002-06-25 Andrew Cagney <cagney@redhat.com>
5074
5075 * infrun.c (stop_registers): Change variable's type to ``struct
5076 regcache'''.
5077 (xmalloc_inferior_status): Delete function.
5078 (free_inferior_status): Delete function.
5079 (normal_stop): Use regcache_cpy.
5080 (struct inferior_status): Change type of fields ``stop_registers''
5081 and ``registers'' to ``struct regcache''.
5082 (write_inferior_status_register): Use regcache_write.
5083 (save_inferior_status): Instead of calling
5084 xmalloc_inferior_status, allocate the inf_status buffer directly.
5085 Use regcache_dup_no_passthrough and regcache_dup to save the
5086 buffers.
5087 (restore_inferior_status): Use regcache_xfree and regcache_cpy.
5088 Replace the stop_registers regcache instead of overriding it. Use
5089 regcache_xfree. Instead of calling free_inferior_status, xfree
5090 the buffer directly.
5091 (discard_inferior_status): Use regcache_xfree. Instead of calling
5092 free_inferior_status, xfree the buffer directly.
5093 (build_infrun): Use regcache_xmalloc.
5094 (_initialize_infrun): Delete redundant call to build_infrun.
5095
5096 * Makefile.in (infcmd.o): Add $(regcache_h).
5097
5098 * infcmd.c: Include "regcache.h".
5099 (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
5100 obtain the address of `stop_registers' register buffer.
5101 (print_return_value): Ditto.
5102
5103 * inferior.h (struct regcache): Add opaque declaration.
5104 (stop_registers): Change variable's declared type to ``struct
5105 regcache''.
5106
defc6f8c
TT
51072002-06-24 Tom Tromey <tromey@redhat.com>
5108
c0e624e7
TT
5109 * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
5110 * target.c (initialize_targets): Fixed typo in
5111 trust-readonly-sections `show' documentation.
5112
defc6f8c
TT
5113 * main.c: Marked all strings with _().
5114
2b236d82
DH
51152002-06-24 Don Howard <dhoward@redhat.com>
5116
5117 * memattr.c (create_mem_region): Treat hi == 0 as a special case
5118 that means max CORE_ADDR+1.
5119 (lookup_mem_region): Ditto.
5120 (mem_info_command): Ditto.
5121
942dc0e9
GS
51222002-06-24 Grace Sainsbury <graces@redhat.com>
5123
5124 * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
5125 (REGISTER_BYTES_OK): Remove.
5126 (REGISTER_BYTES): Remove.
5127 (STORE_STRUCT_RETURN): Remove.
5128 (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
5129 (STORE_RETURN_VALUE): Remove.
5130 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
5131 (FRAME_CHAIN): Remove.
5132 (FRAMELESS_FUNCTION_INVOCATION): Remove.
5133 (FRAME_SAVED_PC): Remove.
5134 * m68k-tdep.c (m68k_register_bytes_ok):Add.
5135 (m68k_store_struct_return): Add.
5136 (m68k_deprecated_extract_return_value): Add.
5137 (m68k_deprecated_extract_struct_value_address): Add.
5138 (m68k_store_return_value): Add.
5139 (m68k_frame_chain): Add.
5140 (m68k_frameless_function_invocation): Add.
5141 (m68k_frame_saved_pc): Add.
5142 (m68k_gdbarch_init): added set_gdbarch calls for new
5143 functions and deleted macros.
5144
03c30d4d
TT
51452002-06-23 Tom Tromey <tromey@redhat.com>
5146
5147 * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
5148 (ALLDEPFILES): Likewise.
5149 (udiheaders): Removed.
5150 (udip2soc.o): Likewise.
5151 (udi2go32.o): Likewise.
5152 (udr.o): Likewise.
5153 (HFILES_WITH_SRCDIR): Don't mention udiheaders.
5154
37e71372
AC
51552002-06-22 Andrew Cagney <ac131313@redhat.com>
5156
06a6ac57
AC
5157 * infrun.c (_initialize_infrun): Delete unnecessary call to
5158 build_infrun.
5159
37e71372
AC
5160 * regcache.h: Update comments describing the regcache_cpy family
5161 of functions.
5162 (regcache_save, regcache_restore): Delete declaration.
5163 (regcache_save_no_passthrough): Delete declaration.
5164 (regcache_restore_no_passthrough): Delete declaration.
5165 * regcache.c (regcache_save): Delete function.
5166 (regcache_save_no_passthrough): Delete function.
5167 (regcache_restore): Delete function.
5168 (regcache_restore_no_passthrough): Delete function.
5169
78f6d055
AC
51702002-06-21 Andrew Cagney <ac131313@redhat.com>
5171
5172 * config/m68k/tm-m68k.h: Fix typo.
5173 (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
5174 (m68k_frame_init_saved_regs): Declare.
5175
78b119cb
JB
51762002-06-21 Jim Blandy <jimb@redhat.com>
5177
5178 Remove some vestiges of Harris 88k support.
5179 * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
5180 register numbering quirk.
5181 * elfread.c (elf_symtab_read): Remove `#if' block for skipping
5182 odd symbols occurring in Harris 88k ELF targets.
5183
0fbb3da7
TT
51842002-06-21 Tom Tromey <tromey@redhat.com>
5185
5186 * gdb_locale.h: New file.
5187 * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
5188 (defs_h): Added gdb_locale.h.
5189 * configure, config.in: Rebuilt.
5190 * configure.in (PACKAGE): Define.
5191 * defs.h: Include gdb_locale.h.
5192 * main.c (captured_main): Call setlocale, bindtextdomain,
5193 textdomain.
5194
456f8b9d
DB
51952002-06-21 Dave Brolley <brolley@redhat.com>
5196
5197 From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
5198 * config/frv/frv.mt: New file.
5199 * config/frv/tm-frv.h: New file.
5200 * configure.tgt: Support frv-*-*.
5201 * Makefile.in (frv-tdep.o): New target.
5202 * frv-tdep.c: New file.
5203 * NEWS: Mention frv.
5204
cdd463f9
DB
52052002-06-21 Dave Brolley <brolley@redhat.com>
5206
5207 * MAINTAINERS: Add self to "Write After Approval" list.
5208
5d3ed2e3
GS
52092002-06-21 Grace Sainsbury <graces@redhat.com>
5210
5211 * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
5212 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
5213 (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
5214 (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
5215 (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
5216
5217 * m68k-tdep.c: Include arch-utils.h
5218 (m68k_register_raw_size): Add.
5219 (m68k_register_virtual_size): Add.
5220 (m68k_register_virtual_type): Add.
5221 (m68k_register_name): Add.
5222 (m68k_stack_align): Add.
5223 (m68k_register_byte): Add.
5224 (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
5225 tm-m68k.h.
5226
7f8e7424
GS
52272002-06-21 Grace Sainsbury <graces@redhat.com>
5228
a2c6a6d5 5229 * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
7f8e7424
GS
5230 m68k_find_saved_regs.
5231 (m68k_pop_frame): Removed saved_regs structure, and replaced
5d3ed2e3 5232 references to it with frame->saved_regs.
7f8e7424
GS
5233 (m68k_gdbarch_init): Added function calls to initialize the
5234 gdbarch structure.
a2c6a6d5
GS
5235 (m68k_fix_call_dummy): Add.
5236 * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
5237 (CALL_DUMMY): Remove.
5238 (CALL_DUMMY_LENGTH): Remove.
5239 (CALL_DUMMY_START_OFFSET): Remove.
5240 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
5241 (FIX_CALL_DUMMY): Remove.
5242 (PUSH_DUMMY_FRAME): Remove.
5243 (POP_FRAME): Remove.
7f8e7424 5244
f461f5cf
PM
52452002-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
5246
5247 * parse.c (parse_fprintf): New function used to avoid calls to
5248 fprintf in bison parser generated debug code.
5249 * parser-defs.h: Declaration of new parse_fprintf function.
5250 * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
5251 Set YYDEBUG to 1 by default.
5252 Set YYFPRINTF as parse_fprintf.
5253
7f0c12ed
ML
52542002-06-21 Michal Ludvig <mludvig@suse.cz>
5255
5256 * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer
5257 encoding anymore.
5258 (pointer_encoding, enum ptr_encoding): New.
5259 (execute_cfa_program): Take care about pointer encoding.
5260 (dwarf2_build_frame_info): Only call parse_frame_info for
5261 .debug_frame and .eh_frame.
5262 (parse_frame_info): New, derived from former dwarf2_build_frame_info.
5263 fixed augmentation handling, added relative addressing,
5264 ignore duplicate FDEs. Added comments.
19d833a2 5265 * dwarf2cfi.c: Reindented.
7f0c12ed 5266
87c4a039
EZ
52672002-06-20 Elena Zannoni <ezannoni@redhat.com>
5268
5269 * event-top.c (command_handler): Don't use space_at_cmd_start
5270 unless there is sbrk() on the host. Assign time and space data
5271 to union fields of the appropriate length.
5272
1cf877ad
ML
52732002-06-20 Michal Ludvig <mludvig@suse.cz>
5274
5275 * x86-64-tdep.c (x86_64_register_nr2name): Rename to
5276 x86_64_register_name. Return type changed to 'const char *'.
5277 (x86_64_register_name2nr): Rename to x86_64_register_number.
5278 (x86_64_gdbarch_init): Update to reflect the change.
5279 * x86-64-tdep.h: Ditto.
5280 * x86-64-linux-nat.c (x86_64_fxsave_offset)
5281 (supply_fpregset): Ditto.
5282
3fadccb3
AC
52832002-06-19 Andrew Cagney <cagney@redhat.com>
5284
5285 * regcache.h: Update copyright.
5286 (struct regcache, struct gdbarch): Add opaque declarations.
5287 (current_regcache): Declare global variable.
5288 (regcache_read, regcache_write): Add gdbarch parameter.
5289 (regcache_save, regcache_save_no_passthrough)
5290 (regcache_restore, regcache_restore_no_passthrough)
5291 (regcache_dup, regcache_dup_no_passthrough)
5292 (regcache_cpy, regcache_cpy_no_passthrough)
5293 (deprecated_grub_regcache_for_registers)
5294 (deprecated_grub_regcache_for_register_valid)
5295 (regcache_valid_p): Add function declarations.
5296
5297 * regcache.c: Update copyright.
5298 (regcache_descr_handle): New global variable.
5299 (struct regcache_descr): Define.
5300 (init_legacy_regcache_descr, init_regcache_descr): New functions.
5301 (regcache_descr, xfree_regcache_descr): New functions.
5302 (struct regcache): Define.
5303 (regcache_xmalloc, regcache_xfree): New functions.
5304 (regcache_cpy, regcache_cpy_no_passthrough): New functions.
5305 (regcache_dup, regcache_dup_no_passthrough): New functions.
5306 (regcache_valid_p, regcache_read_as_address): New functions.
5307 (deprecated_grub_regcache_for_registers): New function.
5308 (deprecated_grub_regcache_for_register_valid): New function.
5309 (current_regcache): New global variable.
5310 (register_buffer): Add regcache parameter. Update calls.
5311 (regcache_read, regcache_write): Add regcache parameter. Rewrite.
5312 (read_register_gen, write_register_gen): Update register_buffer
5313 call. Test for legacy_p instead of gdbarch_register_read_p or
5314 gdbarch_register_write_p.
5315 (regcache_collect): Update register_buffer call.
5316 (build_regcache): Rewrite. Use deprecated grub functions.
5317 (regcache_save, regcache_save_no_passthrough): New functions.
5318 (regcache_restore, regcache_restore_no_passthrough): New
5319 functions.
5320 (_initialize_regcache): Create the regcache_data_handle. Swap
5321 current_regcache global variable.
5322
5323 * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
5324 parameter to regcache_read and regcache_write calls.
5325 (sh4_register_read): Ditto.
5326 (sh64_pseudo_register_read): Ditto.
5327 (sh64_register_read): Ditto.
5328 (sh_pseudo_register_write): Ditto.
5329 (sh4_register_write): Ditto.
5330 (sh64_pseudo_register_write): Ditto.
5331 (sh64_register_write): Ditto.
5332
5333 * defs.h (XCALLOC): Define.
5334
152d9db6
GS
53352002-06-19 Grace Sainsbury <graces@redhat.com>
5336
5337 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
5338 * m68k-tdep.c (m68k_gdbarch_init): Added.
5339 (m68k_dump_tdep): Added.
5340
170911c7
DJ
53412002-06-19 Daniel Jacobowitz <drow@mvista.com>
5342
5343 * ada-lang.c (fill_in_ada_prototype): Update comment.
5344
2e4ebe70
DJ
53452002-06-19 Daniel Jacobowitz <drow@mvista.com>
5346
5347 * mips-tdep.c (enum mips_abi): Explicitly start at 0. Add
5348 MIPS_ABI_LAST.
5349 (mips_abi_string, mips_abi_strings): New.
5350 (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
5351 (mips_gdbarch_init): Set tdep->found_abi. Don't set
5352 tdep->mips_abi_string. Honor mips_abi_string. Default to
5353 O32 if no ABI is found.
5354 (mips_dump_tdep): Use mips_abi_strings.
5355 (mips_abi_update): New function.
5356 (_initialize_mips_tdep): Initialize mips_abi_string. Add
5357 ``set mips abi'' and ``show mips abi''. Check the size of
5358 mips_abi_strings.
5359
16775908
AC
53602002-06-19 Andrew Cagney <cagney@redhat.com>
5361
5362 * i386-linux-tdep.c (i386_linux_register_name): Make return type
5363 constant.
5364
5051bfa4 53652002-06-18 Joel Brobecker <brobecker@gnat.com>
16775908 5366
5051bfa4
JB
5367 * alpha-tdep.c (heuristic_proc_desc): Compute the size of the
5368 current frame using only the first stack size adjustment. All
5369 subsequent size adjustments are not considered to be part of
5370 the "static" part of the current frame.
5371 Compute the address of the saved registers relative to the
5372 Frame Pointer ($fp) instead of the Stack Pointer if $fp is
5373 in use in this frame.
5374
56468235
DH
53752002-06-18 Don Howard <dhoward@redhat.com>
5376
5377 * valops.c (value_ind): Use value_at_lazy() when dereferencing
5378 type int expressions. Thanks to Jim Blandy <jimb@redhat.com> for
5379 suggesting this solution.
5380
0b624158
AC
53812002-06-18 Andrew Cagney <ac131313@redhat.com>
5382
5383 * config/romp/xm-rtbsd.h: Delete file.
5384 * config/romp/rtbsd.mh: Delete file.
5385
221ea385
KS
53862002-06-18 Keith Seitz <keiths@redhat.com>
5387
5388 * breakpoint.c (condition_command): Post breakpoint_modify
5389 when a condition is added to an existing breakpoint.
5390 (commands_command): Likewise for commands.
5391 (set_ignore_count): Likewise for ignore counts.
5392 If no tty, do not simply return, still need to send event
5393 notification.
5394 (ignore_command): Only print a newline if the command came
5395 from a tty.
5396 Don't call breakpoints_changed, since this is now properly
5397 handled by set_ignore_count.
5398
5402eed1
AC
53992002-06-18 Andrew Cagney <cagney@redhat.com>
5400
5401 * MAINTAINERS: Note that cris-elf target can be compiled with
5402 -Werror.
5403 * cris-tdep.c (cris_register_name): Make return type constant.
5404 (cris_breakpoint_from_pc): Ditto.
5405
cc22880b
ML
54062002-06-18 Michal Ludvig <mludvig@suse.cz>
5407
5408 * frame.h (struct frame_info): Change type of context to
5409 'struct context'.
5410
fa88f677
AC
54112002-06-17 Andrew Cagney <cagney@redhat.com>
5412
5413 * gdbarch.sh (REGISTER_NAME): Change return type a constant string
5414 pointer.
5415 * gdbarch.h, gdbarch.c: Regenerate.
5416 * config/mips/tm-mips.h (mips_register_name): Update.
5417 * i386-tdep.h (i386_register_name): Update.
5418 * mips-tdep.c (mips_register_name): Update
5419 * alpha-tdep.c (alpha_register_name): Update.
5420 * arch-utils.c (legacy_register_name): Update.
5421 * arch-utils.h (legacy_register_name): Update.
5422 * avr-tdep.c (avr_register_name): Update.
5423 * ia64-tdep.c (ia64_register_name): Update.
5424 * i386-tdep.c (i386_register_name): Update.
5425 * sparc-tdep.c (sparc32_register_name): Update.
5426 (sparc64_register_name): Update.
5427 (sparclite_register_name): Update.
5428 (sparclet_register_name): Update.
5429 * sh-tdep.c (sh_generic_register_name): Update.
5430 (sh_sh_register_name): Update.
5431 (sh_sh3_register_name): Update.
5432 (sh_sh3e_register_name): Update.
5433 (sh_sh_dsp_register_name): Update.
5434 (sh_sh3_dsp_register_name): Update.
5435 (sh_sh4_register_name): Update.
5436 (sh_sh64_register_name): Update.
5437 * s390-tdep.c (s390_register_name): Update.
5438 * rs6000-tdep.c (rs6000_register_name): Update.
5439 * ns32k-tdep.c (ns32k_register_name_32082): Update.
5440 (ns32k_register_name_32382): Update.
5441 * d10v-tdep.c (d10v_ts2_register_name): Update.
5442 (d10v_ts3_register_name): Update.
5443 * xstormy16-tdep.c (xstormy16_register_name): Update.
5444 * vax-tdep.c (vax_register_name): Update.
5445 * v850-tdep.c (v850_register_name): Update.
5446 * m68hc11-tdep.c (m68hc11_register_name): Update.
5447 * mn10300-tdep.c (mn10300_generic_register_name): Update.
5448 (am33_register_name): Update.
5449
ea1e7ef6
GS
54502002-06-17 Grace Sainsbury <graces@redhat.com>
5451
5452 * m68k-tdep.c: Reindented.
5453
9b02dd1b
AC
54542002-06-17 Andrew Cagney <ac131313@redhat.com>
5455
5456 * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
5457 list of predefined types.
5458
8758dec1
MK
54592002-06-16 Mark Kettenis <kettenis@gnu.org>
5460
b6197528
MK
5461 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
5462 REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
5463 REGISTER_CONVERT_TO_RAW): Remove defines.
5464 (i386_register_virtual_type, i386_register_convertible,
5465 i386_register_convert_to_virtual, i386_register_convert_to_raw):
5466 Remove prototypes.
5467 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
5468 macros mentioned above.
5469
82b47e62
MK
5470 * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
5471 (i386lynx_saved_pc_after_call): Remove prototype.
5472 * i386ly-tdep.c: Include "i386-tdep.h".
5473 (i386lynx_saved_pc_after_call): Make static. Use
5474 read_memory_nobpt instead of read_memory. Use
5475 read_memory_unsigned_integer instead of read_memory_integer.
5476 (i386lynx_init_abi): New function.
5477 (i386lynx_coff_osabi_sniffer): New function.
5478 (_initialize_i386bsd_tdep): New function.
5479
8758dec1
MK
5480 * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
5481 CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
5482 CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
5483 (i386_fix_call_dummy): Remove prototype.
5484 * i386-tdep.c (i386_call_dummy_words): New variable.
5485 (i386_gdbarch_init): Adjust for removal of the
5486 macros mentioned above.
5487
e9e68a56
AC
54882002-06-15 Andrew Cagney <ac131313@redhat.com>
5489
5490 * command.h (add_setshow_auto_boolean_cmd): Replace
5491 add_set_auto_boolean_cmd.
5492 * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
5493 add_set_auto_boolean_cmd.
5494 * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
5495 * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
5496 mask-address'' command.
5497 (show_mask_address): Add cmd parameter.
5498 * remote.c (add_packet_config_cmd): Update. Change type of
5499 set_func and show_func to cmd_sfunc_ftype.
5500 (_initialize_remote): Update `set remote Z-packet'
5501 (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
5502 (show_remote_protocol_e_packet_cmd): Ditto.
5503 (show_remote_protocol_E_packet_cmd): Ditto.
5504 (show_remote_protocol_P_packet_cmd): Ditto.
5505 (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
5506 (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
5507 (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
5508 (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
5509 (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
5510 (show_remote_protocol_Z_packet_cmd): Ditto.
5511 (show_remote_protocol_binary_download_cmd): Ditto.
5512 (show_remote_cmd): Pass NULL to all of above.
5513
fc08ec52
MK
55142002-06-15 Mark Kettenis <kettenis@gnu.org>
5515
5516 * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
5517 DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
5518 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
5519 POP_FRAME): Remove defines.
5520 (i386_push_arguments, i386_store_struct_return,
5521 i386_extract_return_value, i386_store_return_value,
5522 i386_extract_struct_value_address, i386_push_dummy_frame,
5523 i386_pop_frame): Renove prototypes.
5524 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
5525 macros mentioned above.
5526
e707bbc2
AC
55272002-06-15 Andrew Cagney <ac131313@redhat.com>
5528
5529 * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
5530 add_set_boolean_cmd.
5531 (add_setshow_cmd): New function.
5532 * command.h (add_setshow_boolean_cmd): Replace
5533 add_set_boolean_cmd.
5534 * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
5535 and ``set rdiromatzero''.
5536 * maint.c (_initialize_maint_cmds): Update commented out code.
5537 * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
5538 * target.c (initialize_targets): Update `set
5539 trust-readonly-sections'.
5540 * remote.c (_initialize_remote): Update `set remotebreak'.
5541
42fdc8df
MK
55422002-06-15 Mark Kettenis <kettenis@gnu.org>
5543
93924b6b
MK
5544 * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
5545 BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
5546 * i386-tdep.c (i386_skip_prologue): Adjust function signature to
5547 fit into multi-arch framework.
5548 (i386_breakpoint_from_pc): New function.
5549 (i386_gdbarch_init): Adjust for removal of the macros mentioned
5550 above.
5551
42fdc8df
MK
5552 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
5553 FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
5554 FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
5555 (i386_frameless_function_invocation, i386_frame_num_args,
5556 i386_frame_init_saved_regs): Remove prototypes.
5557 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
5558 macros mentioned above.
5559
9773a94b
AC
55602002-06-15 Andrew Cagney <ac131313@redhat.com>
5561
5562 * cli/cli-decode.c (set_cmd_cfunc): Update.
5563 (set_cmd_sfunc): Update.
5564 * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
5565 (set_cmd_sfunc, set_cmd_cfunc): Update.
5566 * cli/cli-decode.h: Update.
5567
6e157172
MK
55682002-06-15 Mark Kettenis <kettenis@gnu.org>
5569
5570 * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
5571 (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
5572
7f19b9a2
AC
55732002-06-15 Andrew Cagney <ac131313@redhat.com>
5574
5575 * defs.h (auto_boolean): Declare enum.
5576 * command.h (cmd_auto_boolean): Delete enum.
5577 * mips-tdep.c (mask_address_var): Update.
5578 (mips_mask_address_p): Update.
5579 (show_mask_address): Update.
5580 * remote.c (struct packet_config): Update.
5581 (update_packet_config): Update.
5582 (show_packet_config_cmd): Update.
5583 (packet_ok): Update.
5584 (add_packet_config_cmd): Update.
5585 (_initialize_remote):
5586 * command.h: Update.
5587 * cli/cli-setshow.c (parse_auto_binary_operation): Update.
5588 (do_setshow_command): Update.
5589 * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
5590 * cli/cli-decode.h: Update.
5591
1cf88de5
MK
55922002-06-15 Mark Kettenis <kettenis@gnu.org>
5593
22ba8cf2
MK
5594 * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
5595 config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
5596 config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
5597 config/i386/tm-linux.h, config/i386/tm-nbsd.h,
5598 config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
5599 * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
5600
762c5349
MK
5601 * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
5602 list of DJGPP COFF targets.
5603
091198bb
MK
5604 * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
5605 (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
5606 (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
5607 (FP0_REGNUM): Remove define.
5608 (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
5609 MAX_REGISTER_VIRTUAL_SIZE): Remove define.
5610 (i386_register_virtual_size): Remove protoype.
5611 * i386-tdep.c (i386_register_virtual_size): Removed.
5612 (i386_extract_return_value, i386_store_return_value): Use
5613 FP0_REGNUM instead of NUM_FREGS to determine whether the
5614 floating-point registers are available.
5615 (i386_gdbarch_init): Tweak FIXME about FPU registers.
5616 Adjust for removal of macros mentioned above.
5617
56182002-06-15 Mark Kettenis <kettenis@gnu.org>
5619
fcc9bf01
MK
5620 * i386v4-nat.c: Include "i386-tdep.h". Reformat and tweak various
5621 comments.
5622 (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
5623 Remove prototypes.
5624 (supply_gregset, fill_gregset): Remove use of register keyword and
5625 remove declaration for regmap. Use I386_NUM_GREGS instead of
5626 NUM_REGS and NUM_FREGS.
5627 (FPREGSET_FSAVE_OFFSET): Remove.
5628 (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
5629 NUM_FREGS to determine whether the floating-point registers are
5630 available.
5631
65e78234
MK
5632 * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
5633 gnu_store_registers): Replace usage of NUM_GREGS with
5634 I386_NUM_GREGS.
5635
98df6387
MK
5636 * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
5637 OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
5638 usage of NUM_GREGS with I386_NUM_GREGS.
5639
099a9414
MK
5640 * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
5641
57976e88
MK
5642 * i386bsd-nat.c: Include "i386-tdep.h".
5643 (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
5644 I386_NUM_GREGS.
5645
b335f4a6
MK
5646 * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
5647 and associated comment. They no longer make any sense, since we
5648 don't use this file anymore on Linux.
5649
1cf88de5
MK
5650 * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
5651 * i386-tdep.c (i386_register_offset, i386_register_size): Use
5652 I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
5653 elements in these arrays.
5654 (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
5655 MAX_NUM_REGS.
5656
daa66587
MK
56572002-06-15 Mark Kettenis <kettenis@gnu.org>
5658
5659 * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
5660 * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
5661
26e9b323
AC
56622002-06-14 Andrew Cagney <cagney@redhat.com>
5663
5664 * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
5665 EXTRACT_RETURN_VALUE.
5666 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
5667 EXTRACT_STRUCT_VALUE_ADDRESS.
5668 * gdbarch.h, gdbarch.c: Regenerate.
5669
5670 * values.c (value_being_returned): Handle
5671 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
5672 (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
5673
5674 * arm-linux-tdep.c (arm_linux_init_abi): Update.
5675 * arm-tdep.c (arm_gdbarch_init): Update.
5676 * avr-tdep.c (avr_gdbarch_init): Update.
5677 * cris-tdep.c (cris_gdbarch_init): Update.
5678 * d10v-tdep.c (d10v_gdbarch_init): Update.
5679 * ia64-tdep.c (ia64_gdbarch_init): Update.
5680 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
5681 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
5682 * s390-tdep.c (s390_gdbarch_init): Update.
5683 * sh-tdep.c (sh_gdbarch_init): Update.
5684 * s390-tdep.c (s390_gdbarch_init): Update.
5685 * sparc-tdep.c (sparc_gdbarch_init): Update.
5686 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
5687 * v850-tdep.c (v850_gdbarch_init): Update.
5688 * vax-tdep.c (vax_gdbarch_init): Update.
5689 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
5690 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
5691
5692 * config/arc/tm-arc.h: Update.
5693 * config/d30v/tm-d30v.h: Update.
5694 * config/fr30/tm-fr30.h: Update.
5695 * config/h8300/tm-h8300.h: Update.
5696 * config/h8500/tm-h8500.h: Update.
5697 * config/i386/tm-i386.h: Update.
5698 * config/i386/tm-ptx.h: Update.
5699 * config/i386/tm-symmetry.h: Update.
5700 * config/i960/tm-i960.h: Update.
5701 * config/m32r/tm-m32r.h: Update.
5702 * config/m68k/tm-delta68.h: Update.
5703 * config/m68k/tm-linux.h: Update.
5704 * config/m68k/tm-m68k.h: Update.
5705 * config/m88k/tm-m88k.h: Update.
5706 * config/mcore/tm-mcore.h: Update.
5707 * config/mips/tm-mips.h: Update.
5708 * config/mn10200/tm-mn10200.h: Update.
5709 * config/pa/tm-hppa.h: Update.
5710 * config/pa/tm-hppa64.h: Update.
5711 * config/sparc/tm-sp64.h: Update.
5712 * config/sparc/tm-sparc.h: Update.
5713 * config/sparc/tm-sparclet.h: Update.
5714 * config/z8k/tm-z8k.h: Update.
5715
5179e78f
AC
57162002-06-14 Andrew Cagney <cagney@redhat.com>
5717
5718 * Makefile.in (i386_linux_tdep_h): Define.
5719 (i386_tdep_h, i387_tdep_h): Define.
5720 (i386-linux-nat.o): Add $(i386_linux_tdep_h),
5721 $(i386_tdep_h) and $(i387_tdep_h).
5722 * i386-linux-nat.c: Include "i386-linux-tdep.h".
5723
8201327c
MK
57242002-06-14 Mark Kettenis <kettenis@gnu.org>
5725
edf393ac
MK
5726 * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
5727 Already covered by the default.
5728
896fb97d
MK
5729 * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
5730 TARGET_LONG_DOUBLE_BIT): Remove. * i386-tdep.c
5731 (i386_gdbarch_init): Initialize long_double_format and long_double
5732 bit.
5733
8201327c
MK
5734 * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
5735 i386bsd-tdep.o. Remove solib.o, solib-svr4.o and solib-legacy.o.
5736 Move these to ...
5737 * config/i386/i386sol2.mh: ... here.
5738 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
5739 (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
5740 (SIGCONTEXT_PC_OFFSET): Remove define.
5741 (IN_SIGTRAMP): Remove define.
5742 * i386-sol2-tdep.c: New file.
5743
5744 * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
5745 * config/i386/tm-i386nw.h: Removed.
5746
5747 * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
5748 USE_STRUCT_CONVENTION): Remove defines.
5749 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5750 (get_longjmp_target): Remove prototype.
5751 (IN_SIGTRAMP): Remove define.
5752 (i386bsd_in_sigtramp): Remove prototype.
5753 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
5754 function. Update comment accordingly
5755 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
5756 (FRAME_SAVED_PC): Remove define.
5757 (i386bsd_frame_saved_pc): Remove prototype.
5758 * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
5759 GET_LONGJMP_TARGET): Remove defines.
5760 (get_longjmp_target): Remove prototype.
5761 (IN_SIGTRAMP): Remove define.
5762 (i386bsd_in_sigtramp): Remove prototype.
5763 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
5764 function. Update comment accordingly
5765 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
5766 (FRAME_SAVED_PC): Remove define.
5767 (i386bsd_frame_saved_pc): Remove prototype.
5768 * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
5769 Remove prototype.
5770 (USE_STRUCT_CONVENTION): Remove prototype.
5771 * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
5772 declaration.
5773 (_initialize_i386bsd_nat): Revise logic to determine some
5774 constants at compile time when compiling a native GDB. Warn if
5775 things don't match up with what we expect.
5776 * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
5777 Remove variables.
5778 (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp. Rewrite
5779 to use date stored in `struct gdbarch_tdep'.
5780 (i386bsd_sigcontext_offset): Remove varaible.
5781 (i386bsd_sigtramp_saved_pc): Make public. Rewrite to use data
5782 stored in `struct gdbarch_tdep'.
5783 (i386bsd_frame_saved_pc): Make static.
5784 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
5785 (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
5786 i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
5787 i386fbsd4_sc_pc_offset): New variables.
5788 (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
5789 i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
5790 functions.
5791 (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
5792 functions.
5793 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
5794 Modify the value of i386fbsd_sigtramp_start and
5795 i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
5796 i386fbsd_sigtramp_end.
5797 * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
5798 function.
5799
5800 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
5801 define to i386-linux-tdep.h.
5802 (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
5803 REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
5804 defines.
5805 (i386_linux_register_name, i386_linux_register_byte,
5806 i386_linux_register_raw_size): Remove prototypes.
5807 (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
5808 (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
5809 (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
5810 TARGET_WRITE_PC): Remove defines.
5811 (i386_linux_in_sigtramp, i386_linux_frame_chain,
5812 i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
5813 i386_linux_write_pc): Remove prototypes.
5814 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5815 (get_longjmp_target): Remove prototype.
5816 * i386-linux-tdep.h: New file.
5817 * i386-linux-nat.c: Include "i386-linux-tdep.h".
5818 * i386-linux-tdep.c: Include "i386-tdep.h" and
5819 "i386-linux-tdep.h".
5820 (i386_linux_register_name, i386_linux_register_byte,
5821 i386_linux_register_raw_size, i386_linux_in_sigtramp,
5822 i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
5823 Make static.
5824 (i386_linux_init_abi): New function.
5825 (_initialize_i386_linux_tdep): New function.
5826
5827 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
5828 (i386_saved_pc_after_call): Remove prototype.
5829 (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
5830 (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
5831 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
5832 (i386_register_name, i386_stab_reg_to_regnum,
5833 i386_dwarf_reg_to_regnum): Remove prototypes.
5834 (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
5835 SIZEOF_SSE_REGS): Remove defines.
5836 (REGISTER_BYTES): Remove define.
5837 (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
5838 (i386_register_byte, i386_register_raw_size): Remove prototypes.
5839 (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
5840 (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
5841 * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
5842 (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
5843 JB_EDX, GET_LONGJMP_TARGET): Remove defines.
5844 (get_longjmp_target): Remove prototype.
5845 (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
5846 (sigtramp_saved_pc): Remove define.
5847 (i386v4_sigtramp_saved_pc): Remove prototype.
5848 * config/i386/tm-go32.h (FRAME_CHAIN,
5849 FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
5850 (i386go32_frame_saved_pc): Remove prototype.
5851 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5852 (get_longjmp_target): Remove prototype.
5853 * i386-tdep.h: Include "osabi.h".
5854 (enum i386_abi): Removed.
5855 (enum struct_return): New enum.
5856 (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
5857 struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
5858 sc_pc_offset members.
5859 (i386_gdbarch_register_os_abi): Remove prototype.
5860 (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
5861 I386_SSE_NUM_REGS): New defines.
5862 (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
5863 I386_SSE_SIZEOF_REGS): New defines.
5864 (i386_register_name, i386_register_byte, i386_register_raw_size):
5865 New prototypes.
5866 (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
5867 (i386bsd_sigtramp_saved_pc): New prototype.
5868 * i386-tdep.c: Don't include "elf-bfd.h".
5869 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
5870 i386_frame_chain, i386_saved_pc_after_call): Make static.
5871 (i386_frame_saved_pc): Rewrite to call architecture dependent
5872 function to deal with signal handlers. Make static.
5873 (i386go32_frame_saved_pc): Removed.
5874 [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
5875 Removed.
5876 (i386_get_longjmp_target): New function.
5877 (default_struct_convention, pcc_struct_convention,
5878 reg_struct_convention, valid_conventions, struct_convention): New
5879 variables.
5880 (i386_use_struct_convention): New function.
5881 (i386v4_sigtramp_saved_pc): Renamed to
5882 i386_svr4_sigtramp_saved_pc. Made static. Moved.
5883 (i386_pc_in_sigtramp): New function.
5884 (i386_abi_names): Removed.
5885 (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
5886 ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
5887 Removed.
5888 (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
5889 i386_gdbarch_register_os_abi): Removed.
5890 (struct i386_abi_handler): Removed.
5891 (i386_abi_handler_list): Removed.
5892 (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
5893 functions.
5894 (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
5895 i386_nw_init_abi): New functions.
5896 (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
5897 Use set_gdbarch_xxx() calls instead of relying on macros for a
5898 number of calls.
5899 (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
5900 (_initialize_i386_tdep): Add new 'struct-convcention' command.
5901 Register the various architecture variants defined in this file.
5902
ad2f7632
DJ
59032002-06-14 Daniel Jacobowitz <drow@mvista.com>
5904
5905 * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
5906 (struct main_type): Remove arg_types member. Update comments for
5907 struct field.
5908 (TYPE_ARG_TYPES): Remove.
5909 (TYPE_FN_FIELD_ARGS): Update.
5910 (smash_to_method_type): Update prototype.
5911
5912 * c-typeprint.c (cp_type_print_method_args): Take method type
5913 instead of argument list. Use new argument layout. Simplify.
5914 (c_type_print_args): Use new argument layout. Simplify.
5915 (c_type_print_base): Update call to cp_type_print_method_args.
5916 * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
5917 argument; use die->type instead. Update call to
5918 smash_to_method_type.
5919 (read_structure_scope): Update call to dwarf2_add_member_fn.
5920 * gdbtypes.c (allocate_stub_method): Update comment.
5921 (smash_to_method_type): Take new NARGS and VARARGS arguments.
5922 Use new argument layout.
5923 (check_stub_method): Use new argument layout. Don't count
5924 void as an argument.
5925 (print_arg_types): Update comments. Use new argument layout.
5926 (recursive_dump_type): Don't print arg_types member.
5927 * hpread.c (hpread_read_struct_type): Use new argument layout.
5928 (fixup_class_method_type): Likewise.
5929 (hpread_type_lookup): Likewise.
5930 * stabsread.c (read_type): Update calls to read_args and
5931 smash_to_method_type.
5932 (read_args): Use new argument layout. Simplify.
5933 * valops.c (typecmp): Use new argument layout. Update parameters
5934 and comments. Simplify.
5935 (hand_function_call): Use new argument layout.
5936 (search_struct_method): Update call to typecmp.
5937 (find_overload_match): Use new argument layout.
5938
6da02953
DJ
59392002-06-13 Daniel Jacobowitz <drow@mvista.com>
5940
5941 * NEWS: Mention multithreaded debug support for gdbserver.
5942
519b2366
DJ
59432002-06-13 Daniel Jacobowitz <drow@mvista.com>
5944
5945 * MAINTAINERS: Mention NEWS.
5946
6c0d6680
DJ
59472002-06-13 Daniel Jacobowitz <drow@mvista.com>
5948
5949 * mips-tdep.c (PROC_SYMBOL): Add warning comment.
5950 (struct mips_objfile_private, compare_pdr_entries): New.
5951 (non_heuristic_proc_desc): Read the ".pdr" section if it
5952 is present.
5953
6529d2dd
AC
59542002-06-12 Andrew Cagney <ac131313@redhat.com>
5955
5956 * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
5957 (arm_debug): New static variable.
5958 (_initialize_arm_tdep): Add ``set debug arm'' command.
5959
26216b98
AC
59602002-06-12 Andrew Cagney <ac131313@redhat.com>
5961
5962 * Makefile.in (sim_arm_h): Define.
5963 (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
5964 * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
5965 (arm_register_sim_regno): New function, map an internal REGNUM
5966 onto a simulator register number.
5967 (arm_gdbarch_init): Set register_sim_regno.
5968
814b3ba0
AH
59692002-06-09 Aldy Hernandez <aldyh@redhat.com>
5970
5971 * MAINTAINERS: Add self.
5972
475b0867
JB
59732002-06-11 Jim Blandy <jimb@redhat.com>
5974
919d772c
JB
5975 * source.c (source_info): Mention whether the symtab has
5976 information about preprocessor macros.
5977
475b0867
JB
5978 Call the command `info macro', not `show macro'.
5979 * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
5980 Fix error message.
5981 (_initialize_macrocmd): Register `info_macro_command' in
5982 `infolist', not `showlist'.
5983
9e364162
DJ
59842002-06-11 Daniel Jacobowitz <drow@mvista.com>
5985
5986 * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
5987 (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
5988 (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
5989 (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
5990 (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions. Define
5991 unconditionally.
5992 (set_mipsfpu_single_command, set_mipsfpu_double_command)
5993 (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
5994 (_initialize_mips_tdep): Remove dead code.
5995 * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
5996 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
5997 * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
5998 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
5999 * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
6000 MIPS_LAST_FP_ARG_REGNUM): Remove.
6001
23aa4c72
ML
60022002-06-11 Michal Ludvig <mludvig@suse.cz>
6003
6004 * dwarf2cfi.c (unwind_tmp_obstack_init): New.
6005 (unwind_tmp_obstack_free, parse_frame_info)
6006 (update_context, cfi_read_fp, cfi_write_fp)
6007 (cfi_frame_chain, cfi_init_extra_frame_info)
6008 (cfi_virtual_frame_pointer): Use the above function.
264d1763 6009 * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
23aa4c72 6010
70eb15a4
CV
60112002-06-11 Corinna Vinschen <vinschen@redhat.com>
6012
6013 * v850-tdep.c (v850_type_is_scalar): New function.
6014 (v850_use_struct_convention): Match current gcc implementation
6015 as close as possible.
6016 (v850_push_arguments): Fix stack_offset handling. Don't write
6017 struct_addr into register. This is done by v850_store_struct_return.
6018 (v850_extract_return_value): Care for structs.
6019 (v850_store_return_value): Ditto.
6020 (v850_store_struct_return): Actually write address.
6021
482a4d06
ML
60222002-06-11 Michal Ludvig <mludvig@suse.cz>
6023
6024 * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
6025 without debug information too.
6026
d855c300
AC
60272002-06-10 Andrew Cagney <ac131313@redhat.com>
6028
6029 * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
6030 Make multi-arch pure.
6031 * gdbarch.h, gdbarch.c: Re-generate.
6032 * arm-tdep.c (arm_print_float_info): Update.
6033 * arch-utils.h (default_print_float_info): Update.
6034 * arch-utils.c (default_print_float_info): Update.
6035 * infcmd.c (float_info): Update call.
6036
dd12a101
AC
60372002-06-10 Andrew Cagney <ac131313@redhat.com>
6038
6039 * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
6040 the front of the initialize list.
6041
101dcfbe
AC
60422002-06-10 Andrew Cagney <ac131313@redhat.com>
6043
6044 * infrun.c (struct inferior_status): Replace fields
6045 selected_frame_address and selected_level with field
6046 selected_frame_id.
6047 (save_inferior_status): Update. Use get_frame_id.
6048 (struct restore_selected_frame_args): Delete.
6049 (restore_selected_frame): Update. Use frame_find_by_id.
6050 (restore_inferior_status): Update.
6051
6052 * breakpoint.h (struct breakpoint): Change type of
6053 watchpoint_frame to frame_id.
6054 * breakpoint.c (insert_breakpoints): Use frame_find_by_id. Remove
6055 call to get_current_frame.
6056 (do_enable_breakpoint): Use frame_find_by_id. Remove call to
6057 get_current_frame.
6058 (watchpoint_check): Use frame_find_by_id.
6059
6060 * frame.h (record_selected_frame): Delete declaration.
6061 * stack.c (record_selected_frame): Delete function.
6062
6063 * frame.h (struct frame_id): Define.
6064 (get_frame_id): Declare.
6065 (frame_find_by_id): Declare.
6066 * frame.c (frame_find_by_id): New function.
6067 (get_frame_id): New function.
6068
304270b6
AV
60692002-06-10 Andrey Volkov <avolkov@transas.com>
6070
6071 * ser-e7kpc.c: Fix duplicated define and call of
6072 _initialize_ser_e7000pc
6073
2f2cf184
DJ
60742002-06-09 Daniel Jacobowitz <drow@mvista.com>
6075
6076 * signals/signals.c (target_signal_from_host): Fix #ifdef
6077 SIGRTMIN case.
6078 (do_target_signal_to_host): Likewise.
6079
caaa3122
DJ
60802002-06-09 Daniel Jacobowitz <drow@mvista.com>
6081
6082 * mips-tdep.c (mips_find_abi_section): New function.
6083 (mips_gdbarch_init): Call it.
6084
6ac5df3a
MK
60852002-06-09 Mark Kettenis <kettenis@gnu.org>
6086
6087 * solib-svr4.c (init_fetch_link_map_offsets): Simply return
6088 legacy_fetch_link_map_offsets. Adjust comment to reflect reality
6089 after Andrew's 2002-06-08 gdbarch change.
6090
82ea117a
MK
60912002-06-09 Mark Kettenis <kettenis@gnu.org>
6092
6093 * i386-linux-nat.c (suppy_gregset): Don't supply
6094 I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
6095 register cache.
6096 (fill_gregset): Don't fetch it under the same circumstances.
6097
3c25f8c7
AC
60982002-06-09 Andrew Cagney <cagney@redhat.com>
6099
6100 * Makefile.in (callback_h): Define.
6101 (remote_sim_h): Update path to remote-sim.h.
6102 (remote-rdp.o): Add $(callback_h).
6103 (remote-sim.o): Use $(callback_h).
6104 * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
6105 * remote-rdp.c: Include "gdb/callback.h".
6106
1029b7fa
MK
61072002-06-09 Mark Kettenis <kettenis@gnu.org>
6108
6109 * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
6110 * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
6111
616675d3
AC
61122002-06-08 Andrew Cagney <ac131313@redhat.com>
6113
a3efda28
AC
6114 * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
6115 * rdi-share/serpardr.c: Ditto.
6116 * rdi-share/unixcomm.c: Ditto.
6117 * rdi-share/serdrv.c: Ditto.
6118 * rdi-share/hostchan.h: Ditto.
6119 * rdi-share/hostchan.c: Ditto.
6120 * rdi-share/host.h: Ditto.
6121 * rdi-share/devsw.c: Ditto.
6122
c5f10366
AC
6123 * objfiles.h: Change type of obj_private to void pointer.
6124 * pa64solib.c: Update copyright. Don't include "assert.h", use
6125 strcmp instead of STREQ, use LONGEST, do not use PTR
6126 * somsolib.c: Ditto.
6127
616675d3
AC
6128 * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
6129 bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
6130 bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
6131
e4b415d9
AC
61322002-06-08 Andrew Cagney <ac131313@redhat.com>
6133
6134 * frame.c (GET_SAVED_REGISTER): Delete macro definition.
6135 (default_get_saved_register): Delete function.
6136 * gdbarch.sh (GET_SAVED_REGISTER): Set default to
6137 generic_unwind_get_saved_register.
6138 * gdbarch.h, gdbarch.c: Re-generate.
6139
ca0d0b52
AC
61402002-06-08 Andrew Cagney <ac131313@redhat.com>
6141
6142 * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
6143 generic_func_frame_chain_valid.
6144 * gdbarch.h, gdbarch.c: Re-generate.
6145 * blockframe.c (generic_func_frame_chain_valid): Only check
6146 PC_IN_CALL_DUMMY when generic dummy frames. Don't worry about
6147 passing FP to PC_IN_CALL_DUMMY.
6148 Fix PR gdb/360.
6149
76860b5f
AC
61502002-06-08 Andrew Cagney <ac131313@redhat.com>
6151
6152 * gdbarch.sh (struct gdbarch_data): Add field init_p.
6153 (register_gdbarch_data): Initialize init_p.
6154 (gdbarch_data): Initialize data pointer using the init function.
6155 (init_gdbarch_data): Delete function.
6156 (gdbarch_update_p): Update.
6157 (initialize_non_multiarch): Update.
6158 (struct gdbarch): Add field initialized_p.
6159 * gdbarch.h, gdbarch.c: Re-generate.
6160
8dda9770
ML
61612002-06-07 Michal Ludvig <mludvig@suse.cz>
6162
6163 * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
6164 (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
6165 better do the things actually here.
6166 * x86-64-tdep.c (x86_64_register_name2nr): New.
6167 (x86_64_register_name): Renamed to x86_64_register_nr2name.
6168 (x86_64_gdbarch_init): Respect the above change.
6169 * x86-64-tdep.h (x86_64_register_name2nr)
6170 (x86_64_register_nr2name): Add prototypes.
6171 * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
6172
3d79a47c
MS
61732002-06-06 Michael Snyder <msnyder@redhat.com>
6174
7bd91a28
MS
6175 * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
6176 Delete extra braces and re-indent.
6177 (d10v_store_return_value): Char return values
3d79a47c
MS
6178 must be shifted over by one byte in R0.
6179 (d10v_extract_return_value): Delete extra braces, re-indent.
6180
095a4c96
EZ
61812002-06-06 Elena Zannoni <ezannoni@redhat.com>
6182
6183 * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
6184 (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
6185 (d10v_integer_to_address): Rewrite.
6186 (d10v_frame_init_saved_regs): When reading fp and sp registers use
6187 the d10v specific functions which take care of converting to the
6188 correct space.
6189
e8a77ca4
EZ
61902002-06-06 Elena Zannoni <ezannoni@redhat.com>
6191
6192 * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
6193 altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
6194
4f2e4a4f
AC
61952002-06-02 Andrew Cagney <ac131313@redhat.com>
6196
6197 * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
6198 includes.
6199 * config/tm-linux.h: Ditto.
6200 * config/alpha/tm-alphalinux.h: Ditto.
6201 * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
6202 * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
6203 * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
6204 * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
6205 * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
6206 * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
6207 * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
6208 * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
6209 * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
6210 * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
6211 * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
6212 * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
6213 * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
6214 * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
6215 * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
6216 * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
6217 * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
6218 * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
6219 * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
6220 * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
6221 * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
6222 * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
6223 * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
6224 * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
6225 * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
6226 * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
6227 * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
6228 * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
6229 * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
6230 * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
6231 * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
6232 * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
6233 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
6234 * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
6235 * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
6236 * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
6237 * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
6238
ae2ab2ce
AS
62392002-05-04 Aidan Skinner <aidan@velvet.net>
6240
6241 * ada-exp.tab.c: New file
6242 * ada-exp.y: New file
6243 * ada-lang.c: New file
6244 * ada-lang.h: New file
6245 * ada-lex.c: New file
6246 * ada-lex.l: New file
6247 * ada-tasks.c: New file
6248 * ada-typeprint.c: New file
6249 * ada-valprint.c: New file
6250
0ddd0135
JT
62512002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
6252
6253 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
6254 use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
6255
750fbacc
JT
62562002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
6257
6258 * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
6259 insetead of ppc-linux-tdep.o.
6260 * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
6261 * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
6262
df94e18a
AC
62632002-06-02 Andrew Cagney <ac131313@redhat.com>
6264
6265 2002-05-07 Christian Groessler <chris@groessler.org>
6266 * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
6267 bit register contents for little endian hosts.
6268
1a38ab75
AC
62692002-06-01 Andrew Cagney <ac131313@redhat.com>
6270
6271 * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
6272 any maintainer.
6273
8b1632ac
AC
62742002-06-01 Andrew Cagney <ac131313@redhat.com>
6275
6276 * gdbarch.h: Regenerate.
6277
627054c8
AC
62782002-06-01 Andrew Cagney <ac131313@redhat.com>
6279
6280 * MAINTAINERS: Add everyone to write-after-approval list.
6281
4f460812
AC
62822002-06-01 Andrew Cagney <ac131313@redhat.com>
6283
6284 * stack.c (frame_info): Use frame_register_unwind instead of
6285 saved_regs. Mention when the SP is on the stack or in a register.
6286
6287 * frame.h (frame_register_unwind_ftype): Define. Document.
6288 (struct frame_info): Add field register_unwind and
6289 register_unwind_cache.
6290 (frame_register_unwind): Declare.
6291 (generic_unwind_get_saved_register): Declare.
6292
6293 * frame.c (frame_register_unwind): New function.
6294 (generic_unwind_get_saved_register): New function.
6295
6296 * blockframe.c (generic_call_dummy_register_unwind): New function.
6297 (frame_saved_regs_register_unwind): New function.
6298 (set_unwind_by_pc): New function.
6299 (create_new_frame): New function.
6300 (get_prev_frame): New function.
6301
de888f76
AC
63022002-05-30 Andrew Cagney <ac131313@redhat.com>
6303
6304 * a29k-share/: Delete directory.
6305 * remote-vx29k.c: Delete file.
6306
2f2c3626
JT
63072002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
6308
6309 * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
6310 ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
6311
9ce5c36a
JT
63122002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
6313
6314 * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
6315 sparcnbsd-nat.c, and sparcnbsd-tdep.c.
6316 (sparc64nbsd-nat.o)
6317 (sparcnbsd-nat.o)
6318 (sparcnbsd-tdep.o): New dependency lists.
6319 * NEWS: Note new UltraSPARC NetBSD native configuration.
6320 * configure.host (sparc64-*-netbsd*): New host.
6321 * configure.tgt (sparc-*-netbsdelf*)
6322 (sparc-*-netbsd*): Set gdb_target to nbsd.
6323 (sparc64-*-netbsd*): New target.
6324 * sparc64nbsd-nat.c: New file.
6325 * sparcnbsd-nat.c: New file.
6326 * sparcnbsd-tdep.c: New file.
6327 * sparcnbsd-tdep.h: New file.
6328 * config/sparc/nbsd.mt: New file.
6329 * config/sparc/nbsd64.mh: New file.
6330 * config/sparc/nbsd64.mt: New file.
6331 * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
6332 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
6333 (HOST_IPC): Remove.
6334 * config/sparc/nbsdaout.mt: Remove.
6335 * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
6336 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
6337 (HOST_IPC): Remove.
6338 * config/sparc/nbsdelf.mt: Remove.
6339 * config/sparc/nm-nbsd.h: Update copyright years. Remove all
6340 sparc-nat.c compatiblity defines.
6341 * config/sparc/tm-nbsd.h: Update copyright years. Include solib.h.
6342 (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
6343 * config/sparc/tm-nbsd64.h: New file.
6344 * config/sparc/tm-nbsdaout.h: Remove.
6345 * config/sparc/xm-nbsd.h: Remove.
6346
ef3cf062
JT
63472002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
6348
6349 * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
6350 * sparc-tdep.c: Include osabi.h.
6351 (gdbarch_tdep): Add osabi member.
6352 (_initialize_sparc_tdep): Use gdbarch_register.
6353 (sparc_gdbarch_init): Use generic OS ABI framework.
6354 (sparc_dump_tdep): New function.
6355
ee8ff470
KB
63562002-05-30 Kevin Buettner <kevinb@redhat.com>
6357
6358 * corefile.c (do_captured_read_memory_integer): Return non-zero
6359 result.
6360 (safe_read_memory_integer): Copy result of memory read when
6361 status is non-zero. Also, add comments.
6362
7b112f9c
JT
63632002-05-20 Jason Thorpe <thorpej@wasabisystems.com>
6364
6365 * Makefile.in (ppc_tdep_h): Define.
6366 (ppc-linux-nat.o)
6367 (ppc-linux-tdep.o)
6368 (rs6000-tdep.o): Use $(ppc_tdep_h).
6369 (ppc-sysv-tdep.o)
6370 (ppcnbsd-nat.o)
6371 (ppcnbsd-tdep.o): New dependency lists.
6372 * ppc-tdep.h: Use generic OS ABI framework.
357edbbc
JT
6373 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
6374 (ppc_linux_init_abi): New functions.
7b112f9c
JT
6375 (ppc_sysv_abi_broken_use_struct_convention)
6376 (ppc_sysv_abi_use_struct_convention)
6377 (ppc_sysv_abi_push_arguments): Move to...
6378 * ppc-sysv-tdep.c: ...here.
6379 * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
6380 * rs6000-tdep.c (process_note_abi_tag_sections)
6381 (get_elfosabi): Remove.
6382 (rs6000_gdbarch_init): Use generic OS ABI framework.
6383 (rs6000_dump_tdep): New function.
6384 (_initialize_rs6000_tdep): Use gdbarch_register.
6385 * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
6386 * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
6387 * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
6388 of ppc-linux-tdep.o.
6389 * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
6390 * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
6391 * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
6392 * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
6393 * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
6394 * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
6395
480dd42a
JB
63962002-05-29 Jim Blandy <jimb@redhat.com>
6397
6398 * macroscope.c (default_macro_scope): Put `void' in empty argument
6399 list.
6400
4182591f
AC
64012002-05-29 Andrew Cagney <ac131313@redhat.com>
6402
6403 * Makefile.in (arch-utils.o): Add $(sim_regno_h).
6404 * arch-utils.c: Include "sim-regno.h".
6405 * gdbarch.sh: Don't include "sim-regno.h".
6406 * gdbarch.h, gdbarch.c: Regenerate.
6407 * sim-regno.h (legacy_register_sim_regno): Move declaration from
6408 here.
6409 * arch-utils.h (legacy_register_sim_regno): To here.
6410 * remote-sim.c (legacy_register_sim_regno): Move function from
6411 here.
6412 * arch-utils.c (legacy_register_sim_regno): To here.
6413
8238d0bf
AC
64142002-05-28 Andrew Cagney <ac131313@redhat.com>
6415
6416 * sim-regno.h: New file.
6417 * Makefile.in (sim_regno_h): Define.
6418 (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
6419 * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
6420 (legacy_register_sim_regno): New function.
6421 (one2one_register_sim_regno): New function.
6422 (gdbsim_fetch_register): Rewrite.
6423 (gdbsim_store_register): Only store a register when
6424 REGISTER_SIM_REGNO is valid.
6425 * d10v-tdep.c: Include "sim-regno.h".
6426 (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
6427 (d10v_ts3_register_sim_regno): Ditto.
6428 * gdbarch.sh: Include "sim-regno.h".
6429 (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
6430 * gdbarch.h, gdbarch.c: Regenerate.
6431 * arch-utils.h (default_register_sim_regno): Delete declaration.
6432 * arch-utils.c (default_register_sim_regno): Delete function.
6433
485721b1
JT
64342002-05-28 Jason Thorpe <thorpej@wasabisystems.com>
6435
6436 * ppcnbsd-nat.c: Rewrite.
6437 * ppcnbsd-tdep.c: New file.
6438 * ppcnbsd-tdep.h: New file.
6439 * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
6440 solib.o, and solib-svr4.o.
6441 * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
6442 nbsd-tdep.o, and corelow.o.
6443
697f244d
AC
64442002-05-28 Andrew Cagney <ac131313@redhat.com>
6445
6446 * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
6447 `tr' and `sed'. Mention that `broken' targets are not expected to
6448 build.
6449
f08caad1 64502002-05-27 Michal Ludvig <mludvig@suse.cz>
b1ab997b
ML
6451
6452 * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
6453 Let PC point right after the prologue before looking up symbols.
6454
3139facc
MH
64552002-05-27 Martin M. Hunt <hunt@redhat.com>
6456
6457 * i386-tdep.c (i386_register_virtual_type): Return
6458 builtin_type_vec128i for SSE registers.
6459
6460 * gdbtypes.h (builtin_type_vec128i): Declare.
6461
6462 * gdbtypes.c (build_builtin_type_vec128i): New function.
6463 (builtin_type_v2_double, builtin_type_v4_int64): New types.
6464 (builtin_type_vec128i): New type for SSE2 128-bit registers.
6465 (build_gdbtypes): Initialize new builtin vector types.
6466 (_initialize_gdbtypes): Register new vector types with gdbarch.
6467
6e3ba3b8
JT
64682002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6469
6470 * MAINTAINERS: ns32k is not longer an obsolete candidate,
6471 since it has been multi-arch'd.
6472 * NEWS: Note that ns32k-*-* is now partial multi-arch.
6473 Move Alpha and VAX multi-arch news entries to same section
6474 as other multi-arch news.
6475
93d5585d
JT
64762002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6477
6478 * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
6479 target.s, arch-utils.h, ns32k-tdep.h. Make many functions
6480 static. Rename some register numbers to put them in ns32k-tdep
6481 private namespace.
6482 (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
6483 ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
6484 functions.
6485 (_initialize_ns32k_tdep): Use gdbarch_register.
6486 * ns32k-tdep.h: New file.
6487 * ns32knbsd-tdep.c: New file.
6488 * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
6489 * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
6490 (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
6491 REGISTER_BYTES, REGISTER_BYTE): Remove.
6492 * config/ns32k/tm-ns32k.h: New file.
6493 * config/ns32k/tm-umax.h: Remove.
6494
efb2c70e
JT
64952002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6496
6497 * ns32k-tdep.c (ns32k_saved_pc_after_call,
6498 ns32k_store_struct_return, ns32k_extract_return_value,
6499 ns32k_store_return_value, ns32k_extract_struct_value_address): New
6500 functions.
6501 * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
6502 ns32k_saved_pc_after_call.
6503 (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
6504 (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
6505 (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
6506 (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
6507 ns32k_extract_struct_value_address.
6508
7bcc927b
JT
65092002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6510
6511 * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
6512 ns32k_fix_call_dummy): New.
6513 * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
6514 ns32k_call_dummy_words.
6515 (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
6516 (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
6517 CALL_DUMMY_NARGS): Remove.
6518 (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
6519
78f9d765
JT
65202002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6521
6522 * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
6523 ns32k_frame_saved_pc, ns32k_frame_args_address,
6524 ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
6525 ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
6526 * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
6527 * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
6528 (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
6529 (BREAKPOINT): Remove..
6530 (FRAME_CHAIN): Define as ns32k_frame_chain.
6531 (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
6532 (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
6533 (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
6534 (FRAME_FIND_SAVED_REGS): Remove.
6535 (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
6536 (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
6537 (POP_FRAME): Define as ns32k_pop_frame.
6538
f2c762e0
JT
65392002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6540
6541 * ns32k-tdep.c (ns32k_register_byte_32082,
6542 ns32k_register_byte_32382, ns32k_register_raw_size,
6543 ns32k_register_virtual_size, ns32k_register_virtual_type): New
6544 functions.
6545 * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
6546 ns32k_register_byte_32382.
6547 * config/ns32k/tm-umax.h: Update copyright years.
6548 (REGISTER_BYTE): Define as ns32k_register_byte_32082.
6549 (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
6550 (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
6551 (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
6552 (ns32k_get_enter_addr): Fix prototype.
6553
af137673
JT
65542002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6555
6556 * ns32k-tdep.c: Update copyright years.
6557 (ns32k_register_name_32082): New function.
6558 (ns32k_register_name_32382): Ditto.
6559 * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
6560 (REGISTER_NAME): Define as ns32k_register_name_32382.
6561 * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
6562 (REGISTER_NAME): Define as ns32k_register_name_32082.
6563
a8bc7b56
JB
65642002-05-24 Jim Blandy <jimb@redhat.com>
6565
6566 * dwarf2read.c (free_line_header): Use xfree, not free.
6567
83a45910
JT
65682002-05-24 Jason Thorpe <thorpej@wasabisystems.com>
6569
6570 * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
6571 alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
6572
0db71247
AC
65732002-05-23 Andrew Cagney <ac131313@redhat.com>
6574
6575 * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
6576
b9e5e4dd
AC
65772002-05-23 Andrew Cagney <ac131313@redhat.com>
6578
6579 From Ross Alexander at NEC Europe:
6580 * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
6581
de530e84
MS
65822002-05-23 Michael Snyder <msnyder@redhat.com>
6583
6584 * cli/cli-dump.c (restore_command): Use parse_and_eval_long
6585 for input, rather than parse_and_eval_address.
6586
b91b96f4
AC
65872002-05-23 Andrew Cagney <ac131313@redhat.com>
6588
6589 * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
6590 * Makefile.in (sim_d10v_h): Update definition.
6591
8b279e7a
AC
65922002-05-24 Andrew Cagney <cagney@redhat.com>
6593
6594 * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
6595 change `2002-05-22 Michael Snyder' below.
6596 (d10v_push_arguments): Ditto.
6597 (d10v_extract_return_value): Ditto.
6598
0a3d0425
JB
65992002-05-23 Jim Blandy <jimb@redhat.com>
6600
6601 * macrotab.c (check_for_redefinition): Don't complain if the new
6602 definition is the same as the previous one. Take more arguments
6603 to allow the comparison.
6604 (macro_define_object, macro_define_function): Pass more arguments
6605 to check_for_redefinition.
6606
78eac43e
MS
66072002-05-22 Michael Snyder <msnyder@redhat.com>
6608
6609 * d10v-tdep.c: Change a few macros to enums for ease of debugging.
6610 (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
6611 (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
6612 (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
6613 Don't bail if return_pc is PC_IN_CALL_DUMMY.
6614 Add a temp variable to save a call (and a memory read).
6615 (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
6616 if possible (so that PC_IN_CALL_DUMMY will work).
6617
9bc1edb8
CV
66182002-05-22 Corinna Vinschen <vinschen@redhat.com>
6619
6620 * MAINTAINERS: Remove status `OBSOLETE' from v850.
6621
005ef3d2
ML
66222002-05-22 Michal Ludvig <mludvig@suse.cz>
6623
6624 * dwarf2cfi.c (frame_state_for): Added safety check for a valid
6625 fde->cie_ptr.
6626 (dwarf2_build_frame_info): Corrected handling of eh_frame.
6627 (dwarf2_build_frame_info): Add offset to fde->initial_location
6628 so that frames of shared libraries are mapped correctly.
6c3eb890
ML
6629 (execute_stack_op): Change type of 'result' from ULONGEST to
6630 CORE_ADDR.
005ef3d2 6631
fcf4f891
JT
66322002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6633
6634 * config/alpha/tm-nbsd.h: Include solib.h.
6635
cfef91e4
JT
66362002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6637
6638 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
6639 assumptions about the host's byte order.
6640
9964235a
JT
66412002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6642
6643 * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
6644 to dependency list.
6645 * alphanbsd-tdep.c: Include solib-svr4.h.
6646 * shnbsd-tdep.c: Ditto.
6647
9eeef8ef
JT
66482002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6649
6650 * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
6651 nbsd-tdep.h to dependency list.
6652 * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
6653 i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
6654 ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
6655 nbsdaout.mh and nbsdelf.mh consistently.
6656 * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
6657 ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
6658 nbsdaout.mt and nbsdelf.mh consistently.
6659 * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h.
6660 (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
6661 to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
6662 * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS. Move
6663 a.out shared library stuff from here...
6664 * config/nm-nbsdaout.h: ...to here.
6665 * config/tm-nbsd.h: Remove.
6666 * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
6667 * config/arm/nbsd.mh: Remove.
6668 * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
6669 nbsd-tdep.o.
6670 * config/arm/nbsdaout.mh: New file.
6671 * config/arm/nbsdelf.mh: New file.
6672 * config/arm/nm-nbsdaout.h: New file.
6673 * config/i386/nbsd.mh: Remove.
6674 * config/i386/nbsd.mt: Remove.
6675 * config/i386/nbsdaout.mh: New file.
6676 * config/i386/nbsdaout.mt: New file.
6677 * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
6678 * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
6679 * config/i386/nm-nbsd.h (REGISTER_U_ADDR,
6680 i386_register_u_addr): Remove.
6681 * config/i386/nm-nbsdaout.h: New file.
6682 * config/i386/nm-nbsdelf.h: Remove.
6683 * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
6684 (USE_STRUCT_CONVENTION): Remove.
6685 * config/i386/tm-nbsdaout.h: New file.
6686 * config/i386/tm-nbsdelf.h: Remove.
6687 * config/m68k/nbsd.mh: Remove.
6688 * config/m68k/nbsd.mt: Remove.
6689 * config/m68k/nbsdaout.mh: New file.
6690 * config/m68k/nbsdaout.mt: New file.
6691 * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
6692 * config/m68k/nm-nbsdaout.h: New file.
6693 * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
6694 (IN_SOLIB_CALL_TRAMPOLINE): Define.
6695 * config/ns32k/nbsd.mh: Remove.
6696 * config/ns32k/nbsd.mt: Remove.
6697 * config/ns32k/nbsdaout.mh: New file.
6698 * config/ns32k/nbsdaout.mt: New file.
6699 * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h.
6700 * config/ns32k/nm-nbsdaout.h: New file.
6701 * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.
6702 (IN_SOLIB_CALL_TRAMPOLINE): Define.
6703 * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
6704 (SVR4_SHARED_LIBS): Remove.
6705 * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
6706 * config/sparc/nbsd.mh: Remove.
6707 * config/sparc/nbsd.mt: Remove.
6708 * config/sparc/nbsdaout.mh: New file.
6709 * config/sparc/nbsdaout.mt: New file.
6710 * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
6711 * config/sparc/nbsdelf.mt: New file.
6712 * config/sparc/nm-nbsdaout.h: New file.
6713 * config/sparc/nm-nbsdelf.h: Remove.
6714 * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
6715 * config/sparc/tm-nbsdaout.h: New file.
6716
257ce470
JT
67172002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6718
6719 * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
6720 mipsnbsd-tdep.c
6721 (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
6722
76a6d5fe
JT
67232002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6724
6725 * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
6726 shnbsd-nat.c.
6727 (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
6728
45888261
JT
67292002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6730
6731 * NEWS: Note new MIPS NetBSD native configuration.
6732 * configure.host (mips*-*-netbsd*): New host.
6733 * configure.tgt (mips*-*-netbsd*): New target.
6734 * mipsnbsd-nat.c: New file.
6735 * mipsnbsd-tdep.c: New file.
6736 * mipsnbsd-tdep.h: New file.
6737 * config/mips/nbsd.mh: New file.
6738 * config/mips/nbsd.mt: New file.
6739 * config/mips/nm-nbsd.h: New file.
6740 * config/mips/tm-nbsd.h: New file.
6741
70f80edf
JT
67422002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6743
6744 * Makefile.in (SFILES): Add osabi.c.
6745 (COMMON_OBS): Add osabi.o.
6746 (osabi.o): New dependency list.
6747 * osabi.c: New file.
6748 * osabi.h: New file.
6749 * doc/gdbint.texinfo: Document new generic OS ABI framework.
6750
6751 * Makefile.in (alpha_tdep_h): Define and use instead of
6752 alpha-tdep.h.
6753 * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
6754 get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
6755 Remove.
6756 (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
6757 * alpha-tdep.h: Include osabi.h.
6758 (alpha_abi): Remove.
6759 (gdbarch_tdep): Use generic OS ABI framework.
6760 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
6761 gdbarch_register_osabi.
6762 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
6763 * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
6764 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
6765
6766 * Makefile.in (sh_tdep_h): Add osabi.h.
6767 * sh-tdep.h (sh_osabi): Remove.
6768 (gdbarch_tdep): Use generic OS ABI framework.
6769 * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
6770 sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
6771 (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
6772 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
6773
6774 * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
6775 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
6776 gdbarch_register_osabi.
6777 * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
6778 arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
6779 (get_elfosabi): Rename to...
6780 (arm_elf_osabi_sniffer): ...this. Adjust to use generic OS
6781 ABI framework support routines.
6782 (arm_gdbarch_init): Use generic OS ABI framework.
6783 (arm_dump_tdep): Likewise.
6784 (_initialize_arm_tdep): Likewise.
6785 * arm-tdep.h: Include osabi.h.
6786 (arm_abi): Remove.
6787 (gdbarch_tdep): Remove arm_abi and abi_name members. Add
6788 osabi member.
6789 (arm_gdbarch_register_os_abi): Remove prototype.
6790 * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
6791 (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
6792
6793 * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
6794 * mips-tdep.c: Include osabi.h.
6795 (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
6796 OS ABI framework.
6797
d194345b
KH
67982002-05-20 Kazu Hirata <kazu@cs.umass.edu>
6799
6800 * h8300-tdep.c: Fix formatting.
6801
70c6b0d1
EZ
68022002-05-20 Elena Zannoni <ezannoni@redhat.com>
6803
6804 * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
6805 printing vector registers.
6806
165b8e33
AC
68072002-05-19 Andrew Cagney <ac131313@redhat.com>
6808
6809 From Fernando Nasser:
6810 * remote.c (remote_async_open_1): Re-throw the exception when the
6811 connection fails.
6812 (remote_cisco_open): Ditto.
6813 (remote_open_1): Ditto.
6814
36918e70
AC
68152002-05-19 Andrew Cagney <ac131313@redhat.com>
6816
6817 * remote.c (remote_start_remote_dummy): Add uiout parameter.
6818 (remote_start_remote): Add uiout parameter. Pass through to
6819 remote_start_remote_dummy.
6820 (remote_open_1): Use catch_exception instead of catch_errors.
6821 (remote_async_open_1): Ditto.
6822 (remote_cisco_open): Ditto.
6823
ae44c0c4
AC
68242002-05-19 Andrew Cagney <ac131313@redhat.com>
6825
6826 * remote.c (remote_start_remote): Replace PTR with void pointer.
6827 (sigint_remote_twice_token, sigint_remote_token): Ditto. Make
6828 static.
6829
8efe637d
AC
68302002-05-18 Andrew Cagney <ac131313@redhat.com>
6831
6832 * gdb_indent.sh: Allow the script to be run in the sim directory.
6833
2f1b5984
MK
68342002-05-18 Mark Kettenis <kettenis@gnu.org>
6835
f0f625e2
MK
6836 * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
6837 * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
6838
2f1b5984
MK
6839 * corelow.c (core_open): Only call set_gdbarch_from_file if
6840 exec_bfd is NULL.
6841
fc974602
AV
68422002-05-17 Andrey Volkov <avolkov@transas.com>
6843
6844 * h8300-tdep.c: Add support of EXR register
6845 * config/h8300/tm-h8300.h: Ditto.
6846
906709f4
AV
68472002-05-17 Andrey Volkov <avolkov@transas.com>
6848
6849 * h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
6850
6e591d68
AV
68512002-05-17 Andrey Volkov <avolkov@transas.com>
6852
6853 * h8300-tdep.c: Change literal regnums to REGNO.
6854
84f0252a
JB
68552002-05-17 Jim Blandy <jimb@redhat.com>
6856
e0e9281e
JB
6857 * NEWS: Note addition of macro support.
6858
84f0252a
JB
6859 Expand preprocessor macros in C expressions.
6860 * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
6861 (scan_macro_expansion, scanning_macro_expansion,
6862 finished_macro_expansion): New function declarations.
6863 (expression_macro_lookup_func, expression_macro_lookup_baton): New
6864 variable declarations.
6865 * parser-defs.h (expression_context_pc): New declaration.
6866 * parse.c (expression_context_pc): New variable.
6867 (parse_exp_1): Set expression_context_pc, as well as
6868 expression_context_block.
6869 * c-exp.y (yylex): If we're not already reading the result of a
6870 macro expansion, try to macro-expand the next token. When we're
6871 done scanning a macro expansion, switch back to the mainline text.
6872 Commas and `if's in a macro's expansion don't terminate the input.
6873 * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
6874 (macro_original_text, macro_expanded_text,
6875 expression_macro_lookup_func, expression_macro_lookup_baton): New
6876 variables.
6877 (scan_macro_expansion, scanning_macro_expansion,
6878 finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
6879 c_preprocess_and_parse): New functions.
6880 (c_language_defn, cplus_language_defn, asm_language_defn): Call
6881 c_preprocess_and_parse, instead of c_parse.
6882 * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
6883 (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
6884
1c509ca8
JR
6885Fri May 17 14:26:19 2002 J"orn Rennecke <joern.rennecke@superh.com>
6886
6887 * sh-tdep.c (gdb_print_insn_sh64): Delete.
6888 (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
6889 (sh_gdbarch_init): Always use gdb_print_insn_sh.
6890
2250ee0c
CV
68912002-05-17 Corinna Vinschen <vinschen@redhat.com>
6892
6893 * NEWS: Add section for multi-arched targets. Add v850 to that section.
6894
ab3b8126
JT
68952002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
6896
6897 * Makefile.in (sh_tdep_h): Define and use.
6898 * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
6899 register enum): Move to...
6900 * * sh-tdep.h: ...here.
6901 * sh-tdep.c: Include sh-tdep.h.
6902 * sh3-rom.c: Likewise.
6903 * shnbsd-tdep.c: Likewise.
6904
ed9d4749
MS
69052002-05-16 Michael Snyder <msnyder@redhat.com>
6906
6907 * arm-tdep.c: Spelling fix in comment.
6908
2e276125
JB
69092002-05-16 Jim Blandy <jimb@redhat.com>
6910
6821892e
JB
6911 Add commands for manually expanding macros and showing their
6912 definitions.
6913 * macrocmd.c, macroscope.c, macroscope.h: New files.
6914 * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
6915 (macroscope_h): New variable.
6916 (HFILES_NO_SRCDIR): Add macroscope.h.
6917 (COMMON_OBS): Add macrocmd.o, macroscope.o.
6918 (macroscope.o, macrocmd.o): New rules.
6919
2e276125
JB
6920 Teach the Dwarf 2 reader to read macro information.
6921 * dwarf2read.c: #include "macrotab.h".
6922 (dwarf_macinfo_buffer): New variable.
6923 (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
6924 dwarf_macinfo_size.
6925 (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
6926 (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
6927 dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
6928 dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
6929 dwarf2_macro_spaces_in_definition): New complaints.
6930 (dwarf2_has_info): Initialize dwarf_macinfo_offset.
6931 (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
6932 (dwarf2_build_psymtabs_hard): Record the buffer and its size in
6933 the partial symbol table.
6934 (psymtab_to_symtab_1): Set the macinfo buffer and size globals
6935 from what's recorded in the partial symbol table.
6936 (read_file_scope): If the compilation unit has a
6937 `DW_AT_macro_info' attribute, read its macro information.
6938 * Makefile.in (dwarf2read.o): Depend on macrotab.h.
6939
2f53fe6c
DJ
69402002-05-16 Daniel Jacobowitz <drow@mvista.com>
6941
6942 Fix PR gdb/546
6943 * ser-tcp.c: Don't include <netinet/udp.h>.
6944
2be99286
SC
69452002-05-16 Stephane Carrez <stcarrez@nerim.fr>
6946
6947 * MAINTAINERS: Update my email address.
6948
c9af212b 69492002-05-16 Richard Earnshaw <rearnsha@arm.com>
8501bbeb
RE
6950
6951 * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
6952 include file of the same name.
6953
bf5f1a52
CV
69542002-05-16 Corinna Vinschen <vinschen@redhat.com>
6955
6956 * configure.tgt: Mark v850 as multi-arched.
6957 * config/v850/tm-v850.h: Remove file.
6958 * config/v850/v850.mt: Eliminate TM_FILE.
6959
435e042a
CV
69602002-05-16 Corinna Vinschen <vinschen@redhat.com>
6961
6962 * v850-tdep.c: Full multi-arch.
6963 * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
6964 Define GDB_MULTI_ARCH to 2.
6965
9819c6c8
PM
69662002-05-16 Pierre Muller <muller@ics.u-strasbg.fr>
6967
6968 * p-exp.y (current_type): New static variable.
6969 Carries the type of the expression at the position that is parsed.
6970 (push_current_type, pop_current_type): Two new functions. Used
6971 to store/restore current_type in expression on specific tokens.
c9af212b
RE
6972 (search_field): New static variable. Set to one after parsing a point
6973 as at that point only a FIELDNAME token should be searched.
9819c6c8
PM
6974 (FIELDNAME): New token. After a point only a token belonging to
6975 current_type type definition is allowed.
6976 (all over token rules): reset and change current_type according
6977 to rules.
6978 (exp '[' rule): insert implicit array index field if
6979 exp is a pascal string type.
6980
3a06899a
CV
69812002-05-16 Corinna Vinschen <vinschen@redhat.com>
6982
6983 * v850-tdep.c: Fix comment for v850_scan_prologue. Remove extra
6984 frame info. Use frame_info's saved_regs instead of matching member
6985 in extra_frame_info throughout.
6986 (v850_frame_init_saved_regs): New function.
6987 (v850_init_extra_frame_info): Move most functionality into
6988 v850_frame_init_saved_regs().
6989 * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
6990 (v850_frame_find_saved_regs): Remove declaration.
6991 (FRAME_FIND_SAVED_REGS): Remove definition.
6992 (v850_frame_init_saved_regs): Add declaration.
6993 (FRAME_INIT_SAVED_REGS): Add definition.
6994
6ed14b0e
CV
69952002-05-16 Corinna Vinschen <vinschen@redhat.com>
6996
6997 * v850-tdep.c: Begin multi-arch'ing v850.
6998 (v850_target_architecture_hook): Remove function.
6999 (v850_gdbarch_init): New function. Add code previously in
7000 v850_target_architecture_hook().
7001 (_initialize_v850_tdep): Don't set target_architecture_hook.
7002 Call register_gdbarch_init() instead.
7003
42725910
DJ
70042002-05-16 Daniel Jacobowitz <drow@mvista.com>
7005
7006 * gdbtypes.h (struct cplus_struct_type): Remove args field.
7007 * hpread.c (hpread_read_struct_type): Remove assignments to args.
7008 (fixup_class_method_type): Likewise.
7009
99d9066e
JB
70102002-05-15 Jim Blandy <jimb@redhat.com>
7011
7012 Add macro structures to GDB's symbol tables. Nobody puts anything
7013 in them yet.
7014 * symtab.h (struct symtab): New member: `macro_table'.
7015 * buildsym.h (pending_macros): New global variable.
7016 * buildsym.c: #include "macrotab.h".
7017 (buildsym_init): Initialize `pending_macros'.
7018 (end_symtab): If we found macro information while reading a CU's
7019 debugging info, do build a symtab structure for it. Make the
7020 symtab point to the macro information, and clear the
7021 `pending_macros' pointer which held it while we were reading the
7022 debug info.
7023 (really_free_pendings): Free any pending macro table.
7024 * objfiles.h (struct objfile): New member: `macro_cache'.
7025 * objfiles.c (allocate_objfile): Set allocate and free functions
7026 for the macro cache's objstack.
7027 (free_objfile): Empty the macro cache's obstack.
7028 * symfile.c (reread_symbols): Empty the macro cache's obstack, and
7029 set new allocate and free functions for it.
7030 * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
7031 free functions for the macro cache's objstack. (Why is this
7032 function building its own objfile?)
7033 * symmisc.c (print_objfile_statistics): Print statistics on the
7034 macro bcache.
7035 * Makefile.in: Note that buildsym.o depends on macrotab.h.
7036
c899585b
RE
70372002-05-15 Richard Earnshaw <rearnsha@arm.com>
7038
7039 * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
7040 (REGISTER_U_ADDR): Delete definition.
7041 (arm_register_u_addr): Delete declaration.
7042
a6cdd8c5
RE
70432002-05-15 Richard Earnshaw <rearnsha@arm.com>
7044
7045 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
7046 (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
7047
c97dcfc7
AC
70482002-05-14 Andrew Cagney <ac131313@redhat.com>
7049
7050 * regcache.c (register_valid): Revise comments refering to "Not
7051 available" and "unavailable".
7052 * frame.c (frame_register_read): Ditto.
7053 * findvar.c (value_of_register): Ditto.
7054
93021b7d
AC
70552002-05-15 Andrew Cagney <cagney@redhat.com>
7056
7057 * Makefile.in (remote_sim_h): Replace remote-sim_h.
7058 (remote-sim.o): Update dependencies.
7059 (d10v-tdep.o): Specify dependencies.
7060 (sim_d10v_h): Define.
7061
a86bc61c
JB
70622002-05-14 Jim Blandy <jimb@redhat.com>
7063
7064 * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
7065 * macrotab.c (macro_lookup_inclusion, find_definition,
7066 new_macro_table): Same.
7067
7068 * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
7069 not `! strcmp ()'. This is a dubious improvement.
7070 * macrotab.c (macro_lookup_inclusion, find_definition): Same.
7071
7072 * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
7073 although it's not necessary, to avoid a warning.
7074
2fdde8f8
DJ
70752002-05-14 Daniel Jacobowitz <drow@mvista.com>
7076
7077 * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
7078 (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
7079 TYPE_INSTANCE_FLAGS.
7080 (struct main_type): New.
7081 (struct type): Move most members to struct main_type. Change
7082 cv_type and as_type to new type_chain member. Add instance_flags.
7083 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
7084 (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
7085 (finish_cv_type): Remove prototype.
7086 * gdbtypes.c (alloc_type): Update comment. Allocate TYPE_MAIN_TYPE.
7087 Set TYPE_CHAIN.
7088 (alloc_type_instance): New function.
7089 (smash_type): New function.
7090 (make_pointer_type, make_reference_type, make_function_type)
7091 (smash_to_member_type, smash_to_method_type): Call smash_type.
7092 (make_qualified_type): New function.
7093 (make_type_with_address_space): Call make_qualified_type.
7094 (make_cv_type): Likewise.
7095 (finish_cv_type): Remove unnecessary function.
7096 (replace_type): Update comment. Copy TYPE_MAIN_TYPE.
7097 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
7098 remove TYPE_CV_TYPE and TYPE_AS_TYPE.
7099 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
7100 * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
7101 * hpread.c (hpread_read_struct_type): Likewise.
7102 * stabsread.c (read_struct_type): Likewise.
7103
843fedf4
EZ
71042002-05-14 Elena Zannoni <ezannoni@redhat.com>
7105
7106 * configure.tgt: Add a catch all sh* target, for cases like
7107 sh[2,3,4]-elf and sh-hms.
7108
05a6c72c
KS
71092002-05-14 Keith Seitz <keiths@redhat.com>
7110
7111 * event-loop.c (create_file_handler): Don't do anything but
7112 update data when we are given a fd which we are already
7113 monitoring.
7114
5d085aaf
ML
71152002-05-14 Michal Ludvig <mludvig@suse.cz>
7116
7117 * dwarf2cfi.c (context_cpy): Copy registers correctly.
7118 (update_context): Use __func__ in warnings.
7119
9db8d71f
DJ
71202002-05-14 Daniel Jacobowitz <drow@mvista.com>
7121
7122 * ser-tcp.c: Include <netinet/udp.h>. Rename tcp_open
7123 and tcp_close to net_open and net_close.
7124 (net_open): Accept "udp:" and "tcp:" specifications. Connect
7125 using UDP if requested. Don't try to disable Nagle on UDP
7126 sockets.
7127 * remote.c (remote_serial_open): New function. Warn about UDP.
7128 (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
7129
5dbc6baa
EZ
71302002-05-13 Elena Zannoni <ezannoni@redhat.com>
7131
7132 * MAINTAINERS: List sh-elf as buildable with ,-Werror.
7133
cc3023f7
EZ
71342002-05-13 Elena Zannoni <ezannoni@redhat.com>
7135
7136 * configure.tgt: Remove sh-hms target.
7137 * MAINTAINERS: Don't list sh-hms as a separate target.
7138
ec2bcbe7
JB
71392002-05-13 Jim Blandy <jimb@redhat.com>
7140
7141 Add first preprocessor macro-expansion files.
7142 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
7143 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
7144 (splay_tree_h, macroexp_h, macrotab_h): New variable.
7145 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
7146 (COMMON_OBS): Add macrotab.o, macroexp.o.
7147 (macroexp.o, macrotab.o): New rules.
7148
6d531722
AC
71492002-05-13 Andrew Cagney <ac131313@redhat.com>
7150
7151 * config/m88k/tm-m88k.h: Update copyright.
7152 (m88k_target_write_pc): Declare
7153 (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
7154 (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
7155 (SHIFT_INST_REGS): Update definition.
7156 * m88k-tdep.c (m88k_target_write_pc): New function. Implement
7157 using old definition of TARGET_WRITE_PC.
7158 * regcache.c (generic_target_write_pc): Delete code handling
7159 NNPC_REGNUM.
7160 * gdbarch.sh (NNPC_REGNUM): Delete.
7161 * gdbarch.h, gdbarch.c: Regenerate.
7162
3e3f2739
RE
71632002-05-13 Richard Earnshaw <rearnsha@arm.com>
7164
7165 * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
7166 builtin reg number.
7167
0004e5a2
DJ
71682002-05-13 Daniel Jacobowitz <drow@mvista.com>
7169
7170 * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
7171 (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
7172 (gen_address_of, gen_struct_ref, gen_repeat): Use type
7173 access macros.
7174 * c-typeprint.c (cp_type_print_method_args): Likewise.
7175 (c_type_print_args): Likewise.
7176 * d10v-tdep.c (d10v_push_arguments): Likewise.
7177 (d10v_extract_return_value): Likewise.
7178 * expprint.c (print_subexp): Likewise.
7179 * gdbtypes.c (lookup_primitive_typename): Likewise.
7180 (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
7181 * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
7182 (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
7183 (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
7184 (TYPE_VECTOR): Likewise.
7185 * hpread.c (hpread_read_struct_type)
7186 (fix_static_member_physnames, fixup_class_method_type)
7187 (hpread_type_lookup): Likewise.
7188 * mdebugread.c (parse_symbol, parse_type): Likewise.
7189 * p-lang.c (is_pascal_string_type): Likewise.
7190 * valops.c (hand_function_call): Likewise.
7191 * x86-64-tdep.c (classify_argument): Likewise.
7192
7193 * hpread.c (hpread_read_function_type)
7194 (hpread_read_doc_function_type): Call replace_type.
7195 * dstread.c (create_new_type): Delete.
7196 (decode_dst_structure, process_dst_function): Call alloc_type.
7197 Use type access macros.
7198
dff95cc7
MK
71992002-05-12 Mark Kettenis <kettenis@gnu.org>
7200
7201 * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
7202 the're not supported by the current architecture.
7203 (i387_fill_fxsave): Likewise.
7204
bbcd32ad
FF
72052002-05-12 Fred Fish <fnf@redhat.com>
7206
7207 * symfile.c (default_symfile_offsets): Arrange for uninitialized
7208 sect_index_xxx members to index the first slot in section_offsets
7209 if all of the section_offsets are zero.
7210
89cf4787
MK
72112002-05-12 Mark Kettenis <kettenis@gnu.org>
7212
7213 * configure.tgt (sparc-*openbsd): Remove entry accidentially
7214 checked in with last change.
7215
1f77ffc5
MK
72162002-05-12 Mark Kettenis <kettenis@gnu.org>
7217
7218 * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
7219 Remove targets. These are canonicalized to i386-*-sysv4.2uw by
7220 config.sub.
7221
89b8b4a9
DJ
72222002-05-12 Daniel Jacobowitz <drow@mvista.com>
7223
7224 * Makefile.in: Update dependencies.
7225
14a5e767
AC
72262002-05-11 Andrew Cagney <ac131313@redhat.com>
7227
7228 * language.c (local_hex_string_custom): Simplify. Do not depend
7229 on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
7230
7231 * memattr.c (mem_info_command): Replace calls to
7232 longest_local_hex_string and longest_local_hex_string_custom.
7233 * buildsym.c (make_blockvector): Ditto.
7234 * solib.c (info_sharedlibrary_command): Ditto.
7235 * tracepoint.c (tracepoints_info): Ditto.
7236 * symtab.c (print_msymbol_info): Ditto.
7237
7238 * language.c (local_hex_string): Delete.
7239 (local_hex_string_custom): Delete.
7240 (longest_local_hex_string): Rename to local_hex_string.
7241 (longest_local_hex_string_custom): Rename to
7242 local_hex_string_custom.
7243 * language.h (local_hex_string): Change parameter type to LONGEST.
7244 (local_hex_string_custom): Ditto.
7245 (longest_local_hex_string): Delete declaration.
7246 (longest_local_hex_string_custom): Ditto.
7247
7248 * solib.c: Update copyright.
7249 * memattr.c: Update copyright.
7250
13d01224
AC
72512002-05-11 Andrew Cagney <ac131313@redhat.com>
7252
7253 * arch-utils.h (legacy_register_to_value): Declare.
7254 (legacy_value_to_register): Declare.
7255 (legacy_convert_register_p): Declare.
7256 * arch-utils.c (legacy_register_to_value): New function.
7257 (legacy_value_to_register): New function.
7258 (legacy_convert_register_p): New function.
7259
7260 * gdbarch.sh (REGISTER_TO_VALUE): Define.
7261 (VALUE_TO_REGISTER): Define.
7262 (CONVERT_REGISTER_P): Define.
7263 * gdbarch.h, gdbarch.c: Regenerate.
7264
7265 * valops.c (value_assign): Use CONVERT_REGISTER_P and
7266 VALUE_TO_REGISTER.
7267 * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
7268 CONVERT_REGISTER_P.
7269
4a1970e4
DJ
72702005-05-11 Daniel Jacobowitz <drow@mvista.com>
7271 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
7272
7273 * Makefile.in: Update dependencies for valops.c.
7274 * valops.c: Include "gdb_assert.h".
7275 (typecmp): Skip THIS parameter to methods.
7276 (find_method_list): Remove static_memfuncp argument,
7277 update callers. Check for stub methods.
7278 (find_value_oload_method_list): Don't set *static_memfuncp.
7279 (find_overload_match): Don't check for stub methods. Assert
7280 that methods are not stubbed. Handle static methods.
7281 (value_find_oload_method_list): Remove static_memfuncp argument.
7282 * gdbtypes.c (check_stub_method): Do not add THIS pointer
7283 to the argument list for static stub methods.
7284 * value.h (value_find_oload_method_list): Update prototype.
7285
b2e75d78
AC
72862002-05-11 Andrew Cagney <ac131313@redhat.com>
7287
7288 * arch-utils.h (generic_register_size): Declare.
7289 (generic_register_raw_size, generic_register_virtual_size): Delete
7290 declarations.
7291 * arch-utils.c (generic_register_raw_size): Delete.
7292 (generic_register_size): New function.
7293 (generic_register_virtual_size): Delete.
7294
7295 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
7296 default generic_register_size.
7297 * gdbarch.h, gdbarch.c: Re-generate.
7298
7299 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
7300 register_virtual_size.
7301 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
7302 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
7303
451fbdda
AC
73042002-05-11 Andrew Cagney <ac131313@redhat.com>
7305
7306 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
7307 * gdbarch.h, gdbarch.c: Regenerate.
7308 * gnu-v3-abi.c: Update copyright.
7309 (vtable_address_point_offset): Update.
7310 (gnuv3_rtti_type): Update.
7311 (gnuv3_baseclass_offset): Update.
7312 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
7313 (init_fetch_link_map_offsets): Update.
7314 * remote.c (get_remote_state): Update.
7315
6d2f5cea
DJ
73162002-05-11 Daniel Jacobowitz <drow@mvista.com>
7317
7318 * TODO: Remove value_headof/value_from_vtable_info comment.
7319 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
7320 * values.c (value_headof, value_from_vtable_info): Delete.
7321 * value.h (value_from_vtable_info): Delete prototype.
7322
d2324da4
AC
73232002-05-11 Andrew Cagney <ac131313@redhat.com>
7324
7325 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
7326 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
7327 $(gdb_regex_h).
7328 (gdb_assert_h): Define.
7329 (gdb_wait_h): Define.
7330 (gdb_regex_h): Define.
7331
5c717440
DJ
73322002-05-11 Daniel Jacobowitz <drow@mvista.com>
7333
7334 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
7335 * linespec.c (find_methods): Handle GCC 3.x template constructors.
7336
6c7861b3
JT
73372002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7338
7339 * nbsd-tdep.c: Fix comment.
7340
ea5bc2a6
JT
73412002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7342
7343 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
7344 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
7345 (nbsd-tdep.o): New dependency list.
7346 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
7347 nbsd-tdep.h.
7348 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
7349 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
7350 * nbsd-tdep.c: New file.
7351 * nbsd-tdep.h: New file.
7352 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
7353 nbsd-tdep.h.
7354 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
7355 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
7356 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
7357 * config/sh/nbsd.mt (TDEPFILES): Ditto.
7358
b28da865
JT
73592002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7360
7361 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
7362 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
7363 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
7364 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
7365 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
7366 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
7367
4b8ff1fa
JT
73682002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7369
7370 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
7371 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7372 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
7373 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
7374 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
7375 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
7376 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
7377
dfe6eb1f
JT
73782002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7379
7380 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
7381 fetch_elfcore_registers to...
7382 * i386nbsd-tdep.c: ...here.
7383 (i386nbsd_use_struct_convention): Rename to...
7384 (i386nbsd_aout_use_struct_convention): ...this.
7385 (i386nbsd_supply_reg): New function.
7386 (i386nbsd_fill_reg): New function.
7387 (fetch_core_registers): Use i386nbsd_supply_reg.
7388 (fetch_elfcore_registers): Likewise.
7389 (_initialize_i386nbsd_tdep): New function.
7390 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
7391 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7392 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
7393 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
7394 (i386nbsd_aout_use_struct_convention): ...this.
7395
20cb8cda
JT
73962002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7397
7398 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
7399 (store_inferior_registers): Use shnbsd_fill_reg.
7400 * shnbsd-tdep.c (sh_nbsd_supply_registers,
7401 sh_nbsd_supply_register): Collapse into...
7402 (shnbsd_supply_reg): ...this.
7403 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
7404 (shnbsd_fill_reg): ...this.
7405 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
7406 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
7407 (fetch_core_registers): Use shnbsd_supply_reg.
7408 (fetch_elfcore_registers): Use shnbsd_supply_reg.
7409 (sh_nbsd_core_fns): Rename to...
7410 (shnbsd_core_fns): ...this.
7411 (sh_nbsd_elfcore_fns): Rename to...
7412 (shnbsd_elfcore_fns): ...this.
7413 (sh_nbsd_init_abi): Rename to...
7414 (shnbsd_init_abi): ...this.
7415 (_initialize_sh_nbsd_tdep): Rename to...
7416 (_initialize_shnbsd_tdep): ...this.
7417 * shnbsd-tdep.h (sh_nbsd_supply_registers,
7418 sh_nbsd_supply_register, sh_nbsd_fill_registers,
7419 sh_nbsd_fill_register): Remove prototypes.
7420 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
7421
e750d25e
JT
74222002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7423
7424 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
7425 (i387-nat.o): Delete dependency list.
7426 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
7427 (x86-64-linux-nat.o): Likewise.
7428 * i387-nat.c: Delete file, moving contents to...
7429 * i387-tdep.c: ...here.
7430 * i387-nat.h: Rename...
7431 * i387-tdep.h: ...to this.
7432 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
7433 * i386-linux-nat.c: Likewise.
7434 * i386bsd-nat.c: Likewise.
7435 * i386gnu-nat.c: Likewise.
7436 * i386nbsd-nat.c: Likewise.
7437 * i386v4-nat.c: Likewise.
7438 * x86-64-linux-nat.c: Likewise.
7439 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
7440 * config/i386/go32.mh (NATDEPFILES): Likewise.
7441 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
7442 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
7443 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
7444 * config/i386/linux.mh (NATDEPFILES): Likewise.
7445 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
7446 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7447 * config/i386/obsd.mh (NATDEPFILES): Likewise.
7448 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
7449
1aee598a
JT
74502002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7451
7452 * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
7453 (alphanbsd-nat.o): Remove dependency list.
7454 (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
7455 * alphanbsd-nat.c: Delete. Contents moved to...
7456 * alphanbsd-tdep.c: ...here.
7457 (_initialize_alphanbsd_tdep): Register core functions.
7458 * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
7459
12bcb0fe
JT
74602002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7461
7462 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
7463 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
7464 (alphanbsd-nat.o): Likewise.
7465 (alphabsd-tdep.o): New dependency list.
7466 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
7467 (fill_gregset): Use alphabsd_fill_reg.
7468 (supply_fpregset): Use alphabsd_supply_fpreg.
7469 (fill_fpregset): Use alphabsd_fill_fpreg.
7470 (fetch_inferior_registers): Use struct reg and struct fpreg
7471 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
7472 and alphabsd_supply_fpreg.
7473 (store_inferior_registers): Use struct reg and struct fpreg
7474 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
7475 and alphabsd_fill_fpreg.
7476 * alphabsd-tdep.c: New file.
7477 * alphabsd-tdep.h: New file.
7478 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
7479 (fetch_elfcore_registers): Use alphabsd_supply_reg and
7480 alphabsd_supply_fpreg.
7481 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
7482 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
7483
361d1df0
EC
74842002-05-11 Eric Christopher <echristo@redhat.com>
7485
7486 * mips-tdep.c (mips_double_register_type): Fix thinko.
7487 (mips_single_register_type): Ditto.
7488 * MAINTAINERS: Add self.
7489
92dd7cee
MK
74902002-05-11 Mark Kettenis <kettenis@gnu.org>
7491
7492 * i387-nat.c (i387_supply_register, i387_fill_fsave,
7493 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
7494 right thing on architectures with different endianness and/or
7495 integer sizes.
7496
e27da16d
JT
74972002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
7498
7499 From Christian Limpach <chris@Pin.LU>
7500 * configure.in: Change sed expression which comments out
7501 NATDEPFILES to also comment out continuation lines.
7502 * configure: Regenerate.
7503
ddde02bd
EZ
75042002-05-10 Elena Zannoni <ezannoni@redhat.com>
7505
7506 * sh-tdep.c: Clean up code erroneously reintroduced by previous
7507 big patch.
7508
1c922164
EZ
75092002-05-10 Elena Zannoni <ezannoni@redhat.com>
7510
7511 * sh-tdep.c: Include correct file.
7512
283150cd
EZ
75132002-05-10 Elena Zannoni <ezannoni@redhat.com>
7514
7515 New support for sh64-elf (sh5) target.
7516
7517 * configure.tgt: For sh64-elf target, default to sh-elf.
7518
7519 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
7520 (struct gdbarch_tdep): Add new fields for new registers and ABI
7521 info.
361d1df0 7522
283150cd
EZ
7523 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
7524 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
7525 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
7526 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
7527 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
7528 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
7529 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
7530 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
7531 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
7532 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
7533 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
7534 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
7535 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
7536 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
7537 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
7538 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
7539 sh64_get_gdb_regnum, sh64_media_reg_base_num,
7540 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
7541 sign_extend, sh64_nofp_frame_init_saved_regs,
7542 sh64_init_extra_frame_info, sh64_get_saved_register,
7543 sh64_extract_struct_value_address, sh64_pop_frame,
7544 sh64_push_arguments, sh64_extract_return_value,
7545 sh64_store_return_value, sh64_show_media_regs,
7546 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
7547 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
7548 sh_sh64_register_virtual_type,
7549 sh_sh64_register_convert_to_virtual,
7550 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
7551 sh64_register_read, sh64_pseudo_register_write,
7552 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
7553 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
7554 sh64_do_pseudo_register, sh_compact_do_registers_info,
7555 sh64_do_registers_info, sh_gdbarch_init): New functions.
7556
3117ed25
EZ
75572002-05-10 Elena Zannoni <ezannoni@redhat.com>
7558
7559 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
7560
2654e6d4
DJ
75612002-05-10 Daniel Jacobowitz <drow@mvista.com>
7562
7563 * linespec.c (decode_line_1): Check for a double quote after
7564 a filename correctly.
7565
9ab3e532
JB
75662002-05-10 Jim Blandy <jimb@redhat.com>
7567
7568 Properly track the size of the current objfile's .debug_line section.
7569 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
7570 (DWARF_LINE_SIZE): New macro.
7571 (dwarf2_build_psymtabs_hard): Record the line section's size in
7572 the partial symbol table.
7573 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
7574 symbol table.
7575
126fa72d
PS
75762002-05-10 Petr Sorfa <petrs@caldera.com>
7577
7578 * ia64-tdep.c: Handle breakpoints on L instruction type
7579 in MLX instruction bundle by moving the breakpoint to
7580 the third slot (X instruction type) as L holds only data.
7581
1f077a3e
KB
75822002-05-10 Kevin Buettner <kevinb@redhat.com>
7583
7584 * dbxread.c (discarding_local_symbols_complaint): New complaint.
7585 (process_one_symbol): Complain about discarding local symbols
7586 due to a misplaced N_LBRAC entry.
7587
8120c9d5 75882002-05-09 Elena Zannoni <ezannoni@redhat.com>
361d1df0
EC
7589
7590 From Daniel Berlin <dan@cgsoftware.com>
8120c9d5
EZ
7591 * linespec.c (find_toplevel_char): '<' and '>' also increase and
7592 decrease the depth we are at, in the case of templates.
361d1df0 7593
67b2c998
DJ
75942002-05-09 Daniel Jacobowitz <drow@mvista.com>
7595
7596 * mips-tdep.c (mips_float_register_type): New function.
7597 (mips_double_register_type): New function.
7598 (mips_print_register): Use them.
7599 (do_fp_register_row): Likewise.
7600
fd326606
DJ
76012002-05-09 Daniel Jacobowitz <drow@mvista.com>
7602
6609d9af 7603 * signals/signals.c (signals): Remove conditional compilation around
fd326606 7604 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
6609d9af 7605 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
fd326606 7606
bef35864
MS
76072002-05-09 Michael Snyder <msnyder@redhat.com>
7608
7609 * remote-rdp.c (remote_rdp_can_run): Remove.
7610
c55a3f73
TT
76112002-05-09 Tom Tromey <tromey@redhat.com>
7612
7613 * jv-valprint.c (java_val_print): Handle `char' as a special case
7614 of TYPE_CODE_INT.
7615
b8d5e71d
MS
76162002-05-09 Michael Snyder <msnyder@redhat.com>
7617
7618 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
7619 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
361d1df0 7620 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
b8d5e71d 7621 str r(0123),[sp,#nn].
361d1df0 7622 (arm_skip_prologue): Ditto. Also make disassembly
b8d5e71d
MS
7623 order-independent by placing it in a loop.
7624
e2cd42dd
MS
76252002-05-06 Michael Snyder <msnyder@redhat.com>
7626
7627 * stabsread.c (read_type): Add recognition for new attribute:
7628 "@V;" means that an array type is actually a vector.
7629 This is analogous to the vector flag that's been added to dwarf2.
7630
3ce1502b
MK
76312002-05-09 Mark Kettenis <kettenis@gnu.org>
7632
7633 * i386-tdep.h (i386_abi): New enum.
7634 (struct gdbarch_tdep): Replace os_ident member with abi.
7635 (i386_gdbarch_register_os_abi): New prototype.
7636 * i386-tdep.c (i386_abi_names): New array.
7637 (process_note_abi_tag_sections): Removed.
7638 (process_note_sections): New function.
7639 (i386_elf_abi_from_note, i386_elf_abi): New functions.
7640 (struct i386_abi_handler): New struct.
7641 (i386_abi_handler_list): New variable.
7642 (i386_gdbarch_register_os_abi): New function.
7643 (i386_gdbarch_init): Adapt for the changes given above.
7644
084c156a
DJ
76452002-05-08 Daniel Jacobowitz <drow@mvista.com>
7646
7647 * gregset.h: Say "GNU/Linux".
7648
6599f021
EZ
76492002-05-08 Elena Zannoni <ezannoni@redhat.com>
7650
7651 * gdbtypes.c : Add new builtin type for 64 bit vectors.
7652 (build_gdbtypes): Build builtin_type_v2_float.
7653 (_initialize_gdbtypes): Register new builtin type.
7654
40af4b0c
AC
76552002-05-08 Andrew Cagney <ac131313@redhat.com>
7656
7657 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
7658 (clear_gdbarch_swap): New function.
7659 (initialize_non_multiarch): Call.
7660 (gdbarch_update_p): Before calling init(), swap out and clear the
7661 existing architecture.
7662 * gdbarch.c: Regenerate.
7663
4fe84f46
JT
76642002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7665
7666 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
7667 alphanbsd-tdep.c.
7668
4015edd1
JT
76692002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7670
7671 * sh-nbsd-nat.c: Rename to...
7672 * shnbsd-nat.c: ...this.
7673 * sh-nbsd-tdep.c: Rename to...
7674 * shnbsd-tdep.c: ...this.
7675 * sh-nbsd-tdep.h: Rename to...
7676 * shnbsd-tdep.h: ...this.
7677 * config/sh/nbsd.mh: Use shnbsd-nat.o.
7678 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
7679
0e2bd219
RE
76802002-05-08 Richard Earnshaw <rearnsha@arm.com>
7681
7682 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
7683 concatenation for command help messages.
7684
13a38d45
JT
76852002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7686
7687 * NEWS: Note new sh*-*-netbsdelf* configuration.
7688 * configure.host: Set gdb_host_cpu to sh for all sh*.
7689 (sh*-*-netbsdelf*): New host.
7690 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
7691 (sh*-*-netbsdelf*): New target.
7692 * sh-nbsd-nat.c: New file.
7693 * sh-nbsd-tdep.c: New file.
7694 * sh-nbsd-tdep.h: New file.
7695 * config/sh/nbsd.mh: New file.
7696 * config/sh/nbsd.mt: New file.
7697 * config/sh/nm-nbsd.h: New file.
7698 * config/sh/tm-nbsd.h: New file.
7699
d658f924
JT
77002002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7701
7702 * sh-tdep.c (sh_osabi_names): Declare.
7703 (process_note_abi_tag_sections): New function.
7704 (get_elfosabi): Ditto.
7705 (sh_gdbarch_register_os_abi): Ditto.
7706 (sh_dump_tdep): Ditto.
7707 _initialize_sh_tdep): Use gdbarch_register to register
7708 sh_gdbarch_init and sh_dump_tdep.
7709 * config/sh/tm-sh.h (sh_osabi): Declare.
7710 (gdbarch_tdep): Add sh_osabi and osabi_name members.
7711
848cfffb
AC
77122002-05-07 Andrew Cagney <ac131313@redhat.com>
7713
7714 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
7715 (thumb_scan_prologue): Ditto.
7716 (arm_find_callers_reg): Ditto.
7717 (arm_frame_chain): Ditto.
7718 (arm_init_extra_frame_info): Ditto.
7719 (arm_frame_saved_pc): Ditto.
7720 (arm_pop_frame): Ditto.
7721 (arm_push_return_address): New function.
7722 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
7723 call_dummy_location, call_dummy_breakpoint_offset_p,
7724 call_dummy_breakpoint_offset, call_dummy_p,
7725 call_dummy_stack_adjust_p, call_dummy_words,
7726 sizeof_call_dummy_words, call_dummy_start_offset,
7727 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
7728 call_dummy_address, push_return_address and push_dummy_frame for
7729 generic dummy frames.
7730
e7d717c0
JT
77312002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
7732
7733 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
7734 size computation for alloca.
7735 (sh_fp_frame_init_saved_regs): Likewise.
7736
7bbcf283
RE
77372002-05-07 Richard Earnshaw <rearnsha@arm.com>
7738
7739 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
7740 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
361d1df0 7741 * arm-tdep.c (arm_store_return_value): Use them.
7bbcf283
RE
7742 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
7743 * remote-rdp.c (remote_rdp_fetch_register): Use
7744 ARM_MAX_REGISTER_RAW_SIZE.
7745 (remote_rdp_store_register): Likewise.
7746
4657573b
ML
77472002-05-07 Michal Ludvig <mludvig@suse.cz>
7748
361d1df0 7749 * dwarf2cfi.c: Code cleanup, removed unused variables,
4657573b
ML
7750 added default labels to switch {} statements.
7751 * x86-64-tdep.c: Ditto.
7752 * x86-64-linux-nat.c: Ditto.
7753
010f3b2f
JT
77542002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
7755
7756 * solib.h: Protect against multiple inclusion.
7757
debd256d
JB
77582002-05-06 Jim Blandy <jimb@redhat.com>
7759
9ab3e532
JB
7760 Add first preprocessor macro-expansion files.
7761 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
7762 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
7763 (splay_tree_h, macroexp_h, macrotab_h): New variable.
7764 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
7765 (COMMON_OBS): Add macrotab.o, macroexp.o.
7766 (macroexp.o, macrotab.o): New rules.
7767
debd256d
JB
7768 Separate the job of reading the line number info statement program
7769 header (...expialidocious) out into its own function.
7770 * dwarf2read.c (struct line_head, struct filenames, struct
7771 directories): Replace with...
7772 (struct line_header): New structure, containing the full
7773 contents of the statement program header, including the
7774 include directory and file name tables.
7775 (read_file_scope): If we have line number info, instead of just
7776 calling dwarf_decode_lines to do all the work, call
7777 dwarf_decode_line_header first to get a `struct line_header'
7778 containing the data in the statement program header, and then
7779 pass that to dwarf_decode_lines, which will pick up where that
7780 left off. Be sure to clean up the `struct line_header' object.
7781 (dwarf_decode_line_header, free_line_header, add_include_dir,
7782 add_file_name): New functions.
7783 (dwarf_decode_lines): Move all the code to read the statement
7784 program header into dwarf_decode_line_header. Take the line
7785 header it built as the first argument, instead of the offset to
7786 the compilation unit's line number info. Use the new `struct
7787 line_header' type instead of the old structures. No need to do
7788 cleanups here now, since we don't allocate anything.
7789 (dwarf2_statement_list_fits_in_line_number_section,
7790 dwarf2_line_header_too_long): New complaints.
7791
ac3aafc7
EZ
77922002-05-06 Elena Zannoni <ezannoni@redhat.com>
7793
7794 * gdbtypes.c (init_vector_type): New function.
7795 (build_builtin_type_vec128): Simplify the representation of SIMD
7796 registers.
7797 (build_gdbtypes): Initialize new builtin vector types.
7798 (_initialize_gdbtypes): Register new vector types with gdbarch.
7799 (builtin_type_v4_float, builtin_type_v4_int32,
7800 builtin_type_v8_int16, builtin_type_v16_int8,
7801 builtin_type_v2_int32, builtin_type_v4_int16,
7802 builtin_type_v8_int8): New (renamed) SIMD types.
7803
13e49980
MK
78042002-05-06 Mark Kettenis <kettenis@gnu.org>
7805
7806 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
7807 (i387_fill_fxsave): Likewise.
7808
997b20b8
AO
78092002-05-05 Alexandre Oliva <aoliva@redhat.com>
7810
7811 * alpha-tdep.c (alpha_extract_return_value): Don't use
7812 non-constant array size in prototype.
7813
535c96ce
AC
78142002-05-04 Andrew Cagney <ac131313@redhat.com>
7815
7816 From Brian Taylor <briant at model dot com>:
7817 * ui-out.c (ui_out_field_core_addr): Use the function
7818 longest_local_hex_string_custom'to format addresses > 32 bits
7819 wide.
7820
7821 * ui-out.c (ui_out_field_core_addr): Update comment.
7822
bedfa57b
AC
78232002-05-04 Andrew Cagney <ac131313@redhat.com>
7824
7825 * stack.c (select_and_print_frame): Make static. Delete the
7826 parameter `level'.
7827 (func_command): Update call.
7828 (select_frame_command): Delete code computing the frame level.
7829 * frame.h (select_and_print_frame): Delete declaration.
7830
f621c63e
AC
78312002-05-04 Andrew Cagney <ac131313@redhat.com>
7832
7833 * sparc-tdep.c (sparc_get_saved_register): Comment why
7834 get_prev_frame call is safe.
7835
0f7d239c
AC
78362002-05-04 Andrew Cagney <ac131313@redhat.com>
7837
7838 * frame.h (select_frame): Delete level parameter.
7839 * stack.c (select_frame): Update. Use frame_relative_level to
7840 obtain the frame's level.
7841 (select_and_print_frame): Update call.
7842 (select_frame_command): Ditto.
7843 (up_silently_base): Ditto.
7844 (down_silently_base): Ditto.
7845 * ocd.c (ocd_start_remote): Ditto.
7846 * remote-rdp.c (remote_rdp_open): Ditto.
7847 * remote-mips.c (mips_initialize): Ditto.
7848 (common_open): Ditto.
7849 * remote-e7000.c (e7000_start_remote): Ditto.
7850 * m3-nat.c (select_thread): Ditto.
7851 * hppa-tdep.c (child_get_current_exception_event): Ditto.
7852 (child_get_current_exception_event): Ditto.
7853 * varobj.c (varobj_create): Ditto.
7854 (varobj_update): Ditto.
7855 (c_value_of_root): Ditto.
7856 * tracepoint.c (finish_tfind_command): Ditto.
7857 * corelow.c (core_open): Ditto.
7858 * arch-utils.c (generic_prepare_to_proceed): Ditto.
7859 * thread.c (info_threads_command): Ditto.
7860 (switch_to_thread): Ditto.
7861 * infrun.c (normal_stop): Ditto.
7862 (restore_selected_frame): Ditto.
7863 (restore_inferior_status): Ditto.
7864 * breakpoint.c (insert_breakpoints): Ditto.
7865 (watchpoint_check): Ditto.
7866 (bpstat_stop_status): Ditto.
7867 (do_enable_breakpoint): Ditto.
7868 * blockframe.c (flush_cached_frames): Ditto.
7869 (reinit_frame_cache): Ditto.
7870
71d6c7b1
AC
78712002-05-04 Andrew Cagney <ac131313@redhat.com>
7872
7873 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
7874 maintainer.
7875
cda6c68a
JB
78762002-05-04 Jim Blandy <jimb@redhat.com>
7877
7878 * gdbtypes.c (replace_type): Doc fix.
7879
5c1c87f0
AC
78802002-05-04 Andrew Cagney <ac131313@redhat.com>
7881
7882 * valprint.c (strcat_longest): Delete commented out function.
7883 Update copyright.
7884
cd9bfe15
AC
78852002-05-04 Andrew Cagney <ac131313@redhat.com>
7886
7887 * MAINTAINERS: Mark a29k as deleted.
7888 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
7889 Move new configurations to the top.
7890 * configure.tgt: Remove a29k.
7891 * config/a29k/tm-vx29k.h: Delete.
7892 * config/a29k/vx29k.mt: Delete.
7893 * config/a29k/tm-a29k.h: Delete.
7894 * config/a29k/a29k-udi.mt: Delete.
7895 * config/a29k/a29k.mt: Delete.
7896 * a29k-tdep.c: Delete.
7897 * remote-udi.c: Delete.
7898 * remote-mm.c: Delete.
7899 * remote-eb.c: Delete.
7900 * remote-adapt.c: Delete.
7901 * Makefile.in: Remove obsolete code.
cd9bfe15
AC
7902 * config/s390/s390x.mt: Ditto.
7903 * config/s390/s390.mt: Ditto.
7904 * config/sparc/sparclynx.mh: Ditto.
7905 * config/sparc/linux.mh: Ditto.
7906 * config/pa/hppaosf.mh: Ditto.
7907 * config/pa/hppabsd.mh: Ditto.
7908 * config/ns32k/nbsd.mt: Ditto.
7909 * config/mips/vr5000.mt: Ditto.
7910 * config/m68k/sun3os4.mh: Ditto.
7911 * config/m68k/nbsd.mt: Ditto.
7912 * config/m68k/m68klynx.mh: Ditto.
7913 * config/m32r/m32r.mt: Ditto.
7914 * config/i386/x86-64linux.mt: Ditto.
7915 * config/i386/nbsdelf.mt: Ditto.
7916 * config/i386/nbsd.mt: Ditto.
7917 * config/i386/i386lynx.mh: Ditto.
7918
bf0c5130
AC
79192002-05-04 Andrew Cagney <ac131313@redhat.com>
7920
7921 * target.c (debug_print_register): New function. Handle oversize
7922 registers.
7923 (debug_to_fetch_registers): Call.
7924 (debug_to_store_registers): Call.
7925
2ae1c2d2
JB
79262002-05-03 Jim Blandy <jimb@redhat.com>
7927
13a393b0
JB
7928 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
7929 (read_type): Doc fix.
7930 * gdbtypes.c (replace_type): Doc fix.
7931
2ae1c2d2
JB
7932 * stabsread.c (multiply_defined_struct): New complaint.
7933 (read_struct_type): If the type we were passed isn't empty, or
7934 incomplete, don't read the new struct type into it; complain,
7935 and return the original type unchanged. Take a new `type_code'
7936 argument, which is the type code for the new type.
7937 (read_type): Rather than storing the type's type code here, pass
7938 it as an argument to read_struct_type, and let that take care of
7939 storing it. That way, we don't overwrite the original type code,
7940 so read_struct_type can use it to decide whether we're overwriting
7941 something we shouldn't.
7942 (complain_about_struct_wipeout): New function.
7943
8de9bdc4
AC
79442002-05-03 Andrew Cagney <ac131313@redhat.com>
7945
7946 * gdbarch.sh: Assert that gdbarch is non-NULL.
7947 * gdbarch.c: Regenerate.
7948
f773fdbb
JM
79492002-05-03 Jason Merrill <jason@redhat.com>
7950
7951 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
7952 and return NULL.
7953
0e04a514
ML
79542002-05-03 Michal Ludvig <mludvig@suse.cz>
7955
7956 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
7957 (x86_64_dwarf2gdb_regno_map_length),
7958 (x86_64_dwarf2_reg_to_regnum): Added.
7959 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
7960 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
7961 (_initialize_x86_64_tdep): Synced with the change above.
7962 (x86_64_skip_prologue): Reformulated message.
7963
065432a8
PM
79642002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
7965
7966 * f-exp.y: Also use new prev_lexptr variable
7967 to improve error reporting. Based on Michael Snyder
7968 2002-04-24 dated patch to c-exp.y.
7969 * jv-exp.y: Likewise.
7970 * m2-exp.y: Likewise.
7971
a3162708
EZ
79722002-05-02 Elena Zannoni <ezannoni@redhat.com>
7973
7974 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
7975 we are dealing with vectors.
7976
03620c38
PM
79772002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7978
7979 * config/m68k/tm-nbsd.h: Obvious fix,
7980 correct machine name.
7981
6604db2e
PM
79822002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7983
7984 * p-typeprint.c (pascal_type_print_base): Add support
7985 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
7986
0906b739
PM
79872002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7988
7989 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
7990 for fondamental pascal 'char' type.
7991
e2625b33
PM
79922002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7993
7994 * p-lang.h (is_pascal_string_type): Declaration changed,
7995 new sixth argument of type char ** added.
361d1df0 7996 * p-lang.c (is_pascal_string_type): Implementation
e2625b33
PM
7997 changed. Args length_pos, length_size, string_pos, char_size
7998 can now be NULL. New argument arrayname set to the field
7999 name of the char array. Return value set to char array
8000 field index plus one.
361d1df0 8001 * p-valprint.c (pascal_val_print): Adapt to new declaration of
e2625b33
PM
8002 is_pascal_string_type function.
8003
cf17c188
AC
80042002-05-02 Andrew Cagney <cagney@redhat.com>
8005
8006 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
8007 <cagney@redhat.com> change.
8008 * gdbarch.c: Regenerate.
8009
52bca491
AC
80102002-05-02 Andrew Cagney <cagney@redhat.com>
8011
8012 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
8013 before probing for a new one. Detect errorenous gdbarch_init
8014 functions.
8015 * gdbarch.c: Regenerate.
8016
d5e72505
AC
80172002-05-01 Andrew Cagney <cagney@redhat.com>
8018
8019 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
8020 * config/mcore/tm-mcore.h: Ditto. Update copyright.
8021 * config/v850/tm-v850.h: Ditto. Update copyright.
8022
af566d9f
AC
80232002-04-30 Andrew Cagney <ac131313@redhat.com>
8024
8025 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
8026 current_gdbarch.
8027
880d85fa
MS
80282002-04-30 Michael Snyder <msnyder@redhat.com>
8029
94c30b78
MS
8030 * arm-tdep.c: Whitespace clean-ups.
8031 (arm_skip_prologue): Fix thinko; two lines
880d85fa
MS
8032 should have been removed as part of 4/24 change.
8033
6f5987a6
KB
80342002-04-30 Kevin Buettner <kevinb@redhat.com>
8035
8036 * rs6000-tdep.c: Added comment describing how fpscr register
8037 numbers were chosen.
8038
1a113c93
MS
80392002-04-30 Michael Snyder <msnyder@redhat.com>
8040
8041 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
8042
9a6f53fe
EZ
80432002-04-29 Elena Zannoni <ezannoni@redhat.com>
8044
8045 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
8046 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
8047 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
8048
11ed25ac
KB
80492002-04-29 Kevin Buettner <kevinb@redhat.com>
8050
8051 From Louis Hamilton <hamilton@redhat.com>:
8052 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
8053 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
8054 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
8055 not bfd-private xcoff data, to determine wordsize.
8056 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
8057
ae232405
AC
80582002-04-29 Andrew Cagney <ac131313@redhat.com>
8059
8060 GDB 5.2 released from 5.2 branch.
8061
91fd20f7
ML
80622002-04-29 Michal Ludvig <mludvig@suse.cz>
8063
8064 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
8065 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
8066 (x86_64_register_info_table): Added comments with register numbers.
361d1df0 8067
2dc5091b
EZ
80682002-04-29 Elena Zannoni <ezannoni@redhat.com>
8069
8070 * rs6000-tdep.c (rs6000_extract_return_value,
8071 rs6000_store_return_value): Handle returning vectors.
8072 (rs6000_gdbarch_init): Use
8073 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
8074 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
8075 New function.
8076 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
8077 vectors.
8078 (ppc_sysv_abi_push_arguments): Handle vector parameters.
8079 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
361d1df0 8080
2b9848d8
PM
80812002-04-24 Pierre Muller <ics.u-strasbg.fr>
8082
8083 * hpread.c (hpread_psymtab_to_symtab_1,
aacb1f0a 8084 hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
2b9848d8
PM
8085 with fprintf_unfiltered (gdb_stderr,...).
8086
f8d17dc5
PM
80872002-04-24 Pierre Muller <ics.u-strasbg.fr>
8088
8089 * remote-array.c (printf_monitor, write_monitor,
361d1df0 8090 array_insert_breakpoint, array_remove_breakpoint ):
f8d17dc5
PM
8091 Replace fprintf (stderr,...
8092 with fprintf_unfiltered (gdb_stderr,....
8093 * remote-es.c: Likewise.
8094 * remote-os9k.c: Likewise.
8095 * remote-st.c: Likewise.
8096
2f2f1ad1
AS
80972002-04-28 Andreas Schwab <schwab@suse.de>
8098
8099 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
8100 linux-proc.o and gcore.o.
8101
b6779aa2
AC
81022002-04-26 Michal Ludvig <mludvig@suse.cz>
8103
8104 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
8105 code without frame pointers.
8106
7e57f5f4
AC
81072002-04-26 Andrew Cagney <ac131313@redhat.com>
8108
8109 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
8110 ON_STACK is needed.
8111
2ceb85d0
BE
81122002-04-26 Ben Elliston <bje@redhat.com>
8113
8114 * target.c (do_xfer_memory): Correct reference to the new option
8115 "trust-readonly-sections".
8116
f5f8a009
EZ
81172002-04-26 Elena Zannoni <ezannoni@redhat.com>
8118
8119 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
8120 * gdbtypes.c (recursive_dump_type): Output the vector flag.
8121 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
8122 vectors.
8123 (read_array_type): Record the fact that this array type is really a
8124 vector (i.e. are passed in by value).
8125
5868c862
JT
81262002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
8127
8128 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
8129 * alpha-tdep.c (alpha_sigcontext_addr): New function.
8130 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
8131 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
8132 * alpha-linux-tdep.c: Include frame.h.
8133 (alpha_linux_sigcontext_addr): New function.
8134 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
8135 alpha_linux_sigcontext_addr.
8136 * alpha-osf1-tdep.c: Include gdbcore.h.
8137 (alpha_osf1_sigcontext_addr): New function.
8138 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
8139 alpha_osf1_sigcontext_addr.
8140 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
8141 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
8142
bfb01f37
AC
81432002-04-26 Andrew Cagney <ac131313@redhat.com>
8144
361d1df0 8145 * stack.c (selected_frame_level):
bfb01f37
AC
8146 (select_frame): Do not set selected_frame_level.
8147 * frame.h (selected_frame_level): Delete declaration.
8148
15813d3f
AC
81492002-04-26 Andrew Cagney <ac131313@redhat.com>
8150
8151 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
8152 convert_from_func_ptr-addr when AIX / PowerOpen.
8153
6096c27a
AC
81542002-04-25 Andrew Cagney <ac131313@redhat.com>
8155
8156 * valops.c (hand_function_call): Call
8157 generic_save_call_dummy_addr.
8158 * frame.h (generic_save_call_dummy_addr): Declare.
8159 * blockframe.c (struct dummy_frame): Add fields call_lo and
8160 call_hi.
8161 (generic_find_dummy_frame): Check for PC in range call_lo to
8162 call_hi instead of entry_point_address.
8163 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
8164 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
8165 (generic_save_call_dummy_addr): New function.
8166
f510d44e
DM
81672002-04-24 David S. Miller <davem@redhat.com>
8168
8169 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
8170 sparc_skip_prologue.
8171 (sparc_skip_prologue): Kill frameless_p arg, and use line number
8172 information to find prologue when possible.
8173 (sparc_prologue_frameless_p): Call examine_prologue directly.
8174 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
8175 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
8176 second argument.
8177 (SKIP_PROLOGUE): Likewise.
8178
15d72a92
JT
81792002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8180
8181 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
8182 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
8183 indicate that the condition it was testing is always true.
8184 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
8185 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
8186 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
8187
accc6d1f
JT
81882002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8189
8190 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
8191 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
8192 tdep->jb_pc and tdep->jb_elt_size.
8193 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
8194 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
8195 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
8196 * alpha-nat.c (get_longjmp_target): Remove.
8197 (JB_ELEMENT_SIZE): Ditto.
8198 (JB_PC): Ditto.
8199 * alpha-tdep.c (alpha_get_longjmp_target): New function.
8200 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
8201 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
8202 to alpha_get_longjmp_target.
8203 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
8204 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
8205 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
8206
1bfdc549
AC
82072002-04-25 Andrew Cagney <ac131313@redhat.com>
8208
8209 * README: Update to GDB 5.2.
8210
1bd316f0
AC
82112002-04-25 Andrew Cagney <ac131313@redhat.com>
8212
8213 * gdbarch.sh (LC_ALL): Set to `c'.
8214
2e5ff58c
TR
82152002-04-25 Theodore A. Roth <troth@verinet.com>
8216
8217 * avr-tdep.c: Ran through gdb_indent.sh.
8218
e33ce519
TR
82192002-04-25 Theodore A. Roth <troth@verinet.com>
8220
8221 * MAINTAINERS: Add myself as AVR maintainer.
8222 * NEWS: Note new target avr.
8223
8818c391
TR
82242002-04-25 Theodore A. Roth <troth@verinet.com>
8225
8226 * Makefile.in: Add support for AVR target.
8227 * configure.tgt: Add support for AVR target.
8228 * avr-tdep.c: New file
8229 * config/avr/avr.mt: New file.
8230
79509c2d
TR
82312002-04-25 Theodore A. Roth <troth@verinet.com>
8232
8233 * MAINTAINERS: Add myself to write-after-approval.
8234
dac8068e
PM
82352002-04-24 Pierre Muller <ics.u-strasbg.fr>
8236
8237 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
8238 with fprintf_unfiltered (gdb_stderr,....
8239
25bf3106
PM
82402002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
8241
8242 Fix PR gdb/508.
8243 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
8244
24467a86
PM
82452002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
8246
8247 * p-exp.y: Also use new prev_lexptr variable
8248 to improve error reporting. Based on Michael Snyder
8249 2002-04-24 dated patch to c-exp.y.
8250
95b80706
JT
82512002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8252
8253 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
8254 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
8255 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
8256 to 0.
8257 * config/alpha/tm-alpha.h: Remove forward decls of struct type
8258 and struct value.
8259 (FUNCTION_START_OFFSET): Remove.
8260 (BREAKPOINT): Ditto.
8261
e90cc612
JT
82622002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8263
8264 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
8265 * NEWS: Ditto.
8266
6c72f9f9
JT
82672002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8268
8269 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
8270 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
8271 alpha_linux_pc_in_sigtramp.
8272 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
8273 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
8274 alpha_osf1_pc_in_sigtramp.
8275 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
8276 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
8277 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
8278 alphafbsd_pc_in_sigtramp.
8279 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
8280 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
8281 alphanbsd_pc_in_sigtramp.
8282 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
8283 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
8284
5e4f3379
JT
82852002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8286
8287 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
8288
da8ca43d
JT
82892002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8290
8291 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
8292 alphanbsd-tdep.c.
8293 (alphanbsd-nat.o): New dependency list.
8294 (alphanbsd-tdep.o): Ditto.
8295 * NEWS: Note new native NetBSD/alpha configuration.
8296 * alphanbsd-nat.c: New file.
8297 * alphanbsd-tdep.c: Ditto.
8298 * configure.host (alpha*-*-netbsd*): New host.
8299 * configure.tgt (alpha*-*-netbsd*): New target.
8300 * config/alpha/nbsd.mh: New file.
8301 * config/alpha/nbsd.mt: Ditto.
8302 * config/alpha/nm-nbsd.h: Ditto.
8303 * config/alpha/tm-nbsd.h: Ditto.
8304
36a6271d
JT
83052002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8306
8307 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
8308 (alpha-osf1-tdep.o): New dependency list.
8309 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
8310 and skip_sigtramp_frame members.
8311 * alpha-linux-tdep.c: Include gdbcore.h.
8312 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
8313 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
8314 * alpha-osf1-tdep.c: New file.
8315 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
8316 alpha-osf1-dep.c.
8317 (alpha_frame_past_sigtramp_frame): New function.
8318 (alpha_dynamic_sigtramp_offset): Ditto.
8319 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
8320 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
8321 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
8322 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
8323 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
8324 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
8325 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
8326 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
8327 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
8328 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
8329 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
8330 to find_solib_trampoline_target.
8331 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
8332 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
8333 (SKIP_TRAMPOLINE_CODE): Remove.
8334 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8335 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8336 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
8337 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
8338 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
8339 (PROC_SIGTRAMP_MAGIC): Ditto.
8340 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8341 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8342 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8343 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
8344 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
8345
2f4bc57b
JT
83462002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8347
8348 * NEWS: Note that Alpha targets are now multi-arch.
8349
665132f9
MS
83502002-04-24 Michael Snyder <msnyder@redhat.com>
8351
8352 * parser-defs.h (prev_lexptr): New external variable.
8353 * parse.c (parse_exp_1): Set prev_lexptr to null before
8354 calling the language-specific parser.
8355 * c-exp.y (yylex): Set prev_lexptr to start of current token.
8356 (yyerror): Use prev_lexptr in error reporting.
8357
32872fa7
DJ
83582002-04-24 Daniel Jacobowitz <drow@mvista.com>
8359
8360 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
8361 * gregset.h: If FILL_FPXREGSET is defined, provide
8362 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
8363 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
8364 is defined, call fill_fpxregset.
8365
57e76fac
MS
83662002-04-24 Roland McGrath <roland@frob.com>
8367
8368 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
8369 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
8370 (supply_gregset, supply_fpregset): New functions.
8371
8372 * gnu-nat.c (gnu_find_memory_regions): New function.
8373 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
8374 (gnu_xfer_memory): Add a cast.
8375
f43845b3
MS
83762002-04-24 Michael Snyder <msnyder@redhat.com>
8377
361d1df0 8378 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
f43845b3
MS
8379 loop. Add handling for "str lr, [sp, #-4]!" and for saves
8380 of argument regs ("str r(0123), [r11, #-nn"]).
361d1df0 8381 (arm_skip_prologue): Better handling for frameless functions.
f43845b3
MS
8382 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
8383 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
8384
a0abec03
AC
8385Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
8386
8387 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
8388 NUM_PSEUDO_REGS can be used.
8389
d7bd68ca
AC
83902002-04-24 Andrew Cagney <ac131313@redhat.com>
8391
8392 * arch-utils.h: Update copyright.
8393
8394 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
8395 * gdbarch.h, gdbarch.c: Re-generate.
8396
8397 * inferior.h (IN_SIGTRAMP): Delete definition.
8398 * arch-utils.c (legacy_pc_in_sigtramp): New function.
8399 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
8400
8401 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
8402 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
8403 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
8404 (find_proc_framesize): Ditto.
8405 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
8406 (alpha_init_extra_frame_info): Ditto.
8407 * infrun.c (handle_inferior_event): Ditto.
8408 (handle_inferior_event): Ditto.
8409 (check_sigtramp2): Ditto.
8410 * blockframe.c (create_new_frame): Ditto.
8411 (get_prev_frame): Ditto.
8412 * ppc-linux-tdep.c: Update comments.
8413 * i386-linux-tdep.c: Update comments.
8414 * breakpoint.c (bpstat_what): Update comment.
8415
4867e41e
DM
84162002-04-24 David S. Miller <davem@redhat.com>
8417
21d83aa5
DM
8418 * i960-tdep.c (register_in_window_p): New function.
8419 (i960_find_saved_register): Use it instead of
8420 REGISTER_IN_WINDOW_P.
8421 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
8422
4867e41e
DM
8423 * symtab.h (find_stab_function_addr): Kill extern.
8424 * minsyms.c (find_stab_function_addr): Remove from here...
8425 * dbxread.c: ... to here, and mark it static.
8426
69cdf6a2
DM
84272002-04-20 David S. Miller <davem@redhat.com>
8428
8429 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
8430 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
8431
5a595886
DM
84322002-04-21 David S. Miller <davem@redhat.com>
8433
8434 * remote-vxsparc.c (vx_read_register): Fix typo, we want
8435 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
8436 (vx_write_register): Likewise.
8437
1da1a192
JB
84382002-04-23 J. Brobecker <brobecker@gnat.com>
8439
8440 * source.c (is_regular_file): New function.
8441 (openp): Check wether file to open is a regular file
8442 to avoid opening directories.
8443
baa6f10b
JT
84442002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8445
8446 * findvar.c (extract_signed_integer): Cast printf argument
8447 to suppress format warning.
8448 (extract_unsigned_integer): Likewise.
8449 * infcmd.c (registers_info): Likewise.
8450 * top.c (get_prompt_1): Likewise.
8451 * valops.c (value_assign): Likewise.
8452 * valprint.c (print_decimal): Likewise.
8453
b2c4da81
L
84542002-04-22 H.J. Lu (hjl@gnu.org)
8455
8456 * c-exp.y (typebase): Support
361d1df0 8457
b2c4da81
L
8458 [long|long long|short] [signed|unsigned] [int|]
8459
8460 and
8461
8462 signed [long|long long|short] int
8463
f267bd6a
JT
84642002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8465
8466 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
8467 and vax-tdep.h.
8468 * vax-tdep.h: New file.
8469 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
8470 Make several routines static.
8471 (vax_get_saved_register): New function.
8472 (vax_gdbarch_init): New function.
8473 (_initialize_vax_tdep): Register vax_gdbarch_init.
8474 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
8475 Remove macros now under the control of gdbarch.
8476
da3c6d4a
MS
84772002-04-22 Michael Snyder <msnyder@redhat.com>
8478
11d3b27d
MS
8479 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
8480 Some whitespace and coding standards tweaks.
da3c6d4a 8481
a33f7558
JT
84822002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8483
8484 * vax-tdep.c: Include regcache.h.
8485 (vax_call_dummy_words): New.
8486 (sizeof_vax_call_dummy_words): New.
8487 (vax_fix_call_dummy): New function.
8488 (vax_saved_pc_after_call): Ditto.
8489 * config/vax/tm-vax.h: Don't include regcache.h.
8490 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
8491 (CALL_DUMMY): Remove.
8492 (CALL_DUMMY_WORDS): Define.
8493 (SIZEOF_CALL_DUMMY_WORDS): Define.
8494 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
8495
47a73475
MS
84962002-04-18 Michael Snyder <msnyder@redhat.com>
8497
8498 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
8499
52efde73
JT
85002002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8501
8502 * vax-tdep.c (vax_frame_chain): New function.
8503 (vax_push_dummy_frame): Ditto.
8504 (vax_pop_frame): Ditto.
8505 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
8506 (FRAMELESS_FUNCTION_INVOCATION): Use
8507 generic_frameless_function_invocation_not.
8508 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
8509 (POP_FRAME): Use vax_pop_frame.
8510
ea74468c
JT
85112002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8512
8513 * vax-tdep.c (vax_store_struct_return): New function.
8514 (vax_extract_return_value): Ditto.
8515 (vax_store_return_value): Ditto.
8516 (vax_extract_struct_value_address): Ditto.
8517 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
8518 vax_store_struct_return.
8519 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
8520 (STORE_RETURN_VALUE): Use vax_store_return_value.
8521 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
8522
5516aa92
JT
85232002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8524
8525 * vax-tdep.c (vax_frame_saved_pc): New function.
8526 (vax_frame_args_address_correct): Ditto.
8527 (vax_frame_args_address): Ditto.
8528 (vax_frame_locals_address): Ditto.
8529 (vax_frame_num_args): Move code to be in proximity to
8530 other frame-related functions.
8531 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
8532 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
8533 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
8534 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
8535 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
8536
36af0b35
L
85372002-04-22 H.J. Lu (hjl@gnu.org)
8538
8539 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
8540 includedir.
8541
ab62c900
JT
85422002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8543
8544 * vax-tdep.c (vax_frame_init_saved_regs): New function.
8545 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
8546 (FRAME_INIT_SAVED_REGS): New macro.
8547
7232b100
JT
85482002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8549
8550 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
8551
b70d2aee
JT
85522002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8553
8554 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
8555 where needed.
8556 (fetch_osf_core_registers): Likewise.
8557 (supply_gregset): Likewise.
8558
a0e8a2d1 85592002-04-22 J. Brobecker <brobecker@gnat.com>
361d1df0 8560
a0e8a2d1
JB
8561 * symfile.h (get_section_index): Define.
8562 * symfile.c (get_section_index): New function.
8563 * mdebugread.c (SC_IS_SBSS): New macro.
8564 (SC_IS_BSS): Return true for the scBss storage class only, as
8565 the scSBss storage class refers to the .sbss section.
8566 (parse_partial_symbols): Discard the symbols which associated
8567 section does not exist.
8568 Make sure to use the .sbss section index for symbols which
8569 storage class is scBss, rather than using the .bss section index.
8570
51eb8b08
JT
85712002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8572
8573 * vax-tdep.c: Update copyright years.
8574 (vax_register_name): New function.
8575 (vax_register_byte): Ditto.
8576 (vax_register_raw_size): Ditto.
8577 (vax_register_virtual_size): Ditto.
8578 (vax_register_virtual_type): Ditto.
8579 * config/vax/tm-vax.h: Update copyright years.
8580 (REGISTER_NAMES): Remove.
8581 (REGISTER_NAME): Define.
8582 (REGISTER_BYTE): Use vax_register_byte.
8583 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
8584 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
8585 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
8586
6cc1c0a8
AC
85872002-04-21 Andrew Cagney <ac131313@redhat.com>
8588
8589 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
8590 declaration
8591 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
8592
9319a2fe
DM
85932002-04-21 David S. Miller <davem@redhat.com>
8594
8595 * arch-utils.c (generic_prologue_frameless_p): Kill
8596 SKIP_PROLOGUE_FRAMELESS_P code.
8597 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
8598 references.
8599 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
8600 * arc-tdep.c (arc_prologue_frameless_p): Implement.
8601 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
8602 references.
8603 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
8604 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
8605 (sparc_gdbarch_init): Pass it to
8606 set_gdbarch_prologue_frameless_p.
a0e8a2d1 8607
e9ed6d01
JT
86082002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8609
8610 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
8611 (alphabsd-nat.o): New dependency list.
8612
36012033
JT
86132002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8614
8615 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
8616 alphafbsd-tdep.c.
8617 (alpha-linux-tdep.o): New dependency list.
8618 (alphafbsd-tdep.o): Likewise.
8619
3379287a
JT
86202002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8621
8622 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
8623 to here...
8624 * alpha-tdep.c: ...from here.
8625 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
8626
4bcbd6cb
JT
86272002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8628
8629 * config/alpha/tm-alpha.h: Move alpha_software_single_step
8630 prototype from here...
8631 * alpha-tdep.h: ...to here.
8632
b31da25e
AC
86332002-04-21 Andrew Cagney <ac131313@redhat.com>
8634
8635 * frame.h (selected_frame_level): Document as deprecated.
8636 (frame_relative_level): Declare.
8637 * stack.c (frame_relative_level): New function.
8638 (selected_frame_level): Document as deprecated.
8639 (select_frame): Do not set the selected_frame_level.
8640
8641 * stack.c (frame_info, record_selected_frame): Update.
8642 (frame_command, current_frame_command): Update.
8643 (up_silently_base, up_command, down_silently_base): Update.
8644 (down_command): Update.
8645 * inflow.c (kill_command): Update.
8646 * tracepoint.c (finish_tfind_command): Update.
8647 * corelow.c (core_open): Update.
8648 * thread.c (info_threads_command): Update.
8649 (do_captured_thread_select): Update.
8650 * infcmd.c (finish_command): Update.
8651 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
8652
9c1d6fe5
JT
86532002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8654
8655 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
8656
ab89facf
AC
86572002-04-21 Andrew Cagney <ac131313@redhat.com>
8658
8659 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
8660 type const.
8661
82a4efa1
JT
86622002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8663
8664 * alphafbsd-tdep.c: Update copyright years. Include
8665 alpha-tdep.h.
8666 (alphafbsd_use_struct_convention): Make static.
8667 (alphafbsd_init_abi): New function.
8668 (_initialize_alphafbsd_tdep): New function.
8669 * config/alpha/tm-fbsd.h: Update copyright years.
8670 (USE_STRUCT_CONVENTION): Remove.
8671
44dffaac
JT
86722002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8673
8674 * alpha-tdep.c (alpha_abi_handler): New structure to describe
8675 an Alpha ABI variant.
8676 (alpha_abi_handler_list): Declare.
8677 (alpha_gdbarch_register_os_abi): New function.
8678 (alpha_gdbarch_init): Give registered ABI variant handlers a
8679 chance to tweak the gdbarch once we have set up defaults.
8680 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
8681
65585be4
JT
86822002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8683
8684 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
8685 to standard_coerce_float_to_double.
8686 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
8687
d9b023cc
JT
86882002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8689
8690 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
8691 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
8692 from gdbarch_tdep rather than a constant.
8693 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
8694 the default text address for all Alpha Unix ABIs.
8695 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
8696 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
8697
dc129d82
JT
86982002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8699
8700 * alpha-tdep.h: New file. Includes several Alpha target constants
8701 taken from...
8702 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
8703 let gdbarch deal with.
8704 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
8705 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
8706 to dependency list.
8707 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
8708 Alpha target register names.
8709 * alphabsd-nat.c: Likewise.
8710 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
8711 Alpha target register names. Make serveral routines static.
8712 (alpha_get_saved_register): New function.
8713 (alpha_abi_names): New.
8714 (process_note_abi_tag_sections): New function.
8715 (get_elfosabi): New function.
8716 (alpha_gdbarch_init): New function.
8717 (alpha_dump_tdep): New function.
8718 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
8719
d49d1e0a
AC
87202002-04-21 Andrew Cagney <ac131313@redhat.com>
8721
8722 * frame.c (find_saved_register): Delete #ifdef
8723 HAVE_REGISTER_WINDOWS code.
8724 * config/sparc/tm-sparc.h: Update comments.
8725 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
8726
92e8c9ed
AC
87272002-04-21 Andrew Cagney <ac131313@redhat.com>
8728
8729 * i960-tdep.c (i960_find_saved_register): New function.
8730 (i960_get_saved_register): New function.
8731 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
8732 (i960_get_saved_register): Declare.
8733 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
8734
e1925118
DM
87352002-04-20 David S. Miller <davem@redhat.com>
8736
8737 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
8738
29673b29
AC
87392002-04-20 Andrew Cagney <ac131313@redhat.com>
8740
8741 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
8742 instead of NUM_PSEUDO_REGS.
8743
6c86dcd5
DM
87442002-04-20 David S. Miller <davem@redhat.com>
8745
8746 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
8747 GDB_MULTI_ARCH_PARTIAL
8748 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
8749 define, let tm-sp64.h do it.
8750
aa40ec90
JT
87512002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
8752
8753 * frame.c (find_saved_register): Avoid a NULL pointer
8754 dereference and actually walk the frame list.
8755
0f79675b
AC
87562002-04-20 Andrew Cagney <ac131313@redhat.com>
8757
8758 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
8759 sorted in most most-recent-used order. Document.
8760 * gdbarch.h, gdbarch.c: Regenerate.
361d1df0 8761
f91305dd 87622002-04-19 Andrew Cagney <ac131313@redhat.com>
bf75c8c1
AC
8763
8764 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
8765 instead of ->prev.
8766 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
8767 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
8768 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
8769 instead of ->prev.
8770
73d322b1
EZ
87712002-04-19 Elena Zannoni <ezannoni@redhat.com>
8772
8773 Fix PR gdb/471.
8774 * gdbtypes.c (init_simd_type): Rewrite using new functions.
8775 (build_builtin_type_vec128): Ditto.
8776 (append_composite_type_field): Fix calculation of type length in
8777 union case.
8778
ccd9a834
EZ
87792002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
8780
8781 * config/djgpp/README: Update.
8782
8783 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
8784 compiler warnings.
8785
a57f9e49
JT
87862002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
8787
8788 * alpha-tdep.c (setup_arbitrary_frame): Rename...
8789 (alpha_setup_arbitrary_frame): ...to this.
8790 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
8791 for alpha_setup_arbitrary_frame.
8792
f4f9705a
AC
87932002-04-18 Andrew Cagney <cagney@redhat.com>
8794
8795 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
8796 * gdbarch.h, gdbarch.c: Regenerate.
361d1df0 8797
f4f9705a
AC
8798 * defs.h (breakpoint_from_pc_fn): Delete type definition.
8799 * target.h (memory_breakpoint_from_pc): Update declaration.
8800 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
8801
8802 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
8803 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
8804 * mem-break.c (memory_breakpoint_from_pc): Ditto.
8805 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
8806 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
8807 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
8808 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
8809 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
8810 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
8811 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
8812 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
8813 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
8814
8815 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
8816 const pointer.
8817 * monitor.c (monitor_insert_breakpoint): Ditto.
8818 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
8819
8820 * config/mcore/tm-mcore.h: Update copyright.
8821 * mem-break.c: Ditto.
8822 * xstormy16-tdep.c: Ditto.
8823
29f319b8
PM
88242002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
8825
8826 * p-exp.y: Add precedence rule for '^' token.
8827 This removes the shift/reduce conflicts.
8828 Remove the comment concerning these shift/reduce conflicts.
8829
ebeac11a
EZ
88302002-04-18 Elena Zannoni <ezannoni@redhat.com>
8831
8832 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
8833 (registers_powerpc_nofp): New register set for processors
8834 without floating point unit.
8835
27c31547
DM
88362002-04-18 David S. Miller <davem@redhat.com>
8837
8838 * MAINTAINERS: Add myself to write-after-approval.
8839
47a73475
MS
88402002-04-17 Michael Snyder <msnyder@redhat.com>
8841
8842 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
8843
953836b2
AC
88442002-04-17 Andrew Cagney <ac131313@redhat.com>
8845
8846 * rs6000-tdep.c (frame_initial_stack_address): Use
8847 frame_register_read to read the alloca_reg.
8848
8b0d4340
AC
88492002-04-17 Andrew Cagney <ac131313@redhat.com>
8850
8851 * frame.c (find_saved_register): Find saved registers in the next
8852 not prev frame.
8853 Fix PR gdb/365.
8854
d8864532
AC
88552002-04-17 Andrew Cagney <ac131313@redhat.com>
8856
8857 * gdbarch.sh (LANG): Set to ``c''.
8858
36cc83a3 88592002-04-15 Andrew Cagney <ac131313@redhat.com>
361d1df0 8860
36cc83a3 8861 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
361d1df0 8862
2f4150cc 88632002-04-15 Andrew Cagney <ac131313@redhat.com>
2c7ef074
AC
8864
8865 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
8866 Update copyright.
8867
628703c6 8868 * hpread.c (hpread_get_lntt): Add declaration.
2f4150cc 8869 Also fix PR gdb/391.
361d1df0 8870
56157b4a
AC
88712002-04-14 Andrew Cagney <ac131313@redhat.com>
8872
8873 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
8874 * aclocal.m4, configure: Re-generate.
8875 Fix PR gdb/391.
361d1df0 8876
6d1e3329
EZ
88772002-04-14 Elena Zannoni <ezannoni@redhat.com>
8878
8879 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
8880 instead of tm_print_insn.
8881
cb06fa07
EZ
88822002-04-14 Elena Zannoni <ezannoni@redhat.com>
8883
8884 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
8885
f208ba17
AC
88862002-04-14 Andrew Cagney <ac131313@redhat.com>
8887
8888 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
8889 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
8890 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
8891
20f01a46
DH
88922002-04-12 Don Howard <dhoward@redhat.com>
8893
8894 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
8895 max_user_call_depth.
8896 (init_cmd_lists): Initialize the new value;
8897 * cli/cli-script.c (execute_user_command): Limit the call depth of
8898 user defined commands. This avoids a core-dump when user commands
8899 are infinitly recursive.
8900
a88376a3
KB
89012002-04-12 Kevin Buettner <kevinb@redhat.com>
8902
8903 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
8904 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
8905 from tdep struct instead of DEFAULT_LR_SAVE.
8906 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
8907 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
8908 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
8909
f2172603
MS
89102002-04-12 Michael Snyder <msnyder@redhat.com>
8911
694f61fb 8912 * Remote.c: Spelling fix.
20fe79c8
MS
8913 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
8914 If no symbol found for "sbrk", try "_sbrk".
8915 (make_output_phdrs): Use bfd_section_name.
8916 (gcore_copy_callback): Use bfd_section_name.
62995fc4 8917 * eval.c: Indentation fix-ups.
169a7369
MS
8918 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
8919 in case it gets applied to an address that is already
8920 in the instruction space.
de74f71f
MS
8921 * cli/cli-decode.c (help_list): Allow long lines to wrap.
8922 * symfile.c: Fix indentation, long lines.
f2172603
MS
8923 * source.c: White space fix-up.
8924
cda5a58a
AC
89252002-04-12 Andrew Cagney <cagney@redhat.com>
8926
8927 * defs.h (read_relative_register_raw_bytes): Delete declaration.
8928 * frame.c (frame_register_read): New function. Return non-zero on
8929 success.
8930 (read_relative_register_raw_bytes_for_frame): Delete.
8931 (read_relative_register_raw_bytes): Delete.
8932 * frame.h (frame_register_read): Declare.
8933 * d30v-tdep.c: Update Copyright. Use frame_register_read.
8934 * sh-tdep.c: Ditto.
8935 * infcmd.c (do_registers_info): Ditto.
8936 * hppa-tdep.c: Ditto.
8937 * rs6000-tdep.c: Ditto.
8938 * h8500-tdep.c: Ditto.
8939 * mips-tdep.c: Ditto.
8940 * h8300-tdep.c: Ditto.
8941 * z8k-tdep.c: Ditto.
8942
2ea5f656
KB
89432002-04-12 Kevin Buettner <kevinb@redhat.com>
8944
8945 From Jimi X <jimix@watson.ibm.com>:
8946 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
8947 64-bit SysV ABI.
8948
27b15785
KB
89492002-04-12 Kevin Buettner <kevinb@redhat.com>
8950
8951 From Jimi X <jimix@watson.ibm.com>:
8952 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
8953 bfd info.
8954
5d57ee30
KB
89552002-04-12 Kevin Buettner <kevinb@redhat.com>
8956
8957 From Jimi X <jimix@watson.ibm.com>:
8958 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
8959 register sets for these processor variants.
8960
bc1e36ca
DJ
89612002-04-11 Daniel Jacobowitz <drow@mvista.com>
8962
bc1e36ca
DJ
8963 * regformats/reg-ppc.dat: Support FPSCR.
8964
e3f36dbd
KB
89652002-04-11 Kevin Buettner <kevinb@redhat.com>
8966
8967 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
8968 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
8969 Add fpscr as an invalid/unfetchable register.
8970 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
8971 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
8972 (fill_fpregset): Add support for register fpscr.
8973 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
8974 (fill_gregset): Account for the fact that register ``mq'' might
8975 not exist.
8976 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
8977 (registers_power): Add fpscr to register set at slot 71.
8978 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
8979 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
8980
943c9c25
MS
89812002-04-11 Michael Snyder <msnyder@redhat.com>
8982
8983 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
8984 * configure: Regenerate.
8985 * config.in: Regenerate.
8986 * acconfig.h: Add define for _SYSCALL32.
8987 * core-sol2.c: Remove #define _SYSCALL32.
8988 * solib-legacy.c: Remove #define _SYSCALL32.
8989
d8c0a2e7
AC
89902002-04-10 Andrew Cagney <ac131313@redhat.com>
8991
8992 * stack.c (select_frame): Cleanup internal error message, do not
8993 use %p.
8994
7cc19214
AC
89952002-04-10 Andrew Cagney <ac131313@redhat.com>
8996
8997 * stack.c (select_frame): Check that selected_frame and the
8998 specified level are as expected.
8999 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
9000 Update copyright.
9001 * frame.h (struct frame_info): Add field `level'. Update
9002 copyright.
9003 Work-in-progress PR gdb/464.
9004
67a2b77e
AC
90052002-04-10 Andrew Cagney <ac131313@redhat.com>
9006
9007 * maint.c (maint_print_section_info): Rename print_section_info.
9008 (print_bfd_section_info, print_objfile_section_info): Update.
9009 * inferior.h (struct gdbarch): Add opaque declaration.
9010 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
9011 * gdbarch.h: Regenerate.
9012
8cfda98c
ML
90132002-04-10 Michal Ludvig <mludvig@suse.cz>
9014
9015 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
9016 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
9017 (kernel_u_size): Added.
9018 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
9019 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
9020
ca439ad2 90212002-04-04 Jim Ingham <jingham@apple.com>
361d1df0 9022
ca439ad2
JI
9023 * valarith.c (find_size_for_pointer_math): New function, either returns
9024 the size for a pointer's target, returns 1 for void *, or errors for
9025 incomplete types.
9026 (value_add, value_sub): use find_size_for_pointer_math.
9027
2f2893d9
DJ
90282002-04-09 Daniel Jacobowitz <drow@mvista.com>
9029
9030 * linux-low.c (linux_look_up_symbols): New hook.
9031 (linux_target_ops): Add linux_look_up_symbols.
9032 * remote-utils.c (decode_address): New function.
9033 (look_up_one_symbol): New function.
9034 * server.c (handle_query): Call target look_up_symbols hook.
9035 * server.h (look_up_one_symbol): Add prototype.
9036 * target.h (struct target_ops): Add look_up_symbols hook.
9037
96cb11df
AC
90382002-04-09 Andrew Cagney <ac131313@redhat.com>
9039
9040 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
9041 override FP_REGNUM with frame->fp. Update copyright.
9042 * parse.c (num_std_regs, std_regs): Delete.
9043 (target_map_name_to_register): Do not search std_regs. Update
9044 function description.
9045 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
9046 declarations. Update copyright.
9047 Fix PR gdb/251.
361d1df0 9048
97658e92
DJ
90492002-04-09 Daniel Jacobowitz <drow@mvista.com>
9050
9051 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
9052 after the last symbol in a block.
9053
6044e3eb
PM
90542002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
9055
9056 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
9057 is non zero as a found symbol.
9058
0406ec40
AC
90592002-04-08 Andrew Cagney <ac131313@redhat.com>
9060
9061 * findvar.c: Include "builtin-regs.h".
9062 (value_of_register): Call value_of_builtin_reg when applicable.
9063 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
9064 (target_map_name_to_register): Call
9065 builtin_reg_map_name_to_regnum.
9066 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
9067 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
9068 (builtin_regs_h): Define.
9069 (builtin-regs.o): New target.
9070 (findvar.o): Add $(builtin_regs_h).
9071 * builtin-regs.c, builtin-regs.h: New files.
9072 * std-regs.c: New file.
9073 Partial fix for PR gdb/251.
9074
56a6dfb9
KB
90752002-04-08 Kevin Buettner <kevinb@redhat.com>
9076
9077 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
9078 it's no longer required.
9079
3a808432
AC
90802002-04-08 Andrew Cagney <ac131313@redhat.com>
9081
9082 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
9083
7c40d541
KB
90842002-04-08 Kevin Buettner <kevinb@redhat.com>
9085
9086 From Jimi X <jimix@watson.ibm.com>:
9087 * rs6000-tdep.c (rs6000_software_single_step): Use
9088 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
9089 and size. Use target_insert_breakpoint() and
9090 target_remove_breakpoint() to insert and remove breakpoints
9091 instead of explicit memory reads and writes.
9092
cc9836a8
KB
90932002-04-08 Kevin Buettner <kevinb@redhat.com>
9094
9095 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
9096 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
9097 ELF_OBJECT_FORMAT ifdef.
9098
7495d1dc
KB
90992002-04-08 Kevin Buettner <kevinb@redhat.com>
9100
9101 From Jimi X <jimix@watson.ibm.com>:
9102 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
9103
4288e836
KB
91042002-04-08 Kevin Buettner <kevinb@redhat.com>
9105
9106 From Jimi X <jimix@watson.ibm.com>:
9107 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
9108 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
9109
a4e4e501
MK
91102002-04-07 Mark Kettenis <kettenis@gnu.org>
9111
9112 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
9113 s/asprintf/xasprintf/.
9114 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
9115
006defba
AC
91162002-04-07 Andrew Cagney <ac131313@redhat.com>
9117
9118 I believe Jeff Law denies responsability for this one:
9119 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
9120 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
9121 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
9122 Work-around for PR gdb/366.
9123
7aa83cac
EZ
91242002-04-07 Elena Zannoni <ezannoni@redhat.com>
9125
9126 * remote-e7000.c (write_small, e7000_read_inferior_memory,
9127 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
9128 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
9129
cf1fcca1
EZ
91302002-04-07 Elena Zannoni <ezannoni@redhat.com>
9131
9132 * sh-tdep.c (sh_fp_frame_init_saved_regs,
9133 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
9134 information.
9135
3f289e6f
AC
91362002-04-07 Andrew Cagney <ac131313@redhat.com>
9137
9138 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
9139 maintainer.
9140
129188f6
AC
91412002-04-07 Andrew Cagney <ac131313@redhat.com>
9142
9143 * README (Reporting Bugs in GDB): Document the bug web page as the
9144 prefered way of submitting bugs.
9145 Fix PR gdb/402.
9146
1200cd6e
AC
91472002-04-06 Andrew Cagney <ac131313@redhat.com>
9148
9149 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
9150 -1. Update comment.
9151 * gdbarch.h, gdbarch.c: Re-generate.
9152
2853c33c
AS
91532002-04-07 Andreas Schwab <schwab@suse.de>
9154
9155 * m68klinux-nat.c (fill_fpregset): Properly pass address of
9156 buffer to regcache_collect.
9157
c2169756
AC
91582002-04-06 Andrew Cagney <ac131313@redhat.com>
9159
9160 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
9161 * gdbarch.c, gdbarch.h: Re-generate.
9162
25f1b008
AC
91632002-04-06 Andrew Cagney <ac131313@redhat.com>
9164
9165 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
9166 declaration. Fix -Werror.
9167
59263426
DJ
91682002-04-05 Daniel Jacobowitz <drow@mvista.com>
9169
9170 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
9171 * gdbarch.c: Regenerate.
9172
f5db4da3
MS
91732002-04-05 Michael Snyder <msnyder@redhat.com>
9174
80f8a6eb
MS
9175 * breakpoint.c (clear_command): Rewrite middle section to
9176 combine two loops with identical control conditions.
9177 Add a cleanup to eliminate a memory leak.
f5db4da3
MS
9178 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
9179
ad3dcc5c
L
91802002-04-05 H.J. Lu (hjl@gnu.org)
9181
9182 * solib-svr4.c (bkpt_names): Add "__start".
9183
f32e7a74
AC
91842002-04-04 Andrew Cagney <ac131313@redhat.com>
9185
9186 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
9187 as test for 64 bit target.
9188
8227c0ff
AC
91892002-04-05 Andrew Cagney <ac131313@redhat.com>
9190
9191 * h8500-tdep.c (h8500_write_fp): Delete function.
9192 * dwarf2cfi.c (cfi_write_fp): Document as not used.
9193 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
9194 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
9195 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
9196 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
9197 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
9198 (s390_write_fp):
9199 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
9200 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
9201 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
9202 (d10v_write_fp): Delete function.
9203 * inferior.h (write_fp, generic_target_write_fp): Delete
9204 declarations.
9205 * regcache.c (generic_target_write_fp): Delete function.
9206 (write_fp): Delete function.
9207 * gdbarch.sh (TARGET_WRITE_FP): Delete.
9208 * gdbarch.h, gdbarch.c: Regenerate.
9209 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
9210 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
9211 (sparc64_write_fp): Delete declaration.
9212 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
9213 (h8500_write_fp): Delete declaration.
9214
2757dd86
AC
92152002-04-04 Andrew Cagney <ac131313@redhat.com>
9216
9217 * sparc-tdep.c (sparc64_write_fp): Delete.
9218 (sparc_push_dummy_frame): Replace write_fp call with code to store
9219 the FP directly.
9220 (sparc_gdbarch_init): Do not initialize write_fp.
9221
c69255e1
KB
92222002-04-05 Kevin Buettner <kevinb@redhat.com>
9223
9224 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
9225 clause.
9226
ae767bfb
JB
92272002-03-29 Jim Blandy <jimb@redhat.com>
9228
9229 * stack.c (get_selected_block): Add new argument `addr_in_block',
9230 used to return the exact code address we used to select the block,
9231 not just the block.
9232 * blockframe.c (get_frame_block, get_current_block): Same.
9233 * frame.h (get_frame_block, get_current_block,
9234 get_selected_block): Update declarations.
9235 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
9236 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
9237
84d2ac95
MS
92382002-04-05 Michael Snyder <msnyder@redhat.com>
9239
9240 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
9241 warning message.
9242
596aa3bf
JB
92432002-04-05 J. Brobecker <brobecker@gnat.com>
9244
9245 * utils.c (xfullpath): New function.
9246 * defs.h (xfullpath): Add declaration.
9247 * source.c (openp): Use xfullpath in place of gdb_realpath to
9248 avoid resolving the basename part of filenames when the
9249 associated file is a symbolic link. This fixes a potential
9250 inconsistency between the filenames known to GDB and the
9251 filenames it prints in the annotations.
9252 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
9253 to be able to match a filename with either the real filename, or
9254 the name of any symbolic link to this file.
9255 (lookup_partial_symtab): Ditto.
9256
c02f5703
MS
92572002-04-04 Michael Snyder <msnyder@redhat.com>
9258
9259 * breakpoint.c: Add support for hardware breakpoints in overlays.
9260 (overlay_events_enabled): New state variable.
9261 (insert_breakpoints): Use overlay_events_enabled to decide
9262 whether to attempt to set a breakpoint at the overlay load addr.
9263 Handle bp_hardware_breakpoint as well as bp_breakpoint.
9264 (remove_breakpoint): Use overlay_events_enabled to decide
9265 whether breakpoints need to be removed from overlay load addr.
9266 Handle bp_hardware_breakpoint as well as bp_breakpoint.
9267 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
361d1df0 9268 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
c02f5703
MS
9269 disable_overlay_breakpoints): Update overlay_events_enabled.
9270
5fb290d7
DJ
92712002-04-04 Daniel Jacobowitz <drow@mvista.com>
9272
9273 * dwarf2read.c (struct function_range): New.
9274 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
9275 (check_cu_functions): New.
9276 (read_file_scope): Initialize global function lists.
9277 Call dwarf_decode_line after processing children.
9278 (read_func_scope): Add to global function list.
9279 (dwarf_decode_lines): Call check_cu_functions everywhere
9280 record_line is called. Call record_line with a linenumber
9281 of 0 to mark sequence ends.
9282
7b3fabf0
ML
92832002-04-04 Michal Ludvig <mludvig@suse.cz>
9284
361d1df0 9285 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
7b3fabf0
ML
9286 change sync with glibc.
9287
bce58c09
JB
92882002-04-03 Jim Blandy <jimb@redhat.com>
9289
9290 * configure.in: Call AC_C_INLINE.
9291 * configure: Regenerated.
361d1df0 9292
2fccf04a
DJ
92932002-04-01 Daniel Jacobowitz <drow@mvista.com>
9294
9295 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
9296 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
9297
2d1bfe2e
MK
92982002-03-31 Mark Kettenis <kettenis@gnu.org>
9299
a5941fbf
MK
9300 * NEWS: Mention gcore support on FreeBSD/i386.
9301
a90cd31d
MK
9302 * fbsd-proc.c: New file.
9303 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
9304 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
9305
2d1bfe2e
MK
9306 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
9307 while statement.
9308
9eb6e5a1
JB
93092002-03-29 Jim Blandy <jimb@redhat.com>
9310
9311 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
9312 unescaped newlines in string literals, but newer ones don't. So
9313 escape them.
9314
f02df580
MS
93152002-03-26 Michael Snyder <msnyder@redhat.com>
9316 Andrew Cagney <cagney@redhat.com>
9317
361d1df0 9318 * cli/cli-dump.c: New file. Dump memory to file,
f02df580
MS
9319 restore file to memory.
9320 * cli/cli-dump.h: New file.
9321 * Makefile.in: Add rules, dependencies for cli-dump.o.
89743e04 9322 * NEWS: Mention new commands.
f02df580 9323
109f874e
MS
93242002-03-28 Michael Snyder <msnyder@redhat.com>
9325
9326 * symfile.c (symbol_file_add): Move test for null symbols to later.
9327
520f6ade
AC
93282002-03-27 Andrew Cagney <ac131313@redhat.com>
9329
9330 From veksler at il.ibm.com:
9331 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
9332 the xstrduped original path.
9333 Fix PR gdb/417.
9334
d4654627
MS
93352002-03-27 Michael Snyder <msnyder@redhat.com>
9336
9337 * breakpoint.c (_initialize_breakpoint): Clean up help string.
9338 * infcmd.c (_initialize_infcmd): Ditto.
9339 * language.c (_initialize_language): Ditto.
9340 * symfile.c (_initialize_symfile): Ditto.
9341 * top.c (_init_main): Ditto.
9342 * cli/cli-cmds.c (init_cli_cmds): Ditto.
9343
6be8bc0c
EZ
93442002-03-27 Elena Zannoni <ezannoni@redhat.com>
9345
9346 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
9347 vector registers handling.
9348 (skip_prologue): Handle new AltiVec instructions. Fill in new
9349 fields of frame data.
9350 (frame_get_saved_regs): Fill in information for AltiVec registers.
9351
12af6855
JB
93522002-03-27 Jim Blandy <jimb@redhat.com>
9353
9354 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
9355 a function; leave this macro here to invoke that function.
9356 (symbol_init_mangled_name): Declaration for that function.
9357 * symtab.c (symbol_init_mangled_name): New function.
9358
dc672865
AC
93592002-03-27 Andrew Cagney <ac131313@redhat.com>
9360
9361 * valarith.c: Replace strerror with safe_strerror.
9362 * tracepoint.c: Ditto.
9363 * lin-lwp.c: Ditto.
9364 * go32-nat.c: Ditto.
9365 * inflow.c: Ditto.
9366 * gnu-nat.c: Ditto.
9367
d96429cd
AS
93682002-03-27 Andreas Schwab <schwab@suse.de>
9369
9370 * event-top.c (command_line_handler): Remove useless if.
9371
7e336ba1
AJ
93722002-03-27 Andreas Jaeger <aj@suse.de>
9373
9374 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
9375 comment.
9376
de220d0f
ML
93772002-03-27 Michal Ludvig <mludvig@suse.cz>
9378
9379 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
9380 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
9381 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
9382 (x86_64_linux_dr_get_status, supply_gregset),
9383 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
9384 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
9385 (x86_64_register_info_table): Add.
9386 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
9387 (x86_64_register_raw_size, x86_64_register_virtual_type),
9388 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
9389 general x86_64_register_info_table.
9390 (i386_gdbarch_init): gdbarch_register_bytes is now set
9391 dynamicaly during initialization.
9392 * regformats/reg-x86-64.dat: Synced with changes to registers above.
9393 * gdbserver/linux-x86-64-low.c: Ditto.
7e336ba1 9394
0e98d0a7
DJ
93952002-03-27 Daniel Jacobowitz <drow@mvista.com>
9396
9397 * gdbserver/server.c (main): Call target_signal_to_host_p
9398 and target_signal_to_host on signals received from the remote.
9399 * gdbserver/remote-utils.c (prepare_resume_reply): Call
9400 target_signal_from_host on signals sent to the remote.
9401 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
9402 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
9403
3130066b
DJ
94042002-03-27 Daniel Jacobowitz <drow@mvista.com>
9405
9406 * signals/signals.c: Include "server.h" in gdbserver build.
9407 (target_signal_from_name): Don't use STREQ.
9408 (_initialize_signals): Likewise. Don't include function in
9409 gdbserver build.
9410
9aedf4f4
DJ
94112002-03-27 Daniel Jacobowitz <drow@mvista.com>
9412
9413 * signals.c: Moved to...
9414 * signals/signals.c: Here.
7e336ba1 9415 * Makefile (signals.o): Update.
9aedf4f4 9416
3fa41cdb
JL
94172002-03-26 Jeff Law (law@redhat.com)
9418
9419 * somread.c (som_symtab_read): Remove some commented out code and
9420 updated related comments. Do not set the minimal symbol table to
9421 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
9422 in a dynamic executable.
9423 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
9424 where we are unable to find the minimal symbol for the given
9425 PC value.
9426
ee677e8d
MS
94272002-03-25 Jeff Law (law@redhat.com)
9428
9429 * linux-proc.c (read_mapping): Scan up to end of line for filename.
9430
e76e1718
ML
94312002-03-25 Michal Ludvig <mludvig@suse.cz>
9432
9433 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
9434
18a642a1
AC
94352002-03-23 Andrew Cagney <ac131313@redhat.com>
9436
9437 * command.h: Update copyright.
9438 (struct cmd_list_element): Replace definition with opaque
9439 declaration.
9440 (enum cmd_types): Document that it will eventually be moved to
9441 cli/cli-decode.h
9442 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
9443 (MALLOCED_REPLACEMENT): Delete macro.
9444 * Makefile.in (cli_decode_h): Add $(command_h).
9445 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
7e336ba1 9446 * top.c: Include "cli/cli-decode.h".
18a642a1
AC
9447 * completer.c: Include "cli/cli-decode.h".
9448 * maint.c: Include "cli/cli-decode.h".
9449 * cli/cli-decode.h: Include "command.h".
9450 (enum command_class): Delete.
9451 (enum cmd_types): Comment out.
9452 (enum cmd_auto_boolean): Delete.
9453 (enum var_types): Delete.
9454
b2875cc0
AC
94552002-03-23 Andrew Cagney <ac131313@redhat.com>
9456
9457 * cli/cli-decode.c: Include "gdb_assert.h".
9458 (add_set_or_show_cmd): New static function.
9459 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
9460 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
9461 all fields, such as func, from the set command.
9462
3b45974e
AC
94632002-03-23 Andrew Cagney <ac131313@redhat.com>
9464
9465 * MAINTAINERS (sh-elf): Change warning flag to -w.
9466
823ca731
AC
94672002-03-23 Andrew Cagney <cagney@redhat.com>
9468
9469 * defs.h (error): Add printf format attribute.
9470 * thread-db.c (thread_from_lwp): Fix error format string.
9471 * stack.c (parse_frame_specification): Ditto.
9472 * cli/cli-decode.c (undef_cmd_error): Ditto.
9473 * scm-lang.c (scm_lookup_name): Ditto.
9474 * tracepoint.c (trace_error): Ditto.
9475 * remote-utils.c (usage): Ditto.
9476 * remote.c (compare_sections_command): Ditto.
9477 Fix PR gdb/328.
9478
0e101458
AC
94792002-03-22 Andrew Cagney <ac131313@redhat.com>
9480
9481 * gdbtypes.c (append_composite_type_field): New function.
9482 (init_composite_type): New function.
9483 * gdbtypes.h (append_composite_type_field): Declare.
9484 (init_composite_type): Ditto.
9485
8e0662df
EZ
94862002-03-22 Elena Zannoni <ezannoni@redhat.com>
9487
9488 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
7e336ba1 9489 function.
8e0662df
EZ
9490 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
9491 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
9492 structure returning convention for SYSV ABI case, but not
9493 for GNU/Linux, FreeBSD, or NetBSD.
9494
3121eff0
DJ
94952002-03-22 Daniel Jacobowitz <drow@mvista.com>
9496
9497 * symtab.h (lookup_block_symbol): Add mangled_name argument
9498 to prototype.
9499
9500 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
9501 with new mangled_name argument.
9502 * linespec.c (decode_line_1): Likewise.
9503 * valops (value_of_this): Likewise.
9504 * symtab.c (lookup_transparent_type): Likewise.
9505 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
9506 (lookup_symbol): If we are given a mangled name, pass it down
9507 to lookup_symbol_aux.
9508 (lookup_block_symbol): If we are given a mangled name to check
9509 against, only return symbols which match it.
9510
349b409f
CF
95112002-03-22 Christopher Faylor <cgf@redhat.com>
9512
9513 * win32-nat.c (child_create_inferior): Check for proper shell to use
9514 here, in case the user changes it on the fly.
9515 (_initialize_inftarg): Remove shell path considerations.
9516
2a873819
EZ
95172002-03-21 Elena Zannoni <ezannoni@redhat.com>
9518
9519 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
9520 for gdbarch_max_register_raw_size and max_register_virtual_size.
9521 Adjust copyright year.
9522
a1b9830c
DJ
95232002-03-21 Daniel Jacobowitz <drow@mvista.com>
9524
9525 * dbxread.c (process_one_symbol): Extend the first N_SLINE
9526 in a function to cover the entire beginning of the function
9527 as well if it does not already.
9528
8b5790f2
TR
95292002-03-21 Tom Rix <trix@redhat.com>
9530
9531 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
9532 (rs6000_ptrace64): Renamed from ptrace64.
9533
bdbe5747
MH
95342002-03-20 Martin M. Hunt <hunt@redhat.com>
9535
9536 * gdbserver/remote-utils.c (remote_open): Don't call
9537 getprotobyname, we're all using TCP here so just use
9538 IPPROTO_TCP.
7e336ba1 9539 * gdbserver/gdbreplay.c (remote_open): Ditto.
bdbe5747
MH
9540
95412002-03-20 Martin M. Hunt <hunt@redhat.com>
7e336ba1 9542
bdbe5747
MH
9543 * regcache.c (_initialize_regcache): No need to call
9544 build_regcache() at this time; it gets called whenever
9545 the gdbarch changes.
9546
7781cd62
DB
95472002-03-20 David O'Brien <obrien@FreeBSD.org>
9548
9549 * sparc-nat.c: Include sys/param.h where possible.
9550
f65ca430
DJ
95512002-03-20 Daniel Jacobowitz <drow@mvista.com>
9552
9553 Fix PR gdb/422.
9554 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
9555 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
9556 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
9557 complex types.
9558 * stabsread.c (rs6000_builtin_type): Likewise.
9559 (read_sun_floating_type): Likewise.
9560
0c867556
PS
95612002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9562
9563 * stabsread.c (read_member_functions): Remove skip code for duplicate
9564 constructor/destructor methods. Use standard parsing for these
9565 methods and just do not chain them to the list of methods after
9566 parsing.
9567
12b9c64f
AO
95682002-03-19 Alexandre Oliva <aoliva@redhat.com>
9569
9570 * coffread.c: Remove redundant static declarations. Replace
9571 occurrences of `PTR' with `void *'.
9572 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
9573 * top.h (quit_cover): Likewise.
9574 * defs.h (catch_errors): Likewise.
9575
349c5d5f
AC
95762002-03-18 Andrew Cagney <ac131313@redhat.com>
9577
9578 * defs.h (XMALLOC): Define.
9579 * gdb-events.sh (XMALLOC): Delete macro.
9580 * gdb-events.c, gdb-events.h: Regenerate.
9581 * gdbarch.sh (XMALLOC): Delete macro.
9582 * gdbarch.c: Regenerate.
9583 * serial.c (XMALLOC): Delete macro.
9584 * ui-file.c (XMALLOC): Ditto.
9585 * ser-unix.h (XMALLOC): Ditto.
9586 * sh-tdep.c (XMALLOC): Ditto.
9587 * ui-out.c (XMALLOC): Ditto.
9588 * utils.c (XMALLOC): Ditto.
9589 * i386-tdep.c (XMALLOC): Ditto.
9590 * gdb-events.c (XMALLOC): Ditto.
9591 * d10v-tdep.c (XMALLOC): Ditto.
9592 * cli-out.c (XMALLOC): Ditto.
9593
9594 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
9595 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
9596 * ui-file.c, ui-out.c: Ditto.
9597
7d0766f3
AC
95982002-03-18 Andrew Cagney <ac131313@redhat.com>
9599
9600 * command.h (struct cmd_list_element): Add field context.
9601 (set_cmd_context, get_cmd_context): Declare.
9602 * cli/cli-decode.h: Ditto.
9603 * cli/cli-decode.c (get_cmd_context): New function.
9604 (set_cmd_context): New function.
9605 (add_cmd): Initialize context.
9606 Part of fixing PR gdb/145 and PR gdb/146.
9607
5913bcb0
AC
96082002-03-17 Andrew Cagney <ac131313@redhat.com>
9609
1868c04e
AC
9610 * cli/cli-decode.c (cmd_type): New function.
9611 * command.h (cmd_type): Declare.
9612 * infrun.c (set_schedlock_func): Call function cmd_type.
9613 * kod.c (kod_set_os): Call cmd_type.
9614 * cris-tdep.c (cris_version_update): Use function cmd_type.
9615 (cris_mode_update, cris_abi_update): Ditto.
9616
5913bcb0
AC
9617 * command.h: (execute_cmd_post_hook): Declare.
9618 (execute_cmd_pre_hook): Declare.
9619 * cli/cli-script.c (clear_hook_in_cleanup): New function.
9620 (execute_cmd_post_hook, execute_cmd_pre_hook): New
9621 functions. Execute pre/post hook while ensuring that afterwords
9622 hook_in is cleared.
9623 * top.c (execute_command): Use execute_cmd_post_hook, and
9624 execute_cmd_pre_hook to execute pre/post commands.
9625 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
9626 hook_stop_stub.
9627 (hook_stop_stub): Call execute_cmd_pre_hook.
9628
b51450c9
AC
96292002-03-17 Andrew Cagney <ac131313@redhat.com>
9630
9631 * kod.c (kod_set_os): Revert previous change. Is called by ``info
9632 set'' and this leads to a core dump. Move xstrdup of
9633 operating_system to after check that it is not NULL.
9634
f66c9f11
AC
96352002-03-17 Andrew Cagney <ac131313@redhat.com>
9636
8e694ecf
AC
9637 * kod.c (kod_set_os): Remove unnecessary check that
9638 ``command->type'' is set_cmd.
9639
f66c9f11
AC
9640 * valprint.c (set_input_radix): Use input_radix.
9641 (set_output_radix): Use output_radix.
9642 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
9643 isn't reverted.
9644
9d01611c
AC
96452002-03-16 Andrew Cagney <ac131313@redhat.com>
9646
9647 * value.h (struct value): Delete field ``substring_addr''. Change
9648 aligner fields to force_doublest_align, force_longest_align,
ee2d3b3a
AC
9649 force_core_addr_align and force_pointer_aligh.
9650
9651 * value.h (struct value): Fix typo in above change.
9d01611c 9652
4156bb53
PS
96532002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9654
9655 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
9656 to fix internal_error from ``maintenance print architecture''.
9657
0e5e3ea6
PS
96582002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9659
9660 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
9661 for gcc versions after gcc-2.8.1.
9662
9b013045
PS
96632002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9664
9665 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
9666 for method resolution. Restore adjustment of ``this'' pointer after
9667 calling value_struct_elt, which was accidentally removed during the
9668 HP merge.
9669
376c9600
AC
96702002-03-15 Andrew Cagney <ac131313@redhat.com>
9671
9672 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
9673 value_of_register.
9674 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
9675 get_saved_register.
9676 * value.h (value_of_register): Update.
9677
a4db0f07
RH
96782002-03-14 Richard Henderson <rth@redhat.com>
9679
9680 * configure.in: Detect declaration for canonicalize_file_name.
9681 * utils.c (canonicalize_file_name): Declare, if needed.
9682 (gdb_realpath): Prefer realpath if available and usable.
9683 * config.in, configure: Rebuild.
9684
96383835
RH
96852002-03-14 Richard Henderson <rth@redhat.com>
9686
9687 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
9688 a constant array bound.
9689
9690 * MAINTAINERS: Add myself to write-after-approval.
9691
75245b24
MS
96922002-03-14 Michael Snyder <msnyder@redhat.com>
9693
9694 * symfile.c (syms_from_objfile): Return immediately if no syms.
9695 (symbol_file_add): Return immediately if no syms.
9696 (find_sym_fns): Return immediately if no syms.
9697
e641a1ca
ML
96982002-03-13 Michal Ludvig <mludvig@suse.cz>
9699
9700 * gdbserver/remote-util.c (remote_open): Print remote-side's
9701 IP address when remote debugging over the network.
7e336ba1 9702
df08bfec
DB
97032002-03-12 David O'Brien <obrien@FreeBSD.org>
9704
9705 * config/sparc/fbsd.mh: Fix copyright.
9706 * config/sparc/fbsd.mt: Likewise.
9707
9a57864f
RE
97082002-03-11 Richard Earnshaw <rearnsha@arm.com>
9709
9710 * MAINTAINERS: Fix typo in name of gdb warnings option.
9711 (x86-64): Fix formating so that this can be parsed by awk.
9712
dd7bf85e
DJ
97132002-03-10 Daniel Jacobowitz <drow@mvista.com>
9714
9715 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
9716 * defs.h: Include "gdb/signals.h".
9717 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
9718
33a0a2ac
ML
97192002-03-10 Michal Ludvig <mludvig@suse.cz>
9720
9721 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
7e336ba1 9722 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
33a0a2ac
ML
9723 from x86-64-tdep.h
9724
dd824b04
DJ
97252002-03-10 Daniel Jacobowitz <drow@mvista.com>
9726 Don Howard <dhoward@redhat.com>
9727
9728 * mips-tdep.c (ST0_FR): Define.
9729 (mips2_fp_compat): New function, temporarily disabled.
9730 (mips_read_fp_register_single): New function.
9731 (mips_read_fp_register_double): New function.
9732 (mips_print_register): Use them.
9733 (do_fp_register_row): Likewise.
9734
6a41ff59
AC
97352002-03-09 Andrew Cagney <ac131313@redhat.com>
9736
9737 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
9738 approval''.
9739
4ea09c10
PS
97402002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9741
9742 * stabsread.c (read_member_functions): Fix is_stub test for
9743 static member functions, improve comment.
9744
6ccc741d
RE
97452002-03-07 Richard Earnshaw <rearnsha@arm.com>
9746
9747 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
9748 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
9749 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
9750 commands that set boolean values.
9751 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
9752 (arm_rdi_resume): Always initialize PC.
9753 (arm_rdi_open): Don't use rslt as a boolean.
9754 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
9755 (arm_rdi_fetch_registers, arm_rdi_store_registers)
9756 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
9757 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
9758
438013df
AO
97592002-03-06 Alexandre Oliva <aoliva@redhat.com>
9760
9761 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
9762 * configure: Rebuilt.
9763
70ed8774
SC
97642002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9765
9766 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
9767 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
9768
5ba2abeb
AC
97692002-03-06 Andrew Cagney <ac131313@redhat.com>
9770
9771 * cli/cli-decode.c (set_cmd_completer): New function.
9772 * command.h (set_cmd_completer): Declare.
9773 * cli/cli-decode.h (set_cmd_completer): Ditto.
9774
9775 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
9776 * cli/cli-cmds.c (init_cli_cmds): Ditto.
9777 * win32-nat.c (_initialize_inftarg): Ditto.
9778 * remote-rdi.c (_initialize_remote_rdi): Ditto.
9779 * proc-api.c (_initialize_proc_api): Ditto.
9780 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
9781 * source.c (_initialize_source): Ditto.
9782 * exec.c (_initialize_exec): Ditto.
9783 * solib.c (_initialize_solib): Ditto.
9784 * top.c (init_main): Ditto.
9785 * tracepoint.c (_initialize_tracepoint): Ditto.
9786 * symfile.c (_initialize_symfile): Ditto.
9787 * printcmd.c (_initialize_printcmd): Ditto.
9788 * infcmd.c (_initialize_infcmd): Ditto.
9789 * corefile.c (_initialize_core): Ditto.
9790
f779ca99
AC
97912002-03-05 Andrew Cagney <ac131313@redhat.com>
9792
9793 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
9794
01a3934b
AC
97952002-03-05 Andrew Cagney <ac131313@redhat.com>
9796
9797 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
9798
37057839
AC
97992002-03-05 Andrew Cagney <ac131313@redhat.com>
9800
9801 * NEWS: Update headings, 5.2 has branched.
9802
c6ecbae5
DJ
98032002-03-04 Daniel Jacobowitz <drow@mvista.com>
9804
9805 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
9806 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
9807 (register_addr, REGISTER_RAW_SIZE): Likewise.
9808 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
9809 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
9810
e9f30c21
ML
98112002-03-03 Michal Ludvig <mludvig@suse.cz>
9812
9813 * MAINTAINERS (x86-64): Add myself.
9814 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
9815 changed value_ptr -> struct value *
9816
54394ac3
DB
98172002-03-01 David O'Brien <obrien@FreeBSD.org>
9818
9819 * configure.host (sparc64-*-freebsd): Add.
9820 * configure.tgt: Likewise.
9821 * config/sparc/fbsd.mh: New file.
9822 * config/sparc/fbsd.mt: Likewise.
9823 * config/sparc/nm-fbsd.h: Likewise.
9824 * config/sparc/tm-fbsd.h: Likewise.
9825
bfe95955
DJ
98262002-03-01 Daniel Jacobowitz <drow@mvista.com>
9827
9828 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
9829 regformats/reg-s390x.dat.
9830
f33c6cbf
AC
98312002-03-01 Andrew Cagney <ac131313@redhat.com>
9832
9833 * utils.c: Add FIXME explaining true/false problem.
9834
5ecaa7dd
AC
98352002-02-28 Andrew Cagney <ac131313@redhat.com>
9836
9837 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
9838
2a251cc2
MC
98392002-02-28 Michael Chastain <mec@shout.net>
9840
9841 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
9842
6a8031a3 98432002-02-28 Daniel Jacobowitz <drow@mvista.com>
265f716b
DJ
9844
9845 * gdbserver/linux-s390-low.c: New file.
9846 * regformats/reg-s390.dat: New file.
9847 * regformats/reg-s390x.dat: New file.
9848 * gdbserver/configure.srv: Add S/390.
9849 * gdbserver/Makefile.in: Add S/390.
9850 * configure.tgt: Enable gdbserver for S/390.
9851
ac469903
EZ
98522002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
9853
9854 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
9855 first line of the doc string for "info dos", except at the end of
9856 the sentence, since the short help stops at the first period.
9857
985cb1a3
JM
98582002-02-28 Jason Merrill <jason@redhat.com>
9859
9860 * dwarf2read.c (dwarf_cfi_name): Add new codes.
9861
c570663e
FF
98622002-02-27 Fred Fish <fnf@redhat.com>
9863
9864 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
9865 comment (dumy -> dummy).
9866
43630227
PS
98672002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9868
9869 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
9870
b84911e8
RB
98712002-02-27 Rodney Brown <rbrown64@csc.com.au>
9872
9873 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
9874
58caa3dc
DJ
98752002-02-27 Daniel Jacobowitz <drow@mvista.com>
9876
9877 * gdbserver/acconfig.h: New file.
9878 * gdbserver/i387-fp.c: New file.
9879 * gdbserver/i387-fp.h: New file.
9880 * gdbserver/linux-x86-64.c: New file.
9881 * regformats/reg-x86-64.dat: New file.
9882 * configure.tgt: Add x86_64-*-linux* gdbserver support.
9883 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
9884 * gdbserver/configure.in: Add support for regsets.
9885 * gdbserver/config.in: Regenerate.
9886 * gdbserver/configure: Regenerate.
9887 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
9888 * gdbserver/linux-low.h: New file.
9889 * gdbserver/linux-low.c: Include "linux-low.h". Add support
9890 for regsets.
9891 * gdbserver/linux-arm-low.c: Include "linux-low.h".
9892 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
9893 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
9894 * gdbserver/linux-mips-low.c: Include "linux-low.h".
9895 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
9896 * gdbserver/linux-sh-low.c: Include "linux-low.h".
9897 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
9898 "i387-fp.h". Add PTRACE_GETREGS and friends.
9899 * gdbserver/regcache.c (supply_register): New function.
9900 (supply_register_by_name): New function.
9901 (collect_register): New function.
9902 (collect_register_by_name): New function.
9903
93652174
DJ
99042002-02-27 Daniel Jacobowitz <drow@mvista.com>
9905
9906 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
9907 (config.status): Add configure.srv dependency.
9908 (server_h): Add config.h dependency.
9909
a02e4a61
DJ
99102002-02-27 Daniel Jacobowitz <drow@mvista.com>
9911
9912 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
9913 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
9914 * gdbserver/configure.srv: Change i386-*-linux* to use
9915 reg-i386-linux.o.
9916
ce0eebec
AC
99172002-02-26 Andrew Cagney <ac131313@redhat.com>
9918
9919 * x86-64-tdep.c: Re-indent. Update copyright date.
9920
82dbc5f7
AC
99212002-02-26 Andrew Cagney <ac131313@redhat.com>
9922
9923 From Michal Ludvig <mludvig@suse.cz>:
9924 * x86-64-tdep.c (value.h): Delete.
9925 (gdb_assert.h): Include.
9926 (x86_64_register_convert_to_virtual,
9927 x86_64_register_convert_to_raw ): Add check which lets only
9928 floating-point values to be converted.
9929 (value_push): Delete.
9930 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
9931 (i386_gdbarch_init): Number of register_bytes fixed.
9932
e4621584
AC
99332002-02-26 Andrew Cagney <ac131313@redhat.com>
9934
9935 * MAINTAINERS: Add x86-64 target.
9936
81a9a963
AC
99372002-02-26 Andrew Cagney <ac131313@redhat.com>
9938
9939 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
9940 * osfsolib.c (solib_map_sections): Ditto.
9941 * irix5-nat.c (solib_map_sections): Ditto.
9942 * corelow.c (gdb_check_format): Ditto.
9943 * symfile.c (symfile_bfd_open): Ditto.
9944 * solib.c (solib_map_sections): Ditto.
9945 Fix PR gdb/354.
7e336ba1 9946
0f017ab9
AC
99472002-02-26 Andrew Cagney <ac131313@redhat.com>
9948
9949 * remote.c (_initialize_remote): By default, disable ``e'' and
9950 ``E'' step out-of-range packets.
9951
75738c29
AS
99522002-02-26 Andreas Schwab <schwab@suse.de>
9953
9954 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
9955 m68k_linux_frame_saved_pc.
9956 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
9957 in_sigtramp.
9958 (SIGCONTEXT_PC_OFFSET): Remove.
9959 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
9960 m68k_linux_sigtramp_saved_pc): New functions.
9961 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
9962 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
9963 (UCONTEXT_PC_OFFSET): Define.
9964 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
9965 non-RT and RT signal trampolines.
9966
7e8ed687
RE
99672002-02-26 Richard Earnshaw <rearnsha@arm.com>
9968
9969 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
9970 (TARGET_NBPG, STACK_END_ADDR): Delete
9971 (VARIABLES_INSIDE_BLOCK): Delete.
9972
6972bc8b
AC
99732002-02-25 Andrew Cagney <ac131313@redhat.com>
9974
9975 * utils.c (perror_with_name): Make string parameter constant.
9976 (print_sys_errmsg): Ditto.
9977 (query): Ditto.
9978 * defs.h (perror_with_name): Update.
9979 (print_sys_errmsg): Update.
9980 (query): Update.
9981
aa32f823
DJ
99822002-02-25 Daniel Jacobowitz <drow@mvista.com>
9983
9984 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
9985 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
9986
19caaa45
PS
99872002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9988
9989 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
9990 if it already matches the current architecture from the exec file.
9991 Include arch-utils.h for gdbarch_info_init prototype.
9992 * Makefile.in (rs6000-nat.o): Update dependencies.
9993
d951901f
EZ
99942002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
9995
9996 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
9997 list of exported variables.
9998
7ea81414
DJ
99992002-02-24 Daniel Jacobowitz <drow@mvista.com>
10000
10001 * gdbserver/configure.srv: New file.
10002 * gdbserver/configure.in: Use configure.srv instead
10003 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
10004 from it.
10005 * gdbserver/configure: Regenerated.
10006 * gdbserver/terminal.h: New file.
10007 * gdbserver/Makefile.in: Update for configure changes. Remove
10008 more unneeded include paths.
10009
080fe24b
AC
100102002-02-24 Andrew Cagney <ac131313@redhat.com>
10011
10012 From wiz at danbala:
10013 * config/sparc/tm-sp64.h: Fix grammar and typos.
10014 Fix PR gdb/287.
10015
8605d56e
AC
100162002-02-24 Andrew Cagney <ac131313@redhat.com>
10017
10018 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
a4b6fc86
AC
10019 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
10020 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
10021 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
ca557f44
AC
10022 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
10023 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
10024 * s390-tdep.c: Ditto.
92362027
AC
10025 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
10026 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
10027 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
10028 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
10029 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
10030 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
10031 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
10032 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
10033 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
10034 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
8605d56e 10035 Fix PR gdb/378.
7e336ba1 10036
8ed32cc0
AC
100372002-02-23 Andrew Cagney <ac131313@redhat.com>
10038
a3007b6f
AC
10039 * lin-thread.c: Delete file.
10040 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
10041 to gdb_proc_service.h.
10042 * configure: Re-generate.
10043
50a9e2f1
AC
10044 * ocd.c (ocd_open): Do not try to open the "ocd" device.
10045 * serial.c (serial_open): Delete check for "ocd".
10046 Fix PR gdb/349.
10047
8b6e7932
AC
10048 * Makefile.in (linux-thread.o): Delete target.
10049 * linux-thread.c: Delete file.
10050
d155c46b
AC
10051 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
10052 renamed SH files to be consistent.
10053
8ed32cc0
AC
10054 * symtab.c (sort_search_symbols): Use xfree.
10055
0e18d038
RE
100562002-02-23 Richard Earnshaw <rearnsha@arm.com>
10057
10058 * arm-linux-tdep.c (arm_linux_init_abi): Register
10059 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
10060 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
10061 definition with undef, since we don't want the sysvr4 definition.
10062 (SKIP_TRAMPOLINE_CODE): Likewise.
10063
27aac7ff
AC
100642002-02-23 Andrew Cagney <ac131313@redhat.com>
10065
10066 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
10067
10068 * configure.in: (AC_CHECK_FUNCS) Added test for
10069 canonicalize_file_name Regenerated.
10070 * config.in, configure: Regenerated.
10071 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
10072 defined use canonicalize_file_name.
7e336ba1 10073
65a6e0ee
MC
100742002-02-23 Michael Chastain <mec@shout.net>
10075
10076 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
10077
47b95330
AC
100782002-02-23 Andrew Cagney <ac131313@redhat.com>
10079
10080 * README: Remove references to cygnus.com.
10081 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
10082 dot com'' form. Remove references to cygnus.com and sourceware.
10083
696f451b
AC
100842002-02-23 Andrew Cagney <ac131313@redhat.com>
10085
10086 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
10087 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
10088 1003.1-2001 no longer allows "head -1".
10089 * gdb/Makefile.in (version.c): Likewise.
10090 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
10091 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
10092 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
10093
bbaca940
AC
100942002-02-23 Andrew Cagney <ac131313@redhat.com>
10095
10096 * cli/cli-decode.c (cmd_cfunc_eq): New function.
10097 * command.h (cmd_cfunc_eq): Declare.
10098 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
10099
10100 * cli/cli-cmds.h (is_complete_command): Change parameter to a
10101 ``struct cmd_list_element *''.
10102 * cli/cli-cmds.c (is_complete_command): Update. Use
10103 cmd_cfunc_eq.
10104 * top.c (execute_command): Pass the command to
10105 is_complete_command.
10106 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
10107
b8b8b047
AC
101082002-02-23 Andrew Cagney <ac131313@redhat.com>
10109
10110 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
10111 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
10112 architecture defines.
10113 * s390-tdep.c (s390_gdbarch_init): Likewise.
10114
19d3fc80
RE
101152002-02-23 Richard Earnshaw <rearnsha@arm.com>
10116
10117 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
10118 (arm_linux_push_arguments): Likewise.
10119 (arm_linux_init_abi): Register them. Also register linux-specific
10120 call_dummy_words.
10121 (find_minsym_and_objfile): Use strcmp, not STREQ.
10122 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
10123 (arm_linux_call_dummy_words): Delete declaration.
10124 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
10125 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
10126 declarations.
10127 (LOWEST_PC): Delete.
10128
3ab13650
PS
101292002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10130
10131 * maint.c (print_section_info): Do not prepend `0x' to filepos
10132 output, it will be handled by local_hex_string_custom.
10133
19d3fc80 101342002-02-23 Richard Earnshaw <rearnsha@arm.com>
85ae890c
RE
10135
10136 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
10137 (store_newfpe_double, store_newfpe_extended, store_fpregister)
10138 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
10139
d85a5daf
JB
101402002-02-22 Jim Blandy <jimb@redhat.com>
10141
10142 Indicate that the bcache functions don't change the strings
10143 they're passed.
10144 * bcache.h (bcache, hash): Add `const' keywords to declarations.
10145 * bcache.c (bcache, hash): Add `const' keywords to definitions.
10146
eeb25b8a
PM
101472002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
10148
10149 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
10150
6badb179
CF
101512002-02-21 Christopher Faylor <cgf@redhat.com>
10152
10153 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
10154 find the complete path to a loaded DLL.
10155
e8717518
FF
101562002-02-21 Fred Fish <fnf@redhat.com>
10157
10158 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
10159 that marks the end of the range of a function, enter a line number
10160 entry that has a line number of zero and a PC offset that matches
10161 the end of the function. This starts a range of PC's for which no
10162 line number information is known.
10163 * symtab.c (find_pc_sect_line): If our best fit is in a range of
10164 PC's for which no line number info is found (line number is zero)
10165 then we didn't find any valid line information.
10166 * symtab.h: Document use of zero line number entry.
10167
9abe5450
EZ
101682002-02-21 Elena Zannoni <ezannoni@redhat.com>
10169
10170 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
10171 (have_ptrace_getvrregs): Define for run time checks.
10172 (gdb_vrregset_t): New type for Altivec register handling.
10173 (fetch_register, store_register): Fetch/store altivec register
10174 when needed.
10175 (fetch_altivec_register, store_altivec_register): New functions.
10176 (supply_vrregset, fill_vrregset): New functions.
10177 (fetch_altivec_registers, store_altivec_registers): New functions.
10178 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
10179 registers as well.
10180
aaa38bb5
AJ
101812002-02-21 Jiri Smid <smid@suse.cz>
10182
10183 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
10184
b34db576
RE
101852002-02-21 Richard Earnshaw <rearnsha@arm.com>
10186
10187 * Makefile.in (armnbsd-nat.o): Update dependencies.
10188 * armnbsd-nat.c (supply_gregset): New function. Common code to
10189 supply the integer register set.
10190 (supply_fparegset): New function. Similar for FPA registers.
10191 (fetch_regs, fetch_fp_regs): Use them.
10192 (fetch_core_registers): Likewise.
10193 (fetch_elfcore_registers): New function.
10194 (arm_netbsd_elfcore_fns): New core-file type specification.
10195 (_initialize_arm_netbsd_nat): Register it.
10196
3e56fc4b
RE
101972002-02-21 Richard Earnshaw <rearnsha@arm.com>
10198
10199 * armnbsd-nat.c: Include gdbcore.h.
10200 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
10201 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
10202 'void' to declaration, to shut up ARI.
10203 (fetch_core_registers): Make static. Rewrite using supply_register.
10204 (arm_netbsd_core_fns): New core-file type specification.
10205 (_initialize_arm_netbsd_nat): New function.
10206
097f6b0b
CF
102072002-02-21 Christopher Faylor <cgf@redhat.com>
10208
10209 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
10210 value.
10211
c914e0cc
CF
102122002-02-20 Christopher Faylor <cgf@redhat.com>
10213
10214 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
10215 fails.
10216
385fa495
DJ
102172002-02-20 Daniel Jacobowitz <drow@mvista.com>
10218
10219 * jv-exp.y (parse_number): Change type of implicit longs
10220 to builtin_type_uint64.
10221
e5f1222d
DJ
102222002-02-20 Daniel Jacobowitz <drow@mvista.com>
10223
10224 * gdbserver/linux-low.c (mywait): Change argument to waitpid
10225 to be an integer instead of a `union wait'.
10226
75c9abc6
DJ
102272002-02-20 Daniel Jacobowitz <drow@mvista.com>
10228
10229 * mips-linux-nat.c: Call the operating system GNU/Linux.
10230 * mips-linux-tdep.c: Likewise.
10231 * mips-tdep.c: Likewise.
10232
551792a5
DJ
102332002-02-20 Daniel Jacobowitz <drow@mvista.com>
10234
10235 Fix PR gdb/265.
10236 * jv-exp.y (parse_number): Handle 64-bit integers.
10237
ee6e2b82
DJ
102382002-02-20 Daniel Jacobowitz <drow@mvista.com>
10239
10240 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
10241 AC_STDC_HEADERS to AC_HEADER_STDC.
10242 * gdbserver/configure: Regenerated.
10243
a48442a0
RE
102442002-02-20 Richard Earnshaw <rearnsha@arm.com>
10245
10246 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
10247 is defined.
10248 * sparc-tdep.c (get_longjmp_target): Likewise.
10249
fe419ffc
RE
102502002-02-20 Richard Earnshaw <rearnsha@arm.com>
10251
10252 * News: Add news about ARM and Multi-arch. Mention the new target
10253 arm*-*-netbsd*.
10254
5832ed7e
JB
102552002-02-19 Jim Blandy <jimb@redhat.com>
10256
10257 * stabsread.c (error_type_complaint): Improve error message.
10258
84563040
DJ
102592002-02-19 Daniel Jacobowitz <drow@mvista.com>
10260
10261 * gdbserver/README: Update documentation.
10262 * gdbserver/configure.in: Update configury to match documentation.
10263 * gdbserver/Makefile.in: Likewise.
10264 * gdbserver/configure: Regenerated.
10265 * gdbserver/aclocal.m4: New file, generated by aclocal.
10266 * gdbserver/config.in: New file, generated by autoheader.
10267
375fd65b
RE
102682002-02-19 Richard Earnshaw <rearnsha@arm.com>
10269
10270 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
10271 armnbsd-nat.c.
10272
08216dd7
RE
102732002-02-19 Richard Earnshaw <rearnsha@arm.com>
10274
10275 * arm-tdep.h (enum arm_float_model): New enum.
10276 (struct gdbarch_tdep): Add fp_model.
10277 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
10278 up floating-point conversions until we know the floating-point model
10279 in use by the inferior. Don't complain about being unable to
10280 determine the ABI of the inferior when we don't have one.
10281 (arm_extract_return_value): Support different floating-point models.
10282 (arm_store_return_value): Likewise.
aaa38bb5 10283 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
08216dd7
RE
10284 ARM_FLOAT_SOFT.
10285 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
10286
65d6d66a
PS
102872002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10288
10289 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
10290 of ``current_gdbarch''.
10291
47221191
RE
102922002-02-19 Richard Earnshaw <rearnsha@arm.com>
10293
10294 * armnbsd-nat.c : ANSIfy all function declarations.
10295 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
10296 (fetch_inferior_registers): Re-implement in terms of above.
10297 (store_register, store_regs, store_fp_register, store_fp_regs): New.
10298 (store_inferior_registers): Re-implement in terms of above.
10299
fdf39c9a
RE
103002002-02-19 Richard Earnshaw <rearnsha@arm.com>
10301
aaa38bb5 10302 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
fdf39c9a
RE
10303 kernel.
10304 * arm-linux-tdep.c: Likewise.
10305 * config/arm/tm-linux.h: Likewise.
10306
93247f88
RE
103072002-02-19 Richard Earnshaw <rearnsha@arm.com>
10308
10309 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
10310 * config/arm/nbsd.mt (TM_FILE): Delete.
10311 * config/arm/tm-nbsd.h: Delete.
10312
d7b486e7
RE
103132002-02-19 Richard Earnshaw <rearnsha@arm.com>
10314
10315 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
10316 Initialize CALL_DUMMY_LENGTH.
10317
41d39a95
RE
103182002-02-19 Richard Earnshaw <rearnsha@arm.com>
10319
10320 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
10321 function.
10322 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
aaa38bb5 10323 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
41d39a95
RE
10324 defines one thing and that is incorrect for this port.
10325 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
10326
e1195560
PM
103272002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
10328
10329 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
10330
c1748f97
PM
103312002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
10332
10333 * win32-nat.c (display_selector): New function. Displays information
10334 about the information returned by GetThreadSelectorEntry API function.
10335 (display_selectors): New function. Displays the infomation of
10336 the selector given as argument, or of CS, DS ans FS selectors
10337 if no argument is given.
10338 ( _initialize_inftarg): Add "w32" as info prefix command.
10339 Add "info w32 selector" as command calling display_selectors.
10340
e41e6bbf
PM
103412002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
10342
10343 * i386-tdep.c (get_longjmp_target): Fix compilation failure
10344 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
10345 if not defined.
10346
0d3a9f48
RE
103472002-02-18 Richard Earnshaw <rearnsha@arm.com>
10348
10349 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
10350
3fb4b924
RE
103512002-02-18 Richard Earnshaw <rearnsha@arm.com>
10352
10353 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
10354 (arm_fix_call_dummy): Call it.
10355 (arm_call_dummy_breakpoint_offset): Delete.
10356 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
10357 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
10358
7f55af32
AC
103592002-02-18 Andrew Cagney <ac131313@redhat.com>
10360
10361 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
10362 Default to func_frame_chain_valid.
10363 * gdbarch.h, gdbarch.c: Re-generate.
10364 * frame.h (FRAME_CHAIN_VALID): Delete definition.
10365
05f13b9c
EZ
103662002-02-18 Elena Zannoni <ezannoni@redhat.com>
10367
10368 * ppc-linux-nat.c: Update copyright.
10369 (fetch_register, store_register): Add tid parameter, don't compute
10370 tid here.
10371 (fetch_ppc_registers, store_ppc_registers): Add tid
10372 parameter. Pass it along to callees.
10373 (fetch_inferior_registers, store_inferior_registers): Compute tid
10374 here, and pass it to calleed functions.
10375 (fill_gregset, supply_fpregset): Clean up formatting.
10376
d7afb4c9
RE
103772002-02-18 Richard Earnshaw <rearnsha@arm.com>
10378
10379 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
10380 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
10381
9df628e0
RE
103822002-02-18 Richard Earnshaw <rearnsha@arm.com>
10383
10384 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
10385 * gdbarch.c gdbarch.h: Regenerate.
10386 * breakpoint.c (create_longjmp_breakpoint): Always compile this
10387 function.
10388 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
10389 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
10390 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
10391
10392 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
10393 * arm-tdep.c (arm_get_longjmp_target): New function.
10394 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
10395 this to a positive value register arm_get_longjmp_target as the
10396 longjmp handler.
10397 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
10398 (arm_linux_init_abi): Set up longjmp description in tdep.
10399 * armnbsd-nat.c (get_longjmp_target): Delete.
10400 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
10401 description in tdep.
10402 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
10403 (get_longjmp_target): Delete declaration.
10404 (GET_LONGJMP_TARGET): Delete.
10405 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
10406 (GET_LONGJMP_TARGET): Delete.
10407
57bc8964
KB
104082002-02-17 Kevin Buettner <kevinb@redhat.com>
10409
10410 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
10411 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
10412 of ``current_gdbarch''.
10413
83d31a92
TT
104142002-02-17 Tom Tromey <tromey@redhat.com>
10415
10416 * cli/cli-cmds.c (compare_strings): New function.
10417 (complete_command): Only print each unique item once.
10418 * completer.h (complete_line): Declare.
10419 * completer.c (complete_line): New function.
10420 (line_completion_function): Use it.
10421
17ef5d92
AC
104222002-02-16 Andrew Cagney <ac131313@redhat.com>
10423
10424 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
10425 * gdbarch.h, gdbarch.c: Re-generate.
10426
491b8946
DJ
104272002-02-16 Daniel Jacobowitz <drow@mvista.com>
10428
10429 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
10430
104312002-02-16 Daniel Jacobowitz <drow@mvista.com>
10432
10433 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
10434 * valops.c (value_arg_coerce): Don't take the address of a reference
10435 to convert an argument to a reference.
10436
dfe7f3ac
CF
104372002-02-15 Christopher Faylor <cgf@redhat.com>
10438
10439 * win32-nat.c (get_image_name): New function.
10440 (handle_load_dll): Use get_image_name function.
10441 (get_child_debug_event): Avoid registering debug events until possibly
10442 execed process is started.
10443 (child_create_inferior): Allow invocation via shell so that command
10444 line redirection, etc. works ok.
10445 (_initialize_inftarg): Add new command: "set shell" to control whether
10446 a shell is used to start a process.
10447
1d33e73a
DJ
104482002-02-15 Daniel Jacobowitz <drow@mvista.com>
10449
10450 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
10451 instead of find_register_by_number.
10452 (cannot_store_register): Likewise.
10453
48cd0caa
PM
104542002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
10455
aaa38bb5 10456 * dwarf2read.c: Replace fprintf (stderr, ...) by
48cd0caa
PM
10457 fprintf_unfiltered (gdb_stderr, ...).
10458
8656e7d8
DJ
104592002-02-15 Daniel Jacobowitz <drow@mvista.com>
10460
10461 * gdbserver/gdbserver.1: Document --attach.
10462
66e810cd
RE
104632002-02-15 Richard Earnshaw <rearnsha@arm.com>
10464
10465 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
10466 descriptions.
10467 * arm-tdep.c (arm_default_arm_le_breakpoint)
10468 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
10469 (arm_default_thumb_be_breakpoint): New. Initialize them from
10470 traditional breakpoint defines.
10471 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
10472 (arm_gdbarch_init): Initialize new breakpoint variables.
10473 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
10474 (arm_linux_init_abi): Initialize linux-specific breakpoint.
10475 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
10476 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
10477 code out to ...
10478 (arm_netbsd_init_abi_common): ... here; new function.
10479 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
10480 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
10481 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
10482 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
10483
97e03143
RE
104842002-02-15 Richard Earnshaw <rearnsha@arm.com>
10485
10486 * arm-tdep.h (enum arm_abi): New enum.
10487 (struct gdbarch_tdep): New structure.
10488 (LOWEST_PC): Provide a default.
10489 (arm_gdbarch_register_os_abi): Declare new function.
10490 * arm-tdep.c (arm_abi_names): New array.
10491 (process_note_abi_tag_sections): New function.
10492 (get_elfosabi): New function.
10493 (arm_gdbarch_register_os_abi): New function.
10494 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
10495 support for that ABI has been built in, then call the appropriate
10496 configuration routine. Use gdbarch_num_regs() to get the number
10497 of registers.
10498 (arm_dump_tdep): New function.
10499 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
10500 place-holder functions.
10501 (_initialize_arm_tdep): Register them.
10502 * config/arm/tm-arm.h (LOWEST_PC): Delete.
10503
10504 * armnbsd-tdep.c: New file.
10505 * Makefile.in (armnbsd-tdep.o): Add dependencies.
10506 * config/arm/nbsd.mt (TDEPFILES): Add it.
10507 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
10508
10509 * armnbsd-nat.c: Include regcache.h.
10510 * Makefile.in (armnbsd-nat.o): Update dependency list.
10511
10512 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
10513
ad68be46
DJ
105142002-02-14 Daniel Jacobowitz <drow@mvista.com>
10515
10516 * gdbserver/Makefile.in: Fix typos in target rules.
10517
003d6d1d
DJ
105182002-02-14 Daniel Jacobowitz <drow@mvista.com>
10519
aaa38bb5 10520 Fix part of PR gdb/267.
003d6d1d
DJ
10521 * linespec.c (find_methods): Handle constructors specially for now.
10522
6b230f1b
CV
105232002-02-14 Corinna Vinschen <vinschen@redhat.com>
10524
10525 * arm-tdep.c (arm_push_arguments): Eliminate special float type
10526 handling.
10527 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
10528 standard_coerce_float_to_double().
10529
1ea98d12
CF
105302002-02-14 Christopher Faylor <cgf@redhat.com>
10531
10532 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
10533 GDBINIT_FILENAME.
10534
dd47e6fd
EZ
105352002-02-14 Elena Zannoni <ezannoni@redhat.com>
10536
10537 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
10538 find_variant_by_name, because it confuses the multiarch
10539 framework. Return NULL if there isn't an architecture with the
10540 user supplied name, instead of forcing a different one without
10541 recording the change with the multiarch machinery.
10542 (find_variant_by_name): Delete.
10543
d7e39b9e
PS
105442002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10545
10546 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
10547 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
10548
76e42a4f
MH
105492002-02-13 Martin M. Hunt <hunt@redhat.com>
10550
aaa38bb5 10551 * stack.c (print_frame_info_base): When calling
76e42a4f
MH
10552 print_frame_info_listing_hook, set current_source_symtab.
10553
0a30fbc4
DJ
105542002-02-14 Daniel Jacobowitz <drow@mvista.com>
10555
10556 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
10557 and remove unused $(INCLUDE_DIR).
10558 Add regcache.c to OBS.
10559 Add generated register protocol files to clean target.
10560 Update dependencies for new objects, obsolete old target code.
10561
10562 * gdbserver/linux-low.c: Remove all platform-specific code to
10563 new files. Remove various dead code. Update to use regcache
10564 functionality.
10565 * gdbserver/remote-utils.c (fromhex): Add return statement
10566 to quiet warning.
10567 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
10568 constant.
10569 (input_interrupt): Add integer parameter to match prototype
10570 of a signal handler.
10571 (outreg): Use register_data ().
10572 (prepare_resume_reply): Use gdbserver_expedite_regs.
10573 * gdbserver/server.c (main): Dynamically allocate own_buf because
10574 PBUFSIZ is no longer constant. Use registers_to_string () and
10575 registers_from_string ().
10576 * gdbserver/server.h: No longer include "defs.h". Add prototypes
10577 for error (), fatal (), and warning (). Update definition of
10578 PBUFSIZ to use regcache functionality. Add include guard.
10579 * gdbserver/utils.c (fatal): Add missing ``const''.
10580 (warning): New function.
10581
10582 * regformats/regdat.sh: Include "regcache.h" in generated files.
10583 Provide init_registers () function.
10584 * regformats/regdef.h: Add prototype for set_register_cache ().
10585 Add include guard.
10586
10587 * gdbserver/linux-arm-low.c: New file.
10588 * gdbserver/linux-i386-low.c: New file.
10589 * gdbserver/linux-ia64-low.c: New file.
10590 * gdbserver/linux-m68k-low.c: New file.
10591 * gdbserver/linux-mips-low.c: New file.
10592 * gdbserver/linux-ppc-low.c: New file.
10593 * gdbserver/linux-sh-low.c: New file.
10594
10595 * gdbserver/regcache.c: New file.
10596 * gdbserver/regcache.h: New file.
10597
10598 * gdbserver/low-linux.c: Removed obsolete file.
10599
4cc841d0
DJ
106002002-02-14 Daniel Jacobowitz <drow@mvista.com>
10601
10602 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
10603 * config/i386/linux.mt: Likewise.
10604 * config/ia64/linux.mt: Likewise.
10605 * config/m68k/linux.mh: Likewise.
10606 * config/powerpc/linux.mh: Likewise.
10607 * config/mips/linux.mt: Likewise.
10608
10609 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
10610
10611 * config/i386/i386lynx.mh: Mark gdbserver variables
10612 as (currently) obsolete for this target.
10613 * config/i386/nbsd.mt: Likewise.
10614 * config/i386/nbsdelf.mt: Likewise.
10615 * config/m32r/m32r.mt: Likewise.
10616 * config/m68k/m68klynx.mh: Likewise.
10617 * config/m68k/nbsd.mt: Likewise.
10618 * config/m68k/sun3os4.mh: Likewise.
10619 * config/mips/vr5000.mt: Likewise.
10620 * config/ns32k/nbsd.mt: Likewise.
10621 * config/pa/hppabsd.mh: Likewise.
10622 * config/pa/hppaosf.mh: Likewise.
10623 * config/powerpc/nbsd.mt: Likewise.
10624 * config/rs6000/rs6000lynx.mh: Likewise.
10625 * config/s390/s390.mt: Likewise.
10626 * config/s390/s390x.mt: Likewise.
10627 * config/sparc/sparclynx.mh: Likewise.
10628 * config/sparc/sun4os4.mh: Likewise.
10629 * config/i386/x86-64linux.mt: Likewise.
10630 * config/sparc/linux.mh: Likewise.
10631
a85f51e7
DJ
106322002-02-14 Daniel Jacobowitz <drow@mvista.com>
10633
10634 * configure.tgt: Configure gdbserver only for known working
10635 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
10636 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
10637 SUBDIRS if it is configured. Update comment for ${nativefile}.
10638 * configure: Regenerated.
10639
65554fef
MS
106402002-02-13 Michael Snyder <msnyder@redhat.com>
10641
670a52db
MS
10642 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
10643
6dbdc4a3
MS
10644 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
10645 (default_gcore_mach): Just return 0, work around a problem in bfd.
10646 (default_gcore_target): OK to return NULL if exec_bfd is null.
10647 (make_mem_sec): Use a cast, avoid a warning.
10648
10649 * procfs.c (find_memory_regions_callback): Use a cast instead of
aaa38bb5 10650 calling host_pointer_to_address (which complains if
6dbdc4a3
MS
10651 sizeof (host pointer) != sizeof (target pointer)).
10652 (procfs_make_note_section): Avoid overflow in psargs string.
10653
aaa38bb5 10654 * procfs.c (procfs_make_note_section): Make the default
65554fef
MS
10655 implementation return an error.
10656
106572002-02-13 Rodney Brown <rbrown64@csc.com.au>
10658
10659 * procfs.c (procfs_make_note_section): Provide a default definition
10660 (for alpha-dec-osf4.0f). Fix typos.
10661
1e4d76e7
EZ
106622002-02-13 Elena Zannoni <ezannoni@redhat.com>
10663
10664 * linux-proc.c: Add include of regcache.h.
10665 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
10666
b6d1a1d5
AC
106672002-02-13 Andrew Cagney <ac131313@redhat.com>
10668
10669 From 2002-01-18 Greg McGary <greg@mcgary.org>:
aaa38bb5
AJ
10670 * memattr.c (create_mem_region): Disallow useless empty region.
10671 Regions are half-open intervals, so allow [A..B) [B..C) as
65554fef 10672 non-overlapping.
b6d1a1d5 10673
6c6ea35e
MC
106742002-02-13 Michael Chastain <mec@shout.net>
10675
10676 * defs.h: Kill CONST_PTR.
10677 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
10678 * c-lang.c (c_builtin_types): Likewise.
10679 * ch-lang.c (ch_builtin_types): Likewise.
10680 * f-lang.c (f_builtin_types): Likewise.
10681 * language.c (unknown_builtin_types): Likewise.
10682 * m2-lang.c (m2_builtin_types): Likewise.
10683 * p-lang.c (pascal_builtin_types): Likewise.
10684 * scm-lang.c (c_builtin_types): Likewise.
10685
3e0b0f48
KS
106862002-02-13 Keith Seitz <keiths@redhat.com>
10687
10688 * arm-tdep.h (arm_get_next_pc): Add declaration.
10689
67255d04
RE
106902002-02-13 Richard Earnshaw <rearnsha@arm.com>
10691
10692 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
10693 with other related struct-returning functions.
10694 (arm_extract_struct_value_address): New function.
10695 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
10696 initialize float_format, double_format and long_double_format as
10697 appropriate to the endianness of the target.
10698 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
10699 (arm_use_struct_convention): Delete declaration.
10700 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
10701
079777f6
KS
107022002-02-13 Keith Seitz <keiths@redhat.com>
10703
10704 * defs.h (core_addr_to_string_nz): New function.
10705
34588f23
MK
107062002-02-13 Mark Kettenis <kettenis@gnu.org>
10707
10708 Apply missing bits of 2002-01-15 patch.
10709 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
10710 (fill_fpregset): Use i387_fill_fsave.
10711
49b563f9
KS
107122002-02-12 Keith Seitz <keiths@redhat.com>
10713
49b563f9
KS
10714 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
10715 (core_addr_to_string_nz): New function.
10716
aeb98c60
RE
107172002-02-11 Richard Earnshaw <rearnsha@arm.com>
10718
10719 * arm-linux-nat.c: Really include arm-tdep.h.
10720 * config/arm/tm-linux.h (struct type, struct value): Declare.
10721
65554fef
MS
107222002-02-11 Michael Snyder <msnyder@redhat.com>
10723
10724 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
10725 (gcore section): Ifdef for Solaris and Unixware only.
10726 (procfs_do_thread_registers): Unixware needs one lwpstatus
10727 per thread (not one prstatus or pstatus).
10728 (procfs_make_note_section): Iterate only over kernel threads (lwps),
10729 not over all gdb threads. For unixware, call elfcore_write_pstatus
10730 once before iterating over threads.
10731
34e8f22d
RE
107322002-02-11 Richard Earnshaw <rearnsha@arm.com>
10733
10734 * arm-tdep.h: New file.
10735 * arm-tdep.c: Include arm-tdep.h.
10736 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
10737 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
10738 (arm_print_float_info, arm_register_type, convert_to_extended)
10739 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
10740 (arm_extract_return_value, arm_register_name): Make static.
10741 (arm_software_single_step): Similarly. Fix types in declaration.
10742 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
10743 (arm_store_return_value, arm_store_struct_return): New functions.
10744 (arm_gdbarch_init): Register the above functions. Also register
10745 call_dummy_start_offset, sizeof_call_dummy_words,
10746 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
10747 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
aaa38bb5 10748 max_register_virtual_size, register_size. Set up
34e8f22d
RE
10749 prologue_cache.saved_regs here, rather than ...
10750 (_initialize_arm_tdep): ... here.
10751 * config/arm/tm-arm.h (struct type, struct value): Delete forward
10752 declarations.
10753 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
10754 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
10755 (arm_print_float_info, arm_register_type, convert_to_extended)
10756 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
10757 (arm_extract_return_value, arm_register_name): Delete declarations.
10758 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
10759 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
10760 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
10761 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
10762 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
10763 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
10764 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
10765 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
10766 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
10767 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
10768 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
10769 (arm_get_next_pc): No-longer static -- these are needed by the RDI
10770 interface.
10771 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
10772 * remote-rdi.c remote-rdp.c: Likewise.
10773 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
10774 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
10775 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
10776 definition.
10777
10778 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
10779 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
10780 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
10781 from non-ARM_ prefixed definitions.
10782 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
10783 all uses of above.
10784 * remote-rdi.c remote-rdp.c: Likewise.
10785 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
10786
148754e5
RE
107872002-02-11 Richard Earnshaw <rearnsha@arm.com>
10788
10789 * arm-tdep.c (arm_frameless_function_invocation)
10790 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
10791 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
10792 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
10793 (arm_pop_frame, arm_get_next_pc): Make static.
10794 (arm_gdbarch_init): Register above in gdbarch structure.
10795 (arm_read_fp): Renamed from arm_target_read_fp.
10796 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
10797 * config/arm/tm-arm.h (arm_frameless_function_invocation)
10798 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
10799 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
10800 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
10801 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
10802 (arm_pc_is_thumb_dummy): Delete declarations.
fcfb8836
RE
10803 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
10804 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
10805 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
10806 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
148754e5 10807
434d2d4f
DJ
108082002-02-10 Daniel Jacobowitz <drow@mvista.com>
10809
10810 * symtab.c (compare_search_syms): New function.
10811 (sort_search_symbols): New function.
10812 (search_symbols): Sort symbols after searching rather than
10813 before.
10814
55241689
AC
108152002-02-10 Andrew Cagney <ac131313@redhat.com>
10816
10817 * NEWS: Linux -> GNU/Linux.
10818
028c194b
AC
108192002-02-10 Andrew Cagney <ac131313@redhat.com>
10820
10821 * gdbarch.sh: For for level one methods, disallow a definition
10822 when partially multi-arched. Add comments explaining rationale.
10823 * gdbarch.h: Re-generate.
10824
6acf50cd
AC
108252002-02-10 Andrew Cagney <ac131313@redhat.com>
10826
10827 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
10828 multi-arch partial.
aaa38bb5 10829
50248794
AC
108302002-02-10 Andrew Cagney <ac131313@redhat.com>
10831
10832 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
10833 field. Use diff -u.
10834 * gdbarch.c: Re-generate.
10835
c30e0066
AC
108362002-02-10 Andrew Cagney <ac131313@redhat.com>
10837
9b56c5f3 10838 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
c30e0066
AC
10839 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
10840 partial.
10841
6e6d6484
AC
108422002-02-10 Andrew Cagney <ac131313@redhat.com>
10843
10844 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
10845 multi-arch partial.
10846 (PUSH_ARGUMENTS): Switch to using predefault.
10847 * gdbarch.c: Regenerate.
10848
c203844d
AC
108492002-02-10 Andrew Cagney <ac131313@redhat.com>
10850
10851 * valops.c (PUSH_ARGUMENTS): Delete definition.
10852 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
10853 partial. Default to default_push_arguments.
10854 * gdbarch.h, gdbarch.c: Regenerate.
10855
b5a2688f
AC
108562002-02-09 Andrew Cagney <ac131313@redhat.com>
10857
10858 * defs.h (throw_exception): Rename return_to_top_level. Update
10859 comments.
10860 * utils.c (error_stream, internal_verror, quit): Ditto.
10861 * top.c (throw_exception, catcher): Ditto.
10862 * sparclet-rom.c (sparclet_load): Ditto.
10863 * remote.c (interrupt_query, minitelnet): Ditto.
10864 * remote-sds.c (interrupt_query): Ditto.
10865 * remote-mips.c (mips_error, mips_kill): Ditto.
10866 * ocd.c (interrupt_query): Ditto.
10867 * monitor.c (monitor_interrupt_query): Ditto.
10868 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
10869 * target.h: Update comment.
aaa38bb5 10870
b5a2688f 10871 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
aaa38bb5 10872
2fa5c1e0
AC
108732002-02-09 Andrew Cagney <ac131313@redhat.com>
10874
10875 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
10876 default_double_format.
10877 * gdbarch.h, gdbarch.c: Re-generate.
10878 * findvar.c (floatformat_unknown): Delete variable definition.
10879 * doublest.h (floatformat_unknown): Delete variable declaration.
10880
da966255
JB
108812002-02-09 Jim Blandy <jimb@redhat.com>
10882
10883 * stabsread.c (read_type): Add code to parse Sun's syntax for
10884 prototyped function types.
10885
123a4891
AC
108862002-02-09 Andrew Cagney <ac131313@redhat.com>
10887
10888 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
10889 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
10890
fb39c8f3
PS
108912002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10892
10893 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
10894 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
10895 now _initialize_xcoffsolib gets called again and overrides the
10896 commands from solib.c in a native configuration.
10897
0b87a11d
MK
108982002-02-09 Mark Kettenis <kettenis@gnu.org>
10899
10900 * doublest.c (store_typed_floating): Don't try to return a value.
10901 Fixes PR gdb/290.
10902
bdc2fc72
JB
109032002-02-08 Jim Blandy <jimb@redhat.com>
10904
10905 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
10906 is prototyped and has no arguments, print its argument list as
10907 `(void)'.
10908
da69bbcf
CD
109092002-02-08 Chris Demetriou <cgd@broadcom.com>
10910
10911 * MAINTAINERS (write-after-approval): Add myself.
10912 (paper-trail): I've escaped!
aaa38bb5 10913
b69571f5
CF
109142002-02-08 Christopher Faylor <cgf@redhat.com>
10915
10916 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
10917 changes.
10918 (_initialize_check_for_gdb_ini): Ditto.
10919
f6871398
MH
109202002-02-08 Martin M. Hunt <hunt@redhat.com>
10921
10922 * win32-nat.c (cygwin_pid_to_str): Fix typo.
10923 xaprintf -> xasprintf.
10924
4e52d31c
PM
109252002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
10926
10927 * win32-nat.c: Remove use of printf and sprintf functions.
10928
39bbf761
RE
109292002-02-08 Richard Earnshaw <rearnsha@arm.com>
10930
10931 * arm-tdep.c (arm_frame_chain_valid): Make static.
10932 (arm_push_arguments): Likewise.
10933 (arm_gdbarch_init): New function.
10934 (_initialize_arm_tdep): Call it.
10935 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
10936 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
10937 (FRAME_CHAIN_VALID): Delete.
10938 (arm_frame_chain_valid): Delete declaration.
10939 (PUSH_ARGUMENTS): Delete.
10940 (arm_push_arguments): Delete declaration.
10941 (CALL_DUMMY_P): Delete.
10942
9c9532c9
CV
109432002-02-08 Andrew Cagney <ac131313@redhat.com>
10944 Corinna Vinschen <vinschen@redhat.com>
10945
10946 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
10947 on builtin float types.
10948
4e8f7a8b
DJ
109492002-02-08 Daniel Jacobowitz <drow@mvista.com>
10950
10951 * utils.c: Include <curses.h> before "bfd.h".
10952 * tui/tui-hooks.c: Likewise.
10953 * tui/tui.c: Likewise.
10954 * tui/tuiCommand.c: Likewise.
10955 * tui/tuiData.c: Likewise.
10956 * tui/tuiDataWin.c: Likewise.
10957 * tui/tuiDisassem.c: Likewise.
10958 * tui/tuiGeneralWin.c: Likewise.
10959 * tui/tuiIO.c: Likewise.
10960 * tui/tuiLayout.c: Likewise.
10961 * tui/tuiRegs.c: Likewise.
10962 * tui/tuiSource.c: Likewise.
10963 * tui/tuiSourceWin.c: Likewise.
10964 * tui/tuiStack.c: Likewise.
10965 * tui/tuiWin.c: Likewise.
10966
cd4bffcf
EZ
109672002-02-07 Elena Zannoni <ezannoni@redhat.com>
10968
10969 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
10970 to include space for pseudoregs as well. Update loops accordingly.
10971 (sh_fp_frame_init_saved_regs): Ditto.
10972 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
10973
26806ce2
AC
109742002-02-07 Andrew Cagney <ac131313@redhat.com>
10975
10976 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
10977 Add Richard Earnshaw to Arm maintainers.
10978
97fdab62
AC
109792002-02-07 Andrew Cagney <ac131313@redhat.com>
10980
a6b98203
AC
10981 * defs.h (warning_begin): Delete declaration.
10982
97fdab62
AC
10983 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
10984 Delete macro.
10985
78b29b40
MS
109862002-02-07 Michael Snyder <msnyder@redhat.com>
10987
aaa38bb5 10988 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
78b29b40
MS
10989 Logic bug, remove misplaced else.
10990
d8849953
KD
109912002-02-07 Klee Dienes <klee@apple.com>
10992
10993 * fork-inferior.c (fork_inferior): Add '!' to the list of
10994 characters that need to be quoted when building a string for the
10995 shell. Quote '!' specifically with a backslash, since CSH chokes
10996 when trying to evaluate "str!str".
aaa38bb5 10997
095778a0
NC
109982002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
10999
11000 * rdi-share/host.h: Only provide a typedef for bool if it is not
11001 defined.
11002
1900040c
MS
110032002-02-04 Michael Snyder <msnyder@redhat.com>
11004
11005 * breakpoint.h (enum bptype): Add new overlay event bp type.
11006 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
aaa38bb5 11007
1900040c
MS
11008 * breakpoint.c (create_internal_breakpoint): New function.
11009 (internal_breakpoint_number): Moved into create_internal_breakpoint.
11010 (create_longjmp_breakpoint): Use create_internal_breakpoint.
11011 (create_thread_event_breakpoint): Ditto.
11012 (create_solib_event_breakpoint): Ditto.
11013 (create_overlay_event_breakpoint): New function.
11014 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
11015 (update_breakpoints_after_exec): Delete and re-initialize
11016 overlay event breakpoints after an exec. Add FIXME comment
11017 about longjmp breakpoint.
11018 (print_it_typical): Ignore overlay event breakpoints.
11019 (print_one_breakpoint): Ditto.
11020 (mention): Ditto.
11021 (bpstat_what): Do not stop for overlay event breakpoints.
11022 (delete_breakpoint): Don't delete overlay event breakpoints.
11023 (breakpoint_re_set_one): Delete the overlay event breakpoint.
11024 (breakpoint_re_set): Re-create overlay event breakpoint.
11025
11026 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
11027 (overlay_manual_command): Disable overlay breakpoints.
11028 (overlay_off_command): Disable overlay breakpoints.
11029
082fc60d
RE
110302002-02-06 Richard Earnshaw <rearnsha@arm.com>
11031
11032 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
11033 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
11034 to here from config/tm-arm.h.
11035 (coff_sym_is_thumb): Make static.
11036 (arm_elf_make_msymbol_special): New function.
11037 (arm_coff_make_msymbol_special): New function.
11038 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
11039 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
11040 (coff_sym_is_thumb): Delete declaration.
11041 (arm_elf_make_msymbol_special): Declare.
11042 (arm_coff_make_msymbol_special): Declare.
11043 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
11044 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
11045
039c5766
RE
110462002-02-06 Richard Earnshaw <rearnsha@arm.com>
11047
11048 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
11049
110502002-02-06 Richard Earnshaw <rearnsha@arm.com>
11051
11052 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
11053 * gdbarch.c gdbarch.h: Regenerate.
11054 * arch-utils.c (default_print_float_info): New function.
11055 * arch-utils.h (default_print_float_info): Prototype it.
11056 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
11057 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
11058 (PRINT_FLOAT_INFO): Document it.
11059
11060 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
11061 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
11062 (PRINT_FLOAT_INFO): Define.
11063
58fa08f0
PM
110642002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
11065
aaa38bb5 11066 * win32-nat.c (_initialize_check_for_gdb_ini):
58fa08f0
PM
11067 Add typecast to sprintf argument to suppress a warning.
11068
7393af7c
PM
110692002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
11070
58fa08f0 11071 * win32-nat.c (last_sig): Changed type of variable to target_signal,
7393af7c
PM
11072 to allow easier handling of pass state.
11073 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
11074 that gives exception name and address.
11075 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
aaa38bb5 11076 and set last_sig value to ourstatus->value.sig. Some missing
7393af7c 11077 exceptions added.
aaa38bb5
AJ
11078 (child_continue): Correctly report continue_status.
11079 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
7393af7c 11080 TARGET_SIGNAL_0 (new default value).
aaa38bb5 11081 (child_resume): consider sig argument passed to decide if
7393af7c
PM
11082 the exception should be passed to debuggee or not.
11083
6af4589c
MS
110842002-02-05 Michael Snyder <msnyder@redhat.com>
11085
11086 * regcache.c (fetch_register): Call target_fetch_register
11087 only if we don't call FETCH_PSEUDO_REGISTER.
11088 (store_register): Call target_store_register only if we
11089 don't call STORE_PSEUDO_REGISTER.
11090
a2cf933a
EZ
110912002-02-05 Elena Zannoni <ezannoni@redhat.com>
11092
11093 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
11094 ELF_MAKE_MSYMBOL_SPECIAL.
11095 * gdbarch.c, gdbarch.h: Regenerate.
11096 * arch-utils.c (default_make_msymbol_special): New function.
aaa38bb5 11097 * arch-utils.h (default_make_msymbol_special): Export.
a2cf933a
EZ
11098 * elfread.c (elf_symtab_read): Compile use of
11099 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
11100 multiarched.
11101 * coffread.c (coff_symtab_read): Ditto, for
11102 COFF_MAKE_MSYMBOL_SPECIAL.
11103
6bb7be43
JB
111042002-02-05 Jim Blandy <jimb@redhat.com>
11105
11106 * solib-svr4.c (svr4_truncate_ptr): New function.
11107 (svr4_relocate_section_addresses): Do the address arithmetic with
11108 the appropriate truncation for target addresses, even when
11109 CORE_ADDR is larger than a target address.
11110
e18651ec
DJ
111112002-02-05 Daniel Jacobowitz <drow@mvista.com>
11112
11113 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
11114 to (int *).
11115
6b2725be
DJ
111162002-02-05 Daniel Jacobowitz <drow@mvista.com>
11117
11118 * gdbserver/linux-low.c (kill_inferior): Remove commented out
11119 code.
11120
fca9e603
DJ
111212002-02-05 Daniel Jacobowitz <drow@mvista.com>
11122
11123 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
11124
6c537a52
DJ
111252002-02-05 Daniel Jacobowitz <drow@mvista.com>
11126
11127 * gdbserver/linux-low.c: Remove unused include files.
11128
d844cde6
DJ
111292002-02-05 Daniel Jacobowitz <drow@mvista.com>
11130
11131 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
11132 (read_inferior_memory): Use it.
11133 (write_inferior_memory): Likewise.
11134
d07c63e7
DJ
111352002-02-05 Daniel Jacobowitz <drow@mvista.com>
11136
11137 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
11138 grubbing through sys_errlist.
11139
da6d8c04
DJ
111402002-02-05 Daniel Jacobowitz <drow@mvista.com>
11141
11142 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
11143
5b421780
PM
111442002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
11145 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
11146
9f60d481
AC
111472002-02-04 Andrew Cagney <ac131313@redhat.com>
11148
11149 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
11150 (do_sfunc, set_cmd_sfunc): New functions.
11151
11152 * command.h (struct cmd_list_element): Add field func.
11153 * cli/cli-decode.h (struct cmd_list_element): Ditto.
11154 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
11155 * cli/cli-decode.h: Ditto.
11156
11157 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
11158 (help_all, help_cmd_list): Ditto.
11159 (find_cmd, complete_on_cmdlist): Ditto.
11160 * top.c (execute_command): Ditto.
11161
11162 * cli/cli-setshow.c (do_setshow_command): Call func instead of
11163 function.sfunc.
11164
11165 * infcmd.c (notice_args_read): Fix function signature.
11166
11167 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
11168 * cli/cli-decode.c (add_set_cmd): Ditto.
11169 * utils.c (initialize_utils): Ditto.
11170 * maint.c (_initialize_maint_cmds): Ditto.
11171 * infrun.c (_initialize_infrun): Ditto.
11172 * demangle.c (_initialize_demangler): Ditto.
11173 * remote.c (add_packet_config_cmd): Ditto.
11174 * mips-tdep.c (_initialize_mips_tdep): Ditto.
11175 * cris-tdep.c (_initialize_cris_tdep): Ditto.
11176 * proc-api.c (_initialize_proc_api): Ditto.
11177 * kod.c (_initialize_kod): Ditto.
11178 * valprint.c (_initialize_valprint): Ditto.
11179 * top.c (init_main): Ditto.
11180 * infcmd.c (_initialize_infcmd): Ditto.
11181 * corefile.c (_initialize_core): Ditto.
11182 * arm-tdep.c (_initialize_arm_tdep): Ditto.
11183 * arch-utils.c (initialize_current_architecture): Ditto.
11184 (_initialize_gdbarch_utils): Ditto.
11185 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
11186
11187 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
11188 * wince.c (_initialize_inftarg): Ditto.
11189 * symfile.c (_initialize_symfile): Ditto.
11190 * mips-tdep.c (_initialize_mips_tdep): Ditto.
11191 * language.c (_initialize_language): Ditto.
11192 * arc-tdep.c (_initialize_arc_tdep): Ditto.
11193
f9ba0717
MS
111942002-02-04 Michael Snyder <msnyder@redhat.com>
11195
11196 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
11197
0c74b2a7
DJ
111982002-02-04 Daniel Jacobowitz <drow@mvista.com>
11199
11200 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
11201 Add rules for building the register data files.
11202
c638789f
DJ
112032002-02-04 Daniel Jacobowitz <drow@mvista.com>
11204
11205 * regformats/regdat.sh: Add braces to the definition of
11206 expedite_regs_${arch}.
11207
db253027
DJ
112082002-02-04 Daniel Jacobowitz <drow@mvista.com>
11209
11210 * regformats/regdef.h (struct reg): Add comment describing the
11211 requirements for offset and size fields.
11212
206be19c
AS
112132002-02-04 Andreas Schwab <schwab@suse.de>
11214
11215 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
11216 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
11217
181c1381
RE
112182002-02-04 Richard Earnshaw <rearnsha@arm.com>
11219
11220 * gdbarch.sh (copyright): Update years in generated header.
11221 (SMASH_TEXT_ADDRESS): Add rule.
db253027 11222 * gdbarch.h, gdbarch.c: Re-generate.
181c1381
RE
11223 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
11224 * dbxread.c: Likewise.
11225 * dwarfread.c: Likewise.
11226 * elfread.c: Likewise.
11227 * somread.c: Likewise.
11228
11229 * arm-tdep.c (arm_smash_text_address): New function.
11230 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
11231
fa4ba8da
PM
112322002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
11233
11234 Add support for hardware watchpoints on win32 native.
aaa38bb5 11235 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
fa4ba8da 11236 CONTEXT_DEBUG_REGISTERS.
aaa38bb5 11237 (dr variable): New variable. Static array containing a local copy
fa4ba8da
PM
11238 of debug registers.
11239 (debug_registers_changed): New variable. Reflects when debug registers
11240 are changed and need to be written to inferior.
aaa38bb5 11241 (debug_registers_used): New variable. Reflects when any debug register
fa4ba8da
PM
11242 was set, used when new threads are created.
11243 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
11244 i386-nat code.
11245 (thread_rec): Set dr array if id is the thread of current_event .
11246 (child_continue, child_resume): Change the debug registers for all
11247 threads if debug_registers_changed.
11248 (child_add_thread): Change the debug registers if debug_registers_used.
11249 * config/i386/cygwin.mh: Add use of i386-nat.o file.
11250 Link nm.h to new nm-cygwin.h file.
11251 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
11252 of hardware registers.
11253
a73c86fb
AC
112542002-02-03 Andrew Cagney <ac131313@redhat.com>
11255
11256 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
11257 Restore behavour broken by 2002-01-20 Andrew Cagney
11258 <ac131313@redhat.com> IEEE_FLOAT removal.
11259
acf5ed49
DJ
112602002-02-03 Daniel Jacobowitz <drow@mvista.com>
11261
11262 * c-valprint.c (c_val_print): Pass a proper valaddr to
11263 cp_print_class_method.
11264 * valops.c (search_struct_method): If there is only one method
11265 and args is NULL, return that method.
11266
493d28d5
DJ
112672002-02-03 Daniel Jacobowitz <drow@mvista.com>
11268
11269 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
11270 accessing tag_name directly.
11271
7495dfdb
DJ
112722002-02-03 Daniel Jacobowitz <drow@mvista.com>
11273
11274 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
11275 of accessing tag_name directly.
11276
dd6bda65
DJ
112772002-02-03 Daniel Jacobowitz <drow@mvista.com>
11278
11279 PR gdb/280
11280 * gdbtypes.c (replace_type): New function.
11281 * gdbtypes.h (replace_type): Add prototype.
11282 * stabsread.c (read_type): Use replace_type.
11283
88fe217c
RE
112842002-02-03 Richard Earnshaw <rearnsha@arm.com>
11285
11286 * Makefile.in (memattr.o): Add missing dependencies rule.
11287
e5d66720
PS
112882002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11289
11290 * breakpoint.c (break_at_finish_command): Really export.
11291 (break_at_finish_at_depth_command): Ditto.
11292 (tbreak_at_finish_command): Ditto.
11293 * hppa-tdep.c: Include completer.h.
11294 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
11295 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
11296
fffee0be
AC
112972002-02-01 Andrew Cagney <ac131313@redhat.com>
11298
11299 * utils.c (do_write): New function.
11300 (error_stream): Rewrite combining the code from error_begin and
11301 verror.
11302 (verror): Rewrite using error_stream.
11303 (error_begin): Delete function.
11304
255e7dbf
AC
113052002-02-01 Andrew Cagney <ac131313@redhat.com>
11306
11307 * utils.c (error_begin): Make static.
11308 * defs.h (error_begin): Delete declaration.
11309
11310 * linespec.c (cplusplus_error): Replace cplusplus_hint.
11311 (decode_line_1): Use cplusplus_error instead of error_begin,
11312 cplusplus_hint and return_to_top_level.
11313 * coffread.c (coff_symfile_read): Use error instead of error_begin
11314 and return_to_top_level.
11315 * infrun.c (default_skip_permanent_breakpoint): Ditto.
11316
ddfe3c15
AC
113172002-02-01 Andrew Cagney <ac131313@redhat.com>
11318
11319 * language.h (type_error, range_error): Make string parameter
11320 constant.
11321 * language.c (warning_pre_print): Delete extern declaration.
11322 * dwarfread.c (warning_pre_print): Ditto.
11323 * language.c (type_error, range_error): Rewrite to use verror and
11324 vwarning instead of warning_begin.
11325
03ac34d5
MS
113262002-02-01 Michael Snyder <msnyder@redhat.com>
11327
261c4ca2
MS
11328 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
11329 (set_ignore_count): Move misplaced comment back where it belongs.
03ac34d5 11330
e00d1dc8
AC
113312002-02-01 Andrew Cagney <ac131313@redhat.com>
11332
11333 * command.h (NO_FUNCTION): Delete macro.
11334 * cli/cli-decode.h (NO_FUNCTION): Ditto.
11335 * top.c (execute_command): Replace NO_FUNCTION with NULL.
11336 * tracepoint.c (_initialize_tracepoint): Ditto.
11337 * cli/cli-decode.c (add_set_cmd): Ditto.
11338 * cli/cli-cmds.c (init_cli_cmds): Ditto.
aaa38bb5 11339
76b79d6e
DJ
113402002-02-01 Daniel Jacobowitz <drow@mvista.com>
11341
11342 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
11343 Update ``this'' pointer when calling virtual functions.
11344
799f9e91
MS
113452002-02-01 Michael Snyder <msnyder@redhat.com>
11346
c7bd442c 11347 * breakpoint.c (create_temp_exception_breakpoint): Delete.
799f9e91
MS
11348 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
11349
3cf384d4
DJ
113502002-02-01 Daniel Jacobowitz <drow@mvista.com>
11351
11352 * regformats/reg-arm.dat: New file.
11353 * regformats/reg-i386.dat: New file.
11354 * regformats/reg-ia64.dat: New file.
11355 * regformats/reg-m68k.dat: New file.
11356 * regformats/reg-mips.dat: New file.
11357 * regformats/reg-ppc.dat: New file.
11358 * regformats/reg-sh.dat: New file.
11359 * regformats/regdef.h: New file.
11360 * regformats/regdat.sh: New file.
11361
0defa245
RE
113622002-02-01 Richard Earnshaw <reanrsha@arm.com>
11363
11364 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
11365 (arm_frame_args_address, arm_frame_locals_address): New functions.
11366 (arm_frame_num_args): New function.
11367 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
11368 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
11369 (FRMA_NUM_ARGS): Call arm_frame_num_args.
11370
405f26e6
MS
113712002-01-31 Michael Snyder <msnyder@redhat.com>
11372
502fd408
MS
11373 * breakpoint.c (break_at_finish_command): Export.
11374 (break_at_finish_at_depth_command): Export.
11375 (tbreak_at_finish_command): Export.
d6020d45 11376 (_initialize_breakpoint): Delete "xbreak" and "txbreak" commands.
502fd408 11377 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
d6020d45 11378 "txbreak" commands, which are HPPA specific.
502fd408 11379
7d35e135
MS
11380 * printcmd.c (disassemble_command): Remove an ancient
11381 artifact of an old merge.
11382
aaa38bb5 11383 * symfile.h (enum overlay_debugging_state):
d874f1e2
MS
11384 Define enum constant values for overlay mode.
11385 * symfile.c (overlay_debugging): Use enums instead of literals.
aaa38bb5
AJ
11386 (overlay_is_mapped, overlay_auto_command,
11387 overlay_manual_command): Ditto.
d874f1e2 11388
aaa38bb5
AJ
11389 * breakpoint.c (insert_breakpoints, remove_breakpoint,
11390 breakpoint_here_p, breakpoint_inserted_here_p,
11391 breakpoint_thread_match, bpstat_stop_status,
9f04af04
MS
11392 describe_other_breakpoints, check_duplicates, clear_command):
11393 Coding standard fixes.
11394
8add0441 11395 * target.c (target_xfer_memory): Add spaces, coding standard.
9f04af04 11396 (do_xfer_memory): Add missing line to trust-readonly
405f26e6
MS
11397 code: check bfd SEC_READONLY flag for section.
11398
e351066e
AC
113992002-01-31 Andrew Cagney <ac131313@redhat.com>
11400
7d35e135 11401 * PROBLEMS: Fix typo, 5.1->5.1.1.
e351066e 11402
8a48e967
DJ
114032002-01-30 Daniel Jacobowitz <drow@mvista.com>
11404
11405 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
11406 data symbols, since we search based on textlow and texthigh.
11407 (find_pc_sect_symtab): Likewise.
11408
f5a96129
AC
114092002-01-30 Andrew Cagney <ac131313@redhat.com>
11410
11411 * defs.h (vwarning): Declare.
f5a96129
AC
11412 * utils.c (vwarning): New function.
11413 (warning): Call vwarning.
11414 (warning_begin): Delete function.
11415
11416 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
11417 the warning message.
11418 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
11419 warning_begin.
11420
cefd4ef5
MS
114212002-01-30 Michael Snyder <msnyder@redhat.com>
11422
1a703748
MS
11423 * NEWS: Mention "set trust-readonly-sections" command.
11424 Mention generate-core-file command.
cefd4ef5 11425
3a11626d
MS
114262002-01-15 Michael Snyder <msnyder@redhat.com>
11427
11428 * target.c: New command, "set trust-readonly-sections on".
11429 (do_xfer_memory): Honor the suggestion to trust readonly sections
11430 by reading them from the object file instead of from the target.
11431 (initialize_targets): Register command "set trust-readonly-sections".
11432
d1c7e53b
AC
114332002-01-29 Andrew Cagney <ac131313@redhat.com>
11434
11435 * parse.c (target_map_name_to_register): Simplify, search regs and
11436 pseudo-regs using a single loop.
11437
e2c9a72c
AC
114382002-01-30 Andrew Cagney <ac131313@redhat.com>
11439
11440 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
11441
69824b4e
MK
114422002-01-15 Rodney Brown <rbrown64@csc.com.au>
11443
11444 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
11445 * config/i386/i386v42mp.mh: Add i387-nat.o .
11446 * i386v4-nat.c: Include i387-nat.h.
11447 (supply_fpregset): Use i387_supply_fsave.
11448 (fill_fpregset): Use i387_fill_fsave.
11449
6eb69eab
RE
114502002-01-30 Richard Earnshaw <rearnsha@arm.com>
11451
11452 * arm-tdep.c (arm_call_dummy_words): Define.
11453 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
11454 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
11455 (CALL_DUMMY_WORDS): Define.
11456 (arm_call_dummy_words): Declare.
11457 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
11458 (arm_linux_call_dummy_words): Declare.
11459
9852326a
AS
114602002-01-30 Andreas Schwab <schwab@suse.de>
11461
11462 * m68klinux-nat.c: Fix last change to use regcache_collect
11463 instead of referencing registers[] directly.
11464
977a3030
AC
114652002-01-29 Andrew Cagney <ac131313@redhat.com>
11466
11467 * parse.c (target_map_name_to_register): Delete code wrapped in
11468 #ifdef REGISTER_NAME_ALIAS_HOOK.
11469
2076c72b
MS
114702002-01-28 Michael Snyder <msnyder@redhat.com>
11471
11472 * regcache.c (legacy_read_register_gen): Need to be able to
11473 read pseudo-register as well as real register.
11474 (legacy_write_register_gen): Ditto.
11475
8fcc723b
AC
114762002-01-28 Andrew Cagney <ac131313@redhat.com>
11477
11478 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
11479 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
11480 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
11481 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
11482 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
11483 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
11484 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
11485 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
11486 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
11487 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
11488 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
11489 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
11490 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
11491 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
11492 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
11493 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
11494 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
11495 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
11496 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
11497 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
11498
afe64c1a
AC
114992002-01-28 Andrew Cagney <ac131313@redhat.com>
11500
11501 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
11502 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
11503 (initialize_current_architecture): Update target_byte_order using
11504 information from BFD.
aaa38bb5 11505 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
afe64c1a
AC
11506 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
11507
75bc7ddf
AC
115082002-01-28 Andrew Cagney <ac131313@redhat.com>
11509
11510 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
11511 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
11512
11513 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
11514 #ifdef INVALID_FLOAT.
11515 * infcmd.c (do_registers_info): Ditto.
11516 * values.c (unpack_double): Ditto. Add comment.
11517
11518 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
11519 already commented out.
11520
0280a90a
AS
115212002-01-26 Andreas Schwab <schwab@suse.de>
11522
11523 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
11524 * m68klinux-nat.c: Update ptrace interface for fetching/storing
11525 registers and add support for PTRACE_GETREGS.
11526
7072a954
AC
115272002-01-24 Andrew Cagney <ac131313@redhat.com>
11528
11529 GDB 5.1.1 released from 5.1 branch.
11530 * NEWS: Add 5.1.1 news.
11531 * README: Sync with 5.1 branch.
11532
86f902e0
FF
115332002-01-23 Fred Fish <fnf@redhat.com>
11534
11535 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
11536 stabstring on initial malloc. Reallocing will copy it for us,
11537 if necessary.
11538
8af51c36
EZ
115392002-01-23 Elena Zannoni <ezannoni@redhat.com>
11540
aaa38bb5 11541 * Makefile.in (hpread_h): Delete.
8af51c36
EZ
11542 (HFILES_NO_SRCDIR): Remove hpread.h.
11543 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
11544 (hpread.o): Update dependencies.
11545 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
11546
11547 * hp-psymtab-read.c: Remove file.
11548 * hp-symtab-read.c: Remove file.
11549 * hpread.h: Remove file.
11550
11551 * hpread.c: Merge all contents of hp-psymtab-read.c,
11552 hp-symtab-read.c and hpread.h into this file, as it was prior to
11553 January 1999.
11554
11555 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
aaa38bb5 11556 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
8af51c36
EZ
11557 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
11558 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
11559
dc5cfeb6
EZ
115602002-01-23 Elena Zannoni <ezannoni@redhat.com>
11561
11562 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
11563 fill_gregset): Call gdbarch_tdep() just once, assign result to
11564 variable and use that, instead of calling the function several
11565 times.
11566
ea87b71b
AO
115672002-01-24 Alexandre Oliva <aoliva@redhat.com>
11568
11569 * configure.host: Accept sparcv9 as alias for sparc64.
11570 * configure.tgt: Likewise.
11571
13fc0c2f
KB
115722002-01-22 Kevin Buettner <kevinb@redhat.com>
11573
11574 * solib-aix5.c (build_so_list_from_mapfile)
11575 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
11576 arguments is not reversed.
11577 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
11578 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
aaa38bb5 11579
7bd872fe
EZ
115802002-01-22 Elena Zannoni <ezannoni@redhat.com>
11581
11582 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
11583 modified version of obsolete sh_fetch_pseudo_register.
11584 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
11585 (sh4_register_read): New function.
11586 (sh_pseudo_register_write): New function. Renamed and modified
11587 version of obsolete sh_store_pseudo_register.
11588 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
11589 (sh4_register_write): New function.
11590 (sh_gdbarch_init): Remove setting of gdbarch function
11591 fetch_pseudo_register and store_pseudo_register. Remove setting of
11592 register_convert_to_raw, register_convert_to_virtual,
11593 register_convertible.
11594 (sh_sh4_register_convertible): Delete. No longer needed. All is
11595 taken care by architecture specific functions
11596 register_read/register_write.
11597 (sh_sh4_register_convert_to_virtual): Make static.
11598 (sh_sh4_register_convert_to_raw): Ditto.
11599
069e84fd
AC
116002002-01-22 Andrew Cagney <ac131313@redhat.com>
11601
11602 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
11603 (floatformat_is_nan, floatformat_mantissa): Ditto.
11604
11605 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
11606 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
11607 builtin_type_ieee_double_little,
11608 builtin_type_ieee_double_littlebyte_bigword,
11609 builtin_type_m68881_ext, builtin_type_i960_ext,
11610 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
11611 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
11612 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
11613 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
11614
211a4f69
CV
116152002-01-22 Corinna Vinschen <vinschen@redhat.com>
11616
11617 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
11618 parameter. Set frameless flag if it exists and depended of
11619 whether the scanned function is frameless or not.
11620 (xstormy16_skip_prologue): If function is frameless, return
11621 result of xstormy16_scan_prologue().
11622 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
11623 call.
11624
f81353e4
EZ
116252002-01-21 Elena Zannoni <ezannoni@redhat.com>
11626
11627 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
11628 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
11629 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
11630 sh_sh4_register_byte, sh_sh4_register_raw_size,
11631 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
11632 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
11633 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
11634 sh_store_pseudo_register, sh_do_pseudo_register): Call
11635 gdbarch_tdep() just once, assign result to variable and use that,
11636 instead of calling the function several times.
11637
63c73a17
MK
116382002-01-20 Mark Kettenis <kettenis@gnu.org>
11639
11640 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
11641 macros instead of LAST_FPU_CTRL_REGNUM.
11642 (store_register): Likewise.
11643
39ad761d
JB
116442002-01-21 Jim Blandy <jimb@redhat.com>
11645
11646 * infcmd.c (run_command): Check that the `exec' target layer's BFD
11647 is up-to-date before running the program, not just when a program
11648 exits.
11649
3d74b771
FF
116502002-01-21 Fred Fish <fnf@redhat.com>
11651
11652 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
11653 when we have found all instructions we are looking for.
11654
966fbf70
RE
116552002-01-21 Richard Earnshaw <rearnsha@arm.com>
11656
11657 * arm-tdep.c (arm_register_name): New function.
11658 (arm_registers_names): Make static.
11659 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
11660 (arm_register_name): Declare.
11661 (REGISTER_NAME): Use it.
11662
c3b4394c
RE
116632002-01-21 Richard Earnshaw <rearnsha@arm.com>
11664 Kevin Buettner <kevinb@redhat.com>
11665
11666 Convert arm targets to new FRAME interface.
11667 * arm-tdep.c (struct frame_extra_info): Remove fsr.
11668 (arm_frame_find_save_regs): Delete.
11669 (arm_frame_init_saved_regs): New.
11670 (arm_init_extra_frame_info): Alloacte saved_regs as required.
11671 Allocate extra_info as required. Convert all uses of fsr.regs
11672 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
11673 to use extra_info.
11674 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
11675 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
11676 (check_prologue_cache, save_prologue_cache): Likewise.
11677 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
11678 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
11679 (FRAME_FIND_SAVED_REGS): Delete.
11680 (arm_frame_find_saved_regs): Delete prototype.
11681 (arm_frame_init_saved_regs): New prototype.
11682 (FRAME_INIT_SAVED_REGS): Define.
11683
61d99182
AC
116842002-01-20 Andrew Cagney <ac131313@redhat.com>
11685
11686 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
11687
6aaea291
AC
116882002-01-20 Andrew Cagney <ac131313@redhat.com>
11689
11690 From Jeff Law <law@redhat.com>:
11691 * infttrace.c: Include <sys/pstat.h>.
11692 (child_pid_to_exec_file): Revamp. Use pstat call to get the
11693 exec file if the ttrace equivalent fails.
11694
15f698d2
AC
116952002-01-20 Andrew Cagney <ac131313@redhat.com>
11696
11697 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
11698 (closeLogFile): Ditto.
11699
f86ddd7c
MC
117002002-01-20 Michael Chastain <mec@shout.net>
11701
11702 * top.c (print_gdb_version): Bump copyright year to 2002.
11703
904507ce
AC
117042002-01-20 Andrew Cagney <ac131313@redhat.com>
11705
11706 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
11707 Zannoni and Eli Zaretskii.
11708
d7f0b9ce
DJ
117092002-01-20 Daniel Jacobowitz <drow@mvista.com>
11710
11711 * buildsym.c: Update copyright years.
11712 * c-typeprint.c: Likewise.
11713 * dwarf2read.c: Likewise.
11714 * f-typeprint.c: Likewise.
11715 * gdbtypes.c: Likewise.
11716 * gdbtypes.h: Likewise.
11717 * hp-symtab-read.c: Likewise.
11718 * hpread.c: Likewise.
11719 * mdebugread.c: Likewise.
11720 * p-typeprint.c: Likewise.
11721
3fd3d7d2
AC
117222002-01-20 Andrew Cagney <ac131313@redhat.com>
11723
11724 * remote-sim.c (gdbsim_open): Simplify code testing the macro
11725 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
11726 byte-order selectable.
11727 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
11728 * arch-utils.c: Ditto.
11729 (set_endian): Ditto.
11730 (set_endian_from_file): Ditto.
11731 * gdbserver/low-sim.c (create_inferior): Ditto.
11732 * gdbarch.sh: Ditto.
11733 * gdbarch.h: Re-generate.
aaa38bb5
AJ
11734 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11735 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
11736 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
11737 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11738 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11739 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11740 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
3fd3d7d2
AC
11741 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
11742 macro definition.
11743 * config/mips/tm-wince.h: Remove #undef of macro
11744 TARGET_BYTE_ORDER_SELECTABLE.
11745 * config/sh/tm-wince.h: Ditto.
11746
b02dede2
DJ
117472002-01-20 Daniel Jacobowitz <drow@mvista.com>
11748
11749 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
11750 member function fields. Add accessor macro
11751 TYPE_FN_FIELD_ARTIFICIAL.
11752 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
11753 * c-typeprint.c (c_type_print_base): Skip artificial member
11754 functions.
11755
c3643761
DJ
117562002-01-20 Daniel Jacobowitz <drow@mvista.com>
11757
11758 * f-typeprint.c: Delete unused function f_type_print_args.
11759 * p-typeprint.c: Delete unused function pascal_type_print_args.
11760
8176bb6d
DJ
117612002-01-20 Daniel Jacobowitz <drow@mvista.com>
11762
11763 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
11764 comment. Add ``artificial'' to ``union field_location''.
11765
11766 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
11767
11768 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
11769 * mdebugread.c (parse_symbol): Likewise.
11770 * stabsread.c (define_symbol): Likewise.
11771 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
11772 initializing TYPE_FIELD_BITPOS to n (obsolete).
11773 (hpread_doc_function_type): Likewise.
11774 * hpread.c (hpread_function_type): Likewise.
11775
7fd60527
AC
117762002-01-20 Andrew Cagney <ac131313@redhat.com>
11777
11778 * configure.in (host_makefile_frag): Only require a host makefile
11779 fragment when a native build.
11780 * configure: Re-generate.
11781
c2f05ac9
AC
117822002-01-20 Andrew Cagney <ac131313@redhat.com>
11783
11784 * doublest.h (floatformat_from_type): Declare.
11785 * doublest.c (floatformat_from_type): New function.
11786 (convert_typed_floating): Use.
11787
11788 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
11789 call to function floatformat_from_type.
11790
11791 * gdbarch.sh (IEEE_FLOAT): Delete.
11792 * gdbarch.h, gdbarch.c: Re-generate.
11793 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
11794 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
11795 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
11796 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
11797 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
11798 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
11799 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
11800 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
11801 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
11802 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
11803 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
c2f05ac9
AC
11804 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
11805
11806 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
11807 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
11808 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
11809 * sh-tdep.c (sh_gdbarch_init): Ditto.
11810 * mips-tdep.c (mips_gdbarch_init): Ditto.
11811 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
11812 * cris-tdep.c (cris_gdbarch_init): Ditto.
11813
abf22e64
AJ
118142002-01-20 Jiri Smid <smid@suse.cz>
11815
11816 * configure.host, configure.tgt: Support x86-64.
11817 * NEWS: Note new target x86-64.
11818
b7c4cbf8
AJ
11819 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
11820 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
11821 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
11822 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
11823 x86-64-linux-nat.o): Fix dependencies.
11824
82600034
AC
118252002-01-19 Andrew Cagney <ac131313@redhat.com>
11826
11827 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
11828 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
11829 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
11830 * config/sparc/xm-sun4os4.h: Delete file.
11831 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
abf22e64 11832
bbe5c628
AC
118332002-01-19 Andrew Cagney <ac131313@redhat.com>
11834
11835 * config/sparc/sparclynx.mh (XM_FILE): Delete.
11836 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
11837 * config/m68k/m68klynx.mh (XM_FILE): Delete.
11838 * config/i386/i386lynx.mh (XM_FILE): Delete.
11839 * config/rs6000/xm-rs6000ly.h: Delete file.
11840 * config/sparc/xm-sparclynx.h: Delete file.
11841 * config/m68k/xm-m68klynx.h: Delete file.
11842 * config/i386/xm-i386lynx.h: Delete file.
11843 * config/xm-lynx.h: Delete file.
11844 * config/djgpp/fnchange.lst: Update.
11845
f8453e34
JT
118462002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
11847
11848 * alpha-tdep.c (alpha_register_byte): New function.
11849 (alpha_register_raw_size): Ditto.
11850 (alpha_register_virtual_size): Ditto.
11851 (alpha_skip_prologue_internal): Renamed from
11852 alpha_skip_prologue.
11853 (alpha_skip_prologue): New version that calls
11854 alpha_skip_prologue_internal.
11855 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
11856 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
11857 second argument from alpha_skip_prologue.
11858 (REGISTER_BYTE): Use alpha_register_byte.
11859 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
11860 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
11861 (FRAMELESS_FUNCTION_INVOCATION): Use
11862 generic_frameless_function_invocation_not.
11863 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
11864 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
11865
52d9e613
AC
118662002-01-19 Andrew Cagney <ac131313@redhat.com>
11867
11868 * config/mips/xm-news-mips.h: Delete file.
11869 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
11870
11871 * config/m88k/xm-m88k.h: Delete file.
11872 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
11873 * config/m88k/xm-delta88v4.h: Ditto.
11874 * config/m88k/xm-delta88.h: Ditto.
11875
11876 * config/alpha/xm-fbsd.h: Delete file.
11877 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
11878
11879 * config/sparc/xm-sparc.h: Delete file.
11880 * Makefile.in (xm-sun4os4.h): Delete dependency.
11881 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
11882 * config/sparc/xm-sun4os4.h: Ditto.
11883 * config/sparc/xm-linux.h: Ditto.
11884
11885 * config/i386/xm-windows.h: Delete file.
11886
2d1b2124
AC
118872002-01-19 Andrew Cagney <ac131313@redhat.com>
11888
11889 * utils.c: Include <sys/param.h> for MAXPATHLEN.
11890 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
11891
ee1f65f0
JT
118922002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
11893
11894 * alpha-tdep.c (alpha_call_dummy_words): New.
11895 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
11896 (CALL_DUMMY_P): Define.
11897 (CALL_DUMMY_WORDS): Define.
11898 (SIZEOF_CALL_DUMMY_WORDS): Define.
11899
98081e55
PB
119002002-01-19 Per Bothner <per@bothner.com>
11901
11902 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
11903 isn't NULL, which can happen with some gcj-3.x-produced code.
11904
0d056799
JT
119052002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
11906
11907 * alpha-tdep.c (alpha_register_virtual_type): New function.
11908 (alpha_init_frame_pc_first): Ditto.
11909 (alpha_fix_call_dummy): Ditto.
11910 (alpha_store_struct_return): Ditto.
11911 (alpha_extract_struct_value_address): Ditto.
11912 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
11913 alpha_register_virtual_type.
11914 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
11915 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
11916 alpha_extract_struct_value_address.
11917 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
11918 (INIT_FRAME_PC): Use init_frame_pc_noop.
11919 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
11920
4604bcad
MK
119212002-01-19 Mark Kettenis <kettenis@gnu.org>
11922
11923 * i386gnu-nat.c: Include "i386-tdep.h".
11924 (fetch_fpregs): Simplify code dealing with uninitialized floating
11925 point states such that it doesn't require FP7_REGNUM.
11926
140f9984
JT
119272002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11928
abf22e64
AJ
11929 * alpha-tdep.c (frame_extra_info): New.
11930 (alpha_find_saved_regs): Make static. Use
140f9984
JT
11931 frame->extra_info.
11932 (alpha_frame_init_saved_regs): New function.
abf22e64
AJ
11933 (alpha_frame_saved_pc): Use frame->extra_info.
11934 (temp_saved_regs): Don't declare as struct frame_saved_regs.
11935 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
140f9984
JT
11936 (init_extra_frame_info): Rename to...
11937 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
abf22e64 11938 (alpha_print_extra_frame_info): New function.
140f9984
JT
11939 (alpha_frame_locals_address): Ditto.
11940 (alpha_frame_args_address): Ditto.
abf22e64 11941 (alpha_pop_frame): Use frame->extra_info.
140f9984
JT
11942 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
11943 alpha_frame_args_address.
abf22e64 11944 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
140f9984 11945 (alpha_find_saved_regs): Remove prototype.
abf22e64
AJ
11946 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
11947 (EXTRA_FRAME_INFO): Remove.
140f9984
JT
11948 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
11949 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
11950
d734c450
JT
119512002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11952
11953 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
11954 (alpha_cannot_fetch_register): Ditto.
11955 (alpha_cannot_store_register): Ditto.
11956 (alpha_register_convertible): Ditto.
11957 (alpha_use_struct_convention): Ditto.
11958 * config/alpha/tm-alpha.h: Update copyright years.
11959 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
11960 (INNER_THAN): Use core_addr_lessthan.
11961 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
11962 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
11963 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
11964 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
11965 (FRAME_CHAIN): Remove unnecessary cast.
11966
b4ceaee6
AC
119672002-01-18 Andrew Cagney <ac131313@redhat.com>
11968
11969 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
11970 obsolete.
11971
0a65a603
AC
119722002-01-18 Andrew Cagney <ac131313@redhat.com>
11973
11974 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
11975 * monitor.c, remote-array.c, remote-bug.c: Ditto.
11976 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
11977 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
11978 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
11979 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
11980 * x86-64-linux-nat.c: Ditto.
11981
636a6dfc
JT
119822002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11983
abf22e64 11984 * alpha-tdep.c (alpha_register_name): New function.
636a6dfc
JT
11985 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
11986 (REGISTER_NAME): Define.
11987
acceddb6
JT
119882002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11989
11990 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
11991
ec32e4be
JT
119922002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11993
11994 * alpha-tdep.c: Update copyright years.
11995 (alpha_next_pc): New function.
11996 (alpha_software_single_step): Ditto.
11997 * config/alpha/tm-alpha.h: Add prototype for
11998 alpha_software_single_step.
11999
e771a871
JT
120002002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12001
12002 * alphabsd-nat.c: Update copyright years.
12003 (fill_gregset): Use regcache_collect.
12004 (fill_fpregset): Likewise.
12005 (fetch_inferior_registers): Only fetch integer registers
12006 if requested to do so.
12007 (store_inferior_registers): Only store integer registers
12008 if requested to do so.
12009
7708fa01
AC
120102002-01-17 Andrew Cagney <ac131313@redhat.com>
12011
12012 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
12013 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
12014 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
12015 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
12016 * config/alpha/fbsd.mh (XDEPFILES): Delete.
12017 * config/arm/linux.mh (XDEPFILES): Delete.
12018 * config/arm/nbsd.mh (XDEPFILES): Delete.
12019 * config/i386/i386dgux.mh (XDEPFILES): Delete.
12020 * config/i386/i386sol2.mh (XDEPFILES): Delete.
12021 * config/i386/i386m3.mh (XDEPFILES): Delete.
12022 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
12023 * config/i386/i386gnu.mh (XDEPFILES): Delete.
12024 * config/i386/fbsd.mh (XDEPFILES): Delete.
12025 * config/i386/i386bsd.mh (XDEPFILES): Delete.
12026 * config/i386/i386sco5.mh (XDEPFILES): Delete.
12027 * config/i386/i386v4.mh (XDEPFILES): Delete.
12028 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
12029 * config/i386/i386sco4.mh (XDEPFILES): Delete.
12030 * config/i386/i386aix.mh (XDEPFILES): Delete.
12031 * config/i386/go32.mh (XDEPFILES): Delete.
12032 * config/i386/cygwin.mh (XDEPFILES): Delete.
12033 * config/i386/i386lynx.mh (XDEPFILES): Delete.
12034 * config/i386/i386mach.mh (XDEPFILES): Delete.
12035 * config/i386/i386v32.mh (XDEPFILES): Delete.
12036 * config/i386/linux.mh (XDEPFILES): Delete.
12037 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
12038 * config/i386/ncr3000.mh (XDEPFILES): Delete.
12039 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
12040 * config/i386/i386sco.mh (XDEPFILES): Delete.
12041 * config/i386/i386v.mh (XDEPFILES): Delete.
12042 * config/i386/nbsd.mh (XDEPFILES): Delete.
12043 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
12044 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
12045 * config/i386/symmetry.mh (XDEPFILES): Delete.
12046 * config/i386/obsd.mh (XDEPFILES): Delete.
12047 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
12048 * config/ia64/linux.mh (XDEPFILES): Delete.
12049 * config/ia64/aix.mh (XDEPFILES): Delete.
12050 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
12051 * config/m68k/dpx2.mh (XDEPFILES): Delete.
12052 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
12053 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
12054 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
12055 * config/m68k/linux.mh (XDEPFILES): Delete.
12056 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
12057 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
12058 * config/m68k/nbsd.mh (XDEPFILES): Delete.
12059 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
12060 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
12061 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
12062 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
12063 * config/m88k/delta88.mh (XDEPFILES): Delete.
12064 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
12065 * config/m88k/m88k.mh (XDEPFILES): Delete.
12066 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
12067 * config/mips/linux.mh (XDEPFILES): Delete.
12068 * config/mips/irix6.mh (XDEPFILES): Delete.
12069 * config/mips/irix5.mh (XDEPFILES): Delete.
12070 * config/mips/irix4.mh (XDEPFILES): Delete.
12071 * config/mips/irix3.mh (XDEPFILES): Delete.
12072 * config/mips/decstation.mh (XDEPFILES): Delete.
12073 * config/mips/mipsm3.mh (XDEPFILES): Delete.
12074 (NATDEPFILES): Move core-aout.o to here.
12075 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
12076 * config/pa/hpux1020.mh (XDEPFILES): Delete.
12077 * config/pa/hppabsd.mh (XDEPFILES): Delete.
12078 * config/pa/hppahpux.mh (XDEPFILES): Delete.
12079 * config/pa/hpux11w.mh (XDEPFILES): Delete.
12080 * config/pa/hppaosf.mh (XDEPFILES): Delete.
12081 * config/pa/hpux11.mh (XDEPFILES): Delete.
12082 * config/powerpc/aix.mh (XDEPFILES): Delete.
12083 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
12084 * config/powerpc/linux.mh (XDEPFILES): Delete.
12085 * config/romp/rtbsd.mh: Rename XDEPFILES.
12086 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
12087 * config/rs6000/aix4.mh (XDEPFILES): Delete.
12088 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
12089 * config/s390/s390.mh (XDEPFILES): Delete.
12090 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
12091 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
12092 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
12093 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
12094 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
12095 * config/sparc/nbsd.mh (XDEPFILES): Delete.
12096 * config/sparc/linux.mh (XDEPFILES): Delete.
12097 * config/vax/vaxult.mh (XDEPFILES): Delete.
12098 * config/vax/vaxult2.mh (XDEPFILES): Delete.
12099 * Makefile.in (DEPFILES): Remove XDEPFILES.
12100
375fc983
AC
121012002-01-17 Andrew Cagney <ac131313@redhat.com>
12102
12103 * utils.c (internal_verror): Fix comments, default is yes not no.
12104 Update queries to match. Default to quit and dump core.
12105
8926118c
AC
121062002-01-17 Andrew Cagney <ac131313@redhat.com>
12107
12108 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
12109 copyright.
12110 * defs.h, event-top.c, gdbcmd.h: Ditto.
12111 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
12112 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
12113 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
12114 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
12115 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
12116 * mi/mi-main.c:Ditto.
12117
12118 * stack.c, symfile.c: Update copyright.
12119
45b7b345
DJ
121202002-01-17 Daniel Jacobowitz <drow@mvista.com>
12121
db728ff7
DJ
12122 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
12123 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
12124 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
12125 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
45b7b345 12126
db728ff7
DJ
121272002-01-17 Daniel Jacobowitz <drow@mvista.com>
12128
12129 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
12130 * gdbserver/low-lynx.c (myattach): Likewise.
12131 * gdbserver/low-nbsd.c (myattach): Likewise.
12132 * gdbserver/low-sim.c (myattach): Likewise.
12133 * gdbserver/low-sparc.c (myattach): Likewise.
12134 * gdbserver/low-sun3.c (myattach): Likewise.
12135
12136 * gdbserver/low-linux.c (myattach): New function.
45b7b345 12137
db728ff7 12138 * gdbserver/server.c (attach_inferior): New function.
45b7b345
DJ
12139 (main): Handle "--attach".
12140
8de3c354
AC
121412002-01-16 Andrew Cagney <ac131313@redhat.com>
12142
12143 * MAINTAINERS (language support): Daniel Jacobwitz is C++
12144 maintainer.
12145
b0129042
DJ
121462002-01-15 Daniel Jacobowitz <drow@mvista.com>
12147
12148 * c-typeprint.c (is_type_conversion_operator): Add additional
12149 check for non-conversion operators.
12150
ba8679fb 121512002-01-15 Michael Snyder <msnyder@redhat.com>
2bf543a6
MS
12152
12153 * linux-proc.c: Add "info proc" command, a la procfs.c.
12154 (read_mapping): New function, abstract and re-use code.
12155 (linux_find_memory_regions): Use new func read_mapping.
12156 (linux_info_proc_cmd): New function, implement "info proc".
12157 (_initialize_linux_proc): Add new command "info proc".
12158
e4f9b4d5
MS
121592002-01-15 Michael Snyder <msnyder@redhat.com>
12160
12161 * symfile.c (generic_load): Use bfd_map_over_sections method
12162 instead of manipulating bfd structure members directly.
12163 (add_section_size_callback): New function, bfd sections callback
12164 used by generic_load.
12165 (load_sections_callback): New function, bfd sections callback
12166 used by generic_load.
12167
08cf96df
EZ
121682002-01-15 Elena Zannoni <ezannoni@redhat.com>
12169
abf22e64 12170 [Based on work by Jim Blandy]
08cf96df
EZ
12171 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
12172 (builtin_type_vec128): Export.
12173 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
12174 types.
12175 (builtin_type_vec128): New builtin type for 128 bit vector
12176 registers.
12177 (build_gdbtypes): Initialize builtin_type_v16qi and
12178 builtin_type_v8hi. Create the vec128 register builtin type
12179 structure.
12180 (build_builtin_type_vec128): New function.
abf22e64 12181 (_initialize_gdbtypes): Register builtin_type_v16qi and
08cf96df
EZ
12182 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
12183 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
12184 AltiVec register to new builtin type.
12185
d7242108
DJ
121862001-01-15 Daniel Jacobowitz <drow@mvista.com>
12187
12188 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
12189 to make_cv_type.
12190
4ee3352d
AC
121912002-01-14 Andrew Cagney <ac131313@redhat.com>
12192
12193 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
12194 CLEAN_UP_REGISTER_VALUE.
12195 * regcache.c (supply_register): Update only call.
12196
f015b2e7
AC
121972002-01-14 Andrew Cagney <ac131313@redhat.com>
12198
12199 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
12200 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
12201 a29k-*-vxworks* targets as obsolete.
12202
356ae49d
MS
122032002-01-14 Michael Snyder <msnyder@redhat.com>
12204
12205 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
12206 until we can resolve portability issues.
12207 * gregset.h: Remove references to fpxregs.
12208 * gcore.c (gcore_command): Initialize note_sec to NULL.
12209
ade8f45e
AC
122102002-01-13 Andrew Cagney <ac131313@redhat.com>
12211
12212 * signals.c (target_signal_to_name): Rewrite. Only use
12213 signals[].name when in bounds and non-NULL.
abf22e64 12214
89c49e7a
AC
122152002-01-13 Andrew Cagney <ac131313@redhat.com>
12216
12217 From Petr Ledvina <ledvinap@kae.zcu.cz>:
12218 * signals.c (target_signal_to_name): Verify that SIG is within the
12219 bounds of the signals array.
12220
4daa9f9f
AC
122212002-01-13 Andrew Cagney <ac131313@redhat.com>
12222
12223 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
12224
ba4bbdcb
KS
122252002-01-13 Keith Seitz <keiths@redhat.com>
12226
12227 * stack.c (print_frame_info_base): Print the frame's pc
12228 only if when print_frame_info_listing_hook is not defined.
12229
575bbeb6
KS
122302002-01-13 Keith Seitz <keiths@redhat.com>
12231
12232 * varobj.c (varobj_set_value): Make sure that there were no
12233 errors evaluating the object before attempting to set its
12234 value.
12235 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
12236 so this offset adjustment is no longer necessary.
12237 (create_child): Don't set the error flag if the child is
12238 a CPLUS_FAKE_CHILD.
12239 (value_of_child): If value_fetch_lazy fails, return NULL
12240 so that callers will be notified that an error occurred.
12241 (c_value_of_variable): Delay check of variable's validity
12242 until later. We actually want all structs and unions to have
12243 the value "{...}".
12244 Do not return "???" for variables which could not be evaluated.
12245 This error condition must be returned to the caller so that it
12246 can get the error condition from gdb.
12247 (cplus_name_of_child): Adjust index for vptr before figuring
12248 out the name of the child.
12249 (cplus_value_of_child): If a child's (real) parent is not valid,
12250 don't even bother trying to give a value for it. Just return
12251 an error. Change all instances in this function.
12252 (cplus_type_of_child): If our parent is one of the "fake"
12253 parents, we need to get at the type of the real parent, and
12254 derive the child's true type using this information.
12255
b76898ab
AC
122562002-01-13 Andrew Cagney <ac131313@redhat.com>
12257
12258 From 2002-01-09 John Marshall <johnm@falch.net>:
12259 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
12260 sources.redhat.com, and tweak some related URLs which had
12261 suffered from linkrot.
12262
b6649e88
AC
122632002-01-13 Andrew Cagney <ac131313@redhat.com>
12264
12265 From Jeff law:
12266 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
12267 structures passed in registers.
12268
82cc5033
EZ
122692002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
12270
12271 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
12272 white space which prevented compilation. Reported by DSK
12273 <dsk@student.unsw.edu.au>.
12274
ba5f2f8a
MS
122752002-01-11 Michael Snyder <msnyder@redhat.com>
12276
fbd35540
MS
12277 * symfile.c (build_section_addr_info_from_section_tab):
12278 Use bfd access method instead of manipulating bfd directly.
12279 (syms_from_objfile): Ditto.
12280 (simple_overlay_update_1): Ditto.
12281 (simple_overlay_update): Ditto.
12282 (generic_load): Ditto.
12283 (overlay_unmapped_address): FIXME comment, bfd access methods.
12284 (sections_overlap): FIXME comment, bfd access methods.
12285 (pc_in_mapped_range): FIXME comment, bfd access methods.
12286 (pc_in_unmapped_range): FIXME comment, bfd access methods.
12287 (section_is_mapped): FIXME comment, bfd access methods.
12288 (section_is_overlay): FIXME comment, bfd access methods.
12289
ba5f2f8a
MS
12290 * symfile.c (generic_load): Whitespace and long line cleanups.
12291 Remove duplicate variable, change several local variables to
12292 more appropriate data types.
12293 (print_transfer_performance): Use %lu instead of %ld for ulongs.
12294
17df2af6
AC
122952002-01-12 Andrew Cagney <ac131313@redhat.com>
12296
12297 From Peter Schauer:
12298 * language.c (longest_local_hex_string_custom): Use phex_nz to
12299 convert NUM to a hex string.
12300
ec920329
EZ
123012002-01-12 Elena Zannoni <ezannoni@redhat.com>
12302
12303 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
12304 the function.
538a76d6 12305 Update Copyright year.
ec920329 12306
3abd2e01
AC
123072002-01-12 Andrew Cagney <ac131313@redhat.com>
12308
12309 * language.c (longest_raw_hex_string): Delete unused function.
12310
b21b22e0
PS
123112002-01-11 Petr Sorfa <petrs@caldera.com>
12312
12313 * MAINTAINERS (write-after-approval): Add myself.
12314 * dwarf2read.c (read_tag_string_type): Handling of
12315 DW_AT_byte_size.
12316 (read_tag_string_type): FORTRAN fix to prevent propagation of
12317 first string size.
12318 (set_cu_language): Handling of DW_LANG_Fortran95
12319
747fe712
RE
123202002-01-11 Richard Earnshaw <rearnsha@arm.com>
12321
12322 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
12323 GETPID(inferior_ptid).
12324 (store_inferior_registers): Likewise.
12325
f1bea926
JM
123262002-01-10 Jason Merrill <jason@redhat.com>
12327
12328 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
12329 Fix DW_OP_minus.
12330
ae940673
AC
123312002-01-10 Andrew Cagney <ac131313@redhat.com>
12332
12333 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
12334 and bfd/elf32-sh-nbsd.c.
12335
00546b04
MS
123362002-01-10 Michael Snyder <msnyder@redhat.com>
12337
352ed7b4
MS
12338 * NEWS: Mention --pid and corefile/proc-id behavior change.
12339
c18be923
MS
12340 * Makefile.in: Add rules for gcore.o and linux-proc.o.
12341 * gcore.c: Include cli/cli-decode.h instead of command.h.
12342
00546b04
MS
12343 * main.c (captured_main): Add new command line option "--pid".
12344 If the second command line argument (following the symbol-file)
12345 begins with a digit, try to attach to it before trying to open
12346 it as a corefile.
12347 (print_gdb_help): Document the "--pid" argument.
12348
db60ec62
EZ
123492002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
12350
12351 * completer.c (command_completer): New function.
12352
12353 * completer.h <command_completer>: Add prototype.
12354
12355 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
12356 completer for the "help" command.
12357
39c22d1a
JM
123582002-01-09 Jason Merrill <jason@redhat.com>
12359
12360 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
12361
c564377f
MS
123622002-01-09 Michael Snyder <msnyder@redhat.com>
12363
975aec09
MS
12364 * i386-linux-nat.c (fill_fpxregset): Make global.
12365 (store_fpxregset): Ditto.
12366
db4a10fa
MS
12367 * gregset.h (gdb_fpxregset_t): Define.
12368 (supply_fpxregset): Prototype.
12369 (fill_fpxregset): Prototype.
12370
c564377f
MS
12371 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
12372
c3d45d70
RE
123732002-01-09 Richard Earnshaw <rearnsha@arm.com>
12374
12375 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
12376 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
12377 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
12378
fcc87af1
AC
123792002-01-09 Andrew Cagney <ac131313@redhat.com>
12380
12381 * MAINTAINERS: Update target maintainer rules so that any
12382 Maintainer can approve a tested patch for a maintenance-only
12383 target.
12384
dd96c05b
RE
123852002-01-09 Richard Earnshaw <rearnsha@arm.com>
12386
d4297db9 12387 * MAINTAINERS (write-after-approval): Add myself.
dd96c05b 12388
d4297db9 12389 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
dd96c05b
RE
12390 IN_SIGTRAMP.
12391
145fdc6e
MS
123922002-01-08 Michael Snyder <msnyder@redhat.com>
12393
12394 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
12395 real name of the executable, rather than the /proc name.
12396
be4d1333
MS
123972002-01-03 Michael Snyder <msnyder@redhat.com>
12398
12399 Implement a "generate-core-file" command in gdb, save target state.
12400 * gcore.c: New file. Implement new command 'generate-core-file'.
12401 Save a corefile image of the current state of the inferior.
12402 * linux-proc.c: Add linux-specific code for saving corefiles.
12403 * target.h (struct target_ops): Add new target vectors for saving
12404 corefiles; to_find_memory_regions and to_make_corefile_notes.
12405 (target_find_memory_regions): New macro.
12406 (target_make_corefile_notes): New macro.
12407 * target.c (update_current_target): Inherit new target methods.
12408 (dummy_find_memory_regions): New place-holder method.
12409 (dummy_make_corefile_notes): New place-holder method.
12410 (init_dummy_target): Initialize new dummy target vectors.
12411 * exec.c (exec_set_find_memory_regions): New function.
12412 Allow the exec_ops vector for memory regions to be taken over.
12413 (exec_make_note_section): New function, target vector method.
12414 * defs.h (exec_set_find_memory_regions): Export prototype.
12415 * procfs.c (proc_find_memory_regions): New function, corefile method.
12416 (procfs_make_note_section): New function, corefile method.
12417 (init_procfs_ops): Set new target vector pointers.
12418 (find_memory_regions_callback): New function.
12419 (procfs_do_thread_registers): New function.
12420 (procfs_corefile_thread_callback): New function.
12421 * sol-thread.c (sol_find_memory_regions): New function.
12422 (sol_make_note_section): New function.
12423 (init_sol_thread_ops): Initialize new target vectors.
12424 * inftarg.c (inftarg_set_find_memory_regions): New function.
12425 Allow to_find_memory_regions vector to be taken over.
12426 (inftarg_set_make_corefile_notes): New function.
12427 Allow to_make_corefile_notes vector to be taken over.
12428 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
12429 interface layer if not target_has_execution (may be a corefile).
12430 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
12431 * config/sparc/sun4sol2.mh: Ditto.
12432 * config/alpha/alpha-linux.mh: Ditto.
12433 * config/arm/linux.mh: Ditto.
12434 * config/i386/x86-64linux.mh: Ditto.
12435 * config/ia64/linux.mh: Ditto.
12436 * config/m68k/linux.mh: Ditto.
12437 * config/mips/linux.mh: Ditto.
12438 * config/powerpc/linux.mh: Ditto.
12439 * config/sparc/linux.mh: Ditto.
12440
c6b92abd
MS
124412002-01-07 Michael Snyder <msnyder@redhat.com>
12442
12443 * arm-linux-nat.c: Remove references to regcache.c internal data
12444 (registers[] and register_valid[]).
12445
4b09dc8c
MS
124462002-01-07 Michael Snyder <msnyder@redhat.com>
12447
abf22e64
AJ
12448 * linux-proc.c: New file. Implement child_pid_to_exec_file,
12449 so that attaching to a pid will automatically read the process's
4b09dc8c
MS
12450 symbol file and shlibs.
12451 * Makefile.in: Add rule for linux-proc.o.
12452 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
12453 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
12454 * config/arm/linux.mh: Ditto.
12455 * config/i386/linux.mh: Ditto.
12456 * config/i386/x86-64linux.mh: Ditto.
12457 * config/ia64/linux.mh: Ditto.
12458 * config/m68k/linux.mh: Ditto.
12459 * config/mips/linux.mh: Ditto.
12460 * config/powerpc/linux.mh: Ditto.
12461 * config/sparc/linux.mh: Ditto.
12462
c25b74ac
PM
124632002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
12464
12465 * win32-nat.c: Add i386-tdep.h dependency.
12466
94cd915f
MS
124672002-01-07 Michael Snyder <msnyder@redhat.com>
12468
c7cccb76
MS
12469 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
12470 instead of bfd_get_arch_size. Don't bail out just because
12471 there's no exec_bfd.
abf22e64 12472
34c0bd93
MS
12473 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
12474 * p-valprint.c (pascal_object_print_value): Ditto.
12475 * somread.c (som_symtab_read): Ditto.
12476 * symfile.c (simple_free_overlay_region_table): Ditto.
12477 * valops.c (value_assign): Ditto.
12478
21c1c920
MS
12479 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
12480 use tilde_expand and strerror for opening save-tracepoints file.
12481
5bbd998e
MS
12482 * thread-db.c (thread_db_new_objfile): Indendation fix.
12483
94cd915f
MS
12484 * infptrace.c (GDB_MAX_ALLOCA): New define.
12485 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
abf22e64 12486 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
94cd915f
MS
12487 can be overridden with whatever value is appropriate to the host).
12488 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
12489 alloca to allocate potentially large buffer.
12490 * rs6000-nat.c (child_xfer_memory): Ditto.
12491 * symm-nat.c (child_xfer_memory): Ditto.
12492 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
12493
494e8a93
JSC
124942002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
12495
12496 From Nick Clifton <nickc@redhat.com>
12497 * d10v-tdep.c: Set STACK_START to 0x200bffe.
12498
d0e1d48e
MS
124992002-01-07 Michael Snyder <msnyder@redhat.com>
12500
abf22e64 12501 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
d0e1d48e
MS
12502 Don't use exec_bfd if it's NULL.
12503
290b2c7a
MK
125042002-01-06 Mark Kettenis <kettenis@gnu.org>
12505
abf22e64 12506 * valops.c (value_arg_coerce): Fix formatting.
290b2c7a 12507
aef21287
AC
125082002-01-06 Andrew Cagney <ac131313@redhat.com>
12509
12510 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
12511 * gnu-nat.c: Ditto.
12512
30efa627
AC
125132002-01-06 Andrew Cagney <ac131313@redhat.com>
12514
12515 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
12516 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
12517 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
12518 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
12519 z8k-coff have not been multi-arched. Update z8k-coff build
12520 status.
12521
9b4ff276
AC
125222002-01-06 Andrew Cagney <ac131313@redhat.com>
12523
12524 * MAINTAINERS: Mark a29k target as obsolete.
12525 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
12526 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
12527 comments.
12528 * NEWS: Note that a29k targets are obsolete.
12529 * a29k-tdep.c: Mark as obsolete.
12530 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
12531 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
12532 a29k-*-vxworks* targets as obsolete.
12533 * remote-adapt.c: Obsolete.
12534 * remote-eb.c: Obsolete.
12535 * remote-mm.c: Obsolete.
12536 * remote-udi.c: Obsolete.
12537 * config/a29k/a29k-udi.mt: Obsolete.
12538 * config/a29k/a29k.mt: Obsolete.
12539 * config/a29k/tm-a29k.h: Obsolete.
12540 * config/a29k/tm-vx29k.h: Obsolete.
12541 * config/a29k/vx29k.mt: Obsolete.
12542
a9011d31
AC
125432002-01-05 Andrew Cagney <ac131313@redhat.com>
12544
12545 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
12546 with BFD_ENDIAN_BIG.
12547
9299404e
AC
125482002-01-05 Andrew Cagney <ac131313@redhat.com>
12549
12550 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
12551 * configure, config.in: Re-generate.
12552 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
12553 * defs.h: Do not include <endian.h>.
12554
7e89e357
JT
125552002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
12556
12557 * acconfig.h (HAVE_PT_GETXMMREGS): New.
12558 * config.in: Regenerate.
12559 * configure.in: Update copyright years.
12560 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
12561 * configure: Regenerate.
12562 * i386bsd-nat.c: Update copyright years.
12563 (fill_gregset): Use regcache_collect.
12564 (fetch_inferior_registers): Only fetch integer registers
12565 if requested to do so. Add support for XMM registers
12566 using PT_GETXMMREGS.
12567 (store_inferior_registers): Only store integer registers
12568 if requested to do so. Add support for XMM registers
12569 using PT_SETXMMREGS.
12570 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
12571 (store_inferior_registers): Remove.
12572 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
12573 (fetch_elfcore_registers): New function.
12574 (i386nbsd_elfcore_fns): New.
12575 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
12576 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
12577 i386bsd-nat.o.
12578 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
12579 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
12580 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
12581 * config/i386/tm-nbsd.h: Update copyright years.
12582 (HAVE_SSE_REGS): Define.
12583 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
12584 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
12585 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
12586 (SIGCONTEXT_PC_OFFSET): Remove.
12587 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
12588
a752853e
AC
125892002-01-05 Andrew Cagney <ac131313@redhat.com>
12590
12591 * configure.tgt: Remove powerpc-*-macos* target.
12592 * config/m68k/xm-mpw.h: Delete file.
12593 * config/xm-mpw.h: Delete file.
12594 * ser-mac.c: Delete file.
12595 * mpw-make.sed: Delete file.
12596 * mpw-config.in: Delete file.
12597 * mac-xdep.c: Delete file.
12598 * mac-gdb.r: Delete file.
12599 * mac-defs.h: Delete file.
12600 * mac-nat.c: Delete file.
12601 * config/powerpc/macos.mh: Delete file.
12602 * config/powerpc/macos.mt: Delete file.
12603 * config/powerpc/nm-macos.h: Delete file.
12604 * config/powerpc/tm-macos.h: Delete file.
12605 * source.c (openp, open_source_file): Remove obsolete code.
12606 * top.c (gdb_readline): Ditto.
12607 * utils.c (query): Ditto.
12608 * event-top.c (display_gdb_prompt): Ditto.
12609 * Makefile.in (ser-mac.o): Delete obsolete target.
12610 * NEWS: Update.
12611
d7449b42
AC
126122002-01-04 Andrew Cagney <ac131313@redhat.com>
12613
12614 * defs.h (BIG_ENDIAN): Delete macro definition.
12615 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
12616 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
12617 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
12618 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
12619 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
12620 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
12621 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
12622 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
12623 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
12624 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
12625 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
12626 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
12627 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
12628 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
12629 * gdbarch.c: Re-generate.
12630
356374e8
DJ
126312002-01-04 Daniel Jacobowitz <drow@mvista.com>
12632
12633 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
12634 for core files.
12635
a2b8f8f8
JT
126362002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
12637
12638 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
12639
12466af9
AC
126402002-01-04 Andrew Cagney <ac131313@redhat.com>
12641
12642 * value.h (value_ptr): Delete typedef.
12643
3549ab40
JT
126442002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
12645
12646 * i386nbsd-nat.c: Update copyright years.
12647 Include i386-tdep.h.
12648
fedbd091
EZ
126492002-01-04 Elena Zannoni <ezannoni@redhat.com>
12650
12651 * stabsread.c: Update copyright years.
12652
12653 From Debashis Mahata <debashis.mahata@wipro.com>:
12654 (read_struct_fields): Deal with Sun C compiler erroneous stab
12655 output for structs and unions.
fec8b34f 12656 Fix PR gdb/269.
fedbd091 12657
eb43544b
DJ
126582002-01-04 Daniel Jacobowitz <drow@mvista.com>
12659
12660 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
12661 prototype.
12662
1514d34e
DJ
126632002-01-04 Daniel Jacobowitz <drow@mvista.com>
12664
12665 * cp-abi.c: Fix whitespace.
12666 (baseclass_offset): New wrapper function.
12667 * cp-abi.h (baseclass_offset): Add prototype.
12668 (struct cp_abi_ops): Add baseclass_offset pointer.
12669
12670 * valops.c (vb_match): Move to...
12671 * gnu-v2-abi.c (vb_match): here.
12672 * valops.c (baseclass_offset): Move to...
12673 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
12674
12675 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
12676
12677 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
12678 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
12679 * hpacc-abi.c (init_hpacc_ops): Likewise.
12680
7f8c9282
DJ
126812002-01-04 Daniel Jacobowitz <drow@mvista.com>
12682
12683 * valops.c (find_overload_match): Accept obj as a
12684 reference parameter. Update it before returning.
12685 * value.h (find_overload_match): Update prototype.
12686 * eval.c (evaluate_subexp_standard): Pass object to
12687 find_overload_match by reference.
12688
f23631e4
AC
126892002-01-03 Andrew Cagney <ac131313@redhat.com>
12690
12691 * valarith.c: Replace value_ptr with struct value pointer. Remove
12692 register attribute from value declarations.
12693 * valops.c: Ditto.
12694 * value.h: Ditto.
12695 * scm-lang.c (scm_lookup_name): Ditto.
12696
79e10fab 126972002-01-03 Michael Snyder <msnyder@redhat.com>
abf22e64 12698
79e10fab
AC
12699 Abstract the functionality of iterating over mapped memory
12700 regions into a general purpose iterator function.
abf22e64 12701 * procfs.c (iterate_over_mappings): New function, general purpose
79e10fab
AC
12702 iterator for memory sections.
12703 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
12704 (solib_mappings_callback): New function, callback for above.
12705 (info_proc_mappings): Reimpliment using iterate_over_mappings.
12706 (info_mappings_callback): New function, callback for above.
12707
12708 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
12709
c5ad026a
MK
127102002-01-01 Mark Kettenis <kettenis@gnu.org>
12711
d2a7c97a
MK
12712 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
12713 * i386-tdep.c: Include "elf-bfd.h".
12714 (process_note_abi_tag_sections): New function.
12715 (i386_gdbarch_init): Add code to recognize various OS/ABI
12716 combinations.
12717
c5ad026a
MK
12718 * maint.c (_initialize_maint_cmds): Add missing \ in
12719 string-literal.
12720
a1a5b71e 12721For older changes see ChangeLog-2001
c906108c
SS
12722\f
12723Local Variables:
12724mode: change-log
12725left-margin: 8
12726fill-column: 74
12727version-control: never
12728End:
This page took 1.201921 seconds and 4 git commands to generate.