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