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