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