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