* arch-utils.h (generic_register_size): Declare.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2002-05-11 Andrew Cagney <ac131313@redhat.com>
2
3 * arch-utils.h (generic_register_size): Declare.
4 (generic_register_raw_size, generic_register_virtual_size): Delete
5 declarations.
6 * arch-utils.c (generic_register_raw_size): Delete.
7 (generic_register_size): New function.
8 (generic_register_virtual_size): Delete.
9
10 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
11 default generic_register_size.
12 * gdbarch.h, gdbarch.c: Re-generate.
13
14 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
15 register_virtual_size.
16 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
17 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
18
19 2002-05-11 Andrew Cagney <ac131313@redhat.com>
20
21 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
22 * gdbarch.h, gdbarch.c: Regenerate.
23 * gnu-v3-abi.c: Update copyright.
24 (vtable_address_point_offset): Update.
25 (gnuv3_rtti_type): Update.
26 (gnuv3_baseclass_offset): Update.
27 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
28 (init_fetch_link_map_offsets): Update.
29 * remote.c (get_remote_state): Update.
30
31 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
32
33 * TODO: Remove value_headof/value_from_vtable_info comment.
34 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
35 * values.c (value_headof, value_from_vtable_info): Delete.
36 * value.h (value_from_vtable_info): Delete prototype.
37
38 2002-05-11 Andrew Cagney <ac131313@redhat.com>
39
40 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
41 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
42 $(gdb_regex_h).
43 (gdb_assert_h): Define.
44 (gdb_wait_h): Define.
45 (gdb_regex_h): Define.
46
47 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
48
49 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
50 * linespec.c (find_methods): Handle GCC 3.x template constructors.
51
52 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
53
54 * nbsd-tdep.c: Fix comment.
55
56 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
57
58 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
59 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
60 (nbsd-tdep.o): New dependency list.
61 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
62 nbsd-tdep.h.
63 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
64 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
65 * nbsd-tdep.c: New file.
66 * nbsd-tdep.h: New file.
67 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
68 nbsd-tdep.h.
69 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
70 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
71 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
72 * config/sh/nbsd.mt (TDEPFILES): Ditto.
73
74 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
75
76 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
77 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
78 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
79 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
80 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
81 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
82
83 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
84
85 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
86 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
87 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
88 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
89 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
90 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
91 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
92
93 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
94
95 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
96 fetch_elfcore_registers to...
97 * i386nbsd-tdep.c: ...here.
98 (i386nbsd_use_struct_convention): Rename to...
99 (i386nbsd_aout_use_struct_convention): ...this.
100 (i386nbsd_supply_reg): New function.
101 (i386nbsd_fill_reg): New function.
102 (fetch_core_registers): Use i386nbsd_supply_reg.
103 (fetch_elfcore_registers): Likewise.
104 (_initialize_i386nbsd_tdep): New function.
105 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
106 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
107 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
108 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
109 (i386nbsd_aout_use_struct_convention): ...this.
110
111 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
112
113 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
114 (store_inferior_registers): Use shnbsd_fill_reg.
115 * shnbsd-tdep.c (sh_nbsd_supply_registers,
116 sh_nbsd_supply_register): Collapse into...
117 (shnbsd_supply_reg): ...this.
118 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
119 (shnbsd_fill_reg): ...this.
120 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
121 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
122 (fetch_core_registers): Use shnbsd_supply_reg.
123 (fetch_elfcore_registers): Use shnbsd_supply_reg.
124 (sh_nbsd_core_fns): Rename to...
125 (shnbsd_core_fns): ...this.
126 (sh_nbsd_elfcore_fns): Rename to...
127 (shnbsd_elfcore_fns): ...this.
128 (sh_nbsd_init_abi): Rename to...
129 (shnbsd_init_abi): ...this.
130 (_initialize_sh_nbsd_tdep): Rename to...
131 (_initialize_shnbsd_tdep): ...this.
132 * shnbsd-tdep.h (sh_nbsd_supply_registers,
133 sh_nbsd_supply_register, sh_nbsd_fill_registers,
134 sh_nbsd_fill_register): Remove prototypes.
135 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
136
137 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
138
139 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
140 (i387-nat.o): Delete dependency list.
141 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
142 (x86-64-linux-nat.o): Likewise.
143 * i387-nat.c: Delete file, moving contents to...
144 * i387-tdep.c: ...here.
145 * i387-nat.h: Rename...
146 * i387-tdep.h: ...to this.
147 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
148 * i386-linux-nat.c: Likewise.
149 * i386bsd-nat.c: Likewise.
150 * i386gnu-nat.c: Likewise.
151 * i386nbsd-nat.c: Likewise.
152 * i386v4-nat.c: Likewise.
153 * x86-64-linux-nat.c: Likewise.
154 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
155 * config/i386/go32.mh (NATDEPFILES): Likewise.
156 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
157 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
158 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
159 * config/i386/linux.mh (NATDEPFILES): Likewise.
160 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
161 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
162 * config/i386/obsd.mh (NATDEPFILES): Likewise.
163 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
164
165 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
166
167 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
168 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
169 (alphanbsd-nat.o): Likewise.
170 (alphabsd-tdep.o): New dependency list.
171 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
172 (fill_gregset): Use alphabsd_fill_reg.
173 (supply_fpregset): Use alphabsd_supply_fpreg.
174 (fill_fpregset): Use alphabsd_fill_fpreg.
175 (fetch_inferior_registers): Use struct reg and struct fpreg
176 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
177 and alphabsd_supply_fpreg.
178 (store_inferior_registers): Use struct reg and struct fpreg
179 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
180 and alphabsd_fill_fpreg.
181 * alphabsd-tdep.c: New file.
182 * alphabsd-tdep.h: New file.
183 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
184 (fetch_elfcore_registers): Use alphabsd_supply_reg and
185 alphabsd_supply_fpreg.
186 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
187 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
188
189 2002-05-11 Eric Christopher <echristo@redhat.com>
190
191 * mips-tdep.c (mips_double_register_type): Fix thinko.
192 (mips_single_register_type): Ditto.
193 * MAINTAINERS: Add self.
194
195 2002-05-11 Mark Kettenis <kettenis@gnu.org>
196
197 * i387-nat.c (i387_supply_register, i387_fill_fsave,
198 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
199 right thing on architectures with different endianness and/or
200 integer sizes.
201
202 2002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
203
204 From Christian Limpach <chris@Pin.LU>
205 * configure.in: Change sed expression which comments out
206 NATDEPFILES to also comment out continuation lines.
207 * configure: Regenerate.
208
209 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
210
211 * sh-tdep.c: Clean up code erroneously reintroduced by previous
212 big patch.
213
214 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
215
216 * sh-tdep.c: Include correct file.
217
218 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
219
220 New support for sh64-elf (sh5) target.
221
222 * configure.tgt: For sh64-elf target, default to sh-elf.
223
224 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
225 (struct gdbarch_tdep): Add new fields for new registers and ABI
226 info.
227
228 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
229 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
230 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
231 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
232 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
233 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
234 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
235 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
236 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
237 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
238 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
239 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
240 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
241 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
242 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
243 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
244 sh64_get_gdb_regnum, sh64_media_reg_base_num,
245 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
246 sign_extend, sh64_nofp_frame_init_saved_regs,
247 sh64_init_extra_frame_info, sh64_get_saved_register,
248 sh64_extract_struct_value_address, sh64_pop_frame,
249 sh64_push_arguments, sh64_extract_return_value,
250 sh64_store_return_value, sh64_show_media_regs,
251 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
252 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
253 sh_sh64_register_virtual_type,
254 sh_sh64_register_convert_to_virtual,
255 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
256 sh64_register_read, sh64_pseudo_register_write,
257 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
258 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
259 sh64_do_pseudo_register, sh_compact_do_registers_info,
260 sh64_do_registers_info, sh_gdbarch_init): New functions.
261
262 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
263
264 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
265
266 2002-05-10 Daniel Jacobowitz <drow@mvista.com>
267
268 * linespec.c (decode_line_1): Check for a double quote after
269 a filename correctly.
270
271 2002-05-10 Jim Blandy <jimb@redhat.com>
272
273 Properly track the size of the current objfile's .debug_line section.
274 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
275 (DWARF_LINE_SIZE): New macro.
276 (dwarf2_build_psymtabs_hard): Record the line section's size in
277 the partial symbol table.
278 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
279 symbol table.
280
281 2002-05-10 Petr Sorfa <petrs@caldera.com>
282
283 * ia64-tdep.c: Handle breakpoints on L instruction type
284 in MLX instruction bundle by moving the breakpoint to
285 the third slot (X instruction type) as L holds only data.
286
287 2002-05-10 Kevin Buettner <kevinb@redhat.com>
288
289 * dbxread.c (discarding_local_symbols_complaint): New complaint.
290 (process_one_symbol): Complain about discarding local symbols
291 due to a misplaced N_LBRAC entry.
292
293 2002-05-09 Elena Zannoni <ezannoni@redhat.com>
294
295 From Daniel Berlin <dan@cgsoftware.com>
296 * linespec.c (find_toplevel_char): '<' and '>' also increase and
297 decrease the depth we are at, in the case of templates.
298
299 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
300
301 * mips-tdep.c (mips_float_register_type): New function.
302 (mips_double_register_type): New function.
303 (mips_print_register): Use them.
304 (do_fp_register_row): Likewise.
305
306 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
307
308 * signals/signals.c (signals): Remove conditional compilation around
309 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
310 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
311
312 2002-05-09 Michael Snyder <msnyder@redhat.com>
313
314 * remote-rdp.c (remote_rdp_can_run): Remove.
315
316 2002-05-09 Tom Tromey <tromey@redhat.com>
317
318 * jv-valprint.c (java_val_print): Handle `char' as a special case
319 of TYPE_CODE_INT.
320
321 2002-05-09 Michael Snyder <msnyder@redhat.com>
322
323 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
324 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
325 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
326 str r(0123),[sp,#nn].
327 (arm_skip_prologue): Ditto. Also make disassembly
328 order-independent by placing it in a loop.
329
330 2002-05-06 Michael Snyder <msnyder@redhat.com>
331
332 * stabsread.c (read_type): Add recognition for new attribute:
333 "@V;" means that an array type is actually a vector.
334 This is analogous to the vector flag that's been added to dwarf2.
335
336 2002-05-09 Mark Kettenis <kettenis@gnu.org>
337
338 * i386-tdep.h (i386_abi): New enum.
339 (struct gdbarch_tdep): Replace os_ident member with abi.
340 (i386_gdbarch_register_os_abi): New prototype.
341 * i386-tdep.c (i386_abi_names): New array.
342 (process_note_abi_tag_sections): Removed.
343 (process_note_sections): New function.
344 (i386_elf_abi_from_note, i386_elf_abi): New functions.
345 (struct i386_abi_handler): New struct.
346 (i386_abi_handler_list): New variable.
347 (i386_gdbarch_register_os_abi): New function.
348 (i386_gdbarch_init): Adapt for the changes given above.
349
350 2002-05-08 Daniel Jacobowitz <drow@mvista.com>
351
352 * gregset.h: Say "GNU/Linux".
353
354 2002-05-08 Elena Zannoni <ezannoni@redhat.com>
355
356 * gdbtypes.c : Add new builtin type for 64 bit vectors.
357 (build_gdbtypes): Build builtin_type_v2_float.
358 (_initialize_gdbtypes): Register new builtin type.
359
360 2002-05-08 Andrew Cagney <ac131313@redhat.com>
361
362 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
363 (clear_gdbarch_swap): New function.
364 (initialize_non_multiarch): Call.
365 (gdbarch_update_p): Before calling init(), swap out and clear the
366 existing architecture.
367 * gdbarch.c: Regenerate.
368
369 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
370
371 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
372 alphanbsd-tdep.c.
373
374 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
375
376 * sh-nbsd-nat.c: Rename to...
377 * shnbsd-nat.c: ...this.
378 * sh-nbsd-tdep.c: Rename to...
379 * shnbsd-tdep.c: ...this.
380 * sh-nbsd-tdep.h: Rename to...
381 * shnbsd-tdep.h: ...this.
382 * config/sh/nbsd.mh: Use shnbsd-nat.o.
383 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
384
385 2002-05-08 Richard Earnshaw <rearnsha@arm.com>
386
387 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
388 concatenation for command help messages.
389
390 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
391
392 * NEWS: Note new sh*-*-netbsdelf* configuration.
393 * configure.host: Set gdb_host_cpu to sh for all sh*.
394 (sh*-*-netbsdelf*): New host.
395 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
396 (sh*-*-netbsdelf*): New target.
397 * sh-nbsd-nat.c: New file.
398 * sh-nbsd-tdep.c: New file.
399 * sh-nbsd-tdep.h: New file.
400 * config/sh/nbsd.mh: New file.
401 * config/sh/nbsd.mt: New file.
402 * config/sh/nm-nbsd.h: New file.
403 * config/sh/tm-nbsd.h: New file.
404
405 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
406
407 * sh-tdep.c (sh_osabi_names): Declare.
408 (process_note_abi_tag_sections): New function.
409 (get_elfosabi): Ditto.
410 (sh_gdbarch_register_os_abi): Ditto.
411 (sh_dump_tdep): Ditto.
412 _initialize_sh_tdep): Use gdbarch_register to register
413 sh_gdbarch_init and sh_dump_tdep.
414 * config/sh/tm-sh.h (sh_osabi): Declare.
415 (gdbarch_tdep): Add sh_osabi and osabi_name members.
416
417 2002-05-07 Andrew Cagney <ac131313@redhat.com>
418
419 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
420 (thumb_scan_prologue): Ditto.
421 (arm_find_callers_reg): Ditto.
422 (arm_frame_chain): Ditto.
423 (arm_init_extra_frame_info): Ditto.
424 (arm_frame_saved_pc): Ditto.
425 (arm_pop_frame): Ditto.
426 (arm_push_return_address): New function.
427 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
428 call_dummy_location, call_dummy_breakpoint_offset_p,
429 call_dummy_breakpoint_offset, call_dummy_p,
430 call_dummy_stack_adjust_p, call_dummy_words,
431 sizeof_call_dummy_words, call_dummy_start_offset,
432 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
433 call_dummy_address, push_return_address and push_dummy_frame for
434 generic dummy frames.
435
436 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
437
438 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
439 size computation for alloca.
440 (sh_fp_frame_init_saved_regs): Likewise.
441
442 2002-05-07 Richard Earnshaw <rearnsha@arm.com>
443
444 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
445 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
446 * arm-tdep.c (arm_store_return_value): Use them.
447 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
448 * remote-rdp.c (remote_rdp_fetch_register): Use
449 ARM_MAX_REGISTER_RAW_SIZE.
450 (remote_rdp_store_register): Likewise.
451
452 2002-05-07 Michal Ludvig <mludvig@suse.cz>
453
454 * dwarf2cfi.c: Code cleanup, removed unused variables,
455 added default labels to switch {} statements.
456 * x86-64-tdep.c: Ditto.
457 * x86-64-linux-nat.c: Ditto.
458
459 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
460
461 * solib.h: Protect against multiple inclusion.
462
463 2002-05-06 Jim Blandy <jimb@redhat.com>
464
465 Add first preprocessor macro-expansion files.
466 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
467 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
468 (splay_tree_h, macroexp_h, macrotab_h): New variable.
469 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
470 (COMMON_OBS): Add macrotab.o, macroexp.o.
471 (macroexp.o, macrotab.o): New rules.
472
473 Separate the job of reading the line number info statement program
474 header (...expialidocious) out into its own function.
475 * dwarf2read.c (struct line_head, struct filenames, struct
476 directories): Replace with...
477 (struct line_header): New structure, containing the full
478 contents of the statement program header, including the
479 include directory and file name tables.
480 (read_file_scope): If we have line number info, instead of just
481 calling dwarf_decode_lines to do all the work, call
482 dwarf_decode_line_header first to get a `struct line_header'
483 containing the data in the statement program header, and then
484 pass that to dwarf_decode_lines, which will pick up where that
485 left off. Be sure to clean up the `struct line_header' object.
486 (dwarf_decode_line_header, free_line_header, add_include_dir,
487 add_file_name): New functions.
488 (dwarf_decode_lines): Move all the code to read the statement
489 program header into dwarf_decode_line_header. Take the line
490 header it built as the first argument, instead of the offset to
491 the compilation unit's line number info. Use the new `struct
492 line_header' type instead of the old structures. No need to do
493 cleanups here now, since we don't allocate anything.
494 (dwarf2_statement_list_fits_in_line_number_section,
495 dwarf2_line_header_too_long): New complaints.
496
497 2002-05-06 Elena Zannoni <ezannoni@redhat.com>
498
499 * gdbtypes.c (init_vector_type): New function.
500 (build_builtin_type_vec128): Simplify the representation of SIMD
501 registers.
502 (build_gdbtypes): Initialize new builtin vector types.
503 (_initialize_gdbtypes): Register new vector types with gdbarch.
504 (builtin_type_v4_float, builtin_type_v4_int32,
505 builtin_type_v8_int16, builtin_type_v16_int8,
506 builtin_type_v2_int32, builtin_type_v4_int16,
507 builtin_type_v8_int8): New (renamed) SIMD types.
508
509 2002-05-06 Mark Kettenis <kettenis@gnu.org>
510
511 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
512 (i387_fill_fxsave): Likewise.
513
514 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
515
516 * alpha-tdep.c (alpha_extract_return_value): Don't use
517 non-constant array size in prototype.
518
519 2002-05-04 Andrew Cagney <ac131313@redhat.com>
520
521 From Brian Taylor <briant at model dot com>:
522 * ui-out.c (ui_out_field_core_addr): Use the function
523 longest_local_hex_string_custom'to format addresses > 32 bits
524 wide.
525
526 * ui-out.c (ui_out_field_core_addr): Update comment.
527
528 2002-05-04 Andrew Cagney <ac131313@redhat.com>
529
530 * stack.c (select_and_print_frame): Make static. Delete the
531 parameter `level'.
532 (func_command): Update call.
533 (select_frame_command): Delete code computing the frame level.
534 * frame.h (select_and_print_frame): Delete declaration.
535
536 2002-05-04 Andrew Cagney <ac131313@redhat.com>
537
538 * sparc-tdep.c (sparc_get_saved_register): Comment why
539 get_prev_frame call is safe.
540
541 2002-05-04 Andrew Cagney <ac131313@redhat.com>
542
543 * frame.h (select_frame): Delete level parameter.
544 * stack.c (select_frame): Update. Use frame_relative_level to
545 obtain the frame's level.
546 (select_and_print_frame): Update call.
547 (select_frame_command): Ditto.
548 (up_silently_base): Ditto.
549 (down_silently_base): Ditto.
550 * ocd.c (ocd_start_remote): Ditto.
551 * remote-rdp.c (remote_rdp_open): Ditto.
552 * remote-mips.c (mips_initialize): Ditto.
553 (common_open): Ditto.
554 * remote-e7000.c (e7000_start_remote): Ditto.
555 * m3-nat.c (select_thread): Ditto.
556 * hppa-tdep.c (child_get_current_exception_event): Ditto.
557 (child_get_current_exception_event): Ditto.
558 * varobj.c (varobj_create): Ditto.
559 (varobj_update): Ditto.
560 (c_value_of_root): Ditto.
561 * tracepoint.c (finish_tfind_command): Ditto.
562 * corelow.c (core_open): Ditto.
563 * arch-utils.c (generic_prepare_to_proceed): Ditto.
564 * thread.c (info_threads_command): Ditto.
565 (switch_to_thread): Ditto.
566 * infrun.c (normal_stop): Ditto.
567 (restore_selected_frame): Ditto.
568 (restore_inferior_status): Ditto.
569 * breakpoint.c (insert_breakpoints): Ditto.
570 (watchpoint_check): Ditto.
571 (bpstat_stop_status): Ditto.
572 (do_enable_breakpoint): Ditto.
573 * blockframe.c (flush_cached_frames): Ditto.
574 (reinit_frame_cache): Ditto.
575
576 2002-05-04 Andrew Cagney <ac131313@redhat.com>
577
578 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
579 maintainer.
580
581 2002-05-04 Jim Blandy <jimb@redhat.com>
582
583 * gdbtypes.c (replace_type): Doc fix.
584
585 2002-05-04 Andrew Cagney <ac131313@redhat.com>
586
587 * valprint.c (strcat_longest): Delete commented out function.
588 Update copyright.
589
590 2002-05-04 Andrew Cagney <ac131313@redhat.com>
591
592 * MAINTAINERS: Mark a29k as deleted.
593 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
594 Move new configurations to the top.
595 * configure.tgt: Remove a29k.
596 * config/a29k/tm-vx29k.h: Delete.
597 * config/a29k/vx29k.mt: Delete.
598 * config/a29k/tm-a29k.h: Delete.
599 * config/a29k/a29k-udi.mt: Delete.
600 * config/a29k/a29k.mt: Delete.
601 * a29k-tdep.c: Delete.
602 * remote-udi.c: Delete.
603 * remote-mm.c: Delete.
604 * remote-eb.c: Delete.
605 * remote-adapt.c: Delete.
606 * Makefile.in: Remove obsolete code.
607 * gdbserver/Makefile.in: Ditto.
608 * config/s390/s390x.mt: Ditto.
609 * config/s390/s390.mt: Ditto.
610 * config/sparc/sparclynx.mh: Ditto.
611 * config/sparc/linux.mh: Ditto.
612 * config/pa/hppaosf.mh: Ditto.
613 * config/pa/hppabsd.mh: Ditto.
614 * config/ns32k/nbsd.mt: Ditto.
615 * config/mips/vr5000.mt: Ditto.
616 * config/m68k/sun3os4.mh: Ditto.
617 * config/m68k/nbsd.mt: Ditto.
618 * config/m68k/m68klynx.mh: Ditto.
619 * config/m32r/m32r.mt: Ditto.
620 * config/i386/x86-64linux.mt: Ditto.
621 * config/i386/nbsdelf.mt: Ditto.
622 * config/i386/nbsd.mt: Ditto.
623 * config/i386/i386lynx.mh: Ditto.
624
625 2002-05-04 Andrew Cagney <ac131313@redhat.com>
626
627 * target.c (debug_print_register): New function. Handle oversize
628 registers.
629 (debug_to_fetch_registers): Call.
630 (debug_to_store_registers): Call.
631
632 2002-05-03 Jim Blandy <jimb@redhat.com>
633
634 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
635 (read_type): Doc fix.
636 * gdbtypes.c (replace_type): Doc fix.
637
638 * stabsread.c (multiply_defined_struct): New complaint.
639 (read_struct_type): If the type we were passed isn't empty, or
640 incomplete, don't read the new struct type into it; complain,
641 and return the original type unchanged. Take a new `type_code'
642 argument, which is the type code for the new type.
643 (read_type): Rather than storing the type's type code here, pass
644 it as an argument to read_struct_type, and let that take care of
645 storing it. That way, we don't overwrite the original type code,
646 so read_struct_type can use it to decide whether we're overwriting
647 something we shouldn't.
648 (complain_about_struct_wipeout): New function.
649
650 2002-05-03 Andrew Cagney <ac131313@redhat.com>
651
652 * gdbarch.sh: Assert that gdbarch is non-NULL.
653 * gdbarch.c: Regenerate.
654
655 2002-05-03 Jason Merrill <jason@redhat.com>
656
657 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
658 and return NULL.
659
660 2002-05-03 Michal Ludvig <mludvig@suse.cz>
661
662 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
663 (x86_64_dwarf2gdb_regno_map_length),
664 (x86_64_dwarf2_reg_to_regnum): Added.
665 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
666 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
667 (_initialize_x86_64_tdep): Synced with the change above.
668 (x86_64_skip_prologue): Reformulated message.
669
670 2002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
671
672 * f-exp.y: Also use new prev_lexptr variable
673 to improve error reporting. Based on Michael Snyder
674 2002-04-24 dated patch to c-exp.y.
675 * jv-exp.y: Likewise.
676 * m2-exp.y: Likewise.
677
678 2002-05-02 Elena Zannoni <ezannoni@redhat.com>
679
680 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
681 we are dealing with vectors.
682
683 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
684
685 * config/m68k/tm-nbsd.h: Obvious fix,
686 correct machine name.
687
688 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
689
690 * p-typeprint.c (pascal_type_print_base): Add support
691 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
692
693 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
694
695 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
696 for fondamental pascal 'char' type.
697
698 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
699
700 * p-lang.h (is_pascal_string_type): Declaration changed,
701 new sixth argument of type char ** added.
702 * p-lang.c (is_pascal_string_type): Implementation
703 changed. Args length_pos, length_size, string_pos, char_size
704 can now be NULL. New argument arrayname set to the field
705 name of the char array. Return value set to char array
706 field index plus one.
707 * p-valprint.c (pascal_val_print): Adapt to new declaration of
708 is_pascal_string_type function.
709
710 2002-05-02 Andrew Cagney <cagney@redhat.com>
711
712 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
713 <cagney@redhat.com> change.
714 * gdbarch.c: Regenerate.
715
716 2002-05-02 Andrew Cagney <cagney@redhat.com>
717
718 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
719 before probing for a new one. Detect errorenous gdbarch_init
720 functions.
721 * gdbarch.c: Regenerate.
722
723 2002-05-01 Andrew Cagney <cagney@redhat.com>
724
725 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
726 * config/mcore/tm-mcore.h: Ditto. Update copyright.
727 * config/v850/tm-v850.h: Ditto. Update copyright.
728
729 2002-04-30 Andrew Cagney <ac131313@redhat.com>
730
731 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
732 current_gdbarch.
733
734 2002-04-30 Michael Snyder <msnyder@redhat.com>
735
736 * arm-tdep.c: Whitespace clean-ups.
737 (arm_skip_prologue): Fix thinko; two lines
738 should have been removed as part of 4/24 change.
739
740 2002-04-30 Kevin Buettner <kevinb@redhat.com>
741
742 * rs6000-tdep.c: Added comment describing how fpscr register
743 numbers were chosen.
744
745 2002-04-30 Michael Snyder <msnyder@redhat.com>
746
747 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
748
749 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
750
751 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
752 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
753 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
754
755 2002-04-29 Kevin Buettner <kevinb@redhat.com>
756
757 From Louis Hamilton <hamilton@redhat.com>:
758 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
759 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
760 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
761 not bfd-private xcoff data, to determine wordsize.
762 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
763
764 2002-04-29 Andrew Cagney <ac131313@redhat.com>
765
766 GDB 5.2 released from 5.2 branch.
767
768 2002-04-29 Michal Ludvig <mludvig@suse.cz>
769
770 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
771 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
772 (x86_64_register_info_table): Added comments with register numbers.
773
774 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
775
776 * rs6000-tdep.c (rs6000_extract_return_value,
777 rs6000_store_return_value): Handle returning vectors.
778 (rs6000_gdbarch_init): Use
779 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
780 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
781 New function.
782 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
783 vectors.
784 (ppc_sysv_abi_push_arguments): Handle vector parameters.
785 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
786
787 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
788
789 * hpread.c (hpread_psymtab_to_symtab_1,
790 hpread_psymtab_to_symtab): Replace fprintf (stderr,...)
791 with fprintf_unfiltered (gdb_stderr,...).
792
793 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
794
795 * remote-array.c (printf_monitor, write_monitor,
796 array_insert_breakpoint, array_remove_breakpoint ):
797 Replace fprintf (stderr,...
798 with fprintf_unfiltered (gdb_stderr,....
799 * remote-es.c: Likewise.
800 * remote-os9k.c: Likewise.
801 * remote-st.c: Likewise.
802
803 2002-04-28 Andreas Schwab <schwab@suse.de>
804
805 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
806 linux-proc.o and gcore.o.
807
808 2002-04-26 Michal Ludvig <mludvig@suse.cz>
809
810 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
811 code without frame pointers.
812
813 2002-04-26 Andrew Cagney <ac131313@redhat.com>
814
815 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
816 ON_STACK is needed.
817
818 2002-04-26 Ben Elliston <bje@redhat.com>
819
820 * target.c (do_xfer_memory): Correct reference to the new option
821 "trust-readonly-sections".
822
823 2002-04-26 Elena Zannoni <ezannoni@redhat.com>
824
825 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
826 * gdbtypes.c (recursive_dump_type): Output the vector flag.
827 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
828 vectors.
829 (read_array_type): Record the fact that this array type is really a
830 vector (i.e. are passed in by value).
831
832 2002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
833
834 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
835 * alpha-tdep.c (alpha_sigcontext_addr): New function.
836 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
837 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
838 * alpha-linux-tdep.c: Include frame.h.
839 (alpha_linux_sigcontext_addr): New function.
840 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
841 alpha_linux_sigcontext_addr.
842 * alpha-osf1-tdep.c: Include gdbcore.h.
843 (alpha_osf1_sigcontext_addr): New function.
844 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
845 alpha_osf1_sigcontext_addr.
846 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
847 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
848
849 2002-04-26 Andrew Cagney <ac131313@redhat.com>
850
851 * stack.c (selected_frame_level):
852 (select_frame): Do not set selected_frame_level.
853 * frame.h (selected_frame_level): Delete declaration.
854
855 2002-04-26 Andrew Cagney <ac131313@redhat.com>
856
857 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
858 convert_from_func_ptr-addr when AIX / PowerOpen.
859
860 2002-04-25 Andrew Cagney <ac131313@redhat.com>
861
862 * valops.c (hand_function_call): Call
863 generic_save_call_dummy_addr.
864 * frame.h (generic_save_call_dummy_addr): Declare.
865 * blockframe.c (struct dummy_frame): Add fields call_lo and
866 call_hi.
867 (generic_find_dummy_frame): Check for PC in range call_lo to
868 call_hi instead of entry_point_address.
869 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
870 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
871 (generic_save_call_dummy_addr): New function.
872
873 2002-04-24 David S. Miller <davem@redhat.com>
874
875 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
876 sparc_skip_prologue.
877 (sparc_skip_prologue): Kill frameless_p arg, and use line number
878 information to find prologue when possible.
879 (sparc_prologue_frameless_p): Call examine_prologue directly.
880 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
881 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
882 second argument.
883 (SKIP_PROLOGUE): Likewise.
884
885 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
886
887 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
888 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
889 indicate that the condition it was testing is always true.
890 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
891 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
892 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
893
894 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
895
896 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
897 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
898 tdep->jb_pc and tdep->jb_elt_size.
899 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
900 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
901 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
902 * alpha-nat.c (get_longjmp_target): Remove.
903 (JB_ELEMENT_SIZE): Ditto.
904 (JB_PC): Ditto.
905 * alpha-tdep.c (alpha_get_longjmp_target): New function.
906 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
907 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
908 to alpha_get_longjmp_target.
909 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
910 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
911 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
912
913 2002-04-25 Andrew Cagney <ac131313@redhat.com>
914
915 * README: Update to GDB 5.2.
916
917 2002-04-25 Andrew Cagney <ac131313@redhat.com>
918
919 * gdbarch.sh (LC_ALL): Set to `c'.
920
921 2002-04-25 Theodore A. Roth <troth@verinet.com>
922
923 * avr-tdep.c: Ran through gdb_indent.sh.
924
925 2002-04-25 Theodore A. Roth <troth@verinet.com>
926
927 * MAINTAINERS: Add myself as AVR maintainer.
928 * NEWS: Note new target avr.
929
930 2002-04-25 Theodore A. Roth <troth@verinet.com>
931
932 * Makefile.in: Add support for AVR target.
933 * configure.tgt: Add support for AVR target.
934 * avr-tdep.c: New file
935 * config/avr/avr.mt: New file.
936
937 2002-04-25 Theodore A. Roth <troth@verinet.com>
938
939 * MAINTAINERS: Add myself to write-after-approval.
940
941 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
942
943 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
944 with fprintf_unfiltered (gdb_stderr,....
945
946 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
947
948 Fix PR gdb/508.
949 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
950
951 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
952
953 * p-exp.y: Also use new prev_lexptr variable
954 to improve error reporting. Based on Michael Snyder
955 2002-04-24 dated patch to c-exp.y.
956
957 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
958
959 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
960 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
961 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
962 to 0.
963 * config/alpha/tm-alpha.h: Remove forward decls of struct type
964 and struct value.
965 (FUNCTION_START_OFFSET): Remove.
966 (BREAKPOINT): Ditto.
967
968 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
969
970 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
971 * NEWS: Ditto.
972
973 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
974
975 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
976 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
977 alpha_linux_pc_in_sigtramp.
978 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
979 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
980 alpha_osf1_pc_in_sigtramp.
981 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
982 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
983 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
984 alphafbsd_pc_in_sigtramp.
985 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
986 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
987 alphanbsd_pc_in_sigtramp.
988 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
989 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
990
991 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
992
993 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
994
995 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
996
997 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
998 alphanbsd-tdep.c.
999 (alphanbsd-nat.o): New dependency list.
1000 (alphanbsd-tdep.o): Ditto.
1001 * NEWS: Note new native NetBSD/alpha configuration.
1002 * alphanbsd-nat.c: New file.
1003 * alphanbsd-tdep.c: Ditto.
1004 * configure.host (alpha*-*-netbsd*): New host.
1005 * configure.tgt (alpha*-*-netbsd*): New target.
1006 * config/alpha/nbsd.mh: New file.
1007 * config/alpha/nbsd.mt: Ditto.
1008 * config/alpha/nm-nbsd.h: Ditto.
1009 * config/alpha/tm-nbsd.h: Ditto.
1010
1011 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
1012
1013 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
1014 (alpha-osf1-tdep.o): New dependency list.
1015 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
1016 and skip_sigtramp_frame members.
1017 * alpha-linux-tdep.c: Include gdbcore.h.
1018 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
1019 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
1020 * alpha-osf1-tdep.c: New file.
1021 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
1022 alpha-osf1-dep.c.
1023 (alpha_frame_past_sigtramp_frame): New function.
1024 (alpha_dynamic_sigtramp_offset): Ditto.
1025 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
1026 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
1027 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
1028 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
1029 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
1030 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
1031 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
1032 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
1033 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
1034 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
1035 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
1036 to find_solib_trampoline_target.
1037 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
1038 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
1039 (SKIP_TRAMPOLINE_CODE): Remove.
1040 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
1041 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
1042 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
1043 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
1044 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
1045 (PROC_SIGTRAMP_MAGIC): Ditto.
1046 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
1047 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
1048 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
1049 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
1050 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
1051
1052 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
1053
1054 * NEWS: Note that Alpha targets are now multi-arch.
1055
1056 2002-04-24 Michael Snyder <msnyder@redhat.com>
1057
1058 * parser-defs.h (prev_lexptr): New external variable.
1059 * parse.c (parse_exp_1): Set prev_lexptr to null before
1060 calling the language-specific parser.
1061 * c-exp.y (yylex): Set prev_lexptr to start of current token.
1062 (yyerror): Use prev_lexptr in error reporting.
1063
1064 2002-04-24 Daniel Jacobowitz <drow@mvista.com>
1065
1066 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
1067 * gregset.h: If FILL_FPXREGSET is defined, provide
1068 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
1069 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
1070 is defined, call fill_fpxregset.
1071
1072 2002-04-24 Roland McGrath <roland@frob.com>
1073
1074 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
1075 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
1076 (supply_gregset, supply_fpregset): New functions.
1077
1078 * gnu-nat.c (gnu_find_memory_regions): New function.
1079 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
1080 (gnu_xfer_memory): Add a cast.
1081
1082 2002-04-24 Michael Snyder <msnyder@redhat.com>
1083
1084 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
1085 loop. Add handling for "str lr, [sp, #-4]!" and for saves
1086 of argument regs ("str r(0123), [r11, #-nn"]).
1087 (arm_skip_prologue): Better handling for frameless functions.
1088 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
1089 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
1090
1091 Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
1092
1093 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
1094 NUM_PSEUDO_REGS can be used.
1095
1096 2002-04-24 Andrew Cagney <ac131313@redhat.com>
1097
1098 * arch-utils.h: Update copyright.
1099
1100 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
1101 * gdbarch.h, gdbarch.c: Re-generate.
1102
1103 * inferior.h (IN_SIGTRAMP): Delete definition.
1104 * arch-utils.c (legacy_pc_in_sigtramp): New function.
1105 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
1106
1107 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
1108 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
1109 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
1110 (find_proc_framesize): Ditto.
1111 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
1112 (alpha_init_extra_frame_info): Ditto.
1113 * infrun.c (handle_inferior_event): Ditto.
1114 (handle_inferior_event): Ditto.
1115 (check_sigtramp2): Ditto.
1116 * blockframe.c (create_new_frame): Ditto.
1117 (get_prev_frame): Ditto.
1118 * ppc-linux-tdep.c: Update comments.
1119 * i386-linux-tdep.c: Update comments.
1120 * breakpoint.c (bpstat_what): Update comment.
1121
1122 2002-04-24 Michal Ludvig <mludvig@suse.cz>
1123
1124 * gdbserver/linux-low.c (regsets_fetch_inferior_registers),
1125 (regsets_store_inferior_registers): Removed cast to int from
1126 ptrace() calls.
1127 * gdbserver/regcache.h: Added declaration of struct inferior_info.
1128
1129 2002-04-24 David S. Miller <davem@redhat.com>
1130
1131 * i960-tdep.c (register_in_window_p): New function.
1132 (i960_find_saved_register): Use it instead of
1133 REGISTER_IN_WINDOW_P.
1134 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
1135
1136 * symtab.h (find_stab_function_addr): Kill extern.
1137 * minsyms.c (find_stab_function_addr): Remove from here...
1138 * dbxread.c: ... to here, and mark it static.
1139
1140 2002-04-20 David S. Miller <davem@redhat.com>
1141
1142 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
1143 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
1144
1145 2002-04-21 David S. Miller <davem@redhat.com>
1146
1147 * remote-vxsparc.c (vx_read_register): Fix typo, we want
1148 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
1149 (vx_write_register): Likewise.
1150
1151 2002-04-23 J. Brobecker <brobecker@gnat.com>
1152
1153 * source.c (is_regular_file): New function.
1154 (openp): Check wether file to open is a regular file
1155 to avoid opening directories.
1156
1157 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1158
1159 * findvar.c (extract_signed_integer): Cast printf argument
1160 to suppress format warning.
1161 (extract_unsigned_integer): Likewise.
1162 * infcmd.c (registers_info): Likewise.
1163 * top.c (get_prompt_1): Likewise.
1164 * valops.c (value_assign): Likewise.
1165 * valprint.c (print_decimal): Likewise.
1166
1167 2002-04-22 H.J. Lu (hjl@gnu.org)
1168
1169 * c-exp.y (typebase): Support
1170
1171 [long|long long|short] [signed|unsigned] [int|]
1172
1173 and
1174
1175 signed [long|long long|short] int
1176
1177 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1178
1179 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
1180 and vax-tdep.h.
1181 * vax-tdep.h: New file.
1182 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
1183 Make several routines static.
1184 (vax_get_saved_register): New function.
1185 (vax_gdbarch_init): New function.
1186 (_initialize_vax_tdep): Register vax_gdbarch_init.
1187 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
1188 Remove macros now under the control of gdbarch.
1189
1190 2002-04-22 Michael Snyder <msnyder@redhat.com>
1191
1192 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
1193 Some whitespace and coding standards tweaks.
1194
1195 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1196
1197 * vax-tdep.c: Include regcache.h.
1198 (vax_call_dummy_words): New.
1199 (sizeof_vax_call_dummy_words): New.
1200 (vax_fix_call_dummy): New function.
1201 (vax_saved_pc_after_call): Ditto.
1202 * config/vax/tm-vax.h: Don't include regcache.h.
1203 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
1204 (CALL_DUMMY): Remove.
1205 (CALL_DUMMY_WORDS): Define.
1206 (SIZEOF_CALL_DUMMY_WORDS): Define.
1207 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
1208
1209 2002-04-18 Michael Snyder <msnyder@redhat.com>
1210
1211 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
1212
1213 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1214
1215 * vax-tdep.c (vax_frame_chain): New function.
1216 (vax_push_dummy_frame): Ditto.
1217 (vax_pop_frame): Ditto.
1218 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
1219 (FRAMELESS_FUNCTION_INVOCATION): Use
1220 generic_frameless_function_invocation_not.
1221 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
1222 (POP_FRAME): Use vax_pop_frame.
1223
1224 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1225
1226 * vax-tdep.c (vax_store_struct_return): New function.
1227 (vax_extract_return_value): Ditto.
1228 (vax_store_return_value): Ditto.
1229 (vax_extract_struct_value_address): Ditto.
1230 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
1231 vax_store_struct_return.
1232 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
1233 (STORE_RETURN_VALUE): Use vax_store_return_value.
1234 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
1235
1236 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1237
1238 * vax-tdep.c (vax_frame_saved_pc): New function.
1239 (vax_frame_args_address_correct): Ditto.
1240 (vax_frame_args_address): Ditto.
1241 (vax_frame_locals_address): Ditto.
1242 (vax_frame_num_args): Move code to be in proximity to
1243 other frame-related functions.
1244 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
1245 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
1246 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
1247 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
1248 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
1249
1250 2002-04-22 H.J. Lu (hjl@gnu.org)
1251
1252 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
1253 includedir.
1254
1255 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1256
1257 * vax-tdep.c (vax_frame_init_saved_regs): New function.
1258 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
1259 (FRAME_INIT_SAVED_REGS): New macro.
1260
1261 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1262
1263 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
1264
1265 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1266
1267 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
1268 where needed.
1269 (fetch_osf_core_registers): Likewise.
1270 (supply_gregset): Likewise.
1271
1272 2002-04-22 J. Brobecker <brobecker@gnat.com>
1273
1274 * symfile.h (get_section_index): Define.
1275 * symfile.c (get_section_index): New function.
1276 * mdebugread.c (SC_IS_SBSS): New macro.
1277 (SC_IS_BSS): Return true for the scBss storage class only, as
1278 the scSBss storage class refers to the .sbss section.
1279 (parse_partial_symbols): Discard the symbols which associated
1280 section does not exist.
1281 Make sure to use the .sbss section index for symbols which
1282 storage class is scBss, rather than using the .bss section index.
1283
1284 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1285
1286 * vax-tdep.c: Update copyright years.
1287 (vax_register_name): New function.
1288 (vax_register_byte): Ditto.
1289 (vax_register_raw_size): Ditto.
1290 (vax_register_virtual_size): Ditto.
1291 (vax_register_virtual_type): Ditto.
1292 * config/vax/tm-vax.h: Update copyright years.
1293 (REGISTER_NAMES): Remove.
1294 (REGISTER_NAME): Define.
1295 (REGISTER_BYTE): Use vax_register_byte.
1296 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
1297 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
1298 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
1299
1300 2002-04-21 Andrew Cagney <ac131313@redhat.com>
1301
1302 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
1303 declaration
1304 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
1305
1306 2002-04-21 David S. Miller <davem@redhat.com>
1307
1308 * arch-utils.c (generic_prologue_frameless_p): Kill
1309 SKIP_PROLOGUE_FRAMELESS_P code.
1310 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
1311 references.
1312 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
1313 * arc-tdep.c (arc_prologue_frameless_p): Implement.
1314 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
1315 references.
1316 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
1317 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
1318 (sparc_gdbarch_init): Pass it to
1319 set_gdbarch_prologue_frameless_p.
1320
1321 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1322
1323 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
1324 (alphabsd-nat.o): New dependency list.
1325
1326 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1327
1328 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
1329 alphafbsd-tdep.c.
1330 (alpha-linux-tdep.o): New dependency list.
1331 (alphafbsd-tdep.o): Likewise.
1332
1333 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1334
1335 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
1336 to here...
1337 * alpha-tdep.c: ...from here.
1338 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
1339
1340 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1341
1342 * config/alpha/tm-alpha.h: Move alpha_software_single_step
1343 prototype from here...
1344 * alpha-tdep.h: ...to here.
1345
1346 2002-04-21 Andrew Cagney <ac131313@redhat.com>
1347
1348 * frame.h (selected_frame_level): Document as deprecated.
1349 (frame_relative_level): Declare.
1350 * stack.c (frame_relative_level): New function.
1351 (selected_frame_level): Document as deprecated.
1352 (select_frame): Do not set the selected_frame_level.
1353
1354 * stack.c (frame_info, record_selected_frame): Update.
1355 (frame_command, current_frame_command): Update.
1356 (up_silently_base, up_command, down_silently_base): Update.
1357 (down_command): Update.
1358 * inflow.c (kill_command): Update.
1359 * tracepoint.c (finish_tfind_command): Update.
1360 * corelow.c (core_open): Update.
1361 * thread.c (info_threads_command): Update.
1362 (do_captured_thread_select): Update.
1363 * infcmd.c (finish_command): Update.
1364 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
1365
1366 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1367
1368 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
1369
1370 2002-04-21 Andrew Cagney <ac131313@redhat.com>
1371
1372 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
1373 type const.
1374
1375 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1376
1377 * alphafbsd-tdep.c: Update copyright years. Include
1378 alpha-tdep.h.
1379 (alphafbsd_use_struct_convention): Make static.
1380 (alphafbsd_init_abi): New function.
1381 (_initialize_alphafbsd_tdep): New function.
1382 * config/alpha/tm-fbsd.h: Update copyright years.
1383 (USE_STRUCT_CONVENTION): Remove.
1384
1385 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1386
1387 * alpha-tdep.c (alpha_abi_handler): New structure to describe
1388 an Alpha ABI variant.
1389 (alpha_abi_handler_list): Declare.
1390 (alpha_gdbarch_register_os_abi): New function.
1391 (alpha_gdbarch_init): Give registered ABI variant handlers a
1392 chance to tweak the gdbarch once we have set up defaults.
1393 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
1394
1395 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1396
1397 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
1398 to standard_coerce_float_to_double.
1399 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
1400
1401 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1402
1403 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
1404 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
1405 from gdbarch_tdep rather than a constant.
1406 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
1407 the default text address for all Alpha Unix ABIs.
1408 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
1409 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
1410
1411 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1412
1413 * alpha-tdep.h: New file. Includes several Alpha target constants
1414 taken from...
1415 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
1416 let gdbarch deal with.
1417 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
1418 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
1419 to dependency list.
1420 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
1421 Alpha target register names.
1422 * alphabsd-nat.c: Likewise.
1423 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
1424 Alpha target register names. Make serveral routines static.
1425 (alpha_get_saved_register): New function.
1426 (alpha_abi_names): New.
1427 (process_note_abi_tag_sections): New function.
1428 (get_elfosabi): New function.
1429 (alpha_gdbarch_init): New function.
1430 (alpha_dump_tdep): New function.
1431 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
1432
1433 2002-04-21 Andrew Cagney <ac131313@redhat.com>
1434
1435 * frame.c (find_saved_register): Delete #ifdef
1436 HAVE_REGISTER_WINDOWS code.
1437 * config/sparc/tm-sparc.h: Update comments.
1438 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
1439
1440 2002-04-21 Andrew Cagney <ac131313@redhat.com>
1441
1442 * i960-tdep.c (i960_find_saved_register): New function.
1443 (i960_get_saved_register): New function.
1444 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
1445 (i960_get_saved_register): Declare.
1446 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
1447
1448 2002-04-20 David S. Miller <davem@redhat.com>
1449
1450 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
1451
1452 2002-04-20 Andrew Cagney <ac131313@redhat.com>
1453
1454 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
1455 instead of NUM_PSEUDO_REGS.
1456
1457 2002-04-20 David S. Miller <davem@redhat.com>
1458
1459 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
1460 GDB_MULTI_ARCH_PARTIAL
1461 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
1462 define, let tm-sp64.h do it.
1463
1464 2002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
1465
1466 * frame.c (find_saved_register): Avoid a NULL pointer
1467 dereference and actually walk the frame list.
1468
1469 2002-04-20 Andrew Cagney <ac131313@redhat.com>
1470
1471 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
1472 sorted in most most-recent-used order. Document.
1473 * gdbarch.h, gdbarch.c: Regenerate.
1474
1475 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
1476
1477 * gdbserver/inferiors.c (struct inferior_info): Add regcache_data.
1478 (add_inferior): Call create_register_cache.
1479 (clear_inferiors): Call free_register_cache.
1480 (inferior_regcache_data, set_inferior_regcache_data): New functions.
1481 * gdbserver/regcache.c (struct inferior_regcache_data): New.
1482 (registers): Remove.
1483 (get_regcache): New function.
1484 (create_register_cache, free_register_cache): New functions.
1485 (set_register_cache): Don't initialize the register cache here.
1486 (registers_to_string, registers_from_string, register_data): Call
1487 get_regcache.
1488 * gdbserver/regcache.h: Add prototypes.
1489 * gdbserver/server.h: Likewise.
1490
1491 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
1492
1493 * gdbserver/mem-break.c: New file.
1494 * gdbserver/mem-break.h: New file.
1495 * gdbserver/Makefile.in: Add mem-break.o rule; update server.h
1496 dependencies.
1497 * gdbserver/inferiors.c (struct inferior_info): Add target_data
1498 member.
1499 (clear_inferiors): Free target_data member if set.
1500 (inferior_target_data, set_inferior_target_data): New functions.
1501 * gdbserver/linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
1502 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
1503 * gdbserver/linux-low.c (linux_bp_reinsert): New variable.
1504 (struct inferior_linux_data): New.
1505 (linux_create_inferior): Use set_inferior_target_data.
1506 (linux_attach): Likewise. Call add_inferior.
1507 (linux_wait_for_one_inferior): New function.
1508 (linux_wait): Call it.
1509 (linux_write_memory): Add const.
1510 (initialize_low): Call set_breakpoint_data.
1511 * gdbserver/linux-low.h (struct linux_target_ops): Add breakpoint
1512 handling members.
1513 * gdbserver/server.c (attach_inferior): Remove extra add_inferior
1514 call.
1515 * gdbserver/server.h: Include mem-break.h. Update inferior.c
1516 prototypes.
1517 * gdbserver/target.c (read_inferior_memory)
1518 (write_inferior_memory): New functions.
1519 * gdbserver/target.h (read_inferior_memory)
1520 (write_inferior_memory): Change macros to prototypes.
1521 (struct target_ops): Update comments. Add const to write_memory
1522 definition.
1523
1524 2002-04-19 Andrew Cagney <ac131313@redhat.com>
1525
1526 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
1527 instead of ->prev.
1528 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
1529 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
1530 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
1531 instead of ->prev.
1532
1533 2002-04-19 Elena Zannoni <ezannoni@redhat.com>
1534
1535 Fix PR gdb/471.
1536 * gdbtypes.c (init_simd_type): Rewrite using new functions.
1537 (build_builtin_type_vec128): Ditto.
1538 (append_composite_type_field): Fix calculation of type length in
1539 union case.
1540
1541 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
1542
1543 * config/djgpp/README: Update.
1544
1545 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
1546 compiler warnings.
1547
1548 2002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
1549
1550 * alpha-tdep.c (setup_arbitrary_frame): Rename...
1551 (alpha_setup_arbitrary_frame): ...to this.
1552 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
1553 for alpha_setup_arbitrary_frame.
1554
1555 2002-04-18 Andrew Cagney <cagney@redhat.com>
1556
1557 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
1558 * gdbarch.h, gdbarch.c: Regenerate.
1559
1560 * defs.h (breakpoint_from_pc_fn): Delete type definition.
1561 * target.h (memory_breakpoint_from_pc): Update declaration.
1562 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
1563
1564 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
1565 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
1566 * mem-break.c (memory_breakpoint_from_pc): Ditto.
1567 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
1568 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
1569 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
1570 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
1571 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
1572 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
1573 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
1574 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
1575 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
1576
1577 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
1578 const pointer.
1579 * monitor.c (monitor_insert_breakpoint): Ditto.
1580 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
1581
1582 * config/mcore/tm-mcore.h: Update copyright.
1583 * mem-break.c: Ditto.
1584 * xstormy16-tdep.c: Ditto.
1585
1586 2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
1587
1588 * p-exp.y: Add precedence rule for '^' token.
1589 This removes the shift/reduce conflicts.
1590 Remove the comment concerning these shift/reduce conflicts.
1591
1592 2002-04-18 Elena Zannoni <ezannoni@redhat.com>
1593
1594 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
1595 (registers_powerpc_nofp): New register set for processors
1596 without floating point unit.
1597
1598 2002-04-18 David S. Miller <davem@redhat.com>
1599
1600 * MAINTAINERS: Add myself to write-after-approval.
1601
1602 2002-04-17 Michael Snyder <msnyder@redhat.com>
1603
1604 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
1605
1606 2002-04-17 Andrew Cagney <ac131313@redhat.com>
1607
1608 * rs6000-tdep.c (frame_initial_stack_address): Use
1609 frame_register_read to read the alloca_reg.
1610
1611 2002-04-17 Andrew Cagney <ac131313@redhat.com>
1612
1613 * frame.c (find_saved_register): Find saved registers in the next
1614 not prev frame.
1615 Fix PR gdb/365.
1616
1617 2002-04-17 Andrew Cagney <ac131313@redhat.com>
1618
1619 * gdbarch.sh (LANG): Set to ``c''.
1620
1621 2002-04-15 Andrew Cagney <ac131313@redhat.com>
1622
1623 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
1624
1625 2002-04-15 Andrew Cagney <ac131313@redhat.com>
1626
1627 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
1628 Update copyright.
1629
1630 * hpread.c (hpread_get_lntt): Add declaration.
1631 Also fix PR gdb/391.
1632
1633 2002-04-14 Andrew Cagney <ac131313@redhat.com>
1634
1635 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
1636 * aclocal.m4, configure: Re-generate.
1637 Fix PR gdb/391.
1638
1639 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
1640
1641 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
1642 instead of tm_print_insn.
1643
1644 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
1645
1646 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
1647
1648 2002-04-14 Andrew Cagney <ac131313@redhat.com>
1649
1650 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
1651 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
1652 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
1653
1654 2002-04-12 Don Howard <dhoward@redhat.com>
1655
1656 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
1657 max_user_call_depth.
1658 (init_cmd_lists): Initialize the new value;
1659 * cli/cli-script.c (execute_user_command): Limit the call depth of
1660 user defined commands. This avoids a core-dump when user commands
1661 are infinitly recursive.
1662
1663 2002-04-12 Kevin Buettner <kevinb@redhat.com>
1664
1665 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
1666 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
1667 from tdep struct instead of DEFAULT_LR_SAVE.
1668 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
1669 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
1670 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
1671
1672 2002-04-12 Michael Snyder <msnyder@redhat.com>
1673
1674 * Remote.c: Spelling fix.
1675 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
1676 If no symbol found for "sbrk", try "_sbrk".
1677 (make_output_phdrs): Use bfd_section_name.
1678 (gcore_copy_callback): Use bfd_section_name.
1679 * eval.c: Indentation fix-ups.
1680 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
1681 in case it gets applied to an address that is already
1682 in the instruction space.
1683 * cli/cli-decode.c (help_list): Allow long lines to wrap.
1684 * symfile.c: Fix indentation, long lines.
1685 * source.c: White space fix-up.
1686
1687 2002-04-12 Andrew Cagney <cagney@redhat.com>
1688
1689 * defs.h (read_relative_register_raw_bytes): Delete declaration.
1690 * frame.c (frame_register_read): New function. Return non-zero on
1691 success.
1692 (read_relative_register_raw_bytes_for_frame): Delete.
1693 (read_relative_register_raw_bytes): Delete.
1694 * frame.h (frame_register_read): Declare.
1695 * d30v-tdep.c: Update Copyright. Use frame_register_read.
1696 * sh-tdep.c: Ditto.
1697 * infcmd.c (do_registers_info): Ditto.
1698 * hppa-tdep.c: Ditto.
1699 * rs6000-tdep.c: Ditto.
1700 * h8500-tdep.c: Ditto.
1701 * mips-tdep.c: Ditto.
1702 * h8300-tdep.c: Ditto.
1703 * z8k-tdep.c: Ditto.
1704
1705 2002-04-12 Kevin Buettner <kevinb@redhat.com>
1706
1707 From Jimi X <jimix@watson.ibm.com>:
1708 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
1709 64-bit SysV ABI.
1710
1711 2002-04-12 Kevin Buettner <kevinb@redhat.com>
1712
1713 From Jimi X <jimix@watson.ibm.com>:
1714 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
1715 bfd info.
1716
1717 2002-04-12 Kevin Buettner <kevinb@redhat.com>
1718
1719 From Jimi X <jimix@watson.ibm.com>:
1720 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
1721 register sets for these processor variants.
1722
1723 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
1724
1725 * gdbserver/linux-low.c (usr_store_inferior_registers): Support
1726 registers which are allowed to fail to store.
1727 * gdbserver/linux-low.h (linux_target_ops): Likewise.
1728 * gdbserver/linux-ppc-low.c (ppc_regmap): Support FPSCR.
1729 (ppc_cannot_store_register): FPSCR may not be storable.
1730 * regformats/reg-ppc.dat: Support FPSCR.
1731
1732 2002-04-11 Kevin Buettner <kevinb@redhat.com>
1733
1734 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
1735 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
1736 Add fpscr as an invalid/unfetchable register.
1737 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
1738 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
1739 (fill_fpregset): Add support for register fpscr.
1740 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
1741 (fill_gregset): Account for the fact that register ``mq'' might
1742 not exist.
1743 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
1744 (registers_power): Add fpscr to register set at slot 71.
1745 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
1746 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
1747
1748 2002-04-11 Michael Snyder <msnyder@redhat.com>
1749
1750 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
1751 * configure: Regenerate.
1752 * config.in: Regenerate.
1753 * acconfig.h: Add define for _SYSCALL32.
1754 * core-sol2.c: Remove #define _SYSCALL32.
1755 * solib-legacy.c: Remove #define _SYSCALL32.
1756
1757 2002-04-10 Andrew Cagney <ac131313@redhat.com>
1758
1759 * stack.c (select_frame): Cleanup internal error message, do not
1760 use %p.
1761
1762 2002-04-10 Andrew Cagney <ac131313@redhat.com>
1763
1764 * stack.c (select_frame): Check that selected_frame and the
1765 specified level are as expected.
1766 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
1767 Update copyright.
1768 * frame.h (struct frame_info): Add field `level'. Update
1769 copyright.
1770 Work-in-progress PR gdb/464.
1771
1772 2002-04-10 Andrew Cagney <ac131313@redhat.com>
1773
1774 * maint.c (maint_print_section_info): Rename print_section_info.
1775 (print_bfd_section_info, print_objfile_section_info): Update.
1776 * inferior.h (struct gdbarch): Add opaque declaration.
1777 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
1778 * gdbarch.h: Regenerate.
1779
1780 2002-04-10 Michal Ludvig <mludvig@suse.cz>
1781
1782 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
1783 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
1784 (kernel_u_size): Added.
1785 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
1786 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
1787
1788 2002-04-04 Jim Ingham <jingham@apple.com>
1789
1790 * valarith.c (find_size_for_pointer_math): New function, either returns
1791 the size for a pointer's target, returns 1 for void *, or errors for
1792 incomplete types.
1793 (value_add, value_sub): use find_size_for_pointer_math.
1794
1795 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
1796
1797 * linux-low.c (linux_look_up_symbols): New hook.
1798 (linux_target_ops): Add linux_look_up_symbols.
1799 * remote-utils.c (decode_address): New function.
1800 (look_up_one_symbol): New function.
1801 * server.c (handle_query): Call target look_up_symbols hook.
1802 * server.h (look_up_one_symbol): Add prototype.
1803 * target.h (struct target_ops): Add look_up_symbols hook.
1804
1805 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
1806
1807 * gdbserver/server.h: Include <string.h> if HAVE_STRING_H.
1808 * ChangeLog: Correct paths in last ChangeLog entry.
1809
1810 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
1811
1812 * gdbserver/linux-low.h: Remove obsolete prototypes.
1813 (struct linux_target_ops): New.
1814 (extern the_low_target): New.
1815 * gdbserver/linux-low.c (num_regs, regmap): Remove declarations.
1816 (register_addr): Use the_low_target explicitly.
1817 (fetch_register): Likewise.
1818 (usr_fetch_inferior_registers): Likewise.
1819 (usr_store_inferior_registers): Likewise.
1820 * gdbserver/linux-arm-low.c (num_regs): Remove.
1821 (arm_num_regs): Define.
1822 (arm_regmap): Renamed from regmap, made static.
1823 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
1824 made static.
1825 (arm_cannot_store_register): Renamed from cannot_store_register,
1826 made static.
1827 (the_low_target): New.
1828 * gdbserver/linux-i386-low.c (num_regs): Remove.
1829 (i386_num_regs): Define.
1830 (i386_regmap): Renamed from regmap, made static.
1831 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
1832 made static.
1833 (i386_cannot_store_register): Renamed from cannot_store_register,
1834 made static.
1835 (the_low_target): New.
1836 * gdbserver/linux-ia64-low.c (num_regs): Remove.
1837 (ia64_num_regs): Define.
1838 (ia64_regmap): Renamed from regmap, made static.
1839 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
1840 made static.
1841 (ia64_cannot_store_register): Renamed from cannot_store_register,
1842 made static.
1843 (the_low_target): New.
1844 * gdbserver/linux-m68k-low.c (num_regs): Remove.
1845 (m68k_num_regs): Define.
1846 (m68k_regmap): Renamed from regmap, made static.
1847 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
1848 made static.
1849 (m68k_cannot_store_register): Renamed from cannot_store_register,
1850 made static.
1851 (the_low_target): New.
1852 * gdbserver/linux-mips-low.c (num_regs): Remove.
1853 (mips_num_regs): Define.
1854 (mips_regmap): Renamed from regmap, made static.
1855 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
1856 made static.
1857 (mips_cannot_store_register): Renamed from cannot_store_register,
1858 made static.
1859 (the_low_target): New.
1860 * gdbserver/linux-ppc-low.c (num_regs): Remove.
1861 (ppc_num_regs): Define.
1862 (ppc_regmap): Renamed from regmap, made static.
1863 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
1864 made static.
1865 (ppc_cannot_store_register): Renamed from cannot_store_register,
1866 made static.
1867 (the_low_target): New.
1868 * gdbserver/linux-s390-low.c (num_regs): Remove.
1869 (s390_num_regs): Define.
1870 (s390_regmap): Renamed from regmap, made static.
1871 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
1872 made static.
1873 (s390_cannot_store_register): Renamed from cannot_store_register,
1874 made static.
1875 (the_low_target): New.
1876 * gdbserver/linux-sh-low.c (num_regs): Remove.
1877 (sh_num_regs): Define.
1878 (sh_regmap): Renamed from regmap, made static.
1879 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
1880 made static.
1881 (sh_cannot_store_register): Renamed from cannot_store_register,
1882 made static.
1883 (the_low_target): New.
1884 * gdbserver/linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
1885 (the_low_target): New.
1886
1887 2002-04-09 Andrew Cagney <ac131313@redhat.com>
1888
1889 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
1890 override FP_REGNUM with frame->fp. Update copyright.
1891 * parse.c (num_std_regs, std_regs): Delete.
1892 (target_map_name_to_register): Do not search std_regs. Update
1893 function description.
1894 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
1895 declarations. Update copyright.
1896 Fix PR gdb/251.
1897
1898 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
1899
1900 * gdbserver/Makefile.in: Add stamp-h target.
1901 * gdbserver/configure.in: Create stamp-h.
1902 * gdbserver/configure: Regenerated.
1903
1904 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
1905
1906 * gdbserver/inferiors.c: New file.
1907 * gdbserver/target.c: New file.
1908 * gdbserver/target.h: New file.
1909 * gdbserver/Makefile.in: Add target.o and inferiors.o. Update
1910 dependencies.
1911 * gdbserver/linux-low.c (inferior_pid): New static variable,
1912 moved from server.c.
1913 (linux_create_inferior): Renamed from create_inferior.
1914 Call add_inferior. Return 0 on success instead of a PID.
1915 (linux_attach): Renamed from myattach.
1916 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
1917 (linux_thread_alive): Renamed from mythread_alive.
1918 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
1919 child dies.
1920 (linux_resume): Renamed from myresume. Add missing ``return 0''.
1921 (regsets_store_inferior_registers): Correct error message.
1922 Add missing ``return 0''.
1923 (linux_fetch_registers): Renamed from fetch_inferior_registers.
1924 (linux_store_registers): Renamed from store_inferior_registers.
1925 (linux_read_memory): Renamed from read_inferior_memory.
1926 (linux_write_memory): Renamed from write_inferior_memory.
1927 (linux_target_ops): New structure.
1928 (initialize_low): Call set_target_ops ().
1929 * gdbserver/remote-utils.c (unhexify): New function.
1930 (hexify): New function.
1931 (input_interrupt): Send signals to ``signal_pid''.
1932 * gdbserver/server.c (inferior_pid): Remove.
1933 (start_inferior): Update create_inferior call.
1934 (attach_inferior): Call add_inferior.
1935 (handle_query): New function.
1936 (main): Call handle_query for `q' packets.
1937 * gdbserver/server.h: Include "target.h". Remove obsolete prototypes.
1938 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
1939
1940 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
1941
1942 * gdbserver/Makefile.in: Add WARN_CFLAGS. Update configury
1943 dependencies.
1944 * gdbserver/configure.in: Check for <string.h>
1945 * gdbserver/configure: Regenerate.
1946 * gdbserver/config.in: Regenerate.
1947 * gdbserver/gdbreplay.c: Include needed system headers.
1948 (remote_open): Remove strchr prototype.
1949 * gdbserver/linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
1950 * gdbserver/regcache.c (supply_register): Change buf argument to const void *.
1951 (supply_register_by_name): Likewise.
1952 (collect_register): Change buf argument to void *.
1953 (collect_register_by_name): Likewise.
1954 * gdbserver/regcache.h: Add missing prototypes.
1955 * gdbserver/remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
1956 * gdbserver/server.c (handle_query): New function.
1957 (attached): New static variable, moved out of main.
1958 (main): Quiet longjmp clobber warnings.
1959 * gdbserver/server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
1960 * gdbserver/utils.c (error): Remove NORETURN.
1961 (fatal): Likewise.
1962
1963 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
1964
1965 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
1966 after the last symbol in a block.
1967
1968 2002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
1969
1970 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
1971 is non zero as a found symbol.
1972
1973 2002-04-08 Andrew Cagney <ac131313@redhat.com>
1974
1975 * findvar.c: Include "builtin-regs.h".
1976 (value_of_register): Call value_of_builtin_reg when applicable.
1977 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
1978 (target_map_name_to_register): Call
1979 builtin_reg_map_name_to_regnum.
1980 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
1981 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
1982 (builtin_regs_h): Define.
1983 (builtin-regs.o): New target.
1984 (findvar.o): Add $(builtin_regs_h).
1985 * builtin-regs.c, builtin-regs.h: New files.
1986 * std-regs.c: New file.
1987 Partial fix for PR gdb/251.
1988
1989 2002-04-08 Kevin Buettner <kevinb@redhat.com>
1990
1991 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
1992 it's no longer required.
1993
1994 2002-04-08 Andrew Cagney <ac131313@redhat.com>
1995
1996 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
1997
1998 2002-04-08 Kevin Buettner <kevinb@redhat.com>
1999
2000 From Jimi X <jimix@watson.ibm.com>:
2001 * rs6000-tdep.c (rs6000_software_single_step): Use
2002 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
2003 and size. Use target_insert_breakpoint() and
2004 target_remove_breakpoint() to insert and remove breakpoints
2005 instead of explicit memory reads and writes.
2006
2007 2002-04-08 Kevin Buettner <kevinb@redhat.com>
2008
2009 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
2010 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
2011 ELF_OBJECT_FORMAT ifdef.
2012
2013 2002-04-08 Kevin Buettner <kevinb@redhat.com>
2014
2015 From Jimi X <jimix@watson.ibm.com>:
2016 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
2017
2018 2002-04-08 Kevin Buettner <kevinb@redhat.com>
2019
2020 From Jimi X <jimix@watson.ibm.com>:
2021 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
2022 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
2023
2024 2002-04-07 Mark Kettenis <kettenis@gnu.org>
2025
2026 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
2027 s/asprintf/xasprintf/.
2028 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
2029
2030 2002-04-07 Andrew Cagney <ac131313@redhat.com>
2031
2032 I believe Jeff Law denies responsability for this one:
2033 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
2034 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
2035 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
2036 Work-around for PR gdb/366.
2037
2038 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
2039
2040 * remote-e7000.c (write_small, e7000_read_inferior_memory,
2041 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
2042 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
2043
2044 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
2045
2046 * sh-tdep.c (sh_fp_frame_init_saved_regs,
2047 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
2048 information.
2049
2050 2002-04-07 Andrew Cagney <ac131313@redhat.com>
2051
2052 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
2053 maintainer.
2054
2055 2002-04-07 Andrew Cagney <ac131313@redhat.com>
2056
2057 * README (Reporting Bugs in GDB): Document the bug web page as the
2058 prefered way of submitting bugs.
2059 Fix PR gdb/402.
2060
2061 2002-04-06 Andrew Cagney <ac131313@redhat.com>
2062
2063 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
2064 -1. Update comment.
2065 * gdbarch.h, gdbarch.c: Re-generate.
2066
2067 2002-04-07 Andreas Schwab <schwab@suse.de>
2068
2069 * m68klinux-nat.c (fill_fpregset): Properly pass address of
2070 buffer to regcache_collect.
2071
2072 2002-04-06 Andrew Cagney <ac131313@redhat.com>
2073
2074 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
2075 * gdbarch.c, gdbarch.h: Re-generate.
2076
2077 2002-04-06 Andrew Cagney <ac131313@redhat.com>
2078
2079 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
2080 declaration. Fix -Werror.
2081
2082 2002-04-05 Daniel Jacobowitz <drow@mvista.com>
2083
2084 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
2085 * gdbarch.c: Regenerate.
2086
2087 2002-04-05 Michael Snyder <msnyder@redhat.com>
2088
2089 * breakpoint.c (clear_command): Rewrite middle section to
2090 combine two loops with identical control conditions.
2091 Add a cleanup to eliminate a memory leak.
2092 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
2093
2094 2002-04-05 H.J. Lu (hjl@gnu.org)
2095
2096 * solib-svr4.c (bkpt_names): Add "__start".
2097
2098 2002-04-04 Andrew Cagney <ac131313@redhat.com>
2099
2100 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
2101 as test for 64 bit target.
2102
2103 2002-04-05 Andrew Cagney <ac131313@redhat.com>
2104
2105 * h8500-tdep.c (h8500_write_fp): Delete function.
2106 * dwarf2cfi.c (cfi_write_fp): Document as not used.
2107 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
2108 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
2109 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
2110 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
2111 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
2112 (s390_write_fp):
2113 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
2114 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
2115 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
2116 (d10v_write_fp): Delete function.
2117 * inferior.h (write_fp, generic_target_write_fp): Delete
2118 declarations.
2119 * regcache.c (generic_target_write_fp): Delete function.
2120 (write_fp): Delete function.
2121 * gdbarch.sh (TARGET_WRITE_FP): Delete.
2122 * gdbarch.h, gdbarch.c: Regenerate.
2123 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
2124 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
2125 (sparc64_write_fp): Delete declaration.
2126 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
2127 (h8500_write_fp): Delete declaration.
2128
2129 2002-04-04 Andrew Cagney <ac131313@redhat.com>
2130
2131 * sparc-tdep.c (sparc64_write_fp): Delete.
2132 (sparc_push_dummy_frame): Replace write_fp call with code to store
2133 the FP directly.
2134 (sparc_gdbarch_init): Do not initialize write_fp.
2135
2136 2002-04-05 Kevin Buettner <kevinb@redhat.com>
2137
2138 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
2139 clause.
2140
2141 2002-03-29 Jim Blandy <jimb@redhat.com>
2142
2143 * stack.c (get_selected_block): Add new argument `addr_in_block',
2144 used to return the exact code address we used to select the block,
2145 not just the block.
2146 * blockframe.c (get_frame_block, get_current_block): Same.
2147 * frame.h (get_frame_block, get_current_block,
2148 get_selected_block): Update declarations.
2149 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
2150 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
2151
2152 2002-04-05 Michael Snyder <msnyder@redhat.com>
2153
2154 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
2155 warning message.
2156
2157 2002-04-05 J. Brobecker <brobecker@gnat.com>
2158
2159 * utils.c (xfullpath): New function.
2160 * defs.h (xfullpath): Add declaration.
2161 * source.c (openp): Use xfullpath in place of gdb_realpath to
2162 avoid resolving the basename part of filenames when the
2163 associated file is a symbolic link. This fixes a potential
2164 inconsistency between the filenames known to GDB and the
2165 filenames it prints in the annotations.
2166 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
2167 to be able to match a filename with either the real filename, or
2168 the name of any symbolic link to this file.
2169 (lookup_partial_symtab): Ditto.
2170
2171 2002-04-04 Michael Snyder <msnyder@redhat.com>
2172
2173 * breakpoint.c: Add support for hardware breakpoints in overlays.
2174 (overlay_events_enabled): New state variable.
2175 (insert_breakpoints): Use overlay_events_enabled to decide
2176 whether to attempt to set a breakpoint at the overlay load addr.
2177 Handle bp_hardware_breakpoint as well as bp_breakpoint.
2178 (remove_breakpoint): Use overlay_events_enabled to decide
2179 whether breakpoints need to be removed from overlay load addr.
2180 Handle bp_hardware_breakpoint as well as bp_breakpoint.
2181 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
2182 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
2183 disable_overlay_breakpoints): Update overlay_events_enabled.
2184
2185 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
2186
2187 * dwarf2read.c (struct function_range): New.
2188 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
2189 (check_cu_functions): New.
2190 (read_file_scope): Initialize global function lists.
2191 Call dwarf_decode_line after processing children.
2192 (read_func_scope): Add to global function list.
2193 (dwarf_decode_lines): Call check_cu_functions everywhere
2194 record_line is called. Call record_line with a linenumber
2195 of 0 to mark sequence ends.
2196
2197 2002-04-04 Michal Ludvig <mludvig@suse.cz>
2198
2199 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
2200 change sync with glibc.
2201
2202 2002-04-03 Jim Blandy <jimb@redhat.com>
2203
2204 * configure.in: Call AC_C_INLINE.
2205 * configure: Regenerated.
2206
2207 2002-04-01 Daniel Jacobowitz <drow@mvista.com>
2208
2209 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
2210 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
2211
2212 2002-03-31 Mark Kettenis <kettenis@gnu.org>
2213
2214 * NEWS: Mention gcore support on FreeBSD/i386.
2215
2216 * fbsd-proc.c: New file.
2217 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
2218 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
2219
2220 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
2221 while statement.
2222
2223 2002-03-29 Jim Blandy <jimb@redhat.com>
2224
2225 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
2226 unescaped newlines in string literals, but newer ones don't. So
2227 escape them.
2228
2229 2002-03-26 Michael Snyder <msnyder@redhat.com>
2230 Andrew Cagney <cagney@redhat.com>
2231
2232 * cli/cli-dump.c: New file. Dump memory to file,
2233 restore file to memory.
2234 * cli/cli-dump.h: New file.
2235 * Makefile.in: Add rules, dependencies for cli-dump.o.
2236 * NEWS: Mention new commands.
2237
2238 2002-03-28 Michael Snyder <msnyder@redhat.com>
2239
2240 * symfile.c (symbol_file_add): Move test for null symbols to later.
2241
2242 2002-03-27 Andrew Cagney <ac131313@redhat.com>
2243
2244 From veksler at il.ibm.com:
2245 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
2246 the xstrduped original path.
2247 Fix PR gdb/417.
2248
2249 2002-03-27 Michael Snyder <msnyder@redhat.com>
2250
2251 * breakpoint.c (_initialize_breakpoint): Clean up help string.
2252 * infcmd.c (_initialize_infcmd): Ditto.
2253 * language.c (_initialize_language): Ditto.
2254 * symfile.c (_initialize_symfile): Ditto.
2255 * top.c (_init_main): Ditto.
2256 * cli/cli-cmds.c (init_cli_cmds): Ditto.
2257
2258 2002-03-27 Elena Zannoni <ezannoni@redhat.com>
2259
2260 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
2261 vector registers handling.
2262 (skip_prologue): Handle new AltiVec instructions. Fill in new
2263 fields of frame data.
2264 (frame_get_saved_regs): Fill in information for AltiVec registers.
2265
2266 2002-03-27 Jim Blandy <jimb@redhat.com>
2267
2268 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
2269 a function; leave this macro here to invoke that function.
2270 (symbol_init_mangled_name): Declaration for that function.
2271 * symtab.c (symbol_init_mangled_name): New function.
2272
2273 2002-03-27 Andrew Cagney <ac131313@redhat.com>
2274
2275 * valarith.c: Replace strerror with safe_strerror.
2276 * tracepoint.c: Ditto.
2277 * lin-lwp.c: Ditto.
2278 * go32-nat.c: Ditto.
2279 * inflow.c: Ditto.
2280 * gnu-nat.c: Ditto.
2281
2282 2002-03-27 Andreas Schwab <schwab@suse.de>
2283
2284 * event-top.c (command_line_handler): Remove useless if.
2285
2286 2002-03-27 Andreas Jaeger <aj@suse.de>
2287
2288 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
2289 comment.
2290
2291 2002-03-27 Michal Ludvig <mludvig@suse.cz>
2292
2293 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
2294 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
2295 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
2296 (x86_64_linux_dr_get_status, supply_gregset),
2297 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
2298 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
2299 (x86_64_register_info_table): Add.
2300 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
2301 (x86_64_register_raw_size, x86_64_register_virtual_type),
2302 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
2303 general x86_64_register_info_table.
2304 (i386_gdbarch_init): gdbarch_register_bytes is now set
2305 dynamicaly during initialization.
2306 * regformats/reg-x86-64.dat: Synced with changes to registers above.
2307 * gdbserver/linux-x86-64-low.c: Ditto.
2308
2309 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
2310
2311 * gdbserver/server.c (main): Call target_signal_to_host_p
2312 and target_signal_to_host on signals received from the remote.
2313 * gdbserver/remote-utils.c (prepare_resume_reply): Call
2314 target_signal_from_host on signals sent to the remote.
2315 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
2316 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
2317
2318 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
2319
2320 * signals/signals.c: Include "server.h" in gdbserver build.
2321 (target_signal_from_name): Don't use STREQ.
2322 (_initialize_signals): Likewise. Don't include function in
2323 gdbserver build.
2324
2325 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
2326
2327 * signals.c: Moved to...
2328 * signals/signals.c: Here.
2329 * Makefile (signals.o): Update.
2330
2331 2002-03-26 Jeff Law (law@redhat.com)
2332
2333 * somread.c (som_symtab_read): Remove some commented out code and
2334 updated related comments. Do not set the minimal symbol table to
2335 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
2336 in a dynamic executable.
2337 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
2338 where we are unable to find the minimal symbol for the given
2339 PC value.
2340
2341 2002-03-25 Jeff Law (law@redhat.com)
2342
2343 * linux-proc.c (read_mapping): Scan up to end of line for filename.
2344
2345 2002-03-25 Michal Ludvig <mludvig@suse.cz>
2346
2347 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
2348
2349 2002-03-23 Andrew Cagney <ac131313@redhat.com>
2350
2351 * command.h: Update copyright.
2352 (struct cmd_list_element): Replace definition with opaque
2353 declaration.
2354 (enum cmd_types): Document that it will eventually be moved to
2355 cli/cli-decode.h
2356 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
2357 (MALLOCED_REPLACEMENT): Delete macro.
2358 * Makefile.in (cli_decode_h): Add $(command_h).
2359 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
2360 * top.c: Include "cli/cli-decode.h".
2361 * completer.c: Include "cli/cli-decode.h".
2362 * maint.c: Include "cli/cli-decode.h".
2363 * cli/cli-decode.h: Include "command.h".
2364 (enum command_class): Delete.
2365 (enum cmd_types): Comment out.
2366 (enum cmd_auto_boolean): Delete.
2367 (enum var_types): Delete.
2368
2369 2002-03-23 Andrew Cagney <ac131313@redhat.com>
2370
2371 * cli/cli-decode.c: Include "gdb_assert.h".
2372 (add_set_or_show_cmd): New static function.
2373 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
2374 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
2375 all fields, such as func, from the set command.
2376
2377 2002-03-23 Andrew Cagney <ac131313@redhat.com>
2378
2379 * MAINTAINERS (sh-elf): Change warning flag to -w.
2380
2381 2002-03-23 Andrew Cagney <cagney@redhat.com>
2382
2383 * defs.h (error): Add printf format attribute.
2384 * thread-db.c (thread_from_lwp): Fix error format string.
2385 * stack.c (parse_frame_specification): Ditto.
2386 * cli/cli-decode.c (undef_cmd_error): Ditto.
2387 * scm-lang.c (scm_lookup_name): Ditto.
2388 * tracepoint.c (trace_error): Ditto.
2389 * remote-utils.c (usage): Ditto.
2390 * remote.c (compare_sections_command): Ditto.
2391 Fix PR gdb/328.
2392
2393 2002-03-22 Andrew Cagney <ac131313@redhat.com>
2394
2395 * gdbtypes.c (append_composite_type_field): New function.
2396 (init_composite_type): New function.
2397 * gdbtypes.h (append_composite_type_field): Declare.
2398 (init_composite_type): Ditto.
2399
2400 2002-03-22 Elena Zannoni <ezannoni@redhat.com>
2401
2402 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
2403 function.
2404 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
2405 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
2406 structure returning convention for SYSV ABI case, but not
2407 for GNU/Linux, FreeBSD, or NetBSD.
2408
2409 2002-03-22 Daniel Jacobowitz <drow@mvista.com>
2410
2411 * symtab.h (lookup_block_symbol): Add mangled_name argument
2412 to prototype.
2413
2414 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
2415 with new mangled_name argument.
2416 * linespec.c (decode_line_1): Likewise.
2417 * valops (value_of_this): Likewise.
2418 * symtab.c (lookup_transparent_type): Likewise.
2419 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
2420 (lookup_symbol): If we are given a mangled name, pass it down
2421 to lookup_symbol_aux.
2422 (lookup_block_symbol): If we are given a mangled name to check
2423 against, only return symbols which match it.
2424
2425 2002-03-22 Christopher Faylor <cgf@redhat.com>
2426
2427 * win32-nat.c (child_create_inferior): Check for proper shell to use
2428 here, in case the user changes it on the fly.
2429 (_initialize_inftarg): Remove shell path considerations.
2430
2431 2002-03-21 Elena Zannoni <ezannoni@redhat.com>
2432
2433 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
2434 for gdbarch_max_register_raw_size and max_register_virtual_size.
2435 Adjust copyright year.
2436
2437 2002-03-21 Daniel Jacobowitz <drow@mvista.com>
2438
2439 * dbxread.c (process_one_symbol): Extend the first N_SLINE
2440 in a function to cover the entire beginning of the function
2441 as well if it does not already.
2442
2443 2002-03-21 Tom Rix <trix@redhat.com>
2444
2445 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
2446 (rs6000_ptrace64): Renamed from ptrace64.
2447
2448 2002-03-20 Martin M. Hunt <hunt@redhat.com>
2449
2450 * gdbserver/remote-utils.c (remote_open): Don't call
2451 getprotobyname, we're all using TCP here so just use
2452 IPPROTO_TCP.
2453 * gdbserver/gdbreplay.c (remote_open): Ditto.
2454
2455 2002-03-20 Martin M. Hunt <hunt@redhat.com>
2456
2457 * regcache.c (_initialize_regcache): No need to call
2458 build_regcache() at this time; it gets called whenever
2459 the gdbarch changes.
2460
2461 2002-03-20 David O'Brien <obrien@FreeBSD.org>
2462
2463 * sparc-nat.c: Include sys/param.h where possible.
2464
2465 2002-03-20 Daniel Jacobowitz <drow@mvista.com>
2466
2467 Fix PR gdb/422.
2468 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
2469 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
2470 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
2471 complex types.
2472 * stabsread.c (rs6000_builtin_type): Likewise.
2473 (read_sun_floating_type): Likewise.
2474
2475 2002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
2476
2477 * stabsread.c (read_member_functions): Remove skip code for duplicate
2478 constructor/destructor methods. Use standard parsing for these
2479 methods and just do not chain them to the list of methods after
2480 parsing.
2481
2482 2002-03-19 Alexandre Oliva <aoliva@redhat.com>
2483
2484 * coffread.c: Remove redundant static declarations. Replace
2485 occurrences of `PTR' with `void *'.
2486 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
2487 * top.h (quit_cover): Likewise.
2488 * defs.h (catch_errors): Likewise.
2489
2490 2002-03-18 Andrew Cagney <ac131313@redhat.com>
2491
2492 * defs.h (XMALLOC): Define.
2493 * gdb-events.sh (XMALLOC): Delete macro.
2494 * gdb-events.c, gdb-events.h: Regenerate.
2495 * gdbarch.sh (XMALLOC): Delete macro.
2496 * gdbarch.c: Regenerate.
2497 * serial.c (XMALLOC): Delete macro.
2498 * ui-file.c (XMALLOC): Ditto.
2499 * ser-unix.h (XMALLOC): Ditto.
2500 * sh-tdep.c (XMALLOC): Ditto.
2501 * ui-out.c (XMALLOC): Ditto.
2502 * utils.c (XMALLOC): Ditto.
2503 * i386-tdep.c (XMALLOC): Ditto.
2504 * gdb-events.c (XMALLOC): Ditto.
2505 * d10v-tdep.c (XMALLOC): Ditto.
2506 * cli-out.c (XMALLOC): Ditto.
2507
2508 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
2509 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
2510 * ui-file.c, ui-out.c: Ditto.
2511
2512 2002-03-18 Andrew Cagney <ac131313@redhat.com>
2513
2514 * command.h (struct cmd_list_element): Add field context.
2515 (set_cmd_context, get_cmd_context): Declare.
2516 * cli/cli-decode.h: Ditto.
2517 * cli/cli-decode.c (get_cmd_context): New function.
2518 (set_cmd_context): New function.
2519 (add_cmd): Initialize context.
2520 Part of fixing PR gdb/145 and PR gdb/146.
2521
2522 2002-03-17 Andrew Cagney <ac131313@redhat.com>
2523
2524 * cli/cli-decode.c (cmd_type): New function.
2525 * command.h (cmd_type): Declare.
2526 * infrun.c (set_schedlock_func): Call function cmd_type.
2527 * kod.c (kod_set_os): Call cmd_type.
2528 * cris-tdep.c (cris_version_update): Use function cmd_type.
2529 (cris_mode_update, cris_abi_update): Ditto.
2530
2531 * command.h: (execute_cmd_post_hook): Declare.
2532 (execute_cmd_pre_hook): Declare.
2533 * cli/cli-script.c (clear_hook_in_cleanup): New function.
2534 (execute_cmd_post_hook, execute_cmd_pre_hook): New
2535 functions. Execute pre/post hook while ensuring that afterwords
2536 hook_in is cleared.
2537 * top.c (execute_command): Use execute_cmd_post_hook, and
2538 execute_cmd_pre_hook to execute pre/post commands.
2539 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
2540 hook_stop_stub.
2541 (hook_stop_stub): Call execute_cmd_pre_hook.
2542
2543 2002-03-17 Andrew Cagney <ac131313@redhat.com>
2544
2545 * kod.c (kod_set_os): Revert previous change. Is called by ``info
2546 set'' and this leads to a core dump. Move xstrdup of
2547 operating_system to after check that it is not NULL.
2548
2549 2002-03-17 Andrew Cagney <ac131313@redhat.com>
2550
2551 * kod.c (kod_set_os): Remove unnecessary check that
2552 ``command->type'' is set_cmd.
2553
2554 * valprint.c (set_input_radix): Use input_radix.
2555 (set_output_radix): Use output_radix.
2556 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
2557 isn't reverted.
2558
2559 2002-03-16 Andrew Cagney <ac131313@redhat.com>
2560
2561 * value.h (struct value): Delete field ``substring_addr''. Change
2562 aligner fields to force_doublest_align, force_longest_align,
2563 force_core_addr_align and force_pointer_aligh.
2564
2565 * value.h (struct value): Fix typo in above change.
2566
2567 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
2568
2569 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
2570 to fix internal_error from ``maintenance print architecture''.
2571
2572 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
2573
2574 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
2575 for gcc versions after gcc-2.8.1.
2576
2577 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
2578
2579 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
2580 for method resolution. Restore adjustment of ``this'' pointer after
2581 calling value_struct_elt, which was accidentally removed during the
2582 HP merge.
2583
2584 2002-03-15 Andrew Cagney <ac131313@redhat.com>
2585
2586 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
2587 value_of_register.
2588 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
2589 get_saved_register.
2590 * value.h (value_of_register): Update.
2591
2592 2002-03-14 Richard Henderson <rth@redhat.com>
2593
2594 * configure.in: Detect declaration for canonicalize_file_name.
2595 * utils.c (canonicalize_file_name): Declare, if needed.
2596 (gdb_realpath): Prefer realpath if available and usable.
2597 * config.in, configure: Rebuild.
2598
2599 2002-03-14 Richard Henderson <rth@redhat.com>
2600
2601 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
2602 a constant array bound.
2603
2604 * MAINTAINERS: Add myself to write-after-approval.
2605
2606 2002-03-14 Michael Snyder <msnyder@redhat.com>
2607
2608 * symfile.c (syms_from_objfile): Return immediately if no syms.
2609 (symbol_file_add): Return immediately if no syms.
2610 (find_sym_fns): Return immediately if no syms.
2611
2612 2002-03-13 Michal Ludvig <mludvig@suse.cz>
2613
2614 * gdbserver/remote-util.c (remote_open): Print remote-side's
2615 IP address when remote debugging over the network.
2616
2617 2002-03-12 David O'Brien <obrien@FreeBSD.org>
2618
2619 * config/sparc/fbsd.mh: Fix copyright.
2620 * config/sparc/fbsd.mt: Likewise.
2621
2622 2002-03-11 Richard Earnshaw <rearnsha@arm.com>
2623
2624 * MAINTAINERS: Fix typo in name of gdb warnings option.
2625 (x86-64): Fix formating so that this can be parsed by awk.
2626
2627 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
2628
2629 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
2630 * defs.h: Include "gdb/signals.h".
2631 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
2632
2633 2002-03-10 Michal Ludvig <mludvig@suse.cz>
2634
2635 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
2636 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
2637 from x86-64-tdep.h
2638
2639 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
2640 Don Howard <dhoward@redhat.com>
2641
2642 * mips-tdep.c (ST0_FR): Define.
2643 (mips2_fp_compat): New function, temporarily disabled.
2644 (mips_read_fp_register_single): New function.
2645 (mips_read_fp_register_double): New function.
2646 (mips_print_register): Use them.
2647 (do_fp_register_row): Likewise.
2648
2649 2002-03-09 Andrew Cagney <ac131313@redhat.com>
2650
2651 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
2652 approval''.
2653
2654 2002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
2655
2656 * stabsread.c (read_member_functions): Fix is_stub test for
2657 static member functions, improve comment.
2658
2659 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
2660
2661 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
2662 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
2663 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
2664 commands that set boolean values.
2665 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
2666 (arm_rdi_resume): Always initialize PC.
2667 (arm_rdi_open): Don't use rslt as a boolean.
2668 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
2669 (arm_rdi_fetch_registers, arm_rdi_store_registers)
2670 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
2671 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
2672
2673 2002-03-06 Alexandre Oliva <aoliva@redhat.com>
2674
2675 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
2676 * configure: Rebuilt.
2677
2678 2002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
2679
2680 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
2681 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
2682
2683 2002-03-06 Andrew Cagney <ac131313@redhat.com>
2684
2685 * cli/cli-decode.c (set_cmd_completer): New function.
2686 * command.h (set_cmd_completer): Declare.
2687 * cli/cli-decode.h (set_cmd_completer): Ditto.
2688
2689 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
2690 * cli/cli-cmds.c (init_cli_cmds): Ditto.
2691 * win32-nat.c (_initialize_inftarg): Ditto.
2692 * remote-rdi.c (_initialize_remote_rdi): Ditto.
2693 * proc-api.c (_initialize_proc_api): Ditto.
2694 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
2695 * source.c (_initialize_source): Ditto.
2696 * exec.c (_initialize_exec): Ditto.
2697 * solib.c (_initialize_solib): Ditto.
2698 * top.c (init_main): Ditto.
2699 * tracepoint.c (_initialize_tracepoint): Ditto.
2700 * symfile.c (_initialize_symfile): Ditto.
2701 * printcmd.c (_initialize_printcmd): Ditto.
2702 * infcmd.c (_initialize_infcmd): Ditto.
2703 * corefile.c (_initialize_core): Ditto.
2704
2705 2002-03-05 Andrew Cagney <ac131313@redhat.com>
2706
2707 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
2708
2709 2002-03-05 Andrew Cagney <ac131313@redhat.com>
2710
2711 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
2712
2713 2002-03-05 Andrew Cagney <ac131313@redhat.com>
2714
2715 * NEWS: Update headings, 5.2 has branched.
2716
2717 2002-03-04 Daniel Jacobowitz <drow@mvista.com>
2718
2719 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
2720 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
2721 (register_addr, REGISTER_RAW_SIZE): Likewise.
2722 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
2723 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
2724
2725 2002-03-03 Michal Ludvig <mludvig@suse.cz>
2726
2727 * MAINTAINERS (x86-64): Add myself.
2728 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
2729 changed value_ptr -> struct value *
2730
2731 2002-03-01 David O'Brien <obrien@FreeBSD.org>
2732
2733 * configure.host (sparc64-*-freebsd): Add.
2734 * configure.tgt: Likewise.
2735 * config/sparc/fbsd.mh: New file.
2736 * config/sparc/fbsd.mt: Likewise.
2737 * config/sparc/nm-fbsd.h: Likewise.
2738 * config/sparc/tm-fbsd.h: Likewise.
2739
2740 2002-03-01 Daniel Jacobowitz <drow@mvista.com>
2741
2742 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
2743 regformats/reg-s390x.dat.
2744
2745 2002-03-01 Andrew Cagney <ac131313@redhat.com>
2746
2747 * utils.c: Add FIXME explaining true/false problem.
2748
2749 2002-02-28 Andrew Cagney <ac131313@redhat.com>
2750
2751 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
2752
2753 2002-02-28 Michael Chastain <mec@shout.net>
2754
2755 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
2756
2757 2002-02-28 Daniel Jacobowitz <drow@mvista.com>
2758
2759 * gdbserver/linux-s390-low.c: New file.
2760 * regformats/reg-s390.dat: New file.
2761 * regformats/reg-s390x.dat: New file.
2762 * gdbserver/configure.srv: Add S/390.
2763 * gdbserver/Makefile.in: Add S/390.
2764 * configure.tgt: Enable gdbserver for S/390.
2765
2766 2002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
2767
2768 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
2769 first line of the doc string for "info dos", except at the end of
2770 the sentence, since the short help stops at the first period.
2771
2772 2002-02-28 Jason Merrill <jason@redhat.com>
2773
2774 * dwarf2read.c (dwarf_cfi_name): Add new codes.
2775
2776 2002-02-27 Fred Fish <fnf@redhat.com>
2777
2778 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
2779 comment (dumy -> dummy).
2780
2781 2002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
2782
2783 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
2784
2785 2002-02-27 Rodney Brown <rbrown64@csc.com.au>
2786
2787 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
2788
2789 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
2790
2791 * gdbserver/acconfig.h: New file.
2792 * gdbserver/i387-fp.c: New file.
2793 * gdbserver/i387-fp.h: New file.
2794 * gdbserver/linux-x86-64.c: New file.
2795 * regformats/reg-x86-64.dat: New file.
2796 * configure.tgt: Add x86_64-*-linux* gdbserver support.
2797 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
2798 * gdbserver/configure.in: Add support for regsets.
2799 * gdbserver/config.in: Regenerate.
2800 * gdbserver/configure: Regenerate.
2801 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
2802 * gdbserver/linux-low.h: New file.
2803 * gdbserver/linux-low.c: Include "linux-low.h". Add support
2804 for regsets.
2805 * gdbserver/linux-arm-low.c: Include "linux-low.h".
2806 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
2807 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
2808 * gdbserver/linux-mips-low.c: Include "linux-low.h".
2809 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
2810 * gdbserver/linux-sh-low.c: Include "linux-low.h".
2811 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
2812 "i387-fp.h". Add PTRACE_GETREGS and friends.
2813 * gdbserver/regcache.c (supply_register): New function.
2814 (supply_register_by_name): New function.
2815 (collect_register): New function.
2816 (collect_register_by_name): New function.
2817
2818 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
2819
2820 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
2821 (config.status): Add configure.srv dependency.
2822 (server_h): Add config.h dependency.
2823
2824 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
2825
2826 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
2827 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
2828 * gdbserver/configure.srv: Change i386-*-linux* to use
2829 reg-i386-linux.o.
2830
2831 2002-02-26 Andrew Cagney <ac131313@redhat.com>
2832
2833 * x86-64-tdep.c: Re-indent. Update copyright date.
2834
2835 2002-02-26 Andrew Cagney <ac131313@redhat.com>
2836
2837 From Michal Ludvig <mludvig@suse.cz>:
2838 * x86-64-tdep.c (value.h): Delete.
2839 (gdb_assert.h): Include.
2840 (x86_64_register_convert_to_virtual,
2841 x86_64_register_convert_to_raw ): Add check which lets only
2842 floating-point values to be converted.
2843 (value_push): Delete.
2844 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
2845 (i386_gdbarch_init): Number of register_bytes fixed.
2846
2847 2002-02-26 Andrew Cagney <ac131313@redhat.com>
2848
2849 * MAINTAINERS: Add x86-64 target.
2850
2851 2002-02-26 Andrew Cagney <ac131313@redhat.com>
2852
2853 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
2854 * osfsolib.c (solib_map_sections): Ditto.
2855 * irix5-nat.c (solib_map_sections): Ditto.
2856 * corelow.c (gdb_check_format): Ditto.
2857 * symfile.c (symfile_bfd_open): Ditto.
2858 * solib.c (solib_map_sections): Ditto.
2859 Fix PR gdb/354.
2860
2861 2002-02-26 Andrew Cagney <ac131313@redhat.com>
2862
2863 * remote.c (_initialize_remote): By default, disable ``e'' and
2864 ``E'' step out-of-range packets.
2865
2866 2002-02-26 Andreas Schwab <schwab@suse.de>
2867
2868 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
2869 m68k_linux_frame_saved_pc.
2870 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
2871 in_sigtramp.
2872 (SIGCONTEXT_PC_OFFSET): Remove.
2873 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
2874 m68k_linux_sigtramp_saved_pc): New functions.
2875 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
2876 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
2877 (UCONTEXT_PC_OFFSET): Define.
2878 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
2879 non-RT and RT signal trampolines.
2880
2881 2002-02-26 Richard Earnshaw <rearnsha@arm.com>
2882
2883 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
2884 (TARGET_NBPG, STACK_END_ADDR): Delete
2885 (VARIABLES_INSIDE_BLOCK): Delete.
2886
2887 2002-02-25 Andrew Cagney <ac131313@redhat.com>
2888
2889 * utils.c (perror_with_name): Make string parameter constant.
2890 (print_sys_errmsg): Ditto.
2891 (query): Ditto.
2892 * defs.h (perror_with_name): Update.
2893 (print_sys_errmsg): Update.
2894 (query): Update.
2895
2896 2002-02-25 Daniel Jacobowitz <drow@mvista.com>
2897
2898 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
2899 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
2900
2901 2002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
2902
2903 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
2904 if it already matches the current architecture from the exec file.
2905 Include arch-utils.h for gdbarch_info_init prototype.
2906 * Makefile.in (rs6000-nat.o): Update dependencies.
2907
2908 2002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
2909
2910 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
2911 list of exported variables.
2912
2913 2002-02-24 Daniel Jacobowitz <drow@mvista.com>
2914
2915 * gdbserver/configure.srv: New file.
2916 * gdbserver/configure.in: Use configure.srv instead
2917 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
2918 from it.
2919 * gdbserver/configure: Regenerated.
2920 * gdbserver/terminal.h: New file.
2921 * gdbserver/Makefile.in: Update for configure changes. Remove
2922 more unneeded include paths.
2923
2924 2002-02-24 Andrew Cagney <ac131313@redhat.com>
2925
2926 From wiz at danbala:
2927 * config/sparc/tm-sp64.h: Fix grammar and typos.
2928 Fix PR gdb/287.
2929
2930 2002-02-24 Andrew Cagney <ac131313@redhat.com>
2931
2932 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
2933 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
2934 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
2935 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
2936 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
2937 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
2938 * s390-tdep.c: Ditto.
2939 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
2940 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
2941 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
2942 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
2943 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
2944 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
2945 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
2946 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
2947 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
2948 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
2949 Fix PR gdb/378.
2950
2951 2002-02-23 Andrew Cagney <ac131313@redhat.com>
2952
2953 * lin-thread.c: Delete file.
2954 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
2955 to gdb_proc_service.h.
2956 * configure: Re-generate.
2957
2958 * ocd.c (ocd_open): Do not try to open the "ocd" device.
2959 * serial.c (serial_open): Delete check for "ocd".
2960 Fix PR gdb/349.
2961
2962 * Makefile.in (linux-thread.o): Delete target.
2963 * linux-thread.c: Delete file.
2964
2965 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
2966 renamed SH files to be consistent.
2967
2968 * symtab.c (sort_search_symbols): Use xfree.
2969
2970 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
2971
2972 * arm-linux-tdep.c (arm_linux_init_abi): Register
2973 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
2974 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
2975 definition with undef, since we don't want the sysvr4 definition.
2976 (SKIP_TRAMPOLINE_CODE): Likewise.
2977
2978 2002-02-23 Andrew Cagney <ac131313@redhat.com>
2979
2980 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
2981
2982 * configure.in: (AC_CHECK_FUNCS) Added test for
2983 canonicalize_file_name Regenerated.
2984 * config.in, configure: Regenerated.
2985 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
2986 defined use canonicalize_file_name.
2987
2988 2002-02-23 Michael Chastain <mec@shout.net>
2989
2990 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
2991
2992 2002-02-23 Andrew Cagney <ac131313@redhat.com>
2993
2994 * README: Remove references to cygnus.com.
2995 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
2996 dot com'' form. Remove references to cygnus.com and sourceware.
2997
2998 2002-02-23 Andrew Cagney <ac131313@redhat.com>
2999
3000 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
3001 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
3002 1003.1-2001 no longer allows "head -1".
3003 * gdb/Makefile.in (version.c): Likewise.
3004 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
3005 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
3006 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
3007
3008 2002-02-23 Andrew Cagney <ac131313@redhat.com>
3009
3010 * cli/cli-decode.c (cmd_cfunc_eq): New function.
3011 * command.h (cmd_cfunc_eq): Declare.
3012 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
3013
3014 * cli/cli-cmds.h (is_complete_command): Change parameter to a
3015 ``struct cmd_list_element *''.
3016 * cli/cli-cmds.c (is_complete_command): Update. Use
3017 cmd_cfunc_eq.
3018 * top.c (execute_command): Pass the command to
3019 is_complete_command.
3020 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
3021
3022 2002-02-23 Andrew Cagney <ac131313@redhat.com>
3023
3024 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
3025 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
3026 architecture defines.
3027 * s390-tdep.c (s390_gdbarch_init): Likewise.
3028
3029 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
3030
3031 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
3032 (arm_linux_push_arguments): Likewise.
3033 (arm_linux_init_abi): Register them. Also register linux-specific
3034 call_dummy_words.
3035 (find_minsym_and_objfile): Use strcmp, not STREQ.
3036 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
3037 (arm_linux_call_dummy_words): Delete declaration.
3038 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
3039 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
3040 declarations.
3041 (LOWEST_PC): Delete.
3042
3043 2002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3044
3045 * maint.c (print_section_info): Do not prepend `0x' to filepos
3046 output, it will be handled by local_hex_string_custom.
3047
3048 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
3049
3050 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
3051 (store_newfpe_double, store_newfpe_extended, store_fpregister)
3052 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
3053
3054 2002-02-22 Jim Blandy <jimb@redhat.com>
3055
3056 Indicate that the bcache functions don't change the strings
3057 they're passed.
3058 * bcache.h (bcache, hash): Add `const' keywords to declarations.
3059 * bcache.c (bcache, hash): Add `const' keywords to definitions.
3060
3061 2002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
3062
3063 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
3064
3065 2002-02-21 Christopher Faylor <cgf@redhat.com>
3066
3067 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
3068 find the complete path to a loaded DLL.
3069
3070 2002-02-21 Fred Fish <fnf@redhat.com>
3071
3072 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
3073 that marks the end of the range of a function, enter a line number
3074 entry that has a line number of zero and a PC offset that matches
3075 the end of the function. This starts a range of PC's for which no
3076 line number information is known.
3077 * symtab.c (find_pc_sect_line): If our best fit is in a range of
3078 PC's for which no line number info is found (line number is zero)
3079 then we didn't find any valid line information.
3080 * symtab.h: Document use of zero line number entry.
3081
3082 2002-02-21 Elena Zannoni <ezannoni@redhat.com>
3083
3084 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
3085 (have_ptrace_getvrregs): Define for run time checks.
3086 (gdb_vrregset_t): New type for Altivec register handling.
3087 (fetch_register, store_register): Fetch/store altivec register
3088 when needed.
3089 (fetch_altivec_register, store_altivec_register): New functions.
3090 (supply_vrregset, fill_vrregset): New functions.
3091 (fetch_altivec_registers, store_altivec_registers): New functions.
3092 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
3093 registers as well.
3094
3095 2002-02-21 Jiri Smid <smid@suse.cz>
3096
3097 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
3098
3099 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
3100
3101 * Makefile.in (armnbsd-nat.o): Update dependencies.
3102 * armnbsd-nat.c (supply_gregset): New function. Common code to
3103 supply the integer register set.
3104 (supply_fparegset): New function. Similar for FPA registers.
3105 (fetch_regs, fetch_fp_regs): Use them.
3106 (fetch_core_registers): Likewise.
3107 (fetch_elfcore_registers): New function.
3108 (arm_netbsd_elfcore_fns): New core-file type specification.
3109 (_initialize_arm_netbsd_nat): Register it.
3110
3111 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
3112
3113 * armnbsd-nat.c: Include gdbcore.h.
3114 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
3115 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
3116 'void' to declaration, to shut up ARI.
3117 (fetch_core_registers): Make static. Rewrite using supply_register.
3118 (arm_netbsd_core_fns): New core-file type specification.
3119 (_initialize_arm_netbsd_nat): New function.
3120
3121 2002-02-21 Christopher Faylor <cgf@redhat.com>
3122
3123 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
3124 value.
3125
3126 2002-02-20 Christopher Faylor <cgf@redhat.com>
3127
3128 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
3129 fails.
3130
3131 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
3132
3133 * jv-exp.y (parse_number): Change type of implicit longs
3134 to builtin_type_uint64.
3135
3136 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
3137
3138 * gdbserver/linux-low.c (mywait): Change argument to waitpid
3139 to be an integer instead of a `union wait'.
3140
3141 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
3142
3143 * mips-linux-nat.c: Call the operating system GNU/Linux.
3144 * mips-linux-tdep.c: Likewise.
3145 * mips-tdep.c: Likewise.
3146
3147 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
3148
3149 Fix PR gdb/265.
3150 * jv-exp.y (parse_number): Handle 64-bit integers.
3151
3152 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
3153
3154 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
3155 AC_STDC_HEADERS to AC_HEADER_STDC.
3156 * gdbserver/configure: Regenerated.
3157
3158 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
3159
3160 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
3161 is defined.
3162 * sparc-tdep.c (get_longjmp_target): Likewise.
3163
3164 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
3165
3166 * News: Add news about ARM and Multi-arch. Mention the new target
3167 arm*-*-netbsd*.
3168
3169 2002-02-19 Jim Blandy <jimb@redhat.com>
3170
3171 * stabsread.c (error_type_complaint): Improve error message.
3172
3173 2002-02-19 Daniel Jacobowitz <drow@mvista.com>
3174
3175 * gdbserver/README: Update documentation.
3176 * gdbserver/configure.in: Update configury to match documentation.
3177 * gdbserver/Makefile.in: Likewise.
3178 * gdbserver/configure: Regenerated.
3179 * gdbserver/aclocal.m4: New file, generated by aclocal.
3180 * gdbserver/config.in: New file, generated by autoheader.
3181
3182 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
3183
3184 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
3185 armnbsd-nat.c.
3186
3187 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
3188
3189 * arm-tdep.h (enum arm_float_model): New enum.
3190 (struct gdbarch_tdep): Add fp_model.
3191 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
3192 up floating-point conversions until we know the floating-point model
3193 in use by the inferior. Don't complain about being unable to
3194 determine the ABI of the inferior when we don't have one.
3195 (arm_extract_return_value): Support different floating-point models.
3196 (arm_store_return_value): Likewise.
3197 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
3198 ARM_FLOAT_SOFT.
3199 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
3200
3201 2002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3202
3203 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
3204 of ``current_gdbarch''.
3205
3206 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
3207
3208 * armnbsd-nat.c : ANSIfy all function declarations.
3209 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
3210 (fetch_inferior_registers): Re-implement in terms of above.
3211 (store_register, store_regs, store_fp_register, store_fp_regs): New.
3212 (store_inferior_registers): Re-implement in terms of above.
3213
3214 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
3215
3216 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
3217 kernel.
3218 * arm-linux-tdep.c: Likewise.
3219 * config/arm/tm-linux.h: Likewise.
3220
3221 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
3222
3223 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
3224 * config/arm/nbsd.mt (TM_FILE): Delete.
3225 * config/arm/tm-nbsd.h: Delete.
3226
3227 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
3228
3229 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
3230 Initialize CALL_DUMMY_LENGTH.
3231
3232 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
3233
3234 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
3235 function.
3236 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
3237 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
3238 defines one thing and that is incorrect for this port.
3239 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
3240
3241 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
3242
3243 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
3244
3245 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
3246
3247 * win32-nat.c (display_selector): New function. Displays information
3248 about the information returned by GetThreadSelectorEntry API function.
3249 (display_selectors): New function. Displays the infomation of
3250 the selector given as argument, or of CS, DS ans FS selectors
3251 if no argument is given.
3252 ( _initialize_inftarg): Add "w32" as info prefix command.
3253 Add "info w32 selector" as command calling display_selectors.
3254
3255 2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
3256
3257 * i386-tdep.c (get_longjmp_target): Fix compilation failure
3258 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
3259 if not defined.
3260
3261 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
3262
3263 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
3264
3265 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
3266
3267 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
3268 (arm_fix_call_dummy): Call it.
3269 (arm_call_dummy_breakpoint_offset): Delete.
3270 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
3271 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
3272
3273 2002-02-18 Andrew Cagney <ac131313@redhat.com>
3274
3275 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
3276 Default to func_frame_chain_valid.
3277 * gdbarch.h, gdbarch.c: Re-generate.
3278 * frame.h (FRAME_CHAIN_VALID): Delete definition.
3279
3280 2002-02-18 Elena Zannoni <ezannoni@redhat.com>
3281
3282 * ppc-linux-nat.c: Update copyright.
3283 (fetch_register, store_register): Add tid parameter, don't compute
3284 tid here.
3285 (fetch_ppc_registers, store_ppc_registers): Add tid
3286 parameter. Pass it along to callees.
3287 (fetch_inferior_registers, store_inferior_registers): Compute tid
3288 here, and pass it to calleed functions.
3289 (fill_gregset, supply_fpregset): Clean up formatting.
3290
3291 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
3292
3293 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
3294 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
3295
3296 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
3297
3298 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
3299 * gdbarch.c gdbarch.h: Regenerate.
3300 * breakpoint.c (create_longjmp_breakpoint): Always compile this
3301 function.
3302 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
3303 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
3304 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
3305
3306 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
3307 * arm-tdep.c (arm_get_longjmp_target): New function.
3308 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
3309 this to a positive value register arm_get_longjmp_target as the
3310 longjmp handler.
3311 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
3312 (arm_linux_init_abi): Set up longjmp description in tdep.
3313 * armnbsd-nat.c (get_longjmp_target): Delete.
3314 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
3315 description in tdep.
3316 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
3317 (get_longjmp_target): Delete declaration.
3318 (GET_LONGJMP_TARGET): Delete.
3319 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
3320 (GET_LONGJMP_TARGET): Delete.
3321
3322 2002-02-17 Kevin Buettner <kevinb@redhat.com>
3323
3324 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
3325 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
3326 of ``current_gdbarch''.
3327
3328 2002-02-17 Tom Tromey <tromey@redhat.com>
3329
3330 * cli/cli-cmds.c (compare_strings): New function.
3331 (complete_command): Only print each unique item once.
3332 * completer.h (complete_line): Declare.
3333 * completer.c (complete_line): New function.
3334 (line_completion_function): Use it.
3335
3336 2002-02-16 Andrew Cagney <ac131313@redhat.com>
3337
3338 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
3339 * gdbarch.h, gdbarch.c: Re-generate.
3340
3341 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
3342
3343 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
3344
3345 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
3346
3347 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
3348 * valops.c (value_arg_coerce): Don't take the address of a reference
3349 to convert an argument to a reference.
3350
3351 2002-02-15 Christopher Faylor <cgf@redhat.com>
3352
3353 * win32-nat.c (get_image_name): New function.
3354 (handle_load_dll): Use get_image_name function.
3355 (get_child_debug_event): Avoid registering debug events until possibly
3356 execed process is started.
3357 (child_create_inferior): Allow invocation via shell so that command
3358 line redirection, etc. works ok.
3359 (_initialize_inftarg): Add new command: "set shell" to control whether
3360 a shell is used to start a process.
3361
3362 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
3363
3364 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
3365 instead of find_register_by_number.
3366 (cannot_store_register): Likewise.
3367
3368 2002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
3369
3370 * dwarf2read.c: Replace fprintf (stderr, ...) by
3371 fprintf_unfiltered (gdb_stderr, ...).
3372
3373 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
3374
3375 * gdbserver/gdbserver.1: Document --attach.
3376
3377 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
3378
3379 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
3380 descriptions.
3381 * arm-tdep.c (arm_default_arm_le_breakpoint)
3382 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
3383 (arm_default_thumb_be_breakpoint): New. Initialize them from
3384 traditional breakpoint defines.
3385 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
3386 (arm_gdbarch_init): Initialize new breakpoint variables.
3387 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
3388 (arm_linux_init_abi): Initialize linux-specific breakpoint.
3389 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
3390 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
3391 code out to ...
3392 (arm_netbsd_init_abi_common): ... here; new function.
3393 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
3394 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
3395 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
3396 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
3397
3398 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
3399
3400 * arm-tdep.h (enum arm_abi): New enum.
3401 (struct gdbarch_tdep): New structure.
3402 (LOWEST_PC): Provide a default.
3403 (arm_gdbarch_register_os_abi): Declare new function.
3404 * arm-tdep.c (arm_abi_names): New array.
3405 (process_note_abi_tag_sections): New function.
3406 (get_elfosabi): New function.
3407 (arm_gdbarch_register_os_abi): New function.
3408 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
3409 support for that ABI has been built in, then call the appropriate
3410 configuration routine. Use gdbarch_num_regs() to get the number
3411 of registers.
3412 (arm_dump_tdep): New function.
3413 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
3414 place-holder functions.
3415 (_initialize_arm_tdep): Register them.
3416 * config/arm/tm-arm.h (LOWEST_PC): Delete.
3417
3418 * armnbsd-tdep.c: New file.
3419 * Makefile.in (armnbsd-tdep.o): Add dependencies.
3420 * config/arm/nbsd.mt (TDEPFILES): Add it.
3421 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
3422
3423 * armnbsd-nat.c: Include regcache.h.
3424 * Makefile.in (armnbsd-nat.o): Update dependency list.
3425
3426 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
3427
3428 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
3429
3430 * gdbserver/Makefile.in: Fix typos in target rules.
3431
3432 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
3433
3434 Fix part of PR gdb/267.
3435 * linespec.c (find_methods): Handle constructors specially for now.
3436
3437 2002-02-14 Corinna Vinschen <vinschen@redhat.com>
3438
3439 * arm-tdep.c (arm_push_arguments): Eliminate special float type
3440 handling.
3441 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
3442 standard_coerce_float_to_double().
3443
3444 2002-02-14 Christopher Faylor <cgf@redhat.com>
3445
3446 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
3447 GDBINIT_FILENAME.
3448
3449 2002-02-14 Elena Zannoni <ezannoni@redhat.com>
3450
3451 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
3452 find_variant_by_name, because it confuses the multiarch
3453 framework. Return NULL if there isn't an architecture with the
3454 user supplied name, instead of forcing a different one without
3455 recording the change with the multiarch machinery.
3456 (find_variant_by_name): Delete.
3457
3458 2002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3459
3460 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
3461 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
3462
3463 2002-02-13 Martin M. Hunt <hunt@redhat.com>
3464
3465 * stack.c (print_frame_info_base): When calling
3466 print_frame_info_listing_hook, set current_source_symtab.
3467
3468 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
3469
3470 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
3471 and remove unused $(INCLUDE_DIR).
3472 Add regcache.c to OBS.
3473 Add generated register protocol files to clean target.
3474 Update dependencies for new objects, obsolete old target code.
3475
3476 * gdbserver/linux-low.c: Remove all platform-specific code to
3477 new files. Remove various dead code. Update to use regcache
3478 functionality.
3479 * gdbserver/remote-utils.c (fromhex): Add return statement
3480 to quiet warning.
3481 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
3482 constant.
3483 (input_interrupt): Add integer parameter to match prototype
3484 of a signal handler.
3485 (outreg): Use register_data ().
3486 (prepare_resume_reply): Use gdbserver_expedite_regs.
3487 * gdbserver/server.c (main): Dynamically allocate own_buf because
3488 PBUFSIZ is no longer constant. Use registers_to_string () and
3489 registers_from_string ().
3490 * gdbserver/server.h: No longer include "defs.h". Add prototypes
3491 for error (), fatal (), and warning (). Update definition of
3492 PBUFSIZ to use regcache functionality. Add include guard.
3493 * gdbserver/utils.c (fatal): Add missing ``const''.
3494 (warning): New function.
3495
3496 * regformats/regdat.sh: Include "regcache.h" in generated files.
3497 Provide init_registers () function.
3498 * regformats/regdef.h: Add prototype for set_register_cache ().
3499 Add include guard.
3500
3501 * gdbserver/linux-arm-low.c: New file.
3502 * gdbserver/linux-i386-low.c: New file.
3503 * gdbserver/linux-ia64-low.c: New file.
3504 * gdbserver/linux-m68k-low.c: New file.
3505 * gdbserver/linux-mips-low.c: New file.
3506 * gdbserver/linux-ppc-low.c: New file.
3507 * gdbserver/linux-sh-low.c: New file.
3508
3509 * gdbserver/regcache.c: New file.
3510 * gdbserver/regcache.h: New file.
3511
3512 * gdbserver/low-linux.c: Removed obsolete file.
3513
3514 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
3515
3516 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
3517 * config/i386/linux.mt: Likewise.
3518 * config/ia64/linux.mt: Likewise.
3519 * config/m68k/linux.mh: Likewise.
3520 * config/powerpc/linux.mh: Likewise.
3521 * config/mips/linux.mt: Likewise.
3522
3523 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
3524
3525 * config/i386/i386lynx.mh: Mark gdbserver variables
3526 as (currently) obsolete for this target.
3527 * config/i386/nbsd.mt: Likewise.
3528 * config/i386/nbsdelf.mt: Likewise.
3529 * config/m32r/m32r.mt: Likewise.
3530 * config/m68k/m68klynx.mh: Likewise.
3531 * config/m68k/nbsd.mt: Likewise.
3532 * config/m68k/sun3os4.mh: Likewise.
3533 * config/mips/vr5000.mt: Likewise.
3534 * config/ns32k/nbsd.mt: Likewise.
3535 * config/pa/hppabsd.mh: Likewise.
3536 * config/pa/hppaosf.mh: Likewise.
3537 * config/powerpc/nbsd.mt: Likewise.
3538 * config/rs6000/rs6000lynx.mh: Likewise.
3539 * config/s390/s390.mt: Likewise.
3540 * config/s390/s390x.mt: Likewise.
3541 * config/sparc/sparclynx.mh: Likewise.
3542 * config/sparc/sun4os4.mh: Likewise.
3543 * config/i386/x86-64linux.mt: Likewise.
3544 * config/sparc/linux.mh: Likewise.
3545
3546 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
3547
3548 * configure.tgt: Configure gdbserver only for known working
3549 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
3550 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
3551 SUBDIRS if it is configured. Update comment for ${nativefile}.
3552 * configure: Regenerated.
3553
3554 2002-02-13 Michael Snyder <msnyder@redhat.com>
3555
3556 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
3557
3558 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
3559 (default_gcore_mach): Just return 0, work around a problem in bfd.
3560 (default_gcore_target): OK to return NULL if exec_bfd is null.
3561 (make_mem_sec): Use a cast, avoid a warning.
3562
3563 * procfs.c (find_memory_regions_callback): Use a cast instead of
3564 calling host_pointer_to_address (which complains if
3565 sizeof (host pointer) != sizeof (target pointer)).
3566 (procfs_make_note_section): Avoid overflow in psargs string.
3567
3568 * procfs.c (procfs_make_note_section): Make the default
3569 implementation return an error.
3570
3571 2002-02-13 Rodney Brown <rbrown64@csc.com.au>
3572
3573 * procfs.c (procfs_make_note_section): Provide a default definition
3574 (for alpha-dec-osf4.0f). Fix typos.
3575
3576 2002-02-13 Elena Zannoni <ezannoni@redhat.com>
3577
3578 * linux-proc.c: Add include of regcache.h.
3579 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
3580
3581 2002-02-13 Andrew Cagney <ac131313@redhat.com>
3582
3583 From 2002-01-18 Greg McGary <greg@mcgary.org>:
3584 * memattr.c (create_mem_region): Disallow useless empty region.
3585 Regions are half-open intervals, so allow [A..B) [B..C) as
3586 non-overlapping.
3587
3588 2002-02-13 Michael Chastain <mec@shout.net>
3589
3590 * defs.h: Kill CONST_PTR.
3591 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
3592 * c-lang.c (c_builtin_types): Likewise.
3593 * ch-lang.c (ch_builtin_types): Likewise.
3594 * f-lang.c (f_builtin_types): Likewise.
3595 * language.c (unknown_builtin_types): Likewise.
3596 * m2-lang.c (m2_builtin_types): Likewise.
3597 * p-lang.c (pascal_builtin_types): Likewise.
3598 * scm-lang.c (c_builtin_types): Likewise.
3599
3600 2002-02-13 Keith Seitz <keiths@redhat.com>
3601
3602 * arm-tdep.h (arm_get_next_pc): Add declaration.
3603
3604 2002-02-13 Richard Earnshaw <rearnsha@arm.com>
3605
3606 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
3607 with other related struct-returning functions.
3608 (arm_extract_struct_value_address): New function.
3609 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
3610 initialize float_format, double_format and long_double_format as
3611 appropriate to the endianness of the target.
3612 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
3613 (arm_use_struct_convention): Delete declaration.
3614 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
3615
3616 2002-02-13 Keith Seitz <keiths@redhat.com>
3617
3618 * defs.h (core_addr_to_string_nz): New function.
3619
3620 2002-02-13 Mark Kettenis <kettenis@gnu.org>
3621
3622 Apply missing bits of 2002-01-15 patch.
3623 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
3624 (fill_fpregset): Use i387_fill_fsave.
3625
3626 2002-02-12 Keith Seitz <keiths@redhat.com>
3627
3628 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
3629 (core_addr_to_string_nz): New function.
3630
3631 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
3632
3633 * arm-linux-nat.c: Really include arm-tdep.h.
3634 * config/arm/tm-linux.h (struct type, struct value): Declare.
3635
3636 2002-02-11 Michael Snyder <msnyder@redhat.com>
3637
3638 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
3639 (gcore section): Ifdef for Solaris and Unixware only.
3640 (procfs_do_thread_registers): Unixware needs one lwpstatus
3641 per thread (not one prstatus or pstatus).
3642 (procfs_make_note_section): Iterate only over kernel threads (lwps),
3643 not over all gdb threads. For unixware, call elfcore_write_pstatus
3644 once before iterating over threads.
3645
3646 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
3647
3648 * arm-tdep.h: New file.
3649 * arm-tdep.c: Include arm-tdep.h.
3650 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
3651 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
3652 (arm_print_float_info, arm_register_type, convert_to_extended)
3653 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
3654 (arm_extract_return_value, arm_register_name): Make static.
3655 (arm_software_single_step): Similarly. Fix types in declaration.
3656 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
3657 (arm_store_return_value, arm_store_struct_return): New functions.
3658 (arm_gdbarch_init): Register the above functions. Also register
3659 call_dummy_start_offset, sizeof_call_dummy_words,
3660 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
3661 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
3662 max_register_virtual_size, register_size. Set up
3663 prologue_cache.saved_regs here, rather than ...
3664 (_initialize_arm_tdep): ... here.
3665 * config/arm/tm-arm.h (struct type, struct value): Delete forward
3666 declarations.
3667 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
3668 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
3669 (arm_print_float_info, arm_register_type, convert_to_extended)
3670 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
3671 (arm_extract_return_value, arm_register_name): Delete declarations.
3672 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
3673 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
3674 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
3675 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
3676 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
3677 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
3678 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
3679 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
3680 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
3681 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
3682 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
3683 (arm_get_next_pc): No-longer static -- these are needed by the RDI
3684 interface.
3685 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
3686 * remote-rdi.c remote-rdp.c: Likewise.
3687 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
3688 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
3689 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
3690 definition.
3691
3692 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
3693 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
3694 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
3695 from non-ARM_ prefixed definitions.
3696 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
3697 all uses of above.
3698 * remote-rdi.c remote-rdp.c: Likewise.
3699 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
3700
3701 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
3702
3703 * arm-tdep.c (arm_frameless_function_invocation)
3704 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
3705 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
3706 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
3707 (arm_pop_frame, arm_get_next_pc): Make static.
3708 (arm_gdbarch_init): Register above in gdbarch structure.
3709 (arm_read_fp): Renamed from arm_target_read_fp.
3710 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
3711 * config/arm/tm-arm.h (arm_frameless_function_invocation)
3712 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
3713 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
3714 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
3715 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
3716 (arm_pc_is_thumb_dummy): Delete declarations.
3717 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
3718 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
3719 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
3720 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
3721
3722 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
3723
3724 * symtab.c (compare_search_syms): New function.
3725 (sort_search_symbols): New function.
3726 (search_symbols): Sort symbols after searching rather than
3727 before.
3728
3729 2002-02-10 Andrew Cagney <ac131313@redhat.com>
3730
3731 * NEWS: Linux -> GNU/Linux.
3732
3733 2002-02-10 Andrew Cagney <ac131313@redhat.com>
3734
3735 * gdbarch.sh: For for level one methods, disallow a definition
3736 when partially multi-arched. Add comments explaining rationale.
3737 * gdbarch.h: Re-generate.
3738
3739 2002-02-10 Andrew Cagney <ac131313@redhat.com>
3740
3741 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
3742 multi-arch partial.
3743
3744 2002-02-10 Andrew Cagney <ac131313@redhat.com>
3745
3746 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
3747 field. Use diff -u.
3748 * gdbarch.c: Re-generate.
3749
3750 2002-02-10 Andrew Cagney <ac131313@redhat.com>
3751
3752 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
3753 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
3754 partial.
3755
3756 2002-02-10 Andrew Cagney <ac131313@redhat.com>
3757
3758 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
3759 multi-arch partial.
3760 (PUSH_ARGUMENTS): Switch to using predefault.
3761 * gdbarch.c: Regenerate.
3762
3763 2002-02-10 Andrew Cagney <ac131313@redhat.com>
3764
3765 * valops.c (PUSH_ARGUMENTS): Delete definition.
3766 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
3767 partial. Default to default_push_arguments.
3768 * gdbarch.h, gdbarch.c: Regenerate.
3769
3770 2002-02-09 Andrew Cagney <ac131313@redhat.com>
3771
3772 * defs.h (throw_exception): Rename return_to_top_level. Update
3773 comments.
3774 * utils.c (error_stream, internal_verror, quit): Ditto.
3775 * top.c (throw_exception, catcher): Ditto.
3776 * sparclet-rom.c (sparclet_load): Ditto.
3777 * remote.c (interrupt_query, minitelnet): Ditto.
3778 * remote-sds.c (interrupt_query): Ditto.
3779 * remote-mips.c (mips_error, mips_kill): Ditto.
3780 * ocd.c (interrupt_query): Ditto.
3781 * monitor.c (monitor_interrupt_query): Ditto.
3782 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
3783 * target.h: Update comment.
3784
3785 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
3786
3787 2002-02-09 Andrew Cagney <ac131313@redhat.com>
3788
3789 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
3790 default_double_format.
3791 * gdbarch.h, gdbarch.c: Re-generate.
3792 * findvar.c (floatformat_unknown): Delete variable definition.
3793 * doublest.h (floatformat_unknown): Delete variable declaration.
3794
3795 2002-02-09 Jim Blandy <jimb@redhat.com>
3796
3797 * stabsread.c (read_type): Add code to parse Sun's syntax for
3798 prototyped function types.
3799
3800 2002-02-09 Andrew Cagney <ac131313@redhat.com>
3801
3802 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
3803 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
3804
3805 2002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3806
3807 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
3808 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
3809 now _initialize_xcoffsolib gets called again and overrides the
3810 commands from solib.c in a native configuration.
3811
3812 2002-02-09 Mark Kettenis <kettenis@gnu.org>
3813
3814 * doublest.c (store_typed_floating): Don't try to return a value.
3815 Fixes PR gdb/290.
3816
3817 2002-02-08 Jim Blandy <jimb@redhat.com>
3818
3819 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
3820 is prototyped and has no arguments, print its argument list as
3821 `(void)'.
3822
3823 2002-02-08 Chris Demetriou <cgd@broadcom.com>
3824
3825 * MAINTAINERS (write-after-approval): Add myself.
3826 (paper-trail): I've escaped!
3827
3828 2002-02-08 Christopher Faylor <cgf@redhat.com>
3829
3830 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
3831 changes.
3832 (_initialize_check_for_gdb_ini): Ditto.
3833
3834 2002-02-08 Martin M. Hunt <hunt@redhat.com>
3835
3836 * win32-nat.c (cygwin_pid_to_str): Fix typo.
3837 xaprintf -> xasprintf.
3838
3839 2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
3840
3841 * win32-nat.c: Remove use of printf and sprintf functions.
3842
3843 2002-02-08 Richard Earnshaw <rearnsha@arm.com>
3844
3845 * arm-tdep.c (arm_frame_chain_valid): Make static.
3846 (arm_push_arguments): Likewise.
3847 (arm_gdbarch_init): New function.
3848 (_initialize_arm_tdep): Call it.
3849 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
3850 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
3851 (FRAME_CHAIN_VALID): Delete.
3852 (arm_frame_chain_valid): Delete declaration.
3853 (PUSH_ARGUMENTS): Delete.
3854 (arm_push_arguments): Delete declaration.
3855 (CALL_DUMMY_P): Delete.
3856
3857 2002-02-08 Andrew Cagney <ac131313@redhat.com>
3858 Corinna Vinschen <vinschen@redhat.com>
3859
3860 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
3861 on builtin float types.
3862
3863 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
3864
3865 * utils.c: Include <curses.h> before "bfd.h".
3866 * tui/tui-hooks.c: Likewise.
3867 * tui/tui.c: Likewise.
3868 * tui/tuiCommand.c: Likewise.
3869 * tui/tuiData.c: Likewise.
3870 * tui/tuiDataWin.c: Likewise.
3871 * tui/tuiDisassem.c: Likewise.
3872 * tui/tuiGeneralWin.c: Likewise.
3873 * tui/tuiIO.c: Likewise.
3874 * tui/tuiLayout.c: Likewise.
3875 * tui/tuiRegs.c: Likewise.
3876 * tui/tuiSource.c: Likewise.
3877 * tui/tuiSourceWin.c: Likewise.
3878 * tui/tuiStack.c: Likewise.
3879 * tui/tuiWin.c: Likewise.
3880
3881 2002-02-07 Elena Zannoni <ezannoni@redhat.com>
3882
3883 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
3884 to include space for pseudoregs as well. Update loops accordingly.
3885 (sh_fp_frame_init_saved_regs): Ditto.
3886 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
3887
3888 2002-02-07 Andrew Cagney <ac131313@redhat.com>
3889
3890 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
3891 Add Richard Earnshaw to Arm maintainers.
3892
3893 2002-02-07 Andrew Cagney <ac131313@redhat.com>
3894
3895 * defs.h (warning_begin): Delete declaration.
3896
3897 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
3898 Delete macro.
3899
3900 2002-02-07 Michael Snyder <msnyder@redhat.com>
3901
3902 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
3903 Logic bug, remove misplaced else.
3904
3905 2002-02-07 Klee Dienes <klee@apple.com>
3906
3907 * fork-inferior.c (fork_inferior): Add '!' to the list of
3908 characters that need to be quoted when building a string for the
3909 shell. Quote '!' specifically with a backslash, since CSH chokes
3910 when trying to evaluate "str!str".
3911
3912 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
3913
3914 * rdi-share/host.h: Only provide a typedef for bool if it is not
3915 defined.
3916
3917 2002-02-04 Michael Snyder <msnyder@redhat.com>
3918
3919 * breakpoint.h (enum bptype): Add new overlay event bp type.
3920 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
3921
3922 * breakpoint.c (create_internal_breakpoint): New function.
3923 (internal_breakpoint_number): Moved into create_internal_breakpoint.
3924 (create_longjmp_breakpoint): Use create_internal_breakpoint.
3925 (create_thread_event_breakpoint): Ditto.
3926 (create_solib_event_breakpoint): Ditto.
3927 (create_overlay_event_breakpoint): New function.
3928 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
3929 (update_breakpoints_after_exec): Delete and re-initialize
3930 overlay event breakpoints after an exec. Add FIXME comment
3931 about longjmp breakpoint.
3932 (print_it_typical): Ignore overlay event breakpoints.
3933 (print_one_breakpoint): Ditto.
3934 (mention): Ditto.
3935 (bpstat_what): Do not stop for overlay event breakpoints.
3936 (delete_breakpoint): Don't delete overlay event breakpoints.
3937 (breakpoint_re_set_one): Delete the overlay event breakpoint.
3938 (breakpoint_re_set): Re-create overlay event breakpoint.
3939
3940 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
3941 (overlay_manual_command): Disable overlay breakpoints.
3942 (overlay_off_command): Disable overlay breakpoints.
3943
3944 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
3945
3946 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
3947 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
3948 to here from config/tm-arm.h.
3949 (coff_sym_is_thumb): Make static.
3950 (arm_elf_make_msymbol_special): New function.
3951 (arm_coff_make_msymbol_special): New function.
3952 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
3953 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
3954 (coff_sym_is_thumb): Delete declaration.
3955 (arm_elf_make_msymbol_special): Declare.
3956 (arm_coff_make_msymbol_special): Declare.
3957 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
3958 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
3959
3960 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
3961
3962 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
3963
3964 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
3965
3966 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
3967 * gdbarch.c gdbarch.h: Regenerate.
3968 * arch-utils.c (default_print_float_info): New function.
3969 * arch-utils.h (default_print_float_info): Prototype it.
3970 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
3971 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
3972 (PRINT_FLOAT_INFO): Document it.
3973
3974 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
3975 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
3976 (PRINT_FLOAT_INFO): Define.
3977
3978 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
3979
3980 * win32-nat.c (_initialize_check_for_gdb_ini):
3981 Add typecast to sprintf argument to suppress a warning.
3982
3983 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
3984
3985 * win32-nat.c (last_sig): Changed type of variable to target_signal,
3986 to allow easier handling of pass state.
3987 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
3988 that gives exception name and address.
3989 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
3990 and set last_sig value to ourstatus->value.sig. Some missing
3991 exceptions added.
3992 (child_continue): Correctly report continue_status.
3993 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
3994 TARGET_SIGNAL_0 (new default value).
3995 (child_resume): consider sig argument passed to decide if
3996 the exception should be passed to debuggee or not.
3997
3998 2002-02-05 Michael Snyder <msnyder@redhat.com>
3999
4000 * regcache.c (fetch_register): Call target_fetch_register
4001 only if we don't call FETCH_PSEUDO_REGISTER.
4002 (store_register): Call target_store_register only if we
4003 don't call STORE_PSEUDO_REGISTER.
4004
4005 2002-02-05 Elena Zannoni <ezannoni@redhat.com>
4006
4007 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
4008 ELF_MAKE_MSYMBOL_SPECIAL.
4009 * gdbarch.c, gdbarch.h: Regenerate.
4010 * arch-utils.c (default_make_msymbol_special): New function.
4011 * arch-utils.h (default_make_msymbol_special): Export.
4012 * elfread.c (elf_symtab_read): Compile use of
4013 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
4014 multiarched.
4015 * coffread.c (coff_symtab_read): Ditto, for
4016 COFF_MAKE_MSYMBOL_SPECIAL.
4017
4018 2002-02-05 Jim Blandy <jimb@redhat.com>
4019
4020 * solib-svr4.c (svr4_truncate_ptr): New function.
4021 (svr4_relocate_section_addresses): Do the address arithmetic with
4022 the appropriate truncation for target addresses, even when
4023 CORE_ADDR is larger than a target address.
4024
4025 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
4026
4027 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
4028 to (int *).
4029
4030 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
4031
4032 * gdbserver/linux-low.c (kill_inferior): Remove commented out
4033 code.
4034
4035 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
4036
4037 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
4038
4039 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
4040
4041 * gdbserver/linux-low.c: Remove unused include files.
4042
4043 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
4044
4045 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
4046 (read_inferior_memory): Use it.
4047 (write_inferior_memory): Likewise.
4048
4049 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
4050
4051 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
4052 grubbing through sys_errlist.
4053
4054 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
4055
4056 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
4057
4058 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
4059 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
4060
4061 2002-02-04 Andrew Cagney <ac131313@redhat.com>
4062
4063 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
4064 (do_sfunc, set_cmd_sfunc): New functions.
4065
4066 * command.h (struct cmd_list_element): Add field func.
4067 * cli/cli-decode.h (struct cmd_list_element): Ditto.
4068 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
4069 * cli/cli-decode.h: Ditto.
4070
4071 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
4072 (help_all, help_cmd_list): Ditto.
4073 (find_cmd, complete_on_cmdlist): Ditto.
4074 * top.c (execute_command): Ditto.
4075
4076 * cli/cli-setshow.c (do_setshow_command): Call func instead of
4077 function.sfunc.
4078
4079 * infcmd.c (notice_args_read): Fix function signature.
4080
4081 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
4082 * cli/cli-decode.c (add_set_cmd): Ditto.
4083 * utils.c (initialize_utils): Ditto.
4084 * maint.c (_initialize_maint_cmds): Ditto.
4085 * infrun.c (_initialize_infrun): Ditto.
4086 * demangle.c (_initialize_demangler): Ditto.
4087 * remote.c (add_packet_config_cmd): Ditto.
4088 * mips-tdep.c (_initialize_mips_tdep): Ditto.
4089 * cris-tdep.c (_initialize_cris_tdep): Ditto.
4090 * proc-api.c (_initialize_proc_api): Ditto.
4091 * kod.c (_initialize_kod): Ditto.
4092 * valprint.c (_initialize_valprint): Ditto.
4093 * top.c (init_main): Ditto.
4094 * infcmd.c (_initialize_infcmd): Ditto.
4095 * corefile.c (_initialize_core): Ditto.
4096 * arm-tdep.c (_initialize_arm_tdep): Ditto.
4097 * arch-utils.c (initialize_current_architecture): Ditto.
4098 (_initialize_gdbarch_utils): Ditto.
4099 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
4100
4101 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
4102 * wince.c (_initialize_inftarg): Ditto.
4103 * symfile.c (_initialize_symfile): Ditto.
4104 * mips-tdep.c (_initialize_mips_tdep): Ditto.
4105 * language.c (_initialize_language): Ditto.
4106 * arc-tdep.c (_initialize_arc_tdep): Ditto.
4107
4108 2002-02-04 Michael Snyder <msnyder@redhat.com>
4109
4110 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
4111
4112 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
4113
4114 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
4115 Add rules for building the register data files.
4116
4117 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
4118
4119 * regformats/regdat.sh: Add braces to the definition of
4120 expedite_regs_${arch}.
4121
4122 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
4123
4124 * regformats/regdef.h (struct reg): Add comment describing the
4125 requirements for offset and size fields.
4126
4127 2002-02-04 Andreas Schwab <schwab@suse.de>
4128
4129 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
4130 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
4131
4132 2002-02-04 Richard Earnshaw <rearnsha@arm.com>
4133
4134 * gdbarch.sh (copyright): Update years in generated header.
4135 (SMASH_TEXT_ADDRESS): Add rule.
4136 * gdbarch.h, gdbarch.c: Re-generate.
4137 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
4138 * dbxread.c: Likewise.
4139 * dwarfread.c: Likewise.
4140 * elfread.c: Likewise.
4141 * somread.c: Likewise.
4142
4143 * arm-tdep.c (arm_smash_text_address): New function.
4144 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
4145
4146 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
4147
4148 Add support for hardware watchpoints on win32 native.
4149 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
4150 CONTEXT_DEBUG_REGISTERS.
4151 (dr variable): New variable. Static array containing a local copy
4152 of debug registers.
4153 (debug_registers_changed): New variable. Reflects when debug registers
4154 are changed and need to be written to inferior.
4155 (debug_registers_used): New variable. Reflects when any debug register
4156 was set, used when new threads are created.
4157 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
4158 i386-nat code.
4159 (thread_rec): Set dr array if id is the thread of current_event .
4160 (child_continue, child_resume): Change the debug registers for all
4161 threads if debug_registers_changed.
4162 (child_add_thread): Change the debug registers if debug_registers_used.
4163 * config/i386/cygwin.mh: Add use of i386-nat.o file.
4164 Link nm.h to new nm-cygwin.h file.
4165 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
4166 of hardware registers.
4167
4168 2002-02-03 Andrew Cagney <ac131313@redhat.com>
4169
4170 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
4171 Restore behavour broken by 2002-01-20 Andrew Cagney
4172 <ac131313@redhat.com> IEEE_FLOAT removal.
4173
4174 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
4175
4176 * c-valprint.c (c_val_print): Pass a proper valaddr to
4177 cp_print_class_method.
4178 * valops.c (search_struct_method): If there is only one method
4179 and args is NULL, return that method.
4180
4181 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
4182
4183 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
4184 accessing tag_name directly.
4185
4186 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
4187
4188 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
4189 of accessing tag_name directly.
4190
4191 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
4192
4193 PR gdb/280
4194 * gdbtypes.c (replace_type): New function.
4195 * gdbtypes.h (replace_type): Add prototype.
4196 * stabsread.c (read_type): Use replace_type.
4197
4198 2002-02-03 Richard Earnshaw <rearnsha@arm.com>
4199
4200 * Makefile.in (memattr.o): Add missing dependencies rule.
4201
4202 2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
4203
4204 * breakpoint.c (break_at_finish_command): Really export.
4205 (break_at_finish_at_depth_command): Ditto.
4206 (tbreak_at_finish_command): Ditto.
4207 * hppa-tdep.c: Include completer.h.
4208 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
4209 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
4210
4211 2002-02-01 Andrew Cagney <ac131313@redhat.com>
4212
4213 * utils.c (do_write): New function.
4214 (error_stream): Rewrite combining the code from error_begin and
4215 verror.
4216 (verror): Rewrite using error_stream.
4217 (error_begin): Delete function.
4218
4219 2002-02-01 Andrew Cagney <ac131313@redhat.com>
4220
4221 * utils.c (error_begin): Make static.
4222 * defs.h (error_begin): Delete declaration.
4223
4224 * linespec.c (cplusplus_error): Replace cplusplus_hint.
4225 (decode_line_1): Use cplusplus_error instead of error_begin,
4226 cplusplus_hint and return_to_top_level.
4227 * coffread.c (coff_symfile_read): Use error instead of error_begin
4228 and return_to_top_level.
4229 * infrun.c (default_skip_permanent_breakpoint): Ditto.
4230
4231 2002-02-01 Andrew Cagney <ac131313@redhat.com>
4232
4233 * language.h (type_error, range_error): Make string parameter
4234 constant.
4235 * language.c (warning_pre_print): Delete extern declaration.
4236 * dwarfread.c (warning_pre_print): Ditto.
4237 * language.c (type_error, range_error): Rewrite to use verror and
4238 vwarning instead of warning_begin.
4239
4240 2002-02-01 Michael Snyder <msnyder@redhat.com>
4241
4242 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
4243 (set_ignore_count): Move misplaced comment back where it belongs.
4244
4245 2002-02-01 Andrew Cagney <ac131313@redhat.com>
4246
4247 * command.h (NO_FUNCTION): Delete macro.
4248 * cli/cli-decode.h (NO_FUNCTION): Ditto.
4249 * top.c (execute_command): Replace NO_FUNCTION with NULL.
4250 * tracepoint.c (_initialize_tracepoint): Ditto.
4251 * cli/cli-decode.c (add_set_cmd): Ditto.
4252 * cli/cli-cmds.c (init_cli_cmds): Ditto.
4253
4254 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
4255
4256 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
4257 Update ``this'' pointer when calling virtual functions.
4258
4259 2002-02-01 Michael Snyder <msnyder@redhat.com>
4260
4261 * breakpoint.c (create_temp_exception_breakpoint): Delete.
4262 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
4263
4264 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
4265
4266 * regformats/reg-arm.dat: New file.
4267 * regformats/reg-i386.dat: New file.
4268 * regformats/reg-ia64.dat: New file.
4269 * regformats/reg-m68k.dat: New file.
4270 * regformats/reg-mips.dat: New file.
4271 * regformats/reg-ppc.dat: New file.
4272 * regformats/reg-sh.dat: New file.
4273 * regformats/regdef.h: New file.
4274 * regformats/regdat.sh: New file.
4275
4276 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
4277
4278 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
4279 (arm_frame_args_address, arm_frame_locals_address): New functions.
4280 (arm_frame_num_args): New function.
4281 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
4282 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
4283 (FRMA_NUM_ARGS): Call arm_frame_num_args.
4284
4285 2002-01-31 Michael Snyder <msnyder@redhat.com>
4286
4287 * breakpoint.c (break_at_finish_command): Export.
4288 (break_at_finish_at_depth_command): Export.
4289 (tbreak_at_finish_command): Export.
4290 (_initialize_breakpoint): Delete "xbreak" and "tbreak" commands.
4291 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
4292 "tbreak" commands, which are HPPA specific.
4293
4294 * printcmd.c (disassemble_command): Remove an ancient
4295 artifact of an old merge.
4296
4297 * symfile.h (enum overlay_debugging_state):
4298 Define enum constant values for overlay mode.
4299 * symfile.c (overlay_debugging): Use enums instead of literals.
4300 (overlay_is_mapped, overlay_auto_command,
4301 overlay_manual_command): Ditto.
4302
4303 * breakpoint.c (insert_breakpoints, remove_breakpoint,
4304 breakpoint_here_p, breakpoint_inserted_here_p,
4305 breakpoint_thread_match, bpstat_stop_status,
4306 describe_other_breakpoints, check_duplicates, clear_command):
4307 Coding standard fixes.
4308
4309 * target.c (target_xfer_memory): Add spaces, coding standard.
4310 (do_xfer_memory): Add missing line to trust-readonly
4311 code: check bfd SEC_READONLY flag for section.
4312
4313 2002-01-31 Andrew Cagney <ac131313@redhat.com>
4314
4315 * PROBLEMS: Fix typo, 5.1->5.1.1.
4316
4317 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
4318
4319 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
4320 data symbols, since we search based on textlow and texthigh.
4321 (find_pc_sect_symtab): Likewise.
4322
4323 2002-01-30 Andrew Cagney <ac131313@redhat.com>
4324
4325 * defs.h (vwarning): Declare.
4326 * utils.c (vwarning): New function.
4327 (warning): Call vwarning.
4328 (warning_begin): Delete function.
4329
4330 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
4331 the warning message.
4332 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
4333 warning_begin.
4334
4335 2002-01-30 Michael Snyder <msnyder@redhat.com>
4336
4337 * NEWS: Mention "set trust-readonly-sections" command.
4338 Mention generate-core-file command.
4339
4340 2002-01-15 Michael Snyder <msnyder@redhat.com>
4341
4342 * target.c: New command, "set trust-readonly-sections on".
4343 (do_xfer_memory): Honor the suggestion to trust readonly sections
4344 by reading them from the object file instead of from the target.
4345 (initialize_targets): Register command "set trust-readonly-sections".
4346
4347 2002-01-29 Andrew Cagney <ac131313@redhat.com>
4348
4349 * parse.c (target_map_name_to_register): Simplify, search regs and
4350 pseudo-regs using a single loop.
4351
4352 2002-01-30 Andrew Cagney <ac131313@redhat.com>
4353
4354 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
4355
4356 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
4357
4358 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
4359 * config/i386/i386v42mp.mh: Add i387-nat.o .
4360 * i386v4-nat.c: Include i387-nat.h.
4361 (supply_fpregset): Use i387_supply_fsave.
4362 (fill_fpregset): Use i387_fill_fsave.
4363
4364 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
4365
4366 * arm-tdep.c (arm_call_dummy_words): Define.
4367 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
4368 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
4369 (CALL_DUMMY_WORDS): Define.
4370 (arm_call_dummy_words): Declare.
4371 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
4372 (arm_linux_call_dummy_words): Declare.
4373
4374 2002-01-30 Andreas Schwab <schwab@suse.de>
4375
4376 * m68klinux-nat.c: Fix last change to use regcache_collect
4377 instead of referencing registers[] directly.
4378
4379 2002-01-29 Andrew Cagney <ac131313@redhat.com>
4380
4381 * parse.c (target_map_name_to_register): Delete code wrapped in
4382 #ifdef REGISTER_NAME_ALIAS_HOOK.
4383
4384 2002-01-28 Michael Snyder <msnyder@redhat.com>
4385
4386 * regcache.c (legacy_read_register_gen): Need to be able to
4387 read pseudo-register as well as real register.
4388 (legacy_write_register_gen): Ditto.
4389
4390 2002-01-28 Andrew Cagney <ac131313@redhat.com>
4391
4392 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
4393 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
4394 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
4395 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
4396 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
4397 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
4398 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
4399 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
4400 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
4401 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
4402 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
4403 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
4404 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
4405 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
4406 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
4407 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
4408 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
4409 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
4410 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
4411 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
4412
4413 2002-01-28 Andrew Cagney <ac131313@redhat.com>
4414
4415 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
4416 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
4417 (initialize_current_architecture): Update target_byte_order using
4418 information from BFD.
4419 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
4420 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
4421
4422 2002-01-28 Andrew Cagney <ac131313@redhat.com>
4423
4424 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
4425 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
4426
4427 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
4428 #ifdef INVALID_FLOAT.
4429 * infcmd.c (do_registers_info): Ditto.
4430 * values.c (unpack_double): Ditto. Add comment.
4431
4432 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
4433 already commented out.
4434
4435 2002-01-26 Andreas Schwab <schwab@suse.de>
4436
4437 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
4438 * m68klinux-nat.c: Update ptrace interface for fetching/storing
4439 registers and add support for PTRACE_GETREGS.
4440
4441 2002-01-24 Andrew Cagney <ac131313@redhat.com>
4442
4443 GDB 5.1.1 released from 5.1 branch.
4444 * NEWS: Add 5.1.1 news.
4445 * README: Sync with 5.1 branch.
4446
4447 2002-01-23 Fred Fish <fnf@redhat.com>
4448
4449 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
4450 stabstring on initial malloc. Reallocing will copy it for us,
4451 if necessary.
4452
4453 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
4454
4455 * Makefile.in (hpread_h): Delete.
4456 (HFILES_NO_SRCDIR): Remove hpread.h.
4457 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
4458 (hpread.o): Update dependencies.
4459 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
4460
4461 * hp-psymtab-read.c: Remove file.
4462 * hp-symtab-read.c: Remove file.
4463 * hpread.h: Remove file.
4464
4465 * hpread.c: Merge all contents of hp-psymtab-read.c,
4466 hp-symtab-read.c and hpread.h into this file, as it was prior to
4467 January 1999.
4468
4469 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
4470 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
4471 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
4472 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
4473
4474 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
4475
4476 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
4477 fill_gregset): Call gdbarch_tdep() just once, assign result to
4478 variable and use that, instead of calling the function several
4479 times.
4480
4481 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
4482
4483 * configure.host: Accept sparcv9 as alias for sparc64.
4484 * configure.tgt: Likewise.
4485
4486 2002-01-22 Kevin Buettner <kevinb@redhat.com>
4487
4488 * solib-aix5.c (build_so_list_from_mapfile)
4489 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
4490 arguments is not reversed.
4491 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
4492 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
4493
4494 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
4495
4496 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
4497 modified version of obsolete sh_fetch_pseudo_register.
4498 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
4499 (sh4_register_read): New function.
4500 (sh_pseudo_register_write): New function. Renamed and modified
4501 version of obsolete sh_store_pseudo_register.
4502 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
4503 (sh4_register_write): New function.
4504 (sh_gdbarch_init): Remove setting of gdbarch function
4505 fetch_pseudo_register and store_pseudo_register. Remove setting of
4506 register_convert_to_raw, register_convert_to_virtual,
4507 register_convertible.
4508 (sh_sh4_register_convertible): Delete. No longer needed. All is
4509 taken care by architecture specific functions
4510 register_read/register_write.
4511 (sh_sh4_register_convert_to_virtual): Make static.
4512 (sh_sh4_register_convert_to_raw): Ditto.
4513
4514 2002-01-22 Andrew Cagney <ac131313@redhat.com>
4515
4516 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
4517 (floatformat_is_nan, floatformat_mantissa): Ditto.
4518
4519 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
4520 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
4521 builtin_type_ieee_double_little,
4522 builtin_type_ieee_double_littlebyte_bigword,
4523 builtin_type_m68881_ext, builtin_type_i960_ext,
4524 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
4525 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
4526 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
4527 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
4528
4529 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
4530
4531 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
4532 parameter. Set frameless flag if it exists and depended of
4533 whether the scanned function is frameless or not.
4534 (xstormy16_skip_prologue): If function is frameless, return
4535 result of xstormy16_scan_prologue().
4536 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
4537 call.
4538
4539 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
4540
4541 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
4542 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
4543 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
4544 sh_sh4_register_byte, sh_sh4_register_raw_size,
4545 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
4546 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
4547 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
4548 sh_store_pseudo_register, sh_do_pseudo_register): Call
4549 gdbarch_tdep() just once, assign result to variable and use that,
4550 instead of calling the function several times.
4551
4552 2002-01-20 Mark Kettenis <kettenis@gnu.org>
4553
4554 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
4555 macros instead of LAST_FPU_CTRL_REGNUM.
4556 (store_register): Likewise.
4557
4558 2002-01-21 Jim Blandy <jimb@redhat.com>
4559
4560 * infcmd.c (run_command): Check that the `exec' target layer's BFD
4561 is up-to-date before running the program, not just when a program
4562 exits.
4563
4564 2002-01-21 Fred Fish <fnf@redhat.com>
4565
4566 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
4567 when we have found all instructions we are looking for.
4568
4569 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
4570
4571 * arm-tdep.c (arm_register_name): New function.
4572 (arm_registers_names): Make static.
4573 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
4574 (arm_register_name): Declare.
4575 (REGISTER_NAME): Use it.
4576
4577 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
4578 Kevin Buettner <kevinb@redhat.com>
4579
4580 Convert arm targets to new FRAME interface.
4581 * arm-tdep.c (struct frame_extra_info): Remove fsr.
4582 (arm_frame_find_save_regs): Delete.
4583 (arm_frame_init_saved_regs): New.
4584 (arm_init_extra_frame_info): Alloacte saved_regs as required.
4585 Allocate extra_info as required. Convert all uses of fsr.regs
4586 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
4587 to use extra_info.
4588 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
4589 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
4590 (check_prologue_cache, save_prologue_cache): Likewise.
4591 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
4592 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
4593 (FRAME_FIND_SAVED_REGS): Delete.
4594 (arm_frame_find_saved_regs): Delete prototype.
4595 (arm_frame_init_saved_regs): New prototype.
4596 (FRAME_INIT_SAVED_REGS): Define.
4597
4598 2002-01-20 Andrew Cagney <ac131313@redhat.com>
4599
4600 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
4601
4602 2002-01-20 Andrew Cagney <ac131313@redhat.com>
4603
4604 From Jeff Law <law@redhat.com>:
4605 * infttrace.c: Include <sys/pstat.h>.
4606 (child_pid_to_exec_file): Revamp. Use pstat call to get the
4607 exec file if the ttrace equivalent fails.
4608
4609 2002-01-20 Andrew Cagney <ac131313@redhat.com>
4610
4611 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
4612 (closeLogFile): Ditto.
4613
4614 2002-01-20 Michael Chastain <mec@shout.net>
4615
4616 * top.c (print_gdb_version): Bump copyright year to 2002.
4617
4618 2002-01-20 Andrew Cagney <ac131313@redhat.com>
4619
4620 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
4621 Zannoni and Eli Zaretskii.
4622
4623 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
4624
4625 * buildsym.c: Update copyright years.
4626 * c-typeprint.c: Likewise.
4627 * dwarf2read.c: Likewise.
4628 * f-typeprint.c: Likewise.
4629 * gdbtypes.c: Likewise.
4630 * gdbtypes.h: Likewise.
4631 * hp-symtab-read.c: Likewise.
4632 * hpread.c: Likewise.
4633 * mdebugread.c: Likewise.
4634 * p-typeprint.c: Likewise.
4635
4636 2002-01-20 Andrew Cagney <ac131313@redhat.com>
4637
4638 * remote-sim.c (gdbsim_open): Simplify code testing the macro
4639 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
4640 byte-order selectable.
4641 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
4642 * arch-utils.c: Ditto.
4643 (set_endian): Ditto.
4644 (set_endian_from_file): Ditto.
4645 * gdbserver/low-sim.c (create_inferior): Ditto.
4646 * gdbarch.sh: Ditto.
4647 * gdbarch.h: Re-generate.
4648 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
4649 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
4650 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
4651 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
4652 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
4653 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
4654 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
4655 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
4656 macro definition.
4657 * config/mips/tm-wince.h: Remove #undef of macro
4658 TARGET_BYTE_ORDER_SELECTABLE.
4659 * config/sh/tm-wince.h: Ditto.
4660
4661 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
4662
4663 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
4664 member function fields. Add accessor macro
4665 TYPE_FN_FIELD_ARTIFICIAL.
4666 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
4667 * c-typeprint.c (c_type_print_base): Skip artificial member
4668 functions.
4669
4670 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
4671
4672 * f-typeprint.c: Delete unused function f_type_print_args.
4673 * p-typeprint.c: Delete unused function pascal_type_print_args.
4674
4675 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
4676
4677 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
4678 comment. Add ``artificial'' to ``union field_location''.
4679
4680 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
4681
4682 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
4683 * mdebugread.c (parse_symbol): Likewise.
4684 * stabsread.c (define_symbol): Likewise.
4685 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
4686 initializing TYPE_FIELD_BITPOS to n (obsolete).
4687 (hpread_doc_function_type): Likewise.
4688 * hpread.c (hpread_function_type): Likewise.
4689
4690 2002-01-20 Andrew Cagney <ac131313@redhat.com>
4691
4692 * configure.in (host_makefile_frag): Only require a host makefile
4693 fragment when a native build.
4694 * configure: Re-generate.
4695
4696 2002-01-20 Andrew Cagney <ac131313@redhat.com>
4697
4698 * doublest.h (floatformat_from_type): Declare.
4699 * doublest.c (floatformat_from_type): New function.
4700 (convert_typed_floating): Use.
4701
4702 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
4703 call to function floatformat_from_type.
4704
4705 * gdbarch.sh (IEEE_FLOAT): Delete.
4706 * gdbarch.h, gdbarch.c: Re-generate.
4707 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
4708 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
4709 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
4710 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
4711 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
4712 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
4713 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
4714 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
4715 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
4716 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
4717 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
4718 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
4719
4720 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
4721 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
4722 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
4723 * sh-tdep.c (sh_gdbarch_init): Ditto.
4724 * mips-tdep.c (mips_gdbarch_init): Ditto.
4725 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
4726 * cris-tdep.c (cris_gdbarch_init): Ditto.
4727
4728 2002-01-20 Jiri Smid <smid@suse.cz>
4729
4730 * configure.host, configure.tgt: Support x86-64.
4731 * NEWS: Note new target x86-64.
4732
4733 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
4734 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
4735 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
4736 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
4737 x86-64-linux-nat.o): Fix dependencies.
4738
4739 2002-01-19 Andrew Cagney <ac131313@redhat.com>
4740
4741 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
4742 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
4743 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
4744 * config/sparc/xm-sun4os4.h: Delete file.
4745 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
4746
4747 2002-01-19 Andrew Cagney <ac131313@redhat.com>
4748
4749 * config/sparc/sparclynx.mh (XM_FILE): Delete.
4750 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
4751 * config/m68k/m68klynx.mh (XM_FILE): Delete.
4752 * config/i386/i386lynx.mh (XM_FILE): Delete.
4753 * config/rs6000/xm-rs6000ly.h: Delete file.
4754 * config/sparc/xm-sparclynx.h: Delete file.
4755 * config/m68k/xm-m68klynx.h: Delete file.
4756 * config/i386/xm-i386lynx.h: Delete file.
4757 * config/xm-lynx.h: Delete file.
4758 * config/djgpp/fnchange.lst: Update.
4759
4760 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
4761
4762 * alpha-tdep.c (alpha_register_byte): New function.
4763 (alpha_register_raw_size): Ditto.
4764 (alpha_register_virtual_size): Ditto.
4765 (alpha_skip_prologue_internal): Renamed from
4766 alpha_skip_prologue.
4767 (alpha_skip_prologue): New version that calls
4768 alpha_skip_prologue_internal.
4769 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
4770 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
4771 second argument from alpha_skip_prologue.
4772 (REGISTER_BYTE): Use alpha_register_byte.
4773 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
4774 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
4775 (FRAMELESS_FUNCTION_INVOCATION): Use
4776 generic_frameless_function_invocation_not.
4777 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
4778 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
4779
4780 2002-01-19 Andrew Cagney <ac131313@redhat.com>
4781
4782 * config/mips/xm-news-mips.h: Delete file.
4783 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
4784
4785 * config/m88k/xm-m88k.h: Delete file.
4786 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
4787 * config/m88k/xm-delta88v4.h: Ditto.
4788 * config/m88k/xm-delta88.h: Ditto.
4789
4790 * config/alpha/xm-fbsd.h: Delete file.
4791 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
4792
4793 * config/sparc/xm-sparc.h: Delete file.
4794 * Makefile.in (xm-sun4os4.h): Delete dependency.
4795 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
4796 * config/sparc/xm-sun4os4.h: Ditto.
4797 * config/sparc/xm-linux.h: Ditto.
4798
4799 * config/i386/xm-windows.h: Delete file.
4800
4801 2002-01-19 Andrew Cagney <ac131313@redhat.com>
4802
4803 * utils.c: Include <sys/param.h> for MAXPATHLEN.
4804 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
4805
4806 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
4807
4808 * alpha-tdep.c (alpha_call_dummy_words): New.
4809 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
4810 (CALL_DUMMY_P): Define.
4811 (CALL_DUMMY_WORDS): Define.
4812 (SIZEOF_CALL_DUMMY_WORDS): Define.
4813
4814 2002-01-19 Per Bothner <per@bothner.com>
4815
4816 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
4817 isn't NULL, which can happen with some gcj-3.x-produced code.
4818
4819 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
4820
4821 * alpha-tdep.c (alpha_register_virtual_type): New function.
4822 (alpha_init_frame_pc_first): Ditto.
4823 (alpha_fix_call_dummy): Ditto.
4824 (alpha_store_struct_return): Ditto.
4825 (alpha_extract_struct_value_address): Ditto.
4826 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
4827 alpha_register_virtual_type.
4828 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
4829 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
4830 alpha_extract_struct_value_address.
4831 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
4832 (INIT_FRAME_PC): Use init_frame_pc_noop.
4833 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
4834
4835 2002-01-19 Mark Kettenis <kettenis@gnu.org>
4836
4837 * i386gnu-nat.c: Include "i386-tdep.h".
4838 (fetch_fpregs): Simplify code dealing with uninitialized floating
4839 point states such that it doesn't require FP7_REGNUM.
4840
4841 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
4842
4843 * alpha-tdep.c (frame_extra_info): New.
4844 (alpha_find_saved_regs): Make static. Use
4845 frame->extra_info.
4846 (alpha_frame_init_saved_regs): New function.
4847 (alpha_frame_saved_pc): Use frame->extra_info.
4848 (temp_saved_regs): Don't declare as struct frame_saved_regs.
4849 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
4850 (init_extra_frame_info): Rename to...
4851 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
4852 (alpha_print_extra_frame_info): New function.
4853 (alpha_frame_locals_address): Ditto.
4854 (alpha_frame_args_address): Ditto.
4855 (alpha_pop_frame): Use frame->extra_info.
4856 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
4857 alpha_frame_args_address.
4858 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
4859 (alpha_find_saved_regs): Remove prototype.
4860 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
4861 (EXTRA_FRAME_INFO): Remove.
4862 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
4863 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
4864
4865 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
4866
4867 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
4868 (alpha_cannot_fetch_register): Ditto.
4869 (alpha_cannot_store_register): Ditto.
4870 (alpha_register_convertible): Ditto.
4871 (alpha_use_struct_convention): Ditto.
4872 * config/alpha/tm-alpha.h: Update copyright years.
4873 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
4874 (INNER_THAN): Use core_addr_lessthan.
4875 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
4876 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
4877 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
4878 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
4879 (FRAME_CHAIN): Remove unnecessary cast.
4880
4881 2002-01-18 Andrew Cagney <ac131313@redhat.com>
4882
4883 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
4884 obsolete.
4885
4886 2002-01-18 Andrew Cagney <ac131313@redhat.com>
4887
4888 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
4889 * monitor.c, remote-array.c, remote-bug.c: Ditto.
4890 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
4891 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
4892 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
4893 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
4894 * x86-64-linux-nat.c: Ditto.
4895
4896 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
4897
4898 * alpha-tdep.c (alpha_register_name): New function.
4899 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
4900 (REGISTER_NAME): Define.
4901
4902 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
4903
4904 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
4905
4906 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
4907
4908 * alpha-tdep.c: Update copyright years.
4909 (alpha_next_pc): New function.
4910 (alpha_software_single_step): Ditto.
4911 * config/alpha/tm-alpha.h: Add prototype for
4912 alpha_software_single_step.
4913
4914 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
4915
4916 * alphabsd-nat.c: Update copyright years.
4917 (fill_gregset): Use regcache_collect.
4918 (fill_fpregset): Likewise.
4919 (fetch_inferior_registers): Only fetch integer registers
4920 if requested to do so.
4921 (store_inferior_registers): Only store integer registers
4922 if requested to do so.
4923
4924 2002-01-17 Andrew Cagney <ac131313@redhat.com>
4925
4926 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
4927 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
4928 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
4929 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
4930 * config/alpha/fbsd.mh (XDEPFILES): Delete.
4931 * config/arm/linux.mh (XDEPFILES): Delete.
4932 * config/arm/nbsd.mh (XDEPFILES): Delete.
4933 * config/i386/i386dgux.mh (XDEPFILES): Delete.
4934 * config/i386/i386sol2.mh (XDEPFILES): Delete.
4935 * config/i386/i386m3.mh (XDEPFILES): Delete.
4936 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
4937 * config/i386/i386gnu.mh (XDEPFILES): Delete.
4938 * config/i386/fbsd.mh (XDEPFILES): Delete.
4939 * config/i386/i386bsd.mh (XDEPFILES): Delete.
4940 * config/i386/i386sco5.mh (XDEPFILES): Delete.
4941 * config/i386/i386v4.mh (XDEPFILES): Delete.
4942 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
4943 * config/i386/i386sco4.mh (XDEPFILES): Delete.
4944 * config/i386/i386aix.mh (XDEPFILES): Delete.
4945 * config/i386/go32.mh (XDEPFILES): Delete.
4946 * config/i386/cygwin.mh (XDEPFILES): Delete.
4947 * config/i386/i386lynx.mh (XDEPFILES): Delete.
4948 * config/i386/i386mach.mh (XDEPFILES): Delete.
4949 * config/i386/i386v32.mh (XDEPFILES): Delete.
4950 * config/i386/linux.mh (XDEPFILES): Delete.
4951 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
4952 * config/i386/ncr3000.mh (XDEPFILES): Delete.
4953 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
4954 * config/i386/i386sco.mh (XDEPFILES): Delete.
4955 * config/i386/i386v.mh (XDEPFILES): Delete.
4956 * config/i386/nbsd.mh (XDEPFILES): Delete.
4957 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
4958 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
4959 * config/i386/symmetry.mh (XDEPFILES): Delete.
4960 * config/i386/obsd.mh (XDEPFILES): Delete.
4961 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
4962 * config/ia64/linux.mh (XDEPFILES): Delete.
4963 * config/ia64/aix.mh (XDEPFILES): Delete.
4964 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
4965 * config/m68k/dpx2.mh (XDEPFILES): Delete.
4966 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
4967 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
4968 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
4969 * config/m68k/linux.mh (XDEPFILES): Delete.
4970 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
4971 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
4972 * config/m68k/nbsd.mh (XDEPFILES): Delete.
4973 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
4974 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
4975 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
4976 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
4977 * config/m88k/delta88.mh (XDEPFILES): Delete.
4978 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
4979 * config/m88k/m88k.mh (XDEPFILES): Delete.
4980 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
4981 * config/mips/linux.mh (XDEPFILES): Delete.
4982 * config/mips/irix6.mh (XDEPFILES): Delete.
4983 * config/mips/irix5.mh (XDEPFILES): Delete.
4984 * config/mips/irix4.mh (XDEPFILES): Delete.
4985 * config/mips/irix3.mh (XDEPFILES): Delete.
4986 * config/mips/decstation.mh (XDEPFILES): Delete.
4987 * config/mips/mipsm3.mh (XDEPFILES): Delete.
4988 (NATDEPFILES): Move core-aout.o to here.
4989 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
4990 * config/pa/hpux1020.mh (XDEPFILES): Delete.
4991 * config/pa/hppabsd.mh (XDEPFILES): Delete.
4992 * config/pa/hppahpux.mh (XDEPFILES): Delete.
4993 * config/pa/hpux11w.mh (XDEPFILES): Delete.
4994 * config/pa/hppaosf.mh (XDEPFILES): Delete.
4995 * config/pa/hpux11.mh (XDEPFILES): Delete.
4996 * config/powerpc/aix.mh (XDEPFILES): Delete.
4997 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
4998 * config/powerpc/linux.mh (XDEPFILES): Delete.
4999 * config/romp/rtbsd.mh: Rename XDEPFILES.
5000 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
5001 * config/rs6000/aix4.mh (XDEPFILES): Delete.
5002 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
5003 * config/s390/s390.mh (XDEPFILES): Delete.
5004 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
5005 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
5006 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
5007 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
5008 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
5009 * config/sparc/nbsd.mh (XDEPFILES): Delete.
5010 * config/sparc/linux.mh (XDEPFILES): Delete.
5011 * config/vax/vaxult.mh (XDEPFILES): Delete.
5012 * config/vax/vaxult2.mh (XDEPFILES): Delete.
5013 * Makefile.in (DEPFILES): Remove XDEPFILES.
5014
5015 2002-01-17 Andrew Cagney <ac131313@redhat.com>
5016
5017 * utils.c (internal_verror): Fix comments, default is yes not no.
5018 Update queries to match. Default to quit and dump core.
5019
5020 2002-01-17 Andrew Cagney <ac131313@redhat.com>
5021
5022 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
5023 copyright.
5024 * defs.h, event-top.c, gdbcmd.h: Ditto.
5025 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
5026 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
5027 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
5028 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
5029 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
5030 * mi/mi-main.c:Ditto.
5031
5032 * stack.c, symfile.c: Update copyright.
5033
5034 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
5035
5036 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
5037 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
5038 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
5039 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
5040
5041 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
5042
5043 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
5044 * gdbserver/low-lynx.c (myattach): Likewise.
5045 * gdbserver/low-nbsd.c (myattach): Likewise.
5046 * gdbserver/low-sim.c (myattach): Likewise.
5047 * gdbserver/low-sparc.c (myattach): Likewise.
5048 * gdbserver/low-sun3.c (myattach): Likewise.
5049
5050 * gdbserver/low-linux.c (myattach): New function.
5051
5052 * gdbserver/server.c (attach_inferior): New function.
5053 (main): Handle "--attach".
5054
5055 2002-01-16 Andrew Cagney <ac131313@redhat.com>
5056
5057 * MAINTAINERS (language support): Daniel Jacobwitz is C++
5058 maintainer.
5059
5060 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
5061
5062 * c-typeprint.c (is_type_conversion_operator): Add additional
5063 check for non-conversion operators.
5064
5065 2002-01-15 Michael Snyder <msnyder@redhat.com>
5066
5067 * linux-proc.c: Add "info proc" command, a la procfs.c.
5068 (read_mapping): New function, abstract and re-use code.
5069 (linux_find_memory_regions): Use new func read_mapping.
5070 (linux_info_proc_cmd): New function, implement "info proc".
5071 (_initialize_linux_proc): Add new command "info proc".
5072
5073 2002-01-15 Michael Snyder <msnyder@redhat.com>
5074
5075 * symfile.c (generic_load): Use bfd_map_over_sections method
5076 instead of manipulating bfd structure members directly.
5077 (add_section_size_callback): New function, bfd sections callback
5078 used by generic_load.
5079 (load_sections_callback): New function, bfd sections callback
5080 used by generic_load.
5081
5082 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
5083
5084 [Based on work by Jim Blandy]
5085 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
5086 (builtin_type_vec128): Export.
5087 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
5088 types.
5089 (builtin_type_vec128): New builtin type for 128 bit vector
5090 registers.
5091 (build_gdbtypes): Initialize builtin_type_v16qi and
5092 builtin_type_v8hi. Create the vec128 register builtin type
5093 structure.
5094 (build_builtin_type_vec128): New function.
5095 (_initialize_gdbtypes): Register builtin_type_v16qi and
5096 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
5097 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
5098 AltiVec register to new builtin type.
5099
5100 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
5101
5102 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
5103 to make_cv_type.
5104
5105 2002-01-14 Andrew Cagney <ac131313@redhat.com>
5106
5107 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
5108 CLEAN_UP_REGISTER_VALUE.
5109 * regcache.c (supply_register): Update only call.
5110
5111 2002-01-14 Andrew Cagney <ac131313@redhat.com>
5112
5113 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
5114 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
5115 a29k-*-vxworks* targets as obsolete.
5116
5117 2002-01-14 Michael Snyder <msnyder@redhat.com>
5118
5119 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
5120 until we can resolve portability issues.
5121 * gregset.h: Remove references to fpxregs.
5122 * gcore.c (gcore_command): Initialize note_sec to NULL.
5123
5124 2002-01-13 Andrew Cagney <ac131313@redhat.com>
5125
5126 * signals.c (target_signal_to_name): Rewrite. Only use
5127 signals[].name when in bounds and non-NULL.
5128
5129 2002-01-13 Andrew Cagney <ac131313@redhat.com>
5130
5131 From Petr Ledvina <ledvinap@kae.zcu.cz>:
5132 * signals.c (target_signal_to_name): Verify that SIG is within the
5133 bounds of the signals array.
5134
5135 2002-01-13 Andrew Cagney <ac131313@redhat.com>
5136
5137 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
5138
5139 2002-01-13 Keith Seitz <keiths@redhat.com>
5140
5141 * stack.c (print_frame_info_base): Print the frame's pc
5142 only if when print_frame_info_listing_hook is not defined.
5143
5144 2002-01-13 Keith Seitz <keiths@redhat.com>
5145
5146 * varobj.c (varobj_set_value): Make sure that there were no
5147 errors evaluating the object before attempting to set its
5148 value.
5149 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
5150 so this offset adjustment is no longer necessary.
5151 (create_child): Don't set the error flag if the child is
5152 a CPLUS_FAKE_CHILD.
5153 (value_of_child): If value_fetch_lazy fails, return NULL
5154 so that callers will be notified that an error occurred.
5155 (c_value_of_variable): Delay check of variable's validity
5156 until later. We actually want all structs and unions to have
5157 the value "{...}".
5158 Do not return "???" for variables which could not be evaluated.
5159 This error condition must be returned to the caller so that it
5160 can get the error condition from gdb.
5161 (cplus_name_of_child): Adjust index for vptr before figuring
5162 out the name of the child.
5163 (cplus_value_of_child): If a child's (real) parent is not valid,
5164 don't even bother trying to give a value for it. Just return
5165 an error. Change all instances in this function.
5166 (cplus_type_of_child): If our parent is one of the "fake"
5167 parents, we need to get at the type of the real parent, and
5168 derive the child's true type using this information.
5169
5170 2002-01-13 Andrew Cagney <ac131313@redhat.com>
5171
5172 From 2002-01-09 John Marshall <johnm@falch.net>:
5173 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
5174 sources.redhat.com, and tweak some related URLs which had
5175 suffered from linkrot.
5176
5177 2002-01-13 Andrew Cagney <ac131313@redhat.com>
5178
5179 From Jeff law:
5180 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
5181 structures passed in registers.
5182
5183 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
5184
5185 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
5186 white space which prevented compilation. Reported by DSK
5187 <dsk@student.unsw.edu.au>.
5188
5189 2002-01-11 Michael Snyder <msnyder@redhat.com>
5190
5191 * symfile.c (build_section_addr_info_from_section_tab):
5192 Use bfd access method instead of manipulating bfd directly.
5193 (syms_from_objfile): Ditto.
5194 (simple_overlay_update_1): Ditto.
5195 (simple_overlay_update): Ditto.
5196 (generic_load): Ditto.
5197 (overlay_unmapped_address): FIXME comment, bfd access methods.
5198 (sections_overlap): FIXME comment, bfd access methods.
5199 (pc_in_mapped_range): FIXME comment, bfd access methods.
5200 (pc_in_unmapped_range): FIXME comment, bfd access methods.
5201 (section_is_mapped): FIXME comment, bfd access methods.
5202 (section_is_overlay): FIXME comment, bfd access methods.
5203
5204 * symfile.c (generic_load): Whitespace and long line cleanups.
5205 Remove duplicate variable, change several local variables to
5206 more appropriate data types.
5207 (print_transfer_performance): Use %lu instead of %ld for ulongs.
5208
5209 2002-01-12 Andrew Cagney <ac131313@redhat.com>
5210
5211 From Peter Schauer:
5212 * language.c (longest_local_hex_string_custom): Use phex_nz to
5213 convert NUM to a hex string.
5214
5215 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
5216
5217 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
5218 the function.
5219 Update Copyright year.
5220
5221 2002-01-12 Andrew Cagney <ac131313@redhat.com>
5222
5223 * language.c (longest_raw_hex_string): Delete unused function.
5224
5225 2002-01-11 Petr Sorfa <petrs@caldera.com>
5226
5227 * MAINTAINERS (write-after-approval): Add myself.
5228 * dwarf2read.c (read_tag_string_type): Handling of
5229 DW_AT_byte_size.
5230 (read_tag_string_type): FORTRAN fix to prevent propagation of
5231 first string size.
5232 (set_cu_language): Handling of DW_LANG_Fortran95
5233
5234 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
5235
5236 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
5237 GETPID(inferior_ptid).
5238 (store_inferior_registers): Likewise.
5239
5240 2002-01-10 Jason Merrill <jason@redhat.com>
5241
5242 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
5243 Fix DW_OP_minus.
5244
5245 2002-01-10 Andrew Cagney <ac131313@redhat.com>
5246
5247 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
5248 and bfd/elf32-sh-nbsd.c.
5249
5250 2002-01-10 Michael Snyder <msnyder@redhat.com>
5251
5252 * NEWS: Mention --pid and corefile/proc-id behavior change.
5253
5254 * Makefile.in: Add rules for gcore.o and linux-proc.o.
5255 * gcore.c: Include cli/cli-decode.h instead of command.h.
5256
5257 * main.c (captured_main): Add new command line option "--pid".
5258 If the second command line argument (following the symbol-file)
5259 begins with a digit, try to attach to it before trying to open
5260 it as a corefile.
5261 (print_gdb_help): Document the "--pid" argument.
5262
5263 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
5264
5265 * completer.c (command_completer): New function.
5266
5267 * completer.h <command_completer>: Add prototype.
5268
5269 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
5270 completer for the "help" command.
5271
5272 2002-01-09 Jason Merrill <jason@redhat.com>
5273
5274 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
5275
5276 2002-01-09 Michael Snyder <msnyder@redhat.com>
5277
5278 * i386-linux-nat.c (fill_fpxregset): Make global.
5279 (store_fpxregset): Ditto.
5280
5281 * gregset.h (gdb_fpxregset_t): Define.
5282 (supply_fpxregset): Prototype.
5283 (fill_fpxregset): Prototype.
5284
5285 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
5286
5287 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
5288
5289 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
5290 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
5291 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
5292
5293 2002-01-09 Andrew Cagney <ac131313@redhat.com>
5294
5295 * MAINTAINERS: Update target maintainer rules so that any
5296 Maintainer can approve a tested patch for a maintenance-only
5297 target.
5298
5299 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
5300
5301 * MAINTAINERS (write-after-approval): Add myself.
5302
5303 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
5304 IN_SIGTRAMP.
5305
5306 2002-01-08 Michael Snyder <msnyder@redhat.com>
5307
5308 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
5309 real name of the executable, rather than the /proc name.
5310
5311 2002-01-03 Michael Snyder <msnyder@redhat.com>
5312
5313 Implement a "generate-core-file" command in gdb, save target state.
5314 * gcore.c: New file. Implement new command 'generate-core-file'.
5315 Save a corefile image of the current state of the inferior.
5316 * linux-proc.c: Add linux-specific code for saving corefiles.
5317 * target.h (struct target_ops): Add new target vectors for saving
5318 corefiles; to_find_memory_regions and to_make_corefile_notes.
5319 (target_find_memory_regions): New macro.
5320 (target_make_corefile_notes): New macro.
5321 * target.c (update_current_target): Inherit new target methods.
5322 (dummy_find_memory_regions): New place-holder method.
5323 (dummy_make_corefile_notes): New place-holder method.
5324 (init_dummy_target): Initialize new dummy target vectors.
5325 * exec.c (exec_set_find_memory_regions): New function.
5326 Allow the exec_ops vector for memory regions to be taken over.
5327 (exec_make_note_section): New function, target vector method.
5328 * defs.h (exec_set_find_memory_regions): Export prototype.
5329 * procfs.c (proc_find_memory_regions): New function, corefile method.
5330 (procfs_make_note_section): New function, corefile method.
5331 (init_procfs_ops): Set new target vector pointers.
5332 (find_memory_regions_callback): New function.
5333 (procfs_do_thread_registers): New function.
5334 (procfs_corefile_thread_callback): New function.
5335 * sol-thread.c (sol_find_memory_regions): New function.
5336 (sol_make_note_section): New function.
5337 (init_sol_thread_ops): Initialize new target vectors.
5338 * inftarg.c (inftarg_set_find_memory_regions): New function.
5339 Allow to_find_memory_regions vector to be taken over.
5340 (inftarg_set_make_corefile_notes): New function.
5341 Allow to_make_corefile_notes vector to be taken over.
5342 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
5343 interface layer if not target_has_execution (may be a corefile).
5344 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
5345 * config/sparc/sun4sol2.mh: Ditto.
5346 * config/alpha/alpha-linux.mh: Ditto.
5347 * config/arm/linux.mh: Ditto.
5348 * config/i386/x86-64linux.mh: Ditto.
5349 * config/ia64/linux.mh: Ditto.
5350 * config/m68k/linux.mh: Ditto.
5351 * config/mips/linux.mh: Ditto.
5352 * config/powerpc/linux.mh: Ditto.
5353 * config/sparc/linux.mh: Ditto.
5354
5355 2002-01-07 Michael Snyder <msnyder@redhat.com>
5356
5357 * arm-linux-nat.c: Remove references to regcache.c internal data
5358 (registers[] and register_valid[]).
5359
5360 2002-01-07 Michael Snyder <msnyder@redhat.com>
5361
5362 * linux-proc.c: New file. Implement child_pid_to_exec_file,
5363 so that attaching to a pid will automatically read the process's
5364 symbol file and shlibs.
5365 * Makefile.in: Add rule for linux-proc.o.
5366 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
5367 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
5368 * config/arm/linux.mh: Ditto.
5369 * config/i386/linux.mh: Ditto.
5370 * config/i386/x86-64linux.mh: Ditto.
5371 * config/ia64/linux.mh: Ditto.
5372 * config/m68k/linux.mh: Ditto.
5373 * config/mips/linux.mh: Ditto.
5374 * config/powerpc/linux.mh: Ditto.
5375 * config/sparc/linux.mh: Ditto.
5376
5377 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
5378
5379 * win32-nat.c: Add i386-tdep.h dependency.
5380
5381 2002-01-07 Michael Snyder <msnyder@redhat.com>
5382
5383 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
5384 instead of bfd_get_arch_size. Don't bail out just because
5385 there's no exec_bfd.
5386
5387 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
5388 * p-valprint.c (pascal_object_print_value): Ditto.
5389 * somread.c (som_symtab_read): Ditto.
5390 * symfile.c (simple_free_overlay_region_table): Ditto.
5391 * valops.c (value_assign): Ditto.
5392
5393 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
5394 use tilde_expand and strerror for opening save-tracepoints file.
5395
5396 * thread-db.c (thread_db_new_objfile): Indendation fix.
5397
5398 * infptrace.c (GDB_MAX_ALLOCA): New define.
5399 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
5400 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
5401 can be overridden with whatever value is appropriate to the host).
5402 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
5403 alloca to allocate potentially large buffer.
5404 * rs6000-nat.c (child_xfer_memory): Ditto.
5405 * symm-nat.c (child_xfer_memory): Ditto.
5406 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
5407
5408 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
5409
5410 From Nick Clifton <nickc@redhat.com>
5411 * d10v-tdep.c: Set STACK_START to 0x200bffe.
5412
5413 2002-01-07 Michael Snyder <msnyder@redhat.com>
5414
5415 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
5416 Don't use exec_bfd if it's NULL.
5417
5418 2002-01-06 Mark Kettenis <kettenis@gnu.org>
5419
5420 * valops.c (value_arg_coerce): Fix formatting.
5421
5422 2002-01-06 Andrew Cagney <ac131313@redhat.com>
5423
5424 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
5425 * gnu-nat.c: Ditto.
5426
5427 2002-01-06 Andrew Cagney <ac131313@redhat.com>
5428
5429 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
5430 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
5431 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
5432 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
5433 z8k-coff have not been multi-arched. Update z8k-coff build
5434 status.
5435
5436 2002-01-06 Andrew Cagney <ac131313@redhat.com>
5437
5438 * MAINTAINERS: Mark a29k target as obsolete.
5439 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
5440 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
5441 comments.
5442 * NEWS: Note that a29k targets are obsolete.
5443 * a29k-tdep.c: Mark as obsolete.
5444 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
5445 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
5446 a29k-*-vxworks* targets as obsolete.
5447 * remote-adapt.c: Obsolete.
5448 * remote-eb.c: Obsolete.
5449 * remote-mm.c: Obsolete.
5450 * remote-udi.c: Obsolete.
5451 * config/a29k/a29k-udi.mt: Obsolete.
5452 * config/a29k/a29k.mt: Obsolete.
5453 * config/a29k/tm-a29k.h: Obsolete.
5454 * config/a29k/tm-vx29k.h: Obsolete.
5455 * config/a29k/vx29k.mt: Obsolete.
5456
5457 2002-01-05 Andrew Cagney <ac131313@redhat.com>
5458
5459 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
5460 with BFD_ENDIAN_BIG.
5461
5462 2002-01-05 Andrew Cagney <ac131313@redhat.com>
5463
5464 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
5465 * configure, config.in: Re-generate.
5466 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
5467 * defs.h: Do not include <endian.h>.
5468
5469 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
5470
5471 * acconfig.h (HAVE_PT_GETXMMREGS): New.
5472 * config.in: Regenerate.
5473 * configure.in: Update copyright years.
5474 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
5475 * configure: Regenerate.
5476 * i386bsd-nat.c: Update copyright years.
5477 (fill_gregset): Use regcache_collect.
5478 (fetch_inferior_registers): Only fetch integer registers
5479 if requested to do so. Add support for XMM registers
5480 using PT_GETXMMREGS.
5481 (store_inferior_registers): Only store integer registers
5482 if requested to do so. Add support for XMM registers
5483 using PT_SETXMMREGS.
5484 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
5485 (store_inferior_registers): Remove.
5486 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
5487 (fetch_elfcore_registers): New function.
5488 (i386nbsd_elfcore_fns): New.
5489 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
5490 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
5491 i386bsd-nat.o.
5492 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
5493 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
5494 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
5495 * config/i386/tm-nbsd.h: Update copyright years.
5496 (HAVE_SSE_REGS): Define.
5497 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
5498 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
5499 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
5500 (SIGCONTEXT_PC_OFFSET): Remove.
5501 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
5502
5503 2002-01-05 Andrew Cagney <ac131313@redhat.com>
5504
5505 * configure.tgt: Remove powerpc-*-macos* target.
5506 * config/m68k/xm-mpw.h: Delete file.
5507 * config/xm-mpw.h: Delete file.
5508 * ser-mac.c: Delete file.
5509 * mpw-make.sed: Delete file.
5510 * mpw-config.in: Delete file.
5511 * mac-xdep.c: Delete file.
5512 * mac-gdb.r: Delete file.
5513 * mac-defs.h: Delete file.
5514 * mac-nat.c: Delete file.
5515 * config/powerpc/macos.mh: Delete file.
5516 * config/powerpc/macos.mt: Delete file.
5517 * config/powerpc/nm-macos.h: Delete file.
5518 * config/powerpc/tm-macos.h: Delete file.
5519 * source.c (openp, open_source_file): Remove obsolete code.
5520 * top.c (gdb_readline): Ditto.
5521 * utils.c (query): Ditto.
5522 * event-top.c (display_gdb_prompt): Ditto.
5523 * Makefile.in (ser-mac.o): Delete obsolete target.
5524 * NEWS: Update.
5525
5526 2002-01-04 Andrew Cagney <ac131313@redhat.com>
5527
5528 * defs.h (BIG_ENDIAN): Delete macro definition.
5529 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
5530 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
5531 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
5532 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
5533 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
5534 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
5535 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
5536 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
5537 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
5538 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
5539 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
5540 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
5541 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
5542 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
5543 * gdbarch.c: Re-generate.
5544
5545 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
5546
5547 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
5548 for core files.
5549
5550 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
5551
5552 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
5553
5554 2002-01-04 Andrew Cagney <ac131313@redhat.com>
5555
5556 * value.h (value_ptr): Delete typedef.
5557
5558 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
5559
5560 * i386nbsd-nat.c: Update copyright years.
5561 Include i386-tdep.h.
5562
5563 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
5564
5565 * stabsread.c: Update copyright years.
5566
5567 From Debashis Mahata <debashis.mahata@wipro.com>:
5568 (read_struct_fields): Deal with Sun C compiler erroneous stab
5569 output for structs and unions.
5570 Fix PR gdb/269.
5571
5572 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
5573
5574 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
5575 prototype.
5576
5577 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
5578
5579 * cp-abi.c: Fix whitespace.
5580 (baseclass_offset): New wrapper function.
5581 * cp-abi.h (baseclass_offset): Add prototype.
5582 (struct cp_abi_ops): Add baseclass_offset pointer.
5583
5584 * valops.c (vb_match): Move to...
5585 * gnu-v2-abi.c (vb_match): here.
5586 * valops.c (baseclass_offset): Move to...
5587 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
5588
5589 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
5590
5591 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
5592 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
5593 * hpacc-abi.c (init_hpacc_ops): Likewise.
5594
5595 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
5596
5597 * valops.c (find_overload_match): Accept obj as a
5598 reference parameter. Update it before returning.
5599 * value.h (find_overload_match): Update prototype.
5600 * eval.c (evaluate_subexp_standard): Pass object to
5601 find_overload_match by reference.
5602
5603 2002-01-03 Andrew Cagney <ac131313@redhat.com>
5604
5605 * valarith.c: Replace value_ptr with struct value pointer. Remove
5606 register attribute from value declarations.
5607 * valops.c: Ditto.
5608 * value.h: Ditto.
5609 * scm-lang.c (scm_lookup_name): Ditto.
5610
5611 2002-01-03 Michael Snyder <msnyder@redhat.com>
5612
5613 Abstract the functionality of iterating over mapped memory
5614 regions into a general purpose iterator function.
5615 * procfs.c (iterate_over_mappings): New function, general purpose
5616 iterator for memory sections.
5617 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
5618 (solib_mappings_callback): New function, callback for above.
5619 (info_proc_mappings): Reimpliment using iterate_over_mappings.
5620 (info_mappings_callback): New function, callback for above.
5621
5622 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
5623
5624 2002-01-01 Mark Kettenis <kettenis@gnu.org>
5625
5626 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
5627 * i386-tdep.c: Include "elf-bfd.h".
5628 (process_note_abi_tag_sections): New function.
5629 (i386_gdbarch_init): Add code to recognize various OS/ABI
5630 combinations.
5631
5632 * maint.c (_initialize_maint_cmds): Add missing \ in
5633 string-literal.
5634
5635 For older changes see ChangeLog-2001
5636 \f
5637 Local Variables:
5638 mode: change-log
5639 left-margin: 8
5640 fill-column: 74
5641 version-control: never
5642 End:
This page took 0.148632 seconds and 5 git commands to generate.