* expression.h (enum exp_opcode): Add a new operator for F90
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2005-09-20 Wu Zhou <woodzltc@cn.ibm.com>
2
3 * expression.h (enum exp_opcode): Add a new operator for F90
4 subrange.
5 * f-lang.h (enum f90_range_type): New enumeration type to identify
6 F90 subrange type.
7 * f-exp.y (yyparse): Add support for parsing F90 subrange and
8 change substring parsing to subrange parsing.
9 * parse.c (operator_length_standard): Set the operator length
10 and args number for OP_F90_RANGE.
11 * eval.c (evaluate_subexp_standard): Add code to evaluate F90
12 array section and substring.
13 (value_f90_subarray): New function to evaluate F90 array section.
14 (evaluate_subexp_standard): Delete label op_f77_substr and its code
15 because the logic is implemented by function value_f90_subarray now.
16
17 2005-09-19 Paul Gilliam <pgilliam@us.ibm.com>
18
19 * rs6000-tdep.c (_initialize_rs6000_tdep): Get rid of the unused
20 'info powerpc' command prefix.
21
22 2005-09-11 Ulrich Weigand <uweigand@de.ibm.com>
23
24 * config/s390/nm-linux.h (KERNEL_U_SIZE): Remove.
25 (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Likewise.
26 (s390_stopped_by_watchpoint, s390_insert_watchpoint,
27 s390_remove_watchpoint, TARGET_CAN_USE_HARDWARE_WATCHPOINT,
28 TARGET_REGION_OK_FOR_HW_WATCHPOINT, HAVE_CONTINUABLE_WATCHPOINT,
29 STOPPED_BY_WATCHPOINT, target_insert_watchpoint,
30 target_remove_watchpoint): Likewise.
31 * s390-nat.c: Remove include of <sys/user.h>.
32 (kernel_u_size): Remove.
33 (s390_stopped_by_watchpoint): Make static.
34 (s390_insert_watchpoint, s390_remove_watchpoint): Likewise.
35 (s390_can_use_hw_breakpoint): New function.
36 (s390_region_size_ok_for_hw_watchpoint): Likewise.
37 (_initialize_s390_nat): Add watchpoint methods to target.
38
39 2005-09-10 Daniel Jacobowitz <dan@codesourcery.com>
40 Ulrich Weigand <uweigand@de.ibm.com>
41
42 * Makefile.in (ALLDEPFILES): Update.
43 (alpha-linux-nat.o, sparc-linux-nat.o): New rules.
44 (amd64-linux-nat.o, arm-linux-nat.o, hppa-linux-nat.o)
45 (i386-linux-nat.o, ia64-linux-nat.o, linux-nat.o, m32r-linux-nat.o)
46 (m68klinux-nat.o, mips-linux-nat.o, ppc-linux-nat.o, s390-nat.o)
47 (sparc64-linux-nat.o): Update dependencies.
48 * alpha-linux-nat.c, sparc-linux-nat.c: New files.
49 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers): Renamed
50 from fetch_inferior_registers and made static.
51 (amd64_linux_store_inferior_registers): Renamed from
52 store_inferior_registers and made static.
53 (amd64_linux_child_post_start_inferior): Renamed from
54 child_post_startup_inferior and made static. Call
55 super_post_startup_inferior.
56 (super_post_startup_inferior): New.
57 (_initialize_amd64_linux_nat): Set it. Call linux_target and
58 add_target.
59 * arm-linux-nat.c (arm_linux_fetch_inferior_registers): Renamed
60 from fetch_inferior_registers and made static.
61 (arm_linux_store_inferior_registers): Renamed from
62 store_inferior_registers and made static.
63 (_initialize_arm_linux_nat): Add a prototype. Use linux_target and
64 add_target.
65 * hppa-linux-nat.c (hppa_linux_fetch_inferior_registers): Renamed
66 from fetch_inferior_registers and made static.
67 (hppa_linux_store_inferior_registers): Renamed from
68 store_inferior_registers and made static.
69 (_initialize_hppa_linux_nat): New function.
70 * i386-linux-nat.c (i386_linux_fetch_inferior_registers): Renamed
71 from fetch_inferior_registers and made static.
72 (i386_linux_store_inferior_registers): Renamed from
73 store_inferior_registers and made static.
74 (i386_linux_resume): Renamed from child_resume and made static.
75 (i386_linux_child_post_start_inferior): Renamed from
76 child_post_startup_inferior and made static. Call
77 super_post_startup_inferior.
78 (super_post_startup_inferior): New.
79 (_initialize_i386_linux_nat): New function.
80 * i386-nat.c: Remove LINUX_CHILD_POST_STARTUP_INFERIOR #ifndef.
81 * ia64-linux-nat.c (ia64_linux_xfer_unwind_table): Remove.
82 (super_xfer_partial): New.
83 (ia64_linux_xfer_partial): New function. Use it.
84 (_initialize_ia64_linux_nat): New function.
85 * ia64-tdep.c (getunwind_table): Revert 2005-06-08 change; use
86 target_read_partial and document the problem.
87 * inf-ptrace.c (inf_ptrace_fetch_register): Use
88 CANNOT_FETCH_REGISTER. Fix some comments.
89 (inf_ptrace_store_register): Use CANNOT_STORE_REGISTER. Fix some
90 comments.
91 * linux-nat.c: Include "inf-ptrace.h" and "auxv.h".
92 (linux_ops, super_xfer_partial): New variables.
93 (linux_child_post_startup_inferior): Make static.
94 (child_post_startup_inferior): Delete.
95 (linux_nat_attach, linux_nat_detach, resume_callback)
96 (linux_nat_resume, linux_nat_wait, linux_nat_create_inferior)
97 (linux_nat_mourn_inferior): Use linux_ops instead of
98 deprecated_child_ops.
99 (child_wait): Do not depend on CHILD_WAIT.
100 (linux_nat_xfer_memory): Remove, replace by ...
101 (linux_nat_xfer_partial): ... this. Use linux_ops->to_xfer_partial
102 instead of linux_proc_xfer_memory and child_xfer_memory.
103 (linux_nat_fetch_registers, linux_nat_store_registers)
104 (linux_nat_child_post_startup_inferior): New functions.
105 (init_linux_nat_ops): Use the new functions.
106 (linux_proc_xfer_memory): Remove, replace by ...
107 (linux_proc_xfer_partial): ... this. Make static.
108 (linux_xfer_partial, linux_register_u_offset, linux_target): New
109 functions.
110 (_initialize_linux_nat): Do not modify deprecated_child_ops.
111 * linux-nat.h (linux_proc_xfer_memory): Remove prototype.
112 (struct mem_attrib, struct target_ops): Remove forward declarations.
113 (linux_child_post_startup_inferior): Remove prototype.
114 (linux_target): Add prototype.
115 * linux-thread-db.c (thread_db_xfer_memory): Remove, replace by ...
116 (thread_db_xfer_partial): ... this.
117 (init_thread_db_ops): Set to_xfer_partial instead of
118 deprecated_xfer_memory.
119 * m32r-linux-nat.c (m32r_linux_fetch_inferior_registers): Renamed
120 from fetch_inferior_registers and made static.
121 (m32r_linux_store_inferior_registers): Renamed from
122 store_inferior_registers and made static.
123 (_initialize_m32r_linux_nat): New function.
124 * m68klinux-nat.c (m68k_linux_fetch_inferior_registers): Renamed
125 from fetch_inferior_registers and made static.
126 (m68k_linux_store_inferior_registers): Renamed from
127 store_inferior_registers and made static.
128 (old_fetch_inferior_registers, old_store_inferior_registers): Made
129 static.
130 (_initialize_m68k_linux_nat): Use linux_target and add_target.
131 * mips-linux-nat.c (_initialize_mips_linux_nat): New function.
132 * ppc-linux-nat.c (ppc_linux_fetch_inferior_registers): Renamed
133 from fetch_inferior_registers and made static.
134 (ppc_linux_store_inferior_registers): Renamed from
135 store_inferior_registers and made static.
136 (_initialize_ppc_linux_nat): New function.
137 * s390-nat.c (s390_linux_fetch_inferior_registers): Renamed
138 from fetch_inferior_registers and made static.
139 (s390_linux_store_inferior_registers): Renamed from
140 store_inferior_registers and made static.
141 (_initialize_s390_nat): New function.
142 * sparc64-linux-nat.c (_initialize_sparc64_linux_nat): Use
143 linux_target and add_target.
144 * config/nm-linux.h: Don't include "auxv.h".
145 (struct target_waitstatus, child_wait, CHILD_WAIT)
146 (CHILD_PID_TO_EXEC_FILE, CHILD_INSERT_FORK_CATCHPOINT)
147 (CHILD_INSERT_VFORK_CATCHPOINT, CHILD_INSERT_EXEC_CATCHPOINT)
148 (CHILD_POST_STARTUP_INFERIOR, CHILD_POST_ATTACH, CHILD_FOLLOW_FORK)
149 (DEPRECATED_KILL_INFERIOR, NATIVE_XFER_AUXV): Delete.
150 * config/alpha/alpha-linux.mh (NATDEPFILES): Replace infptrace.o
151 and inftarg.o with inf-ptrace.o and alpha-linux-nat.o.
152 * config/sparc/linux.mh (NATDEPFILES): Replace infptrace.o and
153 inftarg.o with sparc-linux-nat.o.
154 * config/sparc/linux64.mh (NATDEPFILES): Remove infptrace.o and
155 inftarg.o.
156 * config/arm/linux.mh (NATDEPFILES): Replace infptrace.o and
157 inftarg.o with inf-ptrace.o.
158 * config/i386/linux.mh (NATDEPFILES): Likewise.
159 * config/i386/linux64.mh (NATDEPFILES): Likewise.
160 * config/ia64/linux.mh (NATDEPFILES): Likewise.
161 * config/m32r/linux.mh (NATDEPFILES): Likewise.
162 * config/m68k/linux.mh (NATDEPFILES): Likewise.
163 * config/mips/linux.mh (NATDEPFILES): Likewise.
164 * config/pa/linux.mh (NATDEPFILES): Likewise.
165 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
166 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
167 * config/s390/s390.mh (NATDEPFILES): Likewise.
168 * config/i386/nm-linux.h (DEPRECATED_CHILD_RESUME): Don't define.
169 (LINUX_CHILD_POST_STARTUP_INFERIOR): Don't define.
170 * config/i386/nm-linux64.h (LINUX_CHILD_POST_STARTUP_INFERIOR):
171 Don't define.
172 * config/ia64/nm-linux.h: Don't include "target.h".
173 (NATIVE_XFER_UNWIND_TABLE, ia64_linux_xfer_unwind_table): Remove.
174 * config/djgpp/fnchange.lst: Add alpha-linux-tdep.c,
175 alpha-linux-nat.c, sparc-linux-tdep.c, and sparc-linux-nat.c.
176
177 2005-09-08 Kevin Buettner <kevinb@redhat.com>
178
179 From Kevin Buettner, Andrew Cagney, Jackie Smith Cashion, and
180 Alexandre Oliva:
181 * mn10300-tdep.c (am33_2_register_name): New function.
182 (my_frame_is_in_sp, my_frame_is_in_fp, my_frame_is_last)
183 (set_my_stack_size): Delete.
184 (set_movm_offsets, set_reg_offsets): Rename the former to the
185 latter. Update for handling am33.
186 (mn10300_analyze_prologue): Update for handling am33. Also, make
187 minor improvements in quality of prologue analysis.
188 (mn10300_gdbarch_init): Add am33 support.
189 * mn10300-tdep.h (E_NUM_REGS): Delete.
190
191 2005-09-06 Kevin Buettner <kevinb@redhat.com>
192
193 * mn10300-linux-tdep.c (mn10300_linux_svr4_fetch_link_map_offsets):
194 Delete.
195 (am33_linux_init_osabi): Register svr4_ilp32_fetch_link_map_offsets
196 instead.
197
198 2005-09-06 Kevin Buettner <kevinb@redhat.com>
199
200 * mn10300-linux-tdep.c (solib-svr4.h): Include.
201 (mn10300_linux_svr4_fetch_link_map_offsets): New function.
202 (am33_linux_init_osabi): Register it.
203 * Makefile.in (mn10300-linux-tdep.o): Update dependencies.
204
205 2005-09-06 Kevin Buettner <kevinb@redhat.com>
206
207 * mn10300-tdep.c (mn10300_analyze_prologue): Delete code disabled
208 via "#if 0".
209
210 2005-09-06 Kevin Buettner <kevinb@redhat.com>
211
212 * mn10300-tdep.c (mn10300_analyze_prologue): Use
213 safe_frame_unwind_memory() in place of deprecated_read_memory_nobpt().
214
215 2005-09-04 Daniel Jacobowitz <dan@codesourcery.com>
216
217 * inf-child.c (inf_child_follow_fork): Add OPS argument.
218 * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
219 * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
220 * inftarg.c (child_follow_fork): Likewise.
221 * linux-nat.c (child_follow_fork): Likewise. Use ops instead of
222 &deprecated_child_ops.
223 * target.c (update_current_target): Do not inherit to_follow_fork.
224 (target_follow_fork): New function.
225 (debug_to_follow_fork): Remove.
226 (setup_target_debug): Don't set to_follow_fork.
227 * target.h (struct target_ops): Add struct target_ops * to
228 to_follow_fork.
229 (child_follow_fork): Add struct target_ops * argument.
230 (target_follow_fork): Replace macro with prototype.
231
232 2005-09-02 Kevin Buettner <kevinb@redhat.com>
233
234 * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): Use ARRAY_SIZE.
235 Change internal error to warning. Add i18n markup to warning
236 string.
237
238 2005-09-02 Kevin Buettner <kevinb@redhat.com>
239
240 * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): New function.
241 (mn10300_gdbarch_init): Register mn10300_dwarf2_reg_to_regnum().
242
243 2005-09-02 Kevin Buettner <kevinb@redhat.com>
244
245 * mn10300-tdep.c (is_my_frame_in_sp, is_my_frame_in_fp)
246 (is_my_frame_last): Delete these unused functions.
247
248 2005-09-02 Kevin Buettner <kevinb@redhat.com>
249
250 * mn10300-tdep.c (mn10300_frame_prev_register): Change type of
251 ``bufferp'' from ``void *'' to ``gdb_byte *''.
252
253 2005-09-02 Kevin Buettner <kevinb@redhat.com>
254
255 * mn10300-tdep.c (mn10300_use_struct_convention): Delete parameter
256 ``gcc_p''. Adjust all callers.
257 (mn10300_store_return_value, mn10300_extract_return_value): Add new
258 parameter ``gdbarch''.
259 (mn10300_return_value): New function.
260 (mn10300_gdbarch_init): Delete old-style return value code calls.
261 Add call to set_gdbarch_return_value().
262
263 2005-09-02 Kevin Buettner <kevinb@redhat.com>
264
265 * mn10300-tdep.c (regcache.h): Delete duplicate include.
266 * Makefile.in (mn10300-tdep.o): Update dependencies.
267
268 2005-09-02 Kevin Buettner <kevinb@redhat.com>
269
270 * mn10300-tdep.c (osabi.h): Include.
271 (mn10300_gdbarch_init): Invoke gdbarch_init_osabi().
272 * Makefile.in (mn10300-tdep.o): Update dependencies.
273
274 2005-09-02 Michael Snyder <msnyder@redhat.com>
275 Kevin Buettner <kevinb@redhat.com>
276
277 * mn10300-linux-tdep.c: New file.
278 * Makefile.in (mn10300-linux-tdep.o): New Makefile target.
279 * config/mn10300/linux.mt (TDEPFILES): Add mn10300-linux-tdep.o and
280 corelow.o.
281 * mn10300-tdep.h (E_E8_REGNUM, E_E9_REGNUM, E_E10_REGNUM)
282 (E_FPCR_REGNUM, E_FS0_REGNUM): New constants.
283
284 2005-09-02 Mark Kettenis <kettenis@gnu.org>
285
286 * infcall.c (call_function_by_hand): Remove code handling
287 deprecated_push_arguments. Bail out early if push_dummy_call
288 isn't available.
289 * gdbarch.sh (deprecated_push_arguments): Delete. Adjust a few
290 comments accordingly.
291 * gdbarch.h, gdbarch.c: Regenerate.
292
293 2005-09-01 Paul Gilliam <pgilliam@us.ibm.com>
294
295 * ppc-tdep.h (struct gdbarch_tdep): Better explanation of using
296 -1 for nonexistant registers.
297 * rs6000-tdep.c (rs6000_register_reggroup_p): Don't assume that
298 tdep->ppc_vr0_regnum and tdep->ppc_ev0_regnum are not -1.
299
300 2005-09-01 Richard Earnshaw <richard.earnshaw@arm.com>
301
302 * arm-linux-tdep.c (arm_linux_push_arguments): Delete.
303 (arm_linux_init_abi): Don't register it.
304
305 2005-08-31 Mark Kettenis <kettenis@gnu.org>
306
307 * symfile.c (symbol_file_command, set_initial_language)
308 (symfile_bfd_open, get_section_index, add_symtab_fns)
309 (find_sym_fns): Reformat code and comments. Tweak comments.
310
311 * m68k-tdep.c (m68k_register_name): Use ARRAY_SIZE.
312
313 2005-08-31 Jim Wilson <wilson@specifix.com>
314
315 * i386fbsd-tdep.c (i386fbsd_sc_reg_offset): Make it non-static.
316
317 2005-08-29 Mark Kettenis <kettenis@gnu.org>
318
319 * environ.c (unset_in_environ): Use strncmp instead of
320 DEPRECATED_STREQN.
321 * exec.c (exec_file_attach): Remove DEPRECATED_HPUX_TEXT_END.
322 * language.c (set_case_command, language_enum): Use strcmp instead
323 of DEPRECATED_STREQ.
324 * source.c (select_source_symtab): Sprinkle a few consts. Use
325 strcmp instead of DEPRECATED_STREQ.
326
327 * solib-svr4.c (svr4_current_sos, svr4_fetch_objfile_link_map):
328 Use XZALLOC and xzalloc instead of xmalloc where appropriate.
329
330 2005-08-27 Eli Zaretskii <eliz@gnu.org>
331
332 * main.c (print_gdb_help): Don't advertise the (long non-existent)
333 option --mapped.
334
335 2005-08-21 Mark Kettenis <kettenis@gnu.org>
336
337 * doublest.c (floatformat_mantissa): Use xsnprintf instead of
338 sprintf.
339
340 * vaxobsd-tdep.c: New file.
341 * config/vax/obsd.mt (TDEPFILES): Add vaxobsd-tdep.o.
342 * Makefile.in (vaxobsd-tdep.o): New dependency.
343
344 * ppcobsd-tdep.c: Include "frame.h" and "frame-unwind.h". Don't
345 include "tramp-frame.h".
346 (ppcobsd_sigtramp_cache_init): Remove function.
347 (ppcobsd_sigtramp): Remove variable.
348 (ppcobsd_page_size, ppcobsd_sigreturn_offset): New variables.
349 (ppcobsd_sigtramp_p): New function.
350 (ppcobsd_sigtramp_frame_cache, ppcobsd_sigtramp_frame_this_id)
351 (ppcobsd_sigtramp_frame_prev_register): New functions.
352 (ppcobsd_sigtramp_frame_unwind): New variable.
353 (ppcobsd_sigtramp_frame_sniffer): New function.
354 (ppcobsd_init_abi): Adjust to register new sigtramp sniffer
355 instead of the old one.
356 * Makefile.in (ppcobsd-tdep.o): Update dependencies.
357
358 * infcall.c (call_function_by_hand): For
359 RETURN_VALUE_ABI_RETURNS_ADDRESS and
360 RETURN_VALUE_ABI_PRESERVES_ADDRESS, use gdbarch_return_value to
361 get return value.
362
363 * valarith.c (value_equal, value_less): Avoid compiler bug on
364 systems where `long double' values are returned in static storage.
365
366 2005-08-18 Mark Kettenis <kettenis@gnu.org>
367
368 * stack.c: Reformat. Improve comments. Include "valprint.h".
369 (args_info, locals_info, backtrace_command, backtrace_command_1)
370 (backtrace_full_command, frame_info, frame_command, down_command)
371 (down_silently_base, down_silently_command, up_command)
372 (up_silently_base, up_silently_command, parse_frame_specification)
373 (current_frame_command, print_frame_args_vars, catch_info)
374 (args_plus_locals_info), print_frame_label_vars)
375 (print_block_frame_labels, print_block_frame_locals)
376 (func_command): Remove prototypes.
377 (print_stack_frame, backtrace_command_stub, backtrace_command,
378 backtrace_full_command, print_frame_args, print_frame_arg_vars,
379 print_args_stub, func_command): Remove redundant casts.
380 (addressprint): Remove extern declaration.
381 (frame_command): Make static.
382 (struct print_stack_frame_args, struct print_args_args): Rename
383 `fi' member to `frame'.
384 (print_stack_frame, print_frame_nameless_args, print_frame_args)
385 (set_current_sal_from_frame, print_frame_info, print_frame)
386 (show_stack_frame, print_block_frame_locals)
387 (print_frame_local_vars, print_frame_label_vars)
388 (print_frame_arg_vars, select_and_print_frame): Rename `fi'
389 argument to `frame'.
390 (func_command): Rename `fp' variable to `frame'.
391 (get_language): Restructure.
392 * Makefile.in (stack.o): Update dependencies.
393
394 2005-08-17 Kevin Buettner <kevinb@redhat.com>
395
396 * NEWS (ms1-elf): New target.
397
398 2005-08-17 Mark Kettenis <kettenis@gnu.org>
399
400 * m68k-tdep.c (m68k_return_value): Properly return contents of
401 structures passed in memory.
402
403 * infcmd.c (print_return_value): Move CHECK_TYPEDEF up. Deal with
404 RETURN_VALUE_ABI_PRESERVED_ADDRESS.
405
406 * ppc-sysv-tdep.c (do_ppc_sysv_return_value): Fix the code that
407 deals with the broken GCC convention.
408
409 2005-08-16 Mark Kettenis <kettenis@gnu.org>
410
411 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Set condition
412 register appropriately for varargs functions.
413
414 2005-08-15 Kevin Buettner <kevinb@redhat.com>
415
416 * MAINTAINERS (ms1): New target ISA entry. List myself as
417 maintainer.
418
419 2005-08-15 Michael Snyder <msnyder@redhat.com>
420 Kevin Buettner <kevinb@redhat.com>
421
422 * Makefile.in (ms1-tdep.o): Add dependencies.
423 * configure.tgt: Add ms1-*-* target.
424 * ms1-tdep.c: New file.
425 * config/ms1/ms1.mt: New file.
426
427 2005-08-15 Mark Kettenis <kettenis@gnu.org>
428
429 * Makefile.in (m68kbsd-tdep.o): Ad missing space.
430
431 2005-08-15 Ulrich Weigand <uweigand@de.ibm.com>
432
433 * s390-tdep.c (op1_lgfi, op2_lgfi, op1_agfi, op2_agfi,
434 op1_afi, op2_afi, op1_algfi, op2_algfi, op1_alfi, op2_alfi,
435 op1_slgfi, op2_slgfi, op1_slfi, op2_slfi): New opcode enums.
436 (s390_analyze_prologue): Recognize new z9-109 instructions.
437
438 2005-08-14 Mark Kettenis <kettenis@gnu.org>
439
440 * solib-som.c (som_current_sos): Cast to 'gdb_byte *' where
441 appropriate.
442
443 * inf-ptrace.c (inf_ptrace_him) [PT_GET_PROCESS_STATE]: Move
444 code...
445 (inf_ptrace_post_startup_inferior): ...here. New function.
446 (inf_ptrace_attach) [PT_GET_PROCESS_STATE]: Move code...
447 (inf_ptrace_post_attach): ...here.
448 (inf_ptrace_target) [PT_GET_PROCESS_STATE]: Set
449 to_post_startup_inferior and to_post_attch.
450
451 * sparc-tdep.c (sparc_breakpoint_from_pc): Constify break_insn.
452
453 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Check for
454 "__sighndlr".
455
456 2005-08-13 Mark Kettenis <kettenis@gnu.org>
457
458 * i386-linux-nat.c (fetch_register, store_register)
459 (supply_gregset, fill_gregset): Remove redundant casts.
460
461 2005-08-12 Kris Warkentin <kewarken@qnx.com>
462
463 * i386-nto-tdep.c (i386nto_init_abi): Don't set gdbarch skip
464 trampoline code hook.
465 * nto-procfs.c (procfs_post_attach): Call solib_create_inferior_hook
466 instead of SOLIB_CREATE_INFERIOR_HOOK.
467 (procfs_create_inferior): Ditto.
468 * config/tm-nto.h: Don't define SKIP_TRAMPOLINE_CODE.
469
470 2005-08-11 Andreas Schwab <schwab@suse.de>
471
472 PR exp/1978
473 * valarith.c (value_binop): Fix result type for the shift
474 operators.
475
476 2005-08-09 Mark Kettenis <kettenis@gnu.org>
477
478 * sparc64obsd-tdep.c: Tweak comments.
479 (sparc64obsd_sigreturn_offset): Add offset for new OpenBSD 3.8
480 signal trampoline.
481
482 2005-08-09 Andrew Cagney <cagney@gnu.org>
483
484 * linux-nat.h (linux_proc_xfer_memory): Change type of "myaddr" a
485 "gdb_byte" pointer.
486 * linux-nat.c (linux_proc_xfer_memory): Update.
487 (get_signo): Cast signo to a "gdb_byte" pointer.
488 * i386-linux-nat.c (child_resume): Make "buf" a gdb_byte, delete
489 redundant casts.
490 (child_resume): Cast eflags to a "gdb_byte" pointer.
491
492 2005-08-08 Mark Kettenis <kettenis@gnu.org>
493
494 * tramp-frame.h (struct tramp_frame): Allow for 16 instructions
495 instead of 8.
496 * m68kbsd-tdep.c: Include "frame.h", "trad-frame.h" and
497 "tramp-frame.h".
498 (m68kobsd_sigtramp_cache_init): New function.
499 (m68kbsd_aout_init_abi): Prepend m68kobsd_sigtramp unwinder.
500
501 2005-08-02 Fred Fish <fnf@specifix.com>
502
503 * defs.h (parse_frame_specification): Remove prototype.
504 * stack.c (parse_frame_specification): Add prototype and
505 make function static.
506 (frame_info): Move common code outside if..then..else.
507
508 2005-08-01 Daniel Jacobowitz <dan@codesourcery.com>
509
510 * value.c (value_contents_writeable): Use value_contents_raw.
511
512 2005-08-01 Daniel Jacobowitz <dan@codesourcery.com>
513
514 Suggested by Shaun Jackman <sjackman@gmail.com>:
515 * defs.h (print_transfer_performance): Update prototype.
516 * m32r-rom.c (m32r_load, m32r_upload_command): Use gettimeofday
517 for print_transfer_performance.
518 * remote-m32r-sdi.c (m32r_load): Likewise.
519 * symfile.c (generic_load): Likewise.
520 (report_transfer_performance): Create a dummy struct timeval.
521 (print_transfer_performance): Use a more accurate measure
522 of performance.
523
524 2005-08-01 Fred Fish <fnf@specifix.com>
525
526 * stack.c (parse_frame_specification_1): Remove use of obsolete
527 SETUP_ARBITRARY_FRAME macro.
528
529 2005-08-01 Daniel Jacobowitz <dan@codesourcery.com>
530
531 * dwarf2-frame.c (read_signed_leb128): Handle values that do not
532 fit in 32 bits.
533 * dwarf2read.c (read_signed_leb128): Likewise.
534
535 2005-07-31 Daniel Jacobowitz <dan@codesourcery.com>
536
537 From Josef Ezra <jezra@emc.com>:
538 * tracepoint.c (stringify_collection_list): Correct pointer
539 arithmetic.
540
541 2005-07-31 Daniel Jacobowitz <dan@codesourcery.com>
542
543 Suggested by Vladimir Prus <ghost@cs.msu.su>:
544 * infrun.c (handle_inferior_event): Check for line information in
545 undebuggable functions.
546
547 2005-07-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
548
549 * cli-out.c (cli_field_fmt, cli_message, out_field_fmt): Add
550 ATTR_FORMAT or ATTRIBUTE_FPTR_PRINTF.
551 * complaints.c (vcomplaint): Likewise.
552 * defs.h (xvasprintf, xstrvprintf, verror, vfatal)
553 (internal_verror, internal_vwarning, vwarning)
554 (deprecated_query_hook, deprecated_warning_hook)
555 (deprecated_readline_begin_hook): Likewise.
556 * disasm.c (fprintf_disasm): Likewise.
557 * exceptions.c (throw_it): Likewise.
558 * exceptions.h (throw_verror, throw_vfatal): Likewise.
559 * mi/mi-interp.c (mi_interp_query_hook): Likewise.
560 * mi/mi-out.c (mi_field_fmt, mi_message): Likewise.
561 * tui/tui-hooks.c (tui_query_hook): Likewise.
562 * tui/tui-out.c (tui_field_fmt, tui_message, out_field_fmt):
563 Likewise.
564 * ui-out.c (default_field_fmt, default_message, uo_field_fmt)
565 (uo_message): Likewise.
566 * ui-out.h (ui_out_field_fmt, ui_out_message, field_fmt_ftype)
567 (message_ftype): Likewise.
568 * utils.c (vfprintf_maybe_filtered, internal_vproblem)
569 (defaulted_query, printchar): Likewise.
570
571 2005-07-26 Mark Kettenis <kettenis@gnu.org>
572
573 * i386obsd-tdep.c (i386obsd_sigreturn_offset): New variable.
574 (i386obsd_sigtramp_p): Deal with an arbitrary number of possible
575 offsets.
576 (i386obsd_aout_supply_regset): Avoid bogus cast.
577
578 2005-07-25 Mark Kettenis <kettenis@gnu.org>
579
580 * inf-ptrace.c [PT_GET_PROCESS_STATE] (inf_ptrace_follow_fork):
581 New function.
582 (inf_ptrace_him, inf_ptrace_attach) [PT_GET_PROCESS_STATE]: Set
583 PTRACE_FORK event flag.
584 (inf_ptrace_wait) [PT_GET_PROCESS_STATE]: Handle PTRACE_FORK
585 event.
586 (inf_ptrace_target) [PT_GET_PROCESS_STATE]: Set to_follow_fork.
587
588 2005-07-25 Mark Kettenis <kettenis@gnu.org>
589
590 * gdb_ptrace.h (PT_TRACE_ME): Define to zero if not already
591 defined.
592 * inf-ptrace.c: Tweak comments.
593 (inf_ptrace_me): Use PT_TRACE_ME instead of hardcoded zero.
594 (inf_ptrace_mourn_inferior): Call waitpid.
595 (inf_ptrace_attach): Use pid_t, Remove unnecessary cast.
596 (inf_ptrace_detach): Use pid_t. Use ptid_get_pid instead of
597 PIDGET.
598 (inf_ptrace_kill): Rename from inf_ptrace_kill_inferior. Use
599 pid_t. Use ptid_get_pid instead of PIDGET.
600 (inf_ptrace_kill): Call waitpid instead of wait.
601 (inf_ptrace_resume): Use pid_t. Use ptid_get_pid instead of
602 PIDGET.
603 (inf_ptrace_wait): Use waitpid instead wait. Use pid_t. Don't
604 call target_has_exited or target_thread_alive. Properly ignore
605 terminated detached child processes.
606 (inf_ptrace_has_exited): Remove function.
607 (inf_ptrace_xfer_partial): Use pid_t. Use ptid_get_pid instead of
608 PIDGET. Use gdb_byte instead of `unsigned char'.
609 (inf_ptrace_thread_alive): Use ptid_get_pid instead of PIDGET.
610 (inf_ptrace_pid_to_str): Remove function.
611 (inf_ptrace_target): Use inf_ptrace_kill instead of
612 inf_ptrace_kill_inferior. Use normal_pid_to_str instead of
613 inf_ptrace_pid_to_str. Don't set to_has_exited.
614 (inf_ptrace_fetch_register, inf_ptrace_store_register): Reformat
615 long lines.
616
617 2005-07-25 Mark Kettenis <kettenis@gnu.org>
618
619 * inf-ptrace.c: Reorder functions.
620 (inf_ptrace_open, inf_ptrace_reported_exec_events_per_call)
621 (inf_ptrace_can_run, inf_ptrace_post_attach): Removed.
622 (inf_ptrace_target): Don't set to_open,
623 to_reported_exec_events_per_call, to_can_run, to_post_attach,
624 to_stratum, to_has_all_memory, to_has_memory, to_has_stack,
625 to_has_registers, to_has_execution, to_magic. Reorder remaining
626 initializations.
627
628 2005-07-25 Mark Mitchell <mark@codesourcery.com>
629
630 * configure.ac: On MinGW, do not require a termcap library, and
631 use win32-termcap.c.
632 * configure: Regenerated.
633 * win32-termcap.c: New file.
634
635 2005-07-24 Mark Mitchell <mark@codesourcery.com>
636
637 * ser-tcp.c (close): Define as a function-like macro on MinGW.
638
639 2005-07-21 Eric Christopher <echristo@apple.com>
640
641 * MAINTAINERS (Misc): Update affiliation.
642
643 2005-07-21 Mark Kettenis <kettenis@gnu.org>
644
645 * inf-ttrace.c (inf_ttrace_wait): Properly report TTEVT_EXEC
646 events as TARGET_WAITKIND_EXECD.
647 (inf_ttrace_detach): Reorder local variables.
648
649 2005-07-20 Mark Kettenis <kettenis@gnu.org>
650
651 * inf-ttrace.c (inf_ttrace_vfork_ppid): New variable.
652 (inf_ttrace_follow_fork): New function.
653 (inf_ttrace_him, inf_ttrace_attach): Ask for TTEVT_FORK and
654 TTEVT_VFORK events. Replace TTEO_NOSTRCHLD option with
655 TTEO_PROC_INHERIT.
656 (inf_ttrace_create_inferior, inf_ttrace_attach): Add checks for
657 inf_ttrace_vfork_ppid.
658 (inf_ttrace_kill_inferior, inf_ttrace_detach): Detach from waiting
659 parent if appropriate.
660 (inf_ttrace_wait): Handle TTEVT_FORK and TTEVT_VFORK.
661 (inf_ttrace_target): Set to_follow_fork.
662
663 2005-07-20 Wu Zhou <woodzltc@cn.ibm.com>
664
665 * remote.c (remote_pid_to_str): Use xsnprintf instead of snprintf.
666
667 2005-07-18 Mark Kettenis <kettenis@gnu.org>
668
669 * target.c (normal_pid_to_str): Use xsnprintf instead of snprintf.
670 * bsd-uthread.c (bsd_uthread_pid_to_str): Likewise.
671 * inf-ttrace.c (inf_ttrace_pid_to_str): Likewise.
672
673 * hppa-tdep.h (hppa_frame_prev_register_helper): Change types of
674 last argument to `gdb_byte *'.
675 * hppa-tdep.c (hppa32_convert_from_func_ptr_addr): Rewrite.
676 (hppa_frame_prev_register_helper): Change types of last argument
677 to `gdb_byte *'.
678 * hppa-hpux-tdep.c (hppa_hpux_sigtramp_frame_prev_register):
679 Change types of last argument to `gdb_byte *'.
680
681 2005-07-18 Mark Kettenis <kettenis@gnu.org>
682 Jason Molenda <jmolenda@apple.com>
683
684 * i386-tdep.c (i386_match_insn): Match complete instruction
685 pattern.
686
687 2005-07-18 Mark Kettenis <kettenis@gnu.org>
688
689 * i386-tdep.c (i386_reg_struct_return_p): Handle structures with a
690 single 'long double' member correctly.
691 (i386_return_value): Tweak comment.
692
693 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
694
695 * mi/gdb-mi.el: Update for changes in Emacs 22.0.50. Bring more
696 features over from gdb-ui.el. Use "-var-update --all-values" for
697 faster re-display of watch expressions.
698
699 2005-07-15 Mark Kettenis <kettenis@gnu.org>
700 Marcel Moolenaar <marcel@xcllnt.net>
701
702 * sparc64fbsd-nat.c: Include "regcache.h", <sys/types.h>,
703 <machine/pcb.h> and "bsd-kvm.h".
704 (sparc64fbsd_kvm_supply_pcb): New function.
705 (_initialize_sparc64fbsd_nat): Enable libkvm interface.
706 * config/sparc/fbsd.mh (NATDEPFILES): Add bsd-kvm.o.
707 (LOADLIBES): New variable.
708 * Makefile.in (sparc64fbsd-nat.o): Update dependencies.
709
710 2005-07-15 Nick Roberts <nickrob@snap.net.nz>
711 Daniel Jacobowitz <dan@codesourcery.com>
712
713 * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values): New
714 declarations.
715 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Use string
716 constants instead of literals for MI command options.
717 * mi/mi-cmd-var.c (mi_no_values, mi_simple_values, mi_all_values):
718 New variables.
719 (mi_parse_values_option, mi_print_value_p): New functions.
720 (mi_cmd_var_list_children): Use mi_parse_values_option and
721 mi_print_value_p.
722 (mi_cmd_var_update): Support a PRINT_VALUES option. Update calls
723 to varobj_update_one.
724 (varobj_update_one): Take a print_values argument. Call
725 mi_print_value_p.
726 * varobj.c (varobj_get_gdb_type): New function.
727 * varobj.h (varobj_get_gdb_type): New prototype.
728
729 2005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
730
731 * ppc-linux-tdep.c (ppc_linux_init_abi): Set 64-bit link map offsets.
732
733 2005-07-12 Mark Kettenis <kettenis@gnu.org>
734
735 * dwarf2expr.h: Tweak comment.
736 (struct dwarf_expr_context): Use `gdb_byte *' in read_mem and
737 get_frame_base function pointers.
738 (read_uleb128, read_sleb128): Change return type and types of
739 first two arguments to `gdb_byte *'.
740 (dwarf2_read_address): Change types of first two arguments to
741 `gdb_byte *'.
742 * dwarf2expr.c: Tweak comment.
743 (dwarf_expr_eval): Change type of second argument to `gdb_byte *'.
744 (read_uleb128, read_sleb128): Change return type and types of
745 first two arguments to `gdb_byte *'.
746 (dwarf2_read_address): Change types of first two arguments to
747 `gdb_byte *'.
748 (execute_stack_op): Change types of last two arguments to
749 `gdb_byte *'. Use `gdb_byte *' for byte buffers.
750 * dwarf2loc.h: Tweak comment.
751 (struct dwarf2_locexpr_baton, struct dwarf2_loclist_baton): Use
752 `gdb_byte *' for byte buffers.
753 * dwarf2loc.c (find_location_expression): Change return type to
754 `gdb_byte *'. Use `gdb_byte *' for byte buffers. Change length
755 to `unsigned int'.
756 (dwarf_expr_read_reg): Use `gdb_byte *' for byte buffer. Remove
757 bogus cast.
758 (dwarf_expr_read_mem): Change type of second argument to
759 `gdb_byte *'.
760 (dwarf_expr_frame_base): Change type of second argument to
761 `gdb_byte **'.
762 (dwarf2_evaluate_loc_desc): Change type of third argument to
763 `gdb_byte *'.
764 (needs_frame_read_mem): Change type of second argument to
765 `gdb_byte *'.
766 (needs_frame_frame_base): Change type of second argument
767 `gdb_byte **'. Use gdb_byte for lit0.
768 (dwarf2_tracepoint_var_ref): Change type of fourth argument to
769 `gdb_byte *'. Use `gdb_byte *' for byte buffer.
770 (loclist_read_variable, loclist_tracepoint_var_ref): Use `gdb_byte
771 *' for byte buffer.
772 * dwarf2-frame.c (struct dwarf2_cie, struct dwarf2_fde)
773 (struct dwarf2_frame_state): Use gdb_byte instead of `unsigned
774 char'.
775 (read_reg): Use `gdb_byte *' for byte buffers. Remove redundant
776 cast.
777 (read_mem): Change second argument to `gdb_byte *'.
778 (no_get_frame_base): Change second argument to `gdb_byte **'.
779 (execute_stack_op): Change first argument to `gdb_byte *'.
780 (execute_cfa_program): Change first two arguments to `gdb_byte *'.
781 Use gdb_byte instead of `unsigned int'. Use temprorary variable
782 to store result of read_uleb128.
783 (struct comp_unit): Use `gdb_byte *' for byte buffers.
784 (read_1_byte, read_4_bytes, read_8_bytes): Change last argument to
785 `gdb_byte *'.
786 (read_unsigned_leb128, read_signed_leb128): Change second argument
787 to `gdb_byte *'. Use gdb_byte instead of `unsigned char'.
788 (read_initial_length): Change second argument to `gdb_byte *'.
789 Remove redundant casts.
790 (read_encoded_value): Use gdb_byte instead of `unsigned char'.
791 Remove bogus casts.
792 (decode_frame_entry_1): Change return type and second argument to
793 `gdb_byte *'. Use `gdb_byte *' for byte buffers. Use gdb_byte
794 instead of `unsigned char'.
795 (decode_frame_entry): Change return type and second argument to
796 `gdb_byte *'. Use `gdb_byte *' for byte buffers.
797 (dwarf2_build_frame_info): Use `gdb_byte *' for byte buffers.
798
799 2005-07-12 Mark Kettenis <kettenis@gnu.org>
800
801 * objc-lang.c (print_object_command): Use gdb_byte for c.
802 * arch-utils.c (legacy_extract_return_value): Use 'gdb_byte *' for
803 registers.
804
805 2005-07-11 Mark Kettenis <kettenis@gnu.org>
806
807 * bsd-kvm.c: Include <paths.h>.
808 (bsd_kvm_corefile): New variable.
809 (core_kd, bsd_kvm_paddr, bsd_kvm_supply_pcb, bsd_kvm_ops): Make
810 static.
811 (bsd_kvm_open): Set bsd_kvm_corefile.
812 (bsd_kvm_files_info): New function.
813 (bsd_kvm_add_target): Set to_files_info.
814
815 2005-07-07 Andreas Schwab <schwab@suse.de>
816
817 * observer.sh: Use different temporary file name depending on mode
818 of operation to avoid clash during parallel build.
819
820 2005-07-06 Bob Rossi <bob@brasko.net>
821
822 * fork-child.c (fork-inferior): Use accessor function for
823 inferior_io_terminal.
824 * infcmd.c (inferior_io_terminal): Make static.
825 (set_inferior_io_terminal): New function.
826 (get_inferior_io_terminal): Ditto.
827 (tty_command): Use accessor function.
828 (_initialize_infcmd): Add inferior_tty setshow variable.
829 (_initialize_infcmd): Remove tty command.
830 (_initialize_infcmd): Add a tty command that is an alias.
831 * inferior.h (set_inferior_io_terminal): New prototype.
832 (get_inferior_io_terminal): Ditto.
833 (new_tty_prefork): Add const qualifier to parameter.
834 * inflow.c (inferior_thisrun_terminal): Add const qualifier.
835 (new_tty_prefork): Add const qualifier to parameter.
836 * nto-procfs (procfs_create_inferior): Use accessor function.
837 (procfs_create_inferior): Add const qualifier to locals.
838 * win32-nat.c (child_create_inferior): Ditto.
839 * mi/mi-cmd-env.c (mi_cmd_inferior_tty_set): New function.
840 (mi_cmd_inferior_tty_set): Ditto.
841 * mi/mi-cmds.c (mi_cmds): Add inferior-tty-set and inferior-tty-show
842 * mi/mi-cmds.h (mi_cmd_inferior_tty_set): Add prototype.
843 (mi_cmd_inferior_tty_show): Ditto.
844
845 2005-07-06 Wu Zhou <woodzltc@cn.ibm.com>
846
847 * tui/tui-win.c (parse_scrolling_args): Fix SEGV error with invalid
848 scroll command.
849
850 2005-07-06 Wu Zhou <woodzltc@cn.ibm.com>
851
852 * f-exp.y (yyparse): Add code to support exponentiation expression.
853 (yylex): Add code to scan exponentiation operator.
854 * eval.c (evaluate_subexp_standard): Add support for BINOP_EXP.
855 * valarith.c (value_binop): Reset errno to 0 before calling pow
856 to do exponentiation operation.
857
858 2005-07-04 Mark Kettenis <kettenis@gnu.org>
859
860 * i386nbsd-nat.c (i386nbsd_supply_pcb): Cast to 'gdb_byte *' in
861 read_memory call.
862 * bsd-uthread.c (bsd_uthread_wait): Use gdb_byte for byte buffer.
863
864 * bsd-kvm.c (bsd_kvm_open): Properly cast sentinel in concat call.
865 * coffread.c (patch_type, process_coff_symbol): Likewise.
866 * corelow.c (core_open): Likewise.
867 * dwarf2read.c (dwarf_decode_lines, dwarf2_start_subfile):
868 * language.c (set_lang_str, set_type_str, set_range_str)
869 (set_case_str): Likewise.
870 * source.c (add_path, openp): Likewise.
871 * stabsread.c: Likewise.
872 * top.c (init_history): Likewise.
873 * utils.c (xfullpath): Likewise.
874 * value.c (lookup_internalvar): Likewise.
875 * cli/cli-cmds.c (cd_command): Likewise.
876 * cli/cli-dump.c (add_dump_command): Likewise.
877
878 * i387-tdep.c (print_i387_value, print_i387_ext, i387_tag): Change
879 type of first argument to `const gdb_byte *'.
880 (i387_print_float_info, i387_register_to_value)
881 (i387_value_to_register, i387_supply_fsave, i387_collect_fsave)
882 (i387_supply_fxsave, i387_collect_fxsave): Use gdb_byte for byte
883 buffers.
884
885 2005-07-04 Ben Elliston <bje@gnu.org>
886
887 * Makefile.in (RUNTEST): Set to runtest.
888
889 2005-07-03 Richard Henderson <rth@redhat.com>
890
891 * amd64-tdep.c (amd64_sse_type): New.
892 (amd64_register_info): Use it for xmm registers. Constify.
893 (amd64_register_type): Initialize amd64_sse_type as needed.
894
895 2005-07-03 Steve Ellcey <sje@cup.hp.com>
896
897 * configure.ac: Add arguments to AC_DEFINE calls.
898 * acconfig.h: Remove file.
899 * acinclude.m4 (AC_GNU_SOURCE): Remove definition.
900 * configure: Regenerate.
901 * config.in: Regenerate.
902
903 2005-07-01 Mark Kettenis <kettenis@gnu.org>
904
905 * mips-tdep.c (mips_insn16_frame_prev_register)
906 (mips_insn32_frame_prev_register, mips_stub_frame_prev_register):
907 Change type of last argument to `gdb_byte *'.
908
909 2005-07-01 Steve Ellcey <sje@cup.hp.com>
910
911 * MAINTAINERS (Write After Approval): Add myself.
912
913 2005-07-01 Mark Kettenis <kettenis@gnu.org>
914
915 * solib-svr4.c: Include "solib.h".
916 * Makefile.in (solib-svr4.o): Update dependencies.
917
918 2005-06-28 Mark Kettenis <kettenis@gnu.org>
919
920 * eval.c (evaluate_struct_tuple): Use strcmp instead of
921 DEPRECATED_STREQ.
922
923 2005-06-27 Michael Snyder <msnyder@redhat.com>
924
925 * config/mn10300/linux.mt: New file.
926 * configure.tgt: Add rule for am33 / mn10300-linux.
927 * mn10300-tdep.c, mn10300-tdep.h: Bump copyright year.
928
929 2005-06-27 Wu Zhou <woodzltc@cn.ibm.com>
930
931 * gdbtypes.c (get_discrete_bounds): Fix a comment typo.
932
933 2005-06-25 Mark Kettenis <kettenis@gnu.org>
934
935 * sol-thread.c (sol_thread_xfer_memory): Change type of second
936 argument to `gdb_byte *'.
937 (sol_thread_xfer_partial): Change type of readbuf and writebuf
938 arguments to `gdb_byte *'.
939
940 * mips-tdep.c (mips_xfer_register, mips_o32_return_value)
941 (mips_integer_to_address): Use gdb_byte instead of bfd_byte.
942
943 2005-06-24 Mark Kettenis <kettenis@gnu.org>
944
945 * ppcobsd-nat.c: Include "gdbcore.h", <sys/signal.h>,
946 <machine/frame.h>, <machine/pcb.h> and "bsd-kvm.h".
947 (ppcobsd_supply_pcb): New function.
948 (_initialize_ppcobsd_nat): Enable libkvm interface.
949 * Makefile.in (ppcobsd-nat.o): Update dependencies.
950 * config/powerpc/obsd.mh (NATDEPFILES): Add bsd-kvm.o.
951 (LOADLIBES): New variable.
952
953 2005-06-24 Corinna Vinschen <vinschen@redhat.com>
954
955 * i386-tdep.c (struct i386_frame_cache): Define sp_offset as LONGEST.
956
957 2005-06-23 Andreas Schwab <schwab@suse.de>
958
959 * gdb_ptrace.h: Fix typos when checking for PT_ATTACH. Reported
960 by Chad Harrington <harrington.chad@gmail.com>.
961
962 2005-06-22 Mark Kettenis <kettenis@gnu.org>
963
964 * remote.c (extended_remote_restart): Pass buffer in call to
965 xsnprintf instead of a pointer to the buffer.
966
967 2005-06-21 Andrew Cagney <cagney@gnu.org>
968
969 * MAINTAINERS: List GDB's Steering Committee as responsible for
970 GDB's maintenance.
971
972 2005-06-21 Mark Kettenis <kettenis@gnu.org>
973
974 * inf-ttrace.c (inf_ttrace_xfer_partial): Change type of readbuf
975 and writebuf arguments to `gdb_byte *'.
976
977 2005-06-21 Wu Zhou <woodzltc@cn.ibm.com>
978
979 * MAINTAINERS (Write After Approval): Add myself.
980
981 2005-06-20 Mark Kettenis <kettenis@gnu.org>
982
983 * hppabsd-tdep.c: Include "symtab.h", "objfiles.h", "target.h",
984 "value.h" and "elf/common.h".
985 (hppabsd_supply_gregset): Use `gdb_byte *' for byte buffer.
986 (hppabsd_find_global_pointer): New function.
987 (hppabsd_init_abi): Set TDEP->find_global_pointer to
988 hppabsd_find_global_pointer.
989 * Makefile.in (hppabsd-tdep.o): Update dependencies.
990
991 2005-06-12 Mark Kettenis <kettenis@gnu.org>
992
993 * hppa-tdep.c (hppa_pointer_to_address_hack): Remove function.
994 (unwind_command): Use %lx to print pointer.
995
996 2005-06-19 Mark Kettenis <kettenis@gnu.org>
997
998 * remote-sim.c (gdbsim_xfer_inferior_memory): Remove prototype.
999 Change type of second argument to`gdb_byte *'.
1000
1001 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
1002
1003 * mi/mi-cmd-stack.c (mi_cmd_stack_info_frame): New function.
1004
1005 * mi/mi-cmds.c (mi_cmds): Replace entry for -stack-info-frame.
1006 Make it use mi_cmd_stack_info_frame
1007
1008 * mi/mi-cmds.h (mi_cmd_stack_info_frame): New declaration.
1009
1010 2005-06-18 Mark Kettenis <kettenis@gnu.org>
1011
1012 * hppa-tdep.c (hppa_fallback_frame_cache): Don't error out if we
1013 can't find the bounds of the current function. Wrap some long
1014 lines in the process.
1015
1016 * regcache.c (regcache_raw_supply, regcache_raw_collect): Change
1017 type of last argument back to `void *'.
1018 * regcache.h (regcache_raw_supply, regcache_raw_collect): Likewise.
1019
1020 2005-06-18 Nick Roberts <nickrob@snap.net.nz>
1021
1022 * mi/mi-cmds.c (mi_cmds): Remove entry for -stack-info-frame.
1023
1024 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
1025 (mi_cmd_stack_info_depth): Don't test for stack.
1026 (mi_cmd_stack_select_frame): Make the argument mandatory.
1027 Don't test for stack.
1028
1029 2005-06-17 Wu Zhou <woodzltc@cn.ibm.com>
1030
1031 * remote.c (set_thread, remote_thread_alive): Replace sprintf
1032 call with xsnprintf.
1033 (remote_threads_extra_info, extended_remote_restart)
1034 (remote_check_symbols, store_register_using_P)
1035 (compare_sections_command): Ditto.
1036
1037 2005-06-16 David Ung <davidu@mips.com>
1038
1039 * MAINTAINERS (Write After Approval): Add self.
1040
1041 2005-06-15 Mark Kettenis <kettenis@gnu.org>
1042
1043 * hppa-hpux-nat.c (hppa_hpux_fetch_register)
1044 (hppa_hpux_store_register): Add casts in extract_unsigned_integer
1045 and store_usigned_integer calls.
1046
1047 2005-06-14 Nick Roberts <nickrob@snap.net.nz>
1048
1049 * mi/mi-main.c (mi_cmd_data_list_register_values): Remove test for
1050 registers now that mi_execute_command rewinds after an error.
1051
1052 2005-06-13 Mark Kettenis <kettenis@gnu.org>
1053
1054 * configure.ac: Use AC_CHECK_TYPES to check for uintptr_t.
1055 * configure, config.in: Regenerate.
1056
1057 * ser-tcp.c: Tweak comment.
1058 [!HAVE_SOCKLEN_T]: Typedef socklen_t.
1059 * configure.ac: Add check for socklen_t.
1060 * configure, config.in: Regenerate.
1061
1062 2005-06-13 H.J. Lu <hongjiu.lu@intel.com>
1063
1064 * config/i386/linux64.mt (TDEPFILES): Add symfile-mem.o.
1065
1066 2005-06-13 Richard Sandiford <richard@codesourcery.com>
1067
1068 * MAINTAINERS: Update my email address.
1069
1070 2005-06-13 Mark Mitchell <mark@codesourcery.com>
1071
1072 * corelow.c (core_open): Use bfd_fopen, not bfd_fdopenr.
1073 * exec.c (exec_file_attach): Likewise.
1074 * solib-frv.c (enable_break2): Likewise.
1075 * solib-svr4.c (enable_break): Likewise.
1076 * solib.c (solib_map_sections): Likewise.
1077 * symfile.c (symfile_bfd_open): Likewise.
1078
1079 2005-06-13 Daniel Jacobowitz <dan@codesourcery.com>
1080
1081 * Makefile.in (symfile.o): Add $(exec_h).
1082 * exec.h (exec_set_section_address): Add prototype.
1083 * exec.c (exec_set_section_address): New function.
1084 * symfile.c: Include "exec.h".
1085 (struct place_section_arg, place_section): New.
1086 (default_symfile_offsets): Call place_section for each
1087 section of a relocatable file.
1088
1089 2005-06-13 Joel Brobecker <brobecker@adacore.com>
1090
1091 * hppa-tdep.c (hppa_pc_requires_run_before_use): Really test all
1092 bits of top byte in address.
1093
1094 2005-06-13 Wu Zhou <woodzltc@cn.ibm.com>
1095
1096 * eval.c (evaluate_subexp_standard): Add code to check the target
1097 type of a TYPE_CODE_PTR value when we encounter a f77 undetermined
1098 arglist. If it is array, string or function, work on the target
1099 value instead.
1100
1101 2005-06-12 Daniel Jacobowitz <dan@codesourcery.com>
1102 Nick Roberts <nickrob@snap.net.nz>
1103
1104 * mi/mi-main.c (register_changed_p, get_register): Use
1105 get_selected_frame.
1106 (mi_execute_command): Call mi_out_rewind after an error.
1107
1108 2005-06-12 Mark Kettenis <kettenis@gnu.org>
1109
1110 * hppa-tdep.c (hppa_frame_prev_register)
1111 (hppa_fallback_frame_prev_register)
1112 (hppa_stub_frame_prev_register): Change type of last argument to
1113 `gdb_byte *'.
1114 (hppa_fetch_pointer_argument): Tweak comment. Use
1115 get_frame_register_unsigned instead of get_frame_register.
1116 (hppa32_return_value, hppa64_return_value): Change type of readbuf
1117 and writebuf arguments to `gdb_byte *'. Remove unecessary casts
1118 and local variables.
1119 (hppa_pseudo_register_read): Change type of last argument to
1120 `gdb_byte *'.
1121
1122 * m68k-tdep.c (m68k_frame_prev_register): Change type of last
1123 argument to `gdb_byte *'.
1124
1125 * arm-tdep.c (set_disassembly_style, _initialize_arm_tdep):
1126 Consitify regnames.
1127
1128 * alpha-tdep.c (alpha_sigtramp_frame_prev_register)
1129 (alpha_heuristic_frame_prev_register): Change type of last
1130 argument to `gdb_byte *'.
1131 (alpha_register_to_value, alpha_value_to_register)
1132 (alpha_extract_return_value, alpha_store_return_value): Likewise.
1133 * alpha-mdebug-tdep.c (alpha_mdebug_frame_prev_register): Likewise.
1134
1135 * arm-tdep.c (arm_prologue_prev_register)
1136 (arm_sigtramp_prev_register): Change type of last argument to
1137 `gdb_byte *'.
1138
1139 * m88k-tdep.c (m88k_frame_prev_register): Change type of last
1140 argument to `gdb_byte *'.
1141
1142 * vax-tdep.c (vax_frame_prev_register): Change type of last
1143 argument to `gdb_byte *'.
1144
1145 * sparc-tdep.c (sparc32_frame_prev_register): Change type of last
1146 argument to `gdb_byte *'.
1147 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_prev_register):
1148 Likewise.
1149 * sparcobsd-tdep.c (sparc32obsd_frame_prev_register): Likewise.
1150 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_prev_register):
1151 Likewise.
1152 * sparc64-tdep.c (sparc64_frame_prev_register): Likewise.
1153 * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_prev_register):
1154 Likewise.
1155 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_prev_register):
1156 Likewise.
1157 * sparc64obsd-tdep.c (sparc64obsd_frame_prev_register): Likewise.
1158 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_unwind):
1159 Likewise.
1160
1161 * amd64-tdep.c (amd64_frame_prev_register)
1162 (amd64_sigtramp_frame_prev_register): Change type of last argument
1163 to `gdb_byte *'.
1164
1165 2005-06-11 Mark Kettenis <kettenis@gnu.org>
1166
1167 * i386-tdep.c (i386_register_type): Return
1168 builtin_type_void_func_ptr for %eip and builtin_type_void_data_ptr
1169 for %ebp and %esp.
1170
1171 2005-06-10 Ben Elliston <bje@au.ibm.com>
1172
1173 * valprint.c (print_floating): Fix comment typo.
1174
1175 2005-06-09 Jeff Johnston <jjohnstn@redhat.com>
1176
1177 * ia64-tdep.c (ia64_pseudo_register_read): Use gdb_byte and
1178 protect libunwind references with HAVE_LIBUNWIND_IA64_H flag.
1179 (ia64_pseudo_register_write): Use gdb_byte to remove warning.
1180 (ia64_register_to_value, ia64_value_to_register): Ditto.
1181 (ia64_frame_prev_register): Ditto.
1182 (ia64_libunwind_frame_prev_register): Ditto.
1183 (ia64_sigtramp_frame_prev_register): Ditto.
1184 (ia64_libunwind_sigtramp_frame_prev_register): Ditto.
1185 (ia64_store_return_value): Ditto.
1186
1187 2005-06-08 Jeff Johnston <jjohnstn@redhat.com>
1188 David Mosberger <davidm@hpl.hp.com>
1189
1190 * ia64-tdep.c (KERNEL_START): New macro.
1191 (ia64_pseudo_register_read): Fix code to use libunwind to properly
1192 get the rse registers.
1193 (ia64_frame_this_id): Mark outermost frame with null frame id.
1194 (ia64_sigtramp_frame_prev_register): Fix up debug output.
1195 (ia64_access_rse_reg): New accessor function.
1196 (ia64_access_mem): Add special logic for accessing the
1197 kernel's unwind table.
1198 (getunwind_table): Fix for corefiles.
1199 (get_kernel_table): Fix to handle vDSO.
1200 (ia64_libunwind_frame_this_id): Check for null frame id and
1201 don't unwind past pc value of 0. Fix debugging output.
1202 (ia64_libunwind_sigtramp_frame_this_id): New function.
1203 (ia64_libunwind_sigtramp_frame_prev_register): Ditto.
1204 (ia64_libunwind_sigtramp_frame_sniffer): Ditto.
1205 (ia64_libunwind_sigtramp_frame_unwind): New unwinder.
1206 (ia64_unw_rse_accessors): New libunwind accessors.
1207 (ia64_libunwind_descr): Add ia64_unw_rse_accessors.
1208 (ia64_gdbarch_init)[HAVE_LIBUNWIND_IA64_H]: Use
1209 ia64_libunwind_sigtramp_frame_sniffer instead of
1210 ia64_sigtramp_frame_sniffer.
1211 * libunwind-frame.c (libunwind_frame_set_descr): Add
1212 special register accessors.
1213 (libunwind_frame_cache): Add special logic to check for
1214 0 pc value. Check for a signal trampoline frame.
1215 (libunwind_frame_this_id): Check if libunwind_frame_cache
1216 returns NULL.
1217 (libunwind_frame_prev_register): Check for NULL cache.
1218 (libunwind_frame_base_address): Ditto.
1219 (libunwind_sigtramp_frame_sniffer): New function.
1220 (libunwind_get_reg_special): Ditto.
1221 (libunwind_load): Add unw_is_signal_frame support.
1222 * libunwind-frame.h (struct libunwind_descr): Add special_accessors
1223 field.
1224 (libunwind_sigtramp_frame_sniffer): New prototype.
1225 (libunwind_get_reg_special): Ditto.
1226
1227 2005-06-08 Wu Zhou <woodzltc@cn.ibm.com>
1228
1229 * expression.h (enum exp_opcode): Fix a comment typo.
1230
1231 2005-06-06 Manoj Iyer <manjo@austin.ibm.com>
1232
1233 * solib-svr4.c (struct lm_info): Change type of 'lm' to gdb_byte.
1234 (elf_locate_base): Converted types of buf, bufend, pbuf, to gdb_byte.
1235 (first_link_map_member): Converted type of r_map_buf to gdb_byte.
1236 (open_symbol_file_object): Converted type of l_name_buf to gdb_byte.
1237 (svr4_fetch_objfile_link_map): Converted type of l_name_buf to
1238 gdb_byte.
1239
1240 2005-06-04 Richard Sandiford <rsandifo@nildram.co.uk>
1241
1242 * MAINTAINERS: Update my email address.
1243
1244 2005-06-03 Joel Brobecker <brobecker@adacore.com>
1245
1246 * symmisc.c (dump_symtab_1): Renamed from dump_symtab.
1247 (dump_symtab): New function.
1248
1249 2005-04-02 Joel Brobecker <brobecker@adacore.com>
1250
1251 * exceptions.h: Include ui-out.h.
1252 (ui_out): Remove declaration.
1253 * Makefile.in (exceptions_h): Add dependency on ui-out.h.
1254
1255 2005-05-30 Andrew Cagney <cagney@gnu.org>
1256
1257 * MAINTAINERS (Can Commit Without Approval): New section,
1258 previously burried under "Target Instruction Set Architectures".
1259 Note that cagney "can commit" changes to powerpc-linux.
1260
1261 * MAINTAINERS: Drop architecture and target vectors.
1262
1263 2005-05-29 Eli Zaretskii <eliz@gnu.org>
1264
1265 * config/djgpp/fnchange.lst: Add mappings for linux-ppc-low.c and
1266 linux-ppc64-low.c.
1267
1268 2005-05-28 Bob Rossi <bob@brasko.net>
1269 * Makefile.in (SUBDIR_MI_OBS, SUBDIR_MI_SRCS): Add mi-common.
1270 (gdb/mi/ headers): Add mi_common_h.
1271 (breakpoint.o, infrun.o): Add dependencies mi_common_h.
1272 * breakpoint.c (include): Add include 'mi/mi-common.h'.
1273 (print_it_typical): Use async_reason_lookup.
1274 (watchpoint_check): Ditto.
1275 * infrun.c (include): Add include 'mi/mi-common.h'.
1276 (print_stop_reason): Use async_reason_lookup.
1277 * mi/mi-common.h: New file.
1278 * mi/mi-common.c: Ditto.
1279
1280 2005-05-29 Joel Brobecker <brobecker@adacore.com>
1281
1282 * alpha-tdep.c (alpha_next_pc): Use correct register number
1283 for floating-point branch instructions.
1284
1285 2005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
1286 Jonathan Larmour <jifl@eCosCentric.com>
1287
1288 PR backtrace/1760
1289 * frame.c (backtrace_limit): Change type to int.
1290 (get_prev_frame): Update backtrace limit support.
1291 (_initialize_frame): Use add_setshow_integer_cmd for backtrace_limit.
1292
1293 2005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
1294
1295 * configure.tgt (powerpc64-*-linux*): Enable gdbserver.
1296 * regformats/reg-ppc64.dat: New file.
1297
1298 2005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
1299
1300 From Wu Zhou <woodzltc@cn.ibm.com>:
1301 * remote.c (struct gdb_ext_thread_info): Fix a comment typo.
1302 (remote_unpack_thread_info_response): Likewise.
1303
1304 2005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
1305
1306 * cli/cli-setshow.c (do_setshow_command): Partially revert previous
1307 change. Cast to "char **" for var_string.
1308
1309 2005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
1310
1311 * cp-name-parser.y (parse_escape): Revert previous change. Return
1312 the input character by default.
1313
1314 2005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
1315
1316 * dwarf2-frame.c (dwarf2_frame_prev_register): Use gdb_byte.
1317 * i386-linux-nat.c (fetch_register, store_register, supply_gregset)
1318 (fill_gregset): Likewise.
1319 * i386-tdep.c (i386_frame_prev_register)
1320 (i386_sigtramp_frame_prev_register): Likewise.
1321 * linux-nat.c (linux_nat_xfer_memory, linux_nat_make_corefile_notes):
1322 Likewise.
1323 * linux-thread-db.c (thread_db_xfer_memory): Likewise.
1324 * remote.c (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint):
1325 Likewise.
1326 * target.c (debug_to_insert_hw_breakpoint)
1327 (debug_to_remove_hw_breakpoint, update_current_target): Likewise.
1328
1329 2005-05-28 Hans-Peter Nilsson <hp@axis.com>
1330
1331 * MAINTAINERS: Change cris-elf state to non-broken.
1332 * cp-name-parser.y (parse_escape): Initialize target_char to zero.
1333
1334 2005-05-27 Orjan Friberg <orjanf@axis.com>
1335
1336 * cris-tdep.c (crisv32_scan_prologue): Add.
1337 (cris_frame_unwind_cache, cris_skip_prologue): Call
1338 crisv32_scan_prologue when debugging CRISv32.
1339
1340 2005-05-27 Orjan Friberg <orjanf@axis.com>
1341
1342 * cris-tdep.c (cris_sigtramp_start, cris_rt_sigtramp_start)
1343 (cris_frame_prev_register, cris_sigtramp_frame_prev_register)
1344 (cris_return_value): Use gdb_byte for byte buffers.
1345 (struct cris_frame_unwind, struct cris_frame_base): Fix formatting.
1346
1347 2005-05-26 Chris Demetriou <cgd@netbsd.org>
1348
1349 * MAINTAINERS (Write After Approval): Remove myself.
1350
1351 2005-05-27 Andrew Cagney <cagney@gnu.org>
1352
1353 * jv-lang.c (get_java_utf8_name): Add cast.
1354 (evaluate_subexp_java): Use gdb_byte for buffers.
1355 * jv-valprint.c (java_value_print, java_value_print): Use gdb_byte
1356 for buffers.
1357 * scm-lang.c (scm_get_field, scm_unpack)
1358 (scm_evaluate_string): Use gdb_byte for buffers.
1359 (scm_lookup_name): Add cast.
1360 * scm-valprint.c (scm_scmval_print, scm_scmval_print): Use
1361 gdb_byte for buffers.
1362 * tui/tui.h (tui_get_command_dimension): Make parameters unsigned.
1363 * tui/tui.c (tui_get_command_dimension): Make parameters unsigned.
1364 * value.h (check_field): Change "name" to a string.
1365 * valops.c (check_field): Change "name" to a string.
1366 * scm-lang.h (scm_parse): Use gdb_byte for buffers.
1367 * source.c (get_current_source_symtab_and_line)
1368 (set_current_source_symtab_and_line): Initialize all fields of sal
1369 structures.
1370 * cli/cli-cmds.c (list_command): Use gdb_byte for buffers.
1371
1372 2005-05-26 Andrew Cagney <cagney@gnu.org>
1373
1374 * command.h (add_setshow_integer_cmd): Make VAR an integer.
1375 * cli/cli-decode.c (add_setshow_integer_cmd): Update to match.
1376 * valops.c (value_string): Add a cast.
1377 * eval.c (evaluate_subexp_standard): Use gdb_byte for byte buffers.
1378 * breakpoint.c (re_enable_breakpoints_in_shlibs): Use gdb_byte for
1379 byte buffers.
1380 * target.h (struct target_ops): For to_insert_hw_breakpoint and
1381 to_remove_hw_breakpoint use gdb_byte for byte buffer parameters.
1382 * breakpoint.h (struct bp_location): Make shadow_contents a
1383 gdb_byte buffer.
1384 * cli/cli-setshow.c (do_setshow_command): Fix cast.
1385 * cli/cli-dump.c (restore_section_callback)
1386 (restore_binary_file): Use gdb_byte for byte buffers.
1387 * proc-service.c (ps_ptwrite, ps_ptread, ps_pdwrite): Fix casts.
1388 (ps_xfer_memory): Use gdb_byte for byte buffers.
1389 * tracepoint.c (mem2hex): Use gdb_byte for byte buffers, and char
1390 for string buffers.
1391 * ser-tcp.c (net_open): Make len a socklen_t.
1392
1393 2005-05-24 Andrew Cagney <cagney@gnu.org>
1394
1395 * rs6000-tdep.c (ppc_supply_reg, ppc_collect_reg): Use gdb_byte
1396 for byte buffers.
1397 (rs6000_fetch_pointer_argument): Use get_frame_register_unsigned.
1398 (rs6000_software_single_step, sstep_breaks, skip_prologue)
1399 (rs6000_push_dummy_call, rs6000_push_dummy_call)
1400 (rs6000_push_dummy_call, rs6000_push_dummy_call)
1401 (rs6000_register_to_value, e500_pseudo_register_read)
1402 (rs6000_store_return_value, e500_pseudo_register_write)
1403 (rs6000_frame_prev_register, rs6000_extract_return_value): Ditto.
1404 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call)
1405 (ppc_sysv_abi_push_dummy_call, do_ppc_sysv_return_value)
1406 (do_ppc_sysv_return_value, ppc_sysv_abi_return_value)
1407 (ppc_sysv_abi_broken_return_value)
1408 (ppc64_sysv_abi_push_dummy_call, ppc64_sysv_abi_push_dummy_call)
1409 (ppc64_sysv_abi_push_dummy_call, ppc64_sysv_abi_return_value)
1410 (ppc64_sysv_abi_return_value, ppc64_sysv_abi_return_value): Ditto.
1411 * ppc-linux-tdep.c (ppc_linux_in_sigtramp)
1412 (ppc_linux_at_sigtramp_return_path)
1413 (ppc_linux_skip_trampoline_code)
1414 (ppc_linux_memory_remove_breakpoint, ppc_linux_return_value):
1415 * rs6000-tdep.c (rs6000_value_to_register)
1416 (rs6000_register_to_value): Ditto.
1417 * ppc-tdep.h (ppc_sysv_abi_return_value)
1418 (ppc64_sysv_abi_return_value, ppc_sysv_abi_broken_return_value)
1419 (ppc_linux_memory_remove_breakpoint): Ditto.
1420
1421 2005-05-24 Ulrich Weigand <uweigand@de.ibm.com>
1422
1423 * s390-tdep.c (s390_frame_prev_register): Change type of last
1424 argument to 'gdb_byte *'.
1425 (s390_stub_frame_prev_register): Likewise.
1426 (s390_sigtramp_frame_prev_register): Likewise.
1427
1428 2005-05-24 Kris Warkentin <kewarken@qnx.com>
1429
1430 * config/i386/nto.mt: Remove remote-nto.o.
1431
1432 2005-05-24 Orjan Friberg <orjanf@axis.com>
1433
1434 * config/djgpp/fnchange.lst: Add mappings for
1435 gdbserver/linux-cris-low.c and gdbserver/linux-crisv32-low.c.
1436
1437 2005-05-23 Michael Snyder <msnyder@redhat.com>
1438 From Nora Pan <qpan@mvista.com>
1439 * linux-nat.c (read_mapping): Don't stumble over entries in
1440 mapping that have name but zero inode.
1441
1442 2005-05-23 Andrew Cagney <cagney@gnu.org>
1443
1444 * target.h (child_xfer_memory): Use gdb_byte for byte buffer
1445 parameters.
1446 * inftarg.c (child_xfer_partial): Update.
1447 * wince.c (child_xfer_memory): Update.
1448 * win32-nat.c (child_xfer_memory): Update.
1449 * rs6000-nat.c (child_xfer_memory): Update.
1450 * infptrace.c (child_xfer_memory): Update.
1451 * dcache.c (struct dcache_block): Use gdb_byte for the byte
1452 buffers.
1453 (dcache_read_line, dcache_xfer_memory, dcache_poke_byte)
1454 (dcache_peek_byte, dcache_write_line): Ditto.
1455
1456 * auxv.h (target_auxv_read, procfs_xfer_auxv)
1457 (target_auxv_parse): Use gdb_byte for byte buffer parameters.
1458 * auxv.c (target_auxv_read, procfs_xfer_auxv, target_auxv_parse)
1459 (target_auxv_search, fprint_target_auxv): Update.
1460
1461 2005-05-23 Orjan Friberg <orjanf@axis.com>
1462
1463 * cris-tdep.c: Tweak values for cris-mode.
1464
1465 2004-05-23 Joel Brobecker <brobecker@adacore.com>
1466
1467 * mdebugread.c (record_minimal_symbol): New procedure.
1468 (parse_partial_symbols): Use record_minimal_symbol to record
1469 the new minimal symbols instead of prim_record_minimal_symbol
1470 and prim_record_minimal_symbol_and_info.
1471
1472 2005-05-22 Mark Kettenis <kettenis@gnu.org>
1473
1474 * NEWS: Mention OpenBSD/arm as a new native configuration.
1475
1476 * armnbsd-nat.c: Include "gdb_string.h" and "inf_ptrace.h".
1477 Reorder includes. Don't require FETCH_INFERIOR_REGISTERS to be
1478 defined.
1479 (armnbsd_fetch_registers): Rename from armnbsd_fetch_registers.
1480 Make static.
1481 (armnbsd_store_registers): Rename from armnbsd_store_registers.
1482 Make static.
1483 (_initialize_arm_netbsd_nat): Construct and add target vector.
1484 * Makefile.in (armnbsd-nat.o): Update dependencies.
1485 * config/arm/nbsdaout.mh (NATDEPFILES): Remove infptrace.o and
1486 intarg.o, add inf-ptrace.o.
1487 (NAT_FILE): Set to solib.h.
1488 * config/arm/nbsdelf.mh (NATDEPFILES): Remove infptrace.o and
1489 inftarg.o, add inf-ptrace.o.
1490 (NAT_FILE): Remove.
1491
1492 * arm-tdep.c (arm_extract_return_value, arm_store_return_value):
1493 Change type of last argument to `gdb_byte *'.
1494
1495 * configure.host: Add arm*-*-openbsd*.
1496 * configure.tgt: Add arm*-*-openbsd*.
1497
1498 2005-05-22 Andrew Cagney <cagney@gnu.org>
1499
1500 * frame.h (frame_register_unwind, frame_unwind_register)
1501 (get_frame_register, frame_register, put_frame_register)
1502 (get_frame_memory, safe_frame_unwind_memory)
1503 (frame_register_read): Use gdb_byte for byte buffer parameters.
1504 * trad-frame.h (trad_frame_get_register)
1505 (frame_get_prev_register): Ditto.
1506 * frame-unwind.h (frame_prev_register_ftype): Ditto.
1507 * frame.c (frame_pop, frame_register, frame_unwind_register)
1508 (get_frame_register, frame_unwind_register_signed)
1509 (frame_unwind_register_unsigned, frame_unwind_unsigned_register)
1510 (frame_register_read, get_frame_memory): Update.
1511 * trad-frame.c (trad_frame_get_prev_register): Update.
1512 (trad_frame_get_register): Update.
1513 * gdbcore.h (deprecated_read_memory_nobpt, read_memory): Ditto.
1514 * breakpoint.c (deprecated_read_memory_nobpt): Update.
1515 * corefile.c (read_memory): Update.
1516 * tramp-frame.c (tramp_frame_prev_register): Update.
1517 * valops.c (value_assign): Update.
1518 * sentinel-frame.c (sentinel_frame_prev_register): Update.
1519 * std-regs.c (value_of_builtin_frame_fp_reg)
1520 (value_of_builtin_frame_pc_reg): Update.
1521 * infcmd.c (default_print_registers_info): Update
1522 * dummy-frame.c (dummy_frame_prev_register): Update.
1523 * findvar.c (value_of_register, value_from_register): Update.
1524 * tui/tui-regs.c (tui_register_format, tui_get_register): Update.
1525 * mi/mi-main.c (register_changed_p, get_register): Update.
1526
1527 2005-05-20 Eli Zaretskii <eliz@gnu.org>
1528
1529 * configure.ac: Add snprintf and vsnprintf to AC_CHECK_DECLS. Fix
1530 bad description of _MSE_INT_H that caused each word in config.in
1531 to be enclosed in [].
1532 * configure, config.in: Regenerate.
1533
1534 2005-05-20 Joel Brobecker <brobecker@adacore.com>
1535
1536 * alpha-tdep.c (fp_register_zero_p): New function.
1537 (fp_register_sign_bit): New function.
1538 (alpha_next_pc): Add support for floating-point control instructions.
1539
1540 2005-05-19 Andrew Cagney <cagney@gnu.org>
1541
1542 * defs.h (extract_signed_integer, extract_unsigned_integer)
1543 (extract_long_unsigned_integer, extract_typed_address)
1544 (store_signed_integer, store_unsigned_integer)
1545 (store_typed_address): Use gdb_byte for byte buffer parameters.
1546 (push_bytes, push_word): Delete declaration.
1547 * valops.c (push_bytes, push_word): Delete function.
1548 * findvar.c (extract_signed_integer, extract_unsigned_integer)
1549 (extract_typed_address, store_signed_integer)
1550 (store_unsigned_integer): Update.
1551
1552 * regcache.h (regcache_raw_read, regcache_raw_write)
1553 (regcache_raw_read_part, regcache_raw_write_part)
1554 (regcache_cooked_read_part, regcache_cooked_write_part)
1555 (regcache_cooked_read, regcache_cooked_write)
1556 (regcache_raw_supply, regcache_raw_collect)
1557 (regcache_cooked_read_ftype, regcache_save, regcache_restore)
1558 (deprecated_read_register_gen, deprecated_write_register_gen)
1559 (deprecated_read_register_bytes, deprecated_write_register_bytes)
1560 (deprecated_grub_regcache_for_registers): Use gdb_byte for byte
1561 buffer parameters.
1562 * ia64-tdep.c (ia64_extract_return_value): Update.
1563 * frame.c (do_frame_register_read): Update.
1564 * regcache.c (deprecated_grub_regcache_for_registers)
1565 (struct regcache, regcache_save, regcache_restore, regcache_cpy)
1566 (do_cooked_read, regcache_xmalloc, register_buffer)
1567 (deprecated_read_register_bytes, regcache_raw_read)
1568 (regcache_raw_read_signed, regcache_raw_read_unsigned)
1569 (deprecated_read_register_gen, regcache_cooked_read)
1570 (regcache_cooked_read_signed, regcache_cooked_read_unsigned)
1571 (deprecated_write_register_gen, regcache_cooked_write)
1572 (deprecated_write_register_bytes, regcache_raw_read_part)
1573 (regcache_raw_write_part, regcache_cooked_read_part)
1574 (regcache_cooked_write_part, read_register, regcache_raw_supply):
1575
1576 2005-05-17 Corinna Vinschen <vinschen@redhat.com>
1577
1578 * MAINTAINERS: Undelete v850.
1579 * Makefile.in: Re-add v850-tdep.o dependencies.
1580 * configure.tgt: Re-add v850.
1581 * v850-tdep.c: Reorder code slightly. Add register number enumerator.
1582 (struct v850_frame_cache): New structure.
1583 (v850_processor_type_table): Remove. Move functionality into
1584 v850_register_name, v850e_register_name and v850_gdbarch_init.
1585 (v850_register_name): New function.
1586 (v850e_register_name): New function.
1587 (struct prologue_info): Remove definition.
1588 (v850_register_type): New function.
1589 (v850_type_is_scalar): New function.
1590 (v850_use_struct_convention): Align to gcc behaviour.
1591 (v850_handle_prepare): Renamed from handle_prepare. Change third
1592 parameter to struct v850_frame_cache *.
1593 (v850_handle_pushm): Renamed from handle_pushm. Change third parameter
1594 to struct v850_frame_cache *.
1595 (v850_is_save_register): New function to evaluate if a register is
1596 caller-save.
1597 (v850_analyze_prologue): Replace v850_scan_prologue. Change to support
1598 new frame code.
1599 (v850_init_extra_frame_info): Remove.
1600 (v850_frame_chain): Remove.
1601 (v850_find_callers_reg): Remove.
1602 (v850_skip_prologue): Make static.
1603 (v850_pop_frame): Remove.
1604 (v850_frame_align): New function.
1605 (v850_push_dummy_call): Replace v850_push_arguments.
1606 (v850_push_return_address): Remove.
1607 (v850_extract_return_value): New function.
1608 (v850_store_return_value): New function.
1609 (v850_return_value): New function.
1610 (v850_frame_saved_pc): Remove.
1611 (v850_breakpoint_from_pc): New function.
1612 (v850_alloc_frame_cache): New function.
1613 (v850_fix_call_dummy): Remove.
1614 (v850_frame_cache): New function.
1615 (v850_target_architecture_hook): Remove.
1616 (v850_frame_prev_register): New function.
1617 (v850_frame_this_id): New function.
1618 (v850_frame_unwind): New structure.
1619 (v850_frame_sniffer): New function.
1620 (v850_unwind_sp): New function.
1621 (v850_unwind_pc): New function.
1622 (v850_unwind_dummy_id): New function.
1623 (v850_frame_base_address): New function.
1624 (v850_frame_base): New structure.
1625 (v850_gdbarch_init): New function.
1626 * config/v850/v850.mt: Undelete. Drop TM_FILE.
1627
1628 2005-05-17 Daniel Jacobowitz <dan@codesourcery.com>
1629 Dennis Brueni <dennis@slickedit.com>
1630
1631 * stack.c (print_frame): In MI mode, output a fullname attribute
1632 with the stack frame.
1633
1634 2005-05-16 Mark Kettenis <kettenis@gnu.org>
1635
1636 * corelow.c (core_xfer_partial): Change type of readbuf and
1637 writebuf to `gdb_byte *'.
1638 * sparc-nat.c (sparc_xfer_wcookie, sparc_xfer_partial): Change
1639 type of readbuf and writebuf to `gdb_byte *'.
1640 * bsd-uthread.c (bsd_uthread_xfer_partial): Change type of readbuf
1641 and writebuf to `gdb_byte *'.
1642 * inf-ptrace.c (inf_ptrace_xfer_partial): Change type of readbuf
1643 and writebuf to `gdb_byte *'.
1644 * bsd-kvm.c (bsd_kvm_xfer_memory): Replace.
1645 (bsd_kvm_xfer_partial): New function.
1646 (bsd_kvm_add_target): Set to_xfer_partial instead of
1647 to_xfer_memory.
1648 * bfd-target.c (target_bfd_xfer_partial): Change type of readbuf
1649 and writebuf to `gdb_byte *'.
1650 * target.c (deprecated_debug_xfer_memory): Remove prototype.
1651 (deprecated_debug_xfer_memory): Change type of second argument to
1652 `gdb_byte *'.
1653 * remote.c (remote_xfer_memory): Remove prototype.
1654 (remote_xfer_memory): Change type of second argument to `gdb_byte
1655 *'.
1656 (remote_xfer_partial): Change type of readbuf and writebuf to
1657 `gdb_byte *'.
1658
1659 * config/sparc/fbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
1660 * config/sparc/fbsd.mh (NATDEPFILES): Remove solib.o, solib-svr4.o
1661 and solib-legacy.o.
1662 (NAT_FILE): Remove.
1663
1664 2005-05-16 Ulrich Weigand <uweigand@de.ibm.com>
1665
1666 * s390-tdep.c (s390_return_value): Remove unnecessary casts.
1667 (s390_breakpoint_from_pc): Change type of return value and
1668 'breakpoint' to const gdb_byte *.
1669
1670 2005-05-16 Ulrich Weigand <uweigand@de.ibm.com>
1671
1672 * s390-tdep.c (s390_pseudo_register_read, s390_pseudo_register_write):
1673 Change type of 'buf' argument to gdb_byte *.
1674 (s390x_pseudo_register_read, s390x_pseudo_register_write): Likewise.
1675 (s390_register_to_value): Change type of 'out' to gdb_byte *, change
1676 type of 'in' to gdb_byte [].
1677 (s390_value_to_register): Change type of 'in' to gdb_byte *, change
1678 type of 'out' to gdb_byte [].
1679 (s390_return_value): Change type of 'out' and 'in' to gdb_byte *.
1680
1681 2005-05-16 Andrew Cagney <cagney@gnu.org>
1682
1683 * target.h (target_read_partial, target_write_partial)
1684 (do_xfer_memory, xfer_memory, target_read, target_write)
1685 (get_target_memory): For buffers, change "void*" to gdb_byte.
1686 (struct target_ops): Ditto for to_xfer_partial and
1687 deprecated_xfer_memory.
1688 * dcache.h (dcache_xfer_memory): Ditto.
1689 * target.c (default_xfer_partial, target_read_partial)
1690 (target_write_partial, target_read, target_write)
1691 (do_xfer_memory, update_current_target, get_target_memory): Update.
1692 (target_read_string): Change buf to a gdb_byte.
1693 * dcache.c (dcache_xfer_memory): Update.
1694 * exec.c (xfer_memory): Make buffer type to gdb_byte.
1695 * mem-break.c (default_memory_insert_breakpoint): Remove cast.
1696 * disasm.c (dis_asm_read_memory): Remove cast, use gdb_byte.
1697
1698 2005-05-16 Mark Kettenis <kettenis@gnu.org>
1699
1700 * sol-thread.c (ignore): Change last argument to `gdb_byte.'
1701
1702 * config/i386/fbsd.mt (DEPRECATED_TM_FILE): Remove.
1703 * config/i386/fbsd64.mt (DEPRECATED_TM_FILE): Remove.
1704 * config/i386/nbsd.mt (DEPRECATED_TM_FILE): Remove.
1705 * config/i386/nbsd64.mt (DEPRECATED_TM_FILE): Remove.
1706 * config/sparc/nbsd.mt (DEPRECATED_TM_FILE): Remove.
1707 * config/sparc/nbsd64.mt (DEPRECATED_TM_FILE): Remove.
1708
1709 * observer.sh: Quote $DJGPP.
1710
1711 2005-05-15 Daniel Jacobowitz <dan@codesourcery.com>
1712
1713 * Makefile.in (.y.c): Update ylwrap invocation.
1714
1715 2005-05-15 Daniel Jacobowitz <dan@codesourcery.com>
1716
1717 * linux-nat.c (child_follow_fork, linux_handle_extended_wait)
1718 (lin_lwp_attach_lwp, linux_nat_attach, wait_lwp, child_wait)
1719 (linux_nat_wait, kill_wait_callback): Use my_waitpid.
1720 (_initialize_linux_nat, lin_thread_get_thread_signals): Use
1721 SA_RESTART.
1722
1723 2005-05-14 Mark Kettenis <kettenis@gnu.org>
1724
1725 * configure.tgt (vax-*-openbsd*): Set gdb_target to obsd.
1726 * config/vax/obsd.mt (TDEPFILES): New file.
1727
1728 * i386-tdep.c (i386_supply_gregset, i386_collect_gregset): Use
1729 gdb_byte instead of bfd_byte.
1730
1731 * mips-tdep.c (mips_pseudo_register_read)
1732 (mips_pseudo_register_write): Change type of last argument to
1733 `gdb_byte *'.
1734 (mips_register_to_value, mips_value_to_register): Change type of
1735 last argument to `gdb_byte *'. Remove casts that are no longer
1736 needed.
1737 (mips_fetch_instruction, fetch_mips_16): Use gdb_byte for buf.
1738 (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call)
1739 (mips_o32_push_dummy_call, mips_o32_return_value): Use `const
1740 gdb_byte *' for val and gdb_byte for valbuf. Remove casts that
1741 are no longer needed.
1742 (mips_eabi_return_value, mips_n32n64_return_value)
1743 (mips_o32_return_value, mips_o64_return_value): Change type of
1744 readbuf and writebuf arguments to `gdb_byte *'.
1745 (mips_read_fp_register_single): Change type of last argument to
1746 `gdb_byte *'. Use `gdb_byte *' for raw_buffer.
1747 (mips_read_fp_register_double): Change type of last argument to
1748 `gdb_byte *'.
1749 (mips_print_fp_register): Use `gdb_byte *' for raw_buffer. Remove
1750 casts that are no longer needed.
1751 (mips_print_register, print_gp_register_row): Use gdb_byte for
1752 raw_buffer. Remove casts that are no longer needed.
1753 (mips_single_step_through_delay): Use gdb_byte for buf.
1754 (mips_breakpoint_from_pc): Change return type to `const gdb_byte
1755 *'. Use gdb_byte for mips16_big_breakpoint, big_breakpoint,
1756 pmon_big_breakpoint, idt_big_breakpoint, mips16_little_breakpoint,
1757 little_breakpoint, pmon_little_breakpoint and
1758 idt_little_breakpoint.
1759 (mips_integer_to_address): Use `gdb_byte *' for tmp.
1760
1761 * config/m68k/obsd.mt (DEPRECATED_TM_FILE): Remove.
1762 * config/i386/obsd.mt (DEPRECATED_TM_FILE): Remove.
1763 * config/i386/obsd64.mt (DEPRECATED_TM_FILE): Remove.
1764 * config/pa/obsd.mt (DEPRECATED_TM_FILE): Remove.
1765 * config/sparc/obsd.mt (DEPRECATED_TM_FILE): Remove.
1766 * config/sparc/obsd64.mt (DEPRECATED_TM_FILE): Remove.
1767
1768 * sparc-tdep.c (sparc_fetch_instruction, sparc_fetch_wcookie): Use
1769 gdb_byte for buf.
1770 (sparc32_pseudo_register_read, sparc32_pseudo_register_write):
1771 Change type of last argument to `gdb_byte *'. Remove casts that
1772 are no longer needed.
1773 (sparc32_push_dummy_code, sparc32_store_arguments): Use gdb_byte
1774 for buf.
1775 (sparc_breakpoint_from_pc): Change return type to `const gdb_byte
1776 *'. Use gdb_byte for break_insn.
1777 (sparc32_extract_return_value, sparc32_store_return_value): Change
1778 type of last argument to `gdb_byte *'. Use gdb_byte for buf.
1779 (sparc32_return_value): Change type of readbuf and writebuf
1780 arguments to `gdb_byte *'.
1781 (sparc_software_single_step): Use gdb_byte for npc_save and
1782 nnpc_save.
1783 (sparc_supply_rwindow, sparc_collect_rwindow): Use gdb_byte for
1784 buf.
1785 (sparc32_supply_gregset, sparc32_collect_gregset)
1786 (sparc32_supply_fpregset, sparc32_collect_fpregset): Use `gdb_byte
1787 *' for regs.
1788 * sparc64-tdep.c (sparc64_pseudo_register_read)
1789 (sparc64_pseudo_register_write): Change type of last argument to
1790 `gdb_byte *'. Remove casts that are no longer needed.
1791 (sparc64_store_floating_fields, sparc64_extract_floating_fields):
1792 Change type of valbuf argument to `gfd_byte *'.
1793 (sparc64_store_arguments): Use `gdb_byte *' for valbuf. use
1794 gdb_byte for buf.
1795 (sparc64_extract_return_value, sparc64_store_return_value): Change
1796 type of last argument to `gdb_byte *'. Use gdb_byte for buf.
1797 (sparc64_return_value): Change type of readbuf and writebuf
1798 arguments to `gdb_byte *'.
1799 (sparc64_supply_gregset, sparc64_collect_gregset)
1800 (sparc64_supply_fpregset, sparc64_collect_fpregset): Use `gdb_byte
1801 *' for regs.
1802
1803 * m68k-tdep.c (m68k_local_breakpoint_from_pc): Change return type
1804 to `const gdb_byte *'. Use gdb_byte for break_insn.
1805 (m68k_register_to_value): Change type of last argument to
1806 `gdb_byte *'. Use gdb_byte for from.
1807 (m68k_value_to_register): Change type of last argument to
1808 `gdb_byte *'. Use gdb_byte for to.
1809 (m68k_extract_return_value): Change type of last argument to
1810 `gdb_byte *'. Use gdb_byte for buf. Remove unnecessary cast.
1811 (m68k_svr4_extract_return_value): Change type of last argument to
1812 `gdb_byte *'. Use gdb_byte for buf.
1813 (m68k_store_return_value): Change type of last argument to
1814 `gdb_byte *'. Remove unnecessary cast.
1815 (m68k_svr4_store_return_value): Change type of last argument to
1816 `gdb_byte *'. Use gdb_byte for buf.
1817 (m68k_return_value, m68k_svr4_return_value): Change type of
1818 readbuf and writebuf arguments to `gdb_byte *'.
1819 (m68k_push_dummy_call, m68k_unwind_pc, m68k_frame_cache)
1820 (m68k_unwind_dummy_id): Use gdb_byte for buf.
1821 (m68k_get_longjmp_target): Use `gdb_byte *' for buf.
1822 * m68kbsd-tdep.c (m68kbsd_supply_fpregset)
1823 (m68kbsd_supply_gregset): Use `gdb_byte *' for regs.
1824
1825 * m88k-tdep.c (m88k_breakpoint_from_pc): Change return type to
1826 `const gdb_byte *'. Use gdb_byte for break_insn.
1827 (m88k_return_value): Change type of readbuf and
1828 writebuf arguments to `gdb_byte *'. Use gdb_byte for buf.
1829 (m88k_supply_gregset): Use `gdb_byte *' for regs.
1830
1831 * vax-tdep.c (vax_return_value): Change type of readbuf and
1832 writebuf arguments to `gdb_byte *'.
1833
1834 * amd64-tdep.c (amd64_return_value): Change type of readbuf and
1835 writebuf arguments to `gdb_byte *'. Remove now redundant casts.
1836 * i386-tdep.c (i386_return_value): Change type of readbuf and
1837 writebuf arguments to `gdb_byte *'.
1838 (i386_pseudo_register_read, i386_pseudo_register_write): Change
1839 type of last argument to `gdb_byte *'.
1840 (i386_register_to_value, i386_value_to_register): Change type of
1841 last argument to `gdb_byte *'. Simplify function a bit.
1842 * i387-tdep.h (i387_value_to_register, i387_register_to_value):
1843 Change type of last argument to `gdb_byte *'.
1844 * i387-tdep.c: Likewise.
1845
1846 2005-05-13 Andrew Cagney <cagney@gnu.org>
1847
1848 * gdbarch.sh (pseudo_register_read, pseudo_register_write)
1849 (value_to_register, register_to_value, pointer_to_address)
1850 (address_to_pointer, return_value, extract_return_value)
1851 (store_return_value): Instead of a void pointer, use gdb_byte.
1852 * gdbarch.h, gdbarch.c: Regenerate.
1853 * inferior.h (unsigned_address_to_pointer)
1854 (signed_pointer_to_address, address_to_signed_pointer)
1855 (unsigned_pointer_to_address): Update.
1856 * arch-utils.h (legacy_return_value):
1857 * arch-utils.c (legacy_extract_return_value)
1858 (legacy_return_value): Update.
1859 * findvar.c (unsigned_pointer_to_address)
1860 (signed_pointer_to_address, unsigned_address_to_pointer)
1861 (address_to_signed_pointer): Update.
1862
1863 2005-05-13 Orjan Friberg <orjanf@axis.com>
1864
1865 * cris-tdep.c (_initialize_cris_tdep): Improve help strings for
1866 cris-version, cris-mode, and cris-dwarf2-cfi settings.
1867
1868 2005-05-13 Orjan Friberg <orjanf@axis.com>
1869
1870 * cris-tdep.c (usr_cmd_cris_version): Change type to int.
1871 (cris_mode_normal, cris_mode_guru, cris_modes, usr_cmd_cris_mode): Add.
1872 (struct gdbarch_tdep): Change type of cris_version to int. Add
1873 cris_mode.
1874 (cris_mode, set_cris_mode): New functions.
1875 (crisv32_single_step_through_delay): Read from NRP register instead
1876 of ERP register in guru mode.
1877 (cris_breakpoint_from_pc): Rename break_insn to break8_insn.
1878 Add break15_insn, returned in guru mode.
1879 (_initialize_cris_tdep): Add call to add_setshow_enum_cmd for new
1880 cris-mode setting.
1881 (cris_dump_tdep): Add dump of cris_mode.
1882 (cris_gdbarch_init): Add cris_mode to search criteria for architecture.
1883 Register the sigtramp frame sniffer only if not in guru mode.
1884
1885 2005-05-13 Eli Zaretskii <eliz@gnu.org>
1886
1887 * Makefile.in (go32-nat.o): Add $(top_h) to prerequisites.
1888
1889 * go32-nat.c: Include top.h. Update copyright years.
1890 (init_go32_ops): Override the default value of gdbinit[] with
1891 "gdb.ini".
1892
1893 * cli/cli-cmds.c: Don't define GDBINIT_FILENAME.
1894 (init_cli_cmds): Use gdbinit[] instead of a compile-time literal
1895 string GDBINIT_FILENAME.
1896
1897 * top.c (PATH_MAX): Define if not defined.
1898 (gdbinit): Declare with a constant size PATH_MAX.
1899
1900 * config/i386/go32.mh (XM_FILE): Remove.
1901
1902 * config/i386/xm-go32.h: Remove file.
1903
1904 2005-05-12 Mark Kettenis <kettenis@gnu.org>
1905
1906 * sol-thread.c: Include "solib.h".
1907 (sol_thread_attach): Use solib_add instead of SOLIB_ADD.
1908 * Makefile.in (sol-thread.o): Update dependencies.
1909
1910 * NEWS: Mention OpenBSD/mips64 as a new native configuration.
1911
1912 2005-05-12 Eli Zaretskii <eliz@gnu.org>
1913
1914 * observer.sh (texi) [DJGPP]: If the file name includes a colon,
1915 convert it to the /dev/x/ form.
1916
1917 2005-05-12 Mark Kettenis <kettenis@gnu.org>
1918
1919 * solib.h (CLEAR_SOLIB, SOLIB_ADD)
1920 (SOLIB_CREATE_INFERIOR_HOOK, SOLIB_REMOVE_INFERIOR_HOOK)
1921 (SOLIB_IN_DYNAMIC_LINKER, SOLIB_RESTART)
1922 (DISABLE_UNSETTABLE_BREAK, PC_SOLIB)
1923 (IN_SOLIB_DYNSYM_RESOLVE_CODE): Remove defines and orphaned
1924 comments.
1925 * breakpoint.c: Include "solib.h".
1926 (insert_bp_location) [!DISABLE_UNSETTABLE_BREAK]: Call
1927 solib_address.
1928 (remove_solib_event_breakpoints, create_solib_event_breakpoint)
1929 (disable_breakpoints_in_shlibs)
1930 (disable_breakpoints_in_unloaded_shlib)
1931 (re_enable_breakpoints_in_shlibs): Compile if SOLIB_ADD isn't
1932 defined. If PC_SOLIB isn't defined, call solib_address.
1933 (_initialize_breakpoint): Unconditionally install observer.
1934 * corelow.c: Include "solib.h".
1935 [SOLIB_ADD] (solib_add_stub): Remove prototype.
1936 (core_close) [!CLEAR_SOLIB]: Call clear_solib.
1937 (solib_add_stub) [!SOLIB_ADD] Call solib_add.
1938 (core_open): Unconditionally call solib_add_stub.
1939 * fork-child.c: Include "solib.h".
1940 (fork_inferior) [!SOLIB_CREATE_INFERIOR_HOOK]: Call
1941 solib_create_inferior_hook.
1942 * infcmd.c: Include "solib.h".
1943 (attach_command) [!SOLIB_ADD]: Call shlib_rescan. Unconditionally
1944 call re_enable_breakpoints_in_shlibs.
1945 * infrun.c: Include "solib.h".
1946 (SOLIB_IN_SYNSYM_RESOLVE_CODE): Don't define if not already
1947 defined.
1948 (stop_on_solib_events, show_stop_on_solib_events): Include
1949 unconditionally.
1950 (follow_exec) [!SOLIB_CREATE_INFERIOR_HOOK]: Call
1951 solib_create_inferior_hook.
1952 (handle_inferior_event) [!SOLIB_ADD]: Call shlib_add.
1953 [!IN_SOLIB_DYNSYM_RESOLVE_CODE]: Call in_solib_dynsym_resolve_code.
1954 (_initialize_infrun): Unconditionally add "stop_on_solib-events"
1955 command.
1956 * remote.c: Include "solib.h".
1957 (remote_open_1): Unconditionally call no_shared_libraries.
1958 [!SOLIB_CREATE_INFERIOR_HOOK] Call solib_create_inferior_hook.
1959 * stack.c: Include "solib.h".
1960 (print_frame) [!PC_SOLIB] Call shlib_for_pc.
1961 * xcoffsolib.c (no_shared_libraries): Remove function.
1962 * Makefile.in (SFILES): Add solib.c.
1963 (ALLDEPFILES): Remove solib.c.
1964 (COMMON_OBS): Add solib.o.
1965 (breakpoint.o, corelow.o, fork-chiled.o, infcmd.o, infrun.o)
1966 (remote.o, stack.o): Update dependencies.
1967
1968 2005-05-12 Daniel Jacobowitz <dan@codesourcery.com>
1969
1970 * cp-names.y: Renamed to ...
1971 * cp-name-parser.y: ... this.
1972 * Makefile.in (SFILES, YYFILES, YYOBJ): Rename cp-names.y to
1973 cp-name-parser.y.
1974 (test-cp-names.o): Renamed to test-cp-name-parser.o.
1975 (test-cp-names): Renamed to test-cp-name-parser.
1976 (clean, local-maintainer-clean): Update.
1977 (cp-names.o): Renamed to cp-name-parser.o.
1978
1979 2005-05-12 Eli Zaretskii <eliz@gnu.org>
1980
1981 * observer.sh: Use observer.tmp instead of observer.inc-tmp which
1982 on 8+3 filesystems overwrites observer.inc. Update copyright year
1983 of the resultant file.
1984
1985 * gnu-v3-abi.c (init_gnuv3_ops): Cast is_gnu_v3_mangled_dtor and
1986 is_gnu_v3_mangled_ctor to avoid compiler warnings.
1987
1988 * config/djgpp/config.sed: Adapt to latest Autoconf.
1989
1990 * config/djgpp/djconfig.sh: Add -Wpointer-arith and
1991 -Wuninitialized to the build warnings.
1992
1993 2005-05-11 Eli Zaretskii <eliz@gnu.org>
1994
1995 * config/djgpp/fnchange.lst: Add mappings for inttypes*.m4,
1996 ChangeLog-2004, reg-cris*.dat, dw2-intermix.*, semcris*-switch.c.
1997 Fix mappings for hilo-hazard-?.s.
1998
1999 * config/djgpp/README: Update GDB versions and my email address.
2000
2001 2005-05-09 Andrew Cagney <cagney@gnu.org>
2002
2003 Use gdb_byte in preference to bfd_byte.
2004 * gdbarch.sh: Update.
2005 * gdbarch.h, gdbarch.c: Re-generate.
2006 * ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
2007 * c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
2008 * f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
2009 * jv-valprint.c, language.c, language.h, m2-lang.c: Update.
2010 * m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
2011 * p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
2012 * scm-lang.h, scm-valprint.c, target.c, target.h: Update.
2013 * tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
2014 * valprint.h, value.c, value.h: Update.
2015
2016 2005-05-09 Mark Kettenis <kettenis@gnu.org>
2017
2018 * vaxbsd-nat.c (vaxbsd_supply_gregset, vaxbsd_collect_gregset):
2019 Use `gdb_byte *' for regs.
2020 * vax-tdep.c (vax_supply_gregset): Use `gdb_byte *' for regs;
2021 (vax_store_arguments, vax_push_dummy_call, vax_return_value): Use
2022 gdb_byte for buf.
2023 (vax_breakpoint_from_pc): Change return type to `const gdb_byte
2024 *'. Use gdb_byte for break_insn.
2025 (vax_skip_prologue): Use gdb_byte for op.
2026
2027 * i387-tdep.c: Remove outdated comments.
2028
2029 * defs.h: Unconditionally include <sys/types.h>.
2030
2031 2005-05-08 Daniel Jacobowitz <dan@codesourcery.com>
2032
2033 * mips-tdep.c (mips_stub_frame_sniffer): Handle .MIPS.stubs
2034 section like .plt.
2035
2036 2005-05-08 Mark Kettenis <kettenis@gnu.org>
2037
2038 * i386-linux-tdep.c (linux_sigtramp_code, linux_rt_sigtramp_code):
2039 Change type to `static const gdb_byte'.
2040 (i386_linux_sigtramp_start, i386_linux_rt_sigtramp_start)
2041 (i386_linux_sigcontext_addr): Use gdb_byte for buf.
2042 * amd64-linux-tdep.c (linux_sigtramp_code): Change type to `static
2043 const gdb_byte'.
2044 (amd64_linux_sigtramp_start, amd64_linux_sigcontext_addr): Use
2045 gdb_byte for buf.
2046 * amd64fbsd-tdep.c (amd64fbsd_supply_uthread)
2047 (amd64fbsd_collect_uthread): Use gdb_byte for buf.
2048
2049 * config/ia64/nm-aix.h: Remove file.
2050
2051 * amd64-tdep.c (amd64_return_value): Use `gdb_byte *' in casts.
2052 (amd64_push_arguments): Use gdb_byte instead of bfd_byte. Use
2053 gdb_byte for buf.
2054 (amd64_push_dummy_call): Use gdb_byte for buf.
2055 (amd64_analyze_prologue): Use gdb_byte for proto, buf and op.
2056 (amd64_frame_cache, amd64_sigtramp_frame_cache)
2057 (amd64_unwind_dummy_id): Use gdb_byte for buf.
2058 (amd64_supply_fxsave, amd64_collect_fxsave): Use `gdb_byte *' for
2059 regs.
2060 * amd64obsd-tdep.c (amd64obsd_supply_regset): Use `gdb_byte *' in
2061 casts.
2062 (amd64obsd_sigtramp_p): Use gdb_byte for sigreturn and `gdb_byte
2063 *' for buf,
2064
2065 * i386-tdep.c (i386_breakpoint_from_pc): Change return type to
2066 `const gdb_byte *'. Use gdb_byte for break_insn.
2067 (i386_follow_jump): Use gdb_byte for op.
2068 (i386_analyze_struct_return): Use gdb_byte for proto1, proto2, buf
2069 and op.
2070 (i386_skip_probe): Use gdb_byte for buf and op.
2071 (struct i386_insn): Use gdb_byte for insn and mask.
2072 (i386_match_insn, i386_analyze_frame_setup)
2073 (i386_analyze_register_saves): Use gdb_byte for op.
2074 (i386_skip_prologue): Use gdb_byte for pic_pat and op;
2075 (i386_unwind_pc, i386_frame_cache, i386_sigtramp_frame_cache)
2076 (i386_unwind_dummy_id, i386_get_longjmp_target): Use gdb_byte for
2077 buf.
2078 (i386_extract_return_value, i386_store_return_value): Use
2079 `gdb_byte *' instead of `void *' for valbuf argument. Remove now
2080 redundant cast.
2081 (i386_pseudo_register_read, i386_pseudo_register_write): Use
2082 gdb_byte for mmx_buf.
2083 (i386_register_to_value, i386_value_to_register): Use `gdb_byte *'
2084 instead of `char *' for buf.
2085 (i386_supply_gregset, i386_collect_gregset): Use `gdb_byte *'
2086 instead of `char *' for regs.
2087 (i386_svr4_sigcontext_addr): Use gdb_byte for buf.
2088 * i386obsd-tdep.c (i386obsd_sigtramp_p): Use gdb_byte for
2089 sigreturn and `gdb_byte *' for buf.
2090 (i386obsd_aout_supply_regset): Use `const gdb_byte *' in cast.
2091 (i386obsd_supply_uthread, i386obsd_collect_uthread): Use gdb_byte
2092 for buf.
2093 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Use gdb_byte for buf.
2094
2095 * defs.h (gdb_byte): New typedef. Tweak comments.
2096
2097 * target.h (target_link): Remove prototype.
2098 * target.c (target_link): Remove function.
2099 * symfile.c: Remove comment about rombug.
2100
2101 2005-05-04 Mark Kettenis <kettenis@gnu.org>
2102
2103 * config/i386/cygwin.mh (XM_FILE): Remove variable.
2104 * config/i386/xm-cygwin.h: Remove file.
2105
2106 2005-05-03 Ben Elliston <bje@au.ibm.com>
2107
2108 * infrun.c (handle_inferior_event): Update the comment about users
2109 of stepped_after_stopped_by_watchpoint.
2110
2111 2005-05-02 Corinna Vinschen <vinschen@redhat.com>
2112
2113 * MAINTAINERS: Remove hint that sh64 doesn't build.
2114 * sh64-tdep.c (sh64_push_dummy_call): Cast buf in call to write_memory.
2115 (sh64_do_fp_register): make raw_buffer unsigned.
2116 (sh64_do_register): Ditto.
2117
2118 2005-05-02 Mark Kettenis <kettenis@gnu.org>
2119
2120 * bsd-uthread.c: Include "solib.h".
2121 * Makefile.in (bsd-uthread.o): Update dependencies.
2122
2123 2005-05-01 Daniel Jacobowitz <dan@codesourcery.com>
2124
2125 * gdbarch.sh (deprecated_current_gdbarch_select_hack): Flush
2126 cached frames when changing gdbarch.
2127 * gdbarch.c: Regenerated.
2128
2129 2005-05-01 Andrew Cagney <cagney@gnu.org>
2130
2131 * MAINTAINERS: Note that cris, m68k, mn10300, sh64, sparc and vax
2132 do not build.
2133
2134 * gdbarch.sh (deprecated_extract_return_value)
2135 (breakpoint_from_pc, deprecated_store_return_value)
2136 (memory_insert_breakpoint, memory_remove_breakpoint): Change type
2137 of buffer to a bfd_byte pointer.
2138 * gdbarch.h, gdbarch.c: Re-generate.
2139 * mem-break.c (memory_insert_breakpoint)
2140 (memory_remove_breakpoint, default_memory_insert_breakpoint)
2141 (default_memory_remove_breakpoint): Update.
2142 * target.h (memory_insert_breakpoint)
2143 (memory_remove_breakpoint, default_memory_insert_breakpoint)
2144 (default_memory_remove_breakpoint): Update declarations.
2145 (struct target_ops): Update to_insert_breakpoint and
2146 to_remove_breakpoint.
2147 * target.c (debug_to_remove_breakpoint)
2148 (debug_to_insert_breakpoint): Update.
2149 * remote-m32r-sdi.c (m32r_remove_breakpoint)
2150 (m32r_insert_breakpoint): Update.
2151 * m32r-tdep.c (m32r_memory_insert_breakpoint)
2152 (m32r_memory_remove_breakpoint): Update.
2153 * remote-e7000.c (e7000_insert_breakpoint)
2154 (e7000_remove_breakpoint): Update.
2155 * remote-rdi.c (arm_rdi_insert_breakpoint)
2156 (arm_rdi_remove_breakpoint): Update.
2157 * remote-sim.c (gdbsim_insert_breakpoint)
2158 (gdbsim_remove_breakpoint): Update.
2159 * exec.c (ignore): Update.
2160 * rs6000-tdep.c (rs6000_extract_return_value): Update.
2161 * ia64-tdep.c (ia64_memory_insert_breakpoint)
2162 (ia64_memory_remove_breakpoint): Update.
2163 * remote-rdp.c (remote_rdp_insert_breakpoint)
2164 (remote_rdp_remove_breakpoint): Update.
2165
2166 2005-05-01 Mark Kettenis <kettenis@gnu.org>
2167
2168 * somsolib.c, somsolib.h: Remove files.
2169 * Makefile.in (somsolib_h): Remove.
2170 (somsolib.o): Remove dependency.
2171
2172 * fbsd-nat.c: Include <sys/sysctl.h>.
2173 (fbsd_pid_to_exec_file): Use KERN_PROC_PATHNAME sysctl if
2174 available. Plug memory leak. Fixes PR gdb/1922.
2175
2176 2005-04-29 Mark Kettenis <kettenis@gnu.org>
2177
2178 * solist.h (TARGET_SO_FREE_SO, TARGET_SO_CLEAR_SOLIB)
2179 (TARGET_SO_SOLIB_CREATE_INFERIOR_HOOK)
2180 (TARGET_SO_SPECIAL_SYMBOL_HANDLING, TARGET_SO_CURRENT_SOS)
2181 (TARGET_SO_OPEN_SYMBOL_FILE_OBJECT): Remove defines.
2182 * solib.c (solib_data): New variable.
2183 (solib_init, solib_ops): New functions.
2184 (solib_open, solib_map_sections, free_so, update_solib_list)
2185 (solib_add, clear_solib, solib_create_inferior_hook)
2186 (in_solib_dynsym_resolve_code): Call architecture-dependent code
2187 using solib_ops.
2188 (_initialize_solib): Register SOLIB_DATA.
2189
2190 2005-04-29 Kevin Buettner <kevinb@redhat.com>
2191
2192 * frv-tdep.c (find_func_descr): Verify that entry point can be
2193 found in symbol table prior to looking up its function descriptor.
2194 * solib-frv.c (find_canonical_descriptor_in_load_object): Add
2195 test for non-NULL link map.
2196
2197 2005-04-29 Corinna Vinschen <vinschen@redhat.com>
2198
2199 * MAINTAINERS: Revert h8300 state to un-deleted.
2200 * Makefile.in: Re-add h8300-tdep.o dependencies.
2201 * h8300-tdep.c: Slightly rearrange type definitions and functions.
2202 (struct frame_extra_info): Remove.
2203 (struct h8300_frame_cache): Replace locals with differently defined
2204 uses_fp member.
2205 (h8300_unwind_pc): Simplify.
2206 (h8300_unwind_sp): New function.
2207 (h8300_unwind_dummy_id): Simplify.
2208 (h8300_init_frame_cache): New function.
2209 (h8300_is_argument_spill): Use reworked defines for opcode scanning.
2210 (h8300_skip_prologue): Rewrite.
2211 (h8300_alloc_frame_cache): Remove.
2212 (h8300_analyze_frame_setup): Remove.
2213 (h8300_analyze_register_saves): Remove.
2214 (h8300_analyze_prologue): Rewrite.
2215 (h8300_frame_cache): Use h8300_init_frame_cache instead of
2216 h8300_alloc_frame_cache. Use BINWORD instead of constant 4 to
2217 accomodate 16 bit mode. Fix saved_sp and register offset evaluation.
2218 (h8300_frame_this_id): Correctly calculate this_id using saved stack
2219 pointer instead of base.
2220 (h8300_frame_prev_register): Drop needless braces.
2221 (h8300_frame_base_address): New function.
2222 (h8300_frame_base): New frame_base.
2223 (h8300_push_dummy_call): Return correct CFA value.
2224 (h8300h_extract_return_value): Fix 8 byte value handling.
2225 (h8300_use_struct_convention): New function.
2226 (h8300h_use_struct_convention): New function.
2227 (h8300h_store_return_value): Fix 8 byte value handling.
2228 (h8300_return_value): New function.
2229 (h8300h_return_value): New function.
2230 (h8300_extract_struct_value_address): Remove deprecated functionality.
2231 (h8300_push_dummy_code): Remove.
2232 (h8300_gdbarch_init): Replace set_gdbarch_extract_return_value and
2233 set_gdbarch_store_return_value calls by set_gdbarch_return_value.
2234 Remove calls to set_gdbarch_deprecated_fp_regnum,
2235 set_gdbarch_deprecated_extract_struct_value_address,
2236 set_gdbarch_deprecated_use_struct_convention and
2237 set_gdbarch_push_dummy_code.
2238 Add calls to set_gdbarch_unwind_sp and frame_base_set_default.
2239 Slightly rearrange code.
2240
2241 2005-04-28 Jim Blandy <jimb@redhat.com>
2242
2243 * parse.c (namecopy): Change allocation conventions.
2244 (namecopy_size): New variable.
2245 (copy_name): Allocate namecopy using xrealloc, instead of assuming
2246 it has adequate space allocated to it.
2247 (parse_exp_1): Don't try to allocate space for namecopy here.
2248
2249 2005-04-28 Eli Zaretskii <eliz@gnu.org>
2250
2251 * cli/cli-cmds.c (edit_command): If symtab->fullname is not yet
2252 set, use symtab_to_fullname, instead of trying to do its job. Use
2253 xstrprintf instead of malloc and sprintf.
2254
2255 2005-04-28 Kevin Buettner <kevinb@redhat.com>
2256
2257 * remote.c (init_remote_state): Eliminate use of
2258 deprecated_register_bytes().
2259
2260 2005-04-28 Andrew Cagney <cagney@gnu.org>
2261
2262 * valops.c (check_field): Make buffer a bfd_byte.
2263 * value.c (unpack_long, unpack_double, unpack_pointer)
2264 (unpack_field_as_long, modify_field): Ditto.
2265 * value.h: Update declarations.
2266
2267 2005-04-28 Paul Brook <paul@codesourcery.com>
2268
2269 * exceptions.c (print_flush): Handle NULL gdb_stdout_serial.
2270
2271 2005-04-27 Mark Kettenis <kettenis@gnu.org>
2272
2273 * solib-svr4.c (_initialize_svr4_solib)
2274 [SVR4_FETCH_LINK_MAP_OFFSETS]: Don't set non-existent variable
2275 svr4_legacy_fetch_link_map_offsets.
2276
2277 * sh-tdep.c (sh_linux_svr4_fetch_link_map_offsets): Remove function.
2278 (sh_gdbarch_init): Remove redundant prototype.
2279 * sh-linux-tdep.c: New file.
2280 * config/sh/tm-linux.h (sh_linux_svr4_fetch_link_map_offsets):
2281 Remove prototype.
2282 (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
2283 * config/sh/linux.mt (TDEPFILES): Add sh64-tdep.o, remove
2284 solib-legacy.o.
2285 * Makefile.in (sh-linux-tdep.o): New.
2286
2287 * solib-svr4.c: Update copyright year. Include "gdb_assert.h".
2288 (SVR4_FETCH_LINK_MAP_OFFSETS): Don't define if not already
2289 defined.
2290 (legacy_fetch_link_map_offsets): Remove prototype.
2291 (fetch_link_map_offsets_gdbarch_data): Remove.
2292 (LM_ADDR, LM_NEXT, IGNORE_FIRST_LINK_MAP_ENTRY)
2293 (first_link_map_member, open_symbol_file_object, svr4_current_sos)
2294 (svr4_fetch_objfile_link_map): Call svr4_fetch_link_map_offsets
2295 instead of SVR4_FETCH_LINK_MAP_OFFSETS.
2296 (solib_svr4_data): New variable.
2297 (struct solib_svr4_ops): New.
2298 (solib_svr4_init): New fynction.
2299 (legacy_fetch_link_map_offsets, init_fetch_link_map_offsets):
2300 Remove functions.
2301 (svr4_fetch_link_map_offsets, svr4_have_link_map_offsets): Rewrite
2302 using the new `struct solib_svr4_ops'.
2303 (_initialize_svr4_solib): Replace registration of per-architecture
2304 data. Add temporary hack to set
2305 svr4_legacy_fetch_link_map_offsets if SVR4_FETCH_LINK_MAP_OFFSETS
2306 is set.
2307 * Makefile.in (solib-svr4.o): Update dependencies.
2308
2309 2005-04-26 Mark Kettenis <kettenis@gnu.org>
2310
2311 * configure.tgt (*-*-freebsd*): Set gdb_osabi to
2312 GDB_OSABI_FREEBSD_ELF. Partial fix for PR gdb/1922.
2313
2314 2005-04-26 Andrew Cagney <cagney@gnu.org>
2315
2316 * remote.c (remote_open_1): Move "ex"'s declaration to where it is
2317 used.
2318 (remote_get_thread_local_address): Use throw_error, include a
2319 printed string.
2320 * linux-thread-db.c (thread_db_get_thread_local_address): Ditto.
2321 * dwarf2loc.c (dwarf_expr_tls_address): Ditto.
2322 * cli/cli-script.c (script_from_file): Mark up throw_error message.
2323 * linespec.c (symtab_from_filename, decode_variable): Ditto.
2324
2325 2005-04-26 Andrew Cagney <cagney@gnu.org>
2326
2327 Rename 'struct exception' to 'struct gdb_exception'.
2328 * wrapper.c: Update.
2329 * varobj.c: Update.
2330 * tui/tui-interp.c: Update.
2331 * remote.c: Update.
2332 * mi/mi-main.c: Update.
2333 * mi/mi-interp.c: Update.
2334 * linux-thread-db.c: Update.
2335 * interps.h: Update.
2336 * interps.c: Update.
2337 * exceptions.h: Update.
2338 * exceptions.c: Update.
2339 * dwarf2loc.c: Update.
2340 * cli/cli-interp.c: Update.
2341 * cli/cli-script.c: Update.
2342 * breakpoint.c: Update.
2343
2344 2005-04-25 Mark Mitchell <mark@codesourcery.com>
2345
2346 * event-loop.c (gdb_select): Program defensively.
2347
2348 * event-loop.c (gdb_assert.h): Include.
2349 (<windows.h>): Include under Windows.
2350 (<io.h>): Likeiwse.
2351 (gdb_select): New function.
2352 (gdb_wait_for_event): Use it.
2353 * Makefile.in (event-loop.o): Depend on $(gdb_assert_h).
2354
2355 2005-04-23 Mark Kettenis <kettenis@gnu.org>
2356
2357 * sparc64-tdep.c: Include "dwarf2-frame.h".
2358 (sparc64_dwarf2_frame_init_reg): New function.
2359 * Makefile.in (sparc64-tdep.o): Update dependencies.
2360
2361 2005-04-22 David S. Miller <davem@davemloft.net>
2362
2363 * sparc64-linux-tdep.c (sparc64_linux_init_abi): Add call to
2364 sparc64_init_abi().
2365
2366 2005-04-22 Mark Kettenis <kettenis@gnu.org>
2367
2368 * ser-base.c: Include "ser-base.h" instead of "ser-unix.h".
2369
2370 2005-04-22 Mark Mitchell <mark@codesourcery.com>
2371
2372 * ser-base.c (<sys/time.h>): Include.
2373
2374 2005-04-22 Mark Kettenis <kettenis@gnu.org>
2375
2376 * ppcobsd-tdep.c (ppcobsd_init_abi): Set return_value.
2377
2378 * sparc-linux-tdep.c: Reorder includes. Tweak a few comments.
2379 (LINUX32_SIGTRAMP_INSN0, LINUX32_SIGTRAMP_INSN1)
2380 (LINUX32_RT_SIGTRAMP_INSN0, LINUX32_RT_SIGTRAMP_INSN1): Remove
2381 macros.
2382 (sparc32_linux_sigframe, sparc32_linux_rt_sigframe): Hardcode
2383 instructions.
2384 * sparc64-linux-tdep.c: Reorder includes. Tweak a few comments.
2385 (LINUX64_RT_SIGTRAMP_INSN0, LINUX64_RT_SIGTRAMP_INSN1): Remove
2386 macros.
2387 (sparc64_linux_rt_sigframe): Hardcode instructions.
2388 * Makefile.in (sparc-linux-tdep.o, sparc64-linux-tdep.o): Update
2389 dependencies.
2390
2391 * sparc-linux-tdep.c: Update copyright year.
2392 (sparc32_linux_init_abi): Set skip_trampoline_code and
2393 solib_svr4_fetch_link_map_offsets. Set TDEP->plt_entry_size.
2394 Don't set software_single_step and don't call
2395 sparc32_sol2_init_abi.
2396 * sparc64-linux-tdep.c: Update copyright year.
2397 (sparc64_linux_init_abi): Set skip_trampoline_code and
2398 solib_svr4_fetch_link_map_offsets. Set TDEP->plt_entry_size.
2399 Don't set software_single_step and don't call
2400 sparc64_sol2_init_abi.
2401
2402 2005-04-22 Eli Zaretskii <eliz@gnu.org>
2403
2404 * remote-st.c (_initialize_remote_st2000): Remove the extraneous
2405 "<command>" string from the call to add_com.
2406
2407 * remote-sim.c (_initialize_remote_sim): Ditto.
2408
2409 * remote-utils.c (_initialize_sr_support): Ditto.
2410
2411 * remote-mips.c (_initialize_remote_mips): Ditto.
2412
2413 2005-04-21 David S. Miller <davem@davemloft.net>
2414
2415 * sparc-linux-tdep.c (sparc32_linux_sigframe_init): New function.
2416 (sparc32_linux_sigframe, sparc32_linux_rt_sigframe): New tramp_frames.
2417 (sparc_linux_sigtramp_start, sparc32_linux_sigtramp_start,
2418 sparc32_linux_rt_sigtramp_start, sparc32_linux_sigtramp_p,
2419 sparc32_linux_sigtramp_frame_cache,
2420 sparc32_linux_sigtramp_frame_this_id,
2421 sparc32_linux_sigtramp_frame_prev_register,
2422 sparc32_linux_sigtramp_frame_unwind,
2423 sparc32_linux_sigtramp_frame_sniffer): Delete.
2424 (sparc32_linux_init_abi): Register new tramp unwinders. Kill
2425 register of old sigtramp sniffer.
2426 * sparc64-linux-tdep.c (sparc64_linux_sigframe_init): New
2427 function.
2428 (sparc64_linux_rt_sigframe): New tramp frame.
2429 (sparc64_linux_sigtramp_start, sparc64_linux_sigtramp_p,
2430 sparc64_linux_sigtramp_frame_cache,
2431 sparc64_linux_sigtramp_frame_this_id,
2432 sparc64_linux_sigtramp_frame_prev_register,
2433 sparc64_linux_sigtramp_frame_unwind,
2434 sparc64_linux_sigtramp_frame_sniffer): Delete.
2435 (sparc64_linux_init_abi): Register new tramp unwinders. Kill
2436 register of old sigtramp sniffer.
2437 Makefile.in (sparc64-linux-tdep.o): Update dependencies.
2438 (sparc-linux-tdep.o): Likewise.
2439
2440 2005-04-21 Mark Kettenis <kettenis@gnu.org>
2441
2442 * ser-base.c: Include "gdb_string.h".
2443 * Makefile.in (ser-base.o): Update dependencies.
2444
2445 2005-04-20 David S. Miller <davem@davemloft.net>
2446
2447 * sparc-linux-tdep.c (sparc32_linux_sigtramp_p): Fix
2448 signal return stub symbol names, __restore and __restore_rt are
2449 the i386 symbol names not the sparc ones.
2450 (sparc32_linux_sigtramp_frame_cache): Document bits/sigcontext.h
2451 as where the offsets were obtained from.
2452 * sparc64-linux-tdep.c (LINUX64_RT_SIGTRAMP_INSN0,
2453 LINUX64_RT_SIGTRAMP_INSN1): New defines.
2454 (sparc64_linux_sigtramp_start, sparc64_linux_sigtramp_p,
2455 sparc64_linux_sigtramp_frame_cache,
2456 sparc64_linux_sigtramp_frame_this_id,
2457 sparc64_linux_sigtramp_frame_prev_register,
2458 sparc64_linux_sigtramp_frame_sniffer): New functions.
2459 (sparc64_linux_sigtramp_frame_unwind): New frame unwinder.
2460 (sparc64_linux_init_abi): Register sigtramp frame sniffer.
2461 * Makefile.in (sparc64-linux-tdep.o): Update dependencies.
2462
2463 2005-04-20 Mark Mitchell <mark@codesourcery.com>
2464
2465 * configure.ac: On MinGW, define USE_WIN32API and link with
2466 -lws2_32.
2467 * ser-tcp.c (<winsock2.h>): Include, for Windows.
2468 (ETIMEDOUT): Define, for Windows.
2469 (ioctl): Likewise.
2470 (closesocket): Define, for POSIX.
2471 (net_open): Adjust for differences in socket functions between
2472 Windows and UNIX.
2473 (net_close): Likweise.
2474 (net_read_prim): New function.
2475 (net_write_prim): Likewise.
2476 (_initialize_ser_tcp): Initialize winsock. Fill in read_prim and
2477 write_prim.
2478 * ser-unix.h (ser_unix_readcchar): Remove.
2479 (ser_unix_read_prim): Declare.
2480 (ser_unix_write_prim): Likewise.
2481 * ser-unix.c (generic_readchar): Move to ser-base.c.
2482 (ser_unix_wait_for): Likewise.
2483 (do_unix_readchar): Likewise.
2484 (ser_unix_readchar): Likewise.
2485 (_initialize_ser_hardwire): Initialize read_prim and write_prim.
2486 (ser_unix_read_prim): New function.
2487 (ser_unix_write_prim): Likewise.
2488 * ser-base.h (generic_readchar): Declare.
2489 (ser_base_readchar): Likewise.
2490 * ser-base.c (<winsock2.h>): Include, for windows.
2491 (fd_event): Use the read primitive specified by the serial
2492 interface.
2493 (ser_base_wait_for): Moved from ser-unix.c
2494 (do_ser_base_read_char): Likewise.
2495 (generic_readchar): Likewise.
2496 (ser_base_readchar): Likewise.
2497 (ser_base_write): Use the write primitive specified by the serial
2498 interface.
2499 * ser-pipe.c (_initialize_ser_pipe): Use ser_base_readchar, not
2500 ser_unix_readchar. Initialize read_prim and write_prim.
2501 * serial.c (struct serial_ops): Add read_prim and write_prim.
2502 * configure: Regenerate.
2503
2504 2005-04-19 Ben Elliston <bje@au.ibm.com>
2505
2506 * c-lang.c (c_create_fundamental_type): Comment fix.
2507
2508 2005-04-18 Michael Snyder <msnyder@redhat.com>
2509
2510 * mn10300-tdep.c: Assimilate code from mn10300-prologue.c.
2511 * mn10300-prologue.c: Remove.
2512 * mn10300-tdep.h: Add enums from mn10300-prologue.c.
2513 Remove prototypes.
2514 * config/mn10300/mn10300.mt: Remove mn10300-prologue module.
2515
2516 2005-04-18 Michael Snyder <msnyder@redhat.com>
2517
2518 * config/mn10300/mn10300.mt: Add mn10300-prologue module.
2519 * ia64-tdep.c (ia64_get_dyn_info_list): Fix indent.
2520
2521 2005-04-18 Mark Kettenis <kettenis@gnu.org>
2522
2523 * config/nm-bsd.h: Remove file.
2524
2525 * hppabsd-nat.c: Update copyright year. Include "target.h" and
2526 "inf-ptrace.h".
2527 (hppabsd_fetch_registers): Renamed from fetch_inferior_registers;
2528 made static.
2529 (hppabsd_store_registers): Renamed from store_inferior_registers;
2530 made static.
2531 (_initialize_hppabsd_nat): New function and prototype.
2532 * config/pa/obsd.mh (NATDEPFILES): Remove infptrace.o and
2533 inftarg.o. Add inf-ptrace.o.
2534 (NAT_FILE): Remove.
2535 * Makefile.in (hppabsd-nat.o): Update dependencies.
2536
2537 2005-04-17 Mark Kettenis <kettenis@gnu.org>
2538
2539 * pa64solib.c, pa64solib.h: Remove files.
2540 * Makefile.in (pa64solib_h): Remove variable
2541 (pa64solib.o): Remove dependency.
2542
2543 2005-04-16 Mark Kettenis <kettenis@gnu.org>
2544
2545 * ppcobsd-nat.c: Update copyright year. Include "inf-ptrace.h".
2546 (ppcobsd_fetch_registers): Renamed from fetch_inferior_registers;
2547 made static.
2548 (ppcobsd_store_registers): Renamed from store_inferior_registers;
2549 made static.
2550 (_initialize_ppcobsd_nat): Construct and add target vector.
2551 * config/powerpc/obsd.mh (NATDEPFILES): Remove infptrace.o and
2552 inftarg.o. Add inf-ptrace.o.
2553 (NAT_FILE): Remove.
2554 * Makefile.in (ppcobsd-nat.o): Update dependencies.
2555
2556 * ppcobsd-tdep.c: Include "floatformat.h".
2557 (ppcobsd_init_abi): Set long_double_bit and long_double_format.
2558 * Makefile.in (ppcobsd-tdep.o): Update dependencies.
2559
2560 * ppcobsd-tdep.c: Fix typo in comment.
2561 (_initialize_ppcobsd_tdep): Register GDB_OSABI_OPENBSD_ELF for
2562 bfd_arch_rs6000 too.
2563
2564 2005-04-15 Kevin Buettner <kevinb@redhat.com>
2565
2566 * remote.c (remote_get_thread_local_address): Throw a more
2567 meaningful exception when remote target doesn't have support
2568 for the qGetTLSAddr packet.
2569
2570 2005-04-15 Kevin Buettner <kevinb@redhat.com>
2571
2572 * remote.c (remote_protocol_qGetTLSAddr): New static global variable.
2573 (set_remote_protocol_qGetTLSAddr_packet_cmd)
2574 (show_remote_protocol_qGetTLSAddr_packet_cmd)
2575 (remote_get_thread_local_address): New functions.
2576 (init_all_packet_configs): Initialize remote_protocol_qGetTLSAddr
2577 variable.
2578 (init_remote_ops): Initialize ``to_get_thread_local_address'' in
2579 target vector.
2580 (show_remote_cmd): Call show_remote_protocol_qGetTLS_Addr_packet_cmd().
2581 (_initialize_remote): Register the following commands:
2582 "set remote get-thread-local-storage-address-packet" and
2583 "show remote get-thread-local-address-packet".
2584
2585 2005-04-15 Kevin Buettner <kevinb@redhat.com>
2586
2587 * remote.c (add_packet_config_cmd): Delete unused variables.
2588
2589 2005-04-15 Kevin Buettner <kevinb@redhat.com>
2590
2591 * remote.c (show_remote_protocol_vcont_packet_cmd )
2592 (show_remote_protocol_qSymbol_packet_cmd)
2593 (show_remote_protocol_P_packet_cmd)
2594 (show_remote_protocol_Z_software_bp_packet_cmd)
2595 (show_remote_protocol_Z_hardware_bp_packet_cmd)
2596 (show_remote_protocol_Z_write_wp_packet_cmd)
2597 (show_remote_protocol_Z_read_wp_packet_cmd)
2598 (show_remote_protocol_Z_access_wp_packet_cmd)
2599 (show_remote_protocol_binary_download_cmd)
2600 (show_remote_protocol_qPart_auxv_packet_cmd)
2601 (show_remote_protocol_p_packet_cmd ): Delete calls to
2602 deprecated_show_value_hack().
2603
2604 2005-04-15 Corinna VInschen <vinschen@redhat.com>
2605
2606 * MAINTAINERS: Change sh64-elf state to non-broken.
2607 * Makefile.in: Fix dependencies for sh64-tdep.o.
2608 * configure.tgt: Add sh64-*-elf case.
2609 * sh-tdep.c (sh_gdbarch_init): Reactivate bfd_mach_sh5 case.
2610 * sh64-tdep.c: Rework to replace all deprecated mechanisms with
2611 modern methods.
2612 * config/sh/embed.mt (TDEPFILES): Add sh64-tdep.o.
2613 * config/sh/sh64.mt: Resurrect.
2614
2615 2005-04-15 Kei Sakamoto <sakamoto.kei@renesas.com>
2616
2617 * regformats/reg-m32r.dat: New file.
2618
2619 2005-04-14 Daniel Jacobowitz <dan@codesourcery.com>
2620
2621 * arm-tdep.c (fp_model_strings): Add terminating NULL.
2622 (arm_abi_strings, arm_abi_global, arm_abi_string): New
2623 variables.
2624 (arm_extract_return_value, arm_store_return_value): Don't use
2625 arm_get_fp_model.
2626 (arm_get_fp_model, arm_set_fp): Delete.
2627 (arm_update_current_architecture): New function.
2628 (set_fp_model_sfunc): Call arm_update_current_architecture.
2629 (show_fp_model): Update output messages.
2630 (arm_set_abi, arm_show_abi): New functions.
2631 (arm_elf_osabi_sniffer): Only handle ELFOSABI_ARM.
2632 (arm_gdbarch_init): Infer the object's ABI separately from its
2633 OSABI. Search for a matching architecture. Honor the global
2634 ABI and FPU settings. Set floating point format based on the
2635 architecture.
2636 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs):
2637 Delete.
2638 (_initialize_arm_tdep): Don't call gdbarch_register_osabi.
2639 Create "arm set abi" command.
2640 * arm-tdep.h (arm_get_fp_model): Delete prototype.
2641 (enum arm_abi_kind): New type.
2642 (struct gdbarch_tdep): Add arm_abi field.
2643 * arm-linux-tdep.c (arm_linux_init_abi): Only override
2644 tdep->fp_model if it is ARM_FLOAT_AUTO.
2645 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Likewise.
2646 (arm_netbsd_elf_init_abi): Likewise.
2647 * defs.h (enum gdb_osabi): Delete ARM-specific OSABIs.
2648 * osabi.c (gdb_osabi_name): Likewise.
2649
2650 2005-04-11 Daniel Jacobowitz <dan@codesourcery.com>
2651
2652 * config/djgpp/fnchange.lst: Remove entries for gdb.gdbserver.
2653
2654 2005-04-10 Mark Kettenis <kettenis@gnu.org>
2655
2656 * rs6000-tdep.c (ppc_supply_fpregset): Increment offset by 8 for
2657 floating-point registers.
2658 (ppc_collect_fpregset): Likewise. Fix collection of registers.
2659
2660 2005-04-09 Mark Kettenis <kettenis@gnu.org>
2661
2662 * ppcobsd-tdep.c: Update copyright year. Include "trad-frame.h"
2663 and "tramp-frame.h".
2664 (ppcobsd_sigtramp_cache_init): New function.
2665 (ppcobsd_sigtramp): New variable.
2666 (ppcobsd_init_abi): Prepend signal trampoline unwinder.
2667 * Makefile.in (ppcobsd-tdep.o): Update dependencies.
2668
2669 2005-04-08 Andrew Cagney <cagney@gnu.org>
2670
2671 * MAINTAINERS (GDB/MI): Andrew Cagney, Elena Zannoni, and Fernando
2672 Nasser have decided to step back from GDB/MI.
2673
2674 2005-04-08 Daniel Jacobowitz <dan@codesourcery.com>
2675
2676 * config/fnchange.lst: Add testsuite/gdb.gdbserver entries.
2677
2678 2005-04-08 Daniel Jacobowitz <dan@codesourcery.com>
2679
2680 * dwarf2-frame.c (struct dwarf2_frame_cache): New field
2681 undefined_retaddr.
2682 (dwarf2_frame_cache): Initialize undefined_retaddr.
2683 (dwarf2_frame_this_id): Return an invalid frame ID if
2684 undefined_retaddr.
2685
2686 2005-04-05 Jim Blandy <jimb@redhat.com>
2687
2688 Move construction of IA-32 vector types to i386-tdep.c.
2689 * gdbtypes.c (build_builtin_type_vec64i,
2690 build_builtin_type_vec128i): Delete functions.
2691 (builtin_type_vec64i, builtin_type_vec128i): Delete variables.
2692 (build_gdbtypes): Don't initialize them.
2693 (_initialize_gdbtypes): Don't register GDBARCH swap entries for
2694 them.
2695 * gdbtypes.h (builtin_type_vec64i, builtin_type_vec128i): Delete
2696 declarations.
2697 (builtin_type_v2_float, builtin_type_v2_int32,
2698 builtin_type_v4_int16, builtin_type_v8_int8,
2699 builtin_type_v2_double, builtin_type_v4_float,
2700 builtin_type_v2_int64, builtin_type_v4_int32,
2701 builtin_type_v8_int16, builtin_type_v16_int8): Add extern
2702 declarations.
2703 * i386-tdep.c (i386_mmx_type, i386_sse_type): New variables.
2704 (i386_build_mmx_type, i386_build_sse_type): New functions.
2705 (i386_register_type): Call them, rather than referring to
2706 builtin_type_vec64i and builtin_type_vec128i.
2707
2708 2005-04-02 Daniel Jacobowitz <dan@codesourcery.com>
2709
2710 * mips-linux-tdep.c (mips_linux_o32_sigframe_init): Adjust
2711 big-endian correction code to not offset 32-bit registers.
2712 Locate floating point registers correctly.
2713
2714 2005-04-02 Mark Kettenis <kettenis@gnu.org>
2715
2716 * main.c: Update copyright year.
2717 (captured_main): Avoid using strcpy and strcat.
2718
2719 2005-04-01 Michael Snyder <msnyder@redhat.com>
2720
2721 * dummy-frame.c (dummy_frame_sniffer): Optimization: don't bother
2722 computing this_id if there are no dummy frames on the stack.
2723
2724 * mn10300-tdep.c (mn10300_frame_unwind_cache): Use
2725 find_partial_func instead of unwind_pc to identify frame.
2726 (mn10300_push_dummy_call): Handle struct args, struct_return.
2727
2728 * mn10300-prologue.c (set_movm_offsets): Don't test variable
2729 before setting it.
2730 * mn10300-tdep.c (mn10300_skip_prologue): Use analyze_prologue
2731 instead of skip_prologue_using_sal.
2732
2733 2005-03-31 Kevin Buettner <kevinb@redhat.com>
2734
2735 * solib-frv.c (struct lm_info): Add new field ``lm_addr''.
2736 (main_lm_addr): New static global.
2737 (frv_current_sos): Retain the link map address for each entry.
2738 (frv_clear_solib): Clear main_lm_addr.
2739 (frv_fetch_objfile_link_map): New function.
2740 * frv-tdep.c (frv_gdbarch_init): Register TLS load module fetcher.
2741 * frv-tdep.h (frv_fetch_objfile_link_map): Declare.
2742
2743 2005-03-31 Kevin Buettner <kevinb@redhat.com>
2744
2745 * gdbarch.sh (fetch_tls_load_module_address): New architecture method.
2746 * gdbarch.c, gdbarch.h: Regenerate.
2747 * dwarf2loc.c (dwarf_expr_tls_address): Fetch TLS load module
2748 address and pass this address, instead of the objfile address, to
2749 target_get_thread_local_address().
2750 * linux-thread-db.c (thread_db_get_thread_local_address): Change
2751 second parameter from type ``struct objfile *'' to CORE_ADDR. Do
2752 not call svr4_fetch_objfile_link_map() to fetch the load module
2753 address.
2754 * target.h (struct target_ops): Change second parameter of
2755 ``to_get_thread_local_address'' from ``struct objfile *'' to
2756 ``CORE_ADDR''.
2757 * alpha-linux-tdep.c (solib-svr4.h): Include.
2758 (alpha_linux_init_abi): Register TLS load module fetcher.
2759 * amd64-linux-tdep.c (amd64_linux_init_abi): Likewise.
2760 * hppa-linux-tdep.c (hppa_linux_init_abi): Likewise.
2761 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
2762 * ia64-linux-tdep.c (solib-svr4.h): Include.
2763 (ia64_linux_init_abi): Register TLS load module fetcher.
2764 * m32r-linux-tdep.c (m32r_linux_init_abi): Likewise.
2765 * m68klinux-tdep.c (m68k_linux_init_abi): Likewise.
2766 * mips-linux-tdep.c (mips_linux_init_abi): Likewise.
2767 * s390-tdep.c (s390_gdbarch_init): Likewise.
2768 * sparc-linux-tdep.c (sparc32_linux_init_abi): Likewise.
2769 * sparc64-linux-tdep.c (solib-svr4.h): Include.
2770 (sparc64_linux_init_abi): Register TLS load module fetcher.
2771 * Makefile.in (alpha-linux-tdep.o, ia64-linux-tdep.o)
2772 (sparc-linux-tdep.o): Update dependencies.
2773
2774 2005-03-29 Daniel Jacobowitz <dan@codesourcery.com>
2775
2776 * c-valprint.c (c_value_print): Fix up some formatting. Use
2777 check_typedef.
2778
2779 2005-03-29 Daniel Jacobowitz <dan@codesourcery.com>
2780
2781 * arm-linux-nat.c (store_register, store_regs): Handle
2782 ARM_PS_REGNUM.
2783
2784 2005-03-29 Daniel Jacobowitz <dan@codesourcery.com>
2785
2786 * arm-linux-tdep.c (arm_linux_thumb_be_breakpoint)
2787 (arm_linux_thumb_le_breakpoint): New. Update comments.
2788 (arm_linux_init_abi): Set Thumb breakpoints also.
2789
2790 2005-03-29 Daniel Jacobowitz <dan@codesourcery.com>
2791
2792 * Makefile.in (arm-tdep.o): Update dependencies.
2793 * arm-tdep.c: Include "objfiles.h" and "dwarf2-frame.h".
2794 (arm_gdbarch_init): Register dwarf2_frame_sniffer.
2795
2796 2005-03-28 Joel Brobecker <brobecker@adacore.com>
2797
2798 * irix5-nat.c (supply_fpregset): Fix bug that caused the FSR
2799 register value to be incorrectly written in the regcache.
2800 (fill_fpregset): Fix bug that caused the FSR register value
2801 to be incorrectly read from the regcache.
2802
2803 2005-03-28 Daniel Jacobowitz <dan@codesourcery.com>
2804
2805 * remote-rdi.c (arm_rdi_insert_breakpoint): Don't call
2806 arm_pc_is_thumb_dummy.
2807
2808 2005-03-28 Mark Kettenis <kettenis@gnu.org>
2809
2810 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_saved_regs): Handle
2811 StackGhost.
2812
2813 * sparc-tdep.c (sparc_supply_rwindow, sparc_collect_rwindow):
2814 Handle StackGhost in 64-bit code.
2815 * sparc64-tdep.c (sparc64_frame_prev_register): Handle StackGhost.
2816
2817 2005-03-27 Christopher Faylor <cgf@timesys.com>
2818
2819 * win32-nat.c (handle_exception): Treat win32 routines which check for
2820 valid addresses as "special" and don't stop when a SEGV is detected.
2821 (get_child_debug_event): Properly flag exception as unhandled.
2822
2823 2005-03-26 Daniel Jacobowitz <dan@codesourcery.com>
2824
2825 * cp-support.c (cp_class_name_from_physname): Rewrite.
2826 (unqualified_name_from_comp): New function, broken out from
2827 method_name_from_physname. Correct handling for typed names
2828 and templates.
2829 (method_name_from_physname): Use unqualified_name_from_comp.
2830 (cp_func_name, remove_params): Move earlier in the file. Add
2831 better comments. Use the component tree to parse the name.
2832 (_initialize_cp_support): Remove stray whitespace.
2833
2834 2005-03-26 Mark Kettenis <kettenis@gnu.org>
2835
2836 * exec.c (bfdsec_to_vmap): Use strcmp instead of DEPRECATED_STREQ.
2837
2838 * inflow.h: Update copyright year. Remove #ifdef SHORT_PGRP code.
2839 Callapse HAVE_TERMIO and HAVE_SGTTY.
2840
2841 * dwarf2-frame.c (execute_cfa_program): Implement
2842 DW_CFA_GNU_window_save.
2843
2844 2005-03-25 Mark Kettenis <kettenis@gnu.org>
2845
2846 * config/sparc/nbsd64.mh (NAT_FILE): Remove.
2847
2848 * config/i386/obsd64.mt (TDEPFILES): Add obsd-uthread.o.
2849
2850 2005-03-25 Daniel Jacobowitz <dan@codesourcery.com>
2851
2852 * arm-tdep.c (target_is_thumb, caller_is_thumb)
2853 (arm_pc_is_thumb_dummy): Remove.
2854 (arm_breakpoint_from_pc): Don't call arm_pc_is_thumb_dummy.
2855
2856 2005-03-25 Anthony Green <green@redhat.com>
2857
2858 * remote.c (remote_store_registers): Fix memset usage.
2859 * std-regs.c (value_of_builtin_frame_reg): Ditto.
2860 (value_of_builtin_frame_fp_reg): Ditto.
2861 (value_of_builtin_frame_reg): Ditto.
2862
2863 2005-03-25 Mark Mitchell <mark@codesourcery.com>
2864
2865 * ser-base.c (ser_unix_write): Rename to ...
2866 (ser_base_write): ... this.
2867 (ser_unix_nop_flush_output): Rename to ...
2868 (ser_base_flush_output): ... this.
2869 (ser_unix_flush_input): Rename to ...
2870 (ser_base_flush_input): ... this.
2871 (ser_unix_nop_send_break): Rename to ...
2872 (ser_base_send_break): ... this.
2873 (ser_unix_nop_drain_output): Rename to ...
2874 (ser_base_drain_output): ... this.
2875 (ser_unix_nop_raw): Rename to ...
2876 (ser_base_raw): ... this.
2877 (ser_unix_nop_get_tty_state): Rename to ...
2878 (ser_base_set_tty_state): ... this.
2879 (ser_unix_nop_noflush_set_tty_state): Rename to ...
2880 (ser_base_noflush_set_tty_state): ... this.
2881 (ser_unix_nop_print_tty_state): Rename to ...
2882 (ser_base_print_tty_state): ... this.
2883 (ser_unix_nop_setbaudrate): Rename to ...
2884 (ser_base_setbaudrate): ... this.
2885 (ser_unix_nop_setstopbits): Rename to ...
2886 (ser_base_setstopbits): ... this.
2887 (ser_unix_async): Rename to ...
2888 (ser_base_async): ... this.
2889 * ser-base.h (ser_unix_write): Rename to ...
2890 (ser_base_write): ... this.
2891 (ser_unix_nop_flush_output): Rename to ...
2892 (ser_base_flush_output): ... this.
2893 (ser_unix_flush_input): Rename to ...
2894 (ser_base_flush_input): ... this.
2895 (ser_unix_nop_send_break): Rename to ...
2896 (ser_base_send_break): ... this.
2897 (ser_unix_nop_drain_output): Rename to ...
2898 (ser_base_drain_output): ... this.
2899 (ser_unix_nop_raw): Rename to ...
2900 (ser_base_raw): ... this.
2901 (ser_unix_nop_get_tty_state): Rename to ...
2902 (ser_base_set_tty_state): ... this.
2903 (ser_unix_nop_noflush_set_tty_state): Rename to ...
2904 (ser_base_noflush_set_tty_state): ... this.
2905 (ser_unix_nop_print_tty_state): Rename to ...
2906 (ser_base_print_tty_state): ... this.
2907 (ser_unix_nop_setbaudrate): Rename to ...
2908 (ser_base_setbaudrate): ... this.
2909 (ser_unix_nop_setstopbits): Rename to ...
2910 (ser_base_setstopbits): ... this.
2911 (ser_unix_async): Rename to ...
2912 (ser_base_async): ... this.
2913 * ser-pipe.c (_initialize_ser_pipe): Update accordingly.
2914 * ser-tcp.c (_initialize_ser_tcp): Likewise.
2915 * ser-unix.c (hardwire_flush_input): Likewise.
2916 (_initializer_ser_hardwire): Likewise.
2917
2918 * Makefile.in (SFILES): Add ser-base.c.
2919 (ser_base_h): New variable.
2920 (ser-base.o): New target.
2921 (ser-pipe.o): Depend on $(ser_base_h).
2922 (ser-tcp.o): Likewise.
2923 (ser-unix.o): Likewise. Do not depend on $(event_loop_h).
2924 * configure.ac (SER_HARDWIRE): Include ser-base.o where
2925 appropriate.
2926 * ser-base.c: New file.
2927 (push_event): Move from ser-unix.c.
2928 (fd_event): Likewise.
2929 (reschedule): Likewise.
2930 (ser_unix_write): Likewise.
2931 (ser_unix_nop_flush_output): Likewise.
2932 (ser_unix_flush_input): Likewise.
2933 (ser_unix_nop_send_break): Likewise.
2934 (ser_unix_nop_drain_output): Likewise.
2935 (ser_unix_nop_raw): Likewise.
2936 (ser_unix_nop_get_tty_state): Likewise.
2937 (ser_unix_nop_set_tty_state): Likewise.
2938 (ser_unix_nop_noflush_set_tty_state): Likewise.
2939 (ser_unix_nop_print_tty_state): Likewise.
2940 (ser_unix_nop_setbaudrate): Likewise.
2941 (ser_unix_nop_setstopbits): Likewise.
2942 (ser_unix_async): Likewise.
2943 * ser-base.h: New file.
2944 * ser-pipe.c (ser-base.h): Include it.
2945 * ser-tcp.c (ser-base.h): Likewise.
2946 * ser-unix.h (ser_unix_nop_flush_output): Remove.
2947 (ser_unix_flush_input): Likewise.
2948 (ser_unix_nop_send_break): Likewise.
2949 (ser_unix_nop_raw): Likewise.
2950 (ser_unix_nop_get_tty_state): Likewise.
2951 (ser_unix_nop_set_tty_state): Likewise.
2952 (ser_unix_nop_print_tty_state): Likewise.
2953 (ser_unix_nop_noflush_set_tty_state): Likewise.
2954 (ser_unix_nop_setbaudrate): Likewise.
2955 (ser_unix_nop_setstopbits): Likewise.
2956 (ser_unix_nop_drain_output): Likewise.
2957 (ser_unix_wait_for): Likewise.
2958 (ser_unix_write): Likewise.
2959 (ser_unix_async): Likewise.
2960 * ser-unix.c (event-loop.h): Do not include it.
2961 (push_event): Move to ser-base.c.
2962 (fd_event): Likewise.
2963 (reschedule): Likewise.
2964 (ser_unix_write): Likewise.
2965 (ser_unix_nop_flush_output): Likewise.
2966 (ser_unix_flush_input): Likewise.
2967 (ser_unix_nop_send_break): Likewise.
2968 (ser_unix_nop_drain_output): Likewise.
2969 (ser_unix_nop_raw): Likewise.
2970 (ser_unix_nop_get_tty_state): Likewise.
2971 (ser_unix_nop_set_tty_state): Likewise.
2972 (ser_unix_nop_noflush_set_tty_state): Likewise.
2973 (ser_unix_nop_print_tty_state): Likewise.
2974 (ser_unix_nop_setbaudrate): Likewise.
2975 (ser_unix_nop_setstopbits): Likewise.
2976 (ser_unix_async): Likewise.
2977 (ser_unix_wait_for): Make it static.
2978 * configure: Regenerated.
2979
2980 2005-03-25 Mark Kettenis <kettenis@gnu.org>
2981
2982 * dwarf2-frame.h: Update copyrigh year.
2983 (enum dwarf2_frame_reg_rule): Add DWARF2_FRAME_REG_RA_OFFSET.
2984 * dwarf2-frame.c: Update copyright year.
2985 (struct dwarf2_frame_cache): Add member `retaddr_reg'.
2986 (dwarf2_frame_cache): Deal with DWARF2_FRAME_REG_RA_OFFSET.
2987 (dwarf2_frame_prev_register): Handle DWARF2_FRAME_REG_RA_OFFSET.
2988
2989 2005-03-23 Martin Hunt <hunt@redhat.com>
2990
2991 * configure.ac: Remove -fwritable-strings from CFLAGS.
2992 * configure: Regenerate.
2993
2994 2005-03-21 Michael Snyder <msnyder@redhat.com>
2995
2996 * mn10300-prologue.c (fix_frame_pointer): Delete.
2997 (set_movm_offsets) Don't return just because movm_args is
2998 zero -- still need to save pc and sp in saved_regs.
2999 (mn10300_analyze_prologue): Don't return prematurely without
3000 calling set_movm_offsets (for pc and sp at minimum).
3001
3002 2005-03-21 Mark Mitchell <mark@codesourcery.com>
3003
3004 * configure.ac (stat.st_blksize): Check for it.
3005 (getuid): Likewise.
3006 (getgid): Likewise.
3007 * configure: Regenerated.
3008 * config.in: Likewise.
3009 * remote-fileio.c (remote_fileio_to_fio_stat): Check
3010 HAVE_STRUCT_STAT_ST_BLKSIZE.
3011
3012 2005-03-21 Christopher Faylor <cgf@timesys.com>
3013
3014 * win32-nat.c (do_initial_child_stuff): Don't clear the thread list
3015 here.
3016 (do_initial_child_stuff): Move clearing of thread list to a place
3017 before a thread ould be created.
3018 (child_attach): Ditto.
3019
3020 2005-03-21 Michael Snyder <msnyder@redhat.com>
3021
3022 * mn10300-tdep.c (mn10300_frame_unwind_cache): Use func addr
3023 instead of pc addr for frame_id. Otherwise "until" won't work.
3024
3025 2005-03-21 Kevin Buettner <kevinb@redhat.com>
3026
3027 * frv-linux-tdep.c (frv_linux_sigcontext_reg_addr): Fix typo in
3028 comment.
3029
3030 2005-03-20 Mark Kettenis <kettenis@gnu.org>
3031
3032 * dwarf2loc.c (dwarf_expr_tls_address): Mark addr as volatile.
3033 * varobj.c (my_value_equal): Mark val2 as volatile.
3034
3035 * cp-names.y: Add prototype for yyparse.
3036
3037 2005-03-19 Daniel Jacobowitz <dan@codesourcery.com>
3038
3039 * dwarf2loc.c (dwarf_expr_tls_address): Initialize ADDR.
3040 * gnu-v3-abi.c (gnuv3_baseclass_offset): Update type of
3041 VALADDR.
3042
3043 2005-03-18 Kevin Buettner <kevinb@redhat.com>
3044
3045 * Makefile.in (dwarf2loc.o, linux-thread-db.o): Add dependencies.
3046 * exceptions.h (TLS_NO_LIBRARY_SUPPORT_ERROR, TLS_GENERIC_ERROR)
3047 (TLS_LOAD_MODULE_NOT_FOUND_ERROR, TLS_NOT_ALLOCATED_YET_ERROR):
3048 New error/exception enums.
3049 * dwarf2loc.c (exceptions.h): Include.
3050 (dwarf_expr_tls_address): Invoke target_get_thread_local_address()
3051 via TRY_CATCH mechanism. Print error messages for TLS related
3052 exceptions.
3053 * linux-thread-db.c (thread_db_get_thread_local_address): Throw
3054 exceptions instead of printing errors.
3055
3056 2005-03-18 Mark Kettenis <kettenis@gnu.org>
3057
3058 * utils.c (safe_strerror): Use xsnprintf instead of sprintf.
3059 (decimal2str, octal2str): Change to return a string allocated by
3060 get_cell. Use xsnprint instead of snprintf.
3061 (paddr_u, paddr_d): Adjust for changed calling convention of
3062 decimal2str.
3063 (phex, phex_nz, hex_string): Use xsnprintf instead of snprintf.
3064 (int_string): Likewise. Adjust for changed calling convention of
3065 decimal2str and octal2str.
3066
3067 2005-03-18 Kevin Buettner <kevinb@redhat.com>
3068
3069 * frv-linux-tdep.c (frv_linux_sigcontext_reg_addr): Update comments.
3070 Adjust incorrectly computed constant for realtime signal frame.
3071
3072 2005-03-18 Mark Kettenis <kettenis@gnu.org>
3073
3074 From Ralf Corsepius <ralf.corsepius@rtems.org>
3075 * configure.tgt: Add m68*-*-rtems*.
3076
3077 2005-03-17 Mark Kettenis <kettenis@gnu.org>
3078
3079 * defs.h (xsnprintf): New prototype.
3080 * utils.c (xsnprintf): New function.
3081
3082 * corelow.c (get_core_register_section): Replace usage of sprintf
3083 and strcpy with xstrprintf and xstrdup.
3084
3085 * mips-tdep.c (mips_single_step_through_delay): Put back check for
3086 breakpoint lost with the introduction of this function.
3087
3088 2005-03-17 Paul Brook <paul@codesourcery.com>
3089
3090 * amd64-tdep.c (amd64_dwarf_reg_to_regnum): Fix broken logic.
3091 * s390-tdep.c (s390_dwarf_reg_to_regnum): Ditto.
3092
3093 2005-03-16 Mark Mitchell <mark@codesourcery.com>
3094
3095 * event-top.c (handle_sigquit): Do not define for systems without
3096 SIGQUIT.
3097 (sigquit_token): Likewise.
3098 (async_init_signals): Allow for systems that do not
3099 define SIGQUIT.
3100 * ser-tcp.c (net_open): Allow for systems that do not have SIGPIPE.
3101
3102 2005-03-15 Mark Mitchell <mark@codesourcery.com>
3103
3104 * utils.c (internal_vproblem): Guard call to fork with
3105 HAVE_WORKING_FORK.
3106 * cli/cli-cmds.c (shell_escape): Guard call to vfork with
3107 HAVE_WORKING_VFORK and HAVE_WORKING_FORK.
3108
3109 * remote-fileo.c (remote_fileio_mode_to_host): Accomodate lack of
3110 S_IRGRP and related macros.
3111 (remote_fileio_mode_to_target): Likewise.
3112
3113 2005-03-14 Ben Elliston <bje@au.ibm.com>
3114
3115 * Makefile.in (CLIBS): Link libbfd after libopcodes, as it is a
3116 more primitive library.
3117
3118 2005-03-13 Mark Kettenis <kettenis@gnu.org>
3119
3120 * inf-ttrace.c (inf_ttrace_pid_to_str): Use snprintf instead of
3121 sprintf.
3122 * target.c (normal_pid_to_str): Likewise.
3123 * remote.c (remote_pid_to_str): Use snprint instead of sprintf.
3124 Change capitalization of "thread". Use ptid_get_pid instead of
3125 GETPID.
3126
3127 * cp-abi.c (set_cp_abi_as_auto_default): Use xasprintf instead of
3128 a combination of xmalloc and sprintf.
3129
3130 2005-03-13 Jim Blandy <jimb@redhat.com>
3131
3132 * configure.ac: Use '=', not '=='; the latter is a GNU extension.
3133 * configure: Regenerated.
3134
3135 2005-03-11 Michael Snyder <msnyder@redhat.com>
3136
3137 * mn10300-tdep.c (mn10300_dummy_unwind_dummy_id): Replace
3138 stub fn with real implementatin mn10300_unwind_dummy_id.
3139 (mn10300_push_dummy_call): Implement. Bare bones version,
3140 does not handle structs or floats.
3141
3142 2005-03-11 Jim Blandy <jimb@redhat.com>
3143
3144 Avoid warnings due to the use of -Wuninitialized without -O.
3145 * configure.ac (build_warnings): Include -Wuninitialized only if
3146 CFLAGS is unset at configure time, or CFLAGS is set and includes
3147 some -O option other than -O0.
3148 * configure: Regenerated.
3149
3150 * mips-tdep.c (show_mips_abi): Change calling conventions to match
3151 those expected by add_setshow_enum_cmd. Use 'file' argument as
3152 appropriate.
3153
3154 2005-03-10 Daniel Jacobowitz <dan@codesourcery.com>
3155
3156 * Makefile.in (SFILES): Add cp-names.y.
3157 (libiberty_h, safe_ctype_h): New.
3158 (YYFILES): Add cp-names.c.
3159 (YYOBJ): Add cp-names.o.
3160 (test-cp-names.o, test-cp-names$(EXEEXT), cp-names.o): New rules.
3161 (clean): Remove test-cp-names$(EXEEXT).
3162 (local-maintainer-clean): Remove cp-names.c.
3163 * cp-names.y: New file.
3164 * cp-support.c (find_last_component): Delete.
3165 (d_left, d_right): Define.
3166 (cp_canonicalize_string, mangled_name_to_comp): New functions.
3167 (cp_class_name_from_physname, method_name_from_physname): Rewrite
3168 to use mangled_name_to_comp.
3169 * cp-support.h (cp_canonicalize_string, cp_demangled_name_to_comp)
3170 (cp_comp_to_string): New prototypes.
3171 * config/djgpp/fnchange.lst: Add cp-names.c.
3172
3173 2005-03-10 Bob Rossi <bob@brasko.net>
3174
3175 * main.c (print_gdb_help): Remove the --[no]async help message.
3176
3177 2005-03-10 Mark Kettenis <kettenis@gnu.org>
3178
3179 * proc-api.c: Update copyright year.
3180 (_initialize_proc_api): Revert previous patch, removing spurious
3181 space instead.
3182
3183 2005-03-09 Joel Brobecker <brobecker@adacore.com>
3184
3185 * regcache.c: Fix typo in comment.
3186
3187 2005-03-09 David Lecomber <david@lecomber.net>
3188
3189 * proc-api.c (_initialize_proc_api): Fix invalid multi-line
3190 i18n text.
3191
3192 2005-03-09 Mark Kettenis <kettenis@gnu.org>
3193
3194 * sparc-tdep.c (sparc_frame_cache): Adjust cached frame base
3195 address for 64-bit code.
3196 (sparc_unwind_dummy_id): Likewise.
3197 * sparc64-tdep.c (sparc64_frame_prev_register): Adjust for new
3198 frame base address convention.
3199 (sparc64_push_dummy_call): Likewise.
3200 * sparc64nbsd-tdep.c: Update copyright year.
3201 (sparc64nbsd_sigcontext_frame_cache): Adjust cached frame base
3202 address for 64-bit code.
3203 (sparc64nbsd_init_abi): Tweak comment.
3204 * sparc64obsd-tdep.c: Update copyright year.
3205 (sparc64obsd_frame_cache): Adjust cached frame base address for
3206 64-bit code.
3207 (sparc64obsd_init_abi): Tweak comment.
3208
3209 2005-03-09 Corinna Vinschen <vinschen@redhat.com>
3210
3211 * exceptions.h (TRY_CATCH): Define setjmp/sigsetjmp macro safe.
3212
3213 2005-03-09 Joel Brobecker <brobecker@adacore.com>
3214
3215 * dwarf2read.c (dwarf_decode_lines): Use the complete filename
3216 when creating include psymtabs.
3217
3218 2005-03-08 Mark Mitchell <mark@codesourcery.com>
3219
3220 * environ.h (struct environ): Rename to ...
3221 (struct gdb_environ): ... this.
3222 (make_environ): Update prototype.
3223 (free_environ): Likewise.
3224 (init_environ): Likewise.
3225 (get_in_environ): Likewise.
3226 (set_in_environ): Likewise.
3227 (unset_in_environ): Likewise.
3228 (environ_vector): Likewise.
3229 * environ.c (make_environ): Replace "struct environ" with "struct
3230 gdb_environ".
3231 (free_environ): Likewise.
3232 (init_environ): Likewise.
3233 (environ_vector): Likewise.
3234 (get_in_environ): Likewise.
3235 (set_in_environ): Likewise.
3236 (unset_in_environ): Likewise.
3237 * infcmd.c (inferior_environ): Likewise.
3238 * inferior.h (inferior_environ): Likewise.
3239
3240 2005-03-08 Joel Brobecker <brobecker@adacore.com>
3241
3242 * infcmd.c (run_command_1): New function, extracted from
3243 run_command.
3244 (run_command): Replace implementation by call to run_command_1.
3245 (start_command): Use run_command_1 to insert the temporary
3246 breakpoint and run the program. Remove code that's no longer
3247 needed, as already done at the proper time by run_command_1.
3248
3249 2005-03-08 Daniel Jacobowitz <dan@codesourcery.com>
3250
3251 * symfile.c (clear_symtab_users): Call
3252 clear_current_source_symtab_and_line first.
3253
3254 2005-03-08 Nathan Sidwell <nathan@codesourcery.com>
3255
3256 * ax-gdb.c (gen_expr): Add UNOP_PLUS case.
3257 * c-exp.y (exp): Add unary plus.
3258 * eval.c (evaluate_subexp_standard): Add UNOP_PLUS case.
3259 * valarith.c (value_x_unop): Add UNOP_PLUS case.
3260 (value_pos): New.
3261 * value.h (value_pos): Declare.
3262
3263 * remote.c (MIN_REMOTE_PACKET_SIZE): Set to 20.
3264 (remote_fetch_registers): Allow uppercase hex when resyncing.
3265 (remote_write_bytes): Only call get_memory_write_packet_size once.
3266 Robustify packet size calculation for very small packets. Check
3267 that at least one byte will be written.
3268
3269 * tracepoint.c (target_is_remote): Allow extended-remote.
3270 (struct collection_list): Allow 256 registers, like the comment
3271 said.
3272 (add_memrange): Fix comment.
3273 (read_actions): Turn EOF into 'end'.
3274
3275 2005-03-08 Corinna Vinschen <vinschen@redhat.com>
3276
3277 * Makefile.in: Add dependencies for iq2000-tdep.o.
3278 * configure.tgt: Add iq2000-*-* target.
3279 * iq2000-tdep.c: New file.
3280 * config/iq2000/iq2000.mt: New file.
3281
3282 2005-03-07 Joel Brobecker <brobecker@adacore.com>
3283
3284 * doc/observer.texi (executable_changed): New observer.
3285 * symtab.c: Include "observer.h".
3286 (find_main_name): New function.
3287 (main_name): If name_of_main is unset, then compute it
3288 using find_main_name.
3289 (symtab_observer_executable_changed): New function.
3290 (_initialize_symtab): Attach executable_changed observer.
3291 * exec.c: Include "observer.h".
3292 (exec_file_attach): Emit executable_changed notification.
3293 * symfile.c: Include "observer.h".
3294 (reread_symbols): Send an executable_changed if appropriate.
3295 * Makefile.in (exec.o): Add dependency on observer.h.
3296 (symfile.o): Likewise.
3297 (symtab.o): Likewise.
3298
3299 2005-03-07 Daniel Jacobowitz <dan@codesourcery.com>
3300
3301 * findvar.c (read_var_value): Don't allocate V when it will not
3302 be used. Add missing break for LOC_INDIRECT.
3303
3304 2005-03-06 Mark Kettenis <kettenis@gnu.org>
3305
3306 * sparc64fbsd-tdep.c: Include "solib-svr4.h".
3307 (sparc64fbsd_init_abi): Set skip_trampoline_code and
3308 solib_svr4_fetch_link_map_offsets.
3309 * Makefile.in (sparc64fbsd-tdep.o): Update dependencies.
3310
3311 2005-03-06 Daniel Jacobowitz <dan@codesourcery.com>
3312
3313 * linux-nat.c (child_follow_fork): Call target_terminal_ours before
3314 printing output. Use fprintf_unfiltered. Only print output when
3315 debugging.
3316
3317 2005-03-05 Mark Kettenis <kettenis@gnu.org>
3318
3319 * sparc64-tdep.c (sparc64_store_floating_fields): Constify third
3320 argument.
3321 (sparc64_store_arguments): Constify.
3322
3323 2005-03-05 Mark Kettenis <kettenis@gnu.org>
3324
3325 * alphabsd-nat.c: Update copyright year. Include "inf-ptrace.h".
3326 (alphabsd_fetch_inferior_registers): Rename from
3327 fetch_inferior_registers. Make static.
3328 (alphabsd_store_inferior_registers): Rename from
3329 store_inferior_registers. Make static.
3330 (_initialize_alphabsd_nat): New function.
3331 * Makefile.in (alphabsd-nat.o): Update dependencies.
3332 * config/alpha/fbsd.mh (NATDEPFILES): Remove infptrace.o and
3333 inftarg.o. Add inf-ptrace.o, fbsd-nat.o and gcore.o.
3334 * config/alpha/nbsd.mh (NAT_CLIBS): Remove variable.
3335 (NATDEPFILES): Remove infptrace.o and inftarg.o. Add
3336 alphabsd-nat.o.
3337 * config/alpha/nm-fbsd.h: Update copyright year. Don't include
3338 "config/nm-bsd.h" and "elf/common.h".
3339 * config/alpha/nm-nbsd.h: Update copyright year. Don't include
3340 "config/nm-nbsd.h".
3341
3342 * mips64obsd-tdep.c (mips64obsd_init_abi): Don't set
3343 software_single_step.
3344
3345 2005-03-04 Michael Snyder <msnyder@redhat.com>
3346
3347 * mn10300-prologue.c: New file. Prologue analysis.
3348 * mn10300-tdep.c: Move REGNUM values to mn10300-tdep.h.
3349 (mn10300_frame_unwind_cache): Don't call trad_frame_set_id
3350 until after analyze_prologue, and don't call trad_frame_set_base
3351 at all (let analyze_prologue do it).
3352
3353 2005-03-04 Michael Snyder <msnyder@redhat.com>
3354
3355 * trad-frame.c (trad_frame_set_reg_value): New function.
3356 * trad-frame.h (trad_frame_set_reg_value): Export.
3357
3358 2005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
3359
3360 * Makefile.in (remote.o): Update dependencies.
3361 * remote.c: Include "observer.h".
3362
3363 2005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
3364
3365 * target.c (target_read_memory_partial): Always initialize
3366 ERR.
3367 (target_write_memory_partial): Likewise.
3368
3369 2005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
3370
3371 * remote.c (remote_open_1): Call observer_notify_inferior_created.
3372
3373 2005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
3374
3375 * arm-tdep.c (arm_make_stub_cache, arm_stub_this_id)
3376 (arm_stub_unwind, arm_stub_unwind_sniffer): New.
3377 (arm_gdbarch_init): Add arm_stub_unwind_sniffer.
3378
3379 2005-03-02 Daniel Jacobowitz <dan@codesourcery.com>
3380
3381 * linux-nat.c (linux_supports_tracevforkdone, child_follow_fork):
3382 Use LWP IDs.
3383
3384 2005-02-28 Daniel Jacobowitz <dan@codesourcery.com>
3385
3386 * dwarf2loc.c (loclist_read_variable): Set optimized_out
3387 instead of reporting an error.
3388 * valprint.c (value_check_printable): New function.
3389 (common_val_print): New function. Use value_check_printable.
3390 (value_print): Use value_check_printable.
3391 * value.h (common_val_print): Add prototype.
3392
3393 * c-valprint.c (c_val_print): Use common_val_print.
3394 * cp-valprint.c (cp_print_value_fields): Likewise.
3395 (cp_print_hpacc_virtual_table_entries): Likewise.
3396 * f-valprint.c (f_val_print): Likewise.
3397 * jv-valprint.c (java_value_print, java_print_value_fields):
3398 Likewise.
3399 * scm-valprint.c (scm_value_print): Likewise.
3400 * stack.c (print_frame_args): Likewise.
3401 * varobj.c (c_value_of_variable): Likewise.
3402 * p-valprint.c (pascal_val_print, pascal_value_print): Likewise.
3403 (pascal_object_print_value_fields): Likewise. Update call to
3404 pascal_object_print_static_field.
3405 (pascal_object_print_static_field): Remove TYPE argument. Use
3406 common_val_print.
3407
3408 2005-02-25 Mark Kettenis <kettenis@gnu.org>
3409
3410 Committed by Elena Zannoni <ezannoni@redhat.com>
3411
3412 * dwarf2read.c (dwarf2_build_psymtabs_hard): Adjust
3413 info_ptr before building psymtabs for included files.
3414 (create_all_comp_units): Initailize initial length size of
3415 compilation header to zero.
3416 (read_initial_length): Complain if both 32-bit and 64-bit DWARF
3417 sections are encountered within the same compilation header.
3418 (dwarf_decode_line_header): Pass compilation header in call to
3419 read_initial_length.
3420
3421 2005-02-24 Andrew Cagney <cagney@gnu.org>
3422
3423 Add show_VARIABLE functions, update add_setshow call.
3424 * varobj.c (_initialize_varobj, show_varobjdebug): Add and update.
3425 * valprint.c (_initialize_valprint, show_print_max)
3426 (show_stop_print_at_null, show_repeat_count_threshold)
3427 (show_prettyprint_structs, show_unionprint)
3428 (show_prettyprint_arrays, show_addressprint, show_input_radix)
3429 (show_output_radix): Ditto.
3430 * valops.c (_initialize_valops, show_overload_resolution): Ditto.
3431 * utils.c (initialize_utils, show_chars_per_line)
3432 (show_lines_per_page, show_demangle, show_pagination_enabled)
3433 (show_sevenbit_strings, show_asm_demangle): Ditto
3434 * tui/tui-win.c (_initialize_tui_win, show_tui_border_kind)
3435 (show_tui_border_mode, show_tui_active_border_mode): Ditto.
3436 * top.c (init_main, show_new_async_prompt)
3437 (show_async_command_editing_p, show_write_history_p)
3438 (show_history_size, show_history_filename, show_caution)
3439 (show_annotation_level, init_main): Ditto.
3440 * target.c (initialize_targets, show_targetdebug)
3441 (show_trust_readonly): Ditto.
3442 * symfile.c (_initialize_symfile, show_symbol_reloading)
3443 (show_ext_args, show_download_write_size)
3444 (show_debug_file_directory): Ditto.
3445 * source.c (_initialize_source, show_lines_to_list): Ditto.
3446 * solib.c (_initialize_solib, show_auto_solib_add)
3447 (show_solib_search_path): Ditto.
3448 * p-valprint.c (_initialize_pascal_valprint)
3449 (show_pascal_static_field_print): Ditto.
3450 * printcmd.c (_initialize_printcmd, show_max_symbolic_offset)
3451 (show_print_symbol_filename): Add and update.
3452 * parse.c (_initialize_parse, show_expressiondebug): Dito.
3453 * observer.c (_initialize_observer, show_observer_debug): Dito.
3454 * maint.c (_initialize_maint_cmds, show_watchdog)
3455 (show_maintenance_profile_p): Dito.
3456 * linux-nat.c (_initialize_linux_nat, show_debug_linux_nat): Dito.
3457 * infrun.c (_initialize_infrun, show_debug_infrun)
3458 (show_stop_on_solib_events, show_follow_fork_mode_string)
3459 (show_scheduler_mode, show_step_stop_if_no_debug): Ditto.
3460 * infcall.c (_initialize_infcall, show_coerce_float_to_double_p)
3461 (show_unwind_on_signal_p): Ditto.
3462 * gdbtypes.c (build_gdbtypes, show_opaque_type_resolution)
3463 (_initialize_gdbtypes, show_overload_debug): Ditto.
3464 * gdb-events.c, gdb-events.sh (_initialize_gdb_events)
3465 (show_gdb_events_debug): Ditto.
3466 * gdbarch.c, gdbarch.sh (show_gdbarch_debug)
3467 (_initialize_gdbarch): Ditto.
3468 * frame.c (_initialize_frame, show_backtrace_past_main)
3469 (show_backtrace_past_entry, show_backtrace_limit)
3470 (show_frame_debug): Ditto.
3471 * exec.c (_initialize_exec, show_write_files): Ditto.
3472 * dwarf2read.c (_initialize_dwarf2_read)
3473 (show_dwarf2_max_cache_age): Ditto.
3474 * demangle.c (_initialize_demangler)
3475 (show_demangling_style_names): Ditto.
3476 * dcache.c (_initialize_dcache, show_dcache_enabled_p): Ditto.
3477 * cp-valprint.c (show_static_field_print)
3478 (_initialize_cp_valprint, show_vtblprint, show_objectprint): Ditto.
3479 * corefile.c (_initialize_core, show_gnutarget_string): Ditto.
3480 * cli/cli-logging.c (_initialize_cli_logging)
3481 (show_logging_overwrite, show_logging_redirect)
3482 (show_logging_filename): Ditto.
3483 * cli/cli-cmds.c (show_info_verbose, show_history_expansion_p)
3484 (init_cli_cmds, show_baud_rate, show_remote_debug)
3485 (show_remote_timeout, show_max_user_call_depth): Ditto.
3486 * charset.c (show_host_charset_name, show_target_charset_name)
3487 (initialize_charset): Ditto.
3488 * breakpoint.c (show_can_use_hw_watchpoints)
3489 (show_pending_break_support, _initialize_breakpoint): Ditto.
3490
3491 2005-02-23 Jim Blandy <jimb@redhat.com>
3492
3493 * disasm.c (gdb_disassemble_info): Call disassemble_init_for_target.
3494
3495 2005-02-23 Andrew Cagney <cagney@gnu.org>
3496
3497 * cli/cli-dump.c (dump_bfd_file): Replace magic constant with
3498 SEC_XXX flags.
3499
3500 2005-02-22 Andrew Cagney <cagney@gnu.org>
3501
3502 * configure.ac: Only enaable insight when itcl is present.
3503 * configure: Re-generate.
3504
3505 2005-02-21 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
3506
3507 Committed by Andrew Cagney.
3508 * infptrace.c (store_register): Fix typo.
3509
3510 2005-02-21 Andrew Cagney <cagney@gnu.org>
3511
3512 * command.h (deprecated_add_set_cmd): Rename add_set_cmd.
3513 * cli/cli-decode.h (add_set_cmd): Delete declaration.
3514 * cli/cli-decode.c (deprecated_add_set_cmd): Rename add_set_cmd.
3515 * i386-nat.c (_initialize_i386_nat): Update call.
3516 * valprint.c (_initialize_valprint): Update comment.
3517 * gnu-nat.c (_initialize_gnu_nat): Update call.
3518
3519 2005-02-21 Alan Modra <amodra@bigpond.net.au>
3520
3521 * elfread.c (elf_symtab_read): Discard section syms.
3522
3523 2005-02-21 Andrew Cagney <cagney@gnu.org>
3524
3525 * cli/cli-decode.c (add_set_enum_cmd): Delete function.
3526 (deprecated_add_show_from_set): Delete function.
3527 * command.h (add_set_enum_cmd): Delete declaration.
3528 (deprecated_add_show_from_set): Delete declaration.
3529 * cli/cli-decode.h (add_set_enum_cmd): Delete declaration.
3530 (deprecated_add_show_from_set): Delete declaration.
3531 * arm-tdep.c (_initialize_arm_tdep): Update comment.
3532 * kod.c (kod_set_os): Simplify.
3533 * infrun.c (set_schedlock_func): Simplify.
3534 * cli/cli-dump.c (add_dump_command): Update comment.
3535
3536 Replace string variables with a filename completer with
3537 add_setshow_optional_filename_cmd.
3538 * solib.c, symfile.c: Update.
3539 * cli/cli-setshow.c: Do not tidle expand the file.
3540
3541 Add more uses of add_setshow_string_cmd, add_setshow_integer_cmd,
3542 and add_setshow_string_noescape_cmd.
3543 * cli/cli-setshow.c (deprecated_show_value_hack): Do not print a
3544 NULL command's value.
3545 * kod.c, language.c, ocd.c, remote-e7000.c, remote-mips.c: Update.
3546 * remote-sds.c, remote.c, symfile.c, top.c: Update.
3547
3548 2005-02-20 Andrew Cagney <cagney@gnu.org>
3549
3550 Use add_setshow_enum_cmd through out.
3551 * arch-utils.c, charset.c, demangle.c, i386-tdep.c: Update.
3552 * infrun.c, mips-tdep.c, osabi.c, serial.c, tui/tui-win.c: Update.
3553
3554 * mi/mi-main.c (captured_mi_execute_command): Use
3555 mi_cmd_interpreter_exec.
3556
3557 * cli/cli-decode.c (add_setshow_optional_filename_cmd): New
3558 function.
3559 * cli/cli-setshow.c (deprecated_show_value_hack)
3560 (do_setshow_command): Handle var_optional_filename.
3561 * command.h (enum var_types): Add var_optional_filename.
3562 (add_setshow_optional_filename_cmd): Declare.
3563 * infcmd.c (notice_args_read): Use.
3564
3565 * symfile-mem.c (symbol_file_add_from_memory): Pass
3566 target_read_memory to bfd_elf_bfd_from_remote_memory.
3567 (do_target_read_memory): Delete.
3568
3569 2005-02-16 Mark Kettenis <kettenis@gnu.org>
3570
3571 * value.h (value_contents_equal): New prototype.
3572 * value.c (value_contents_equal): New function.
3573 * varobj.c: Include "exceptions.h" and "gdb_assert.h". Don't
3574 include <math.h>.
3575 (varobj_set_value): Initialize error to zero.
3576 (varobj_update): Rename error2 to error and initialize it to zero.
3577 Slightly change the wording of some comments.
3578 (my_value_equal): Reimplement using TRY_CATCH and
3579 value_contents_equal.
3580
3581 2005-02-18 Andrew Cagney <cagney@gnu.org>
3582
3583 * cli/cli-decode.c (add_setshow_integer_cmd): New function.
3584 * command.h (add_setshow_integer_cmd): Declare.
3585 * cli/cli-cmds.c: Update.
3586
3587 Use add_setshow_uinteger_cmd through out.
3588 * printcmd.c, source.c, utils.c, valprint.c: Update.
3589
3590 Use add_setshow_zinteger_cmd through out. Re-sync gdbarch.sh
3591 and gdbarch.c.
3592 * breakpoint.c, frame.c, gdb-events.sh, gdbarch.sh: Update.
3593 * gdbtypes.c, infrun.c, linux-nat.c, maint.c, monitor.c: Update.
3594 * pa64solib.c, parse.c, remote-mips.c, ser-go32.c: Update.
3595 * serial.c, solib-frv.c, somsolib.c, target.c, top.c: Update.
3596 * varobj.c, cli/cli-cmds.c: Update.
3597 * gdbarch.c, gdb-events.c: Regenerate.
3598
3599 Use add_setshow_boolean_command through out. Delete #ifdef 0'ed
3600 code adding set/show boolean commands.
3601 * cp-valprint.c, dcache.c, exec.c, gdbtypes.c, infrun.c: Update.
3602 * monitor.c, p-valprint.c, pa64solib.c, printcmd.c: Update.
3603 * proc-api.c, remote-mips.c, remote.c, solib.c: Update.
3604 * somsolib.c, symfile.c, top.c, utils.c, valops.c: Update.
3605 * valprint.c, win32-nat.c, wince.c, xcoffsolib.c: Update.
3606 * cli/cli-cmds.c: Update.
3607
3608 2005-02-17 Andrew Cagney <cagney@gnu.org>
3609
3610 * cli/cli-decode.c (add_setshow_filename_cmd): Set the completer
3611 to filename_completer.
3612 * solib.c (_initialize_solib, reload_shared_libraries): Use
3613 add_setshow_filename_cmd.
3614 * serial.c (_initialize_serial): Ditto.
3615 * remote-utils.c (_initialize_sr_support): Ditto.
3616
3617 * cli/cli-decode.c (add_setshow_string_noescape_cmd): New function.
3618 * command.h (add_setshow_string_noescape_cmd): Declare.
3619 * wince.c (_initialize_wince): Use.
3620 * symfile.c (_initialize_symfile): Use.
3621 (set_ext_lang_command): Update declaration.
3622 * corefile.c (_initialize_core): Use.
3623
3624 * cli/cli-decode.c (add_setshow_cmd_full, add_setshow_enum_cmd)
3625 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
3626 (add_setshow_filename_cmd, add_setshow_string_cmd)
3627 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
3628 fprint_setshow parameter.
3629 * command.h (fprint_setshow_ftype): Delete.
3630 (add_setshow_cmd_full, add_setshow_enum_cmd)
3631 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
3632 (add_setshow_filename_cmd, add_setshow_string_cmd)
3633 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
3634 fprint_setshow parameter.
3635 * aix-thread.c, alpha-tdep.c, arm-tdep.c, breakpoint.c: Update.
3636 * complaints.c, cris-tdep.c, dwarf2read.c, frame.c: Update.
3637 * hppa-tdep.c, infcall.c, m32r-rom.c, maint.c: Update.
3638 * mips-tdep.c, nto-tdep.c, observer.c, remote-rdi.c: Update
3639 * remote.c, target.c, cli/cli-logging.c: Update.
3640
3641 2005-02-16 Andrew Cagney <cagney@gnu.org>
3642
3643 Merge setshow print and show parameters.
3644 * command.h (show_value_ftype): Define.
3645 (deprecated_show_value_hack): Declare.
3646 (add_setshow_enum_cmd, add_setshow_auto_boolean_cmd)
3647 (add_setshow_boolean_cmd, add_setshow_filename_cmd)
3648 (add_setshow_string_cmd, add_setshow_uinteger_cmd)
3649 (add_setshow_zinteger_cmd): Change type of show_func to
3650 show_value_ftype.
3651 * cli/cli-decode.h (struct cmd_list_element): Replace
3652 fprint_setshow with show_value_func.
3653 * cli/cli-decode.c (add_setshow_cmd_full): Update show_func
3654 parameter. Set show_value_func. Do not set cmd_sfunc.
3655 (add_setshow_enum_cmd, add_setshow_auto_boolean_cmd)
3656 (add_setshow_boolean_cmd, add_setshow_filename_cmd)
3657 (add_setshow_string_cmd, add_setshow_uinteger_cmd)
3658 (add_setshow_zinteger_cmd): Update.
3659 * complaints.c (complaints_show_value): Replace
3660 fprint_setshow_complaints.
3661 (_initialize_complaints): Update.
3662 * mips-tdep.c (show_mask_address): Update.
3663 * arm-tdep.c (show_fp_model): Update.
3664 * cli/cli-setshow.c (do_setshow_command): Call show_value_func
3665 instead of fprint_setshow. Use deprecated_show_value_hack.
3666 (deprecated_show_value_hack): New function.
3667 * remote.c (add_packet_config_cmd, show_remote_cmd):
3668 (show_remote_protocol_P_packet_cmd)
3669 (show_remote_protocol_P_packet_cmd)
3670 (show_remote_protocol_Z_access_wp_packet_cmd)
3671 (show_remote_protocol_Z_hardware_bp_packet_cmd)
3672 (show_remote_protocol_Z_packet_cmd)
3673 (show_remote_protocol_Z_read_wp_packet_cmd)
3674 (show_remote_protocol_Z_software_bp_packet_cmd)
3675 (show_remote_protocol_Z_write_wp_packet_cmd)
3676 (show_remote_protocol_binary_download_cmd)
3677 (show_remote_protocol_p_packet_cmd)
3678 (show_remote_protocol_qPart_auxv_packet_cmd)
3679 (show_remote_protocol_qSymbol_packet_cmd)
3680 (show_remote_protocol_vcont_packet_cmd): Update.
3681
3682 2005-02-16 Mark Kettenis <kettenis@gnu.org>
3683
3684 * wrapper.h: Update copyright year. Properly wrap a few
3685 prototypes.
3686 (struct gdb_wrapper_arguments): Remove forward declaration.
3687 * wrapper.c: Update copyright year. Include "ui-out.h".
3688 (struct gdb_wrapper_arguments): Remove.
3689 (struct captured_value_struct_elt_args): Remove.
3690 (wrapper_parse_exp_1, wrap_evaluate_expression)
3691 (wrap_value_fetch_lazy, wrap_value_equal, wrap_value_assign)
3692 (wrap_value_subscript, wrap_value_ind, wrap_parse_and_eval_type)
3693 (do_captured_value_struct_elf): Remove functions.
3694 (gdb_parse_exp_1, gdb_evaluate_expression, gdb_value_fetch_lazy)
3695 (gdb_value_equal, gdb_value_assign, gdb_value_subscript)
3696 (gdb_value_ind, gdb_parse_and_eval_type, gdb_value_struct_elt):
3697 Re-implement using TRY_CATCH.
3698
3699 2005-02-16 Yoshinori Sato <ysato@users.sourceforge.jp>
3700
3701 * remote-e7000.c: unuse TM_FILE defined macro.
3702 (e7000_fetch_registers)
3703 (e7000_store_registers)
3704 (e7000_wait): delete NUM_REALREGS.
3705 * remote-hms.c: move TM_FILE macro.
3706 (CCR_REGNO): move define from tm-h8300.h.
3707
3708 2005-02-15 Mark Kettenis <kettenis@gnu.org>
3709
3710 * amd64-linux-tdep.c: Update copyright year.
3711 (amd64_linux_sigtramp_start): Use sizeof operator instead of
3712 LINUX_SIGTRAMP_LEN.
3713
3714 2004-02-15 Joel Brobecker <brobecker@gnat.com>
3715
3716 From Paul Hilfinger <hilfinger@gnat.com>
3717 * dwarf2read.c (new_symbol): Use SYMBOL_SEARCH_NAME rather than
3718 SYMBOL_NATURAL_NAME to set type names.
3719
3720 2005-02-15 Andrew Cagney <cagney@gnu.org>
3721
3722 Mark up add_com, add_info and add_prefix_cmd.
3723 * breakpoint.c, cp-support.c, dcache.c, dwarf2read.c: Update.
3724 * exec.c, f-valprint.c, frame.c, gcore.c, gnu-nat.c: Update.
3725 * go32-nat.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
3726 * kod.c, language.c, linux-nat.c, m32r-rom.c, macrocmd.c: Update.
3727 * maint.c, memattr.c, mips-tdep.c, nto-procfs.c, objc-lang.c: Update.
3728 * ocd.c, pa64solib.c, printcmd.c, procfs.c, regcache.c: Update.
3729 * remote-e7000.c, remote-m32r-sdi.c, remote-mips.c: Update.
3730 * remote-sds.c, remote-sim.c, remote-st.c, remote-utils.c: Update.
3731 * remote.c, rs6000-tdep.c, ser-go32.c, serial.c: Update.
3732 * sh-tdep.c, solib.c, somsolib.c, source.c, stack.c: Update.
3733 * symfile.c, symtab.c, target.c, thread.c, top.c: Update.
3734 * tracepoint.c, typeprint.c, utils.c, valprint.c: Update.
3735 * win32-nat.c, xcoffsolib.c, cli/cli-cmds.c, cli/cli-dump.c: Update.
3736 * cli/cli-logging.c, tui/tui-layout.c, tui/tui-regs.c: Update.
3737 * tui/tui-stack.c, tui/tui-win.c: Update.
3738
3739 2005-02-14 Andrew Cagney <cagney@gnu.org>
3740
3741 * config/h8300/h8300.mt (DEPRECATED_TM_FILE): Delete.
3742 * config/h8300/tm-h8300.h: Delete file.
3743
3744 Mark up add_cmd.
3745 * arch-utils.c, avr-tdep.c, breakpoint.c, corefile.c: Update.
3746 * cp-abi.c, cp-namespace.c, cp-support.c, dummy-frame.c: Update.
3747 * exec.c, gnu-nat.c, go32-nat.c, hppa-tdep.c, infcmd.c: Update.
3748 * infrun.c, interps.c, macrocmd.c, maint.c, memattr.c: Update.
3749 * mips-tdep.c, ocd.c, osabi.c, printcmd.c, regcache.c: Update.
3750 * reggroups.c, remote-fileio.c, remote-rdi.c, remote.c: Update.
3751 * sol-thread.c, source.c, stack.c, symfile-mem.c: Update.
3752 * symfile.c, thread.c, tracepoint.c, valprint.c, value.c: Update.
3753 * win32-nat.c, cli/cli-cmds.c, cli/cli-dump.c: Update.
3754 * cli/cli-logging.c, tui/tui-regs.c: Update.
3755
3756 Mark up add_setshow functions, replace "PRINT:" comment prefix
3757 with "FIXME: i18n:".
3758 * aix-thread.c, alpha-tdep.c, arm-tdep.c, breakpoint.c: Update.
3759 * cris-tdep.c, dwarf2read.c, frame.c, hppa-tdep.c: Update.
3760 * infcall.c, m32r-rom.c, maint.c, mips-tdep.c: Update.
3761 * nto-tdep.c, observer.c, remote-rdi.c, remote.c: Update.
3762 * target.c, cli/cli-logging.c: Update.
3763
3764 * utils.c (paddress): New function.
3765 * defs.h (paddress): Declare.
3766 * printcmd.c (deprecated_print_address_numeric): Rename
3767 print_address_numeric, call paddress.
3768 * valprint.c, ui-out.c, tui/tui-stack.c, tracepoint.c: Update.
3769 * symmisc.c, symfile.c stack.c, p-valprint.c, printcmd.c: Update.
3770 * maint.c, m32r-rom.c, infcmd.c, f-valprint.c, exec.c: Update.
3771 * dwarf2read.c, dve3900-rom.c, defs.h, c-valprint.c: Update.
3772 * corefile.c, cli/cli-cmds.c, breakpoint.c, annotate.c: Update.
3773 * ada-valprint.c: Update.
3774
3775 2005-02-13 Ramana Radhakrishnan <ramana.radhakrishnan@codito.com>
3776
3777 * MAINTAINERS: Add myself to "Write After Approval".
3778
3779 2005-02-12 Yoshinori Sato <ysato@users.sourceforge.jp>
3780
3781 Restore h8300 support.
3782 * configure.tgt: Add h8300-*-*
3783 * h8300-tdep.c: New file. Rewrite new frame code.
3784 * config/h8300/h8300.mt: New file. Restored Rev 1.3
3785 * config/h8300/tm-h8300.h: New file. Restored Rev 1.21
3786
3787 * MAINTAINERS: Add myself to "Write After Approval".
3788
3789 2005-02-11 Andrew Cagney <cagney@gnu.org>
3790
3791 Mark up some of printf_filtered and printf_unfiltered.
3792 * ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
3793 * corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
3794 * demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
3795 * event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
3796 * gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
3797 * infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
3798 * linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
3799 * mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
3800 * ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
3801 * remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
3802 * stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
3803 * top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
3804 * cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
3805 * tui/tui-regs.c, tui/tui-win.c: Update.
3806
3807 Mark up error_no_arg, query, perror_with_name, complaint, and
3808 internal_error.
3809 * breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
3810 * cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
3811 * dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
3812 * dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
3813 * exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
3814 * frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
3815 * gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
3816 * go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
3817 * i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
3818 * i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
3819 * infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
3820 * interps.c, language.c, linespec.c, linux-nat.c: Update.
3821 * m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
3822 * m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
3823 * macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
3824 * mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
3825 * mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
3826 * objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
3827 * parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
3828 * ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
3829 * regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
3830 * remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
3831 * remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
3832 * s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
3833 * sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
3834 * solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
3835 * sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
3836 * symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
3837 * utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
3838 * win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
3839 * cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
3840 * cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
3841 * mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
3842 * tui/tui-file.c, tui/tui-interp.c: Update.
3843
3844 2005-02-10 Andrew Cagney <cagney@gnu.org>
3845
3846 Mark up all error and warning messages.
3847 * ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
3848 * bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
3849 * core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
3850 * cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
3851 * dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
3852 * dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
3853 * dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
3854 * event-top.c, exec.c, expprint.c, f-lang.c: Update.
3855 * f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
3856 * frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
3857 * gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
3858 * hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
3859 * hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
3860 * hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
3861 * i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
3862 * i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
3863 * ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
3864 * infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
3865 * inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
3866 * kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
3867 * linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
3868 * m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
3869 * m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
3870 * maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
3871 * mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
3872 * nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
3873 * observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
3874 * p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
3875 * ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
3876 * remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
3877 * remote-rdp.c, remote-sim.c, remote-st.c: Update.
3878 * remote-utils.c, remote-utils.h, remote.c: Update.
3879 * rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
3880 * ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
3881 * sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
3882 * solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
3883 * solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
3884 * somread.c, somsolib.c, source.c, stabsread.c: Update.
3885 * stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
3886 * symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
3887 * tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
3888 * uw-thread.c, valarith.c, valops.c, valprint.c: Update.
3889 * value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
3890 * xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
3891 * cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
3892 * cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
3893 * mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
3894 * mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
3895 * mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
3896 * tui/tui-win.c: Update.
3897
3898 2005-02-10 Ian Lance Taylor <ian@airs.com>
3899
3900 * MAINTAINERS: Update my e-mail address.
3901
3902 2005-02-10 Daniel Jacobowitz <dan@debian.org>
3903
3904 From Ramana Radhakrishnan <ramana.radhakrishnan@codito.com>:
3905 PR exp/1821
3906 * cp-valprint.c: Include "language.h".
3907 (cp_print_value_fields): Pass the current language to
3908 fprintf_symbol_filtered.
3909 * Makefile.in (cp-valprint.o): Update dependencies.
3910
3911 2005-02-10 Andrew Cagney <cagney@gnu.org>
3912
3913 * cli/cli-decode.c (add_setshow_enum_cmd, add_setshow_cmd_full)
3914 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
3915 (add_setshow_filename_cmd, add_setshow_string_cmd)
3916 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Replace
3917 print string parameter with fprint_setshow function.
3918 * command.h (fprint_setshow_ftype): Define. Update declarations.
3919 * cli/cli-setshow.c (do_setshow_command): When fprint_setshow is
3920 available, use that.
3921 * cli/cli-decode.h (struct cmd_list_element): Add field
3922 fprint_setshow.
3923 * complaints.c (fprint_setshow_complaints): New function.
3924 (_initialize_complaints): Pass to add_setshow_zinteger_cmd.
3925 * hppa-tdep.c (_initialize_hppa_tdep): Replace "print" parameter
3926 with NULL.
3927 * mips-tdep.c (_initialize_mips_tdep): Ditto.
3928 * m32r-rom.c (_initialize_m32r_rom): Ditto.
3929 * cris-tdep.c (_initialize_cris_tdep): Ditto.
3930 * arm-tdep.c (_initialize_arm_tdep): Ditto.
3931 * remote-rdi.c (_initialize_remote_rdi): Ditto.
3932 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
3933 * dwarf2read.c (_initialize_dwarf2_read): Ditto.
3934 * frame.c (_initialize_frame): Ditto.
3935 * target.c (initialize_targets): Ditto.
3936 * maint.c (_initialize_maint_cmds): Ditto.
3937 * observer.c (_initialize_observer): Ditto.
3938 * infcall.c (_initialize_infcall): Ditto.
3939 * breakpoint.c (_initialize_breakpoint): Ditto.
3940 * cli/cli-logging.c (_initialize_cli_logging): Ditto.
3941 * remote.c (add_packet_config_cmd, _initialize_remote): Ditto.
3942
3943 * cli/cli-setshow.c (do_setshow_command): Move code printing the
3944 value to the end of the function. Handle MI and non-MI output
3945 differently.
3946
3947 2005-02-09 Andrew Cagney <cagney@gnu.org>
3948
3949 * cli/cli-decode.c (add_setshow_enum_cmd): Drop set_result and
3950 show_result parameters.
3951 * mips-tdep.c (_initialize_mips_tdep): Update calls.
3952 * command.h: Update declaration.
3953 * arm-tdep.c (_initialize_arm_tdep, _initialize_arm_tdep): Update
3954 calls.
3955
3956 * NEWS: Mention removed commands.
3957 * m68hc11-tdep.c (show_regs): Delete, unused.
3958 (_initialize_m68hc11_tdep): Delete deprecated "regs" command.
3959 * gdb-events.sh: Delete deprecated "set eventdebug" and "show
3960 eventdebug" commands.
3961 * gdb-events.c: Regenerate.
3962 * gdbarch.sh: Delete deprecated "set archdebug" and "show
3963 archdebug" commands.
3964 * gdbarch.c: Regenerate.
3965 * cli/cli-cmds.c (init_cli_cmds): Delete deprecated "set
3966 remotedebug" and "show remotedebug".
3967 * arm-tdep.c (_initialize_arm_tdep): Delete deprecated "set arm
3968 disassembly-flavor", "show arm disassembly-flavor", and
3969 "othernames" commands.
3970 (arm_othernames): Delete unused function.
3971
3972 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call)
3973 (convert_code_addr_to_desc_addr): Convert any function code
3974 address to the corresponding function's descriptor.
3975 (ppc64_sysv_abi_return_value): have TYPE_CODE_ENUM and
3976 TYPE_CODE_INT use the same code paths as TYPE_CODE_INT. When
3977 writing, convert any function code address to the corresponding
3978 descriptor.
3979
3980 * config/sh/linux.mt (TDEPFILES): Add symfile-mem.o.
3981 * config/powerpc/linux.mt (TDEPFILES): Ditto.
3982 * config/pa/linux.mt (TDEPFILES): Ditto.
3983 * config/mips/linux.mt (TDEPFILES): Ditto.
3984 * config/m68k/linux.mt (TDEPFILES): Ditto.
3985 * config/m32r/linux.mt (TDEPFILES): Ditto.
3986 * config/ia64/linux.mt (TDEPFILES): Ditto.
3987 * config/arm/linux.mt (TDEPFILES): Ditto.
3988
3989 2005-02-09 Corinna Vinschen <vinschen@redhat.com>
3990
3991 * symmisc.c: Include gdb_stat.h.
3992 (maintenance_print_msymbols): Use inode numbers to compare files.
3993
3994 2005-02-08 Andrew Cagney <cagney@gnu.org>
3995
3996 * value.h (METHOD_PTR_IS_VIRTUAL, METHOD_PTR_FROM_VOFFSET)
3997 (METHOD_PTR_TO_VOFFSET): Move from here ...
3998 * cp-support.h (METHOD_PTR_IS_VIRTUAL, METHOD_PTR_FROM_VOFFSET)
3999 (METHOD_PTR_TO_VOFFSET): ... to here.
4000 * cp-valprint.c, p-valprint.c, eval.c: Include "cp-support.h".
4001 * Makefile.in: Update dependencies.
4002
4003 * exceptions.c: Do not include <setjmp.h>.
4004 (SIGJMP_BUF, SIGSETJMP, SIGLONGJMP): Delete macros.
4005 (catch_exception, catch_exceptions_with_msg, catch_errors)
4006 (catch_command_errors): Use TRY_CATCH.
4007 (struct catcher): Use EXCEPTIONS_SIGJMP_BUF.
4008 (exceptions_state_mc_init): Rename catcher_init.
4009 (exceptions_state_mc): Rename catcher_state_machine.
4010 (exceptions_state_mc_action_iter)
4011 (exceptions_state_mc_action_iter_1): New functions.
4012 * exceptions.h: Include <setjmp.h>.
4013 (EXCEPTIONS_SIGJMP_BUF, EXCEPTIONS_SIGSETJMP)
4014 (EXCEPTIONS_SIGLONGJMP): Define.
4015 (exceptions_state_mc_init, exceptions_state_mc_action_iter)
4016 (exceptions_state_mc_action_iter_1): Declare.
4017 (TRY_CATCH): Define.
4018
4019 * ppc-linux-tdep.c (ppc_linux_init_abi): Do not set malloc name,
4020 no longer needed.
4021
4022 * ppc-linux-nat.c (ppc_register_u_addr): Hack around 64-bit
4023 PT_FPSCR breakage.
4024
4025 * value.c (struct value): Move to here ...
4026 * value.h (struct value): ... from here. Copy comments to
4027 corresponding function declarations, re-order.
4028
4029 2005-02-07 Andrew Cagney <cagney@gnu.org>
4030
4031 * value.c (set_value_bitpos, set_value_bitsize): Define.
4032 * value.h (set_value_bitpos, set_value_bitsize): Declare.
4033 * ada-lang.c, valarith.c: Update.
4034
4035 * cp-valprint.c, c-valprint.c, infcall.c: Use value_contents or
4036 value_contents_writeable, include note that there are problems.
4037 * breakpoint.c, infcall.c: Use VALUE_LVAL.
4038
4039 * value.h (set_value_offset): Declare.
4040 * value.c (set_value_offset): Declare.
4041 * gnu-v2-abi.c, jv-valprint.c, valarith.c, valops.c: Update.
4042 * findvar.c: Update.
4043
4044 * value.h (value_next): Declare.
4045 * value.c (value_next): Define.
4046 * breakpoint.c: Update.
4047
4048 * value.h (deprecated_set_value_modifiable)
4049 (deprecated_value_modifiable): Declare.
4050 * value.c (deprecated_set_value_modifiable): Define.
4051 (deprecated_value_modifiable): Define.
4052 * ada-lang.c, valops.c, breakpoint.c, tracepoint.c: Update.
4053
4054 * value.h (deprecated_set_value_type): Declare.
4055 * value.c (deprecated_set_value_type): Define.
4056 * hpacc-abi.c, gnu-v2-abi.c, cp-valprint.c: Update.
4057 * c-valprint.c, jv-lang.c, objc-lang.c, ada-lang.c: Update.
4058 * infcall.c, printcmd.c, valops.c, eval.c, p-exp.y: Update.
4059 * ax-gdb.c, tracepoint.c: Update.
4060
4061 * value.h (deprecated_value_lval_hack)
4062 (deprecated_value_address_hack)
4063 (deprecated_value_internalvar_hack)
4064 (deprecated_value_regnum_hack): Declare.
4065 (VALUE_LVAL, VALUE_ADDRESS, VALUE_INTERNALVAR)
4066 (VALUE_FRAME_ID, VALUE_REGNUM): Use.
4067 * value.c (deprecated_value_lval_hack)
4068 (deprecated_value_address_hack)
4069 (deprecated_value_internalvar_hack)
4070 (deprecated_value_regnum_hack): Define.
4071
4072 * value.h (VALUE_POINTED_TO_OFFSET): Delete.
4073 (set_value_pointed_to_offset, value_pointed_to_offset): Declare.
4074 * value.c (set_value_pointed_to_offset): Define
4075 (value_pointed_to_offset): Define.
4076 * valops.c: Update.
4077
4078 * value.h (VALUE_EMBEDDED_OFFSET): Delete.
4079 (value_embedded_offset, set_value_embedded_offset): Declare.
4080 * value.c (value_embedded_offset): Define.
4081 (set_value_embedded_offset): Define.
4082 * valops.c, p-valprint.c, mi/mi-main.c, hpacc-abi.c: Update.
4083 * gnu-v3-abi.c, eval.c, c-valprint.c, cp-valprint.c: Update.
4084 * cp-abi.h: Update.
4085
4086 * value.h (VALUE_LAZY): Delete
4087 (set_value_lazy): Declare.
4088 * value.c (set_value_lazy): Define.
4089 * valops.c, valarith.c, jv-valprint.c, jv-lang.c: Update.
4090 * gnu-v2-abi.c, findvar.c, dwarf2loc.c, ada-lang.c: Update.
4091
4092 2005-02-06 Andrew Cagney <cagney@gnu.org>
4093
4094 * value.h (VALUE_OPTIMIZED_OUT): Delete.
4095 (value_optimized_out, set_value_optimized_out): Declare.
4096 * value.c (set_value_optimized_out, value_optimized_out): Define.
4097 * valprint.c, findvar.c, dwarf2loc.c: Update.
4098
4099 * value.c (value_contents, value_contents_writeable): New
4100 functions.
4101 * value.h (VALUE_CONTENTS): Delete macro.
4102 (value_contents, value_contents_writeable): Declare.
4103 * xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
4104 * stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
4105 * sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
4106 * rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
4107 * ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
4108 * m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
4109 * jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
4110 * hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
4111 * c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
4112 * cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
4113 * arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
4114 * ada-valprint.c, ada-lang.c: Update.
4115
4116 2005-02-03 Andrew Cagney <cagney@gnu.org>
4117
4118 * utils.c (xzalloc): New function.
4119 * defs.h (XZALLOC): Use xzalloc.
4120 (xzalloc): Declare.
4121 * value.c (allocate_value): Allocate a zeroed buffer.
4122 * mdebugread.c (xzalloc): Delete.
4123
4124 2005-02-02 Andrew Cagney <cagney@gnu.org>
4125
4126 * value.h (value_lazy): Declare.
4127 * varobj.c, value.c, valops.c, valarith.c, printcmd.c: Update.
4128 * cp-valprint.c, breakpoint.c, ada-lang.c: Update.
4129
4130 * value.h (VALUE_CONTENTS_ALL): Delete.
4131 (value_contents_all): Declare.
4132 * value.c (value_contents_all): New function.
4133 * hpacc-abi.c, cp-valprint.c, valops.c, c-valprint.c: Update.
4134 * m68k-tdep.c, i386-tdep.c, infcall.c, valops.c: Update.
4135
4136 * value.c (value_enclosing_type): New function.
4137 * value.h (VALUE_ENCLOSING_TYPE): Delete.
4138 (value_enclosing_type): Declare.
4139 * xstormy16-tdep.c, vax-tdep.c, m68k-tdep.c, i386-tdep.c: Update.
4140 * gnu-v3-abi.c, hpacc-abi.c, infcall.c, valops.c: Update.
4141
4142 * value.c (value_contents_all_raw)
4143 (value_contents_raw): New functions.
4144 * value.h (VALUE_CONTENTS_ALL_RAW, VALUE_CONTENTS_RAW): Delete.
4145 (value_contents_raw, value_contents_all_raw): Declare functions.
4146 (VALUE_CONTENTS, VALUE_CONTENTS_ALL): Update.
4147 * std-regs.c, valarith.c, valops.c, eval.c: Update.
4148 * tracepoint.c, findvar.c: Update.
4149
4150 2005-02-01 Orjan Friberg <orjanf@axis.com>
4151
4152 * regformats/reg-cris.dat: New file with register definitions for CRIS.
4153 * regformats/reg-crisv32.dat: Ditto for CRISv32.
4154
4155 2005-01-31 Andrew Cagney <cagney@gnu.org>
4156
4157 * configure: Regenerate to track ../gettext.m4.
4158
4159 2005-01-29 Baurzhan Ismagulov <ibr@radix50.net>
4160
4161 * MAINTAINERS: Add myself to "Write After Approval".
4162
4163 * ax-gdb.c, ax-general.c, bcache.c, bfd-target.c, bsd-kvm.c,
4164 * buildsym.c, c-lang.c, c-typeprint.c, c-valprint.c, charset.c,
4165 * coff-pe-read.c, coffread.c, complaints.c, copying.c: I18n markup.
4166
4167 2005-01-29 Mark Kettenis <kettenis@gnu.org>
4168
4169 * configure.ac: Remove extra check for ranlib.
4170 * configure: Regenerated.
4171
4172 2005-01-28 Andrew Cagney <cagney@gnu.org>
4173
4174 * language.h (struct language_defn): Make la_val_print's buffer
4175 parameter a const bfd_byte.
4176 * cp-valprint.c (cp_print_value_fields, cp_print_value): Update.
4177 * ada-lang.c (ada_aligned_value_addr)
4178 (ada_value_primitive_packed_val, ada_which_variant_applies): Update.
4179 * valprint.c (val_print_array_elements): Update.
4180 * valprint.h (val_print_array_elements): Update.
4181 * ada-lang.h (ada_val_print, ada_aligned_value_addr)
4182 (ada_value_primitive_packed_val, ada_which_variant_applies): Update.
4183 * ada-valprint.c (ada_val_print, struct ada_val_print_args)
4184 (ada_val_print_1, ada_print_floating, printable_val_type)
4185 (print_record, val_print_packed_array_elements)
4186 (print_field_values, print_variant_part): Update.
4187 * c-lang.h (c_val_print, cp_print_value_fields): Update.
4188 * c-valprint.c (c_val_print): Update.
4189 * f-lang.h (f_val_print): Update.
4190 * f-valprint.c (f_val_print, f77_print_array_1)
4191 (f77_print_array): Update.
4192 * jv-lang.h (java_val_print): Update.
4193 * jv-valprint.c (java_print_value_fields, java_val_print): Update.
4194 * language.c (unk_lang_val_print): Update.
4195 * m2-lang.h (m2_val_print): Update.
4196 * m2-valprint.c (m2_val_print): Update.
4197 * p-lang.h (pascal_val_print): Update.
4198 (pascal_object_print_value_fields): Update.
4199 * p-valprint.c (pascal_val_print)
4200 (pascal_object_print_value_fields, pascal_object_print_value)
4201 (pascal_object_print_value): Update.
4202 * scm-lang.h (scm_val_print): Update.
4203 * scm-valprint.c (scm_val_print): Update.
4204 * value.h (val_print): Update.
4205
4206 * p-lang.h (pascal_object_print_class_member)
4207 (pascal_object_print_class_method): Make buffer a const bfd_byte.
4208 * p-valprint.c (pascal_object_print_class_method)
4209 (pascal_object_print_class_method): Ditto.
4210
4211 * language.h (struct language_defn): Make la_printstr's buffer
4212 parameter a const bfd_byte.
4213 * p-lang.h (pascal_printstr): Update function to match.
4214 * ada-valprint.c (ada_printstr): Update function to match.
4215 * scm-lang.c (scm_printstr): Update function to match.
4216 * p-lang.c (pascal_printstr): Update function to match.
4217 * ada-lang.h (ada_printstr): Update function to match.
4218 * m2-lang.c (m2_printstr): Update function to match.
4219 * objc-lang.c (objc_printstr): Update function to match.
4220 * c-lang.h (c_printstr): Update function to match.
4221 * f-lang.c (f_printstr): Update function to match.
4222 * c-lang.c (c_printstr): Update function to match.
4223 * language.c (unk_lang_printstr): Update function to match.
4224
4225 * valprint.c (val_print_type_code_int): Make buffer a const bfd_byte.
4226 * valprint.h (val_print_type_code_int): Ditto.
4227
4228 * objc-lang.h (c_val_print, c_value_print): Delete declarations.
4229
4230 * cp-valprint.c (cp_print_class_method)
4231 (cp_print_class_member): Make buffer a const bfd_byte.
4232 * c-lang.h (cp_print_class_member, cp_print_class_method): Ditto.
4233
4234 * ada-lang.c (value_from_contents_and_address)
4235 (to_record_with_fixed_variant_part)
4236 (value_tag_from_contents_and_address, ada_to_fixed_type)
4237 (to_fixed_variant_branch_type, to_fixed_record_type)
4238 (ada_template_to_fixed_record_type, cond_offset_host)
4239 (ada_template_to_fixed_record_type_1): Make buffer a const
4240 bfd_byte.
4241 * ada-lang.h (ada_template_to_fixed_record_type_1)
4242 (value_from_contents_and_address, ada_to_fixed_type): Ditto.
4243
4244 * ada-valprint.c (char_at, printstr): Make buffer a const bfd_byte.
4245
4246 * gdbtypes.h (print_scalar_formatted): Make buffer a const bfd_byte.
4247 * printcmd.c (print_scalar_formatted): Update.
4248
4249 * value.h (value_bit_index, print_floating)
4250 (find_rt_vbase_offset): Make buffer a const bfd_byte.
4251 * valprint.c (print_floating): Update.
4252 * valarith.c (value_bit_index): Update.
4253 * valops.c (find_rt_vbase_offset): Update.
4254
4255 * valprint.h (print_octal_chars, print_char_chars)
4256 (print_hex_chars, print_decimal_chars, print_binary_chars): Make
4257 buffer a const bfd_byte.
4258 * valprint.c (print_binary_chars, print_octal_chars)
4259 (print_decimal_chars, print_hex_chars, print_char_chars): Make
4260 "valaddr"buffer a const bfd_byte, ditto for local variables
4261 referencing that buffer.
4262
4263 * m2-valprint.c: Include "c-lang.h".
4264 (c_val_print): Delete extern declaration.
4265 * scm-valprint.c: Include "c-lang.h".
4266 (c_val_print): Delete extern declaration.
4267 Makefile.in: Update dependencies.
4268
4269 * gnu-v2-abi.h (gnuv2_baseclass_offset): Make "valaddr" a const
4270 bfd_byte.
4271 * cp-abi.h (baseclass_offset): Make "valaddr" a const bfd_byte.
4272 (struct cp_abi_ops): Make baseclass_offset's "valaddr" a const
4273 bfd_byte.
4274 * cp-abi.c (baseclass_offset): Update.
4275 * gnu-v2-abi.c (gnuv2_baseclass_offset): Update.
4276
4277 * gnu-v2-abi.h: New file.
4278 * gnu-v2-abi.c: Include "gnu-v2-abi.h".
4279 (gnuv2_baseclass_offset): Delete declaration.
4280 * hpacc-abi.c: Include "gnu-v2-abi.h".
4281 (gnuv2_baseclass_offset): Delete extern declaration.
4282 * Makefile.in: Update dependencies.
4283
4284 * doublest.c (floatformat_is_negative, floatformat_is_nan)
4285 (floatformat_mantissa, get_field): Make the buffer a const
4286 bfd_byte, simplify.
4287
4288 2005-01-27 Andrew Cagney <cagney@gnu.org>
4289
4290 * value.h (struct value): Change type of contents to bfd_byte.
4291 (VALUE_CONTENTS_RAW): Simplify.
4292
4293 * gdbarch.sh (integer_to_address): Change buf parameter to a const
4294 bfd_byte, make pure-multi-arch.
4295 * gdbarch.h, gdbarch.c: Regenerate.
4296 * mips-tdep.c (mips_integer_to_address): Update.
4297 * value.c (value_as_address): Update.
4298
4299 * cli/cli-dump.h (fopen_with_cleanup): Make "filename" const.
4300 * cli/cli-dump.c (dump_binary_file, dump_bfd_file): Make string
4301 parameters const, change buf to a const bfd_byte.
4302 (fopen_with_cleanup, bfd_openw_with_cleanup): Make all string
4303 parameters const.
4304
4305 * corefile.c (write_memory): Update, make a copy of the read-only
4306 buffer.
4307 * target.c (target_read_memory): Update.
4308 (target_write_memory): Update, make a copy of the read-only
4309 buffer.
4310 * gdbcore.h (write_memory): Change buffer type to bfd_byte, make
4311 const.
4312 * target.h (target_read_memory, target_write_memory): Change
4313 buffer type to bfd_byte; for write_memory, make it const.
4314 * symfile-mem.c (do_target_read_memory): New function.
4315 (symbol_file_add_from_memory): Pass do_target_read_memory to
4316 bfd_elf_bfd_from_remote_memory.
4317
4318 * value.h: Indent using gdb_indent.sh.
4319
4320 * configure: Regenerate to track ../gettext.m4 change.
4321
4322 2005-01-26 Andrew Cagney <cagney@gnu.org>
4323
4324 * rs6000-tdep.c: Include "reggroups.h".
4325 (rs6000_gdbarch_init): Set register_reggroup_p.
4326 (rs6000_register_reggroup_p): New function.
4327
4328 2005-01-26 Orjan Friberg <orjanf@axis.com>
4329
4330 * cris-tdep.c (enum cris_num_regs, enum cris_regnums)
4331 (cris_sigtramp_frame_unwind_cache, cris_register_size): Update for
4332 CRISv32.
4333 (crisv32_single_step_through_delay, cris_can_use_hardware_watchpoint)
4334 (cris_region_ok_for_watchpoint, cris_stopped_data_address)
4335 (crisv32_cannot_fetch_register, crisv32_cannot_store_register)
4336 (crisv32_register_type, cris_special_register_name)
4337 (crisv32_register_name): New functions.
4338 (cris_spec_reg_applicable): Recognize more versions.
4339 (cris_register_name): Update with call to cris_special_register_name.
4340 (find_cris_op): Filter out CRISv32 instructions. Tweaked comment and
4341 warning when unable to find step target.
4342 (CRISV10_ELF_NGREG, CRISV32_ELF_NGREG, crisv32_elf_gregset_t): Define.
4343 (supply_gregset): Add struct gdbarch_tdep. Set pseudo-PC register for
4344 CRISv32.
4345 (fetch_core_registers): Update for CRISv32.
4346 (cris_gdbarch_init): Set pc_regnum, register_type, num_regs,
4347 register_name, cannot_store_register, cannot_fetch_register,
4348 have_nonsteppable_watchpoint, single_step_through_delay for CRISv32.
4349
4350 2005-01-26 Nick Roberts <nickrob@snap.net.nz>
4351
4352 * interps.c (interpreter_exec_cmd): Use condition,
4353 e.reason < 0, to raise an error.
4354
4355 2005-01-25 Andrew Cagney <cagney@gnu.org>
4356
4357 * ppc-linux-tdep.c: Include "tramp-frame.h"
4358 (struct ppc_linux_sigtramp_cache)
4359 (ppc_linux_sigtramp_this_id, ppc_linux_sigtramp_prev_register)
4360 (ppc_linux_sigtramp_unwind, ppc_linux_sigtramp_sniffer)
4361 (ppc_linux_sigtramp_cache): Delete.
4362 (ppc32_linux_sigaction_cache_init)
4363 (ppc64_linux_sigaction_cache_init)
4364 (ppc32_linux_sighandler_cache_init)
4365 (ppc64_linux_sighandler_cache_init)
4366 (ppc32_linux_sigaction_tramp_frame)
4367 (ppc64_linux_sigaction_tramp_frame)
4368 (ppc32_linux_sighandler_tramp_frame)
4369 (ppc64_linux_sighandler_tramp_frame)
4370 (ppc_linux_sigtramp_cache, ppc_linux_init_abi): Implement 32 and
4371 64-bit, sigaction and siginfo tramp-frame unwinders.
4372
4373 * ppc-linux-tdep.c (ppc_linux_init_abi): Always set
4374 long_double_bit to 8.
4375
4376 2005-01-24 Andrew Cagney <cagney@gnu.org>
4377
4378 * infrun.c (handle_inferior_event): Handle back-to-back and nested
4379 signals where the step_resume_breakpoint may have already been
4380 inserted.
4381
4382 2005-01-24 Andrew Cagney <cagney@gnu.org>
4383
4384 * configure: Regenerate, ../gettext.m4 was updated.
4385
4386 2005-01-23 Mark Kettenis <kettenis@gnu.org>
4387
4388 * NEWS: Mention new BSD user-level threads support.
4389
4390 * i386obsd-tdep.c: Update copyright year. Include
4391 "bsd-uthread.h".
4392 (i386obsd_uthread_reg_offset): New variable.
4393 (I386OBSD_UTHREAD_ESP_OFFSET): New define.
4394 (i386obsd_supply_uthread, i386obsd_collect_uthread): New
4395 functions.
4396 (i386obsd_init_abi): Set supply_uthread and collect_uthread.
4397 * Makefile.in (i386obsd-tdep.o): Update dependencies.
4398 * config/i386/obsd.mt (TDEPFILES): Add bsd-uthread.o.
4399
4400 2005-01-23 Christopher Faylor <cgf@timesys.com>
4401
4402 * win32-nat.c: Update copyright year.
4403 (child_init_thread_list): Set thread linked list point to NULL so that
4404 it won't be reused after clearing.
4405
4406 2005-01-21 Mark Kettenis <kettenis@gnu.org>
4407
4408 * acconfig.h (HAVE_STRUCT_REG_R_FS, HAVE_STRUCT_R_GS): Remove
4409 undefs.
4410 * configure.ac: Use AC_CHECK_MEMBERS to check whether `struct
4411 thread' has a td_pcb member and whether `struct reg' has r_fs and
4412 r_gs members.
4413 * configure, config.in: Regenerate.
4414
4415 2005-01-21 Mark Kettenis <kettenis@gnu.org>
4416
4417 * configure.ac: Remove ia64-*-aix* junk.
4418 * configure: Regenerate.
4419
4420 * configure.ac: Use AC_CHECK_DECLS instead of gcc_AC_CHECK_DECLS
4421 and BFD_NEED_DECLARATION. Don't check if a declaration of strdup
4422 is necessary.
4423 * configure, config.in: Regenerate.
4424 * utils.c: Adjust for usage of AC_CHECK_DECLS instead of
4425 BFD_NEED_DECLARATION. Never provide a prototype for
4426 caninicalize_file_name.
4427 * gdb_string.h: Adjust for usage of AC_CHECK_DECLS instead of
4428 BFD_NEED_DECLARATION.
4429
4430 * configure.ac (targ_archs): Use standard autoconf check for
4431 "struct stat.st_blocks" instead of rolling our own.
4432 * configure: Regenerated.
4433 * acconfig.h (HAVE_STRUCT_STAT_ST_BLOCKS): Remove undef.
4434 * config.in: Regenerated.
4435
4436 2005-01-21 Mark Kettenis <kettenis@gnu.org>
4437
4438 * configure.ac: Modernize checks for `long long' and `long double'
4439 support.
4440 * configure: Regenerated.
4441 * acconfig.h (CC_HAS_LONG_LONG, PRINTF_HAS_LONG_LONG)
4442 (PRINT_HAS_LONG_DOUBLE, SCANF_HAS_LONG_DOUBLE): Remove undefs.
4443 * config.in: Regenerated.
4444
4445 2005-01-20 Mark Kettenis <kettenis@gnu.org>
4446
4447 * acconfig.h (HAVE_STRUCT_SAVE_STATE_T)
4448 (HAVE_STRUCT_MEMBER_SS_WIDE): Remove undefs.
4449 * configure.ac: Remove checks for HP-UX save_state structure.
4450 * configure: Regenerated.
4451
4452 2005-01-19 Andrew Cagney <cagney@gnu.org>
4453
4454 * utils.c (quit): Simplify, call fatal.
4455 * exceptions.c: Include "serial.h"
4456 (print_flush): Mimic flush code found in utils.c:quit.
4457 * Makefile.in: Update dependencies.
4458
4459 2005-01-19 Jim Blandy <jimb@redhat.com>
4460
4461 * configure.tgt: Set build_rdi_share to "yes" on those targets
4462 that use that debugging protocol.
4463 Set build_nlm to yes to build NLM stub for Netware targets.
4464 * configure.ac: If build_rdi_share is "yes", then configure the
4465 rdi-share subdirectory.
4466 If build_nlm is "yes", the configure the "nlm" subdirectory.
4467 * configure: Regenerated.
4468
4469 * rdi-share/configure, rdi-share/aclocal.m4: Regenerated using
4470 autoconf 2.59 and automake 1.9.3.
4471
4472 2005-01-19 Andrew Cagney <cagney@gnu.org>
4473
4474 * exceptions.h (deprecated_throw_reason): Rename throw_reason.
4475 * exceptions.c (deprecated_throw_reason): Rename throw_reason.
4476 * utils.c (internal_verror, quit): Update.
4477 * remote-sds.c (interrupt_query): Update.
4478 * remote-mips.c (mips_error, mips_kill): Update.
4479 * remote-fileio.c (remote_fileio_ctrl_c_signal_handler): Update.
4480 * remote.c (interrupt_query): Update.
4481 * ocd.c (interrupt_query): Update.
4482 * nto-procfs.c (interrupt_query): Update.
4483 * monitor.c (monitor_interrupt_query): Update.
4484 * breakpoint.c (break_command_1): Update.
4485
4486 * infrun.c: (resume, proceed, wait_for_inferior)
4487 (handle_inferior_event, stop_stepping)
4488 (prepare_to_wait): Write debug output to gdb_stdlog.
4489
4490 2005-01-19 Mark Kettenis <kettenis@gnu.org>
4491
4492 * inf-ptrace.c (inf_ptrace_prepare_to_store)
4493 (inf_ptrace_post_startup_inferior)
4494 (inf_ptrace_acknowledge_created_inferior)
4495 (inf_ptrace_insert_fork_catchpoint)
4496 (inf_ptrace_remove_fork_catchpoint)
4497 (inf_ptrace_insert_vfork_catchpoint):
4498 (inf_ptrace_remove_vfork_catchpoint, inf_ptrace_follow_fork)
4499 (inf_ptrace_insert_exec_catchpoint)
4500 (inf_ptrace_remove_exec_catchpoint): Remove functions.
4501 (inf_ptrace_reported_exec_events_per_exec_call): Tweak comment.
4502 (inf_ptrace_target): Don't set to_prepare_to_store,
4503 to_post_startup_inferior, to_acknowledge_created_inferior,
4504 to_insert_fork_ctachpoint, to_remove_fork_catchpoint,
4505 to_insert_vfork_catchpoint, to_remove_vfork_catchpoint,
4506 to_follow_fork, to_insert_exec_catchpoint,
4507 to_remove_exec_catchpoint.
4508
4509 2005-01-18 Andrew Cagney <cagney@gnu.org>
4510
4511 * target.h (struct target_ops): Change return type of
4512 to_insert_fork_catchpoint, to_insert_vfork_catchpoint and
4513 to_insert_exec_catchpoint to void.
4514 (child_insert_fork_catchpoint, child_insert_vfork_catchpoint)
4515 (child_insert_exec_catchpoint): Change return type to void.
4516 * target.c (update_current_target): Update.
4517 (debug_to_insert_fork_catchpoint)
4518 (debug_to_insert_vfork_catchpoint)
4519 (debug_to_insert_exec_catchpoint): Update.
4520 * inf-child.c (inf_child_insert_fork_catchpoint)
4521 (inf_child_insert_vfork_catchpoint)
4522 (inf_child_insert_exec_catchpoint): Update.
4523 * breakpoint.c (insert_catchpoint): Update, do not throw an error.
4524 * linux-nat.c (child_insert_fork_catchpoint)
4525 (child_insert_vfork_catchpoint)
4526 (child_insert_exec_catchpoint): Update.
4527 * inftarg.c (child_insert_fork_catchpoint)
4528 (child_insert_vfork_catchpoint,)
4529 (child_insert_exec_catchpoint): Update.
4530
4531 * remote.c (remote_open_1): Use throw_exception.
4532
4533 2005-01-17 Michael Snyder <msnyder@redhat.com>
4534
4535 * mips-linux-tdep.c: Whitespace tweaks.
4536
4537 2005-01-17 Corinna Vinschen <vinschen@redhat.com>
4538
4539 * infcmd.c (attach_command): Call CLEAR_SOLIB if available.
4540
4541 2005-01-17 Andrew Cagney <cagney@gnu.org>
4542
4543 * top.h (source_error, source_pre_error): Delete declaration.
4544 * cli/cli-script.c (source_error_allocated, source_error): Delete.
4545 (script_from_file, source_cleanup_lines): Do not manipulate
4546 source_error_allocated, error_pre_print and source_error.
4547 (struct source_cleanup_lines_args): Delete fields old_pre_error,
4548 and old_error_pre_print.
4549 * top.c (source_error_allocated, source_error)
4550 (source_pre_error): Delete.
4551 (command_line_input): Do not set error_pre_print.
4552 * event-top.c (command_line_handler): Do not set error_pre_print.
4553
4554 2005-01-16 Jason Thorpe <thorpej@netbsd.org>
4555
4556 * MAINTAINERS: Update my email address.
4557
4558 2005-01-16 Mark Kettenis <kettenis@gnu.org>
4559
4560 * configure.ac: Provide prerequisite headers when checking
4561 <term.h>.
4562 * configure: Regenerate.
4563
4564 * amd64fbsd-tdep.c: Update copyright year. Include "gdb_assert.h"
4565 and "bsd-uthread.h".
4566 (amd64fbsd_jmp_buf_reg_offset): New variable.
4567 (amd64fbsd_supply_uthread, amd64fbsd_collect_uthread): New
4568 functions.
4569 (amd64fbsd_init_abi): Set supply_uthread and collect_uthread.
4570 * i386fbsd-tdep.c: Fix typo.
4571 * Makefile.in (amd64fbsd-tdep.o): Update dependencies.
4572 * config/i386/fbsd64.mt (TDEPFILES): Add bsd-uthread.o.
4573
4574 2005-01-16 Andrew Cagney <cagney@gnu.org>
4575
4576 * cli/cli-script.c: Include "exceptions.h".
4577 (struct wrapped_read_command_file_args): Define.
4578 (wrapped_read_command_file): New function.
4579 (script_from_file): Replace direct call to read_command_file by
4580 one wrapped by an exception handler.
4581 * exceptions.c (throw_it): Free the old message after creating the
4582 new.
4583 * Makefile.in: Update dependencies.
4584
4585 2005-01-16 Mark Kettenis <kettenis@gnu.org>
4586
4587 * sparc64fbsd-tdep.c: Update copyright year.
4588 (sparc64fbsd_collect_gregset, sparc64fbsd_collect_fpregset): New
4589 functions.
4590 (sparc64fbsd_init_abi): Create register sets with collect
4591 functions.
4592
4593 * sparc64fbsd-nat.c: Include "fbsd-nat.h".
4594 (_initialize_sparc64fbsd_nat): Add some extra features to the
4595 generic SPARC target.
4596 * Makefile.in (sparc64fbsd-nat.o): Update dependencies.
4597 * config/sparc/fbsd.mh (NATDEPFILES): Add fbsd-nat.o and gcore.o.
4598 (NAT_FILE): Set to solib.h.
4599 * config/sparc/nm-fbsd.h: Remove file.
4600
4601 * sparc64-tdep.c (sparc64_store_arguments): Fix typo.
4602
4603 * sparc-tdep.c (sparc_integral_or_pointer_p): Simplify.
4604
4605 2005-01-16 Andrew Cagney <cagney@gnu.org>
4606
4607 * exceptions.c (struct catcher): Delete saved_error_pre_print and
4608 saved_quit_pre_print.
4609 (catcher_init): Delete parameter errstring, do not override the
4610 pre_print strings.
4611 (catcher_pop): Do not restore the pre_print strings.
4612 (catch_exception, catch_exceptions_with_msg, catch_errors)
4613 (catch_command_errors): Update catch_init calls.
4614
4615 2005-01-16 Mark Kettenis <kettenis@gnu.org>
4616
4617 * Makefile.in (sparc64fbsd-nat.o): Update dependencies.
4618 * sparc64fbsd-nat.c: Update copyright year. Include "target.h".
4619
4620 2005-01-15 Andrew Cagney <cagney@gnu.org>
4621
4622 * acinclude.m4: Include ../bfd/bfd.m4 instead of
4623 ../bfd/acinclude.m4. Include ../gettext.m4.
4624 * aclocal.m4, configure: Re-generate.
4625
4626 * exceptions.c (do_captured_command)
4627 (struct captured_command_args): Delete.
4628 (catch_command_errors): Simplify by inlining call to catch_errors.
4629
4630 * exceptions.c (struct catcher): Delete field print_message.
4631 (catcher_init): Delete print_message parameter.
4632 (catch_exception, catch_exceptions_with_msg, catch_errors): Update.
4633 (throw_it): Delete prefix parameter.
4634 (throw_verror, throw_vfatal, throw_error): Update.
4635
4636 2005-01-14 Andrew Cagney <cagney@gnu.org>
4637
4638 * exceptions.c (print_and_throw): Delete, replaced by throw_it.
4639 (throw_reason): Leave the exception's message field blank.
4640 (throw_it): New function, create the exception and throw it.
4641 (throw_verror, throw_vfatal, throw_error): Call throw_it.
4642 (print_any_exception): New function.
4643 (catch_errors, catch_exceptions_with_msg): Call
4644 print_any_exception.
4645 (throw_exception): Move code calling annotate_error and
4646 annotate_quit from here ...
4647 (print_exception): ... to here.
4648
4649 * exceptions.c (exception_fprintf, exception_print): Move printing
4650 of \n from here ...
4651 (print_exception): ... to here.
4652 (print_flush): New function.
4653 (exception_print, exception_fprintf): Replace duplicated flush and
4654 wrap code with call to print_flush.
4655 (print_and_throw): Simplify, by using xstrvprintf, print_flush,
4656 and print_exception.
4657 (do_write): Delete.
4658
4659 * remote-sds.c (interrupt_query): Call throw_reason instead of
4660 throw_exception.
4661 * remote-mips.c (mips_error, mips_kill): Ditto
4662 * ocd.c (interrupt_query): Ditto.
4663 * nto-procfs.c (interrupt_query): Ditto.
4664 * monitor.c (monitor_interrupt_query): Ditto.
4665
4666 2005-01-14 Jeff Johnston <jjohnstn@redhat.com>
4667
4668 * ia64-linux-nat.c: Include "ia64-tdep.h" to get register definitions.
4669
4670 2005-01-14 Andrew Cagney <cagney@gnu.org>
4671
4672 * exceptions.h (catch_exceptions): Delete errstring parameter.
4673 (catch_exceptions_with_msg): Ditto.
4674 * exceptions.c (catch_exceptions_with_msg): Update.
4675 (catch_exceptions): Update.
4676 * symfile-mem.c (add_vsyscall_page): Update.
4677 * frame.c (get_current_frame): Update.
4678 * wrapper.c (gdb_value_struct_elt): Update.
4679 * exceptions.c (catch_exceptions): Update.
4680 * thread.c (gdb_list_thread_ids, gdb_thread_select): Update.
4681 * breakpoint.c (gdb_breakpoint_query, gdb_breakpoint): Update.
4682 * remote-fileio.c (remote_fileio_request): Update.
4683
4684 * exceptions.h (exception_fprintf): Declare.
4685 (exception_print): Drop pre_print parameter.
4686 * mi/mi-main.c (mi_execute_command): Update exception_print call.
4687 * cli/cli-interp.c (safe_execute_command): Update exception_print
4688 call.
4689 * remote.c (remote_open_1): Instead of passing an error prefix to
4690 catch_exceptions, use catch_exceptions and exception_fprintf.
4691 (remote_start_remote): Change return type to void.
4692 * breakpoint.c (insert_bp_location): Instead of passing an error
4693 prefix to catch_exceptions, use catch_exceptions and
4694 exception_fprintf.
4695 (insert_catchpoint): Change return type to void.
4696 (break_command_1): Update exception_print call.
4697 * exceptions.c (exception_fprintf): New function.
4698 (print_exception): New function.
4699 (exception_print): Use print_exception.
4700
4701 * utils.c (error_output_message): Delete function.
4702 * defs.h (error_output_message): Delete declaration.
4703
4704 * linespec.c (symtab_from_filename, decode_variable): Use
4705 throw_error instead of error_silent.
4706 * breakpoint.c (do_captured_parse_breakpoint): Change return type
4707 to void.
4708 (break_command_1): Use catch_exception and check the error return
4709 status.
4710 * exceptions.c (throw_error): New function.
4711 (throw_vsilent): Delete function.
4712 * exceptions.h (throw_error): Declare.
4713 (throw_vsilent): Delete declaration.
4714 * utils.c (error_silent): Delete function.
4715 * defs.h (error_silent): Delete declaration.
4716
4717 * mi/mi-main.c (mi_execute_command): Print the exception.
4718 * cli/cli-interp.c (safe_execute_command): Print the exception.
4719 * exceptions.h (exception_print): Declare.
4720 * exceptions.c (struct catcher): Add field print_message.
4721 (catcher_init): Add parameter print_message, store in the catcher
4722 struct.
4723 (print_and_throw): Only print the message when print_message.
4724 (catch_exceptions_with_msg, catch_errors): Pass print_message=1 to
4725 catcher_init.
4726 (catch_exception): Pass print_message=0 to catcher_init.
4727
4728 * varobj.c (varobj_create): Add missing \n.
4729
4730 2005-01-13 Michael Snyder <msnyder@redhat.com>
4731
4732 * cli/cli-decode.h: Whitespace tweaks.
4733 * wince.c: Whitespace tweaks.
4734 * uw-thread.c: Whitespace tweaks.
4735 * utils.c: Whitespace tweaks.
4736 * tracepoint.[ch]: Whitespace tweaks.
4737 * solist.h: Whitespace tweaks.
4738
4739 2005-01-13 Andrew Cagney <cagney@gnu.org>
4740
4741 * exceptions.h (struct exception): Make message const.
4742 * mi/mi-main.c (mi_execute_command): Pass result.message directly
4743 to fputstr_unfiltered.
4744
4745 2005-01-13 Michael Snyder <msnyder@redhat.com>
4746
4747 * stack.c: Whitespace tweaks.
4748 * somsolib.[ch]: Whitespace tweaks.
4749 * solib-aix.c: Whitespace tweaks.
4750 * solib.c: Whitespace tweaks.
4751 * solib-frv.c: Whitespace tweaks.
4752 * solib.h: Whitespace tweaks.
4753 * solib-irix.c: Whitespace tweaks.
4754 * solib-som.c: Whitespace tweaks.
4755 * solib-sunos.c: Whitespace tweaks.
4756 * solib-svr4.[ch]: Whitespace tweaks.
4757 * ser-tcp.c: Whitespace tweaks.
4758 * ser-unix.c: Whitespace tweaks.
4759 * serial.h: Whitespace tweaks.
4760 * scm-valprint.c: Whitespace tweaks.
4761 * rs6000-tdep.c: Whitespace tweaks.
4762 * rs6000-nat.c: Whitespace tweaks.
4763 * remote.c: Whitespace tweaks.
4764
4765 2005-01-13 Andrew Cagney <cagney@gnu.org>
4766
4767 * defs.h (error_last_message, error_init): Delete declaration.
4768 * utils.c (fatal, vfatal): Call throw_vfatal.
4769 (error, verror): Call throw_verror;
4770 (do_write, error_stream_1): Delete function.
4771 (error_stream): Simplify, call error.
4772 (error_last_message, error_init, gdb_lasterr): Delete.
4773 (error_silent): Simplify, call throw_vsilent.
4774 * mi/mi-interp.c (mi_cmd_interpreter_exec): Dup the message.
4775 * main.c (captured_main): Delete call to error_init.
4776 * exceptions.c (throw_verror, throw_verror)
4777 (throw_vsilent): New functions.
4778 (do_write, print_and_throw): New functions.
4779 (last_message): New global.
4780 (throw_reason): Replace error_last_message with last_message.
4781 (catch_exceptions_with_msg): Dup the message.
4782 * exceptions.h (throw_verror, throw_vfatal, throw_vsilent):
4783 Declare.
4784
4785 2005-01-13 Michael Snyder <msnyder@redhat.com>
4786
4787 * remote-st.c: Whitespace tweaks.
4788 * remote-sim.c: Whitespace tweaks.
4789 * remote-mips.c: Whitespace tweaks.
4790 * pa64solib.[ch]: Whitespace tweaks.
4791 * mdebugread.c: Whitespace tweaks.
4792 * main.c: Whitespace tweaks.
4793 * interps.c: Whitespace tweaks.
4794 * infrun.c: Whitespace tweaks.
4795 * infcmd.c: Whitespace tweaks.
4796 * hpux-thread.c: Whitespace tweaks.
4797 * hppa-hpux-tdep.c: Whitespace tweaks.
4798 * gdbcore.h: Whitespace tweaks.
4799 * gdbcmd.h: Whitespace tweaks.
4800 * gdb-events[.c, .h, .sh]: Whitespace tweaks.
4801 * corefile.c: Whitespace tweaks.
4802 * completer.c: Whitespace tweaks.
4803 * coff-solib.c: Whitespace tweaks.
4804 * coff-solib.h: Whitespace tweaks.
4805 * cli-out.c: Whitespace tweaks.
4806 * breakpoint.c: Whitespace tweaks.
4807 * cli/cli-interp.c: Tweak comments, per coding standard.
4808
4809 2005-01-13 Andrew Cagney <cagney@gnu.org>
4810
4811 * breakpoint.c (gdb_breakpoint_query): Update, use
4812 catch_exceptions_with_msg.
4813 (do_captured_breakpoint): Add uiout parameter.
4814 (gdb_breakpoint): Update, use catch_exceptions_with_msg.
4815 * mi/mi-main.c (mi_cmd_thread_select): Pass mi_error_message to
4816 gdb_thread_select. Return MI_CMD_ERROR instead of
4817 MI_CMD_CAUGHT_ERROR.
4818 (mi_cmd_thread_list_ids): Ditto for gdb_list_thread_ids.
4819 (enum captured_mi_execute_command_actions): Delete
4820 EXECUTE_COMMAND_DISPLAY_ERROR.
4821 (captured_mi_execute_command): Delete code handling
4822 MI_CMD_CAUGHT_ERROR.
4823 (mi_execute_command): Don't check for
4824 EXECUTE_COMMAND_DISPLAY_ERROR.
4825 * mi/mi-cmd-break.c (breakpoint_notify): Update call to
4826 gdb_breakpoint_query.
4827 (mi_cmd_break_insert): Pass mi_error_message to gdb_breakpoint.
4828 * mi/mi-cmds.h (enum mi_cmd_result): Delete MI_CMD_CAUGHT_ERROR.
4829 * gdb.h (gdb_thread_select, gdb_list_thread_ids)
4830 (gdb_breakpoint, gdb_breakpoint_query): Add error_message
4831 parameter.
4832 * thread.c (thread_command): Update call.
4833 (gdb_thread_select, gdb_list_thread_ids): Update, call
4834 catch_exceptions_with_msg.
4835
4836 * mi/mi-main.c (mi_execute_command): Use catch_exception,
4837 eliminate call to error_last_message.
4838 (captured_mi_execute_command): Change return type to void.
4839
4840 2005-01-12 Andrew Cagney <cagney@gnu.org>
4841
4842 * exceptions.c (exception_none): New variable.
4843 * Makefile.in: Update dependencies.
4844 * interps.c: Include "exceptions.h".
4845 (interpreter_exec_cmd, interp_exec): Update to return "struct
4846 exception"
4847 * exceptions.h (no_exception): Declare.
4848 * tui/tui-interp.c (tui_exec): Update to return "struct exception"
4849 * mi/mi-interp.c: Include "exceptions.h".
4850 (mi_cmd_interpreter_exec, mi_interpreter_exec): Update to return
4851 'struct exception".
4852 * cli/cli-interp.c (cli_interpreter_exec, safe_execute_command)
4853 (do_captured_execute_command): Update to use catch_exception.
4854 * interps.h: Include "exceptions.h".
4855 (interp_exec_ftype, interp_exec): Return "struct exception".
4856
4857 * exceptions.h (throw_reason): Rename throw_exception.
4858 (enum errors, struct exception): Define.
4859 (catch_exception_ftype): Define.
4860 (catch_exception, throw_exception): Declare.
4861 * exceptions.c (throw_exception): Rewrite.
4862 (throw_reason): New function.
4863 (struct catcher, catcher_state_machine): Replace "reason" with
4864 "exception", delete "gdberrmsg".
4865 (catch_exception): New function.
4866 (catcher_init): Replace "gdberrmsg" parameter with "exception".
4867 (catch_errors, catch_exceptions_with_msg): Re-implement passing
4868 exception to catcher_init.
4869 * utils.c (error_silent, error_stream_1): Use throw_reason.
4870 (internal_verror, quit): Ditto.
4871 * breakpoint.c (insert_catchpoint, break_command_1): Ditto.
4872 * remote-fileio.c (remote_fileio_ctrl_c_signal_handler): Ditto.
4873 * remote.c (remote_open_1, interrupt_query): Ditto.
4874
4875 2005-01-12 Mark Kettenis <kettenis@gnu.org>
4876
4877 * i386fbsd-tdep.c: Update copyright year. Include "gdbcore.h",
4878 "regcache.h", "gdb_assert.h" and "bsd-uthread.h".
4879 (i386fbsd_jmp_buf_reg_offset): New variable.
4880 (i386fbsd_supply_uthread, i386fbsd_collect_uthread): New
4881 functions.
4882 (i386fbsdaout_init_abi): Set supply_uthread and collect_uthread.
4883 * Makefile.in (i386fbsd-tdep.o): Update dependency.
4884 * config/i386/fbsd.mt (TDEPFILES): Add bsd-uthread.o.
4885
4886 * bsd-uthread.h: New file.
4887 * bsd-uthread.c: New file.
4888 * Makefile.in (bsd_uthread_h): New variable.
4889 (ALLDEPFILES): Add bsd-uthread.c.
4890 (bsd-uthread.o): New dependency.
4891
4892 * solib.h Update copyright year.
4893 (struct so_list): Forward declaration.
4894 (solib_read_symbols): New prototype.
4895 * solib.c (solib_read_symbols): New function.
4896 (solib_add): Call solib_read_symbols to read in symbols.
4897 (update_solib_list): Call observer_notify_solib_loaded.
4898
4899 * i386bsd-nat.c: Update copyright year. Don't include
4900 <sys/param.h> and <sys/user.h>.
4901 (register_u_addr, kernel_u_size): Remove functions.
4902 * config/i386/obsd.mh (NAT_FILE): Remove.
4903 * config/i386/obsdaout.mh (NAT_FILE): Set to solib.h.
4904 * config/i386/nm-obsd.h: Remove file.
4905
4906 2005-01-12 Andrew Cagney <cagney@gnu.org>
4907
4908 * exceptions.c: Include "gdb_string.h".
4909 (enum catcher_state, struct catcher): Define.
4910 (current_catcher): New global, replaces catch_return;
4911 (catch_return): Delete.
4912 (throw_exception): Use current_catcher->buf;
4913 (catcher_init, catcher_pop, catcher_state_machine): New functions.
4914 (catcher): Delete.
4915 (struct catch_errors_args): Delete.
4916 (do_catch_errors): Delete.
4917 (catch_exceptions): Replace body with call to
4918 catch_exceptions_with_msg.
4919 (catcher): Delete.
4920 (catch_exceptions_with_msg, catch_errors): Re-implement using
4921 catcher_state_machine.
4922
4923 * exceptions.h (enum return_reason, RETURN_MASK)
4924 (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL)
4925 (return_mask, throw_exception, catch_exceptions_ftype)
4926 (catch_exceptions_with_msg, catch_errors_ftype, catch_errors)
4927 (catch_command_errors_ftype, catch_command_errors): Move to
4928 exceptions.h.
4929 * exceptions.c, exceptions.h: New files.
4930 * top.c: Do not include <setjmp.h>.
4931 (SIGJMP_BUF, SIGSETJMP, SIGLONGJMP, catch_return)
4932 (throw_exception, catcher, catch_exceptions)
4933 (catch_exceptions_with_msg, struct catch_errors_args)
4934 (do_catch_errors, catch_errors, struct captured_command_args)
4935 (do_captured_command, catch_command_errors): Move to exceptions.c.
4936 * wrapper.c, wince.c, win32-nat.c, utils.c: Include "exceptions.h".
4937 * tui/tui-interp.c, top.c, thread.c, symmisc.c: Ditto.
4938 * symfile-mem.c, stack.c, solib.c, rs6000-nat.c: Ditto.
4939 * remote-sds.c, remote-mips.c, remote-fileio.c: Ditto.
4940 * remote-e7000.c, objc-lang.c, ocd.c: Ditto.
4941 * remote.c, nto-procfs.c, monitor.c, mi/mi-main.c: Ditto.
4942 * main.c, m32r-rom.c, infrun.c, inf-loop.c: Ditto.
4943 * hppa-hpux-tdep.c, frame.c, event-top.c, event-loop.c: Ditto.
4944 * corelow.c, corefile.c, cli/cli-interp.c, breakpoint.c: Ditto.
4945 * ada-valprint.c, ada-lang.c: Ditto.
4946 * Makefile.in (HFILES_NO_SRCDIR, COMMON_OBS): Add exceptions.h and
4947 exceptions.o. Update all dependencies.
4948
4949 2005-01-11 Mark Kettenis <kettenis@gnu.org>
4950
4951 * config/i386/nm-fbsd.h: Update copyright year.
4952 Don't include "config/nm-bsd.h".
4953 (KERNEL_U_SIZE): Remove macro.
4954 (kernel_u_size): Remove prototype.
4955
4956 * config/vax/nbsdaout.mh (NAT_FILE): Remove.
4957 * config/vax/nm-nbsdaout.h: Remove file.
4958
4959 2005-01-10 Elena Zannoni <ezannoni@redhat.com>
4960
4961 * MAINTAINERS: Remove self from sh/sh64 maintainership.
4962
4963 2005-01-10 Andrew Cagney <cagney@gnu.org>
4964
4965 * MAINTAINERS: List Andrew Cagney and Kevin Buettner as can commit
4966 changes to PowerPC, and Andrew Cagney as lead PowerPC GNU/Linux
4967 maintainer.
4968
4969 * MAINTAINERS: Hans-Peter Nilsson and Orjan Friberg can commit
4970 changes to CRIS.
4971
4972 * MAINTAINERS: Remove "Maintenance Only". Spell out that CAN
4973 COMMIT means can approve).
4974
4975 2005-01-10 Mark Kettenis <kettenis@gnu.org>
4976
4977 * vax-nat.c: Update copyright year. Include "inf-ptrace.h".
4978 (vax_register_u_offset): Make statuc.
4979 (_initialize_vax_nat): Construct and add target vector.
4980 * config/vax/vax.mh (NATDEPFILES): Remove infptrace.o and
4981 inftarg.o. Add inf-ptrace.o.
4982 * Makefile.in (vax-nat.o): Update dependencies.
4983
4984 * inf-ptrace.h: Update copyright year. Sync comment with
4985 inf-ptrace.c.
4986 (inf_ptrace_trad_target): New prototype.
4987 * inf-ptrace.c: Update copyright year. Include "regcache.h" and
4988 "gdb_assert.h"
4989 (inf_ptrace_target): Add comment.
4990 (inf_ptrace+register_u_offset): New variable.
4991 (inf_ptrace_fetch_register, inf_ptrace_fetch_registers)
4992 (inf_ptrace_store_register, inf_ptrace_store_registers)
4993 (inf_ptrace_trad_target): New functions.
4994 * Makefile.in (inf-ptrace.o): Update dependencies.
4995
4996 2005-01-09 Mark Kettenis <kettenis@gnu.org>
4997
4998 * configure.ac: Provide prerequisite headers when checking
4999 <link.h>, <sys/proc.h> and <sys/user.h>.
5000 * configure: Regenerate.
5001
5002 2005-01-08 Mark Kettenis <kettenis@gnu.org>
5003
5004 * config/powerpc/obsd.mt (DEPRECATED_TM_FILE): Set to
5005 tm-ppc-eabi.h instead of the removed tm-nbsd.h.
5006
5007 2005-01-07 Mark Kettenis <kettenis@gnu.org>
5008
5009 * config/ia64/tm-linux.h: Tweak comment. Update copyright year.
5010 Don't include "tm-ia64.h".
5011 * config/ia64/ia64.mt (DEPRECATED_TM_FILE): Remove.
5012 * config/ia64/tm-ia64.h: Remove. Move contents ...
5013 * ia64-tdep.h: ... here. Update copyright year.
5014
5015 2005-01-07 Andrew Cagney <cagney@gnu.org>
5016
5017 * configure.ac: Rename configure.in, require autoconf 2.59.
5018 * configure: Re-generate.
5019
5020 * configure.tgt: Disable arm*-*-*, thumb*-*-*, strongarm*-*-*,
5021 xscale-*-* and i[34567]86-*-netware* code adding rdi-share or nlm
5022 to configdirs.
5023
5024 * configure.in: Replace configdirs with multiple references to
5025 AC_CONFIG_SUBDIRS.
5026 * configure: Re-generate.
5027
5028 2005-01-05 Andreas Schwab <schwab@suse.de>
5029
5030 * ia64-tdep.c: Include "osabi.h".
5031 (native_find_global_pointer): Delete.
5032 (ia64_find_global_pointer): Renamed from
5033 generic_elf_find_global_pointer.
5034 (FIND_GLOBAL_POINTER): Delete. Change all users to call
5035 ia64_find_global_pointer instead.
5036 (ia64_gdbarch_init): Call gdbarch_init_osabi. Remove references
5037 to ia64_linux_sigcontext_register_address and
5038 ia64_linux_write_pc. Don't set tdep->find_global_pointer.
5039 (_initialize_ia64_tdep): Call gdbarch_register instead of
5040 deprecated register_gdbarch_init.
5041 (struct gdbarch_tdep): Remove find_global_pointer field and move
5042 to ...
5043 * ia64-tdep.h (struct gdbarch_tdep): ... here.
5044 (ia64_linux_sigcontext_register_address): Remove declaration.
5045 (ia64_linux_getunwind_table): Likewise.
5046 (ia64_linux_write_pc): Likewise.
5047 * ia64-linux-tdep.c: Include "osabi.h".
5048 (ia64_linux_sigcontext_register_address): Make static.
5049 (ia64_linux_write_pc): Likewise.
5050 (ia64_linux_init_abi): New.
5051 (_initialize_ia64_linux_tdep): New.
5052 * Makefile.in (ia64-tdep.o, ia64-linux-tdep.o): Depend on
5053 $(osabi_h).
5054
5055 2005-01-05 Kevin Buettner <kevinb@redhat.com>
5056
5057 * ia64-tdep.c (ia64_gdbarch_init): Eliminate dependency on
5058 functions in ia64-aix-tdep.c.
5059 * ia64-tdep.h (ia64_aix_sigcontext_register_address): Remove
5060 function defined in ia64-aix-tdep.c.
5061 * ia64-aix-tdep.c: Remove file.
5062 * config/ia64/linux.mt (TDEPFILES): Remove ia64-aix-tdep.o from
5063 this list.
5064 * Makefile.in (ia64-aix-tdep.o): Delete.
5065
5066 2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
5067
5068 Committed by Andrew Cagney.
5069 * ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
5070 * alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
5071 * amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
5072 * arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
5073 * armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
5074 * aix-thread.c (_initialize_aix_thread): Get rid of the
5075 deprecated_add_show_from_set call.
5076 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
5077 * arm-tdep.c (_initialize_arm_tdep): Ditto.
5078 * command.h (add_setshow_enum_cmd): Add arguments for returning
5079 new list elements.
5080 * cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
5081 * mips-tdep.c (_initialize_mips_tdep): Modify calls to
5082 add_setshow_enum_cmd.
5083
5084 2005-01-04 Mark Kettenis <kettenis@gnu.org>
5085
5086 * configure.host (ia64-*-aix*): Remove.
5087 * configure.tgt (ia64-*-aix*): Remove.
5088 * config/ia64/aix.mh: Remove file.
5089 * config/ia64/aix.mt: Remove file.
5090 * config/ia64/tm-aix.h: Remove file.
5091 * ia64-aix-nat.c: Remove file.
5092 * Makefile.in (ia64-aix-nat.o): Remove dependency.
5093
5094 * config/m88k/obsd.mh (NATDEPFILES): Really remove inf-child.o.
5095 Add back inf-ptrace.o.
5096
5097 2005-01-04 Andrew Cagney <cagney@gnu.org>
5098
5099 * version.in: Change format from 6.3.50_2005-01-04-cvs to
5100 6.3.50.20050104-cvs.
5101
5102 2005-01-04 Andreas Schwab <schwab@suse.de>
5103
5104 * breakpoint.c (break_command_1): Always free err_msg before
5105 returning when an exception was caught.
5106
5107 2005-01-01 Joel Brobecker <brobecker@gnat.com>
5108
5109 * hppa-tdep.c (prologue_inst_adjust_sp): Fix small confusion
5110 in register number for addil instruction.
5111
5112 For older changes see ChangeLog-2004.
5113 \f
5114 Local Variables:
5115 mode: change-log
5116 left-margin: 8
5117 fill-column: 74
5118 version-control: never
5119 End:
This page took 0.141612 seconds and 5 git commands to generate.