1 2002-04-21 David S. Miller <davem@redhat.com>
3 * remote-vxsparc.c (vx_read_register): Fix typo, we want
4 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
5 (vx_write_register): Likewise.
7 2002-04-23 J. Brobecker <brobecker@gnat.com>
9 * source.c (is_regular_file): New function.
10 (openp): Check wether file to open is a regular file
11 to avoid opening directories.
13 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
15 * findvar.c (extract_signed_integer): Cast printf argument
16 to suppress format warning.
17 (extract_unsigned_integer): Likewise.
18 * infcmd.c (registers_info): Likewise.
19 * top.c (get_prompt_1): Likewise.
20 * valops.c (value_assign): Likewise.
21 * valprint.c (print_decimal): Likewise.
23 2002-04-22 H.J. Lu (hjl@gnu.org)
25 * c-exp.y (typebase): Support
27 [long|long long|short] [signed|unsigned] [int|]
31 signed [long|long long|short] int
33 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
35 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
37 * vax-tdep.h: New file.
38 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
39 Make several routines static.
40 (vax_get_saved_register): New function.
41 (vax_gdbarch_init): New function.
42 (_initialize_vax_tdep): Register vax_gdbarch_init.
43 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
44 Remove macros now under the control of gdbarch.
46 2002-04-22 Michael Snyder <msnyder@redhat.com>
48 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
49 Some whitespace and coding standards tweaks.
51 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
53 * vax-tdep.c: Include regcache.h.
54 (vax_call_dummy_words): New.
55 (sizeof_vax_call_dummy_words): New.
56 (vax_fix_call_dummy): New function.
57 (vax_saved_pc_after_call): Ditto.
58 * config/vax/tm-vax.h: Don't include regcache.h.
59 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
61 (CALL_DUMMY_WORDS): Define.
62 (SIZEOF_CALL_DUMMY_WORDS): Define.
63 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
65 2002-04-18 Michael Snyder <msnyder@redhat.com>
67 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
69 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
71 * vax-tdep.c (vax_frame_chain): New function.
72 (vax_push_dummy_frame): Ditto.
73 (vax_pop_frame): Ditto.
74 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
75 (FRAMELESS_FUNCTION_INVOCATION): Use
76 generic_frameless_function_invocation_not.
77 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
78 (POP_FRAME): Use vax_pop_frame.
80 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
82 * vax-tdep.c (vax_store_struct_return): New function.
83 (vax_extract_return_value): Ditto.
84 (vax_store_return_value): Ditto.
85 (vax_extract_struct_value_address): Ditto.
86 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
87 vax_store_struct_return.
88 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
89 (STORE_RETURN_VALUE): Use vax_store_return_value.
90 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
92 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
94 * vax-tdep.c (vax_frame_saved_pc): New function.
95 (vax_frame_args_address_correct): Ditto.
96 (vax_frame_args_address): Ditto.
97 (vax_frame_locals_address): Ditto.
98 (vax_frame_num_args): Move code to be in proximity to
99 other frame-related functions.
100 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
101 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
102 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
103 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
104 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
106 2002-04-22 H.J. Lu (hjl@gnu.org)
108 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
111 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
113 * vax-tdep.c (vax_frame_init_saved_regs): New function.
114 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
115 (FRAME_INIT_SAVED_REGS): New macro.
117 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
119 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
121 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
123 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
125 (fetch_osf_core_registers): Likewise.
126 (supply_gregset): Likewise.
128 2002-04-22 J. Brobecker <brobecker@gnat.com>
130 * symfile.h (get_section_index): Define.
131 * symfile.c (get_section_index): New function.
132 * mdebugread.c (SC_IS_SBSS): New macro.
133 (SC_IS_BSS): Return true for the scBss storage class only, as
134 the scSBss storage class refers to the .sbss section.
135 (parse_partial_symbols): Discard the symbols which associated
136 section does not exist.
137 Make sure to use the .sbss section index for symbols which
138 storage class is scBss, rather than using the .bss section index.
140 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
142 * vax-tdep.c: Update copyright years.
143 (vax_register_name): New function.
144 (vax_register_byte): Ditto.
145 (vax_register_raw_size): Ditto.
146 (vax_register_virtual_size): Ditto.
147 (vax_register_virtual_type): Ditto.
148 * config/vax/tm-vax.h: Update copyright years.
149 (REGISTER_NAMES): Remove.
150 (REGISTER_NAME): Define.
151 (REGISTER_BYTE): Use vax_register_byte.
152 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
153 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
154 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
156 2002-04-21 Andrew Cagney <ac131313@redhat.com>
158 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
160 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
162 2002-04-21 David S. Miller <davem@redhat.com>
164 * arch-utils.c (generic_prologue_frameless_p): Kill
165 SKIP_PROLOGUE_FRAMELESS_P code.
166 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
168 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
169 * arc-tdep.c (arc_prologue_frameless_p): Implement.
170 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
172 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
173 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
174 (sparc_gdbarch_init): Pass it to
175 set_gdbarch_prologue_frameless_p.
177 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
179 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
180 (alphabsd-nat.o): New dependency list.
182 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
184 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
186 (alpha-linux-tdep.o): New dependency list.
187 (alphafbsd-tdep.o): Likewise.
189 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
191 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
193 * alpha-tdep.c: ...from here.
194 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
196 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
198 * config/alpha/tm-alpha.h: Move alpha_software_single_step
199 prototype from here...
200 * alpha-tdep.h: ...to here.
202 2002-04-21 Andrew Cagney <ac131313@redhat.com>
204 * frame.h (selected_frame_level): Document as deprecated.
205 (frame_relative_level): Declare.
206 * stack.c (frame_relative_level): New function.
207 (selected_frame_level): Document as deprecated.
208 (select_frame): Do not set the selected_frame_level.
210 * stack.c (frame_info, record_selected_frame): Update.
211 (frame_command, current_frame_command): Update.
212 (up_silently_base, up_command, down_silently_base): Update.
213 (down_command): Update.
214 * inflow.c (kill_command): Update.
215 * tracepoint.c (finish_tfind_command): Update.
216 * corelow.c (core_open): Update.
217 * thread.c (info_threads_command): Update.
218 (do_captured_thread_select): Update.
219 * infcmd.c (finish_command): Update.
220 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
222 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
224 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
226 2002-04-21 Andrew Cagney <ac131313@redhat.com>
228 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
231 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
233 * alphafbsd-tdep.c: Update copyright years. Include
235 (alphafbsd_use_struct_convention): Make static.
236 (alphafbsd_init_abi): New function.
237 (_initialize_alphafbsd_tdep): New function.
238 * config/alpha/tm-fbsd.h: Update copyright years.
239 (USE_STRUCT_CONVENTION): Remove.
241 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
243 * alpha-tdep.c (alpha_abi_handler): New structure to describe
244 an Alpha ABI variant.
245 (alpha_abi_handler_list): Declare.
246 (alpha_gdbarch_register_os_abi): New function.
247 (alpha_gdbarch_init): Give registered ABI variant handlers a
248 chance to tweak the gdbarch once we have set up defaults.
249 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
251 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
253 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
254 to standard_coerce_float_to_double.
255 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
257 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
259 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
260 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
261 from gdbarch_tdep rather than a constant.
262 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
263 the default text address for all Alpha Unix ABIs.
264 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
265 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
267 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
269 * alpha-tdep.h: New file. Includes several Alpha target constants
271 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
272 let gdbarch deal with.
273 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
274 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
276 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
277 Alpha target register names.
278 * alphabsd-nat.c: Likewise.
279 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
280 Alpha target register names. Make serveral routines static.
281 (alpha_get_saved_register): New function.
282 (alpha_abi_names): New.
283 (process_note_abi_tag_sections): New function.
284 (get_elfosabi): New function.
285 (alpha_gdbarch_init): New function.
286 (alpha_dump_tdep): New function.
287 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
289 2002-04-21 Andrew Cagney <ac131313@redhat.com>
291 * frame.c (find_saved_register): Delete #ifdef
292 HAVE_REGISTER_WINDOWS code.
293 * config/sparc/tm-sparc.h: Update comments.
294 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
296 2002-04-21 Andrew Cagney <ac131313@redhat.com>
298 * i960-tdep.c (i960_find_saved_register): New function.
299 (i960_get_saved_register): New function.
300 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
301 (i960_get_saved_register): Declare.
302 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
304 2002-04-20 David S. Miller <davem@redhat.com>
306 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
308 2002-04-20 Andrew Cagney <ac131313@redhat.com>
310 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
311 instead of NUM_PSEUDO_REGS.
313 2002-04-20 David S. Miller <davem@redhat.com>
315 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
316 GDB_MULTI_ARCH_PARTIAL
317 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
318 define, let tm-sp64.h do it.
320 2002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
322 * frame.c (find_saved_register): Avoid a NULL pointer
323 dereference and actually walk the frame list.
325 2002-04-20 Andrew Cagney <ac131313@redhat.com>
327 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
328 sorted in most most-recent-used order. Document.
329 * gdbarch.h, gdbarch.c: Regenerate.
331 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
333 * gdbserver/inferiors.c (struct inferior_info): Add regcache_data.
334 (add_inferior): Call create_register_cache.
335 (clear_inferiors): Call free_register_cache.
336 (inferior_regcache_data, set_inferior_regcache_data): New functions.
337 * gdbserver/regcache.c (struct inferior_regcache_data): New.
339 (get_regcache): New function.
340 (create_register_cache, free_register_cache): New functions.
341 (set_register_cache): Don't initialize the register cache here.
342 (registers_to_string, registers_from_string, register_data): Call
344 * gdbserver/regcache.h: Add prototypes.
345 * gdbserver/server.h: Likewise.
347 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
349 * gdbserver/mem-break.c: New file.
350 * gdbserver/mem-break.h: New file.
351 * gdbserver/Makefile.in: Add mem-break.o rule; update server.h
353 * gdbserver/inferiors.c (struct inferior_info): Add target_data
355 (clear_inferiors): Free target_data member if set.
356 (inferior_target_data, set_inferior_target_data): New functions.
357 * gdbserver/linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
358 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
359 * gdbserver/linux-low.c (linux_bp_reinsert): New variable.
360 (struct inferior_linux_data): New.
361 (linux_create_inferior): Use set_inferior_target_data.
362 (linux_attach): Likewise. Call add_inferior.
363 (linux_wait_for_one_inferior): New function.
364 (linux_wait): Call it.
365 (linux_write_memory): Add const.
366 (initialize_low): Call set_breakpoint_data.
367 * gdbserver/linux-low.h (struct linux_target_ops): Add breakpoint
369 * gdbserver/server.c (attach_inferior): Remove extra add_inferior
371 * gdbserver/server.h: Include mem-break.h. Update inferior.c
373 * gdbserver/target.c (read_inferior_memory)
374 (write_inferior_memory): New functions.
375 * gdbserver/target.h (read_inferior_memory)
376 (write_inferior_memory): Change macros to prototypes.
377 (struct target_ops): Update comments. Add const to write_memory
380 2002-04-19 Andrew Cagney <ac131313@redhat.com>
382 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
384 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
385 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
386 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
389 2002-04-19 Elena Zannoni <ezannoni@redhat.com>
392 * gdbtypes.c (init_simd_type): Rewrite using new functions.
393 (build_builtin_type_vec128): Ditto.
394 (append_composite_type_field): Fix calculation of type length in
397 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
399 * config/djgpp/README: Update.
401 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
404 2002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
406 * alpha-tdep.c (setup_arbitrary_frame): Rename...
407 (alpha_setup_arbitrary_frame): ...to this.
408 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
409 for alpha_setup_arbitrary_frame.
411 2002-04-18 Andrew Cagney <cagney@redhat.com>
413 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
414 * gdbarch.h, gdbarch.c: Regenerate.
416 * defs.h (breakpoint_from_pc_fn): Delete type definition.
417 * target.h (memory_breakpoint_from_pc): Update declaration.
418 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
420 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
421 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
422 * mem-break.c (memory_breakpoint_from_pc): Ditto.
423 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
424 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
425 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
426 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
427 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
428 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
429 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
430 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
431 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
433 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
435 * monitor.c (monitor_insert_breakpoint): Ditto.
436 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
438 * config/mcore/tm-mcore.h: Update copyright.
439 * mem-break.c: Ditto.
440 * xstormy16-tdep.c: Ditto.
442 2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
444 * p-exp.y: Add precedence rule for '^' token.
445 This removes the shift/reduce conflicts.
446 Remove the comment concerning these shift/reduce conflicts.
448 2002-04-18 Elena Zannoni <ezannoni@redhat.com>
450 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
451 (registers_powerpc_nofp): New register set for processors
452 without floating point unit.
454 2002-04-18 David S. Miller <davem@redhat.com>
456 * MAINTAINERS: Add myself to write-after-approval.
458 2002-04-17 Michael Snyder <msnyder@redhat.com>
460 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
462 2002-04-17 Andrew Cagney <ac131313@redhat.com>
464 * rs6000-tdep.c (frame_initial_stack_address): Use
465 frame_register_read to read the alloca_reg.
467 2002-04-17 Andrew Cagney <ac131313@redhat.com>
469 * frame.c (find_saved_register): Find saved registers in the next
473 2002-04-17 Andrew Cagney <ac131313@redhat.com>
475 * gdbarch.sh (LANG): Set to ``c''.
477 2002-04-15 Andrew Cagney <ac131313@redhat.com>
479 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
481 2002-04-15 Andrew Cagney <ac131313@redhat.com>
483 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
486 * hpread.c (hpread_get_lntt): Add declaration.
489 2002-04-14 Andrew Cagney <ac131313@redhat.com>
491 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
492 * aclocal.m4, configure: Re-generate.
495 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
497 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
498 instead of tm_print_insn.
500 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
502 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
504 2002-04-14 Andrew Cagney <ac131313@redhat.com>
506 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
507 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
508 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
510 2002-04-12 Don Howard <dhoward@redhat.com>
512 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
514 (init_cmd_lists): Initialize the new value;
515 * cli/cli-script.c (execute_user_command): Limit the call depth of
516 user defined commands. This avoids a core-dump when user commands
517 are infinitly recursive.
519 2002-04-12 Kevin Buettner <kevinb@redhat.com>
521 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
522 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
523 from tdep struct instead of DEFAULT_LR_SAVE.
524 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
525 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
526 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
528 2002-04-12 Michael Snyder <msnyder@redhat.com>
530 * Remote.c: Spelling fix.
531 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
532 If no symbol found for "sbrk", try "_sbrk".
533 (make_output_phdrs): Use bfd_section_name.
534 (gcore_copy_callback): Use bfd_section_name.
535 * eval.c: Indentation fix-ups.
536 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
537 in case it gets applied to an address that is already
538 in the instruction space.
539 * cli/cli-decode.c (help_list): Allow long lines to wrap.
540 * symfile.c: Fix indentation, long lines.
541 * source.c: White space fix-up.
543 2002-04-12 Andrew Cagney <cagney@redhat.com>
545 * defs.h (read_relative_register_raw_bytes): Delete declaration.
546 * frame.c (frame_register_read): New function. Return non-zero on
548 (read_relative_register_raw_bytes_for_frame): Delete.
549 (read_relative_register_raw_bytes): Delete.
550 * frame.h (frame_register_read): Declare.
551 * d30v-tdep.c: Update Copyright. Use frame_register_read.
553 * infcmd.c (do_registers_info): Ditto.
554 * hppa-tdep.c: Ditto.
555 * rs6000-tdep.c: Ditto.
556 * h8500-tdep.c: Ditto.
557 * mips-tdep.c: Ditto.
558 * h8300-tdep.c: Ditto.
561 2002-04-12 Kevin Buettner <kevinb@redhat.com>
563 From Jimi X <jimix@watson.ibm.com>:
564 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
567 2002-04-12 Kevin Buettner <kevinb@redhat.com>
569 From Jimi X <jimix@watson.ibm.com>:
570 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
573 2002-04-12 Kevin Buettner <kevinb@redhat.com>
575 From Jimi X <jimix@watson.ibm.com>:
576 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
577 register sets for these processor variants.
579 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
581 * gdbserver/linux-low.c (usr_store_inferior_registers): Support
582 registers which are allowed to fail to store.
583 * gdbserver/linux-low.h (linux_target_ops): Likewise.
584 * gdbserver/linux-ppc-low.c (ppc_regmap): Support FPSCR.
585 (ppc_cannot_store_register): FPSCR may not be storable.
586 * regformats/reg-ppc.dat: Support FPSCR.
588 2002-04-11 Kevin Buettner <kevinb@redhat.com>
590 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
591 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
592 Add fpscr as an invalid/unfetchable register.
593 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
594 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
595 (fill_fpregset): Add support for register fpscr.
596 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
597 (fill_gregset): Account for the fact that register ``mq'' might
599 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
600 (registers_power): Add fpscr to register set at slot 71.
601 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
602 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
604 2002-04-11 Michael Snyder <msnyder@redhat.com>
606 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
607 * configure: Regenerate.
608 * config.in: Regenerate.
609 * acconfig.h: Add define for _SYSCALL32.
610 * core-sol2.c: Remove #define _SYSCALL32.
611 * solib-legacy.c: Remove #define _SYSCALL32.
613 2002-04-10 Andrew Cagney <ac131313@redhat.com>
615 * stack.c (select_frame): Cleanup internal error message, do not
618 2002-04-10 Andrew Cagney <ac131313@redhat.com>
620 * stack.c (select_frame): Check that selected_frame and the
621 specified level are as expected.
622 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
624 * frame.h (struct frame_info): Add field `level'. Update
626 Work-in-progress PR gdb/464.
628 2002-04-10 Andrew Cagney <ac131313@redhat.com>
630 * maint.c (maint_print_section_info): Rename print_section_info.
631 (print_bfd_section_info, print_objfile_section_info): Update.
632 * inferior.h (struct gdbarch): Add opaque declaration.
633 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
634 * gdbarch.h: Regenerate.
636 2002-04-10 Michal Ludvig <mludvig@suse.cz>
638 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
639 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
640 (kernel_u_size): Added.
641 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
642 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
644 2002-04-04 Jim Ingham <jingham@apple.com>
646 * valarith.c (find_size_for_pointer_math): New function, either returns
647 the size for a pointer's target, returns 1 for void *, or errors for
649 (value_add, value_sub): use find_size_for_pointer_math.
651 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
653 * linux-low.c (linux_look_up_symbols): New hook.
654 (linux_target_ops): Add linux_look_up_symbols.
655 * remote-utils.c (decode_address): New function.
656 (look_up_one_symbol): New function.
657 * server.c (handle_query): Call target look_up_symbols hook.
658 * server.h (look_up_one_symbol): Add prototype.
659 * target.h (struct target_ops): Add look_up_symbols hook.
661 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
663 * gdbserver/server.h: Include <string.h> if HAVE_STRING_H.
664 * ChangeLog: Correct paths in last ChangeLog entry.
666 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
668 * gdbserver/linux-low.h: Remove obsolete prototypes.
669 (struct linux_target_ops): New.
670 (extern the_low_target): New.
671 * gdbserver/linux-low.c (num_regs, regmap): Remove declarations.
672 (register_addr): Use the_low_target explicitly.
673 (fetch_register): Likewise.
674 (usr_fetch_inferior_registers): Likewise.
675 (usr_store_inferior_registers): Likewise.
676 * gdbserver/linux-arm-low.c (num_regs): Remove.
677 (arm_num_regs): Define.
678 (arm_regmap): Renamed from regmap, made static.
679 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
681 (arm_cannot_store_register): Renamed from cannot_store_register,
683 (the_low_target): New.
684 * gdbserver/linux-i386-low.c (num_regs): Remove.
685 (i386_num_regs): Define.
686 (i386_regmap): Renamed from regmap, made static.
687 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
689 (i386_cannot_store_register): Renamed from cannot_store_register,
691 (the_low_target): New.
692 * gdbserver/linux-ia64-low.c (num_regs): Remove.
693 (ia64_num_regs): Define.
694 (ia64_regmap): Renamed from regmap, made static.
695 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
697 (ia64_cannot_store_register): Renamed from cannot_store_register,
699 (the_low_target): New.
700 * gdbserver/linux-m68k-low.c (num_regs): Remove.
701 (m68k_num_regs): Define.
702 (m68k_regmap): Renamed from regmap, made static.
703 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
705 (m68k_cannot_store_register): Renamed from cannot_store_register,
707 (the_low_target): New.
708 * gdbserver/linux-mips-low.c (num_regs): Remove.
709 (mips_num_regs): Define.
710 (mips_regmap): Renamed from regmap, made static.
711 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
713 (mips_cannot_store_register): Renamed from cannot_store_register,
715 (the_low_target): New.
716 * gdbserver/linux-ppc-low.c (num_regs): Remove.
717 (ppc_num_regs): Define.
718 (ppc_regmap): Renamed from regmap, made static.
719 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
721 (ppc_cannot_store_register): Renamed from cannot_store_register,
723 (the_low_target): New.
724 * gdbserver/linux-s390-low.c (num_regs): Remove.
725 (s390_num_regs): Define.
726 (s390_regmap): Renamed from regmap, made static.
727 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
729 (s390_cannot_store_register): Renamed from cannot_store_register,
731 (the_low_target): New.
732 * gdbserver/linux-sh-low.c (num_regs): Remove.
733 (sh_num_regs): Define.
734 (sh_regmap): Renamed from regmap, made static.
735 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
737 (sh_cannot_store_register): Renamed from cannot_store_register,
739 (the_low_target): New.
740 * gdbserver/linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
741 (the_low_target): New.
743 2002-04-09 Andrew Cagney <ac131313@redhat.com>
745 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
746 override FP_REGNUM with frame->fp. Update copyright.
747 * parse.c (num_std_regs, std_regs): Delete.
748 (target_map_name_to_register): Do not search std_regs. Update
749 function description.
750 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
751 declarations. Update copyright.
754 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
756 * gdbserver/Makefile.in: Add stamp-h target.
757 * gdbserver/configure.in: Create stamp-h.
758 * gdbserver/configure: Regenerated.
760 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
762 * gdbserver/inferiors.c: New file.
763 * gdbserver/target.c: New file.
764 * gdbserver/target.h: New file.
765 * gdbserver/Makefile.in: Add target.o and inferiors.o. Update
767 * gdbserver/linux-low.c (inferior_pid): New static variable,
769 (linux_create_inferior): Renamed from create_inferior.
770 Call add_inferior. Return 0 on success instead of a PID.
771 (linux_attach): Renamed from myattach.
772 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
773 (linux_thread_alive): Renamed from mythread_alive.
774 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
776 (linux_resume): Renamed from myresume. Add missing ``return 0''.
777 (regsets_store_inferior_registers): Correct error message.
778 Add missing ``return 0''.
779 (linux_fetch_registers): Renamed from fetch_inferior_registers.
780 (linux_store_registers): Renamed from store_inferior_registers.
781 (linux_read_memory): Renamed from read_inferior_memory.
782 (linux_write_memory): Renamed from write_inferior_memory.
783 (linux_target_ops): New structure.
784 (initialize_low): Call set_target_ops ().
785 * gdbserver/remote-utils.c (unhexify): New function.
786 (hexify): New function.
787 (input_interrupt): Send signals to ``signal_pid''.
788 * gdbserver/server.c (inferior_pid): Remove.
789 (start_inferior): Update create_inferior call.
790 (attach_inferior): Call add_inferior.
791 (handle_query): New function.
792 (main): Call handle_query for `q' packets.
793 * gdbserver/server.h: Include "target.h". Remove obsolete prototypes.
794 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
796 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
798 * gdbserver/Makefile.in: Add WARN_CFLAGS. Update configury
800 * gdbserver/configure.in: Check for <string.h>
801 * gdbserver/configure: Regenerate.
802 * gdbserver/config.in: Regenerate.
803 * gdbserver/gdbreplay.c: Include needed system headers.
804 (remote_open): Remove strchr prototype.
805 * gdbserver/linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
806 * gdbserver/regcache.c (supply_register): Change buf argument to const void *.
807 (supply_register_by_name): Likewise.
808 (collect_register): Change buf argument to void *.
809 (collect_register_by_name): Likewise.
810 * gdbserver/regcache.h: Add missing prototypes.
811 * gdbserver/remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
812 * gdbserver/server.c (handle_query): New function.
813 (attached): New static variable, moved out of main.
814 (main): Quiet longjmp clobber warnings.
815 * gdbserver/server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
816 * gdbserver/utils.c (error): Remove NORETURN.
819 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
821 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
822 after the last symbol in a block.
824 2002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
826 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
827 is non zero as a found symbol.
829 2002-04-08 Andrew Cagney <ac131313@redhat.com>
831 * findvar.c: Include "builtin-regs.h".
832 (value_of_register): Call value_of_builtin_reg when applicable.
833 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
834 (target_map_name_to_register): Call
835 builtin_reg_map_name_to_regnum.
836 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
837 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
838 (builtin_regs_h): Define.
839 (builtin-regs.o): New target.
840 (findvar.o): Add $(builtin_regs_h).
841 * builtin-regs.c, builtin-regs.h: New files.
842 * std-regs.c: New file.
843 Partial fix for PR gdb/251.
845 2002-04-08 Kevin Buettner <kevinb@redhat.com>
847 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
848 it's no longer required.
850 2002-04-08 Andrew Cagney <ac131313@redhat.com>
852 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
854 2002-04-08 Kevin Buettner <kevinb@redhat.com>
856 From Jimi X <jimix@watson.ibm.com>:
857 * rs6000-tdep.c (rs6000_software_single_step): Use
858 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
859 and size. Use target_insert_breakpoint() and
860 target_remove_breakpoint() to insert and remove breakpoints
861 instead of explicit memory reads and writes.
863 2002-04-08 Kevin Buettner <kevinb@redhat.com>
865 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
866 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
867 ELF_OBJECT_FORMAT ifdef.
869 2002-04-08 Kevin Buettner <kevinb@redhat.com>
871 From Jimi X <jimix@watson.ibm.com>:
872 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
874 2002-04-08 Kevin Buettner <kevinb@redhat.com>
876 From Jimi X <jimix@watson.ibm.com>:
877 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
878 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
880 2002-04-07 Mark Kettenis <kettenis@gnu.org>
882 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
883 s/asprintf/xasprintf/.
884 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
886 2002-04-07 Andrew Cagney <ac131313@redhat.com>
888 I believe Jeff Law denies responsability for this one:
889 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
890 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
891 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
892 Work-around for PR gdb/366.
894 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
896 * remote-e7000.c (write_small, e7000_read_inferior_memory,
897 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
898 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
900 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
902 * sh-tdep.c (sh_fp_frame_init_saved_regs,
903 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
906 2002-04-07 Andrew Cagney <ac131313@redhat.com>
908 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
911 2002-04-07 Andrew Cagney <ac131313@redhat.com>
913 * README (Reporting Bugs in GDB): Document the bug web page as the
914 prefered way of submitting bugs.
917 2002-04-06 Andrew Cagney <ac131313@redhat.com>
919 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
921 * gdbarch.h, gdbarch.c: Re-generate.
923 2002-04-07 Andreas Schwab <schwab@suse.de>
925 * m68klinux-nat.c (fill_fpregset): Properly pass address of
926 buffer to regcache_collect.
928 2002-04-06 Andrew Cagney <ac131313@redhat.com>
930 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
931 * gdbarch.c, gdbarch.h: Re-generate.
933 2002-04-06 Andrew Cagney <ac131313@redhat.com>
935 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
936 declaration. Fix -Werror.
938 2002-04-05 Daniel Jacobowitz <drow@mvista.com>
940 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
941 * gdbarch.c: Regenerate.
943 2002-04-05 Michael Snyder <msnyder@redhat.com>
945 * breakpoint.c (clear_command): Rewrite middle section to
946 combine two loops with identical control conditions.
947 Add a cleanup to eliminate a memory leak.
948 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
950 2002-04-05 H.J. Lu (hjl@gnu.org)
952 * solib-svr4.c (bkpt_names): Add "__start".
954 2002-04-04 Andrew Cagney <ac131313@redhat.com>
956 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
957 as test for 64 bit target.
959 2002-04-05 Andrew Cagney <ac131313@redhat.com>
961 * h8500-tdep.c (h8500_write_fp): Delete function.
962 * dwarf2cfi.c (cfi_write_fp): Document as not used.
963 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
964 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
965 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
966 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
967 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
969 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
970 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
971 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
972 (d10v_write_fp): Delete function.
973 * inferior.h (write_fp, generic_target_write_fp): Delete
975 * regcache.c (generic_target_write_fp): Delete function.
976 (write_fp): Delete function.
977 * gdbarch.sh (TARGET_WRITE_FP): Delete.
978 * gdbarch.h, gdbarch.c: Regenerate.
979 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
980 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
981 (sparc64_write_fp): Delete declaration.
982 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
983 (h8500_write_fp): Delete declaration.
985 2002-04-04 Andrew Cagney <ac131313@redhat.com>
987 * sparc-tdep.c (sparc64_write_fp): Delete.
988 (sparc_push_dummy_frame): Replace write_fp call with code to store
990 (sparc_gdbarch_init): Do not initialize write_fp.
992 2002-04-05 Kevin Buettner <kevinb@redhat.com>
994 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
997 2002-03-29 Jim Blandy <jimb@redhat.com>
999 * stack.c (get_selected_block): Add new argument `addr_in_block',
1000 used to return the exact code address we used to select the block,
1002 * blockframe.c (get_frame_block, get_current_block): Same.
1003 * frame.h (get_frame_block, get_current_block,
1004 get_selected_block): Update declarations.
1005 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
1006 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
1008 2002-04-05 Michael Snyder <msnyder@redhat.com>
1010 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
1013 2002-04-05 J. Brobecker <brobecker@gnat.com>
1015 * utils.c (xfullpath): New function.
1016 * defs.h (xfullpath): Add declaration.
1017 * source.c (openp): Use xfullpath in place of gdb_realpath to
1018 avoid resolving the basename part of filenames when the
1019 associated file is a symbolic link. This fixes a potential
1020 inconsistency between the filenames known to GDB and the
1021 filenames it prints in the annotations.
1022 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
1023 to be able to match a filename with either the real filename, or
1024 the name of any symbolic link to this file.
1025 (lookup_partial_symtab): Ditto.
1027 2002-04-04 Michael Snyder <msnyder@redhat.com>
1029 * breakpoint.c: Add support for hardware breakpoints in overlays.
1030 (overlay_events_enabled): New state variable.
1031 (insert_breakpoints): Use overlay_events_enabled to decide
1032 whether to attempt to set a breakpoint at the overlay load addr.
1033 Handle bp_hardware_breakpoint as well as bp_breakpoint.
1034 (remove_breakpoint): Use overlay_events_enabled to decide
1035 whether breakpoints need to be removed from overlay load addr.
1036 Handle bp_hardware_breakpoint as well as bp_breakpoint.
1037 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
1038 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
1039 disable_overlay_breakpoints): Update overlay_events_enabled.
1041 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
1043 * dwarf2read.c (struct function_range): New.
1044 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
1045 (check_cu_functions): New.
1046 (read_file_scope): Initialize global function lists.
1047 Call dwarf_decode_line after processing children.
1048 (read_func_scope): Add to global function list.
1049 (dwarf_decode_lines): Call check_cu_functions everywhere
1050 record_line is called. Call record_line with a linenumber
1051 of 0 to mark sequence ends.
1053 2002-04-04 Michal Ludvig <mludvig@suse.cz>
1055 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
1056 change sync with glibc.
1058 2002-04-03 Jim Blandy <jimb@redhat.com>
1060 * configure.in: Call AC_C_INLINE.
1061 * configure: Regenerated.
1063 2002-04-01 Daniel Jacobowitz <drow@mvista.com>
1065 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
1066 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
1068 2002-03-31 Mark Kettenis <kettenis@gnu.org>
1070 * NEWS: Mention gcore support on FreeBSD/i386.
1072 * fbsd-proc.c: New file.
1073 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
1074 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
1076 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
1079 2002-03-29 Jim Blandy <jimb@redhat.com>
1081 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
1082 unescaped newlines in string literals, but newer ones don't. So
1085 2002-03-26 Michael Snyder <msnyder@redhat.com>
1086 Andrew Cagney <cagney@redhat.com>
1088 * cli/cli-dump.c: New file. Dump memory to file,
1089 restore file to memory.
1090 * cli/cli-dump.h: New file.
1091 * Makefile.in: Add rules, dependencies for cli-dump.o.
1092 * NEWS: Mention new commands.
1094 2002-03-28 Michael Snyder <msnyder@redhat.com>
1096 * symfile.c (symbol_file_add): Move test for null symbols to later.
1098 2002-03-27 Andrew Cagney <ac131313@redhat.com>
1100 From veksler at il.ibm.com:
1101 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
1102 the xstrduped original path.
1105 2002-03-27 Michael Snyder <msnyder@redhat.com>
1107 * breakpoint.c (_initialize_breakpoint): Clean up help string.
1108 * infcmd.c (_initialize_infcmd): Ditto.
1109 * language.c (_initialize_language): Ditto.
1110 * symfile.c (_initialize_symfile): Ditto.
1111 * top.c (_init_main): Ditto.
1112 * cli/cli-cmds.c (init_cli_cmds): Ditto.
1114 2002-03-27 Elena Zannoni <ezannoni@redhat.com>
1116 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
1117 vector registers handling.
1118 (skip_prologue): Handle new AltiVec instructions. Fill in new
1119 fields of frame data.
1120 (frame_get_saved_regs): Fill in information for AltiVec registers.
1122 2002-03-27 Jim Blandy <jimb@redhat.com>
1124 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
1125 a function; leave this macro here to invoke that function.
1126 (symbol_init_mangled_name): Declaration for that function.
1127 * symtab.c (symbol_init_mangled_name): New function.
1129 2002-03-27 Andrew Cagney <ac131313@redhat.com>
1131 * valarith.c: Replace strerror with safe_strerror.
1132 * tracepoint.c: Ditto.
1134 * go32-nat.c: Ditto.
1138 2002-03-27 Andreas Schwab <schwab@suse.de>
1140 * event-top.c (command_line_handler): Remove useless if.
1142 2002-03-27 Andreas Jaeger <aj@suse.de>
1144 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
1147 2002-03-27 Michal Ludvig <mludvig@suse.cz>
1149 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
1150 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
1151 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
1152 (x86_64_linux_dr_get_status, supply_gregset),
1153 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
1154 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
1155 (x86_64_register_info_table): Add.
1156 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
1157 (x86_64_register_raw_size, x86_64_register_virtual_type),
1158 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
1159 general x86_64_register_info_table.
1160 (i386_gdbarch_init): gdbarch_register_bytes is now set
1161 dynamicaly during initialization.
1162 * regformats/reg-x86-64.dat: Synced with changes to registers above.
1163 * gdbserver/linux-x86-64-low.c: Ditto.
1165 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
1167 * gdbserver/server.c (main): Call target_signal_to_host_p
1168 and target_signal_to_host on signals received from the remote.
1169 * gdbserver/remote-utils.c (prepare_resume_reply): Call
1170 target_signal_from_host on signals sent to the remote.
1171 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
1172 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
1174 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
1176 * signals/signals.c: Include "server.h" in gdbserver build.
1177 (target_signal_from_name): Don't use STREQ.
1178 (_initialize_signals): Likewise. Don't include function in
1181 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
1183 * signals.c: Moved to...
1184 * signals/signals.c: Here.
1185 * Makefile (signals.o): Update.
1187 2002-03-26 Jeff Law (law@redhat.com)
1189 * somread.c (som_symtab_read): Remove some commented out code and
1190 updated related comments. Do not set the minimal symbol table to
1191 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
1192 in a dynamic executable.
1193 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
1194 where we are unable to find the minimal symbol for the given
1197 2002-03-25 Jeff Law (law@redhat.com)
1199 * linux-proc.c (read_mapping): Scan up to end of line for filename.
1201 2002-03-25 Michal Ludvig <mludvig@suse.cz>
1203 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
1205 2002-03-23 Andrew Cagney <ac131313@redhat.com>
1207 * command.h: Update copyright.
1208 (struct cmd_list_element): Replace definition with opaque
1210 (enum cmd_types): Document that it will eventually be moved to
1212 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
1213 (MALLOCED_REPLACEMENT): Delete macro.
1214 * Makefile.in (cli_decode_h): Add $(command_h).
1215 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
1216 * top.c: Include "cli/cli-decode.h".
1217 * completer.c: Include "cli/cli-decode.h".
1218 * maint.c: Include "cli/cli-decode.h".
1219 * cli/cli-decode.h: Include "command.h".
1220 (enum command_class): Delete.
1221 (enum cmd_types): Comment out.
1222 (enum cmd_auto_boolean): Delete.
1223 (enum var_types): Delete.
1225 2002-03-23 Andrew Cagney <ac131313@redhat.com>
1227 * cli/cli-decode.c: Include "gdb_assert.h".
1228 (add_set_or_show_cmd): New static function.
1229 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
1230 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
1231 all fields, such as func, from the set command.
1233 2002-03-23 Andrew Cagney <ac131313@redhat.com>
1235 * MAINTAINERS (sh-elf): Change warning flag to -w.
1237 2002-03-23 Andrew Cagney <cagney@redhat.com>
1239 * defs.h (error): Add printf format attribute.
1240 * thread-db.c (thread_from_lwp): Fix error format string.
1241 * stack.c (parse_frame_specification): Ditto.
1242 * cli/cli-decode.c (undef_cmd_error): Ditto.
1243 * scm-lang.c (scm_lookup_name): Ditto.
1244 * tracepoint.c (trace_error): Ditto.
1245 * remote-utils.c (usage): Ditto.
1246 * remote.c (compare_sections_command): Ditto.
1249 2002-03-22 Andrew Cagney <ac131313@redhat.com>
1251 * gdbtypes.c (append_composite_type_field): New function.
1252 (init_composite_type): New function.
1253 * gdbtypes.h (append_composite_type_field): Declare.
1254 (init_composite_type): Ditto.
1256 2002-03-22 Elena Zannoni <ezannoni@redhat.com>
1258 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
1260 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
1261 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
1262 structure returning convention for SYSV ABI case, but not
1263 for GNU/Linux, FreeBSD, or NetBSD.
1265 2002-03-22 Daniel Jacobowitz <drow@mvista.com>
1267 * symtab.h (lookup_block_symbol): Add mangled_name argument
1270 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
1271 with new mangled_name argument.
1272 * linespec.c (decode_line_1): Likewise.
1273 * valops (value_of_this): Likewise.
1274 * symtab.c (lookup_transparent_type): Likewise.
1275 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
1276 (lookup_symbol): If we are given a mangled name, pass it down
1277 to lookup_symbol_aux.
1278 (lookup_block_symbol): If we are given a mangled name to check
1279 against, only return symbols which match it.
1281 2002-03-22 Christopher Faylor <cgf@redhat.com>
1283 * win32-nat.c (child_create_inferior): Check for proper shell to use
1284 here, in case the user changes it on the fly.
1285 (_initialize_inftarg): Remove shell path considerations.
1287 2002-03-21 Elena Zannoni <ezannoni@redhat.com>
1289 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
1290 for gdbarch_max_register_raw_size and max_register_virtual_size.
1291 Adjust copyright year.
1293 2002-03-21 Daniel Jacobowitz <drow@mvista.com>
1295 * dbxread.c (process_one_symbol): Extend the first N_SLINE
1296 in a function to cover the entire beginning of the function
1297 as well if it does not already.
1299 2002-03-21 Tom Rix <trix@redhat.com>
1301 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
1302 (rs6000_ptrace64): Renamed from ptrace64.
1304 2002-03-20 Martin M. Hunt <hunt@redhat.com>
1306 * gdbserver/remote-utils.c (remote_open): Don't call
1307 getprotobyname, we're all using TCP here so just use
1309 * gdbserver/gdbreplay.c (remote_open): Ditto.
1311 2002-03-20 Martin M. Hunt <hunt@redhat.com>
1313 * regcache.c (_initialize_regcache): No need to call
1314 build_regcache() at this time; it gets called whenever
1315 the gdbarch changes.
1317 2002-03-20 David O'Brien <obrien@FreeBSD.org>
1319 * sparc-nat.c: Include sys/param.h where possible.
1321 2002-03-20 Daniel Jacobowitz <drow@mvista.com>
1324 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
1325 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
1326 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
1328 * stabsread.c (rs6000_builtin_type): Likewise.
1329 (read_sun_floating_type): Likewise.
1331 2002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1333 * stabsread.c (read_member_functions): Remove skip code for duplicate
1334 constructor/destructor methods. Use standard parsing for these
1335 methods and just do not chain them to the list of methods after
1338 2002-03-19 Alexandre Oliva <aoliva@redhat.com>
1340 * coffread.c: Remove redundant static declarations. Replace
1341 occurrences of `PTR' with `void *'.
1342 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
1343 * top.h (quit_cover): Likewise.
1344 * defs.h (catch_errors): Likewise.
1346 2002-03-18 Andrew Cagney <ac131313@redhat.com>
1348 * defs.h (XMALLOC): Define.
1349 * gdb-events.sh (XMALLOC): Delete macro.
1350 * gdb-events.c, gdb-events.h: Regenerate.
1351 * gdbarch.sh (XMALLOC): Delete macro.
1352 * gdbarch.c: Regenerate.
1353 * serial.c (XMALLOC): Delete macro.
1354 * ui-file.c (XMALLOC): Ditto.
1355 * ser-unix.h (XMALLOC): Ditto.
1356 * sh-tdep.c (XMALLOC): Ditto.
1357 * ui-out.c (XMALLOC): Ditto.
1358 * utils.c (XMALLOC): Ditto.
1359 * i386-tdep.c (XMALLOC): Ditto.
1360 * gdb-events.c (XMALLOC): Ditto.
1361 * d10v-tdep.c (XMALLOC): Ditto.
1362 * cli-out.c (XMALLOC): Ditto.
1364 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
1365 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
1366 * ui-file.c, ui-out.c: Ditto.
1368 2002-03-18 Andrew Cagney <ac131313@redhat.com>
1370 * command.h (struct cmd_list_element): Add field context.
1371 (set_cmd_context, get_cmd_context): Declare.
1372 * cli/cli-decode.h: Ditto.
1373 * cli/cli-decode.c (get_cmd_context): New function.
1374 (set_cmd_context): New function.
1375 (add_cmd): Initialize context.
1376 Part of fixing PR gdb/145 and PR gdb/146.
1378 2002-03-17 Andrew Cagney <ac131313@redhat.com>
1380 * cli/cli-decode.c (cmd_type): New function.
1381 * command.h (cmd_type): Declare.
1382 * infrun.c (set_schedlock_func): Call function cmd_type.
1383 * kod.c (kod_set_os): Call cmd_type.
1384 * cris-tdep.c (cris_version_update): Use function cmd_type.
1385 (cris_mode_update, cris_abi_update): Ditto.
1387 * command.h: (execute_cmd_post_hook): Declare.
1388 (execute_cmd_pre_hook): Declare.
1389 * cli/cli-script.c (clear_hook_in_cleanup): New function.
1390 (execute_cmd_post_hook, execute_cmd_pre_hook): New
1391 functions. Execute pre/post hook while ensuring that afterwords
1393 * top.c (execute_command): Use execute_cmd_post_hook, and
1394 execute_cmd_pre_hook to execute pre/post commands.
1395 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
1397 (hook_stop_stub): Call execute_cmd_pre_hook.
1399 2002-03-17 Andrew Cagney <ac131313@redhat.com>
1401 * kod.c (kod_set_os): Revert previous change. Is called by ``info
1402 set'' and this leads to a core dump. Move xstrdup of
1403 operating_system to after check that it is not NULL.
1405 2002-03-17 Andrew Cagney <ac131313@redhat.com>
1407 * kod.c (kod_set_os): Remove unnecessary check that
1408 ``command->type'' is set_cmd.
1410 * valprint.c (set_input_radix): Use input_radix.
1411 (set_output_radix): Use output_radix.
1412 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
1415 2002-03-16 Andrew Cagney <ac131313@redhat.com>
1417 * value.h (struct value): Delete field ``substring_addr''. Change
1418 aligner fields to force_doublest_align, force_longest_align,
1419 force_core_addr_align and force_pointer_aligh.
1421 * value.h (struct value): Fix typo in above change.
1423 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1425 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
1426 to fix internal_error from ``maintenance print architecture''.
1428 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1430 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
1431 for gcc versions after gcc-2.8.1.
1433 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1435 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
1436 for method resolution. Restore adjustment of ``this'' pointer after
1437 calling value_struct_elt, which was accidentally removed during the
1440 2002-03-15 Andrew Cagney <ac131313@redhat.com>
1442 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
1444 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
1446 * value.h (value_of_register): Update.
1448 2002-03-14 Richard Henderson <rth@redhat.com>
1450 * configure.in: Detect declaration for canonicalize_file_name.
1451 * utils.c (canonicalize_file_name): Declare, if needed.
1452 (gdb_realpath): Prefer realpath if available and usable.
1453 * config.in, configure: Rebuild.
1455 2002-03-14 Richard Henderson <rth@redhat.com>
1457 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
1458 a constant array bound.
1460 * MAINTAINERS: Add myself to write-after-approval.
1462 2002-03-14 Michael Snyder <msnyder@redhat.com>
1464 * symfile.c (syms_from_objfile): Return immediately if no syms.
1465 (symbol_file_add): Return immediately if no syms.
1466 (find_sym_fns): Return immediately if no syms.
1468 2002-03-13 Michal Ludvig <mludvig@suse.cz>
1470 * gdbserver/remote-util.c (remote_open): Print remote-side's
1471 IP address when remote debugging over the network.
1473 2002-03-12 David O'Brien <obrien@FreeBSD.org>
1475 * config/sparc/fbsd.mh: Fix copyright.
1476 * config/sparc/fbsd.mt: Likewise.
1478 2002-03-11 Richard Earnshaw <rearnsha@arm.com>
1480 * MAINTAINERS: Fix typo in name of gdb warnings option.
1481 (x86-64): Fix formating so that this can be parsed by awk.
1483 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
1485 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
1486 * defs.h: Include "gdb/signals.h".
1487 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
1489 2002-03-10 Michal Ludvig <mludvig@suse.cz>
1491 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
1492 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
1495 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
1496 Don Howard <dhoward@redhat.com>
1498 * mips-tdep.c (ST0_FR): Define.
1499 (mips2_fp_compat): New function, temporarily disabled.
1500 (mips_read_fp_register_single): New function.
1501 (mips_read_fp_register_double): New function.
1502 (mips_print_register): Use them.
1503 (do_fp_register_row): Likewise.
1505 2002-03-09 Andrew Cagney <ac131313@redhat.com>
1507 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
1510 2002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1512 * stabsread.c (read_member_functions): Fix is_stub test for
1513 static member functions, improve comment.
1515 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
1517 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
1518 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
1519 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
1520 commands that set boolean values.
1521 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
1522 (arm_rdi_resume): Always initialize PC.
1523 (arm_rdi_open): Don't use rslt as a boolean.
1524 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
1525 (arm_rdi_fetch_registers, arm_rdi_store_registers)
1526 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
1527 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
1529 2002-03-06 Alexandre Oliva <aoliva@redhat.com>
1531 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
1532 * configure: Rebuilt.
1534 2002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
1536 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
1537 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
1539 2002-03-06 Andrew Cagney <ac131313@redhat.com>
1541 * cli/cli-decode.c (set_cmd_completer): New function.
1542 * command.h (set_cmd_completer): Declare.
1543 * cli/cli-decode.h (set_cmd_completer): Ditto.
1545 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
1546 * cli/cli-cmds.c (init_cli_cmds): Ditto.
1547 * win32-nat.c (_initialize_inftarg): Ditto.
1548 * remote-rdi.c (_initialize_remote_rdi): Ditto.
1549 * proc-api.c (_initialize_proc_api): Ditto.
1550 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
1551 * source.c (_initialize_source): Ditto.
1552 * exec.c (_initialize_exec): Ditto.
1553 * solib.c (_initialize_solib): Ditto.
1554 * top.c (init_main): Ditto.
1555 * tracepoint.c (_initialize_tracepoint): Ditto.
1556 * symfile.c (_initialize_symfile): Ditto.
1557 * printcmd.c (_initialize_printcmd): Ditto.
1558 * infcmd.c (_initialize_infcmd): Ditto.
1559 * corefile.c (_initialize_core): Ditto.
1561 2002-03-05 Andrew Cagney <ac131313@redhat.com>
1563 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
1565 2002-03-05 Andrew Cagney <ac131313@redhat.com>
1567 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
1569 2002-03-05 Andrew Cagney <ac131313@redhat.com>
1571 * NEWS: Update headings, 5.2 has branched.
1573 2002-03-04 Daniel Jacobowitz <drow@mvista.com>
1575 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
1576 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
1577 (register_addr, REGISTER_RAW_SIZE): Likewise.
1578 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
1579 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
1581 2002-03-03 Michal Ludvig <mludvig@suse.cz>
1583 * MAINTAINERS (x86-64): Add myself.
1584 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
1585 changed value_ptr -> struct value *
1587 2002-03-01 David O'Brien <obrien@FreeBSD.org>
1589 * configure.host (sparc64-*-freebsd): Add.
1590 * configure.tgt: Likewise.
1591 * config/sparc/fbsd.mh: New file.
1592 * config/sparc/fbsd.mt: Likewise.
1593 * config/sparc/nm-fbsd.h: Likewise.
1594 * config/sparc/tm-fbsd.h: Likewise.
1596 2002-03-01 Daniel Jacobowitz <drow@mvista.com>
1598 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
1599 regformats/reg-s390x.dat.
1601 2002-03-01 Andrew Cagney <ac131313@redhat.com>
1603 * utils.c: Add FIXME explaining true/false problem.
1605 2002-02-28 Andrew Cagney <ac131313@redhat.com>
1607 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
1609 2002-02-28 Michael Chastain <mec@shout.net>
1611 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
1613 2002-02-28 Daniel Jacobowitz <drow@mvista.com>
1615 * gdbserver/linux-s390-low.c: New file.
1616 * regformats/reg-s390.dat: New file.
1617 * regformats/reg-s390x.dat: New file.
1618 * gdbserver/configure.srv: Add S/390.
1619 * gdbserver/Makefile.in: Add S/390.
1620 * configure.tgt: Enable gdbserver for S/390.
1622 2002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
1624 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
1625 first line of the doc string for "info dos", except at the end of
1626 the sentence, since the short help stops at the first period.
1628 2002-02-28 Jason Merrill <jason@redhat.com>
1630 * dwarf2read.c (dwarf_cfi_name): Add new codes.
1632 2002-02-27 Fred Fish <fnf@redhat.com>
1634 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
1635 comment (dumy -> dummy).
1637 2002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1639 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
1641 2002-02-27 Rodney Brown <rbrown64@csc.com.au>
1643 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
1645 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
1647 * gdbserver/acconfig.h: New file.
1648 * gdbserver/i387-fp.c: New file.
1649 * gdbserver/i387-fp.h: New file.
1650 * gdbserver/linux-x86-64.c: New file.
1651 * regformats/reg-x86-64.dat: New file.
1652 * configure.tgt: Add x86_64-*-linux* gdbserver support.
1653 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
1654 * gdbserver/configure.in: Add support for regsets.
1655 * gdbserver/config.in: Regenerate.
1656 * gdbserver/configure: Regenerate.
1657 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
1658 * gdbserver/linux-low.h: New file.
1659 * gdbserver/linux-low.c: Include "linux-low.h". Add support
1661 * gdbserver/linux-arm-low.c: Include "linux-low.h".
1662 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
1663 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
1664 * gdbserver/linux-mips-low.c: Include "linux-low.h".
1665 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
1666 * gdbserver/linux-sh-low.c: Include "linux-low.h".
1667 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
1668 "i387-fp.h". Add PTRACE_GETREGS and friends.
1669 * gdbserver/regcache.c (supply_register): New function.
1670 (supply_register_by_name): New function.
1671 (collect_register): New function.
1672 (collect_register_by_name): New function.
1674 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
1676 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
1677 (config.status): Add configure.srv dependency.
1678 (server_h): Add config.h dependency.
1680 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
1682 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
1683 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
1684 * gdbserver/configure.srv: Change i386-*-linux* to use
1687 2002-02-26 Andrew Cagney <ac131313@redhat.com>
1689 * x86-64-tdep.c: Re-indent. Update copyright date.
1691 2002-02-26 Andrew Cagney <ac131313@redhat.com>
1693 From Michal Ludvig <mludvig@suse.cz>:
1694 * x86-64-tdep.c (value.h): Delete.
1695 (gdb_assert.h): Include.
1696 (x86_64_register_convert_to_virtual,
1697 x86_64_register_convert_to_raw ): Add check which lets only
1698 floating-point values to be converted.
1699 (value_push): Delete.
1700 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
1701 (i386_gdbarch_init): Number of register_bytes fixed.
1703 2002-02-26 Andrew Cagney <ac131313@redhat.com>
1705 * MAINTAINERS: Add x86-64 target.
1707 2002-02-26 Andrew Cagney <ac131313@redhat.com>
1709 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
1710 * osfsolib.c (solib_map_sections): Ditto.
1711 * irix5-nat.c (solib_map_sections): Ditto.
1712 * corelow.c (gdb_check_format): Ditto.
1713 * symfile.c (symfile_bfd_open): Ditto.
1714 * solib.c (solib_map_sections): Ditto.
1717 2002-02-26 Andrew Cagney <ac131313@redhat.com>
1719 * remote.c (_initialize_remote): By default, disable ``e'' and
1720 ``E'' step out-of-range packets.
1722 2002-02-26 Andreas Schwab <schwab@suse.de>
1724 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
1725 m68k_linux_frame_saved_pc.
1726 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
1728 (SIGCONTEXT_PC_OFFSET): Remove.
1729 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
1730 m68k_linux_sigtramp_saved_pc): New functions.
1731 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
1732 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
1733 (UCONTEXT_PC_OFFSET): Define.
1734 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
1735 non-RT and RT signal trampolines.
1737 2002-02-26 Richard Earnshaw <rearnsha@arm.com>
1739 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
1740 (TARGET_NBPG, STACK_END_ADDR): Delete
1741 (VARIABLES_INSIDE_BLOCK): Delete.
1743 2002-02-25 Andrew Cagney <ac131313@redhat.com>
1745 * utils.c (perror_with_name): Make string parameter constant.
1746 (print_sys_errmsg): Ditto.
1748 * defs.h (perror_with_name): Update.
1749 (print_sys_errmsg): Update.
1752 2002-02-25 Daniel Jacobowitz <drow@mvista.com>
1754 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
1755 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
1757 2002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1759 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
1760 if it already matches the current architecture from the exec file.
1761 Include arch-utils.h for gdbarch_info_init prototype.
1762 * Makefile.in (rs6000-nat.o): Update dependencies.
1764 2002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
1766 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
1767 list of exported variables.
1769 2002-02-24 Daniel Jacobowitz <drow@mvista.com>
1771 * gdbserver/configure.srv: New file.
1772 * gdbserver/configure.in: Use configure.srv instead
1773 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
1775 * gdbserver/configure: Regenerated.
1776 * gdbserver/terminal.h: New file.
1777 * gdbserver/Makefile.in: Update for configure changes. Remove
1778 more unneeded include paths.
1780 2002-02-24 Andrew Cagney <ac131313@redhat.com>
1782 From wiz at danbala:
1783 * config/sparc/tm-sp64.h: Fix grammar and typos.
1786 2002-02-24 Andrew Cagney <ac131313@redhat.com>
1788 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
1789 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
1790 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
1791 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
1792 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
1793 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
1794 * s390-tdep.c: Ditto.
1795 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
1796 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
1797 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
1798 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
1799 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
1800 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
1801 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
1802 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
1803 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
1804 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
1807 2002-02-23 Andrew Cagney <ac131313@redhat.com>
1809 * lin-thread.c: Delete file.
1810 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
1811 to gdb_proc_service.h.
1812 * configure: Re-generate.
1814 * ocd.c (ocd_open): Do not try to open the "ocd" device.
1815 * serial.c (serial_open): Delete check for "ocd".
1818 * Makefile.in (linux-thread.o): Delete target.
1819 * linux-thread.c: Delete file.
1821 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
1822 renamed SH files to be consistent.
1824 * symtab.c (sort_search_symbols): Use xfree.
1826 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
1828 * arm-linux-tdep.c (arm_linux_init_abi): Register
1829 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
1830 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
1831 definition with undef, since we don't want the sysvr4 definition.
1832 (SKIP_TRAMPOLINE_CODE): Likewise.
1834 2002-02-23 Andrew Cagney <ac131313@redhat.com>
1836 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
1838 * configure.in: (AC_CHECK_FUNCS) Added test for
1839 canonicalize_file_name Regenerated.
1840 * config.in, configure: Regenerated.
1841 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
1842 defined use canonicalize_file_name.
1844 2002-02-23 Michael Chastain <mec@shout.net>
1846 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
1848 2002-02-23 Andrew Cagney <ac131313@redhat.com>
1850 * README: Remove references to cygnus.com.
1851 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
1852 dot com'' form. Remove references to cygnus.com and sourceware.
1854 2002-02-23 Andrew Cagney <ac131313@redhat.com>
1856 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
1857 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
1858 1003.1-2001 no longer allows "head -1".
1859 * gdb/Makefile.in (version.c): Likewise.
1860 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
1861 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
1862 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
1864 2002-02-23 Andrew Cagney <ac131313@redhat.com>
1866 * cli/cli-decode.c (cmd_cfunc_eq): New function.
1867 * command.h (cmd_cfunc_eq): Declare.
1868 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
1870 * cli/cli-cmds.h (is_complete_command): Change parameter to a
1871 ``struct cmd_list_element *''.
1872 * cli/cli-cmds.c (is_complete_command): Update. Use
1874 * top.c (execute_command): Pass the command to
1875 is_complete_command.
1876 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
1878 2002-02-23 Andrew Cagney <ac131313@redhat.com>
1880 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
1881 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
1882 architecture defines.
1883 * s390-tdep.c (s390_gdbarch_init): Likewise.
1885 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
1887 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
1888 (arm_linux_push_arguments): Likewise.
1889 (arm_linux_init_abi): Register them. Also register linux-specific
1891 (find_minsym_and_objfile): Use strcmp, not STREQ.
1892 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
1893 (arm_linux_call_dummy_words): Delete declaration.
1894 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
1895 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
1897 (LOWEST_PC): Delete.
1899 2002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1901 * maint.c (print_section_info): Do not prepend `0x' to filepos
1902 output, it will be handled by local_hex_string_custom.
1904 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
1906 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
1907 (store_newfpe_double, store_newfpe_extended, store_fpregister)
1908 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
1910 2002-02-22 Jim Blandy <jimb@redhat.com>
1912 Indicate that the bcache functions don't change the strings
1914 * bcache.h (bcache, hash): Add `const' keywords to declarations.
1915 * bcache.c (bcache, hash): Add `const' keywords to definitions.
1917 2002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
1919 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
1921 2002-02-21 Christopher Faylor <cgf@redhat.com>
1923 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
1924 find the complete path to a loaded DLL.
1926 2002-02-21 Fred Fish <fnf@redhat.com>
1928 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
1929 that marks the end of the range of a function, enter a line number
1930 entry that has a line number of zero and a PC offset that matches
1931 the end of the function. This starts a range of PC's for which no
1932 line number information is known.
1933 * symtab.c (find_pc_sect_line): If our best fit is in a range of
1934 PC's for which no line number info is found (line number is zero)
1935 then we didn't find any valid line information.
1936 * symtab.h: Document use of zero line number entry.
1938 2002-02-21 Elena Zannoni <ezannoni@redhat.com>
1940 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
1941 (have_ptrace_getvrregs): Define for run time checks.
1942 (gdb_vrregset_t): New type for Altivec register handling.
1943 (fetch_register, store_register): Fetch/store altivec register
1945 (fetch_altivec_register, store_altivec_register): New functions.
1946 (supply_vrregset, fill_vrregset): New functions.
1947 (fetch_altivec_registers, store_altivec_registers): New functions.
1948 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
1951 2002-02-21 Jiri Smid <smid@suse.cz>
1953 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
1955 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
1957 * Makefile.in (armnbsd-nat.o): Update dependencies.
1958 * armnbsd-nat.c (supply_gregset): New function. Common code to
1959 supply the integer register set.
1960 (supply_fparegset): New function. Similar for FPA registers.
1961 (fetch_regs, fetch_fp_regs): Use them.
1962 (fetch_core_registers): Likewise.
1963 (fetch_elfcore_registers): New function.
1964 (arm_netbsd_elfcore_fns): New core-file type specification.
1965 (_initialize_arm_netbsd_nat): Register it.
1967 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
1969 * armnbsd-nat.c: Include gdbcore.h.
1970 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
1971 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
1972 'void' to declaration, to shut up ARI.
1973 (fetch_core_registers): Make static. Rewrite using supply_register.
1974 (arm_netbsd_core_fns): New core-file type specification.
1975 (_initialize_arm_netbsd_nat): New function.
1977 2002-02-21 Christopher Faylor <cgf@redhat.com>
1979 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
1982 2002-02-20 Christopher Faylor <cgf@redhat.com>
1984 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
1987 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
1989 * jv-exp.y (parse_number): Change type of implicit longs
1990 to builtin_type_uint64.
1992 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
1994 * gdbserver/linux-low.c (mywait): Change argument to waitpid
1995 to be an integer instead of a `union wait'.
1997 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
1999 * mips-linux-nat.c: Call the operating system GNU/Linux.
2000 * mips-linux-tdep.c: Likewise.
2001 * mips-tdep.c: Likewise.
2003 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
2006 * jv-exp.y (parse_number): Handle 64-bit integers.
2008 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
2010 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
2011 AC_STDC_HEADERS to AC_HEADER_STDC.
2012 * gdbserver/configure: Regenerated.
2014 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
2016 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
2018 * sparc-tdep.c (get_longjmp_target): Likewise.
2020 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
2022 * News: Add news about ARM and Multi-arch. Mention the new target
2025 2002-02-19 Jim Blandy <jimb@redhat.com>
2027 * stabsread.c (error_type_complaint): Improve error message.
2029 2002-02-19 Daniel Jacobowitz <drow@mvista.com>
2031 * gdbserver/README: Update documentation.
2032 * gdbserver/configure.in: Update configury to match documentation.
2033 * gdbserver/Makefile.in: Likewise.
2034 * gdbserver/configure: Regenerated.
2035 * gdbserver/aclocal.m4: New file, generated by aclocal.
2036 * gdbserver/config.in: New file, generated by autoheader.
2038 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
2040 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
2043 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
2045 * arm-tdep.h (enum arm_float_model): New enum.
2046 (struct gdbarch_tdep): Add fp_model.
2047 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
2048 up floating-point conversions until we know the floating-point model
2049 in use by the inferior. Don't complain about being unable to
2050 determine the ABI of the inferior when we don't have one.
2051 (arm_extract_return_value): Support different floating-point models.
2052 (arm_store_return_value): Likewise.
2053 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
2055 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
2057 2002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
2059 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
2060 of ``current_gdbarch''.
2062 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
2064 * armnbsd-nat.c : ANSIfy all function declarations.
2065 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
2066 (fetch_inferior_registers): Re-implement in terms of above.
2067 (store_register, store_regs, store_fp_register, store_fp_regs): New.
2068 (store_inferior_registers): Re-implement in terms of above.
2070 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
2072 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
2074 * arm-linux-tdep.c: Likewise.
2075 * config/arm/tm-linux.h: Likewise.
2077 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
2079 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
2080 * config/arm/nbsd.mt (TM_FILE): Delete.
2081 * config/arm/tm-nbsd.h: Delete.
2083 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
2085 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
2086 Initialize CALL_DUMMY_LENGTH.
2088 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
2090 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
2092 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
2093 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
2094 defines one thing and that is incorrect for this port.
2095 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
2097 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
2099 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
2101 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
2103 * win32-nat.c (display_selector): New function. Displays information
2104 about the information returned by GetThreadSelectorEntry API function.
2105 (display_selectors): New function. Displays the infomation of
2106 the selector given as argument, or of CS, DS ans FS selectors
2107 if no argument is given.
2108 ( _initialize_inftarg): Add "w32" as info prefix command.
2109 Add "info w32 selector" as command calling display_selectors.
2111 2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
2113 * i386-tdep.c (get_longjmp_target): Fix compilation failure
2114 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
2117 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
2119 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
2121 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
2123 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
2124 (arm_fix_call_dummy): Call it.
2125 (arm_call_dummy_breakpoint_offset): Delete.
2126 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
2127 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
2129 2002-02-18 Andrew Cagney <ac131313@redhat.com>
2131 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
2132 Default to func_frame_chain_valid.
2133 * gdbarch.h, gdbarch.c: Re-generate.
2134 * frame.h (FRAME_CHAIN_VALID): Delete definition.
2136 2002-02-18 Elena Zannoni <ezannoni@redhat.com>
2138 * ppc-linux-nat.c: Update copyright.
2139 (fetch_register, store_register): Add tid parameter, don't compute
2141 (fetch_ppc_registers, store_ppc_registers): Add tid
2142 parameter. Pass it along to callees.
2143 (fetch_inferior_registers, store_inferior_registers): Compute tid
2144 here, and pass it to calleed functions.
2145 (fill_gregset, supply_fpregset): Clean up formatting.
2147 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
2149 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
2150 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
2152 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
2154 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
2155 * gdbarch.c gdbarch.h: Regenerate.
2156 * breakpoint.c (create_longjmp_breakpoint): Always compile this
2158 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
2159 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
2160 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
2162 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
2163 * arm-tdep.c (arm_get_longjmp_target): New function.
2164 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
2165 this to a positive value register arm_get_longjmp_target as the
2167 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
2168 (arm_linux_init_abi): Set up longjmp description in tdep.
2169 * armnbsd-nat.c (get_longjmp_target): Delete.
2170 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
2171 description in tdep.
2172 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
2173 (get_longjmp_target): Delete declaration.
2174 (GET_LONGJMP_TARGET): Delete.
2175 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
2176 (GET_LONGJMP_TARGET): Delete.
2178 2002-02-17 Kevin Buettner <kevinb@redhat.com>
2180 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
2181 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
2182 of ``current_gdbarch''.
2184 2002-02-17 Tom Tromey <tromey@redhat.com>
2186 * cli/cli-cmds.c (compare_strings): New function.
2187 (complete_command): Only print each unique item once.
2188 * completer.h (complete_line): Declare.
2189 * completer.c (complete_line): New function.
2190 (line_completion_function): Use it.
2192 2002-02-16 Andrew Cagney <ac131313@redhat.com>
2194 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
2195 * gdbarch.h, gdbarch.c: Re-generate.
2197 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
2199 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
2201 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
2203 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
2204 * valops.c (value_arg_coerce): Don't take the address of a reference
2205 to convert an argument to a reference.
2207 2002-02-15 Christopher Faylor <cgf@redhat.com>
2209 * win32-nat.c (get_image_name): New function.
2210 (handle_load_dll): Use get_image_name function.
2211 (get_child_debug_event): Avoid registering debug events until possibly
2212 execed process is started.
2213 (child_create_inferior): Allow invocation via shell so that command
2214 line redirection, etc. works ok.
2215 (_initialize_inftarg): Add new command: "set shell" to control whether
2216 a shell is used to start a process.
2218 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
2220 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
2221 instead of find_register_by_number.
2222 (cannot_store_register): Likewise.
2224 2002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
2226 * dwarf2read.c: Replace fprintf (stderr, ...) by
2227 fprintf_unfiltered (gdb_stderr, ...).
2229 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
2231 * gdbserver/gdbserver.1: Document --attach.
2233 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
2235 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
2237 * arm-tdep.c (arm_default_arm_le_breakpoint)
2238 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
2239 (arm_default_thumb_be_breakpoint): New. Initialize them from
2240 traditional breakpoint defines.
2241 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
2242 (arm_gdbarch_init): Initialize new breakpoint variables.
2243 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
2244 (arm_linux_init_abi): Initialize linux-specific breakpoint.
2245 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
2246 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
2248 (arm_netbsd_init_abi_common): ... here; new function.
2249 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
2250 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
2251 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
2252 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
2254 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
2256 * arm-tdep.h (enum arm_abi): New enum.
2257 (struct gdbarch_tdep): New structure.
2258 (LOWEST_PC): Provide a default.
2259 (arm_gdbarch_register_os_abi): Declare new function.
2260 * arm-tdep.c (arm_abi_names): New array.
2261 (process_note_abi_tag_sections): New function.
2262 (get_elfosabi): New function.
2263 (arm_gdbarch_register_os_abi): New function.
2264 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
2265 support for that ABI has been built in, then call the appropriate
2266 configuration routine. Use gdbarch_num_regs() to get the number
2268 (arm_dump_tdep): New function.
2269 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
2270 place-holder functions.
2271 (_initialize_arm_tdep): Register them.
2272 * config/arm/tm-arm.h (LOWEST_PC): Delete.
2274 * armnbsd-tdep.c: New file.
2275 * Makefile.in (armnbsd-tdep.o): Add dependencies.
2276 * config/arm/nbsd.mt (TDEPFILES): Add it.
2277 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
2279 * armnbsd-nat.c: Include regcache.h.
2280 * Makefile.in (armnbsd-nat.o): Update dependency list.
2282 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
2284 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
2286 * gdbserver/Makefile.in: Fix typos in target rules.
2288 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
2290 Fix part of PR gdb/267.
2291 * linespec.c (find_methods): Handle constructors specially for now.
2293 2002-02-14 Corinna Vinschen <vinschen@redhat.com>
2295 * arm-tdep.c (arm_push_arguments): Eliminate special float type
2297 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
2298 standard_coerce_float_to_double().
2300 2002-02-14 Christopher Faylor <cgf@redhat.com>
2302 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
2305 2002-02-14 Elena Zannoni <ezannoni@redhat.com>
2307 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
2308 find_variant_by_name, because it confuses the multiarch
2309 framework. Return NULL if there isn't an architecture with the
2310 user supplied name, instead of forcing a different one without
2311 recording the change with the multiarch machinery.
2312 (find_variant_by_name): Delete.
2314 2002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
2316 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
2317 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
2319 2002-02-13 Martin M. Hunt <hunt@redhat.com>
2321 * stack.c (print_frame_info_base): When calling
2322 print_frame_info_listing_hook, set current_source_symtab.
2324 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
2326 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
2327 and remove unused $(INCLUDE_DIR).
2328 Add regcache.c to OBS.
2329 Add generated register protocol files to clean target.
2330 Update dependencies for new objects, obsolete old target code.
2332 * gdbserver/linux-low.c: Remove all platform-specific code to
2333 new files. Remove various dead code. Update to use regcache
2335 * gdbserver/remote-utils.c (fromhex): Add return statement
2337 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
2339 (input_interrupt): Add integer parameter to match prototype
2340 of a signal handler.
2341 (outreg): Use register_data ().
2342 (prepare_resume_reply): Use gdbserver_expedite_regs.
2343 * gdbserver/server.c (main): Dynamically allocate own_buf because
2344 PBUFSIZ is no longer constant. Use registers_to_string () and
2345 registers_from_string ().
2346 * gdbserver/server.h: No longer include "defs.h". Add prototypes
2347 for error (), fatal (), and warning (). Update definition of
2348 PBUFSIZ to use regcache functionality. Add include guard.
2349 * gdbserver/utils.c (fatal): Add missing ``const''.
2350 (warning): New function.
2352 * regformats/regdat.sh: Include "regcache.h" in generated files.
2353 Provide init_registers () function.
2354 * regformats/regdef.h: Add prototype for set_register_cache ().
2357 * gdbserver/linux-arm-low.c: New file.
2358 * gdbserver/linux-i386-low.c: New file.
2359 * gdbserver/linux-ia64-low.c: New file.
2360 * gdbserver/linux-m68k-low.c: New file.
2361 * gdbserver/linux-mips-low.c: New file.
2362 * gdbserver/linux-ppc-low.c: New file.
2363 * gdbserver/linux-sh-low.c: New file.
2365 * gdbserver/regcache.c: New file.
2366 * gdbserver/regcache.h: New file.
2368 * gdbserver/low-linux.c: Removed obsolete file.
2370 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
2372 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
2373 * config/i386/linux.mt: Likewise.
2374 * config/ia64/linux.mt: Likewise.
2375 * config/m68k/linux.mh: Likewise.
2376 * config/powerpc/linux.mh: Likewise.
2377 * config/mips/linux.mt: Likewise.
2379 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
2381 * config/i386/i386lynx.mh: Mark gdbserver variables
2382 as (currently) obsolete for this target.
2383 * config/i386/nbsd.mt: Likewise.
2384 * config/i386/nbsdelf.mt: Likewise.
2385 * config/m32r/m32r.mt: Likewise.
2386 * config/m68k/m68klynx.mh: Likewise.
2387 * config/m68k/nbsd.mt: Likewise.
2388 * config/m68k/sun3os4.mh: Likewise.
2389 * config/mips/vr5000.mt: Likewise.
2390 * config/ns32k/nbsd.mt: Likewise.
2391 * config/pa/hppabsd.mh: Likewise.
2392 * config/pa/hppaosf.mh: Likewise.
2393 * config/powerpc/nbsd.mt: Likewise.
2394 * config/rs6000/rs6000lynx.mh: Likewise.
2395 * config/s390/s390.mt: Likewise.
2396 * config/s390/s390x.mt: Likewise.
2397 * config/sparc/sparclynx.mh: Likewise.
2398 * config/sparc/sun4os4.mh: Likewise.
2399 * config/i386/x86-64linux.mt: Likewise.
2400 * config/sparc/linux.mh: Likewise.
2402 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
2404 * configure.tgt: Configure gdbserver only for known working
2405 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
2406 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
2407 SUBDIRS if it is configured. Update comment for ${nativefile}.
2408 * configure: Regenerated.
2410 2002-02-13 Michael Snyder <msnyder@redhat.com>
2412 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
2414 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
2415 (default_gcore_mach): Just return 0, work around a problem in bfd.
2416 (default_gcore_target): OK to return NULL if exec_bfd is null.
2417 (make_mem_sec): Use a cast, avoid a warning.
2419 * procfs.c (find_memory_regions_callback): Use a cast instead of
2420 calling host_pointer_to_address (which complains if
2421 sizeof (host pointer) != sizeof (target pointer)).
2422 (procfs_make_note_section): Avoid overflow in psargs string.
2424 * procfs.c (procfs_make_note_section): Make the default
2425 implementation return an error.
2427 2002-02-13 Rodney Brown <rbrown64@csc.com.au>
2429 * procfs.c (procfs_make_note_section): Provide a default definition
2430 (for alpha-dec-osf4.0f). Fix typos.
2432 2002-02-13 Elena Zannoni <ezannoni@redhat.com>
2434 * linux-proc.c: Add include of regcache.h.
2435 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
2437 2002-02-13 Andrew Cagney <ac131313@redhat.com>
2439 From 2002-01-18 Greg McGary <greg@mcgary.org>:
2440 * memattr.c (create_mem_region): Disallow useless empty region.
2441 Regions are half-open intervals, so allow [A..B) [B..C) as
2444 2002-02-13 Michael Chastain <mec@shout.net>
2446 * defs.h: Kill CONST_PTR.
2447 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
2448 * c-lang.c (c_builtin_types): Likewise.
2449 * ch-lang.c (ch_builtin_types): Likewise.
2450 * f-lang.c (f_builtin_types): Likewise.
2451 * language.c (unknown_builtin_types): Likewise.
2452 * m2-lang.c (m2_builtin_types): Likewise.
2453 * p-lang.c (pascal_builtin_types): Likewise.
2454 * scm-lang.c (c_builtin_types): Likewise.
2456 2002-02-13 Keith Seitz <keiths@redhat.com>
2458 * arm-tdep.h (arm_get_next_pc): Add declaration.
2460 2002-02-13 Richard Earnshaw <rearnsha@arm.com>
2462 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
2463 with other related struct-returning functions.
2464 (arm_extract_struct_value_address): New function.
2465 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
2466 initialize float_format, double_format and long_double_format as
2467 appropriate to the endianness of the target.
2468 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
2469 (arm_use_struct_convention): Delete declaration.
2470 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
2472 2002-02-13 Keith Seitz <keiths@redhat.com>
2474 * defs.h (core_addr_to_string_nz): New function.
2476 2002-02-13 Mark Kettenis <kettenis@gnu.org>
2478 Apply missing bits of 2002-01-15 patch.
2479 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
2480 (fill_fpregset): Use i387_fill_fsave.
2482 2002-02-12 Keith Seitz <keiths@redhat.com>
2484 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
2485 (core_addr_to_string_nz): New function.
2487 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
2489 * arm-linux-nat.c: Really include arm-tdep.h.
2490 * config/arm/tm-linux.h (struct type, struct value): Declare.
2492 2002-02-11 Michael Snyder <msnyder@redhat.com>
2494 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
2495 (gcore section): Ifdef for Solaris and Unixware only.
2496 (procfs_do_thread_registers): Unixware needs one lwpstatus
2497 per thread (not one prstatus or pstatus).
2498 (procfs_make_note_section): Iterate only over kernel threads (lwps),
2499 not over all gdb threads. For unixware, call elfcore_write_pstatus
2500 once before iterating over threads.
2502 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
2504 * arm-tdep.h: New file.
2505 * arm-tdep.c: Include arm-tdep.h.
2506 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
2507 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
2508 (arm_print_float_info, arm_register_type, convert_to_extended)
2509 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
2510 (arm_extract_return_value, arm_register_name): Make static.
2511 (arm_software_single_step): Similarly. Fix types in declaration.
2512 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
2513 (arm_store_return_value, arm_store_struct_return): New functions.
2514 (arm_gdbarch_init): Register the above functions. Also register
2515 call_dummy_start_offset, sizeof_call_dummy_words,
2516 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
2517 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
2518 max_register_virtual_size, register_size. Set up
2519 prologue_cache.saved_regs here, rather than ...
2520 (_initialize_arm_tdep): ... here.
2521 * config/arm/tm-arm.h (struct type, struct value): Delete forward
2523 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
2524 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
2525 (arm_print_float_info, arm_register_type, convert_to_extended)
2526 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
2527 (arm_extract_return_value, arm_register_name): Delete declarations.
2528 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
2529 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
2530 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
2531 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
2532 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
2533 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
2534 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
2535 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
2536 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
2537 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
2538 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
2539 (arm_get_next_pc): No-longer static -- these are needed by the RDI
2541 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
2542 * remote-rdi.c remote-rdp.c: Likewise.
2543 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
2544 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
2545 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
2548 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
2549 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
2550 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
2551 from non-ARM_ prefixed definitions.
2552 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
2554 * remote-rdi.c remote-rdp.c: Likewise.
2555 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
2557 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
2559 * arm-tdep.c (arm_frameless_function_invocation)
2560 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
2561 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
2562 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
2563 (arm_pop_frame, arm_get_next_pc): Make static.
2564 (arm_gdbarch_init): Register above in gdbarch structure.
2565 (arm_read_fp): Renamed from arm_target_read_fp.
2566 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
2567 * config/arm/tm-arm.h (arm_frameless_function_invocation)
2568 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
2569 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
2570 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
2571 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
2572 (arm_pc_is_thumb_dummy): Delete declarations.
2573 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
2574 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
2575 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
2576 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
2578 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
2580 * symtab.c (compare_search_syms): New function.
2581 (sort_search_symbols): New function.
2582 (search_symbols): Sort symbols after searching rather than
2585 2002-02-10 Andrew Cagney <ac131313@redhat.com>
2587 * NEWS: Linux -> GNU/Linux.
2589 2002-02-10 Andrew Cagney <ac131313@redhat.com>
2591 * gdbarch.sh: For for level one methods, disallow a definition
2592 when partially multi-arched. Add comments explaining rationale.
2593 * gdbarch.h: Re-generate.
2595 2002-02-10 Andrew Cagney <ac131313@redhat.com>
2597 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
2600 2002-02-10 Andrew Cagney <ac131313@redhat.com>
2602 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
2604 * gdbarch.c: Re-generate.
2606 2002-02-10 Andrew Cagney <ac131313@redhat.com>
2608 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
2609 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
2612 2002-02-10 Andrew Cagney <ac131313@redhat.com>
2614 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
2616 (PUSH_ARGUMENTS): Switch to using predefault.
2617 * gdbarch.c: Regenerate.
2619 2002-02-10 Andrew Cagney <ac131313@redhat.com>
2621 * valops.c (PUSH_ARGUMENTS): Delete definition.
2622 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
2623 partial. Default to default_push_arguments.
2624 * gdbarch.h, gdbarch.c: Regenerate.
2626 2002-02-09 Andrew Cagney <ac131313@redhat.com>
2628 * defs.h (throw_exception): Rename return_to_top_level. Update
2630 * utils.c (error_stream, internal_verror, quit): Ditto.
2631 * top.c (throw_exception, catcher): Ditto.
2632 * sparclet-rom.c (sparclet_load): Ditto.
2633 * remote.c (interrupt_query, minitelnet): Ditto.
2634 * remote-sds.c (interrupt_query): Ditto.
2635 * remote-mips.c (mips_error, mips_kill): Ditto.
2636 * ocd.c (interrupt_query): Ditto.
2637 * monitor.c (monitor_interrupt_query): Ditto.
2638 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
2639 * target.h: Update comment.
2641 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
2643 2002-02-09 Andrew Cagney <ac131313@redhat.com>
2645 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
2646 default_double_format.
2647 * gdbarch.h, gdbarch.c: Re-generate.
2648 * findvar.c (floatformat_unknown): Delete variable definition.
2649 * doublest.h (floatformat_unknown): Delete variable declaration.
2651 2002-02-09 Jim Blandy <jimb@redhat.com>
2653 * stabsread.c (read_type): Add code to parse Sun's syntax for
2654 prototyped function types.
2656 2002-02-09 Andrew Cagney <ac131313@redhat.com>
2658 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
2659 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
2661 2002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
2663 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
2664 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
2665 now _initialize_xcoffsolib gets called again and overrides the
2666 commands from solib.c in a native configuration.
2668 2002-02-09 Mark Kettenis <kettenis@gnu.org>
2670 * doublest.c (store_typed_floating): Don't try to return a value.
2673 2002-02-08 Jim Blandy <jimb@redhat.com>
2675 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
2676 is prototyped and has no arguments, print its argument list as
2679 2002-02-08 Chris Demetriou <cgd@broadcom.com>
2681 * MAINTAINERS (write-after-approval): Add myself.
2682 (paper-trail): I've escaped!
2684 2002-02-08 Christopher Faylor <cgf@redhat.com>
2686 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
2688 (_initialize_check_for_gdb_ini): Ditto.
2690 2002-02-08 Martin M. Hunt <hunt@redhat.com>
2692 * win32-nat.c (cygwin_pid_to_str): Fix typo.
2693 xaprintf -> xasprintf.
2695 2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
2697 * win32-nat.c: Remove use of printf and sprintf functions.
2699 2002-02-08 Richard Earnshaw <rearnsha@arm.com>
2701 * arm-tdep.c (arm_frame_chain_valid): Make static.
2702 (arm_push_arguments): Likewise.
2703 (arm_gdbarch_init): New function.
2704 (_initialize_arm_tdep): Call it.
2705 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
2706 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
2707 (FRAME_CHAIN_VALID): Delete.
2708 (arm_frame_chain_valid): Delete declaration.
2709 (PUSH_ARGUMENTS): Delete.
2710 (arm_push_arguments): Delete declaration.
2711 (CALL_DUMMY_P): Delete.
2713 2002-02-08 Andrew Cagney <ac131313@redhat.com>
2714 Corinna Vinschen <vinschen@redhat.com>
2716 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
2717 on builtin float types.
2719 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
2721 * utils.c: Include <curses.h> before "bfd.h".
2722 * tui/tui-hooks.c: Likewise.
2723 * tui/tui.c: Likewise.
2724 * tui/tuiCommand.c: Likewise.
2725 * tui/tuiData.c: Likewise.
2726 * tui/tuiDataWin.c: Likewise.
2727 * tui/tuiDisassem.c: Likewise.
2728 * tui/tuiGeneralWin.c: Likewise.
2729 * tui/tuiIO.c: Likewise.
2730 * tui/tuiLayout.c: Likewise.
2731 * tui/tuiRegs.c: Likewise.
2732 * tui/tuiSource.c: Likewise.
2733 * tui/tuiSourceWin.c: Likewise.
2734 * tui/tuiStack.c: Likewise.
2735 * tui/tuiWin.c: Likewise.
2737 2002-02-07 Elena Zannoni <ezannoni@redhat.com>
2739 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
2740 to include space for pseudoregs as well. Update loops accordingly.
2741 (sh_fp_frame_init_saved_regs): Ditto.
2742 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
2744 2002-02-07 Andrew Cagney <ac131313@redhat.com>
2746 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
2747 Add Richard Earnshaw to Arm maintainers.
2749 2002-02-07 Andrew Cagney <ac131313@redhat.com>
2751 * defs.h (warning_begin): Delete declaration.
2753 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
2756 2002-02-07 Michael Snyder <msnyder@redhat.com>
2758 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
2759 Logic bug, remove misplaced else.
2761 2002-02-07 Klee Dienes <klee@apple.com>
2763 * fork-inferior.c (fork_inferior): Add '!' to the list of
2764 characters that need to be quoted when building a string for the
2765 shell. Quote '!' specifically with a backslash, since CSH chokes
2766 when trying to evaluate "str!str".
2768 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
2770 * rdi-share/host.h: Only provide a typedef for bool if it is not
2773 2002-02-04 Michael Snyder <msnyder@redhat.com>
2775 * breakpoint.h (enum bptype): Add new overlay event bp type.
2776 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
2778 * breakpoint.c (create_internal_breakpoint): New function.
2779 (internal_breakpoint_number): Moved into create_internal_breakpoint.
2780 (create_longjmp_breakpoint): Use create_internal_breakpoint.
2781 (create_thread_event_breakpoint): Ditto.
2782 (create_solib_event_breakpoint): Ditto.
2783 (create_overlay_event_breakpoint): New function.
2784 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
2785 (update_breakpoints_after_exec): Delete and re-initialize
2786 overlay event breakpoints after an exec. Add FIXME comment
2787 about longjmp breakpoint.
2788 (print_it_typical): Ignore overlay event breakpoints.
2789 (print_one_breakpoint): Ditto.
2791 (bpstat_what): Do not stop for overlay event breakpoints.
2792 (delete_breakpoint): Don't delete overlay event breakpoints.
2793 (breakpoint_re_set_one): Delete the overlay event breakpoint.
2794 (breakpoint_re_set): Re-create overlay event breakpoint.
2796 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
2797 (overlay_manual_command): Disable overlay breakpoints.
2798 (overlay_off_command): Disable overlay breakpoints.
2800 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
2802 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
2803 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
2804 to here from config/tm-arm.h.
2805 (coff_sym_is_thumb): Make static.
2806 (arm_elf_make_msymbol_special): New function.
2807 (arm_coff_make_msymbol_special): New function.
2808 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
2809 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
2810 (coff_sym_is_thumb): Delete declaration.
2811 (arm_elf_make_msymbol_special): Declare.
2812 (arm_coff_make_msymbol_special): Declare.
2813 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
2814 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
2816 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
2818 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
2820 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
2822 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
2823 * gdbarch.c gdbarch.h: Regenerate.
2824 * arch-utils.c (default_print_float_info): New function.
2825 * arch-utils.h (default_print_float_info): Prototype it.
2826 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
2827 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
2828 (PRINT_FLOAT_INFO): Document it.
2830 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
2831 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
2832 (PRINT_FLOAT_INFO): Define.
2834 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
2836 * win32-nat.c (_initialize_check_for_gdb_ini):
2837 Add typecast to sprintf argument to suppress a warning.
2839 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
2841 * win32-nat.c (last_sig): Changed type of variable to target_signal,
2842 to allow easier handling of pass state.
2843 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
2844 that gives exception name and address.
2845 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
2846 and set last_sig value to ourstatus->value.sig. Some missing
2848 (child_continue): Correctly report continue_status.
2849 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
2850 TARGET_SIGNAL_0 (new default value).
2851 (child_resume): consider sig argument passed to decide if
2852 the exception should be passed to debuggee or not.
2854 2002-02-05 Michael Snyder <msnyder@redhat.com>
2856 * regcache.c (fetch_register): Call target_fetch_register
2857 only if we don't call FETCH_PSEUDO_REGISTER.
2858 (store_register): Call target_store_register only if we
2859 don't call STORE_PSEUDO_REGISTER.
2861 2002-02-05 Elena Zannoni <ezannoni@redhat.com>
2863 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
2864 ELF_MAKE_MSYMBOL_SPECIAL.
2865 * gdbarch.c, gdbarch.h: Regenerate.
2866 * arch-utils.c (default_make_msymbol_special): New function.
2867 * arch-utils.h (default_make_msymbol_special): Export.
2868 * elfread.c (elf_symtab_read): Compile use of
2869 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
2871 * coffread.c (coff_symtab_read): Ditto, for
2872 COFF_MAKE_MSYMBOL_SPECIAL.
2874 2002-02-05 Jim Blandy <jimb@redhat.com>
2876 * solib-svr4.c (svr4_truncate_ptr): New function.
2877 (svr4_relocate_section_addresses): Do the address arithmetic with
2878 the appropriate truncation for target addresses, even when
2879 CORE_ADDR is larger than a target address.
2881 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
2883 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
2886 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
2888 * gdbserver/linux-low.c (kill_inferior): Remove commented out
2891 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
2893 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
2895 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
2897 * gdbserver/linux-low.c: Remove unused include files.
2899 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
2901 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
2902 (read_inferior_memory): Use it.
2903 (write_inferior_memory): Likewise.
2905 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
2907 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
2908 grubbing through sys_errlist.
2910 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
2912 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
2914 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
2915 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
2917 2002-02-04 Andrew Cagney <ac131313@redhat.com>
2919 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
2920 (do_sfunc, set_cmd_sfunc): New functions.
2922 * command.h (struct cmd_list_element): Add field func.
2923 * cli/cli-decode.h (struct cmd_list_element): Ditto.
2924 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
2925 * cli/cli-decode.h: Ditto.
2927 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
2928 (help_all, help_cmd_list): Ditto.
2929 (find_cmd, complete_on_cmdlist): Ditto.
2930 * top.c (execute_command): Ditto.
2932 * cli/cli-setshow.c (do_setshow_command): Call func instead of
2935 * infcmd.c (notice_args_read): Fix function signature.
2937 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
2938 * cli/cli-decode.c (add_set_cmd): Ditto.
2939 * utils.c (initialize_utils): Ditto.
2940 * maint.c (_initialize_maint_cmds): Ditto.
2941 * infrun.c (_initialize_infrun): Ditto.
2942 * demangle.c (_initialize_demangler): Ditto.
2943 * remote.c (add_packet_config_cmd): Ditto.
2944 * mips-tdep.c (_initialize_mips_tdep): Ditto.
2945 * cris-tdep.c (_initialize_cris_tdep): Ditto.
2946 * proc-api.c (_initialize_proc_api): Ditto.
2947 * kod.c (_initialize_kod): Ditto.
2948 * valprint.c (_initialize_valprint): Ditto.
2949 * top.c (init_main): Ditto.
2950 * infcmd.c (_initialize_infcmd): Ditto.
2951 * corefile.c (_initialize_core): Ditto.
2952 * arm-tdep.c (_initialize_arm_tdep): Ditto.
2953 * arch-utils.c (initialize_current_architecture): Ditto.
2954 (_initialize_gdbarch_utils): Ditto.
2955 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
2957 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
2958 * wince.c (_initialize_inftarg): Ditto.
2959 * symfile.c (_initialize_symfile): Ditto.
2960 * mips-tdep.c (_initialize_mips_tdep): Ditto.
2961 * language.c (_initialize_language): Ditto.
2962 * arc-tdep.c (_initialize_arc_tdep): Ditto.
2964 2002-02-04 Michael Snyder <msnyder@redhat.com>
2966 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
2968 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
2970 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
2971 Add rules for building the register data files.
2973 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
2975 * regformats/regdat.sh: Add braces to the definition of
2976 expedite_regs_${arch}.
2978 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
2980 * regformats/regdef.h (struct reg): Add comment describing the
2981 requirements for offset and size fields.
2983 2002-02-04 Andreas Schwab <schwab@suse.de>
2985 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
2986 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
2988 2002-02-04 Richard Earnshaw <rearnsha@arm.com>
2990 * gdbarch.sh (copyright): Update years in generated header.
2991 (SMASH_TEXT_ADDRESS): Add rule.
2992 * gdbarch.h, gdbarch.c: Re-generate.
2993 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
2994 * dbxread.c: Likewise.
2995 * dwarfread.c: Likewise.
2996 * elfread.c: Likewise.
2997 * somread.c: Likewise.
2999 * arm-tdep.c (arm_smash_text_address): New function.
3000 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
3002 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
3004 Add support for hardware watchpoints on win32 native.
3005 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
3006 CONTEXT_DEBUG_REGISTERS.
3007 (dr variable): New variable. Static array containing a local copy
3009 (debug_registers_changed): New variable. Reflects when debug registers
3010 are changed and need to be written to inferior.
3011 (debug_registers_used): New variable. Reflects when any debug register
3012 was set, used when new threads are created.
3013 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
3015 (thread_rec): Set dr array if id is the thread of current_event .
3016 (child_continue, child_resume): Change the debug registers for all
3017 threads if debug_registers_changed.
3018 (child_add_thread): Change the debug registers if debug_registers_used.
3019 * config/i386/cygwin.mh: Add use of i386-nat.o file.
3020 Link nm.h to new nm-cygwin.h file.
3021 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
3022 of hardware registers.
3024 2002-02-03 Andrew Cagney <ac131313@redhat.com>
3026 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
3027 Restore behavour broken by 2002-01-20 Andrew Cagney
3028 <ac131313@redhat.com> IEEE_FLOAT removal.
3030 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
3032 * c-valprint.c (c_val_print): Pass a proper valaddr to
3033 cp_print_class_method.
3034 * valops.c (search_struct_method): If there is only one method
3035 and args is NULL, return that method.
3037 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
3039 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
3040 accessing tag_name directly.
3042 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
3044 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
3045 of accessing tag_name directly.
3047 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
3050 * gdbtypes.c (replace_type): New function.
3051 * gdbtypes.h (replace_type): Add prototype.
3052 * stabsread.c (read_type): Use replace_type.
3054 2002-02-03 Richard Earnshaw <rearnsha@arm.com>
3056 * Makefile.in (memattr.o): Add missing dependencies rule.
3058 2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3060 * breakpoint.c (break_at_finish_command): Really export.
3061 (break_at_finish_at_depth_command): Ditto.
3062 (tbreak_at_finish_command): Ditto.
3063 * hppa-tdep.c: Include completer.h.
3064 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
3065 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
3067 2002-02-01 Andrew Cagney <ac131313@redhat.com>
3069 * utils.c (do_write): New function.
3070 (error_stream): Rewrite combining the code from error_begin and
3072 (verror): Rewrite using error_stream.
3073 (error_begin): Delete function.
3075 2002-02-01 Andrew Cagney <ac131313@redhat.com>
3077 * utils.c (error_begin): Make static.
3078 * defs.h (error_begin): Delete declaration.
3080 * linespec.c (cplusplus_error): Replace cplusplus_hint.
3081 (decode_line_1): Use cplusplus_error instead of error_begin,
3082 cplusplus_hint and return_to_top_level.
3083 * coffread.c (coff_symfile_read): Use error instead of error_begin
3084 and return_to_top_level.
3085 * infrun.c (default_skip_permanent_breakpoint): Ditto.
3087 2002-02-01 Andrew Cagney <ac131313@redhat.com>
3089 * language.h (type_error, range_error): Make string parameter
3091 * language.c (warning_pre_print): Delete extern declaration.
3092 * dwarfread.c (warning_pre_print): Ditto.
3093 * language.c (type_error, range_error): Rewrite to use verror and
3094 vwarning instead of warning_begin.
3096 2002-02-01 Michael Snyder <msnyder@redhat.com>
3098 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
3099 (set_ignore_count): Move misplaced comment back where it belongs.
3101 2002-02-01 Andrew Cagney <ac131313@redhat.com>
3103 * command.h (NO_FUNCTION): Delete macro.
3104 * cli/cli-decode.h (NO_FUNCTION): Ditto.
3105 * top.c (execute_command): Replace NO_FUNCTION with NULL.
3106 * tracepoint.c (_initialize_tracepoint): Ditto.
3107 * cli/cli-decode.c (add_set_cmd): Ditto.
3108 * cli/cli-cmds.c (init_cli_cmds): Ditto.
3110 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
3112 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
3113 Update ``this'' pointer when calling virtual functions.
3115 2002-02-01 Michael Snyder <msnyder@redhat.com>
3117 * breakpoint.c (create_temp_exception_breakpoint): Delete.
3118 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
3120 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
3122 * regformats/reg-arm.dat: New file.
3123 * regformats/reg-i386.dat: New file.
3124 * regformats/reg-ia64.dat: New file.
3125 * regformats/reg-m68k.dat: New file.
3126 * regformats/reg-mips.dat: New file.
3127 * regformats/reg-ppc.dat: New file.
3128 * regformats/reg-sh.dat: New file.
3129 * regformats/regdef.h: New file.
3130 * regformats/regdat.sh: New file.
3132 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
3134 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
3135 (arm_frame_args_address, arm_frame_locals_address): New functions.
3136 (arm_frame_num_args): New function.
3137 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
3138 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
3139 (FRMA_NUM_ARGS): Call arm_frame_num_args.
3141 2002-01-31 Michael Snyder <msnyder@redhat.com>
3143 * breakpoint.c (break_at_finish_command): Export.
3144 (break_at_finish_at_depth_command): Export.
3145 (tbreak_at_finish_command): Export.
3146 (_initialize_breakpoint): Delete "xbreak" and "tbreak" commands.
3147 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
3148 "tbreak" commands, which are HPPA specific.
3150 * printcmd.c (disassemble_command): Remove an ancient
3151 artifact of an old merge.
3153 * symfile.h (enum overlay_debugging_state):
3154 Define enum constant values for overlay mode.
3155 * symfile.c (overlay_debugging): Use enums instead of literals.
3156 (overlay_is_mapped, overlay_auto_command,
3157 overlay_manual_command): Ditto.
3159 * breakpoint.c (insert_breakpoints, remove_breakpoint,
3160 breakpoint_here_p, breakpoint_inserted_here_p,
3161 breakpoint_thread_match, bpstat_stop_status,
3162 describe_other_breakpoints, check_duplicates, clear_command):
3163 Coding standard fixes.
3165 * target.c (target_xfer_memory): Add spaces, coding standard.
3166 (do_xfer_memory): Add missing line to trust-readonly
3167 code: check bfd SEC_READONLY flag for section.
3169 2002-01-31 Andrew Cagney <ac131313@redhat.com>
3171 * PROBLEMS: Fix typo, 5.1->5.1.1.
3173 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
3175 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
3176 data symbols, since we search based on textlow and texthigh.
3177 (find_pc_sect_symtab): Likewise.
3179 2002-01-30 Andrew Cagney <ac131313@redhat.com>
3181 * defs.h (vwarning): Declare.
3182 * utils.c (vwarning): New function.
3183 (warning): Call vwarning.
3184 (warning_begin): Delete function.
3186 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
3187 the warning message.
3188 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
3191 2002-01-30 Michael Snyder <msnyder@redhat.com>
3193 * NEWS: Mention "set trust-readonly-sections" command.
3194 Mention generate-core-file command.
3196 2002-01-15 Michael Snyder <msnyder@redhat.com>
3198 * target.c: New command, "set trust-readonly-sections on".
3199 (do_xfer_memory): Honor the suggestion to trust readonly sections
3200 by reading them from the object file instead of from the target.
3201 (initialize_targets): Register command "set trust-readonly-sections".
3203 2002-01-29 Andrew Cagney <ac131313@redhat.com>
3205 * parse.c (target_map_name_to_register): Simplify, search regs and
3206 pseudo-regs using a single loop.
3208 2002-01-30 Andrew Cagney <ac131313@redhat.com>
3210 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
3212 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
3214 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
3215 * config/i386/i386v42mp.mh: Add i387-nat.o .
3216 * i386v4-nat.c: Include i387-nat.h.
3217 (supply_fpregset): Use i387_supply_fsave.
3218 (fill_fpregset): Use i387_fill_fsave.
3220 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
3222 * arm-tdep.c (arm_call_dummy_words): Define.
3223 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
3224 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
3225 (CALL_DUMMY_WORDS): Define.
3226 (arm_call_dummy_words): Declare.
3227 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
3228 (arm_linux_call_dummy_words): Declare.
3230 2002-01-30 Andreas Schwab <schwab@suse.de>
3232 * m68klinux-nat.c: Fix last change to use regcache_collect
3233 instead of referencing registers[] directly.
3235 2002-01-29 Andrew Cagney <ac131313@redhat.com>
3237 * parse.c (target_map_name_to_register): Delete code wrapped in
3238 #ifdef REGISTER_NAME_ALIAS_HOOK.
3240 2002-01-28 Michael Snyder <msnyder@redhat.com>
3242 * regcache.c (legacy_read_register_gen): Need to be able to
3243 read pseudo-register as well as real register.
3244 (legacy_write_register_gen): Ditto.
3246 2002-01-28 Andrew Cagney <ac131313@redhat.com>
3248 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
3249 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
3250 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
3251 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
3252 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
3253 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
3254 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
3255 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
3256 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
3257 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
3258 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
3259 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
3260 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
3261 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
3262 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
3263 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
3264 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
3265 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
3266 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
3267 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
3269 2002-01-28 Andrew Cagney <ac131313@redhat.com>
3271 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
3272 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
3273 (initialize_current_architecture): Update target_byte_order using
3274 information from BFD.
3275 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
3276 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
3278 2002-01-28 Andrew Cagney <ac131313@redhat.com>
3280 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
3281 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
3283 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
3284 #ifdef INVALID_FLOAT.
3285 * infcmd.c (do_registers_info): Ditto.
3286 * values.c (unpack_double): Ditto. Add comment.
3288 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
3289 already commented out.
3291 2002-01-26 Andreas Schwab <schwab@suse.de>
3293 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
3294 * m68klinux-nat.c: Update ptrace interface for fetching/storing
3295 registers and add support for PTRACE_GETREGS.
3297 2002-01-24 Andrew Cagney <ac131313@redhat.com>
3299 GDB 5.1.1 released from 5.1 branch.
3300 * NEWS: Add 5.1.1 news.
3301 * README: Sync with 5.1 branch.
3303 2002-01-23 Fred Fish <fnf@redhat.com>
3305 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
3306 stabstring on initial malloc. Reallocing will copy it for us,
3309 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
3311 * Makefile.in (hpread_h): Delete.
3312 (HFILES_NO_SRCDIR): Remove hpread.h.
3313 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
3314 (hpread.o): Update dependencies.
3315 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
3317 * hp-psymtab-read.c: Remove file.
3318 * hp-symtab-read.c: Remove file.
3319 * hpread.h: Remove file.
3321 * hpread.c: Merge all contents of hp-psymtab-read.c,
3322 hp-symtab-read.c and hpread.h into this file, as it was prior to
3325 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
3326 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
3327 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
3328 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
3330 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
3332 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
3333 fill_gregset): Call gdbarch_tdep() just once, assign result to
3334 variable and use that, instead of calling the function several
3337 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
3339 * configure.host: Accept sparcv9 as alias for sparc64.
3340 * configure.tgt: Likewise.
3342 2002-01-22 Kevin Buettner <kevinb@redhat.com>
3344 * solib-aix5.c (build_so_list_from_mapfile)
3345 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
3346 arguments is not reversed.
3347 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
3348 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
3350 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
3352 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
3353 modified version of obsolete sh_fetch_pseudo_register.
3354 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
3355 (sh4_register_read): New function.
3356 (sh_pseudo_register_write): New function. Renamed and modified
3357 version of obsolete sh_store_pseudo_register.
3358 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
3359 (sh4_register_write): New function.
3360 (sh_gdbarch_init): Remove setting of gdbarch function
3361 fetch_pseudo_register and store_pseudo_register. Remove setting of
3362 register_convert_to_raw, register_convert_to_virtual,
3363 register_convertible.
3364 (sh_sh4_register_convertible): Delete. No longer needed. All is
3365 taken care by architecture specific functions
3366 register_read/register_write.
3367 (sh_sh4_register_convert_to_virtual): Make static.
3368 (sh_sh4_register_convert_to_raw): Ditto.
3370 2002-01-22 Andrew Cagney <ac131313@redhat.com>
3372 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
3373 (floatformat_is_nan, floatformat_mantissa): Ditto.
3375 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
3376 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
3377 builtin_type_ieee_double_little,
3378 builtin_type_ieee_double_littlebyte_bigword,
3379 builtin_type_m68881_ext, builtin_type_i960_ext,
3380 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
3381 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
3382 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
3383 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
3385 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
3387 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
3388 parameter. Set frameless flag if it exists and depended of
3389 whether the scanned function is frameless or not.
3390 (xstormy16_skip_prologue): If function is frameless, return
3391 result of xstormy16_scan_prologue().
3392 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
3395 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
3397 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
3398 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
3399 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
3400 sh_sh4_register_byte, sh_sh4_register_raw_size,
3401 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
3402 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
3403 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
3404 sh_store_pseudo_register, sh_do_pseudo_register): Call
3405 gdbarch_tdep() just once, assign result to variable and use that,
3406 instead of calling the function several times.
3408 2002-01-20 Mark Kettenis <kettenis@gnu.org>
3410 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
3411 macros instead of LAST_FPU_CTRL_REGNUM.
3412 (store_register): Likewise.
3414 2002-01-21 Jim Blandy <jimb@redhat.com>
3416 * infcmd.c (run_command): Check that the `exec' target layer's BFD
3417 is up-to-date before running the program, not just when a program
3420 2002-01-21 Fred Fish <fnf@redhat.com>
3422 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
3423 when we have found all instructions we are looking for.
3425 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
3427 * arm-tdep.c (arm_register_name): New function.
3428 (arm_registers_names): Make static.
3429 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
3430 (arm_register_name): Declare.
3431 (REGISTER_NAME): Use it.
3433 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
3434 Kevin Buettner <kevinb@redhat.com>
3436 Convert arm targets to new FRAME interface.
3437 * arm-tdep.c (struct frame_extra_info): Remove fsr.
3438 (arm_frame_find_save_regs): Delete.
3439 (arm_frame_init_saved_regs): New.
3440 (arm_init_extra_frame_info): Alloacte saved_regs as required.
3441 Allocate extra_info as required. Convert all uses of fsr.regs
3442 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
3444 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
3445 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
3446 (check_prologue_cache, save_prologue_cache): Likewise.
3447 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
3448 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
3449 (FRAME_FIND_SAVED_REGS): Delete.
3450 (arm_frame_find_saved_regs): Delete prototype.
3451 (arm_frame_init_saved_regs): New prototype.
3452 (FRAME_INIT_SAVED_REGS): Define.
3454 2002-01-20 Andrew Cagney <ac131313@redhat.com>
3456 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
3458 2002-01-20 Andrew Cagney <ac131313@redhat.com>
3460 From Jeff Law <law@redhat.com>:
3461 * infttrace.c: Include <sys/pstat.h>.
3462 (child_pid_to_exec_file): Revamp. Use pstat call to get the
3463 exec file if the ttrace equivalent fails.
3465 2002-01-20 Andrew Cagney <ac131313@redhat.com>
3467 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
3468 (closeLogFile): Ditto.
3470 2002-01-20 Michael Chastain <mec@shout.net>
3472 * top.c (print_gdb_version): Bump copyright year to 2002.
3474 2002-01-20 Andrew Cagney <ac131313@redhat.com>
3476 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
3477 Zannoni and Eli Zaretskii.
3479 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
3481 * buildsym.c: Update copyright years.
3482 * c-typeprint.c: Likewise.
3483 * dwarf2read.c: Likewise.
3484 * f-typeprint.c: Likewise.
3485 * gdbtypes.c: Likewise.
3486 * gdbtypes.h: Likewise.
3487 * hp-symtab-read.c: Likewise.
3488 * hpread.c: Likewise.
3489 * mdebugread.c: Likewise.
3490 * p-typeprint.c: Likewise.
3492 2002-01-20 Andrew Cagney <ac131313@redhat.com>
3494 * remote-sim.c (gdbsim_open): Simplify code testing the macro
3495 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
3496 byte-order selectable.
3497 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
3498 * arch-utils.c: Ditto.
3499 (set_endian): Ditto.
3500 (set_endian_from_file): Ditto.
3501 * gdbserver/low-sim.c (create_inferior): Ditto.
3502 * gdbarch.sh: Ditto.
3503 * gdbarch.h: Re-generate.
3504 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
3505 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
3506 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
3507 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
3508 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
3509 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
3510 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
3511 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
3513 * config/mips/tm-wince.h: Remove #undef of macro
3514 TARGET_BYTE_ORDER_SELECTABLE.
3515 * config/sh/tm-wince.h: Ditto.
3517 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
3519 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
3520 member function fields. Add accessor macro
3521 TYPE_FN_FIELD_ARTIFICIAL.
3522 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
3523 * c-typeprint.c (c_type_print_base): Skip artificial member
3526 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
3528 * f-typeprint.c: Delete unused function f_type_print_args.
3529 * p-typeprint.c: Delete unused function pascal_type_print_args.
3531 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
3533 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
3534 comment. Add ``artificial'' to ``union field_location''.
3536 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
3538 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
3539 * mdebugread.c (parse_symbol): Likewise.
3540 * stabsread.c (define_symbol): Likewise.
3541 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
3542 initializing TYPE_FIELD_BITPOS to n (obsolete).
3543 (hpread_doc_function_type): Likewise.
3544 * hpread.c (hpread_function_type): Likewise.
3546 2002-01-20 Andrew Cagney <ac131313@redhat.com>
3548 * configure.in (host_makefile_frag): Only require a host makefile
3549 fragment when a native build.
3550 * configure: Re-generate.
3552 2002-01-20 Andrew Cagney <ac131313@redhat.com>
3554 * doublest.h (floatformat_from_type): Declare.
3555 * doublest.c (floatformat_from_type): New function.
3556 (convert_typed_floating): Use.
3558 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
3559 call to function floatformat_from_type.
3561 * gdbarch.sh (IEEE_FLOAT): Delete.
3562 * gdbarch.h, gdbarch.c: Re-generate.
3563 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
3564 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
3565 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
3566 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
3567 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
3568 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
3569 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
3570 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
3571 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
3572 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
3573 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
3574 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
3576 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
3577 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
3578 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
3579 * sh-tdep.c (sh_gdbarch_init): Ditto.
3580 * mips-tdep.c (mips_gdbarch_init): Ditto.
3581 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
3582 * cris-tdep.c (cris_gdbarch_init): Ditto.
3584 2002-01-20 Jiri Smid <smid@suse.cz>
3586 * configure.host, configure.tgt: Support x86-64.
3587 * NEWS: Note new target x86-64.
3589 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
3590 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
3591 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
3592 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
3593 x86-64-linux-nat.o): Fix dependencies.
3595 2002-01-19 Andrew Cagney <ac131313@redhat.com>
3597 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
3598 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
3599 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
3600 * config/sparc/xm-sun4os4.h: Delete file.
3601 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
3603 2002-01-19 Andrew Cagney <ac131313@redhat.com>
3605 * config/sparc/sparclynx.mh (XM_FILE): Delete.
3606 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
3607 * config/m68k/m68klynx.mh (XM_FILE): Delete.
3608 * config/i386/i386lynx.mh (XM_FILE): Delete.
3609 * config/rs6000/xm-rs6000ly.h: Delete file.
3610 * config/sparc/xm-sparclynx.h: Delete file.
3611 * config/m68k/xm-m68klynx.h: Delete file.
3612 * config/i386/xm-i386lynx.h: Delete file.
3613 * config/xm-lynx.h: Delete file.
3614 * config/djgpp/fnchange.lst: Update.
3616 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
3618 * alpha-tdep.c (alpha_register_byte): New function.
3619 (alpha_register_raw_size): Ditto.
3620 (alpha_register_virtual_size): Ditto.
3621 (alpha_skip_prologue_internal): Renamed from
3622 alpha_skip_prologue.
3623 (alpha_skip_prologue): New version that calls
3624 alpha_skip_prologue_internal.
3625 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
3626 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
3627 second argument from alpha_skip_prologue.
3628 (REGISTER_BYTE): Use alpha_register_byte.
3629 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
3630 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
3631 (FRAMELESS_FUNCTION_INVOCATION): Use
3632 generic_frameless_function_invocation_not.
3633 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
3634 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
3636 2002-01-19 Andrew Cagney <ac131313@redhat.com>
3638 * config/mips/xm-news-mips.h: Delete file.
3639 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
3641 * config/m88k/xm-m88k.h: Delete file.
3642 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
3643 * config/m88k/xm-delta88v4.h: Ditto.
3644 * config/m88k/xm-delta88.h: Ditto.
3646 * config/alpha/xm-fbsd.h: Delete file.
3647 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
3649 * config/sparc/xm-sparc.h: Delete file.
3650 * Makefile.in (xm-sun4os4.h): Delete dependency.
3651 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
3652 * config/sparc/xm-sun4os4.h: Ditto.
3653 * config/sparc/xm-linux.h: Ditto.
3655 * config/i386/xm-windows.h: Delete file.
3657 2002-01-19 Andrew Cagney <ac131313@redhat.com>
3659 * utils.c: Include <sys/param.h> for MAXPATHLEN.
3660 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
3662 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
3664 * alpha-tdep.c (alpha_call_dummy_words): New.
3665 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
3666 (CALL_DUMMY_P): Define.
3667 (CALL_DUMMY_WORDS): Define.
3668 (SIZEOF_CALL_DUMMY_WORDS): Define.
3670 2002-01-19 Per Bothner <per@bothner.com>
3672 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
3673 isn't NULL, which can happen with some gcj-3.x-produced code.
3675 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
3677 * alpha-tdep.c (alpha_register_virtual_type): New function.
3678 (alpha_init_frame_pc_first): Ditto.
3679 (alpha_fix_call_dummy): Ditto.
3680 (alpha_store_struct_return): Ditto.
3681 (alpha_extract_struct_value_address): Ditto.
3682 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
3683 alpha_register_virtual_type.
3684 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
3685 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
3686 alpha_extract_struct_value_address.
3687 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
3688 (INIT_FRAME_PC): Use init_frame_pc_noop.
3689 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
3691 2002-01-19 Mark Kettenis <kettenis@gnu.org>
3693 * i386gnu-nat.c: Include "i386-tdep.h".
3694 (fetch_fpregs): Simplify code dealing with uninitialized floating
3695 point states such that it doesn't require FP7_REGNUM.
3697 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3699 * alpha-tdep.c (frame_extra_info): New.
3700 (alpha_find_saved_regs): Make static. Use
3702 (alpha_frame_init_saved_regs): New function.
3703 (alpha_frame_saved_pc): Use frame->extra_info.
3704 (temp_saved_regs): Don't declare as struct frame_saved_regs.
3705 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
3706 (init_extra_frame_info): Rename to...
3707 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
3708 (alpha_print_extra_frame_info): New function.
3709 (alpha_frame_locals_address): Ditto.
3710 (alpha_frame_args_address): Ditto.
3711 (alpha_pop_frame): Use frame->extra_info.
3712 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
3713 alpha_frame_args_address.
3714 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
3715 (alpha_find_saved_regs): Remove prototype.
3716 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
3717 (EXTRA_FRAME_INFO): Remove.
3718 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
3719 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
3721 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3723 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
3724 (alpha_cannot_fetch_register): Ditto.
3725 (alpha_cannot_store_register): Ditto.
3726 (alpha_register_convertible): Ditto.
3727 (alpha_use_struct_convention): Ditto.
3728 * config/alpha/tm-alpha.h: Update copyright years.
3729 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
3730 (INNER_THAN): Use core_addr_lessthan.
3731 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
3732 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
3733 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
3734 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
3735 (FRAME_CHAIN): Remove unnecessary cast.
3737 2002-01-18 Andrew Cagney <ac131313@redhat.com>
3739 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
3742 2002-01-18 Andrew Cagney <ac131313@redhat.com>
3744 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
3745 * monitor.c, remote-array.c, remote-bug.c: Ditto.
3746 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
3747 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
3748 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
3749 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
3750 * x86-64-linux-nat.c: Ditto.
3752 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3754 * alpha-tdep.c (alpha_register_name): New function.
3755 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
3756 (REGISTER_NAME): Define.
3758 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3760 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
3762 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3764 * alpha-tdep.c: Update copyright years.
3765 (alpha_next_pc): New function.
3766 (alpha_software_single_step): Ditto.
3767 * config/alpha/tm-alpha.h: Add prototype for
3768 alpha_software_single_step.
3770 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3772 * alphabsd-nat.c: Update copyright years.
3773 (fill_gregset): Use regcache_collect.
3774 (fill_fpregset): Likewise.
3775 (fetch_inferior_registers): Only fetch integer registers
3776 if requested to do so.
3777 (store_inferior_registers): Only store integer registers
3778 if requested to do so.
3780 2002-01-17 Andrew Cagney <ac131313@redhat.com>
3782 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
3783 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
3784 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
3785 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
3786 * config/alpha/fbsd.mh (XDEPFILES): Delete.
3787 * config/arm/linux.mh (XDEPFILES): Delete.
3788 * config/arm/nbsd.mh (XDEPFILES): Delete.
3789 * config/i386/i386dgux.mh (XDEPFILES): Delete.
3790 * config/i386/i386sol2.mh (XDEPFILES): Delete.
3791 * config/i386/i386m3.mh (XDEPFILES): Delete.
3792 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
3793 * config/i386/i386gnu.mh (XDEPFILES): Delete.
3794 * config/i386/fbsd.mh (XDEPFILES): Delete.
3795 * config/i386/i386bsd.mh (XDEPFILES): Delete.
3796 * config/i386/i386sco5.mh (XDEPFILES): Delete.
3797 * config/i386/i386v4.mh (XDEPFILES): Delete.
3798 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
3799 * config/i386/i386sco4.mh (XDEPFILES): Delete.
3800 * config/i386/i386aix.mh (XDEPFILES): Delete.
3801 * config/i386/go32.mh (XDEPFILES): Delete.
3802 * config/i386/cygwin.mh (XDEPFILES): Delete.
3803 * config/i386/i386lynx.mh (XDEPFILES): Delete.
3804 * config/i386/i386mach.mh (XDEPFILES): Delete.
3805 * config/i386/i386v32.mh (XDEPFILES): Delete.
3806 * config/i386/linux.mh (XDEPFILES): Delete.
3807 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
3808 * config/i386/ncr3000.mh (XDEPFILES): Delete.
3809 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
3810 * config/i386/i386sco.mh (XDEPFILES): Delete.
3811 * config/i386/i386v.mh (XDEPFILES): Delete.
3812 * config/i386/nbsd.mh (XDEPFILES): Delete.
3813 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
3814 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
3815 * config/i386/symmetry.mh (XDEPFILES): Delete.
3816 * config/i386/obsd.mh (XDEPFILES): Delete.
3817 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
3818 * config/ia64/linux.mh (XDEPFILES): Delete.
3819 * config/ia64/aix.mh (XDEPFILES): Delete.
3820 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
3821 * config/m68k/dpx2.mh (XDEPFILES): Delete.
3822 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
3823 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
3824 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
3825 * config/m68k/linux.mh (XDEPFILES): Delete.
3826 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
3827 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
3828 * config/m68k/nbsd.mh (XDEPFILES): Delete.
3829 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
3830 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
3831 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
3832 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
3833 * config/m88k/delta88.mh (XDEPFILES): Delete.
3834 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
3835 * config/m88k/m88k.mh (XDEPFILES): Delete.
3836 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
3837 * config/mips/linux.mh (XDEPFILES): Delete.
3838 * config/mips/irix6.mh (XDEPFILES): Delete.
3839 * config/mips/irix5.mh (XDEPFILES): Delete.
3840 * config/mips/irix4.mh (XDEPFILES): Delete.
3841 * config/mips/irix3.mh (XDEPFILES): Delete.
3842 * config/mips/decstation.mh (XDEPFILES): Delete.
3843 * config/mips/mipsm3.mh (XDEPFILES): Delete.
3844 (NATDEPFILES): Move core-aout.o to here.
3845 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
3846 * config/pa/hpux1020.mh (XDEPFILES): Delete.
3847 * config/pa/hppabsd.mh (XDEPFILES): Delete.
3848 * config/pa/hppahpux.mh (XDEPFILES): Delete.
3849 * config/pa/hpux11w.mh (XDEPFILES): Delete.
3850 * config/pa/hppaosf.mh (XDEPFILES): Delete.
3851 * config/pa/hpux11.mh (XDEPFILES): Delete.
3852 * config/powerpc/aix.mh (XDEPFILES): Delete.
3853 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
3854 * config/powerpc/linux.mh (XDEPFILES): Delete.
3855 * config/romp/rtbsd.mh: Rename XDEPFILES.
3856 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
3857 * config/rs6000/aix4.mh (XDEPFILES): Delete.
3858 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
3859 * config/s390/s390.mh (XDEPFILES): Delete.
3860 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
3861 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
3862 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
3863 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
3864 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
3865 * config/sparc/nbsd.mh (XDEPFILES): Delete.
3866 * config/sparc/linux.mh (XDEPFILES): Delete.
3867 * config/vax/vaxult.mh (XDEPFILES): Delete.
3868 * config/vax/vaxult2.mh (XDEPFILES): Delete.
3869 * Makefile.in (DEPFILES): Remove XDEPFILES.
3871 2002-01-17 Andrew Cagney <ac131313@redhat.com>
3873 * utils.c (internal_verror): Fix comments, default is yes not no.
3874 Update queries to match. Default to quit and dump core.
3876 2002-01-17 Andrew Cagney <ac131313@redhat.com>
3878 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
3880 * defs.h, event-top.c, gdbcmd.h: Ditto.
3881 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
3882 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
3883 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
3884 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
3885 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
3886 * mi/mi-main.c:Ditto.
3888 * stack.c, symfile.c: Update copyright.
3890 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
3892 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
3893 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
3894 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
3895 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
3897 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
3899 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
3900 * gdbserver/low-lynx.c (myattach): Likewise.
3901 * gdbserver/low-nbsd.c (myattach): Likewise.
3902 * gdbserver/low-sim.c (myattach): Likewise.
3903 * gdbserver/low-sparc.c (myattach): Likewise.
3904 * gdbserver/low-sun3.c (myattach): Likewise.
3906 * gdbserver/low-linux.c (myattach): New function.
3908 * gdbserver/server.c (attach_inferior): New function.
3909 (main): Handle "--attach".
3911 2002-01-16 Andrew Cagney <ac131313@redhat.com>
3913 * MAINTAINERS (language support): Daniel Jacobwitz is C++
3916 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
3918 * c-typeprint.c (is_type_conversion_operator): Add additional
3919 check for non-conversion operators.
3921 2002-01-15 Michael Snyder <msnyder@redhat.com>
3923 * linux-proc.c: Add "info proc" command, a la procfs.c.
3924 (read_mapping): New function, abstract and re-use code.
3925 (linux_find_memory_regions): Use new func read_mapping.
3926 (linux_info_proc_cmd): New function, implement "info proc".
3927 (_initialize_linux_proc): Add new command "info proc".
3929 2002-01-15 Michael Snyder <msnyder@redhat.com>
3931 * symfile.c (generic_load): Use bfd_map_over_sections method
3932 instead of manipulating bfd structure members directly.
3933 (add_section_size_callback): New function, bfd sections callback
3934 used by generic_load.
3935 (load_sections_callback): New function, bfd sections callback
3936 used by generic_load.
3938 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
3940 [Based on work by Jim Blandy]
3941 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
3942 (builtin_type_vec128): Export.
3943 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
3945 (builtin_type_vec128): New builtin type for 128 bit vector
3947 (build_gdbtypes): Initialize builtin_type_v16qi and
3948 builtin_type_v8hi. Create the vec128 register builtin type
3950 (build_builtin_type_vec128): New function.
3951 (_initialize_gdbtypes): Register builtin_type_v16qi and
3952 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
3953 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
3954 AltiVec register to new builtin type.
3956 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
3958 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
3961 2002-01-14 Andrew Cagney <ac131313@redhat.com>
3963 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
3964 CLEAN_UP_REGISTER_VALUE.
3965 * regcache.c (supply_register): Update only call.
3967 2002-01-14 Andrew Cagney <ac131313@redhat.com>
3969 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
3970 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
3971 a29k-*-vxworks* targets as obsolete.
3973 2002-01-14 Michael Snyder <msnyder@redhat.com>
3975 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
3976 until we can resolve portability issues.
3977 * gregset.h: Remove references to fpxregs.
3978 * gcore.c (gcore_command): Initialize note_sec to NULL.
3980 2002-01-13 Andrew Cagney <ac131313@redhat.com>
3982 * signals.c (target_signal_to_name): Rewrite. Only use
3983 signals[].name when in bounds and non-NULL.
3985 2002-01-13 Andrew Cagney <ac131313@redhat.com>
3987 From Petr Ledvina <ledvinap@kae.zcu.cz>:
3988 * signals.c (target_signal_to_name): Verify that SIG is within the
3989 bounds of the signals array.
3991 2002-01-13 Andrew Cagney <ac131313@redhat.com>
3993 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
3995 2002-01-13 Keith Seitz <keiths@redhat.com>
3997 * stack.c (print_frame_info_base): Print the frame's pc
3998 only if when print_frame_info_listing_hook is not defined.
4000 2002-01-13 Keith Seitz <keiths@redhat.com>
4002 * varobj.c (varobj_set_value): Make sure that there were no
4003 errors evaluating the object before attempting to set its
4005 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
4006 so this offset adjustment is no longer necessary.
4007 (create_child): Don't set the error flag if the child is
4009 (value_of_child): If value_fetch_lazy fails, return NULL
4010 so that callers will be notified that an error occurred.
4011 (c_value_of_variable): Delay check of variable's validity
4012 until later. We actually want all structs and unions to have
4014 Do not return "???" for variables which could not be evaluated.
4015 This error condition must be returned to the caller so that it
4016 can get the error condition from gdb.
4017 (cplus_name_of_child): Adjust index for vptr before figuring
4018 out the name of the child.
4019 (cplus_value_of_child): If a child's (real) parent is not valid,
4020 don't even bother trying to give a value for it. Just return
4021 an error. Change all instances in this function.
4022 (cplus_type_of_child): If our parent is one of the "fake"
4023 parents, we need to get at the type of the real parent, and
4024 derive the child's true type using this information.
4026 2002-01-13 Andrew Cagney <ac131313@redhat.com>
4028 From 2002-01-09 John Marshall <johnm@falch.net>:
4029 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
4030 sources.redhat.com, and tweak some related URLs which had
4031 suffered from linkrot.
4033 2002-01-13 Andrew Cagney <ac131313@redhat.com>
4036 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
4037 structures passed in registers.
4039 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
4041 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
4042 white space which prevented compilation. Reported by DSK
4043 <dsk@student.unsw.edu.au>.
4045 2002-01-11 Michael Snyder <msnyder@redhat.com>
4047 * symfile.c (build_section_addr_info_from_section_tab):
4048 Use bfd access method instead of manipulating bfd directly.
4049 (syms_from_objfile): Ditto.
4050 (simple_overlay_update_1): Ditto.
4051 (simple_overlay_update): Ditto.
4052 (generic_load): Ditto.
4053 (overlay_unmapped_address): FIXME comment, bfd access methods.
4054 (sections_overlap): FIXME comment, bfd access methods.
4055 (pc_in_mapped_range): FIXME comment, bfd access methods.
4056 (pc_in_unmapped_range): FIXME comment, bfd access methods.
4057 (section_is_mapped): FIXME comment, bfd access methods.
4058 (section_is_overlay): FIXME comment, bfd access methods.
4060 * symfile.c (generic_load): Whitespace and long line cleanups.
4061 Remove duplicate variable, change several local variables to
4062 more appropriate data types.
4063 (print_transfer_performance): Use %lu instead of %ld for ulongs.
4065 2002-01-12 Andrew Cagney <ac131313@redhat.com>
4068 * language.c (longest_local_hex_string_custom): Use phex_nz to
4069 convert NUM to a hex string.
4071 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
4073 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
4075 Update Copyright year.
4077 2002-01-12 Andrew Cagney <ac131313@redhat.com>
4079 * language.c (longest_raw_hex_string): Delete unused function.
4081 2002-01-11 Petr Sorfa <petrs@caldera.com>
4083 * MAINTAINERS (write-after-approval): Add myself.
4084 * dwarf2read.c (read_tag_string_type): Handling of
4086 (read_tag_string_type): FORTRAN fix to prevent propagation of
4088 (set_cu_language): Handling of DW_LANG_Fortran95
4090 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
4092 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
4093 GETPID(inferior_ptid).
4094 (store_inferior_registers): Likewise.
4096 2002-01-10 Jason Merrill <jason@redhat.com>
4098 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
4101 2002-01-10 Andrew Cagney <ac131313@redhat.com>
4103 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
4104 and bfd/elf32-sh-nbsd.c.
4106 2002-01-10 Michael Snyder <msnyder@redhat.com>
4108 * NEWS: Mention --pid and corefile/proc-id behavior change.
4110 * Makefile.in: Add rules for gcore.o and linux-proc.o.
4111 * gcore.c: Include cli/cli-decode.h instead of command.h.
4113 * main.c (captured_main): Add new command line option "--pid".
4114 If the second command line argument (following the symbol-file)
4115 begins with a digit, try to attach to it before trying to open
4117 (print_gdb_help): Document the "--pid" argument.
4119 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
4121 * completer.c (command_completer): New function.
4123 * completer.h <command_completer>: Add prototype.
4125 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
4126 completer for the "help" command.
4128 2002-01-09 Jason Merrill <jason@redhat.com>
4130 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
4132 2002-01-09 Michael Snyder <msnyder@redhat.com>
4134 * i386-linux-nat.c (fill_fpxregset): Make global.
4135 (store_fpxregset): Ditto.
4137 * gregset.h (gdb_fpxregset_t): Define.
4138 (supply_fpxregset): Prototype.
4139 (fill_fpxregset): Prototype.
4141 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
4143 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
4145 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
4146 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
4147 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
4149 2002-01-09 Andrew Cagney <ac131313@redhat.com>
4151 * MAINTAINERS: Update target maintainer rules so that any
4152 Maintainer can approve a tested patch for a maintenance-only
4155 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
4157 * MAINTAINERS (write-after-approval): Add myself.
4159 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
4162 2002-01-08 Michael Snyder <msnyder@redhat.com>
4164 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
4165 real name of the executable, rather than the /proc name.
4167 2002-01-03 Michael Snyder <msnyder@redhat.com>
4169 Implement a "generate-core-file" command in gdb, save target state.
4170 * gcore.c: New file. Implement new command 'generate-core-file'.
4171 Save a corefile image of the current state of the inferior.
4172 * linux-proc.c: Add linux-specific code for saving corefiles.
4173 * target.h (struct target_ops): Add new target vectors for saving
4174 corefiles; to_find_memory_regions and to_make_corefile_notes.
4175 (target_find_memory_regions): New macro.
4176 (target_make_corefile_notes): New macro.
4177 * target.c (update_current_target): Inherit new target methods.
4178 (dummy_find_memory_regions): New place-holder method.
4179 (dummy_make_corefile_notes): New place-holder method.
4180 (init_dummy_target): Initialize new dummy target vectors.
4181 * exec.c (exec_set_find_memory_regions): New function.
4182 Allow the exec_ops vector for memory regions to be taken over.
4183 (exec_make_note_section): New function, target vector method.
4184 * defs.h (exec_set_find_memory_regions): Export prototype.
4185 * procfs.c (proc_find_memory_regions): New function, corefile method.
4186 (procfs_make_note_section): New function, corefile method.
4187 (init_procfs_ops): Set new target vector pointers.
4188 (find_memory_regions_callback): New function.
4189 (procfs_do_thread_registers): New function.
4190 (procfs_corefile_thread_callback): New function.
4191 * sol-thread.c (sol_find_memory_regions): New function.
4192 (sol_make_note_section): New function.
4193 (init_sol_thread_ops): Initialize new target vectors.
4194 * inftarg.c (inftarg_set_find_memory_regions): New function.
4195 Allow to_find_memory_regions vector to be taken over.
4196 (inftarg_set_make_corefile_notes): New function.
4197 Allow to_make_corefile_notes vector to be taken over.
4198 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
4199 interface layer if not target_has_execution (may be a corefile).
4200 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
4201 * config/sparc/sun4sol2.mh: Ditto.
4202 * config/alpha/alpha-linux.mh: Ditto.
4203 * config/arm/linux.mh: Ditto.
4204 * config/i386/x86-64linux.mh: Ditto.
4205 * config/ia64/linux.mh: Ditto.
4206 * config/m68k/linux.mh: Ditto.
4207 * config/mips/linux.mh: Ditto.
4208 * config/powerpc/linux.mh: Ditto.
4209 * config/sparc/linux.mh: Ditto.
4211 2002-01-07 Michael Snyder <msnyder@redhat.com>
4213 * arm-linux-nat.c: Remove references to regcache.c internal data
4214 (registers[] and register_valid[]).
4216 2002-01-07 Michael Snyder <msnyder@redhat.com>
4218 * linux-proc.c: New file. Implement child_pid_to_exec_file,
4219 so that attaching to a pid will automatically read the process's
4220 symbol file and shlibs.
4221 * Makefile.in: Add rule for linux-proc.o.
4222 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
4223 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
4224 * config/arm/linux.mh: Ditto.
4225 * config/i386/linux.mh: Ditto.
4226 * config/i386/x86-64linux.mh: Ditto.
4227 * config/ia64/linux.mh: Ditto.
4228 * config/m68k/linux.mh: Ditto.
4229 * config/mips/linux.mh: Ditto.
4230 * config/powerpc/linux.mh: Ditto.
4231 * config/sparc/linux.mh: Ditto.
4233 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
4235 * win32-nat.c: Add i386-tdep.h dependency.
4237 2002-01-07 Michael Snyder <msnyder@redhat.com>
4239 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
4240 instead of bfd_get_arch_size. Don't bail out just because
4241 there's no exec_bfd.
4243 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
4244 * p-valprint.c (pascal_object_print_value): Ditto.
4245 * somread.c (som_symtab_read): Ditto.
4246 * symfile.c (simple_free_overlay_region_table): Ditto.
4247 * valops.c (value_assign): Ditto.
4249 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
4250 use tilde_expand and strerror for opening save-tracepoints file.
4252 * thread-db.c (thread_db_new_objfile): Indendation fix.
4254 * infptrace.c (GDB_MAX_ALLOCA): New define.
4255 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
4256 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
4257 can be overridden with whatever value is appropriate to the host).
4258 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
4259 alloca to allocate potentially large buffer.
4260 * rs6000-nat.c (child_xfer_memory): Ditto.
4261 * symm-nat.c (child_xfer_memory): Ditto.
4262 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
4264 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
4266 From Nick Clifton <nickc@redhat.com>
4267 * d10v-tdep.c: Set STACK_START to 0x200bffe.
4269 2002-01-07 Michael Snyder <msnyder@redhat.com>
4271 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
4272 Don't use exec_bfd if it's NULL.
4274 2002-01-06 Mark Kettenis <kettenis@gnu.org>
4276 * valops.c (value_arg_coerce): Fix formatting.
4278 2002-01-06 Andrew Cagney <ac131313@redhat.com>
4280 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
4283 2002-01-06 Andrew Cagney <ac131313@redhat.com>
4285 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
4286 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
4287 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
4288 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
4289 z8k-coff have not been multi-arched. Update z8k-coff build
4292 2002-01-06 Andrew Cagney <ac131313@redhat.com>
4294 * MAINTAINERS: Mark a29k target as obsolete.
4295 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
4296 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
4298 * NEWS: Note that a29k targets are obsolete.
4299 * a29k-tdep.c: Mark as obsolete.
4300 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
4301 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
4302 a29k-*-vxworks* targets as obsolete.
4303 * remote-adapt.c: Obsolete.
4304 * remote-eb.c: Obsolete.
4305 * remote-mm.c: Obsolete.
4306 * remote-udi.c: Obsolete.
4307 * config/a29k/a29k-udi.mt: Obsolete.
4308 * config/a29k/a29k.mt: Obsolete.
4309 * config/a29k/tm-a29k.h: Obsolete.
4310 * config/a29k/tm-vx29k.h: Obsolete.
4311 * config/a29k/vx29k.mt: Obsolete.
4313 2002-01-05 Andrew Cagney <ac131313@redhat.com>
4315 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
4316 with BFD_ENDIAN_BIG.
4318 2002-01-05 Andrew Cagney <ac131313@redhat.com>
4320 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
4321 * configure, config.in: Re-generate.
4322 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
4323 * defs.h: Do not include <endian.h>.
4325 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
4327 * acconfig.h (HAVE_PT_GETXMMREGS): New.
4328 * config.in: Regenerate.
4329 * configure.in: Update copyright years.
4330 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
4331 * configure: Regenerate.
4332 * i386bsd-nat.c: Update copyright years.
4333 (fill_gregset): Use regcache_collect.
4334 (fetch_inferior_registers): Only fetch integer registers
4335 if requested to do so. Add support for XMM registers
4336 using PT_GETXMMREGS.
4337 (store_inferior_registers): Only store integer registers
4338 if requested to do so. Add support for XMM registers
4339 using PT_SETXMMREGS.
4340 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
4341 (store_inferior_registers): Remove.
4342 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
4343 (fetch_elfcore_registers): New function.
4344 (i386nbsd_elfcore_fns): New.
4345 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
4346 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
4348 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
4349 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
4350 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
4351 * config/i386/tm-nbsd.h: Update copyright years.
4352 (HAVE_SSE_REGS): Define.
4353 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
4354 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
4355 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
4356 (SIGCONTEXT_PC_OFFSET): Remove.
4357 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
4359 2002-01-05 Andrew Cagney <ac131313@redhat.com>
4361 * configure.tgt: Remove powerpc-*-macos* target.
4362 * config/m68k/xm-mpw.h: Delete file.
4363 * config/xm-mpw.h: Delete file.
4364 * ser-mac.c: Delete file.
4365 * mpw-make.sed: Delete file.
4366 * mpw-config.in: Delete file.
4367 * mac-xdep.c: Delete file.
4368 * mac-gdb.r: Delete file.
4369 * mac-defs.h: Delete file.
4370 * mac-nat.c: Delete file.
4371 * config/powerpc/macos.mh: Delete file.
4372 * config/powerpc/macos.mt: Delete file.
4373 * config/powerpc/nm-macos.h: Delete file.
4374 * config/powerpc/tm-macos.h: Delete file.
4375 * source.c (openp, open_source_file): Remove obsolete code.
4376 * top.c (gdb_readline): Ditto.
4377 * utils.c (query): Ditto.
4378 * event-top.c (display_gdb_prompt): Ditto.
4379 * Makefile.in (ser-mac.o): Delete obsolete target.
4382 2002-01-04 Andrew Cagney <ac131313@redhat.com>
4384 * defs.h (BIG_ENDIAN): Delete macro definition.
4385 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
4386 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
4387 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
4388 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
4389 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
4390 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
4391 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
4392 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
4393 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
4394 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
4395 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
4396 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
4397 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
4398 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
4399 * gdbarch.c: Re-generate.
4401 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
4403 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
4406 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
4408 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
4410 2002-01-04 Andrew Cagney <ac131313@redhat.com>
4412 * value.h (value_ptr): Delete typedef.
4414 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
4416 * i386nbsd-nat.c: Update copyright years.
4417 Include i386-tdep.h.
4419 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
4421 * stabsread.c: Update copyright years.
4423 From Debashis Mahata <debashis.mahata@wipro.com>:
4424 (read_struct_fields): Deal with Sun C compiler erroneous stab
4425 output for structs and unions.
4428 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
4430 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
4433 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
4435 * cp-abi.c: Fix whitespace.
4436 (baseclass_offset): New wrapper function.
4437 * cp-abi.h (baseclass_offset): Add prototype.
4438 (struct cp_abi_ops): Add baseclass_offset pointer.
4440 * valops.c (vb_match): Move to...
4441 * gnu-v2-abi.c (vb_match): here.
4442 * valops.c (baseclass_offset): Move to...
4443 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
4445 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
4447 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
4448 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
4449 * hpacc-abi.c (init_hpacc_ops): Likewise.
4451 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
4453 * valops.c (find_overload_match): Accept obj as a
4454 reference parameter. Update it before returning.
4455 * value.h (find_overload_match): Update prototype.
4456 * eval.c (evaluate_subexp_standard): Pass object to
4457 find_overload_match by reference.
4459 2002-01-03 Andrew Cagney <ac131313@redhat.com>
4461 * valarith.c: Replace value_ptr with struct value pointer. Remove
4462 register attribute from value declarations.
4465 * scm-lang.c (scm_lookup_name): Ditto.
4467 2002-01-03 Michael Snyder <msnyder@redhat.com>
4469 Abstract the functionality of iterating over mapped memory
4470 regions into a general purpose iterator function.
4471 * procfs.c (iterate_over_mappings): New function, general purpose
4472 iterator for memory sections.
4473 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
4474 (solib_mappings_callback): New function, callback for above.
4475 (info_proc_mappings): Reimpliment using iterate_over_mappings.
4476 (info_mappings_callback): New function, callback for above.
4478 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
4480 2002-01-01 Mark Kettenis <kettenis@gnu.org>
4482 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
4483 * i386-tdep.c: Include "elf-bfd.h".
4484 (process_note_abi_tag_sections): New function.
4485 (i386_gdbarch_init): Add code to recognize various OS/ABI
4488 * maint.c (_initialize_maint_cmds): Add missing \ in
4491 For older changes see ChangeLog-2001
4497 version-control: never