]> Git Repo - binutils.git/blob - gdb/ChangeLog
* gdbint.texinfo (Overall Structure): New section "Source Tree
[binutils.git] / gdb / ChangeLog
1 2006-08-28  DJ Delorie  <[email protected]>
2
3         * m32c-tdep.c (m32c_decode_srcdest4): Initialize fields in sd
4         that may not be initialized elsewhere.
5         (m32c_decode_sd23): Likewise.
6
7 2006-08-25  Daniel Jacobowitz  <[email protected]>
8
9         * buildsym.c (finish_block): Don't adjust the boundaries of
10         nested functions.
11
12 2006-08-24  Andreas Schwab  <[email protected]>
13
14         * symfile.c (add_symbol_file_command): Fix off-by-one when
15         extending sect_opts.
16
17 2006-08-24  Nick Roberts  <[email protected]>
18
19         * mi/gdb-mi.el: Refer to next release of Emacs as 22.1.
20
21 2006-08-23  Nick Roberts  <[email protected]>
22
23         * mi/gdb-mi.el (gdbmi): Remove gdb-force-update, initialize
24         other variables.
25         (gdbmi-send): Ensure any text properties can be removed.
26         (gdbmi-prompt1): Update to gdb-ui.el
27         (gud-gdbmi-marker-filter): Defer setting of gud-running.
28         Keep gdb-done-regexp for partial-output-buffer.
29         (gdb-stack-list-frames-handler): Add face to function names.
30
31 2006-08-22  Mark Kettenis  <[email protected]>
32
33         * valprint.c (val_print_type_code_flags): Fix GNU coding standards
34         violation.
35
36         * alpha-tdep.c (alpha_register_to_value, alpha_value_to_register)
37         (alpha_push_dummy_call, alpha_extract_return_value)
38         (alpha_breakpoint_from_pc, alpha_read_insn)
39         (alpha_get_longjmp_target, alpha_supply_int_regs)
40         (alpha_fill_int_regs, alpha_supply_fp_regs, alpha_fill_fp_regs)
41         (alpha_next_pc): Use gdb_byte instead of (unsigned) char where
42         appropriate.
43
44         * sparc64-tdep.c (sparc64_pstate_type, sparc64_fsr_type)
45         (sparc64_fprs_type): New variables.
46         (sparc64_init_types): New function.:
47         (sparc64_register_info): Use appropriate flag types for %fsr and
48         %fprs.
49         (sparc64_pseudo_register_info): Use appropriate type for %pstate.
50         (_initialize_sparc64_tdep): New function.
51
52         * valprint.c (val_print_type_code_flags): Fix for bitfields larger
53         than 32 bits.
54
55         * gdbtypes.c (init_flags_type): Set all fields to zero instead of
56         just the first one.
57
58 2006-08-22  Daniel Jacobowitz  <[email protected]>
59
60         * Makefile.in (INTERNAL_CPPFLAGS): New.
61         (INTERNAL_CFLAGS_BASE): Use it.
62
63 2006-08-22  Michael Snyder  <[email protected]>
64
65         * MAINTAINERS: Update my email address.
66
67 2006-08-19  Daniel Jacobowitz  <[email protected]>
68
69         * Makefile.in (amd64_linux_tdep_h): New.
70         (amd64-linux-nat.o, amd64-linux-tdep.o): Update.
71         * amd64-linux-nat.c (amd64_linux_gregset64_reg_offset): Add
72         ORIG_RAX.
73         (_initialize_amd64_linux_nat): Set amd64_native_gregset64_num_regs.
74         * amd64-linux-tdep.c (amd64_linux_register_name)
75         (amd64_linux_register_type, amd64_linux_register_reggroup_p)
76         (amd64_linux_write_pc): New.
77         (amd64_linux_init_abi): Use them, and update num_regs.
78         * amd64-linux-tdep.h: New file.
79         * amd64-tdep.c (amd64_register_name, amd64_register_type): Make
80         public.
81         * amd64-tdep.h (amd64_register_name, amd64_register_type): New
82         prototypes.
83
84         * regformats/reg-x86-64-linux.dat: New file.
85
86 2006-08-18  Daniel Jacobowitz  <[email protected]>
87
88         * infrun.c (handle_inferior_event): Check the current frame ID
89         before unwinding to the previous frame.
90
91 2006-08-18  Daniel Jacobowitz  <[email protected]>
92
93         * dwarf2read.c (quirk_gcc_member_function_pointer): Add GCC PR
94         number in a comment.
95
96 2006-08-18  Mark Kettenis  <[email protected]>
97
98         * sparc-nat.c (sparc_xfer_wcookie): Signal EOF.  Tweak comment.
99
100 2006-08-18  Daniel Jacobowitz  <[email protected]>
101
102         * dwarf2read.c (quirk_gcc_member_function_pointer): New.
103         (read_structure_type): Call it.
104
105 2006-08-16  Daniel Jacobowitz  <[email protected]>
106
107         * NEWS: Mention "set trust-readonly-sections" fix.
108
109 2006-08-16  Daniel Jacobowitz  <[email protected]>
110
111         * remote.c, target.c: Strip trailing whitespace.
112
113 2006-08-15  Daniel Jacobowitz  <[email protected]>
114
115         PR remote/1966
116         * dcache.c (dcache_write_line): Use target_write.
117         (dcache_read_line): Use target_read.
118         * mi/mi-main.c (mi_cmd_data_read_memory): Use target_read.
119         * symfile.c (struct load_section_data): Add new per-section
120         members.
121         (load_progress): New function.
122         (load_section_callback): Pass load_progress to the new
123         target_write_with_progress.
124         * target.c (current_xfer_partial, memory_xfer_partial): New.
125         (target_xfer_partial): New prototype.
126         (target_xfer_memory, target_xfer_partial_p, xfer_using_stratum)
127         (do_xfer_memory, target_xfer_memory_partial)
128         (target_read_memory_partial, target_write_memory_partial): Delete.
129         (trust_readonly): Move higher in the file.
130         (update_current_target): Use current_xer_partial.
131         (target_xfer_partial): Use memory_xfer_partial.  Handle
132         TARGET_OBJECT_RAW_MEMORY specially.
133         (target_read_memory): Use target_read.
134         (target_write_memory): Use target_write.
135         (default_xfer_partial): Call to_xfer_partial directly.
136         (target_write_with_progress): New function, based on target_write.
137         (target_write): Call it.
138         * target.h (enum target_object): Add TARGET_OBJECT_RAW_MEMORY.
139         (target_write_with_progress): New prototype.
140         (do_xfer_memory, target_read_memory_partial)
141         (target_write_memory_partial): Delete prototypes.
142
143 2006-08-15  Daniel Jacobowitz  <[email protected]>
144
145         * remote.c (remote_write_bytes): Take a const buffer argument.
146         Do the checks from remote_xfer_memory.
147         (remote_read_bytes): Do the checks from remote_xfer_memory.
148         (remote_xfer_memory): Remove checks pushed into lower level
149         functions.
150         (remote_xfer_partial): Call remote_write_bytes and remote_read_bytes
151         directly.
152         * remote.h (remote_write_bytes): Update prototype.
153
154 2006-08-11  Andrew Stubbs  <[email protected]>
155
156         * NEWS: Add 'set trace-commands' command.
157
158 2006-08-10  Andrew Stubbs  <[email protected]>
159
160         * cli/cli-script.c (execute_user_command): Update command_next_depth
161         on user-command call.
162
163 2006-08-09  Joel Brobecker  <[email protected]>
164
165         * NEWS: Add entry for new substitute-path commands.
166
167 2006-08-08  Joel Brobecker  <[email protected]>
168
169         * source.c: #include gdb_assert.h.
170         (substitute_path_rule): New struct.
171         (substitute_path_rules): New static global variable.
172         (substitute_path_rule_matches): New function.
173         (get_substitute_path_rule): New function.
174         (rewrite_source_path): New function.
175         (find_and_open_source): Add source path rewriting support.
176         (strip_trailing_directory_separator): New function.
177         (find_substitute_path_rule): New function.
178         (add_substitute_path_rule): New function.
179         (delete_substitute_path_rule): New function.
180         (show_substitute_path_command): New function.
181         (unset_substitute_path_command): New function.
182         (set_substitute_path_command): New function.
183         (_initialize_source): Add new substitute-path commands.
184         * Makefile.in (source.o): Add dependency on gdb_assert.h.
185
186 2006-08-08  Joel Brobecker  <[email protected]>
187
188         * i386-tdep.c (i386_follow_jump): Use read_memory_nobpt to read
189         instructions.
190         (i386_analyze_struct_return): Likewise.
191         (i386_skip_probe): Likewise.
192         (i386_match_insn): Likewise.
193         (i386_analyze_frame_setup): Likewise.
194         (i386_analyze_register_saves): Likewise.
195         (i386_skip_prologue): Likewise.
196
197 2006-08-08  Joel Brobecker  <[email protected]>
198
199         * gdbcore.h (read_memory_nobpt): New function name instead of
200         deprecated_read_memory_nobpt.
201         * breakpoint.c (read_memory_nobpt): New function name instead
202         of deprecated_read_memory_nobpt.
203         Adjust calls to old deprecated_read_memory_nobpt accordingly.
204         * alpha-tdep.c: Adjust calls to deprecated_read_memory_nobpt
205         accordingly.
206         * alphanbsd-tdep.c: Likewise.
207         * frame.c: Likewise.
208         * frv-tdep.c: Likewise.
209         * hppa-linux-tdep.c: Likewise.
210         * hppa-tdep.c: Likewise.
211         * i386-linux-nat.c: Likewise.
212         * m68klinux-tdep.c: Likewise.
213         * mips-tdep.c: Likewise.
214         * s390-tdep.c: Likewise.
215
216 2006-08-08  Daniel Jacobowitz  <[email protected]>
217
218         * configure.ac: Check for expat.
219         * acinclude.m4: Include AC_LIB_HAVE_LINKFLAGS dependencies.
220         * Makefile.in (LIBEXPAT): New.
221         (CLIBS): Include $(LIBEXPAT).
222         * README: Mention expat.
223         * configure, config.in: Regenerated.
224
225 2006-08-08  Joel Sherrill <[email protected]>
226
227         * config/sparc/embed.mt: New file.
228         * configure.tgt (sparc-*-rtems*): Use embed.mt.
229
230 2006-08-08  Daniel Jacobowitz  <[email protected]>
231
232         * Makefile.in (objfiles.o, symfile.o): Update.
233         * objfiles.c: Include "expression.h" and "parser-defs.h".
234         (free_objfile): Clear global blocks.
235         * symfile.c: Include "parser-defs.h".
236         (clear_symtab_users): Clear global blocks.
237
238 2006-08-08  Thiemo Seufer  <[email protected]>
239
240         * breakpoint.c (update_breakpoints_after_exec): Fix type mismatch.
241
242 2006-08-08  Vladimir Prus  <[email protected]>
243
244         * symfile.c (download_write_size): Remove.
245         (show_download_write_size): Remove.
246         (load_section_callback): Don't use download_write_size.
247         (_initialize_symfile): Don't register download_write_size.
248         * NEWS: Mention 'download-write-size' removal.
249
250 2006-08-06  Daniel Jacobowitz  <[email protected]>
251
252         * expprint.c (print_subexp_standard, dump_subexp_body_standard): Add
253         support for member pointers.
254
255 2006-08-02  Mark Kettenis  <[email protected]>
256
257         * arm-tdep.h: Add multiple inclusion protection.
258         (struct gdbarch): Add forward declaration.
259         (armobsd_regset_from_core_section): New prototype.
260         * armbsd-tdep.c: New file.
261         * armobsd-tdep.c: Include "gdb_string.h".
262         (armobsd_init_abi): Set regset_from_core_section.
263         (armobsd_core_osabi_sniffer): New function.
264         (_initialize_armobsd_tdep): Register armobsd_core_osabi_sniffer.
265         * Makefile.in (ALLDEPFILES): Add armbsd-tdep.c.
266         (armbsd-tdep.o): New dependency.
267         (armnbsd-tdep.o): Update dependencies.
268         * config/arm/obsd.mt (TDEPFILES): Add armbsd-tdep.o and corelow.o.
269
270 2006-08-02  Thiemo Seufer  <[email protected]>
271
272         * linux-thread-db.c (thread_db_get_thread_local_address): Fix type
273         mismatch.
274         * tui/tui-stack.c (tui_show_frame_info): Likewise.
275
276 2006-08-01  Daniel Jacobowitz  <[email protected]>
277
278         * c-exp.y (type): Remove incorrect pointer to member case.
279         * objc-exp.y (type): Likewise.
280         * p-exp.y (type): Likewise.
281
282 2006-08-01  Mark Kettenis  <[email protected]>
283
284         * arm-tdep.h (enum struct_return): New.
285         (struct gdbarch_tdep): Add struct_return member.
286         * arm-tdep.c (arm_return_value): Return
287         RETURN_VALUE_STRUCT_CONVENTION for aggregates when the ABI uses
288         pcc_struct_return.
289         (arm_gdbarch_init): Default to reg_struct_return.
290         * armobsd-tdep.c (armobsd_init_abi): Set pcc_struct_return.
291
292 2006-07-31  Mark Kettenis  <[email protected]>
293
294         * alpha-tdep.h (ALPHA_S0_REGNUM): New define.
295         * alphabsd-nat.c: Include <sys/types.h>, <sys/signal.h>,
296         <machine/pcb.h> and "bsd-kvm.h".
297         (alphabsd_supply_pcb): New function.
298         (_initialize_alphabsd_nat): Enable libkvm interface.
299         * Makefile.in (alphabsd-nat.o): Update dependencies.
300         * config/alpha/fbsd.mh (NATDEPFILES): Add bsd-kvm.o.
301         (LOADLIBES): New variable.
302         * config/alpha/nbsd.mh (NATDEPFILES): Add bsd-kvm.o.
303         (LOADLIBES): New variable.
304
305 2006-07-31  Fred Fish  <[email protected]>
306
307         * arm-tdep.c (arm_make_prologue_cache): Use FRAME_OBSTACK_ZALLOC
308         instead of calling frame_obstack_zalloc directly.
309         (arm_make_stub_cache): Ditto.
310         * frame-unwind.h: Ditto.
311         * frame.c (create_new_frame): Ditto.
312
313 2006-07-27  Bob Wilson  <[email protected]>
314
315         * MAINTAINERS (Write After Approval): Add myself.
316
317 2006-07-27  Bob Wilson  <[email protected]>
318
319         * main.c (captured_main): Print a newline after calling
320         print_gdb_version instead of waiting until after the symbol file
321         has been read.  Adjust error_pre_print, quit_pre_print, and
322         warning_pre_print values.
323
324 2006-07-27  Roger Sayle  <[email protected]>
325             Daniel Jacobowitz  <[email protected]>
326
327         * irix5-nat.c (fetch_core_registers): Simplify and correct logic.
328
329 2006-07-27  Daniel Jacobowitz  <[email protected]>
330
331         * target.h (target_read_stralloc): New prototype.
332         * target.c (target_read_alloc_1): Renamed from target_read_alloc.
333         Take new PADDING argument.
334         (target_read_alloc): Use it.
335         (target_read_stralloc): New function.
336
337 2006-07-26  Daniel Jacobowitz  <[email protected]>
338
339         * remote.c (remote_protocol_features): Correct qPart to qXfer.
340
341 2006-07-25  Daniel Jacobowitz  <[email protected]>
342
343         * eval.c (evaluate_subexp_for_address): Don't incorrectly discard
344         calls to C++ operator*.
345
346 2006-07-24  Roger Sayle  <[email protected]>
347             Daniel Jacobowitz  <[email protected]>
348
349         * solib-irix.c (gdb_int32_bytes): Use gdb_byte instead of char.
350         (gdb_int64_bytes): Likewise.
351         (fetch_lm_info): Use .b fields of gdb_int32_bytes and gdb_int64_bytes
352         as first argument to extract_unsigned_integer to silence compiler
353         warnings.
354
355 2006-07-24  Frederic Riss  <[email protected]>
356
357         * dwarf2read.c (struct dwarf2_per_objfile): Add has_section_at_zero 
358         field.
359         (dwarf2_locate_sections): Initialize 
360         dwarf2_per_objfile->has_section_at_zero.
361         (dwarf2_get_pc_bounds): Use dwarf2_per_objfile->has_section_at_zero 
362         instead of HAS_RELOC test.
363         (read_partial_die): Ditto.
364
365 2006-07-24  Daniel Jacobowitz  <[email protected]>
366
367         * corefile.c (reopen_exec_file): Only check for an open exec file.
368         Use exec_file_attach.
369         * exec.c (exec_open): Make static.
370         (exec_file_command): Don't use target_preopen.  Query directly about
371         changing the file.
372         * gdbcore.h (exec_open): Remove prototype.
373
374 2006-07-24  Frederic Riss  <[email protected]>
375
376         * regcache.c (struct regcache): Make register_valid_p a signed char 
377         array.
378
379 2006-07-24  Jan Kratochvil  <[email protected]>
380             Daniel Jacobowitz  <[email protected]>
381
382         * linux-thread-db.c (thread_db_wait): Remove libthread_db
383         after exec events.
384
385 2006-07-24  Daniel Jacobowitz  <[email protected]>
386
387         * NEWS: Mention Windows cross debugging support.
388
389 2006-07-23  Daniel Jacobowitz  <[email protected]>
390
391         * linux-nat.c (linux_nat_add_target): Remove extern.
392         * linux-nat.h (thread_db_init): New prototype.
393
394 2006-07-22  Daniel Jacobowitz  <[email protected]>
395
396         * configure.tgt: Build gdbserver for Cygwin and mingw32.
397
398 2006-07-22  Daniel Jacobowitz  <[email protected]>
399
400         * config/i386/cygwin.mt (DEPRECATED_TM_FILE): Delete.
401         * config/i386/nm-cygwin.h: Add contents of tm-cygwin.h.
402         * config/i386/tm-cygwin.h: Delete file.
403
404 2006-07-22  Jan Kratochvil  <[email protected]>
405
406         * infrun.c (handle_inferior_event): Typo.
407
408 2006-07-21  Andrew Stubbs  <[email protected]>
409
410         * cli/cli-cmds.c (source_verbose, trace_commands): New variables.
411         (source_script): New function.
412         (source_verbose_cleanup): New function.
413         (source_command): Move old contents to source_script.
414         Make function static. Parse -v option and call source_script.
415         (init_cli_cmds): Update source command help.
416         Add 'set trace-commands' command.
417         * cli/cli-script.c (command_next_depth): New static variable.
418         (suppress_next_print_command_trace): New static variable.
419         (reset_command_nest_depth): New function.
420         (print_command_trace): New function.
421         (execute_control_command): Split the continue_control and break_control
422         cases, add calls to print_command_trace and count the nest depth.
423         (while_command): Set suppress_next_print_command_trace.
424         (if_command): Likewise.
425         * top.c (execute_command): Call print_command_trace.
426         * cli/cli-cmds.h (source_verbose, trace_commands): New extern variables.
427         (source_command): Change to source_script.
428         * main.c (captued_main): Use source_script instead of source_command.
429         * top.h (source_command): Change to source_script.
430         * event-top.c (display_gdb_prompt): Call reset_command_nest_depth.
431         * cli/cli-script.h (print_command_trace): Export.
432         (reset_command_nest_depth): Likewise.
433
434 2006-07-20  Daniel Jacobowitz  <[email protected]>
435
436         * eval.c (evaluate_struct_tuple): Skip static fields.
437
438 2006-07-19  Mark Kettenis  <[email protected]>
439
440         * alphaobsd-tdep.c: Include "obsd-tdep.h".
441         (alphaobsd_init_abi): Set skip_solib_resolver.
442         * Makefile.in (alphaobsd-tdep.o): Update dependencies.
443         * config/alpha/obsd.mt (TDEPFILES): Add obsd-tdep.o.
444
445         * arm-tdep.c (arm_gdbarch_init): Get default floating-point model
446         from ELF flags for binaries produced by the GNU toolchain.
447
448 2006-07-18  Nathan Sidwell  <[email protected]>
449
450         * remote-fileio.c (remote_fileio_func_rename): Reorder to process
451         input buffer before reading memory.
452         (remote_fileio_func_stat): Likewise.
453
454 2006-07-18  Daniel Jacobowitz  <[email protected]>
455
456         * blockframe.c (find_pc_partial_function): Use the minimal symbol
457         size to control the cache entry, if available.
458         * minsyms.c (lookup_minimal_symbol_by_pc_section): Handle minimal
459         symbols with zero and non-zero sizes differently.
460
461 2006-07-18  Daniel Jacobowitz  <[email protected]>
462
463         * linux-thread-db.c (td_thr_getfpregs_p, td_thr_getgregs_p)
464         (td_thr_setfpregs_p, td_thr_setgregs_p, thread_db_get_info)
465         (thread_db_fetch_registers, thread_db_store_registers)
466         (thread_db_thread_alive, thread_db_state_str): Delete.
467         (thread_db_load): Don't look up regset functions.
468         (thread_db_pid_to_str): Simplify.
469         (thread_db_extra_thread_info): New.
470         (init_thread_db_ops): Do not set to_fetch_registers,
471         to_store_registers, or to_thread_alive.  Set to_extra_thread_info.
472         * Makefile.in: Remove linux-thread-db.o rule.
473
474 2006-07-18  Mark Kettenis  <[email protected]>
475
476         * armobsd-tdep.c: Include "trad-frame.h" and "tramp-frame.h".
477         (armobsd_sigframe_init): New function.
478         (armobsd_sigframe): New variable.
479         (armobsd_init_abi): Prepend armobsd_sigframe unwinder.
480         * Makefile.in (armobsd-tdep.o): Update dependencies.
481
482 2006-07-18  Denis PILAT  <[email protected]>
483
484         * monitor.c: Remove unused prototypes.
485
486 2006-07-18  Vladimir Prus  <[email protected]>
487
488         * target.c (tcomplain): Mark with ATTR_NORETURN.
489
490         * defs.h (print_transfer_performance): Improve comments.
491
492 2006-07-17  Mark Kettenis  <[email protected]>
493
494         * printcmd.c: Coding style fixes: add missing spaces in comments
495         and wrapping long lines.
496         (delete_display, enable_display_command, disable_display_command)
497         (printf_command, display_info, undisplay_command, free_display)
498         (display_command, x_command, address_info, set_command)
499         (inspect_command, call_command, print_command, print_command_1)
500         (validate_format, print_formatted, decode_format, sym_format):
501         Remove prototypes.
502         (x_command): Make static.
503         (printf_command): Convert error into internal consistency check.
504         (address_info): Avoid assignment within function call.
505         (printf_command): Avoid redundant cast.
506         * tracepoint.c (x_command): Remove extern prototype.
507
508         * armobsd-tdep.c (armobsd_init_abi): Set skip_solib_resolver.
509         * Makefile.in (armobsd-tdep.o): Update dependencies.
510         * config/arm/obsd.mt (TDEPFILES): Add obsd-tdep.o.
511
512 2006-07-16  Mark Kettenis  <[email protected]>
513
514         * armobsd-tdep.c: New file.
515         * Makefile.in (ALLDEPFILES): Add armobsd-tdep.c.
516         (armobsd-tdep.o): New dependency.
517         * config/arm/obsd.mt: New file.
518         * configure.tgt: (arm*-*-openbsd*): Set gdb_target to obsd.
519
520         * gdbarch.sh (deprecated_saved_pc_after_call): Delete.
521         * gdbarch.h, gdbarch.c: Re-generate.
522
523         * arm-tdep.c (arm_saved_pc_after_call): Delete.
524         (arm_gdbarch_init): Do not set deprecated_saved_pc_after_call.
525
526 2006-07-16  Alfred M. Szmidt  <[email protected]>
527         
528         * gnu-nat.c: Undefine _process_user_ before including
529         <hurd/process_request.h>.
530         (gnu_resume): Supply missing argument to error().
531         (gnu_read_inferior): Add extra parenthesis around arithmetic
532         expression to silence warnings from GCC.
533         (gnu_write_inferior): Likewise.
534         (gnu_xfer_memory): Changed type of MYADDR to `gdb_byte *'.
535
536 2006-07-16  Mark Kettenis  <[email protected]>
537
538         * armnbsd-tdep.c (arm_netbsd_elf_init_abi): Use
539         svr4_ilp_fetch_link_map_offsets.
540
541 2006-07-15  Mark Kettenis  <[email protected]>
542
543         * armnbsd-tdep.c: Don't include "nbsd-tdep.h".
544         * config/arm/nbsd.mt (TDEPFILES): Remove nbsd-tdep.o.
545         (DEPRECATED_TM_FILE): Remove.
546         * Makefile.in (armnbsd-tdep.o): Update dependencies.
547         
548 2006-07-14  Joel Brobecker  <[email protected]>
549
550         * PROBLEMS: Document threads/2137.
551
552 2006-07-13  Mark Kettenis  <[email protected]>
553
554         * config/alpha/tm-nbsd.h: Remove file.
555         * config/alpha/nbsd.mt (DEPRECATED_TM_FILE): Remove.
556
557 2006-07-13  Corinna Vinschen  <[email protected]>
558
559         * mips-tdep.c (mips_integer_to_address): Simplify be calling
560         extract_signed_integer directly.  Fix comment.
561
562 2006-07-13  Corinna Vinschen  <[email protected]>
563
564         * m32c-tdep.c (m32c_banked_register): New function.
565         (m32c_banked_read): Use m32c_banked_register function to evaluate
566         real register number.
567         (m32c_banked_write): Ditto.
568         (m32c_virtual_frame_pointer): New function.
569         (m32c_gdbarch_init): Add set_gdbarch_virtual_frame_pointer call.
570
571 2006-07-13  Nathan Sidwell  <[email protected]>
572
573         * m68k-tdep.c (m68k_frame_align): New.
574         (m68k_gdbarch_init): Set frame_align here.
575
576 2006-07-13  Denis PILAT  <[email protected]>
577
578         * interps.c (interpreter_completer): Allocate one more item to the
579         'matches' list and set them all to 0 with a xcalloc.
580
581 2006-07-13  Nick Roberts  <[email protected]>
582
583         * annotate.c (annotate_frame_begin): Re-instate frame-begin
584         annotation for level 3 annotations.
585
586 2006-07-13  Paul N. Hilfinger  <[email protected]>
587             Daniel Jacobowitz  <[email protected]>
588
589         * infcall.c (value_arg_coerce): Use value_cast_pointers for
590         references.  Avoid value_cast to a reference type.  Don't silently
591         convert pointers to references.
592         * valops.c (value_cast_pointers): New, based on value_cast.
593         (value_cast): Use it.  Reject reference types.
594         (value_ref): New.
595         (typecmp): Use it.
596         * value.h (value_cast_pointers, value_ref): New prototypes.
597
598 2006-07-12  Daniel Jacobowitz  <[email protected]>
599
600         * remote.c (unpack_varlen_hex): Correct type of retval.
601         Reported by Zhigang Gong <[email protected]>.
602
603 2006-07-12  Daniel Jacobowitz  <[email protected]>
604
605         * dwarf2read.c (dwarf2_symbol_mark_computed): Handle corrupted
606         or missing location list information.  Suggested by Jan
607         Kratochvil <[email protected]>.
608
609 2006-07-12  Daniel Jacobowitz  <[email protected]>
610
611         * Makefile.in (arm_linux_tdep_h): New variable.
612         (arm-linux-nat.o, arm-linux-tdep.o): Update.
613         * arm-linux-nat.c: Include "arm-linux-tdep.h".
614         (typeNone, typeSingle, typeDouble, typeExtended)
615         (FPWORDS, ARM_CPSR_REGNUM, FPREG, FPA11)
616         (fetch_nwfpe_single, fetch_nwfpe_double, fetch_nwfpe_none)
617         (fetch_nwfpe_extended, fetch_nwfpe_register, store_nwfpe_single)
618         (store_nwfpe_double, store_nwfpe_extended, store_nwfpe_register):
619         Delete.
620         (fetch_fpregister, fetch_fpregs, store_fpregister, store_fpregs):
621         Use gdb_byte buffers, NWFPE_FPSR_OFFSET, supply_nwfpe_register,
622         and collect_nwfpe_register.
623         (fill_gregset, supply_gregset, fill_fpregset, supply_fpregset): Use
624         new regset functions.
625         * arm-linux-tdep.c: Include "regset.h" and "arm-linux-tdep.h".
626         (arm_apcs_32): New declaration.
627         (ARM_LINUX_SIZEOF_GREGSET, arm_linux_supply_gregset)
628         (arm_linux_collect_gregset, typeNone, typeSingle, typeDouble)
629         (typeExtended, supply_nwfpe_register, collect_nwfpe_register)
630         (arm_linux_supply_nwfpe, arm_linux_collect_nwfpe)
631         (arm_linux_regset_from_core_section): New.
632         (arm_linux_init_abi): Register arm_linux_regset_from_core_section.
633         * arm-linux-tdep.h: New file.
634         * arm-tdep.h (struct regset): Declare.
635         (struct gdbarch_tdep): Add gregset, fpregset members.
636         * config/arm/linux.mh (NATDEPFILES): Remove corelow.o and
637         core-regset.o.
638         * config/arm/linux.mt (TDEPFILES): Add corelow.o.
639
640 2006-07-12  Jan Kratochvil  <[email protected]>
641
642         * infrun.c (handle_inferior_event): Fixed typos in printf.
643
644 2006-07-12  Daniel Jacobowitz  <[email protected]>
645             Nathan Sidwell  <[email protected]>
646
647         * remote.c (REMOTE_ALIGN_WRITES): New.
648         (remote_write_bytes): Align large write packets.  Remove unused
649         payload_start variable.
650
651 2006-07-12  Daniel Jacobowitz  <[email protected]>
652
653         * remote.c (PACKET_qXfer_auxv): New, renamed from PACKET_qPart_auxv.
654         (remote_supported_packet): Remove #if 0.
655         (remote_protocol_features): Add qPart:auxv:read.
656         (remote_unescape_input): New function.
657         (readchar): Don't mask off the high bit.
658         (read_frame): Use fputstrn_filtered for packet data.
659         (getpkt_sane): Return the number of bytes read or -1.  Use
660         fputstrn_unfiltered.
661         (remote_read_qxfer): New.
662         (remote_xfer_partial): Use it for TARGET_OBJECT_AUXV.
663         (_initialize_remote): Update packet registration.
664         * defs.h (fputstrn_filtered): New prototype.
665         * utils.c (fputstrn_filtered): New.
666         * NEWS: Mention qXfer.
667
668 2006-07-12  Daniel Jacobowitz  <[email protected]>
669
670         * target.c (target_read): Stop if target_read_partial returns 0
671         when some bytes have already been read.
672         (target_write): Likewise for target_write_partial.
673         (target_read_partial, target_write_partial): Make static.
674         (target_read_alloc): New.
675         * target.h: Doc fixes.
676         (target_read_partial, target_write_partial): Delete prototypes.
677         (target_read_alloc): New prototype.
678
679         * auxv.c (target_auxv_read): Delete.
680         (target_auxv_search, fprint_target_auxv): Use target_read_alloc.
681         * auxv.h (target_auxv_read): Delete prototype.
682         * avr-tdep.c (avr_io_reg_read_command): Use target_read_alloc.
683         * ia64-tdep.c (getunwind_table, get_kernel_table): Likewise.
684         * linux-nat.c (linux_nat_make_corefile_notes): Likewise.
685         * procfs.c (procfs_make_note_section): Likewise.
686         * remote.c (remote_xfer_partial): Don't loop here.
687         * sparc-tdep.c (sparc_fetch_wcookie): Use target_read.
688
689 2006-07-12  Daniel Jacobowitz  <[email protected]>
690
691         * arm-linux-tdep.c: Doc fixes.
692         (ARM_SIGCONTEXT_R0, ARM_UCONTEXT_SIGCONTEXT)
693         (ARM_OLD_RT_SIGFRAME_SIGINFO, ARM_OLD_RT_SIGFRAME_UCONTEXT)
694         (ARM_NEW_RT_SIGFRAME_UCONTEXT, ARM_NEW_SIGFRAME_MAGIC): New
695         constants.
696         (arm_linux_sigreturn_init, arm_linux_rt_sigreturn_init): Support
697         the new signal frame layouts.
698
699 2006-07-12  Mike Frysinger  <[email protected]>:
700             Daniel Jacobowitz  <[email protected]>
701
702         * Makefile.in (init.c) [LANG, LC_ALL]: Set to `c'.
703         * gdb_indent.sh, gdb_mbuild.sh, observer.sh: Likewise.
704         * gdbarch.sh: Correct comment.
705
706 2006-07-12  Daniel Jacobowitz  <[email protected]>
707
708         * MAINTAINERS: Add Alfred Szmidt for the Hurd.
709
710 2006-07-11  Mark Kettenis  <[email protected]>
711
712         * alpha-tdep.h (ALPHA_INSN_SIZE): New define.
713
714 2006-07-10  Mark Kettenis  <[email protected]>
715
716         * alphaobsd-tdep.c: New file.
717         * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Do not register a
718         handler for GDB_OSABI_OPENBSD_ELF.
719         * Makefile.in (ALLDEPFILES): Add alphaobsd-tdep.c.
720         (alphaobsd-tdep.o): New target.
721         * config/alpha/obsd.mt: New file.
722         * configure.tgt (alpha*-*-openbsd*): Set gdb_target to obsd.
723
724 2006-07-10  Richard Henderson  <[email protected]>
725
726         * alpha-tdep.h (struct gdbarch_tdep): Add return_in_memory.
727         * alpha-tdep.c (alpha_register_byte): Remove.
728         (alpha_extract_struct_value_address): Remove.
729         (alpha_return_value): New.
730         (alpha_return_in_memory_always): New.
731         (alpha_gdbarch_init): Set tdep->return_in_memory.  Don't call
732         set_gdbarch_deprecated_register_byte.  Do call set_gdbarch_return_value
733         instead of set_gdbarch_deprecated_use_struct_convention,
734         set_gdbarch_extract_return_value, set_gdbarch_store_return_value,
735         or set_gdbarch_deprecated_extract_struct_value_address.
736         * alphafbsd-tdep.c (alphafbsd_return_in_memory): Rename from
737         alphafbsd_use_struct_convention, remove gcc_p argument.
738         (alphafbsd_init_abi): Set tdep->return_in_memory instead of
739         set_gdbarch_deprecated_use_struct_convention.
740
741 2006-07-09  Mark Kettenis  <[email protected]>
742
743         * alphabsd-tdep.h (alphanbsd_regset_from_core_section): New
744         prototype.
745         * alphanbsd-tdep.c (alphanbsd_regset_from_core_section): Handle
746         a.out-style core file format here.  Make global.
747         (alphanbsd_regset_from_core_section): Remove.
748         (alphanbsd_sigtramp_offset): Make static.
749         (alphanbsd_aout_init_abi): Remove.
750         (alphanbsd_core_osabi_sniffer): Return GDB_OSABI_NETBSD_ELF for
751         a.out style core files.
752         (_initialize_alphanbsd_tdep): Do not register a handler for
753         GDB_OSABI_NETBSD_AOUT.
754
755         * alphabsd-tdep.h: Tweak comments.
756         (SIZEOF_STRUCT_REG, SIZEOF_STRUCT_FPREG): Remove.
757         * alphanbsd-tdep.c: Reorder includes.  Include "regset.h".
758         (ALPHANBSD_SIZEOF_GREGS, ALPHANBSD_SIZEOF_FPREGS): New defines.
759         (alphanbsd_supply_fpregset, alphanbsd_supply_gregset)
760         (alphanbsd_aout_supply_gregset): New functions.
761         (alphanbsd_gregset, alphanbsd_fpregset, alphanbsd_aout_gregset):
762         New variables.
763         (alphanbsd_regset_from_core_section)
764         (alphanbsd_aout_regset_from_core_section): New functions.
765         (fetch_core_registers, fetch_elfcore_registers): Remove functions.
766         (alphanbsd_core_fns, alphanbsd_elf_fns): Remove variables.
767         (alphanbsd_init_abi): Set regset_from_core_section.
768         (alphanbsd_aout_init_abi, alphanbsd_core_osabi_sniffer): New
769         functions.
770         (_initialize_alphanbsd_tdep): Register NetBSD core file sniffer.
771         Use alphanbsd_aout_init_abi whre appropriate.  Don't call
772         deprecated_add_core_fns.
773         * Makefile.in (alphanbsd-tdep.o): Update dependencies.
774
775         * alphabsd-tdep.c (alphabsd_supply_reg, alphabsd_fill_reg)
776         (alphabsd_supply_fpreg, alphabsd_fill_fpreg): Add missing spaces.
777
778         * alphanbsd-tdep.c (alphanbsd_init_abi): Use
779         svr4_lp64_fetch_link_map_offsets instead of
780         nbsd_lp64_solib_svr4_fetch_link_map_offsets.
781
782 2006-07-06  Andrew Stubbs  <[email protected]>
783
784         * parse.c (write_exp_elt_opcode, write_exp_elt_sym, write_exp_elt_block
785         write_exp_elt_longcst, write_exp_elt_dblcst, write_exp_elt_type,
786         write_exp_elt_intern): Zero initialize tmp.
787
788 2006-07-05  Daniel Jacobowitz  <[email protected]>
789
790         * remote.c (remote_xfer_partial): Remove KOD support.
791         * target.h (enum target_object): Remove TARGET_OBJECT_KOD.
792         * MAINTAINERS: Move Kernel Object Display entry to past maintainers.
793         * Makefile.in (SFILES, kod_h, COMMON_OBS, kod.o, kod-cisco.o):
794         Remove KOD support.
795         * mi/mi-cmds.c (mi_cmds): Remove dummy KOD commands.
796         * NEWS: Mention KOD.
797         * kod.h, kod.c, kod-cisco.c: Delete files.
798
799 2006-07-04  Daniel Jacobowitz  <[email protected]>
800
801         * remote.c (init_remote_state): Use xrealloc instead of xmalloc.
802
803 2006-07-03  Nathan J. Williams  <[email protected]>
804
805         * bsd-kvm.c (bsd_kvm_open): Open the KVM interface read-write if
806         write_files is set.
807
808 2006-06-24  Eli Zaretskii  <[email protected]>
809
810         * defs.h (DIRNAME_SEPARATOR) [!__CYGWIN__ && _WIN32]: Define to `;'.
811
812 2006-06-23  Daniel Jacobowitz  <[email protected]>
813
814         * arm-tdep.c (arm_register_type): Use unsigned types for registers.
815         Add special types for sp and pc.
816         * Makefile.in (arm-tdep.o): Update.
817
818 2006-06-22  Daniel Jacobowitz  <[email protected]>
819
820         * remote.c (remote_escape_output): New function.
821         (remote_write_bytes): Use remote_escape_output.
822
823 2006-06-21  Daniel Jacobowitz  <[email protected]>
824
825         * NEWS: Mention qSupported.
826         * remote.c (struct remote_state): Add explicit_packet_size.
827         (get_remote_packet_size): Check explicit_packet_size.
828         (get_memory_packet_size): Likewise.
829         (PACKET_qSupported): New enum value.
830         (struct protocol_feature, remote_supported_packet)
831         (remote_packet_size, remote_protocol_features)
832         (remote_query_supported): New.
833         (remote_open_1): Reset explicit_packet_size.  Call
834         remote_query_supported.
835         (_initialize_remote): Register qSupported.
836
837 2006-06-21  Andrew Stubbs  <[email protected]>
838
839         * cli/cli-script.c (realloc_body_list): Zero new parts of body_list.
840
841 2006-06-20  Joel Brobecker  <[email protected]>
842
843         * GDB 6.5 released from GDB 6.5 branch.
844
845 2006-06-19  Michael Snyder  <[email protected]>
846
847         * mips-tdep.c (mips_eabi_push_dummy_call): For 32 bit ABI, to
848         decide how many registers it takes to pass a floating point
849         argument, what matters is the size of a floating point register
850         (not the size of a general purpose register).
851         (mips_o32_push_dummy_call): Ditto.
852
853 2006-06-19  Kazuhiro Inaoka <[email protected]>
854
855         * configure.tgt: Add gdbserver support for m32r-linux.
856
857 2006-06-18  Mark Kettenis  <[email protected]>
858
859         * m68klinux-tdep.c (m68k_linux_init_abi): Fix typo in comment.
860
861 2006-06-15  Daniel Jacobowitz  <[email protected]>
862
863         * infrun.c (insert_step_resume_breakpoint_at_caller): New function,
864         based on insert_step_resume_breakpoint_at_frame.
865         (handle_inferior_event): Update comments.  Use
866         insert_step_resume_breakpoint_at_caller.
867         (insert_step_resume_breakpoint_at_frame): Revise comments.
868
869 2006-06-14  Daniel Jacobowitz  <[email protected]>
870
871         * dwarf2read.c (read_unspecified_type): New function.
872         (read_type_die): Handle DW_TAG_unspecified_type.
873         (Committed by Julian Brown.)
874
875 2006-06-13  Daniel Jacobowitz  <[email protected]>
876
877         * symfile.c (load_command): Check for a changed executable before
878         "load".
879
880 2006-06-13  Fred Fish  <[email protected]>
881
882         * mips-tdep.c (mips_find_long_section): New function.
883         (mips_gdbarch_init): Use it to set long and pointer sizes.
884
885 2006-06-13  Nathan Sidwell  <[email protected]>
886
887         * remote-file.io.c (remote_fileio_func_system): Treat zero length
888         string as NULL.  Adjust for NULL pointer argument.
889         * doc/gdb.texinfo (system): Document behaviour with zero length
890         string.
891
892 2006-06-12  Daniel Jacobowitz  <[email protected]>
893
894         * remote.c (set_remote_protocol_packet_cmd)
895         (show_remote_protocol_packet_cmd): New prototypes.
896         (remote_set_cmdlist, remote_show_cmdlist): Move higher.
897         (struct packet_config): Make name and title const.
898         (add_packet_config_cmd): Remove unnecessary arguments.
899         (_initialize_remote): Update calls.
900
901 2006-06-10  Daniel Jacobowitz  <[email protected]>
902
903         * mingw-hdep.c (gdb_select): Always check for NULL fd sets
904         before calling FD_ISSET.  Correct check for exceptfds which
905         previously tested writefds.
906
907 2006-06-09  Daniel Jacobowitz  <[email protected]>
908             Julian Brown  <[email protected]>
909
910         * dwarf2read.c (partial_read_comp_unit_head): Accept version 3.
911
912 2006-06-09  Julian Brown  <[email protected]>
913
914         * MAINTAINERS (Write After Approval): Add myself.
915
916 2006-06-08  Michael Snyder  <[email protected]>
917
918         * mips-tdep.c (fp_register_arg_p): Recognize floating point typedefs.
919
920 2006-06-08  Nathan Sidwell  <[email protected]>
921
922         * m68k-tdep.c (m68k_dwarf_reg_to_regnum): New.
923         (m68k_gdbarch_init): Set it for dwarf & dwarf2 reg number
924         conversion. Use M68K_NUM_REGS for number of regs.
925
926         * remote-fileio.c (remote_fileio_reset): New.
927         * remote-fileio.h (remote_fileio_reset): Prototype.
928         * remote.c (extended_remote_restart, remote_open_1): Call it.
929
930         * remote.c (remote_open_1): Do preopen tasks before
931         irreversably destroying state.
932
933 2006-06-08  Daniel Jacobowitz  <[email protected]>
934
935         * remote.c (struct remote_state): New type, only containing
936         buf and buf_size.
937         (remote_state): New variable.
938         (get_remote_state): New function.
939         (struct remote_arch_state): Renamed from struct remote_state.
940         Removed buf and buf_size.
941         (get_remote_arch_state): Renamed from get_remote_state.  All
942         necessary callers updated to call this function.
943         (init_remote_state): Initialize the architecture-specific state.
944         Update the target-specific state if necessary.
945         (get_remote_packet_size): New function.  All previous references
946         changed to use this accessor function.
947         (packet_reg_from_regnum, packet_reg_from_pnum): Take a
948         remote_arch_state instead of a remote_state.  All callers changed.
949         (_initialize_remote): Initialize the packet buffer here.
950
951 2006-06-06  Nathan Sidwell  <[email protected]>
952
953         * remote.c (remote_insert_watchpoint): Return -1, rather than
954         fatal error if packet is disabled.
955         (remote_remove_watchpoint, remote_insert_hw_breakpoint,
956         remote_remove_hw_breakpoint): Likewise.
957
958 2006-06-02  Nick Roberts  <[email protected]>
959
960         * breakpoint.c (print_it_typical): Use EXEC_ASYNC_LOCATION_REACHED.
961
962 2006-05-31  Michael Snyder  <[email protected]>
963
964         * mips-tdep.c: Comment tweaks.
965
966 2006-05-31  Daniel Jacobowitz  <[email protected]>
967
968         * Makefile.in (top_builddir): Update comments.
969         (INTL_DIR, INTL_SRC): Delete.
970         (INTL, INTL_DEPS, INTL_CFLAGS): Update.
971         * acinclude.m4: Include new gettext macros.
972         * configure.ac: Use ZW_GNU_GETTEXT_SISTER_DIR.  Remove copied
973         CATALOGS code.
974         * aclocal.m4, configure: Regenerated.
975
976 2006-05-30  Daniel Jacobowitz  <[email protected]>
977
978         * Makefile.in (arm-linux-nat.o): Update dependencies.
979         * arm-linux-nat.c: Include "gdb_proc_service.h".
980         (PTRACE_GET_THREAD_AREA): Define.
981         (ps_get_thread_area): New function.
982
983 2006-05-28  Alexandre Oliva  <[email protected]>
984
985         * dwarf2-frame.h (enum dwarf2_frame_reg_rule): Add
986         DWARF2_FRAME_REG_SAVED_VAL_OFFSET and
987         DWARF2_FRAME_REG_SAVED_VAL_EXP.
988         * dwarf2-frame.c (execute_cfa_program): Handle val_offset,
989         val_offset_sf and val_expression.
990         (dwarf2_frame_prev_register): Handle the new reg rules.
991         (dwarf2_frame_this_id): Use pc instead of function entry point.
992
993 2006-05-28  Alexandre Oliva  <[email protected]>
994
995         * dwarf2-frame.c (struct dwarf2_cie): Add signal_frame field.
996         (dwarf2_frame_sniffer): Use it.
997         (decode_frame_entry_1): Set it according to augmentation "S".
998
999 2006-05-27  Joel Brobecker  <[email protected]>
1000
1001         From Peter Schauer <[email protected]>
1002         * m2-typeprint.c (m2_record_fields): Move variable declarations
1003         to the begining of the block.
1004         
1005 2006-05-23  Mark Mitchell  <[email protected]>
1006
1007         * mt-tdep.c (mt_register_name): Correct out-of-range logic to
1008         include additional registers. 
1009
1010         * mt-tdep.c (mt_gdb_regnums): Add ZI2, ZQ2, Ichannel2,
1011         Iscramb2, Qscramb2, Qchannel2.
1012         (mt_register_name): Likewise.
1013         (mt_copro_register_type): Describe ZI2 and ZQ2.
1014
1015         * mt-tdep.c (mt_gdb_regnums): Define
1016         MT_COPRO_PSEUDOREG_MAC_REGNUM.
1017         (mt_register_name): Use it.
1018         (mt_copro_register_type): Likewise.
1019         (mt_register_type): Likewise.
1020         (mt_pseudo_register_read): Likewise.  Read the MAC register, not
1021         the coprocessor register.
1022         (mt_pseudo_register_write): Likewise.
1023
1024 2006-05-21  Christopher Faylor  <[email protected]>
1025
1026         * win32-nat.c (cygwin_exceptions): New variable.
1027         (handle_exception): Treat a cygwin exception like a normal exception if
1028         cygwin_exceptions is true.
1029         (_initialize_win32_nat): Add "set cygwin-exceptions" handler.
1030
1031 2006-05-20  Gaius Mulley  <[email protected]>
1032
1033         * NEWS: (Improved Modula-2 language support): New section.
1034
1035 2006-05-19  Joel Brobecker  <[email protected]>
1036
1037         * configure: Regenerate using proper version of autoconf.
1038
1039 2006-05-19  Fred Fish  <[email protected]>
1040
1041         * Makefile.in: Fix spelling of 'explicitly' and 'explicit'.
1042         * dwarfread.c: Fix spelling of 'unexpected'.
1043         * mips-tdep.c: Fix spelling of 'possible' and 'Determine'.
1044         * stack.c: Fix spelling of 'RETURN_VALUE'.
1045         
1046 2006-05-18  Paul Gilliam  <[email protected]
1047
1048         * solib-svr4.c (enable_break): Breakup a long line into 3 shorter ones.
1049
1050 2006-05-17  Daniel Jacobowitz  <[email protected]>
1051
1052         * dwarf2-frame.c: Include "value.h".
1053         (read_reg): Use unpack_long and register_type.
1054         * Makefile.in (dwarf2-frame.o): Update.
1055
1056 2006-05-17  Daniel Jacobowitz  <[email protected]>
1057
1058         * remote-rdp.c: Deleted.
1059         * NEWS: Mention removal of remote-rdp.c.
1060
1061         * Makefile.in (ALLDEPFILES): Remove remote-rdp.c.
1062         (remote-rdp.o): Delete.
1063         * README: Remove description of remote-rdp.c.
1064         * arm-tdep.c (arm_breakpoint_from_pc): Remove obsolete comment.
1065         * config/arm/embed.mt (TDEPFILES): Remove remote-rdp.o.
1066
1067 2006-05-16  Daniel Jacobowitz  <[email protected]>
1068
1069         * ser-e7kpc.c: Include <time.h> if it is available.
1070
1071 2006-05-16  Joel Brobecker  <[email protected]>
1072
1073         * version.in (version.in): Bump version number to 6.5.50 now
1074         that the gdb-6.5 branch has been created.
1075         * NEWS: Create a new section for changes that are included
1076         since gdb-6.5. Name the "since gdb-6.4" section as the "in gdb-6.5"
1077         section.
1078
1079 2006-05-16  Jim Blandy  <[email protected]>
1080
1081         * MAINTAINERS (Authorized Committers): Gaius Mulley has accepted
1082         the Global Maintainers' invitation to be an authorized committer
1083         for the Modula-2 support.
1084
1085 2006-05-15  Mark Kettenis  <[email protected]>
1086
1087         * ppcobsd-nat.c: Include "gdb_assert.h".
1088         [PT_GETFPREGS] (getfpregs_supplies): New function.
1089         (ppcobsd_fetch_registers, ppcobsd_fetch_registers): Hanlde OS
1090         versions that have PT_GETFPREGS.
1091         (_initialize_ppcobsd_nat) [PT_GETFPREGS]: Initialize
1092         ppcobsd_fpreg_offsets.
1093         * ppcobsd-tdep.h (ppcobsd_fpreg_offsets, ppcobsd_fpregset):
1094         Declare.
1095         * ppcobsd-tdep.c (ppcobsd_fpreg_offsets, ppcobsd_fpregset): New
1096         variables.
1097         (_initialize_ppcobsd_tdep): Initialize ppcobsd_fpreg_offsets.
1098         * Makefile.in (ppcobsd-nat.o): Update dependencies.
1099
1100 2006-05-15  Daniel Jacobowitz  <[email protected]>
1101
1102         * configure.ac: Use GCC_HEADER_STDINT.
1103         * acinclude.m4: Include stdint.m4.
1104         * Makefile.in (gdb_stdint_h): Define.
1105         (distclean): Remove gdb_stdint.h.
1106         (Makefile, stamp-h): Update rules to generate only the correct
1107         files.
1108         (gdb_stdint.h, stamp-int): New rules.
1109         * config.in, configure: Regenerated.
1110
1111 2006-05-15  Daniel Jacobowitz  <[email protected]>
1112
1113         * valprint.c: Include "exceptions.h".
1114         (val_print): If something goes wrong while printing, supply an
1115         error message.
1116
1117 2006-05-15  Peter O'Gorman  <[email protected]>
1118
1119         * source.c (get_current_source_symtab_and_line)
1120         (set_current_source_symtab_and_line): Use { 0 }.
1121         * cli/cli-cmds.c (list_command): Likewise.
1122
1123 2006-05-14  Nick Roberts  <[email protected]>
1124
1125         * mi/gdb-mi.el (gdbmi-send): Correct regexp for repeat commands.
1126         (gdbmi): Use new variable name gdb-pc-address.
1127         (gdbmi-frame-handler):  Use new variable name gdb-pc-address.
1128         Check that a match has been found.
1129
1130 2006-05-13  Gaius Mulley  <[email protected]>
1131
1132         * m2-lang.h: Added function extern prototypes for
1133         m2_is_long_set and get_long_set_bounds.
1134         * m2-typeprint.c: Complete replacement.
1135         (m2_print_type): Walk the Modula-2 type tree.
1136         (m2_type_name): New function.
1137         (m2_range): New function.
1138         (m2_typedef): New function.
1139         (m2_array): New function.
1140         (m2_pointer): New function.
1141         (m2_ref): New function.
1142         (m2_unknown): New function.
1143         (m2_union): New function.
1144         (m2_procedure): New function.
1145         (m2_print_bounds): New function.
1146         (m2_short_set): New function.
1147         (m2_is_long_set): New function.
1148         (m2_get_discrete_bounds): New function.
1149         (m2_is_long_set_of_type): New function.
1150         (m2_long_set): New function.
1151         (m2_record_fields): New function.
1152         (m2_enum): New function.
1153         * dwarf2read.c: Modified.
1154         (read_set_type): New function.
1155         (process_die): Call read_set_type.
1156         (read_base_type): Modifed.
1157         (set_cu_language): Added Modula-2 case clause.
1158         * m2-valprint.c: Complete replacement.
1159         (print_function_pointer_address): New function.
1160         (get_long_set_bounds): New function.
1161         (m2_print_long_set): New function.
1162         (print_unpacked_pointer): New function.
1163         (print_variable_at_address): New function.
1164         (m2_val_print): Replaced.
1165         * gdb/MAINTAINERS (Write After Approval): Added
1166         Gaius Mulley  <[email protected]>
1167
1168 2006-05-12  Mark Kettenis  <[email protected]>
1169
1170         * ppcnbsd-tdep.h: Update copyright year.  Include <stddef.h>
1171         (ppcnbsd_supply_reg, ppcnbsd_fill_reg, ppcnbsd_supply_fpreg)
1172         (ppcnbsd_fill_fpreg): Remove prototypes.
1173         (struct regset): Add forward declaration.
1174         (ppcnbsd_gregset, ppcnbsd_fpregset): Extern declarations.
1175         * ppcnbsd-tdep.c: Update copyright year.  Include "gdbtypes.h",
1176         "regset.h" and "gdb_string.h".  Don't include "breakpoint.h",
1177         "value.h", target.h and nbsd-tdep.h".  Reorder includes.
1178         (REG_FIXREG_OFFSET, REG_LR_OFFSET, REG_CR_OFFSET, REG_XER_OFFSET)
1179         (REG_CTR_OFFSET, REG_PC_OFFSET, SIZEOF_STRUCT_REG)
1180         (FPREG_FPR_OFFSET, FPREG_FPSCR_OFFSET, SIZEOF_STRUCT_FPREG):
1181         Remove macros.
1182         (ppcnbsd_supply_reg, ppcnbsd_fill_reg, ppcnbsd_supply_fpreg)
1183         (ppcnbsd_fill_fpreg): Remove functions.
1184         (fetch_core_registers, fetch_elfcore_registers): Remove functions.
1185         (ppcnbsd_core_fns, ppcnbsd_elfcore_fns): Remove variables.
1186         (ppcnbsd_reg_offsets): New variable.
1187         (ppcnbsd_gregset, ppcnbsd_fpregset): New variables.
1188         (ppcnbsd_sigtramp_cache_init): Deal with new signal trampoline
1189         introduced in NetBSD 2.0.
1190         (ppcnbsd_sigtramp): Provide complete signal trampoline.
1191         (ppcnbsd2_sigtramp): New variable.
1192         (ppcnbsd_init_abi): Set svr4_fetch_link_map_offsets to
1193         svr4_ilp32_fetch_link_map_offsets.  Set regset_from_core_section.
1194         Add ppcnbs2_sigtramp unwinder.
1195         (_initialize_ppcnbsd_tdep): Don't use deprecated_add_core_fns.
1196         Initialize ppcnbsd_reg_offsets.
1197         * ppcnbsd-nat.c: Update copyright year.  Reorder includes.
1198         (getregs_supplies): Use regnum instead of regno.
1199         (getfpregs_supplies): Likewise.
1200         (ppcnbsd_fetch_inferior_registers): Likewise.  Call
1201         ppc_supply_gregset and ppc_suppply_fpregset instead of
1202         ppcnbsd_supply_reg and ppcnbsd_supply_fpreg
1203         (ppcnbsd_store_inferior_registers): Likewise.  Call
1204         ppc_collect_gregset and ppc_collect_fpregset instead of
1205         ppcnbsd_fill_reg and ppcnbsd_fill_fpreg.
1206         (ppcnbsd_supply_pcb): Use `gdb_byte *' instead of `char *'.
1207         (_initialize_ppcnbsd_nat): Add some whitespace.
1208         * Makefile.in (ppcnbsd-nat.o, ppcnbsd-tdep.o): Update dependencies.
1209         * config/powerpc/nbsd.mh (NATDEPFILES): Remove infptrace.o.
1210         (NAT_FILE): Remove.
1211         * config/powerpc/nbsd.mt (TDEPFILES): Remove nbsd-tdep.o.
1212
1213 2006-05-11  Alfred M. Szmidt  <[email protected]>
1214
1215         * gnu-nat.c (inf_validate_procs): Don't use lvalue in assignments.
1216
1217 2006-05-11  Fred Fish  <[email protected]>
1218
1219         * symtab.c (skip_prologue_using_sal): Handle single line functions
1220         like "foo(){}", which may optimize down to a single return inst.
1221
1222 2006-05-10  Steve Ellcey  <[email protected]>
1223
1224         * hppa-hpux-tdep.c (initialize_hp_cxx_exception_support): Remove
1225         message.
1226
1227 2006-05-09  Andreas Schwab  <[email protected]>
1228
1229         * dwarf2-frame.c (struct dwarf2_fde): Add eh_frame_p.
1230         (execute_cfa_program): Add parameter eh_frame_p.  Call
1231         dwarf2_frame_eh_frame_regnum when true.
1232         (dwarf2_frame_cache): Pass eh_frame_p from fde to
1233         execute_cfa_program.
1234         (decode_frame_entry_1): Call dwarf2_frame_eh_frame_regnum when
1235         processing .eh_frame.  Copy eh_frame_p to the new fde.
1236         (struct dwarf2_frame_ops): Add eh_frame_regnum.
1237         (dwarf2_frame_set_eh_frame_regnum): Define.
1238         (dwarf2_frame_eh_frame_regnum): Define.
1239
1240         * dwarf2-frame.h (dwarf2_frame_set_eh_frame_regnum): Declare.
1241         (dwarf2_frame_eh_frame_regnum): Declare.
1242
1243 2006-05-06  David S. Miller  <[email protected]>
1244
1245         * linux-nat.c (linux_nat_do_thread_registers): Check for
1246         NULL collect_regset method.
1247
1248 2006-05-06  Ulrich Weigand  <[email protected]>
1249
1250         * s390-tdep.c (s390_collect_regset): New function.
1251         (s390_gregset, s390x_gregset, s390_fpregset): Add it.
1252
1253 2006-05-06  Nick Roberts  <[email protected]>
1254
1255         * dwarf2read.c: Make LOC_OPTIMIZED_OUT the default value for a
1256         symbol.
1257
1258 2006-05-05  Ulrich Weigand  <[email protected]>
1259
1260         * linux-nat.c (exit_lwp): Fix NULL pointer access.
1261         (linux_nat_handle_extended): New parameter STOPPING.
1262         (wait_lwp): Call it with STOPPING equals 1.
1263         (linux_nat_wait): Call it with STOPPING equals 0.
1264
1265 2006-05-05  Ulrich Weigand  <[email protected]>
1266
1267         * linux-nat.c (linux_nat_wait): Do not short-cut reporting
1268         of 'uninteresting' signals when single-stepping.
1269
1270 2006-05-05  Daniel Jacobowitz  <[email protected]>
1271
1272         * MAINTAINERS: Move NEWS to the documentation entry.
1273
1274 2006-05-05  David S. Miller  <[email protected]>
1275
1276         * linux-nat.c (linux_nat_do_thread_registers): Use the
1277         regset_from_core_section infrastructure if the target
1278         supports it.
1279         * Makefile.in: Update dependencies.
1280         * linux-thread-db.c (thread_db_store_registers): Use
1281         regcache_raw_collect.
1282
1283 2006-05-05:  Paul Gilliam  <[email protected]>
1284
1285         * ppc-linux-nat.c: Clean up types for ptrace.
1286         Replace (CORE_ADDR) with  (uintptr_t) to avoid the size difference
1287         between a CORE_ADDR and a void* on ppc64 systems compiled for 32-bits.
1288
1289 2006-05-05  Daniel Jacobowitz  <[email protected]>
1290
1291         * remote.c (remote_disconnect): Add TARGET argument.
1292         * target.c (debug_to_disconnect): Delete.
1293         (update_current_target): Do not inherit to_disconnect.
1294         (target_disconnect): Search for a target to implement to_disconnect.
1295         (setup_target_debug): Do not reference to_disconnect.
1296         * target.h (struct target_ops): Add target argument to
1297         to_disconnect.
1298
1299 2006-05-06  Fred Fish  <[email protected]>
1300
1301         * mips-tdep.c (mips_o64_push_dummy_call): Left shift big endian
1302         structs or unions independent of ABI register size.
1303
1304 2006-05-06  Fred Fish  <[email protected]>
1305
1306         * mips-tdep.c (mips_o64_return_value): Replace stub that always
1307         returned RETURN_VALUE_STRUCT_CONVENTION with a real function.
1308
1309 2006-05-05  Daniel Jacobowitz  <[email protected]>
1310
1311         * mi/mi-main.c (captured_mi_execute_command): Check the return
1312         value of -interpreter-exec.
1313
1314 2006-05-03  Vladimir Prus  <[email protected]>
1315
1316         * varobj.c (c_value_of_variable): Ignore top-level references.
1317         (Committed by Jim Blandy.)
1318
1319 2006-04-30  Mark Kettenis  <[email protected]>
1320
1321         * breakpoint.c (insert_single_step_breakpoint): Make a failure to
1322         insert a single-step breakpoint an error instead of a warning.
1323
1324 2006-05-01  Nathan J. Williams  <[email protected]>
1325
1326         * ppcnbsd-tdep.c (ppcnbsd_return_value): Change type of last two
1327         arguments from void * to gdb_byte *.
1328
1329 2006-04-26  Michael Snyder  <[email protected]>
1330
1331         * linux-fork.c (_initialize_linux_fork): Rename "delete-fork"
1332         command to "delete fork" (no hyphen), compatible with other
1333         "delete" commands.
1334         (info_forks_command): Accept a fork ID argument, for info
1335         on a single fork.  Report if no matching forks.
1336
1337 2006-04-25  Mark Kettenis  <[email protected]>
1338
1339         * breakpoint.c (remove_single_step_breakpoints): Bail out early if
1340         no breakpoints are inserted.
1341
1342         From Masaki MURANAKA <[email protected]>:
1343         * mips-mdebug-tdep.c (mips_mdebug_frame_prev_register): Change
1344         type of last argument to `gdb_byte *'
1345
1346 2006-04-25  Jim Blandy  <[email protected]>
1347
1348         Add support for 'target remote |' on MinGW.
1349         * ser-mingw.c (struct pipe_state): New structure.
1350         (make_pipe_state, free_pipe_state, cleanup_pipe_state)
1351         (pipe_windows_open, pipe_windows_close, pipe_windows_read)
1352         (pipe_windows_write, pipe_wait_handle): New functions.
1353         (_initialize_ser_windows): Register a "pipe" interface based on
1354         them.
1355
1356 2006-04-24  Daniel Jacobowitz  <[email protected]>
1357
1358         * ser-mingw.c: Include <conio.h>.
1359         (struct ser_console_state, struct net_windows_state): Add exit_select,
1360         have_stopped, thread.
1361         (pipe_select_thread, console_select_thread)
1362         (net_windows_select_thread): Don't create a local state copy or
1363         close stop_select.  Exit on exit_select instead of stop_select.  Set
1364         have_stopped.
1365         (console_select_thread): Don't report control keypresses as pending
1366         input.
1367         (pipe_select_thread): Allow stop_select to interrupt sleeping.
1368         (set_console_wait_handle): Create exit_select and have_stopped.
1369         Save the thread handle.  Check _kbhit before starting a thread.
1370         (ser_console_done_wait_handle): New.
1371         (ser_console_close): Close new handles.  Wait for the thread to
1372         exit.
1373         (new_windows_select_thread): Assert that an event occurred.
1374         (net_windows_wait_handle): Check for pending input before starting
1375         a thread.
1376         (net_windows_done_wait_handle): New.
1377         (net_windows_open): Create exit_select and have_stopped.
1378         Save the thread handle.
1379         (net_windows_close): Close new handles.  Wait for the thread to
1380         exit.
1381         (_intiialize_ser_windows): Register done_wait_handle methods.
1382
1383         * serial.c [USE_WIN32API] (serial_done_wait_handle): New.
1384         * serial.h [USE_WIN32API] (struct serial_ops): Add done_wait_handle.
1385         [USE_WIN32API] (serial_done_wait_handle): New prototype.
1386         * mingw-hdep.c (gdb_select): Use serial_done_wait_handle.
1387
1388 2006-04-23  Andreas Schwab  <[email protected]>
1389
1390         * rs6000-tdep.c: Include "reggroups.h" only once.
1391         * Makefile.in (rs6000-tdep.o): Update dependencies.
1392
1393 2006-04-21  Frederic Riss  <[email protected]>
1394
1395         * dwarf2read.c (dwarf2_start_subfile): Change prototype to accept
1396         compilation directory as last argument. 
1397         Always pass comp_dir as second argument to start_subfile and prepend
1398         dirname to the filename when necessary. 
1399         Remove now superfluous search for pre-existing subfile.
1400         (dwarf_decode_lines): Pass the compilation directory to
1401         dwarf2_start_subfile.
1402
1403 2006-04-20  Michael Snyder  <[email protected]>
1404
1405         * 2006-03-22  Jim Blandy  <[email protected]>
1406         Add support for the Renesas M32C and M16C.
1407
1408         * configure.tgt (m32c-*-*): New entry.
1409         * config/m32c/m32c.mt: New file.
1410         * m32c-tdep.c: New file.
1411         * Makefile.in (elf_m32c_h): New variable.
1412         (m32c-tdep.o): New rule.
1413         * NEWS: Mention new target.
1414         * MAINTAINERS: Designate Jim Blandy as responsible maintainer.
1415
1416 2006-04-20  Michael Snyder  <[email protected]>
1417
1418         * remote.c: Fix spelling error in comment.
1419
1420 2006-04-20  Daniel Jacobowitz  <[email protected]>
1421
1422         * m68klinux-tdep.c (m68k_linux_sigtramp_frame_prev_register):
1423         Correct type of VALUEP.  Reported by Jean-Rene Peulve
1424         <[email protected]>.
1425
1426 2006-04-19  Masaki Muranaka  <[email protected]>
1427
1428         * m32r-rom.c: On MinGW, include winsock.h instead of sys/types.h,
1429         netdb.h, netinet/in.h.
1430         (m32r_upload_command); Add calls WSAStartup().
1431         * remote-m32r-sdi.c: On MinGW, include winsock.h instead of
1432         netinet/in.h.
1433
1434 2006-04-18  Daniel Jacobowitz  <[email protected]>
1435
1436         * breakpoint.c (deprecated_read_memory_nobpt): Update to use
1437         shadow_len.
1438         (insert_bp_location, reattach_breakpoints, remove_breakpoint)
1439         (delete_breakpoint): Update calls to changed methods.
1440         (deprecated_insert_raw_breakpoint, deprecated_remove_raw_breakpoint)
1441         (single_step_breakpoints, insert_single_step_breakpoint)
1442         (remove_single_step_breakpoints): New.
1443         * breakpoint.h (struct bp_target_info): New.
1444         (struct bp_location): Replace shadow_contents with
1445         target_info and overlay_target_info.
1446         (deprecated_insert_raw_breakpoint, deprecated_remove_raw_breakpoint)
1447         (insert_single_step_breakpoint, remove_single_step_breakpoints): New
1448         prototypes.
1449         * gdbarch.sh: Forward declare struct bp_target_info in gdbarch.h.
1450         (memory_insert_breakpoint, memory_remove_breakpoint): Update second
1451         argument.
1452         * mem-break.c (default_memory_insert_breakpoint): Update.  Set
1453         placed_address, placed_size, and shadow_len.
1454         (default_memory_remove_breakpoint): Update.  Don't use
1455         BREAKPOINT_FROM_PC.
1456         (memory_insert_breakpoint, memory_remove_breakpoint): Update.
1457         * target.c (update_current_target): Update prototypes for changed
1458         functions.
1459         (debug_to_insert_breakpoint, debug_to_remove_breakpoint)
1460         (debug_to_insert_hw_breakpoint, debug_to_remove_hw_breakpoint):
1461         Update.
1462         * target.h: Forward declare struct bp_target_info.
1463         (struct target_ops): Use a bp_target_info argument for
1464         to_insert_breakpoint, to_remove_breakpoint,
1465         to_insert_hw_breakpoint, and to_remove_hw_breakpoint.
1466         (target_insert_breakpoint, target_remove_breakpoint)
1467         (target_insert_hw_breakpoint, target_remove_hw_breakpoint)
1468         (memory_insert_breakpoint, memory_remove_breakpoint)
1469         (default_memory_insert_breakpoint, default_memory_remove_breakpoint):
1470         Update.
1471         * config/i386/nm-i386.h: Forward declare struct bp_target_info.
1472         (i386_insert_hw_breakpoint, i386_remove_hw_breakpoint): Update.
1473         (target_insert_hw_breakpoint, target_remove_hw_breakpoint): Likewise.
1474
1475         * gdbarch.c, gdbarch.h: Regenerated.
1476
1477         * alpha-tdep.c (alpha_software_single_step): Use
1478         insert_single_step_breakpoint and remove_single_step_breakpoints.
1479         Remove unused statics.
1480         * arm-tdep.c (arm_software_single_step): Likewise.  Add a note.
1481         * cris-tdep.c (cris_software_single_step): Likewise.
1482         * mips-tdep.c (mips_software_single_step): Likewise.
1483         * rs6000-tdep.c (rs6000_software_single_step): Likewise.
1484         * sparc-tdep.c (sparc_software_single_step): Likewise.
1485         * wince.c (struct thread_info_struct): Remove step_prev.
1486         (undoSStep): Use remove_single_step_breakpoints.
1487         (wince_software_single_step): Use insert_single_step_breakpoint.
1488
1489         * corelow.c (ignore): Remove unneeded prototype.  Update arguments.
1490         * exec.c (ignore): Likewise.
1491         * sol-thread.c (ignore): Likewise.
1492
1493         * procfs.c (dbx_link_shadow_contents): Delete.
1494         (dbx_link_bpt): New.
1495         (procfs_mourn_inferior): Remove it if necessary.
1496         (remove_dbx_link_breakpoint): Use it.
1497         (insert_dbx_link_bpt_in_file): Set it.
1498         (procfs_init_inferior): Don't update dbx_link_bpt_addr.
1499         * rs6000-nat.c (exec_one_dummy_insn): Use
1500         deprecated_insert_raw_breakpoint and
1501         deprecated_remove_raw_breakpoint.
1502         * solib-irix.c (shadow_contents, breakpoint_addr): Delete.
1503         (base_breakpoint): New.
1504         (disable_break): Use it.
1505         (enable_break): Set it.
1506
1507         * i386-nat.c (i386_insert_hw_breakpoint, i386_remove_hw_breakpoint):
1508         Update.
1509         * ia64-tdep.c (ia64_memory_insert_breakpoint)
1510         (ia64_memory_remove_breakpoint): Likewise.
1511         * m32r-tdep.c (m32r_memory_insert_breakpoint)
1512         (m32r_memory_remove_breakpoint): Likewise.
1513         * monitor.c (monitor_insert_breakpoint, monitor_remove_breakpoint):
1514         Likewise.  Remove unnecessary prototypes.  Use placed_address
1515         and placed_size.  Removed useless read from memory.
1516         * nto-procfs.c (procfs_insert_breakpoint)
1517         (procfs_remove_breakpoint, procfs_insert_hw_breakpoint)
1518         (procfs_remove_hw_breakpoint): Update.
1519         * ocd.c (ocd_insert_breakpoint, ocd_remove_breakpoint): Likewise.
1520         * ocd.h (ocd_insert_breakpoint, ocd_remove_breakpoint): Likewise.
1521         * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Likewise.
1522         * ppc-tdep.h (ppc_linux_memory_remove_breakpoint): Likewise.
1523         * remote-e7000.c (e7000_insert_breakpoint)
1524         (e7000_remove_breakpoint): Likewise.
1525         * remote-m32r-sdi.c (m32r_insert_breakpoint)
1526         (m32r_remove_breakpoint): Likewise.
1527         * remote-mips.c (mips_insert_breakpoint)
1528         (mips_remove_breakpoint): Likewise.
1529         * remote-rdp.c (remote_rdp_insert_breakpoint)
1530         (remote_rdp_remove_breakpoint): Likewise.
1531         (rdp_step): Use deprecated_insert_raw_breakpoint and
1532         deprecated_remove_raw_breakpoint.
1533         * remote-sds.c (sds_insert_breakpoint, sds_remove_breakpoint):
1534         Update.
1535         * remote-sim.c (gdbsim_insert_breakpoint, gdbsim_remove_breakpoint):
1536         Delete.
1537         (init_gdbsim_ops): Use memory_insert_breakpoint and
1538         memory_remove_breakpoint.
1539         * remote-st.c (st2000_insert_breakpoint)
1540         (st2000_remove_breakpoint): Update.  Remove unused
1541         BREAKPOINT_FROM_PC.
1542         * remote.c (remote_insert_breakpoint, remote_remove_breakpoint):
1543         Update.  Use placed_address and placed_size.
1544         (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Likewise.
1545
1546 2006-04-12  Daniel Jacobowitz  <[email protected]>
1547
1548         * remote.c (extended_remote_restart): Pass the correct length
1549         to getpkt.
1550
1551 2006-04-11  Jim Blandy  <[email protected]>
1552
1553         * serial.c (serial_open): Check for special cases at the front of
1554         the "device" name before scanning for the ':' that would indicate
1555         an IP-based connection.
1556
1557 2006-04-10  Christopher Faylor  <[email protected]>
1558
1559         * win32-nat.c (open_symbol_file_object): New function.
1560         (in_dynsym_resolve_code): Ditto.
1561         (init_win32_ops): Fill in fields which ought not to be NULL.
1562
1563 2006-04-10  Christopher Faylor  <[email protected]>
1564
1565         * win32-nat.c (do_win32_fetch_inferior_registers): Don't do anything
1566         with saved context if __COPY_CONTEXT_SIZE is not defined.
1567         (handle_output_debug_string): Ditto.
1568
1569 2006-04-10  Daniel Jacobowitz  <[email protected]>
1570
1571         * arm-linux-tdep.c (arm_linux_extract_return_value): Use gdb_byte.
1572
1573 2006-04-09  David S. Miller  <[email protected]>
1574
1575         * sparc64-linux-tdep.c (sparc64_linux_init_abi): Append dwarf2
1576         frame sniffer.
1577         * sparc-tdep.c (sparc32_gdbarch_init): Make sure to call
1578         dwarf2_frame_set_init_reg() before gdbarch_init_osabi() so
1579         that the latter can override.
1580         * Makefile.in (sparc64-linux-tdep.o): Update dependencies.
1581
1582 2006-04-09  Ulrich Weigand  <[email protected]>
1583
1584         * s390-tdep.c (struct s390_prologue_data): New field 'stack'.
1585         (s390_store): Call pv_area_store to track stack slots.
1586         (s390_load): Call pv_area_fetch to track stack slots.
1587         (s390_check_for_saved): New function.
1588         (s390_analyze_prologue): Call pv_area_scan.  Allocate and free stack.
1589
1590 2006-04-09  Ulrich Weigand  <[email protected]>
1591
1592         * Makefile.in (s390-tdep.o): Add dependency on $(prologue_value_h).
1593         * s390-tdep.c: Include "prologue-value.h".
1594         (struct prologue_value): Remove.
1595         (pv_set_to_unknown, pv_set_to_constant, pv_set_to_register,
1596         pv_constant_last, pv_add, pv_add_constant, pv_subtract,
1597         pv_logical_and, pv_is_identical, pv_is_register): Remove.
1598         (compute_x_addr): Remove, replace by ...
1599         (s390_addr): ... this new function.
1600         (struct s390_prologue_data): Use pv_t instead of prologue_value.
1601         (s390_store, s390_load): Likewise.
1602         (s390_prologue_frame_unwind_cache): Likewise.
1603         (s390_analyze_prologue): Likewise.  Also, simplify and combine
1604         several conditional statements.
1605
1606 2006-04-08  Jim Blandy  <[email protected]>
1607
1608         * Makefile.in (COMMON_OBS): List prologue-value.o.  (Omitted from
1609         last patch.)
1610
1611 2006-04-08  David S. Miller  <[email protected]>
1612
1613         * sparc-linux-tdep.c (sparc32_linux_step_trap): New.
1614         (sparc32_linux_init_abi): Hook it into tdep->step_trap.
1615         (sparc32_linux_core_gregset,
1616         sparc32_linux_supply_core_gregset,
1617         sparc32_linux_collect_core_gregset,
1618         sparc32_linux_supply_core_fpregset,
1619         sparc32_linux_collect_core_fpregset): New.
1620         (sparc32_linux_init_abi): Register them with generic sparc
1621         core regset infrastructure.
1622         * sparc64-linux-tdep.c (sparc64_linux_step_trap): New.
1623         (sparc64_linux_init_abi): Hook it into tdep->step_trap.
1624         (sparc64_linux_core_gregset,
1625         sparc64_linux_supply_core_gregset,
1626         sparc64_linux_collect_core_gregset,
1627         sparc64_linux_supply_core_fpregset,
1628         sparc64_linux_collect_core_fpregset): New.
1629         (sparc64_linux_init_abi): Register them with generic sparc
1630         core regset infrastructure.     
1631         * Makefile.in: Update dependencies.
1632
1633 2006-04-07  David S. Miller  <[email protected]>
1634
1635         * linux-nat.c (linux_nat_thread_alive): Handle targets that
1636         do not implement PTRACE_PEEKUSER.
1637
1638 2006-04-07  Daniel Jacobowitz  <[email protected]>
1639
1640         * remote.c (remote_wait): Convert warning to error before
1641         parsing corrupt packets.
1642
1643 2006-04-07  Andrew Stubbs  <[email protected]>
1644
1645         * cli/cli-script.c (struct user_args): Add command field.
1646         (arg_cleanup): Free command string.
1647         (setup_user_args): Copy the command line before relying on it.
1648
1649 2006-04-06  Joel Brobecker  <[email protected]>
1650
1651         * breakpoint.c (_initialize_breakpoint): Add "del" as an alias
1652         of the "delete" command.
1653
1654 2006-04-06  Randolph Chung  <[email protected]>
1655
1656         * MAINTAINERS (Patch champions): Add myself.
1657
1658 2006-04-05  Andreas Schwab  <[email protected]>
1659
1660         * Makefile.in: Update dependencies.
1661
1662 2006-04-05  David S. Miller  <[email protected]>
1663
1664         * sparc-tdep.c (sparc32_dwarf2_frame_init_reg): New.
1665         (sparc32_gdbarch_init): Pass it to dwarf2_frame_set_init_reg.
1666         * Makefile.in (sparc-tdep.o): Update dependencies.
1667         * sparc-linux-tdep.c (sparc32_linux_sigframe_init): Pull register
1668         window out of the correct stack frame.
1669         * sparc64-linux-tdep.c (sparc64_linux_sigframe_init): Likewise.
1670         * dwarf2-frame.c (dwarf2_frame_ops init_reg): Add "next_frame"
1671         argument.
1672         (dwarf2_frame_default_init_reg): Likewise.
1673         (dwarf2_frame_set_init_reg): Update init_reg arg.
1674         (dwarf2_frame_init_reg): Take "next_frame" and pass it to
1675         ops->init_reg().
1676         (dwarf2_frame_cache): Pass next_frame to dwarf2_frame_init_reg.
1677         * dwarf2-frame.h (dwarf2-frame_set_init_reg): Update declaration.
1678         * cris-tdep.c (cris_dwarf2_frame_init_reg): Add next_frame arg.
1679         * s390-tdep.c (s390_dwarf2_frame_init_reg): Likewise.
1680         * sh-tdep.c (sh_dwarf2_frame_init_reg): Likewise.
1681         * sparc64-tdep.c (sparc64_dwarf2_frame_init_reg): Likewise.
1682         * sparc-tdep.c (sparc32_struct_return_from_sym): New function.
1683         (sparc32_frame_cache): Call it.
1684         (sparc32_dwarf2_struct_return_p): New function.
1685         (sparc_dwarf2_frame_init_reg): Use it to determine if the function
1686         returns a structure and thus we have to indicate the return PC and
1687         NPC are 4 bytes later than usual.
1688         * sparc-linux-tdep.c (sparc32_linux_init_abi): Append
1689         dwarf2 frame sniffer.
1690         * Makefile.in (sparc-linux-tdep.o): Update dependencies.
1691         
1692 2006-04-04  David S. Miller  <[email protected]>
1693
1694         * config/linux.mh (NATDEPFILES): Remove sparc-sol2-nat.o
1695         * config/linux64.h (NATDEPFILES): Likewise
1696         * sparc-linux-nat.c (supply_gregset, supply_fpregset, fill_gregset,
1697         fill_fpregset): New.
1698         * sparc64-linux-nat.c (supply_gregset, supply_fpregset, fill_gregset,
1699         fill_fpregset): New.
1700         * Makefile.in (sparc-linux-nat.o, sparc64-linux-nat.o): Update for
1701         new includes.
1702         
1703 2006-04-04  Andreas Schwab  <[email protected]>
1704
1705         * Makefile.in (elf_common_h): Define.
1706
1707 2006-04-03  Andrew Stubbs  <[email protected]>
1708
1709         * sh-tdep.c (sh_dwarf2_frame_init_reg): New function.
1710         (sh_gdbarch_init): Call dwarf2_frame_set_init_reg().
1711
1712 2006-03-31  Andrew Stubbs  <[email protected]>
1713
1714         * value.h (struct internalvar): Add field 'endian'.
1715         * value.c (lookup_internalvar): Initialise endian.
1716         (value_of_internalvar): Flip the endian of built-in types if required.
1717         (set_internalvar): Set the endian.
1718         (show_convenience): Access the value through value_of_internalvar().
1719
1720 2006-03-30  Vladimir Prus  <[email protected]>
1721
1722         * remote.c (watchpoint_to_Z_packet): Use values of Z_packet_type enum
1723         instead of hardcoded integer literals.
1724
1725 2006-03-30  Daniel Jacobowitz  <[email protected]>
1726
1727         * cli/cli-script.c (insert_args): Handle NULL user_args.
1728
1729 2006-03-30  Daniel Jacobowitz  <[email protected]>
1730
1731         * arm-tdep.c (thumb_scan_prologue): Don't try to analyze
1732         the function at zero if we have no symbols.
1733
1734 2006-03-30  Adrien Kunysz  <[email protected]>
1735
1736         * i386-stub.c (getpacket): Fix array overflow.
1737         * m32r-stub.c (getpacket): Likewise.
1738         * m68k-stub.c (getpacket): Likewise.
1739         * sh-stub.c (getpacket): Likewise.
1740         * sparc-stub.c (getpacket): Likewise.
1741
1742 2006-03-30  Daniel Jacobowitz  <[email protected]>
1743  
1744         * frame.h (set_current_sal_from_frame): New prototype.
1745         * stack.c (set_current_sal_from_frame): Make global.
1746         * infrun.c (normal_stop): Call set_current_sal_from_frame.
1747
1748 2006-03-30  Daniel Jacobowitz  <[email protected]>
1749
1750         * linux-thread-db.c: Include "linux-nat.h".
1751         (check_for_thread_db): New function, split out from
1752         thread_db_new_objfile.  Remove dead check for active
1753         thread_db on inapplicable targets.
1754         (thread_db_new_objfile): Call check_for_thread_db.
1755         * Makefile.in (linux-thread-db.o): Update.
1756         * linux-nat.c (child_post_attach): Call check_for_thread_db.
1757         (linux_child_post_startup_inferior): Likewise.
1758         (lin_lwp_attach_lwp): Call target_post_attach instead of
1759         child_post_attach.
1760         * linux-nat.h (check_for_thread_db): New prototype.
1761
1762 2006-03-30  Daniel Jacobowitz  <[email protected]>
1763
1764         * remote.c (struct remote_state): Add BUF and BUF_SIZE.
1765         (init_remote_state): Initialize the new fields.
1766         (get_memory_packet_size): Update BUF and BUF_SIZE if necessary.
1767         (set_thread, remote_thread_alive, remote_unpack_thread_info_response)
1768         (remote_get_threadinfo, parse_threadlist_response)
1769         (remote_get_threadlist, remote_current_thread, remote_threads_info)
1770         (remote_threads_extra_info, extended_remote_restart, get_offsets)
1771         (remote_check_symbols, remote_open_1, remote_detach)
1772         (remove_vcont_probe, remote_vcont_resume, remote_resume)
1773         (remote_wait, remote_async_wait, fetch_register_using_p)
1774         (remote_fetch_registers, store_register_using_P)
1775         (remote_store_registers, check_binary_download, remote_write_bytes)
1776         (remote_read_bytes, remote_insert_breakpoint)
1777         (remote_remove_breakpoint, remote_insert_watchpoint)
1778         (remote_remove_watchpoint, remote_insert_hw_breakpoint)
1779         (remote_remove_hw_breakpoint, compare_sections_command)
1780         (remote_xfer_partial, remote_rcmd, packet_command)
1781         (remote_get_thread_local_address): Use the global incoming buffer
1782         instead of alloca or xmalloc.  Limit outgoing packets to
1783         rs->remote_packet_size and incoming packets to rs->buf_size.
1784         Update calls to getpkt and remote_send.
1785         (remote_send): Take arguments by reference.
1786         (putpkt_binary): Eliminate junkbuf.  Use skip_frame.
1787         (skip_frame): New function.
1788         (read_frame): Take arguments by reference.  Expand the packet
1789         buffer instead of issuing an error.
1790         (getpkt, getpkt_sane): Take arguments by reference.
1791         * remote.h (getpkt): Update prototype and doc.
1792         * tracepoint.c (remote_get_noisy_reply): Take arguments by
1793         reference.
1794         (target_buf): Change from array to pointer.
1795         (target_buf_size): New variable.
1796         (remote_set_transparent_ranges): Update call to getpkt.
1797         (trace_start_command, trace_stop_command, trace_status_command):
1798         Update calls to remote_get_noisy_reply.
1799         (finish_tfind_command): Take arguments by reference.
1800         (trace_find_command, trace_find_pc_command)
1801         (trace_find_tracepoint_command, trace_find_line_command):
1802         (trace_find_range_command, trace_find_outside_command): Update
1803         calls to finish_tfind_command.
1804         (_initialize_tracepoint): Initialize target_buf_size and target_buf.
1805
1806 2005-03-30  Randolph Chung  <[email protected]>
1807
1808         * hppa-linux-tdep.c: Include regset.h.
1809         (GR_REGNUM, TR_REGNUM, greg_map): New.
1810         (hppa_linux_supply_regset, hppa_linux_supply_fpregset): New.
1811         (hppa_linux_regset, hppa_linux_fpregset): New.
1812         (hppa_linux_regset_from_core_section): New.
1813         (hppa_linux_init_abi): Set regset_from_core_section.
1814         (_initialize_hppa_linux_tdep): Register osabi handler for
1815         64-bit Linux.
1816         * Makefile.in (hppa-linux-tdep.o): Update dependencies.
1817         * config/pa/linux.mh: Stop using core-regset.o
1818
1819 2006-03-30  Randolph Chung  <[email protected]>
1820
1821         * hppa-tdep.c (hppa_find_unwind_entry_in_block): New.
1822         (hppa_frame_cache): Use new function to find unwind entry.
1823         (hppa_frame_this_id): Likewise.
1824         (hppa_frame_unwind_sniffer): Likewise.
1825
1826 2006-03-29  Daniel Jacobowitz  <[email protected]>
1827
1828         * NEWS: Mention the removal of NLM.
1829
1830 2006-03-29  Steve Ellcey  <[email protected]>
1831
1832         * Makefile.in (nlm): Remove target.
1833         * configure.tgt (i[34567]86-*-netware*): Do not set build_nlm.
1834         * configure.ac: Remove AC_CONFIG_SUBDIRS of nlm.
1835         * configure: Regenerate.
1836         * doc/gdb.texinfo: Remove gdbserve.nlm documentation.
1837         * nlm: Remove directory.
1838
1839 2006-03-29  Daniel Jacobowitz  <[email protected]>
1840
1841         * Makefile.in (utils.o): Update.
1842         * top.c (in_user_command): New.
1843         (command_line_input): Use input_from_terminal_p.
1844         (input_from_terminal_p): Don't check caution.  Handle
1845         stdin == NULL for Insight.
1846         * top.h (in_user_command, caution): New declarations.
1847         * utils.c: Include "top.h".
1848         (query, defaulted_query): Check caution here.  Move the call
1849         to input_from_terminal_p higher.
1850         * cli/cli-script.c (do_restore_user_call_depth): Only decrement
1851         the depth.  Update in_user_command if necessary.
1852         (execute_user_command): Don't clobber old_chain.  Set
1853         in_user_command.  Let do_restore_user_call_depth handle
1854         user_call_depth.
1855         (read_command_lines): Check whether to prompt before calling
1856         Insight hooks.
1857         * tui/tui-hooks.c (tui_query_hook): Remove newly unnecessary
1858         input_from_terminal_p check.
1859
1860 2006-03-29  Ulrich Weigand  <[email protected]>
1861
1862         * s390-nat.c (s390_insert_watchpoint): Add missing argument.
1863         (s390_remove_watchpoint): Likewise.
1864
1865 2006-03-28  Jim Blandy  <[email protected]>
1866
1867         * prologue-value.c, prologue-value.h: New files.
1868         * Makefile.in (prologue_value_h): New variable.
1869         (HFILES_NO_SRCDIR): List prologue-value.h.
1870         (SFILES): List prologue-value.c.
1871         (COMMON_OBS): List prologue-value.o.
1872         (prologue-value.o): New rule.
1873
1874 2006-03-27  Michael Snyder  <[email protected]>
1875
1876         * xstormy16-tdep.c (xstormy16_return_value, xstormy16_push_dummy_call,
1877         xstormy16_pointer_to_address, xstormy16_address_to_pointer, 
1878         xstormy16_frame_prev_register): Change void* to gdb_byte*.
1879         (xstormy16_push_dummy_call): Add block-local char* val, 
1880         to avoid type conflict with outer scope variable.
1881
1882 2006-03-27  Andrew Stubbs  <[email protected]>
1883
1884         * sh-tdep.c (sh_gdbarch_init): Add missing architectures.
1885
1886 2006-03-27  Nick Roberts  <[email protected]>
1887
1888         * varobj.c (c_name_of_child, c_value_of_child): Allow non-zero
1889         offsets for languages like Fortran.
1890
1891 2006-03-26  Randolph Chung  <[email protected]>
1892
1893         * config/pa/hppa64.mt: Use HPUX version of the tm file.
1894
1895 2006-03-25  Nick Roberts  <[email protected]>
1896
1897         * mi/gdb-mi.el (gdbmi-send): Improve regexp to repeat commands.
1898         Try to deal with continuation line.
1899         (gdbmi, gdbmi-prompt1, gud-gdbmi-marker-filter): Update to new
1900         variable names.
1901         (gdb-break-list-regexp, gdb-stack-list-frames-regexp): 
1902         Future proof against new fields being added to MI output.
1903         (gdbmi-prompt2, gdb-break-list-handler,gdb-get-source-file)
1904         (gdbmi-frame-handler): Update to new variable name
1905         gdb-get-buffer-create.
1906         (gdbmi-frame-handler): Use hollow-right-triangle for all selected
1907         frames which except the innermost (where execution has stopped).
1908
1909 2006-03-24  Randolph Chung  <[email protected]>
1910
1911         * solib-som.c (link_map_start): Don't error out if there is
1912         not yet a link map.
1913
1914 2006-03-24  Daniel Jacobowitz  <[email protected]>
1915
1916         * linux-nat.c (linux_ops_saved): New.
1917         (super_mourn_inferior, kill_inferior, threaded, linux_nat_ops)
1918         (child_mourn_inferior, child_wait, linux_nat_create_inferior)
1919         (linux_nat_fetch_registers, linux_nat_store_registers)
1920         (linux_nat_child_post_startup_inferior, init_linux_nat_ops): Delete.
1921         (init_lwp_list): Don't set threaded.
1922         (add_lwp): Don't modify threaded.
1923         (delete_lwp): Don't mention non-threaded mode.
1924         (linux_nat_switch_fork): New.
1925         (linux_nat_attach): Update inferior_ptid.
1926         (linux_nat_wait): Handle num_lwps == 0 at entry.  Don't check
1927         threaded flag.
1928         (linux_nat_kill): Handle pending forks and saved forks.
1929         (linux_nat_mourn_inferior): Handle saved forks.
1930         (linux_nat_pid_to_str): Don't use the LWP form when there is
1931         only one thread.
1932         (linux_target): Don't set to_wait, to_kill, or to_mourn_inferior.
1933         (linux_nat_add_target): New.
1934         (_initialize_linux_nat): Don't initialize the linux native target
1935         here.
1936         * linux-nat.h (linux_nat_add_target, linux_nat_switch_fork): New
1937         prototypes.
1938         * linux-fork.c: Include "linux-nat.h".
1939         (add_fork): Update initial PID.
1940         (fork_load_infrun_state): Call linux_nat_switch_fork.
1941         * Makefile.in (linux-fork.o): Update.
1942
1943         * alpha-linux-nat.c (_initialize_alpha_linux_nat): Use
1944         linux_nat_add_target instead of add_target.
1945         * amd64-linux-nat.c (_initialize_amd64_linux_nat): Likewise.
1946         * arm-linux-nat.c (_initialize_arm_linux_nat): Likewise.
1947         * hppa-linux-nat.c (_initialize_hppa_linux_nat): Likewise.
1948         * ia64-linux-nat.c (_initialize_ia64_linux_nat): Likewise.
1949         * i386-linux-nat.c (_initialize_i386_linux_nat): Likewise.
1950         * m32r-linux-nat.c (_initialize_m32r_linux_nat): Likewise.
1951         * m68klinux-nat.c (_initialize_m68k_linux_nat): Likewise.
1952         * mips-linux-nat.c (_initialize_mips_linux_nat): Likewise.
1953         * ppc-linux-nat.c (_initialize_ppc_linux_nat): Likewise.
1954         * s390-nat.c (_initialize_s390_nat): Likewise.
1955         * sparc-linux-nat.c (_initialize_sparc_linux_nat): Likewise.
1956         * sparc64-linux-nat.c (_initialize_sparc64_linux_nat): Likewise.
1957
1958 2006-03-24  Daniel Jacobowitz  <[email protected]>
1959
1960         * linux-fork.c: Include "gdb_assert.h".
1961         (fork_load_infrun_state): Set inferior_ptid and stop_pc here.
1962         Update the register cache and selected frame also.
1963         (linux_fork_mourn_inferior): Use fork_load_infrun_state.  Return
1964         to single fork mode if necessary.
1965         (linux_fork_context): Remove bits handled by fork_load_infrun_state.
1966         * Makefile.in (linux_fork_h): New.
1967         (linux-fork.o, linux-nat.o): Update.
1968
1969 2006-03-23  Andreas Schwab  <[email protected]>
1970
1971         * config/s390/s390.mh (NATDEPFILES): Add linux-fork.o.
1972
1973 2006-03-18  Jim Blandy  <[email protected]>
1974
1975         * symtab.h (enum address_class): Doc fix.
1976
1977 2006-03-16  Michael Snyder  <[email protected]>
1978
1979         * tracepoint.c (tracepoint_save_command): Fix typo in error msg.
1980         * target.c (push_target): Fix typo in comment.
1981         * remote.c (remote_watch_data_address): Fix typo in comment.
1982         * i386-tdep.c (i386_push_dummy_call): Fix typo in comment.
1983
1984 2006-03-15  Kevin Buettner  <[email protected]>
1985
1986         * frv-linux-tdep.c (gdbcore.h, regcache.h, regset.h, gdb_string.h):
1987         Include.
1988         (FRV_ELF_NGREG, FRV_PT_PSR, FRV_PT_ISR, FRV_PT_CCR, FRV_PT_CCCR)
1989         (FRV_PT_LR, FRV_PT_LCR, FRV_PT_PC, FRV_PT_GNER0, FRV_PT_GNER1)
1990         (FRV_PT_IACC0H, FRV_PT_IACC0L, FRV_PT_GR, FRV_PT_TBR)
1991         (FRV_PT_EXEC_FDPIC_LOADMAP, FRV_PT_INTERP_FDPIC_LOADMAP): Define.
1992         (frv_elf_greg_t, frv_elf_gregset_t, frv_elf_fpreg_t)
1993         (frv_elf_fpregset_t): Define types.
1994         (frv_linux_supply_gregset, frv_linux_supply_fpregset)
1995         (frv_linux_regset_from_core_section: New functions.
1996         (frv_linux_gregset, frv_linux_fpregset): New static globals.
1997         (frv_linux_init_abi): Register the `regset_from_core_section' method.
1998         * Makefile.in (frv-linux-tdep.o): Update dependencies.
1999         * solib-frv.c (frv_current_sos): Relocate main executable after
2000         loading core file.
2001         (frv_clear_solib): Clean up space associated with
2002         `main_executable_lm_info'.
2003         * config/frv/frv.mt (TDEPFILES): Add corelow.o to this list.
2004
2005 2006-03-15  Daniel Jacobowitz  <[email protected]>
2006
2007         * Makefile.in (mips_linux_tdep_h): New.
2008         (mpis-linux-nat.o, mips-linux-tdep.o): Update.
2009         * mips-linux-nat.c: Include "inferior.h", "mips-linux-tdep.h", and
2010         <sys/ptrace.h>.
2011         (have_ptrace_regsets, super_fetch_registers, super_store_registers)
2012         (mips64_linux_regsets_fetch_registers)
2013         (mips64_linux_regsets_store_registers, mips64_linux_fetch_registers)
2014         (mips64_linux_store_registers): New.
2015         (_initialize_mips_linux_nat): Override to_fetch_registers and
2016         to_store_registers.
2017         * mips-linux-tdep.h: New file.
2018         * mips-linux-tdep.c: Include "mips-linux-tdep.c".
2019         (ELF_NGREG, ELF_NFPREG, elf_greg_t, elf_gregset_t, elf_fpreg_t)
2020         (elf_fpregset_t, FPR_BASE, PC, CAUSE, BADVADDR, MMHI, MMLO)
2021         (FPC_CSR, FPC_EIR, EF_REG0, EF_REG31, EF_LO, EF_HI, EF_CP0_EPC)
2022         (EF_CP0_BADVADDR, EF_CP0_STATUS, EF_CP0_CAUSE, EF_SIZE)
2023         (MIPS64_ELF_NGREG, MIPS64_ELF_NFPREG, mips64_elf_greg_t)
2024         (mips64_elf_gregset_t, mips64_elf_fpreg_t, mips64_elf_fpregset_t)
2025         (MIPS64_FPR_BASE, MIPS64_PC, MIPS64_CAUSE, MIPS64_BADVADDR)
2026         (MIPS64_MMHI, MIPS64_MMLO, MIPS64_FPC_CSR, MIPS64_FPC_EIR)
2027         (MIPS64_EF_REG0, MIPS64_EF_REG31, MIPS64_EF_LO, MIPS64_EF_HI)
2028         (MIPS64_EF_CP0_EPC, MIPS64_EF_CP0_BADVADDR, MIPS64_EF_CP0_STATUS)
2029         (MIPS64_EF_CP0_CAUSE, MIPS64_EF_SIZE): Delete.
2030         (supply_32bit_reg): Use gdb_byte.
2031         (supply_64bit_reg): New.
2032         (mips_supply_gregset, mips_fill_gregset, mips_supply_fpregset)
2033         (mips_fill_fpregset, fetch_core_registers, supply_gregset)
2034         (fill_gregset, supply_fpregset): Update for renamed types.
2035         (mips64_supply_gregset): Use gdb_byte and supply_64bit_reg.
2036         (mips64_fill_gregset): Make global.  Handle 32-bit register
2037         sizes.
2038         (mips64_fill_fpregset): Make global.  Use gdb_byte.  Handle
2039         FP regsets properly.
2040
2041 2006-03-15  Daniel Jacobowitz  <[email protected]>
2042
2043         * mips-linux-tdep.c (mips_supply_gregset): Renamed from supply_gregset.
2044         (mips_fill_gregset): Renamed from fill_gregset.
2045         (mips_supply_fpregset): Renamed from supply_fpregset.
2046         (mips_fill_fpregset): Renamed from fill_fpregset.
2047         (fetch_core_registers): Update calls.
2048         (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset): New
2049         functions.
2050
2051 2006-03-15  Daniel Jacobowitz  <[email protected]>
2052
2053         * mips-tdep.c (mips_gdbarch_init): Default 64-bit ELF files to N64.
2054
2055 2006-03-15  Daniel Jacobowitz  <[email protected]>
2056
2057         * mips-tdep.c (is_mips16_addr, mips32_next_pc, add_offset_16):
2058         Correct arithmetic for 64-bit CORE_ADDR.
2059
2060 2006-03-15  Daniel Jacobowitz  <[email protected]>
2061
2062         * mips-linux-tdep.c: Include "floatformat.h".
2063         (mips_linux_init_abi): Use 128-bit long double for N32 and N64.
2064         * mips-tdep.c (mips_n32n64_return_value): Support 128-bit long
2065         double.
2066         (print_gp_register_row): Don't print spaces before ignored
2067         or floating point registers.
2068         * Makefile.in (mips-linux-tdep.o): Update.
2069
2070 2006-03-15  Daniel Jacobowitz  <[email protected]>
2071
2072         * mips-mdebug-tdep.c (compare_pdr_entries): Use bfd_get_signed_32
2073         for code addresses.
2074         (non_heuristic_proc_desc): Likewise.
2075
2076 2006-03-15  Daniel Jacobowitz  <[email protected]>
2077
2078         * mips-linux-nat.c: Include "gdb_proc_service.h".
2079         (PTRACE_GET_THREAD_AREA): Define.
2080         (ps_get_thread_area): New.
2081         * Makefile.in (mips-linux-nat.o): Update.
2082
2083 2006-03-13  Jim Blandy  <[email protected]>
2084
2085         * MAINTAINERS: Use my work address.
2086
2087 2006-03-09  Michael Snyder  <[email protected]>
2088
2089         * linux-nat.c (kill_inferior): Just call target_mourn_inferior
2090         instead of getting tricky for the multi-fork case.
2091         * linux-fork.c (linux_fork_killall): Call PT_KILL and waitpid
2092         for each fork, and then use init_fork_list to delete them.
2093
2094 2006-03-08  Alexandre Oliva  <[email protected]>
2095
2096         * solib-svr4.c (svr4_current_sos): Move up initialization of
2097         l_addr, such that it clearly covers all cases.
2098
2099 2006-03-08  Andreas Schwab  <[email protected]>
2100
2101         * ia64-tdep.c (ia64_libunwind_frame_this_id): Adapt use of
2102         libunwind_frame_prev_register to use a gdb_byte buffer and
2103         extract_unsigned_integer.
2104         (ia64_libunwind_sigtramp_frame_prev_register): Likewise.
2105
2106         * libunwind-frame.c (libunwind_frame_prev_register): Change type
2107         of last argument to `gdb_byte *'
2108         * libunwind-frame.h: Adjust declaration.
2109
2110 2006-03-08  Paul Brook  <[email protected]>
2111
2112         * arm-tdep.c (arm_push_dummy_call): Remove stack alignment.
2113         (arm_frame_align): New function.
2114         (arm_gdbarch_init): Use it.
2115
2116 2006-03-03  Khem Raj <[email protected]>
2117
2118         * remote-rdp.c (remote_rdp_xfer_inferior_memory): Use gdb_byte.
2119         Committed by Andrew Cagney.
2120         
2121 2006-03-02  Corinna Vinschen  <[email protected]>
2122
2123         * mn10300-tdep.c (mn10300_push_dummy_call): Write breakpoint
2124         address to MDR register.
2125
2126 2006-03-01  Daniel Jacobowitz  <[email protected]>
2127
2128         * gdbtypes.c (lookup_struct_elt_type): Correct noerr for recursive
2129         calls.
2130
2131 2006-03-01  Randolph Chung  <[email protected]>
2132
2133         * somread.c (som_symfile_read): Update comment and remove unneeded 
2134         use of a deprecated variable.
2135
2136 2006-03-01  Randolph Chung  <[email protected]>
2137
2138         * hppa-tdep.h (unwind_table_entry): Update field names to match HP
2139         runtime specification.
2140         * hppa-tdep.c (internalize_unwinds, hppa_frame_cache): Likewise.
2141         (unwind_command): Likewise.
2142
2143 2006-03-01  Randolph Chung  <[email protected]>
2144
2145         * hppa-tdep.c (hppa_frame_cache): Handle Region_Description and
2146         Pseudo_SP_Set in unwind record.
2147
2148 2006-03-01  Randolph Chung  <[email protected]>
2149
2150         * hppa-hpux-tdep.c (initialize_hp_cxx_exception_support): Use
2151         TDEP->is_elf to determine if we are working with a SOM binary.
2152         (null_symtab_and_line): Remove unused variable.
2153         * config/pa/hppa64.mt: Use tm-hppa.h.
2154         * config/pa/tm-hppa64.h: Remove file.
2155
2156 2006-03-01  Wu Zhou  <[email protected]>
2157
2158          * f-typeprint.c (f_type_print_base): Delete the redundant space.
2159
2160 2006-02-28  Kevin Buettner  <[email protected]>
2161
2162         * Makefile.in (mn10300-linux-tdep.o): Update dependencies.
2163         * mn10300-linux-tdep.c (frame.h, trad-frame.h, tramp-frame.h):
2164         Include.
2165         (am33_linux_sigframe_cache_init): New function.
2166         (am33_linux_sigframe, am33_linux_rt_sigframe): New signal frame
2167         descriptions.
2168         (AM33_SIGCONTEXT_D0, AM33_SIGCONTEXT_D1, AM33_SIGCONTEXT_D2)
2169         (AM33_SIGCONTEXT_D3, AM33_SIGCONTEXT_A0, AM33_SIGCONTEXT_A1)
2170         (AM33_SIGCONTEXT_A2, AM33_SIGCONTEXT_A3, AM33_SIGCONTEXT_E0)
2171         (AM33_SIGCONTEXT_E1, AM33_SIGCONTEXT_E2, AM33_SIGCONTEXT_E3)
2172         (AM33_SIGCONTEXT_E4, AM33_SIGCONTEXT_E5, AM33_SIGCONTEXT_E6)
2173         (AM33_SIGCONTEXT_E7, AM33_SIGCONTEXT_LAR, AM33_SIGCONTEXT_LIR)
2174         (AM33_SIGCONTEXT_MDR, AM33_SIGCONTEXT_MCVF, AM33_SIGCONTEXT_MCRL)
2175         (AM33_SIGCONTEXT_MCRH, AM33_SIGCONTEXT_MDRQ, AM33_SIGCONTEXT_SP)
2176         (AM33_SIGCONTEXT_EPSW, AM33_SIGCONTEXT_PC, AM33_SIGCONTEXT_FPUCONTEXT):
2177         New constants.
2178         (am33_linux_init_osabi): Register signal frame unwinders.
2179
2180 2006-02-28  Kevin Buettner  <[email protected]>
2181
2182         * mn10300-tdep.c (mn10300_analyze_prologue):  Implement backtrack
2183         out of pattern match by saving relevant state.  Fix stack size
2184         adjustment bug.
2185
2186 2006-02-28  Alexandre Oliva  <[email protected]>
2187
2188         * solib-svr4.h (struct link_map_offsets): Add l_ld_offset and
2189         l_ld_size fields.
2190         * solib-svr4.c (struct lm_info): Add l_addr field.
2191         (LM_ADDR_FROM_LINK_MAP): Renamed from LM_ADDR.
2192         (HAS_LM_DYNAMIC_FROM_LINK_MAP): New.
2193         (LM_DYNAMIC_FROM_LINK_MAP): New.
2194         (LM_ADDR_CHECK): New.  Use it instead of LM_ADDR.
2195         (svr4_current_sos): Initialize l_addr.  Adjust.
2196         (svr4_relocate_section_addresses): Adjust.
2197         (svr4_ilp32_fetch_link_map_offsets): Define new members.
2198         (svr4_lp64_fetch_link_map_offsets): Likewise.
2199         * solib-legacy.c (legacy_svr4_fetch_link_map_offsets): Likewise.
2200         * mipsnbsd-tdep.c (mipsnbsd_ilp32_fetch_link_map_offsets): Likewise.
2201         (mipsnbsd_lp64_fetch_link_map_offsets): Likewise.
2202         * Makefile.in (solib-svr4.o): Depend on $(elf_bfd_h).
2203
2204 2006-02-26  David S. Miller  <[email protected]>
2205
2206         * config/sparc/linux.mt (TDEPFILES): Add sol2-tdep.o.
2207         * config/sparc/linux64.mt (TDEPFILES): Likewise.
2208
2209 2006-02-27  Alan Modra  <[email protected]>
2210
2211         * ppc-linux-nat.c (ppc_linux_insert_watchpoint): Correct return type.
2212         (ppc_linux_remove_watchpoint): Likewise, and args.
2213
2214 2006-02-26  Mark Kettenis  <[email protected]>
2215
2216         * i386obsd-tdep.c (i386obsd_trapframe_sniffer): Also recognize
2217         "soft" interrupts.
2218
2219 2006-02-24  Charles Wilson  <[email protected]>
2220
2221         * gdb/defs.h: unconditionally include <fcntl.h>, and
2222         ensure that O_BINARY is defined.
2223         * gdb/solib.c(solib_open): ensure solib files are opened in
2224         binary mode.
2225         * gdb/corelow.c: Remove O_BINARY macro definition.
2226         * gdb/exec.c: Remove O_BINARY macro definition
2227         * gdb/remote-rdp.c: Remove O_BINARY macro definition
2228         * gdb/source.c: Remove O_BINARY macro definition
2229         * gdb/symfile.c: Remove O_BINARY macro definition
2230
2231 2006-02-24  Randolph Chung  <[email protected]>
2232
2233         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Initialize 
2234         argreg.
2235         * solib-som.c (som_solib_remove_inferior_hook): Remove unused 
2236         function.
2237
2238 2006-02-24  Wu Zhou  <[email protected]>
2239
2240         * f-exp.y: Symbol '%' is not used as the modulus operator in
2241         Fortran.  Delete this from Fortran expression.
2242         It is now used by Fortran 90 and later to access the member
2243         of derived type.  Add this into Fortran expression.
2244         * f-valprint.c (f_val_print): Add code to handle TYPE_CODE_STRUCT.
2245         Print each elements in the derived type.
2246         * f-typeprint.c (print_equivalent_f77_float_type): Add a parameter
2247         level into the function definition to do indented printing.  And
2248         call fprintfi_filtered instead to do indented printing.
2249         (f_type_print_base): Replace fprintf_filtered with the indented
2250         version (fprintfi_filtered).
2251         (f_type_print_base): Call indented print_equivalent_f77_float_type.
2252         (f_type_print_base): Add code to handle TYPE_CODE_STRUCT.  Print
2253         the definition of the derived type.
2254
2255 2006-02-23  Daniel Jacobowitz  <[email protected]>
2256
2257         * gdb_curses.h: Provide a fallback prototype for tgetnum.
2258
2259 2006-02-23  Daniel Jacobowitz  <[email protected]>
2260
2261         * doublest.h: Conditionalize DOUBLEST on PRINTF_HAS_LONG_DOUBLE
2262         also.
2263         (DOUBLEST_FORMAT): Rename to DOUBLEST_PRINT_FORMAT.
2264         (DOUBLEST_SCAN_FORMAT): New.
2265         * ada-lex.l (PRINTF_HAS_LONG_DOUBLE): Remove redefinitions.
2266         (processReal): Use DOUBLEST_SCAN_FORMAT.
2267         * c-exp.y (parse_number): Likewise.
2268         * jv-exp.y (parse_number): Likewise.
2269         * objc-exp.y (parse_number): Likewise.
2270         * p-exp.y (parse_number): Likewise.
2271
2272 2006-02-23  Daniel Jacobowitz  <[email protected]>
2273
2274         * event-top.c (async_do_nothing, async_disconnect)
2275         (async_stop_sig, async_float_handler): Remove duplicated
2276         prototypes.
2277         (handle_sighup): Guard prototype with SIGHUP.
2278         (async_do_nothing): Guard function and prototype with
2279         SIGQUIT || SIGHUP.
2280         (async_disconnect): Guard prototype with SIGHUP.
2281         (async_stop_sig): Guard prototype with STOP_SIGNAL.
2282
2283 2006-02-23  Daniel Jacobowitz  <[email protected]>
2284
2285         * maint.c (maintenance_dump_me): Remove unnecessary prototype.
2286
2287 2006-02-23  Daniel Jacobowitz  <[email protected]>
2288
2289         * win32-termcap.c (tputs): Return 0.
2290
2291 2006-02-21  Mark Kettenis  <[email protected]>
2292
2293         * configure.ac: Introduce ---enable-werror, which adds -Werror to
2294         the compiler command line.  Enabled by default.  Disable with
2295         --disable-werror.
2296         * configure regenerate.
2297
2298 2006-02-21  Daniel Jacobowitz  <[email protected]>
2299
2300         * elfread.c (elf_symtab_read): Skip symbols which BFD considers
2301         special.
2302
2303 2006-02-21  Andrew Stubbs  <[email protected]>
2304
2305         * defs.h (directory_switch): Add prototype.
2306         * main.c (captured_main): Use directory_switch() instead of
2307         directory_command() to add directories from the -d switch.
2308         * source.c (directory_switch): New function.
2309         (add_path): Use buildargv() to parse spaces in filenames properly.
2310         Strip multiple trailing '/' rather than just one.
2311
2312 2006-02-21  Andrew Stubbs  <[email protected]>
2313
2314         * symfile.c (add_symbol_file_command): Use buildargv(), instead of
2315         hand decoding the command line, to allow use of quotes and spaces.
2316         (_initialize_symfile): Reorganize the help message for add-symbol-file
2317         such that 'help files' shows a better message.
2318
2319 2006-02-21  Andrew Stubbs  <[email protected]>
2320
2321         * sh-tdep.c (sh_generic_show_regs): Reformat both code and output.
2322         (sh3_show_regs, sh2e_show_regs, sh2a_show_regs): Likewise.
2323         (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs): Likewise.
2324         (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs): Likewise.
2325
2326 2006-02-20  Daniel Jacobowitz  <[email protected]>
2327
2328         * linux-nat.c (lin_thread_get_thread_signals): Default to __SIGRTMIN
2329         and __SIGRTMIN + 1.
2330
2331 2006-02-20  Daniel Jacobowitz  <[email protected]>
2332
2333         * remote.c: Add an enumeration for configurable remote
2334         packets.
2335         (remote_protocol_packets, set_remote_protocol_packet_cmd)
2336         (show_remote_protocol_packet_cmd): New.
2337         (remote_protocol_vcont)
2338         (set_remote_protocol_vcont_packet_cmd)
2339         (show_remote_protocol_vcont_packet_cmd)
2340         (remote_protocol_qSymbol)
2341         (set_remote_protocol_qSymbol_packet_cmd)
2342         (show_remote_protocol_qSymbol_packet_cmd)
2343         (remote_protocol_P, set_remote_protocol_P_packet_cmd)
2344         (show_remote_protocol_P_packet_cmd)
2345         (remote_protocol_Z)
2346         (set_remote_protocol_Z_software_bp_packet_cmd)
2347         (show_remote_protocol_Z_software_bp_packet_cmd)
2348         (set_remote_protocol_Z_hardware_bp_packet_cmd)
2349         (show_remote_protocol_Z_hardware_bp_packet_cmd)
2350         (set_remote_protocol_Z_write_wp_packet_cmd)
2351         (show_remote_protocol_Z_write_wp_packet_cmd)
2352         (set_remote_protocol_Z_read_wp_packet_cmd)
2353         (show_remote_protocol_Z_read_wp_packet_cmd)
2354         (set_remote_protocol_Z_access_wp_packet_cmd)
2355         (show_remote_protocol_Z_access_wp_packet_cmd)
2356         (remote_protocol_binary_download)
2357         (set_remote_protocol_binary_download_cmd)
2358         (show_remote_protocol_binary_download_cmd)
2359         (remote_protocol_qPart_auxv)
2360         (set_remote_protocol_qPart_auxv_packet_cmd)
2361         (show_remote_protocol_qPart_auxv_packet_cmd)
2362         (remote_protocol_qGetTLSAddr)
2363         (set_remote_protocol_qGetTLSAddr_packet_cmd)
2364         (show_remote_protocol_qGetTLSAddr_packet_cmd)
2365         (remote_protocol_p)
2366         (set_remote_protocol_p_packet_cmd)
2367         (show_remote_protocol_p_packet_cmd): Delete.
2368
2369         (init_all_packet_configs): Simplify.
2370         (set_remote_protocol_Z_packet_cmd)
2371         (show_remote_protocol_Z_packet_cmd)
2372         (remote_check_symbols, remote_vcont_probe, remote_vcont_resume)
2373         (remote_fetch_registers, remote_prepare_to_store)
2374         (remote_store_registers, check_binary_download)
2375         (remote_write_bytes, remote_insert_breakpoint)
2376         (remote_remove_breakpoint, remote_insert_watchpoint)
2377         (remote_remove_watchpoint, remote_insert_hw_breakpoint)
2378         (remote_remove_hw_breakpoint, remote_xfer_partial)
2379         (remote_get_thread_local_address): Update for packet array.
2380         (_initialize_remote): Likewise; also update for common
2381         set/show commands.
2382
2383 2006-02-20  Daniel Jacobowitz  <[email protected]>
2384
2385         * symfile.c (place_section): Correct retry logic.
2386
2387 2006-02-19  Christopher Faylor  <[email protected]>
2388
2389         * win32_nat.c (cygwin_load_start): New variable.
2390         (cygwin_load_end): Ditto.
2391         (have_saved_context): Ditto.
2392         (saved_context): Ditto.
2393         (max_dll_name_len): Delete obsolete variable.
2394         (do_win32_fetch_inferior_registers): Use context saved from cygwin1.dll
2395         if we are in a cygwin signal rather than a windows signal.
2396         (solib_symbols_add): Detect and store beginning and end of cygwin DLL
2397         if dll being loaded is the cygwin DLL.
2398         (register_loaded_dll): Remove calculation of max_dll_name_len.
2399         (win32_clear_solib): Ditto.
2400         (handle_load_dll): Delete obsolete variable.  Remove unneeded call to
2401         solib_add.
2402         (handle_output_debug_string): Detect and store signal information sent
2403         by Cygwin here.
2404         (handle_exception): Silently pass on errors in the cygwin DLL.  Return
2405         -1 on first pass exception.
2406         (win32_continue): Remove spurious clearing of continue_status.
2407         (get_win32_debug_event): Deal differently first chance exception.
2408
2409 2006-02-19  Randolph Chung  <[email protected]>
2410
2411         * hppa-tdep.c (hppa_in_solib_call_trampoline): Only use if no
2412         unwind entry.
2413
2414 2006-02-16  Fred Fish  <[email protected]>
2415
2416         * eval.c (evaluate_subexp_standard):  For OP_TYPE, return
2417         a non lval value zero, of the appropriate type, when avoiding
2418         side effects.
2419         * typeprint.c (ptype_eval): Remove function and declaration.
2420         (ptype_command): Simplify to just a call to whatis_exp.
2421
2422 2006-02-15  Paul Brook  <[email protected]>
2423
2424         * arm-tdep.c (arm_skip_prologue, thumb_get_next_pc, arm_get_next_pc):
2425         Load insn opcodes as unsigned values.
2426
2427 2006-02-14  Alexandre Oliva  <[email protected]>
2428
2429         * doublest.h (DOUBLEST): Use long double only if we can scan
2430         it in.  Undefine HAVE_LONG_DOUBLE otherwise.
2431         (DOUBLEST_FORMAT): New.
2432         * c-exp.y (parse_number): Use it.
2433         * jv-exp.y (parse_number): Likewise.
2434         * objc-exp.y (parse_number): Likewise.
2435         * p-exp.y (parse_number): Likewise.
2436         * varobj.c (free_variable): Silence type-punning warnings.
2437         * tui/tui-data.h (struct tui_list): Change type of list member.
2438         * tui/tui-data.c: Remove no-longer-needed type casts.
2439         (source_windows): Silence type-punning warnings.
2440         * tui/tui-stack.c, tui/tui-win.c, tui/tui-winsource.c: Likewise.
2441
2442 2006-02-13  Mark Kettenis  <[email protected]>
2443
2444         Fix PR breakpoints/2080.
2445         * i386-tdep.c (struct i386_frame_cache): Add stack_align member.
2446         (i386_analyze_stack_align): New function.
2447         (i386_analyze_prologue): Use i386_analyze_stack_align.
2448         (i386_frame_cache): Deal with stack realignment.
2449
2450 2006-02-14  Nick Roberts  <[email protected]>
2451
2452         * mi/gdb-mi.el: Use more functions from gdb-ui.el.
2453         (gdb-break-list-regexp): Match "what" field if present.
2454         (gdb-stack-list-frames-regexp): Match "from" field if present.
2455         (gdb-stack-list-frames-handler): Present output like "info
2456         breakpoints" so regexps can be shared with gdb-ui
2457
2458 2006-02-10  Daniel Jacobowitz  <[email protected]>
2459
2460         * NEWS: Mention native Windows support.
2461         * Makefile.in (gdb_select_h, ser_tcp_h): New.
2462         (ALLDEPFILES): Add ser-mingw.c.
2463         (event-loop.o, inflow.o, mingw-hdep.o, posix-hdep.o, ser-base.o)
2464         (ser-tcp.o, ser-unix.o): Update.
2465         (ser-mingw.o): New rule.
2466         * configure: Regenerated.
2467         * configure.ac: Add ser-mingw.o for mingw32.
2468         * ser-mingw.c: New file.
2469         * event-loop.c: Include "gdb_select.h".
2470         (gdb_select): Remove, moved to mingw-hdep.c and posix-hdep.c.
2471         * ser-base.c: Include "gdb_select.h".
2472         (ser_base_wait_for): Use gdb_select.
2473         * serial.c (serial_for_fd): New function.
2474         (serial_fdopen): Try "terminal" before "hardwire".  Initialize
2475         the allocated struct serial.
2476         (serial_wait_handle): New function.
2477         * serial.h (serial_for_fd, serial_wait_handle): New prototypes.
2478         (struct serial_ops) [USE_WIN32API]: Add wait_handle.
2479         * gdb_select.h: New file.
2480         * ser-tcp.c: Include "ser-tcp.h".  Remove unused "ser-unix.h" include.
2481         (net_close, net_read_prim, net_write_prim): Make global.
2482         (net_open): Likewise.  Pass an exception set to select.  Whitespace fix.
2483         Document why we can not use gdb_select.
2484         (_initialize_ser_tcp) [USE_WIN32API]: Do not register TCP support here.
2485         * ser-tcp.h: New file.
2486         * inflow.c (gdb_has_a_terminal): Don't initialize stdin_serial here.
2487         (handle_sigio): Use gdb_select.
2488         (initialize_stdin_serial): New function.
2489         * terminal.h (initialize_stdin_serial): New prototype.
2490         * top.c (gdb_init): Call initialize_stdin_serial.
2491         * mingw-hdep.c (gdb_select): New function, moved from gdb_select in
2492         event-loop.c.  Add exception condition support.  Use serial_for_fd
2493         and serial_wait_handle.  Fix timeout handling.
2494         * posix-hdep.c: Include "gdb_select.h".
2495         (gdb_select): New function.
2496         * remote-st.c (connect_command): Use gdb_select.
2497         * ser-unix.c: Include "gdb_select.h".
2498         (hardwire_send_break, wait_for): Use gdb_select.
2499
2500 2006-02-10  Daniel Jacobowitz  <[email protected]>
2501
2502         * Makefile.in (mingw-hdep.o, posix-hdep.o): New dependencies.
2503         (ALLDEPFILES): Add mingw-hdep.c and posix-hdep.c.
2504         * configure.ac: Add gdb_host_obs to CONFIG_OBS.  Set gdb_host_obs
2505         to posix-hdep.o by default.
2506         * configure: Regenerated.
2507         * configure.host: Document gdb_host_obs.  Add an entry for
2508         i[34567]86-*-mingw32*.
2509         * mingw-hdep.c, posix-hdep.c: New files.
2510         * utils.c (safe_strerror): Remove, moved to posix-hdep.o.
2511
2512 2006-02-10  Joel Brobecker  <[email protected]>
2513
2514         * defs.h (gdb_osabi): New enum value GDB_OSABI_AIX.
2515         * osabi.c (gdb_osabi_name): Add name of new value GDB_OSABI_AIX.
2516         * rs6000-tdep.h: New file.
2517         * rs6000-tdep.c: Include "rs6000-tdep.h".
2518         (rs6000_gdbarch_init): Remove enabling of software single step.
2519         Will be done in the AIX-specific initialization routine.
2520         * rs6000-aix-tdep.c: New file.
2521         * config/powerpc/aix.mt (TDEPFILES): Add rs6000-aix-tdep.o.
2522         * Makefile.in (rs6000_tdep_h): New variable.
2523         (rs6000-tdep.o): Update dependencies.
2524         (rs6000-aix-tdep.o): New rule.
2525
2526 2006-02-10  Joel Brobecker  <[email protected]>
2527
2528         * aix-thread.c (_initialize_aix_thread): Use add_setshow_boolean_cmd
2529         instead of add_setshow_zinteger_cmd to defined the aix-thread
2530         boolean setting.
2531
2532 2006-02-10  Nick Roberts  <[email protected]>
2533
2534         * mi/gdb-mi.el: Update to reflect changes in Emacs 22.0.50.
2535
2536 2006-02-09  Daniel Jacobowitz  <[email protected]>
2537
2538         * dwarf2read.c (struct dwarf2_per_cu_data): Reduce length to
2539         30 bits.  Add load_all_dies flag.
2540         (load_partial_dies): Load all DIEs if per_cu->load_all_dies is set.
2541         Load DW_TAG_member by default.  Remove internal_error call.
2542         (find_partial_die): Reload the compilation unit if we can not find
2543         a DIE in the cache.  Call internal_error here if we still can not
2544         find the DIE.
2545
2546 2006-02-10  Nick Roberts  <[email protected]>
2547
2548         * breakpoint.c (print_one_breakpoint): Add break to case
2549         bp_catch_vfork in switch statement.
2550
2551 2006-02-08  Wu Zhou  <[email protected]>
2552
2553         * config/i386/nm-i386sol2.h: Update copyright year.
2554         * config/mips/nm-irix5.h: Ditto.
2555         * config/sparc/nm-sol2.h: Ditto.
2556         * s390-nat.c: Ditto.
2557         * ppc-linux-nat.c: Ditto.
2558
2559 2006-02-08  Wu Zhou  <[email protected]>
2560
2561         * breakpoint.c (TARGET_REGION_OK_FOR_HW_WATCHPOINT): Delete.
2562         * config/i386/nm-i386sol2.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT): New.
2563         (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
2564         * config/mips/nm-irix5.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT): New.
2565         (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
2566         * config/sparc/nm-sol2.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT): New.
2567         (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
2568         * inf-ttrace.c (inf_ttrace_region_ok_for_hw_watchpoint): New.
2569         (inf_ttrace_region_size_ok_for_hw_watchpoint): Delete.
2570         (inf_ttrace_target): Delete to_region_size_ok_for_hw_watchpoint and
2571         add to_region_ok_for_hw_watchpoint.
2572         * s390-nat.c (s390_region_size_ok_for_hw_watchpoint): Delete.
2573         (s390_region_ok_for_hw_watchpoint): New.
2574         (_initialize_s390_nat): Delete to_region_size_ok_for_hw_watchpoint
2575         and add to_region_ok_for_hw_watchpoint.
2576         * target.c (default_region_size_ok_for_hw_watchpoint, 
2577         debug_to_region_size_ok_for_hw_watchpoint): Delete prototype.
2578         (update_current_target): Delete to_region_size_ok_for_hw_watchpoint
2579         inheritance and default_region_size_ok_for_hw_watchpoint.
2580         (default_region_ok_for_hw_watchpoint): If len is less than or equal
2581         the length of void pointer, return ok.
2582         (default_region_size_ok_for_hw_watchpoint): Delete.
2583         (debug_to_region_size_ok_for_hw_watchpoint): Delete.
2584         (setup_target_debug): Delete to_region_size_ok_for_hw_watchpoint.
2585         * target.h (struct target_ops): Delete 
2586         to_region_size_ok_for_hw_watchpoint.
2587         (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
2588         
2589 2006-02-08  Ben Elliston  <[email protected]>
2590             Wu Zhou  <[email protected]>
2591
2592         * ppc-linux-nat.c (PTRACE_GET_DEBUGREG, PTRACE_SET_DEBUGREG,
2593         PTRACE_GETSIGINFO): Define.
2594         (last_stopped_data_address): New.
2595         (ppc_linux_check_watch_resources): New function.
2596         (ppc_linux_region_ok_for_hw_watchpoint): New function.
2597         (ppc_linux_insert_watchpoint): New function.
2598         (ppc_linux_remove_watchpoint): New function.
2599         (ppc_linux_stopped_data_address): New function.
2600         (ppc_linux_stopped_by_watchpoint): New function.
2601         (_initialize_ppc_linux_nat): Set the above hardware watchpoint
2602         related target vectors.
2603         * rs6000-tdep.c (rs6000_gdbarch_init): Set PPC architectures
2604         to have nonsteppable watchpoint.
2605         * target.c (default_region_ok_for_hw_watchpoint,
2606         debug_to_region_ok_for_hw_watchpoint): New prototypes.
2607         (update_current_target): Inherit to_region_ok_for_hw_watchpoint
2608         and set default to_region_ok_for_hw_watchpoint.
2609         (default_region_ok_for_hw_watchpoint): New function.
2610         (debug_to_region_ok_for_hw_watchpoint): New function.
2611         (setup_target_debug): Set to_region_ok_for_hw_watchpoint of 
2612         debug_target.
2613         * target.h (struct target_ops): Add a new target vector 
2614         to_region_ok_for_hw_watchpoint.
2615         (TARGET_REGION_OK_FOR_HW_WATCHPOINT): Define this if it is not
2616         defined anyplace else.
2617
2618 2005-02-07  Joel Brobecker  <[email protected]>
2619         * symfile.c (add_symbol_file_command): Abort if the user forgot
2620         to provide the address when the file has been loaded.
2621
2622 2006-02-07  Daniel Jacobowitz  <[email protected]>
2623
2624         * MAINTAINERS: Update file based on maintainers survey.  Add
2625         a note to Past Maintainers.  Move unresponsive or inactive
2626         maintainers to Authorized Committers or Past Maintainers as
2627         appropriate.  Correct Jim Kingdon's email address.  Remove
2628         vacant areas of responsibility.
2629
2630 2006-02-06  Vladimir Prus  <[email protected]>
2631
2632         * breakpoint.c (print_one_breakpoint): For MI-like UI, output
2633         fullname field.
2634
2635 2006-02-03  Daniel Jacobowitz  <[email protected]>
2636
2637         * exceptions.h (enum errors): Rename NO_ERROR to GDB_NO_ERROR.
2638         * exceptions.c (exception_none, exceptions_state_mc_init)
2639         (throw_vfatal): Use GDB_NO_ERROR.
2640
2641 2006-02-02  Mark Kettenis  <[email protected]>
2642
2643         * solib-svr4.h (struct link_map_offsets): Remove r_debug_size and
2644         r_map_size members.  Add r_version_offset, r_version_size and
2645         r_ldsomap_offset members.
2646         * solib-svr4.c (solib_svr4_r_map): Renamed from
2647         fetch_link_map_member.  Simplify using read_memory_typed_address.
2648         (solib_svr4_r_ldsomap): New function.
2649         (open_symbol_file_object): Use solib_svr_r_map.
2650         (svr4_current_sos): Use solib_svr4_r_map and look for the dynamic
2651         linker by using solib_svr4_r_ldsomap.
2652         (svr4_ilp32_fetch_link_map_offsets)
2653         (svr4_lp64_fetch_link_map_offsets): Adjust for changes to `struct
2654         link_map_offsets'.
2655         * solib-legacy.c (legacy_svr4_fetch_link_map_offsets): Adjust for
2656         changes to `struct link_map_offsets'.
2657         * mipsnbsd-tdep.c (mipsnbsd_ilp32_fetch_link_map_offsets)
2658         (mipsnbsd_lp64_fetch_link_map_offsets): Adjust for changes to
2659         `struct link_map_offsets'.
2660
2661 2006-02-01  Daniel Jacobowitz  <[email protected]>
2662
2663         * linux-nat.c (struct saved_ptids, threads_to_delete)
2664         (record_dead_thread, prune_lwps, find_thread_from_lwp)
2665         (exit_lwp): New.
2666         (linux_nat_resume): Call prune_lwps.
2667         (wait_lwp, linux_nat_wait): Call exit_lwp.
2668
2669 2006-02-01  Daniel Jacobowitz  <[email protected]>
2670
2671         * printcmd.c (printf_command): Make format string checking
2672         stricter.  Add separate cases for long_arg, ptr_arg, and
2673         long_double_arg.
2674         * utils.c (xstrvprintf): Improve the error message issued
2675         for a bad format string.
2676         * Makefile.in (GDB_WARN_CFLAGS_NO_FORMAT, INTERNAL_CFLAGS_BASE):
2677         New variables.
2678         (gnu-v3-abi.o, monitor.o, procfs.o, linux-thread-db.o): Remove
2679         $(NO_WERROR_CFLAGS).
2680         (printcmd.o): Likewise.  Use $(GDB_WARN_CFLAGS_NO_FORMAT) and
2681         enable -Werror.
2682
2683 2006-02-01  Daniel Jacobowitz  <[email protected]>
2684
2685         * Makefile.in (remote.o): Update.
2686         * remote.c (show_packet_config_cmd): Shorten messages.
2687         (remote_set_cmdlist, remote_show_cmdlist): Make file-static.
2688         (show_remote_cmd): Iterate.
2689         (_initialize_remote): Remove remote_set_cmdlist,
2690         remote_show_cmdlist.
2691
2692 2006-02-01  Daniel Jacobowitz  <[email protected]>
2693
2694         * Makefile.in (gdbtypes_h, gdbtypes.o, utils.o): Update.
2695         * defs.h (hashtab_obstack_allocate, dummy_obstack_deallocate): Add
2696         prototypes.
2697         * dwarf2read.c (read_subroutine_type): Use TYPE_ZALLOC.
2698         (hashtab_obstack_allocate, dummy_obstack_deallocate): Moved to...
2699         * utils.c (hashtab_obstack_allocate, dummy_obstack_deallocate):
2700         ...here.
2701         * gdbtypes.c: Include "hashtab.h".
2702         (build_gdbtypes): Remove extra prototype.
2703         (struct type_pair, type_pair_hash, type_pair_eq)
2704         (create_copied_types_hash, copy_type_recursive): New.
2705         * gdbtypes.h: Include "hashtab.h".
2706         (TYPE_ZALLOC): New.
2707         (create_copied_types_hash, copy_type_recursive): New prototypes.
2708         * objfiles.c (free_objfile): Call preserve_values.
2709         * symfile.c (reread_symbols): Likewise.
2710         (clear_symtab_users): Remove calls to clear_value_history and
2711         clear_internalvars.
2712         * value.c (clear_value_history, clear_internalvars): Removed.
2713         (preserve_one_value, preserve_values): New functions.
2714         * value.h (clear_value_history, clear_internalvars): Removed.
2715         (preserve_values): New prototype.
2716
2717         * tracepoint.c (_initialize_tracepoint): Do not initialize convenience
2718         variables here.
2719
2720 2006-01-29  Mark Kettenis  <[email protected]>
2721
2722         * amd64-tdep.c (amd64_classify): Handle TYPE_CODE_BOOL.
2723         Fixes PR tdep/2075.
2724
2725 2006-01-27  Joel Brobecker  <[email protected]>
2726
2727         * MAINTAINERS: Use a consistent email address for brobecker.
2728
2729 2006-01-27  Joel Brobecker  <[email protected]>
2730
2731         * infcmd.c (post_create_inferior): Fix copy/paste error introduced
2732         in the previous change.
2733
2734 2006-01-24  Daniel Jacobowitz  <[email protected]>
2735
2736         PR gdb/1914
2737         * fork-child.c (fork_inferior): Don't call
2738         solib_create_inferior_hook.
2739         * infcmd.c (post_create_inferior): Call solib_add,
2740         solib_create_inferior_hook, and re_enable_breakpoints_in_shlibs.
2741         (attach_command): Don't call solib_add or
2742         re_enable_breakpoints_in_shlibs.  Call post_create_inferior
2743         instead.
2744         * remote.c (remote_open_1): Don't call solib_create_inferior_hook
2745         or observer_notify_inferior_created.  Call post_create_inferior
2746         instead.
2747         * corelow.c: Don't include "observer.h".
2748         (solib_add_stub): Deleted.
2749         (core_open): Don't call observer_notify_inferior_created or
2750         solib_add_stub.  Call post_create_inferior instead.
2751         * inf-ptrace.c: Don't include "observer.h".
2752         (inf_ptrace_attach): Don't call observer_notify_inferior_created.
2753         * inf-ttrace.c: Don't include "observer.h".
2754         (inf_ttrace_attach): Don't call observer_notify_inferior_created.
2755         * inferior.h (solib_create_inferior_hook): Remove redundant
2756         prototype.
2757         * inftarg.c: Don't include "observer.h".
2758         (child_attach): Don't call observer_notify_inferior_created.
2759         * Makefile.in: Update dependencies.
2760
2761 2006-01-24  Daniel Jacobowitz  <[email protected]>
2762
2763         * infcmd.c: Include "observer.h".
2764         (post_create_inferior): New function.
2765         (run_command_1): Call it.  Also call proceed.
2766         * inferior.h (post_create_inferior): New prototype.
2767         * Makefile.in (infcmd.o): Update.
2768
2769         * gnu-nat.c (gnu_create_inferior): Don't call proceed.
2770         * go32-nat.c (go32_create_inferior): Likewise.
2771         * nto-procfs.c (procfs_create_inferior): Likewise.
2772         * procfs.c (procfs_create_inferior): Likewise.
2773         * remote-sim.c (gdbsim_create_inferior): Likewise.
2774         * remote.c (extended_remote_create_inferior)
2775         (extended_remote_async_create_inferior): Likewise.
2776         * win32-nat.c (win32_create_inferior): Likewise.
2777         * wince.c (child_create_inferior): Likewise.
2778
2779         * monitor.c (monitor_create_inferior): Don't call proceed.
2780         Set the PC manually.
2781         * ocd.c (ocd_create_inferior): Likewise.
2782         * remote-e7000.c (e7000_create_inferior): Likewise.
2783         * remote-m32r-sdi.c (m32r_create_inferior): Likewise.
2784         * remote-mips.c (mips_create_inferior): Likewise.
2785         * remote-rdp.c (remote_rdp_create_inferior): Likewise.
2786         * remote-sds.c (sds_create_inferior): Likewise.
2787         * remote-st.c (st2000_create_inferior): Likewise.
2788
2789         * inf-ptrace.c (inf_ptrace_create_inferior): Don't call
2790         proceed or observer_notify_inferior_created.
2791         * inf-ttrace.c (inf_ttrace_create_inferior): Likewise.
2792         * inftarg.c (child_create_inferior): Likewise.
2793
2794 2006-01-24  Daniel Jacobowitz  <[email protected]>
2795
2796         * linux-thread-db.c (thread_db_mourn_inferior): Remove breakpoints
2797         after mourning the inferior.
2798
2799 2006-01-24  Jim Blandy  <[email protected]>
2800
2801         * valarith.c (binop_user_defined_p): Handle refs to typedefs.
2802
2803 2006-01-24  Fred Fish  <[email protected]>
2804
2805         * parse.c (source.h): Include.
2806         (parse_exp_in_context):  Use static source context if no
2807         other context found.
2808
2809 2006-01-23  Andrew Stubbs  <[email protected]>
2810
2811         * sh-tdep.c: Include reggroups.h.
2812         (sh_register_reggroup_p): New function.
2813         (sh_gdbarch_init): Add call to set_gdbarch_register_reggroup_p.
2814         * Makefile.in (sh-tdep.o): Add dependency on reggroups.h.
2815
2816 2006-01-23  Andrew Stubbs  <[email protected]>
2817
2818         * cli/cli-cmds.c: Include fcntl.h.
2819         (source_command): Use the GDB search path to find script files.
2820
2821 2006-01-22  Daniel Jacobowitz  <[email protected]>
2822
2823         PR tdep/2029
2824         Suggested by Till Straumann <[email protected]>:
2825         * rs6000-tdep.c (skip_prologue): Update check for later mtlr
2826         instructions.  Handle PIC bcl.
2827
2828 2006-01-22  Daniel Jacobowitz  <[email protected]>
2829
2830         * config/djgpp/README: Typo fix.
2831         * config/djgpp/fnchange.lst: Update.
2832
2833 2006-01-22  Mark Kettenis  <[email protected]>
2834
2835         * sparc-tdep.h (struct gdbarch_tdep): Add step_trap member.
2836         (sparc_address_from_register): New prototype.
2837         (sparcnbsd_step_trap): New prototype.
2838         * sparc-tdep.c (sparc_address_from_register): Make globally
2839         visible.
2840         (sparc_analyze_control_transfer): Change prototype to accept
2841         `struct gdbarch *' as first argument.  Allow for optional hnadling
2842         for trap instructions.
2843         (sparc_step_trap): New function.
2844         (sparc_software_single_step): Adjust call to
2845         sparc_analyze_control_trabsfer.
2846         (sparc32_gdbarch_init): Initialize TDEP->step_trap.
2847         * sparcnbsd-tdep.c (sparcnbsd_step_trap): New function.
2848         (sparc32nbsd_init_abi): Set TDEP->step_trap.
2849         * sparc64obsd-tdep.c (sparc64obsd_init_abi): Set TDEP->step_trap.
2850         * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Set TDEP->step_trap.
2851
2852         * sparc-tdep.c (sparc32_return_value): Convert to use
2853         RETURN_VALUE_ABI_PRESERVES_ADDRESS instead of
2854         RETURN_VALUE_STRUCT_CONVENTION.
2855         (sparc32_extract_struct_value_address): Remove.
2856
2857 2006-01-21  Daniel Jacobowitz  <[email protected]>
2858
2859         * avr-tdep.c (avr_address_to_pointer, avr_pointer_to_address)
2860         (avr_extract_return_value, avr_frame_prev_register): Use gdb_byte.
2861
2862 2006-01-21  Daniel Jacobowitz  <[email protected]>
2863
2864         * solib.c (info_sharedlibrary_command): Avoid internal_error.
2865
2866 2006-01-21  Mark Kettenis  <[email protected]>
2867
2868         * i386-tdep.c (i386_mxcsr_type): New variable.
2869         (i386_init_types): Initialize i386_mxcsr_type.
2870         (i386_register_type): Return i386_mxcsr_type for %mxcsr.
2871         * i386-tdep.c (i386_mxcsr_type): New extern.
2872         * amd64-tdep.c (amd64_register_info): Return i386_mxcsr_type for
2873         %mxcsr.
2874
2875 2006-01-20  Mark Mitchell  <[email protected]>
2876
2877         * Makefile.in (remote-rdi.o): Remove.
2878         (rdi-share/libangsd.a): Likewise.
2879         * README: Don't mention remote-rdi.c.
2880         * NEWS: Mention removal of rdi-share.
2881         * configure.ac: Don't configure rdi-share subdirectory.
2882         * remote-rdi.c: Remove.
2883         * config/arm/embed.mt (TDEPFILES): Remove remote-rdi.o.
2884         (TDEPLIBS): Remove rdi-share/libangsd.a.
2885         * rdi-share/Makefile.am: Remove.
2886         * rdi-share/Makefile.in: Likewise.
2887         * rdi-share/README.CYGNUS: Likewise.
2888         * rdi-share/aclocal.m4: Likewise.
2889         * rdi-share/adp.h: Likewise.
2890         * rdi-share/adperr.h: Likewise.
2891         * rdi-share/angel.h: Likewise.
2892         * rdi-share/angel_bytesex.c: Likewise.
2893         * rdi-share/angel_bytesex.h: Likewise.
2894         * rdi-share/angel_endian.h: Likewise.
2895         * rdi-share/ardi.c: Likewise.
2896         * rdi-share/ardi.h: Likewise.
2897         * rdi-share/armdbg.h: Likewise.
2898         * rdi-share/buffers.h: Likewise.
2899         * rdi-share/chandefs.h: Likewise.
2900         * rdi-share/channels.h: Likewise.
2901         * rdi-share/chanpriv.h: Likewise.
2902         * rdi-share/configure: Likewise.
2903         * rdi-share/configure.in: Likewise.
2904         * rdi-share/crc.c: Likewise.
2905         * rdi-share/crc.h: Likewise.
2906         * rdi-share/dbg_conf.h: Likewise.
2907         * rdi-share/dbg_cp.h: Likewise.
2908         * rdi-share/dbg_hif.h: Likewise.
2909         * rdi-share/dbg_rdi.h: Likewise.
2910         * rdi-share/devclnt.h: Likewise.
2911         * rdi-share/devices.h: Likewise.
2912         * rdi-share/devsw.c: Likewise.
2913         * rdi-share/devsw.h: Likewise.
2914         * rdi-share/drivers.c: Likewise.
2915         * rdi-share/drivers.h: Likewise.
2916         * rdi-share/etherdrv.c: Likewise.
2917         * rdi-share/ethernet.h: Likewise.
2918         * rdi-share/host.h: Likewise.
2919         * rdi-share/hostchan.c: Likewise.
2920         * rdi-share/hostchan.h: Likewise.
2921         * rdi-share/hsys.c: Likewise.
2922         * rdi-share/hsys.h: Likewise.
2923         * rdi-share/logging.c: Likewise.
2924         * rdi-share/logging.h: Likewise.
2925         * rdi-share/msgbuild.c: Likewise.
2926         * rdi-share/msgbuild.h: Likewise.
2927         * rdi-share/params.c: Likewise.
2928         * rdi-share/params.h: Likewise.
2929         * rdi-share/rx.c: Likewise.
2930         * rdi-share/rxtx.h: Likewise.
2931         * rdi-share/serdrv.c: Likewise.
2932         * rdi-share/serpardr.c: Likewise.
2933         * rdi-share/sys.h: Likewise.
2934         * rdi-share/tx.c: Likewise.
2935         * rdi-share/unixcomm.c: Likewise.
2936         * rdi-share/unixcomm.h: Likewise.
2937
2938 2006-01-21  Mark Kettenis  <[email protected]>
2939
2940         * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_prev_register):
2941         Change type of last argument to `gdb_byte *'.
2942
2943 2006-01-20  Mark Kettenis  <[email protected]>
2944
2945         * hppa-tdep.h (hppa_in_solib_call_trampoline)
2946         (hppa_skip_trampoline_code): New prototypes.
2947         * hppa-tdep.c (struct insn_pattern): New.
2948         (hppa_long_branch_stub, hppa_long_branch_pic_stub)
2949         (hppa_import_stub, hppa_import_pic_stub, hppa_plt_stub): Moved
2950         here from hppa-linux-tdep.c
2951         (HPPA_MAX_INSN_PATTERN_LEN): New define.
2952         (hppa_match_insns, hppa_match_insns_relaxed, hppa_in_dyncall)
2953         (hppa_in_solib_call_trampoline, hppa_skip_trampoline_code): New
2954         functions based on functions removed from hppa-linux-tdep.c.
2955         * hppa-linux-tdep.c (hppa_long_branch_stub)
2956         (hppa_long_branch_pic_stub, hppa_import_stub)
2957         (hppa_import_pic_stub, hppa_plt_stub): Moved to hppa-tdep.c.
2958         (insns_match_pattern_relaxed, hppa_linux_in_dyncall)
2959         (hppa_linux_in_solib_call_trampoline)
2960         (hppa_linux_skip_trampoline_code): Removed.
2961         (hppa_linux_init_abi): Set TDEP->in_solib_call_tranpoline to
2962         hppa_in_solib_call_trampoline and skip_trampoline_code to
2963         hppa_skip_trampoline_code.
2964         * hppabsd-tdep.c (hppabsd_init_abi): Set
2965         TDEP->in_solib_call_trampoline and skip_trampoline_code.
2966
2967 2006-01-20  Jim Blandy  <[email protected]>
2968
2969         * MAINTAINERS: Change my E-mail address.
2970
2971         * configure.ac: Add -Wno-pointer-sign to list of build warnings.
2972         * configure: Regenerated.
2973
2974 2006-01-20  Daniel Jacobowitz  <[email protected]>
2975
2976         * MAINTAINERS: Overhaul.
2977
2978 2006-01-18  Mark Kettenis  <[email protected]>
2979
2980         Based on a previous patch form Michal Ludvig:
2981         * amd64-tdep.c (amd64_sse_type): Remove.
2982         (amd64_register_info): Use i386_eflags_type and i386_sse_type
2983         where appropriate.
2984         (AMD64_NUM_REGS): Use ARRAY_SIZE.
2985         (amd64_register_type): Remove code to build amd_sse_type.
2986         * i386-tdep.c (i386_eflag_type): New variable.
2987         (i386_mmx_type, i386_sse_type): Make global.
2988         (i386_init_types): New function.
2989         (i386_build_mmx_type, i386_build_sse_type): Remove functions.
2990         (i386_register_type): Return i386_eflag_type, i386_sse_type and
2991         i386_mmx_type when appropriate.
2992         (_initialize_i386_tdep): Call i386_init_types.
2993         * i386-tdep.h (i386_eflags_type, i386_mmx_type, i386_sse_type):
2994         Declare extern.
2995
2996         Based on a previous patch form Michal Ludvig:
2997         * gdbtypes.c (append_flags_type_flag, init_flags_type): New
2998         functions.
2999         (is_integral_type, rank_one_type, recursive_dump_type): Add
3000         support for TYPE_CODE_FLAGS.
3001         * gdbtypes.h (enum type_code): Add TYPE_CODE_FLAGS.
3002         (append_flags_type_field, init_flags_type): New prototypes.
3003         * ada-valprint.c (ada_val_print_1): Add support for
3004         TYPE_CODE_FLAGS.
3005         * c-valprint.c (c_val_print): Likewise.
3006         * f-valprint.c (f_val_print): Likewise.
3007         * p-valprint.c (pascal_val_print): Likewise.
3008         * valprint.c (val_print_type_code_flags): New function.
3009         * valprint.h (val_print_type_code_flags): New prototype.
3010         * value.c (unpack_long, value_from_longest): Add support for
3011         TYPE_CODE_FLAGS.
3012
3013 2006-01-17  Christopher Faylor  <[email protected]>
3014
3015         * MAINTAINERS: Very belatedly remove myself from from the list of
3016         people caught up in the paper trail.
3017
3018 2006-01-17  Jim Blandy  <[email protected]>
3019
3020         * symtab.h (struct general_symbol_info): Use gdb_byte for
3021         value.bytes.
3022         * stabsread.c (define_symbol): Use gdb_byte for the buffer holding
3023         a floating-point constant's value.
3024         * dwarf2read.c (dwarf2_const_value): Remove casts of value buffer
3025         to char *.
3026         * findvar.c (read_var_value): Eliminate needless temporary.
3027
3028         * dwarf2-frame.c (dwarf2_read_section): Update forward declaration
3029         to match prior change to dwarf2_read_section's type.
3030
3031 2006-01-16  Paul Gilliam  <[email protected]>
3032
3033         * ppc-tdep.h (PPC_MAX_EPILOGUE_INSTRUCTIONS): New define.
3034         * rs6000-tdep.c (insn_changes_sp_or_jumps)
3035         (rs6000_in_function_epilogue_p): New functions.
3036         (rs6000_gdbarch_init): Set in_function_epilogue_p.
3037
3038 2006-01-17  Jim Blandy  <[email protected]>
3039
3040         * dwarf2read.c (struct dwarf2_per_objfile, struct comp_unit_head)
3041         (struct line_header, struct partial_die_info, struct dwarf_block):
3042         Use gdb_byte for members that refer to Dwarf section contents.
3043         (dwarf2_read_abbrevs, dwarf2_read_section, dwarf_decode_lines,
3044         dwarf_decode_macros, load_comp_unit, load_partial_dies,
3045         locate_pdi_sibling, partial_read_comp_unit_head, peek_die_abbrev,
3046         read_1_byte, read_1_signed_byte, read_2_bytes, read_4_bytes,
3047         read_8_bytes, read_address, read_attribute, read_attribute_value,
3048         read_comp_unit, read_comp_unit_head, read_die_and_children,
3049         read_die_and_siblings, read_full_die, read_indirect_string,
3050         read_initial_length, read_n_bytes, read_offset, read_partial_die,
3051         read_signed_leb128, read_string, read_unsigned_leb128,
3052         skip_children, skip_leb128, skip_one_die): Same.
3053
3054 2006-01-17  Daniel Jacobowitz  <[email protected]>
3055
3056         * complaints.c (stop_whining): Make signed.
3057         * linux-thread-db.c (thread_db_store_registers): Use gdb_byte.
3058
3059 2006-01-17  Daniel Jacobowitz  <[email protected]>
3060
3061         * dwarf2read.c, remote-fileio.c, remote.h: Update copyright
3062         notices.
3063
3064 2006-01-17  Daniel Jacobowitz  <[email protected]>
3065
3066         * dwarf2read.c (peek_die_abbrev, read_address, read_initial_length)
3067         (read_offset): Change BYTES_READ argument to unsigned int.
3068         (dwarf2_build_psymtabs_easy, read_comp_unit_head)
3069         (create_all_comp_units, dwarf2_get_pc_bounds)
3070         (dwarf_decode_line_header, var_decode_location)
3071         (dwarf_decode_macros): Change local BYTES_READ variables to
3072         unsigned int.
3073         (read_indirect_string): Remove obsolete cast.
3074
3075 2006-01-17  Daniel Jacobowitz  <[email protected]>
3076
3077         * remote-fileio.c (remote_fileio_return_success): Take a gdb_byte
3078         argument.
3079         (remote_fileio_func_open, remote_fileio_func_rename)
3080         (remote_fileio_func_unlink, remote_fileio_func_stat)
3081         (remote_fileio_func_fstat, remote_fileio_func_gettimeofday)
3082         (remote_fileio_func_system): Cast the arguments to
3083         remote_read_bytes and remote_write_bytes.
3084         (remote_fileio_func_read, remote_fileio_func_write): Use a
3085         gdb_byte buffer.
3086         * remote.h (remote_read_bytes, remote_write_bytes): Update
3087         prototypes.
3088         * remote.c (hex2bin, bin2hex): Use gdb_byte for the BIN argument.
3089         (threadref_to_int): Replace bogus char * cast.
3090         (remote_unpack_thread_info_response): Use int for tag.
3091         (remote_threads_extra_info, remote_check_symbols): Cast string
3092         arguments to hex2bin.
3093         (remote_wait): Use a char buffer for packets and a gdb_byte
3094         buffer for registers.
3095         (remote_async_wait): Likewise.
3096         (remote_prepare_to_store, store_register_using_P)
3097         (remote_store_registers): Use gdb_byte buffers.
3098         (remote_write_bytes, remote_read_bytes): Use a gdb_byte pointer
3099         for MYADDR and char buffers for strings.
3100         (remote_xfer_partial): Add casts for string operations on READBUF.
3101         (remote_rcmd): Cast strings passed to bin2hex.
3102
3103 2006-01-16  Mark Mitchell  <[email protected]>
3104
3105         * aclocal.m4: Regenerate.
3106
3107 2006-01-16  Nathan Sidwell  <[email protected]>
3108
3109         * mt-tdep.c (enum mt_gdb_regnums): Add MT_COPRO_PSEUDOREG_ARRAY,
3110         MT_COPRO_PSEUDOREG_DIM_1, MT_COPRO_PSEUDOREG_DIM_2,
3111         MT_COPRO_PSEUDOREG_REGS members.  Adjust MT_NUM_PSEUDO_REGS.
3112         (mt_register_name): Lazily synthesize name for coprocessor pseudo
3113         array registers.
3114         (mt_copro_register_type): New. Broken out of ...
3115         (mt_register_type): ... here.  Use it.  Deal with coprocessor
3116         pseudo array.
3117         (mt_select_coprocessor): New.
3118         (mt_pseudo_register_read, mt_pseudo_register_write): Deal with
3119         coprocessor pseudo array.
3120
3121 2006-01-16  Andrew Stubbs  <[email protected]>
3122
3123         * breakpoint.c (insert_breakpoints): Check that a thread exists
3124         before inserting thread specific breakpoints.
3125
3126 2006-01-15  Mark Kettenis  <[email protected]>
3127
3128         * osabi.c (generic_elf_osabi_sniffer): Fix typo in previous
3129         commit.
3130
3131         * alpha-tdep.c (alpha_gdbarch_init): Set cannot_step_breakpoint.
3132         * config/alpha/nm-osf.h (CANNOT_STEP_BREAKPOINT): Remove.
3133         * config/alpha/nm-linux.h (CANNOT_STEP_BREAKPOINT): Remove.
3134         * config/alpha/nm-nbsd.h: Remove file.
3135         * config/alpha/nm-fbsd.h: Remove file
3136         * config/alpha/nbsd.mh (NAT_FILE): Remove.
3137         * config/alpha/fbsd.mh (NAT_FILE): Remove.
3138
3139 2006-01-15  Daniel Jacobowitz  <[email protected]>
3140
3141         * macroexp.c (expand): Initialize argc.
3142         * stabsread.c (read_type): Handle errors from read_args.
3143         (read_args): Return NULL for errors.
3144
3145 2006-01-15  Mark Kettenis  <[email protected]>
3146
3147         * osabi.c (generic_elf_osabi_sniffer): Use memcmp instead of
3148         strcmp to compare string to a byte buffer.
3149
3150 2006-01-15  Daniel Jacobowitz  <[email protected]>
3151
3152         * printcmd.c (output_command): Always initialize fmt.size.
3153         (printf_command): Use gdb_byte.
3154         * symfile.c (separate_debug_file_exists): Use gdb_byte.
3155         (load_section_callback, read_target_long_array): Likewise.
3156         (simple_read_overlay_table, simple_read_overlay_region_table)
3157         (simple_overlay_update_1): Correct calls to read_target_long_array.
3158         * valprint.c (partial_memory_read): Change MYADDR to a gdb_byte *.
3159         Also change local pointers.
3160         (val_print_string): Use gdb_byte.
3161
3162 2006-01-15  Mark Kettenis  <[email protected]>
3163
3164         * alphafbsd-tdep.c: Include "solib-svr4.h".
3165         (alphafbsd_init_abi): Set solib_svr4_fetch_link_map_offsets to
3166         svr4_lp64_fetch_link_map_offsets.
3167         * Makefile.in (alphafbsd-tdep.o): Update dependencies.
3168         * config/alpha/fbsd.mt (TDEPFILES): Add corelow.o, solib.o and
3169         solib-svr4.o.
3170         * config/alpha/fbsd.mh (NATDEPFILES): Remove solib.o, solib-svr4.o
3171         and solib-legacy.o.
3172         * config/alpha/nm-fbsd.h: Don't include "solib.h".
3173
3174 2006-01-15  Daniel Jacobowitz  <[email protected]>
3175
3176         * source.c (_initialize_source): Use add_setshow_integer_cmd.
3177
3178 2006-01-15  Daniel Jacobowitz  <[email protected]>
3179
3180         * linux-fork.c (delete_fork_command, detach_fork_command): Use
3181         PIDGET.
3182
3183 2006-01-15  Mark Kettenis  <[email protected]>
3184
3185         * arm-linux-tdep.c (arm_linux_svr4_fetch_link_map_offsets):
3186         Remove.
3187         (arm_linux_init_abi): Set solib_svr4_fetch_link_map_offsets to
3188         svr4_ilp32_fetch_link_map_offsets.
3189         * cris-tdep.c (cris_linux_svr4_fetch_link_map_offsets): Remove
3190         function.
3191         (cris_gdbarch_init): Set solib_svr4_fetch_link_map_offsets to
3192         svr4_ilp32_fetch_link_map_offsets.
3193         * mips-linux-tdep.c (mips_linux_svr4_fetch_link_map_offsets)
3194         (mips64_linux_svr4_fetch_link_map_offsets): Remove functions.
3195         (mips_linux_init_abi): Set solib_svr4_fetch_link_map_offsets to
3196         svr4_ilp32_fetch_link_map_offsets or svr4_lp64_fetch_link_map_offsets
3197         where appropriate.
3198         * nbsd-tdep.c (nbsd_ilp32_solib_svr4_fetch_link_map_offsets):
3199         Simply call svr4_ilp32_fetch_link_map_offsets.
3200         (nbsd_lp64_solib_svr4_fetch_link_map_offsets): Simply call
3201         svr4_lp64_fetch_link_map_offsets.
3202         * ppc-linux-tdep.c (ppc_linux_svr4_fetch_link_map_offsets): Remove
3203         function.
3204         (ppc_linux_init_abi): Set solib_svr4_fetch_link_map_offsets to
3205         svr4_ilp32_fetch_link_map_offsets.
3206         * s390-tdep.c (s390_svr4_fetch_link_map_offsets)
3207         (s390x_svr4_fetch_link_map_offsets): Remove functions.
3208         (s390_gdbarch_init): Set solib_svr4_fetch_link_map_offsets to
3209         svr4_ilp32_fetch_link_map_offsets or svr4_lp64_fetch_link_map_offsets
3210         where appropriate.
3211
3212 2006-01-15  Mark Kettenis  <[email protected]>
3213
3214         * arm-tdep.c (arm_return_value): Change type of readbuf and
3215         writebuf arguments to `gdb_byte *'.
3216
3217         * s390-tdep.c: Do not include "tm.h" and "../bfd/bfd.h".
3218         * Makefile.in (s390-tdep.o): Update dependencies.
3219
3220 2006-01-14  Mark Kettenis  <[email protected]>
3221
3222         * sol2-tdep.h. sol2-tdep.c: New files.
3223         * amd64-sol2-tdep.c: Include "sol2-tdep.h".
3224         (amd64_sol2_init_abi): Set skip_solib_resolver.
3225         * i386-sol2-tdep.c: Include "sol2-tdep.h".
3226         (i386_sol2_init_abi): Set skip_solib_resolver.
3227         * sparc-sol2-tdep.c: Include "sol2-tdep.h".
3228         (sparc32_sol2_init_abi): Set skip_solib_resolver.
3229         * sparc64-sol2-tdep.c: Include "sol2-tdep.h".
3230         (sparc64_sol2_init_abi): Set skip_solib_resolver.
3231         * Makefile.in (sol2_tdep_h): New variable.
3232         (ALLDEPFILES): Add sol2-tdep.c.
3233         (sol2-tdep.o): New target.
3234         (amd64-sol2-tdep.o, i386-sol2-tdep.o, sparc-sol2-tdep.o)
3235         (sparc64-sol2-tdep.o): Update dependencies
3236         * config/i386/i386sol2.mt (TDEPFILES): Add sol2-tdep.o.
3237         * config/i386/sol2-64.mt (TDEPFILES): Add sol2-tdep.o.
3238         * config/sparc/sol2.mt (TDEPFILES): Add sol2-tdep.o.
3239         * config/sparc/sol2-64.mt (TDEPFILES): Add sol2-tdep.o.
3240
3241         * hppa-linux-tdep.c: Fix copyright indentation.
3242
3243         * hppa-tdep.h (enum hppa_regnum): Add HPPA_FP31R_REGNUM.
3244         * hppabsd-nat.c (hppabsd_fpregset_supplies_p)
3245         (hppabsd_supply_fpregset, hppabsd_collect_fpregset): New
3246         functions.
3247         (hppabsd_fetch_registers, hppabsd_store_registers): Handle
3248         floating-point registers.
3249
3250 2006-01-13  Mark Mitchell  <[email protected]>
3251
3252         * event-loop.c (gdb_select): Detect file descriptors that have
3253         been closed.
3254
3255 2006-01-13  Mark Kettenis  <[email protected]>
3256
3257         * hppabsd-tdep.c (hppabsd_init_abi): Set long_double_bit to 64,
3258         and long_double_format accordingly.
3259
3260 2006-01-12  Paul N. Hilfinger <[email protected]>
3261
3262         * ada-exp.y (yyerror): Change message to ignore the argument, avoiding
3263         translation problems.
3264         * ada-lang.c (ada_value_struct_elt): Change interface and handling
3265         of errors to avoid translation problem (and less than optimal error
3266         messages).
3267         (ada_value_tag, ada_tag_name_1, ada_tag_name_2, ada_evaluate_subexp):
3268         Use new interface to ada_value_struct_elt.
3269         * ada_lang.h (ada_value_struct_elt): Update declaration to new 
3270         interface.
3271         
3272         * ChangeLog: remove reference to ada-tasks.c from entry of
3273         2006-01-07.
3274         
3275 2006-01-11  Mark Kettenis  <[email protected]>
3276
3277         * remote.c (get_memory_packet_size, set_thread) 
3278         (remote_unpack_thread_info_response, remote_get_threadinfo) 
3279         (parse_threadlist_response, remote_get_threadlist) 
3280         (remote_current_thread, remote_threads_info) 
3281         (remote_threads_extra_info, extended_remote_restart, get_offsets) 
3282         (remote_check_symbols, remote_open_1, remote_detach) 
3283         (remote_async_wait, remote_fetch_registers) 
3284         (remote_store_registers, check_binary_download, putpkt_binary) 
3285         (remote_insert_breakpoint, remote_insert_watchpoint) 
3286         (remote_remove_watchpoint, remote_insert_hw_breakpoint) 
3287         (remote_remove_hw_breakpoint, remote_xfer_partial, remote_rcmd) 
3288         (packet_command): Remove redundant parenthesis.
3289
3290 2006-01-10  Mark Kettenis  <[email protected]>
3291
3292         * corefile.c (read_memory_integer, read_memory_unsigned_integer)
3293         (read_memory_typed_address, write_memory)
3294         (write_memory_unsigned_integer, write_memory_signed_integer): Use
3295         gdb_byte where appropriate.
3296
3297         * mi/mi-main.c (mi_cmd_data_read_memory): Change type of mbus into
3298         'gdb_byte *'.
3299
3300         * target.h (target_read_memory_partial, target_write_memory_partial):
3301         Change second argument to 'gdb_byte *'.
3302         * target.c (target_xfer_memory_partial): Change third argument to
3303         'gdb_byte *'.
3304         (target_read_memory_partial, target_write_memory_partial): Change
3305         second argument to 'gdb_byte *'.
3306
3307         * linespec.c (decode_objc): Make i1 and i2 unsigned.
3308         (find_method): Set values.sals to NULL.
3309
3310 2006-01-09  Mark Kettenis  <[email protected]>
3311
3312         * amd64obsd-nat.c (amd64obsd_supply_pcb): Use 'gdb_byte *' instead
3313         of 'char *' in cast.
3314
3315 2006-01-07  Paul N. Hilfinger <[email protected]>
3316
3317         * ada-exp.y, ada-lex.l, ada-typeprint.c: I18n markup.
3318         * ada-lang.c: I18n markup.  
3319         Editorial: change "can not" => "cannot" throughout.
3320
3321 2006-01-07  Mark Kettenis  <[email protected]>
3322
3323         * Makefile.in: Sort dependencies.
3324
3325 2006-01-07  Eli Zaretskii  <[email protected]>
3326
3327         * top.c (control_level): Remove unused variable.
3328
3329 2006-01-06  Fred Fish  <[email protected]>
3330
3331         * objfiles.c (source.h): Include.
3332         (free_objfile): Update comment about clear_symtab_users().
3333         (free_objfile): Check all symtabs of objfile being freed and if
3334         one of them is the current source symtab, call
3335         clear_current_source_symtab_and_line().
3336
3337 2006-01-04  Michael Snyder  <[email protected]>
3338
3339         Checkpoint/Restart for Linux.
3340         * linux-nat.c: Add support for debugging multiple forks.
3341         Add #include for linux-fork.h (interface spec).
3342         (super_mourn_inferior): New function pointer.
3343         (child_mourn_inferior): New function / target method.
3344         (linux_target): Claim to_mourn_inferior method pointer.
3345         (child_follow_fork): Call interface to linux-fork, conditionally
3346         add new fork processes to list of debugged processes.
3347         (kill_inferior): Use interface to linux-fork to kill
3348         multiple processes.
3349
3350         * linux-fork.h: New file.
3351         * linux-fork.c: New file.  Support for debugging multiple forks
3352         of the same program.  Support for checkpoint and restart commands.
3353
3354         * infrun.c (nullify_last_target_wait_ptid): New function.
3355
3356         * Makefile.in: Add linux-fork.
3357         * config/*/linux.mh: Add linux-fork.
3358         * NEWS: Mention new functionality.
3359
3360 2006-01-02  Paul Hilfinger  <[email protected]>
3361
3362         * ada-exp.y (syntax definitions,write_var_or_type,write_name_assoc): 
3363         Change uses of "illegal" to "invalid".
3364         
3365 2006-01-02  Paul N. Hilfinger  <[email protected]>
3366
3367         * ada-exp.y: Considerable reorganization to move functionality
3368         from ada-lex.l to here, where it is logically more appropriate.
3369         The original reason, however, was to prevent premature name
3370         lookups for selector names in record aggregates.
3371         (BLOCKNAME, TYPENAME, OBJECT_RENAMING): Remove; lexer now returns
3372         NAME for all of these.
3373         (VAR): New artificial token to clarify precedence rules.
3374         (OTHERS): New lexeme.
3375         (empty_stoken): New symbol.
3376         (%union): Remove ssym, voidval.
3377         (%type): Remove <voidval> type declarations.
3378         (syntax definitions): Add aggregates.
3379         Remove distinction between NAME, TYPENAME, BLOCKNAME, OBJECT_RENAMING.
3380         Rename some non-terminals to be closer to reference manual usage.
3381         Tighten up expression syntax to disallow certain non-Ada 
3382         constructions such as X and then Y or else Z.
3383         (ada_parse): Remove initialization of left_block_context.
3384         (write_var_from_name): Remove.
3385         (write_var_or_type): New function, containing previous code from
3386         defunct write_var_from_name and name_lookup.
3387         (block_lookup): New function, moved from ada-lex.l
3388         (select_possible_type_sym): New function, factored out of
3389         name_lookup, which used to be in ada-lex.l.
3390         (find_primitive_type): Ditto.
3391         (chop_selector): Ditto.
3392         (write_ambiguous_var): New function, factored out of defunct
3393         write_var_from_name.
3394         (write_selectors): New function.
3395         (write_name_assoc): New function.
3396         (write_exp_op_with_string): New function.
3397
3398         * ada-lex.l (processId): Change interface to return stoken.
3399         (tempbuf, resize_tempbuf, tempbuf_size, tempbuf_len): Remove.
3400         (block_lookup, name_lookup): Remove.  Functionality moved to
3401         ada-exp.y.
3402         (state IN_STRING): Remove.
3403         (rules): Handle string escapes in processString.
3404         Add 'others' token.
3405         Return all NAMEs, BLOCKNAMEs, OBJECT_RENAMINGs, TYPENAMEs in
3406         yylval.sval (as simple strings).
3407         All name look-ups now handled in ada-exp.y.
3408         Introduce "::" (COLONCOLON) token and return as separate token.
3409         (processId): Change return convention.  Comment.
3410         Leave leading "'" in place.
3411         (processString): New function.
3412         (find_dot_all): Add note to comment.
3413         Fix problem that allowed match only at the end.
3414
3415         * ada-lang.c: Introduce aggregates.
3416         (find_struct_field): Add new parameter to count fields skipped, and
3417         allow other output parameters to be NULL.
3418         (value_tag_from_contents_and_address, ada_value_struct_elt): Use 
3419         new find_struct_field.
3420         (ada_index_struct_field, assign_aggregate, ada_is_array_type)
3421         (num_visible_fields, ada_index_struct_field_1, ada_index_struct_field)
3422         (num_component_specs, assign_component, assign_aggregate):
3423         (aggregate_assign_from_choices,aggregate_assign_positional)
3424         (aggregate_assign_others,add_component_interval):
3425         New functions.
3426         (ada_evaluate_subexp): Declare.
3427         Add aggregate-related operators.
3428         (ada_forward_operator_length): Declare.
3429         (resolve_subexp): Add cases for new aggregate operators and OP_NAME.
3430         Consolidate Ada operators, using ada_forward_operator_length.
3431         (ada_search_struct_field): Search in forward order.
3432         (ADA_OPERATORS): Add new aggregate operators.
3433         (ada_operator_length, ada_op_name, ada_forward_operator_length)
3434         (ada_dump_subexp_body, ada_print_subexp): Handle new aggregate 
3435         operators and OP_NAME.
3436         (ada_type_of_array): Use longest_to_int.
3437         (value_assign_to_component): New function.
3438         (ada_forward_operator_length, ada_op_name, ada_dump_subexp_body):
3439         Add OP_NAME case.
3440         (ada_forward_operator_length, ada_dump_subexp_body):
3441         Add OP_STRING case.
3442
3443         * ada-lang.h (enum ada_operator): Add OP_AGGREGATE, OP_OTHERS,
3444         OP_CHOICES, OP_DISCRETE_RANGE, OP_POSITIONAL.
3445
3446 2006-01-02  Paul N. Hilfinger  <[email protected]>
3447
3448         * ada-lang.c (process_raise_exception_name): Remove extraneous 
3449         definition from unsubmitted code.
3450
3451         (is_lower_alphanum): New function.
3452         (ada_decode):  Add support for decoding protected object subprograms
3453         and entries, and of entities declared inside protected object
3454         subprograms. 
3455         Also add missing handling for__{DIGITS}+ suffixes.
3456         Allow '$<digits>' as valid overloading suffix.
3457         (is_name_suffix): Add handling for protected type entriy suffixes.
3458         Also add support for protected type subprogram suffixes, but keep
3459         it commented out for now, as there is an ambiguity between these
3460         entities and other internally generated entities.
3461         Allow '$<digits>' as valid overloading suffix.
3462         (is_valid_name_for_wild_match): New function.
3463         (wild_match): Add an exra level of verification of the entity name
3464         before declaring it a match for the given pattern.
3465
3466         (ada_type_of_array, ada_evaluate_subexp): Use more proper 
3467         longest_to_int rather than cast.
3468
3469         (ada_evaluate_subexp): Use "invalid" rather than "illegal" in comment.
3470
3471         (ada_coerce_to_simple_array): Call check_size to make sure
3472         that the object size is reasonable.
3473
3474         (ada_value_primitive_packed_val):  Use correct location in target 
3475         buffer for extracting packed record fields that are themselves records.
3476
3477         (add_defn_to_vec): Do not try to replace a stub type by its full
3478         type. Avoids a potential infinite loop.
3479         
3480         (ada_lookup_symbol): Move return incorrectly placed return statement, 
3481         causing a loop that should be scanning all object files to only 
3482         scan the first one.
3483
3484         (ada_tag_name_2): New function.
3485         (ada_tag_name_1): If no 'tsd' field found in the dispatching table,
3486         use alternative representation.
3487
3488         (ada_find_renaming_symbol): Strip the function name suffix when 
3489         computing the XR type name.
3490
3491         (ada_to_fixed_type): Try determining the tag only if we have the
3492         object's address.
3493         (to_fixed_array_type): Add comments.
3494
3495         (ada_check_typedef): Replace expression checking whether the given
3496         type is a stub or not by a "call" to TYPE_STUB. Clearer and more
3497         consistent.
3498         
3499         * ada-lang.h (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Allow
3500         '$' in addition to '.' for runtime auxiliary function name suffixes.
3501         See changes to ada_decode above.
3502
3503         (struct task_control_block): Add field called_task.  (This change is
3504         to keep synchronized with our local sources; it does not affect the
3505         public version yet.)
3506
3507         * ada-typeprint.c (ada_print_type): Use int_string for printing
3508         modulus of modular type.
3509         
3510         (print_range): Trivial editorial comment fix.
3511
3512         * ada-valprint.c (ada_emit_char): Use normal Ada syntax for 
3513         double quote in string.
3514
3515 2006-01-01  Joel Brobecker  <[email protected]>
3516
3517         * top.c: Add 2006 to list of copyright years in file header.
3518
3519 2006-01-01  Joel Brobecker  <[email protected]>
3520
3521         * top.c (print_gdb_version): Update copyright year to 2006.
3522
3523 2006-01-01  Roger Sayle  <[email protected]>
3524             Elena Zannoni <[email protected]>
3525
3526         PR symtab/1651
3527         * xcoffread.c (xcoff_next_symbol_text): Check this_symtab_psymtab
3528         for NULL before assigning this_symtab_psymtab->objfile to objfile.
3529         (scan_xcoff_symtab): Initialize next_symbol_text_func.
3530         (Committed by Jim Blandy)
3531
3532 For older changes see ChangeLog-2005.
3533 \f
3534 Local Variables:
3535 mode: change-log
3536 left-margin: 8
3537 fill-column: 74
3538 version-control: never
3539 End:
This page took 0.232729 seconds and 4 git commands to generate.