* ppc-linux-nat.c (ppc_linux_stopped_data_address): Cast
[external/binutils.git] / gdb / ChangeLog
1 2007-10-02  Ulrich Weigand  <uweigand@de.ibm.com>
2
3         * ppc-linux-nat.c (ppc_linux_stopped_data_address): Cast
4         pointer to uintptr_t before casting to CORE_ADDR.
5
6 2007-10-02  Markus Deuling  <deuling@de.ibm.com>
7
8         * linux-nat.c (PTRACE_GETSIGINFO): Add define.
9
10 2007-10-02  Mark Mitchell  <mark@codesourcery.com>
11
12         * mingw-hdep.c (gdb_select): Stop helper threads before returning.
13         * ser-mingw.c (enum select_thread_state): New type.
14         (struct ser_console_state): Add have_started and thread_state.
15         (select_thread_wait): New function.
16         (thread_fn_type): New type.
17         (create_select_thread): New function.
18         (destroy_select_thread): Likewise.
19         (start_select_thread): Likewise.
20         (stop_select_thread): Likewise.
21         (console_select_thread): Use new functions.
22         (pipe_select_thread): Likewise.
23         (file_select_thread): Likewise.
24         (ser_console_wait_handle): Likewise.
25         (ser_console_done_wait_handle): Likewise.
26         (ser_console_close): Likewise.
27         (free_pipe_state): Likewise.
28         (pipe_wait_handle): Likewise.
29         (pipe_done_wait_handle): Likewise.
30         (struct net_windows_state): Derive from ser_console_state.
31         (net_windows_select_thread): Use new functions.
32         (net_windows_wait_handle): Likewise.
33         (net_windows_done_wait_handle): Likewise.
34         (net_windows_close): Likewise.
35
36 2007-10-02  Daniel Jacobowitz  <dan@codesourcery.com>
37
38         * inflow.c (terminal_ours_1): Remove useless line.
39
40 2007-10-02  Daniel Jacobowitz  <dan@codesourcery.com>
41
42         * mips-tdep.c (mips_read_fp_register_double): Correct check for
43         odd FP registers.
44         (mips_print_fp_register): Correct check for even FP registers.
45         (mips_virtual_frame_pointer): New function.
46         (mips_gdbarch_init): Call set_gdbarch_virtual_frame_pointer.
47
48 2007-09-30  Mike Frysinger  <vapier@gentoo.org>
49
50         * value.h (lookup_only_internalvar): New prototype.
51         (create_internalvar): Likewise.
52         * value.c (lookup_only_internalvar): New function.
53         (create_internalvar): Likewise.
54         (lookup_internalvar): Use new lookup_only_internalvar and
55         create_internalvar functions.
56         * parse.c (write_dollar_variable): Look up $ symbols in internal
57         table first rather than last.
58
59 2007-09-30  Daniel Jacobowitz  <dan@codesourcery.com>
60
61         * linux-nat.c (linux_nat_new_thread): New variable.
62         (linux_child_follow_fork): Set inferior_ptid to include LWP ID.  Use
63         linux_nat_switch_fork.
64         (lwp_list): Make public.
65         (add_lwp): Call linux_nat_new_thread.
66         (lin_lwp_attach_lwp, linux_nat_attach): Call add_lwp after stopping
67         the new thread.
68         (resume_callback): Clear lp->siginfo.  Remove unused variable.
69         (linux_nat_resume): Assert that the LWP list is already initialized.
70         Clear lp->siginfo.
71         (save_siginfo): New.
72         (stop_wait_callback, linux_nat_wait): Call it.
73         (linux_nat_set_new_thread, linux_nat_get_siginfo): New.
74         * linux-nat.h (struct lwp_info): Add siginfo.
75         (lwp_list, linux_nat_set_new_thread, linux_nat_get_siginfo): Declare.
76         (ALL_LWPS): Define.
77
78         * amd64-linux-nat.c (amd64_linux_dr): New.
79         (amd64_linux_dr_get): Take a PTID argument.  Correct typo.
80         (amd64_linux_dr_set): Take a PTID argument.
81         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use ALL_LWPS.
82         (amd64_linux_dr_reset_addr): Use amd64_linux_dr_set_addr.
83         (amd64_linux_dr_get_status): Pass inferior_ptid to amd64_linux_dr_get.
84         (amd64_linux_new_thread): New.
85         (_initialize_amd64_linux_nat): Call linux_nat_set_new_thread.
86         * i386-linux-nat.c (i386_linux_dr): New.
87         (i386_linux_dr_get, i386_linux_dr_set): Take a PTID argument.
88         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use ALL_LWPS.
89         (i386_linux_dr_reset_addr): Use i386_linux_dr_set_addr.
90         (i386_linux_dr_get_status): Pass inferior_ptid to i386_linux_dr_get.
91         (i386_linux_new_thread): New.
92         (i386_linux_resume): Remove unnecessary PID check.
93         (_initialize_i386_linux_nat): Call linux_nat_set_new_thread.
94         * ia64-linux-nat.c (enable_watchpoints_in_psr): Take PTID argument.
95         (fetch_debug_register, fetch_debug_register_pair): Delete.
96         (debug_registers): New.
97         (ia64_linux_insert_watchpoint, ia64_linux_remove_watchpoint): Use
98         ALL_LWPS and debug_registers.
99         (ia64_linux_new_thread): New.
100         (ia64_linux_stopped_data_address): Use linux_nat_get_siginfo.
101         (_initialize_ia64_linux_nat): Call linux_nat_set_new_thread.
102         * ppc-linux-nat.c (last_stopped_data_address): Delete.
103         (saved_dabr_value): New.
104         (ppc_linux_insert_watchpoint, ppc_linux_remove_watchpoint): Use
105         ALL_LWPS.
106         (ppc_linux_new_thread): New.
107         (ppc_linux_stopped_data_address): Use linux_nat_get_siginfo.
108         (ppc_linux_stopped_by_watchpoint): Call ppc_linux_stopped_data_address.
109         (_initialize_ppc_linux_nat): Call linux_nat_set_new_thread.
110         * s390-nat.c (s390_stopped_by_watchpoint): Clear the watchpoint status
111         after reading it.
112         (s390_fix_watch_points): Take a PTID argument.
113         (s390_insert_watchpoint, s390_remove_watchpoint): Use ALL_LWPS.
114         (_initialize_s390_nat): Call linux_nat_set_new_thread.
115
116 2007-09-30  Daniel Jacobowitz  <dan@codesourcery.com>
117             Jeff Johnston  <jjohnstn@redhat.com>
118
119         * breakpoint.c (watchpoints_triggered): New.
120         (bpstat_stop_status): Remove STOPPED_BY_WATCHPOINT argument.
121         Check watchpoint_triggered instead.  Combine handling for software
122         and hardware watchpoints.  Do not use target_stopped_data_address
123         here.  Always check a watchpoint if its scope breakpoint triggers.
124         Do not stop for thread or overlay events.  Improve check for
125         triggered watchpoints without a value change.
126         (watch_command_1): Insert the scope breakpoint first.  Link the
127         scope breakpoint to the watchpoint.
128         * breakpoint.h (enum watchpoint_triggered): New.
129         (struct breakpoint): Add watchpoint_triggered.
130         (bpstat_stop_status): Update prototype.
131         (watchpoints_triggered): Declare.
132         * infrun.c (enum infwait_status): Add infwait_step_watch_state.
133         (stepped_after_stopped_by_watchpoint): Delete.
134         (handle_inferior_event): Make stepped_after_stopped_by_watchpoint
135         local.  Handle infwait_step_watch_state.  Update calls to
136         bpstat_stop_status.  Use watchpoints_triggered to check
137         watchpoints.
138         * remote.c (stepped_after_stopped_by_watchpoint): Remove extern.
139         (remote_stopped_data_address): Do not check it.
140
141 2007-09-29  Daniel Jacobowitz  <dan@codesourcery.com>
142
143         * configure.ac: Add $LIBINTL when testing libbfd.
144         * configure: Regenerated.
145
146 2007-09-28  Vladimir Prus  <vladimir@codesourcery.com>
147
148         * NEW: Mention pending breakpoint changes and
149         support for breakpoints at multiple locations.
150         
151 2007-09-27  Daniel Jacobowitz  <dan@codesourcery.com>
152
153         * arm-linux-tdep.c (arm_linux_software_single_step): New.
154         (arm_linux_init_abi): Use it.
155         * arm-tdep.c (arm_get_next_pc): Make global.  Handle all-ones
156         condition correctly.
157         * arm-tdep.h (arm_get_next_pc): Declare.
158         * Makefile.in (arm-linux-tdep.o): Update.
159
160 2007-09-26  Vladimir Prus  <vladimir@codesourcery.com>
161
162         * varobj.c (install_new_value): Don't
163         call value_get_print_value when a value is
164         lazy.  Update the print_value member in a
165         single place.
166
167 2007-09-26  Vladimir Prus  <vladimir@codesourcery.com>
168
169         * breakpoint.c (create_breakpoint): Set
170         condition on each location, not on the first
171         location of breakpoint.
172         
173 2007-09-26  Jim Blandy  <jimb@codesourcery.com>
174
175         * remote.c (getpkt_sane): Fix error message.  No animals were
176         harmed in the making of this debugger.
177
178 2007-09-26  Pierre Muller  <muller@ics.u-strasbg.fr>
179
180         * p-typeprint.c: Fix 11 ARI reported problems.
181         (pascal_print_type): Fix 4 operator at end of line.
182         (pascal_type_print_method_args) : Replace 2 DEPRECATED_STREQN macros 
183         using strncmp function.
184         (pascal_type_print_base): Fix 2 operator at end of line.
185         (pascal_type_print_base) : Replace 3 DEPRECATED_STREQN macros 
186         using strncmp function.
187
188
189 2007-09-26  Pierre Muller  <muller@ics.u-strasbg.fr>
190
191         * Fix PR pascal/2231
192         dwarf2read.c (read_subroutine_type): 
193         All pascal functions are prototyped. 
194
195 2007-09-26  Pierre Muller  <muller@ics.u-strasbg.fr>
196
197         * Fix PR pascal/2283
198         p-valprint.c (pascal_val_print): correct current language check.
199         Also print array of char as strings.
200
201
202 2007-09-26  David Ung  <davidu@mips.com>
203             Maciej W. Rozycki  <macro@mips.com>
204
205         * mips-tdep.c (mips_n32n64_return_value): Fix a comment.
206
207 2007-09-25  Pierre Muller  <muller@ics.u-strasbg.fr>
208
209         * p-exp.y: Fix 12 ARI reported problems.
210         (name_not_typename): Fix 2 operator at end of line issues.
211         (yylex): Fix 3 operator at end of line issues.
212         Replace 7 DEPRECATED_STREQ macros using strcmp function.
213
214 2007-09-25  David Ung  <davidu@mips.com>
215             Maciej W. Rozycki  <macro@mips.com>
216
217         * mips-tdep.c (mips_n32n64_return_value): Per N32/N64 ABI
218         rules return composite types in registers as appropriate.
219
220 2007-09-24  Jim Blandy  <jimb@codesourcery.com>
221
222         * symfile.h (struct symfile_segment_data): Doc fixes.
223         * symfile.c (symfile_map_offsets_to_segments): Doc fixes.
224         Assert that we were passed some loaded segment addresses,
225         and that sections' segment numbers are valid.
226         Simplify offset calculation.
227         * remote.c (get_offsets): Clarify selection of relocate-by-segment
228         strategy, and set num_segments correctly.  Delete redundant
229         assignments to do_sections.
230
231 2007-09-24  Daniel Jacobowitz  <dan@codesourcery.com>
232
233         * frame.c (get_prev_frame_1): Also check for PC in the same register.
234
235 2007-09-24  Vladimir Prus  <vladimir@codesourcery.com>
236         
237         * breakpoint.c (remove_sal): New.
238         (expand_line_sal_maybe): New.
239         (create_breakpoints): Call expand_line_sal_maybe.
240         (clear_command): Add comment.
241         (breakpoint_re_set_one): Call expand_line_sal_maybe.
242         * linespec.c (decode_indirect): Set explicit_pc to 1.
243         (decode_all_digits): Set explicit_line to 1.
244         (append_expanded_sal): New.
245         (expand_line_sal): New.
246         * linespec.h (expand_line_sal): Declare.
247         * symtab.c (init_sal): Initialize explicit_pc 
248         and explicit_line.
249         * symtab.h (struct symtab_and_line): New fields
250         explicit_pc and explicit_line.  
251
252 2007-09-23  Daniel Jacobowitz  <dan@codesourcery.com>
253
254         * infcall.c (call_function_by_hand): Handle language-specific
255         pass and return by reference.
256
257         * cp-abi.c (cp_pass_by_reference): New.
258         * cp-abi.h (cp_pass_by_reference): Declare.
259         (struct cp_abi_ops): Add pass_by_reference.
260         * gnu-v3-abi.c (gnuv3_pass_by_reference): New.
261         (init_gnuv3_ops): Set pass_by_reference.
262
263         * language.c (language_pass_by_reference): New.
264         (default_pass_by_reference): New.
265         (unknown_language_defn, auto_language_defn, local_language_defn): Add
266         default_pass_by_reference.
267         * langauge.h (struct language_defn): Add la_pass_by_reference.
268         (language_pass_by_reference, default_pass_by_reference): Declare.
269         * ada-lang.c (ada_language_defn): Add default_pass_by_reference.
270         * c-lang.c (c_language_defn, asm_language_defn)
271         (minimal_language_defn): Likewise.
272         (cplus_language_defn): Add cp_pass_by_reference.
273         * f-lang.c (f_language_defn): Add default_pass_by_reference.
274         * jv-lang.c (java_language_defn): Likewise.
275         * m2-lang.c (m2_language_defn): Likewise.
276         * objc-lang.c (objc_language_defn): Likewise.
277         * p-lang.c (pascal_language_defn): Likewise.
278         * scm-lang.c (scm_language_defn): Likewise
279
280 2007-09-23  Vladimir Prus  <vladimir@codesourcery.com>
281
282         Allow a code breakpoint to have several locations
283         associated with it.
284         * breakpoint.h (enum enable_state): Remove the
285         bp_shlib_disabled enumerator. 
286         (struct bp_location): New members shlib_disabled,
287         global_next, enabled and function_name.
288         Rename pending to condition_not_parsed.
289
290         * breakpoint.c (ALL_BP_LOCATIONS): Iterate over global_next.
291         (ALL_BP_LOCATIONS_SAFE): Likewise.
292         (breakpoint_enabled): Don't check for pending.
293         (condition_command): Free and update all locations of
294         a breakpoint.
295         (insert_bp_location): Adjust.
296         (software_breakpoint_inserted_here_p): Don't care
297         if breakpoint is enabled, as soon as it's inserted.
298         (print_it_typical): Print bpstat's location, not
299         bpstat's breakpoint's location.
300         (bpstat_stop_status): Iterate over all locations, not
301         all breakpoints.
302         (print_breakpoint_location): New.
303         (print_one_breakpoint): Renamed to
304         (print_one_breakpoint_location): ...this. Take
305         parameters to describe which location is being
306         printed. Modify code to properly print header
307         for several locations and individual locations.
308         (print_one_breakpoint): Print all locations.
309         (breakpoint_has_pc): New.
310         (describe_other_breakpoints): Use the above.
311         (check_duplicates): Renamed to...
312         (check_duplicates_for): .. this.
313         (check_duplicates): Use check_duplicates_for.
314         (allocate_bp_location): Adjust.
315         (set_raw_breakpoint_without_location): New,
316         extracted from set_raw_breakpoint.
317         (set_breakpoint_location_function): New.
318         (set_raw_breakpoint): Use 
319         set_raw_breakpoint_without_location.
320         (make_breakpoint_permanent): Mark all locations
321         as inserted.
322         (disable_breakpoints_in_shlibs): Iterate over
323         locations.
324         (disable_breakpoints_in_unloaded_shlib): Likewise.
325         (re_enable_breakpoints_in_shlibs): Likewise.
326         (mention): Say "pending" when breakpoint has
327         zero locations.  If breakpoint has more than one
328         location, say so.
329         (add_location_to_breakpoint): New.
330         (create_breakpoint): Accept symtabs_and_lines, not
331         symtab_and_line. Pass extra sals to 
332         add_location_to_breakpoint.
333         (create_breakpoints): Pass symtabs_and_lines to
334         create_breakpoints.
335         (break_command_1): Make pending breakpoints
336         have zero locations.
337         (do_captured_breakpoint): Remove wrong allocation.
338         (clear_command): Iterate over all locations.
339         (unlink_locations_from_global_list): Renamed
340         from unlink_location_from_global_list. Remove
341         all locations.
342         (delete_breakpoint): Remove all locations.
343         Iterate over all locations when deciding which
344         other location to re-enable.
345         (all_locations_are_pending): New.
346         (update_breakpoint_locations): Renamed from
347         update_breakpoint_location. Try to match old
348         and new locations using names of containing
349         functions.
350         (breakpoint_re_set_one): Adjust.
351         (find_location_by_number): New.
352         (disable_command): Allow disabling individual location.
353         (enable_command): Allow enabling individual location.
354         * breakpoint.c: Adjust all uses of breakpoint's
355         enable state to for bp_shlib_disabled change.
356         
357 2007-09-22  Vladimir Prus  <vladimir@codesourcery.com>
358
359         * breakpoint.c (do_restore_lang_radix_cleanup): Remove.
360         (resolve_pending_breakpoint): Remove.
361         (re_enable_breakpoints_in_shlibs): Remove.
362         (unlink_locations_from_global_list): New.
363         (update_breakpoint_locations): New.
364         (breakpoint_re_set_one): Don't bail out on pending breakpoints.
365         Use parse_condition and update_breakpoint_location to
366         reset breakpoint.  Ignore 'symbol not found' error from
367         decode_line_1.
368         (breakpoint_re_set): Don't emit newline before the
369         reason why breakpoint is not reset.
370         (do_enable_breakpoint): Don't specially process pending
371         breakpoints.
372         (free_bp_location): New.
373         (break_command_1): For pending breakpoints, initialize
374         all fields of a sal with zeroes.
375         * breakpoint.h (re_enable_breakpoints_in_shlibs): Remove.
376         * infcmd.c (post_create_inferior): Don't call
377         re_enable_breakpoints_in_shlibs.
378         * infrun.c (handle_inferior_event): Likewise.
379         * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
380         * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
381         * win32-nat.c (get_win32_debug_event): Likewise.
382         
383 2007-09-22  Vladimir Prus  <vladimir@codesourcery.com>
384
385         * breakpoint.c (create_breakpoint): Split from
386         create_breakpoints, implementing most of its logic.
387         Take just a single sal, single address string and
388         single condition.  Do not take parsed condition at
389         all.
390         (create_breakpoints): Just call create_breakpoint
391         for each sal.
392         (find_condition_and_thread): New.
393         (break_command_1): Use find_condition_and_thread.
394         Do not keep parsed conditions.
395         (do_captured_breakpoint): Don't convert
396         condition string to struct expression.
397         
398 2007-09-22  Vladimir Prus  <vladimir@codesourcery.com>
399
400         * breakpoint.h (struct breakpoint): Move the cond 
401         field to...
402         (struct bp_location): Here.
403         * breakpoint.c (condition_command, bpstat_stop_status)
404         (print_one_breakpoint, allocate_bp_location)
405         (solib_load_unload_1, create_fork_vfork_event_catchpoint)
406         (create_exec_event_catchpoint, create_breakpoints)
407         (break_command_1, watch_command_1, handle_gnu_v3_exceptions)
408         (create_ada_exception_breakpoint, set_breakpoint_sal)
409         (delete_breakpoint, breakpoint_re_set_one): Adjust.
410         * tui/tui-winsource.c (tui_update_breakpoint_info): Adjust.
411         
412 2007-09-22  Vladimir Prus  <vladimir@codesourcery.com>
413
414         Associate bp_stat with bp_location, not breakpoint.
415         * breakpoint.h (breakpoint_at): Change type
416         to bp_location*.
417         * breakpoint.c (bpstat_alloc): Take bp_location,
418         not breakpoint.
419         (bpstat_find_breakpoint): Look at bpstat's location's
420         owner, not at bpstat->breakpoint_at.
421         (bpstat_find_step_resume_breakpoint): Likewise.
422         (bpstat_num): Likewise.
423         (print_it_typical): Likewise.
424         (print_bp_stop_message): Likewise.
425         (watchpoint_check): Likewise.
426         (bpstat_what): Likewise.
427         (bpstat_get_triggered_catchpoints): Likewise.
428         (breakpoint_auto_delete): Likewise.
429         (delete_breakpoint): Likewise.  
430         (bpstat_stop_status): Pass location, not breakpoint,
431         to bpstat_alloc.  Look at bpstat's location's
432         owner, not at bpstat->breakpoint_at.
433
434 2007-09-21  Jim Blandy  <jimb@codesourcery.com>
435
436         * macrotab.h (new_macro_table): Document that removing information
437         from an obstack/bcache-managed macro table leaks memory.
438         * macrotab.c (macro_free, macro_bcache_free): Instead of asserting
439         that data is never freed in obstack/bcache-managed macro tables,
440         just leak the storage.
441         (macro_undef): If we're undefining a macro at exactly the same
442         source location that we defined it, simply remove the definition
443         altogether.
444
445 2007-09-21  Joel Brobecker  <brobecker@adacore.com>
446
447         * symfile.h (struct sym_fns): Add new field sym_read_linetable.
448         * coffread.c, dbxread.c, elfread.c, mipsread.c somread.c:
449         Adjust the struct sym_fns object accordingly by setting
450         the new field to NULL.
451         * xcoffread.c (aix_process_linenos): Make static.
452         (xcoff_sym_fns): Set new field to aix_process_linenos.
453         * buildsym.c (end_symtab): Replace call to PROCESS_LINENUMBER_HOOK
454         by call to new the new sym_fns sym_read_linetable function.
455         * config/powerpc/aix.mt (DEPRECATED_TM_FILE): Delete.
456         * config/rs6000/tm-rs6000.h: Delete.
457
458 2007-09-21  David Ung  <davidu@mips.com>
459             Maciej W. Rozycki  <macro@mips.com>
460
461         * mips-tdep.c (mips_n32n64_push_dummy_call): Per N32/N64 ABI
462         rules do not treat composite types specially.
463
464 2007-09-20  Maciej W. Rozycki  <macro@mips.com>
465
466         * mips-tdep.c (mips32_in_function_epilogue_p): New function.
467         (mips16_in_function_epilogue_p): Likewise.
468         (mips_in_function_epilogue_p): Likewise.
469         (mips_gdbarch_init): Register mips_in_function_epilogue_p().
470
471 2007-09-19  Joel Brobecker  <brobecker@adacore.com>
472
473         * configure.ac: Add check for "etext".
474         * configure, config.in: Regenerate.
475         * maint.c (TEXTEND): Only define if either _etext or etext
476         are available.
477         Disable the profiling functionality if TEXTEND is not defined.
478
479 2007-09-19  Daniel Jacobowitz  <dan@codesourcery.com>
480
481         * mips-tdep.c (mips_stub_frame_cache): Correct the saved return
482         address register.  Correct the call to frame_id_build.
483         (mips_stub_frame_sniffer): Use the stub unwinder when the PC
484         is invalid.
485
486 2007-09-18  Joel Brobecker  <brobecker@adacore.com>
487
488         * ia64-tdep.c (refine_prologue_limit): Make sure we don't scan
489         the linetable past the function end.
490
491 2007-09-18  James E. Wilson  <wilson@specifix.com>
492
493         * MAINTAINERS: Update my email address.
494
495 2007-09-18  Jerome Guitton  <guitton@adacore.com>
496
497         * inf-ttrace.c (inf_ttrace_private_thread_info): New structure type.
498         (inf_ttrace_delete_dying_threads_callback): New function.
499         (inf_ttrace_resume): After resuming the execution, iterate over
500         the dying threads to delete them for the thread list.
501         (inf_ttrace_wait): on TTEVT_LWP_EXIT and TTEVT_LWP_TERMINATE,
502         mark the corresponding thread as dying instead of removing it
503         from the thread list.
504         (inf_ttrace_thread_alive): return 0 for dying threads.
505
506 2007-09-17  Joel Brobecker  <brobecker@adacore.com>
507
508         * infrun.c (insert_step_resume_breakpoint_at_frame): Add assertion
509         that return_frame is not null.
510
511 2007-09-17  Joel Brobecker  <brobecker@adacore.com>
512
513         * solib-svr4.c: Add include of "auxv.h".
514         (enable_break): Use the AT_BASE auxiliary entry if available.
515         * Makefile.in (solib-svr4.o): Update dependencies.
516
517 2007-09-17  Joel Brobecker  <brobecker@adacore.com>
518
519         * NEWS: Create a new section for the next release branch.
520         Rename the section of the current branch, now that it has
521         been cut.
522
523 2007-09-17  Jerome Guitton  <guitton@adacore.com>
524
525         * dwarf2loc.c (dwarf_expr_frame_base): Guard against NULL.
526         * Makefile.in (dwarf2loc.o): Depend on gdb_assert.h.
527
528 2007-09-16  Vladimir Prus  <vladimir@codesourcery.com>
529
530         * mi/mi-cmds.c (mi_cmds): Register -list-features.
531         * mi/mi-cmds.h (mi_cmd_list_features): New.
532         * mi/mi-main.c (mi_cmd_list_features): New.
533         
534 2007-09-11  Joel Brobecker  <brobecker@adacore.com>
535
536         GDB 6.7 branch created (branch timestamp: 2007-09-07 14:00 UTC)
537         * version.in: Bump version to 6.7.50-20070911-cvs.
538
539 2007-09-10  Daniel Jacobowitz  <dan@codesourcery.com>
540
541         * thread.c (free_thread): Do not delete the step resume breakpoint
542         right away.
543
544 2007-09-10  Daniel Jacobowitz  <dan@codesourcery.com>
545
546         * arch-utils.c (gdbarch_info_fill): Also try core_bfd.
547         * corelow.c (core_read_description): New.
548         (init_core_ops): Set to_read_description.
549         * gdbarch.sh: Add gdbarch_core_read_description.
550         * mips-linux-tdep.c (mips_linux_core_read_description): New.
551         (mips_linux_init_abi): Call set_gdbarch_core_read_description.
552         * mips-tdep.c (mips_tdesc_gp32, mips_tdesc_gp64): New.
553         (mips_register_g_packet_guesses): Use them.
554         (_initialize_mips_tdep): Initialize them.
555         * mips-tdep.h (mips_tdesc_gp32, mips_tdesc_gp64): Declare.
556         * gdbarch.h, gdbarch.c: Regenerated.
557
558 2007-09-10  Ulrich Weigand  <uweigand@de.ibm.com>
559
560         * infrun.c (stepping_past_breakpoint): New global variable.
561         (stepping_past_breakpoint_ptid): Likewise.
562         (prepare_to_proceed): Add STEP parameter.  Do not check for Ctrl-C.
563         Only switch threads if we need to single-step over a breakpoint hit
564         in the previously selected thread.  If stepping, remember previous
565         thread to switch back to in STEPPING_PAST_BREAKPOINT[_PTID].  Call
566         switch_to_thread instead of copying its contents.
567         (proceed): Pass STEP to prepare_to_proceed.  Always set ONEPROC if
568         prepare_to_proceed returns true.
569         (init_wait_for_inferior): Reset STEPPING_PAST_BREAKPOINT.
570         (context_switch): Call switch_to_thread.
571         (handle_inferior_event): Switch back to previous thread if requested
572         in STEPPING_PAST_BREAKPOINT[_PTID] by prepare_to_proceed.
573         * gdbthread.h (switch_to_thread): Add prototype.
574         * thread.c (switch_to_thread): Make global.
575
576 2007-09-07  Pierre Muller  <muller@ics.u-strasbg.fr>
577
578          * p-valprint.c: Fix 7 ARI reported problems.
579          (pascal_val_print): Fix one operator at end of line issue.
580          Use paddress function to remove use of
581          deprecated_print_address_numeric function (2 times).
582          Use SYMBOL_LINKAGE_NAME instead of DEPRECATED_SYMBOL_NAME.
583          (pascal_value_print): Fix 3 operator at end of line issues.
584
585 2007-09-07  Daniel Jacobowitz  <dan@codesourcery.com>
586
587         PR gdb/2103
588         * arm-tdep.c (arm_in_call_stub): Delete.
589         (arm_skip_stub): Handle from_arm and from_thumb stubs.
590
591 2007-09-06  Daniel Jacobowitz  <dan@codesourcery.com>
592
593         * ppc-sysv-tdep.c (do_ppc_sysv_return_value): Handle other integer
594         types.
595
596 2007-09-04  Daniel Jacobowitz  <dan@codesourcery.com>
597             Jim Blandy  <jimb@codesourcery.com>
598
599         * NEWS: Update description of string changes.  Mention print/s.
600         * c-valprint.c (textual_element_type): New.
601         (c_val_print): Use it.  Do not skip address printing for pointers
602         with a string format.
603         (c_value_print): Doc update.
604         * dwarf2read.c (read_array_type): Use make_vector_type.
605         * gdbtypes.c (make_vector_type): New.
606         (init_vector_type): Use it.
607         (gdbtypes_post_init): Initialize builtin_true_unsigned_char.
608         (_initialize_gdbtypes): Mark int8_t and uint8_t as TYPE_FLAG_NOTTEXT.
609         * gdbtypes.h (struct builtin_type): Add builtin_true_unsigned_char.
610         (TYPE_FLAG_NOTTEXT, TYPE_NOTTEXT): New.
611         (make_vector_type): New.
612         * printcmd.c (print_formatted): Only handle 's' and 'i' for examine.
613         Call the language print routine for string format.
614         (print_scalar_formatted): Call val_print for string format.  Handle
615         unsigned original types for char format.
616         (validate_format): Do not reject string format.
617         * stabsread.c (read_type): Use make_vector_type.
618         * xml-tdesc.c (tdesc_start_vector): Use init_vector_type.
619
620 2007-09-04  Michael Snyder  <msnyder@access-company.com>
621
622         * expprint.c (print_subexp_standard): Check strchr for null.
623         * Makefile.in (expprint.o): Depend on gdb_assert.h.
624
625         * gnu-v2-abi.c (gnuv2_value_rtti_type): Guard against null.
626
627         * stabsread.c (patch_block_status): Guard against null.
628         * Makefile.in (stabsread.o): Depend on gdb_assert.h.
629
630 2007-09-04  Daniel Jacobowitz  <dan@codesourcery.com>
631
632         * printcmd.c (printf_command): Handle ptr_arg.  Correct typo
633         in internal error message.
634
635 2007-09-04  Pedro Alves  <pedro_alves@portugalmail.pt>
636             Daniel Jacobowitz  <dan@codesourcery.com>
637
638         * infcmd.c (post_create_inferior): Update comment.
639         (run_command_1): Always call post_create_inferior with 0 as
640         from_tty.
641
642         * i386-cygwin-tdep.h: New.
643         * i386-cygwin-tdep.c: Include "i386-cygwin-tdep.h".
644         (win32_xfer_shared_library): Make it extern.
645
646         * win32-nat.c: Include gdb_obstack.h and xml-support.h and
647         i386-cygwin-tdep.h.
648         (win32_so_ops): Delete.
649         (get_relocated_section_addrs): Delete.
650         (solib_symbols_add): Delete.
651         (register_loaded_dll): Delete.
652         (win32_make_so): New.
653         (handle_load_dll): Use win32_make_so.
654         (win32_free_so): Free the passed in so.
655         (win32_relocate_section_addresses): Delete.
656         (win32_solib_create_inferior_hook): Delete.
657         (handle_unload_dll): Don't add PE offset here.  Free so with
658         win32_free_so instead of free_so.
659         (win32_special_symbol_handling): Delete.
660         (get_win32_debug_event): Remove unneeded calls.  Set state to
661         TARGET_WAITKIND_LOADED on a dll unload.
662         (do_initial_win32_stuff): Clear cygwin_load_start and
663         cygwin_load_end.
664         (map_code_section_args): Delete.
665         (dll_code_sections_add): Delete.
666         (core_section_load_dll_symbols): Delete.
667         (win32_xfer_shared_libraries): New.
668         (win32_current_sos): Delete.
669         (win32_xfer_partial): New.
670         (open_symbol_file_object): Delete.
671         (in_dynsym_resolve_code): Delete.
672         (init_win32_ops): Set win32_xfer_partial as to_xfer_partial member
673         of win32_ops.  Remove win32_so_ops settings.  Don't set
674         current_target_so_ops here.
675
676         * Makefile.in (i386_cygwin_tdep_h): New variable.
677         (i386-cygwin-tdep.o): Update dependencies.
678         (win32-nat.o): Update dependencies.
679
680 2007-09-04  Pedro Alves  <pedro_alves@portugalmail.pt>
681             Daniel Jacobowitz  <dan@codesourcery.com>
682
683         * gdbarch.sh (core_xfer_shared_libraries): New.
684
685         * corelow.c (core_xfer_partial): Handle TARGET_OBJECT_LIBRARIES.
686
687         * gdb_obstack.h (obstack_grow_str, obstack_grow_str0): New.
688
689         * xml-support.c (gdb_xml_parse): Debug output tweaks.
690         (xml_escape_text): New.
691         * xml-support.h (xml_escape_text): Declare.
692
693         * config/i386/cygwin.mh (NATDEPFILES): Move corelow.o to ...
694         * config/i386/cygwin.mt (TDEPFILES): ... here.
695
696         * win32-nat.c: (fetch_elf_core_registers): Delete.
697         (win32_elf_core_fn): Delete.
698         (_initialize_core_win32): Delete.
699
700         * i386-cygwin-tdep.c: Include "regset.h", "gdb_objstack.h",
701         "xml-support.h" and "gdbcore.h".
702         (i386_win32_gregset_reg_offset): New.
703         (I386_WIN32_SIZEOF_GREGSET): New.
704         (i386_win32_regset_from_core_section): New.
705         (win32_xfer_shared_library): New.
706         (struct cpms_data): New.
707         (core_process_module_section): New.
708         (win32_core_xfer_shared_libraries): New.
709         (i386_cygwin_skip_trampoline_code): Register gregset_reg_offset,
710         gregset_num_regs, sizeof_gregset members of tdep.  Register
711         regset_from_core_section and core_xfer_shared_libraries callbacks.
712
713         * Makefile.in (i386-cygwin-tdep.o): Update dependencies.
714         * gdbarch.h, gdbarch.c: Regenerate.
715
716 2007-09-03  Daniel Jacobowitz  <dan@codesourcery.com>
717
718         * corelow.c (core_xfer_partial): Pass writebuf to
719         deprecated_xfer_memory in TARGET_OBJECT_MEMORY write case.
720
721 2007-09-03  Pedro Alves  <pedro_alves@portugalmail.pt>
722
723         * arm-tdep.h (arm_skip_stub): Declare.
724         * arm-wince-tdep.c: Don't include "solib-svr4.h".  Include
725         "gdbcore.h".
726         (arm_pe_skip_trampoline_code): New function.
727         (arm_wince_init_abi): Register arm_pe_skip_trampoline_code as
728         gdbarch_skip_trampoline_code callback.
729         * Makefile.in (arm-wince-tdep.o): Update dependencies.
730
731 2007-09-03  Daniel Jacobowitz  <dan@codesourcery.com>
732
733         * MAINTAINERS: Move Fred Fish to Past Maintainers.
734
735 2007-09-03  Daniel Jacobowitz  <dan@codesourcery.com>
736
737         * configure.ac: Add --with-expat.
738         * configure: Regenerated.
739
740 2007-09-03  Andreas Schwab  <schwab@suse.de>
741
742         * configure.ac: Accept --with-system-readline.
743         (READLINE, READLINE_DEPS, READLINE_CFLAGS): Define and substitute.
744         * configure: Regenerate.
745         * Makefile.in (READLINE, READLINE_DEPS, READLINE_CFLAGS): Use
746         substituted values.
747         (CDEPS): Use $(READLINE_DEPS) instead of $(READLINE).
748
749 2007-09-03  Maxim Grigoriev  <maxim2405@gmail.com>
750             Daniel Jacobowitz  <dan@codesourcery.com>
751
752         * mi-main.c (mi_load_progress): Handle MI2 and MI3 interpreters.
753
754 2007-09-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
755
756         * top.c (print_gdb_version): Fixed a string end-of-line compiler error.
757
758 2007-09-02  Daniel Jacobowitz  <dan@codesourcery.com>
759
760         * top.c (print_gdb_version): Update for GPL version 3.
761
762 2007-09-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
763
764         * NEWS: Mention the build-id .debug files verification.
765
766 2007-09-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
767
768         * linux-nat.c (linux_nat_make_corefile_notes): Fixed a buffer overflow.
769
770 2007-09-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
771
772         * Makefile.in (symfile.o): Update dependencies.
773         * symfile.c (symbol_file_add_with_addrs_or_offsets): Initialize the
774         DEBUGFILE variable.  FIND_SEPARATE_DEBUG_FILE called only if !PSYMTABS.
775         (struct build_id): New structure.
776         (build_id_bfd_get, build_id_verify, build_id_to_debug_filename): New.
777         (find_separate_debug_file): New variable BUILD_ID.
778         Call BUILD_ID_BFD_GET with BUILD_ID_TO_DEBUG_FILENAME as the first try.
779
780 2007-08-31  Vladimir Prus  <vladimir@codesourcery.com>
781
782         * varobj.c (struct varobj): Fix comment
783         for the type member not to lie when it can be 
784         NULL.
785         
786 2007-08-31  Vladimir Prus  <vladimir@codesourcery.com>
787
788         Implement -var-info-path-expression.
789
790         * mi/mi-cmds.h (mi_cmd_var_info_path_expression):
791         Declare.
792         * mi/mi-cmds.c (mi_cmds): Register var-info-path-expression.
793         * mi/mi-cmd-var.c (mi_cmd_var_info_path_expression): New.
794         * varobj.c (struct varobj): New field 'path_expr'.
795         (c_path_expr_of_child, cplus_path_expr_of_child)
796         (java_path_expr_of_child): New.
797         (struct language_specific): New field path_expr_of_child.
798         (varobj_create): Initialize the path_expr field.
799         (varobj_get_path_expr): New.
800         (new_variable): Initialize the path_expr field.
801         (free_variable): Free the path_expr field.
802         (adjust_value_for_children_access): New parameter
803         WAS_TYPE.
804         (c_number_of_children): Adjust.
805         (c_describe_child): New parameter CFULL_EXPRESSION.
806         Compute full expression.
807         (c_value_of_child, c_type_of_child): Adjust.
808         (cplus_number_of_children): Adjust.
809         (cplus_describe_child): New parameter CFULL_EXPRESSION.
810         Compute full expression.
811         (cplus_name_of_child, cplus_value_of_child)
812         (cplus_type_of_child): Adjust.
813         * varobj.h (varobj_get_path_expr): Declare.
814
815 2007-08-31  Vladimir Prus  <vladimir@codesourcery.com>
816
817         * mi/mi-cmd-var.c (print_varobj): If a varobj
818         type is NULL, don't try to print it.
819         
820 2007-08-30  Alan Modra  <amodra@bigpond.net.au>
821
822         * ppc-linux-nat.c (right_fill_reg): Delete.
823         (supply_gregset): Use ppc_supply_gregset.
824         (supply_fpregset): Use ppc_supply_fpregset.
825         (fill_gregset): Use ppc_collect_gregset.
826         (fill_fpregset): Use ppc_collect_fpregset.
827         * ppc-linux-tdep.c (PPC_LINUX_PT_*): Don't define.
828         (right_supply_register, ppc_linux_supply_gregset): Delete.
829         (ppc32_linux_supply_gregset, ppc64_linux_supply_gregset): Delete.
830         (ppc_linux_supply_fpregset): Delete.
831         (ppc_linux_collect_gregset): New function.
832         (ppc32_linux_reg_offsets, ppc64_linux_reg_offsets): New.
833         (ppc32_linux_gregset, ppc64_linux_gregset): Update to use reg offsets,
834         ppc_linux_supply_gregset, and ppc_collect_gregset.
835         (ppc_linux_fpregset): Rename to ppc32_linux_fpregset and update.
836         (ppc_linux_gregset, ppc_linux_fpregset): New functions.
837         (ppc_linux_regset_from_core_section): Update.
838         * ppc-tdep.h (ppc_linux_gregset, ppc_linux_fpregset): Declare.
839         (ppc_linux_supply_gregset, ppc_linux_supply_fpregset): Delete.
840         (struct ppc_reg_offsets): Add gpr_size, xr_size, fpscr_size fields.
841         * ppcobsd-tdep.c (ppcobsd_supply_gregset): Delete FIXME and assert.
842         (ppcobsd_collect_gregset): Likewise.
843         (_initialize_ppcnbsd_tdep): Init gpr_size, xr_size, fpscr_size.
844         * ppcnbsd-tdep.c (_initialize_ppcobsd_tdep): Likewise.
845         * ppcobsd-nat.c (_initialize_ppcobsd_nat): Likewise.
846         * rs6000-aix-tdep.c (rs6000_aix32_reg_offsets): Likewise.
847         (rs6000_aix64_reg_offsets): Likewise.
848         (rs6000_aix_supply_regset): Call ppc_supply_fpregset without testing
849         ppc_floating_point_unit_p.
850         (rs6000_aix_collect_regset): Similarly.
851         * rs6000-tdep.c (ppc_supply_reg): Add regsize param.  Adjust offset
852         when regsize is larger than regcache register size.
853         (ppc_collect_reg): Similarly zero pad when regsize is larger than
854         regcache register size.
855         (ppc_greg_offset): New function, split out from..
856         (ppc_supply_gregset): ..here.  Separate code handling all regs from
857         single reg case.  Correct xer offset.
858         (ppc_fpreg_offset): New function, split out from..
859         (ppc_supply_fpregset): ..here.  Separate code handling all regs from
860         single reg case.
861         (ppc_collect_gregset, ppc_collect_fpregset): Likewise.
862         (ppc_supply_fpregset, ppc_collect_fpregset): Don't assert we have
863         a fp unit, instead return if no fp.
864
865 2007-08-29  Jim Blandy  <jimb@codesourcery.com>
866
867         * breakpoint.c (watch_command_1): Remove '#ifdef HPUXHPPA' block;
868         this code has not been compiled for two years.
869
870 2007-08-29  Michael Snyder  <msnyder@access-company.com>
871
872         * event-top.c (gdb_readline2): Return after EOF.
873
874 2007-08-29  Joel Brobecker  <brobecker@adacore.com>
875
876         * symtab.c: Remove a function that has been commented out 3 years ago.
877
878 2007-08-29  Randolph Chung  <tausq@debian.org>
879
880         * hppa-tdep.c (hppa32_cannot_fetch_register)
881         (hppa64_cannot_fetch_register): New functions.
882         (hppa_gdbarch_init): Set cannot_fetch_register appropriately.
883         * hppa-tdep.h (hppa_regnum): Add HPPA_CR26_REGNUM.
884
885 2007-08-28  Michael Snyder  <msnyder@access-company.com>
886
887         * mi/mi-cmd-var.c (mi_print_value_p): No longer necessary to 
888         check for null before calling check_typedef.
889
890         * NEWS: Mention Coverity bug fixes.
891
892 2007-08-27  Markus Deuling  <deuling@de.ibm.com>
893
894         * spu-tdep.c (spu_pointer_to_address): New function.
895         (spu_integer_to_address): Likewise.
896         (spu_gdbarch_init): Add spu_pointer_to_address and 
897         spu_integer_to_address to gdbarch.
898
899 2007-08-26  Pedro Alves  <pedro_alves@portugalmail.pt>
900
901         * arm-wince-tdep.c (ARM_WINCE_JB_PC): Change to 10.
902
903 2007-08-23  Joel Brobecker  <brobecker@adacore.com>
904
905         * Makefile.in (copying.c): Use the top-level COPYING3 as the file
906         that contains the GDB license.
907         * copying.awk: Adjust to the GPLv3 wording.
908         * copying.c: Regenerate.
909
910 2007-08-23  Joel Brobecker  <brobecker@adacore.com>
911
912         * copying.awk: Protoization, and i18n markup.
913
914 2007-08-23  Joel Brobecker  <brobecker@adacore.com>
915
916         * config/djgpp/djconfig.sh: Switch license to GPLv3.
917         * copyright.sh: Likewise.
918         * gdb-events.sh: Likewise.
919         * gdb_gcore.sh: Likewise.
920         * gdb_mbuild.sh: Likewise.
921         * gdbarch.sh: Likewise.
922         * observer.sh: Likewise.
923         * features/feature_to_c.sh: Likewise.
924         * regformats/regdat.sh: Likewise.
925
926 2007-08-23  Joel Brobecker  <brobecker@adacore.com>
927
928         Switch the license of all .c files to GPLv3.
929         Switch the license of all .h files to GPLv3.
930         Switch the license of all .cc files to GPLv3.
931
932 2007-08-23  Joel Brobecker  <brobecker@adacore.com>
933
934         * configure.ac: Switch license to GPLv3.
935
936 2007-08-22  Daniel Jacobowitz  <dan@codesourcery.com>
937
938         * mips-tdep.c (mips_gdbarch_init): Use Tag_GNU_MIPS_ABI_FP to
939         determine the file's FPU type.
940
941 2007-08-22  Daniel Jacobowitz  <dan@codesourcery.com>
942
943         * mips-tdep.c (mips_n32n64_fp_arg_chunk_p): New.
944         (mips_n32n64_push_dummy_call): Always increment float_argreg along
945         with argreg.  Use mips_n32n64_fp_arg_chunk_p.
946
947 2007-08-22  Daniel Jacobowitz  <dan@codesourcery.com>
948
949         * solib-svr4.c (scan_dyntag): Only read target memory when necessary.
950         Fix formatting.
951         (elf_locate_base): Look for DT_MIPS_RLD_MAP first.  Expand comments.
952         (elf_lookup_lib_symbol): Fix formatting.
953
954 2007-08-21  Michael Snyder  <msnyder@access-company.com>
955
956         * dbxread.c (read_dbx_symtab): Guard null deref.
957         Break up long line.
958
959         * valops.c (find_overload_match): Guard against NULL.
960
961 2007-08-21  Daniel Jacobowitz  <dan@codesourcery.com>
962
963         * MAINTAINERS (Patch Champions): Remove self.
964
965 2007-08-21  Chris Smith  <chris.smith@st.com>
966
967         * cli/cli-script.c (read_command_lines): Call dont_repeat for each
968         line.
969
970 2007-08-18  Michael Snyder  <msnyder@access-company.com>
971
972         * stabsread.c (dbx_lookup_type): Memory leak.
973
974         * event-loop.c (delete_async_signal_handler): Move pointer null
975         test to before pointer dereference.
976
977         * ui-out.c (append_header_to_list): Possible cut and paste error.
978
979         * MAINTAINERS: white space tweak.
980
981 2007-08-17  Michael Snyder  <msnyder@access-company.com>
982
983         * stack.c (print_frame): Memory leak.
984
985         * completer.c (filename_completer): Avoid memory leak.
986         Remove unnecessary nested block.
987
988         * c-exp.y (parse_number): Memory leak.
989
990         * completer.c (location_completer): Must free 'fn_list', except 
991         in the one case where it is returned (as 'list').
992
993         * varobj.c (value_of_root): Memory leak.
994
995         * gdbtypes.h (virtual_base_list): Remove export decl.
996         * gdbtypes.c (virtual_base_list): Make static.  Not called outside.
997         (virtual_base_index): Memory leak.
998         (virtual_base_index_skip_primaries): Ditto.
999
1000 2007-08-17  Maxim Grigoriev  <maxim2405@gmail.com>
1001
1002         * xtensa-tdep.c (ARG_NOF, ARG_1ST, PS_WOE, PS_EXC, C0_MAXOPDS)
1003         (C0_NREGS, C0_CLESV, C0_SP, C0_FP, C0_RA, C0_ARGS, C0_NARGS)
1004         (C0_CONST, C0_INEXP, C0_NOSTK): New macros.
1005         (xtensa_read_register): New function.
1006         (xtensa_windowed_frame_cache, xtensa_call0_frame_cache, xtensa_c0reg)
1007         (xtensa_insn_kind): New types.
1008         (xtensa_frame_cache, xtensa_alloc_frame_cache, xtensa_frame_cache)
1009         (xtensa_frame_prev_register, xtensa_return_value, xtensa_skip_prologue)
1010         (xtensa_verify_config, xtensa_pseudo_register_read)
1011         (xtensa_pseudo_register_write, xtensa_extract_return_value)
1012         (xtensa_store_return_value)
1013         (xtensa_push_dummy_call): Extended to support Xtensa Call0 ABI.
1014         (windowing_enabled, extract_call_winsize, xtensa_unwind_dummy_id)
1015         (xtensa_frame_this_id, xtensa_frame_prev_register)
1016         (xtensa_register_type, xtensa_reg_to_regnum): Cosmetic changes.
1017         (call0_frame_cache, call0_frame_get_reg_at_entry)
1018         (call0_classify_opcode, call0_track_op)
1019         (call0_analyze_prologue, call0_frame_cache): New functions.
1020
1021 2007-08-17  Vladimir Prus  <vladimir@codesourcery.com>
1022
1023         * breakpoint.c (bpstat_free): New.
1024         (bpstat_clear): Use bpstat_free.
1025         (delete_breakpoint): Document why we cannot
1026         remove bpstats from stop_bpstat.
1027         * breakpoint.h (bpstat_free): Declare.
1028                 
1029 2007-08-16  Michael Snyder  <msnyder@access-company.com>
1030
1031         * event-loop.c (gdb_wait_for_event): Move statement into "if" block.
1032
1033 2007-08-15  Paul Hilfinger  <hilfinger@adacore.com>
1034             Joel Brobecker  <brobecker@adacore.com>
1035
1036         * ada-lang.c (resolve_subexp): Correct arity of binary operators.
1037
1038 2007-08-15  Paul Hilfinger  <hilfinger@adacore.com>
1039             Joel Brobecker  <brobecker@adacore.com>
1040
1041         * ada-lang.c (possible_user_operator_p): Alternative fix to last
1042         checkin guarding against NULL.
1043
1044 2007-08-14  Michael Snyder  <msnyder@access-company.com>
1045
1046         * tui-command.c, tui-data.c, tui-disasm.c, tui-file.c, tui-io.c,
1047         tui-layout.c, tui-regs.c, tui-source.c, tui-win.c, tui-windata.c,
1048         tui-wingeneral.c, tui-winsource.c: Coding standard, && and ||
1049         go at beginning of new line.
1050
1051         * tui-data.c, tui-data.h, tui-disasm.c, tui-disasm.h, tui-hooks.c,
1052         tui-io.c, tui-layout.c, tui-layout.h, tui-out.c, tui-regs.c,
1053         tui-source.c, tui-source.h, tui-stack.c, tui-win.c, tui-win.h,
1054         tui-windata.c, tui-windata.h, tui-wingeneral.c, tui-winsource.c,
1055         tui-winsource.h, tui.c, tui.h: Function declarations and 
1056         definitions, wrap long lines.
1057
1058         * tui-command.c, tui-data.c, tui-disasm.c, tui-layout.c,
1059         tui-regs.c, tui-win.c, tui-windata.c, tui-winsource.c, tui.c:
1060         Reformat block comments to GNU standard.
1061
1062         * tui-command.c, tui-data.c, tui-data.h, tui-disasm.c, tui-file.c,
1063         tui-hooks.c, tui-interp.c, tui-io.c, tui-layout.c, tui-out.c,
1064         tui-regs.c, tui-regs.h, tui-source.c, tui-stack.c, tui-win.c,
1065         tui-windata.c, tui-wingeneral.c, tui-winsource.c, tui-winsource.h,
1066         tui.c, tui.h: Comment reformatting to coding standard (capitals, 
1067         spaces after periods, etc).     
1068
1069         * tui-data.c, tui-data.h, tui-disasm.c, tui-hooks.c, tui-layout.c,
1070         tui-regs.c, tui-source.c, tui-stack.c, tui-win.c, tui-windata.c,
1071         tui-wingeneral.c, tui-wingeneral.h, tui-winsource.c, tui.c,
1072         tui-winsource.h: Whitespace changes, fix pointer declarations
1073         to be consistant.
1074
1075 2007-08-14  Joel Brobecker  <brobecker@adacore.com>
1076             Michael Snyder  <msnyder@access-company.com>
1077
1078         * ada-lang.c (field_alignment): Guard against NULL.
1079
1080 2007-08-14  Joel Brobecker  <brobecker@adacore.com>
1081
1082         * MAINTAINERS (Global Maintainers): Add self.
1083
1084 2007-08-14  Michael Snyder  <msnyder@access-company.com>
1085
1086         * mi/mi-interp.c (mi_cmd_interpreter_exec): Dead code, dead variable.
1087
1088         * ada-lang.c (possible_user_operator_p): Guard against NULL.
1089
1090         * varobj.c (cplus_describe_child): Guard against null.
1091         Use "NULL" instead of "0" to initialize pointers.
1092
1093 2007-08-14  Daniel Jacobowitz  <dan@codesourcery.com>
1094
1095         * arm-tdep.c (arm_gdbarch_init): Allow unknown ABI and FPU settings
1096         to match any gdbarch with matching OSABI.  Set default ABI and FPU
1097         after running the OSABI handler.
1098
1099 2007-08-14  Daniel Jacobowitz  <dan@codesourcery.com>
1100
1101         * config/i386/linux.mh (NATDEPFILES): Move corelow.o from here...
1102         * config/i386/linux.mt (TDEPFILES): ...to here.
1103
1104 2007-08-14  Vladimir Prus  <vladimir@codesourcery.com>
1105
1106         * breakpoint.c (disable_breakpoints_in_shlibs): Remove
1107         the 'silent' parameter and code to implement that.
1108         * breakpoint.h (disable_breakpoints_in_shlibs): Adjust
1109         prototype.
1110         * win32-nat.c: Adjust.
1111         * solib.c: Adjust.
1112         
1113 2007-08-14  Vladimir Prus  <vladimir@codesourcery.com>
1114
1115         * breakpoint.c (update_breakpoints_after_exec): Don't
1116         set address to zero.
1117
1118 2007-08-13  Michael Snyder  <msnyder@access-company.com>
1119
1120         * valops.c: Whitespace clean-up.
1121
1122         * tui/tui-winsource.c (tui_alloc_source_buffer): Clean up allocation.
1123
1124         * event-top.c (command_line_handler): Memory leak.
1125
1126         * mi/mi-cmd-var.c (mi_cmd_var_set_format): Memory leak.
1127         No need to make copy.
1128
1129         * source.c (find_source_lines): Require symtab 's'.
1130
1131 2007-08-11  Michael Snyder  <msnyder@access-company.com>
1132
1133         * completer.c: Spelling fix in comments.
1134
1135 2007-08-10  Michael Snyder  <msnyder@access-company.com>
1136
1137         * gdbtypes.c: Coding standard cleanup.
1138         * gdbtypes.c: Comment/whitespace cleanup.
1139
1140         * stabsread.c (read_huge_number): Attempt to compute value before
1141         values that it depends on.
1142
1143         * linespec.c (decode_dollar): Dead code, ptr can't be non-null.
1144         (decode_objc): Use "NULL" instead of 0.
1145         (find_method): Ditto.
1146         (decode_all_digits): Ditto.
1147         (decode_dollar): Ditto.
1148
1149         * mi/mi-main.c (mi_cmd_data_evaluate_expression): Resource leak.
1150
1151         * mi/mi-cmd-var.c (mi_cmd_var_list_children): Memory leak.
1152
1153         * solib-svr4.c (enable_break): Don't free tmp_pathname until
1154         after closing bfd.
1155
1156         * completer.c: Comment/whitespace cleanup.
1157
1158 2007-08-10  Joel Brobecker  <brobecker@adacore.com>
1159
1160         * Makefile.in (i386nbsd-nat.o): Add missing dependency.
1161
1162 2007-08-10  Maxim Grigoriev  <maxim2405@gmail.com>
1163
1164         * remote-fileio.c (remote_fileio_resize_fd_map): Initialize newly
1165         allocated file descriptors.
1166
1167 2007-08-10  Joel Brobecker  <brobecker@adacore.com>
1168
1169         * Makefile.in: Minor cleanup throughout; add some missing variables,
1170         add some missing rules, remove some rules that are no longer needed,
1171         and fix the dependencies in several rules.
1172
1173 2007-08-10  Ludovic Courtès  <ludo@gnu.org>
1174
1175         * Makefile.in (SFILES): Add scm-{exp,lang,valprint}.c.
1176         (scm_lang_h, scm_tags_h): New.
1177         (COMMON_OBS): Add scm-{exp,lang,valprint}.o.
1178         (scm-exp.o, scm-lang.o, scm-valprint.o): New targets.
1179         * defs.h (enum language): Add `language_scm'.
1180
1181         * MAINTAINERS: Add Emacs local variables to use UTF-8 upon
1182         opening.
1183
1184 2007-08-09  Ludovic Courtès  <ludo@gnu.org>
1185
1186         * MAINTAINERS (Write After Approval): Add myself.
1187
1188 2007-08-09  Michael Snyder  <msnyder@access-company.com>
1189
1190         * solib.c (solib_open): Memory leak -- openp returns xmalloc buffer.
1191
1192 2007-08-09  Joel Brobecker  <brobecker@adacore.com>
1193
1194         * solib-som.c (som_relocate_section_addresses): Stop saving
1195         the $CODE$ section in the so_list structure.
1196
1197 2007-08-08  Maxim Grigoriev  <maxim2405@gmail.com>
1198
1199         * xtensa-tdep.h (XTENSA_MAX_COPROCESSOR): New.
1200         (xtensa_register_group_t): Add entries for coprocessors.
1201         * xtensa-tdep.c (xtensa_init_reggroups): New register groups.
1202         (xtensa_add_reggroups): Likewise.
1203         (xtensa_register_reggroup_p): Likewise.
1204         (xtensa_coprocessor_register_group): New function.
1205         (xtensa_cp): New.
1206
1207 2007-08-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
1208
1209         * serial.c (serial_open): Fix the OPEN parameter macro expansion.
1210
1211 2007-08-08  Michael Snyder  <msnyder@access-company.com>
1212
1213         * target.c (target_read_string): Guard against null.
1214
1215         * varobj.c (value_of_root): Move alloc after return to avoid leak.
1216
1217         * tui/tui-layout.c (tui_set_layout): Dead code, dead variable.
1218         (tui_set_layout_for_display_command): Mem leak.
1219
1220         * top.c (command_line_input): Memory leak.
1221
1222         * solib-svr4.c (open_symbol_file_object): Memory leak.
1223         (svr4_current_sos): Ditto.
1224         (enable_break): Ditto.
1225
1226         * cp-valprint.c (cp_print_hpacc_virtual_table_entries): Memory leak.
1227
1228         * dwarf2read.c (add_partial_symbol): Memory leak.
1229
1230 2007-08-06  Michael Snyder  <msnyder@access-company.com>
1231
1232         * ada-lang.c (desc_bounds): Comparison of function address to NULL.
1233
1234 2007-08-05  Jim Blandy  <jimb@codesourcery.com>
1235
1236         * macroexp.c (init_buffer): Remove testing code that overrides the
1237         caller's length guess.
1238         (gather_arguments): Use a larger initial size, now that the vector
1239         growth code has been exercised.
1240
1241 2007-08-05  Pedro Alves  <pedro_alves@portugalmail.pt>
1242
1243         * solib-target.c (solib_target_relocate_section_addresses): Add
1244         orig_delta to addr_high.
1245
1246 2007-08-04  Michael Snyder  <msnyder@access-company.com>
1247
1248         * remote-fileio.c (remote_fileio_func_write): Memory leak.
1249
1250         * breakpoint.c (print_one_breakpoint): Off by one error.
1251
1252         * tracepoint.c (add_register): Off by one error.
1253         (stringify_collection_list): Free malloc buffer.
1254
1255 2007-08-03  Michael Snyder  <msnyder@access-company.com>
1256
1257         * mi-cmd-var.c (mi_cmd_var_delete): Remove unused variable,
1258         stop memory leak, straighten out cleanups.
1259
1260         * jv-lang.c (java_link_class_type): Guard against NULL.
1261
1262 2007-08-02  Michael Snyder  <msnyder@access-company.com>
1263
1264         * gdbtypes.c (create_set_type): Test should only be done within
1265         the preceeding if block.  Otherwise, variable is uninitialized.
1266
1267         * gdbtypes.c (check_typedef): Guard NULL.
1268
1269 2007-08-01  Michael Snyder  <msnyder@access-company.com>
1270
1271         * cli/cli-decode.c (lookup_cmd): Check for null earlier, to 
1272         avoid dereference in lookup_cmd_1.
1273
1274         * tui/tui-data.c (tui_alloc_content): Move assign out of if, 
1275         clean up long lines.
1276         (tui_alloc_generic_win_info): Tidy by using XMALLOC macro.
1277         (tui_alloc_win_info): Ditto.
1278         (tui_add_content_elements): Ditto.
1279         * tui/tui-file.c (tui_file_magic): Ditto.
1280
1281 2007-07-31  Michael Snyder  <msnyder@access-company.com>
1282
1283         * breakpoint.c (breakpoint_init_inferior): Add 'else' to 'if'.
1284         True and false paths are mutually exclusive.
1285
1286         * event-top.c (command_line_handler): Add pedantic return.
1287
1288         * f-valprint.c (info_common_command): Bail out to prevent null
1289         pointer deref.  Break up a long line.
1290
1291         * exec.c (xfer_memory): Remove redundant condition from 'if'.
1292
1293         * symfile.c (reread_separate_symbols): Free xmalloced memory.
1294
1295         * printcmd.c (build_address_symbolic): Remove dead code and dead 
1296         variable.
1297
1298 2007-07-31  Daniel Jacobowitz  <dan@codesourcery.com>
1299
1300         * linespec.c (minsym_found): Advance to the next line if possible.
1301
1302 2007-07-31  Pedro Alves  <pedro_alves@portugalmail.pt>
1303
1304         * arm-wince-tdep.c (arm_wince_init_abi): Remove svr4 related call.
1305         * config/arm/wince.mt (TDEPFILES): Remove solib-legacy.o and
1306         solib-svr4.o, and add solib-target.o
1307
1308 2007-07-27  Michael Snyder  <msnyder@access-company.com>
1309
1310         * tui/tui-data.c (tui_alloc_generic_win_info): Wrong arg for sizeof.
1311
1312 2007-07-26  Maciej W. Rozycki  <macro@linux-mips.org>
1313
1314         * MAINTAINERS (Write After Approval): Add myself.
1315
1316 2007-07-26  Maciej W. Rozycki  <macro@mips.com>
1317
1318         * Makefile.in (MAKEHTMLFLAGS): Also search the current directory
1319         for include files.
1320
1321 2007-07-25  Maciej W. Rozycki  <macro@mips.com>
1322
1323         * Makefile.in (MAKEHTMLFLAGS): Remove "-glossary".
1324
1325 2007-07-24  Michael Snyder  <msnyder@access-company.com>
1326
1327         * solib-svr4.c (svr4_fetch_objfile_link_map): Null pointer check of
1328         'buffer' must cover both branches that call strcmp (Coverity).
1329
1330         * stack.c (print_frame_args): Check return value of lookup_symbol.
1331
1332         * ax-gdb.c (find_field): Guard against null ptr.
1333
1334 2007-07-24  Ulrich Weigand  <uweigand@de.ibm.com>
1335
1336         * regformats/reg-spu.dat: Fix order of npc, id registers.
1337
1338 2007-07-24  Ulrich Weigand  <uweigand@de.ibm.com>
1339
1340         * target.c (memory_xfer_partial): Accesses to unmapped overlay
1341         sections should always go to the executable file.
1342
1343 2004-07-20  Chris Dearman  <chris@mips.com>
1344
1345         * mips-tdep.c (heuristic_proc_start): Add more MIPS16 function
1346         prologue instructions.
1347
1348 2007-07-20  Maciej W. Rozycki  <macro@mips.com>
1349
1350         * mips-tdep.c (mips_next_pc): Use is_mips16_addr() instead of
1351         a direct test.
1352
1353 2007-07-20  Chris Dearman  <chris@mips.com>
1354             Maciej W. Rozycki  <macro@mips.com>
1355
1356         * mips-tdep.c (fetch_mips_16): Fix typos and reformat the
1357         description.
1358
1359 2007-07-17  Pedro Alves  <pedro_alves@portugalmail.pt>
1360             Daniel Jacobowitz  <dan@codesourcery.com>
1361
1362         * config/i386/cygwin.mt (TDEPFILES): Add solib-target.o.
1363         * coff-pe-read.c (read_pe_exported_syms): Delete verbose
1364         printf.
1365         * NEWS: Mention gdbserver DLL support.
1366
1367 2007-07-17  Daniel Jacobowitz  <dan@codesourcery.com>
1368
1369         * dwarf2read.c (dwarf_decode_lines): Detect address size mismatches.
1370
1371 2007-07-16  H.J. Lu  <hongjiu.lu@intel.com>
1372
1373         * i386-linux-nat.c (fetch_regs): Work around gcc 3.4 alias
1374         warning bug.
1375
1376 2007-07-13  Kevin Buettner  <kevinb@redhat.com>
1377
1378         * mep-tdep.c (mep_analyze_prologue): Update comment for BRA
1379         instruction case.
1380
1381 2007-07-12  Kevin Buettner  <kevinb@redhat.com>
1382
1383         * mep-tdep.c (IS_BRA, BRA_DISP): New macros.
1384         (mep_analyze_prologue): Add case for BRA instruction.
1385
1386 2007-07-12  Ulrich Weigand  <uweigand@de.ibm.com>
1387
1388         * solib-svr4.c (LM_ADDR_CHECK): Relax prelink recognition heuristic.
1389
1390 2007-07-10  Nick Roberts  <nickrob@snap.net.nz>
1391
1392         * breakpoint.c: Include "top.h".
1393         (breakpoint_1): Don't set convenience variable $_ if server prefix
1394         is used.
1395         (_initialize_breakpoint): Describe this behaviour in command help.
1396
1397 2007-07-08  Pedro Alves  <pedro_alves@portugalmail.pt>
1398
1399         * solib-target.c (library_list_start_segment): Cast address to
1400         CORE_ADDR.
1401
1402 2007-07-06  Mark Kettenis  <kettenis@gnu.org>
1403
1404         * bsd-uthread.c (bsd_uthread_wait): Don't try to fetch thread IDs
1405         for terminated processes.
1406
1407 2007-07-05  Michael Snyder  <msnyder@access-company.com>
1408
1409         * event-top.c (cli_command_loop): Prompt string can (and should)
1410         be freed after call to readline (Coverity).  Also move local var
1411         declarations into block where they are used.
1412
1413         * tui/tui-interp.c (tui_command_loop): Prompt string can (and
1414         should) be freed after call to readline (Coverity).  Also move
1415         local var declarations into block where they are used.
1416
1417 2007-07-03  Andreas Schwab  <schwab@suse.de>
1418
1419         * linux-nat.c (linux_nat_info_proc_cmd): Fix parsing of columns in
1420         /proc/../stat.
1421
1422 2007-07-03  Paul Gilliam  <pgilliam@us.ibm.com>
1423             Thiago Bauermann  <bauerman@br.ibm.com>
1424             Joseph S. Myers  <joseph@codesourcery.com>
1425             Daniel Jacobowitz  <dan@codesourcery.com>
1426
1427         * remote.c (remote_check_symbols): Use
1428         gdbarch_convert_from_func_ptr_addr.
1429         * infcall.c (find_function_addr): Handle function descriptors
1430         without debugging information.
1431         * ppc-linux-tdep.c (ppc_linux_convert_from_func_ptr_addr): Renamed
1432         from ppc64_linux_convert_from_func_ptr_addr.  Handle -msecure-plt.
1433         (ppc_linux_init_abi): Always set convert_from_func_ptr_addr.
1434         * solib-svr4.c (solib_break_names): Remove "._dl_debug_state".
1435         (bfd_lookup_symbol): Do not take a SECT_FLAGS argument.  Always
1436         allow SEC_CODE and SEC_DATA.
1437         (enable_break): Update calls.  Pass current_target to solib_add.
1438         Use gdbarch_convert_from_func_ptr_addr.
1439
1440 2007-07-03  Ilko Iliev  <iliev@ronetix.at>
1441             Daniel Jacobowitz  <dan@codesourcery.com>
1442
1443         * symfile.c (print_transfer_performance): Avoid integer overflow.
1444         Use larger units.
1445
1446 2007-07-03  Markus Deuling  <deuling@de.ibm.com>
1447
1448         * cp-namespace.c (lookup_symbol_file): Add block to
1449         lookup_symbol_global call.
1450         * Makefile.in (solist_h): Add dependency on symtab header.
1451         (symtab.o): Add dependency on solist header.
1452         * solib.c (solib_global_lookup): New function.
1453         * solib-svr4.c (scan_dyntag): Likewise.
1454         (elf_locate_base): Call helper routine scan_dyntag.
1455         (elf_lookup_lib_symbol): New function.
1456         (_initialize_svr4_solib): Add elf_lookup_lib_symbol to svr4_so_ops.
1457         * solist.h (symtab.h): New include.
1458         (struct target_so_ops): New member lookup_lib_global_symbol.
1459         (solib_global_lookup): New prototype.
1460         * symtab.c: New include solist.h.
1461         (lookup_objfile_from_block): New function.
1462         (lookup_global_symbol_from_objfile): New function.
1463         (basic_lookup_symbol_nonlocal): Add block to lookup_symbol_global call.
1464         (lookup_symbol_global): Call library-specific lookup procedure.
1465         * symtab.h (lookup_global_symbol_from_objfile): New prototype.
1466
1467         * NEWS: Document framework.
1468
1469 2007-07-02  Daniel Jacobowitz  <dan@codesourcery.com>
1470
1471         * target-descriptions.c (tdesc_create_reg): Do not set reg->type
1472         to NULL.
1473
1474         * cli/cli-script.c (build_command_line): Update NULL check.
1475
1476 2007-07-02  Michael Snyder  <msnyder@access-company.com>
1477
1478         * p-exp.y (yylex): Memory leak, 'uptokstart' must be freed (Coverity).
1479
1480 2007-07-02  Daniel Jacobowitz  <dan@codesourcery.com>
1481
1482         * Makefile.in (XMLFILES): Add library-list.dtd.
1483         (ALLDEPFILES): Add solib-target.o.
1484         (solib-target.o): New rule.
1485         * remote.c (PACKET_qXfer_libraries): New constant.
1486         (remote_protocol_features): Add qXfer:libraries:read.
1487         (remote_wait): Recognize library stop replies.
1488         (remote_async_wait): Likewise.  Fix typo.
1489         (remote_xfer_partial): Handle TARGET_OBJECT_LIBRARIES.
1490         (init_remote_async_ops): Fix typo.
1491         (_initialize_remote): Register "set remote library-info-packet".
1492         * solib-som.c (som_current_sos): Set addr_low and addr_high.
1493         * solib-target.c: New file.
1494         * solib.c (solib_map_sections): Use addr_low and addr_high instead
1495         of textsection.
1496         (info_sharedlibrary_command): Likewise.
1497         (solib_add_library, solib_remove_library): New.
1498         * solist.h (struct so_list): Replace textsection with addr_low and
1499         addr_high.
1500         * target.h (enum target_object): Add TARGET_OBJECT_LIBRARIES.
1501         * NEWS: Describe new qXfer:libraries:read and shared library
1502         event support.
1503         * features/library-list.dtd: New.
1504
1505 2007-07-02  Daniel Jacobowitz  <dan@codesourcery.com>
1506
1507         * infrun.c (inferior_ignoring_startup_exec_events): Delete.
1508         (start_remote): Use STOP_QUIETLY_REMOTE.
1509         (handle_inferior_event): Do not condition TARGET_WAITKIND_LOADED
1510         support on a SOLIB_ADD definition.  Update breakpoints_inserted.
1511         Update to match shared library event breakpoint support.  Only
1512         resume if appropriate.  Handle STOP_QUIETLY_REMOTE.
1513         (normal_stop): Handle TARGET_WAITKIND_LOADED.
1514         * fork-child.c (startup_inferior): Do not set
1515         inferior_ignoring_startup_exec_events
1516         * inferior.h (inferior_ignoring_startup_exec_events): Delete
1517         declaration.
1518         (enum stop_kind): Improve documentation.  Add STOP_QUIETLY_REMOTE.
1519
1520 2007-07-02  Markus Deuling  <deuling@de.ibm.com>
1521
1522         * breakpoint.c (insert_bp_location): Remove dead code
1523         (DISABLE_UNSETTABLE_BREAK).
1524         (disable_breakpoints_in_shlibs)
1525         (disable_breakpoints_in_unloaded_shlib): Likewise (comment).
1526
1527 2007-07-02  Daniel Jacobowitz  <dan@codesourcery.com>
1528
1529         * breakpoint.c (reattach_breakpoints): Do not use remove_breakpoint.
1530         Call insert_bp_location.
1531
1532 2007-07-01  H.J. Lu  <hongjiu.lu@intel.com>
1533
1534         * core-regset.c (fetch_core_registers): Work around gcc 3.4
1535         alias warning bug.
1536
1537 2007-07-01  Daniel Jacobowitz  <dan@codesourcery.com>
1538
1539         * minsyms.c (lookup_minimal_symbol_by_pc_section): Search fewer
1540         objfiles.
1541
1542 2007-07-01  Daniel Jacobowitz  <dan@codesourcery.com>
1543
1544         * top.c (gdb_readline_wrapper_line): Call rl_callback_handler_remove.
1545         (struct gdb_readline_wrapper_cleanup): Remove prompt_orig.
1546         (gdb_readline_wrapper_cleanup): Do not reset the prompt.
1547         (gdb_readline_wrapper): Do not save the prompt.  Pass our prompt
1548         to display_gdb_prompt.
1549
1550 2007-07-01  Daniel Jacobowitz  <dan@codesourcery.com>
1551
1552         PR symtab/2161
1553         * target.c (memory_xfer_partial): Do not continue past targets with
1554         all memory.
1555
1556 2007-06-30  Andreas Schwab  <schwab@suse.de>
1557
1558         * m68k-tdep.c (m68k_ps_type): New.
1559         (m68k_init_types): New.
1560         (m68k_register_type): Use m68k_ps_type for PS register.
1561         (_initialize_m68k_tdep): Call m68k_init_types.
1562
1563         * m68k-tdep.c (m68k_gdbarch_init): Don't infer coldfire flavour
1564         from the generic m68k arch.
1565
1566 2007-06-28  Michael Snyder  <msnyder@access-company.com>
1567
1568         * m2-typeprint.c (m2_print_type): Move pointer ref after null test
1569         (Coverity).
1570
1571         * linux-thread-db.c (thread_db_get_thread_local_address): Add
1572         gdb_assert before using return value of find_thread_pid (Coverity).
1573
1574         * source.c (unset_substitute_path_command): Plug leak (Coverity).
1575
1576         * cli/cli-script.c (build_command_line): Add null pointer guard 
1577         (Coverity).
1578         
1579 2007-06-27  Daniel Jacobowitz  <dan@codesourcery.com>
1580
1581         * linux-thread-db.c (thread_db_attach): Delete.
1582         (thread_db_detach): Typo fix.  Call target_mourn_inferior
1583         instead of fixing up proc_handle.
1584         (have_threads_callback, have_threads): New functions.
1585         (thread_db_wait): Remove dead proc_handle.pid check.  Only
1586         translate PTIDs if we have registered threads.  Check for new
1587         threads if we have none.
1588         (thread_db_create_inferior, thread_db_post_startup_inferior): Delete.
1589         (find_new_threads_callback): Only enable event reporting if TID == 0.
1590         (same_ptid_callback): New.
1591         (thread_db_get_thread_local_address): Check for new threads.
1592         (init_thread_db_ops): Don't set to_attach, to_create_inferior,
1593         or to_post_startup_inferior.
1594
1595 2007-06-22  Ulrich Weigand  <uweigand@de.ibm.com>
1596
1597         * infrun.c (adjust_pc_after_break): Do not assume software single-step
1598         is always active if SOFTWARE_SINGLE_STEP_P is true.
1599         (resume): Use gdbarch_software_single_step[_p] instead of
1600         SOFTWARE_SINGLE_STEP[_P].
1601         (handle_inferior_event): Do not check for SOFTWARE_SINGLE_STEP_P.
1602
1603         * gdbarch.sh (software_single_step): Remove target macro.
1604         * gdbarch.h, gdbarch.c: Regenerate.
1605
1606 2007-06-22  Ulrich Weigand  <uweigand@de.ibm.com>
1607
1608         * gdbarch.sh (gdbarch_swap_ftype, deprecated_register_gdbarch_swap,
1609         DEPRECATED_REGISTER_GDBARCH_SWAP): Remove.
1610         (struct gdbarch_swap, struct gdbarch_swap_registration, 
1611         struct gdbarch_swap_registry, gdbarch_swap_registry,
1612         current_gdbarch_swap_init_hack, current_gdbarch_swap_out_hack,
1613         current_gdbarch_swap_in_hack): Remove.
1614         (find_arch_by_info): Do not call current_gdbarch_swap_init_hack.
1615         (gdbarch_find_by_info): Do not call current_gdbarch_swap_in_hack
1616         and current_gdbarch_swap_out_hack, update current_gdbarch directly.
1617         (deprecated_current_gdbarch_select_hack): Likewise.
1618         * gdbarch.h, gdbarch.c: Regenerate.
1619
1620 2007-06-22  Ulrich Weigand  <uweigand@de.ibm.com>
1621
1622         * infrun.c (clear_proceed_status): Clean up stop_registers.
1623         (normal_stop): Allocate regcache for stop_registers.
1624         (struct inferior_status): Remove stop_registers member.
1625         (save_inferior_status): Do not save stop_registers.
1626         (restore_inferior_status): Do not restore stop_registers.
1627         (discard_inferior_status): Do not discard stop_registers.
1628         (build_infrun): Remove.
1629         (_initialize_infrun): Do not swap stop_registers.
1630
1631 2007-06-22  Ulrich Weigand  <uweigand@de.ibm.com>
1632
1633         * remote.c (remote_address_masked): If remote_address_size is zero,
1634         default to target address size.
1635         (build_remote_gdbarch_data): Remove.
1636         (_initialize_remote): Do not swap remote_address_size.
1637
1638 2007-06-22  Ulrich Weigand  <uweigand@de.ibm.com>
1639
1640         * gdbtypes.h (builtin_type_true_char, builtin_type_void,
1641         builtin_type_char, builtin_type_short, builtin_type_int,
1642         builtin_type_long, builtin_type_signed_char,
1643         builtin_type_unsigned_char, builtin_type_unsigned_short,
1644         builtin_type_unsigned_int, builtin_type_unsigned_long,
1645         builtin_type_float, builtin_type_double, builtin_type_long_double,
1646         builtin_type_complex, builtin_type_double_complex, builtin_type_string,
1647         builtin_type_bool, builtin_type_long_long,
1648         builtin_type_unsigned_long_long, builtin_type_void_data_ptr,
1649         builtin_type_void_func_ptr, builtin_type_CORE_ADDR): Replace global
1650         variable declaration with compatibility macro.
1651         * gdbtypes.c (builtin_type_true_char, builtin_type_void,
1652         builtin_type_char, builtin_type_short, builtin_type_int,
1653         builtin_type_long, builtin_type_signed_char,
1654         builtin_type_unsigned_char, builtin_type_unsigned_short,
1655         builtin_type_unsigned_int, builtin_type_unsigned_long,
1656         builtin_type_float, builtin_type_double, builtin_type_long_double,
1657         builtin_type_complex, builtin_type_double_complex, builtin_type_string,
1658         builtin_type_bool, builtin_type_long_long,
1659         builtin_type_unsigned_long_long, builtin_type_void_data_ptr,
1660         builtin_type_void_func_ptr, builtin_type_CORE_ADDR): Remove.
1661         (build_gdbtypes): Remove.
1662         (_initialize_gdbtypes): Do not call build_gdbtypes, move installing
1663         opaque-type-resolution command here.   Do not call 
1664         deprecated_register_gdbarch_swap.
1665
1666 2007-06-22  Ulrich Weigand  <uweigand@de.ibm.com>
1667
1668         * gdbtypes.h (struct builtin_type): New members nodebug_text_symbol,
1669         nodebug_data_symbol, nodebug_unknown_symbol, and nodebug_tls_symbol.
1670         * gdbtypes.c (gdbtypes_post_init): Initialize nodebug_ default types.
1671
1672         * parse.c (msym_text_symbol_type, msym_data_symbol_type): Remove.
1673         (msym_unknown_symbol_type, msym_tls_symbol_type): Remove.
1674         (write_exp_msymbol): Use builtin nodebug_ types instead of them.
1675         (build_parse): Remove.
1676         (_initialize_parse): Do not call build_parse.  Do not register
1677         msym_ types for gdbarch-swapping.
1678
1679         * dwarf2read.c (new_symbol): Use default nodebug_data_symbol type
1680         instead of creating private type.
1681
1682         * xcoffread.c (func_symbol_type, var_symbol_type): Remove.
1683         (_initialize_xcoffread): Do not initialized them.
1684         (process_xcoff_symbol): Use builtin nodebug_ types instead of them.
1685
1686         * mdebugread.c (nodebug_func_symbol_type): Remove.
1687         (nodebug_var_symbol_type): Remove.
1688         (_initialize_mdebugread): Do not initialize them.
1689         (parse_symbol): Use builtin nodebug_ type instead of them.
1690         (parse_procedure): Likewise.
1691
1692 2007-06-21  Chris Dearman  <chris@mips.com>
1693
1694         * printcmd.c (do_one_display): If display/i, start with an initial
1695         line feed to avoid bad layout if there is a branch delay slot.
1696
1697 2007-06-21  Nigel Stephens  <nigel@mips.com>
1698             Maciej W. Rozycki  <macro@mips.com>
1699
1700         * disasm.c (gdb_print_insn): Return the number of branch delay
1701         slot instructions too.
1702         * disasm.h (gdb_print_insn): Update prototype.
1703         * printcmd.c (branch_delay_insns): New variable to record the
1704         number of delay slot instructions after disassembling a branch.
1705         (print_formatted): Record the number of branch delay slot
1706         instructions.
1707         (do_examine): When disassembling, if the last instruction
1708         disassembled has any branch delay slots, then bump the count so
1709         that they get disassembled too.
1710         * tui/tui-disasm.c (tui_disassemble): Update the call to
1711         gdb_print_insn().
1712         * NEWS: Document the new behaviour.
1713
1714 2007-06-21  Andreas Schwab  <schwab@suse.de>
1715
1716         * regcache.c (write_pc_pid): Restore missing else.
1717
1718 2007-06-20  Ulrich Weigand  <uweigand@de.ibm.com>
1719
1720         * regcache.c (regcache_print): Use get_current_regcache ()
1721         instead of current_regcache.
1722
1723 2007-06-20  H.J. Lu  <hongjiu.lu@intel.com>
1724
1725         PR 4606
1726         * gcore.c (gcore_command): Use bfd_make_section_anyway_with_flags
1727         instead of bfd_make_section_anyway.
1728         (gcore_create_callback): Likewise.  Also set SEC_NEVER_LOAD
1729         when clearing SEC_LOAD.
1730
1731 2007-06-19  Joseph Myers  <joseph@codesourcery.com>
1732
1733         * arm-tdep.c (arm_push_dummy_call): Correct padding of partial
1734         registers for big-endian.
1735
1736 2007-06-19  Markus Deuling  <deuling@de.ibm.com>
1737
1738         * gdbarch.sh (TARGET_PRINT_INSN): Replace by gdbarch_print_insn.
1739         * disasm.c (dump_insns, gdb_print_insn): Likewise.
1740         * gdbarch.c, gdbarch.h: Regenerate.
1741
1742 2007-06-19  Markus Deuling  <deuling@de.ibm.com>
1743
1744         * gdbarch.sh (BELIEVE_PCC_PROMOTION): Replace by
1745         gdbarch_believe_pcc_promotion.
1746         * stabsread.c (define_symbol): Likewise.
1747         Remove unnecessary definition.
1748         * coffread.c (process_coff_symbol): Remove unnecessary code.
1749         * gdbarch.c, gdbarch.h: Regenerate.
1750
1751 2007-06-19  Daniel Jacobowitz  <dan@codesourcery.com>
1752
1753         * configure.ac: Do not use ${objdir}.
1754         * configure: Regenerated.
1755
1756 2007-06-18  Ulrich Weigand  <uweigand@de.ibm.com>
1757
1758         * gdbarch.sh (deprecated_register_size): Remove.
1759         * gdbarch.h, gdbarch.c: Regenerate.
1760
1761         * arm-tdep.c (arm_push_dummy_call): Replace DEPRECATED_REGISTER_SIZE
1762         by INT_REGISTER_SIZE.
1763         (thumb_get_next_pc, arm_return_in_memory): Likewise.
1764         (arm_gdbarch_init): Do not call set_gdbarch_deprecated_register_size.
1765         * ia64-tdep.c (ia64_gdbarch_init): Do not call
1766         set_gdbarch_deprecated_register_size.
1767
1768 2007-06-18  Markus Deuling  <deuling@de.ibm.com>
1769
1770         * gdbarch.sh (DEPRECATED_FP_REGNUM): Replace by
1771         gdbarch_deprecated_fp_regnum.
1772         * std-regs.c (value_of_builtin_frame_fp_reg): Likewise.
1773         * remote-mips.c (mips_wait, mips_fetch_registers): Likewise.
1774         * arch-utils.c (legacy_virtual_frame_pointer): Likewise.
1775         * arch-utils.h (gdbarch_virtual_frame_pointer_ftype): Likewise
1776         (comment).
1777         * gdbarch.c, gdbarch.h: Regenerate.
1778
1779 2007-06-18  Markus Deuling  <deuling@de.ibm.com>
1780
1781         * gdbarch.sh (EXTRACT_RETURN_VALUE): Replace with
1782         gdbarch_extract_return_value.
1783         * value.c (generic_use_struct_convention): Likewise (comment).
1784         * ia64-tdep.c (ia64_use_struct_convention): Likewise (comment).
1785         * arch-utils.c (legacy_return_value): Likewise.
1786         * arch-utils.h (legacy_return_value): Likewise (comment).
1787         * gdbarch.sh (STORE_RETURN_VALUE): Replace by
1788         gdbarch_store_return_value.
1789         * stack.c (return_command): Likewise (comment).
1790         * arch-utils.h (legacy_return_value): Likewise (comment).
1791         * arch-utils.c (legacy_return_value): Likewise.
1792         * gdbarch.c, gdbarch.h: Regenerate.
1793
1794 2007-06-18  Markus Deuling  <deuling@de.ibm.com>
1795
1796         * gdbarch.sh (DEPRECATED_USE_STRUCT_CONVENTION): Replace by
1797         gdbarch_deprecated_use_struct_convention.
1798         * arch-utils.c (legacy_return_value): Likewise.
1799         * gdbarch.c, gdbarch.h: Regenerate.
1800
1801 2007-06-18  Markus Deuling  <deuling@de.ibm.com>
1802
1803         * gdbarch.sh (DEPRECATED_FUNCTION_START_OFFSET): Replace by
1804         gdbarch_deprecated_function_start_offset.
1805         * symtab.c (find_function_start_sal)skip_prologue_using_sal): Likewise.
1806         * linespec.c (minsym_found): Likewise.
1807         * infrun.c (handle_inferior_event): Likewise.
1808         * infcall.c (find_function_addr): Likewise.
1809         * cli/cli-cmds.c (disassemble_command): Likewise.
1810         * gdbarch.c, gdbarch.h: Regenerate.
1811
1812 2007-06-18  Markus Deuling  <deuling@de.ibm.com>
1813
1814         * gdbarch.sh (DEPRECATED_REG_STRUCT_HAS_ADDR): Replace by
1815         gdbarch_deprecated_reg_struct_has_addr.
1816         * infcall.c (call_function_by_hand): Likewise.
1817         (DEPRECATED_REG_STRUCT_HAS_ADDR_P): Replace by
1818         * gdbarch_deprecated_reg_struct_has_addr_p.
1819         * infcall.c (call_function_by_hand): Likewise.
1820         * gdbarch.c, gdbarch.h: Regenerate.
1821
1822 2007-06-18  Markus Deuling  <deuling@de.ibm.com>
1823
1824         * gdbarch.sh (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
1825         * sh-tdep.c (sh_extract_struct_value_address): Remove.
1826         (sh_gdbarch_init): Remove
1827         set_gdbarch_deprecated_extract_struct_value_address.
1828         * sh64-tdep.c (sh64_extract_struct_value_address): Remove.
1829         (sh64_gdbarch_init): Remove
1830         set_gdbarch_deprecated_extract_struct_value_address.
1831         * ia64-tdep.c (ia64_extract_struct_value_address): Remove.
1832         (ia64_gdbarch_init): Remove
1833         set_gdbarch_deprecated_extract_struct_value_address.
1834         * frv-tdep.c (frv_extract_struct_value_address): Remove.
1835         (frv_gdbarch_init): Remove
1836         set_gdbarch_deprecated_extract_struct_value_address.
1837         * gdbarch.c, gdbarch.h: Regenerate.
1838
1839 2007-06-18  Markus Deuling  <deuling@de.ibm.com>
1840
1841         * gdbarch.sh (SP_REGNUM): Replace by gdbarch_sp_regnum.
1842         * v850-tdep.c (v850_unwind_sp): Likewise.
1843         * std-regs.c (value_of_builtin_frame_sp_reg): Likewise.
1844         * stack.c (frame_info): Likewise.
1845         * stabsread.c (define_symbol): Likewise.
1846         * sh-tdep.c (sh_push_dummy_call_fpu, sh_push_dummy_call_nofpu)
1847         (sh_dwarf2_frame_init_reg, sh_frame_cache, sh_frame_prev_register)
1848         (sh_unwind_sp): Likewise.
1849         * sh64-tdep.c (sh64_push_dummy_call, sh64_frame_cache)
1850         (sh64_frame_prev_register, sh64_unwind_sp): Likewise.
1851         * rs6000-tdep.c (rs6000_push_dummy_call, rs6000_unwind_dummy_id)
1852         (rs6000_frame_cache): Likewise.
1853         * rs6000-nat.c (store_register): Likewise.
1854         * remote-mips.c (mips_wait): Likewise.
1855         * procfs.c (procfs_fetch_registers, procfs_store_registers): Likewise.
1856         * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call)
1857         (ppc64_sysv_abi_push_dummy_call): Likewise.
1858         * ppcobsd-tdep.c (ppcobsd_sigtramp_frame_cache): Likewise.
1859         * ppcobsd-nat.c (ppcobsd_supply_pcb): Likewise.
1860         * ppcnbsd-tdep.c (ppcnbsd_sigtramp_cache_init): Likewise.
1861         * ppc-linux-tdep.c (ppc_linux_sigtramp_cache): Likewise.
1862         * m32r-rom.c (m32r_supply_register): Likewise.
1863         * frame.c (frame_sp_unwind): Likewise.
1864         * mips-tdep.c (mips_insn16_frame_cache)
1865         (mips_insn32_frame_cache): Likewise (comment).
1866         * m68klinux-nat.c (supply_gregset): Likewise.
1867         * m68k-tdep.c (m68k_get_longjmp_target): Likewise.
1868         * ia64-tdep.c (ia64_frame_prev_register): Likewise.
1869         * i386-tdep.c (i386_get_longjmp_target): Likewise.
1870         * dwarf2-frame.c (dwarf2_frame_default_init_reg): Likewise.
1871         * cris-tdep.c (cris_regnums, cris_sigcontext_addr)
1872         (cris_sigtramp_frame_unwind_cache, cris_push_dummy_call)
1873         (cris_scan_prologue, crisv32_scan_prologue, cris_unwind_sp)
1874         (cris_register_type, crisv32_register_type)
1875         (cris_dwarf2_frame_init_reg): Likewise.
1876         * arch-utils.c (legacy_virtual_frame_pointer): Likewise.
1877         * amd64-tdep.c (amd64_frame_prev_register): Likewise.
1878         * amd64-linux-tdep.c (amd64_linux_sigcontext_addr): Likewise.
1879         * libunwind-frame.c (libunwind_frame_cache): Likewise.
1880
1881         * gdbarch.sh (PC_REGNUM): Replace by gdbarch_pc_regnum.
1882         * regcache.c (read_pc_pid, generic_target_write_pc): Likewise.
1883         * xtensa-tdep.c (xtensa_register_type, xtensa_supply_gregset)
1884         (xtensa_unwind_pc, xtensa_frame_cache, xtensa_frame_prev_register)
1885         (xtensa_extract_return_value, xtensa_store_return_value): Likewise.
1886         * v850-tdep.c (v850_unwind_pc): Likewise.
1887         * stack.c (frame_info): Likewise.
1888         * sh-tdep.c (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs)
1889         (sh2a_show_regs, sh2a_nofpu_show_regs, sh3e_show_regs)
1890         (sh3_dsp_show_regs, sh4_show_regs, sh4_nofpu_show_regs)
1891         (sh_dwarf2_frame_init_reg, sh_frame_prev_register, sh_unwind_pc)
1892         (sh_dsp_show_regs): Likewise.
1893         * shnbsd-tdep.c (shnbsd_supply_gregset)
1894         (shnbsd_collect_gregset): Likewise.
1895         * shnbsd-nat.c (GETREGS_SUPPLIES): Likewise.
1896         * sh64-tdep.c (sh64_compact_reg_base_num, sh64_show_media_regs)
1897         (sh64_frame_prev_register, sh64_unwind_pc): Likewise.
1898         * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset)
1899         (6000_register_reggroup_p, rs6000_unwind_pc)
1900         (rs6000_frame_cache): Likewise.
1901         * rs6000-nat.c (regmap, rs6000_fetch_inferior_registers)
1902         (rs6000_store_inferior_registers): Likewise.
1903         * remote-mips.c (mips_wait, mips_load): Likewise.
1904         * procfs.c (procfs_fetch_registers, procfs_store_registers): Likewise.
1905         * ppcobsd-tdep.c (ppcobsd_sigtramp_frame_cache): Likewise.
1906         * ppcobsd-nat.c (ppcobsd_supply_pcb): Likewise.
1907         * ppcnbsd-tdep.c (ppcnbsd_sigtramp_cache_init): Likewise.
1908         * ppcnbsd-nat.c (getregs_supplies, ppcnbsd_supply_pcb): Likewise.
1909         * ppc-linux-tdep.c (ppc_linux_sigtramp_cache): Likewise.
1910         * ppc-linux-nat.c (ppc_register_u_addr, fetch_ppc_registers)
1911         (store_ppc_registers, fill_gregset): Likewise.
1912         * mips-tdep.c (mips_stub_frame_cache, mips_gdbarch_init): Likewise.
1913         * mipsnbsd-tdep.c (mipsnbsd_supply_reg, mipsnbsd_fill_reg): Likewise.
1914         * mipsnbsd-nat.c (getregs_supplies): Likewise.
1915         * m68k-tdep.c (m68k_register_type, m68k_unwind_pc): Likewise.
1916         * m68klinux-nat.c (supply_gregset): Likewise.
1917         * irix5-nat.c (fill_gregset): Likewise.
1918         * i386-tdep.c (i386_unwind_pc): Likewise.
1919         * i386-linux-nat.c (i386_linux_resume): Likewise.
1920         * frame.c (get_prev_frame_1): Likewise.
1921         * dwarf2-frame.c (dwarf2_frame_default_init_reg): Likewise.
1922         * dbug-rom.c (dbug_supply_register): Likewise.
1923         * cris-tdep.c (cris_sigtramp_frame_unwind_cache, cris_scan_prologue)
1924         (crisv32_scan_prologue, cris_unwind_pc, cris_register_size)
1925         (cris_register_type, crisv32_register_type, crisv32_register_name)
1926         (cris_dwarf2_frame_init_reg, find_step_target)
1927         (cris_software_single_step, cris_supply_gregset)
1928         (cris_regnums): Likewise.
1929         * alpha-linux-nat.c (alpha_linux_register_u_offset): Likewise.
1930         * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
1931         (fill_sprs64, fill_sprs32, store_regs_user_thread): Likewise.
1932         * std-regs.c (value_of_builtin_frame_pc_reg): Likewise.
1933         * mips-linux-tdep.c (mips_linux_write_pc): Likewise.
1934
1935         * gdbarch.sh (PS_REGNUM): Replace by gdbarch_ps_regnum.
1936         * dbug-rom.c (dbug_supply_register): Likewise.
1937         * xtensa-tdep.c (xtensa_supply_gregset, xtensa_frame_cache)
1938         (xtensa_frame_prev_register, xtensa_push_dummy_call): Likewise.
1939         * win32-nat.c (win32_resume): Likewise.
1940         * std-regs.c (value_of_builtin_frame_ps_reg): Likewise.
1941         * m68k-tdep.c (m68k_register_type): Likewise.
1942         * m68klinux-nat.c (supply_gregset): Likewise.
1943
1944         * gdbarch.sh (FP0_REGNUM): Replace by gdbarch_fp0_regnum.
1945         * sh-tdep.c (sh_extract_return_value_fpu, sh_store_return_value_fpu)
1946         (sh2e_show_regs, sh2a_show_regs, sh3e_show_regs, sh4_show_regs)
1947         (sh_sh2a_register_type, sh_sh3e_register_type, sh_sh4_register_type)
1948         (fv_reg_base_num, dr_reg_base_num): Likewise.
1949         * sh64-tdep.c (sh64_fv_reg_base_num, sh64_dr_reg_base_num)
1950         (sh64_fpp_reg_base_num, sh64_compact_reg_base_num, sh64_push_dummy_call)
1951         (sh64_extract_return_value, sh64_store_return_value)
1952         (sh64_show_media_regs, sh64_show_compact_regs, sh64_register_type)
1953         (sh64_do_fp_register, sh64_media_print_registers_info): Likewise.
1954         * procfs.c (procfs_fetch_registers, procfs_store_registers)
1955         (invalidate_cache): Likewise.
1956         * ppc-linux-tdep.c (ppc_linux_sigtramp_cache): Likewise.
1957         * mipsnbsd-tdep.c (mipsnbsd_supply_fpreg)
1958         (mipsnbsd_fill_fpreg): Likewise.
1959         * mipsnbsd-nat.c (mipsnbsd_fetch_inferior_registers)
1960         (mipsnbsd_store_inferior_registers): Likewise.
1961         * mips-linux-tdep.c (mips_supply_fpregset, mips_fill_fpregset)
1962         (mips64_supply_fpregset, mips64_fill_fpregset): Likewise.
1963         * mips-linux-nat.c (mips64_linux_register_addr): Likewise.
1964         * m68k-tdep.c (m68k_register_type, m68k_convert_register_p): Likewise.
1965         * m68klinux-nat.c (getfpregs_supplies, supply_fpregset)
1966         (fill_fpregset): Likewise.
1967         * irix5-nat.c (supply_fpregset, fill_fpregset): Likewise.
1968         * i386-tdep.h (struct_return): Likewise (comment).
1969         * i386-nto-tdep.c (i386nto_register_area): Likewise.
1970         * go32-nat.c (fetch_register, go32_fetch_registers, store_register)
1971         (go32_store_registers): Likewise.
1972         * alpha-tdep.c (alpha_next_pc): Likewise.
1973         * alpha-linux-nat.c (alpha_linux_register_u_offset): Likewise.
1974         * alphabsd-nat.c (alphabsd_fetch_inferior_registers)
1975         (alphabsd_store_inferior_registers): Likewise.
1976         * core-regset.c (fetch_core_registers): Likewise.
1977         * i386v4-nat.c (supply_fpregset, fill_fpregset): Likewise.
1978
1979         * gdbarch.c, gdbarch.h: Regenerate.
1980
1981 2007-06-18  Daniel Jacobowitz  <dan@codesourcery.com>
1982
1983         * coffread.c (coff_sym_fns): Add default_symfile_segments.
1984         * dbxread.c (start_psymtab): Check HAVE_ELF.
1985         (aout_sym_fns): Likewise.
1986         * elfread.c (elf_symfile_segments): New.
1987         (elf_sym_fns): Add elf_symfile_segments.
1988         * mipsread.c (ecoff_sym_fns): Add default_symfile_segments.
1989         * remote.c (get_offsets): Use symfile_map_offsets_to_segments.
1990         Skip if there is no symfile_objfile.  Handle TextSeg and DataSeg.
1991         * somread.c (som_sym_fns): Use default_symfile_segments.
1992         * symfile.c (find_sym_fns): Take a BFD and return the sym_fns.
1993         (init_objfile_sect_indices): Call symfile_find_segment_sections.
1994         (default_symfile_segments): New function.
1995         (syms_from_objfile): Update call to find_sym_fns.
1996         (symfile_get_segment_data, free_symfile_segment_data): New.
1997         (symfile_map_offsets_to_segments): New.
1998         (symfile_find_segment_sections): New.
1999         * symfile.h (struct symfile_segment_data): New.
2000         (struct sym_fns): Add sym_segments.
2001         (default_symfile_segments, symfile_get_segment_data)
2002         (free_symfile_segment_data): New prototypes.
2003         (symfile_map_offsets_to_segments): Likewise.
2004         * xcoffread.c (xcoff_sym_fns): Add default_symfile_segments.
2005         * Makefile.in (COMMON_OBS): Remove elfread.o.
2006         (elf_internal_h): New.
2007         (elfread.o): Update.
2008         * configure.ac: Add elfread.o to COMMON_OBS if bfd/elf.o was
2009         compiled.
2010         * config.in, configure: Regenerated.
2011         * NEWS: Mention qOffsets changes.
2012
2013 2007-06-16  Ulrich Weigand  <uweigand@de.ibm.com>
2014
2015         * gdbtypes.h (builtin_type_m2_char, builtin_type_m2_int,
2016         builtin_type_m2_card, builtin_type_m2_real, builtin_type_m2_bool):
2017         Replace global variable declaration with compatibility macro.
2018         (struct builtin_m2_type): New data type.
2019         (builtin_m2_type): Add prototype.
2020         * m2-lang.c (builtin_type_m2_char, builtin_type_m2_int,
2021         builtin_type_m2_card, builtin_type_m2_real, builtin_type_m2_bool):
2022         Remove global variables.
2023         (m2_language_arch_info): Use builtin_m2_type instead of variables.
2024         (build_m2_types): New function.
2025         (m2_type_data): New variable.
2026         (builtin_m2_type): New function.
2027         (_initialize_m2_language): Do not build data types.  Register
2028         m2_type_data per-gdbarch data.
2029
2030 2007-06-16  Ulrich Weigand  <uweigand@de.ibm.com>
2031
2032         * gdbtypes.h (builtin_type_f_character, builtin_type_f_logical,
2033         builtin_type_f_logical_s1, builtin_type_f_logical_s2,
2034         builtin_type_f_integer, builtin_type_f_integer_s2, builtin_type_f_real,
2035         builtin_type_f_real_s8, builtin_type_f_real_s16,
2036         builtin_type_f_complex_s8, builtin_type_f_complex_s16,
2037         builtin_type_f_complex_s32, builtin_type_f_void): Replace global
2038         variable declaration with compatibility macro.
2039         (struct builtin_f_type): New data type.
2040         (builtin_f_type): Add prototype.
2041         * f-lang.c (builtin_type_f_character, builtin_type_f_logical,
2042         builtin_type_f_logical_s1, builtin_type_f_logical_s2,
2043         builtin_type_f_integer, builtin_type_f_integer_s2, builtin_type_f_real,
2044         builtin_type_f_real_s8, builtin_type_f_real_s16,
2045         builtin_type_f_complex_s8, builtin_type_f_complex_s16,
2046         builtin_type_f_complex_s32, builtin_type_f_void): Remove variables.
2047         (f_language_arch_info): Use builtin_f_type instead of variables.
2048         (build_fortran_types): Build builtin_f_type structure instead of
2049         setting global type variables.
2050         (f_type_data): New variable.
2051         (builtin_f_type): New function.
2052         (_initialize_f_language): Do not call build_fortran_types.  Do not
2053         swap global type variables.  Register f_type_data per-gdbarch data.
2054
2055 2007-06-16  Ulrich Weigand  <uweigand@de.ibm.com>
2056
2057         * f-lang.c (_initialize_f_language): Do not initialize or
2058         swap builtin_type_string.
2059
2060 2007-06-16  Ulrich Weigand  <uweigand@de.ibm.com>
2061
2062         * std-regs.c (builtin_type_frame_reg, build_builtin_type_frame_reg,
2063         value_of_builtin_frame_reg): Remove.
2064         (_initialize_frame_reg): Do not swap builtin_type_frame_reg.  Remove
2065         inactive call to value_of_builtin_frame_reg.
2066
2067 2007-06-16  Ulrich Weigand  <uweigand@de.ibm.com>
2068
2069         * gdbarch.sh (bfd_vma_bit): Remove.
2070         * gdbarch.c, gdbarch.h: Regenerate.
2071
2072         * gdbtypes.h (builtin_bfd_vma_type): Remove.
2073         * gdbtypes.h (builtin_bfd_vma_type): Remove.
2074         (build_gdbtypes): Do not initialize it.
2075         (_initialize_gdbtypes): Do not swap it.
2076
2077 2007-06-16  Ulrich Weigand  <uweigand@de.ibm.com>
2078
2079         * gdbtypes.c (builtin_type_v2_double, builtin_type_v4_float, 
2080         builtin_type_v2_int64, builtin_type_v4_int32, builtin_type_v8_int16,
2081         builtin_type_v16_int8, builtin_type_v2_float, builtin_type_v2_int32,
2082         builtin_type_v4_int16, builtin_type_v8_int8, builtin_type_v4sf,
2083         builtin_type_v4si, builtin_type_v16qi, builtin_type_v8qi, 
2084         builtin_type_v8hi, builtin_type_v4hi, builtin_type_v2si,
2085         builtin_type_vec64, builtin_type_vec128): Remove.
2086         (init_simd_type): Remove.
2087         (init_vector_type): Make global.
2088         (build_builtin_type_vec64, build_builtin_type_vec128): Remove.
2089         (build_gdbtypes): Do not build vector types.
2090         (_initialize_gdbtypes): Do not swap vector types.
2091         * gdbtypes.h (builtin_type_v2_double, builtin_type_v4_float, 
2092         builtin_type_v2_int64, builtin_type_v4_int32, builtin_type_v8_int16,
2093         builtin_type_v16_int8, builtin_type_v2_float, builtin_type_v2_int32,
2094         builtin_type_v4_int16, builtin_type_v8_int8, builtin_type_v4sf,
2095         builtin_type_v4si, builtin_type_v16qi, builtin_type_v8qi, 
2096         builtin_type_v8hi, builtin_type_v4hi, builtin_type_v2si,
2097         builtin_type_vec64, builtin_type_vec128): Remove declarations.
2098         (init_vector_type): Add prototype.
2099
2100         * i386-tdep.h (struct gdbarch_tdep): Add i386_mmx_type and
2101         i386_sse_type members.
2102         (i386_mmx_type, i386_sse_type): Change from variables to functions.
2103         * i386-tdep.c (i386_mmx_type, i386_sse_type): Remove variables.
2104         (i386_init_types): Do not build vector types.
2105         (i386_mmx_type, i386_sse_type): New functions.
2106         (i386_register_type): Call them instead of using global variables.
2107         (i386_gdbarch_init): Use XCALLOC to allocate tdep structure.
2108         * amd64-tdep.c (amd64_register_type): Call i386_sse_type instead
2109         of using global variable.
2110
2111         * rs6000-tdep.h (struct gdbarch_tdep): Add ppc_builtin_type_vec64
2112         and ppc_builtin_type_vec128 members.
2113         * rs6000-tdep.c (rs6000_builtin_type_vec64): New function.
2114         (rs6000_builtin_type_vec128): Likewise.
2115         (rs6000_register_type): Call them instead of using builtin_type_vec64
2116         and builtin_type_vec128.
2117         (rs6000_gdbarch_init): Use XCALLOC to allocate tdep structure.
2118
2119         * spu-tdep.c (struct gdbarch_tdep): New data type.
2120         (spu_builtin_type_vec128): Remove variable.
2121         (spu_builtin_type_vec128): New function.
2122         (spu_register_type): Call it instead of using global variable.
2123         (spu_gdbarch_init): Allocate tdep structure.
2124         (spu_init_vector_type): Remove function.
2125         (_initialize_spu_tdep): Do not call it.
2126
2127 2007-06-16  Ulrich Weigand  <uweigand@de.ibm.com>
2128
2129         * amd64-tdep.c (struct amd64_register_info): Remove.
2130         (amd64_register_info): Remove.
2131         (amd64_register_names): New static variable.
2132         (AMD64_NUM_REGS): Use amd64_register_names instead of
2133         amd64_register_info.
2134         (amd64_register_name): Likewise.
2135         (amd64_register_type): Do not refer to amd64_register_info.
2136
2137         * s390-tdep.c (struct s390_register_info): Remove.
2138         (s390_register_info): Remove.
2139         (s390_register_name): Do not refer to s390_register_info.
2140         (s390_register_type): Likewise.
2141
2142         * sparc64-tdep.c (struct sparc64_register_info): Remove.
2143         (sparc64_register_info, sparc64_pseudo_register_info): Remove.
2144         (sparc64_register_names, sparc64_pseudo_register_names): New.
2145         (SPARC64_NUM_REGS, SPARC64_NUM_PSEUDO_REGS): Use
2146         sparc64_register_names and sparc64_pseudo_register_names instead of
2147         sparc64_register_info and sparc64_pseudo_register_info.
2148         (sparc64_register_name): Likewise.
2149         (sparc64_register_type): Do not refer to sparc64_register_info
2150         and sparc64_pseudo_register_info.
2151
2152 2007-06-16  Ulrich Weigand  <uweigand@de.ibm.com>
2153
2154         * c-lang.c (cplus_builtin_types): Remove.
2155         (enum cplus_primitive_types): New data type.
2156         (cplus_language_arch_info): New function.
2157         (cplus_language_defn): Set la_language_arch_info member.  Do not set
2158         la_builtin_type_vector and string_char_type members.
2159
2160         * f-lang.c (f_builtin_types): Remove.
2161         (enum f_primitive_types): New data type.
2162         (f_language_arch_info): New function.
2163         (f_language_de): Set la_language_arch_info member.  Do not set
2164         la_builtin_type_vector and string_char_type members.
2165
2166         * m2-lang.c (m2_builtin_types): Remove.
2167         (enum m2_primitive_types): New data type.
2168         (m2_language_arch_info): New function.
2169         (m2_language_defn): Set la_language_arch_info member.  Do not set
2170         la_builtin_type_vector and string_char_type members.
2171
2172         * objc-lang.c (objc_builtin_types): Remove.
2173         (objc_language): Set la_language_arch_info member.  Do not set
2174         la_builtin_type_vector and string_char_type members.
2175
2176         * p-lang.c (pascal_builtin_types): Remove.
2177         (enum pascal_primitive_types): New data type.
2178         (pascal_language_arch_info): New function.
2179         (pascal_language_defn): Set la_language_arch_info member.  Do not set
2180         la_builtin_type_vector and string_char_type members.
2181
2182 2007-06-16  Ulrich Weigand  <uweigand@de.ibm.com>
2183
2184         * regcache.c (struct regcache): Add ptid_t member.
2185         (regcache_xmalloc): Initialize it.
2186         (regcache_cpy_no_passthrough): Do not refer to current_regcache.
2187         (regcache_dup): Likewise.
2188         (regcache_dup_no_passthrough): Likewise.
2189         (current_regcache): Make static.
2190         (registers_ptid): Remove variable.
2191         (get_thread_regcache): New function.
2192         (get_current_regcache): New function.
2193         (registers_changed): Implement by freeing current regcache.
2194         (regcache_raw_read): Do not refer to current_regcache.  Set 
2195         inferior_ptid to regcache->ptid while calling target routines.
2196         (regcache_raw_write): Likewise.
2197         (regcache_raw_supply): Do not refer to current_regcache.
2198         (read_pc_pid): Use thread regcache.  Do not modify inferior_ptid.
2199         (write_pc_pid): Likewise.
2200         (build_regcache): Remove.
2201         (_initialize_regcache): Do not call DEPRECATED_REGISTER_GDBARCH_SWAP
2202         or deprecated_register_gdbarch_swap.  Do not initialize
2203         registers_ptid.
2204         * regcache.h (get_current_regcache): Add prototype.
2205         (get_thread_regcache): Likewise.
2206         (current_regcache): Remove declaration.
2207
2208         * corelow.c (core_open): Replace current_regcache by
2209         get_current_regcache ().
2210         * frame.c (frame_pop): Likewise.
2211         (put_frame_register): Likewise.
2212         (get_current_frame, create_new_frame): Likewise.
2213         * mi/mi-main.c (mi_cmd_data_write_register_values): Likewise.
2214         * stack.c (return_command): Likewise.
2215         * infcall.c (call_function_by_hand): Likewise.
2216         * infrun.c (resume): Likewise.
2217         (save_inferior_status, restore_inferior_status): Likewise.
2218         * linux-fork.c (fork_load_infrun_state): Likewise.
2219         (fork_save_infrun_state): Likewise.
2220         * win32-nat.c (win32_resume): Likewise.
2221         * i386fbsd-nat.c (i386fbsd_resume): Likewise.
2222         * monitor.c (monitor_wait): Likewise.
2223         * remote.c (remote_wait): Likewise.
2224         * remote-mips.c (mips_wait): Likewise.
2225
2226         * bsd-kvm.c (bsd_kvm_open): Likewise
2227         (bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd): Likewise.
2228         * fbsd-nat.c (fbsd_make_corefile_notes): Likewise.
2229         * i386-linux-nat.c (i386_linux_resume): Likewise.
2230         * ia64-linux-nat.c (ia64_linux_insert_watchpoint): Likewise.
2231         (ia64_linux_stopped_data_address): Likewise.
2232
2233         * frv-tdep.c (frv_fdpic_loadmap_addresses): Likewise.
2234         * m32c-tdep.c (m32c_virtual_frame_pointer): Likewise.
2235         * mep-tdep.c (current_me_module, current_options): Likewise.
2236         * mips-tdep.c (deprecated_mips_set_processor_regs_hack): Likewise.
2237
2238         * linux-nat.c (linux_nat_do_thread_registers): Use thread
2239         regcache instead of current_regcache.  Call target_fetch_registers.
2240         (linux_nat_corefile_thread_callback): Update call site.
2241         (linux_nat_do_registers): Likewise.
2242         * procfs.c (procfs_do_thread_registers): Use thread regcache instead
2243         of current_regcache.
2244         (procfs_make_note_section): Likewise.
2245         * proc-service.c (ps_lgetregs, ps_lsetregs): Likewise.
2246         (ps_lgetfpregs, ps_lsetfpregs): Likewise.
2247         * sol-thread.c (ps_lgetregs, ps_lsetregs): Likewise.
2248         (ps_lgetfpregs, ps_lsetfpregs): Likewise.
2249
2250 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
2251
2252         * regcache.c (read_register, read_register_pid): Remove.
2253         (write_register, write_register_pid): Likewise.
2254         * regcache.h (read_register, read_register_pid): Remove prototype.
2255         (write_register, write_register_pid): Likewise.
2256
2257 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
2258
2259         * gdbarch.sh (read_pc): Add REGCACHE argument.  Remove PTID argument.
2260         (write_pc): Likewise.  Remove default implementation, add predicate.
2261         * gdbarch.c, gdbarch.h: Regenerate.
2262         * regcache.c (read_pc_pid): Use current regcache instead of calling
2263         read_register_pid.
2264         (write_pc_pid): Check gdbarch_write_pc predicate, implement default
2265         case inline.
2266         (generic_target_write_pc): Remove.
2267         * inferior.h (generic_target_write_pc): Remove.
2268         * frv-tdep.c (frv_gdbarch_init): Do not install it.
2269         * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
2270         * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
2271         * sh64-tdep.c (sh64_gdbarch_init): Likewise.
2272         * sh-tdep.c (sh_gdbarch_init): Likewise.
2273         * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
2274
2275         * avr-tdep.c (avr_read_pc): Add REGCACHE argument.  Remove PTID
2276         argument.  Use REGCACHE instead of calling read_register_pid.
2277         * hppa-hpux-tdep.c (hppa_hpux_read_pc): Likewise.
2278         * hppa-tdep.c (hppa_read_pc): Likewise.
2279         * hppa-tdep.h (hppa_read_pc): Likewise.
2280         * ia64-tdep.c (ia64_read_pc): Likewise.
2281         * m32r-tdep.c (m32r_read_pc): Likewise.
2282         * mep-tdep.c (mep_read_pc): Likewise.
2283         * mn10300-tdep.c (mn10300_read_pc): Likewise.
2284         * spu-tdep.c (spu_read_pc): Likewise.
2285
2286         * arm-tdep.c (arm_write_pc): Add REGCACHE argument.  Remove PTID
2287         argument.  Use REGCACHE instead of calling write_register_pid.
2288         * avr-tdep.c (avr_write_pc): Likewise.
2289         * hppa-hpux-tdep.c (hppa_hpux_write_pc): Likewise.
2290         * hppa-tdep.c (hppa_write_pc): Likewise.
2291         * hppa-tdep.h (hppa_write_pc): Likewise.
2292         * i386-linux-tdep.c (i386_linux_write_pc): Likewise.
2293         * amd64-linux-tdep.c (amd64_linux_write_pc): Likewise.
2294         * ia64-linux-tdep.c (ia64_linux_write_pc): Likewise.
2295         * ia64-tdep.c (ia64_write_pc): Likewise.
2296         * ia64-tdep.h (ia64_write_pc): Likewise.
2297         * m32r-tdep.c (m32r_write_pc): Likewise.
2298         * m88k-tdep.c (m88k_write_pc): Likewise.
2299         * mep-tdep.c (mep_write_pc): Likewise.
2300         * mips-tdep.c (mips_write_pc): Likewise.
2301         * mips-linux-tdep.c (mips_linux_write_pc): Likewise.
2302         * mn10300-tdep.c (mn10300_write_pc): Likewise.
2303         * sparc-tdep.c (sparc_write_pc): Likewise.
2304         * spu-tdep.c (spu_write_pc): Likewise.
2305
2306         * mips-tdep.c (read_signed_register): Remove.
2307         (read_signed_register_pid): Likewise.
2308         (mips_read_pc): Add REGCACHE argument.  Remove PTID argument.
2309         Use REGCACHE instead of calling read_signed_register_pid.
2310
2311 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
2312
2313         * gdbarch.sh (push_dummy_code): Add REGCACHE argument.
2314         * gdbarch.c, gdbarch.h: Regenerate.
2315         * infcall.c (generic_push_dummy_code): Add REGCACHE argument.
2316         (push_dummy_code): Likewise.  Pass it to callee.
2317         (call_function_by_hand): Pass current regcache to push_dummy_code.
2318
2319         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Add REGCACHE
2320         argument.  Use it instead of current_regcache.
2321
2322         * cris-tdep.c (cris_push_dummy_code): Add REGCACHE argument.
2323         * sparc-tdep.c (sparc32_push_dummy_code): Likewise.
2324
2325 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
2326
2327         * gdbarch.sh (get_longjmp_target): Add FRAME argument.
2328         * gdbarch.c, gdbarch.h: Regenerate.
2329         * infrun.c (handle_inferior_event): Pass current frame to
2330         gdbarch_get_longjmp_target.
2331
2332         * alpha-tdep.c (alpha_get_longjmp_target): Add FRAME argument.
2333         Read registers from FRAME instead of using read_register.
2334         Use get_frame_arch instead of current_gdbarch.
2335         * arm-tdep.c (arm_get_longjmp_target): Likewise.
2336         * i386-tdep.c (i386_get_longjmp_target): Likewise.
2337         * m68k-tdep.c (m68k_get_longjmp_target): Likewise.
2338         * mips-linux-tdep.c (mips_linux_get_longjmp_target): Likewise.
2339         (mips64_linux_get_longjmp_target): Likewise.
2340         * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Likewise.
2341
2342 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
2343
2344         * gdbarch.sh (skip_trampoline_code): Add FRAME argument.
2345         * gdbarch.c, gdbarch.h: Regenerate.
2346         * arch-utils.c (generic_skip_trampoline_code): Add FRAME argument.
2347         * arch-utils.h (generic_skip_trampoline_code): Likewise.
2348         * infrun.c (handle_inferior_event): Pass current frame to
2349         gdbarch_skip_trampoline_code and skip_language_trampoline.
2350
2351         * language.c (unk_lang_trampoline): Add FRAME argument.
2352         (skip_language_trampoline): Add FRAME argument.  Pass it to
2353         skip_trampoline callback.
2354         * language.h: Add forward declaration of struct frame_info.
2355         (struct language_defn): Add FRAME argument to skip_trampoline.
2356         (skip_language_trampoline): Add FRAME argument.
2357         * cp-abi.c (cplus_skip_trampoline): Add FRAME argument.  Pass it
2358         to skip_trampoline callback.
2359         * cp-abi.h: Add forward declaration of struct frame_info.
2360         (cplus_skip_trampoline): Add FRAME argument.
2361         (struct cp_abi_ops): Add FRAME argument to skip_trampoline callback.
2362         * gnu-v3-abi.c (gnuv3_skip_trampoline): Add FRAME argument.  Pass it
2363         to gdbarch_skip_trampoline_code.
2364         * objc-lang.c (objc_skip_trampoline): Add FRAME argument.  Pass it
2365         to gdbarch_skip_trampoline_code.
2366
2367         * minsyms.c (find_solib_trampoline_target): Add FRAME argument.
2368         * symtab.h (find_solib_trampoline_target): Likewise.
2369         * obsd-tdep.c (obsd_skip_solib_resolver): Pass current frame to
2370         find_solib_trampoline_target.
2371
2372         * arm-tdep.c (arm_skip_stub): Add FRAME argument.  Read registers
2373         from FRAME instead of calling read_register.
2374
2375         * hppa-hpux-tdep.c (hppa_hpux_skip_trampoline_code): Add FRAME
2376         argument.  Read registers from FRAME instead of using read_register.
2377         * hppa-tdep.c (hppa_skip_trampoline_code): Likewise.
2378         * hppa-tdep.h (hppa_skip_trampoline_code): Add FRAME argument.
2379
2380         * i386-cygwin-tdep.c (i386_cygwin_skip_trampoline_code): Add FRAME
2381         argument.
2382
2383         * m32c-tdep.c (m32c_skip_trampoline_code): Add FRAME argument.
2384
2385         * mips-tdep.c (mips_skip_trampoline_code): Add FRAME argument.  Read
2386         registers from FRAME instead of using read_signed_register.
2387
2388         * ppc-linux-tdep.c (ppc_linux_skip_trampoline_code): Add FRAME
2389         argument.
2390         (ppc64_standard_linkage_target): Likewise.  Read registers from FRAME
2391         instead of using read_register.
2392         (ppc64_skip_trampoline_code): Add FRAME argument.  Pass it to
2393         ppc64_standard_linkage_target.
2394         * rs6000-tdep.c (rs6000_skip_trampoline_code): Add FRAME argument.
2395         Pass it to find_solib_trampoline_target.  Read registers from FRAME
2396         instead of using read_register.
2397
2398         * xstormy16-tdep.c (xstormy16_skip_trampoline_code): Add FRAME
2399         argument.
2400
2401 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
2402
2403         * gdbarch.sh (software_single_step): Replace REGCACHE argument by
2404         FRAME argument.
2405         * gdbarch.c, gdbarch.h: Regenerate.
2406         * infrun.c (resume): Pass current frame to SOFTWARE_SINGLE_STEP.
2407
2408         * alpha-tdep.c (alpha_next_pc): Add FRAME argument.  Retrieve
2409         registers from FRAME instead of using read_register.
2410         (alpha_software_single_step): Replace REGCACHE by FRAME.  Pass FRAME
2411         to alpha_next_pc.  Use get_frame_pc instead of read_pc.
2412         * alpha-tdep.h (alpha_software_single_step): Replace REGCACHE
2413         argument by FRAME.
2414
2415         * arm-tdep.c (shifted_reg_val): Add FRAME argument.  Read registers
2416         from FRAME instead of using read_register.
2417         (thumb_get_next_pc): Likewise.
2418         (arm_get_next_pc): Likewise.
2419         (arm_software_single_step): Replace REGCACHE by FRAME.  Pass FRAME
2420         to arm_get_next_pc.  Use get_frame_pc instead of read_register.
2421         * arm-tdep.h (arm_software_single_step): Replace REGCACHE
2422         argument by FRAME.
2423
2424         * cris-tdep.c (find_step_target): Add FRAME argument.  Read registers
2425         from FRAME instead of using read_register.
2426         (cris_software_single_step): Replace REGCACHE by FRAME.  Pass FRAME
2427         to find_step_target.
2428
2429         * mips-tdep.c (mips32_next_pc): Add FRAME argument.  Read registers
2430         from FRAME instead of using read_register / read_signed_register.
2431         (extended_mips16_next_pc): Likewise.
2432         (mips16_next_pc): Likewise.
2433         (mips_next_pc): Likewise.
2434         (mips_software_single_step): Replace REGCACHE by FRAME.  Pass FRAME
2435         to mips_next_pc.  Use get_frame_pc instead of read_pc.
2436         * mips-tdep.h (mips_software_single_step): Replace REGCACHE
2437         argument by FRAME.
2438
2439         * rs6000-tdep.c (branch_dest): Add FRAME argument.  Use it instead
2440         of current frame.  Read registers from FRAME.
2441         (deal_with_atomic_sequence): Add FRAME argument.  Pass it to
2442         branch_dest.  Use get_frame_pc instead of read_pc.
2443         (rs6000_software_single_step): Likewise.
2444         (bl_to_blrl_insn_p): Do not call branch_dest.
2445         * rs6000-tdep.h (rs6000_software_single_step): Replace REGCACHE
2446         argument by FRAME.
2447
2448         * sparc64-linux-tdep.c (sparc64_linux_step_trap): Add FRAME argument.
2449         Read registers from FRAME instead of current regcache.
2450         * sparc-linux-tdep.c (sparc32_linux_step_trap): Likewise.
2451         * sparcnbsd-tdep.c (sparcnbsd_step_trap): Likewise.
2452         * sparc-tdep.c (sparc_address_from_register): Remove.
2453         (sparc_analyze_control_transfer): Pass FRAME argument instead of
2454         GDBARCH.  Pass FRAME to step_trap callback.
2455         (sparc_step_trap): Add FRAME argument.
2456         (space_software_single_step): Replace REGCACHE by FRAME.  Pass FRAME
2457         to sparc_analyze_control_transfer.  Read registers from FRAME instead
2458         of calling sparc_address_from_register.
2459         * sparc-tdep.h (struct gdbarch_tdep): Add FRAME argument to
2460         step_trap callback.
2461         (sparc_address_from_register): Remove prototype.
2462         (sparc_software_single_step): Replace REGCACHE argument by FRAME.
2463         (sparcnbsd_step_trap): Add FRAME argument.
2464
2465         * spu-tdep.c (spu_software_single_step): Replace REGCACHE argument
2466         by FRAME.  Read registers from FRAME instead of REGCACHE.
2467
2468 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
2469
2470         * arm-tdep.c (arm_print_float_info): Use register value from FRAME
2471         instead of calling read_register.
2472
2473         * avr-tdep.c (avr_push_dummy_call): Write to REGCACHE instead of
2474         calling write_register.
2475
2476         * hppa-tdep.c (hppa32_push_dummy_call): Write to REGCACHE instead of
2477         calling write_register.
2478
2479         * ia64-tdep.c (find_func_descr): Add REGCACHE parameter.  Use it
2480         instead of calling read_register.
2481         (ia64_push_dummy_call): Update call to find_func_descr.  Use REGCACHE
2482         instead of calling read_register and write_register.
2483
2484         * m32r-tdep.c (m32r_linux_supply_gregset): Use REGCACHE parameter
2485         instead of current_regcache.
2486
2487         * mn10300-tdep.c (mn10300_push_dummy_call): Write to REGCACHE instead
2488         of calling write_register.
2489         * mn10300-linux-tdep.c (am33_supply_fpregset_method): Use REGCACHE
2490         parameter instead of current_regcache.
2491
2492         * mips-tdep.c (mips2_fp_compat): Add FRAME parameter.  Use it 
2493         instead of calling read_register.
2494         (mips_read_fp_register_double, mips_print_fp_register): Update calls.
2495         (mips_eabi_push_dummy_call): Use REGCACHE instead of write_register.
2496         (mips_n32n64_push_dummy_call): Likewise.
2497         (mips_o32_push_dummy_call): Likewise.
2498         (mips_o64_push_dummy_call): Likewise.
2499
2500         * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Use REGCACHE
2501         parameter instead of current_regcache.
2502
2503         * xtensa-tdep.c (xtensa_register_write_masked): Add REGCACHE parameter.
2504         Use it instead of read_register and write_register.
2505         (xtensa_register_read_masked): Likewise.
2506         (xtensa_pseudo_register_read): Update call.
2507         (xtensa_pseudo_register_write): Likewise.
2508         (xtensa_frame_cache): Use register values unwound from NEXT_FRAME
2509         instead of calling read_register.
2510         (xtensa_push_dummy_call): Update comment.
2511
2512 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
2513
2514         * mips-tdep.c (mips16_scan_prologue): Replace read_next_frame_reg
2515         by frame_unwind_register_signed calls.
2516         (mips32_scan_prologue): Likewise.  Skip analysis of alloca stack
2517         frame allocations when called with NULL NEXT_FRAME parameter.
2518         (read_next_frame_reg): Remove.
2519
2520         * sh-tdep.c (sh_analyze_prologue): Add FPSCR parameter.  Use it
2521         instead of reading the FPSCR register.
2522         (sh_frame_cache): Pass unwound FPSCR register value to
2523         sh_analyze_prologue.
2524         (sh_skip_prologue): Pass dummy FPSCR value to sh_analyze_prologue.
2525
2526         * v850-tdep.c (v850_analyze_prologue): Add CTBP parameter.  Use it
2527         instead of reading the CTBP register.
2528         (v850_frame_cache): Pass unwound CTBP register value to
2529         v850_analyze_prologue.
2530
2531 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
2532
2533         * sh-tdep.h (sh_show_regs): Add FRAME parameter.
2534         * sh-tdep.c (sh_show_regs): Likewise.
2535         (sh_show_regs_command): Pass current frame to sh_show_regs routine.
2536         (sh_generic_show_regs): Add FRAME parameter.  Use register
2537         values from that frame instead of calling read_register.
2538         (sh3_show_regs, sh2e_show_regs, sh2a_show_regs, sh2a_nofpu_show_regs,
2539         sh3e_show_regs, sh3_dsp_show_regs, sh4_show_regs, sh4_nofpu_show_regs,
2540         sh_dsp_show_regs): Likewise.
2541         * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs,
2542         sh64_show_regs): Likewise.
2543
2544 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
2545
2546         * mips-tdep.c (deprecated_mips_set_processor_regs_hack): Read from
2547         current regcache instead of calling read_register.
2548
2549 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
2550
2551         * mep-tdep.c (current_me_module): Read from current regcache
2552         instead of calling read_register.
2553         (current_options): Likewise.
2554
2555 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
2556
2557         * cris-tdep.c (cris_stopped_data_address): Read register values
2558         from current frame instead of calling read_register.
2559         * frv-tdep.c (frv_stopped_data_address): Likewise.
2560
2561 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
2562
2563         * solib-sunos.c (sunos_solib_create_inferior_hook): Use write_pc
2564         instead of write_register (PC_REGNUM, ...).
2565
2566 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
2567
2568         * solib-sunos.c (sunos_solib_create_inferior_hook): Add comment
2569         explaining why the PC adjustment code is necessary.
2570
2571 2007-06-15  Vladimir Prus  <vladimir@codesourcery.com>
2572
2573         * m68k-tdep.h (enum m68k_flavour): New. 
2574         (struct gdbarch_tdep): New fields
2575         float_return, flavour and fpregs_present.
2576         * m68k-tdep.c (m68k_register_type): Use
2577         fpregs_present and conditionalize floating
2578         registers type on flavour.
2579         (m68k_register_names): New.
2580         (m68k_register_name): Use the above.
2581         (m68k_convert_register_p): Consult fpregs_present.
2582         (m68k_register_to_value, m68k_value_to_register):
2583         Use register_type to obtain the type of floating
2584         point registers.
2585         (m68k_svr4_extract_return_value): Check tdep->float_return.
2586         Use register_type to get the type of floating
2587         point regiters.
2588         (m68k_svr4_store_return_value): Likewise.
2589         (m68k_dwarf_reg_to_regnum): Check tdep->fpregs_present.
2590         (m68k_analyze_register_saves): Likewise.
2591         (m68k_gdbarch_init): Extract infromation
2592         from XML description, if present.  Guess coldfire by
2593         looking at the file, if present. Conditionalize
2594         setting of long double format.  Set decr_pc_after_break
2595         to 2 on coldfire and fido.  Enable XML-driven
2596         register description.
2597         * m68kbsd-tdep.c (m68kbsd_fpreg_offset): Use
2598         size of tdep->fpreg_type, as opposed to hardcoded value.
2599         * Makefile.in (m68k-tdep.o): Update dependencies.
2600         
2601 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
2602
2603         * NEWS: Mention "info spu" commands and qXfer:spu:read and
2604         qXfer:spu:write remote packet types.
2605
2606 2007-06-13  Daniel Jacobowitz  <dan@codesourcery.com>
2607
2608         * xml-tdesc.c (tdesc_start_target): New.
2609         (target_attributes): New.
2610         (tdesc_elements): Use it.
2611         * features/gdb-target.dtd: Add #FIXED version attribute for
2612         <target>.
2613
2614 2007-06-13  Arthur Huillet  <arthur.huillet@free.fr>
2615
2616         * mi/mi-cmd-var.c (mi_cmd_var_assign): Fix typo.
2617
2618 2007-06-13  Claudio Fontana <claudio.fontana@gmail.com>
2619
2620         * fork-child.c (fork_inferior): Update comment.
2621
2622 2007-06-13  Daniel Jacobowitz  <dan@codesourcery.com>
2623
2624         * features/Makefile: Generate regformats for mips-linux and
2625         mips64-linux.
2626         * features/sort-regs.xsl: Correct typo.
2627         * regformats/reg-mips.dat, regformats/reg-mips64.dat: Delete.
2628         * regformats/mips-linux.dat, regformats/mips64-linux.dat: New generated
2629         files.
2630
2631 2007-06-13  Daniel Jacobowitz  <dan@codesourcery.com>
2632
2633         * config/mips/linux.mh (TDEP_XML): New.
2634         * features/mips-linux.xml, features/mips64-linux.xml: New files.
2635         * mips-linux-nat.c (mips_linux_register_addr): Handle
2636         MIPS_RESTART_REGNUM.
2637         (mips64_linux_register_addr): Likewise.
2638         (super_xfer_partial, mips_linux_xfer_partial): New.
2639         (_initialize_mips_linux_nat): Add them to the target_ops.
2640         * mips-linux-tdep.c (mips_supply_gregset): Handle MIPS_RESTART_REGNUM.
2641         (mips_fill_gregset, mips64_supply_gregset, mips64_fill_gregset)
2642         (mips_linux_o32_sigframe_init)
2643         (mips_linux_n32n64_sigframe_init): Likewise.
2644         (mips_linux_write_pc, mips_linux_restart_reg_p): New.
2645         (mips_linux_init_abi): Use mips_linux_write_pc.  Check for the
2646         "org.gnu.gdb.mips.linux" feature.
2647         * mips-linux-tdep.h (MIPS_RESTART_REGNUM): New constant.
2648         (mips_linux_restart_reg_p): New prototype.
2649         * mips-tdep.c (mips_gdbarch_init): Pass tdesc_data to the OS/ABI
2650         initialization routine.
2651         * Makefile.in (mips-linux-tdep.o, mips-linux-nat.o): Update.
2652
2653 2007-06-13  Daniel Jacobowitz  <dan@codesourcery.com>
2654
2655         * Makefile.in (mips-tdep.o): Update.
2656         * mips-tdep.c (struct register_alias, mips_o32_aliases)
2657         (mips_n32_n64_aliases, mips_register_aliases): New.
2658         (mips_register_name): Call tdesc_register_name.
2659         (mips_tdesc_register_reggroup_p): New.
2660         (mips_pseudo_register_type, value_of_mips_user_reg): New.
2661         (mips_gdbarch_init): Add target-described register support.
2662         Register aliases for register names.
2663         * target-descriptions.c (tdesc_register_name): Make global.
2664         (tdesc_register_in_reggroup_p): New function, broken out from
2665         tdesc_register_reggroup_p.
2666         (tdesc_register_reggroup_p): Use it.
2667         * target-descriptions.h (tdesc_register_name)
2668         (tdesc_register_in_reggroup_p): New prototypes.
2669         * NEWS: Correct formatting.  Mention MIPS register support.
2670         * features/mips-cp0.xml, features/mips-fpu.xml,
2671         features/mips64-cp0.xml, gdb/features/mips64-fpu.xml, mips-cpu.xml,
2672         features/mips64-cpu.xml: New files.
2673
2674 2007-06-13  Markus Deuling  <deuling@de.ibm.com>
2675
2676         * gdbarch.sh (TARGET_ADDR_BIT): Replace by gdbarch_addr_bit.
2677         * valops.c (value_cast): Likewise.
2678         * utils.c (strlen_paddr, paddr, paddr_nz, paddress): Likewise.
2679         * ui-out.c (ui_out_field_core_addr): Likewise.
2680         * tracepoint.c (tracepoints_info): Likewise.
2681         * symtab.c (print_msymbol_info): Likewise.
2682         * solib-irix.c (irix_current_sos)
2683         (irix_open_symbol_file_object): Likewise.
2684         * remote.c (build_remote_gdbarch_data): Likewise.
2685         * prologue-value.c (make_pv_area): Likewise.
2686         * procfs.c (info_mappings_callback): Likewise.
2687         * printcmd.c (print_scalar_formatted)
2688         (deprecated_print_address_numeric): Likewise.
2689         * memattr.c (mem_info_command): Likewise.
2690         * linux-nat.c (linux_nat_info_proc_cmd): Likewise.
2691         * gdbtypes.c (build_flt, gdbtypes_post_init): Likewise.
2692         * exec.c (print_section_info): Likewise.
2693         * dwarf2read.c (read_subrange_type): Likewise.
2694         * dwarf2loc.c (find_location_expression): Likewise.
2695         * dwarf2expr.c (dwarf2_read_address, unsigned_address_type)
2696         (signed_address_type, execute_stack_op): Likewise.
2697         * breakpoint.c (print_one_breakpoint, breakpoint_1): Likewise.
2698         * gdbarch.c, gdbarch.h: Regenerate.
2699
2700 2007-06-13  Markus Deuling  <deuling@de.ibm.com>
2701
2702         * gdbarch.sh (TARGET_ARCHITECTURE): Replace by gdbarch_bfd_arch_info.
2703         * arch-utils.c (show_architecture): Likewise.
2704         * remote-mips.c (mips_open): Likewise
2705         * nto-tdep.c (nto_find_and_open_solib)
2706         (nto_init_solib_absolute_prefix): Likewise.
2707         * nto-procfs (procfs_open): Likewise.
2708         * m68hc11-tdep.c (gdb_print_insn_m68hc11): Likewise.
2709         * gcore.c (default_gcore_mach, default_gcore_arch): Likewise.
2710         * gdbarch.c, gdbarch.h: Regenerate.
2711
2712 2007-06-13  Markus Deuling  <deuling@de.ibm.com>
2713
2714         * gdbarch.sh (TARGET_BFD_VMA_BIT): Replace by gdbarch_bfd_vma_bit.
2715         * gdbtypes.c (build_flt): Likewise.
2716         * gdbarch.c, gdbarch.h: Regenerate.
2717
2718 2007-06-13  Markus Deuling  <deuling@de.ibm.com>
2719
2720         * gdbarch.sh (BREAKPOINT_FROM_PC): Replace by
2721         gdbarch_breakpoint_from_pc.
2722         * s390-tdep.c (s390_gdbarch_init): Likewise (comment).
2723         * remote.c (remote_insert_breakpoint)
2724         (remote_insert_hw_breakpoint): Likewise.
2725         * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Likewise.
2726         * mips-tdep.c (mips_breakpoint_from_pc): Likewise (comment).
2727         * breakpoint.h (bp_target_info): Likewise (comment).
2728         * breakpoint.c (read_memory_nobpt): Likewise.
2729         * mem-break.c (default_memory_insert_breakpoint): Likewise.
2730         (symtab.h, breakpoint.h): Remove include. Remove unnecessary comment.
2731         * gdbarch.c, gdbarch.h: Regenerate.
2732
2733 2007-06-13  Markus Deuling  <deuling@de.ibm.com>
2734
2735         * gdbarch.sh (TARGET_PTR_BIT): Replace with gdbarch_ptr_bit.
2736         * solib-svr4.c (svr4_truncate_ptr): Likewise.
2737         * solib-pa64.c (read_dynamic_info): Likewise.
2738         * solib-legacy.c (legacy_svr4_fetch_link_map_offsets): Likewise.
2739         * solib.c (info_sharedlibrary_command): Likewise.
2740         * s390-nat.c (SUBOFF): Likewise.
2741         * p-valprint.c (pascal_val_print): Likewise.
2742         * procfs.c (info_proc_mappings): Likewise.
2743         * printcmd.c (decode_format): Likewise.
2744         * nto-tdep.c (nto_truncate_ptr): Likewise.
2745         * mips-linux-tdep.c (mips_linux_get_longjmp_target)
2746         (mips64_linux_get_longjmp_target): Likewise.
2747         * m68k-tdep.c (m68k_get_longjmp_target): Likewise.
2748         * jv-valprint.c (java_value_print): Likewise.
2749         * jv-lang.c (get_java_object_header_size): Likewise.
2750         * hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Likewise.
2751         * hppa-hpux-tdep.c (hppa_hpux_skip_trampoline_code)
2752         (hppa_hpux_unwind_adjust_stub): Likewise.
2753         * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
2754         * gdbtypes.c (make_pointer_type, make_reference_type)
2755         (smash_to_memberptr_type): Likewise.
2756         * gdbarch.c, gdbarch.h: Regenerate.
2757
2758 2007-06-13  Daniel Jacobowitz  <dan@codesourcery.com>
2759
2760         * mips-tdep.c (mips_print_register): Remove unused ALL argument.
2761         (print_gp_register_row): Stop before printing a register bigger
2762         than the ABI register size.
2763         (mips_print_registers_info): Update call to mips_print_register.
2764
2765 2007-06-13  Daniel Jacobowitz  <dan@codesourcery.com>
2766
2767         * expression.h (enum exp_opcode): Document a register name for
2768         OP_REGISTER.
2769         * parse.c (write_dollar_variable): Write the register name for
2770         OP_REGISTER.
2771         (operator_length_standard): Expect the register name following
2772         OP_REGISTER.
2773         * ada-lang.c (resolve_subexp): Likewise.
2774         * ax-gdb.c (gen_expr): Likewise.
2775         * eval.c (evaluate_subexp_standard): Likewise.
2776         * expprint.c (print_subexp_standard, dump_subexp_body_standard):
2777         Likewise.
2778         * tracepoint.c (encode_actions): Likewise.
2779
2780 2007-06-13  Daniel Jacobowitz  <dan@codesourcery.com>
2781
2782         * utils.c (set_screen_size): Use INT_MAX for default columns.
2783
2784 2007-06-13  Ulrich Weigand  <uweigand@de.ibm.com>
2785
2786         * remote.c (remote_protocol_features): Add qXfer:spu:read and
2787         qXfer:spu:write packet types.
2788
2789 2007-06-12  Markus Deuling  <deuling@de.ibm.com>
2790
2791         * gdbarch.sh (DEPRECATED_STACK_ALIGN): Remove.
2792         * gdbarch.c, gdbarch.h: Regenerate.
2793
2794 2007-06-12  Markus Deuling  <deuling@de.ibm.com>
2795
2796         * gdbarch.sh (STAB_REG_TO_REGNUM): Replace by
2797         gdbarch_stab_reg_to_regnum.
2798         * stabsread.c (define_symbol): Likewise.
2799         * gdbarch.sh (ECOFF_REG_TO_REGNUM): Replace by
2800         gdbarch_ecoff_reg_to_regnum.
2801         * mdebugread.c (parse_symbol): Likewise.
2802         * i386-tdep.c (i386_gdbarch_init): Likewise (comment).
2803         * gdbarch.sh (DWARF_REG_TO_REGNUM): Replace by
2804         gdbarch_dwarf_reg_to_regnum.
2805         * gdbarch.sh (SDB_REG_TO_REGNUM): Replace by gdbarch_sdb_reg_to_regnum.
2806         * coffread.c (process_coff_symbol): Likewise.
2807         * gdbarch.sh (DWARF2_REG_TO_REGNUM): Replace by
2808         gdbarch_dwarf2_reg_to_regnum.
2809         * dwarf2loc.c (dwarf_expr_read_reg,dwarf2_evaluate_loc_desc)
2810         (locexpr_describe_location): Likewise.
2811         * dwarf2-frame.c (read_reg,execute_cfa_program,dwarf2_frame_cache)
2812         (dwarf2_frame_prev_register,dwarf2_signal_frame_this_id): Likewise.
2813         * dwarf2loc.c (DWARF2_REG_TO_REGNUM): Remove macro.
2814         * dwarf2read.c (DWARF2_REG_TO_REGNUM): Remove macro.
2815         * gdbarch.c, gdbarch.h: Regenerate.
2816
2817 2007-06-12  Markus Deuling  <deuling@de.ibm.com>
2818
2819         * gdbarch.sh (SMASH_TEXT_ADDRESS): Replace by
2820         gdbarch_smash_text_address.
2821         * somread.c (som_symtab_read): Likewise.
2822         * elfread.c (record_minimal_symbol): Likewise.
2823         * dbxread.c (process_one_symbol): Likewise.
2824         * coffread.c (coff_symtab_read): Likewise.
2825         * gdbarch.c, gdbarch.h: Regenerate.
2826
2827 2007-06-12  Markus Deuling  <deuling@de.ibm.com>
2828
2829         * gdbarch.sh (REGISTER_TO_VALUE): Replace by gdbarch_register_to_value.
2830         * findvar.c (value_from_register): Likewise.
2831         * gdbarch.sh (VALUE_TO_REGISTER): Replace by gdbarch_value_to_register.
2832         * valops.c (value_assign): Likewise.
2833         * gdbarch.sh (CONVERT_REGISTER_P): Replace by
2834         gdbarch_convert_register_p.
2835         * findvar.c (value_from_register): Likewise.
2836         * valops.c (value_assign): Likewise.
2837         * gdbarch.c, gdbarch.h: Regenerate.
2838
2839 2007-06-12  Markus Deuling  <deuling@de.ibm.com>
2840
2841         * gdbarch.sh (REGISTER_SIM_REGNO): Replace by
2842         gdbarch_register_sim_regno.
2843         * sim-regno.h (sim_regno): Likewise (comment).
2844         * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register): Likewise.
2845         * gdbarch.c, gdbarch.h: Regenerate.
2846
2847 2007-06-12  Markus Deuling  <deuling@de.ibm.com>
2848
2849         * gdbarch.sh (TARGET_VIRTUAL_FRAME_POINTER): Replace by
2850         gdbarch_virtual_frame_pointer.
2851         * tracepoint.c (encode_actions): Likewise.
2852         * dwarf2loc.c (dwarf2_loc_desc_needs_frame): Likewise.
2853         * ax-gdb.c (gen_frame_args_address, gen_frame_locals_address): Likewise.
2854         * gdbarch.c, gdbarch.h: Regenerate.
2855
2856 2007-06-12  Markus Deuling  <deuling@de.ibm.com>
2857
2858         * gdbarch.sh (TARGET_FLOAT_BIT): Replace by gdbarch_float_bit.
2859         * p-lang.c (pascal_create_fundamental_type): Likewise.
2860         * objc-lang.c (objc_create_fundamental_type): Likewise.
2861         * mdebugread.c (_initialize_mdebugread): Likewise.
2862         * m2-lang.c (m2_create_fundamental_type)
2863         (_initialize_m2_language): Likewise.
2864         * gdbtypes.c (build_gdbtypes): Likewise.
2865         * f-lang.c (f_create_fundamental_type, build_fortran_types): Likewise.
2866         * doublest.c (floatformat_from_length): Likewise.
2867         * c-lang.c (c_create_fundamental_type): Likewise.
2868         * ada-lang.c (ada_create_fundamental_type)
2869         (ada_language_arch_info): Likewise.
2870         * gdbarch.sh (TARGET_FLOAT_FORMAT): Replace by gdbarch_float_format.
2871         * value.c (unpack_double): Likewise (comment).
2872         * gdbtypes.c (build_gdbtypes): Likewise.
2873         * doublest.c (floatformat_from_length): Likewise.
2874         * gdbarch.sh (TARGET_DOUBLE_BIT): Replace by gdbarch_double_bit.
2875         * valarith.c (value_binop): Likewise.
2876         * p-lang.c (pascal_create_fundamental_type): Likewise.
2877         * objc-lang.c (objc_create_fundamental_type): Likewise.
2878         * mdebugread.c (_initialize_mdebugread): Likewise.
2879         * m2-lang.c (m2_create_fundamental_type): Likewise.
2880         * gdbtypes.c (build_gdbtypes): Likewise.
2881         * f-lang.c (f_create_fundamental_type, build_fortran_types): Likewise.
2882         * doublest.c (floatformat_from_length): Likewise.
2883         * cris-tdep.c (cris_gdbarch_init): Likewise (comment).
2884         * c-lang.c (c_create_fundamental_type): Likewise.
2885         * ada-lex.l (processReal): Likewise.
2886         * ada-lang.c (ada_create_fundamental_type)
2887         (ada_language_arch_info): Likewise.
2888         * gdbarch.sh (TARGET_DOUBLE_FORMAT): Replace by gdbarch_double_format.
2889         * value.c (unpack_double): Likewise (comment).
2890         * gdbtypes.c (build_gdbtypes): Likewise.
2891         * doublest.c (floatformat_from_length): Likewise.
2892         * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Replace by
2893         gdbarch_long_double_bit.
2894         * p-lang.c (pascal_create_fundamental_type): Likewise.
2895         * objc-lang.c (objc_create_fundamental_type): Likewise.
2896         * m2-lang.c (m2_create_fundamental_type): Likewise.
2897         * gdbtypes.c (build_gdbtypes): Likewise.
2898         * f-lang.c (f_create_fundamental_type, build_fortran_types): Likewise.
2899         * doublest.c (floatformat_from_length): Likewise.
2900         * c-lang.c (c_create_fundamental_type): Likewise.
2901         * ada-lex.l (processReal): Likewise.
2902         * ada-lang.c (ada_create_fundamental_type)
2903         (ada_language_arch_info): Likewise.
2904         * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Replace by
2905         gdbarch_long_double_format.
2906         * gdbtypes.c (build_gdbtypes): Likewise.
2907         * doublest.c (floatformat_from_length): Likewise.
2908         * gdbarch.c, gdbarch.h: Regenerate.
2909
2910 2007-06-12  Markus Deuling  <deuling@de.ibm.com>
2911
2912         * gdbarch.sh (TARGET_SHORT_BIT): Replace by gdbarch_int_bit.
2913         * ada-lang.c (ada_create_fundamental_type)
2914         (ada_language_arch_info): Likewise.
2915         * c-lang.c (c_create_fundamental_type): Likewise.
2916         * f-lang.c (f_create_fundamental_type, build_fortran_types): Likewise.
2917         * gdbtypes.c (build_gdbtypes, gdbtypes_post_init): Likewise.
2918         * m2-lang.c (m2_create_fundamental_type): Likewise.
2919         * objc-lang.c (objc_create_fundamental_type): Likewise.
2920         * p-lang.c (pascal_create_fundamental_type): Likewise.
2921         * gdbarch.sh (TARGET_INT_BIT): Replace by gdbarch_int_bit.
2922         * c-exp.y (parse_number): Likewise.
2923         * objc-exp.y (parse_number): Likewise.
2924         * ada-lex.l (processInt): Likewise.
2925         * f-exp.y (parse_number): Likewise.
2926         * p-exp.y (parse_number): Likewise.
2927         * ada-lang.c (ada_create_fundamental_type, ada_language_arch_info)
2928         (gdbtypes_post_init, build_gdbtypes): Likewise.
2929         * p-lang.c (pascal_create_fundamental_type): Likewise.
2930         * parse.c (build_parse): Likewise.
2931         * xcoffread.c (_initialize_xcoffread): Likewise.
2932         * stabsread.c (define_symbol, read_one_struct_field, read_enum_type)
2933         (read_range_type): Likewise.
2934         * objc-lang.c (objc_create_fundamental_type): Likewise.
2935         * f-lang.c (build_fortran_types, f_create_fundamental_type): Likewise.
2936         * m2-lang.c (m2_create_fundamental_type, _initialize_m2_language)
2937         (m2_create_fundamental_type): Likewise.
2938         * c-lang.c (c_create_fundamental_type): Likewise.
2939         * coffread.c (coff_read_enum_type): Likewise.
2940         * mdebugread.c (parse_symbol, _initialize_mdebugread): Likewise.
2941         * dwarf2read.c (new_symbol): Likewise.
2942         * gdbarch.sh (TARGET_LONG_BIT): Replace by gdbarch_long_bit.
2943         * c-exp.y (parse_number): Likewise.
2944         * objc-exp.y (parse_number): Likewise.
2945         * ada-lex.l (processInt): Likewise.
2946         * f-exp.y (parse_number): Likewise.
2947         * p-exp.y (parse_number): Likewise.
2948         * valarith.c (value_binop): Likewise.
2949         * symfile.c (read_target_long_array, simple_overlay_update_1): Likewise.
2950         * ada-lang.c (ada_create_fundamental_type)
2951         (ada_language_arch_info): Likewise.
2952         * gdbtypes.c (build_gdbtypes, gdbtypes_post_init): Likewise.
2953         * symfile.c (TARGET_LONG_BYTES): Likewise.
2954         * p-lang.c (pascal_create_fundamental_type): Likewise.
2955         * objc-lang.c (objc_create_fundamental_type): Likewise.
2956         * m2-lang.c (m2_create_fundamental_type): Likewise.
2957         * f-lang.c (f_create_fundamental_type): Likewise.
2958         * c-lang.c (c_create_fundamental_type): Likewise.
2959         * coffread.c (decode_base_type): Likewise.
2960         * gdbarch.sh (TARGET_LONG_LONG_BIT): Replace by gdbarch_long_long_bit.
2961         * c-exp.y (parse_number): Likewise.
2962         * objc-exp.y (parse_number): Likewise.
2963         * p-exp.y (parse_number): Likewise.
2964         * ada-lang.c (ada_create_fundamental_type)
2965         (ada_language_arch_info): Likewise.
2966         * gdbtypes.c (gdbtypes_post_init, build_gdbtypes): Likewise.
2967         * stabsread.c (read_range_type): Likewise.
2968         * p-lang.c (pascal_create_fundamental_type): Likewise.
2969         * objc-lang.c (objc_create_fundamental_type): Likewise.
2970         * m2-lang.c (m2_create_fundamental_type): Likewise.
2971         * f-lang.c (f_create_fundamental_type): Likewise.
2972         * c-lang.c (c_create_fundamental_type): Likewise.
2973         * gdbarch.c, gdbarch.h: Regenerate.
2974
2975 2007-06-12  Andreas Schwab  <schwab@suse.de>
2976
2977         * frame-unwind.h (frame_dealloc_cache_ftype): Define.
2978         (struct frame_unwind): Add dealloc_cache.
2979         * frame.c (reinit_frame_cache): Call dealloc_cache on all caches.
2980
2981         * libunwind-frame.h (libunwind_frame_dealloc_cache): Declare.
2982         * libunwind-frame.c (libunwind_frame_dealloc_cache): Define.
2983         (libunwind_frame_unwind): Set dealloc_cache.
2984         * ia64-tdep.c (ia64_libunwind_frame_unwind): Set dealloc_cache.
2985
2986 2007-06-12  Ulrich Weigand  <uweigand@de.ibm.com>
2987             Markus Deuling  <deuling@de.ibm.com>
2988
2989         * remote.c (remote_write_qxfer): New function.
2990         (remote_xfer_partial): Add handling for TARGET_OBJECT_SPU.
2991         (remote_read_qxfer): Do not cache empty objects.
2992         (_initialize_remote): Add PACKET_qXfer_spu_read and
2993         PACKET_qXfer_spu_write.
2994
2995 2007-06-12  Ulrich Weigand  <uweigand@de.ibm.com>
2996
2997         * target.h (enum target_object): Add TARGET_OBJECT_SPU.
2998         * spu-linux-nat.c (spu_xfer_partial): Handle TARGET_OBJECT_SPU.
2999
3000         * spu-tdep.h (SPU_NUM_PSEUDO_REGS): Add 5 pseudo registers.
3001         (enum spu_regnum): Add SPU_FPSCR_REGNUM, SPU_SRR0_REGNUM,
3002         SPU_LSLR_REGNUM, SPU_DECR_REGNUM, SPU_DECR_STATUS_REGNUM.
3003         * spu-tdep.c (infospucmdlist): New variable.
3004         (spu_register_name): Handle additional pseudo registers.
3005         (spu_register_type): Likewise.
3006         (spu_pseudo_register_read): Likewise.
3007         (spu_pseudo_register_write): Likewise.
3008         (spu_pseudo_register_read_spu): New function.
3009         (spu_pseudo_register_write_spu): Likewise.
3010         (info_spu_event_command): New function.
3011         (info_spu_signal_command): Likewise.
3012         (info_spu_mailbox_list): Likewise.
3013         (info_spu_mailbox_command): Likewise.
3014         (spu_mfc_get_bitfield): Likewise.
3015         (info_spu_dma_cmdlist): Likewise.
3016         (info_spu_dma_command): Likewise.
3017         (info_spu_proxydma_command): Likewise.
3018         (info_spu_command): Likewise.
3019         (_initialize_spu_tdep): Install "info spu" commands.
3020
3021 2007-06-12  Ulrich Weigand  <uweigand@de.ibm.com>
3022
3023         * spu-linux-nat.c (spu_proc_xfer_spu): Do not return failure when
3024         accessing non-seekable spufs files.
3025
3026 2007-06-09  Markus Deuling  <deuling@de.ibm.com>
3027
3028         * gdbarch.sh (SKIP_TRAMPOLINE_CODE): Replace by
3029         gdbarch_skip_trampoline_code.
3030         * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Likewise (comment).
3031         * objc-lang.c (objc_skip_trampoline)
3032         (objc_submethod_helper_data): Likewise.
3033         * m32c-lang.c (m32c_skip_trampoline_code): Likewise (comment).
3034         * infrun.c (handle_inferior_event): Likewise.
3035         * gnu-v3-abi.c (gnuv3_skip_trampoline): Likewise.
3036         * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Replace by
3037         gdbarch_in_solib_return_trampoline.
3038         * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Likewise (comment).
3039         * infrun.c (handle_inferior_event): Likewise.
3040         * hppa-tdep.c (hppa_stub_unwind_sniffer): Likewise.
3041         * gdbarch.c, gdbarch.h: Regenerate.
3042
3043 2007-06-09  Markus Deuling  <deuling@de.ibm.com>
3044
3045         * gdbarch.sh (SKIP_PROLOGUE): Replace by gdbarch_skip_prologue.
3046         * symtab.c (find_function_start_sal, in_prologue): Likewise.
3047         * linespec.c (minsym_found): Likewise.
3048         * infrun.c (step_into_function): Likewise.
3049         * gdbarch.c, gdbarch.h: Regenerate.
3050
3051 2007-06-09  Markus Deuling  <deuling@de.ibm.com>
3052
3053         * gdbarch.sh (NAME_OF_MALLOC): Replace by gdbarch_name_of_malloc.
3054         * valops.c (value_allocate_space_in_inferior): Likewise.
3055         * gdbarch.c, gdbarch.h: Regenerate.
3056
3057 2007-06-09  Markus Deuling  <deuling@de.ibm.com>
3058
3059         * gdbarch.sh (MEMORY_INSERT_BREAKPOINT): Replace by
3060         gdbarch_memory_insert_breakpoint.
3061         * mem-break.c (memory_insert_breakpoint): Likewise.
3062         * gdbarch.sh (MEMORY_REMOVE_BREAKPOINT): Replace by
3063         gdbarch_memory_remove_breakpoint.
3064         * mem-break.c (memory_remove_breakpoint): Likewise.
3065         * gdbarch.c, gdbarch.h: Regenerate.
3066
3067 2007-06-09  Markus Deuling  <deuling@de.ibm.com>
3068
3069         * gdbarch.sh (FETCH_TLS_LOAD_MODULE_ADDRESS): Replace by
3070         gdbarch_fetch_tls_load_module_address.
3071         * gdbarch.sh (FETCH_TLS_LOAD_MODULE_ADDRESS_P): Replace by
3072         gdbarch_fetch_tls_load_module_address_p.
3073         * gdbarch.c, gdbarch.h: Regenerate.
3074
3075 2007-06-09  Markus Deuling  <deuling@de.ibm.com>
3076
3077         * gdbarch.sh (DECR_PC_AFTER_BREAK): Replace by
3078         gdbarch_decr_pc_after_break.
3079         * tracepoint.c (trace_dump_command): Likewise.
3080         * solib-sunos.c (sunos_solib_create_inferior_hook): Likewise.
3081         * linux-thread-db.c (check_event): Likewise.
3082         * linux-nat.c (cancel_breakpoints_callback): Likewise.
3083         * infrun.c (adjust_pc_after_break, normal_stop): Likewise.
3084         * frame.h: Likewise (comment).
3085         * dummy-frame.c (deprecated_pc_in_call_dummy): Likewise.
3086         * aix-thread.c (aix_thread_wait): Likewise.
3087         * gdbarch.c, gdbarch.h: Regenerate.
3088
3089 2007-06-09  Markus Deuling  <deuling@de.ibm.com>
3090
3091         * gdbarch.sh (ADDRESS_CLASS_TYPE_FLAGS): Replace by
3092         gdbarch_address_class_type_flags.
3093         * dwarf2read.c (read_tag_pointer_type): Likewise.
3094         * gdbarch.sh (ADDRESS_CLASS_TYPE_FLAGS_P): Replace by
3095         gdbarch_address_class_type_flags_p.
3096         * dwarf2read.c (read_tag_pointer_type): Likewise.
3097         * gdbarch.c, gdbarch.h: Regenerate.
3098
3099 2007-06-09  Markus Deuling  <deuling@de.ibm.com>
3100
3101         * gdbarch.sh (ADDR_BITS_REMOVE): Replace by gdbarch_addr_bits_remove.
3102         * value.c (value_as_address): Likewise (comment).
3103         * remote-mips.c (common_breakpoint): Likewise.
3104         * regcache.c (read_pc_pid): Likewise.
3105         * printcmd.c (do_one_display): Likewise.
3106         * monitor.c (monitor_write_memory, monitor_read_memory)
3107         (monitor_insert_breakpoint): Likewise.
3108         * mips-tdep.c (heuristic_proc_start): Likewise.
3109         * infrun.c (insert_step_resume_breakpoint_at_frame)
3110         (insert_step_resume_breakpoint_at_caller): Likewise.
3111         * buildsym.c (record_line): Likewise.
3112         * arm-tdep.c (arm_scan_prologue, thumb_get_next_pc)
3113         (arm_get_next_pc): Likewise.
3114         * armnbsd-nat.c (arm_supply_gregset, fetch_register, store_register)
3115         (store_regs): Likewise.
3116         * arm-linux-tdep.c (arm_linux_supply_gregset): Likewise.
3117         * arm-linux-nat.c (fetch_register, fetch_regs): Likewise.
3118         * gdbarch.c, gdbarch.h: Regenerate.
3119
3120 2007-06-09  Markus Deuling  <deuling@de.ibm.com>
3121
3122         * gdbarch.sh (REGISTER_NAME): Replace by gdbarch_register_name.
3123         * tracepoint.c (scope_info): Likewise.
3124         * target.c (debug_print_register): Likewise.
3125         * stack.c (frame_info): Likewise.
3126         * sh-tdep.c (sh_register_reggroup_p): Likewise.
3127         * sh64-tdep.c (sh64_do_fp_register, sh64_do_register)
3128         (sh64_media_print_registers_info)
3129         (sh64_compact_print_registers_info): Likewise.
3130         * rs6000-tdep.c (rs6000_register_reggroup_p): Likewise.
3131         * remote-sim.c (gdbsim_fetch_register): Likewise.
3132         * remote.c (packet_reg): Likewise (comment).
3133         * reggroups.c (default_register_reggroup_p): Likewise.
3134         * regcache.c (regcache_dump): Likewise.
3135         * printcmd.c (address_info): Likewise.
3136         * ppc-linux-nat.c (fetch_register, store_register): Likewise.
3137         * mt-dep.c (mt_registers_info): Likewise.
3138         * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): Likewise (comment).
3139         * mips-tdep.c (mips_register_reggroup_p, mips_read_fp_register_single)
3140         (mips_read_fp_register_double, mips_print_fp_register)
3141         (mips_print_register, print_gp_register_row, mips_print_registers_info)
3142         (mips_register_sim_regno): Likewise.
3143         * m68klinux-nat.c (regmap, fetch_register, store_register): Likewise.
3144         * inf-ptrace.c (inf_ptrace_fetch_register)
3145         (inf_ptrace_store_register): Likewise.
3146         * infcmd.c (default_print_registers_info): Likewise.
3147         * ia64-linux-nat.c (ia64_linux_fetch_register)
3148         (ia64_linux_store_register): Likewise.
3149         * i386-linux-nat.c (fetch_register, store_register): Likewise.
3150         * i386gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Likewise.
3151         * hppa-linux-nat.c (fetch_register, store_register): Likewise.
3152         * hppa-hpux-nat.c (hppa_hpux_fetch_register)
3153         (hppa_hpux_store_register): Likewise.
3154         * findvar.c (locate_var_value): Likewise.
3155         * dwarf2loc.c (locexpr_describe_location): Likewise.
3156         * dwarf2-frame.c (execute_cfa_program): Likewise.
3157         * arm-tdep.c (arm_push_dummy_call): Likewise.
3158         * arch-utils.c (legacy_register_sim_regno): Likewise.
3159         * alpha-tdep.c (alpha_register_reggroup_p): Likewise.
3160         * alpha-nat.c (fetch_osf_core_registers): Likewise.
3161         * mi/mi-main.c (mi_cmd_data_list_register_names)
3162         (mi_cmd_data_list_changed_registers, mi_cmd_data_list_register_values)
3163         (mi_cmd_data_write_register_values): Likewise.
3164         * gdbarch.c, gdbarch.h: Regenerate.
3165
3166 2007-06-07  Daniel Jacobowitz  <dan@codesourcery.com>
3167
3168         * target-memory.c (blocks_to_erase): Correct off-by-one error.
3169
3170 2007-06-06  Vladimir Prus  <vladimir@codesourcery.com>
3171         
3172         * remote.c (process_g_packet): Don't check size.
3173         * gdbarch.sh: Remove register_bytes_ok.
3174         * gdbarch.c: Regenerated.
3175         * gdbarch.h: Regenerated.
3176         * m68k-tdep.c (REGISTER_BYTES_NOFP): Remove.
3177         (m68k_register_bytes_ok): Remove.
3178         (m68k_gdbarch_init): Don't register m68k_register_bytes_ok.
3179         
3180 2007-06-06  Andreas Schwab  <schwab@suse.de>
3181
3182         * libunwind-frame.c (unw_destroy_addr_space_p): Define.
3183         (destroy_addr_space_name): Define.
3184         (libunwind_load): Get address of destroy_addr_space function.
3185         (libunwind_frame_cache): Destroy unw_addr_space_t object before
3186         returning unsuccessfully.
3187         (libunwind_frame_sniffer): Destroy unw_addr_space_t object before
3188         returning.
3189         (libunwind_sigtramp_frame_sniffer): Likewise.
3190         (libunwind_get_reg_special): Likewise.
3191
3192 2007-06-06  Markus Deuling  <deuling@de.ibm.com>
3193
3194         * gdbarch.sh (FETCH_POINTER_ARGUMENT): Replace by
3195         gdbarch_fetch_pointer_argument.
3196         * objc-lang.c (OBJC_FETCH_POINTER_ARGUMENT): Likewise.
3197         * gdbarch.c, gdbarch.h: Regenerate.
3198
3199 2007-06-06  Markus Deuling  <deuling@de.ibm.com>
3200
3201         * gdbarch.sh (HAVE_NONSTEPPABLE_WATCHPOINT): Replace by
3202         gdbarch_have_nonsteppable_watchpoint.
3203         * infrun.c (handle_inferior_event, adjust_pc_after_break): Likewise.
3204         * gdbarch.sh (CANNOT_STEP_BREAKPOINT): Replace by
3205         gdbarch_cannot_step_breakpoint.
3206         * infrun.c (resume): Likewise.
3207         * gdbarch.c, gdbarch.h: Regenerate.
3208
3209 2007-06-06  Markus Deuling  <deuling@de.ibm.com>
3210
3211         * gdbarch.sh (FRAME_ARGS_SKIP): Replace by gdbarch_frame_args_skip.
3212         * stack.c (print_frame_args): Likewise.
3213         * gdbarch.sh (FRAME_NUM_ARGS): Replace by gdbarch_frame_num_args.
3214         * stack.c (print_args_stub, frame_info): Likewise.
3215         * gdbarch.sh (FRAME_NUM_ARGS_P): Replace by gdbarch_frame_num_args_p.
3216         * stack.c (print_args_stub, frame_info): Likewise.
3217         * gdbarch.c, gdbarch.h: Regenerate.
3218
3219 2007-06-06  Markus Deuling  <deuling@de.ibm.com>
3220
3221         * gdbarch.sh (COFF_MAKE_MSYMBOL_SPECIAL): Replace by
3222         gdbarch_coff_make_msymbol_special.
3223         * coffread.c (coff_symtab_read): Likewise.
3224         * gdbarch.sh (ELF_MAKE_MSYMBOL_SPECIAL): Replace by
3225         gdbarch_elf_make_msymbol_special.
3226         * elfread.c (elf_symtab_read): Likewise.
3227         * mips-tdep.c (mips_elf_make_msymbol_special): Likewise (comment).
3228         * sh64-tdep.c (MSYMBOL_IS_SPECIAL): Likewise (comment).
3229         * gdbarch.c, gdbarch.h: Regenerate.
3230
3231 2007-06-06  Markus Deuling  <deuling@de.ibm.com>
3232
3233         * gdbarch.sh (FRAME_RED_ZONE_SIZE): Replace by
3234         gdbarch_frame_red_zone_size.
3235         * gdbarch.c, gdbarch.h: Regenerate.
3236
3237 2007-06-06  Markus Deuling  <deuling@de.ibm.com>
3238
3239         * gdbarch.sh (INNER_THAN): Replace by gdbarch_inner_than.
3240         * infcall.c (call_function_by_hand): Likewise.
3241         * gcore.c (derive_stack_segment): Likewise.
3242         * frame.c (frame_id_inner): Likewise.
3243         * arch-utils.c (core_addr_lessthan): Likewise (comment).
3244         * ada-lang.c (ensure_lval): Likewise.
3245         * gdbarch.c, gdbarch.h: Regenerate.
3246
3247 2007-06-06  Markus Deuling  <deuling@de.ibm.com>
3248
3249         * gdbarch.sh (ADDRESS_TO_POINTER): Replace by
3250         gdbarch_address_to_pointer.
3251         * findvar.c (store_typed_address): Likewise.
3252         * gdbtypes.c (make_pointer_type): Likewise (comment).
3253         * procfs.c (procfs_address_to_host_pointer): Likewise.
3254         * std-regs.c (value_of_builtin_frame_reg): Likewise.
3255         (value_of_builtin_frame_fp_reg): Likewise.
3256         (value_of_builtin_frame_pc_reg): Likewise.
3257         * utils.c (paddress): Likewise (comment).
3258         * gdbarch.sh (POINTER_TO_ADDRESS): Replace by
3259         gdbarch_pointer_to_address.
3260         * findvar.c (extract_typed_address): Likewise.
3261         * gdbtypes.c (make_pointer_type): Likewise (comment).
3262         * valops.c (value_cast): Likewise (comment).
3263         * gdbarch.c, gdbarch.h: Regenerate.
3264
3265 2007-06-06  Markus Deuling  <deuling@de.ibm.com>
3266
3267         * gdbarch.sh (GET_LONGJMP_TARGET): Replace by gdbarch_get_longjmp_target.
3268         * infrun.c (handle_inferior_event): Likewise.
3269         * gdbarch.sh (GET_LONGJMP_TARGET_P): Replace by
3270         gdbarch_get_longjmp_target_p.
3271         * breakpoint.c (breakpoint_re_set): Likewise.
3272         * infrun.c (handle_inferior_event): Likewise.
3273         * gdbarch.c, gdbarch.h: Regenerate.
3274
3275 2007-06-06  Ulrich Weigand  <uweigand@de.ibm.com>
3276
3277         * hppa-hpux-tdep.c (args_for_find_stub, HP_ACC_EH_notify_hook,
3278         HP_ACC_EH_set_hook_value, HP_ACC_EH_notify_callback, HP_ACC_EH_break,
3279         HP_ACC_EH_catch_throw, HP_ACC_EH_catch_catch, __eh_notification,
3280         hp_cxx_exception_support, hp_cxx_exception_support_initialized,
3281         eh_notify_hook_addr, eh_notify_callback_addr, eh_break_addr,
3282         eh_catch_throw_addr, break_callback_sal, setup_d_pid_in_inferior,
3283         find_stub_with_shl_get, cover_find_stub_with_shl_get,
3284         initialize_hp_cxx_exception_support, child_enable_exception_callback,
3285         current_ex_event, child_get_current_exception_event): Remove.
3286         (hppa_hpux_inferior_created): Remove.
3287         (hppa_hpux_init_abi): Do not install hppa_hpux_inferior_created.
3288
3289         * breakpoint.h (deprecated_exception_catchpoints_are_fragile): Remove.
3290         (deprecated_exception_support_initialized): Remove.
3291         * breakpoint.c (deprecated_exception_catchpoints_are_fragile): Remove.
3292         (deprecated_exception_support_initialized): Remove.
3293         (breakpoint_init_inferior): Remove handling of non-zero
3294         deprecated_exception_catchpoints_are_fragile.
3295
3296         * symtab.h (deprecated_hp_som_som_object_present): Remove.
3297         * symtab.c (deprecated_hp_som_som_object_present): Remove.
3298         * c-typeprint.c (c_type_print_base): Remove handling of non-zero
3299         deprecated_hp_som_som_object_present.
3300         * eval.c (evaluate_subexp_standard): Likewise.
3301         * valops.c (value_cast): Likewise.
3302
3303         * parse.c (parse_nested_classes_for_hpacc, coloncolon): Remove.
3304         * parser-defs.h (parse_nested_classes_for_hpacc): Remove.
3305         * c-exp.y (yylex): Do not call parse_nested_classes_for_hpacc.
3306
3307 2007-06-06  Ulrich Weigand  <uweigand@de.ibm.com>
3308
3309         * objfiles.h (ImportEntry, ExportEntry): Remove types.
3310         (struct objfile): Remove import_list, import_list_size,
3311         export_list, export_list_size members.
3312         (is_in_import_list): Remove prototype.
3313         * objfiles.c (is_in_import_list): Remove.
3314         * somread.c (init_import_symbols, init_export_symbols): Remove.
3315         (som_symfile_read): Do not call init_import_symbols.  Do not
3316         set objfile->export_list and objfile->export_list_size.
3317
3318 2007-06-05  Daniel Jacobowitz  <dan@codesourcery.com>
3319
3320         * dwarf2read.c (dwarf2_symbol_mark_computed): Fix formatting.
3321         Use the original objfile if necessary.
3322
3323 2007-06-04  Daniel Jacobowitz  <dan@codesourcery.com>
3324
3325         * defs.h (ldirname): New prototype.
3326         * dwarf2read.c (read_file_scope): Use DW_AT_name if DW_AT_comp_dir is
3327         missing.
3328         * utils.c (ldirname): New function.
3329         * xml-tdesc.c (file_read_description_xml): Use ldirname.
3330
3331 2007-06-01  Ulrich Weigand  <uweigand@de.ibm.com>
3332
3333         * spu-tdep.c (spu_push_dummy_call): Store stack back chain.
3334
3335 2007-06-01  Joel Brobecker  <brobecker@adacore.com>
3336
3337         * solib-svr4.c (svr4_solib_create_inferior_hook): Remove warning.
3338
3339 2007-06-01  Ulrich Weigand  <uweigand@de.ibm.com>
3340
3341         * irix5-nat.c (JB_ELEMENT_SIZE, get_longjmp_target): Remove.
3342
3343 2007-06-01  Ulrich Weigand  <uweigand@de.ibm.com>
3344
3345         * ppc-linux-tdep.c (INSTR_SC, INSTR_LI_R0_0x6666, INSTR_LI_R0_0x7777,
3346         INSTR_LI_R0_NR_sigreturn, INSTR_LI_R0_NR_rt_sigreturn): Remove.
3347         (PPC_LINUX_SIGNAL_FRAMESIZE, PPC_LINUX_REGS_PTR_OFFSET,
3348         PPC_LINUX_HANDLER_PTR_OFFSET): Remove.
3349         (ppc_linux_in_sigtramp, insn_is_sigreturn,
3350         ppc_linux_at_sigtramp_return_path): Remove.
3351
3352 2007-05-31  Markus Deuling  <deuling@de.ibm.com>
3353
3354         * xtensa-tdep.c (XTENSA_IS_ENTRY, extract_call_winsize)
3355         (xtensa_register_write_masked, xtensa_register_read_masked)
3356         (xtensa_extract_return_value, xtensa_store_return_value
3357         (xtensa_push_dummy_call, xtensa_breakpoint_from_pc): Replace 
3358         TARGET_BYTE_ORDER by gdbarch_byte_order.
3359         * sh-tdep.c (sh_breakpoint_from_pc, gdb_print_insn_sh)
3360         (sh_justify_value_in_reg, sh_next_flt_argreg, sh_push_dummy_call_fpu)
3361         (sh_extract_return_value_fpu, sh_store_return_value_fpu): Likewise.
3362         * sh64-tdep.c (sh64_breakpoint_from_pc, gdb_print_insn_sh64)
3363         (sh64_push_dummy_call, sh64_extract_return_value)
3364         (sh64_store_return_value, sh64_register_convert_to_virtual)
3365         (sh64_register_convert_to_raw, sh64_pseudo_register_read)
3366         (sh64_pseudo_register_write, sh64_do_fp_register)
3367         (sh64_frame_prev_register): Likewise.
3368         * score-tdep.c (score_print_insn, score_breakpoint_from_pc)
3369         (score_return_value, score_push_dummy_call, score_fetch_inst): Likewise.
3370         * rs6000-tdep.c (rs6000_breakpoint_from_pc, rs6000_push_dummy_call)
3371         (e500_move_ev_register,gdb_print_insn_powerpc): Likewise.
3372         * remote-m32r-sdi.c (m32r_resume, m32r_wait): Likewise.
3373         * ppc-linux-nat.c (store_register): Likewise.
3374         * nto-tdep.c (nto_find_and_open_solib)
3375         (nto_init_solib_absolute_prefix): Likewise.
3376         * mips-tdep.c (mips_pseudo_register_read, mips_pseudo_register_write)
3377         (mips_convert_register_p, mips_eabi_push_dummy_call)
3378         (mips_n32n64_push_dummy_call, mips_n32n64_return_value)
3379         (mips_o32_push_dummy_call, mips_o32_return_value)
3380         (mips_o64_push_dummy_call, mips_o64_return_value, mips_o64_return_value)
3381         (mips_read_fp_register_single, mips_read_fp_register_double)
3382         (mips_print_register, print_gp_register_row, gdb_print_insn_mips)
3383         (mips_breakpoint_from_pc): Likewise.
3384         * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset): Likewise.
3385         * mips-linux-tdep.c (mips64_supply_fpregset, mips64_fill_fpregset)
3386         (mips_linux_o32_sigframe_init): Likewise.
3387         * m32r-tdep.c (m32r_memory_insert_breakpoint)
3388         (m32r_memory_remove_breakpoint, m32r_breakpoint_from_pc): Likewise.
3389         * libunwind-frame.c (libunwind_frame_cache, libunwind_frame_sniffer)
3390         (libunwind_sigtramp_frame_sniffer, libunwind_get_reg_special): Likewise.
3391         * iq2000-tdep.c (iq2000_breakpoint_from_pc): Likewise.
3392         * coffread.c (process_coff_symbol): Likewise.
3393         * arm-tdep.c (convert_from_extended, convert_to_extended)
3394         (gdb_print_insn_arm): Likewise.
3395
3396 2007-05-31  Markus Deuling  <deuling@de.ibm.com>
3397
3398         * gdbarch.sh (NUM_REGS): Replace by gdbarch_num_regs.
3399         * i386-tdep.c (i386_dbx_reg_to_regnum)
3400         (i386_svr4_reg_to_regnum): Likewise.
3401         * inf-ptrace.c (inf_ptrace_fetch_registers)
3402         (inf_ptrace_store_registers): Likewise.
3403         * corelow.c (get_core_registers): Likewise.
3404         * i386-linux-nat.c (supply_gregset, fill_gregset)
3405         (i386_linux_fetch_inferior_registers)
3406         (i386_linux_store_inferior_registers): Likewise.
3407         * remote.c (init_remote_state,packet_reg_from_regnum)
3408         (packet_reg_from_pnum,process_g_packet,remote_fetch_registers)
3409         (remote_prepare_to_store,store_registers_using_G)
3410         (remote_store_registers,remote_arch_state): Likewise.
3411         * tracepoint.c (encode_actions): Likewise.
3412         * mi/mi-main.c (mi_cmd_data_list_register_names)
3413         (mi_cmd_data_list_changed_registers,mi_cmd_data_list_register_values)
3414         (mi_cmd_data_write_register_values): Likewise.
3415         * tui/tui-regs.c (tui_show_register_group)
3416         (tui_show_register_group): Likewise.
3417         * xtensa-tdep.h (FP_ALIAS): Likewise.
3418         * xtensa-tdep.c (xtensa_register_name,xtensa_register_type)
3419         (xtensa_reg_to_regnum,xtensa_pseudo_register_read)
3420         (xtensa_pseudo_register_write,xtensa_register_reggroup_p): Likewise.
3421         * win32-nat.c (do_win32_fetch_inferior_registers)
3422         (do_win32_store_inferior_registers,fetch_elf_core_registers
3423         * user-regs.h: Likewise (comment).
3424         * user-regs.c (user_reg, user_reg_map_name_to_regnum): Likewise.
3425         * trad-frame.c (trad_frame_alloc_saved_regs): Likewise.
3426         * target-descriptions.h: Likewise (comment).
3427         * target-descriptions.c (tdesc_use_registers): Likewise (comment).
3428         * target.c (debug_print_register): Likewise.
3429         * stack.c (frame_info): Likewise.
3430         * stabsread.c (define_symbol): Likewise.
3431         * sh64-tdep.c (sh64_do_pseudo_register,sh64_print_register)
3432         (sh64_media_print_registers_info)
3433         (sh64_compact_print_registers_info): Likewise.
3434         * rs6000-tdep.c (rs6000_register_sim_regno): Likewise.
3435         * rs6000-nat.c (fetch_register,store_register): Likewise.
3436         * remote-sim.c (one2one_register_sim_regno,gdbsim_fetch_register)
3437         (gdbsim_fetch_register,gdbsim_store_register): Likewise.
3438         * remote-mips.c (mips_fetch_registers,mips_store_registers): Likewise.
3439         * remote-m32r-sdi.c (m32r_fetch_registers)
3440         (m32r_store_registers): Likewise.
3441         * reggroups.c (default_register_reggroup_p): Likewise.
3442         * regcache.c (init_regcache_descr,register_size,regcache,regcache_save)
3443         (regcache_restore,regcache_dump): Likewise.
3444         * monitor.c (monitor_fetch_registers,monitor_store_registers): Likewise.
3445         * mips-tdep.c (mips_xfer_register,mips_register_name)
3446         (mips_register_reggroup_p,mips_pseudo_register_read)
3447         (mips_pseudo_register_write,mips_convert_register_p,mips_register_type)
3448         (mips_unwind_pc,mips_unwind_sp,mips_unwind_dummy_id,set_reg_offset)
3449         (mips16_scan_prologue,mips_insn16_frame_cache,reset_saved_regs)
3450         (mips32_scan_prologue,mips_insn32_frame_cache,read_next_frame_reg)
3451         (mips_n32n64_return_value,mips_o32_return_value,mips_o64_return_value)
3452         (print_gp_register_row,mips_print_registers_info)
3453         (mips_stab_reg_to_regnum,mips_dwarf_dwarf2_ecoff_reg_to_regnum)
3454         (mips_register_sim_regno): Likewise.
3455         * mips-linux-tdep.c (mips_linux_o32_sigframe_init)
3456         (mips_linux_n32n64_sigframe_init): Likewise.
3457         * mips-linux-nat.c (mips_linux_register_addr)
3458         (mips64_linux_register_addr): Likewise.
3459         * findvar.c (value_of_register): Likewise.
3460         * infcmd.c (default_print_registers_info,registers_info)
3461         (print_vector_info,print_float_info): Likewise.
3462         * mips64obsd-tdep.c (mips64obsd_sigframe_init): Likewise.
3463         * inf-child.c (inf_child_fetch_inferior_registers): Likewise.
3464         * m68k-tdep.c (m68k_dwarf_reg_to_regnum): Likewise.
3465         * m68hc11-tdep.c (m68hc11_frame_unwind_cache(: Likewise.
3466         * m32r-tdep.c (m32r_frame_unwind_cache): Likewise.
3467         * ia64-linux-nat.c (ia64_register_addr,ia64_cannot_fetch_register)
3468         (ia64_cannot_store_register,ia64_linux_fetch_registers)
3469         (ia64_linux_store_registers): Likewise.
3470         * hpux-thread.c (hpux_thread_fetch_registers)
3471         (hpux_thread_store_registers): Likewise.
3472         * h8300-tdep.c (E_PSEUDO_CCR_REGNUM,E_PSEUDO_EXR_REGNUM)
3473         (h8300_init_frame_cache,h8300_frame_cache,h8300_frame_prev_register)
3474         (h8300_register_type): Likewise.
3475         * dwarf2-frame.c (dwarf2_frame_cache)
3476         (dwarf2_frame_state_alloc_regs): Likewise.
3477         * cris-tdep.c (cris_register_size,cris_cannot_fetch_register)
3478         (cris_cannot_store_register,crisv32_cannot_fetch_register)
3479         (crisv32_cannot_store_register,cris_register_name): Likewise.
3480         * avr-tdep.c (avr_frame_unwind_cache): Likewise.
3481         * arch-utils.c (legacy_register_sim_regno)
3482         (legacy_virtual_frame_pointer): Likewise.
3483         * arm-tdep.c (arm_make_prologue_cache,arm_register_sim_regno):Likewise.
3484         * arm-tdep.h: Likewise (comment).
3485         * frv-tdep.c (frv_register_sim_regno): Likewise.
3486         * m68klinux-nat.c (old_fetch_inferior_registers)
3487         (old_store_inferior_registers): Likewise.
3488         * m32c-tdep.c (m32c_virtual_frame_pointer): Likewise.
3489         * irix5-nat.c (fetch_core_registers): Likewise.
3490         * hppa-tdep.c (hppa_frame_cache): Likewise.
3491         * hppa-linux-nat.c (hppa_linux_register_addr)
3492         (hppa_linux_fetch_inferior_registers)
3493         (hppa_linux_store_inferior_registers): Likewise.
3494         * hppa-hpux-nat.c (hppa_hpux_fetch_inferior_registers)
3495         (hppa_hpux_store_inferior_registers): Likewise.
3496         * amd64-nat.c (amd64_native_gregset_reg_offset)
3497         (amd64_supply_native_gregset,amd64_collect_native_gregset): Likewise.
3498         * dbug-rom.c (dbug_regname): Likewise.
3499         * m68hc11-tdep.c (m68hc11_frame_unwind_cache)
3500         (HARD_PAGE_REGNUM (comment)): Likewise.
3501         * gdbarch.sh (NUM_PSEUDO_REGS): Replace by gdbarch_num_pseudo_regs.
3502         * i386-tdep.c (i386_dbx_reg_to_regnum)
3503         (i386_svr4_reg_to_regnum): Likewise.
3504         * mi/mi-main.c (mi_cmd_data_list_register_names)
3505         (mi_cmd_data_list_changed_registers,mi_cmd_data_list_register_values)
3506         (mi_cmd_data_write_register_values): Likewise.
3507         * gdbarch.c, gdbarch.h: Regenerate.
3508         * tui/tui-regs.c (tui_show_register_group): Likewise.
3509         * xtensa-tdep.h (FP_ALIAS): Likewise.
3510         * user-regs.h: Likewise (comment).
3511         * user-regs.c (user_reg, user_reg_map_name_to_regnum): Likewise.
3512         * trad-frame.c (trad_frame_alloc_saved_regs): Likewise.
3513         * target-descriptions.h: Likewise (comment).
3514         * target.c (debug_print_register): Likewise.
3515         * stack.c (frame_info): Likewise.
3516         * stabsread.c (define_symbol): Likewise.
3517         * sh64-tdep.c (sh64_print_register,sh64_media_print_registers_info)
3518         (sh64_compact_print_registers_info): Likewise.
3519         * rs6000-tdep.c (rs6000_register_sim_regno): Likewise.
3520         * regcache.c (init_regcache_descr,register_size,regcache,regcache_save
3521         (regcache_restore,regcache_dump): Likewise.
3522         * mips-tdep.c (print_gp_register_row,mips_print_registers_info)
3523         (mips_dwarf_dwarf2_ecoff_reg_to_regnum)
3524         (mips_stab_reg_to_regnum): Likewise.
3525         * findvar.c (value_of_register): Likewise.
3526         * infcmd.c (default_print_registers_info,registers_info)
3527         (print_vector_info,print_float_info): Likewise.
3528         * m68k-tdep.c (m68k_dwarf_reg_to_regnum): Likewise.
3529         * h8300-tdep.c (h8300_register_type): Likewise.
3530         * dwarf2-frame.c (dwarf2_frame_cache): Likewise.
3531         * frame.h (SIZEOF_FRAME_SAVED_REGS): Likewise.
3532         * xtensa-tdep.c (xtensa_register_type,xtensa_reg_to_regnum)
3533         (xtensa_pseudo_register_read,xtensa_pseudo_register_write): Likewise.
3534         * parse.c: Remove comment.
3535         * gdbarch.c, gdbarch.h: Regenerate
3536
3537 2007-05-31  Markus Deuling  <deuling@de.ibm.com>
3538
3539         * gdbarch.sh (CANNOT_FETCH_REGISTER): Replace by
3540         gdbarch_cannot_fetch_register.
3541         * alpha-nat.c (fetch_osf_core_registers): Likewise.
3542         * hppa-linux-nat.c (fetch_register): Likewise.
3543         * inf-ptrace.c (inf_ptrace_fetch_register): Likewise.
3544         * m68klinux-nat.c (fetch_register): Likewise.
3545         * mipsnbsd-tdep.c (mipsnbsd_supply_reg, mipsnbsd_supply_fpreg):
3546         Likewise.
3547         * gdbarch.sh (CANNOT_STORE_REGISTER): Replace by
3548         gdbarch_cannot_store_register.
3549         * hppa-linux-nat.c (store_register): Likewise.
3550         * inf-ptrace.c (inf_ptrace_store_register): Likewise.
3551         * regcache.c (regcache_raw_write): Likewise.
3552         * m68klinux-nat.c (store_register): Likewise.
3553         * mipsnbsd-tdep.c (mipsnbsd_fill_reg, mipsnbsd_fill_fpreg): Likewise.
3554         * gdbarch.c, gdbarch.h: Regenerate.
3555
3556 2007-05-31  Markus Deuling  <deuling@de.ibm.com>
3557
3558         * gdbarch.sh (TARGET_OSABI): Replace by gdbarch_osabi.
3559         * gdbarch.c, gdbarch.h: Regenerate.
3560
3561 2007-05-31  Markus Deuling  <deuling@de.ibm.com>
3562
3563         * gdbarch.sh (TARGET_CHAR_SIGNED): Replace by gdbarch_char_signed.
3564         * gdbtypes.c (build_gdbtypes, gdbtypes_post_init): Likewise.
3565         * gdbarch.c, gdbarch.h: Regenerate.
3566
3567 2007-05-31  Markus Deuling  <deuling@de.ibm.com>
3568
3569         * gdbarch.sh (TARGET_BYTE_ORDER): Replace by gdbarch_byte_order.
3570         * ax-gdb.c (gen_bitfield_ref): Likewise.
3571         * mi/mi-main.c (get_register): Likewise.
3572         * findvar.c (default_value_from_register, extract_signed_integer)
3573         (extract_unsigned_integer, extract_long_unsigned_integer)
3574         (store_signed_integer, store_unsigned_integer): Likewise.
3575         * regcache.c (regcache_dump): Likewise.
3576         * value.c (lookup_internalvar, value_of_internalvar)
3577         (set_internalvar): Likewise.
3578         * defs.h: Likewise.
3579         * valprint.c (print_binary_chars, print_octal_chars)
3580         (print_decimal_chars, print_hex_chars, print_char_chars): Likewise.
3581         * infcmd.c (default_print_registers_info): Likewise.
3582         * arch-utils.c (selected_byte_order, show_endian): Likewise.
3583         * stabsread.c (define_symbol): Likewise.
3584         * doublest.c (floatformat_from_length, floatformat_from_type)
3585         (extract_typed_floating, store_typed_floating): Likewise.
3586         * gdbarch.c, gdbarch.h: Regenerate.
3587
3588 2007-05-31  Markus Deuling  <deuling@de.ibm.com>
3589
3590         * gdbarch.sh (CALL_DUMMY_LOCATION): Replace by
3591         gdbarch_call_dummy_location.
3592         * infcall.c (call_function_by_hand): Likewise.
3593         * inferior.h: Change comment.
3594         * arch-utils.c: Change comment.
3595         * gdbarch.c, gdbarch.h: Regenerate.
3596
3597 2007-05-28  Joel Brobecker  <brobecker@adacore.com>
3598
3599         * solib-aix5.c: Delete.
3600         * Makefile.in (solib-aix5.o): Delete rule.
3601
3602 2007-05-23  Daniel Jacobowitz  <dan@codesourcery.com>
3603
3604         * breakpoint.h (enum bpstat_what_main_action): Remove
3605         BPSTAT_WHAT_THROUGH_SIGTRAMP.
3606         * infrun.c (process_event_stop_test): Do not check for it.
3607
3608 2007-05-22  Chris Dearman  <chris@mips.com>
3609             Maciej W. Rozycki  <macro@mips.com>
3610
3611         * ser-unix.c (show_serial_hwflow): New function.
3612         (hardwire_raw): Add hardware flow control support.
3613         (_initialize_ser_hardwire): Add "set/show remoteflow".
3614         * Makefile.in (ser-unix.o): Depend on $(gdbcmd_h).
3615         * NEWS: Document the new command.
3616
3617 2007-05-21  Ulrich Weigand  <uweigand@de.ibm.com>
3618
3619         * config/i386/tm-linux.h (sys_quotactl): Do not define.
3620         * configure.ac (sys_quotactl, START_INFERIOR_TRAPS_EXPECTED): Do not
3621         define for i[[3456]]86-*-linux* native configurations.
3622         * config.in, configure: Regenerate.
3623
3624 2007-05-19  Joel Brobecker  <brobecker@adacore.com>
3625
3626         * rs6000-nat.c (xcoff_relocate_symtab): Do nothing if debugging
3627         a core file. Add comment in the function description.
3628
3629 2007-05-18  Caroline Tice  <ctice@apple.com>
3630
3631         * c-valprint.c (c_value_print):  If the initialized field of the
3632         value struct is 0, print out "[uninitialized]" before the value.
3633         * dwarf2expr.c (execute_stack_op): Initialize ctx->initialized field; 
3634         allow DW_OP_GNU_uninit as legal op following a DW_OP_reg op or a 
3635         DW_OP_regx op; add case for DW_OP_GNU_uninit and update
3636         ctx->initialized appropriately. Verify no location op follows
3637         DW_OP_GNU_uninit.
3638         * dwarf2expr.h (struct dwarf_expr_context): New field, initialized.
3639         * dwarf2loc.c (dwarf2_evaluate_loc_desc): Add call to 
3640         set_value_initialized.
3641         * dwarf2read.c (dwarf_stack_op_name): Add case for DW_OP_GNU_uninit.
3642         (decode_locdesc): Add case for DW_OP_GNU_uninit.
3643         * value.c (struct value):  New field, initialized.
3644         (allocate_value): Initialize new field.
3645         (set_value_initialized): New function.
3646         (value_initialized): New function.
3647         * value.h (value_initialized): New extern declaration.
3648         (set_value_initialized): Likewise.
3649         
3650 2007-05-18  Caroline Tice  <ctice@apple.com>
3651
3652         * MAINTAINERS (Write After Approval): Add self.
3653         
3654 2007-05-17  Joel Brobecker  <brobecker@adacore.com>
3655
3656         * gdbtypes.c (make_reference_type): Preserve the type chain
3657         and set the length of all the variants of the pointer type.
3658
3659 2007-05-17  Joel Brobecker  <brobecker@adacore.com>
3660
3661         * gdbtypes.c (make_pointer_type): Preserve the pointer type chain
3662         and set the length of all the variants of the pointer type.
3663
3664 2007-05-17  Maciej W. Rozycki  <macro@mips.com>
3665
3666         * mips-tdep.c (mips_n32n64_push_dummy_call): Fix and reformat a
3667         comment.
3668         (mips_o64_push_dummy_call): Reformat a comment.
3669
3670 2007-05-17  Qinwei  <qinwei@sunnorth.com.cn>
3671
3672         * score-tdep.c (score_frame_cache->fp, score_analyze_prologue)
3673         (score_prologue_frame_base_address): Return fp to keep gdb print
3674         local variables correctly when debugging information is stabs.
3675
3676         (score_analyze_prologue): For software watchpoint, fetch all the
3677         instructions from range [startaddr, pc] once and identify them locally
3678         to reduce memory access.
3679         (score_malloc_and_get_memblock, score_free_memblock)
3680         (score_adjust_memblock_ptr): New functions.
3681         (score_fetch_inst): Fetch single instruction or mutiple instructions.
3682
3683         (score_target_can_use_watch, score_stopped_by_watch)
3684         (score_target_insert_watchpoint, score_target_remove_watchpoint)
3685         (score_target_insert_hw_breakpoint, score_target_remove_hw_breakpoint):
3686         New functions for remote & local hw-watchpoint and hw-breakpoint.
3687
3688 2007-05-16  Alfred M. Szmidt  <ams@gnu.org>
3689
3690         * reply_mig_hack.awk: Check for `auto const mach_msg_type_t'
3691         declarations as well.
3692
3693 2007-05-16  Ulrich Weigand  <uweigand@de.ibm.com>
3694
3695         * config/arm/embed.mt (DEPRECATED_TM_FILE): Set to tm-arm.h.
3696         * config/arm/tm-embed.h: Delete file.
3697
3698         * arm-tdep.h (arm_software_single_step): Declare.
3699         * arm-tdep.c (arm_software_single_step): Make global.
3700         (arm_gdbarch_init): Move set_gdbarch_software_single_step call
3701         from here to ...
3702         * arm-linux-tdep.c (arm_linux_init_abi): ... here ...
3703         * armnbsd-tdep.c (arm_netbsd_init_abi_common): ... here ...
3704         * armobsd-tdep.c (armobsd_init_abi): ... here ...
3705         * arm-wince-tdep.c (arm_wince_init_abi): ... and here.
3706
3707         * arm-tdep.c (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT): No longer
3708         allow defines to be overriden by TM file.
3709         (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Likewise.  Also,
3710         change default to {0xbe,0xbe}.
3711         * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint,
3712         arm_obsd_thumb_be_breakpoint): New global variables.
3713         (armobsd_init_abi): Override tdep->thumb_breakpoint and
3714         tdep->thumb_breakpoint_size.
3715         * arm-wince-tdep.c (arm_wince_thumb_le_breakpoint): New variable.
3716         (arm_wince_init_abi): Override tdep->thumb_breakpoint and 
3717         tdep->thumb_breakpoint_size.
3718
3719         * arm-tdep.c (arm_gdbarch_init): Add set_gdbarch_skip_trampoline_code.
3720
3721 2007-05-16  Daniel Jacobowitz  <dan@codesourcery.com>
3722
3723         * NEWS: Mention removed "set mips stack-arg-size" and "set mips
3724         saved-gpreg-size".
3725
3726         * mips-tdep.c (MIPS32_REGSIZE, MIPS64_REGSIZE): New constants.
3727         (size_auto, size_32, size_64, size_enums, mips_abi_regsize_string)
3728         (mips_stack_argsize_string, mips_stack_argsize): Delete.
3729         (mips_abi_regsize): Simplify.
3730         (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call)
3731         (mips_n32n64_return_value, mips_o32_push_dummy_call)
3732         (mips_o32_return_value, mips_o64_push_dummy_call)
3733         (mips_o64_return_value): Propogate constant register sizes.  Use the
3734         ABI register size instead of mips_stack_argsize.
3735         (mips_dump_tdep): Don't print mips_stack_argsize.
3736         (_initialize_mips_tdep): Remove saved-gpreg-size and stack-arg-size
3737         settings.
3738
3739 2007-05-16  Daniel Jacobowitz  <dan@codesourcery.com>
3740
3741         * config/mips/linux.mt (DEPRECATED_TM_FILE): Delete.
3742         * config/mips/tm-linux.h: Delete.
3743         * mips-linux-tdep.c (mips_svr4_so_ops): New.
3744         (mips_linux_in_dynsym_resolve_code): Make static.  Use
3745         svr4_in_dynsym_resolve_code.
3746         (mips_linux_init_abi): Initialize mips_svr4_so_ops.  Call
3747         set_solib_ops.
3748         * solib-svr4.c (svr4_in_dynsym_resolve_code, svr4_so_ops): Make
3749         global.
3750         * solib-svr4.h (svr4_so_ops, svr4_in_dynsym_resolve_code): Declare.
3751         * Makefile.in (mips-linux-tdep.o): Update.
3752         * solib.c (set_solib_ops): New.
3753         (current_target_so_ops): Update comment.
3754         * solib.h (set_solib_ops): New prototype.
3755
3756 2007-05-16  Chris Dearman  <chris@mips.com>
3757
3758         * printcmd.c (do_examine): Fix typos in a comment.
3759
3760 2007-05-16  Richard Sandiford  <richard@codesourcery.com>
3761
3762         * configure.ac: Allow sysroots to be relocated under $prefix as
3763         well as $exec_prefix.
3764         * configure: Regenerate.
3765
3766 2007-05-14  Ulrich Weigand  <uweigand@de.ibm.com>
3767
3768         * hppa-hpux-tdep.c: Do not include <dl.h> or <machine/save_state.h>.
3769         (offsetof): Do not define.
3770         (find_stub_with_shl_get): Use numerical value 3 instead of
3771         symbolic value TYPE_PROCEDURE.
3772
3773 2007-05-14  Daniel Jacobowitz  <dan@codesourcery.com>
3774
3775         * gdb_proc_service.h (paddr_t): Delete typedef.
3776         * proc-service.c (ps_addr_to_core_addr, core_addr_to_ps_addr): New.
3777         (ps_xfer_memory): Take a psaddr_t.  Use ps_addr_to_core_addr.
3778         (ps_pglobal_lookup): Take a psaddr_t *.  Use core_addr_to_ps_addr.
3779         (ps_pdread, ps_pdwrite, ps_ptread, ps_ptwrite): Take a psaddr_t.
3780         * sol-thread.c (gdb_ps_addr_t): Use psaddr_t instead of paddr_t.
3781         * Makefile.in (proc-service.o): Update.
3782
3783 2007-05-14  Daniel Jacobowitz  <dan@codesourcery.com>
3784
3785         * Makefile.in (mips-tdep.o): Update.
3786         * mips-tdep.c (mips_gdbarch_init): Register the dwarf2 CFI
3787         unwinder.
3788
3789 2007-05-14  Daniel Jacobowitz  <dan@codesourcery.com>
3790
3791         * dwarf2-frame.c (dwarf2_frame_prev_register): Use pack_long
3792         instead of store_typed_address.
3793         * value.c (pack_long): New.
3794         (value_from_longest): Use it.
3795         * value.h (pack_long): New prototype.
3796
3797 2007-05-14  Daniel Jacobowitz  <dan@codesourcery.com>
3798
3799         * dwarf2-frame.c (read_encoded_value): Correct typo.  Use
3800         DW_EH_PE_signed if appropriate.
3801
3802 2007-05-14  Paul Brook  <paul@codesourcery.com>
3803             Daniel Jacobowitz  <dan@codesourcery.com>
3804
3805         * dwarf2read.c (dwarf2_debug_line_missing_file_complaint): New
3806         function.
3807         (dwarf_decode_lines): Check for line info without a file.
3808
3809 2007-05-14  Daniel Jacobowitz  <dan@codesourcery.com>
3810
3811         * linux-thread-db.c (thread_db_pid_to_str): Print thread IDs
3812         as hexadecimal.
3813
3814 2007-05-14  Daniel Jacobowitz  <dan@codesourcery.com>
3815
3816         * jv-exp.y (push_fieldnames): Use STRUCTOP_PTR instead of
3817         STRUCTOP_STRUCT.
3818         * jv-lang.c (evaluate_subexp_java): Handle STRUCTOP_PTR instead of
3819         STRUCTOP_STRUCT.
3820         * jv-typeprint.c (java_print_type): Do not crash on NULL varstring.
3821
3822 2007-05-14  Ulrich Weigand  <uweigand@de.ibm.com>
3823
3824         * gdbarch.sh (read_sp): Remove.
3825         * gdbarch.c, gdbarch.h: Regenerate.
3826         * frame.c (frame_sp_unwind): Do not call TARGET_READ_SP.
3827
3828         * avr-tdep.c (avr_read_sp): Remove.
3829         (avr_unwind_sp): New function.
3830         (avr_gdbarch_init): Install unwind_sp instead of read_sp callback.
3831         * mips-tdep.c (mips_read_sp): Remove.
3832         (mips_unwind_sp): New function.
3833         (mips_gdbarch_init): Install unwind_sp instead of read_sp callback.
3834         * score-tdep.c (score_read_unsigned_register): Remove.
3835         (score_read_sp): Remove.
3836         (score_unwind_sp): New function.
3837         (score_gdbarch_init): Install unwind_sp instead of read_sp callback.
3838
3839 2007-05-14  Maxim Grigoriev  <maxim2405@gmail.com>
3840
3841         * buildsym.c (start_subfile): Handle absolute pathnames
3842         while comparing subfile names.
3843
3844 2007-05-13  Ulrich Weigand  <uweigand@de.ibm.com>
3845
3846         * hppa-hpux-tdep.c: Include "regcache.h".
3847         * hppa-linux-tdep.c: Likewise.
3848         * hppa-tdep.c: Include "gdb_stdint.h".
3849         (find_unwind_entry): Cast host pointer to uintptr_t before passing
3850         it to paddr_nz.
3851         * Makefile.in: Update dependencies.
3852
3853 2007-05-13  Ulrich Weigand  <uweigand@de.ibm.com>
3854
3855         * blockframe.c: Remove obsolete comments.
3856         * alpha-nat.c (fetch_osf_core_registers): Update comment.
3857         * arm-tdep.h (enum gdb_regnum): Remove obsolete part of comment.
3858         * hppa-tdep.h (enum hppa_regnum): Likewise.
3859         * mips-tdep.h: Likewise.
3860         * m68hc11-tdep.c: Likewise.
3861
3862 2007-05-13  Ulrich Weigand  <uweigand@de.ibm.com>
3863
3864         * inferior.h (read_sp): Remove prototype.
3865         * regcache.c (read_sp): Remove.
3866         * gcore.c (derive_stack_segment): Use get_frame_sp instead of read_sp.
3867         * infcall.c (call_function_by_hand): Likewise.
3868         * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Use regcache instead
3869         of calling read_sp.
3870         * rs6000-tdep.c (rs6000_push_dummy_call): Likewise.
3871
3872 2007-05-11  Ulrich Weigand  <uweigand@de.ibm.com>
3873
3874         * i386-linux-nat.c (i386_linux_resume): Use regcache functions 
3875         instead of read_register and read_register_pid.
3876
3877         * ia64-linux-nat.c (enable_watchpoints_in_psr): Use REGCACHE 
3878         argument instead of PTID.  Use regcache functions instead of
3879         read_register_pid.
3880         (ia64_linux_insert_watchpoint): Update call.
3881         (ia64_linux_stopped_data_address): Use regcache functions
3882         instead of read_register_pid and write_register_pid.
3883
3884 2007-05-11  Ulrich Weigand  <uweigand@de.ibm.com>
3885
3886         * libunwind-frame.h (struct regcache): Add forward declaration.
3887         (libunwind_get_reg_special): Add REGCACHE argument.
3888         * libunwind-frame.c (libunwind_get_reg_special): Add REGCACHE
3889         argument.  Pass it to unw_init_remote_p.
3890
3891         * ia64-tdep.c (ia64_pseudo_register_read): Pass regcache to
3892         libunwind_get_reg_special.
3893         (ia64_access_reg): Remove "write" case.
3894         (ia64_access_fpreg): Likewise.  Read from next_frame passed
3895         as callback argument instead of from current_regcache.
3896         (ia64_access_rse_reg): Remove "write" case.  Read from regcache
3897         passed as callback argument instead of from current_regcache.
3898         (ia64_access_rse_fpreg): New function.
3899         (ia64_unw_rse_acce): Use it instead of ia64_access_fpreg.
3900
3901 2007-05-11  Ulrich Weigand  <uweigand@de.ibm.com>
3902
3903         * NEWS: Mention SPU overlay support.
3904
3905 2007-05-11  Ulrich Weigand  <uweigand@de.ibm.com>
3906
3907         * spu-tdep.c (spu_frame_unwind_cache): Add comment.
3908
3909 2007-05-11  Ulrich Weigand  <uweigand@de.ibm.com>
3910
3911         * breakpoint.c (remove_breakpoint): Do not remove software
3912         breakpoints in unmapped overlay sections.
3913
3914 2007-05-11  Ulrich Weigand  <uweigand@de.ibm.com>
3915
3916         * spu-tdep.c: Include "observer.h".
3917         (spu_frame_unwind_cache): Unwind PC through overlay return stubs.
3918         (spu_overlay_data): New variable.
3919         (struct spu_overlay_table): New type.
3920         (spu_get_overlay_table, spu_overlay_update_osect, spu_overlay_update,
3921         spu_overlay_new_objfile): New functions.
3922         (spu_gdbarch_init): Install spu_overlay_update.
3923         (_initialize_spu_tdep): Register spu_overlay_new_objfile, 
3924         allocate spu_overlay_data objfile data.
3925
3926 2007-05-11  Ulrich Weigand  <uweigand@de.ibm.com>
3927
3928         * gdbarch.sh (overlay_update): New gdbarch function.
3929         (struct obj_section): Add forward declaration.
3930         * gdbarch.c, gdbarch.h: Regenerate.
3931
3932         * symfile.c (simple_overlay_update): Make global.
3933         (target_overlay_update): Remove variable.
3934         (overlay_is_mapped): Call gdbarch_overlay_update instead of
3935         target_overlay_update.
3936         (overlay_load_command): Likewise.
3937         * symfile.h (struct obj_section): Add forward declaration.
3938         (simple_overlay_update): Add prototype.
3939
3940         * m32r-tdep.c (m32r_gdbarch_init): Install simple_overlay_update.
3941
3942 2007-05-11  Ulrich Weigand  <uweigand@de.ibm.com>
3943
3944         * observer.sh: Add "struct objfile" forward declaration.
3945         * target.h (deprecated_target_new_objfile_hook): Remove.
3946         * symfile.c (deprecated_target_new_objfile_hook): Remove.
3947         (clear_symtab_users): Call observer_notify_new_objfile.
3948         (symbol_file_add_with_addrs_or_offsets): Likewise.
3949         * rs6000-nat.c: Include "observer.h".
3950         (vmap_ldinfo): Call observer_notify_new_objfile.
3951         (xcoff_relocate_core): Likewise.
3952         * remote.c (remote_new_objfile_chain): Remove.
3953         (remote_new_objfile): Do not call remote_new_objfile_chain.
3954         (_initialize_remote): Use observer_attach_new_objfile.
3955         * tui/tui-hooks.c (tui_target_new_objfile_chain): Remove.
3956         (tui_new_objfile_hook): Do not call tui_target_new_objfile_chain.
3957         (_initialize_tui_hooks): Use observer_attach_new_objfile.
3958         * aix-thread.c: Include "observer.h".
3959         (target_new_objfile_chain): Remove.
3960         (new_objfile): Do not call target_new_objfile_chain.
3961         (_initialize_aix_thread): Use observer_attach_new_objfile.
3962         * hpux-thread.c: Include "observer.h"
3963         (target_new_objfile_chain): Remove.
3964         (hpux_thread_new_objfile): Make static.  Do not call
3965         target_new_objfile_chain.
3966         (_initialize_hpux_thread): Use observer_attach_new_objfile.
3967         * linux-thread-db.c: Include "observer.h".
3968         (target_new_objfile_chain): Remove.
3969         (thread_db_new_objfile): Do not call target_new_objfile_chain.
3970         (_initialize_thread_db): Use observer_attach_new_objfile.
3971         * sol-thread.c: Include "observer.h".
3972         (target_new_objfile_chain): Remove.
3973         (sol_thread_new_objfile): Make static.  Do not call
3974         target_new_objfile_chain.
3975         (_initialize_sol_thread): Use observer_attach_new_objfile.
3976         * Makefile.in (aix-thread.o, hpux-thread.o, linux-thread-db.o,
3977         rs6000-nat.o, sol-thread.o, tui-hooks.o): Add dependency on
3978         $(observer_h).
3979
3980 2007-05-11  Ulrich Weigand  <uweigand@de.ibm.com>
3981
3982         * gdbarch.sh (remote_translate_xfer_address): Remove.
3983         * gdbarch.h, gdbarch.c: Regenerate.
3984         * arch-utils.c (generic_remote_translate_xfer_address): Remove.
3985         * arch-utils.h (generic_remote_translate_xfer_address): Remove.
3986         * remote.c (remote_write_bytes_aux, remote_read_bytes): Do not
3987         call gdbarch_remote_translate_xfer_address.
3988         * frv-tdep.c (frv_gdbarch_init): Do not call
3989         set_gdbarch_remote_translate_xfer_address.
3990         * ia64-tdep.c (ia64_remote_translate_xfer_address): Remove.
3991         (ia64_gdbarch_init): Do not install it.
3992
3993 2007-05-11  Bob Wilson  <bob.wilson@acm.org>
3994
3995         * NEWS: Mention change in handling the -tui option.
3996
3997 2007-05-11  Daniel Jacobowitz  <dan@codesourcery.com>
3998
3999         * linux-thread-db.c (enable_thread_event_reporting): Fix comment
4000         typo.
4001
4002 2007-05-11  Ulrich Weigand  <uweigand@de.ibm.com>
4003
4004         * breakpoint.c (single_step_breakpoint_inserted_here_p): New function.
4005         (breakpoint_inserted_here_p): Call it.
4006         (software_breakpoint_inserted_here_p): Likewise.
4007
4008 2007-05-10  Ulrich Weigand  <uweigand@de.ibm.com>
4009
4010         * inf-ptrace.c (inf_ptrace_register_u_offset): Adapt parameter list.
4011         (inf_ptrace_fetch_register): Add register_u_offset callback parameters
4012         GDBARCH and STORE_P.  Handle callback (CORE_ADDR) -1 return value.
4013         (inf_ptrace_store_register): Likewise.
4014         (inf_ptrace_trad_target): Adapt register_u_offset parameter list.
4015         * inf-ptrace.h (inf_ptrace_trad_target): Likewise.
4016
4017         * vax-nat.c (vax_register_u_offset): Adapt parameter list.
4018
4019         * linux-nat.c (linux_trad_target): Adapt parameter list.
4020         * linux-nat.h (linux_trad_target): Likewise.
4021
4022         * alpha-linux-nat.c (alpha_linux_register_u_offset): Adapt parameters.
4023
4024         * mips-linux-nat.c (mips_linux_cannot_fetch_register): Remove.
4025         (mips_linux_cannot_store_register): Likewise.
4026         (mips_linux_register_addr): Add GDBARCH and STORE_P parameters.
4027         Return (CORE_ADDR) -1 for registers that cannot be fetched or
4028         stored via ptrace.  Use GDBARCH instead of current_gdbarch.
4029         (mips64_linux_register_addr): Likewise.
4030         (mips_linux_register_u_offset): Adapt parameter list.  Pass
4031         GDBARCH and STORE_P on to mips{64}_linux_register_addr.
4032
4033         * config/mips/linux.mh (NAT_FILE): Set to config/nm-linux.h.
4034         * config/mips/nm-linux.h: Delete file.
4035
4036 2007-05-10  Pedro Alves  <pedro_alves@portugalmail.pt>
4037
4038         * remote.c (remote_detach): Error out if remote can't detach.
4039
4040 2007-05-10  Luis Machado  <luisgpm@br.ibm.com>
4041
4042         * rs6000-tdep.c: (deal_with_atomic_sequence) Stores branch
4043         instruction's opcode in the "opcode" variable and declares new
4044         variable "closing_insn".
4045
4046 2007-05-10  Chris Dearman  <chris@mips.com>
4047             Maciej W. Rozycki  <macro@mips.com>
4048
4049         * cli/cli-setshow.c (do_setshow_command): Remove trailing
4050         whitespace when setting a var_filename.
4051
4052 2007-05-09  Bob Wilson  <bob.wilson@acm.org>
4053         
4054         * main.c (captured_main): Recognize -tui option and print an error
4055         message when the TUI is not configured.
4056         
4057 2007-05-09  Andreas Schwab  <schwab@suse.de>
4058
4059         * mipsnbsd-tdep.c (mipsnbsd_ilp32_fetch_link_map_offsets): Don't
4060         set removed members.
4061         (mipsnbsd_lp64_fetch_link_map_offsets): Likewise.
4062
4063 2007-05-08  Ulrich Weigand  <uweigand@de.ibm.com>
4064
4065         * gdbarch.sh (deprecated_store_struct_return): Remove.
4066         * gdbarch.c, gdbarch.h: Regenerate.
4067         * frv-tdep.c (frv_store_struct_return): Remove.
4068         (frv_gdbarch_init): Do not install it.
4069
4070 2007-05-08  Ulrich Weigand  <uweigand@de.ibm.com>
4071
4072         * config/i386/nm-i386sol2.h (USE_PROC_FS): Do not define.
4073         * config/mips/nm-irix5.h (USE_PROC_FS): Do not define.
4074         * config/nm-linux.h (USE_PROC_FS): Do not undefine.
4075
4076 2007-05-08  Ulrich Weigand  <uweigand@de.ibm.com>
4077
4078         * spu-linux-nat.c: Include "gdb_stdint.h".
4079         (fetch_ppc_register): Use uint64_t instead of unsigned long long.
4080         (fetch_ppc_memory_1, store_ppc_memory_1): Likewise.
4081         (fetch_ppc_memory, store_ppc_memory): Fix coding style.
4082         (spu_symbol_file_add_from_memory): Use strtoulst instead of sscanf.
4083         (spu_child_wait): Mark up string for translation.
4084
4085 2007-05-08  Paul Gilliam  <pgilliam@us.ibm.com>
4086             Luis Machado  <luisgpm@br.ibm.com>
4087
4088         * rs6000-tdep.c: (LWARX_MASK, LWARX_INSTRUCTION, LDARX_INSTRUCTION,
4089         STWCX_MASK, STWCX_INSTRUCTION, STDCX_INSTRUCTION, BC_MASK,
4090         BC_INSTRUCTION): Define.
4091         (deal_with_atomic_sequence): New function.
4092         (rs6000_software_single_step): Call deal_with_atomic_sequence.
4093         (rs6000_gdbarch_init): Install deal_with_atomic_sequence as
4094         gdbarch_software_single_step routine.
4095
4096 2007-05-07  Ulrich Weigand  <uweigand@de.ibm.com>
4097
4098         * spu-linux-nat.c (fetch_ppc_register, fetch_ppc_memory_1,
4099         store_ppc_memory_1, fetch_ppc_memory, store_ppc_memory,
4100         parse_spufs_run, spu_bfd_iovec_pread, spu_bfd_open,
4101         spu_symbol_file_add_from_memory, spu_child_post_startup_inferior,
4102         spu_child_post_attach, spu_fetch_inferior_registers,
4103         spu_store_inferior_registers, spu_xfer_partial): Store PPE-side
4104         memory addresses as ULONGEST, not CORE_ADDR.
4105
4106 2007-05-07  Ulrich Weigand  <uweigand@de.ibm.com>
4107
4108         * gdbarch.sh: Add skip_permanent_breakpoint callback.
4109         * gdbarch.h, gdbarch.c: Regenerate.
4110
4111         * infrun.c (SKIP_PERMANENT_BREAKPOINT): Remove default definition.
4112         (resume): Call gdbarch_skip_permanent_breakpoint instead of
4113         SKIP_PERMANENT_BREAKPOINT.  Inline default case.
4114
4115         * hppa-hpux-tdep.c (hppa_skip_permanent_breakpoint): Make static.
4116         Add REGCACHE argument.  Use it instead of read/write_register.
4117         (hppa_hpux_init_abi): Install hppa_skip_permanent_breakpoint.
4118
4119         * config/pa/tm-hppah.h: Delete file.
4120         * config/pa/hppa64.mt (DEPRECATED_TM_FILE): Set to tm-hppa.h.
4121         * config/pa/hppahpux.mt (DEPRECATED_TM_FILE): Likewise.
4122
4123 2007-05-07  Daniel Jacobowitz  <dan@codesourcery.com>
4124
4125         * Makefile.in (c-lang.o, gnu-v3-abi.o): Update.
4126         * NEWS: Mention improved C++ thunk support.
4127         * c-lang.c (cplus_language_defn): Mention cplus_skip_trampoline.
4128         * cp-abi.c (cplus_skip_trampoline): New.
4129         * cp-abi.h (cplus_skip_trampoline): New prototype.
4130         (struct cp_abi_ops): Add skip_trampoline member.
4131         * gnu-v3-abi.c (gnuv3_skip_trampoline): New.
4132         (init_gnuv3_ops): Set skip_trampoline.
4133
4134 2007-05-06  Daniel Jacobowitz  <dan@codesourcery.com>
4135
4136         * rs6000-tdep.c (struct frame_extra_info): Delete.
4137
4138 2007-05-06  Daniel Jacobowitz  <dan@codesourcery.com>
4139
4140         * linux-thread-db.c: Update some FIXME comments.
4141         (thread_db_xfer_partial): Delete.
4142         (init_thread_db_ops): Do not set to_xfer_partial.
4143
4144 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4145
4146         * inftarg.c, infptrace.c: Remove files.
4147         * Makefile.in (ALLDEPFILES): Remove inftarg.c and infptrace.c
4148         (inftarg.o, infptrace.o): Remove rules.
4149         * gdbcore.h (register_addr): Remove prototype.
4150         * inferior.h (kill_inferior, store_inferior_registers,
4151         fetch_inferior_registers, attach, detach, ptrace_wait, child_resume,
4152         call_ptrace, pre_fork_inferior): Remove prototypes.
4153         * target.h (child_xfer_memory, child_pid_to_exec_file, 
4154         child_core_file_to_sym_file, child_post_attach,
4155         child_post_startup_inferior, child_acknowledge_created_inferior,
4156         child_insert_fork_catchpoint, child_remove_fork_catchpoint,
4157         child_insert_vfork_catchpoint, child_remove_vfork_catchpoint,
4158         child_insert_exec_catchpoint, child_remove_exec_catchpoint,
4159         child_follow_fork, child_reported_exec_events_per_exec_call,
4160         child_has_exited, child_thread_alive): Remove prototypes.
4161
4162 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4163
4164         * sparc-nat.h (sparc_fetch_inferior_registers): Add prototype.
4165         (sparc_store_inferior_registers): Likewise.
4166         * sparc-nat.c (fetch_inferior_registers): Rename to ...
4167         (sparc_fetch_inferior_registers): ... this.
4168         (store_inferior_registers): Rename to ...
4169         (sparc_store_inferior_registers): ... this.
4170         (sparc_target): Update callback names.
4171         * sparc-linux.nat.c (_initialize_sparc_linux_nat): Likewise. 
4172         * sparc64-linux.nat.c (_initialize_sparc64_linux_nat): Likewise. 
4173
4174 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4175
4176         * linux-nat.c (child_post_attach): Rename to ...
4177         (linux_child_post_attach): ... this.  Make static.
4178         (child_follow_fork): Rename to ...
4179         (linux_child_follow_fork): ... this.  Make static.
4180         (child_insert_fork_catchpoint): Rename to ...
4181         (linux_child_insert_fork_catchpoint): ... this.  Make static.
4182         (child_insert_vfork_catchpoint): Rename to ...
4183         (linux_child_insert_vfork_catchpoint): ... this.  Make static.
4184         (child_insert_exec_catchpoint): Rename to ...
4185         (linux_child_insert_exec_catchpoint): ... this.  Make static.
4186         (child_pid_to_exec_file): Rename to ...
4187         (linux_child_pid_to_exec_file): ... this.  Make static.
4188         Add prototype.
4189         (linux_handle_extended_wait): Update call.
4190         (linux_xfer_partial): Update callback routine names.
4191
4192 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4193
4194         * configure.host (alpha*-*-osf[12]*): Remove support.
4195         * NEWS: Mention removed configurations.
4196
4197         * config/alpha/alpha-osf1.mh: Delete file.
4198         * config/alpha/alpha-osf2.mh: Delete file.
4199         * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove inftarg.o
4200         and infptrace.o.
4201         * config/alpha/nm-osf.h: Delete file.
4202         * config/alpha/nm-osf2.h: Delete file.
4203         * config/alpha/nm-osf3.h: Do not include "nm-osf2.h".
4204         (START_INFERIOR_TRAPS_EXPECTED): Copy from nm-osf.h.
4205         (PROCFS_DONT_TRACE_FAULTS): Copy from nm-osf2.h.
4206
4207         * alpha-nat.c (ALPHA_UNIQUE_PTRACE_ADDR): Do not define.
4208         (register_addr, kernel_u_size): Remove.
4209         Do not check for "defined(USE_PROC_FS) || defined(HAVE_GREGSET_T)".
4210
4211 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4212
4213         * regcache.c (regcache_invalidate): New function.
4214         (register_cached): Remove.
4215         (set_register_cached): Remove.
4216         (deprecated_registers_fetched): Remove.
4217         (registers_changed): Use regcache_invalidate instead
4218         of set_register_cached.
4219         (regcache_raw_read): Update comment.
4220
4221         * regcache.h (regcache_invalidate): Add prototype.
4222         (register_cached): Remove.
4223         (set_register_cached): Remove.
4224         (deprecated_registers_fetched): Remove.
4225
4226         * findvar.c (value_of_register): Do not call register_cached.
4227         * frame.c (frame_register): Likewise.
4228         * tui/tui-regs.c (tui_get_register): Likewise.
4229
4230         * remote.c (fetch_register_using_p): Do not call set_register_cached.
4231         (process_g_packet): Likewise.
4232         (remote_fetch_registers): Likewise.
4233         * remote-sim.c (gdbsim_fetch_register): Likewise.
4234         * mt-tdep.c (mt_select_coprocessor): Replace set_register_cached call
4235         by regcache_invalidate.
4236         (mt_pseudo_register_write): Likewise.
4237         * sh-tdep.c (sh_pseudo_register_write): Likewise.
4238
4239         * corelow.c (get_core_registers): Replace deprecated_registers_fetched
4240         call by loop over regcache_raw_supply (..., NULL).
4241
4242 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4243
4244         * target.h (struct target_ops): Add REGCACHE parameter to
4245         to_prepare_to_store.
4246         (target_prepare_to_store): Likewise.
4247         * target.c (debug_to_prepare_to_store): Add REGCACHE parameter.
4248         (update_current_target): Adapt prepare_to_store de_fault rule.
4249
4250         * regcache.c (regcache_raw_write): Pass regcache to
4251         target_prepare_to_store.
4252
4253         * inftarg.c (child_prepare_to_store): Add REGCACHE parameter.
4254         Do not call CHILD_PREPARE_TO_STORE.
4255         * gnu-nat.c (gnu_prepare_to_store): Likewise.
4256         * procfs.c (procfs_prepare_to_store): Likewise.
4257
4258         * inf-child.c (inf_child_prepare_to_store): Add REGCACHE parameter.
4259         * go32-nat.c (go32_prepare_to_store): Likewise.
4260         * monitor.c (monitor_prepare_to_store): Likewise.
4261         * nto-procfs.c (procfs_prepare_to_store): Likewise.
4262         * remote-m32r-sdi.c (m32r_prepare_to_store): Likewise.
4263         * remote-mips.c (mips_prepare_to_store): Likewise.
4264         * remote-sim.c (gdbsim_prepare_to_store): Likewise.
4265         * win32-nat.c (win32_prepare_to_store): Likewise.
4266
4267         * remote.c (remote_prepare_to_store): Add REGCACHE parameter.
4268         Use it instead of current_regcache.
4269
4270         * hpux-thread.c (hpux_thread_prepare_to_store): Add REGCACHE
4271         parameter.  Pass it on to next target.
4272         * sol-thread.c (sol_thread_prepare_to_store): Likewise.
4273
4274 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4275
4276         * target.h (struct regcache): Add forward declaration.
4277         (struct target_ops): Add REGCACHE parameter to to_fetch_registers
4278         and to_store_registers target operations.
4279         (target_fetch_registers, target_store_registers): Update.
4280
4281         * regcache.c (regcache_raw_read): Replace register_cached by
4282         regcache_valid_p.  Pass regcache to target_fetch_registers.
4283         (regcache_raw_write): Pass regcache to target_store_registers.
4284
4285         * arm-linux-nat.c (store_fpregister, store_fpregs, store_register,
4286         store_regs, store_wmmx_regs): Replace register_cached by
4287         regcache_valid_p.
4288
4289         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd): Pass current_regcache
4290         to target_fetch_registers calls.
4291         * corelow.c (core_open): Likewise.
4292         * linux-nat.c (linux_nat_corefile_thread_callback): Likewise.
4293         * proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
4294         ps_lsetfpregs): Likewise.
4295         * sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
4296         ps_lsetfpregs): Likewise.
4297         * win32-nat.c (win32_resume): Likewise.
4298         * ia64-tdep.c (ia64_store_return_value): Pass current_regcache
4299         to target_store_registers call.
4300         * rs6000-tdep.c (rs6000_push_dummy_call): Likewise.
4301
4302         * inferior.h (store_inferior_registers): Update prototype.
4303         (fetch_inferior_registers): Likewise.
4304         * gnu-nat.c (gnu_store_registers, gnu_fetch_registers): Likewise.
4305         * mips-linux-nat.c (super_fetch_registers, super_store_registers):
4306         Update function pointer signatures.
4307
4308         * aix-thread.c (aix_thread_fetch_registers): Add REGCACHE parameter,
4309         use it instead of current_regcache, update calls.
4310         (aix_thread_store_registers): Likewise.
4311         * alphabsd-nat.c (alphabsd_fetch_inferior_registers): Likewise.
4312         (alphabsd_store_inferior_registers): Likewise.
4313         * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Likewise.
4314         (amd64bsd_store_inferior_registers): Likewise.
4315         * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers): Likewise.
4316         (amd64_linux_store_inferior_registers): Likewise.
4317         * arm-linux-nat.c (fetch_fpregister, fetch_fpregs, store_fpregister,
4318         store_fpregs, fetch_register, fetch_regs, store_register, store_regs,
4319         fetch_wmmx_regs, store_wmmx_regs): Likewise.
4320         (arm_linux_fetch_inferior_registers): Likewise.
4321         (arm_linux_store_inferior_registers): Likewise.
4322         * armnbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
4323         fetch_fp_regs, armnbsd_fetch_registers): Likewise.
4324         (store_register, store_regs, store_fp_register, store_fp_regs,
4325         armnbsd_store_registers): Likewise.
4326         * bsd-kvm.c (bsd_kvm_fetch_pcb, bsd_kvm_fetch_registers): Likewise.
4327         * bsd-uthread.c (bsd_uthread_fetch_registers): Likewise.
4328         (bsd_uthread_store_registers): Likewise.
4329         * corelow.c (get_core_registers): Likewise.
4330         * go32-nat.c (fetch_register, go32_fetch_registers, store_register,
4331         go32_store_registers): Likewise.
4332         * hppabsd-nat.c (hppabsd_fetch_registers): Likewise.
4333         (hppabsd_store_registers): Likewise.
4334         * hppa-hpux-nat.c (hppa_hpux_fetch_register): Likewise.
4335         (hppa_hpux_fetch_inferior_registers): Likewise.
4336         (hppa_hpux_store_register): Likewise.
4337         (hppa_hpux_store_inferior_registers): Likewise.
4338         * hppa-linux-nat.c (fetch_register, store_register): Likewise.
4339         (hppa_linux_fetch_inferior_registers): Likewise.
4340         (hppa_linux_store_inferior_registers): Likewise.
4341         * hpux-thread.c (hpux_thread_fetch_registers): Likewise.
4342         (hpux_thread_store_registers): Likewise.
4343         * i386bsd-nat.c (i386bsd_fetch_inferior_registers): Likewise.
4344         (i386bsd_store_inferior_registers): Likewise.
4345         * i386gnu-nat.c (fetch_fpregs, gnu_fetch_registers, store_fpregs,
4346         gnu_store_registers): Likewise.
4347         * i386-linux-nat.c (fetch_register, store_register, fetch_regs,
4348         store_regs, fetch_fpregs, store_fpregs, fetch_fpxregs, store_fpxregs):
4349         Likewise.
4350         (i386_linux_fetch_inferior_registers): Likewise.
4351         (i386_linux_store_inferior_registers): Likewise.
4352         * ia64-linux-nat.c (ia64_linux_fetch_register): Likewise.
4353         (ia64_linux_fetch_registers): Likewise.
4354         (ia64_linux_store_register): Likewise.
4355         (ia64_linux_store_registers): Likewise.
4356         * inf-child.c (inf_child_fetch_inferior_registers): Likewise.
4357         (inf_child_store_inferior_registers): Likewise.
4358         * inf-ptrace.c (inf_ptrace_fetch_register): Likewise.
4359         (inf_ptrace_fetch_registers): Likewise.
4360         (inf_ptrace_store_register): Likewise.
4361         (inf_ptrace_store_registers): Likewise.
4362         * infptrace.c (fetch_register, store_register): Likewise.
4363         (fetch_inferior_registers, store_inferior_registers): Likewise.
4364         * m32r-linux-nat.c (fetch_regs, store_regs): Likewise.
4365         (m32r_linux_fetch_inferior_registers): Likewise.
4366         (m32r_linux_store_inferior_registers): Likewise.
4367         * m68kbsd-nat.c (m68kbsd_fetch_inferior_registers): Likewise.
4368         (m68kbsd_store_inferior_registers): Likewise.
4369         * m68klinux-nat.c (fetch_register, old_fetch_inferior_registers,
4370         store_register, old_store_inferior_registers, fetch_regs, store_regs,
4371         fetch_fpregs, store_fpregs): Likewise.
4372         (m68k_linux_fetch_inferior_registers): Likewise.
4373         (m68k_linux_store_inferior_registers): Likewise.
4374         * m88kbsd-nat.c (m88kbsd_fetch_inferior_registers): Likewise.
4375         (m88kbsd_store_inferior_registers): Likewise.
4376         * mips64obsd-nat.c (mips64obsd_fetch_inferior_registers): Likewise.
4377         (mips64obsd_store_inferior_registers): Likewise.
4378         * mips-linux-nat.c (mips64_linux_regsets_fetch_registers): Likewise.
4379         (mips64_linux_regsets_store_registers): Likewise.
4380         (mips64_linux_fetch_registers): Likewise.
4381         (mips64_linux_store_registers): Likewise.
4382         * mipsnbsd-nat.c (mipsnbsd_fetch_inferior_registers): Likewise.
4383         (mipsnbsd_store_inferior_registers): Likewise.
4384         * monitor.c (monitor_fetch_register, monitor_store_register): Likewise.
4385         (monitor_fetch_registers, monitor_store_registers): Likewise.
4386         * nto-procfs.c (procfs_fetch_registers): Likewise.
4387         (procfs_store_registers): Likewise.
4388         * ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register,
4389         fetch_register, supply_vrregset, fetch_altivec_registers,
4390         fetch_ppc_registers, ppc_linux_fetch_inferior_registers): Likewise.
4391         (store_altivec_register, store_spe_register, store_register, 
4392         fill_vrregset, store_altivec_registers, store_ppc_registers,
4393         ppc_linux_store_inferior_registers): Likewise.
4394         * ppcnbsd-nat.c (ppcnbsd_fetch_inferior_registers): Likewise.
4395         (ppcnbsd_store_inferior_registers): Likewise.
4396         * ppcobsd-nat.c (ppcobsd_fetch_registers): Likewise.
4397         (ppcobsd_store_registers): Likewise.
4398         * procfs.c (procfs_fetch_registers, procfs_store_registers): Likewise.
4399         * remote.c (fetch_register_using_p, process_g_packet,
4400         fetch_registers_using_g, remote_fetch_registers): Likewise.
4401         (store_register_using_P, store_registers_using_G, 
4402         remote_store_registers): Likewise.
4403         * remote-m32r-sdi.c (m32r_fetch_registers, m32r_fetch_register,
4404         m32r_store_register, m32r_store_register): Likewise.
4405         * remote-mips.c (mips_fetch_registers, mips_store_registers): Likewise.
4406         * remote-sim.c (gdbsim_fetch_register): Likewise.
4407         (gdbsim_store_register): Likewise.
4408         * rs6000-nat.c (fetch_register, store_register): Likewise.
4409         (rs6000_fetch_inferior_registers): Likewise.
4410         (rs6000_store_inferior_registers): Likewise.
4411         * s390-nat.c (fetch_regs, store_regs): Likewise.
4412         (fetch_fpregs, store_fpregs): Likewise.
4413         (s390_linux_fetch_inferior_registers): Likewise.
4414         (s390_linux_store_inferior_registers): Likewise.
4415         * shnbsd-nat.c (shnbsd_fetch_inferior_registers): Likewise.
4416         (shnbsd_store_inferior_registers): Likewise.
4417         * sol-thread.c (sol_thread_fetch_registers): Likewise.
4418         (sol_thread_store_registers): Likewise.
4419         * sparc-nat.c (fetch_inferior_registers): Likewise.
4420         (store_inferior_registers): Likewise.
4421         * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
4422         (spu_store_inferior_registers): Likewise.
4423         * target.c (debug_print_register): Likewise.
4424         (debug_to_fetch_registers, debug_to_store_registers): Likewise.
4425         * vaxbsd-nat.c (vaxbsd_fetch_inferior_registers): Likewise.
4426         (vaxbsd_store_inferior_registers): Likewise.
4427         * win32-nat.c (do_win32_fetch_inferior_registers): Likewise.
4428         (win32_fetch_inferior_registers): Likewise.
4429         (win32_store_inferior_registers): Likewise.
4430
4431 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4432
4433         * gdbcore.h (struct regcache): Add forward declaration.
4434         (struct core_fns): Add REGCACHE argument to core_read_registers
4435         callback.
4436         * corelow.c (get_core_register_section): Add REGCACHE argument,
4437         use it instead of current_regcache, pass it to core_read_registers
4438         callback.
4439         (get_core_registers): Add current_regcache as parameter to
4440         get_core_register_section calls.
4441
4442         * alpha-nat.c (fetch_osf_core_registers): Add REGCACHE argument,
4443         use it instead of current_regcache.
4444         * armnbsd-nat.c (fetch_core_registers): Likewise.
4445         (fetch_elfcore_registers): Likewise.
4446         * core-regset.c (fetch_core_registers): Likewise.
4447         * cris-tdep.c (fetch_core_registers): Likewise.
4448         * irix5-nat.c (fetch_core_registers): Likewise.
4449         * m68klinux-nat.c (fetch_core_registers): Likewise.
4450         * mips-linux-tdep.c (fetch_core_registers): Likewise.
4451         * win32-nat.c (fetch_elf_core_registers): Likewise.
4452
4453 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4454
4455         * gregset.h (struct regcache): Add forward declaration.
4456         (supply_gregset): Add REGCACHE parameter, make GREGS const.
4457         (supply_fpregset): Add REGCACHE parameter, make FPREGS const.
4458         (supply_fpxregset): Add REGCACHE parameter, make FPXREGS const.
4459         (fill_gregset): Add REGCACHE parameter.
4460         (fill_fpregset): Likewise.
4461         (fill_fpxregset): Likewise.
4462
4463         Update all definitions accordingly:
4464         * alphabsd-nat.c, alpha-linux-nat.c, alpha-nat.c, amd64-linux-nat.c,
4465         arm-linux-nat.c, hppa-linux-nat.c, i386gnu-nat.c, i386-linux-nat.c,
4466         i386-sol2-nat.c, i386v4-nat.c, ia64-linux-nat.c, irix5-nat.c, 
4467         m32r-linux-nat.c, m68klinux-nat.c, mips-linux-nat.c, ppc-linux-nat.c,
4468         s390-nat.c, sparc64-linux-nat.c, sparc-linux-nat.c, sparc-sol2-nat.c 
4469         (supply_gregset): Add REGCACHE parameter, use it instead of 
4470         current_regcache.  Make GREGSETP parameter const, adapt casts.
4471         (supply_fpregset): Add REGCACHE parameter, use it instead of
4472         current_regcache.  Make FPREGSETP parameter const, adapt casts.
4473         (fill_gregset): Add REGCACHE parameter, use it instead of
4474         current_regcache.
4475         (fill_fpregset): Likewise.
4476
4477         Update all callers to pass in current_regcache as the new argument:
4478         * core-regset.c: Include "regcache.h".
4479         (fetch_core_registers): Update supply_gregset,and supply_fpregset calls.
4480         * procfs.c: Include "regcache.h".
4481         (procfs_fetch_registers): Update supply_gregset, supply_fpregset calls.
4482         (procfs_store_registers): Update fill_gregset, fill_fpregset calls.
4483         (procfs_do_thread_registers): Likewise.
4484         (procfs_make_note_section): Likewise.
4485         * proc-service.c: Include "regcache.h".
4486         (ps_lgetregs): Update fill_gregset call.
4487         (ps_lsetregs): Update supply_gregset call.
4488         (ps_lgetfpregs): Update fill_fpregset call.
4489         (ps_lsetfpregs): Update supply_fpregset call.
4490         * sol-thread.c (sol_thread_fetch_registers): Update supply_gregset,
4491         supply_fpregset calls.
4492         (sol_thread_store_registers): Update fill_gregset, fill_fpregset calls.
4493         (ps_lgetregs): Update fill_gregset call.
4494         (ps_lsetregs): Update supply_gregset call.
4495         (ps_lgetfpregs): Update fill_fpregset call.
4496         (ps_lsetfpregs): Update supply_fpregset call.
4497         
4498         * linux-nat.c (linux_nat_do_thread_registers): Update fill_gregset,
4499         fill_fpregset, and fill_fpxregset calls.
4500         * i386-linux-nat.c (fetch_regs): Update supply_gregset call.
4501         (store_regs): Update fill_gregset call.
4502         (fetch_fpregs): Update supply_fpregset call.
4503         (store_fpregs): Update fill_fpregset call.
4504         (fetch_fpxregs): Update supply_fpxregset call.
4505         (store_fpxregs): Update fill_fpxregset call.
4506         * m32r-linux-nat.c (fetch_regs): Update supply_gregset call.
4507         (store_regs): Update fill_gregset call.
4508         * m68klinux-nat.c (fetch_regs): Update supply_gregset call.
4509         (store_regs): Update fill_gregset call.
4510         (fetch_fpregs): Update supply_fpregset call.
4511         (store_fpregs): Update fill_fpregset call.
4512         (fetch_core_registers): Update supply_gregset, supply_fpregset calls.
4513         * s390-nat.c (fetch_regs): Update supply_gregset call.
4514         (store_regs): Update fill_gregset call.
4515         (fetch_fpregs): Update supply_fpregset call.
4516         (store_fpregs): Update fill_fpregset call.
4517
4518         * Makefile.in (core-regset.o, procfs.o, proc-service.o): Update
4519         dependencies.
4520
4521 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4522
4523         * monitor.c (monitor_supply_register): Add REGCACHE parameter, use
4524         it instead of current_regcache.
4525         (parse_register_dump): Add REGCACHE parameter, pass it to 
4526         supply_register callback.
4527         (monitor_dump_reg_block): Add REGCACHE parameter, pass it to
4528         parse_register_dump.
4529         (monitor_dump_regs): Add REGCACHE parameter, pass it to
4530         parse_register_dump and dumpregs callback.
4531         (monitor_wait): Pass current_regcache to parse_register_dump and
4532         monitor_dump_regs.
4533         (monitor_fetch_register): Pass current_regcache to
4534         monitor_supply_register.
4535         (monitor_fetch_registers): Pass current_regcache to
4536         monitor_dump_regs.
4537         * monitor.h (struct monitor_ops): Add REGCACHE parameter to
4538         supply_register and dumpregs callbacks.
4539         (monitor_supply_register, monitor_dump_reg_block): Update
4540         prototypes.
4541         * dbug-rom.c (dbug_supply_register): Add REGCACHE parameter.  Pass
4542         it to monitor_supply_register.
4543         * dink32-rom.c (dink32_supply_register): Likewise.
4544         * ppcbug-rom.c (ppcbug_supply_register): Likewise.
4545         * m32r-rom.c (m32r_supply_register): Likewise.  Also, use REGCACHE
4546         instead of current_regcache.
4547
4548 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4549
4550         * i386-nto-tdep.c (i386nto_supply_gregset, i386nto_supply_fpregset):
4551         Add REGCACHE parameter.  Use it instead of current_regcache.
4552         (i386nto_supply_regset): Add REGCACHE parameter, pass it to
4553         i386nto_supply_gregset and i386nto_supply_fpregset.
4554         (i386nto_regset_fill): Add REGCACHE parameter; use it instead
4555         of current_regcache.
4556
4557         * nto-procfs.c (procfs_fetch_registers): Pass current_regcache to
4558         nto_supply_ helper functions.
4559         (procfs_store_registers): Pass current_regcache to nto_regset_fill.
4560
4561         * nto-tdep.c (nto_dummy_supply_regset): Add REGCACHE parameter.
4562
4563         * nto-tdep.h (struct nto_target_ops): Add REGCACHE parameter to
4564         supply_greget, supply_fpregset, supply_altregset, supply_regset,
4565         and regset_fill member function pointers.
4566         (nto_dummy_supply_regset): Adapt prototype.
4567
4568 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4569
4570         * shnbsd-tdep.c (shnbsd_supply_reg): Add REGCACHE parameter, use it
4571         instead of current_regcache.  Make REGS const.
4572         (shnbsd_fill_reg): Add REGCACHE parameter; replace current_regcache.
4573         * shnbsd-tdep.h (shnbsd_supply_reg, shnbsd_fill_reg): Update
4574         prototypes.
4575         * shnbsd-nat.c: Include "regcache.h".
4576         (shnbsd_fetch_inferior_registers): Pass current_regcache to
4577         shnbsd_supply_reg.
4578         (shnbsd_store_inferior_registers): Pass current_regcache to
4579         shnbsd_fill_reg.
4580         * Makefile.in (shbsd-nat.o): Update dependencies.
4581
4582 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4583
4584         * mips-linux-tdep.c (supply_32bit_reg): Add REGCACHE parameter.  Use it
4585         instead of current_regcache.
4586         (mips_supply_gregset): Likewise.  Pass REGCACHE to supply_32bit_reg.
4587         Make GREGSETP const, remove superfluous casts.
4588         (mips_fill_gregset): Add REGCACHE parameter; replace current_regcache.
4589         (mips_supply_fpregset): Likewise.  Make FPREGSETP const, remove 
4590         superfluous casts.
4591         (mips_fill_fpregset): Add REGCACHE parameter; replace current_regcache.
4592         (supply_64bit_reg): Likewise
4593         (mips64_supply_gregset): Likewise.  Pass REGCACHE to supply_64bit_reg.
4594         Make GREGSETP const, adapt casts accordingly.
4595         (mips64_fill_gregset): Add REGCACHE parameter; replace current_regcache.
4596         (mips64_supply_fpregset): Likewise.  Make FPREGSET const, adapt
4597         casts accordingly.
4598         (mips64_fill_fpregset): Add REGCACHE parameter; replace current_regcache.
4599         (fetch_core_registers): Pass current_regcache to mips{64}_(supply|fill)_
4600         helper routines.
4601         * mips-linux-tdep.h (mips_supply_gregset, mips_fill_gregset,
4602         mips_supply_fpregset, mips_fill_fpregset, mips64_supply_gregset,
4603         mips64_fill_gregset, mips64_supply_fpregset, mips64_fill_fpregset):
4604         Adapt prototypes.
4605         * mips-linux-nat.c: Include "regcache.h".
4606         (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset): Pass
4607         current_regcache to mips{64}_(supply|fill)_ helper routines.
4608         (mips64_linux_regsets_fetch_registers): Likewise.
4609         (mips64_linux_regsets_store_registers): Likewise.
4610
4611         * mipsnbsd-tdep.c (mipsnbsd_supply_reg, mipsnbsd_supply_fpreg): Add
4612         REGCACHE argument; replace current_regcache.  Make REGS const.
4613         (mipsnbds_fill_reg, mipsnbsd_fill_fpreg): Add REGCACHE argument;
4614         replace current_regcache.
4615         * mipsnbsd-tdep.h (ipsnbsd_supply_reg, mipsnbsd_supply_fpreg,
4616         mipsnbds_fill_reg, mipsnbsd_fill_fpreg): Adapt prototypes.
4617         * mipsnbsd-nat.c (mipsnbsd_fetch_inferior_registers,
4618         mipsnbsd_store_inferior_registers): Pass current_regcache to
4619         mipsnbsd_(supply|fill)_... helper routines.
4620
4621         * Makefile.in (mips-linux-nat.o): Update dependencies.
4622
4623 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4624
4625         * i387-tdep.c (i387_fill_fsave, i387_fill_fxsave): Remove.
4626         * i387-tdep.h (i387_fill_fsave, i387_fill_fxsave): Remove prototypes.
4627         * i368-linux-nat.c (supply_fpregset, supply_fpxregset): Replace
4628         i387_fill_fsave and i387_fill_fxsave calls by inline copies.
4629         * i386-nto-tdep.c (i386nto_regset_fill): Likewise.
4630         * i386gnu-nat.c (store_fpregs): Likewise.
4631         * i386v4-nat.c (fill_fpregset): Likewise.
4632         * go32-nat.c (store_register, go32_store_registers): Likewise.
4633
4634 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4635
4636         * cris-tdep.c (supply_gregset): Rename to ...
4637         (cris_supply_gregset): ... this.  Add REGCACHE parameter.  Use it
4638         instead of current_regcache.
4639         (fetch_core_registers): Update call.  Pass current_regcache.
4640
4641 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4642
4643         * arnmnbsd-nat.c (supply_gregset): Rename to ...
4644         (arm_supply_gregset): ... this.  Add REGCACHE parameter.
4645         Use it instead of current_regcache.
4646         (supply_fparegset): Rename to ...
4647         (arm_supply_fparegset): ... this.  Add REGCACHE parameter.
4648         Use it instead of current_regcache.
4649         (fetch_regs, fetch_fp_regs): Update calls.  Pass current_regcache.
4650         (fetch_core_registers, fetch_elfcore_registers): Likewise.
4651
4652 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4653
4654         * alpha-tdep.c (alpha_supply_int_regs, alpha_fill_int_regs,
4655         alpha_supply_fp_regs, alpha_fill_fp_regs): Add REGCACHE parameter,
4656         use it instead of current_regcache.
4657         * alpha-tdep.h (struct regcache): Add forward declaration.
4658         (alpha_supply_int_regs, alpha_fill_int_regs, alpha_supply_fp_regs,
4659         alpha_fill_fp_regs): Update prototypes.
4660
4661         * alpha-nat.c: (supply_gregset, fill_gregset, supply_fpregset,
4662         fill_fpregset): Pass current_regcache to alpha_supply/fill_ routines.
4663         * alpha-linux-nat.c: Include "regcache.h".
4664         (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset): Pass
4665         current_regcache to alpha_supply/fill_ routines.
4666
4667         * alphabsd-tdep.c: Include "regcache.h".
4668         (alphabsd_supply_reg, alphabsd_supply_fpreg): Add REGCACHE paramter,
4669         pass it to alpha_supply_ routines.  Make REGS const.
4670         (alphabsd_fill_reg, alphabsd_fill_fpreg): Add REGCACHE parameter,
4671         pass it to alpha_fill_ routines.
4672         * alphabsd-tdep.h (struct regcache): Add forward declaration.
4673         (alphabsd_supply_reg, alphabsd_fill_reg, alphabsd_supply_fpreg,
4674         alphabsd_fill_fpreg): Update prototypes.
4675
4676         * alphanbsd-nat.c (supply_gregset, fill_gregset, supply_fpregset,
4677         fill_fpregset, alphabsd_fetch_inferior_registers,
4678         alphabsd_store_inferior_registers): Pass current_regcache to
4679         alphabsd_supply/fill_ routines.
4680
4681         * Makefile.in (alpha-linux-nat.o, alphabsd-tdep.o): Update
4682         dependencies.
4683
4684 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4685
4686         * aix-thread.c (supply_gprs64, supply_reg32, supply_fprs,
4687         supply_sprs64, supply_sprs32): Add REGCACHE parameter, use it
4688         instead of current_regcache.
4689         (fetch_regs_user_thread, fetch_regs_kernel_thread): Add
4690         REGCACHE parameter, pass it to supply_ routines.
4691         (aix_thread_fetch_registers): Pass current_regcache to
4692         fetch_regs_user_thread and fetch_regs_kernel_thread.
4693
4694         (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs64, fill_sprs32):
4695         Add REGCACHE parameter, use it instead of current_regcache.
4696         Call regcache_valid_p instead of register_cached.
4697         (store_regs_user_thread, store_regs_kernel_thread): Likewise.
4698         Also, pass REGCACHE to fill_ routines.
4699         (aix_thread_store_registers): Pass current_regcache to
4700         store_regs_user_thread and store_regs_kernel_thread.
4701
4702 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4703
4704         * m32r-linux-nat.c (supply_gregset): Do not modify contents
4705         pointed to by GREGSETP.
4706
4707 2007-05-06  Ulrich Weigand  <uweigand@de.ibm.com>
4708
4709         * irix5-nat.c (fill_gregset): Use regcache_raw_collect instead
4710         of regcache_raw_read_signed.
4711         (fill_fpregset): Use regcache_raw_collect instead of
4712         regcache_raw_read.
4713
4714 2007-05-03  Kevin Buettner  <kevinb@redhat.com>
4715
4716         * mips-tdep.c (mips_eabi_push_dummy_call): When pushing floating
4717         point arguments, test explicitly for use of the EABI32 ABI
4718         instead of inferring this condition from tests on register
4719         sizes.
4720
4721 2007-05-03  Kevin Buettner  <kevinb@redhat.com>
4722
4723         * breakpoint.c (set_raw_breakpoint): Adjust breakpoint's address
4724         prior to allocating its location.
4725
4726 2007-05-02  Maciej W. Rozycki  <macro@mips.com>
4727
4728         * mips-tdep.c (mips_o32_push_dummy_call): Remove conditions
4729         based on mips_abi_regsize() whose result is known in advance.
4730         (mips_o64_push_dummy_call): Likewise.
4731
4732 2007-04-29  Ulrich Weigand  <uweigand@de.ibm.com>
4733
4734         * m68klinux-nat.c: Remove #ifndef USE_PROC_FS check.
4735         * m68k-tdep.c: Remove code within #ifdef USE_PROC_FS.
4736
4737         * mips-linux-nat.c: Include "gregset.h".
4738         (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset): Move
4739         from mips-linux-tdep.c.  Change parameter type to gdb_gregset_t.
4740         * mips-linux-tdep.c (supply_gregset, fill_gregset, supply_fpregset,
4741         fill_fpregset): Move to mips-linux-nat.c.
4742
4743         * Makefile.in (m68k-tdep.o, mips-linux-nat.o): Update dependencies.
4744
4745 2007-04-28  Ulrich Weigand  <uweigand@de.ibm.com>
4746
4747         * regcache.c (deprecated_read_register_gen): Remove, inline ...
4748         (read_register): ... here.
4749         (deprecated_write_register_gen): Remove, inline ...
4750         (write_register): ... here.
4751         * regcache.h (deprecated_read_register_gen): Remove prototype.
4752         (deprecated_write_register_gen): Likewise.
4753
4754         * remote-sim.c (gdbsim_store_register): Replace call to
4755         deprecated_read_register_gen with regcache_cooked_read.
4756         * target.c (debug_print_register): Replace calls to
4757         deprecated_read_register_gen and read_register with
4758         regcache_cooked_read.
4759
4760 2007-04-28  Ulrich Weigand  <uweigand@de.ibm.com>
4761
4762         * hpux-thread.c (hpux_thread_store_registers): Use
4763         regcache_raw_collect, not regcache_raw_read.
4764         * irix5-nat.c (fetch_core_registers): Use regcache_raw_supply,
4765         not regcache_raw_write.
4766
4767 2007-04-28  Ulrich Weigand  <uweigand@de.ibm.com>
4768
4769         * gdbarch.sh: Remove deprecated_register_byte.
4770         * gdbarch.c, gdbarch.h: Regenerate.
4771         * arch-utils.h (generic_register_size, generic_register_byte): Remove.
4772         * arch-utils.c (generic_register_size, generic_register_byte): Remove.
4773
4774         * regcache.h (regcache_valid_p): Make REGCACHE parameter const.
4775         * regcache.c (regcache_valid_p): Allow to query cooked registers in
4776         read-only register caches.  Make REGCACHE parameter const.
4777         (regcache_dump): Do not check DEPRECATED_REGISTER_BYTE.
4778
4779         * mi/mi-main.c (old_regs): Remove.
4780         (mi_setup_architecture_data, _initialize_mi_main): Remove.
4781         (register_changed_p): Reimplement to compare two register caches.
4782         (mi_cmd_data_list_changed_registers): Update caller.
4783         * mi/mi-main.h (mi_setup_architecture_data): Remove.
4784         * mi/mi-interp.c (mi_interpreter_init): Do not call
4785         mi_setup_architecture_data.
4786
4787 2007-04-28  Ulrich Weigand  <uweigand@de.ibm.com>
4788
4789         * alpha-nat.c (ALPHA_REGSET_BASE, ALPHA_REGSET_UNIQUE): Do not define,
4790         inline definition at the places the macros are used.
4791         * alpha-linux-nat.c (ALPHA_REGSET_BASE, ALPHA_REGSET_UNIQUE): Likewise.
4792
4793 2007-04-28  Ulrich Weigand  <uweigand@de.ibm.com>
4794
4795         * rs6000-aix-tdep.c: Include "regcache.h", "regset.h", and
4796         "gdb_string.h".
4797         (rs6000_aix32_reg_offsets, rs6000_aix64_reg_offsets): New variables.
4798         (rs6000_aix_supply_regset, rs6000_aix_collect_regset): New functions.
4799         (rs6000_aix32_regset, rs6000_aix64_regset): New variables.
4800         (rs6000_aix_regset_from_core_section): New function.
4801         (rs6000_aix_init_osabi): Register it.
4802         (_initialize_rs6000_aix_tdep): Register GDB_OSABI_AIX osabi and
4803         sniffer for bfd_arch_powerpc as well as bfd_arch_rs6000. 
4804         * rs6000-nat.c (CoreRegs): Do not define type.
4805         (fetch_core_registers, rs6000_core_fns): Remove.
4806         (_initialize_core_rs6000): Do not register it.  Rename to ...
4807         (_initialize_rs6000_nat): ... this.
4808         * Makefile.in (rs6000-aix-tdep.o): Update dependencies.
4809
4810 2007-04-27  Kevin Buettner  <kevinb@redhat.com>
4811
4812         * dwarf2expr.c (unsigned_address_type): Add forward declaration.
4813         (dwarf2_read_address): Sign extend return address as required by
4814         target architecture.
4815
4816 2007-04-27  Kevin Buettner  <kevinb@redhat.com>
4817
4818         * solib-frv.c (lm_base): Bail out if the main executable has
4819         not been relocated.
4820
4821 2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
4822
4823         * alpha-linux-tdep.c (alpha_linux_supply_fpregset): Correct location
4824         of FPCR register in fpregset.
4825
4826 2007-04-27  Maciej W. Rozycki  <macro@mips.com>
4827
4828         * Makefile.in (gdbtk-wrapper.o): Update dependencies.
4829         (gdbtk-varobj.o, gdbtk-cmds.o, gdbtk-stack.o): Likewise.
4830
4831 2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
4832
4833         * config/rs6000/nm-rs6000.h (CHILD_SPECIAL_WAITSTATUS): Remove.
4834         * rs6000-nat.c (rs6000_wait): New function.
4835         (_initialize_core_rs6000): Install it as to_wait target method.
4836         * target.c (store_waitstatus): Don't check CHILD_SPECIAL_WAITSTATUS.
4837
4838 2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
4839
4840         * config/rs6000/nm-rs6000.h (TARGET_CREATE_INFERIOR_HOOK): Remove.
4841         * fork-child.c (fork_inferior): Don't call TARGET_CREATE_INFERIOR_HOOK.
4842         * rs6000-nat.c (super_create_inferior): New variable.
4843         (rs6000_create_inferior): Make static.  Adapt argument list.  Call
4844         original version of create_inferior via super_create_inferior.
4845         (_initialize_core_rs6000): Install to_create_inferior target method.
4846
4847 2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
4848
4849         * aix-thread.c (aix_thread_xfer_memory): Replace by ...
4850         (aix_thread_xfer_partial): ... this.
4851         (init_aix_thread_ops): Install to_xfer_partial instead
4852         of deprecated_xfer_memory target method.
4853
4854         * config/powerpc/aix.mh (NATDEPFILES): Remove infptrace.o
4855         and inftarg.o, add inf-ptrace.o.
4856         * config/rs6000/nm-rs6000.h (FETCH_INFERIOR_REGISTERS,
4857         CHILD_XFER_MEMORY, KERNEL_U_SIZE, kernel_u_size): Remove.
4858         * rs6000-nat.c: Include "inf-ptrace.h" and "gdb_stdint.h".
4859         (fetch_inferior_registers): Rename to ...
4860         (rs6000_fetch_inferior_registers): ... this.  Make static.
4861         (store_inferior_registers): Rename to ...
4862         (rs6000_store_inferior_registers): ... this.  Make static.
4863         (read_word, child_xfer_memory): Remove.
4864         (rs6000_xfer_partial): New function.
4865         (kernel_u_size): Remove.
4866         (_initialize_core_rs6000): Add inf_ptrace-based target.
4867         * Makefile.in (rs6000-nat.o): Update dependencies.
4868
4869 2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
4870
4871         * inf-ptrace.c: Include "gdb_stdint.h".
4872         (inf_ptrace_xfer_partial): Use "uintptr_t" instead of "long" as 
4873         intermediate type when casting CORE_ADDR to PTRACE_TYPE_ARG3.
4874         (inf_ptrace_fetch_register): Add intermediate cast to "uintptr_t"
4875         before casting CORE_ADDR to PTRACE_TYPE_ARG3.
4876         (inf_ptrace_store_register): Likewise.
4877         * Makefile.in (inf-ptrace.o): Update dependencies.
4878
4879 2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
4880
4881         * configure.host (rs6000-*-*): Merge with powerpc-*-aix* rules.
4882         * configure.tgt (rs6000-*-*): Likewise.
4883         * config/rs6000/aix4.mh: Delete file.
4884         * config/rs6000/aix4.mt: Delete file.
4885         * config/rs6000/rs6000.mh: Delete file.
4886         * config/rs6000/rs6000.mt: Delete file.
4887
4888         * config/powerpc/nm-aix.h: Delete file.
4889         * config/powerpc/aix.mh (NAT_FILE): Set to config/rs6000/nm-rs6000.h.
4890
4891 2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
4892
4893         * aix-thread.c (fill_sprs32): Change argument types to "uint32_t *".
4894         Remove obsolete part of comment.
4895         (store_regs_user_thread): Use uint32_t temporaries when calling
4896         fill_sprs32.
4897         (store_regs_kernel_thread): Likewise.  Add assertion to verify
4898         correct size of struct ptsprs members.
4899         (aix_thread_xfer_memory): Fix type of myaddr.
4900         (aix_thread_extra_thread_info): Fix compiler warning.
4901         * rs6000-nat.c (rs6000_ptrace64): Change type of buf to "void *".
4902         (fetch_register, store_register): Adapt callers.
4903
4904 2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
4905
4906         * vec.h (vec_free): Rename to vec_free_.  Adapt users.
4907
4908 2007-04-25  Ulrich Weigand  <uweigand@de.ibm.com>
4909
4910         * alpha-linux-tdep.c: Include "gdb_string.h", "regset.h",
4911         and "regcache.h".
4912         (alpha_linux_supply_gregset, alpha_linux_supply_fpregset): New.
4913         (alpha_linux_gregset, alpha_linux_fpregset): New variables.
4914         (alpha_linux_regset_from_core_section): New function.
4915         (alpha_linux_init_abi): Install it.
4916         * alpha-linux-nat.c: Do not include "gdbcore.h".  Include
4917         "alpha-tdep.h", <sys/ptrace.h>, <alpha/ptrace.h>,
4918         <sys/procfs.h>, and "gregset.h".
4919         (ALPHA_REGSET_BASE, ALPHA_REGSET_UNIQUE, ALPHA_UNIQUE_PTRACE_ADDR):
4920         Move from config/alpha/nm-linux.h.
4921         (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset): Copy
4922         from alpha-nat.c.
4923         (alpha_linux_register_u_offset): Inline register_addr from alpha-nat.c.
4924         * alpha-nat.c: Remove #ifdef __linux__ section.
4925         (fetch_elf_core_registers, alpha_elf_core_fns): Remove.
4926         (_initialize_core_alpha): Do not register alpha_elf_core_fns.
4927         (ALPHA_UNIQUE_PTRACE_ADDR, ALPHA_REGSET_UNIQUE): Define unconditionally.
4928         (ALPHA_REGSET_BASE): Move from config/alpha/nm-osf.h.
4929         * config/alpha/alpha-linux.mh (NAT_FILE): Set to config/nm-linux.h.
4930         (NATDEPFILES): Remove alpha-nat.o.
4931         * config/alpha/nm-linux.h: Delete file.
4932         * config/alpha/nm-osf.h (ALPHA_REGSET_BASE): Move to alpha-nat.c.
4933         * Makefile.in (alpha-linux-nat.o): Update dependencies.
4934         (alpha-linux-tdep.o): Likewise.
4935
4936 2007-04-25  Ulrich Weigand  <uweigand@de.ibm.com>
4937
4938         * mips-linux-nat.c: No longer include "gdbcore.h".
4939         (mips_linux_register_addr): Move from mips-linux-tdep.c.
4940         (mips64_linux_register_addr): Likewise.
4941         (mips_linux_register_u_offset): Call mips_linux_register_addr or
4942         mips64_linux_register_addr instead of register_addr.
4943         * mips-linux-tdep.c (mips_linux_register_addr,
4944         mips64_linux_register_addr): Move to mips-linux-nat.c.
4945         (register_addr): Remove.
4946         (register_addr_data, init_register_addr_data): Remove.
4947         (_initialize_mips_linux_tdep): Do not initialize register_addr_data.
4948         (set_mips_linux_register_addr): Remove.
4949         (mips_linux_init_abi): Do not call set_mips_linux_register_addr.
4950         * Makefile.in (mips-linux-nat.o): Update dependencies.
4951
4952 2007-04-25  Ulrich Weigand  <uweigand@de.ibm.com>
4953
4954         * linux-nat.c (linux_register_u_offset): Remove.
4955         (linux_target_install_ops): New function.
4956         (linux_target): Use it.
4957         (linux_trad_target): New function.
4958         * linux-nat.h (linux_trad_target): Declare.
4959
4960         * alpha-linux-nat.c: Include "gdbcore.h".
4961         (alpha_linux_register_u_offset): New function.
4962         (_initialize_alpha_linux_nat): Use linux_trad_target.
4963
4964         * mips-linux-nat.c: Include "gdbcore.h".
4965         (mips_linux_register_u_offset): New function.
4966         (_initialize_mips_linux_nat): Use linux_trad_target.
4967
4968         * config/arm/linux.mh (NAT_FILE): Set to config/nm-linux.h.
4969         * config/arm/nm-linux.h: Delete file.
4970
4971         * config/i386/nm-linux64.h (FETCH_INFERIOR_REGISTERS): Remove.
4972         * config/i386/nm-linux.h (FETCH_INFERIOR_REGISTERS): Remove.
4973
4974         * config/ia64/linux.mh (NAT_FILE): Set to config/nm-linux.h.
4975         * config/ia64/nm-linux.h: Delete file.
4976
4977         * config/m32r/linux.mh (NAT_FILE): Set to config/nm-linux.h.
4978         * config/m32r/nm-linux.h: Delete file.
4979
4980         * config/m68k/linux.mh (NAT_FILE): Set to config/nm-linux.h.
4981         * config/m68k/nm-linux.h: Delete file.
4982
4983         * config/pa/linux.mh (NAT_FILE): Set to config/nm-linux.h.
4984         * config/pa/nm-linux.h: Delete file.
4985
4986         * config/powerpc/linux.mh (NAT_FILE): Set to config/nm-linux.h.
4987         * config/powerpc/ppc64-linux.mh (NAT_FILE): Likewise.
4988         * config/powerpc/nm-linux.h: Delete file.
4989
4990         * config/s390/s390.mh (NAT_FILE): Set to config/nm-linux.h.
4991         * config/s390/nm-linux.h: Delete file.
4992
4993         * config/sparc/linux.mh (NAT_FILE): Set to config/nm-linux.h.
4994         * config/sparc/linux64.mh (NAT_FILE): Likewise.
4995         * config/sparc/nm-linux.h: Delete file.
4996
4997         * Makefile.in (alpha-linux-nat.o): Update dependencies.
4998         (mips-linux-nat.o): Likewise.
4999
5000 2007-04-25  Ulrich Weigand  <uweigand@de.ibm.com>
5001
5002         * core-aout.c: Delete file.
5003         * Makefile.in (ALLDEPFILES): Remove core-aout.c.
5004         (core-aout.o): Delete rule.
5005         * gdbcore.h (kernel_u_addr, KERNEL_U_ADDR): Remove.
5006
5007         * config/alpha/nm-linux.h (U_REGS_OFFSET): Remove.
5008
5009         * arm-linux-nat.c (arm_linux_kernel_u_size): Remove.
5010         * config/arm/nm-linux.h (U_REGS_OFFSET, KERNEL_U_SIZE,
5011         KERNEL_U_ADDR): Remove.
5012
5013         * i386-linux-nat.c (register_u_addr, kernel_u_size): Remove.
5014         (cannot_fetch_register, cannot_store_register): Remove.
5015         (fetch_register): Inline cannot_fetch_register and register_addr.
5016         (store_register): Inline cannot_store_register and register_addr.
5017         * config/i386/linux.mh (NATDEPFILES): Remove core-aout.o.
5018         * config/i386/nm-linux.h (KERNEL_U_SIZE, KERNEL_U_ADDR,
5019         REGISTER_U_ADDR, CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER):
5020         Remove.
5021
5022         * m68klinux-nat.c (m68k_linux_register_u_addr, kernel_u_size): Remove.
5023         (fetch_register): Inline register_addr.
5024         (store_register): Inline register_addr.
5025         * config/m68k/linux.mh (NATDEPFILES): Remove core-aout.o.
5026         * config/m68k/nm-linux.h (KERNEL_U_SIZE, KERNEL_U_ADDR,
5027         U_REGS_OFFSET, REGISTER_U_ADDR): Remove.
5028
5029         * config/mips/nm-irix5.h (REGISTER_U_ADDR): Remove.
5030         * config/mips/nm-linux.h (KERNEL_U_SIZE, U_REGS_OFFSET,
5031         REGISTER_U_ADDR): Remove.
5032
5033         * hppa-linux-nat.c (register_addr): Rename to ...
5034         (hppa_linux_register_addr): ... this.  Make static.
5035         (fetch_register, store_register): Adapt callers.
5036         * config/pa/nm-linux.h (U_REGS_OFFSET): Remove.
5037
5038         * ppc-linux-nat.c (kernel_u_size): Remove.
5039         * config/powerpc/nm-linux.h (KERNEL_U_SIZE, KERNEL_U_ADDR): Remove.
5040
5041         * vax-nat.c (vax_kernel_u_addr, vax_register_u_addr): Make static.
5042         * config/vax/vax.mh (NATDEPFILES): Remove core-aout.o.
5043         (NAT_FILE): Remove.
5044         * config/vax/nm-vax.h: Delete file.
5045
5046 2007-04-20  Mark Shinwell  <shinwell@codesourcery.com>
5047
5048         * MAINTAINERS (Write After Approval): Add myself.
5049
5050 2007-04-20  Mark Shinwell  <shinwell@codesourcery.com>
5051
5052         * Makefile.in: Adjust dependencies of m68klinux-tdep.c.
5053         * m68klinux-tdep.c (m68k_uclinux_sigcontext_reg_offset): New.
5054         (m68k_linux_sigcontext_reg_offset): Fix typo.
5055         (target_is_uclinux): New.
5056         (m68k_linux_inferior_created): New.
5057         (m68k_linux_get_sigtramp_info):  Check for uClinux or
5058         normal Linux.  Use m68k_uclinux_sigcontext_reg_offset for
5059         uClinux.
5060         (_initialize_m68k_linux_tdep): Register
5061         m68k_linux_inferior_created.
5062
5063 2007-04-19  Pedro Alves  <pedro_alves@portugalmail.pt>
5064
5065         * win32-nat.c (win32_detach): Remove delete_command call.
5066         Resume inferior with win32_resume instead of win32_continue.
5067
5068 2007-04-19  Jerome Guitton  <guitton@adacore.com>
5069
5070         * ser-mingw.c (fd_is_file): New function.
5071         (file_select_thread): New function.
5072         (ser_console_wait_handle): Add special handling for files.
5073
5074 2007-04-18  Denis Pilat  <denis.pilat@st.com>
5075
5076         * dwarf2read.c (read_subrange_type): Use DW_ATE_signed default type
5077         when missing from DW_TAG_subrange_type.  Remove the handling of null
5078         return from die_type.
5079
5080 2007-04-18  Maciej W. Rozycki  <macro@mips.com>
5081
5082         * mips-tdep.c (mips_eabi_push_dummy_call): Revert the last
5083         change to rearrange some brackets.
5084         (mips_n32n64_push_dummy_call): Likewise.
5085         (mips_o32_push_dummy_call): Likewise.
5086         (mips_o64_push_dummy_call): Likewise.
5087
5088 2007-04-18  Denis Pilat  <denis.pilat@st.com>
5089
5090         * infcmd.c (post_create_inferior): Start with a call to 
5091         target_terminal_ours.
5092
5093 2007-04-17  Maciej W. Rozycki  <macro@mips.com>
5094
5095         * mips-tdep.c (mips_eabi_push_dummy_call): Rearrange some
5096         brackets.
5097         (mips_n32n64_push_dummy_call): Likewise.  Reformat some
5098         expressions.
5099         (mips_o32_push_dummy_call): Likewise.
5100         (mips_o64_push_dummy_call): Likewise.
5101
5102 2007-04-17  Maciej W. Rozycki  <macro@mips.com>
5103
5104         * mips-tdep.c (mips_n32n64_push_dummy_call): Fix a typo in a
5105         comment.
5106
5107 2007-04-17  Maciej W. Rozycki  <macro@mips.com>
5108
5109         * mips-tdep.c (mips_n32n64_push_dummy_call): Fix a typo in a
5110         comment.
5111         (mips_o32_push_dummy_call): Likewise.
5112
5113 2007-04-17  Andreas Schwab  <schwab@suse.de>
5114
5115         * symtab.c (skip_prologue_using_sal): Allow the end of the prologue
5116         sal to be bigger than the end of the function.
5117
5118 2007-04-17  Maciej W. Rozycki  <macro@mips.com>
5119             Nigel Stephens  <nigel@mips.com>
5120
5121         * mips-tdep.c (mips_o32_push_dummy_call): Take account of
5122         argument alignment requirements when calculating stack space
5123         required.  When aligning an arg register to eight bytes
5124         boundary, align stack_offset too.  Write floating-point
5125         arguments to the appropriate integer register if need go there.
5126         (mips_o64_push_dummy_call): Likewise.
5127
5128 2007-04-14  Ulrich Weigand  <uweigand@de.ibm.com>
5129
5130         * gdbarch.sh (software_single_step): Remove "insert_breakpoints_p" and
5131         "sig" arguments, add "regcache" argument.
5132         * gdbarch.c, gdbarch.h: Regenerate.
5133
5134         * infrun.c (resume): Update SOFTWARE_SINGLE_STEP call arguments.
5135         (handle_inferior_event): Call remove_single_step_breakpoints directly
5136         instead of calling SOFTWARE_SINGLE_STEP to remove breakpoints.
5137
5138         * alpha-tdep.c (alpha_software_single_step): Update argument list.
5139         Remove handling of !insert_breakpoints_p case.
5140         * arm-tdep.c (arm_software_single_step): Likewise.
5141         * cris-tdep.c (cris_software_single_step): Likewise.
5142         * mips-tdep.c (mips_software_single_step): Likewise.
5143         * rs6000-tdep.c (rs6000_software_single_step): Likewise.
5144         * sparc-tdep.c (sparc_software_single_step): Likewise.
5145         * spu-tdep.c (spu_software_single_step): Likewise.
5146
5147         * alpha-tdep.h (alpha_software_single_step): Update prototype.
5148         * mips-tdep.h (mips_software_single_step): Likewise.
5149         * rs6000-tdep.h (rs6000_software_single_step): Likewise.
5150         * sparc-tdep.h (sparc_software_single_step): Likewise.
5151
5152 2007-04-14  Ulrich Weigand  <uweigand@de.ibm.com>
5153
5154         * alpha-tdep.c (alpha_software_single_step): Do not call write_pc
5155         when removing single-step breakpoints.
5156
5157 2007-04-14  Vladimir Prus  <vladimir@codesourcery.com>
5158
5159         * varobj.h (varobj_set_frozen): New
5160         (varobj_get_frozen): New.
5161         (varobj_update): New parameter explicit.
5162         * varobj.c (struct varobj): New fields frozen
5163         and not_fetched.
5164         (varobj_set_frozen, varobj_get_frozen): New.
5165         (install_new_value): Don't fetch values for 
5166         frozen variable object, or children thereof.  Allow
5167         a frozen variable object to have non-fetched value.
5168         (varobj_update): Allow updating child variables.
5169         Don't traverse frozen children.
5170         (new_variable): Initialize the frozen field.
5171         (c_value_of_variable): Return NULL for frozen
5172         variable without any value yet. 
5173         * mi/mi-cmd-var.c (varobj_update_one): New parameter
5174         'explicit'.
5175         (mi_cmd_var_create): Output the 'frozen' field,
5176         as soon as testsuite is adjusted to expect that field.
5177         (mi_cmd_var_set_frozen): New.
5178         (mi_cmd_var_update): Pass the 'explicit' parameter to
5179         varobj_update_one.
5180         * mi/mi-cmds.c (mi_cmds): Register '-var-set-frozen'.
5181         * mi/mi-cmds.h (mi_cmd_var_set_frozen): Declare.
5182         
5183 2007-04-13  Paul Brook  <paul@codesourcery.com>
5184
5185         * target-descriptions.c (tdesc_named_type): Add ieee_single and
5186         ieee_double.
5187         * doc/gdb.texinfo: Document ieee_single and ieee_double target types.
5188
5189 2007-04-13  Daniel Jacobowitz  <dan@codesourcery.com>
5190
5191         * mips-mdebug-tdep.c, mips-mdebug-tdep.h, ocd.c, ocd.h, ppc-bdm.c,
5192         remote-e7000.c, remote-hms.c, remote-utils.c, remote-utils.h,
5193         scm-exp.c, scm-lang.c, scm-lang.h, scm-tags.h, scm-valprint.c,
5194         ser-e7kpc.c, sh3-rom.c, stop-gdb.c: Delete.
5195         * Makefile.in: Remove references to deleted files.
5196         * README: Do not mention deleted ROM monitor interfaces.
5197         * defs.h (enum language): Delete language_scm.
5198         * expprint.c (print_subexp_standard): Do not handle OP_EXPRSTRING.
5199         (dump_subexp_body_standard): Likewise.
5200         * parse.c (operator_length_standard): Likewise.
5201         * expression.h (enum exp_opcode): Delete OP_EXPRSTRING.
5202         * remote-mips.c: Do not include remote-utils.h.
5203         * remote-sim.c: Likewise.  Use remote_debug instead of sr_get_debug
5204         throughout.
5205         * value.c: Do not include scm-lang.h.
5206         (unpack_long): Delete scm_unpack call.
5207         * config/h8300/h8300.mt, config/mips/embed.mt,
5208         config/powerpc/ppc-eabi.mt, config/powerpc/ppc-sim.mt,
5209         config/sh/embed.mt, config/sh/linux.mt: Remove references to
5210         deleted files.
5211         * NEWS: Mention removed files.
5212
5213 2007-04-13  Daniel Jacobowitz  <dan@codesourcery.com>
5214
5215         * symfile.c (add_psymbol_with_dem_name_to_list): Remove.
5216         * symfile.h (add_psymbol_with_dem_name_to_list): Remove prototype.
5217
5218 2007-04-13  Daniel Jacobowitz  <dan@codesourcery.com>
5219
5220         * NEWS: Mention removal of HP aCC support.
5221
5222 2007-04-13  Daniel Jacobowitz  <dan@codesourcery.com>
5223
5224         * solib-svr4.c (IGNORE_FIRST_LINK_MAP_ENTRY): Do not ignore the
5225         first entry for static executables.
5226         (breakpoint_addr): Delete unused variable.
5227         (elf_locate_base): Search for _r_debug in static executables.
5228         (enable_break): Do not set breakpoint_addr.  Scan solib_break_names
5229         also.
5230
5231 2007-04-13  Daniel Jacobowitz  <dan@codesourcery.com>
5232
5233         * breakpoint.c (update_breakpoints_after_exec, print_it_typical)
5234         (bpstat_what, print_one_breakpoint, allocate_bp_location)
5235         (mention): Remove bp_through_sigtramp support.
5236         * breakpoint.h (enum bptype): Remove bp_through_sigtramp.
5237
5238 2007-04-13  Daniel Jacobowitz  <dan@codesourcery.com>
5239
5240         * breakpoint.c (bpstat_what): Give step-resume higher priority than
5241         shlib events.
5242
5243 2007-04-13  Daniel Jacobowitz  <dan@codesourcery.com>
5244
5245         * infrun.c: Doc fixes.
5246         (handle_inferior_event): Clarify debug message.
5247         (insert_step_resume_breakpoint_at_sal): Print a debug message.
5248
5249 2007-04-12  Ulrich Weigand  <uweigand@de.ibm.com>
5250
5251         * configure.tgt (arm-*-nto*, sh-*-nto*): Remove.
5252
5253 2007-04-12  Ulrich Weigand  <uweigand@de.ibm.com>
5254
5255         * config/m68k/tm-monitor.h: Delete file.
5256         * config/m68k/monitor.mt (DEPRECATED_TM_FILE): Remove.
5257         * m68k-tdep.c (m68k_gdbarch_init): set_gdbarch_decr_pc_after_break
5258         call moved to ...
5259         * m68kbsd-tdep.c (m68kbsd_init_abi): ... here and ...
5260         * m68klinux-tdep.c (m68k_linux_init_abi): ... here.
5261
5262 2007-04-12  Luis Machado  <luisgpm@br.ibm.com>
5263
5264         * gdbarch.sh (software_single_step): Change the return type
5265         from void to int and reformatted some comments to <= 80
5266         columns.
5267         * gdbarch.c, gdbarch.h: Regenerated.
5268         * alpha-tdep.c (alpha_software_single_step): Likewise.
5269         * alpha-tdep.h (alpha_software_single_step): Likewise.
5270         * arm-tdep.c (arm_software_single_step): Likewise.
5271         * cris-tdep.c (cris_software_single_step): Likewise.
5272         * mips-tdep.c (mips_software_single_step): Likewise.
5273         * mips-tdep.h (mips_software_single_step): Likewise.
5274         * rs6000-tdep.c (rs6000_software_single_step): Likewise.
5275         * rs6000-tdep.h (rs6000_software_single_step): Likewise.
5276         * sparc-tdep.c (sparc_software_single_step): Likewise.
5277         * sparc-tdep.h (sparc_software_single_step): Likewise.
5278         * spu-tdep.c (spu_software_single_step): Likewise.
5279         * infrun.c (resume): Check the return value from SOFTWARE_SINGLE_STEP
5280         and act accordingly.
5281
5282 2007-04-11  Steve Ellcey  <sje@cup.hp.com>
5283
5284         * configure.ac (build_warnings): Add -Wno-char-subscripts.
5285         * configure: Regenerate.
5286         * doc/gdbint.texinfo (warning flags): Add -Wno-char-subscripts.
5287
5288 2007-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
5289
5290         * libunwind-frame.c (LIBUNWIND_SO): Use major version number for `.so'.
5291
5292 2007-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
5293
5294         * gdbtypes.h (TYPE_FLAG_STUB_SUPPORTED, TYPE_STUB_SUPPORTED): New
5295         macros.
5296         (TYPE_IS_OPAQUE): Empty vs. opaque structures are now
5297         distinct on the TYPE_STUB_SUPPORTED debug targets.
5298         * dwarf2read.c (read_structure_type): Set TYPE_FLAG_STUB_SUPPORTED.
5299
5300 2007-04-11  Joel Brobecker  <brobecker@adacore.com>
5301
5302         * sparc-tdep.c (X_RS2): New macro.
5303         (sparc_skip_stack_check): New function.
5304         (sparc_analyze_prologue): Adjust PC past stack probing
5305         sequence if necessary.
5306
5307 2007-04-10  Andreas Schwab  <schwab@suse.de>
5308
5309         * rs6000-tdep.c (rs6000_dwarf2_reg_to_regnum): Decode 64 as CR
5310         register.
5311
5312 2007-04-10  Daniel Jacobowitz  <dan@codesourcery.com>
5313
5314         * breakpoint.c (gdb_breakpoint_query): Really return an
5315         enum gdb_rc.
5316         (gdb_breakpoint): Likewise.
5317         * thread.c (gdb_list_thread_ids): Likewise.
5318         (gdb_thread_select): Likewise.
5319         * mi/mi-main.c (mi_cmd_thread_select): Expect an enum gdb_rc.
5320         (mi_cmd_thread_list_ids): Remove bogus initialization.
5321
5322 2007-04-10  Daniel Jacobowitz  <dan@codesourcery.com>
5323
5324         * Makefile.in (SFILES): Remove hpacc-abi.c.
5325         (COMMON_OBS): Remove hpacc-abi.o.
5326         (ALLDEPFILES): Remove hpread.c and $(HPREAD_SOURCE).
5327         (hpacc-abi.o, hpread.o): Delete rules.
5328         * somread.c: Delete extern declarations from hpread.c.
5329         (som_symfile_read): Do not call do_pxdb or hpread_build_psymtabs.
5330         (som_symfile_finish): Do not call hpread_symfile_finish.
5331         (som_symfile_init): Do not call hpread_symfile_init.
5332         * config/pa/hppa64.mt (TDEPFILES): Remove hpread.o.
5333         * config/pa/hppahpux.mt (TDEPFILES): Likewise.
5334         * hpacc-abi.c, hpread.c: Deleted.
5335
5336 2007-04-10  Daniel Jacobowitz  <dan@codesourcery.com>
5337
5338         * solib-svr4.c (enable_break): Simplify return value.
5339         (svr4_solib_create_inferior_hook): Do not warn if enable_break fails.
5340
5341 2007-04-10  Andreas Schwab  <schwab@suse.de>
5342
5343         * solib-svr4.h (struct link_map_offsets): Remove l_addr_size,
5344         l_ld_size, l_next_size, l_prev_size, l_name_size.
5345
5346         * solib-svr4.c (LM_ADDR_FROM_LINK_MAP): Use extract_typed_address
5347         to extract addresses from link map.
5348         (LM_DYNAMIC_FROM_LINK_MAP): Likewise.
5349         (LM_NEXT): Likewise.
5350         (LM_NAME): Likewise.
5351         (IGNORE_FIRST_LINK_MAP_ENTRY): Likewise.
5352         (elf_locate_base): Likewise.
5353         (open_symbol_file_object): Likewise.
5354         (svr4_fetch_objfile_link_map): Likewise.
5355         (SOLIB_EXTRACT_ADDRESS): Remove unused macro.
5356         (HAS_LM_DYNAMIC_FROM_LINK_MAP): Test l_ld_offset instead of
5357         l_ld_size.
5358         (svr4_ilp32_fetch_link_map_offsets): Don't set removed members.
5359         (svr4_lp64_fetch_link_map_offsets): Likewise.
5360
5361         * solib-legacy.c (legacy_svr4_fetch_link_map_offsets): Don't set
5362         removed members.  Set l_ld_offset to -1 if not present.
5363
5364 2007-04-08  Vladimir Prus  <vladimir@codesourcery.com>
5365         
5366         Pass stderr of program run with "target remote |"
5367         via gdb_stderr.
5368         * serial.c (serial_open): Set error_fd to -1.
5369         * serial.h (struct serial): New field error_fd.
5370         (struct serial_opts): New field avail.
5371         * ser-pipe.c (pipe_open): Create another pair
5372         of sockets.  Pass stderr to gdb.
5373         * ser-mingw.c (pipe_windows_open): Pass
5374         PEX_STDERR_TO_PIPE to pex_run.  Initialize
5375         sd->error_fd.
5376         (pipe_avail): New.
5377         (_initialize_ser_windows): Hook pipe_avail.
5378         * ser-base.c (generic_readchar): Check if there's
5379         anything in stderr channel and route that to gdb_stderr.
5380
5381 2007-04-03  Pedro Alves  <pedro_alves@portugalmail.pt>
5382
5383         * dbxread.c (read_ofile_symtab): Move current_objfile
5384         clearing to after end_stabs.
5385
5386 2007-04-01  Andreas Schwab  <schwab@suse.de>
5387
5388         * rs6000-tdep.c (rs6000_convert_from_func_ptr_addr): Use parameter
5389         gdbarch instead of current_gdbarch.
5390
5391 2007-04-01  Vladimir Prus  <vladimir@codesourcery.com>
5392
5393         * varobj.c (varobj_create): Keep varobj value
5394         NULL when evaluating the type.
5395         
5396 2007-03-31  Pedro Alves  <pedro_alves@portugalmail.pt>
5397
5398         * NEWS: Mention new Windows CE support.
5399
5400 2007-03-30  Pedro Alves  <pedro_alves@portugalmail.pt>
5401
5402         * configure.tgt: Move mips*-*-pe and sh*-*-pe to 
5403         the obsoletion stanza.
5404         * NEWS: Mention deleted targets.
5405
5406         * config/sh/tm-wince.h: Remove.
5407         * config/sh/wince.mt: Remove.
5408         * config/mips/tm-wince.h: Remove.
5409         * config/mips/wince.mt: Remove.
5410
5411         * wince.c: Remove.
5412         * wince-stub.c: Remove.
5413         * wince-stub.h: Remove.
5414         * Makefile.in (wince.o): Remove rule.
5415         (wince-stub.o): Likewise.
5416
5417         * mips-tdep.c (mips_next_pc): Make static.
5418         * mips-tdep.h (mips_next_pc): Remove declaration.
5419         * arm-tdep.c (arm_pc_is_thumb): Make static.
5420         (thumb_get_next_pc): Likewise.
5421         (arm_get_next_pc): Likewise.
5422         * arm-tdep.h (arm_pc_is_thumb_dummy): Remove declaration.
5423         (arm_pc_is_thumb): Likewise.
5424         (thumb_get_next_pc): Likewise.
5425         (arm_get_next_pc): Likewise.
5426
5427 2007-03-30  Daniel Jacobowitz  <dan@codesourcery.com>
5428
5429         * MAINTAINERS: Remove d10v entry.
5430         * Makefile.in (SFILES): Remove dwarfread.c.
5431         (COMMON_OBS): Remove dwarfread.o.
5432         (gdb_sim_d10v_h, abug-rom.o, cpu32bug-rom.o, d10v-tdep.o, dwarfread.o)
5433         (remote-est.o, rom68k-rom.o): Delete.
5434         * NEWS: Mention removal of d10v, target abug, target cpu32bug,
5435         target est, target rom68k, and DWARF 1.
5436         * configure.tgt: Mark d10v as removed.
5437         * dwarf2read.c: Doc update.
5438         * elfread.c (struct elfinfo): Remove dboffset, dbsize, lnoffset,
5439         and lnsize.
5440         (elf_locate_sections): Do not set them.
5441         (elf_symfile_read): Do not call dwarf_build_psymtabs.
5442         * symfile.h (dwarf_build_psymtabs): Delete prototype.
5443         * config/m68k/monitor.mt (TDEPFILES): Prune.
5444         * abug-rom.c, cpu32bug-rom.c, d10v-tdep.c, dwarfread.c,
5445         remote-est.c, rom68k-rom.c, config/d10v/d10v.mt: Delete.
5446
5447 2007-03-30  Daniel Jacobowitz  <dan@codesourcery.com>
5448
5449         * doublest.c (convert_floatformat_to_doublest): Use
5450         floatformat_classify.
5451         (floatformat_is_nan): Rename to...
5452         (floatformat_classify): ...this.  Return more information.
5453         * doublest.h (enum float_kind): New.
5454         (floatformat_is_nan): Replace prototype...
5455         (floatformat_classify): ...with this one.
5456         * valprint.c (print_floating): Use floatformat_classify.  Handle
5457         infinity.
5458
5459 2007-03-30  Daniel Jacobowitz  <dan@codesourcery.com>
5460
5461         * README: Mention ISO C library requirement.
5462
5463 2007-03-30  Daniel Jacobowitz  <dan@codesourcery.com>
5464
5465         * Makefile.in (SFILES): Remove nlmread.c.
5466         (COMMON_OBS): Remove nlmread.o.
5467         (nlmread.o): Delete rule.
5468         * README: Delete reference to remote-st.c.
5469         * acinclude.m4 (CY_AC_TCL_LYNX_POSIX): Delete.
5470         * defs.h (enum gdb_osabi): Delete GDB_OSABI_NETWARE and
5471         GDB_OSABI_LYNXOS.
5472         * i386-tdep.c (i386_nw_init_abi, i386_nlm_osabi_sniffer): Delete.
5473         (_initialize_i386_tdep): Do not reference them.
5474         * nlmread.c: Delete file.
5475         * osabi.c (gdb_osabi_names): Remove NetWare and LynxOS.
5476         * target.c: Doc update.
5477         * thread.c: Delete commented include.
5478         * config/alpha/tm-alpha.h: Doc update.
5479
5480 2007-03-30  Chris Dearman  <chris@mips.com>
5481
5482         * utils.c (string_to_core_addr): Comment typo.
5483
5484 2007-03-30  Chris Dearman  <chris@mips.com>
5485
5486         * mips-tdep.c: Comment typo.
5487
5488 2007-03-29  Ulrich Weigand  <uweigand@de.ibm.com>
5489
5490         * config/alpha/nm-osf.h (PTRACE_XFER_TYPE): Remove.
5491         * config/mips/nm-linux.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Remove.
5492         * config/sparc/nm-linux.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Remove.
5493         * config/powerpc/nm-ppc64-linux.h: Remove file.
5494         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Set to nm-linux.h.
5495         * inferior.h (PTRACE_ARG3_TYPE): Do not define.
5496         (call_ptrace): Change type of third argument to PTRACE_TYPE_ARG3.
5497         * infptrace.c (call_ptrace): Likewise.
5498         * m68klinux-nat.c (PTRACE_XFER_TYPE): Do not define.
5499         (fetch_register): Replace PTRACE_ARG3_TYPE by PTRACE_TYPE_ARG3
5500         and PTRACE_XFER_TYPE by PTRACE_TYPE_RET.
5501         (store_register): Likewise.
5502
5503 2007-03-29  Joel Brobecker  <brobecker@adacore.com>
5504
5505         * Makefile.in (varobj.o): Add missing dependency.
5506
5507 2007-03-29  Michael Snyder  <msnyder@access-company.com>
5508
5509         * MAINTAINERS: Update my email address.
5510
5511 2007-03-29  Joel Brobecker  <brobecker@adacore.com>
5512
5513         Add support for exception handling with multiple versions of
5514         the Ada runtime:
5515         * ada-lang.c: Update general comments on how Ada exception catchpoints
5516         are implemented.
5517         (raise_sym_name, raise_unhandled_sym_name, raise_assert_sym_name)
5518         (__gnat_raise_nodefer_with_msg): Delete.
5519         (ada_unhandled_exception_name_addr_ftype): New type.
5520         (exception_support_info): New type.
5521         (ada_unhandled_exception_name_addr): Add forward declaration.
5522         (ada_unhandled_exception_name_addr_from_raise): Likewise.
5523         (default_exception_support_info): New constant.
5524         (exception_support_info_fallback): Likewise.
5525         (exception_info): New global variable.
5526         (ada_exception_support_info_sniffer): New function.
5527         (ada_executable_changed_observer): Likewise.
5528         (ada_unhandled_exception_name_addr_from_raise): Renamed from
5529         ada_unhandled_exception_name_addr.
5530         (ada_unhandled_exception_name_addr): Reimplement to match the
5531         latest Ada runtime implementation.
5532         (error_breakpoint_runtime_sym_not_found): Delete.
5533         (ada_exception_sym_name): Get the exception sym name from
5534         exception_info rather than hardcoding it.
5535         (ada_exception_sal): Add call to ada_exception_support_info_sniffer.
5536         Update error handling.
5537         * Makefile.in (ada-lang.o): Add dependency on observer.h.
5538
5539 2007-03-29  Daniel Jacobowitz  <dan@codesourcery.com>
5540
5541         * Makefile.in (coff_solib_h, coff-solib.o, i386v-nat.o, lynx-nat.o)
5542         (remote-st.o, uw-thread.o): Delete.
5543         (HFILES_NO_SRCDIR, ALLDEPFILES): Update.
5544         * configure.host: Move hppa*-*-hiux*, i[34567]86-ncr-*,
5545         i[34567]86-*-dgux*, i[34567]86-*-lynxos*, i[34567]86-*-sco3.2v5*,
5546         i[34567]86-*-sco3.2v4*, i[34567]86-*-sco*, i[34567]86-*-sysv4.2*,
5547         i[34567]86-*-sysv4*, i[34567]86-*-sysv5*, i[34567]86-*-unixware2*,
5548         i[34567]86-*-unixware*, i[34567]86-*-sysv*, i[34567]86-*-isc*, and
5549         rs6000-*-lynxos* to an obsoletion stanza.
5550         * configure.tgt: Move hppa*-*-hiux*, i[34567]86-ncr-*,
5551         i[34567]86-*-lynxos*, m68*-cisco*-*, m68*-tandem-*, m68*-*-os68k*,
5552         and rs6000-*-lynxos* to an obsoletion stanza.  Do not mention
5553         i[34567]86-*-netware*.
5554         * NEWS: Mention deleted targets.
5555
5556         * coff-solib.c, coff-solib.h, i386v-nat.c, lynx-nat.c, remote-st.c,
5557         uw-thread.c, config/nm-lynx.h, config/i386/i386sco.mh,
5558         config/i386/i386sco4.mh, config/i386/i386sco5.mh, config/i386/i386v.mh,
5559         config/i386/i386v4.mh, config/i386/i386v42mp.mh,
5560         config/i386/ncr3000.mh, config/i386/ncr3000.mt,
5561         config/i386/nm-i386sco.h, config/i386/nm-i386sco4.h,
5562         config/i386/nm-i386sco5.h, config/i386/nm-i386v.h,
5563         config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h,
5564         config/m68k/cisco.mt, config/m68k/os68k.mt, config/m68k/st2000.mt,
5565         config/m68k/tm-cisco.h, config/m68k/tm-os68k.h,
5566         config/rs6000/rs6000lynx.mh, config/rs6000/rs6000lynx.mt,
5567         config/rs6000/tm-rs6000ly.h: Delete files.
5568
5569 2007-03-29  Daniel Jacobowitz  <dan@codesourcery.com>
5570
5571         * defs.h (deprecated_registers_changed_hook): Delete declaration.
5572         * interps.c (clear_interpreter_hooks): Do not clear
5573         deprecated_registers_changed_hook.
5574         * regcache.c (registers_changed): Do not call it.
5575         * top.c (deprecated_registers_changed_hook): Do not define it.
5576         * mi/mi-interp.c (mi_command_loop): Do not clear it.
5577         * tui/tui-hooks.c (tui_install_hooks): Do not install it.
5578         (tui_remove_hooks): Do not remove it.
5579         (tui_selected_frame_level_changed_hook): Check for negative level.
5580         Use get_selected_frame.
5581         (tui_registers_changed_hook): Deleted.
5582
5583 2007-03-29  Joel Brobecker  <brobecker@adacore.com>
5584
5585         * stabsread.c (add_undefined_type): Add extra parameter.
5586         Now handles nameless types separately.
5587         (struct nat): New type.
5588         (noname_undefs, noname_undefs_allocated, noname_undefs_length):
5589         New static variables.
5590         (read_type): Update calls to add_undefined_type.
5591         (add_undefined_type_noname): New function.
5592         (add_undefined_type_1): Renames from add_undefined_type.
5593         (cleanup_undefined_types_noname): New function.
5594         (cleanup_undefined_types_1): Renames cleanup_undefined_types.
5595         (cleanup_undefined_types): New handles nameless types separately.
5596         (_initialize_stabsread): Initialize our new static constants.
5597
5598 2007-03-29  Denis Pilat  <denis.pilat@st.com>
5599
5600         * configure.ac: Test for signal.h.
5601         * configure, config.in: Regenerate.
5602
5603 2007-03-29  Denis Pilat  <denis.pilat@st.com>
5604
5605         * stack.c (print_stack_frame): Always use LOC_AND_ADDRESS in MI output.
5606         * infrun.c (normal_stop): Remove MI specific frame printing treatment.
5607
5608 2007-03-29  Pedro Alves  <pedro_alves@portugalmail.pt>
5609
5610         * arm-wince-tdep.c: New.
5611         * config/arm/wince.mt (DEPRECATED_TM_FILE): Use tm-arm.h.
5612         (MT_CFLAGS): Delete.
5613         (TM_CLIBS): Delete.
5614         (TDEPFILES): Add arm-wince-tdep.o, corelow.o, solib.o,
5615         solib-legacy.o, solib-svr4.o, and remove wince.o.
5616         * configure.tgt (arm*-*-mingw32ce*): Add.
5617         * signals/signals.c [HAVE_SIGNAL_H]: Check.
5618         (do_target_signal_to_host): Silence 'not used' warning.
5619         * config/arm/tm-wince.h: Remove.
5620
5621 2007-03-28  Ulrich Weigand  <uweigand@de.ibm.com>
5622
5623         * arch-utils.c (legacy_pc_in_sigtramp): Remove.
5624         * arch-utils.h (legacy_pc_in_sigtramp): Remove.
5625
5626         * config/ia64/linux.mt (DEPRECATED_TM_FILE): Remove.
5627         * config/ia64/tm-linux.h: Remove file.
5628         * ia64-tdep.h (struct gdbarch_tdep): Add pc_in_sigtramp callback.
5629         * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Use it instead of
5630         legacy_pc_in_sigtramp.
5631         (ia64_gdbarch_init): Initialize tdep->pc_in_sigtramp.
5632         * ia64-linux-tdep.c (ia64_linux_pc_in_sigtramp): Make static.
5633         Remove func_name argument.
5634         (ia64_linux_init_abi): Install it as tdep->pc_in_sigtramp.
5635
5636         * infrun.c (HAVE_STEPPABLE_WATCHPOINT): Do not redefine.
5637         * target.c (update_current_target): Add to_have_steppable_watchpoint.
5638         * target.h (struct target_ops):  Add to_have_steppable_watchpoint.
5639         (HAVE_STEPPABLE_WATCHPOINT): Define.
5640
5641         * config/ia64/linux.mh (NATDEPFILES): Remove core-aout.o.
5642         * config/ia64/nm-linux.h (KERNEL_U_ADDR, U_REGS_OFFSET,
5643         CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER,
5644         TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_STEPPABLE_WATCHPOINT,
5645         STOPPED_BY_WATCHPOINT, target_stopped_data_address,
5646         target_insert_watchpoint, target_remove_watchpoint): Remove.
5647         (FETCH_INFERIOR_REGISTERS): Define.
5648         * ia64-linux-nat.c (ia64_register_addr): Make static.
5649         (ia64_cannot_fetch_register, ia64_cannot_store_register): Likewise.
5650         (ia64_linux_insert_watchpoint): Make static.  Remove ptid_p argument.
5651         (ia64_linux_remove_watchpoint): Likewise.  Add type argument.
5652         (ia64_linux_stopped_data_address): Make static.  Add target_ops.
5653         (ia64_linux_stopped_by_watchpoint): Make static.
5654         (ia64_linux_can_use_hw_breakpoint): New function.
5655         (ia64_linux_fetch_register, ia64_linux_fetch_registers): Likewise.
5656         (ia64_linux_store_register, ia64_linux_store_registers): Likewise.
5657         (_initialize_ia64_linux_nat): Install register and watchpoint ops.
5658
5659 2007-03-28  Pedro Alves  <pedro_alves@portugalmail.pt>
5660
5661         * linespec.c: Include language.h.
5662         (find_methods): Add language parameter.  Call
5663         lookup_symbol_in_language.  Pass language down.
5664         (add_matching_methods): Likewise.  Call
5665         lookup_symbol_in_language.
5666         (add_constructors): Likewise.
5667         (find_method): Pass sym_class to collect_methods.
5668         (collect_methods): Add sym_class parameter.  Pass language
5669         down.
5670         * symtab.c (lookup_symbol): Rename to ...
5671         (lookup_symbol_in_language): ... this.  Add language
5672         parameter.  Use passed language instead of current_language.
5673         (lookup_symbol): New as wrapper around
5674         lookup_symbol_in_language.
5675         (lookup_symbol_aux): Add language parameter.  Use passed
5676         language instead of current_language.
5677         (search_symbols): Indent.
5678         * symtab.h (enum language): Forward declare.
5679         (lookup_symbol_in_language): Declare.
5680         (lookup_symbol): Update description.
5681         * ada-lang.h (lookup_symbol_in_language): Remove declaration.
5682         * ada-lang.c (restore_language): Remove.
5683         (lookup_symbol_in_language): Remove.
5684
5685 2007-03-27  Pedro Alves  <pedro_alves@portugalmail.pt>
5686
5687         * breakpoint.c (bpstat_num): Add int *num parameter.
5688         * breakpoint.h (bpstat_num): Likewise.
5689         * infcmd.c (continue_command): Adjust to new bpstat_num
5690         interface.
5691         (program_info): Likewise.
5692
5693 2007-03-27  Ulrich Weigand  <uweigand@de.ibm.com>
5694
5695         * config/sh/tm-sh.h: Remove file.
5696         * config/sh/embed.mt (DEPRECATED_TM_FILE): Remove.
5697         * config/sh/linux.mt (DEPRECATED_TM_FILE): Remove.
5698         * config/sh/nbsd.mt (DEPRECATED_TM_FILE): Remove.
5699         * config/sh/tm-wince.h: Do not include "sh/tm-sh.h".
5700
5701 2007-03-27  Ulrich Weigand  <uweigand@de.ibm.com>
5702
5703         * config/sh/tm-sh.h (DEPRECATED_BIG_REMOTE_BREAKPOINT,
5704         DEPRECATED_LITTLE_REMOTE_BREAKPOINT): Remove.
5705         * remote.c: Remove code under #ifdef DEPRECATED_REMOTE_BREAKPOINT,
5706         DEPRECATED_BIG_REMOTE_BREAKPOINT, DEPRECATED_LITTLE_REMOTE_BREAKPOINT.
5707         * sh-tdep.c (sh_breakpoint_from_pc): Return remote breakpoint
5708         sequence if target_shortname is "remote".
5709
5710 2007-03-27  Anton Blanchard  <anton@samba.org>
5711
5712         * rs6000-tdep.c (rs6000_frame_cache): Use tdep->lr_frame_offset
5713         instead of wordsize when looking for the LR in a stack frame.
5714
5715 2007-03-27  Andreas Schwab  <schwab@suse.de>
5716             Daniel Jacobowitz  <dan@codesourcery.com>
5717
5718         * dwarf2-frame.c (dwarf2_frame_eh_frame_regnum): Rename to...
5719         (dwarf2_frame_adjust_regnum): ...this.  Make static.  Add eh_frame_p
5720         argument.  Update all callers.
5721         (struct dwarf2_frame_ops): Replace eh_frame_regnum with adjust_regnum.
5722         (dwarf2_frame_set_eh_frame_regnum): Rename to...
5723         (dwarf2_frame_set_adjust_regnum): ...this.  Update argument type.
5724         * dwarf2frame.h (dwarf2_frame_set_eh_frame_regnum): Rename to...
5725         (dwarf2_frame_set_adjust_regnum): ...this.
5726         (dwarf2_frame_eh_frame_regnum): Delete prototype.
5727         * rs6000-tdep.c: Include "dwarf2-frame.h".
5728         (rs6000_adjust_frame_regnum): Define.
5729         (rs6000_gdbarch_init): Enable use of DWARF CFI frame unwinder.
5730         Register rs6000_adjust_frame_regnum.
5731
5732         * Makefile.in (rs6000-tdep.o): Update dependencies.
5733
5734 2007-03-27  Brooks Moses  <brooks.moses@codesourcery.com>
5735
5736         * Makefile.in: Add support for a "pdf" target.
5737
5738 2007-03-27  Daniel Jacobowitz  <dan@codesourcery.com>
5739
5740         * amd64-tdep.c (amd64_init_frame_cache): New function.
5741         (amd64_alloc_frame_cache, amd64_skip_prologue): Use it.
5742
5743 2007-03-26  Nigel Stephens  <nigel@mips.com>
5744             Maciej W. Rozycki  <macro@mips.com>
5745
5746         * ui-out.c (ui_out_field_core_addr): Truncate address to
5747         TARGET_ADDR_BIT size before printing.
5748
5749 2007-03-22  Nigel Stephens  <nigel@mips.com>
5750             Maciej W. Rozycki  <macro@mips.com>
5751
5752         * remote-mips.c (mips_xfer_memory): Update prototype.
5753
5754 2007-03-22  Joel Brobecker  <brobecker@adacore.com>
5755
5756         * symfile.h: #include "symtab.h"
5757
5758 2007-03-22  Denis Pilat  <denis.pilat@st.com>
5759
5760         * utils.c (pagination_on_command, pagination_off_command):
5761         Remove useless prototypes.
5762
5763 2007-03-21  Pierre Muller  <muller@ics.u-strasbg.fr>
5764
5765         Fix PR pascal/2232.
5766         * p-valprint.c (pascal_object_print_value): Use type_name_no_tag 
5767         instead of TYPE_NAME for object base class name.
5768
5769
5770 2007-03-19  Kevin Buettner  <kevinb@redhat.com>
5771
5772         * mep-tdep.c (mep_analyze_frame_prologue, mep_frame_this_id):
5773         Specify frame type in calls to frame_func_unwind().
5774
5775 2007-03-13  Daniel Jacobowitz  <dan@codesourcery.com>
5776
5777         * rs6000-tdep.c (rs6000_skip_prologue): Use skip_prologue_using_sal.
5778         (rs6000_in_function_epilogue_p): Use extract_unsigned_integer.
5779         (refine_prologue_limit): Delete.
5780         (skip_prologue): Don't call it.  Use extract_unsigned_integer.
5781         Assume lim_pc is set.  Correct check for incomplete prologues.
5782         Do not skip clobbers of the frame pointer.
5783         * symtab.c (skip_prologue_using_sal): Fail if there is only one
5784         sal.
5785
5786 2007-03-13  Nathan Froyd  <froydnj@codesourcery.com>
5787
5788         * frame.c (frame_pop): Check to see whether there's a frame to
5789         which we can pop first.
5790
5791 2007-03-13  Nathan Froyd  <froydnj@codesourcery.com>
5792
5793         * MAINTAINERS (Write After Approval): Add myself.
5794
5795 2007-03-09  Markus Deuling  <deuling@de.ibm.com>
5796
5797         * infrun.c (breakpoints_failed): Remove unnecessary variable.
5798         (handle_inferior_event): Remove unnecessary braces.
5799         * breakpoint.c (bpstat_what): Remove wrong comment.
5800
5801 2007-03-09  Ulrich Weigand  <uweigand@de.ibm.com>
5802
5803         * spu-tdep.c (spu_in_function_epilogue_p): New function.
5804         (spu_gdbarch_init): Install it.
5805
5806 2007-03-08  Ulrich Weigand  <uweigand@de.ibm.com>
5807
5808         * spu-linux-nat.c (spu_xfer_partial): Return -1 for unsupported
5809         object types, not 0.
5810
5811 2007-03-08  Ulrich Weigand  <uweigand@de.ibm.com>
5812
5813         * spu-tdep.c (spu_frame_align): New function.
5814         (spu_gdbarch_init): Install it.  Set call dummy location to ON_STACK.
5815
5816 2007-03-08  Ulrich Weigand  <uweigand@de.ibm.com>
5817
5818         * spu-tdep.c (spu_unwind_pc): Mask off interrupt enable bit.
5819         (spu_software_single_step): Likewise.
5820         (spu_read_pc, spu_write_pc): New functions.
5821         (spu_gdbarch_init): Install them.
5822
5823 2007-03-08  Ulrich Weigand  <uweigand@de.ibm.com>
5824
5825         * cli/cli-dump.c (struct callback_data): load_offset needs to 
5826         have signed long type.
5827
5828 2007-03-07  Joel Brobecker  <brobecker@adacore.com>
5829
5830         * mips-tdep.c (mips_insn16_frame_cache, mips_insn32_frame_sniffer):
5831         Revert the previous change that had some unexpected side-effects
5832         on mips32.
5833         (mips_insn16_frame_cache, mips_insn32_frame_cache): Use the proper
5834         function to get the address of the calling instruction.
5835
5836 2007-03-07  Denis Pilat  <denis.pilat@st.com>
5837
5838         * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Replace
5839         get_selected_frame by deprecated_safe_get_selected_frame.
5840
5841 2007-03-02  Mark Kettenis  <kettenis@gnu.org>
5842
5843         * shnbsd-tdep.c: Include "regset.h", "gdb_assert.h" and
5844         "gdb_string.h".  Don't include "nbsd-tdep.h".
5845         (SIZEOF_STRUCT_REG): Remove.
5846         (SHNBSD_SIZEOF_GREGS): New.
5847         (shnbsd_supply_gregset, shnbsd_collect_gregset)
5848         (shnbsd_regset_from_core_section): New functions.
5849         (fetch_core_registers, fetch_elfcore_registers): Remove functions.
5850         (shnbsd_supply_reg, shnbsd_fill_reg): Simply call
5851         shnbsd_supply_gregset, shnbsd_collect_gregset.
5852         (shnbsd_gregset): New variable.
5853         (shnbsd_init_abi): Set regset_from_core_section.
5854         (GDB_OSABI_NETBSD_CORE): New define.
5855         (shnbsd_core_osabi_sniffer): New function.
5856         (_initialize_shnbsd_tdep): Register shnbsd_core_osabi_sniffer.
5857         * Makefile.in (shnbsd-tdep.o): Update dependencies.
5858         * config/sh/nbsd.mt (TDEPFILES): Add corelow.o, remove
5859         nbsd-tdep.o.
5860         * config/sh/obsd.mt (TDEPFILES): Remove nbsd-tdep.o.
5861
5862 2007-02-28  Joel Brobecker  <brobecker@adacore.com>
5863
5864         * gdbtypes.c (replace_type): Fix typo that caused us to not update
5865         length of the types referenced by the new type CV ring.
5866
5867 2007-02-28  Daniel Jacobowitz  <dan@codesourcery.com>
5868
5869         * frame.c (frame_pop, frame_observer_target_changed): Call
5870         reinit_frame_cache.
5871         (flush_cached_frames): Rename to reinit_frame_cache and delete
5872         old implementation.
5873         * frame.h (flush_cached_frames): Delete prototype and update comment.
5874
5875         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd): Call
5876         reinit_frame_cache instead of flush_cached_frames.  Do not call
5877         select_frame after reinit_frame_cache.
5878         * corelow.c (core_open): Likewise.
5879         * gdbarch.sh (deprecated_current_gdbarch_select_hack): Likewise.
5880         * infrun.c (prepare_to_proceed, context_switch)
5881         (handle_inferior_event): Likewise.
5882         * linux-fork.c (fork_load_infrun_state): Likewise.
5883         * ocd.c (ocd_start_remote): Likewise.
5884         * remote-e7000.c (e7000_start_remote): Likewise.
5885         * remote-mips.c (device): Likewise.
5886         * thread.c (switch_to_thread): Likewise.
5887         * tracepoint.c (finish_tfind_command): Likewise.
5888         * gdbarch.c: Regenerated.
5889
5890 2007-02-28  Jerome Guitton  <guitton@adacore.com>
5891             Joel Brobecker  <brobecker@adacore.com>
5892
5893         * gdbtypes.c (check_typedef): Do not replace stub type if
5894         the resolved type is not defined in the same objfile.
5895
5896 2007-02-28  Daniel Jacobowitz  <dan@codesourcery.com>
5897
5898         * top.c (gdb_readline_wrapper_cleanup): Remove invalid assertion.
5899
5900 2007-02-28  Joel Brobecker  <brobecker@adacore.com>
5901
5902         * stabsread.c (define_symbol): Create an associated STRUCT_DOMAIN
5903         symbol for Ada units when the symbol is defined using 't' rather
5904         than 'Tt' as symbol descriptor.
5905
5906 2007-02-28  Ulrich Weigand  <uweigand@de.ibm.com>
5907
5908         * config/mips/tm-nbsd.h: Delete file.
5909         * config/mips/nbsd.mt (DEPRECATED_TM_FILE): Remove.
5910         * config/sh/tm-nbsd.h: Delete file.
5911         * config/sh/nbsd.mt (DEPRECATED_TM_FILE): Set to tm-sh.h.
5912
5913 2007-02-28  Joel Brobecker  <brobecker@adacore.com>
5914
5915         * mi/mi-cmd-var.c (varobj_update_one): Remove reference to
5916         unused WRONG_PARAM value since it was recently deleted.
5917
5918 2007-02-28  Vladimir Prus  <vladimir@codesourcery.com>
5919
5920         * varobj.c (varobj_update): Free temporary vectors.
5921
5922 2007-02-28  Ulrich Weigand  <uweigand@de.ibm.com>
5923
5924         * config/powerpc/linux.mt (DEPRECATED_TM_FILE): Set to tm-ppc-eabi.h.
5925         * config/powerpc/tm-linux.h: Delete file.
5926         * config/powerpc/tm-ppc-eabi.h: Do not include "rs6000/tm-rs6000.h".
5927         (PROCESS_LINENUMBER_HOOK): Do not undefine.
5928         (TEXT_SEGMENT_BASE): Do not redefine.
5929         * config/rs6000/nm-rs6000.h (CHILD_SPECIAL_WAITSTATUS): Move here
5930         from config/rs6000/tm-rs6000.h.
5931         (TARGET_CREATE_INFERIOR_HOOK, rs6000_create_inferior): Likewise.
5932         * config/rs6000/tm-rs6000.h (struct frame_info): Remove declaration.
5933         (TEXT_SEGMENT_BASE): Remove.
5934         (IN_SOLIB_RETURN_TRAMPOLINE): Remove.
5935         (rs6000_in_solib_return_trampoline): Remove.
5936         (SKIP_TRAMPOLINE_CODE): Remove.
5937         (rs6000_skip_trampoline_code): Remove.
5938         (CHILD_SPECIAL_WAITSTATUS): Move to config/rs6000/nm-rs6000.h.
5939         (TARGET_CREATE_INFERIOR_HOOK, rs6000_create_inferior): Likewise.
5940         (FP0_REGNUM): Remove.
5941         (rs6000_find_toc_address_hook): Move to rs6000-tdep.h.
5942         (rs6000_set_host_arch_hook): Remove.
5943         * Makefile.in (rs6000-nat.o): Add dependency on $(rs6000_tdep_h).
5944         (rs6000-aix-tdep.o): Add dependency on $(ppc_tdep_h).
5945         * ppc-tdep.h (struct gdbarch_tdep): Add field text_segment_base.
5946         * rs6000-aix-tdep.c: Include "ppc-tdep.h".
5947         (rs6000_aix_init_osabi): Set text_segment_base tdep field.
5948         * rs6000-nat.c: Include "rs6000-tdep.h".
5949         (exec_one_dummy_insn): Replace TEXT_SEGMENT_BASE by tdep field.
5950         (set_host_arch): Rename to ...
5951         (rs6000_create_inferior): ... this.  Make public.
5952         (_initialize_core_rs6000): Do not set rs6000_set_host_arch_hook.
5953         * rs6000-tdep.c (rs6000_set_host_arch_hook): Remove.
5954         (rs6000_create_inferior): Remove.
5955         (branch_dest): Replace TEXT_SEGMENT_BASE by tdep field.
5956         (rs6000_gdbarch_init): Call set_gdbarch_fp0_regnum,
5957         set_gdbarch_in_solib_return_trampoline, and
5958         set_gdbarch_skip_trampoline_code.
5959         * rs6000-tdep.h (rs6000_find_toc_address_hook): Move here
5960         from config/rs6000/tm-rs6000.h.
5961
5962 2007-02-27  Joel Brobecker  <brobecker@adacore.com>
5963
5964         * buildsym.c (record_producer): Do nothing if no producer is provided.
5965
5966 2007-02-27  Nick Roberts  <nickrob@snap.net.nz>
5967
5968         * varobj.c (varobj_update): Remove unused local.  Use gdb_assert
5969         to check changelist is non-NULL.  Call error if the frontend tries
5970         to update a non-root variable.
5971
5972         * varobj.h (enum varobj_update_error): Delete WRONG_PARAM value.
5973
5974 2007-02-27  Daniel Jacobowitz  <dan@codesourcery.com>
5975
5976         * dwarf2-frame.c (dwarf2_frame_cache, dwarf2_frame_this_id)
5977         (dwarf2_frame_sniffer): Update.
5978         (dwarf2_signal_frame_this_id): New function.
5979         (dwarf2_signal_frame_unwind): Use it.
5980         (dwarf2_frame_base_sniffer): Use frame_unwind_address_in_block.
5981         * frame.c (frame_func_unwind): Add this_type argument.
5982         (get_frame_func): Update.
5983         (frame_unwind_address_in_block): Add this_type argument and check it.
5984         Fix a typo.
5985         (get_frame_address_in_block): Update.
5986         * frame.h (enum frame_type): Move higher in the file.
5987         (frame_unwind_address_in_block, frame_func_unwind): Add enum frame_type
5988         argument.
5989
5990         * alpha-mdebug-tdep.c, alpha-tdep.c, amd64-tdep.c, amd64obsd-tdep.c,
5991         arm-tdep.c, avr-tdep.c, cris-tdep.c, frv-tdep.c, h8300-tdep.c,
5992         hppa-tdep.c, i386-tdep.c, i386obsd-tdep.c, ia64-tdep.c,
5993         libunwind-frame.c, m32c-tdep.c, m32r-linux-tdep.c, m32r-tdep.c,
5994         m68hc11-tdep.c, m68k-tdep.c, m88k-tdep.c, mips-mdebug-tdep.c,
5995         mips-tdep.c, mn10300-tdep.c, mt-tdep.c, rs6000-tdep.c, s390-tdep.c,
5996         score-tdep.c, sh-tdep.c, sh64-tdep.c, sparc-tdep.c,
5997         sparc64obsd-tdep.c, spu-tdep.c, v850-tdep.c, vax-tdep.c,
5998         xstormy16-tdep.c, xtensa-tdep.c: Update calls to
5999         frame_func_unwind and frame_unwind_address_in_block to specify
6000         the frame type.  Use frame_unwind_address_in_block instead of
6001         frame_pc_unwind in sniffers.
6002
6003 2007-02-27  Daniel Jacobowitz  <dan@codesourcery.com>
6004
6005         * frame.c (deprecated_selected_frame): Rename to...
6006         (selected_frame): ...this.  Make static.
6007         (get_selected_frame, select_frame): Update.
6008         * frame.h (deprected_select_frame): Delete.
6009         (deprecated_safe_get_selected_frame): Update comments.
6010
6011         * breakpoint.c, cli/cli-cmds.c, f-valprint.c, infcmd.c, inflow.c,
6012         infrun.c, stack.c, tui/tui-disasm.c, tui/tui-source.c,
6013         tui/tui-winsource.c, valops.c, varobj.c, findvar.c, macroscope.c,
6014         parse.c, regcache.h, sh64-tdep.c, tui/tui-hooks.c, tui/tui-win.c,
6015         tui/tui.c: Replace references to deprecated_selected_frame.
6016
6017 2007-02-27  Fred Fish  <fnf@specifix.com>
6018
6019         * rs6000-tdep.c (skip_prologue): Recognize addi instructions that 
6020         directly decrement the stack pointer, accumulate their operand into 
6021         the stack offset, and mark the function as not being frameless.
6022
6023 2007-02-26  Daniel Jacobowitz  <dan@codesourcery.com>
6024
6025         * arch-utils.c (selected_byte_order): New.
6026         * arch-utils.h (selected_byte_order): New prototype.
6027         * remote-sim.c (gdbsim_open): Use selected_byte_order.
6028
6029 2007-02-26  Daniel Jacobowitz  <dan@codesourcery.com>
6030
6031         * symfile.c (place_section): Check SEC_ALLOC.  Do not check VMA.
6032         (default_symfile_offsets): Check VMA here.  Update section VMAs.
6033
6034 2007-02-26  Daniel Jacobowitz  <dan@codesourcery.com>
6035
6036         * remote.c (init_remote_state): Add special handling for placeholder
6037         registers.
6038
6039 2007-02-26  Daniel Jacobowitz  <dan@codesourcery.com>
6040
6041         * Makefile.in (XMLFILES): Include $(TDEP_XML).
6042         (filenames_h): New variable.
6043         (clean): Clean up xml-builtin.c and stamp-xml.
6044         (arm-linux-nat.o): Update.
6045         * config/arm/linux.mh (TDEP_XML): Define.
6046         * arm-linux-nat.c (PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS): Define.
6047         (arm_linux_has_wmmx_registers): New.
6048         (GET_THREAD_ID): Fix typo.
6049         (IWMMXT_REGS_SIZE): Define.
6050         (fetch_wmmx_regs, store_wmmx_regs): New.
6051         (arm_linux_fetch_inferior_registers): Use fetch_wmmx_regs.
6052         (arm_linux_store_inferior_registers): Use store_wmmx_regs.
6053         (super_xfer_partial, arm_linux_xfer_partial): New.
6054         (_initialize_arm_linux_nat): Use them.
6055         * xml-support.c (fetch_xml_builtin): Move outside HAVE_LIBEXPAT.
6056         (xml_builtin_xfer_partial): New function.
6057         * xml-support.h (xml_builtin_xfer_partial): New prototype.
6058         * NEWS: Update mention of iWMMXt support.
6059
6060 2007-02-26  Daniel Jacobowitz  <dan@codesourcery.com>
6061
6062         * arm-tdep.c (arm_scan_prologue): Do not record FPA register saves
6063         if there are no FPA registers.
6064         (arm_dwarf_reg_to_regnum): New function.
6065         (arm_register_type, arm_register_name): Return minimal values for
6066         unsupported registers.
6067         (arm_register_sim_regno): Handle iWMMXt registers.
6068         (arm_gdbarch_init): Record missing FPA registers if indicated by
6069         a target description.  Recognize iWMMXt registers.  Only register
6070         "info float" for FPA.  Use ARM_NUM_REGS.  Register
6071         arm_dwarf_reg_to_regnum.
6072         * arm-tdep.h (enum gdb_regnum): Add ARM_NUM_REGS and iWMMXt
6073         constants.
6074         (struct gdbarch_tdep): Add have_fpa_registers.
6075         * features/xscale-iwmmxt.xml: Update capitalization.
6076         * regformats/arm-with-iwmmxt.dat: Regenerated.
6077
6078 2007-02-24  Kevin Buettner  <kevinb@redhat.com>
6079
6080         * NEWS (New targets): Add entry for the Toshiba Media Processor.
6081
6082 2007-02-23  Kevin Buettner  <kevinb@redhat.com>
6083
6084         * MAINTAINERS (mep): New target.
6085
6086 2007-02-23  Kevin Buettner  <kevinb@redhat.com>
6087
6088         From Jim Blandy, Dave Brolley, Kevin Buettner, Don Howard, and
6089         Richard Sandiford:
6090         * Makefile.in (elf_mep_h, mep_desc_h, mep_opc_h): New variables.
6091         (mep-tdep.o): New rule.
6092         * configure.tgt (mep-*-*): New target.
6093         * mep-tdep.c: New file.
6094         * config/mep/mep.mt: New file.
6095
6096 2007-02-22  Markus Deuling  <deuling@de.ibm.com>
6097
6098         * infrun.c (inferior_stop_reason, print_stop_reason): Remove
6099         BREAKPOINT_HIT and STOP_UNKNOWN.
6100
6101 2007-02-22  Markus Deuling  <deuling@de.ibm.com>
6102
6103         * valops.c (value_ind): Fix unary * handling of TYPE_CODE_INT. 
6104
6105 2007-02-20  Joel Brobecker  <brobecker@adacore.com>
6106
6107         * gdb_expat.h (XMLCALL): Define if not already defined.
6108
6109 2007-02-20  Andreas Schwab  <schwab@suse.de>
6110
6111         * Makefile.in (symfile.o): Update dependencies.
6112
6113 2007-02-20  Daniel Jacobowitz  <dan@codesourcery.com>
6114
6115         * MAINTAINERS: Disable -Werror for cris simulator.  Build
6116         sparc64-solaris2.10 instead of the broken sparc-elf.
6117         * solib-frv.c: Include "solib.h".
6118         * Makefile.in (solib-frv.o): Update.
6119         * mt-tdep.c (mt_gdbarch_init): Correct typo in floatformats patch.
6120         * xtensa-tdep.c (xtensa_regset_from_core_section): Cast size_t to int.
6121         (xtensa_frame_this_id, xtensa_frame_prev_register)
6122         (xtensa_push_dummy_call): Use %p.
6123
6124 2007-02-16  Daniel Jacobowitz  <dan@codesourcery.com>
6125
6126         * avr-tdep.c, hppa-tdep.c, hppabsd-tdep.c, i386-tdep.c,
6127         ia64-tdep.c, m68k-tdep.c, mips-linux-tdep.c, ppcobsd-tdep.c,
6128         sparc-linux-tdep.c: Include "gdbtypes.h" instead of "floatformat.h".
6129         * Makefile.in (avr-tdep.o, hppabsd-tdep.o, hppa-tdep.o, i386-tdep.o)
6130         (ia64-tdep.o, m68k-tdep.o, mips-linux-tdep.o, ppcobsd-tdep.o)
6131         (sparc-linux-tdep.o): Update.
6132
6133 2007-02-15  Maxim Grigoriev  <maxim2405@gmail.com>
6134
6135         * xtensa-tdep.h (xtensa_reg_mask_t): New.
6136         (xtensa_mask_t): Change mask field to be a separate array.
6137         * xtensa-tdep.c (extract_call_winsize, xtensa_pseudo_register_read)
6138         (xtensa_pseudo_register_write, xtensa_unwind_pc)
6139         (xtensa_unwind_dummy_id, xtensa_push_dummy_call)
6140         (xtensa_breakpoint_from_pc): Remove implicit type casting.
6141         * xtensa-config.c (mask0, mask1, mask2, mask3, mask4, mask5)
6142         (mask6, mask7, mask8, mask9, mask10, mask11, mask12, mask13)
6143         (mask14, mask15): Rename to
6144         (xtensa_mask0, xtensa_mask1, xtensa_mask2, xtensa_mask3)
6145         (xtensa_mask4, xtensa_mask5, xtensa_mask6, xtensa_mask7)
6146         (xtensa_mask8, xtensa_mask9, xtensa_mask10, xtensa_mask11)
6147         (xtensa_mask12, xtensa_mask13, xtensa_mask14, xtensa_mask15): this.
6148         (xtensa_submask0, xtensa_submask1, xtensa_submask2, xtensa_submask3)
6149         (xtensa_submask4, xtensa_submask5, xtensa_submask6, xtensa_submask7)
6150         (xtensa_submask8, xtensa_submask9, xtensa_submask10)
6151         (xtensa_submask11, xtensa_submask12, xtensa_submask13)
6152         (xtensa_submask14, xtensa_submask15): New.
6153         (rmap): Follow strict aliasing rules doing static initialization.
6154
6155 2007-02-13  Daniel Jacobowitz  <dan@codesourcery.com>
6156
6157         * target-descriptions.c (tdesc_named_type): Move code_ptr and data_ptr
6158         handling from here...
6159         (tdesc_register_type): ...to here.
6160         * xml-tdesc.c (tdesc_start_reg): Allow code_ptr and data_ptr.
6161         * features/arm-core.xml: Use code_ptr and data_ptr.
6162
6163 2007-02-13  Denis Pilat  <denis.pilat@st.com>
6164
6165         * varobj.h (enum varobj_update_error): New enum.
6166         * varobj.c (struct varobj_root): Add is_valid member.
6167         (varobj_get_type): Check for invalid varobj.
6168         (varobj_get_attributes): Likewise.
6169         (variable_editable):Likewise.
6170         (varobj_update): Likewise.  Use varobj_update_error.
6171         (new_root_variable): Set root varobj as valid by default.
6172         (varobj_invalidate): New function.
6173         * symfile.c (clear_symtab_users): Use varobj_invalidate.
6174         * mi/mi-cmd-var.c (varobj_update_one): Change return type to void.
6175         Use varobj_update_error.
6176
6177 2007-02-12  Pierre Muller  <muller@ics.u-strasbg.fr>
6178
6179         Fix PR pascal/2223.
6180         * dwarfread.c (set_cu_language): Recognize DW_LANG_Pascal83 as
6181         Pascal language marker.
6182         * dwarf2read.c (set_cu_language): Likewise.
6183
6184 2007-02-12  Corinna Vinschen  <vinschen@redhat.com>
6185
6186         * win32-nat.c (win32_wait): Reset terminal pgrp to GDB.
6187         (do_initial_win32_stuff): Call terminal_init_inferior_with_pgrp
6188         instead of target_terminal_init since inferior_ptid isn't set yet.
6189
6190 2007-02-10  Pedro Alves  <pedro_alves@portugalmail.pt>
6191
6192         * MAINTAINERS (Write After Approval): Add myself.
6193
6194 2007-02-09  Fred Fish  <fnf@specifix.com>
6195
6196         Based on work by Apple Computer, Inc.
6197         * event-top.c (async_request_quit): Call quit() whenever either
6198         quit_flag is set or immediate_quit is set.
6199
6200 2007-02-09  Gabriel Dos Reis  <gdr@integrable-solutions.net>
6201
6202         * ada-lang.c (remove_out_of_scope_renamings): Change third parameter's
6203         type to a pointer to const struct block.
6204         (ada_lookup_symbol_list): Don't cast away constness when calling
6205         remove_out_of_scope_renamings.
6206
6207 2007-02-09  Gabriel Dos Reis  <gdr@integrable-solutions.net>
6208
6209         * linux-nat.c (linux_nat_find_memory_regions): Don't check the
6210         address of 'filename'; it is always non null.
6211
6212 2007-02-09  Joel Brobecker  <brobecker@adacore.com>
6213
6214         * exec.c (add_to_section_table): Do not discard empty sections.
6215
6216 2007-02-08  Daniel Jacobowitz  <dan@codesourcery.com>
6217
6218         * features/Makefile, features/arm-with-iwmmxt.xml,
6219         features/gdbserver-regs.xsl, features/number-regs.xsl,
6220         features/sort-regs.xsl, features/xscale-iwmmxt.xml: New files.
6221         * regformats/arm-with-iwmmxt.dat: Generate.
6222         * NEWS: Mention iWMMXt.
6223
6224 2007-02-08  Daniel Jacobowitz  <dan@codesourcery.com>
6225
6226         * Makefile.in (arm-tdep.o, eval.o, target-descriptions.o)
6227         (xml-tdesc.o): Update.
6228         * xml-support.c: Add a comment.
6229         (gdb_xml_enums_boolean): New variable.
6230         (gdb_xml_parse_attr_enum): Use strcasecmp.
6231         * xml-support.h (gdb_xml_enums_boolean): Declare.
6232         * xml-tdesc.c (struct tdesc_parsing_data): Record current_feature,
6233         next_regnum, and current_union.
6234         (tdesc_start_feature, tdesc_start_reg, tdesc_start_union)
6235         (tdesc_end_union, tdesc_start_field, tdesc_start_vector)
6236         (field_attributes, union_children, reg_attributes, union_attributes)
6237         (vector_attributes, feature_attributes, feature_children): New.
6238         (target_children): Make static.  Add <feature>.
6239         (tdesc_elements): Make static.
6240         * target-descriptions.c (struct tdesc_reg, tdesc_reg_p, type_p)
6241         (struct tdesc_feature, tdesc_feature_p): New types.
6242         (struct target_desc): Add features member.
6243         (struct tdesc_arch_data, tdesc_data): New.
6244         (target_find_description): Clarify error message.  Warn about
6245         ignored register descriptions.
6246         (tdesc_has_registers, tdesc_find_feature, tdesc_feature_name)
6247         (tdesc_named_type, tdesc_data_init, tdesc_data_alloc)
6248         (tdesc_data_cleanup, tdesc_numbered_register)
6249         (tdesc_numbered_register_choices, tdesc_find_register)
6250         (tdesc_register_name, tdesc_register_type)
6251         (tdesc_remote_register_number, tdesc_register_reggroup_p)
6252         (set_tdesc_pseudo_register_name, set_tdesc_pseudo_register_type)
6253         (set_tdesc_pseudo_register_reggroup_p, tdesc_use_registers)
6254         (tdesc_free_reg, tdesc_create_reg, tdesc_free_feature)
6255         (tdesc_create_feature, tdesc_record_type): New.
6256         (free_target_description): Free features.
6257         (_initialize_target_descriptions): Initialize tdesc_data.
6258         * arch-utils.c (default_remote_register_number): New.
6259         * arch-utils.h (default_remote_register_number): New prototype.
6260         * target-descriptions.h (set_tdesc_pseudo_register_name)
6261         (set_tdesc_pseudo_register_type, set_tdesc_pseudo_register_reggroup_p)
6262         (tdesc_use_registers, tdesc_data_alloc, tdesc_data_cleanup)
6263         (tdesc_numbered_register, tdesc_numbered_register_choices)
6264         (tdesc_has_registers, tdesc_find_feature, tdesc_feature_name)
6265         (tdesc_named_type, tdesc_create_feature, tdesc_record_type)
6266         (tdesc_create_reg): Declare.
6267         * gdbarch.sh (remote_register_number): New entry.
6268         * gdbarch.c, gdbarch.h: Regenerate.
6269         * remote.c (init_remote_state): Use gdbarch_remote_register_number.
6270         * features/gdb-target.dtd: Add feature, reg, vector, union, and field.
6271
6272         * arm-tdep.c (arm_register_aliases): New.
6273         (arm_register_name_strings): Rename to...
6274         (arm_register_names): ...this.  Make const.  Delete the old version.
6275         (current_option, arm_register_byte): Delete.
6276         (set_disassembly_style): Simplify.  Do not adjust arm_register_names.
6277         (value_of_arm_user_reg): New.
6278         (arm_gdbarch_init): Verify any described registers.  Call
6279         tdesc_use_registers.  Don't use arm_register_byte.  Create aliases
6280         for standard register names.
6281         (_initialize_arm_tdep): Do not adjust arm_register_names.
6282         * user-regs.c (struct user_reg): Add baton member.
6283         (append_user_reg, user_reg_add_builtin, user_regs_init)
6284         (user_reg_add, value_of_user_reg): Use a baton for user
6285         register functions.
6286         * std-regs.c: Update.
6287         * user-regs.h (user_reg_read_ftype, user_reg_add_builtin)
6288         (user_reg_add): Add baton argument.
6289         * NEWS: Mention target description register support.
6290         * features/arm-core.xml, features/arm-fpa.xml: New.
6291         * eval.c (evaluate_subexp_standard): Allow ptype $register
6292         when the program is not running.
6293
6294 2007-02-09  Nick Roberts  <nickrob@snap.net.nz>
6295
6296         * mi/mi-cmd-var.c (mi_cmd_var_create):  Add value field.
6297
6298 2007-02-08  Thiago Jung Bauermann  <bauerman@br.ibm.com>
6299
6300         * rs6000-tdep.c (gdb_print_insn_powerpc): Set
6301         info->disassembler_options to "any".
6302
6303 2007-02-08  Daniel Jacobowitz  <dan@codesourcery.com>
6304
6305         * varobj.c (install_new_value): Only call value_get_print_value
6306         if changeable.
6307
6308 2007-02-08  Daniel Jacobowitz  <dan@codesourcery.com>
6309
6310         Reported by timeless@gmail.com:
6311         * gdb/target.c (target_flash_erase): Do not return void value.
6312         (target_flash_done): Likewise.
6313         * gdb/cli/cli-cmds.c (source_command): Likewise.
6314
6315 2007-02-08  Fred Fish  <fnf@specifix.com>
6316
6317         Based on work by Apple Computer, Inc.
6318         * event-top.c (handle_sigint): Set quit_flag.
6319         (async_request_quit): Don't set quit_flag.  Avoid calling quit()
6320         if quit_flag has already been reset.
6321
6322 2007-02-08  Daniel Jacobowitz  <dan@codesourcery.com>
6323
6324         * ser-mingw.c (pipe_windows_close): Move variable initialization back
6325         up.
6326
6327 2007-02-08  Fred Fish  <fnf@specifix.com>
6328
6329         * defs.h (request_quit): Remove declaration.
6330         * utils.c (request_quit): Remove definition.
6331
6332 2007-02-08  Joel Brobecker  <brobecker@gnat.com>
6333             Jan Kratochvil  <jan.kratochvil@redhat.com>
6334             Daniel Jacobowitz  <dan@codesourcery.com>
6335
6336         * rs6000-tdep.c (bl_to_blrl_insn_p): New function.
6337         (skip_prologue): Allow bl->blrl used by PIC code.
6338
6339 2007-02-08  Mark Kettenis  <kettenis@gnu.org>
6340             Daniel Jacobowitz  <dan@codesourcery.com>
6341
6342         * cp-valprint.c (cp_print_value_fields, cp_print_value): Always
6343         initialize tmp_obstack.
6344         * p-valprint.c (pascal_object_print_value_fields)
6345         (pascal_object_print_value): Likewise.
6346
6347 2007-02-08  Daniel Jacobowitz  <dan@codesourcery.com>
6348
6349         * features/feature_to_c.sh: Use %s to avoid problems with nawk.
6350
6351 2007-02-08  Mark Kettenis  <kettenis@gnu.org>
6352
6353         * sparcnbsd-tdep.c: Include "gdbtypes.h" instead of "floatformat.h".
6354         * Makefile.in (sparcnbsd-tdep.o): Update dependencies.
6355
6356 2007-02-07  Daniel Jacobowitz  <dan@codesourcery.com>
6357
6358         * xml-tdesc.c (struct tdesc_xml_cache, tdesc_xml_cache_s)
6359         (xml_cache): New.
6360         (tdesc_parse_xml): Cache expanded descriptions.
6361
6362 2007-02-07  Daniel Jacobowitz  <dan@codesourcery.com>
6363
6364         * Makefile.in (XMLFILES): New.
6365         (COMMON_OBS): Add xml-builtin.o.
6366         (xml-builtin.c, stamp-xml): New rules.
6367         (xml-tdesc.o): Update.
6368         * features/feature_to_c.sh: New file.
6369         * xml-support.c (MAX_XINCLUDE_DEPTH): Define.
6370         (struct gdb_xml_parser): Add dtd_name and is_xinclude.
6371         (gdb_xml_start_element): Initialize scope after possibly reallocating
6372         scopes.  Move cleanup later.  Handle the XInclude description
6373         specially.
6374         (gdb_xml_end_element): Only parse the body if there is a current element.
6375         Call XML_DefaultCurrent if there is no element.
6376         (gdb_xml_fetch_external_entity, gdb_xml_use_dtd): New.
6377         (struct xinclude_parsing_data, xinclude_start_include)
6378         (xinclude_end_include, xml_xinclude_default)
6379         (xml_xinclude_start_doctype, xml_xinclude_end_doctype)
6380         (xml_xinclude_xml_decl, xml_xinclude_cleanup, xinclude_attributes)
6381         (xinclude_elements, xml_process_xincludes, fetch_xml_builtin): New.
6382         * xml-support.h (xml_fetch_another, xml_process_xincludes)
6383         (fetch_xml_builtin, xml_builtin, gdb_xml_use_dtd): New declarations.
6384         * xml-tdesc.c (tdesc_parse_xml): Add fetcher_baton argument.  Expand
6385         XInclude directives.  Use the compiled in DTD.
6386         (fetch_xml_from_file): Add baton argument.  Treat it as a containing
6387         directory name.  Do not warn here.
6388         (file_read_description_xml): Update call.  Warn here instead.  Pass
6389         a dirname as baton.
6390         (fetch_available_features_from_target): New.
6391         (target_read_description_xml): Use it.
6392         * features/gdb-target.dtd: Add copyright notice.  Use xinclude.dtd
6393         to handle XInclude.
6394         * features/xinclude.dtd: New file.
6395
6396 2007-02-05  Daniel Jacobowitz  <dan@codesourcery.com>
6397
6398         * linux-thread-db.c (check_for_thread_db): Return early if we have
6399         no libthread_db support.
6400
6401 2007-02-05  Daniel Jacobowitz  <dan@codesourcery.com>
6402
6403         * mi/mi-parse.h: Include <sys/time.h>.
6404
6405 2007-02-05  Nick Roberts  <nickrob@snap.net.nz>
6406
6407         * mi/mi-cmd-stack.c (list_args_or_locals): Use common_val_print
6408         instead of print_variable_value to print values.
6409
6410 2007-02-03  Nick Roberts  <nickrob@snap.net.nz>
6411
6412         * mi/mi-main.c: Numerous formatting changes.
6413         (mi_cmd_data_write_register_values): Replace clause inadvertantly
6414         removed in my previous change.
6415
6416 2007-02-03   Eli Zaretskii  <eliz@gnu.org>
6417
6418         * mi/mi-main.c (mi_load_progress, timestamp, print_diff_now):
6419         Use 1000000L instead of 1000000.
6420
6421 2007-02-03  Nick Roberts  <nickrob@snap.net.nz>
6422
6423             Based on work by Apple Computer, Inc.
6424
6425         * configure.ac: Test for sys/resource.h and getrusage.
6426         * configure, config.in: Regenerate.
6427
6428         * mi/mi-main.c: Include <sys/resource.h> if present.
6429         (rusage): Declare if HAVE_GETRUSAGE.
6430         (current_command_ts, do_timings): New static variables.
6431         (timestamp, print_diff_now, print_diff, timeval_diff):
6432         New static timing functions.
6433         (mi_cmd_enable_timings): New function for new MI command.
6434         (captured_mi_execute_command, mi_execute_async_cli_command): 
6435         Call timing functions.
6436
6437         * mi/mi-cmds.c (mi_cmds): Add entry for new MI command
6438         -enable-timings.
6439
6440         * mi/mi-cmds.h (mi_cmd_enable_timings): New extern.
6441
6442         * mi/mi-parse.h: (mi_timestamp): New structure.
6443         (mi_parse): Add mi_timestamp* member.
6444
6445 2007-02-02  Denis Pilat  <denis.pilat@st.com>
6446
6447         * thread.c (make_cleanup_restore_current_thread): New function.
6448         (info_threads_command): Use of make_cleanup_restore_current_thread
6449         to restore the current thread and the selected frame.
6450         (restore_selected_frame): New function.
6451         (struct current_thread_cleanup): Add frame_id field.
6452         (do_restore_current_thread_cleanup): Add restoring of the selected
6453         frame.
6454         (make_cleanup_restore_current_thread): Likewise.
6455         (thread_apply_all_command): backup the selected frame while 
6456         entering the function and restore it at exit.
6457         (thread_apply_command): Likewise.
6458
6459 2007-02-02  Denis Pilat  <denis.pilat@st.com>
6460
6461         * MAINTAINERS (Write After Approval): Add myself to the list.
6462
6463 2007-02-01  Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
6464
6465         * gdb/remote-m32r.sdi.c (m32r_fetch_register): Change PWD mask.
6466         (m32r_store_register): Ditto.
6467
6468 2007-01-30  Vladimir Prus  <vladimir@codesourcery.com>
6469
6470         * ser-mingw.c (pipe_windows_open)
6471         (pipe_windows_read, pipe_windows_write): Declare
6472         variables at the top of the function.
6473
6474 2007-01-29  Daniel Jacobowitz  <dan@codesourcery.com>
6475
6476         * doublest.c (floatformat_from_length): Use the right element from
6477         gdbarch floatformats.
6478         (floatformat_from_type, extract_typed_floating)
6479         (store_typed_floating): Likewise.
6480         * doublest.h: Remove declarations for undefined floatformat arrays.
6481         * gdbarch.sh (float_format, double_format, long_double_format): Change
6482         to pairs.
6483         (pformat): Update for pairs.
6484         * gdbarch.c, gdbarch.h: Regenerated.
6485         * gdbtypes.c (floatformats_ieee_single, floatformats_ieee_double)
6486         (floatformats_ieee_double_littlebyte_bigword)
6487         (floatformats_i387_ext, floatformats_m68881_ext, floatformats_arm_ext)
6488         (floatformats_ia64_spill, floatformats_ia64_quad, floatformats_vax_f)
6489         (floatformats_vax_d): New variables.
6490         (builtin_type_ieee_single, builtin_type_ieee_double)
6491         (builtin_type_arm_ext, builtin_type_ia64_spill)
6492         (builtin_type_ia64_quad): Replace arrays with individual types.
6493         (builtin_type_ieee_single_big, builtin_type_ieee_single_little)
6494         (builtin_type_ieee_double_big, builtin_type_ieee_double_little)
6495         (builtin_type_ieee_double_littlebyte_bigword, builtin_type_i960_ext)
6496         (builtin_type_m88110_ext, builtin_type_m88110_harris_ext)
6497         (builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword)
6498         (builtin_type_ia64_spill_big, builtin_type_ia64_spill_little)
6499         (builtin_type_ia64_quad_big, builtin_type_ia64_quad_little): Delete
6500         unused and endian-specific types.
6501         (recursive_dump_type): Update for floatformat pairs.
6502         (build_flt): Move higher.  Handle bit == -1.  Take a floatformat pair.
6503         (build_gdbtypes): Use build_flt.
6504         (_initialize_gdbtypes): Update set of initialized types.
6505         * gdbtypes.h: Update declarations to match gdbtypes.c.
6506         (struct main_type): Store a pointer to two floatformats.
6507         * arch-utils.c (default_float_format, default_double_format): Delete.
6508         * arch-utils.h (default_float_format, default_double_format): Delete.
6509
6510         * arm-tdep.c, avr-tdep.c, hppa-tdep.c, hppabsd-tdep.c, i386-tdep.c,
6511         ia64-tdep.c,  iq2000-tdep.c, m68k-tdep.c, m88k-tdep.c,
6512         mips-linux-tdep.c, mips-tdep.c, mt-tdep.c, ppcobsd-tdep.c,
6513         sparc-linux-tdep.c, sparc-tdep.c, sparcnbsd-tdep.c, spu-tdep.c,
6514         vax-tdep.c, alpha-tdep.c, ppc-sysv-tdep.c: Update.
6515
6516 2007-01-29  Joel Brobecker  <brobecker@adacore.com>
6517
6518         * target.c (maintenance_print_target_stack): New function.
6519         (initialize_targets): Add new "maintenance print target-stack"
6520         command.
6521
6522 2007-01-28  Mark Kettenis  <kettenis@gnu.org>
6523
6524         * dwarf2read.c (new_symbol): Handle DW_AT_decl_file being zero.
6525
6526 2007-01-27  Daniel Jacobowitz  <dan@codesourcery.com>
6527
6528         * dwarf2loc.h (struct dwarf2_locexpr_baton): Change size to a long.
6529         (struct dwarf2_loclist_baton): Likewise.
6530
6531 2007-01-27  Eli Zaretskii  <eliz@gnu.org>
6532
6533         * cli/cli-script.c: Include breakpoint.h.
6534         (build_command_line): Require arguments only for if and while
6535         commands.
6536         (get_command_line, execute_user_command, execute_control_command):
6537         Fix wording of warning messages.
6538         (print_command_lines): Print breakpoint commands.
6539         (execute_control_command): Call commands_from_control_command to
6540         handle the `commands' command inside a body of a flow-control
6541         command.
6542         (read_next_line): Recognize the `commands' command and build a
6543         command line structure for it.
6544         (recurse_read_control_structure, read_command_lines): Handle
6545         `commands' similarly to `if' and `while'.
6546
6547         * breakpoint.c (get_number_trailer): Document the special meaning
6548         of NULL as the first argument PP.
6549         (commands_from_control_command): New function.
6550
6551         * breakpoint.h (commands_from_control_command): Add prototype.
6552
6553         * defs.h (commands_control): New enumerated value for enum
6554         command_control_type.
6555
6556 2007-01-26  Joel Brobecker  <brobecker@adacore.com>
6557
6558         * ada-lang.c (ada_exception_breakpoint_ops): Fix typo in function name.
6559         (ada_exception_sal): Update accordingly.
6560
6561 2007-01-26  Jan Kratochvil <jan.kratochvil@redhat.com>
6562
6563         * c-valprint.c (c_val_print): Require strings to be of no-signed CHARs.
6564         * NEWS: Describe CHAR array vs. string identifcation rules.
6565
6566 2007-01-25  Paul Brook  <paul@codesourcery.com>
6567
6568         * arm-tdep.c (arm_get_next_pc): Fix bitfield off-by-one error.
6569
6570 2007-01-24  Jim Blandy  <jimb@codesourcery.com>
6571
6572         * dwarf2loc.c (dwarf2_evaluate_loc_desc): When the location
6573         expression is empty, bother to return the 'optimized out' value we
6574         construct.  (Thanks to Carl Burch.)
6575
6576 2007-01-24  Vladimir Prus  <vladimir@codesourcery.com>
6577
6578         * varobj.c (c_value_of_root, c_value_of_child)
6579         (cplus_describe_child): Don't call release_value.
6580
6581 2007-01-24  Thiemo Seufer  <ths@mips.com>
6582
6583         * mips-linux-tdep.c (mips_linux_n64_rt_sigframe): Fix struct
6584         initialization.
6585
6586 2007-01-24  Vladimir Prus  <vladimir@codesourcery.com>
6587
6588         Refactor getting children name, value and type access 
6589         for varobjs in C++.
6590         * varobj.c (get_type_deref): Remove.
6591         (adjust_value_for_child_access): New.
6592         (c_number_of_children): Use the above.
6593         (c_describe_child): Likewise.
6594         (enum accessibility): New.
6595         (match_accessibility): New function.
6596         (cplus_describe_child): New function.
6597         (cplus_name_of_child, cplus_value_of_child)
6598         (cplus_type_of_child): Reimplement in terms
6599         of cplus_describe_child.
6600         (cplus_number_of_children): Use 
6601         adjust_value_for_child_access.
6602         
6603 2007-01-24  Vladimir Prus  <vladimir@codesourcery.com>
6604
6605         Fix computation of the 'editable' attribute and
6606         value changeability for for references.
6607         * varobj.c (get_value_type): New function.
6608         (c_variable_editable): Use get_value_type.
6609         (varobj_value_is_changeable): Likewise.
6610                 
6611 2007-01-24  Joel Brobecker  <brobecker@adacore.com>
6612
6613         * source.c (find_and_open_source): Try rewriting the source
6614         path inside filename if dirname is NULL.
6615
6616 2007-01-24  Joel Brobecker  <brobecker@adacore.com>
6617
6618         * dwarf2read.c (add_partial_symbol): Create an extra partial
6619         symbol in the VAR_DOMAIN for Ada structures, unions or enums.
6620         (new_symbol): Likewise for symbols.
6621
6622 2007-01-24  Nick Roberts  <nickrob@snap.net.nz>
6623
6624         * mi/mi-main.c (mi_cmd_execute): Call free_all_values.
6625
6626 2007-01-23  Vladimir Prus  <vladimir@codesourcery.com>
6627         
6628         * value.c (value_primitive_field): Copy the full 'location' 
6629         contents, instead of assuming that copying ADDRESS will 
6630         bring over everything in the union.  Remove obsolete comment.
6631         
6632 2007-01-23  Masaki Muranaka  <monaka@monami-software.com>
6633
6634         * m32c-tdep.c (make_regs, m32c_analyze_prologue)
6635         (m32c_skip_trampoline_code, m32c_m16c_address_to_pointer)
6636         (m32c_m16c_pointer_to_address): Separate code from declarations.
6637
6638 2007-01-23  Nick Hudson  <nick.hudson@dsl.pipex.com>
6639
6640         * target.c (update_current_target): Correct typo.
6641
6642 2007-01-22  Masaki Muranaka  <monaka@monami-software.com>
6643
6644         * xstormy16-tdep.c (xstormy16_skip_prologue): Separate code from a
6645         declaration.
6646
6647 2007-01-11  Andrew Cagney  <cagney@redhat.com>
6648             Daniel Jacobowitz  <dan@codesourcery.com>
6649             Jan Kratochvil  <jan.kratochvil@redhat.com>
6650
6651         * dwarf2-frame.c (execute_cfa_program): New support of
6652         `DW_CFA_GNU_negative_offset_extended'.
6653
6654 2007-01-21  Daniel Jacobowitz  <dan@codesourcery.com>
6655
6656         * NEWS: Mention flash support for "load" and new remote packets.
6657
6658 2007-01-21  Markus Deuling  <deuling@de.ibm.com>
6659
6660         * breakpoint.c (delete_command): Skip redundant loop iterations.
6661
6662 2007-01-21  Daniel Jacobowitz  <dan@codesourcery.com>
6663
6664         * gdbarch.sh (register_type): Update comment.
6665         * gdbarch.h: Regenerated.
6666         * arch-utils.c (generic_register_size): Call register_type.
6667         * ia64-tdep.c (ia64_extract_return_value): Likewise.
6668         * m32c-tdep.c (check_for_saved): Likewise.
6669         * mips-tdep.c (mips_print_register, print_gp_register_row)
6670         (mips_print_registers_info): Likewise.
6671         * sh-tdep.c (sh_pseudo_register_read, sh_pseudo_register_write):
6672         Likewise.
6673         * sh64-tdep.c (sh64_pseudo_register_read, sh64_pseudo_register_write)
6674         (sh64_do_register, sh64_print_register)
6675         (sh64_media_print_registers_info): Likewise.
6676         * tui/tui-regs.c (tui_register_format): Likewise.
6677
6678 2007-01-21  Daniel Jacobowitz  <dan@codesourcery.com>
6679
6680         * objfiles.h (ALL_PRIMARY_SYMTABS): Define.
6681
6682         * ada-lang.c (symtab_for_sym, ada_lookup_symbol_list)
6683         (ada_lookup_symbol): Use ALL_PRIMARY_SYMTABS.
6684         * cp-support.c (make_symbol_overload_list_qualified): Likewise.
6685         * symtab.c (lookup_symbol_aux_block, lookup_symbol_aux_symtabs)
6686         (basic_lookup_transparent_type, find_pc_sect_symtab, search_symbols)
6687         (make_symbol_completion_list): Likewise.
6688
6689 2007-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
6690             Daniel Jacobowitz  <dan@codesourcery.com>
6691
6692         * buildsym.c (end_symtab): Use preallocated symtab if available.
6693         Fill in SYMBOL_SYMTAB.
6694         * buildsym.h (struct subfile): Add symtab member.
6695         * dwarf2read.c (struct dwarf2_cu): Add line_header.
6696         (struct file_entry): Add symtab.
6697         (free_cu_line_header): New function.
6698         (read_file_scope): Use it.  Save line_header in the cu.  Process
6699         lines before DIEs.
6700         (add_file_name): Initialize new symtab member.
6701         (dwarf_decode_lines): Create symtabs for included files.
6702         (new_symbol): Set SYMBOL_SYMTAB.
6703         * symtab.c (lookup_symbol): Use SYMBOL_SYMTAB.
6704         (search_symbols): Likewise.
6705         * symtab.h (struct symbol): Add symtab member.
6706         (SYMBOL_SYMTAB): Define.
6707
6708 2007-01-20  Daniel Jacobowitz  <dan@codesourcery.com>
6709
6710         * symfile.c (allocate_symtab): Remove INIT_EXTRA_SYMTAB_INFO.
6711
6712 2007-01-20  Daniel Jacobowitz  <dan@codesourcery.com>
6713
6714         * arch-utils.c (show_endian): Correct reversed condition.
6715
6716 2007-01-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
6717
6718         * MAINTAINERS (Write After Approval): Add myself.
6719
6720 2007-01-16  Daniel Jacobowitz  <dan@codesourcery.com>
6721             Vladimir Prus  <vladimir@codesourcery.com>
6722
6723         Fix 'selected frame' varobjs.
6724         * varobj.c (struct varobj): Remove the error field.
6725         (varobj_set_value): Don't check var->error.
6726         (install_new_value): Don't set var->error.
6727         (varobj_update): Always pass the new value
6728         of the root via install_new_value.
6729         (create_child): Don't set error field.
6730         (new_variable): Likewise.
6731         (c_value_of_root): Always reevaluate the value
6732         of selected frame varobjs in the selected frame.
6733         Don't call reinit_frame_cache.
6734
6735 2007-01-15  Joel Brobecker  <brobecker@adacore.com>
6736
6737         * source.c (_initialize_source): Improve the help text of
6738         the substitute-path commands.
6739
6740 2007-01-14  Mark Kettenis  <kettenis@gnu.org>
6741
6742         * frv-tdep.c (frv_gdbarch_init, frv_register_name)
6743         (frv_breakpoint_from_pc, frv_gdbarch_adjust_breakpoint_address)
6744         (frv_skip_prologue): Remove prototypes.
6745         (frv_adjust_breakpoint_address): Renamed from
6746         frv_gdbarch_adjust_breakpoint_address.
6747         (frv_gdbarch_init): Adjust.
6748
6749 2007-01-13  Mark Kettenis  <kettenis@gnu.org>
6750
6751         * gdbarch.sh (deprecated_extract_return_value)
6752         (deprecated_store_return_value): Remove.
6753         (extract_return_value, store_return_value): Remove default values.
6754         * gdbarch.c, gdbarch.h: Regenerate.
6755         * arch-utils.c, arch-utils.h (legacy_extract_return_value)
6756         (legacy_store_return_value): Remove.
6757         * regcache.c, regcache.h (deprecated_grub_regcache_for_registers):
6758         Remove.
6759
6760         * mi/mi-main.c: Remove obsolete comment.
6761
6762         * regcache.c, regcache.h (deprecated_register_bytes)
6763         (deprecated_read_register_bytes)
6764         (deprecated_write_register_bytes): Remove.
6765
6766         * frame.c (get_frame_register_bytes, put_frame_register_bytes):
6767         Don't forget to move destination pointer.
6768
6769 2007-01-01  Mark Kettenis  <kettenis@gnu.org>
6770
6771         * config/i386/nm-i386gnu.h (CHILD_PREPARE_TO_STORE): Remove.
6772
6773 2007-01-11  Ulrich Weigand  <uweigand@de.ibm.com>
6774
6775         * spu-tdep.c (spu_analyze_prologue): Fix erroneous backtrace
6776         past entry function with recent newlib.
6777
6778 2007-01-11  Vladimir Prus  <vladimir@codesourcery.com>
6779
6780         * gdb.texinfo (GDB/MI Variable Objects): Improve the 
6781         introduction.  Specify -var-update more exactly.
6782
6783 2007-01-11  Daniel Jacobowitz  <dan@codesourcery.com>
6784
6785         * frame.c (get_prev_frame_1): Check PC_REGNUM before using it.
6786
6787 2007-01-10  Jim Blandy  <jimb@codesourcery.com>
6788
6789         * MAINTAINERS (Global Maintainers): Ulrich Weigand has accepted
6790         the Global Maintainers' invitation to be a global maintainer.
6791
6792 2007-01-10  Daniel Jacobowitz  <dan@codesourcery.com>
6793
6794         * infrun.c (singlestep_pc): New variable.
6795         (resume): Set singlestep_pc.
6796         (context_switch): Add a debugging message.  Flush the frame cache.
6797         (handle_inferior_event): Add debugging messages.  Handle thread
6798         hops when a software single step has completed.  Let context_switch
6799         handle flushing the frame cache.
6800
6801 2007-01-09  Daniel Jacobowitz  <dan@codesourcery.com>
6802
6803         * NEWS: Mention target descriptions, "set tdesc filename",
6804         "unset tdesc filename", "show tdesc filename", and
6805         qXfer:features:read.
6806         * arch-utils.c (choose_architecture_for_target): New function.
6807         (gdbarch_info_fill): Call it.
6808         * target-descriptions.c (struct property): Make members non-const.
6809         (struct target_desc): Add arch member.
6810         (target_description_filename): New variable.
6811         (target_find_description): Try via XML first.
6812         (tdesc_architecture): New.
6813         (free_target_description, make_cleanup_free_target_description): New.
6814         (set_tdesc_property): Call xstrdup.
6815         (set_tdesc_architecture, tdesc_set_cmdlist, tdesc_show_cmdlist)
6816         (tdesc_unset_cmdlist, unset_tdesc_cmd, unset_tdesc_filename_cmd)
6817         (set_tdesc_cmd, show_tdesc_cmd, set_tdesc_filename_cmd)
6818         (show_tdesc_filename_cmd, _initialize_target_descriptions): New.
6819         * target-descriptions.h (tdesc_architecture)
6820         (make_cleanup_free_target_description, set_tdesc_architecture): New
6821         prototypes.
6822         * Makefile.in (SFILES): Add xml-tdesc.c.
6823         (COMMON_OBS): Add xml-tdesc.o.
6824         (target-descriptions.o): Update.
6825         (xml-tdesc.o): New rule.
6826         * xml-tdesc.c, xml-tdesc.h: New files.
6827         * remote.c (PACKET_qXfer_features): New enum.
6828         (remote_protocol_features): Add qXfer:features:read.
6829         (remote_xfer_partial): Handle TARGET_OBJECT_AVAILABLE_FEATURES.
6830         (_initialize_remote): Register qXfer:features:read.
6831         * target.h (enum target_object): Add TARGET_OBJECT_AVAILABLE_FEATURES.
6832         * features/gdb-target.dtd: New file.
6833
6834 2007-01-09  Daniel Jacobowitz  <dan@codesourcery.com>
6835
6836         * copyright.sh: Clarify error.
6837
6838 2007-01-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
6839
6840         * symtab.c (matching_bfd_sections): Fix VMA matching for
6841         prelinked objects.
6842
6843 2007-01-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
6844
6845         * minsyms.c (lookup_minimal_symbol_by_pc_section): Handle
6846         nested symbols.
6847
6848 2007-01-09  Daniel Jacobowitz  <dan@codesourcery.com>
6849
6850         Updated copyright notices for most files.
6851
6852 2007-01-09  Daniel Jacobowitz  <dan@codesourcery.com>
6853
6854         * copyright.sh (prunes): Add step-line.inp and step-line.c.
6855
6856 2007-01-09  Daniel Jacobowitz  <dan@codesourcery.com>
6857
6858         * configure.ac (DEBUGDIR_RELOCATABLE): Define for debugdir inside
6859         exec_prefix.
6860         (TARGET_SYSTEM_ROOT_RELOCATABLE): Allow for exec_prefix being
6861         '${prefix}'.
6862         * configure, config.in: Regenerate.
6863         * defs.h (debug_file_directory): Declare.
6864         * main.c (captured_main): Canonicalize gdb_sysroot.  Assume
6865         TARGET_SYSTEM_ROOT is defined.  Initialize debug_file_directory and
6866         relocate it if DEBUGDIR_RELOCATABLE.
6867         * symfile.c (debug_file_directory): Make non-static.
6868         (find_separate_debug_file): Look for debug info for SYSROOT/PATH
6869         in DEBUGDIR/PATH if DEBUGDIR is inside SYSROOT.
6870         (_initialize_symfile): Don't initialize debug_file_directory here.
6871
6872 2007-01-09  Jim Blandy  <jimb@codesourcery.com>
6873
6874         * score-tdep.c (score_push_dummy_call): Don't mix declarations and
6875         statements.
6876
6877 2007-01-09  Daniel Jacobowitz  <dan@codesourcery.com>
6878
6879         * alpha-mdebug-tdep.c (alpha_mdebug_frame_prev_register): Use
6880         frame_unwind_register to recurse.
6881         * alpha-tdep.c (alpha_sigtramp_frame_prev_register): Likewise.
6882         (alpha_heuristic_frame_prev_register): Likewise.
6883         * h8300-tdep.c (h8300_frame_prev_register): Likewise.
6884         * m32c-tdep.c (m32c_prev_register): Likewise.
6885         * frame.c (frame_register_unwind_location): Remove FIXME.
6886
6887 2007-01-09  Daniel Jacobowitz  <dan@codesourcery.com>
6888             Eli Zaretskii  <eliz@gnu.org>
6889
6890         * copyright.sh: New file.
6891
6892 2007-01-09  Daniel Jacobowitz  <dan@codesourcery.com>
6893
6894         * configure.ac: Check for XML_StopParser.
6895         * xml-support.c (gdb_xml_body_text): Check for an error.
6896         (gdb_xml_start_element_wrapper): Conditionalize call to XML_StopParser.
6897         (gdb_xml_end_element_wrapper): Likewise.
6898         * config.in, configure: Regenerated.
6899
6900 2007-01-08  Daniel Jacobowitz  <dan@codesourcery.com>
6901
6902         * varobj.c (install_new_value): Always update print_value.
6903         (value_get_print_value): Immediately return NULL for missing
6904         values.
6905
6906 2007-01-08  Jim Blandy  <jimb@codesourcery.com>
6907
6908         * configure.ac: Tighten pattern for extracting value of
6909         DEPRECATED_TM_FILE from the target makefile fragment.
6910         * configure: Regenerated.
6911
6912 2007-01-08  Daniel Jacobowitz  <dan@codesourcery.com>
6913
6914         * linux-nat.c (struct simple_pid_list): Add status.
6915         (add_to_pid_list): Record the PID's status.
6916         (linux_record_stopped_pid): Likewise.  Make static.
6917         (pull_pid_from_list): Return the saved status.
6918         (linux_nat_handle_extended): Deleted.
6919         (linux_handle_extended_wait): Combine with linux_nat_handle_extended.
6920         Make static.  Handle non-SIGSTOP for a new thread's first signal.
6921         (flush_callback): Handle unexpected pending signals.
6922         (linux_nat_wait): Update calls to changed functions.
6923         * linux-nat.h (linux_record_stopped_pid, linux_handle_extended_wait):
6924         Remove prototypes for newly static functions.
6925
6926 2007-01-08  Ulrich Weigand  <uweigand@de.ibm.com>
6927
6928         * gdbarch.sh (value_from_register): New gdbarch function.
6929         * gdbarch.c, gdbarch.h: Regenerate.
6930         * findvar.c (default_value_from_register): New function.
6931         (value_from_register): Use gdbarch_value_from_register.
6932         * value.h (default_value_from_register): Declare.
6933         * spu-tdep.c (spu_convert_register_p, spu_register_to_value,
6934         spu_value_to_register): Remove.
6935         (spu_value_from_register): New function.
6936         (spu_gdbarch_init): Do not call set_gdbarch_convert_register_p,
6937         set_gdbarch_register_to_value, set_gdbarch_value_to_register.
6938         Call set_gdbarch_value_from_register.
6939         * s390-tdep.c (s390_convert_register_p, s390_register_to_value,
6940         s390_value_to_register): Remove.
6941         (s390_value_from_register): New function.
6942         (s390_gdbarch_init): Do not call set_gdbarch_convert_register_p,
6943         set_gdbarch_register_to_value, set_gdbarch_value_to_register.
6944         Call set_gdbarch_value_from_register.
6945
6946 2007-01-08  Daniel Jacobowitz  <dan@codesourcery.com>
6947
6948         * NEWS: Add "set sysroot" and "show sysroot".
6949         * solib.c (solib_absolute_prefix): Delete.  Replace
6950         all uses with gdb_sysroot.
6951         (_initialize_solib): Add "set sysroot" and "show sysroot".
6952         Make "solib-absolute-prefix" an alias to it.
6953
6954 2007-01-08  Ulrich Weigand  <uweigand@de.ibm.com>
6955
6956         * frame.c (get_frame_register_bytes): New function.
6957         (put_frame_register_bytes): Likewise.
6958         * frame.h (get_frame_register_bytes): Declare.
6959         (put_frame_register_bytes): Likewise.
6960         * findvar.c (value_from_register): Always construct lval_register
6961         values.  Use get_frame_register_bytes.
6962         * valops.c (value_assign): Use get_frame_register_bytes and
6963         put_frame_register_bytes.
6964
6965 2007-01-08  Jim Blandy  <jimb@codesourcery.com>
6966
6967         * MAINTAINERS: Update Stan Shebs' email address.
6968
6969 2007-01-07  Joel Brobecker  <brobecker@adacore.com>
6970
6971         * ada-lang.c (is_known_support_routine): Improve the implementation.
6972
6973 2007-01-06  Joel Brobecker  <brobecker@adacore.com>
6974
6975         * ada-lang.c: Add include of source.h.
6976         (is_known_support_routine): Improve the check verifying that the file
6977         associated to this frame exists.
6978         * Makefile.in (ada-lang.o): Add dependency on source.h.
6979
6980 2007-01-07  Jim Blandy  <jimb@codesourcery.com>
6981
6982         * ax-general.c (ax_const_l): Select proper opcode for the given
6983         value.
6984
6985 2007-01-05  Vladimir Prus  <vladimir@codesourcery.com>
6986
6987         * varobj.c (c_value_of_root): Don't select frame if variable
6988         object is out of scope.
6989
6990 2007-01-05  Nick Roberts  <nickrob@snap.net.nz>
6991
6992         * varobj.c (struct varobj): New member print_value.
6993         (install_new_value): Compare last printed value with current one
6994         instead of contents.
6995         (new_variable): Initialize var->print_value to NULL.
6996         (free_variable): Free var->print_value.
6997         (value_get_print_value): New function derived from
6998         c_value_of_variable.
6999         (c_value_of_variable): Use value_get_print_value.
7000
7001 2007-01-05  Joel Brobecker  <brobecker@adacore.com>
7002
7003         * i386-tdep.c (i386_analyze_stack_align): Add comment.
7004
7005 2007-01-05  Joel Brobecker  <brobecker@adacore.com>
7006
7007         * NEWS: Add entries for new catch commands.
7008
7009 2007-01-05  Joel Brobecker  <brobecker@adacore.com>
7010
7011         * dwarf2read.c (partial_die_info): Add field has_byte_size.
7012         (add_partial_symbol): Correct identification of external references.
7013         (process_structure_scope): Likewise.
7014         (read_partial_die): Handle DW_AT_byte_size attribute.
7015
7016 2007-01-05  Daniel Jacobowitz  <dan@codesourcery.com>
7017
7018         * xml-support.c (gdb_xml_end_element): Remove wrong backslashes.
7019
7020 2007-01-05  Nick Roberts  <nickrob@snap.net.nz>
7021
7022         * varobj.c (get_type_deref): Fix variable objects for references to
7023         pointers.
7024
7025 2007-01-04  Daniel Jacobowitz  <dan@codesourcery.com>
7026
7027         * symtab.c (find_pc_sect_psymtab): Add comments.  Handle psymtabs
7028         with no symbols.
7029
7030 2007-01-04  Daniel Jacobowitz  <dan@codesourcery.com>
7031
7032         * memory-map.c (struct_memory_map_parsing_data): Remove most
7033         members.  Make property_name an array.
7034         (free_memory_map_parsing_data, memory_map_start_element)
7035         (memory_map_end_element, memory_map_character_data): Delete.
7036         (memory_map_start_memory, memory_map_end_memory)
7037         (memory_map_start_property, memory_map_end_property): New functions.
7038         (property_attributes, memory_children, memory_type_enum)
7039         (memory_attributes, memory_map_children, memory_map_elements): New.
7040         (parse_memory_map): Rewrite.
7041         * xml-support.c (debug_xml): New.
7042         (xml_get_required_attribute, xml_get_integer_attribute)
7043         (xml_get_enum_value, free_xml_parser, make_cleanup_free_xml_parser):
7044         Delete.
7045         (struct scope_level, struct gdb_xml_parser, gdb_xml_body_text)
7046         (gdb_xml_debug, gdb_xml_error, gdb_xml_values_cleanup)
7047         (gdb_xml_start_element, gdb_xml_start_element_wrapper)
7048         (gdb_xml_end_element, gdb_xml_end_element_wrapper, gdb_xml_cleanup)
7049         (gdb_xml_create_parser_and_cleanup, gdb_xml_parse)
7050         (gdb_xml_parse_ulongest, gdb_xml_parse_attr_ulongest)
7051         (gdb_xml_parse_attr_enum, show_debug_xml, _initialize_xml_support):
7052         New.
7053         * xml-support.h (struct gdb_xml_value, gdb_xml_attribute_handler)
7054         (enum gdb_xml_attribute_flag, struct gdb_xml_attribute)
7055         (enum gdb_xml_element_flag, struct gdb_xml_element)
7056         (gdb_xml_element_start_handler, gdb_xml_element_end_handler)
7057         (struct gdb_xml_enum): New.
7058         (gdb_xml_create_parser_and_cleanup, gdb_xml_parse, gdb_xml_debug)
7059         (gdb_xml_error, gdb_xml_parse_attr_ulongest)
7060         (gdb_xml_parse_attr_enum, gdb_xml_parse_ulongest): New prototypes.
7061         (xml_get_required_attribute, xml_get_integer_attribute)
7062         (xml_get_enum_value, make_cleanup_free_xml_parser): Delete prototypes.
7063         * Makefile.in (xml_support_h, xml-support.o): Update.
7064
7065 2007-01-04  Daniel Jacobowitz  <dan@codesourcery.com>
7066
7067         * Makefile.in (eval.o): Update dependencies.
7068         * eval.c: Include "ui-out.h" and "exceptions.h".
7069         (evaluate_subexp_standard): Use TRY_CATCH around value_of_variable.
7070         Use value_zero if an error occurs when avoiding side effects.
7071         * varobj.c (c_value_of_root): Initialize new_val.
7072
7073 2007-01-04  Daniel Jacobowitz  <dan@codesourcery.com>
7074
7075         * varobj.c (varobj_list_children): Stop if the number of children is
7076         unknown.
7077         (c_number_of_children):
7078
7079 2007-01-04  Mark Kettenis  <kettenis@gnu.org>
7080
7081         * alpha-tdep.c (alpha_register_name): Use ARRAY_SIZE.
7082         (alpha_read_insn, alpha_skip_prologue, alpha_heuristic_proc_start)
7083         (alpha_heuristic_frame_unwind_cache, alpha_next_pc)
7084         (alpha_gdbarch_init): Use ALPHA_INSN_SIZE, ALPHA_REGISTER_SIZE and
7085         sizeof, instead of hardcoded constants.
7086
7087 2007-01-04  Daniel Jacobowitz  <dan@codesourcery.com>
7088
7089         * CONTRIBUTE: Use sourceware.org.
7090
7091 2007-01-04  Daniel Jacobowitz  <dan@codesourcery.com>
7092
7093         * buildsym.c (start_subfile): Handle producer.
7094         (record_producer): New function.
7095         * buildsym.h (struct subfile): Include producer.
7096         (record_producer): New prototype.
7097         * dwarf2-frame.c (struct dwarf2_cie): Add version and augmentation.
7098         (struct dwarf2_frame_state): Add armcc_cfa_offsets_sf and
7099         armcc_cfa_offsets_reversed.
7100         (execute_cfa_program): Handle armcc_cfa_offsets_sf.
7101         (dwarf2_frame_find_quirks): New function.
7102         (dwarf2_frame_cache): Call it.  Handle armcc_cfa_offsets_reversed.
7103         (decode_frame_entry_1): Record the CIE version.  Record the
7104         augmentation.  Skip armcc augmentations.
7105         * dwarf2read.c (read_file_scope): Save the producer.
7106         * symtab.h (struct symtab): Rename unused version member to
7107         producer.
7108
7109 2007-01-04  Daniel Jacobowitz  <dan@codesourcery.com>
7110
7111         * configure.ac (build_warnings): Use -Wall and
7112         -Wdeclaration-after-statement.
7113         * configure: Regenerated.
7114
7115 2007-01-04  Vladimir Prus  <vladimir@codesourcery.com>
7116
7117         Simplify access to variours properties of child
7118         variable objects in C.
7119         * varobj.c (value_struct_element_index): New function.
7120         (c_describe_child): New function.
7121         (c_name_of_child, c_value_of_child)
7122         (c_type_of_child): Rewrite to use c_describe_child.
7123
7124 2007-01-04  Vladimir Prus  <vladimir@codesourcery.com>
7125
7126         gdb/
7127         * varobj.c: Include "vec.h". 
7128         (varobj_p): New typedef, declare vector of those.
7129         (struct varobj): Use vector for the 'children' member.
7130         (child_exists): Remove.
7131         (save_child_in_parent): Remove.
7132         (remove_child_from_parent): Remove.
7133         (struct varobj_child): Remove.
7134         (struct vstack): Remove.
7135         (vpush, vpop): Remove.
7136         (varobj_list_children): Adjust to work work vector.
7137         (varobj_update): Likewise. Use vectors for
7138         working stack and result.
7139         (delete_variable_1): Likewise.
7140         * Makefile.in (varobj.o): Update dependencies.
7141
7142 2007-01-04  Vladimir Prus  <vladimir@codesourcery.com>
7143
7144         Port from Apple's version.
7145         gdb/
7146         * varobj.c (type_changeable): Rename to...
7147         (varobj_value_is_changeable_p): ...this. Adjust all callers.
7148         (is_root_p): New function. Use it everywhere.
7149
7150 2007-01-04  Jim Blandy  <jimb@codesourcery.com>
7151
7152         * glibc-tdep.c (glibc_skip_solib_resolver): Look for '_dl_fixup',
7153         then plain 'fixup'.
7154
7155 2007-01-04  Joel Brobecker  <brobecker@adacore.com>
7156
7157         * hpread.c (hpread_start_psymtab): Remove unnecessary extern.
7158
7159 2007-01-04  Joel Brobecker  <brobecker@adacore.com>
7160
7161         * hpread.c (hpread_type_lookup): Fix compilation failure.
7162
7163 2007-01-04  Qinwei  <qinwei@sunnorth.com.cn>
7164
7165         * NEWS: New port to S+core.
7166         * MAINTAINERS (Write After Approval, Responsible Maintainers):
7167         Add myself.
7168
7169         * Makefile.in: Add dependencies for S+core files.
7170         * configure.tgt (score*, score-*-*): Add S+core target.
7171         * config/score/embed.mt: New file.
7172         * score-tdep.c: New file.
7173         * score-tdep.h: New file.
7174
7175 2007-01-04  Joel Brobecker  <brobecker@adacore.com>
7176
7177         * ada-lang.c (ada_evaluate_subexp) [OP_TYPE]: Return a value with
7178         the appropriate type rather than a bogus void type.
7179
7180 2007-01-04  Joel Brobecker  <brobecker@adacore.com>
7181
7182         * ada-lang.h (ada_find_printable_frame): Remove.
7183         (ada_exception_catchpoint_p, ada_decode_exception_location)
7184         (ada_decode_assert_location): Add declaration.
7185         * ada-lang.c: Add include of annotate.h and valprint.h.
7186         (exception_catchpoint_kind): New enum.
7187         (function_name_from_pc, is_known_support_routine)
7188         (ada_find_printable_frame, ada_unhandled_exception_name_addr)
7189         (ada_exception_name_addr_1, ada_exception_name_addr)
7190         (print_it_exception, print_one_exception, print_mention_exception)
7191         (print_it_catch_exception, print_one_catch_exception)
7192         (print_mention_catch_exception, catch_exception_breakpoint_ops)
7193         (print_it_catch_exception_unhandled)
7194         (print_one_catch_exception_unhandled)
7195         (print_mention_catch_exception_unhandled, print_it_catch_assert)
7196         (print_one_catch_assert, print_mention_catch_assert)
7197         (ada_exception_catchpoint_p, error_breakpoint_runtime_sym_not_found)
7198         (ada_get_next_arg, catch_ada_exception_command_split)
7199         (ada_exception_sym_name, ada_exception_sym_name)
7200         (ada_exception_breakption_ops, ada_exception_catchpoint_cond_string)
7201         (ada_parse_catchpoint_condition, ada_exception_sal)
7202         (ada_decode_exception_location)
7203         (ada_decode_assert_location): New function.
7204         (catch_exception_unhandled_breakpoint_ops): New global variable.
7205         (catch_assert_breakpoint_ops): New global variable.
7206         * breakpoint.c: Add include of ada-lang.h.
7207         (print_one_breakpoint): Do not print the condition for Ada
7208         exception catchpoints.
7209         (create_ada_exception_breakpoint): New function.
7210         (catch_ada_exception_command, catch_assert_command): New function.
7211         (catch_command_1): Add support for the new "catch exception" and
7212         "catch assert" commands.
7213         (_initialize_breakpoint): Add help description for the new catch
7214         commands.
7215         * Makefile.in (ada-lang.o): Add dependency on annotate.h and
7216         valprint.h.
7217         (breakpoint.o): Add dependency on ada-lang.h.
7218
7219 2007-01-03  Pedro Alves  <pedro_alves@portugalmail.pt>
7220
7221         * coffread.c (cs_to_section): If bfd_section is found, always
7222         return its section index.
7223         (coff_symtab_read): Determine the minimal_symbol_type using the
7224         bfd_section flags.
7225
7226 2007-01-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7227             Daniel Jacobowitz  <dan@codesourcery.com>
7228
7229         * Makefile.in (top.o): Update.
7230         * top.c (gdb_readline_wrapper_done, gdb_readline_wrapper_result)
7231         (saved_after_char_processing_hook, gdb_readline_wrapper_line)
7232         (struct gdb_readline_wrapper_cleanup, gdb_readline_wrapper_cleanup):
7233         New.
7234         (gdb_readline_wrapper): Rewrite to use asynchronous readline.
7235
7236 2007-01-03  Mark Kettenis  <kettenis@gnu.org>
7237
7238         * arm-linux-tdep.c (arm_linux_extract_return_value): Remove.
7239         (arm_linux_init_abi): Don't set deprecated_extract_return_value.
7240
7241 2007-01-03  Daniel Jacobowitz  <dan@codesourcery.com>
7242
7243         * ada-lang.c (find_struct_field): Initialize *byte_offset_p.
7244         * breakpoint.c (do_enable_breakpoint): Ignore both mem_cnt and i.
7245         * c-typeprint.c (c_type_print_varspec_suffix): Don't test length
7246         greater than or equal to zero.
7247         * m2-typeprint.c (m2_array): Likewise.
7248         * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
7249         * gdbtypes.c (copy_type_recursive): Correct == typo.
7250         * i386-tdep.c (i386_skip_prologue): Remove stray semicolon.
7251         * linux-nat.c (linux_nat_info_proc_cmd): Don't compare a pointer
7252         greater than zero.
7253         * macroscope.c (sal_macro_scope): Don't name a local variable "main".
7254         (default_macro_scope): Remove unused variable.
7255         * prologue-value.h (pv_area_find_reg): Don't name an argument
7256         "register".
7257         * remote-fileio.c (remote_fio_func_map): Add missing braces.
7258         * remote.c (sigint_remote_twice_token, sigint_remote_token): Change
7259         type.
7260         (cleanup_sigint_signal_handler): Remove casts.
7261         * valprint.c (val_print): Use a volatile local for the modified
7262         argument.
7263         * varobj.c (languages): Remove extra array dimension.
7264         (varobj_create): Correct access to languages array.
7265         * mi/mi-cmd-break.c (mi_cmd_break_insert, mi_cmd_break_watch): Add
7266         missing braces.
7267         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
7268         * mi/mi-cmd-env.c (mi_cmd_env_path, mi_cmd_env_dir): Likewise.
7269         * mi/mi-getopt.c (mi_valid_noargs): Likewise.
7270         * mi/mi-main.c (mi_cmd_data_read_memory): Likewise.
7271         (mi_cmd_data_write_memory): Likewise.
7272         * signals/signals.c (target_signal_to_string): Cast to int before
7273         comparing.
7274         * tui/tui-layout.c (init_and_make_win): Take and return a void *.
7275         Update all callers.
7276
7277 2007-01-03  Daniel Jacobowitz  <dan@codesourcery.com>
7278
7279         * NEWS: Mention pointer to member improvements.
7280         * Makefile.in (gnu-v3-abi.o): Delete special rule.
7281         (eval.o, gnu-v3-abi.o, ia64-tdep.o): Update.
7282         * ada-valprint.c (ada_print_scalar): Update for new type codes.
7283         * c-typeprint.c (c_print_type): Update for new type codes.
7284         (c_type_print_varspec_prefix, c_type_print_varspec_suffix)
7285         (c_type_print_base): Likewise.
7286         (c_type_print_args): Rewrite.
7287         * c-valprint.c (c_val_print): Update for new type codes.  Remove
7288         support for references to members.  Treat methods like functions.
7289         * cp-abi.c (cplus_print_method_ptr, cplus_method_ptr_size)
7290         (cplus_make_method_ptr, cplus_method_ptr_to_value): New.
7291         * cp-abi.h (cplus_print_method_ptr, cplus_method_ptr_size)
7292         (cplus_make_method_ptr, cplus_method_ptr_to_value): New prototypes.
7293         (struct cp_abi_ops): Add corresponding members.
7294         * cp-valprint.c (cp_print_class_method): Delete.
7295         (cp_find_class_member): New function.
7296         (cp_print_class_member): Use it.  Simplify support for bogus
7297         member pointers.
7298         * dwarf2read.c (quirk_gcc_member_function_pointer): Use
7299         lookup_methodptr_type.
7300         (read_tag_ptr_to_member_type): Likewise, and lookup_memberptr_type.
7301         * eval.c (evaluate_subexp_standard): Implement EVAL_SKIP for
7302         OP_SCOPE.  Update call to value_aggregate_elt.  Rewrite member
7303         pointer support.
7304         (evaluate_subexp_for_address): Handle OP_SCOPE explicitly.  Handle
7305         references returned by user defined operators.
7306         * f-typeprint.c (f_print_type, f_type_print_varspec_prefix)
7307         (f_type_print_varspec_suffix): Remove support for member pointers.
7308         * gdbtypes.c (lookup_memberptr_type): Renamed from lookup_member_type
7309         and adjusted.
7310         (smash_to_memberptr_type): Likewise, from smash_to_member_type.
7311         (lookup_methodptr_type): New.
7312         (rank_one_type): Adjust for TYPE_CODE_MEMBERPTR.
7313         (recursive_dump_type): Update for new types.
7314         * gdbtypes.h (enum type_code): Replace TYPE_CODE_MEMBER with
7315         TYPE_CODE_MEMBERPTR and TYPE_CODE_METHODPTR.
7316         (lookup_memberptr_type, lookup_methodptr_type)
7317         (smash_to_memberptr_type): New prototypes.
7318         (smash_to_method_type): Formatting fix.
7319         (lookup_member_type, smash_to_member_type): Delete prototypes.
7320         * gnu-v3-abi.c (gnuv3_get_vtable, gnuv3_get_virtual_fn): New.
7321         Do not rely on debug information for the vptr or the method's
7322         enclosing type.  Handle function descriptors for IA64.
7323         (gnuv3_virtual_fn_field): Rewrite using the new functions.
7324         (gnuv3_find_method_in, gnuv3_print_method_ptr)
7325         (gnuv3_method_ptr_size, gnuv3_make_method_ptr)
7326         (gnuv3_method_ptr_to_value): New.
7327         (init_gnuv3_ops): Set new members of gnu_v3_abi_ops.
7328         * hpread.c (hpread_type_lookup): Update for new types.
7329         * infcall.c (value_arg_coerce): Likewise.
7330         * m2-typeprint.c (m2_print_type): Remove explicit support
7331         for member pointers.
7332         * m2-valprint.c (m2_val_print): Likewise.
7333         * p-typeprint.c (pascal_type_print_varspec_prefix)
7334         (pascal_type_print_varspec_suffix, pascal_type_print_base): Likewise.
7335         * p-valprint.c (pascal_val_print): Likewise.
7336         (pascal_object_print_class_method, pascal_object_print_class_member):
7337         Delete.
7338         * p-lang.h (pascal_object_print_class_method)
7339         (pascal_object_print_class_member): Delete prototypes.
7340         * stabsread.c (read_type): Update for new types.
7341         * typeprint.c (print_type_scalar): Likewise.
7342         * valops.c (value_struct_elt_for_reference, value_namespace_elt)
7343         (value_maybe_namespace_elt, value_aggregate_elt): Add want_address
7344         argument.  Construct a pointer to member if the address of a
7345         function or data member is requested.
7346         (value_cast_pointers): Don't modify the input value.
7347         (value_cast): Adjust pointer to member handling for new types.
7348         Allow null pointer to member constants.  Don't modify the input
7349         value.
7350         (value_ind): Remove pointer to member check.  Handle function
7351         descriptors for function pointers.
7352         (value_struct_elt, value_find_oload_method_list, check_field):
7353         Remove pointer to member checks.
7354         * value.c (unpack_long): Allow pointers to data members.
7355         (value_from_longest): Allow member pointers.
7356         * value.h (value_aggregate_elt): Add want_address.
7357         * varobj.c (c_variable_editable): Remove check for members.
7358         * gdbarch.sh: Add vtable_function_descriptors and vbit_in_delta.
7359         * ia64-tdep.c (ia64_convert_from_func_ptr_addr): Handle descriptors
7360         in virtual tables.
7361         (ia64_gdbarch_init): Call set_gdbarch_vtable_function_descriptors.
7362         * c-lang.h (cp_print_class_method): Delete prototype.
7363         * arm-tdep.c (arm_gdbarch_init): Call set_gdbarch_vbit_in_delta.
7364         * mips-tdep.c (mips_gdbarch_init): Likewise.
7365         * gdbarch.c, gdbarch.h: Regenerated.
7366
7367 2007-01-01  Mark Kettenis  <kettenis@gnu.org>
7368
7369         * rs6000-tdep.c (rs6000_use_struct_convention)
7370         (rs6000_extract_return_value, rs6000_store_return_value)
7371         (rs6000_extract_struct_value_address): Remove.
7372         (rs6000_return_value): New function.
7373         (rs6000_gdbarch_init): Don't set deprecated_extract_return_value,
7374         store_return_value, deprecated_extract_struct_value_address and
7375         deprecated_use_struct_convention.  Use rs6000_return_value
7376         instead.
7377
7378 2007-01-02  Nick Roberts  <nickrob@snap.net.nz>
7379
7380         * mi/mi-cmds.c (mi_cmds): Remove entries for -display-delete,
7381         -display-disable, -display-enable, -display-insert and
7382         -display-list.
7383
7384 2007-01-01  Joel Brobecker  <brobecker@adacore.com>
7385
7386         * breakpoint.c (remove_breakpoint): Remove dead code.
7387
7388 2007-01-01  Nick Roberts  <nickrob@snap.net.nz>
7389
7390         * varobj.c: Include block.h.
7391         (c_value_of_root): Check scope within nested statements.
7392
7393 2007-01-01  Mark Kettenis  <kettenis@gnu.org>
7394
7395         * mi/mi-main.c (mi_cmd_data_write_register_values): Use
7396         regcache_cooked_write_signed instead of
7397         deprecated_write_register_bytes.
7398
7399 2007-01-01  Joel Brobecker  <brobecker@adacore.com>
7400
7401         * config/djgpp/fnchange.lst: Add entry for ChangeLog-2006.
7402
7403 2007-01-01  Joel Brobecker  <brobecker@adacore.com>
7404
7405         Followed the Start of New Year Procedure:
7406         * ChangeLog-2006: New file, containing all the entries for 2006.
7407         * ChangeLog: Removed all 2006 entries, and changed the reference
7408         to the previous ChangeLog to point to ChangeLog 2006.
7409         * top.c (print_gdb_version): Update copyright year.
7410
7411 2007-01-01  Mark Kettenis  <kettenis@gnu.org>
7412
7413         * Makefile.in (remote-sds.o): Remove.
7414         * remote-sds.c: Delete.
7415
7416 For older changes see ChangeLog-2006.
7417 \f
7418 Local Variables:
7419 mode: change-log
7420 left-margin: 8
7421 fill-column: 74
7422 version-control: never
7423 coding: utf-8
7424 End: