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