* jv-exp.y (insert_exp): Define using ISO syntax.
[external/binutils.git] / gdb / ChangeLog
1 2008-09-27  Tom Tromey  <tromey@redhat.com>
2
3         * jv-exp.y (insert_exp): Define using ISO syntax.
4         (copy_exp): Likewise.
5         (push_expression_name): Likewise.
6         (push_fieldnames): Likewise.
7         (java_type_from_name): Likewise.
8         (yyerror): Likewise.
9         (yylex): Likewise.
10         (parse_number): Likewise.
11
12 2008-09-26  Joel Brobecker  <brobecker@adacore.com>
13
14         * MAINTAINERS (GLOBAL MAINTAINERS): Add Pedro Alves.
15
16 2008-09-25  Stephan Springl  <springl-gdb@bfw-online.de> (tiny change)
17
18         * stack.c (print_frame_args): Fix typos in comments.
19
20 2008-09-25  Sérgio Durigan Júnior  <sergiodj@linux.vnet.ibm.com>
21
22         * linux-nat.c (get_pending_status): Fix argument to WIFSTOPPED.
23
24 2008-09-24  Vladimir Prus  <vladimir@codesourcery.com>
25
26         * remote-sim.c (gdbsim_create_inferior): Fix missing parenthesis.
27         
28 2008-09-24  Andreas Schwab  <schwab@suse.de>
29
30         * frame.c (get_frame_register_bytes): Take pseudo registers into
31         account.  Avoid excessive function calls.
32
33 2008-09-23  Doug Evans  <dje@google.com>
34
35         * dcache.c (state_chars): New static global.
36         (ENTRY_INVALID,ENTRY_VALID): Renamed from ENTRY_BAD,ENTRY_OK.
37         All uses updated.
38         (dcache_info): Print cache state as mnemonically useful letters instead
39         of magic numbers.
40
41         * dwarf2read.c (comp_unit_head): Reorganize for better packing.
42
43 2008-09-22  Tom Tromey  <tromey@redhat.com>
44
45         * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't use
46         printf_filtered.
47
48 2008-09-22  Pedro Alves  <pedro@codesourcery.com>
49
50         * infrun.c (follow_exec): Don't do a generic mourn.  Instead
51         inline the required bits.
52         * breakpoint.h (enum inf_context): Add inf_execd.
53
54 2008-09-22  Pedro Alves  <pedro@codesourcery.com>
55
56         * infrun.c (handle_inferior_event): In the follow exec case,
57         context-switch before doing anything else.
58
59 2008-09-22  Pedro Alves  <pedro@codesourcery.com>
60
61         * top.c (any_thread_of, kill_or_detach): New functions.
62         (quit_target): Iterate over all inferiors, killing or detaching
63         accordingly.
64
65 2008-09-22  Pedro Alves  <pedro@codesourcery.com>
66
67         Remove the attach_flag global, and make it per-inferior.
68
69         * inferior.h (attach_flag): Delete.
70         (inferior_process): Declare.
71         * solib.c (update_solib_list): Adjust.
72         * gnu-nat.c (gnu_create_inferior, gnu_attach): Adjust.
73         * inf-ptrace.c (inf_ptrace_detach): Adjust.
74         (inf_ptrace_files_info): Get it from the current inferior.
75         * inf-ttrace.c (inf_ttrace_attach): Adjust.
76         (inf_ttrace_files_info): Get it from the current
77         inferior.
78         * inflow.c (terminal_inferior, terminal_ours_1, set_sigint_trap)
79         (clear_sigint_trap): Get it from the current process.
80         * remote.c (extended_remote_attach_1)
81         (extended_remote_create_inferior_1): Adjust.
82         * top.c (quit_confirm, quit_target): Get it from the current inferior.
83         * procfs.c (do_detach): Adjust.
84         (procfs_wait): Get it from the event inferior.
85         (procfs_files_info): Get it from the current inferior.
86         * nto-procfs.c (procfs_files_info): Likewise.
87         (procfs_attach): Adjust.  Set the attach_flag here.
88         (do_attach): Don't set it here.
89         (procfs_detach): Don't clear it.
90         (procfs_mourn_inferior): Don't clear it.
91         * solib-osf.c (osf_solib_create_inferior_hook): Adjust.
92         * target.c (attach_flag): Delete.
93         (generic_mourn_inferior): Don't clear it.
94         * win32-nat.c (get_win32_debug_event): Get it from the event
95         process.
96         (do_initial_win32_stuff): Add attaching argument.  Set attach_flag
97         in the inferior accordingly.
98         (win32_attach): Don't set the attach_flag here.  Pass 1 to
99         do_intial_win32_stuff.
100         (win32_files_info): Get it from the current inferior.
101         (win32_create_inferior): Dont clear attach_flag here.  Pass 0 to
102         do_intial_win32_stuff.
103
104 2008-09-22  Pedro Alves  <pedro@codesourcery.com>
105
106         Make the stop_soon global be per-inferior instead.
107
108         * infcmd.c (attach_command_post_wait): Adjust.
109         (attach_command): Likewise.
110
111         * inferior.h (stop_soon): Delete.
112         (struct inferior): Add stop_soon member.
113
114         * infrun.c (stop_soon): Delete.
115         (clear_proceed_status, start_remote)
116         (fetch_inferior_event, handle_inferior_event): Adjust.
117         (signal_stop_state): Don't check stop_soon here.  Check in callers
118         instead.
119         (save_inferior_status, restore_inferior_status): Adjust.
120
121         * linux-nat.c (linux_nat_resume, linux_nat_wait): Always pass
122         signals to common code if starting up the inferior.
123         
124         * inferior.h (struct inferior_info): Added stop_soon member.
125         * inferior.c (add_inferior) Clear stop_soon.
126
127         * mips-tdep.c (heuristic_proc_start): Adjust.
128         * nto-procfs.c (procfs_create_inferior): Adjust.
129         * solib-irix.c (irix_solib_create_inferior_hook): Adjust.
130         * solib-osf.c (osf_solib_create_inferior_hook): Adjust.
131         * solib-sunos.c (sunos_solib_create_inferior_hook): Adjust.
132         * solib-svr4.c (svr4_solib_create_inferior_hook): Adjust.
133
134         * win32-nat.c (do_initial_win32_stuff): Adjust.
135
136         * alpha-tdep.c (alpha_heuristic_proc_start): Adjust.
137
138 2008-09-22  Pedro Alves  <pedro@codesourcery.com>
139
140         Implement remote multi-process extensions.
141
142         * remote.c (struct remote_state): Add extended and
143         multi_process_aware fields.
144         (remote_multi_process_p): New.
145         (PACKET_vKill): New.
146         (record_currthread): Use thread_change_ptid.  Notice new
147         inferiors.
148         (set_thread, remote_thread_alive): Use write_ptid.
149         (write_ptid, read_ptid): New.
150         (remote_current_thread, remote_threads_extra_info): Use them.
151         (remote_threads_info): Likewise.  Detect new inferiors.
152         (remote_start_remote): Add inferior to inferior list.
153         (remote_multi_process_feature): New.
154         (remote_protocol_features): Add "multiprocess" feature.
155         (remote_query_supported): Pass "multiprocess+" as supported
156         features.
157         (remote_open_1): Clear multi_process_aware.  Set extended
158         accordingly.
159         (remote_detach_1): Detach current process.  Use extended packet
160         format for extended-remote multi-process.  Detach process from the
161         inferior list.  Only mourn after printing output.
162         (extended_remote_attach_1): Add process to the inferior list.
163         (remote_vcont_resume): Use write_ptid to pass the thread ids.
164         (remote_wait): Use read_ptid.  Implement the extended
165         multi-process extension format of the 'W' and 'X' reply packets.
166         Remove exited inferiors from inferior list.
167         (remote_xfer_memory): Set general thread.
168         (remote_vkill): New.
169         (extended_remote_kill): New.
170         (remote_mourn_1): Discard all inferiors.
171         (select_new_thread_callback): New.
172         (extended_remote_mourn_1): If there are more processes to debug,
173         switch to a thread in another process, and don't pop the target.
174         (extended_remote_create_inferior_1): Add the new process to the
175         inferior list.
176         (remote_stopped_by_watchpoint): Indenting.
177         (remote_xfer_partial): Set the general thread.
178         (remote_pid_to_str): If the remote is multi-process aware, print
179         the process id as well as the thread id.
180         (remote_get_thread_local_address): Use write_ptid.
181         (init_extended_remote_ops): Register extended_remote_kill.
182         (_initialize_remote): Register new packets.  Change
183         magic_null_ptid's, not_sent_ptid's and any_thread_ptid's pid
184         member to 42000.
185
186         * thread.c (thread_change_ptid): Also account for the inferior pid
187         changing.
188
189         * inferior.h (discard_all_inferiors): Declare.
190         * inferior.c (discard_all_inferiors): New.
191
192 2008-09-22  Pedro Alves  <pedro@codesourcery.com>
193
194         * gnu-nat.c (gnu_attach): Add process to inferiors table.
195         (gnu_detach): Remove it.
196         * go32-nat.c (go32_create_inferior): Add process to gdb's inferior
197         table.
198         * inf-ptrace.c (inf_ptrace_follow_fork): Delete and add inferiors
199         to inferior table accordingly.
200         (inf_ptrace_attach): Add new process to inferior table.
201         (inf_ptrace_detach): Remove it.
202         * inf-ttrace.c (inf_ttrace_follow_fork): Delete and add inferiors
203         to inferior table accordingly.
204         (inf_ttrace_attach): Add process to inferior table.
205         (inf_ttrace_detach): Remove it.
206         * linux-fork.c (init_fork_list): Delete any left over inferior.
207         (linux_fork_mourn_inferior, detach_fork_command): Also delete
208         processes from inferior list.
209         * monitor.c (monitor_open): Add process to inferior list.
210         (monitor_close): Remove it.
211         * nto-procfs.c (procfs_attach): Add process to inferior list.
212         Find threads after pushing the target.
213         (procfs_detach): Remove process from inferior list.
214         (procfs_create_inferior): Add process to inferior list.
215         * procfs.c (procfs_detach): Remove process from inferior list.
216         (do_attach): Add process to inferior list.
217         * remote-sim.c (sim_create_inferior): Add process to inferior list.
218         (gdbsim_close): Remove it.
219         * target.c (generic_mourn_inferior): If inferior_ptid is not
220         null_ptid, remove the corresponding inferior from inferior list.
221         * win32-nat.c (do_initial_win32_stuff): Add process to inferior list.
222         (win32_detach): Remove it.
223         * linux-nat.c (linux_child_follow_fork): Delete and add inferiors
224         to inferior list accordingly.
225         * fork-child.c (fork_inferior): Add process to inferior list.
226         * corelow.c (CORELOW_PID): Define.
227         (core_close): Remove core from inferior list.
228         (core_open): Add it.
229
230 2008-09-22  Pedro Alves  <pedro@codesourcery.com>
231
232         * inferior.h: Forward declare struct ui_out.
233         Forward declare struct private_inferior.
234         (struct inferior): New.
235         (init_inferior_list, add_inferior, add_inferior_silent)
236         (delete_inferior, delete_inferior_silent, detach_inferior)
237         (gdb_inferior_id_to_pid, pid_to_gdb_inferior_id, in_inferior_list)
238         (valid_inferior_id, find_inferior_pid): New functions.
239         (inferior_callback_func): New typedef.
240         (iterate_over_inferiors, print_inferior, have_inferiors)
241         (current_inferior): New functions.
242         * inferior.c: New file.
243
244         * Makefile.in (SFILES): Add inferior.c.
245         (COMMON_OBS): Add inferior.o.
246
247 2008-09-22  Jonathan Larmour  <jifl@eCosCentric.com>
248
249         * arm-tdep.c (arm_skip_prologue): Call skip_prologue_using_sal
250         instead of determining symbol and line info directly.
251         * MAINTAINERS: Update my email address.
252
253 2008-09-22  Daniel Jacobowitz  <dan@codesourcery.com>
254
255         * symtab.c (skip_prologue_using_sal): Treat two consecutive lines
256         at the same address as a prologue marker.  Do not skip an entire
257         function.
258
259 2008-09-22  Andrew Stubbs  <ams@codesourcery.com>
260
261         * frame.c (get_frame_register_bytes): Comment improvments.
262
263 2008-09-22  Pedro Alves  <pedro@codesourcery.com>
264
265         * linux-nat.c (linux_nat_wait): Only use set_ignore_sigint in
266         all-stop mode.
267
268 2008-09-19  Andrew Stubbs  <ams@codesourcery.com>
269
270         * MAINTAINERS: Update my email address.
271
272 2008-09-19  Andrew Stubbs  <ams@codesourcery.com>
273
274         * frame.c (get_frame_register_bytes): Detect bad debug info.
275
276 2008-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
277
278         Fix a crash on uninitialized ECS->EVENT_THREAD for a newly found thread.
279         * infrun.c (wait_for_inferior): Move this ECS->EVENT_THREAD
280         initialization ...
281         (fetch_inferior_event): ... and this ECS->EVENT_THREAD initialization
282         ...
283         (handle_inferior_event): ... here after the add_thread call together
284         with the local adjust_pc_after_break and reinit_frame_cache calls.
285
286 2008-09-16  David Daney  <ddaney@avtrex.com>
287
288         * breakpoint.c (bpstat_stop_status): Clear breakpoint_at for
289         all hardware bpstats.
290
291 2008-09-16  Joel Brobecker  <brobecker@adacore.com>
292
293         * gstdint.h: Delete.
294
295 2008-09-15  Mark Kettenis  <kettenis@gnu.org>
296
297         * infcall.c (generic_push_dummy_code): Remove.
298         (push_dummy_code): Unconditionally call gdbarch_push_dummy_code.
299
300 2008-09-15  Doug Evans  <dje@google.com>
301
302         * dwarf2read.c (struct abbrev_info): Make members name, form 16 bits.
303         (struct attribute): Ditto.
304
305 2008-09-14  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
306
307         * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_unwind_cache): Record
308         HPPA_IPSW_REGNUM and HPPA_SAR_REGNUM values.
309
310         * hppa-linux-tdep.c (hppa_dwarf_reg_to_regnum): Remove surrounding
311         "#if 0" "#endif".  Fix mapping of DWARF DBX registers to GDB registers.
312         Correct arguments and improve comments.
313         (hppa_linux_init_abi): Call set_gdbarch_dwarf2_reg_to_regnum.  Delete
314         disabled code.
315         * hppa-tdep.c (hppa64_dwarf_reg_to_regnum): Fix check for floating
316         point DBX register, change error to warning, and improve comments.
317
318 2008-09-14  Doug Evans  <dje@google.com>
319
320         * dwarf2read.c (struct die_info): Make members tag, num_attrs 16 bits.
321
322 2008-09-14  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
323
324         * hppa-linux-tdep.c (hppa_linux_supply_fpregset): Correct iteration.
325
326 2008-09-13  Joel Brobecker  <brobecker@adacore.com>
327
328         * defs.h (GCC_GENERATED_STDINT_H): Define.
329
330 2008-09-13  Tom Tromey  <tromey@redhat.com>
331
332         * varobj.c (varobj_set_display_format): Use xfree.
333         * tracepoint.c (stringify_collection_list): Use xfree.
334         * remote-fileio.c (remote_fileio_reset): Use xfree.
335         * mipsread.c (read_alphacoff_dynamic_symtab): Use xfree.
336         * dfp.c (decimal_from_floating): Use xfree, xstrprintf.  Don't use
337         asprintf.
338         * cp-support.c (mangled_name_to_comp): Use xfree.
339
340 2008-09-13  Joel Brobecker  <brobecker@adacore.com>
341
342         * ada-lang.c (remove_extra_symbols): Remove stub symbols if
343         the associated complete symbol is also in the list.
344         (ada_add_local_symbols, ada_add_non_local_symbols): New functions,
345         extracted out from ada_lookup_symbol_list.
346         (ada_lookup_symbol_list): Use them.  Remove the search through
347         the minimal symbols.
348
349 2008-09-13  Joel Brobecker  <brobecker@adacore.com>
350
351         * dwarf2read.c (add_partial_subprogram): New procedure.
352         (scan_partial_symbols): Use it.
353         (load_partial_dies): Read in children of subprogram and lexical
354         blocks for Ada compilation units.
355
356 2008-09-13  Tom Tromey  <tromey@redhat.com>
357
358         * symfile.c (build_id_verify): Free 'found'.
359         (find_separate_debug_file): Use xfree, not free.
360
361 2008-09-12  Doug Evans  <dje@google.com>
362
363         * corefile.c (write_memory): Remove unnecessary copying.
364
365         * sol-thread.c (_initialize_sol_thread): Add FIXME regarding
366         order of _initialize_* fns.
367
368         * dwarf2read.c (comp_unit_head): Rename first_die_ptr to
369         first_die_offset.  All uses updated.
370         Delete unused members cu_head_ptr, next.
371         Move members base_known, base_address to ...
372         (dwarf2_cu) ... here.  All uses updated.
373
374 2008-09-12  Pedro Alves  <pedro@codesourcery.com>
375
376         * Makefile.in (generated_files): Add $(NAT_GENERATED_FILES).
377         * config/i386/i386gnu.mh (NAT_GENERATED_FILES): New.
378
379 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
380
381         * fork-child.c (startup_inferior): Use target_wait and target_resume
382         directly instead of calling wait_for_inferior / resume.
383
384         * infcmd.c (kill_if_already_running): Do not call no_shared_libraries
385         or init_wait_for_inferior.
386         (run_command_1): Call init_wait_for_inferior.
387
388 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
389
390         * gdbtypes.h (builtin_type_void_data_ptr, builtin_type_void_func_ptr,
391         builtin_type_CORE_ADDR, builtin_type_char, builtin_type_short,
392         builtin_type_int, builtin_type_long, builtin_type_signed_char,
393         builtin_type_unsigned_char, builtin_type_unsigned_short,
394         builtin_type_unsigned_int, builtin_type_unsigned_long,
395         builtin_type_float, builtin_type_double, builtin_type_long_double,
396         builtin_type_complex, builtin_type_double_complex, builtin_type_string,
397         builtin_type_bool, builtin_type_long_long,
398         builtin_type_unsigned_long_long): Remove macros.
399
400         (builtin_type_f_character, builtin_type_f_integer,
401         builtin_type_f_integer_s2, builtin_type_f_logical,
402         builtin_type_f_logical_s1, builtin_type_f_logical_s2,
403         builtin_type_f_real, builtin_type_f_real_s8, builtin_type_f_real_s16,
404         builtin_type_f_complex_s8, builtin_type_f_complex_s16,
405         builtin_type_f_complex_s32): Likewise.
406
407         (builtin_type_m2_char, builtin_type_m2_int, builtin_type_m2_card,
408         builtin_type_m2_real, builtin_type_m2_bool): Likewise.
409
410         (struct builtin_f_type, builtin_f_type): Move to f-lang.h.
411         (struct builtin_m2_type, builtin_m2_type): Move to m2-lang.h.
412
413         * f-lang.h (struct builtin_f_type, builtin_f_type): Move here.
414         * m2-lang.h (struct builtin_m2_type, builtin_m2_type): Move here.
415
416 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
417
418         * solib-svr4.c (LM_ADDR_FROM_LINK_MAP): Use builtin types of
419         target_gdbarch instead of builtin_type_void_data_ptr.
420         (LM_DYNAMIC_FROM_LINK_MAP, LM_NEXT, LM_NAME,
421         IGNORE_FIRST_LINK_MAP_ENTRY, scan_dyntag, elf_locate_base,
422         solib_svr4_r_map, solib_svr4_r_brk, solib_svr4_r_ldsomap,
423         open_symbol_file_object): Likewise.
424         * nto-tdep.c (LM_ADDR): Likewise.
425
426 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
427
428         * bsd-uthread.c (bsd_uthread_read_memory_address): New function.
429         (bsd_uthread_fetch_registers, bsd_uthread_store_registers,
430         bsd_uthread_wait, bsd_uthread_find_new_threads): Use it.
431
432 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
433
434         * procfs.c (procfs_address_to_host_pointer): Use target_gdbarch
435         and its associated types to perform pointer conversion.
436         (procfs_can_use_hw_breakpoint): Likewise.
437         (procfs_auxv_parse): Remove unused variable.
438
439 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
440
441         * auxv.c (default_auxv_parse): Use gdbarch_ptr_bit (target_gdbarch)
442         instead of builtin_type_void_data_ptr.
443         * target.c (default_region_ok_for_hw_watchpoint): Likewise.
444
445 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
446
447         * expprint.c (print_subexp_standard): Compare against builtin type
448         associated with exp->gdbarch instead of builtin_type_char.
449
450         * f-valprint.c (f_val_print): Use extract_unsigned_integer to
451         extract values of arbitrary logical type.  Handle arbitrary
452         complex types.
453
454         * printcmd.c (float_type_from_length): New function.
455         (print_scalar_formatted, printf_command): Use it.
456
457 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
458
459         * valops.c: Include "objfiles.h" and "symtab.h".
460         (find_function_in_inferior): New argument OBJF_P.  Use it to return
461         objfile where function is defined.  Use per-objfile arch types
462         instead of builtin_type_ to define default return type.
463
464         * linux-fork.c (checkpoint_command): Update calls.  Use per-objfile
465         architecture to define inferior call argument types.
466         * gcore.c (derive_heap_segment): Likewise.
467         * objc-lang.c (value_nsstring): Likewise.
468         * scm-lang.c (scm_lookup_name): Likewise.
469         * scm-valprint.c (scm_inferior_print): Likewise.
470         * valops.c (value_allocate_space_in_inferior): Likewise.
471
472         * eval.c (evaluate_subexp_standard): Update calls.
473         * objc-lang.c (lookup_objc_class, print_object_command): Likewise.
474
475         * linux-fork.c: Include "objfiles.h".
476         * scm-lang.c: Include "objfiles.h".
477         * scm-valprint.c: Include "objfiles.h".
478
479 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
480
481         * gdbarch.sh (name_of_malloc): Remove.
482         * gdbarch.c, gdbarch.h: Re-generate.
483         * valops.c (value_allocate_space_in_inferior): Do not call
484         gdbarch_name_of_malloc.
485
486 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
487
488         * valarith.c (value_x_unop): Use builtin_type_int8 as type for
489         UNOP_POSTINCREMENT/UNOP_POSTDECREMENT constant 0 argument.
490         (value_bit_index): Use extract_unsigned_integer
491         instead of unpack_long to read single byte.
492
493 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
494
495         * infcall.c (value_arg_coerce): Add GDBARCH parameter.  Use its
496         associates types instead of builtin_type_ macros.
497         (find_function_addr): Leave output VALUE_TYPE NULL if unknown.
498         (call_function_by_hand): Use per-architecture "int" type as
499         fall-back if find_function_addr returns NULL VALUE_TYPE.
500         Update call to value_arg_coerce.
501
502 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
503
504         * cp-abi.h (cplus_method_ptr_size): Add TO_TYPE parameter.
505         (cplus_make_method_ptr): Add TYPE parameter.
506         * cp-abi.c (cplus_method_ptr_size): Add TO_TYPE parameter.  Pass it
507         on to current_cp_abi.method_ptr_size callback.
508         (cplus_make_method_ptr): Add TYPE parameter.  Pass it on to
509         current_cp_abi.make_method_ptr callback.
510
511         * gdbtypes.c (lookup_methodptr_type): Pass target type
512         argument to cplus_method_ptr_size.
513         * valops.c (value_cast): Pass type argument to cplus_make_method_ptr.
514         (value_struct_elt_for_reference): Likewise.
515
516         * gnu-v3-abi.c (get_class_arch): New function.
517         (vtable_address_point_offset): Add GDBARCH parameter.  Use it
518         instead of current_gdbarch.  Update all callers.
519         (gnuv3_get_vtable): Likewise.
520         (gnuv3_get_virtual_fn): Likewise.
521         (gnuv3_decode_method_ptr): Likewise.
522         (gnuv3_rtti_type): Call get_class_arch to determine architecture.
523         Use it instead of current_gdbarch.
524         (gnuv3_virtual_fn_field): Likewise.
525         (gnuv3_baseclass_offset): Likewise.
526         (gnuv3_print_method_ptr): Likewise.
527         (gnuv3_method_ptr_to_value): Likewise.
528         (gnuv3_method_ptr_size): Add TYPE parameter.  Use it to determine
529         class architecture.  Use architecture types instead of builtin types.
530         (gnuv3_make_method_ptr): Likewise.
531
532         * cp-valprint.c (cp_print_class_member): Expect pointer type
533         instead of class type.  Use its length when extracting value.
534         * c-valprint.c (c_val_print): Update call to cp_print_class_member.
535
536 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
537
538         * stack.c (return_command): Use frame architecture to determine
539         default integer return type.
540
541         * f-valprint.c (f77_get_dynamic_lowerbound): Use frame architecture
542         to determine pointer types.
543         (f77_get_dynamic_upperbound): Likewise.
544
545         * objc-lang.c (OBJC_FETCH_POINTER_ARGUMENT): Remove.
546         (resolve_msgsend): Use architecture of current frame to determine
547         pointer types.  Inline OBJC_FETCH_POINTER_ARGUMENT.
548         (resolve_msgsend_stret, resolve_msgsend_super,
549         resolve_msgsend_super_stret): Likewise.
550
551 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
552
553         * alpha-tdep.c (alpha_register_type): Use builtin_type (gdbarch)
554         instead of builtin_type_ macros.
555         * amd64-tdep.c (amd64_register_type): Likewise.
556         (amd64_get_longjmp_target): Likewise.
557         * arm-tdep.c (arm_register_type): Likewise.
558         * avr-tdep.c (avr_register_type): Likewise.
559         * cris-tdep.c (cris_register_type, crisv32_register_type): Likewise.
560         * frv-tdep.c (frv_register_type): Likewise.
561         * h8300-tdep.c (h8300_register_type): Likewise.
562         * hppa-tdep.c (hppa32_convert_from_func_ptr_addr, 
563         hppa_skip_trampoline_code): Likewise.
564         * i386-tdep.c (i386_register_type): Likewise.
565         (i386_unwind_pc, i386_sse_type): Likewise.
566         * ia64-tdep.c (ia64_register_type): Likewise.
567         * m32r-tdep.c (m32r_register_type): Likewise.
568         * m68k-tdep.c (m68k_register_type, m68k_unwind_pc): Likewise.
569         * m88k-tdep.c (m88k_register_type): Likewise.
570         * mep-tdep.c (mep_register_type): Likewise.
571         * mips-tdep.c (mips_pseudo_register_type): Likewise.
572         * mn10300-tdep.c (mn10300_register_type): Likewise.
573         * mt-tdep.c (mt_copro_register_type): Likewise.
574         * rs6000-tdep.c (rs6000_builtin_type_vec64): Likewise.
575         (rs6000_convert_register_p, rs6000_register_to_value,
576         rs6000_value_to_register): Likewise.
577         * s390-tdep.c (s390_register_type): Likewise.
578         * sh64-tdep.c (sh64_register_type): Likewise.
579         (sh64_build_float_register_type, sh64_do_fp_register): Likewise.
580         * sh-tdep.c (sh_sh2a_register_type, sh_sh3e_register_type,
581         sh_sh4_build_float_register_type, sh_sh4_register_type,
582         sh_default_register_type): Likewise.
583         * sparc64-tdep.c (sparc64_register_type): Likewise.
584         * sparc-tdep.c (sparc32_register_type): Likewise.
585         * spu-tdep.c (spu_builtin_type_vec128, spu_register_type): Likewise.
586         * v850-tdep.c (v850_register_type): Likewise.
587         * vax-tdep.c (vax_register_type): Likewise.
588         * xtensa-tdep.c (xtensa_register_type, xtensa_unwind_pc,
589         xtensa_push_dummy_call): Likewise.
590
591         * std-regs.c (value_of_builtin_frame_fp_reg,
592         value_of_builtin_frame_pc_reg): Likewise.
593         * target-descriptions.c (tdesc_register_type): Likewise.
594
595 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
596
597         * ada-lang.c (ada_coerce_to_simple_array_type): Use builtin_type_int32
598         instead of builtin_type_int as default unspecified integral type.
599         (ada_index_type, ada_array_bound_from_type, ada_variant_discrim_type,
600         assign_component, to_fixed_range_type): Likewise.
601         * ada-typeprint.c (print_range, print_range_bound,
602         print_range_type_named): Likewise.
603         * ada-valprint.c (print_optional_low_bound, ada_val_print_1): Likewise.
604         * eval.c (evaluate_subexp_standard): Likewise.
605         * gnu-v2-abi.c (gnuv2_virtual_fn_field): Likewise.
606         * gnu-v3-abi.c (gnuv3_get_virtual_fn, gnuv3_baseclass_offset,
607         build_gdb_vtable_type): Likewise.
608         * jv-lang.c (java_array_type): Likewise.
609         * m2-typeprint.c (m2_print_bounds, m2_is_long_set_of_type): Likewise.
610         * m2-valprint.c (m2_print_long_set): Likewise.
611         * parse.c (follow_types): Likewise.
612         * p-typeprint.c (pascal_type_print_base): Likewise.
613         * valops.c (value_one, value_array, value_string,
614         value_bitstring): Likewise.
615         * value.c (allocate_repeat_value, value_from_string): Likewise.
616         * varobj.c (c_describe_child): Likewise.
617         * mt-tdep.c (mt_register_type): Likewise.
618         * sh-tdep.c (sh_sh4_build_float_register_type): Likewise.
619         * sh64-tdep.c (sh64_build_float_register_type): Likewise.
620
621 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
622
623         * defs.h (struct gdbarch): Add forward declaration.
624         (set_next_address): Add GDBARCH argument.
625         * printcmd.c (set_next_address): Use it to find pointer type.
626         * breakpoint.c (breakpoint_1): Update call.
627         * source.c (line_info): Likewise.
628         * findcmd.c (find_command): Use current_gdbarch to find pointer type.
629
630         * breakpoint.c (set_breakpoint_count): Use platform-neutral
631         types for internal variable values.
632         * infrun.c (handle_inferior_event): Likewise.
633         * source.c (forward_search_command, reverse_search_command): Likewise.
634         * tracepoint.c (set_tracepoint_count, set_traceframe_num,
635         set_tracepoint_num, set_traceframe_context): Likewise.
636
637 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
638
639         * gdbtypes.h (struct builtin_type): Remove builtin_true_char
640         and builtin_true_unsigned_char.
641         (builtin_type_true_char): Remove macro, add extern declaration.
642         (builtin_type_true_unsigned_char): Add extern declaration.
643         * gdbtypes.c (builtin_type_true_char): New global variable.
644         (builtin_type_true_unsigned_char): Likewise.
645         (_initialize_gdbtypes): Initialize them.
646         (gdbtypes_post_init): Do not initialize builtin_true_char
647         and builtin_true_unsigned_char members of struct builtin_type.
648
649         * printcmd.c (print_scalar_formatted): Do not use builtin_type;
650         use builtin_type_true_unsigned_char instead.
651
652         * ada-valprint.c (ada_val_print_1): Use builtin_type_true_char
653         instead of builtin_type_char for internal string.
654
655 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
656
657         * gdbtypes.h (builtin_type_void): Remove macro, add declaration.
658         (builtin_type_f_void): Remove macro.
659         * gdbtypes.c (builtin_type_void): New global variable.
660         (_initialize_gdbtypes): Initialize it.
661
662         * gnu-v3-abi.c (build_gdb_vtable_type): Do not call
663         lookup_pointer_type or lookup_function_type on builtin_type_void.
664         * printcmd.c (set_next_address): Likewise.
665         * objc-lang.c (value_nsstring): Likewise.
666         * mt-tdep.c (mt_copro_register_type): Likewise.
667         * xtensa-tdep.c (xtensa_register_type): Likewise.
668
669         * symfile.c (syms_from_objfile): Remove special handling
670         of builtin_type_void and builtin_type_char.
671
672 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
673
674         * eval.c (evaluate_subexp_standard): Use exp->gdbarch types instead
675         of builtin_type_ macros when handling OP_OBJC_ operations.
676         * objc-lang.c (print_object_command): Likewise.
677
678 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
679
680         * ada-valprint.c: Include "objfiles.h".
681         (ada_val_print_1): Use the gdbarch associated with the objfile whether
682         a System.Address type is defined to retrieve the proper pointer type
683         to use to print it.
684
685 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
686
687         * ada-lang.c (value_pos_atr): Add TYPE argument.  Use it as
688         result type instead of builtin_type_int.
689         (value_subscript_packed): Use pos_atr instead of value_pos_atr.
690         (ada_value_subscript): Update call to value_pos_atr.
691         (ada_value_ptr_subscript): Likewise.
692         (ada_evaluate_subexp): Likewise.
693
694 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
695
696         * ada-lang.c (cast_to_fixed): Do not cast to builtin_type_double.
697         (cast_from_fixed_to_double): Rename to ...
698         (cast_from_fixed): ... this.  Add TYPE parameter.  Use it instead
699         of builtin_type_double.
700         (ada_value_cast): Use cast_from_fixed instead of casting result
701         of cast_from_fixed_to_double.
702         (ada_evaluate_subexp): Update calls to cast_from_fixed_to_double. 
703
704 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
705
706         * valops.c (value_ind): No longer allow dereferencing an
707         integer type.
708         * eval.c (evaluate_subexp_standard): Handle deferencing an
709         integer type here.
710         * ada-lang.c (ada_evaluate_subexp): Likewise.
711
712 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
713
714         * ada-valprint.c (ada_val_print_1): When implicitly dereferencing
715         a reference type, pass the reference type directly to unpack_pointer.
716         * c-valprint.c (c_val_print): Likewise.
717         * f-valprint.c (f_val_print): Likewise.
718         * m2-valprint.c (print_variable_at_address, m2_val_print): Likewise.
719         * p-valprint.c (pascal_val_print): Likewise.
720
721 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
722
723         * eval.c (evaluate_subexp_standard): Use builtin_type_int8
724         to construct the EVAL_SKIP dummy return value.
725         * ada-lang.c (ada_evaluate_subexp): Likewise.
726         * jv-lang.c (evaluate_subexp_java): Likewise.
727         * m2-lang.c (evaluate_subexp_modula2): Likewise.
728         * scm-lang.c (evaluate_exp): Likewise.
729
730 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
731
732         * value.h (coerce_enum, coerce_number): Remove prototypes.
733         * value.c (coerce_enum, coerce_number): Remove.
734         * valarith.c (value_x_binop): Do not call coerce_enum.
735         (value_x_unop): Likewise.
736         (value_logical_not): Call coerce_array instead of coerce_number.
737
738 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
739
740         * ax-gdb.c: Include "language.h".
741         (gen_frame_args_address): Add GDBARCH parameter; use it
742         instead of current_gdbarch.
743         (gen_frame_locals_address): Likewise.
744         (gen_var_ref): Add GDBARCH parameter.  Update calls to
745         gen_frame_args_address and gen_frame_locals_address.  Use
746         pointer type from gdbarch.
747         (gen_usual_unary): Add EXP parameter.  Use integer type
748         from exp->gdbarch.
749         (gen_usual_arithmetic): Likewise.
750         (gen_integral_promotions): Likewise.
751         (gen_add, gen_sub): Remove.
752         (gen_ptradd, gen_ptrsub, gen_ptrdiff): New functions.
753         (gen_logical_not): Use passed-in boolean result type
754         instead of builtin_type_int.
755         (gen_complement): Do not call gen_usual_unary or
756         gen_integral_promotions.
757         (gen_struct_ref): Call require_rvalue instead of gen_usual_unary.
758         (gen_repeat): Add EXP parameter.  Update call to gen_expr.
759         Use builtin_type_int32 as internal range type.
760         (gen_sizeof): Add EXP and SIZE_TYPE parameters.  Use SIZE_TYPE
761         as result type.  Update call to gen_expr.
762         (gen_expr): Add EXP parameter.  Update calls to gen_expr,
763         gen_repeat, gen_var_ref, gen_usual_unary, gen_usual_arithmetic,
764         and gen_integral_promotions.  Call gen_ptradd, gen_ptrsub,
765         gen_ptrdiff, or gen_binop instead of gen_add or gen_sub.
766         Use exp->gdbarch instead of current_gdbarch.
767         Call language_bool_type to determine result type of UNOP_LOGICAL_NOT.
768
769 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
770
771         * eval.c (evaluate_subexp_standard): Add calls to binop_promote
772         and unop_promote before calling value_binop et. al.
773         * ada-lang.c (ada_evaluate_subexp): Add calls to binop_promote
774         and unop_promote before calling value_binop et. al.
775
776         * valarith.c (value_binop): Do not call binop_promote or unop_promote.
777         (value_pos): Do not call unop_promote.
778         (value_neg, value_complement): Likewise.
779
780 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
781
782         * value.h (unop_promote, binop_promote): Add prototypes.
783         * eval.c (unop_promote, binop_promote): New functions.
784         * valarith.c (unop_result_type, binop_result_type): Remove.
785         (value_binop): Call binop_promote or unop_promote.
786         Inline remaining parts of binop_result_type.  Remove special
787         code to truncate integer values for unsigned operations.
788         (value_pos): Call unop_promote.  Inline remaining parts of
789         unop_result_type.
790         (value_neg, value_complement): Likewise.
791
792 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
793
794         * value.h (value_add, value_sub): Remove.
795         (value_ptradd, value_ptrsub, value_ptrdiff): Add prototypes.
796         * valarith.c (value_add, value_sub): Remove.
797         (value_ptradd, value_ptrsub, value_ptrdiff): New functions.
798         (find_size_for_pointer_math): Add assertion.  Update comment.
799         (value_binop): Update comment.
800
801         * eval.c (ptrmath_type_p): New function.
802         (evaluate_subexp_standard): Replace value_add and value_sub
803         by value_ptradd, value_ptrsub, value_ptrdiff or value_binop.
804         Use builtin_type_uint8 instead of builtin_type_char to hold
805         the increment for BINOP_{PRE,POST}{IN,DE}CREMENT operations.
806         * valarith.c (value_subscript): Replace value_add by
807         value_ptradd.  Replace value_sub by value_binop.
808         * ada-lang.c (ada_value_ptr_subscript): Likewise.
809         (ada_tag_name_2): Replace value_add by value_ptradd.
810         (ada_evaluate_subexp): Replace value_add and value_sub by
811         value_binop.
812         * m2-lang.c (evaluate_subexp_modula2): Replace value_add
813         by value_ptradd.
814         * gnu-v2-abi.c (gnuv2_virtual_fn_field): Likewise.
815         * gnu-v3-abi.c (gnuv3_method_ptr_to_value): Likewise.
816
817 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
818
819         * eval.c (evaluate_subexp_for_sizeof): Use builtin_int type of
820         the expression architecture instead of builtin_type_int as the
821         sizeof return type.
822
823 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
824
825         * expression.h (enum exp_opcode): Document OP_COMPLEX to take
826         a type parameter as expression element.
827         * eval.c (evaluate_subexp_standard) [OP_COMPLEX]: Retrieve result
828         type as expression element.
829         * f-exp.y: Pass in type when buildin OP_COMPLEX expression.
830         * parse.c (operator_length_standard): Update length of OP_COMPLEX.
831
832 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
833
834         * language.h (struct language_arch_info): New members
835         bool_type_default and bool_type_symbol.
836         (lang_bool_type): Remove prototype.
837         (LA_BOOL_TYPE): Remove macro.
838         (language_bool_type): Add prototype.
839         * language.c (lang_bool_type): Remove.
840         (language_bool_type): New function.
841
842         * value.h (value_in): Change return value to int.
843         * value.c (value_in): Return int instead of struct value *.
844
845         * eval.c (evaluate_subexp_standard): Call language_bool_type instead
846         of using LA_BOOL_TYPE.  Update call to value_in.
847         * ada-lang.c (ada_evaluate_subexp): Call language_bool_type instead
848         of using LA_BOOL_TYPE or builtin_type_int for boolean values.
849
850         * language.c (unknown_language_arch_info): Set bool_type_default member
851         of struct language_arch_info.
852         * ada-lang.c (ada_language_arch_info): Set bool_type_symbol and
853         bool_type_default members of struct language_arch_info.
854         * c-lang.c (c_language_arch_info): Set bool_type_default member
855         of struct language_arch_info.
856         (cplus_language_arch_info): Set bool_type_symbol and bool_type_default
857         members of struct language_arch_info.
858         * f-lang.c (f_language_arch_info): Set bool_type_symbol and
859         bool_type_default members of struct language_arch_info.
860         * jv-lang.c (java_language_arch_info): Set bool_type_symbol and
861         bool_type_default members of struct language_arch_info.
862         * m2-lang.c (m2_language_arch_info): Set bool_type_symbol and
863         bool_type_default members of struct language_arch_info.
864         * p-lang.c (p_language_arch_info): Set bool_type_symbol and
865         bool_type_default members of struct language_arch_info.
866
867 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
868
869         * jv-lang.c (enum java_primitive_types): New type.
870         (java_language_arch_info): New function.
871         (java_language): Use it instead of c_language_arch_info.
872
873 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
874
875         * value.h (value_bitstring_subscript): New prototype.
876         * valarith.h (value_bitstring_subscript): New function.
877         (value_subscript): No longer handle TYPE_CODE_BITSTRING.
878         * eval.c (evaluate_subexp_standard): Call value_bitstring_subscript
879         instead of value_subscript to handle TYPE_CODE_BITSTRING.
880
881 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
882
883         * expression.h (struct expression): New member GDBARCH.
884         * parse.c (parse_exp_in_context): Initialize it.
885         * parser-def.h (parse_gdbarch, parse_language): New macros.
886
887         * ada-exp.y (parse_type): New macro.
888         Replace builtin_type_ macros by using parse_type.
889         Replace current_language by parse_language.
890         * ada-lex.l (processInt): Replace current_gdbarch by parse_gdbarch.
891         Replace builtin_type_ macros.
892
893         * c-exp.y (parse_type): New macro.
894         Replace builtin_type_ macros by using parse_type.
895         (parse_number): Replace current_gdbarch by parse_gdbarch.
896         (yylex): Replace current_language by parse_language.
897
898         * f-exp.y (parse_type, parse_f_type): New macros.
899         Replace builtin_type_ macros by using parse_{f_,}type.
900         (parse_number): Replace current_gdbarch by parse_gdbarch.
901         (yylex): Replace current_language by parse_language.
902
903         * jv-exp.y (parse_type): New macro.
904         (parse_number): Replace builtin_type_ macros by using parse_type.
905
906         * m2-exp.y (parse_type, parse_m2_type): New macros.
907         Replace builtin_type_ macros by using parse_{m2_,}type.
908
909         * objc-exp.y (parse_type): New macro.
910         Replace builtin_type_ macros by using parse_type.
911         (parse_number): Replace current_gdbarch by parse_gdbarch.
912         (yylex): Replace current_language by parse_language.
913
914         * p-exp.y (parse_type): New macro.
915         Replace builtin_type_ macros by using parse_type.
916         (parse_number): Replace current_gdbarch by parse_gdbarch.
917         (yylex): Replace current_language by parse_language.
918
919 2008-09-11  Ulrich Weigand  <uweigand@de.ibm.com>
920
921         * parser-defs.h (write_exp_msymbol): Remove TEXT_SYMBOL_TYPE
922         and DATA_SYMBOL_TYPE arguments.
923         * parse.c (write_exp_msymbol): Remove TEXT_SYMBOL_TYPE and
924         DATA_SYMBOL_TYPE arguments.  Replace use of builtin_type_CORE_ADDR.
925         (write_dollar_variable): Update call.
926
927         * ada-exp.y (write_var_or_type): Update call.
928         * c-exp.y: Likewise.
929         * f-exp.y: Likewise.
930         * jv-exp.y: Likewise.
931         * m2-exp.y: Likewise.
932         * objc-exp.y: Likewise.
933         * p-exp.y: Likewise.
934
935 2008-09-10  Joel Brobecker  <brobecker@adacore.com>
936
937         * ada-lang.c (ada_parent_type): Add handling of the case where
938         the _parent field is a pointer and/or has a parallel XVS type.
939         (ada_evaluate_subexp) [OP_VAR_VALUE]: When doing an
940         EVAL_AVOID_SIDE_EFFECTS evaluation of a tagged type, return
941         the type of the tag instead of doing forcing an EVAL_NORMAL
942         expression evaluation.
943
944 2008-09-10  Paul N. Hilfinger  <hilfinger@adacore.com> 
945             Joel Brobecker  <brobecker@adacore.com>
946
947         * ada-lang.c (is_digits_suffix): New function.
948         (is_dot_digits_suffix): Remove.
949         (ada_lookup_symbol_list): Remove digits suffix from minimal symbols
950         before looking up in symbol table, and do not use wild matches on them.
951         (wild_match): Reimplement for speed and to allow matching of operator
952         symbols.
953         (is_valid_name_for_wild_match): Return zero for names that do not
954         follow the GNAT encoding.
955
956         (is_name_suffix): Fix typo in comment.
957         (to_record_with_fixed_variant_part): Ditto.
958
959 2008-09-10  Pedro Alves  <pedro@codesourcery.com>
960
961         * Makefile.in (gnu-nat.o): New rule.
962
963 2008-09-10  Joel Brobecker  <brobecker@adacore.com>
964
965         * ada-lang.c (ada_evaluate_subexp) [OP_ATR_SIZE]: Use
966         archecture-neutral builtin_type_int32 instead of builtin_type_int.
967
968 2008-09-10  Joel Brobecker  <brobecker@adacore.com>
969
970         * ada-lang.c (ada_evaluate_subexp) [BINOP_ADD, BINOP_SUB]:
971         Add special handling for pointer types.
972
973 2008-09-10  Pedro Alves  <pedro@codesourcery.com>
974
975         * inf-ttrace.c (inf_ttrace_follow_fork): Declare locals at the
976         right scope level.
977         (inf_ttrace_resume, inf_ttrace_wait): Typos.
978
979 2008-09-10  Ulrich Weigand  <uweigand@de.ibm.com>
980
981         * ada-lang.c (ada_array_length): Use builtin_type_int32 instead
982         of builtin_type_int.
983         (ada_evaluate_subexp) [UNOP_IN_RANGE]: Use operand range type
984         instead of builtin_type_int.
985
986 2008-09-09  Pedro Alves  <pedro@codesourcery.com>
987
988         * infrun.c (normal_stop): Run hook-stop last.
989
990 2008-09-09  Pedro Alves  <pedro@codesourcery.com>
991
992         * gnu-nat.c (gnu_pid_to_exec_file): Delete.
993         (init_gnu_ops): Don't register it.
994
995 2008-09-09  Pedro Alves  <pedro@codesourcery.com>
996
997         * gnu-nat.c (gnu_attach): Push target before fetching the list of
998         threads.
999
1000 2008-09-08  Daniel Jacobowitz  <dan@codesourcery.com>
1001
1002         * valops.c (value_cast_structs): Return NULL for failure.
1003         (value_cast): Handle NULL from value_cast_structs.
1004         (value_fetch_lazy): Call check_typedef.  Remove unused variable.
1005
1006 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1007
1008         * inferior.h (context_switch_to): Delete.
1009         * infrun.c (context_switch): Don't save and load infrun state.
1010         (context_switch_to): Delete.
1011
1012         * infcmd.c (proceed_thread_callback): Replace context_switch_to
1013         calls by switch_to_thread calls.
1014
1015         * gdbthread.h (save_infrun_state, load_infrun_state): Delete.
1016         * thread.c (main_thread_state, main_thread_executing): Delete.
1017         (inferior_thread): Delete references to them.
1018         (add_thread_silent): Fix case where we're adding a thread with the
1019         same ptid as an exited thread.  Remove references to
1020         context-switching.
1021         (load_infrun_state, save_infrun_state): Delete.
1022         (thread_alive, is_thread_state, any_running, is_executing)
1023         (set_executing): Remove the special handling for targets that
1024         don't register any thread.
1025         (restore_current_thread, thread_apply_all_command)
1026         (do_captured_thread_select): Unconditionally call
1027         switch_to_thread.
1028
1029         * mi/mi-main.c (mi_cmd_execute): Check for exited threads.
1030         Call switch_to_thread instead of context_switch_to.
1031
1032 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1033
1034         Remove global continuations in favour of a per-thread
1035         continuations.
1036
1037         * gdbthread.h (struct thread_info): Add comments around
1038         continuations and intermediate_continuations.
1039         (save_infrun_state, load_infrun_state): Delete continuations and
1040         intermediate_continuations arguments.
1041         * infrun.c (context_switch): Don't context-switch the continuations.
1042         * thread.c (clear_thread_inferior_resources): Discard all
1043         continuations of the thread we're clearing.
1044         (save_infrun_state, load_infrun_state): Delete continuations and
1045         intermediate_continuations arguments, and the code referencing
1046         them.
1047         * utils.c: Include "gdbthread.h".
1048         (cmd_continuation, intermediate_continuation): Delete.
1049         (add_continuation): Add thread_info* argument.  Install the
1050         continuation on it.
1051         (restore_thread_cleanup): New.
1052         (do_all_continuations_ptid, do_all_continuations_thread_callback):
1053         New.
1054         (do_all_continuations): Reimplement.
1055         (discard_all_continuations_thread_callback,
1056         discard_all_continuations_thread): New.
1057         (discard_all_continuations): Reimplement.
1058         (add_intermediate_continuation): Add thread_info* argument.
1059         Install the continuation on it.
1060         (do_all_intermediate_continuations_thread_callback)
1061         (do_all_intermediate_continuations_thread): New.
1062         (do_all_intermediate_continuations): Reimplement.
1063         (discard_all_intermediate_continuations_thread_callback): New.
1064         (discard_all_intermediate_continuations_thread): New.
1065         (discard_all_intermediate_continuations): Reimplement.
1066
1067         * breakpoint.c (until_break_command): Install the continuation on
1068         the current thread.
1069
1070         * defs.h (cmd_continuation, intermediate_continuation): Delete.
1071         (struct thread_info): Forward declare.
1072         (add_continuation, add_intermediate_continuation): Add
1073         thread_info* argument.
1074         (do_all_continuations_thread, discard_all_continuations_thread)
1075         (do_all_intermediate_continuations_thread)
1076         (discard_all_intermediate_continuations_thread): Declare.
1077         * inf-loop.c (inferior_event_handler): In non-stop only run
1078         continuations on the thread that stopped.  In all-stop, run
1079         continuations on all threads.
1080         * infcmd.c (step_once, finish_command): Adjust.
1081
1082 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1083
1084         Remove the global stop_step in favour of a per-thread
1085         stop_step.
1086
1087         * inferior.h (stop_step): Delete.
1088
1089         * gdbthread.h (struct thread_info): Add comments to stop_step.
1090         (save_infrun_state, load_infrun_state): Remove stop_step argument.
1091         * thread.c (load_infrun_state, save_infrun_state): Remove
1092         stop_step argument, and references to it.
1093
1094         * infrun.c (clear_proceed_status): Clear stop_step.
1095         (fetch_inferior_event): Adjust.
1096         (context_switch): Don't context-switch stop_step.
1097         (handle_inferior_event): Adjust.
1098         (normal_stop): Adjust.
1099         (save_inferior_status, restore_inferior_status): Adjust.
1100
1101         * infcmd.c (stop_step): Delete.
1102         (step_1, step_1_continuation, step_once, until_next_command):
1103         Adjust.
1104
1105 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1106
1107         Remove the global step_multi in favour of a per-thread
1108         step_multi.
1109
1110         * inferior.h (step_multi): Delete.
1111         * gdbthread.h (struct thread_info): Add comments around
1112         step_multi.
1113         (save_infrun_state, load_infrun_state): Remove step_multi
1114         parameter.
1115         * thread.c (load_infrun_state, save_infrun_state): Remove
1116         step_multi argument, and references to it.
1117         * infcmd.c (step_multi): Delete.
1118         (step_1): Adjust.
1119         (step_1_continuation, until_next_command): Adjust.
1120         * infrun.c (fetch_inferior_event): Adjust.
1121         (context_switch): Don't context-switch step_multi.
1122         (print_stop_reason, normal_stop): Adjust.
1123
1124 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1125
1126         Remove the global stop_signal in favour of a per-thread
1127         stop_signal.
1128
1129         * inferior.h (stop_signal): Delete.
1130         * gdbthread.h (save_infrun_state, load_infrun_state): Remove
1131         stop_signal argument.
1132         * thread.c (load_infrun_state, save_infrun_state): Remove
1133         stop_signal argument.  Don't reference it.
1134
1135         * infcmd.c (stop_signal): Delete.
1136         (program_info): Adjust.
1137         * infrun.c (resume): Clear stop_signal.
1138         (proceed): Adjust.  Pass the last stop_signal to the thread we're
1139         resuming.
1140         (context_switch): Don't context-switch stop_signal.
1141         (handle_inferior_event, keep_going): Adjust.
1142         (save_inferior_status, restore_inferior_status): Adjust.
1143
1144         * fbsd-nat.c: Include "gdbthread.h".
1145         (find_signalled_thread, find_stop_signal): New.
1146         (fbsd_make_corefile_notes): Use it.
1147         * fork-child.c (startup_inferior): Adjust.
1148
1149         * linux-nat.c (get_pending_status): Adjust.
1150         (linux_nat_do_thread_registers): Adjust.
1151         (find_signalled_thread, find_stop_signal): New.
1152         (linux_nat_do_thread_registers): Add stop_signal parameter.
1153         (struct linux_nat_corefile_thread_data): Add stop_signal member.
1154         (linux_nat_corefile_thread_callback): Pass stop_signal.
1155         (linux_nat_do_registers): Delete.
1156         (linux_nat_make_corefile_notes): Use find_stop_signal.  Assume
1157         there's always a thread.
1158
1159         * procfs.c (find_signalled_thread, find_stop_signal): New.
1160         (find_stop_signal): New.
1161         (procfs_do_thread_registers): Add stop_signal parameter.
1162         (struct procfs_corefile_thread_data): Add stop_signal member.
1163         (procfs_corefile_thread_callback): Pass args->stop_signal.
1164         (procfs_make_note_section): Find the last stop_signal.
1165
1166         * solib-irix.c: Include gdbthread.h.
1167         (irix_solib_create_inferior_hook): Adjust.
1168         * solib-osf.c: Include gdbthread.h.
1169         (osf_solib_create_inferior_hook): Adjust.
1170         * solib-sunos.c: Include gdbthread.h.
1171         (sunos_solib_create_inferior_hook): Adjust.
1172         * solib-svr4.c: Include gdbthread.h.
1173         (svr4_solib_create_inferior_hook): Adjust.
1174
1175         * win32-nat.c (do_initial_win32_stuff): Adjust.
1176
1177 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1178
1179         * gdbthread.h (struct thread_info): Add comments around
1180         proceed_to_finish.
1181         (save_infrun_state, load_infrun_state): Remove proceed_to_finish
1182         argument.
1183         * thread.c (load_infrun_state, save_infrun_state): Delete
1184         proceed_to_finish argument and references to it.
1185
1186         * infcall.c (call_function_by_hand): Adjust.
1187         * infcmd.c (finish_command): Adjust.
1188         * infrun.c (proceed_to_finish): Delete.
1189         (clear_proceed_status): Adjust.
1190         (context_switch): Don't context-switch proceed_to_finish.
1191         (normal_stop, save_inferior_status, restore_inferior_status):
1192         Adjust.
1193
1194 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1195
1196         * inferior.h (stop_bpstat): Delete.
1197
1198         * breakpoint.h (bpstat_do_actions): Remove bpstat* argument.
1199         
1200         * breakpoint.c (bpstat_do_actions): Rename to ...
1201         (bpstat_do_actions_1): ... this.  Make static.  Change return type
1202         to int.  Return true if a breakpoint proceeded.
1203         (bpstat_do_actions): New, as wrapper around bpstat_do_actions_1.
1204         (delete_breakpoint): Don't reference the global stop_bpstat; it's
1205         gone.
1206
1207         * gdbthread.h (struct thread_info): Add stop_bpstat.
1208         (save_infrun_state, load_infrun_state): Remove stop_bpstat
1209         argument.
1210         * thread.c (load_infrun_state, save_infrun_state): Remove
1211         stop_bpstat argument, and the code referencing it.
1212
1213         * infcall.c: Include "gdbthread.h".
1214         (call_function_by_hand): Adjust.
1215         * exceptions.c: Include "gdbthread.h".
1216         (throw_exception): Adjust.
1217         * infcmd.c (stop_bpstat): Delete.
1218         (continue_command): In all-stop, set the ignore count on the
1219         thread that reported the stop.  In non-stop, set it on the current
1220         thread.
1221         (finish_command_continuation): Adjust.
1222         (program_info): Adjust.
1223         * infrun.c (clear_proceed_status): Adjust.
1224         (context_switch): Don't context-switch stop_bpstat.
1225         (handle_inferior_event): Adjust.
1226         (normal_stop): Adjust.
1227         (save_inferior_status, restore_inferior_status): Adjust.
1228
1229         * inf-loop.c (inferior_event_handler): Remove parameter to
1230         bpstat_do_actions call.
1231         * top.c (command_loop): Remove parameter to bpstat_do_actions
1232         call.  Call it unconditionally.
1233         * event-top.c (command_handler): Ditto.
1234         * python/python.c (execute_gdb_command): Ditto.
1235
1236 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1237
1238         * inferior.h (step_over_calls): Delete.
1239
1240         * gdbthread.h (save_infrun_state, load_infrun_state): Remove
1241         step_over_calls argument.
1242         * thread.c (save_infrun_state, load_infrun_state): Remove
1243         step_over_calls argument.  Adjust.
1244
1245         * infcmd.c (step_over_calls): Delete.
1246         (step_1): Adjust.
1247         * infrun.c (clear_proceed_status): Adjust.
1248         (context_switch): Don't context-switch step_over_calls.
1249         (handle_inferior_event, save_inferior_status)
1250         (restore_inferior_status): Adjust.
1251
1252 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1253
1254         Remove context switching in favour of accessing thread_info fields
1255         directly.
1256
1257         * infrun.c (stepping_over_breakpoint, step_resume_breakpoint):
1258         Delete.
1259         (struct thread_stepping_state): Delete.
1260         (gtss, tss): Delete.
1261         (follow_inferior_reset_breakpoints, follow_exec)
1262         (resume, clear_proceed_status): Adjust.
1263         (prev_pc): Delete.
1264         (proceed, start_remote, init_wait_for_inferior): Adjust.
1265         (struct execution_control_state): Add event_thread member.
1266         (delete_step_resume_breakpoint_callback)
1267         (delete_step_thread_step_resume_breakpoint)
1268         (delete_step_thread_step_resume_breakpoint_cleanup)
1269         (delete_step_thread_step_resume_breakpoint): New.
1270         (wait_for_inferior, init_execution_control_state): Use
1271         delete_step_thread_step_resume_breakpoint_cleanup.
1272         (wait_for_inferior): Set the event_thread.
1273         (fetch_inferior_event): Ditto.  Delete the step-resume breakpoint
1274         with delete_step_thread_step_resume_breakpoint.
1275         (init_thread_stepping_state): Change parameter type to
1276         thread_info.  Adjust.
1277         (context_switch): Don't context switch prev_pc,
1278         stepping_over_breakpoint, step_resume_breakpoint,
1279         step_range_start, step_range_end, step_frame_id,
1280         tss->stepping_over_breakpoint,
1281         tss->stepping_through_solib_after_catch,
1282         tss->stepping_through_solib_catchpoints, tss->current_line, or
1283         tss->current_symtab.
1284         (adjust_pc_after_break, handle_inferior_event)
1285         (currently_stepping, step_into_function)
1286         (insert_step_resume_breakpoint_at_sal)
1287         (insert_longjmp_resume_breakpoint, keep_going): Adjust.
1288         (clear_stepping_state): New.
1289         (normal_stop): Adjust.
1290         (save_inferior_status, restore_inferior_status): Adjust.
1291
1292         * gdbthread.h (struct thread_info): Comments describing the
1293         members moved here.  Add step_after_step_resume_breakpoint.
1294         (delete_step_resume_breakpoint): Add thread_info argument.
1295         (save_infrun_state, load_infrun_state): Remove prev_pc,
1296         trap_expected, step_resume_breakpoint, step_range_start,
1297         step_range_end, step_frame_id, another_trap,
1298         stepping_through_solib_after_catch,
1299         stepping_through_solib_catchpoints, current_line and
1300         current_symtab function arguments.
1301         (inferior_thread): Declare.
1302
1303         * thread.c (inferior_thread): New.
1304         (delete_step_resume_breakpoint): Add a thread_info parameter and
1305         rewrite.
1306         (load_infrun_state, save_infrun_state): Remove prev_pc,
1307         trap_expected, step_resume_breakpoint, step_range_start,
1308         step_range_end, step_frame_id, stepping_over_breakpoint,
1309         stepping_through_solib_after_catch,
1310         stepping_through_solib_catchpoints, current_line and
1311         current_symtab args.  Remove code referencing them.
1312
1313         * infcmd.c (step_range_start, step_range_end, step_frame_id):
1314         Delete.
1315         (step_1, step_once, until_next_command): Adjust.
1316
1317         * inferior.h (step_range_start, step_range_end, step_frame_id):
1318         Delete.
1319
1320         * linux-nat.c (linux_child_follow_fork): If following the child,
1321         move the step state to it.  Adjust.
1322         * inf-ptrace.c (inf_ptrace_follow_fork): Ditto.
1323         * inf-ttrace.c (inf_ttrace_follow_fork): Ditto.
1324
1325 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1326
1327         * bsd-uthread.c (bsd_uthread_find_new_threads): Claim the main
1328         thread.
1329
1330 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1331
1332         * corelow.c (add_to_thread_list): If this is the first time we
1333         hear about thread info, update inferior_ptid.
1334         (core_open): Clear the thread list and set inferior_ptid before
1335         acknowledging a new inferior.  Find threads before fetching
1336         register info.  Give an upper target layer a chance to find and
1337         claim new threads.  Print core generation and stop signal info
1338         after finding new threads.
1339         (get_core_register_section): Look at the lwp member of
1340         inferior_ptid for detecting if we have threads info, instead of
1341         the pid member.
1342         (core_pid_to_str): New.
1343         (init_core_ops): Register core_pid_to_str.
1344
1345 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1346
1347         * spu-linux-nat.c (spu_child_post_startup_inferior)
1348         (spu_child_post_attach): Don't add the main thread here.
1349
1350 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1351
1352         Use ptid_t.tid to store thread ids instead of ptid_t.pid.
1353
1354         * gnu-nat.c (inf_validate_procs): If this is the first time we're
1355         seeing a thread id, extend the main thread's ptid.  If we still
1356         have pending execs, don't be verbose about new threads.
1357         (gnu_wait, gnu_resume, gnu_attach, gnu_thread_alive)
1358         (gnu_pid_to_str, cur_thread, sig_thread_cmd): Adjust.
1359         * i386gnu-nat.c (gnu_fetch_registers, gnu_store_registers):
1360         Adjust.
1361
1362 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1363
1364         * procfs.c (to_attach): Create a procinfo for the current lwp.
1365         Add it to gdb's thread list.
1366         (procfs_fetch_registers, procfs_store_registers): Assume there's
1367         always an lwp.
1368         (procfs_wait): Don't add the main thread here.
1369         (procfs_init_inferior): Create a procinfo for the main lwp here.
1370         Change main thread's ptid with thread_change_ptid.
1371         (procfs_notice_thread): Check for exited threads.
1372         (procfs_corefile_thread_callback): Remove check for the main
1373         process.
1374         (procfs_make_note_section): Assume there is always a thread.
1375
1376         * sol-thread.c (sol_thread_attach): Clear sol_thread_active before
1377         attaching.  Change the main thread ptid with thread_change_ptid.
1378         (sol_thread_detach): Clear sol_thread_active.
1379         (sol_thread_wait): Check for exited threads.
1380         (sol_thread_create_inferior): Clear sol_thread_active before
1381         creating a new inferior.  Change the main thread ptid with
1382         thread_change_ptid.
1383         (sol_thread_mourn_inferior): Clear sol_thread_active.
1384         (sol_find_new_threads_callback): Check for exited threads.
1385
1386 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1387
1388         * inf-ttrace.c (inf_ttrace_wait): On TTEVT_LWP_CREATE and
1389         LWP_TERMINATE, resume the caller thread.  On TTEVT_LWP_CREATE,
1390         TTEVT_LWP_EXIT and TTEVT_LWP_TERMINATE, don't stop the whole
1391         process, and return TARGET_WAITKIND_IGNORE.
1392
1393 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1394
1395         * inf-ttrace.c: Include <signal.h>
1396         (inf_ttrace_delete_dead_threads_callback): New.
1397         (inf_ttrace_resume_lwp): New.
1398         (inf_ttrace_resume_callback, inf_ttrace_resume): Rewrite.  Don't
1399         delete dying threads until they are really dead.
1400         (inf_ttrace_wait): After stopping the whole process, delete any
1401         dying thread that is really dead by now.
1402         (inf_ttrace_thread_alive): Return 1.
1403         (inf_ttrace_extra_thread_info): New.
1404         (inf_ttrace_target): Register inf_ttrace_extra_thread_info.
1405
1406 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1407
1408         * inf-ttrace.c (inf_ttrace_follow_fork): Register the main thread
1409         of the child fork.
1410         (inf_ttrace_attach): Add the main thread.
1411         (inf_ttrace_resume_callback): Check for exited threads.  Adjust
1412         for always a thread.
1413         (inf_ttrace_wait): Decorate the main thread's ptid with lwp info
1414         using thread_change_ptid, and set its private data.  Don't add the
1415         main thread here.
1416         (inf_ttrace_pid_to_str): Adjust.
1417
1418 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1419
1420         * bsd-uthread.c (bsd_uthread_wait): Decorate the main thread with
1421         thread_change_ptid.  Check for exited threads.
1422         (bsd_uthread_find_new_threads): Check for exited threads.
1423
1424 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1425
1426         * inf-ptrace.c: Include "gdbthread.h".
1427         (inf_ptrace_attach): Add the main thread here.
1428         * linux-nat.c (linux_nat_attach): Don't add the main thread here.
1429         Decorate the main thread id with the lwp id.
1430
1431 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
1432
1433         * linux-nat.c (linux_nat_wait): Update inferior_ptid's ptid with
1434         thread_change_ptid.  Don't add or mark the main thread as running
1435         and executing here.
1436         * fork-child.c (fork_inferior): Add the main thread here.
1437
1438 2008-09-08  Jerome Guitton  <guitton@adacore.com>
1439
1440         * rs6000-tdep.c (rs6000_fetch_instruction)
1441         (rs6000_skip_stack_check): New functions.
1442         (skip_prologue): Skip stack check sequence.
1443         
1444 2008-09-08  David Daney  <ddaney@avtrex.com>
1445
1446         * dummy-frame.h (frame.h): Include it.
1447         (struct frame_id): Remove declaration.
1448
1449 2008-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
1450
1451         * spu-tdep.c (spu_push_dummy_code): New function.
1452         (spu_gdbarch_init): Install it.
1453
1454 2008-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
1455
1456         * gdbarch.sh (gdbarch_dump): Use core_addr_to_string_nz
1457         instead of paddr_nz.
1458         * gdbarch.c: Regenerate.
1459
1460         * target.c (target_xfer_partial, debug_print_register): Use
1461         core_addr_to_string_nz instead of paddr_nz.
1462
1463 2008-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
1464
1465         * rs6000-tdep.c (rs6000_gdbarch_init): Setup displaced stepping
1466         *before* calling gdbarch_init_osabi.
1467         (rs6000_aix_init_osabi): Disable displaced stepping.
1468
1469 2008-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
1470
1471         * target.c (update_current_target): Do not inherit to_open
1472         or to_close.
1473         (pop_target): Call target_close on target_stack instead
1474         of current_target.
1475         (pop_all_targets_above): Likewise.
1476
1477 2008-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
1478
1479         * gnu-v3-abi.c (gnuv3_decode_method_ptr): New function.
1480         (gnuv3_print_method_ptr): Use it.
1481         (gnuv3_method_ptr_to_value): Likewise.
1482
1483 2008-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
1484
1485         * nto-tdep.h (struct nto_target_ops): Add gdbarch parameter to
1486         register_area callback function.
1487         * i386-nto-tdep.c (i386nto_register_area): Add gdbarch parameter.
1488         Use it instead of current_gdbarch.
1489         * nto-procfs.c (procfs_store_registers): Update call.
1490
1491 2008-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
1492
1493         * mips-tdep.c (deprecated_mips_set_processor_regs_hack): Use
1494         regcache architecture instead of current_gdbarch.
1495
1496 2008-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
1497
1498         * mep-tdep.c (struct mep_prologue): Add gdbarch member.
1499         (check_for_saved): Use it instead of current_gdbarch.
1500         (is_arg_spill): Add gdbarch paramter.  Use it instead
1501         of current_gdbarch.
1502         (mep_analyze_prologue): Add gdbarch parameter.  Pass it
1503         to is_arg_spill and check_for_saved.
1504         (mep_skip_prologue, mep_analyze_frame_prologue): Update calls.
1505
1506 2008-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
1507
1508         * hppa-tdep.c (internalize_unwinds): Use objfile architecture
1509         instead of current_gdbarch.
1510
1511 2008-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
1512
1513         * m68k-tdep.h (m68kbsd_fpreg_offset): Add gdbarch parameter.
1514         * m68kbsd-tdep.c (m68kbsd_fpreg_offset): Add gdbarch paramter.
1515         Use it instead of current_gdbarch.
1516         (m68kbsd_supply_fpregset): Update call.
1517         * m68kbsd-nat.c (m68kbsd_supply_fpregset): Likewise.
1518         (m68kbsd_collect_fpregset): Likewise.
1519
1520 2008-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
1521
1522         * cris-tdep.c (cris_version, cris_mode): Remove.
1523         (crisv32_single_step_through_delay): Use tdep->cris_mode.
1524         (cris_breakpoint_from_pc): Likewise.
1525         (cris_frame_unwind_cache): Use tdep->cris_version.
1526         (crisv32_scan_prologue): Likewise.
1527         (cris_spec_reg_applicable): Add gdbarch argument.
1528         Use tdep->cris_version.
1529         (cris_register_size, cris_special_register_name): Update calls.
1530         (cris_special_register_name): Add gdbarch argument.
1531         (cris_register_name, crisv32_register_name): Update calls.
1532
1533 2008-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
1534
1535         * m68hc11-tdep.c (gdb_print_insn_m68hc11): Use info->arch
1536         instead of current_gdbarch.
1537
1538         * sh64-tdep.c (gdb_print_insn_sh64): Remove.
1539         (sh64_gdbarch_init): Install print_insn_sh64 directly.
1540         * sh-tdep.c (gdb_print_insn_sh): Remove.
1541         (sh_gdbarch_init): Install print_insn_sh directly.
1542
1543         * mips-tdep.c (gdb_print_insn_mips): Do not check mips_abi
1544         from current_gdbarch.
1545         (gdb_print_insn_mips_n32, gdb_print_insn_mips_n64): New functions.
1546         (mips_gdbarch_init): Install them instead of gdb_print_insn_mips
1547         depending on mips_abi.
1548
1549 2008-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
1550
1551         * gdbarch.sh (addr_bits_remove): Change type to 'm'.
1552         (smash_text_address): Likewise.
1553         * gdbarch.c, gdbarch.h: Regenerate.
1554
1555         * arch-utils.c (core_addr_identity): Add gdbarch parameter.
1556         * arch-utils.h (core_addr_identity): Likewise.
1557         * arm-tdep.c (arm_addr_bits_remove): Likewise.
1558         (arm_smash_text_address): Likewise.
1559         * hppa-tdep.c (hppa_smash_text_address): Likewise.
1560         * m88k-tdep.c (m88k_addr_bits_remove): Likewise.
1561         * s390-tdep.c (s390_addr_bits_remove): Likewise.
1562
1563         * mips-tdep.c (mips_addr_bits_remove): Add gdbarch parameter.
1564         Use it instead of current_gdbarch.
1565
1566         * arm-tdep.c (arm_prologue_prev_register, arm_unwind_pc,
1567         arm_dwarf2_prev_register): Update calls.
1568         * m88k-tdep.c (m88k_unwind_pc): Update call.
1569
1570 2008-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
1571
1572         * dwarf2expr.h (dwarf2_read_address): Add gdbarch argument.
1573         * dwarf2expr.c (dwarf2_read_address): Add gdbarch argument.
1574         Call gdbarch_integer_to_address directly instead of converting
1575         to value and back.  Update comment.
1576         (execute_stack_op): Update call site.
1577         * dwarf2loc.c (find_location_expression): Likewise.
1578         (locexpr_describe_location): Update
1579
1580         * dwarf2expr.h (struct dwarf_expr_context): Add gdbarch member.
1581         * dwarf2-frame.c (execute_stack_op): Initialize ctx->gdbarch.
1582         * dwarf2loc. (dwarf2_evaluate_loc_desc): Likewise.
1583         (dwarf2_loc_desc_needs_frame): Likewise.
1584
1585 2008-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
1586
1587         * breakpoint.h (struct bp_location): Change type of section
1588         member to "struct obj_section *".
1589         * tracepoint.h (struct tracepoint): Likewise.
1590         * symtab.h (struct general_symbol_info): Replace bfd_section
1591         member with obj_section.
1592         (struct symtab_and_line): Change type of section member to
1593         "struct obj_section *".
1594         (SYMBOL_BFD_SECTION): Remove macro, replace by ...
1595         (SYMBOL_OBJ_SECTION): ... this.
1596
1597         * minsym.c (prim_record_minimal_symbol_and_info): Record symbol
1598         section as obj_section instead of bfd_section.
1599
1600         * ada-lang.c (ada_decode_symbol): Use gsymbol->obj_section
1601         directly instead of looking of obj_section from bfd_section.
1602
1603         * objfiles.h (find_pc_sect_section): Remove.
1604         * objfiles.c (find_pc_sect_section): Remove.
1605         (find_pc_section): Inline find_pc_sect_section code.
1606
1607         * symfile.h (find_pc_overlay): Return struct obj_section *.
1608         (find_pc_mapped_section): Likewise.
1609         (section_is_overlay, section_is_mapped): Change type of section
1610         argument to struct obj_section *.
1611         (pc_in_mapped_range, pc_in_unmapped_range): Likewise.
1612         (overlay_mapped_address, overlay_unmapped_address): Likewise.
1613         (symbol_overlayed_address): Likewise.
1614         * symtab.h (symbol_overlayed_address): Likewise.
1615         * symfile.c (overlay_is_mapped): Remove.
1616         (section_is_mapped): Inline overlay_is_mapped code.  Update.
1617         (overlay_invalidate_all): Update.
1618         (section_is_overlay): Change section argument to type
1619         "struct obj_section *".  Use bfd_ methods.
1620         (pc_in_unmapped_range): Likewise.  Handle relocated sections.
1621         (pc_in_mapped_range): Likewise.  Handle relocated sections.
1622         (sections_overlap): Likewise.
1623         (overlay_unmapped_address): Likewise.
1624         (overlay_mapped_address): Likewise.
1625         (symbol_overlayed_address): Likewise.
1626         (find_pc_overlay): Return struct obj_section *.
1627         (find_pc_mapped_section): Likewise.
1628         (list_overlays_command): Update.
1629         (map_overlay_command, unmap_overlay_command): Update.
1630         (simple_overlay_update): Update.
1631
1632         * block.h (blockvector_for_pc_sect): Change section argument
1633         to type "struct obj_section *".
1634         (block_for_pc_sect): Likewise.
1635         * block.c (blockvector_for_pc_sect): Change section argument
1636         to type "struct obj_section *".
1637         (block_for_pc_sect): Likewise.
1638         * symtab.h (find_pc_sect_function, find_pc_sect_psymtab,
1639         find_pc_sect_symtab, find_pc_sect_psymbol, find_pc_sect_line,
1640         lookup_minimal_symbol_by_pc_section, find_function_start_pc): Likewise.
1641         (matching_bfd_sections): Rename to ...
1642         (matching_obj_sections): ... this.  Update argument types.
1643         * blockframe.c (find_pc_sect_function): Likewise.
1644         * breakpoint.c (describe_other_breakpoints): Likewise.
1645         (breakpoint_has_pc, check_duplicates_for): Likewise.
1646         * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Likewise.
1647         (lookup_minimal_symbol_by_pc_section): Likewise.
1648         * symtab.c (find_pc_sect_psymtab_closer): Likewise.
1649         (find_pc_sect_psymtab, find_pc_sect_psymbol, find_pc_sect_symtab,
1650         find_pc_sect_line, find_function_start_pc): Likewise.
1651         (matching_bfd_sections): Rename to ...
1652         (matching_obj_sections): ... this.  Update argument types.
1653
1654         * blockframe.c (find_pc_partial_function): Update to section
1655         type changes.  No longer call find_pc_sect_section.
1656         (cache_pc_function_section): Change to type "struct obj_section *".
1657         * breakpoint.c (resolve_sal_pc): Update to section type changes.
1658         * exec.c (xfer_memory): Likewise.
1659         * findvar.c (read_var_value): Likewise.
1660         * infcmd.c (jump_command): Likewise.
1661         * linespec.c (minsym_found): Likewise.
1662         * maint.c (maintenance_translate_address): Likewise.
1663         * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Likewise.
1664         (lookup_solib_trampoline_symbol_by_pc): Likewise.
1665         * parse.c (write_exp_msymbol): Likewise.
1666         * printcmd.c (build_address_symbolic): Likewise.
1667         (address_info, sym_info): Likewise.
1668         * symmisc.c (dump_msymbols, print_symbol): Likewise.
1669         * symtab.c (fixup_section): Likewise.
1670         (fixup_symbol_section, fixup_psymbol_section): Likewise.
1671         (find_pc_line, find_function_start_sal): Likewise.
1672         * target.c (memory_xfer_partial): Likewise.
1673         * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline): Likewise.
1674         * spu-tdep.c (spu_overlay_update): Likewise.
1675
1676 2008-09-04  Doug Evans  <dje@google.com>
1677
1678         * defs.h (plongest,pulongest): Renamed from paddr_u,paddr_d.
1679         Change argument of pulongest from CORE_ADDR to ULONGEST.
1680         All callers updated.
1681         * utils.c (plongest): Renamed from paddr_d.
1682         (pulongest): Renamed from paddr_u, change arg type to ULONGEST.
1683         * remote-mips.c (send_srec): Use paddr_nz instead of paddr_u in
1684         `CORE_ADDR addr' arg of error message.
1685
1686 2008-09-03  Angela Marie Thomas <angela@releasedominatrix.com>
1687
1688         * ser-tcp.c (ser_tcp_send_break): New function.
1689         (_initialize_ser_tcp): Use ser_tcp_send_break.
1690         * ser-tcp.h (ser_tcp_send_break): New prototype.
1691
1692 2008-09-03  Ulrich Weigand  <uweigand@de.ibm.com>
1693
1694         * spu-tdep.c (spu_push_dummy_call): Update all stack pointer slots
1695         when allocating stack frame for inferior call.
1696
1697 2008-09-03  Ulrich Weigand  <uweigand@de.ibm.com>
1698
1699         * spu-tdep.c (spu_frame_unwind_cache): Do not attempt to unwind
1700         SP or return address if we failed to find a valid frame.
1701
1702 2008-09-03  Aleksandar Ristovski  <aristovski@qnx.com>
1703
1704         * breakpoint.c (breakpoint_init_inferior): Mark as not inserted only
1705         non-permanent breakpoints.
1706         (bpstat_stop_status): Change enable_state to bp_disabled only for
1707         non-permanent breakpoints.
1708         (bp_loc_is_permanent): New function.
1709         (create_breakpoint): Check if the location points to a permanent
1710         breakpoint and if it does, make breakpoint permanent.
1711         (update_breakpoint_locations): Make sure new locations of permanent
1712         breakpoints are properly initialized.
1713         * i386-tdep.c (i386_skip_permanent_breakpoint): New function.
1714         (i386_gdbarch_init): Set gdbarch_skip_permanent_breakpoint.
1715
1716 2008-09-02  Pedro Alves  <pedro@codesourcery.com>
1717
1718         * breakpoint.c (insert_breakpoints, update_global_location_list):
1719         Check breakpoints_always_inserted_mode instead of
1720         always_inserted_mode directly.
1721
1722 2008-09-02  Andreas Schwab  <schwab@suse.de>
1723
1724         * ia64-tdep.c (ia64_get_dyn_info_list): Use obj_section_addr.
1725
1726 2008-09-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
1727
1728         Stay compatible after the GCC PR fortran/29635 fix.
1729         * dwarf2read.c (process_die <DW_TAG_imported_module>)
1730         (process_die <DW_TAG_imported_module>): Do not assert anything about
1731         these unsupported tags.
1732
1733 2008-08-29  Tom Tromey  <tromey@redhat.com>
1734
1735         * maint.c (_initialize_maint_cmds): Fix typo.
1736
1737 2008-08-29  Tom Tromey  <tromey@redhat.com>
1738
1739         * dwarf2read.c (dwarf2_build_psymtabs_hard): Copy dirname on
1740         obstack.
1741
1742 2008-08-27  Ulrich Weigand  <uweigand@de.ibm.com>
1743
1744         * remote.c: Include "gdb_stat.h".
1745
1746 2008-08-26  Ulrich Weigand  <uweigand@de.ibm.com>
1747
1748         * dummy-frame.h (dummy_frame_pop): Add prototype.
1749         * dummy-frame.c: Include "observer.h".
1750         (dummy_frame_push): Do not check for stale frames.
1751         (dummy_frame_pop): New function.
1752         (cleanup_dummy_frames): New function.
1753         (_initialize_dummy_frame): Install it as inferior_created observer.
1754
1755         * frame.h (struct frame_id): Update comments.
1756         (frame_id_inner): Remove prototype.
1757         * frame.c (frame_id_inner): Make static.  Add comments.
1758         (frame_find_by_id): Update frame_id_inner safety net check to avoid
1759         false positives for targets using non-contiguous stack ranges.
1760         (get_prev_frame_1): Update frame_id_inner safety net check.
1761         (frame_pop): Call dummy_frame_pop when popping a dummy frame.
1762
1763         * stack.c (return_command): Directly pop the selected frame.
1764         * infrun.c (handle_inferior_event): Remove dead code.
1765         * i386-tdep.c (i386_push_dummy_call): Update comment.
1766
1767 2008-08-26  Ulrich Weigand  <uweigand@de.ibm.com>
1768
1769         * breakpoint.c (remove_breakpoint): Do not fail if unable to remove
1770         breakpoint from shared library.
1771
1772 2008-08-26  Ulrich Weigand  <uweigand@de.ibm.com>
1773
1774         * solib-svr4.c (read_program_header): New function.
1775         (scan_dyntag_auxv): New function.
1776         (elf_locate_base): Use it if scan_dyntag fails.
1777         (find_program_interpreter): New function.
1778         (enable_break): Use it instead of .interp section.
1779
1780 2008-08-26  Ulrich Weigand  <uweigand@de.ibm.com>
1781
1782         * remote.h (remote_filename_p, remote_bfd_open): Add prototypes.
1783         * remote.c (remote_bfd_iovec_open, remote_bfd_iovec_close,
1784         remote_bfd_iovec_pread, remote_bfd_iovec_stat, remote_filename_p,
1785         remote_bfd_open): New functions.
1786         (remote_hostio_send_command): Fail safely if remote connection
1787         is not set up.
1788
1789         * solist.h (solib_open): Remove prototype.
1790         (solib_bfd_open): Add prototype.
1791         * solib.c: Include "remote.h".
1792         (solib_open): Remove, replace by ...
1793         (solib_bfd_open): ... this new function.  Handle remote BFDs.
1794         (solib_map_sections): Replace solib_open by solib_bfd_open.
1795         * solib-frv.c: Include "exceptions.h".
1796         (enable_break2): Replace solib_open by solib_bfd_open.
1797         * solib-svr4.c: Include "exceptions.h".
1798         (enable_break): Replace solib_open by solib_bfd_open.
1799
1800         * symfile.c: Include "remote.h".
1801         (build_id_verify): Handle remote BFDs.
1802         (separate_debug_file_exists): Use BFD to access file.  Handle
1803         remote BFDs.
1804         (symfile_bfd_open): Handle remote BFDs.
1805         (reread_symbols): Handle remote BFDs.
1806
1807         * NEWS: Mention "remote:" argument prefix to "set sysroot".
1808
1809 2008-08-26  Ulrich Weigand  <uweigand@de.ibm.com>
1810
1811         * gdbarch.sh (target_gdbarch): New global variable.
1812         (deprecated_current_gdbarch_select_hack): Set it.
1813         * gdbarch.c, gdbarch.h: Regenerate.
1814
1815         * arch-utils.c (gdbarch_update_p): Use target_gdbarch instead
1816         of current_gdbarch.
1817         * target-descriptions.c (target_find_description): Likewise.
1818         * arm-tdep.c (arm_update_current_architecture): Likewise.
1819         (show_fp_model, arm_show_abi, arm_show_fallback_mode, 
1820         arm_show_force_mode): Likewise.
1821         * mips-tdep.c (show_mask_address, show_mipsfpu_command,
1822         show_mips_abi): Likewise.
1823         * mep-tdep.c (me_module_register_set, current_me_module): Likewise.
1824
1825         * target.c (target_translate_tls_address): Use target_gdbarch
1826         instead of current_gdbarch.
1827         * remote.c (struct packet_reg): Likewise.
1828         (get_remote_arch_state, packet_reg_from_regnum,
1829         packet_reg_from_pnum, remote_check_symbols, remote_wait,
1830         remote_address_masked, remote_insert_breakpoint,
1831         remote_insert_hw_breakpoint, remote_read_description): Likewise.
1832         * remote-m32r-sdi.c (m32r_resume, m32r_wait): Likewise.
1833         * remote-mips.c (mips_open, mips_common_breakpoint): Likewise.
1834         * cris-tdep.c (cris_can_use_hardware_watchpoint): Likewise.
1835
1836         * solib.c (solib_open, solib_map_sections, solib_read_symbols,
1837         solib_add, info_sharedlibrary_command, solib_address, 
1838         solib_create_inferior_hook, in_solib_dynsym_resolve_code,
1839         solib_global_lookup): Likewise.
1840         * solib-frv.c (enable_break2, frv_relocate_main_executable): Likewise.
1841         * solib-irix.c (irix_current_sos, irix_open_symbol_file_object):
1842         Likewise.
1843         * solib-sunos.c (sunos_solib_create_inferior_hook): Likewise.
1844         * solib-svr4.c (exec_entry_point, enable_break, svr4_free_so,
1845         set_solib_svr4_fetch_link_map_offsets, svr4_fetch_link_map_offsets):
1846         Likewise.
1847         * nto-tdep.c (nto_find_and_open_solib, nto_init_solib_absolute_prefix,
1848         nto_truncate_ptr): Likewise.
1849         * mips-linux-tdep.c (mips_linux_in_dynsym_stub): Likewise.
1850
1851 2008-08-26  Luis Machado  <luisgpm@br.ibm.com>
1852
1853         * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections) New structure.
1854         (ppc_linux_vmx_regset_sections): New structure.
1855         (ppc_linux_fp_regset_sections): New structure.
1856         (ppc_linux_init_abi): Select core-file regset  based on target
1857         features.
1858
1859 2008-08-26  Ulrich Weigand  <uweigand@de.ibm.com>
1860
1861         * target.c (debug_print_register): Use regcache_raw_collect
1862         instead of regcache_cooked_read.  Only handle raw registers.
1863
1864 2008-08-25  Pedro Alves  <pedro@codesourcery.com>
1865
1866         * cp-name-parser.y: Include config.h before system headers.
1867
1868 2008-08-25  Ulrich Weigand  <uweigand@de.ibm.com>
1869
1870         * m88k-tdep.c: Update for unwinder changes.
1871
1872 2008-08-24  Tom Tromey  <tromey@redhat.com>
1873
1874         * s390-tdep.c (s390_address_class_type_flags): Use
1875         TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1.
1876         (s390_address_class_type_flags_to_name): Likewise.
1877         (s390_address_class_name_to_type_flags): Likewise.
1878
1879 2008-08-24  Tom Tromey  <tromey@redhat.com>
1880
1881         * rs6000-tdep.c (rs6000_builtin_type_vec128): Don't use
1882         TYPE_FLAGS.
1883         * features/rs6000/powerpc-vsx32l.c
1884         (initialize_tdesc_powerpc_vsx32l): Update.
1885         * features/rs6000/powerpc-vsx32.c
1886         (initialize_tdesc_powerpc_vsx32): Update.
1887         * features/rs6000/powerpc-vsx64.c
1888         (initialize_tdesc_powerpc_vsx64): Update.
1889         * features/rs6000/powerpc-vsx64l.c
1890         (initialize_tdesc_powerpc_vsx64l): Update.
1891         * target-descriptions.c (maint_print_c_tdesc_cmd): Emit
1892         TYPE_VECTOR, not TYPE_FLAGS.
1893
1894 2008-08-24  Tom Tromey  <tromey@redhat.com>
1895
1896         * xml-tdesc.c (tdesc_end_union): Update.
1897         * stabsread.c (define_symbol): Update.
1898         (read_type): Update.
1899         (read_struct_type): Update.
1900         (read_enum_type): Update.
1901         * spu-tdep.c (spu_builtin_type_vec128): Update.
1902         * sh-tdep.c (sh_push_dummy_call_fpu): Update.
1903         (sh_push_dummy_call_nofpu): Update.
1904         * mdebugread.c (parse_symbol): Update.
1905         (parse_symbol): Update.
1906         (parse_symbol): Update.
1907         (upgrade_type): Update.
1908         * jv-lang.c (java_lookup_class): Update.
1909         * iq2000-tdep.c (iq2000_pointer_to_address): Update.
1910         * i386-tdep.c (i386_mmx_type): Update.
1911         (i386_sse_type): Update.
1912         * gdbtypes.h (enum type_flag_value): New enum.
1913         (enum type_instance_flag_value): New enum.
1914         (TYPE_FLAG_UNSIGNED, TYPE_FLAG_NOSIGN, TYPE_FLAG_STUB,
1915         TYPE_FLAG_TARGET_STUB, TYPE_FLAG_STATIC, TYPE_FLAG_PROTOTYPED,
1916         TYPE_FLAG_INCOMPLETE, TYPE_FLAG_VARARGS, TYPE_FLAG_VECTOR,
1917         TYPE_FLAG_FIXED_INSTANCE, TYPE_FLAG_STUB_SUPPORTED,
1918         TYPE_FLAG_NOTTEXT): Now enum constants.
1919         (TYPE_FLAG_CONST, TYPE_FLAG_VOLATILE, TYPE_FLAG_CODE_SPACE,
1920         TYPE_FLAG_DATA_SPACE, TYPE_FLAG_ADDRESS_CLASS_1,
1921         TYPE_FLAG_ADDRESS_CLASS_2): Remove.
1922         (TYPE_INSTANCE_FLAG_CONST, TYPE_INSTANCE_FLAG_VOLATILE,
1923         TYPE_INSTANCE_FLAG_CODE_SPACE, TYPE_INSTANCE_FLAG_DATA_SPACE,
1924         TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1,
1925         TYPE_INSTANCE_FLAG_ADDRESS_CLASS_2): New constants.
1926         (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB, TYPE_TARGET_STUB,
1927         TYPE_STATIC, TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_VARARGS,
1928         TYPE_VECTOR, TYPE_FIXED_INSTANCE, TYPE_STUB_SUPPORTED,
1929         TYPE_NOTTEXT): Update.
1930         (TYPE_FLAG_ADDRESS_CLASS_ALL): Remove.
1931         (TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL): New define.
1932         (TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE,
1933         TYPE_ADDRESS_CLASS_1, TYPE_ADDRESS_CLASS_2,
1934         TYPE_ADDRESS_CLASS_ALL): Update.
1935         (struct main_type) <flags>: Remove.
1936         <flag_unsigned, flag_nosign, flag_stub, flag_target_stub,
1937         flag_static, flag_prototyped, flag_incomplete, flag_varargs,
1938         flag_vector, flag_stub_supported, flag_nottext,
1939         flag_fixed_instance>: New fields.
1940         <nfields, vptr_fieldno>: Move earlier.
1941         (TYPE_FLAGS): Remove.
1942         * gdbtypes.c (make_pointer_type): Update.
1943         (address_space_name_to_int): Update.
1944         (address_space_int_to_name): Update.
1945         (make_type_with_address_space): Update.
1946         (make_cv_type): Update.
1947         (create_range_type): Update.
1948         (get_discrete_bounds): Update.
1949         (create_set_type): Update.
1950         (make_vector_type): Update.
1951         (smash_to_method_type): Update.
1952         (check_typedef): Update.
1953         (check_stub_method): Update.
1954         (init_type): Individually assign flag fields.
1955         (recursive_dump_type): Don't print entire TYPE_FLAGS field.  Do
1956         print TYPE_FIXED_INSTANCE, TYPE_STUB_SUPPORTED, and TYPE_NOTTEXT.
1957         (copy_type_recursive): Copy the entire main type.  Don't use
1958         TYPE_FLAGS.
1959         * features/rs6000/powerpc-altivec64l.c
1960         (initialize_tdesc_powerpc_altivec64l): Update.
1961         * features/rs6000/powerpc-altivec64.c
1962         (initialize_tdesc_powerpc_altivec64): Update.
1963         * features/rs6000/powerpc-altivec32l.c
1964         (initialize_tdesc_powerpc_altivec32l): Update.
1965         * features/rs6000/powerpc-altivec32.c
1966         (initialize_tdesc_powerpc_altivec32): Update.
1967         * features/rs6000/powerpc-7400.c (initialize_tdesc_powerpc_7400):
1968         Update.
1969         * features/arm-with-iwmmxt.c (initialize_tdesc_arm_with_iwmmxt):
1970         Update.
1971         * dwarf2read.c (read_structure_type): Update.
1972         (read_enumeration_type): Likewise.
1973         (process_enumeration_scope): Likewise.
1974         (read_tag_pointer_type): Likewise.
1975         (read_subroutine_type): Likewise.
1976         (read_subroutine_type): Likewise.
1977         (read_base_type): Likewise.
1978         * coffread.c (coff_read_enum_type): Update.
1979         * ada-valprint.c (adjust_type_signedness): Update.
1980         * ada-typeprint.c (print_record_field_types): Update.
1981         * ada-lang.c (packed_array_type): Update.
1982         (empty_record): Don't reset TYPE_FLAGS.
1983         (ada_template_to_fixed_record_type_1): Update.
1984         (ada_template_to_fixed_record_type_1): Likewise.
1985         (template_to_static_fixed_type): Likewise.
1986         (to_record_with_fixed_variant_part): Likewise.
1987         (to_fixed_record_type): Likewise.
1988         (to_fixed_array_type): Likewise.
1989         (to_static_fixed_type): Likewise.
1990
1991 2008-08-23  Jim Blandy  <jimb@redhat.com>
1992
1993         PR macros/607:
1994         * symmisc.c (print_symbol_bcache_statistics): Include statistics
1995         for the macro bcache.
1996
1997 2008-08-23  Tom Tromey  <tromey@redhat.com>
1998
1999         * macrotab.h (struct macro_definition) <kind>: Shrink to one bit.
2000         (argc): Now 31 bits.
2001
2002 2008-08-22  Tom Tromey  <tromey@redhat.com>
2003
2004         * NEWS: Move macro entries back under "New commands".
2005
2006 2008-08-22  Ulrich Weigand  <uweigand@de.ibm.com>
2007
2008         * breakpoint.c (create_overlay_event_breakpoint): Rename to ...
2009         (create_overlay_event_breakpoint_1): ... this.  Add OBJFILE parameter.
2010         (create_overlay_event_breakpoint): Loop over all objfiles to install
2011         multiple instances of the overlay event breakpoint if present.
2012
2013 2008-08-22  Ulrich Weigand  <uweigand@de.ibm.com>
2014
2015         * spu-tdep.c (spu_overlay_new_objfile): Only consider SPU objfiles.
2016         (info_spu_event_command): Command only supported on SPU architecture.
2017         (info_spu_signal_command): Likewise.
2018         (info_spu_mailbox_command): Likewise.
2019         (info_spu_dma_command): Likewise.
2020         (info_spu_proxydma_command): Likewise.
2021
2022 2008-08-22  Ulrich Weigand  <uweigand@de.ibm.com>
2023
2024         * infrun.c (adjust_pc_after_break): Do not call get_thread_regcache
2025         if the thread has already exited.
2026
2027 2008-08-22  Pedro Alves  <pedro@codesourcery.com>
2028
2029         * infrun.c (proceed): Move back setting previous_inferior_ptid
2030         from here ...
2031         (wait_for_inferior): ... to here.
2032         (fetch_inferior_event): ... and here.
2033
2034 2008-08-21  Ulrich Weigand  <uweigand@de.ibm.com>
2035
2036         * gdbarch.sh: Include "regcache.h" into gdbarch.c.
2037         (deprecated_current_gdbarch_select_hack): Call registers_changed
2038         instead of reinit_frame_cache.
2039         * gdbarch.c: Regenerate.
2040
2041 2008-08-21  Ulrich Weigand  <uweigand@de.ibm.com>
2042
2043         * elfread.c (elf_symtab_read): Do not relocate thread-local symbols.
2044
2045 2008-08-21  Daniel Jacobowitz  <dan@codesourcery.com>
2046
2047         * xcoffread.c (SYMNAME_ALLOC): Correct syntax.
2048
2049 2008-08-21  Ulrich Weigand  <uweigand@de.ibm.com>
2050
2051         * findvar.c (locate_var_value): Do not call get_frame_arch
2052         with a NULL frame argument.
2053
2054 2008-08-21  Ulrich Weigand  <uweigand@de.ibm.com>
2055
2056         * frame.h (frame_map_regnum_to_name): Remove prototype.
2057         (frame_map_name_to_regnum): Remove prototype.
2058         * frame.c (frame_map_regnum_to_name): Remove.
2059         (frame_map_name_to_regnum): Remove.
2060         (frame_unwind_register_value): Use user_reg_map_regnum_to_name
2061         instead of frame_map_regnum_to_name.
2062         * ax-gdb.c: Include "user-regs.h".
2063         (gen_expr): Use user_reg_map_name_to_regnum instead of
2064         frame_map_name_to_regnum.
2065         * eval.c:  Include "user-regs.h".
2066         (evaluate_subexp_standard): Use user_reg_map_name_to_regnum
2067         instead of frame_map_name_to_regnum.
2068         * infcmd.c (registers_info): Likewise.
2069         * parse.c: Include "user-regs.h".
2070         (write_dollar_variable): Use user_reg_map_name_to_regnum
2071         instead of frame_map_name_to_regnum.
2072         * tracepoint.c: Include "user-regs.h".
2073         (encode_actions): Use user_reg_map_name_to_regnum
2074         instead of frame_map_name_to_regnum.
2075         * valops.c: Include "user-regs.h".
2076         (value_fetch_lazy): Use user_reg_map_regnum_to_name instead
2077         of frame_map_regnum_to_name.
2078
2079 2008-08-21  Ulrich Weigand  <uweigand@de.ibm.com>
2080
2081         * ppc-linux-tdep.c (ppc64_linux_convert_from_func_ptr_addr): Read
2082         and manually relocate .opd contents from BFD instead of reading
2083         them from target memory.
2084
2085 2008-08-21  Daniel Jacobowitz  <dan@codesourcery.com>
2086
2087         * dwarf2read.c (processing_current_prefix): Delete static
2088         variable.
2089         (process_full_comp_unit): Do not set processing_current_prefix.
2090         (dwarf2_full_name): New function.
2091         (read_func_scope): Do not set processing_current_prefix.  Use
2092         determine_prefix.
2093         (read_structure_type): Do not set processing_current_prefix.  Remove
2094         unused inner cleanup.
2095         (process_structure_scope): Do not set processing_current_prefix.
2096         (read_enumeration_type): Use dwarf2_full_name.
2097         (determine_class_name): Return a const char *.  Put the result
2098         on the objfile obstack.  Use dwarf2_full_name.
2099         (read_namespace_type): New function.
2100         (read_namespace): Do not create the type here.  Use
2101         determine_prefix.
2102         (read_typedef): Use dwarf2_full_name.  Do not pass the name
2103         to init_type.
2104         (read_base_type): Do not pass the name to init_type.  Handle
2105         TYPE_FLAG_NOSIGN.
2106         (read_unspecified_type): Do not pass the name to init_type.
2107         (new_symbol): Use dwarf2_full_name instead of
2108         processing_current_prefix.
2109         (read_type_die): Do not set processing_current_prefix.  Handle
2110         DW_TAG_namespace.
2111         (determine_prefix): Handle specifications.  Return the result
2112         on the objfile obstack.  Handle unions correctly.
2113
2114 2008-08-21  Daniel Jacobowitz  <dan@codesourcery.com>
2115
2116         * buildsym.c (add_symbol_to_list): Do not call
2117         cp_scan_for_anonymous_namespaces here.
2118         (finish_block): Do not call cp_set_block_scope here.
2119         * cp-namespace.c (processing_has_namespace_info)
2120         (processing_current_prefix): Delete.
2121         (cp_initialize_namespace): Do not initialize
2122         processing_has_namespace_info.
2123         (cp_scan_for_anonymous_namespaces): Use SYMBOL_DEMANGLED_NAME.  Do
2124         not check processing_has_namespace_info.
2125         (cp_set_block_scope): Take prefix and namespace info flag as
2126         arguments.  Honor namespaces regardless of a demangled name.
2127         * cp-support.h (processing_has_namespace_info)
2128         (processing_current_prefix): Delete declarations.
2129         (cp_set_block_scope): Update prototype.
2130         * dwarf2read.c (processing_has_namespace_info)
2131         (processing_current_prefix): New static variables.
2132         (read_file_scope): Initialize processing_has_namespace_info.
2133         (read_func_scope): Call cp_set_block_scope for C++.
2134         (new_symbol): Call cp_scan_for_anonymous_namespaces for C++.
2135         * symtab.c (symbol_demangled_name): Accept a const argument.
2136         * symtab.h (symbol_demangled_name): Update prototype.
2137
2138 2008-08-21  Daniel Jacobowitz  <dan@codesourcery.com>
2139
2140         * ax-gdb.c (gen_var_ref): Use SYMBOL_LINKAGE_NAME.
2141         * blockframe.c (find_pc_partial_function): Likewise.
2142         * buildsym.c (find_symbol_in_list): Likewise.
2143         * c-valprint.c (c_val_print): Likewise.
2144         * coffread.c (patch_opaque_types, process_coff_symbol): Likewise.
2145         (coff_read_enum_type): Likewise.  Use SYMBOL_SET_LINKAGE_NAME.
2146         * cp-support.c (cp_remove_params): Renamed from remove_params and
2147         made global.
2148         (overload_list_add_symbol): Update call to remove_params.
2149         * cp-support.h (cp_remove_params): Declare.
2150         * dwarf2read.c (process_enumeration_scope): Use SYMBOL_LINKAGE_NAME.
2151         (dwarf2_const_value): Use SYMBOL_PRINT_NAME.
2152         * expprint.c (dump_subexp_body_standard): Likewise.
2153         * f-valprint.c (info_common_command, there_is_a_visible_common_named):
2154         Use SYMBOL_LINKAGE_NAME to find symbols and SYMBOL_PRINT_NAME
2155         for messages.
2156         * findvar.c (read_var_value): Use SYMBOL_LINKAGE_NAME.
2157         * gnu-v2-abi.c (gnuv2_value_rtti_type): Likewise.
2158         * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline)
2159         (hppa_hpux_skip_trampoline_code): Use SYMBOL_LINKAGE_NAME to find
2160         symbols and SYMBOL_PRINT_NAME for messages.
2161         * jv-lang.c (add_class_symbol): Use SYMBOL_SET_LINKAGE_NAME.
2162         * linespec.c (decode_line_2): Use SYMBOL_LINKAGE_NAME.
2163         * mdebugread.c (parse_symbol): Use SYMBOL_LINKAGE_NAME and
2164         SYMBOL_SET_LINKAGE_NAME.
2165         (mylookup_symbol): Use SYMBOL_LINKAGE_NAME.
2166         * minsyms.c (add_minsym_to_demangled_hash_table): Use
2167         SYMBOL_SEARCH_NAME.
2168         (lookup_minimal_symbol): Use SYMBOL_LINKAGE_NAME or
2169         SYMBOL_MATCHES_SEARCH_NAME, depending on the pass.
2170         * objfiles.h (ALL_OBJFILE_MSYMBOLS): Use SYMBOL_LINKAGE_NAME.
2171         * printcmd.c (build_address_symbolic): Use SYMBOL_LINKAGE_NAME.
2172         (address_info): Use SYMBOL_PRINT_NAME for messages and
2173         SYMBOL_LINKAGE_NAME for lookups.
2174         * sol-thread.c (info_cb): Use SYMBOL_PRINT_NAME for messages.
2175         * stabsread.c (patch_block_stabs, define_symbol)
2176         (read_type, read_enum_type, common_block_end)
2177         (cleanup_undefined_types_1, scan_file_globals): Use
2178         SYMBOL_LINKAGE_NAME, SYMBOL_SET_LINKAGE_NAME, ALL_OBJFILE_MSYMBOLS,
2179         and SYMBOL_PRINT_NAME.
2180         * stack.c (print_frame_args): Use SYMBOL_LINKAGE_NAME.
2181         (print_frame, frame_info): Use SYMBOL_PRINT_NAME for output.  Use
2182         cp_remove_params instead of cplus_demangle.
2183         (print_block_frame_labels, print_frame_arg_vars): Use
2184         SYMBOL_LINKAGE_NAME.
2185         * symmisc.c (dump_msymbols): Use ALL_OBJFILE_MSYMBOLS and
2186         SYMBOL_LINKAGE_NAME.
2187         (dump_symtab_1, print_symbol, print_partial_symbols)
2188         (maintenance_check_symtabs): Use SYMBOL_LINKAGE_NAME.
2189         * symtab.h (DEPRECATED_SYMBOL_NAME): Delete.
2190         (SYMBOL_SET_LINKAGE_NAME): New.
2191         (SYMBOL_SET_NAMES): Add a comment.
2192         * tracepoint.c (set_traceframe_context, validate_actionline)
2193         (collect_symbol, scope_info): Use SYMBOL_LINKAGE_NAME for
2194         lookups and SYMBOL_PRINT_NAME for output.
2195         * typeprint.c (typedef_print): Use SYMBOL_LINKAGE_NAME.
2196         * xcoffread.c (process_xcoff_symbol): Use SYMBOL_SET_LINKAGE_NAME.
2197
2198 2008-08-21  Pedro Alves  <pedro@codesourcery.com>
2199
2200         * arm-tdep.c (arm_pc_is_thumb): Use obj_section_addr.
2201         * hppa-hpux-tdep.c (hppa_hpux_find_dummy_bpaddr): Likewise.
2202         * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Use
2203         obj_section_addr and obj_section_endaddr.
2204         * hppa-tdep.c (hppa64_convert_code_addr_to_fptr): Likewise.
2205         * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
2206         * ia64-tdep.c (ia64_find_global_pointer): Likewise.
2207         (find_extant_func_descr): Likewise.
2208         * solib-frv.c (frv_relocate_main_executable): Use
2209         obj_section_addr.
2210         * xstormy16-tdep.c (xstormy16_find_jmp_table_entry): Use
2211         obj_section_addr and obj_section_endaddr.
2212
2213 2008-08-21  Paul N. Hilfinger  <hilfinger@adacore.com>
2214
2215         * NEWS: Amplify last entry on boolean types in Ada.
2216
2217 2008-08-20  Daniel Jacobowitz  <dan@codesourcery.com>
2218
2219         * dwarf2read.c (die_specification, dwarf2_extension, follow_die_ref):
2220         Make the dwarf2_cu * parameter output as well as input.  Update it if
2221         we follow a reference to another CU.
2222         (read_func_scope, determine_class_name, namespace_name, dwarf2_attr)
2223         (die_type, die_containing_type): Update calls to changed functions.
2224         Use the returned CU along with the returned DIE.
2225         (read_namespace): Use dwarf2_attr instead of dwarf2_extension.
2226
2227 2008-08-20  Daniel Jacobowitz  <dan@codesourcery.com>
2228
2229         * dwarf2read.c (queue_comp_unit): Take an objfile argument.  Read
2230         in the DIEs here.
2231         (process_queue): Do not read in the DIEs here.
2232         (psymtab_to_symtab_1): Update call to queue_comp_unit.
2233         (read_full_die): Do not call queue_comp_unit from here.
2234         (maybe_queue_comp_unit): New function.
2235         (follow_die_ref): Use it.
2236
2237 2008-08-20  Daniel Jacobowitz  <dan@codesourcery.com>
2238
2239         * dwarf2read.c (struct attribute): Move earlier.
2240         (struct die_info): Change attrs to a trailing array.
2241         (dwarf_alloc_die): Take the number of attributes.  Allocate space
2242         for them.
2243         (read_full_die): Update call to dwarf_alloc_die.  Do not manually
2244         allocate attributes.
2245
2246 2008-08-20  Daniel Jacobowitz  <dan@codesourcery.com>
2247
2248         * dwarf2read.c (REF_HASH_SIZE): Delete.
2249         (struct dwarf2_cu): Replace die_ref_table with die_hash.
2250         (struct die_info): Remove next_ref.
2251         (store_in_ref_table): Remove offset argument.  Rewrite to use
2252         htab_find_slot_with_hash.
2253         (die_hash, die_eq): New.
2254         (read_comp_unit): Allocate the die_hash.
2255         (read_die_and_children): Update call to store_die_ref.
2256         (follow_die_ref): Rewrite to use htab_find_with_hash.
2257
2258 2008-08-20  Daniel Jacobowitz  <dan@codesourcery.com>
2259
2260         * dwarf2read.c (free_die_list, copy_die): Delete.
2261         (dwarf_alloc_die): Take a CU argument.  Allocate the new DIE
2262         on the obstack.
2263         (read_full_die): Update call to dwarf_alloc_die.  Allocate
2264         attributes on the CU obstack.
2265         (free_one_comp_unit): Do not call free_die_list.
2266
2267 2008-08-20  Daniel Jacobowitz  <dan@codesourcery.com>
2268
2269         * dwarf2read.c (read_die_and_children): Ignore NULL DIEs.
2270         (read_die_and_siblings): Likewise.  Do not add padding DIEs to the
2271         sibling list.
2272         (read_full_die): Do not allocate DIEs for abbrev 0.
2273         (follow_die_ref): Correct error message.
2274
2275 2008-08-20  Pedro Alves  <pedro@codesourcery.com>
2276
2277         * linespec.c (symtab_from_filename): Also throw NOT_FOUND_ERROR if
2278         there are no symbols loaded, instead of throwing a generic error.
2279         (decode_variable): Likewise.
2280
2281 2008-08-20  Pedro Alves  <pedro@codesourcery.com>
2282
2283         * objfiles.h (struct obj_section): Remove addr and endaddr fields.
2284         (obj_section_offset, obj_section_addr, obj_section_endaddr): New
2285         macros.
2286         * objfiles.c (add_to_objfile_sections): Don't set addr, endaddr
2287         and offset.  Use size_t instead of unsigned long.
2288         (build_objfile_section_table): Use size_t instead of unsigned
2289         long.
2290         (objfile_relocate): Don't relocate s->addr and s->endaddr, they're
2291         gone.
2292         (find_pc_sect_section): Use obj_section_addr and
2293         obj_section_endaddr.
2294         * symfile.c (symfile.c): Remove code that maps sections
2295         offsets in "addr" to the object's sections.
2296         * blockframe.c (find_pc_partial_function): Use obj_section_endaddr.
2297         * gcore.c (gcore_create_callback): Use obj_section_addr and
2298         obj_section_endaddr.
2299         * maint.c (print_objfile_section_info): Likewise.
2300         * printcmd.c (sym_info): Use obj_section_addr and
2301         obj_section_endaddr.
2302         * symtab.c (fixup_section): Likewise.
2303
2304 2008-08-20  Mark Kettenis  <kettenis@gnu.org>
2305
2306         * sparc-tdep.c: Make some comments catch up with reality.
2307
2308 2008-08-20  Vladimir Prus  <vladimir@codesourcery.com>
2309
2310         * NEWS: Mention 'set target-async'
2311
2312 2008-08-19  Vladimir Prus  <vladimir@codesourcery.com>
2313
2314         * infrun.c (resume): If the thread is placed to the deferred step
2315         queue, mark it as running.
2316
2317 2008-08-19  Vladimir Prus  <vladimir@codesourcery.com>
2318
2319         Make sure target supports non-stop.
2320         * infcmd.c (run_command_1, attach_command): If non-stop mode
2321         is requested, verify the target supports it.
2322         * linux-nat.c (linux_nat_supports_non_stop): New.
2323         (linux_nat_add_target): Register the above.
2324         * target.c (find_default_supports_non_stop)
2325         (target_supports_non_stop): New.
2326         (init_dummy_target): Register find_default_supports_non_stop.
2327         * target.h (struct target_ops): New field to_supports_non_stop.
2328         (target_supports_non_stop): New.
2329
2330 2008-08-19  Pedro Alves  <pedro@codesourcery.com>
2331             Vladimir Prus  <vladimir@codesourcery.com>
2332
2333         * target.c (target_async_permitted, target_async_permitted_1)
2334         (set_maintenance_target_async_permitted)
2335         (show_maintenance_target_async_permitted): New.
2336         (initialize_targets): Register 'set target-async'.
2337         * target.h (target_async_permitted): Declare.
2338         * linux-nat.c (linux_nat_async_enabled)
2339         (linux_nat_async_permitted, set_maintenance_linux_async_permitted)
2340         (show_maintenance_linux_async_permitted): Remove.
2341         (sigchld_handler, linux_nat_is_async_p, linux_nat_can_async_p)
2342         (get_pending_events, linux_nat_async): Use target_async_permitted.
2343         (linux_nat_set_async_mode): Remove, moving the only used bits
2344         into...
2345         (linux_nat_setup_async): This.
2346         (_initialize_linux_nat): Do not register 'maint set linux-async'.
2347         Use linux_nat_setup_async.
2348         * remote.c (remote_async_permitted, remote_async_permitted_set)
2349         (set_maintenance_remote_async_permitted)
2350         (show_maintenance_remote_async_permitted): Remove.
2351         (remote_open_1, remote_terminal_inferior, remote_can_async_p)
2352         (remote_is_async_p): Use target_async_permitted.
2353         (_initialize_remote): Don't register 'main set remote-async'.
2354         * mi/mi-cmds.c (mi_cmds): Register -list-target-features.
2355         * mi/mi-cmds.h (mi_cmd_list_target_features): New.
2356         * mi/mi-main.c (mi_cmd_list_target_features): New.
2357
2358 2008-08-19  Vladimir Prus  <vladimir@codesourcery.com>
2359
2360         * target.c (maybe_kill_then_attach)
2361         (maybe_kill_then_create_inferior): Remove.
2362         (update_current_target): Do not default to_attach,
2363         to_create_inferiour, to_is_async_p.
2364
2365 2008-08-19  Paul N. Hilfinger  <hilfinger@adacore.com>
2366         
2367         Changes for supporting boolean types in debugging data.
2368         * ada-lang.c (discrete_type_high_bound,discrete_type_low_bound): Change 
2369         API to return LONGEST values rather than struct values.
2370         (ada_evaluate_subexp): Change to use new API of discrete_type_low_bound
2371         and discrete_type_high_bound.
2372         (to_fixed_range_type): Create a range type in cases where 
2373         argument is base type and its limits are representable as ints.
2374         (ada_is_modular_type): Correct so that base type must be integral.
2375         * ada-lex.l (TRUEKEYWORD,FALSEKEYWORD): Make 'true' and 'false' 
2376         keywords when they appear alone, since we are phasing out 
2377         direct representation of these identifiers in debugging data.
2378         * ada-exp.y: Define 'true' and 'false' as primaries.
2379         (type_boolean): New function.
2380         (type_int,type_long,type_long_long,type_floattype_double)
2381         (type_long_double): Remove uses of current_gdbarch for consistency
2382         with type_boolean.
2383         (write_int): Change comment to indicate that it might write boolean 
2384         constant as well.
2385         * ada-typeprint.c (ada_print_type): Print '(false, true)' for boolean
2386         type, since will no longer be represented as enumerated type in 
2387         debugging data.
2388         * ada-valprint.c (print_optional_low_bound): Handle boolean case
2389         as well.
2390         * NEWS: Note support boolean types.
2391         
2392 2008-08-18  Pedro Alves  <pedro@codesourcery.com>
2393
2394         * bsd-uthread.c (bsd_uthread_close): New.
2395         (bsd_uthread_deactivate): Don't cleanup here, just unpush the
2396         target.
2397         (bsd_uthread_solib_loaded): Fix typo.
2398         (bsd_uthread_target): Register bsd_uthread_close.
2399
2400 2008-08-18  Pedro Alves  <pedro@codesourcery.com>
2401
2402         * corelow.c (core_open): Assume there was no upper layer left
2403         behind from a previous inferior.
2404         * target.c (pop_all_targets): Rename to ...
2405         (pop_all_targets_above): ... this.  Add a target stratum
2406         parameter.  Use it instead of hardcoding the dummy_stratum.
2407         (pop_all_targets): New, defer to pop_all_targets_above.
2408         (target_preopen): Use pop_all_targets_above.
2409         * target.h (pop_all_targets_above): Declare.
2410
2411 2008-08-18  Pedro Alves  <pedro@codesourcery.com>
2412
2413         * gdbthread.h (thread_change_ptid): Declare.
2414         * infrun.c (infrun_thread_ptid_changed): New.
2415         (_initialize_infrun): Attach infrun_thread_ptid_changed to the
2416         thread_ptid_changed observer.
2417         * regcache.c (regcache_thread_ptid_changed): New.
2418         (_initialize_regcache): Attach regcache_thread_ptid_changed to the
2419         thread_ptid_changed observer.
2420         * thread.c (thread_change_ptid): New.
2421
2422 2008-08-18  Tom Tromey  <tromey@redhat.com>
2423
2424         * symfile.c (reread_symbols): Update.
2425         * solib-sunos.c (allocate_rt_common_objfile): Update.
2426         * objfiles.c (allocate_objfile): Update.
2427         * objfiles.h (struct objfile) <md, mmfd, deprecated_obj_private>:
2428         Remove.
2429
2430 2008-08-18  Tom Tromey  <tromey@redhat.com>
2431
2432         * gdbtypes.c (copy_type_recursive): Allocate 'stored' on objfile's
2433         obstack.
2434
2435 2008-08-18  Daniel Jacobowitz  <dan@codesourcery.com>
2436
2437         * rs6000-tdep.c (struct rs6000_framedata): Add gpr_mask, used_bl,
2438         lr_register.
2439         (rs6000_in_function_epilogue_p): Check for bctr.
2440         (skip_prologue): Initialize lr_register.  Set lr_reg to a register
2441         number.  Set gpr_mask and used_bl.  Continue scanning while some
2442         expected registers are not saved.  Set lr_register if LR is not
2443         stored.
2444         (rs6000_frame_cache): Handle gpr_mask and lr_register.
2445
2446 2008-08-17  Tom Tromey  <tromey@redhat.com>
2447
2448         PR gdb/1535:
2449         * breakpoint.c (CATCH_PERMANENT, CATCH_TEMPORARY): New macros.
2450         (ep_find_event_name_end): Remove.
2451         (catch_fork_temporary, catch_vfork_temporary,
2452         catch_fork_permanent, catch_vfork_permanent): New constants.
2453         (catch_vfork, catch_fork): Remove.
2454         (catch_fork_command_1): Add 'command' argument.  Remove
2455         'fork_kind' and 'tempflag'.  Handle NULL 'arg'.  Update switch for
2456         all cases.
2457         (catch_exec_command_1): Add 'command' argument; remove
2458         'tempflag'.  Handle NULL 'arg'.
2459         (catch_load_command_1): Likewise.
2460         (catch_unload_command_1): Likewise.
2461         (catch_ada_exception_command): Likewise.
2462         (catch_assert_command): Likewise.
2463         (catch_catch_command): New function.
2464         (catch_throw_command): Likewise.
2465         (catch_command_1): Remove.
2466         (catch_command): Just call error.
2467         (tcatch_command): Likewise.
2468         (catch_cmdlist): New global.
2469         (tcatch_cmdlist): Likewise.
2470         (add_catch_command): New function.
2471         (_initialize_breakpoint): Create "catch" and "tcatch" as prefix
2472         commands.  Create all catch sub-commands.
2473
2474 2008-08-17  Pedro Alves  <pedro@codesourcery.com>
2475
2476         * gdbthread.h: Add comments.
2477         * stack.c (get_selected_block): Return 0 on an exited thread.
2478         * top.c (execute_command): Check for is_stopped, not !is_running.
2479         * event-top.c (command_handler): Likewise.
2480
2481 2008-08-16  Pedro Alves  <pedro@codesourcery.com>
2482
2483         * mi/mi-main.c (mi_cmd_exec_next, mi_cmd_exec_next_instruction)
2484         (mi_cmd_exec_step, mi_cmd_exec_step_instruction)
2485         (mi_cmd_exec_finish): Remove "return".
2486
2487 2008-08-16  Pedro Alves  <pedro@codesourcery.com>
2488
2489         * target.h (pop_all_targets): Declare.
2490         * target.c (pop_all_targets): New.
2491         * top.c (quit_target): Pop all targets instead of just closing the
2492         current.
2493
2494 2008-08-16  Vladimir Prus  <vladimir@codesourcery.com>
2495             Thiago Jung Bauermann  <bauerman@br.ibm.com>
2496
2497         * cli-script.c (read_next_line): Add parse_commands argument.
2498         (recurse_read_control_structure): Adapt to new read_next_line
2499         signature.
2500         (read_command_lines): Add parse_commands argument.
2501         (define_command): Adapt to new read_command_lines signature.
2502         (document_command): Likewise.
2503         * breakpoint.c (commands_command): Likewise.
2504         * defs.h (read_command_lines): Adjust function prototype.
2505
2506 2008-08-16  Paul N. Hilfinger  <hilfinger@adacore.com>
2507
2508         * ada-lang.c (pos_atr): Account for the possibility that the 
2509         argument may be a reference.
2510
2511 2008-08-16  Paul N. Hilfinger  <hilfingr@adacore.com>
2512
2513         * xcoffread.c (scan_xcoff_symtab): Do not include global symbols
2514         ('F' format) for @FIX names generated by the loader, retaining only
2515         the minimal symbols (and no partial symbol tables) for these names.
2516         Fixes warning messages about symbols that are found in partial 
2517         symbol tables, but not full symbol tables.
2518
2519 2008-08-16  Pedro Alves  <pedro@codesourcery.com>
2520
2521         * infrun.c (fetch_inferior_event): Only call normal_stop if not
2522         stopping quietly.
2523
2524 2008-08-15  Luis Machado  <luisgpm@br.ibm.com>
2525
2526         * rs6000-tdep: Include "features/rs6000/powerpc-vsx32.c".
2527         Include "features/rs6000/powerpc-vsx64.c".
2528         (ppc_supply_vsxregset): New function.
2529         (ppc_collect_vsxregset): New function.
2530         (IS_VSX_PSEUDOREG): New macro.
2531         (IS_EFP_PSEUDOREG): New macro.
2532         (vsx_register_p): New function.
2533         (ppc_vsx_support_p): New function.
2534         (rs6000_builtin_type_vec128): New function.
2535         (rs6000_register_name): Hide upper halves of vs0~vs31.  Return
2536         correct names for VSX registers and EFPR registers.
2537         (rs6000_pseudo_register_type): Return correct types for VSX
2538         and EFPR registers.
2539         (rs6000_pseudo_register_reggroup_p): Return correct group for
2540         VSX and EFPR registers.
2541         (ppc_pseudo_register_read): Rename to dfp_pseudo_register_read.
2542         (ppc_pseudo_register_write): Rename to dfp_pseudo_register_write.
2543         (vsx_pseudo_register_read): New function.
2544         (vsx_pseudo_register_write): New function.
2545         (efpr_pseudo_register_read): New function.
2546         (efpr_pseudo_register_write): New function.
2547         (rs6000_pseudo_register_read): Call new VSX and EFPR read functions.
2548         (rs6000_pseudo_register_write): Call new VSX and EFPR write functions.
2549         (rs6000_gdbarch_init): Declare have_vsx.
2550         Initialize new upper half VSX registers.
2551         Initialize VSX-related and EFPR-related pseudo-registers variables.
2552         Adjust the number of pseudo registers accordingly.
2553
2554         * ppc-linux-nat.c: Define PTRACE_GETVSXREGS, PTRACE_SETVSXREGS
2555         and SIZEOF_VSRREGS.
2556         (gdb_vsxregset_t): New type.
2557         (have_ptrace_getsetvsxregs): New variable.
2558         (fetch_vsx_register): New function.
2559         (fetch_register): Handle VSX registers.
2560         (fetch_vsx_registers): New function.
2561         (fetch_ppc_registers): Handle VSX registers.
2562         (store_ppc_registers): Handle VSX registers.
2563         (store_vsx_register): New function.
2564         (store_register): Handle VSX registers.
2565         (store_vsx_registers): New function.
2566         (ppc_linux_read_description): Handle VSX-enabled inferiors.
2567         (gdb_vsxregset_t): New type.
2568         (supply_vsxregset): New function.
2569         (fill_vsxregset): New function.
2570
2571         * ppc-tdep.h (vsx_register_p): New prototype.
2572         (vsx_support_p): New prototype.
2573         (ppc_vsr0_regnum): New variable.
2574         (ppc_vsr0_upper_regnum): Likewise.
2575         (ppc_efpr0_regnum): Likewise.
2576         (ppc_builtin_type_vec128): New type.
2577         (ppc_num_vsrs): New constant.
2578         (ppc_num_vshrs): New constant.
2579         (ppc_num_efprs): Likewise.
2580         Define POWERPC_VEC_VSX PPC_VSR0_UPPER_REGNUM and PPC_VSR31_UPPER_REGNUM.
2581         (ppc_supply_vsxregset): New prototype.
2582         (ppc_collect_vsxregset): New prototype.
2583
2584         * ppc-linux-tdep.c: Include "features/rs6000/powerpc-vsx32l.c"
2585         Include "features/rs6000/powerpc-vsx64l.c".
2586         (_initialize_ppc_linux_tdep): Initialize VSX-enabled targets.
2587         (ppc_linux_regset_sections): Add new ".reg-ppc-vsx" field.
2588         (ppc32_linux_vsxregset): New 32-bit VSX-enabled regset.
2589         (ppc_linux_regset_from_core_section): Handle VSX core section.
2590         (ppc_linux_core_read_description): Support VSX-enabled core files.
2591
2592         * ppc-linux-tdep.h: Declare *tdesc_powerpc_vsx32l
2593         Declare tdesc_powerpc_vsx64l
2594
2595         * corelow.c (get_core_register_section): Support VSX-enabled
2596         core files.
2597
2598         * features/rs6000/power-vsx.xml: New VSX descriptions.
2599         * features/rs6000/powerpc-vsx32.xml: New file.
2600         * features/rs6000/powerpc-vsx32l.xml: New file.
2601         * features/rs6000/powerpc-vsx64.xml: New file.
2602         * features/rs6000/powerpc-vsx64l.xml: New file.
2603         * features/rs6000/powerpc-vsx32.c: New file (generated).
2604         * features/rs6000/powerpc-vsx32l.c: New file (generated).
2605         * features/rs6000/powerpc-vsx64.c: New file (generated).
2606         * features/rs6000/powerpc-vsx64l.c: New file (generated).
2607         * features/Makefile: Updated with new descriptions.
2608         * regformats/rs6000/powerpc-vsx32l.dat: New file (generated).
2609         * regformats/rs6000/powerpc-vsx64l.dat: New file (generated).
2610
2611 2008-08-15  Vladimir Prus  <vladimir@codesourcery.com>
2612
2613         * ia64-linux.nat (_initialize_ia64_linux_nat): Don't
2614         call linux_target twice.
2615
2616 2008-08-14  Aleksandar Ristovski  <aristovski@qnx.com>
2617
2618         * nto-tdep.c (lm_info): Updated struct lm_info definition from
2619         solib-svr4.c
2620         (LM_ADDR): Use l_addr if available; if not, use link map and set 
2621         l_addr.
2622
2623 2008-08-14  Tom Tromey  <tromey@redhat.com>
2624
2625         * macrocmd.c (macro_define_command): Check for NULL argument.
2626         (macro_undef_command): Likewise.
2627
2628 2008-08-14  Pedro Alves  <pedro@codesourcery.com>
2629
2630         * infcmd.c (continue_1): Add an ERROR_NO_INFERIOR call.
2631
2632 2008-08-13  Pedro Alves  <pedro@codesourcery.com>
2633
2634         * breakpoint.c (always_inserted_auto, always_inserted_on)
2635         (always_inserted_off, always_inserted_enums): New.
2636         (always_inserted_mode): Change type to char* and point to
2637         always_inserted_auto.
2638         (show_always_inserted_mode): In auto mode, also show the current
2639         effect of the option.
2640         (breakpoints_always_inserted_mode): Adjust for the new auto mode.
2641         (_initialize_breakpoint): Make the "set breakpoints
2642         always-inserted" command an enum command.  Extend help to describe
2643         the auto mode.
2644
2645 2008-08-13  Ulrich Weigand  <uweigand@de.ibm.com>
2646
2647         * spu-tdep.c (info_spu_dma_command): Respect TSQV (tag status
2648         query valid) bit.  Ignore bits outside the condition field.
2649         (info_spu_proxydma_command): Ignore bits outside the field.
2650
2651 2008-08-12  Michael Snyder  <msnyder@vmware.com>
2652
2653         * MAINTAINERS: Update my email address.
2654
2655 2008-08-12  Ulrich Weigand  <uweigand@de.ibm.com>
2656
2657         * ppc-linux-nat.c (ppc_linux_get_hwcap): Really get AT_HWCAP.
2658
2659 2008-08-12  Pedro Alves  <pedro@codesourcery.com>
2660
2661         Add no-ack mode to the remote protocol --- optionally stop ACKing
2662         packets and responses when we have a reliable communication
2663         medium.
2664
2665         Based on Apple's GDB, by Jason Molenda <jmolenda@apple.com>
2666
2667         * remote.c (struct remote_state): Add noack_mode field.
2668         (PACKET_QStartNoAckMode): New.
2669         (remote_start_remote): Don't any outstanding packet here.
2670         (remote_open_1): Clear noack_mode.  Ack any outstanding packet
2671         here.  Activate noack mode if requested.
2672         (remote_protocol_features): Add QStartNoAckMode.
2673         (remote_open_1):
2674         (putpkt_binary): Don't send ack in noack mode.
2675         (read_frame): Don't recompute the checksum in noack mode.
2676         (getpkt_sane): Skip sending ack if in noack mode.
2677         (_initialize_remote): Add set/show remote noack mode.
2678         * NEWS:  Note the new features.
2679
2680 2008-08-11  Kevin Buettner  <kevinb@redhat.com>
2681
2682         * rs6000-tdep.c (BL_MASK, BL_INSTRUCTION, BL_DISPLACEMENT_MASK):
2683         New macros.
2684         (rs6000_skip_main_prologue): New function.
2685         (rs6000_gdb_arch_init): Register rs6000_skip_main_prologue.
2686
2687 2008-08-11  Sandra Loosemore  <sandra@codesourcery.com>
2688
2689         * MAINTAINERS (Write After Approval):  Add self.
2690
2691 2008-08-11  Stan Shebs  <stan@codesourcery.com>
2692
2693         ARM BE8 support.
2694         * disasm.c (gdb_disassemble_info): Set endian_code.
2695         * gdbarch.sh (gdbarch_info): New field byte_order_for_code.
2696         * gdbarch.h, gdbarch.c: Regenerate.
2697         * arch-utils.c (initialize_current_architecture): Set the
2698         default byte_order_for_code.
2699         (gdbarch_info_init): Ditto.
2700         (gdbarch_info_fill): Ditto.
2701         * arm-tdep.c (SWAP_INT, SWAP_SHORT): New macros.
2702         (thumb_analyze_prologue): Swap halfword if code endianness is
2703         different from general endianness.
2704         (arm_skip_prologue): Similarly.
2705         (arm_scan_prologue): Ditto.
2706         (thumb_get_next_pc): Ditto.
2707         (arm_get_next_pc): Ditto.
2708         (arm_gdbarch_init): Set byte_order_for_code from BE8 flag,
2709         choose correct endianness for breakpoints.
2710
2711 2008-08-10  Pedro Alves  <pedro@codesourcery.com>
2712
2713         * bsd-kvm.c: Include "gdbthread.h".
2714         (bsd_kvm_ptid): New.
2715         (bsd_kvm_open): Add a main thread.
2716         (bsd_kvm_close): Delete it.
2717         (bsd_kvm_thread_alive): New.
2718         (bsd_kvm_pid_to_str): New.
2719         (bsd_kvm_add_target): Register bsd_kvm_thread_alive and
2720         bsd_kvm_pid_to_str.
2721         (bsd_kvm_add_target): Initialize bsd_kvm_ptid.
2722
2723 2008-08-09  Pedro Alves  <pedro@codesourcery.com>
2724
2725         * buildsym.c (start_subfile): Properly cast sentinel in concat
2726         call.
2727         * cp-name-parser.y: Include "config.h".
2728         * xml-tdesc.c (fetch_xml_from_file): Properly cast sentinel in
2729         concat call.
2730         * gdb_select.h: Include sys/time.h if sys/select.h is not
2731         available.
2732
2733 2008-08-09  Pedro Alves  <pedro@codesourcery.com>
2734
2735         * go32-nat.c: Include "gdbthread.h".
2736         (go32_stop, go32_kill_inferior): Delete the main thread.
2737         (go32_create_inferior): Add it.
2738         (go32_thread_alive, go32_pid_to_str): New.
2739         (init_go32_ops): Register go32_thread_alive and go32_pid_to_str.
2740
2741 2008-08-09  Pedro Alves  <pedro@codesourcery.com>
2742
2743         * go32-nat.c (fetch_register, store_register): Pass the regcache
2744         gdbarch to i386_fp_regnum_p and i386_fpc_regnum_p.
2745         (go32_xfer_memory): Change type of myaddr parameter to gdb_byte.
2746         (struct seg_descr, struct seg_descr): pack the whole struct
2747         instead of each member individually.
2748
2749 2008-08-09  Andreas Schwab  <schwab@suse.de>
2750
2751         * python/python.c (_initialize_python): Use unabbreviated commands
2752         in prefix name.
2753
2754 2008-08-09  Daniel Jacobowitz  <dan@codesourcery.com>
2755
2756         * Makefile.in (stamp-h): Also create .deps.
2757
2758 2008-08-09  Tom Tromey  <tromey@redhat.com>
2759
2760         * Makefile.in (generated_files): Add GNULIB_H.
2761
2762 2008-08-09  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
2763
2764         * solib-pa64.c (pa64_solib_create_inferior_hook): Don't set
2765         DT_HP_DEBUG_PRIVATE.  Add warning if DT_HP_DEBUG_PRIVATE is not set.
2766         Revise comment.
2767         (pa64_current_sos): Remove map private warning warning.
2768         * solib-som.c: Include string.h and sys/utsname.h.
2769         (get_hpux_major_release): New function.
2770         (som_solib_create_inferior_hook): Read dynamic linker header.  Warn
2771         about shared library private mapping on HP-UX 11 and later.  Only force
2772         private mapping of shared libraries on HP-UX 10 and earlier.
2773         (link_map_start): Delete warning.
2774
2775 2008-08-09  Xuepeng Guo  <xuepeng.guo@intel.com>
2776             H.J. Lu  <hongjiu.lu@intel.com>
2777             Mark Kettenis <kettenis@gnu.org>
2778
2779         * amd64-tdep.c (amd64_frame_cache): Add saved_sp_reg.
2780         (amd64_init_frame_cache): Initialize saved_sp_reg.
2781         (amd64_analyze_stack_align): New.
2782         (amd64_analyze_prologue): Call it.
2783         (amd64_frame_cache): Use saved_sp_reg if it is invalid.  Don't set
2784         %rip to 8 when halfway aligning the stack.
2785
2786         * amd64-tdep.h (amd64_regnum): Add AMD64_R9_REGNUM to
2787         AMD64_R14_REGNUM.
2788
2789         * i386-tdep.c (i386_frame_cache): Remove stack_align.  Add
2790         saved_sp_reg.
2791         (i386_alloc_frame_cache): Remove stack_align.  Initialize
2792         saved_sp_reg to -1.
2793         (i386_analyze_stack_align): Rewrite.
2794         (i386_frame_cache): Use saved_sp_reg if it is valid.
2795
2796 2008-08-09  Ulrich Weigand  <uweigand@de.ibm.com>
2797
2798         * target.c: Include "solib.h".
2799         (target_pre_inferior): Call no_shared_libraries.
2800         * infcmd.c (run_command_1): Do not call objfile_purge_solibs
2801         or clear_solib.
2802         (attach_command): Do not call clear_solib.
2803
2804 2008-08-09  Mark Kettenis  <kettenis@gnu.org>
2805
2806         * i386obsd-nat.c (i386obsd_supply_pcb): Supply the right bytes for
2807         the %eip register.
2808
2809 2008-08-08  Tom Tromey  <tromey@redhat.com>
2810
2811         * Makefile.in (python.o): Remove dependencies.  Use COMPILE and
2812         POSTCOMPILE.
2813         (python-utils.o): Likewise.
2814
2815 2008-08-08  Andreas Schwab  <schwab@suse.de>
2816
2817         * corefile.c (_initialize_core): Remove spurious paren from set
2818         gnutarget doc string.
2819
2820 2008-08-08  Luis Machado  <luisgpm@br.ibm.com>
2821
2822         * ppc-linux-nat.c: Include "auxv.h" and "elf/common.h".
2823         Define PPC_FEATURE_BOOKE.
2824         (ppc_linux_get_hwcap): New function.
2825         (ppc_linux_region_ok_for_hw_watchpoint): Handle PowerPC 440
2826         4-bytes alignment restrictions.
2827         (ppc_linux_insert_watchpoint): Handle PowerPC 440-specific
2828         positioning of the read/write flags.
2829         (ppc_linux_watchpoint_addr_within_range): Handle PowerPC 440
2830         4-bytes alignment.
2831
2832 2008-08-08  Pedro Alves  <pedro@codesourcery.com>
2833
2834         Use ptid_t.tid to store thread ids instead of ptid_t.pid.
2835
2836         * win32-nat.c (win32_add_thread): Change thread argument type to
2837         ptid_t.  Adjust.
2838         (win32_add_thread): Adjust.
2839         (win32_delete_thread): Change thread argument type to ptid_t.
2840         Adjust.
2841         (win32_fetch_inferior_registers, win32_store_inferior_registers)
2842         (win32_resume, get_win32_debug_event, get_win32_debug_event)
2843         (win32_wait, win32_pid_to_exec_file, win32_pid_to_str): Adjust.
2844         (init_win32_ops): Put to_magic last.
2845         (win32_win32_thread_alive): Adjust.
2846
2847 2008-08-08  Pedro Alves  <pedro@codesourcery.com>
2848
2849         * remote-m32r-sdi.c (m32r_thread_alive, m32r_pid_to_str): New.
2850         (init_m32r_ops): Register m32r_thread_alive and m32r_pid_to_str.
2851
2852 2008-08-08  Pedro Alves  <pedro@codesourcery.com>
2853
2854         * remote-m32r-sdi.c: Include "gdbthread.h".
2855         (remote_m32r_ptid): New.
2856         (m32r_close): Delete the main thread.
2857         (m32r_resume): Set inferior_ptid toA remote_m32r_ptid. Add the
2858         main thread.
2859         (m32r_kill, m32r_load, sdireset_command): Delete the main thread.
2860         (_initialize_remote_m32r): Initialize remote_m32r_ptid.
2861
2862 2008-08-07  Tom Tromey  <tromey@redhat.com>
2863             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2864
2865         * aclocal.m4, configure: Rebuild.
2866         * configure.in: Call ZW_CREATE_DEPDIR,
2867         ZW_PROG_COMPILER_DEPENDENCIES, AC_PROG_MAKE_SET.
2868         (MAKE, GMAKE): New substs.
2869         * acinclude.m4: Include depstand.m4.
2870         * Makefile.in (DEPMODE, DEPDIR, COMPILE.post, COMPILE.pre,
2871         COMPILE, POSTCOMPILE, depcomp): New variables.
2872         Remove all _h variables.
2873         Remove many .o targets.
2874         ($(srcdir)/copying.c): avoid backslash-newline after comment
2875         sign (@maintainer_mode_true@).
2876         (HFILES_NO_SRCDIR): Regenerate.
2877         (generated_files): New variable.
2878         (all_gdbtk_cflags): Likewise.
2879         (.c.o): Rewrote.
2880         (init.o, version.o, copying.o): Remove.
2881         (distclean): Remove DEPDIR.
2882         (test-cp-name-parser.o, hpux-thread.o, main.o, monitor.o,
2883         printcmd.o, procfs.o, v850ice.o): Rewrite.
2884         (cli-cmds.o, cli-decode.o, cli-dump.o, cli-interp.o, cli-logging.o,
2885         cli-script.o, cli-setshow.o, cli-utils.o): Likewise.
2886         (gdbtk.o, gdbtk-bp.o, gdbtk-cmds.o, gdbtk-hooks.o, gdbtk-interp.o,
2887         gdbtk-main.o, gdbtk-register.o, gdbtk-stack.o, gdbtk-varobj.o,
2888         gdbtk-wrapper.o): Likewise.
2889         (mi-cmd-break.o, mi-cmd-disas.o, mi-cmd-env.o, mi-cmd-file.o,
2890         mi-cmds.o, mi-cmd-stack.o, mi-cmd-target.o, mi-cmd-var.o,
2891         mi-console.o, mi-getopt.o, mi-interp.o, mi-main.o, mi-out.o,
2892         mi-parse.o, mi-symbol-cmds.o, mi-common.o, signals.o, tui.o,
2893         tui-command.o, tui-data.o, tui-disasm.o, tui-file.o, tui-hooks.o,
2894         tui-interp.o, tui-io.o, tui-layout.o, tui-main.o, tui-out.o,
2895         tui-regs.o, tui-source.o, tui-stack.o, tui-win.o, tui-windata.o,
2896         tui-wingeneral.o, tui-winsource.o): Likewise.
2897         (all_object_files): New variable.
2898         ($(all_object_files)): New target.
2899         Include dependency files, when using GNU Make.
2900
2901 2008-08-07  Ulrich Weigand  <uweigand@de.ibm.com>
2902
2903         * spu-tdep.c (info_spu_dma_cmdlist): Only show entries with
2904         the valid bit set.  Ensure display order respects partial
2905         order defined by dependency bits.
2906
2907 2008-08-06  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
2908
2909         * solib-pa64.c (read_dld_descriptor): Return zero if load map is not
2910         setup.
2911
2912 2008-08-06  Mark Kettenis  <kettenis@gnu.org>
2913
2914         * i386obsd-nat.c (i386obsd_supply_pcb): Adjust for changes in
2915         OpenBSD 4.3.
2916
2917 2008-08-06  Vladimir Prus  <vladimir@codesourcery.com>
2918             Tom Tromey  <tromey@redhat.com>
2919             Thiago Jung Bauermann  <bauerman@br.ibm.com>
2920             Doug Evans  <dje@google.com>
2921
2922         * Makefile.in (SUBDIR_PYTHON_OBS, SUBDIR_PYTHON_SRCS,
2923         SUBDIR_PYTHON_DEPS, SUBDIR_PYTHON_LDFLAGS, SUBDIR_PYTHON_CFLAGS,
2924         PYTHON_CFLAGS): New.
2925         (python_h, python_internal_h): New.
2926         (cli-script.o): Depend on python.h
2927         (python.o, python-utils.o): New.
2928         * cli/cli-script.c (print_command_lines): Handle python_control.
2929         (execute_control_command): Handle python_control.
2930         (execute_control_command_untraced): New function.
2931         (while_command): Call execute_control_command_untraced.
2932         (if_command): Likewise.
2933         (get_command_line): Remove static attribute.
2934         (read_next_line): Handle "python".
2935         (recurse_read_control_structure): Handle python_control.
2936         (read_command_lines): Handle python_control.
2937         Include python.h.
2938         * cli/cli-script.h (get_command_line): Add prototype.
2939         (execute_control_command_untraced): Likewise.
2940         * configure.ac: Add --with-python.
2941         * defs.h (enum command_control_type) <python_control>: New
2942         constant.
2943         * python/python-internal.h: New file.
2944         * python/python.c: New file.
2945         * python/python.h: New file.
2946         * python/python-utils.c: New file.
2947         * NEWS: Mention Python scripting support and its new commands.
2948
2949 2008-08-06  Ulrich Weigand  <uweigand@de.ibm.com>
2950
2951         * spu-tdep.c (spu_gdbarch_init): Call set_gdbarch_frame_red_zone_size.
2952
2953 2008-08-06  Phil Muldoon  <pmuldoon@redhat.com>
2954
2955         * MAINTAINERS (Write After Approval): Add self.
2956
2957 2008-08-06  Phil Muldoon  <pmuldoon@redhat.com>
2958
2959         * breakpoint.c (hw_breakpoint_used_count): Use breakpoint_enabled.
2960         (insert_breakpoint_locations): Likewise.
2961
2962 2008-08-05  Phil Muldoon  <pmuldoon@redhat.com>
2963
2964         * breakpoint.c (create_longjmp_breakpoint): Remove unused struct
2965         breakpoint.
2966         (set_longjmp_breakpoint): Likewise.
2967
2968 2008-08-04  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
2969
2970         PR build/2490
2971         * solib-pa64.c: Only compile if both HAVE_ELF_HP_H and __LP64__ are
2972         defined.
2973
2974 2008-08-05  Tom Tromey  <tromey@redhat.com>
2975
2976         * bcache.c (deprecated_bcache_added): Initialize obstack.
2977         (bcache_xmalloc): Don't initialize obstack.
2978         (bcache_xfree): Conditionally free obstack.
2979         (bcache_memory_used): Update.
2980
2981 2008-08-05  Tom Tromey  <tromey@redhat.com>
2982
2983         * symfile.c (add_psymbol_to_bcache): Return a const pointer.  Use
2984         bcache_full.
2985         (append_psymbol_to_list): Accept a const pointer.
2986         (add_psymbol_to_list): Fix const correctness.
2987         * bcache.h: (deprecated_bcache_added, deprecated_bcache): Remove.
2988         (bcache_full): Declare.
2989         * bcache.c (bcache_data, deprecated_bcache): Remove.
2990         (bcache): Use bcache_full.
2991         (bcache_full): Rename from deprecated_bcache_added.  Change return
2992         type.
2993
2994 2008-08-04  Stan Shebs  <stan@codesourcery.com>
2995
2996         * solib-svr4.c (BKPT_AT_SYMBOL): Remove, always defined.
2997         (bkpt_names): Remove SOLIB_BKPT_NAME, never defined.
2998         (enable_break): Remove test of BKPT_AT_SYMBOL.
2999
3000 2008-08-02  Keith Seitz  <keiths@redhat.com>
3001
3002         * acinclude.m4: Include ../config/tcl.m4 to pick up
3003         standard Tcl configury bits.
3004         Remove all Tcl, Tk, Itcl, Itk, etc definitions.
3005         * configure.ac: Don't check if ../itcl exists when building
3006         gdbtk. It could be installed.
3007         Rewrite gdbtk configury to allow for using system-supplied
3008         Tcl and Tk. Gdbtk no longer requires build-time access to
3009         itcl and itk.
3010         * Makefile.in: Remove everything related to itcl and itk.
3011         Rewrite the Tcl bits for gdbtk to correspond to rewrite of
3012         configure.ac.
3013         Remove v850ice.o build rule.
3014         (ALL_TCL_CFLAGS): New convenience defintion. Change all
3015         gdbtk sources to use it.
3016         * configure: Regenerate.
3017
3018 2008-07-31  Stan Shebs  <stan@codesourcery.com>
3019
3020         * coffread.c (coff_symtab_read): Remove FUNCTION_EPILOGUE_SIZE.
3021
3022 2008-07-30  Stan Shebs  <stan@codesourcery.com>
3023
3024         * objfiles.c (TARGET_KEEP_SECTION): Remove.
3025         (add_to_objfile_sections): Remove use.
3026
3027 2008-07-29  Tom Tromey  <tromey@redhat.com>
3028
3029         * cli/cli-decode.c (lookup_cmd_1): Use memcpy.
3030         (lookup_cmd_composition): Likewise.
3031
3032 2008-07-29  Tom Tromey  <tromey@redhat.com>
3033
3034         * cli/cli-cmds.c (edit_command): Remove unused variables.  Delete
3035         dead code.  Fix indentation.
3036
3037 2008-07-29  Stan Shebs  <stan@codesourcery.com>
3038
3039         * main.c (captured_main): Remove long-unused #if 0 blocks.
3040
3041 2008-07-28  Tom Tromey  <tromey@redhat.com>
3042
3043         * annotate.h (deprecated_annotate_starting_hook): Remove.
3044         (deprecated_annotate_stopped_hook): Remove.
3045         (deprecated_annotate_exited_hook): Remove.
3046         * Makefile.in (annotate.o): Depend on observer_h.
3047         * top.c (deprecated_delete_breakpoint_hook): Remove.
3048         (deprecated_create_breakpoint_hook): Likewise.
3049         (deprecated_modify_breakpoint_hook): Likewise.
3050         * interps.c (clear_interpreter_hooks): Update for removed hooks.
3051         * breakpoint.c (mention): Don't call removed hook.
3052         (delete_breakpoint): Likewise.
3053         (disable_breakpoint): Likewise.
3054         (do_enable_breakpoint): Likewise.
3055         * annotate.c: Include observer.h.
3056         (breakpoint_changed): Change type of argument.
3057         (_initialize_annotate): Register observers.
3058         (deprecated_annotate_starting_hook): Remove.
3059         (deprecated_annotate_stopped_hook): Remove.
3060         (deprecated_annotate_exited_hook): Remove.
3061         (annotate_starting): Update for hook removal.
3062         (annotate_stopped): Likewise.
3063         (annotate_exited): Likewise.
3064         * defs.h (deprecated_delete_breakpoint_hook): Remove.
3065         (deprecated_create_breakpoint_hook): Likewise.
3066         (deprecated_modify_breakpoint_hook): Likewise.
3067
3068 2008-07-28  Tom Tromey  <tromey@redhat.com>
3069
3070         * main.c (captured_main): Don't use BEFORE_MAIN_LOOP_HOOK.
3071
3072 2008-07-27  Daniel Jacobowitz  <dan@codesourcery.com>
3073
3074         * configure.ac: Check for the GNU/Linux ptrace signature.
3075         * configure: Regenerated.
3076
3077 2008-07-27  Daniel Jacobowitz  <dan@codesourcery.com>
3078
3079         * linux-nat.c (resume_callback): Add more debugging output.
3080         (linux_nat_has_pending_sigint): New function, based on
3081         linux_nat_has_pending.
3082         (set_ignore_sigint, maybe_clear_ignore_sigint): New functions.
3083         (stop_wait_callback): Remove flush_mask handling.  Honor
3084         ignore_sigint.  Call maybe_clear_ignore_sigint.  Pass NULL
3085         to recursive calls.
3086         (linux_nat_has_pending, flush_callback): Remove.
3087         (linux_nat_filter_event): Check for ignore_sigint.
3088         (linux_nat_wait): Remove flush_mask support and call to
3089         flush_callback.  Use set_ignore_sigint and maybe_clear_ignore_sigint.
3090         * linux-nat.h (struct lwp_info): Add ignore_sigint field.
3091
3092 2008-07-27  Daniel Jacobowitz  <dan@codesourcery.com>
3093
3094         * linux-nat.c (count_events_callback, select_event_lwp_callback): Only
3095         report events from resumed threads.
3096
3097 2008-07-27  Daniel Jacobowitz  <dan@codesourcery.com>
3098
3099         * mips-linux-tdep.c (mips_linux_syscall_next_pc): New function.
3100         (mips_linux_init_abi): Set tdep->syscall_next_pc.
3101         * mips-tdep.c (enum mips_fpu_type, struct gdbarch_tdep): Move to
3102         mips-tdep.h.
3103         (mips32_next_pc): Handle the syscall instruction.
3104         * mips-tdep.h (enum mips_fpu_type, struct gdbarch_tdep): New,
3105         from mips-tdep.c.  Add syscall_next_pc to gdbarch_tdep.
3106
3107 2008-07-26  Tom Tromey  <tromey@redhat.com>
3108
3109         PR gdb/1158:
3110         * valops.c (value_struct_elt): Treat function-valued field as a
3111         static method.
3112
3113 2008-07-26  Tom Tromey  <tromey@redhat.com>
3114
3115         PR gdb/1136:
3116         * macroexp.c (get_punctuator) <punctuators>: Rearrange to put
3117         longer tokens first.
3118
3119 2008-07-26  Vladimir Prus  <vladimir@codesourcery.com>
3120
3121         Kill cmd_async_ok.
3122         * cli/cli-decode.h (CMD_ASYNC_OK, set_cmd_async_ok)
3123         (get_cmd_async_ok): Remove.
3124         * cli/cli-decode.c (set_cmd_async_ok, get_cmd_async_ok): Remove.
3125         * cli/cli-cmds.c (init_cli_cmds): Don't use set_cmd_async_ok.
3126         * infcmd.c (_initialize_infcmd): Likewise.
3127         * thread.c (_initialize_thread): Likewise.
3128
3129 2008-07-25  Joseph Myers  <joseph@codesourcery.com>
3130
3131         * mips-tdep.c (mips_n32n64_push_dummy_call): Handle passing
3132         128-bit long doubles in even-odd pairs of FPRs.  Do not
3133         right-align float arguments for big-endian.
3134         (mips_n32n64_return_value): Apply return value convention for
3135         structs containing one or two floating-point values to soft-float
3136         as well as hard-float.  Handle 128-bit long doubles in such
3137         structs.
3138         (mips_o32_push_dummy_call): Only skip one integer register for a
3139         float argument passed in an FPR.
3140
3141 2008-07-25  Tom Tromey  <tromey@redhat.com>
3142
3143         * tui/tui-hooks.c: Include observer.h.
3144         (tui_event_default, tui_old_event_hooks, tui_event_hooks):
3145         Remove.
3146         (tui_bp_created_observer, tui_bp_deleted_observer,
3147         tui_bp_modified_observer): New globals.
3148         (tui_install_hooks): Use observers, not events.
3149         (tui_remove_hooks): Likewise.
3150         * mi/mi-cmd-break.c: Include observer.h, not gdb-events.h.
3151         (mi_breakpoint_observers_installed, mi_can_breakpoint_notify): New
3152         globals.
3153         (breakpoint_notify): Check mi_can_breakpoint_notify.
3154         (breakpoint_hooks): Remove.
3155         (mi_cmd_break_insert): Attach observers.  Don't use events.
3156         * tracepoint.c: Include observer.h, not gdb-events.h.
3157         (tracepoint_operation, trace_pass_command): Notify observer.
3158         * interps.c: Don't include gdb-events.h.
3159         (clear_interpreter_hooks): Don't call clear_gdb_event_hooks.
3160         * gdbarch.c: Rebuild.
3161         * gdbarch.sh: Emit include for observer.h, not gdb-events.h.
3162         (deprecated_current_gdbarch_select_hack): Notify observer.
3163         * breakpoint.h: Don't include gdb-events.h.
3164         * breakpoint.c: Don't include gdb-events.h.
3165         (condition_command): Notify observer.
3166         (commands_command): Likewise.
3167         (commands_from_control_command): Likewise.
3168         (mention, delete_breakpoint, set_ignore_count): Likewise.
3169         (disable_breakpoint, do_enable_breakpoint): Likewise.
3170         * Makefile.in (gdb_events_h): Remove.
3171         (breakpoint_h): Update.
3172         (COMMON_OBS): Remove gdb-events.o.
3173         (gdb-events.o): Remove.
3174         (breakpoint.o, gdbarch.o, interps.o, tracepoint.o, gdbtk-bp.o,
3175         gdbtk-hooks.o, mi-cmd-break.o, tui-hooks.o): Update.
3176         * gdb-events.c: Remove.
3177         * gdb-events.h: Remove.
3178         * gdb-events.sh: Remove.
3179
3180 2008-07-24  Pedro Alves  <pedro@codesourcery.com>
3181
3182         * remote.c (remote_threads_extra_info): Don't query the remote
3183         server about info on the internally added main thread.
3184
3185 2008-07-24  Aleksandar Ristovski  <aristovski@qnx.com>
3186
3187         * nto-procfs.c (procfs_attach): Populate initial thread list.
3188         (procfs_wait): Return new pid, built from the inferior status.
3189
3190 2008-07-23  Thiago Jung Bauermann  <bauerman@br.ibm.com>
3191
3192         * configure.ac (CONFIG_INITS): Delete long obsoleted variable.
3193         * configure: Regenerate.
3194
3195 2008-07-23  Aleksandar Ristovski  <aristovski@qnx.com>
3196
3197         * nto-procfs.c (procfs_xfer_memory): Changed signature.
3198         (procfs_resume): Workaround for dereferencing type-punned pointer
3199         warning.
3200         * nto-tdep.c (nto_parse_redirection): Change signature to be const
3201         correct.
3202         * nto-tdep.h (nto_parse_redirection): Likewise.
3203
3204 2008-07-21  Stan Shebs  <stan@codesourcery.com>
3205
3206         Scrub remnants of IN_SOLIB_DYNSYM_RESOLVE_CODE.
3207         * gdbarch.sh: Adjust comment to refer to
3208         in_solib_dynsym_resolve_code().
3209         * gdbarch.h, gdbarch.c: Update.
3210         * solib-osf.c: Ditto.
3211         * infrun.c: Ditto.
3212         (handle_inferior_event): Use in_solib_dynsym_resolve_code
3213         unconditionally.
3214         * config/mips/nm-irix5.h: Remove undef of
3215         IN_SOLIB_DYNSYM_RESOLVE_CODE.
3216
3217 2008-07-21  Tom Tromey  <tromey@redhat.com>
3218
3219         * symfile.c (reread_symbols): Don't pass argument to observer.
3220         * exec.c (exec_file_attach): Don't pass argument to observer.
3221         * ada-lang.c (ada_executable_changed_observer): Remove argument.
3222         * symtab.c (symtab_observer_executable_changed): Remove argument.
3223         * observer.sh: Handle functions with no arguments.
3224
3225 2008-07-20  Sergei Poselenov  <sposelenov@emcraft.com>
3226             Chris Demetriou  <cgd@google.com>
3227
3228         * elfread.c (elf_symfile_segments): Fix the check that each loadable
3229         section fits within an ELF segment to handle ELF segments that hit
3230         the end of the address space.
3231
3232 2008-07-20  Chris Demetriou  <cgd@google.com>
3233
3234         * MAINTAINERS (Write After Approval): Add self.
3235
3236 2008-07-18  Tom Tromey  <tromey@redhat.com>
3237
3238         PR gdb/855:
3239         * NEWS: Add entry for macro commands.
3240         * Makefile.in (macrocmd.o): Add gdb_string.h.
3241         * macroscope.h (user_macro_scope): Declare.
3242         (default_macro_scope): Update documentation.
3243         (macro_user_macros): Declare.
3244         * c-lang.c (c_preprocess_and_parse): Always attempt macro lookup.
3245         Use user_macro_scope.
3246         (null_macro_lookup): Remove.
3247         * macrotab.h (macro_callback_fn): Declare.
3248         (macro_for_each): Likewise.
3249         (macro_allow_redefinitions): Likewise.
3250         * macrotab.c (foreach_macro): New function
3251         (macro_for_each): Likewise.
3252         (struct macro_table) <redef_ok>: New field.
3253         (macro_allow_redefinitions): New function.
3254         (new_macro_table): Update.
3255         (macro_define_function): Likewise.
3256         (macro_define_object): Likewise.
3257         * macroscope.c (user_macro_scope): New function.
3258         (default_macro_scope): Use it.
3259         (macro_user_macros): New global.
3260         (standard_macro_lookup): Look in macro_user_macros.
3261         (_initialize_macroscope): New function.
3262         * macroexp.h (macro_is_whitespace, macro_is_digit,
3263         macro_is_identifier_nondigit): Declare.
3264         * macroexp.c (macro_is_whitespace): Rename.  No longer static.
3265         (macro_is_digit): Likewise.
3266         (macro_is_identifier_nondigit): Likewise.
3267         (get_identifier): Update.
3268         (get_pp_number): Likewise.
3269         (get_token): Likewise.
3270         * macrocmd.c (skip_ws): New function.
3271         (extract_identifier): Likewise.
3272         (free_macro_definition_ptr): Likewise.
3273         (user_macros): Remove.
3274         (macro_define_command): Implement.
3275         (_initialize_macrocmd): Update.
3276         (macro_undef_command): Implement.
3277         (print_one_macro): New function.
3278         (macro_list_command): Implement.
3279
3280 2008-07-18  Joseph Myers  <joseph@codesourcery.com>
3281
3282         * configure.ac: Put old value of $LIBS after -lbfd -liberty $intl
3283         in BFD ELF check.
3284         * configure: Regenerate.
3285
3286 2008-07-17  Paul Pluzhnikov  <ppluzhnikov@google.com>
3287
3288         * auxv.c (fprint_target_auxv): Stop at AT_NULL.
3289
3290 2008-07-15  Andreas Schwab  <schwab@suse.de>
3291
3292         * valops.c (value_cast_pointers): Follow typedefs when checking
3293         result of coercion.
3294
3295 2008-07-15  Daniel Jacobowitz  <dan@codesourcery.com>
3296
3297         * block.c (block_function): Renamed to ...
3298         (block_linkage_function): ... this.  All callers changed.
3299         * block.h (block_function): Renamed to ...
3300         (block_linkage_function): ... this.
3301
3302 2008-07-15  Daniel Jacobowitz  <dan@codesourcery.com>
3303
3304         * mn10300-tdep.c (set_reg_offsets): Use get_frame_register_unsigned.
3305
3306 2008-07-15  Daniel Jacobowitz  <dan@codesourcery.com>
3307
3308         * frame.c (frame_sp_unwind): Delete.
3309         (get_frame_sp): Do not use it.
3310         * frame.h (frame_sp_unwind): Delete prototype.
3311
3312 2008-07-15  Daniel Jacobowitz  <dan@codesourcery.com>
3313
3314         * ia64-tdep.c (ia64_dummy_id): Use get_frame_pc.
3315
3316 2008-07-15  Daniel Jacobowitz  <dan@codesourcery.com>
3317
3318         * dwarf2-frame.c (dwarf2_frame_cache): Update comment.
3319         * frame.c (frame_unwind_address_in_block): Delete.
3320         (get_frame_address_in_block): Do not use it.  Check the type
3321         of the next frame first.
3322         (frame_cleanup_after_sniffer): Update comment.
3323         * frame.h (frame_unwind_address_in_block): Delete prototype.
3324         * hppa-tdep.c (hppa_find_unwind_entry_in_block): Update comment.
3325
3326 2008-07-15  Daniel Jacobowitz  <dan@codesourcery.com>
3327
3328         * frame.c (frame_func_unwind): Delete.
3329         (get_frame_func): Do not use it.
3330         * frame.h (frame_func_unwind): Delete prototype.
3331         * hppa-tdep.c (hppa_frame_cache): Update comment.
3332         * rs6000-tdep.c (rs6000_frame_cache): Update comment.
3333
3334 2008-07-14  Stan Shebs  <stan@codesourcery.com>
3335
3336         * remote-sim.c (init_gdbsim_ops): Remove
3337         TARGET_REDEFINE_DEFAULT_OPS.
3338
3339 2008-07-15  Daniel Jacobowitz  <dan@codesourcery.com>
3340
3341         * findvar.c (read_var_value): Remove unused variable.
3342
3343 2008-07-15  Luis Machado  <luisgpm@br.ibm.com>
3344
3345         * infrun.c (handle_inferior_event): Tag threads as stopped
3346         before inserting breakpoints.
3347
3348 2008-07-15  Hui Zhu  <teawater@gmail.com>
3349
3350         * MAINTAINERS: Added myself to section Write After Approval.
3351
3352 2008-07-14  Paul Pluzhnikov  <ppluzhnikov@google.com>
3353
3354         PR gdb/2477
3355         * cp-abi.c (value_virtual_fn_field): Handle invalid pointers.
3356
3357 2008-07-14  Pedro Alves  <pedro@codesourcery.com>
3358
3359         * i386-dicos-tdep.c (i386_dicos_frame_align): Delete.
3360         (i386_dicos_push_dummy_code): New.
3361         (i386_dicos_init_abi): Don't register i386_dicos_frame_align.
3362         Register i386_dicos_push_dummy_code.
3363
3364 2008-07-14  Markus Deuling  <deuling@de.ibm.com>
3365
3366         * mips-tdep.c (fp_register_arg_p): Add gdbarch as paramter.
3367         (mips_n32n64_push_dummy_call, mips_o64_return_value)
3368         (mips_eabi_push_dummy_call): Update call to fp_register_arg_p.
3369
3370         (MIPS_FPU_TYPE): Add gdbarch as parameter and replace current_gdbarch.
3371         (fp_register_arg_p, mips_dump_tdep, show_mipsfpu_command)
3372         (mips_n32n64_fp_arg_chunk_p): Update caller.
3373
3374         (mips_n32n64_fp_arg_chunk_p): Add gdbarch as paramter.
3375         (mips_n32n64_push_dummy_call): Update caller.
3376
3377         (MIPS_LAST_ARG_REGNUM): Add gdbarch as parameter and replace
3378         current_gdbarch.
3379         (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call)
3380         (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Update caller.
3381
3382
3383         (MIPS_LAST_FP_ARG_REGNUM): Add gdbarch as parameter and replace
3384         current_gdbarch.
3385         (mips_eabi_push_dummy_call, mips_o32_push_dummy_call)
3386         (mips_o64_push_dummy_call): Update caller.
3387
3388         (MIPS_EABI): Add gdbarch as parameter and replace current_gdbarch.
3389         (fp_register_arg_p, mips_dump_tdep): Update caller.
3390
3391         (set_reg_offset): Add gdbarch as parameter and replace current_gdbarch.
3392         (mips16_scan_prologue, mips32_scan_prologue): Update caller.
3393
3394         (reset_saved_regs): Make static.  Add gdbarch as parameter.  Replace
3395         current_gdbarch.
3396         (mips32_scan_prologue): Update caller.
3397
3398         (heuristic_proc_start): Add gdbarch as parameter. Replace
3399         current_gdbarch.
3400         (mips_insn16_frame_cache, mips_insn32_frame_cache): Update caller.
3401
3402         * mipsnbsd-nat.c (mipsnbsd_fetch_inferior_registers)
3403         (mipsnbsd_store_inferior_registers): Use get_regcache_arch to get at
3404         the current architecture. Update call to getregs_supplies.
3405         (getregs_supplies): Add gdbarch as parameter and replace
3406         current_gdbarch.
3407
3408         * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use get_frame_arch to
3409         get at the current architecture. Update call to NBSD_MIPS_JB_OFFSET and
3410         NBSD_MIPS_JB_ELEMENT_SIZE.
3411         (NBSD_MIPS_JB_ELEMENT_SIZE, NBSD_MIPS_JB_OFFSET): Add gdbarch and
3412         replace current_gdbarch.
3413
3414         * remote-mips.c (mips_map_regno): Add gdbarch as parameter and replace
3415         current_gdbarch.
3416         (mips_fetch_registers, mips_store_registers): Update call
3417         to mips_map_regno.
3418         (mips_load): Use get_regcache_arch to get at the current_architecture
3419         and replace current_gdbarch.
3420
3421 2008-07-13  Pedro Alves  <pedro@codesourcery.com>
3422
3423         * thread.c (restore_selected_frame): On fail to restore, select
3424         the innermost frame, and don't crash when warning the user.
3425
3426 2008-07-13  Hui Zhu  <teawater@gmail.com>
3427
3428         * symtab.c (expand_line_sal): Fix a memory leak.
3429
3430 2008-07-13  Pedro Alves  <pedro@codesourcery.com>
3431
3432         * utils.c (struct continuation): Define as inheriting struct
3433         cleanup.
3434         (add_continuation, do_all_continuations)
3435         (discard_all_continuations, add_intermediate_continuation)
3436         (do_all_intermediate_continuations)
3437         (discard_all_intermediate_continuations): Adjust.
3438
3439 2008-07-13  Vladimir Prus  <vladimir@codesourcery.com>
3440
3441         Skip varobj in running threads.
3442         * mi/mi-cmd-var.c (mi_cmd_var_update): If varobj's
3443         thread is not stopped, skip the varobj.
3444         * Makefile.in: Update dependencies.
3445
3446 2008-07-13  Vladimir Prus  <vladimir@codesourcery.com>
3447
3448         Enable all commands while inferiour is running
3449         * mi/mi-main.c (mi_cmd_execute): Don't check if
3450         inferiour is executing.
3451
3452 2008-07-13  Vladimir Prus  <vladimir@codesourcery.com>
3453
3454         Allow all CLI command even if target is executing.
3455         * gdb/top.c (execute_command_1): Don't check if the inferiour
3456         is running.
3457
3458 2008-07-13  Vladimir Prus  <vladimir@codesourcery.com>
3459
3460         * mi/mi-main.c (mi_cmd_execute): Remove unused variable.
3461         Fix printing of frame, when frame is wrong.
3462
3463 2008-07-12  Ulrich Weigand  <uweigand@de.ibm.com>
3464
3465         * spu-tdep.c (spu_frame_unwind_cache): Do not error if
3466         backchain is unreadable.
3467
3468 2008-07-12  Ulrich Weigand  <uweigand@de.ibm.com>
3469
3470         * spu-linux-nat.c: Include "gdbthread.h".
3471         (spu_child_post_startup_inferior): Register main thread.
3472         (spu_child_post_attach): Likewise.
3473         * Makefile.in (spu-linux-nat.o): Update dependencies.
3474
3475 2008-07-12  Pedro Alves  <pedro@codesourcery.com>
3476
3477         Rewrite continuations internals on top of cleanups and plug
3478         continuation arguments leaks.
3479
3480         * defs.h (struct continuation): Make it opaque.
3481         (add_continuation, add_intermediate_continuation): Drop the int
3482         argument of the continuation hook argument.  Add
3483         continuation_free_args argument.
3484         (do_all_continuations, do_all_intermediate_continuations): Drop
3485         the error_p argument.
3486
3487         * utils.c (add_continuation): Drop the int argument of the
3488         continuation hook argument.  Add continuation_free_args argument.
3489         Reimplement on top of cleanups.
3490         (do_all_continuations): Drop error argument.  Reimplement on top
3491         of cleanups.
3492         (discard_all_continuations): Reimplement on top of cleanups.
3493         (add_intermediate_continuation): Drop the int argument of the
3494         continuation hook argument.  Add continuation_free_args argument.
3495         Reimplement on top of cleanups.
3496         (do_all_intermediate_continuations): Drop error argument.
3497         Reimplement on top of cleanups.
3498         (discard_all_intermediate_continuations): Reimplement on top of
3499         cleanups.
3500
3501         * breakpoint.c (until_break_command_continuation): Drop error
3502         argument.  Add xfree as continuation argument deleter.
3503
3504         * inf-loop.c (inferior_event_handler): On error, discard all
3505         continuations.  Adjust to new do_all_intermediate_continuations
3506         and do_all_continuations interfaces.
3507
3508         * infcmd.c (step_1_continuation): Drop error_p argument.  Adjust.
3509         Pass xfree as continuation argument deleter.
3510         (finish_command_continuation): Drop error_p argument.  Adjust.
3511         (finish_command_continuation_free_arg): New.
3512         (finish_command): Pass finish_command_continuation_free_arg as
3513         continuation argument deleter.  Adjust to new do_all_continuations
3514         interfaces.
3515         (attach_command_continuation): Drop error_p argument.
3516         (attach_command_continuation_free_args): New.
3517         (attach_command): Pass attach_command_continuation_free_args as
3518         continuation argument deleter.
3519
3520         * interps.c (interp_set): Adjust to new do_all_continuations
3521         interfaces.
3522
3523         * event-top.c (stdin_event_handler): In error, also discard the
3524         intermediate continuations.
3525
3526 2008-07-12  Pedro Alves  <pedro@codesourcery.com>
3527
3528         Replace struct continuation_args by void* and per command structs.
3529
3530         * top.c (execute_command): Remove unused arg1 and arg2 locals.
3531
3532         * breakpoint.c (struct until_break_command_continuation_args):
3533         New.
3534         (until_break_command_continuation): Take a void* instead of a
3535         continuations_arg.  Adjust.
3536         (until_break_command): Adjust to use struct
3537         until_break_command_continuation_args instead of struct
3538         continuation_arg.
3539
3540         * infcmd.c (struct step_1_continuation_args): New.
3541         (step_1_continuation): Take a void* instead of a
3542         continuations_arg.  Adjust to use struct step_1_continuation_args.
3543         (step_once): Adjust to use struct step_1_continuation_args.
3544
3545         (struct finish_command_continuation_args): New.
3546         (finish_command_continuation): Take a void* instead of a
3547         continuations_arg.  Adjust to use struct
3548         finish_command_continuation_args.
3549         (finish_command): Adjust to use struct
3550         finish_command_continuation_args.
3551         (struct attach_command_continuation_args): New.
3552         (attach_command_continuation): Take a void* instead of a
3553         continuations_arg.  Adjust to use struct
3554         attach_command_continuation_args.
3555         (attach_command): Adjust to use struct
3556         attach_command_continuation_args.
3557
3558         * defs.h (struct continuation_arg): Delete.
3559         (struct continuation): Replace the struct continuation_arg*
3560         parameter of continuation_hook by a void*.  Replace "arg_list"
3561         member by a new "args" member with void* type.
3562         (add_continuation, add_intermediate_continuation): Replace struct
3563         continuation_arg type usages by void* usages.
3564
3565         * utils.c (add_continuation, do_all_continuations)
3566         (add_intermediate_continuation)
3567         (do_all_intermediate_continuations): Replace struct
3568         continuation_arg type usages by void* usages.  Pass "args" instead
3569         of "arg_list".
3570
3571 2008-07-12  Pedro Alves  <pedro@codesourcery.com>
3572
3573         * infrun.c (struct thread_stepping_state): Delete sal member.
3574         (init_thread_stepping_state): Add local sal.  Use it instead of
3575         tss->sal.
3576         (handle_inferior_event): New local stop_pc_sal.  Use it instead of
3577         tss->sal.
3578         (step_into_function): Add local stop_func_sal.  Use it instead of
3579         tss->sal.
3580
3581 2008-07-12  Vladimir Prus  <vladimir@codesourcery.com>
3582
3583         Implement -exec-continue/-exec-interrupt --all.
3584         * infcmd.c (continue_1): New, extracted from
3585         (continue_command): ...here.
3586         (interrupt_target_1): New, extracted from
3587         (interrupt_target_command): ...here.
3588         * inferior.h (continue_1, interrupt_target_1): New.
3589         * mi/mi-main.c (mi_cmd_exec_continue)
3590         (mi_cmd_exec_interrupt): Handle --all.
3591
3592 2008-07-12  Vladimir Prus  <vladimir@codesourcery.com>
3593
3594         Implement --thread and --frame.
3595         * gdbthread.h (find_thread_id): Declare.
3596         * thread.c (find_thread_id): Make non-static.
3597         * mi/mi-main.c (mi_cmd_execute): Switch to the right
3598         thread and frame, if necessary.
3599         * mi/mi-parse.c (mi_parse): Handle --thread and --frame.
3600         * mi/mi-parse.h (strcut mi_parse): New fields thread and frame.
3601
3602 2008-07-12  Vladimir Prus  <vladimir@codesourcery.com>
3603
3604         * infrun.c (resume): Discard cleanups on early exit path.
3605
3606 2008-07-12  Vladimir Prus  <vladimir@codesourcery.com>
3607
3608         * infrun.c (normal_stop): For MI, report which threads
3609         were stopped.
3610
3611 2008-07-12  Vladimir Prus  <vladimir@codesourcery.com>
3612
3613         Report thread state in -thread-info output.
3614         * thread.c (print_thread_info): Add new field "state".
3615
3616 2008-07-11  Pedro Alves  <pedro@codesourcery.com>
3617
3618         * infrun.c (handle_inferior_event): Also ignore a
3619         TARGET_SIGNAL_TRAP on a STOP_QUIETLY_NO_SIGSTOP.
3620
3621 2008-07-11  Tom Tromey  <tromey@redhat.com>
3622
3623         * completer.c (complete_line_internal): New function, from
3624         complete_line.  Add 'for_help' parameter.
3625         (complete_line): Use it.
3626         (command_completer): Move later.  Rewrite.
3627
3628 2008-07-11  Pedro Alves  <pedro@codesourcery.com>
3629
3630         * thread.c (thread_apply_command): Move making the cleanup out of
3631         the loop.
3632
3633 2008-07-11  Pedro Alves  <pedro@codesourcery.com>
3634
3635         Exited threads.
3636
3637         * thread.c (enum thread_state): New.
3638         (thread_state main_thread_running): Delete, in favor of...
3639         (thread_state main_thread_state): ... this.  Update throughout.
3640         (clear_thread_inferior_resources): New, split from free_thread.
3641         (free_thread): Call clear_thread_inferior_resources.
3642         (init_thread_list): Set main thread to stopped state.
3643         (add_thread_silent): Take care of PTID reuses.
3644         (delete_thread): If deleting inferior_ptid or a thread with
3645         refcount > 0, mark it as exited, but still keep it in the list.
3646         Only notify of thread exits, if we haven't done so yet.
3647         (iterate_over_threads): Make it safe to delete threads while
3648         iterating over them.
3649         (do_captured_list_thread_ids): Don't account for exited threads.
3650         (thread_alive): Check for the THREAD_EXITED state, and don't set
3651         ptid to -1 on exited threads.
3652         (set_running): Update to account for extra possible states.
3653         (is_thread_state): New.
3654         (is_stopped, is_exited): New.
3655         (is_running): Implement in terms of is_thread_state.
3656         (any_running): Update.
3657         (print_thread_info): Update.  Account for exited threads.  Don't
3658         warn about missed frame restoring here, its done in the cleanup.
3659         (switch_to_thread): Don't read from a thread that has gone.
3660         (restore_current_thread): In non-stop mode, do a full context
3661         switch.
3662         (restore_selected_frame): Add a frame_level argument.  Rewrite.
3663         (struct current_thread_cleanup): Add selected_frame_level and
3664         was_stopped members.
3665         (do_restore_current_thread_cleanup): Check if thread was stopped
3666         and still is, and if the target has registers, stack and memory
3667         before restoring the selected frame.  Don't delete the cleanup
3668         argument here.
3669         (restore_current_thread_cleanup_dtor): New.
3670         (make_cleanup_restore_current_thread): Remove all arguments.
3671         Rewrite.
3672         (thread_apply_all_command): Update.  Prune threads.
3673         (thread_apply_command): Update.
3674         (thread_command): Account for currently selected exited thread.
3675         (do_captured_thread_select): Check for a running thread.  Prune
3676         threads.
3677         (_initialize_thread): Make "info threads", "thread", "thread
3678         apply", and "thread apply all" appliable without a selected thread.
3679         * gdbthread.h (struct thread_info): Replace running_ by state_.
3680         Add refcount.
3681         (is_exited, is_stopped): Declare.
3682         (make_cleanup_restore_current_thread): Remove all arguments.
3683         * infrun.c: Include "event-top.h".
3684         (fetch_inferior_event): In non-stop mode, restore selected thread
3685         and frame after handling the event and running breakpoint
3686         commands.  Display GDB prompt if needed.
3687         (normal_stop): In non-stop mode, don't print thread switching
3688         notice.
3689         * cli/cli-decode.c (set_cmd_no_selected_thread_ok)
3690         (get_cmd_no_selected_thread_ok): New.
3691         * cli/cli-decode.h (CMD_NO_SELECTED_THREAD_OK): New.
3692         (set_cmd_no_selected_thread_ok, get_cmd_no_selected_thread_ok):
3693         Declare.
3694         * cli/cli-cmds.c: Set "pwd", "help", "info", "show" as
3695         no-selected-thread ok.
3696         * top.c (execute_command): Check for non no-selected-thread-ok
3697         commands.
3698         * linux-nat.c (struct saved_ptids, threads_to_delete)
3699         (record_dead_thread, prune_lwps): Delete.
3700         (exit_lwp): Unconditionally delete thread.
3701         (linux_nat_resume): Remove prune_lwps call.
3702         * infcmd.c (proceed_thread_callback): Check if !is_stopped instead
3703         of is_running.  Adjust to make_cleanup_restore_current_thread
3704         interface change.
3705         * mi/mi-main.c (mi_cmd_execute): Only allow a few commands if the
3706         selected thread has exited.
3707         * inf-loop.c (inferior_event_handler): Don't display the prompt
3708         here.
3709         * varobj.c (c_value_of_root): Update.
3710         * defs.h (make_cleanup_dtor): Declare.
3711         * utils.c (make_cleanup_dtor): New.
3712
3713         * Makefile.in (infrun.o): Depend on $(event_top_h).
3714
3715 2008-07-11  Pedro Alves  <pedro@codesourcery.com>
3716
3717         Add "continue -a" and "interrupt -a" options for non-stop mode.
3718
3719         * infcmd.c (proceed_thread_callback, do_context_switch_to): New.
3720         (continue_command): Add "-a" option.
3721         (interrupt_target_command): Add "-a" option.
3722         (_initialize_infcmd): Add extend help of continue and interrupt
3723         command to mention the new "-a" option.  Mark "continue" async ok.
3724
3725 2008-07-10  Doug Evans  <dje@google.com>
3726
3727         Add "set print symbol-loading on|off".
3728         * NEWS: Document new option.
3729         * symfile.h (print_symbol_loading): Declare.
3730         * symfile.c (print_symbol_loading): New global.
3731         (symbol_file_add_with_addrs_or_offsets): Only print "Reading symbols
3732         from ..." if print_symbol_loading.
3733         (_initialize_symfile): Add set/show print symbol-loading.
3734         * solib.c (solib_read_symbols): Only print "Loaded symbols for ..."
3735         if print_symbol_loading.
3736
3737 2008-07-10  Pedro Alves  <pedro@codesourcery.com>
3738
3739         Non-stop linux native.
3740
3741         * linux-nat.c (linux_test_for_tracefork): Block events while we're
3742         here.
3743         (get_pending_status): Implement non-stop mode.
3744         (linux_nat_detach): Stop threads before detaching.
3745         (linux_nat_resume): In non-stop mode, always resume only a single
3746         PTID.
3747         (linux_handle_extended_wait): On a clone event, in non-stop mode,
3748         add new lwp to GDB's thread table, and mark as running, executing
3749         and stopped appropriately.
3750         (linux_nat_filter_event): Don't assume there are other running
3751         threads when a thread exits.
3752         (linux_nat_wait): Mark the main thread as running and executing.
3753         In non-stop mode, don't stop all lwps.
3754         (linux_nat_kill): Stop lwps before killing them.
3755         (linux_nat_thread_alive): Use signal 0 to detect if a thread is
3756         alive.
3757         (send_sigint_callback): New.
3758         (linux_nat_stop): New.
3759         (linux_nat_add_target): Set to_stop to linux_nat_stop.
3760
3761         * linux-nat.h (thread_db_attach_lwp): Declare.
3762
3763         * linux-thread-db.c (thread_get_info_callback): Check for new
3764         threads if we have none.
3765         (thread_from_lwp, enable_thread_event): Set proc_handle.pid to the
3766         stopped lwp.  Check for new threads if we have none.
3767         (thread_db_attach_lwp): New.
3768         (thread_db_init): Set proc_handle.pid to inferior_ptid.
3769         (check_event): Set proc_handle.pid to the stopped lwp.
3770         (thread_db_find_new_threads): Set proc_handle.pid to any stopped
3771         lwp available, bail out if there is none.
3772
3773         * linux-fork.c (linux_fork_killall): Use SIGKILL instead of
3774         PTRACE_KILL.
3775
3776 2008-07-10  Kevin Buettner  <kevinb@redhat.com>
3777
3778         * rs6000-tdep.c (ppc_displaced_step_fixup): Change type of
3779         `current_pc' from CORE_ADDR to ULONGEST.
3780
3781         * remote-sim.c (gdbsim_cntrl_c): Pass remote_sim_ptid to
3782         gdbsim_stop().
3783
3784 2008-07-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
3785
3786         * NEWS (New commands): Mention "set disable-randomization".
3787         * configure.ac: Add check for HAVE_PERSONALITY and
3788         HAVE_DECL_ADDR_NO_RANDOMIZE.
3789         * configure, config.in: Regenerate.
3790         * linux-nat.c [HAVE_PERSONALITY]: New include <sys/personality.h>.
3791         [HAVE_PERSONALITY] [!HAVE_DECL_ADDR_NO_RANDOMIZE]: Set
3792         ADDR_NO_RANDOMIZE.
3793         (disable_randomization, show_disable_randomization)
3794         (set_disable_randomization): New.
3795         (linux_nat_create_inferior) [HAVE_PERSONALITY]: New variables
3796         PERSONALITY_ORIG and PERSONALITY_SET.  Disable randomization upon the
3797         variable DISABLE_RANDOMIZATION.
3798         (_initialize_linux_nat): Call ADD_SETSHOW_BOOLEAN_CMD for the variable
3799         DISABLE_RANDOMIZATION.
3800
3801 2008-07-09  Pedro Alves  <pedro@codesourcery.com>
3802
3803         Adjust all targets to new target_stop interface.
3804
3805         * gnu-nat.c (gnu_stop): Add ptid argument.
3806         * go32-nat.c (go32_stop): Add ptid argument.
3807         (go32_create_inferior): Pass inferior_ptid to go32_stop.
3808         * hpux-thread.c (hpux_thread_stop): Add ptid argument.
3809         * monitor.c (monitor_stop): Add ptid argument.
3810         (monitor_open): Pass inferior_ptid to monitor_stop.
3811         (monitor_interrupt): Pass inferior_ptid to target_stop.
3812         (monitor_stop): Add ptid argument.
3813         * nto-procfs.c (nto_interrupt): Pass inferior_ptid to target_stop.
3814         (procfs_create_inferior): Add ptid argument.
3815         * procfs.c (procfs_stop): Add ptid argument.
3816         * remote-m32r-sdi.c (m32r_stop): Add ptid argument.
3817         * remote-sim.c (gdbsim_stop): Add ptid argument.
3818         * sol-thread.c (sol_thread_stop): Add ptid argument.
3819         * win32-nat.c (win32_stop): Add ptid argument.
3820
3821 2008-07-09  Pedro Alves  <pedro@codesourcery.com>
3822
3823         Non-stop inferior control.
3824
3825         * infrun.c (resume): In non-stop mode, always resume just one
3826         thread.
3827         (proceed): Don't call prepare_to_proceed in non-stop mode.
3828         (fetch_inferior_event): In non-stop mode, switch context before
3829         handling the event.
3830         (error_is_running, ensure_not_running): New.
3831         (handle_inferior_event): In non-stop mode: Mark only the event
3832         thread as stopped.  Require that the target module manages adding
3833         threads to the thread list.  Assert that there isn't a
3834         deferred_step_ptid set.  Don't switch to infwait_thread_hop_state.
3835         (normal_stop): Only mark not-running if inferior hasn't exited.
3836         In non-stop mode, only mark the event thread.
3837
3838         * thread.c:Include "cli/cli-decode.h".
3839         (print_thread_info): Don't read from a running thread.
3840         Output "(running)" if thread is running.
3841         (switch_to_thread): Don't read stop_pc if thread is executing.
3842         (do_restore_current_thread_cleanup): Don't write to a running
3843         thread.
3844         (thread_apply_all_command): Don't read from a running thread.  In
3845         non-stop mode, do a full context-switch instead of just switching
3846         threads.
3847         (thread_apply_command): In non-stop mode, do a full context-switch
3848         instead of just switching threads.
3849         (do_captured_thread_select): Likewise.  Inform user if selected
3850         thread is running.
3851         (_initialize_thread): Mark "info threads" and "thread" and
3852         async_ok.
3853
3854         * inf-loop.c (inferior_event_handler): In non-stop mode, don't
3855         unregister the target from the event loop.
3856
3857         * infcmd.c (continue_command, step_1, jump_command)
3858         (signal_command): Ensure the selected thread isn't running.
3859         (interrupt_target_command): In non-stop mode, interrupt only the
3860         selected thread.
3861
3862         * inferior.h (error_is_running, ensure_not_running): Declare.
3863
3864         * target.h (struct target_ops): Add ptid argument to the to_stop
3865         member.
3866         (target_stop): Add ptid_t argument.
3867
3868         * target.c (update_current_target): Add ptid argument to to_stop's
3869         type.
3870         (debug_to_stop): Add ptid_t argument.
3871         (debug_to_rcmd): Set to_stop_ptid.
3872
3873         * remote.c (remote_stop): Add ptid_t argument.
3874         (async_remote_interrupt): Add inferior_ptid to target_stop.
3875         * inf-ptrace.c (inf_ptrace_stop): Add ptid argument.
3876
3877         * Makefile.in (thread.o): Depend on $(cli_decode_h).
3878
3879 2008-07-09  Pedro Alves  <pedro@codesourcery.com>
3880
3881         Don't rely on ecs->wait_for_more.
3882
3883         * infrun.c (proceed): Clear the stepping state, set
3884         previous_inferior_ptid and clear infwait state.
3885         (wait_for_inferior): Don't clear the stepping state, set
3886         previous_inferior_ptid, or clear the infwait state here.
3887         (fetch_inferior_event): Don't clear the stepping state, set
3888         previous_inferior_ptid, or clear the infwait state here.  Don't
3889         condition on wait_for_more.
3890
3891 2008-07-09  Pedro Alves  <pedro@codesourcery.com>
3892
3893         Refactor infrun a bit.
3894
3895         * infrun.c (currently_stepping): Take a struct
3896         thread_stepping_state instead of an execution_control_state.
3897         (struct thread_stepping_state): New, split from
3898         execution_control_state.
3899         (gtss, tss): New globals.
3900         (proceed): Clear the stepping state, set previous_inferior_ptid
3901         and clear infwait state.
3902         (init_wait_for_inferior): Clear the stepping state,
3903         previous_inferior_ptid and infwait state.
3904         (waiton_ptid, infwait_state): New, split from
3905         execution_control_state.
3906         (struct execution_control_state): Members that persist through
3907         events moved out to either struct thred_stepping_state or made
3908         global.  Deleted unneeded wp, saved_inferior_ptid, tmpstatus.
3909         (wait_for_inferior, fetch_inferior_event): Use local
3910         execution_control_state.  Update to execution_control_state split.
3911         (init_execution_control_state): Adjust.
3912         (init_thread_stepping_state): New, extracted from
3913         init_execution_control_state.
3914         (context_switch): Take a ptid instead of an
3915         execution_control_state.
3916         (context_switch_to): Adjust.
3917         (adjust_pc_after_break): Adjust.
3918         (init_infwait_state): New.
3919         (handle_inferior_event): Adjust.
3920
3921 2008-07-09  Pedro Alves  <pedro@codesourcery.com>
3922             Vladimir Prus  <vladimir@codesourcery.com>
3923
3924         Per-thread commands.
3925
3926         * gdbthread.h: Remove unneeded forward declarations.
3927         Include "inferior.h".
3928         (struct thread_info): Add continuations,
3929         intermediate_continuations, proceed_to_finish, step_over_calls,
3930         stop_step, step_multi and stop_signal members.
3931         (save_infrun_state): Add continuations,
3932         intermediate_continuations, proceed_to_finish, step_over_calls,
3933         stop_step, step_multi, stop_signal and stop_bpstat parameters.
3934         (load_infrun_state): Add continuations,
3935         intermediate_continuations, proceed_to_finish, step_over_calls,
3936         stop_step, step_multi, stop_signal and stop_bpstat parameters.
3937
3938         * thread.c (load_infrun_state): In non-stop mode, load
3939         continuations, intermediate_continuations, proceed_to_finish,
3940         step_over_calls, stop_step, step_multi and stop_signal.
3941         (save_infrun_state): Store continuations,
3942         intermediate_continuations, proceed_to_finish, step_over_calls,
3943         stop_step, step_multi, stop_signal and stop_bpstat.
3944         (save_infrun_state): Store continuations,
3945         intermediate_continuations, proceed_to_finish, step_over_calls,
3946         stop_step, step_multi, stop_signal and stop_bpstat.
3947         (free_thread): Clear The thread's stop_bpstat.
3948
3949         * inferior.h (context_switch_to): Declare.
3950
3951         * infrun.c (ecss): New global.
3952         (context_switch): Context switch continuations,
3953         intermediate_continuations, proceed_to_finish, step_over_calls,
3954         stop_step, step_multi, stop_signal and stop_bpstat.
3955         (wait_for_inferior): Use global ecss.
3956         (async_ecss, async_ecs): Delete.
3957         (fetch_inferior_event): Use global ecss.
3958         (context_switch_to): New.
3959
3960         * top.c (execute_command): In non-stop, only check if the current
3961         thread is running, in all-stop, check if there's any thread
3962         running.
3963
3964         * breakpoint.c (bpstat_remove_breakpoint): New.
3965         (bpstat_remove_breakpoint_callback): New.
3966         (delete_breakpoint): Clear the stop_bpstats of all threads.
3967
3968         * mi/mi-main.c (mi_cmd_execute): In non-stop, only check if the
3969         current thread is running, in all-stop, check if there's any
3970         thread running.
3971
3972         * Makefile.in (gdbthread_h): Depend on $(inferior_h).
3973
3974 2008-07-09  Pedro Alves  <pedro@codesourcery.com>
3975
3976         Add non_stop global.
3977
3978         * inferior.h (non_stop): Declare.
3979         * infrun.c (non_stop, non_stop_1): New.
3980         (set_non_stop, show_non_stop): New.
3981         (_initialize_infrun): Add "set/show non-stop" command.
3982
3983 2008-07-09  Pedro Alves  <pedro@codesourcery.com>
3984
3985         Adjust fork/vfork/exec to pass ptids around.
3986
3987         * target.h (struct target_waitstatus): Store related_pid as a ptid.
3988         (inferior_has_forked, inferior_has_vforked, inferior_has_execd):
3989         Take a ptid_t.
3990         * breakpoint.h (struct breakpoint): Change forked_inferior_pid
3991         type to ptid.
3992         * breakpoint.c (print_it_typical, bpstat_check_location)
3993         (print_one_breakpoint_location, set_raw_breakpoint_without_location)
3994         (create_fork_vfork_event_catchpoint): Adjust.
3995         * infrun.c (fork_event): Change parent_pid and child_pid types to
3996         ptid.
3997         (follow_exec, inferior_has_forked, inferior_has_vforked)
3998         (inferior_has_execd): Take a ptid_t and don't trim it.
3999         * linux-thread-db.c (thread_db_wait): Don't trim the returned ptid.
4000         * linux-nat.c (linux_child_follow_fork): Adjust.
4001         * inf-ptrace.c (inf_ptrace_wait): Adjust.
4002         * inf-ttrace.c (inf_ttrace_wait): Adjust.
4003         * win32-nat.c (get_win32_debug_event): Don't set related_pid.
4004
4005 2008-07-09  Pedro Alves  <pedro@codesourcery.com>
4006
4007         Add "executing" property to threads.
4008
4009         * inferior.h (target_executing): Delete.
4010         * gdbthread.h (struct thread_info): Add executing_ field.
4011         (set_executing, is_executing): New.
4012         * thread.c (main_thread_executing): New.
4013         (init_thread_list): Clear it and also main_thread_running.
4014         (is_running): Return false if target has no execution.
4015         (any_running, is_executing, set_executing): New.
4016
4017         * top.c: Include "gdbthread.h".
4018         (target_executing): Delete.
4019         (execute_command): Replace target_executing check by any_running.
4020         * event-top.c: Include "gdbthread.h".
4021         (display_gdb_prompt, command_handler): Replace target_executing by
4022         is_running.
4023         * inf-loop.c: Include "gdbthread.h".  Don't mark as not executing
4024         here.  Replace target_executing by is_running.
4025         * infrun.c (handle_inferior_event): Mark all threads as
4026         not-executing.
4027         * linux-nat.c (linux_nat_resume): Don't mark thread as executing
4028         here.
4029         * stack.c (get_selected_block): Return null if inferior is
4030         executing.
4031         * target.c (target_resume): Mark resumed ptid as executing.
4032         * breakpoint.c (until_break_command): Replace target_executing
4033         check by is_executing.
4034         * remote.c (remote_async_resume): Don't mark inferior as executing
4035         here.
4036         * mi/mi-interp.c (mi_cmd_interpreter_exec): Replace target_executing
4037         by any_running.
4038
4039         * mi/mi-main.c (mi_cmd_exec_interrupt, mi_cmd_execute)
4040         (mi_execute_async_cli_command): Replace target_executing by
4041         is_running.
4042
4043         * frame.c (get_current_frame): Error out if the current thread is
4044         executing.
4045         (has_stack_frames): New.
4046         (get_selected_frame, deprecated_safe_get_selected_frame): Check
4047         has_stack_frames.
4048
4049         * Makefile.in (event-top.o, frame.o, inf-loop.o, top.o): Depend on
4050         $(gdbthread_h).
4051
4052 2008-07-09  Pedro Alves  <pedro@codesourcery.com>
4053
4054         * symfile.c (load_command): Reopen the exec file and reread
4055         symbols before anything else.
4056
4057 2008-07-09  Pedro Alves  <pedro@codesourcery.com>
4058
4059         * remote-sim.c: Include gdbthread.h.
4060         (remote_sim_ptid): New global.
4061         (gdbsim_create_inferior): Silently add the main task to GDB's
4062         thread list.
4063         (gdbsim_close, gdbsim_mourn_inferior): Silently delete the main
4064         task from GDB's thread list.
4065         (gdbsim_resume): Adjust to use remote_sim_ptid.
4066         (gdbsim_thread_alive, gdbsim_pid_to_str): New.
4067         (init_gdbsim_ops): Register gdbsim_thread_alive and
4068         gdbsim_pid_to_str.
4069         (_initialize_remote_sim): Initialize remote_sim_ptid.
4070         * Makefile.in (remote-sim.o): Depend on $(gdbthread_h).
4071
4072 2008-07-09  Pedro Alves  <pedro@codesourcery.com>
4073
4074         * monitor (monitor_ptid): New global.
4075         (monitor_open): Silently add the main task to GDB's thread list.
4076         (monitor_close, monitor_mourn_inferior): Silently delete the main
4077         task from GDB's thread list.
4078         (monitor_thread_alive, monitor_pid_to_str): New.
4079         (init_base_monitor_ops): Register monitor_thread_alive and
4080         monitor_pid_to_str.
4081         (_initialize_remote_monitors): Initialize monitor_ptid.
4082
4083         * gdbthread.h (delete_thread_silent): Declare.
4084         * thread.c (delete_thread): Rename to ...
4085         (delete_thread_1): ... this.  Add "silent" parameter.  If silent,
4086         don't do exit notifications.
4087         (delete_thread, delete_thread_silent): New, as wrappers to
4088         delete_thread_1.
4089
4090 2008-07-08  Pedro Alves  <pedro@codesourcery.com>
4091
4092         * breakpoint.c (update_global_location_list): Add boolean
4093         "should_insert" argument.  Only insert locations if caller told it
4094         too.
4095         (update_global_location_list_nothrow): Add boolean "should_insert"
4096         argument.  Pass it to update_global_location_list.
4097         (insert_breakpoints, create_longjmp_breakpoint)
4098         (create_overlay_event_breakpoint, enable_overlay_breakpoints)
4099         (create_thread_event_breakpoint, create_solib_event_breakpoint)
4100         (create_fork_vfork_event_catchpoint, create_exec_event_catchpoint)
4101         (enable_watchpoints_after_interactive_call_stop)
4102         (set_momentary_breakpoint, create_breakpoints)
4103         (break_command_really, watch_command_1)
4104         (create_ada_exception_breakpoint, update_breakpoint_locations)
4105         (do_enable_breakpoint, enable_command): Pass true to
4106         update_global_location_list.
4107         (bpstat_stop_status, disable_overlay_breakpoints)
4108         (disable_watchpoints_before_interactive_call_start)
4109         (delete_breakpoint, disable_breakpoint, disable_command): Pass
4110         false to update_global_location_list.
4111         (update_breakpoints_after_exec): Don't temporarily disable
4112         always-inserted mode.
4113
4114 2008-07-08  Pedro Alves  <pedro@codesourcery.com>
4115
4116         * breakpoint.c (mark_breakpoints_out): Make public.
4117         (update_breakpoints_after_exec): Don't call mark_breakpoints_out
4118         here.  Update comment.
4119         * breakpoint.h (mark_breakpoints_out): Declare.
4120
4121         * linux-nat.c (linux_handle_extended_wait): On
4122         TARGET_WAITKIND_EXECD, call mark_breakpoints_out.
4123         * inf-ttrace.c (inf_ttrace_wait): Likewise.
4124
4125 2008-07-08  Pedro Alves  <pedro@codesourcery.com>
4126
4127         * infrun.c (follow_exec): Reset shared libraries before adding the
4128         main exec file.
4129
4130 2008-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
4131
4132         * breakpoint.c (bpstat_copy): Call RELEASE_VALUE on the new OLD_VAL.
4133
4134 2008-07-07  Pedro Alves  <pedro@codesourcery.com>
4135
4136         * i386-dicos-tdep.c: Include "inferior.h".
4137         (i386_dicos_frame_align): New.
4138         (i386_dicos_init_abi): Register i386_dicos_frame_align.  Set call
4139         dummy location ON_STACK.
4140         * Makefile.in (i386-dicos-tdep.o): Depend on $(inferior_h).
4141
4142 2008-07-07  Joel Brobecker  <brobecker@adacore.com>
4143
4144         * gstdint.h: New file.
4145
4146 2008-07-05  Vladimir Prus  <vladimir@codesourcery.com>
4147
4148         * mi/mi-interp.c (mi_on_resume): Don't try to report
4149         resumed thread it the thread list is empty.
4150
4151 2008-07-05  Pierre Muller  <muller@ics.u-strasbg.fr>
4152
4153         * cli/cli-decode.c (add_setshow_optional_filename_cmd): Set
4154         completer for set to filename_completer.
4155
4156         NEWS: Mention it.
4157
4158 2008-07-04  Vladimir Prus  <vladimir@codesourcery.com>
4159
4160         Implement -target-attach.
4161         * mi/mi-cmds.c (mi_cmds): Forward -target-attach to CLI attach.
4162
4163 2008-06-21  Hui Zhu  <teawater@gmail.com>
4164
4165         * target-descriptions.c (maint_print_c_tdesc_cmd): Fix a memory leak.
4166
4167 2008-07-03  Pedro Alves  <pedro@codesourcery.com>
4168
4169         * config/i386/nm-cygwin.h (ATTACH_NO_WAIT): Delete.
4170         * config/i386/nm-i386gnu.h (ATTACH_NO_WAIT): Delete.
4171
4172         * target.h (struct target_ops): Add to_attach_no_wait member.
4173         (target_attach_no_wait): New.
4174         * target.c (update_current_target): Inherit to_attach_no_wait.
4175
4176         * infcmd.c: Replace ATTACH_NO_WAIT compile time check by
4177         target_attach_no_wait runtime check.
4178
4179         * gnu-nat.c (init_gnu_ops): Set to_attach_no_wait in gnu_ops.
4180         * win32-nat.c (init_win32_ops): Set to_attach_no_wait in
4181         win32_ops.
4182
4183 2008-07-03  Pedro Alves  <pedro@codesourcery.com>
4184
4185         * i386-tdep.c (i386_displaced_step_fixup): Condition log printing
4186         on debug_displaced being set.
4187
4188 2008-06-30  Daniel Jacobowitz  <dan@codesourcery.com>
4189
4190         * frame.c (get_prev_frame_1): Call frame_unwind_find_by_frame
4191         directly instead of get_frame_id.
4192
4193 2008-06-30  Luis Machado  <luisgpm@br.ibm.com>
4194
4195         * rs6000-tdep.c (ppc_displaced_step_fixup): New function.
4196         (deal_with_atomic_sequence): Update BC masks.
4197         (rs6000_gdbarch_init): Init displaced stepping infra-structure.
4198         Define BRANCH_MASK, B_INSN, BC_INSN, BXL_INSN, BP_MASK and BP_INSN.
4199
4200 2008-06-30  Daniel Jacobowitz  <dan@codesourcery.com>
4201
4202         * cris-tdep.c (crisv32_single_step_through_delay): Get this frame's
4203         register, not the previous frame's.
4204
4205 2008-06-30  Luis Machado  <luisgpm@br.ibm.com>
4206
4207         * source.c (select_source_symtab): Make sure we skip namespace
4208         symtabs when showing cpp source code.
4209
4210 2008-06-30  Hans-Peter Nilsson  <hp@axis.com>
4211
4212         * MAINTAINERS (Authorized committers): Fix my email address.
4213
4214 2008-06-28  Vladimir Prus  <vladimir@codesourcery.com>
4215
4216         * mi/mi-cmds.c (mi_cmds): Route -exec-run, -exec-until,
4217         -target-download and -target-select via CLI, so that
4218         the quoting rules are the same as they were (unfortunately)
4219         in all prior gdb releases.
4220         * mi/mi-cmds.h (mi_cmd_exec_run, mi_cmd_exec_until)
4221         (mi_cmd_target_download, mi_cmd_target_select): Remove.
4222         * mi/mi-main.c (mi_cmd_exec_run, mi_cmd_exec_until)
4223         (mi_cmd_target_download, mi_cmd_target_select): Remove.
4224         (mi_cmd_execute): Set current_token even for commands
4225         routed via CLI.
4226
4227 2008-06-28  Ulrich Weigand  <uweigand@de.ibm.com>
4228
4229         * alphafbsd-tdep.c: Update for unwinder changes.
4230         * alpha-linux-tdep.c: Likewise.
4231         * alphanbsd-tdep.c: Likewise.
4232         * alphaobsd-tdep.c: Likewise.
4233         * avr-tdep.c: Likewise.
4234         * cris-tdep.c: Likewise.
4235         * frv-linux-tdep.c: Likewise.
4236         * frv-tdep.c: Likewise.
4237         * h8300-tdep.c: Likewise.
4238         * hppa-linux-tdep.c: Likewise.
4239         * iq2000-tdep.c: Likewise.
4240         * m32c-tdep.c: Likewise.
4241         * m32r-linux-tdep.c: Likewise.
4242         * m32r-tdep.c: Likewise.
4243         * m68hc11-tdep.c: Likewise.
4244         * mep-tdep.c: Likewise.
4245         * mn10300-tdep.c: Likewise.
4246         * mt-tdep.c: Likewise.
4247         * score-tdep.c: Likewise.
4248         * sh64-tdep.c: Likewise.
4249         * sh-tdep.c: Likewise.
4250         * sparc64fbsd-tdep.c: Likewise.
4251         * sparc64nbsd-tdep.c: Likewise.
4252         * sparc64obsd-tdep.c: Likewise.
4253         * v850-tdep.c: Likewise.
4254         * vaxobsd-tdep.c: Likewise.
4255         * vax-tdep.c: Likewise.
4256         * xstormy16-tdep.c: Likewise.
4257
4258 2008-06-28  Vladimir Prus  <vladimir@codesourcery.com>
4259
4260         * mi/mi-main.c (enum captured_mi_execute_command_actions)
4261         (captured_mi_execute_command_args): Remove.
4262         (captured_mi_execute_command): Cast the closure to mi_parse
4263         pointer, not to captured_mi_execute_command_args, and don't
4264         set the action field thereof.
4265         (mi_execute_command): Pass struct mi_parse, not
4266         captured_mi_execute_command_args to captured_mi_execute_command.
4267         (mi_execute_command): Remove (dead) code for suppressing
4268         printing prompt.
4269
4270 2008-06-28  Pedro Alves  <pedro@codesourcery.com>
4271
4272         * linux-nat.c (enum sigchld_state): New.
4273         (linux_nat_async_events_state): Renamed from
4274         linux_nat_async_events_enabled.
4275         (linux_nat_event_pipe_push, my_waitpid): Adjust.
4276         (sigchld_default_action): New.
4277         (lin_lwp_attach_lwp): Adjust.  Call linux_nat_async_events
4278         unconditionally.
4279         (linux_nat_create_inferior): Set events state to sigchld_default
4280         state.
4281         (linux_nat_resume): Adjust.
4282         (linux_nat_wait): Call linux_nat_async_events unconditionally.
4283         (sigchld_handler): Adjust.
4284         (linux_nat_async_mask): Don't set SIGCHLD actions here.
4285         (get_pending_events): Adjust.
4286         (linux_nat_async_events): Rewrite to handle enum sigchld_state
4287         instead of a boolean.
4288         (linux_nat_async): Adjust.
4289         (_initialize_linux_nat): Capture default SIGCHLD action into
4290         sigchld_default_action.
4291
4292 2008-06-28  Vladimir Prus  <vladimir@codesourcery.com>
4293
4294         * breakpoint.c (moribund_locations): New.
4295         (bpstat_stop_status): Process moribund locations.
4296         (update_global_location_list): Add removed
4297         locations to moribund_locations.
4298         (breakpoint_retire_moribund): New.
4299         * breakpoint.h (struct bp_location): New field
4300         events_till_retirement.
4301         (breakpoint_retire_moribund): Declare.
4302         * thread.c (thread_count): New.
4303         * infrun.c (handle_inferior_event): Call
4304         breakpoint_retire_moribund.
4305         * gdbthread.h (thread_count): Declare.
4306
4307 2008-06-27  Joseph Myers  <joseph@codesourcery.com>
4308
4309         * dfp.c (decimal_convert): Call match_endianness before and after
4310         conversion.
4311
4312 2008-06-27  Jonathan Larmour  <jifl@eCosCentric.com>
4313
4314         * remote.c (remote_insert_breakpoint): Ensure that if Z0
4315         unsupported and we fall back to memory_insert_breakpoint, we
4316         use the unmodified requested address.
4317
4318 2008-06-27  Joel Brobecker  <brobecker@adacore.com>
4319
4320         * dwarf2read.c (read_attribute_value): Issue a complaint when
4321         adjusting size attribute values of 0xffffffff as zero.
4322
4323 2008-06-27  Joseph Myers  <joseph@codesourcery.com>
4324
4325         * i386-tdep.c (i386_16_byte_align_p): New.
4326         (i386_push_dummy_call): Determine stack space required for
4327         arguments going forwards allowing for 16-byte alignment, then push
4328         arguments going forwards.
4329
4330 2008-06-27  Pedro Alves  <pedro@codesourcery.com>
4331
4332         * infrun.c (start_remote): Don't clear thread list here.
4333         * monitor.c (monitor_open): Include "gdbthread.h".  Clear thread
4334         list here.
4335         * remote.c (record_currthread): Upgrade the main thread and its
4336         entry in the thread list if this is the first time we hear about
4337         threads.
4338         (remote_thread_alive): Consider magic_null_ptid or a ptid without
4339         a tid member always alive.
4340         (remote_find_new_threads): Don't update the main thread here.
4341         (remote_start_remote): Clear thread list here.  Always add the
4342         main thread.
4343         (extended_remote_attach_1): Add the main thread here.
4344         (extended_remote_mourn_1): Re-add the main thread here.
4345         (extended_remote_create_inferior_1): Add a main thread.
4346
4347         * Makefile.in (monitor.o): Depend on $(gdbthread_h).
4348
4349 2008-06-27  Pedro Alves  <pedro@codesourcery.com>
4350
4351         Use ptid_t.tid to store thread ids instead of ptid_t.pid.
4352
4353         * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): New
4354         globals.
4355         (general_thread, continue_thread): Change type to ptid_t.
4356         (record_currthread): Take a ptid_t parameter instead of an
4357         integer.
4358         (MAGIC_NULL_PID): Delete.
4359         (set_thread): Take a ptid_t parameter and adjust.
4360         (set_general_thread, set_continue_thread): New.
4361         (remote_thread_alive, remote_newthread_step)
4362         (remote_current_thread, remote_find_new_threads)
4363         (remote_threads_info, remote_start_remote, remote_vcont_resume)
4364         (remote_resume_1, remote_wait, extended_remote_create_inferior_1)
4365         (threadalive_test, remote_pid_to_str)
4366         (remote_get_thread_local_address): Adjust.
4367         (_initialize_remote): Initialize magic_null_ptid, not_sent_ptid
4368         and any_thread_ptid.
4369
4370 2008-06-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
4371
4372         * configure.ac (--enable-tui): AC_MSG_ERROR for explicit --enable-tui.
4373         * configure: Regenerated.
4374
4375 2008-06-26  Joel Brobecker  <brobecker@adacore.com>
4376
4377         * dwarf2read.c (read_attribute_value): Treat size attribute
4378         values of 0xffffffff as if the attribute value was zero.
4379
4380 2008-06-26  Vladimir Prus  <vladimir@codesourcery.com>
4381
4382         * linux-nat.c: Add description of overall logic.
4383
4384 2008-06-26  Daniel Jacobowitz  <dan@codesourcery.com>
4385
4386         * Makefile.in (GNULIB_H): Use GNULIB_STDINT_H.
4387         (gdb_stdint_h, gdb_stdint.h, stamp-int): Delete.  Remove
4388         all dependencies on $(gdb_stdint_h).
4389         (distclean): Do not delete gdb_stdint.h.
4390         * acinclude.m4: Do not use stdint.m4.
4391         * configure.ac: Set GNULIB_STDINT_H.  Remove tests for stdint.h,
4392         uintptr_t, and gdb_stdint.h.
4393         * defs.h: Include <stdint.h>.
4394         * gdb_thread_db.h: Assume stdint.h is already included.
4395         * breakpoint.c, findcmd.c, hppa-tdep.c, inf-ptrace.c, proc-service.c,
4396         rs6000-nat.c, spu-linux-nat.c, target.c, win32-nat.c: Do not
4397         include gdb_stdint.h.
4398         * configure, config.in: Regenerate.
4399
4400 2008-06-26  Joseph Myers  <joseph@codesourcery.com>
4401
4402         * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Handle passing
4403         decimal floating-point values in GPRs for soft-float.
4404         (do_ppc_sysv_return_value): Handle returning decimal
4405         floating-point values in GPRs for soft-float.
4406
4407 2008-06-26  Vladimir Prus  <vladimir@codesourcery.com>
4408
4409         * target.c (target_read_until_error): New.
4410         * target.h (target_read_until_error): Declare.
4411         * mi/mi-main.c (mi_cmd_data_read_memory): Use
4412         target_read_until_error.
4413
4414 2008-06-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
4415
4416         Fix a memory leak found by Hui Zhu <teawater@gmail.com>.
4417         * c-exp.y (parse_number): Move the S and SAVED_CHAR initialization
4418         after the DECFLOAT detection to fix a memory leak.  Remove the
4419         redundant NUM initialization.  Protect the DECFLOAT detection memory
4420         access before the P block.  Restore the P memory content for the
4421         DECFLOAT detection.
4422
4423 2008-06-25  Vladimir Prus  <vladimir@codesourcery.com>
4424
4425         Kill the return value for all MI command functions.
4426         * mi/mi-cmds.h (enum mi_cmd_result): Remove.
4427         (mi_cmd_argv_ftype): Change return type to void.
4428
4429         * mi/mi-main.c: Adjust all function that implement
4430         MI commands to return nothing.
4431         (struct captured_mi_execute_command_actions):
4432         Remove the rc field.
4433         (mi_cmd_execute): Return nothing.
4434         (mi_execute_async_cli_command): Return nothing.
4435         (mi_cmd_exec_interrupt): Don't print ^done here.
4436         (mi_cmd_target_select): Don't print ^connected here.
4437         (captured_mi_execute_command): Don't check for MI_CMD_DONE.
4438         Special-case -target-select and output ^connected, not ^done.
4439
4440         * mi/mi-cmd-break.c: Adjust.
4441         * mi/mi-cmd-disas.c: Adjust.
4442         * mi/mi-cmd-env.c: Adjust.
4443         * mi/mi-cmd-file.c: Adjust.
4444         * mi/mi-cmd-stack.c: Adjust.
4445         * mi/mi-cmd-target.c: Adjust.
4446         * mi/mi-cmd-var.c: Adjust.
4447         * mi/mi-interp.c: Adjust.
4448         * mi/mi-symbol-cmds.c: Adjust.
4449
4450 2008-06-25  Vladimir Prus  <vladimir@codesourcery.com>
4451
4452         Emit ^running via observer.
4453         * mi/mi-interp.c (mi_cmd_interpreter_exec): Do no print
4454         ^running here.
4455         (mi_on_resume): Print ^running if not previously output.
4456         * mi/mi-main.c (running_result_record_printed): New.
4457         (captured_mi_execute_command): Reset
4458         running_result_record_printed.  Use running_result_record_printed
4459         to decide if we should skip ^done.
4460         (mi_execute_async_cli_command): Don't print ^running here.
4461         * mi/mi-main.h (current_token, running_result_record_printed):
4462         Declare.
4463
4464 2008-06-24  Michael Snyder  <msnyder@specifix.com>
4465
4466         * infrun.c (_initialize_infrun): White space and typo fix.
4467
4468 2008-06-23  Christopher Faylor  <me.gdb.changelog@cgf.cx>
4469
4470         * win32-nat.c (safe_symbol_file_add_stub): Remove unused variable.
4471         (do_initial_win32_stuff): Fix problem with inability to set breakpoints
4472         when first loading DLL with "dll" command.
4473
4474 2008-06-19  Pierre Muller  <muller@ics.u-strasbg.fr>
4475
4476         * gnu-nat.c (proc_string): Use capital T for "Thread".
4477
4478 2008-06-19  Pierre Muller  <muller@ics.u-strasbg.fr>
4479
4480         * win32-nat.c (win32_pid_to_str): Use capital T for "Thread".
4481
4482 2008-06-18  Joel Brobecker  <brobecker@adacore.com>
4483
4484         * solib-osf.c (osf_solib_create_inferior_hook): Do nothing if
4485         the target cannot run.
4486
4487 2008-06-18  Joel Brobecker  <brobecker@adacore.com>
4488
4489         * solib-osf.c (osf_solib_create_inferior_hook): Do nothing if
4490         we're attaching to a running process.
4491
4492 2008-06-18  Pierre Muller  <muller@ics.u-strasbg.fr>
4493
4494         * win32-nat.c (handle_load_dll): Give dll name and load address
4495         if debug_events is on.
4496         (handle_unload_dll): Likewise.
4497
4498 2008-06-14  Vladimir Prus  <vladimir@codesourcery.com>
4499
4500         Don't suppress *running when doing finish.
4501         * infcall.c (call_function_by_hand): Set both
4502         suppress_resume_observer and suppress_stop_observer.
4503         * infcmd.c (suppress_run_stop_observers): Split into...
4504         (suppress_resume_observer, suppress_stop_observer): ...those.
4505         (finish_command_continuation): Clear suppress_stop_observer.
4506         (finish_command): Set suppress_stop_observer.
4507         * inferior.h (suppress_run_stop_observers): Split into...
4508         (suppress_resume_observer, suppress_stop_observer): ...those.
4509         * infrun.c (normal_stop): Check for suppress_stop_observer.
4510         * thread.c (set_running): Check for suppress_resume_observer.
4511
4512 2008-06-12  Pedro Alves  <pedro_alves@portugalmail.pt>
4513             Pierre Muller  <muller@ics.u-strasbg.fr>
4514
4515         * gdbarch.sh (gdbarch_skip_main_prologue): New.
4516         * gdbarch.h, gdbarch.c: Regenerate.
4517         * i386-tdep.h (i386_skip_main_prologue): Declare.
4518         * i386-tdep.c (i386_skip_main_prologue): New.
4519         * i386-cygwin-tdep.c (i386_cygwin_init_abi): Register
4520         i386_skip_main_prologue as gdbarch_skip_main_prologue gdbarch callback.
4521         * symtab.c (find_function_start_sal): When pc points at the "main"
4522         function, call gdbarch_skip_main_prologue.
4523
4524 2008-06-11  Daniel Jacobowitz  <dan@codesourcery.com>
4525
4526         * value.c (value_primitive_field): Fetch lazy register values.
4527
4528 2008-06-11  Pedro Alves  <pedro@codesourcery.com>
4529
4530         * NEWS: Mention support removal of undocumented S AA p PID stop
4531         reply packet.
4532
4533         * remote.c (remote_wait): Remove undocumented S AA p PID support.
4534
4535 2008-06-10  Stan Shebs  <stan@codesourcery.com>
4536
4537         * MAINTAINERS: Update my affiliation and address.
4538
4539 2008-06-10  Andreas Schwab  <schwab@suse.de>
4540
4541         * top.c (print_gdb_version): Don't print final newline.
4542
4543 2008-06-10  Vladimir Prus  <vladimir@codesourcery.com>
4544
4545         Implement *running.
4546         * Makefile.in: Update dependencies.
4547         * gdbthread.h (struct thread_info): New field
4548         running_.
4549         (set_running, is_running): New.
4550         * thread.c (set_running, is_running): New.
4551         * inferior.h (suppress_normal_stop_observer): Rename to...
4552         (suppress_run_stop_observers): ..this.
4553         * infcmd.c (suppress_normal_stop_observer): Rename to...
4554         (suppress_run_stop_observers): ..this.
4555         (finish_command_continuation, finish_command): Adjust.
4556         * infcall.c (call_function_by_hand): Adjust.
4557         * infrun.c (normal_stop): Call set_running.
4558         * target.c (target_resume): New.  Call set_running.
4559         * target.h (target_resume): Convert from macro to
4560         a function.
4561
4562         * mi/mi-interp.c (mi_on_resume): New.
4563         (mi_interpreter_init): Register mi_on_resume.
4564
4565 2008-06-10  Vladimir Prus  <vladimir@codesourcery.com>
4566
4567         Use observers to report stop events in MI.
4568         * mi/mi-interp.c (mi_on_normal_stop): New.
4569         (mi_interpreter_init): Register mi_on_normal_stop.
4570         (mi_interpreter_exec_continuation): Remove.
4571         (mi_cmd_interpreter_exec): Don't register the above.
4572         * mi/mi-main.c (captured_mi_execute_command): Don't care
4573         about sync_execution.
4574         (mi_execute_async_cli_command): Don't install continuation.  Don't
4575         print *stopped.
4576         (mi_exec_async_cli_cmd_continuation): Remove.
4577
4578 2008-06-10  Vladimir Prus  <vladimir@codesourcery.com>
4579
4580         Suppress normal stop observer when it's problematic.
4581         * inferior.h (suppress_normal_stop_observer): New.
4582         * infcall.c (call_function_by_hand): Disable stop events when
4583         doing function calls.
4584         * infmcd.c (suppress_normal_stop_observer): New.
4585         (finish_command_continuation): Call normal_stop observer
4586         explicitly.
4587         (finish_command): Disable stop events inside proceed.
4588         * infrun.c (normal_stop): Don't call normal stop observer if
4589         suppressed of if multi-step is in progress.
4590
4591 2008-06-10  Vladimir Prus  <vladimir@codesourcery.com>
4592
4593         Remove stale code.
4594         * infrun.c (finish_command): Don't pass cleanup
4595         to continuation.
4596         (finish_command_continuation): Don't grab cleanup from
4597         the passed data, as we don't use, and cannot, use it anyway.
4598
4599 2008-06-10  Vladimir Prus  <vladimir@codesourcery.com>
4600
4601         Introduce common cleanup for restoring integers.
4602         * defs.h (make_cleanup_restore_integer): New declaration.
4603         (struct cleanup): New field free_arg.
4604         (make_my_cleanup_2): New.
4605         * utils.c (restore_integer_closure, restore_integer)
4606         (make_cleanup_restore_integer): New.
4607         (make_my_cleanup): Initialize the free_arg field and
4608         renamed to make_my_cleanup_2.
4609         (do_my_cleanups): Call free_arg.
4610         (discard_cleanups): Call free_arg.
4611         * breakpoint.c (restore_always_inserted_mode): Remove.
4612         (update_breakpoints_after_exec): Use make_cleanup_restore_integer.
4613
4614 2008-06-09  Doug Evans  <dje@google.com>
4615
4616         * remote.c (remote_wait): Include beginning of malformed packet
4617         in error output.
4618
4619 2008-06-09  Tom Tromey  <tromey@redhat.com>
4620
4621         * completer.c (complete_line): Don't special-case
4622         expression_completer.
4623         (expression_completer): Only pass last word to
4624         location_completer.
4625         * c-exp.y (yylex): Check 'token', not 'operator'.
4626
4627 2008-06-09  Daniel Jacobowitz  <dan@codesourcery.com>
4628
4629         * configure.ac (build_warnings): Add -Wno-format for mingw.
4630         * configure: Regenerated.
4631
4632 2008-06-07  Daniel Jacobowitz  <dan@codesourcery.com>
4633
4634         * NEWS: Make indentation consistent.  Move exec tracing entry out
4635         of remote packet list.
4636
4637 2008-06-06  Tom Tromey  <tromey@redhat.com>
4638
4639         * value.h (evaluate_subexpression_type, extract_field_op):
4640         Declare.
4641         * printcmd.c (_initialize_printcmd): Use expression_completer for
4642         'p', 'inspect', 'call'.
4643         * parser-defs.h (parse_field_expression): Declare.
4644         * parse.c: Include exceptions.h.
4645         (in_parse_field, expout_last_struct): New globals.
4646         (mark_struct_expression): New function.
4647         (prefixify_expression): Return int.
4648         (prefixify_subexp): Return int.  Use expout_last_struct.
4649         (parse_exp_1): Update.
4650         (parse_exp_in_context): Add 'out_subexp' argument.  Handle
4651         in_parse_field.
4652         (parse_field_expression): New function.
4653         * expression.h (parse_field_expression): Declare.
4654         (in_parse_field): Likewise.
4655         * eval.c (evaluate_subexpression_type): New function.
4656         (extract_field_op): Likewise.
4657         * completer.h (expression_completer): Declare.
4658         * completer.c (expression_completer): New function.
4659         (count_struct_fields, add_struct_fields): New functions.
4660         * c-exp.y (yyparse): Redefine.
4661         (COMPLETE): New token.
4662         (exp): New productions.
4663         (saw_name_at_eof, last_was_structop): New globals.
4664         (yylex): Return COMPLETE when needed.  Recognize in_parse_field.
4665         (c_parse): New function.
4666         * breakpoint.c (_initialize_breakpoint): Use expression_completer
4667         for watch, awatch, and rwatch.
4668         * Makefile.in (parse.o): Depend on exceptions_h.
4669
4670 2008-06-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
4671
4672         PR gdb/1147
4673         * gdb/valopts.c (find_overload_match): Handle references
4674         to pointers.
4675
4676 2008-06-06  Paul N. Hilfinger  <hilfinger@adacore.com>
4677
4678         * ada-lang.c (ada_value_assign): Correct big-endian case to take into
4679         account the bitsize of the 'from' operand.
4680
4681 2008-06-06  Pedro Alves  <pedro@codesourcery.com>
4682
4683         * annotate.h (annotate_thread_changed): Declare.
4684
4685 2008-06-06  Nick Roberts  <nickrob@snap.net.nz>
4686
4687         * annotate.c (annotate_thread_changed): New function.
4688         * thread.c (thread_command) : Use it.
4689         * infrun.c (normal_stop): Use it.
4690
4691 2008-06-05  Vladimir Prus  <vladimir@codesourcery.com>
4692             Nathan Sidwell  <nathan@codesourcery.com>
4693             Joseph Myers  <joseph@codesourcery.com>
4694
4695         * acinclude.m4: Include ../config/acx.m4.
4696         * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
4697         * configure, config.in: Regenerate.
4698         * main.c (print_gdb_help): Use REPORT_BUGS_TO for bug-reporting
4699         address.
4700         * top.c (print_gdb_version): Use PKGVERSION and REPORT_BUGS_TO.
4701
4702 2008-06-05  Pedro Alves  <pedro@codesourcery.com>
4703
4704         Replace 'target async' by 'maintenance set remote-async' and
4705         'target remote' combination.
4706
4707         * remote.c (remote_async_wait): Merge into remote_wait, and
4708         remove.
4709         (remote_async_permitted, remote_async_permitted_set): New
4710         variables.
4711         (set_maintenance_remote_async_permitted)
4712         (show_maintenance_remote_async_permitted): New functions.
4713         (remote_async_ops, extended_async_remote_ops): Delete.
4714         (remote_async_open, extended_remote_async_open): Delete.
4715         (remote_open_1): Drop async_p parameter.  Update callers.  Replace
4716         async_p with remote_async_permitted checks.
4717         (extended_async_remote_attach): Delete.
4718         (remote_resume, remote_async_resume): Merge and leave remote_resume.
4719         (remote_async_terminal_inferior): Rename to...
4720         (remote_terminal_inferior): ... this, and add
4721         remote_async_termitted check.
4722         (remote_async_terminal_ours): Rename to...
4723         (remote_terminal_ours): ... this, and add remote_async_termitted
4724         check.
4725         (remote_wait, remote_async_wait): Merge and leave remote_wait
4726         only.
4727         (remote_kill, remote_async_kill): Merge and leave remote_kill
4728         only.
4729         (remote_async_mourn, extended_async_remote_mourn): Delete.
4730         (extended_remote_create_inferior_1): Drop async_p parameter.
4731         Update callers.  Always use extended_remote_ops.
4732         (extended_remote_async_create_inferior): Delete.
4733         (remote_return_zero): Delete.
4734         (init_remote_ops): Register remote_can_async_p, remote_async,
4735         remote_async_mask, remote_terminal_inferior and
4736         remote_terminal_ours.
4737         (remote_can_async_p, remote_is_async_p): Check for
4738         remote_async_permitted.
4739         (init_remote_async_ops, init_extended_async_remote_ops): Remove.
4740         (set_remote_cmd): Don't add async and extended-async targets.
4741         (_initialize_remote): Add set/show remote-async maintenance
4742         commands.
4743
4744 2008-06-05  Pedro Alves  <pedro@codesourcery.com>
4745
4746         * remote.c (kill_kludge): Delete.
4747         (remote_wait, remote_async_wait): Don't set it.
4748         (remote_kill, remote_async_kill): Don't do anything with it.
4749
4750 2008-06-05  Pedro Alves  <pedro@codesourcery.com>
4751
4752         * linux-thread-db.c (thread_db_wait): Don't trim event ptid.
4753
4754 2008-06-05  Aleksandar Ristovski  <aristovski@qnx.com>
4755
4756         * bcache.c (bcache_data): Call deprecated_bcache_added function.
4757         (deprecated_bcache_added): New function name. Body of function
4758         bcache_data is used here with the addition of 'added' argument.
4759         * bcache.h (deprecated_bcache_added): New function.
4760         * symfile.c (add_psymbol_to_bcache): New helper function, takes part of
4761         work from add_psymbol_to_list - initialises partial symbol and stashes
4762         it in objfile's cache.
4763         (append_psymbol_to_list): New helper function, takes other part of
4764         work from add_psymbol_to_list - adds partial symbol to the given list.
4765         (add_psymbol_to_list): Call helper functions instead of doing work
4766         here. If adding to global list, do not duplicate partial symbols in the
4767         partial symtab.
4768
4769 2008-06-05  Aleksandar Ristovski  <aristovski@qnx.com>
4770
4771         * breakpoint.c (print_exception_catchpoint): Put 'exception' back to
4772         'exception caught|thrown' message.
4773
4774 2008-06-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4775
4776         * Makefile.in: Update dependencies.
4777         * dwarf2expr.c: New include "gdb_assert.h".
4778         (new_dwarf_expr_context): Initialize MAX_RECURSION_DEPTH.
4779         (dwarf_expr_eval): Sanity check the RECURSION_DEPTH count.
4780         (execute_stack_op): Error out on too large RECURSION_DEPTH.
4781         Increase/decrease RECURSION_DEPTH around the function.
4782
4783 2008-06-05  Daniel Jacobowitz  <dan@codesourcery.com>
4784
4785         * remote.c (get_offsets): Handle a single segment.
4786         * symfile.c (symfile_map_offsets_to_segments): Allow more bases
4787         than segments.
4788
4789 2008-06-03  Daniel Jacobowitz  <dan@codesourcery.com>
4790
4791         * solib-svr4.c (struct lm_info): Add lm_addr.
4792         (main_lm_addr): New.
4793         (svr4_default_sos): Set lm_addr.
4794         (svr4_current_sos): Set lm_addr and main_lm_addr.
4795         (svr4_fetch_objfile_link_map): Rewrite.
4796         (svr4_clear_solib): Clear main_lm_addr.
4797
4798 2008-06-03  Michael Snyder  <msnyder@redhat.com>
4799             Joseph Myers  <joseph@codesourcery.com>
4800
4801         * mips-tdep.c (mips_eabi_return_value): Replace stub that always
4802         returned RETURN_VALUE_STRUCT_CONVENTION with a real function.
4803
4804 2008-06-02  Roman Zippel <zippel@linux-m68k.org>
4805
4806         * m68klinux-tdep.c (m68k_linux_pc_in_sigtramp): Fix incorrect test.
4807
4808 2008-06-02  Roman Zippel <zippel@linux-m68k.org>
4809
4810         * m68k-tdep.c (m68k_analyze_prologue): Fix length of lea insn.
4811
4812 2008-06-01  Joel Brobecker  <brobecker@adacore.com>
4813
4814         * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Do not
4815         treat pointers in data space as function descriptors if the
4816         target address is also in the data space.
4817
4818 2008-05-30  Joel Brobecker  <brobecker@adacore.com>
4819
4820         * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Set
4821         the trad-frame register value for the SP register.
4822
4823 2008-05-29  Mark Kettenis  <kettenis@gnu.org>
4824
4825         * sparcnbsd-tdep.c, sparcobsd-tdep.c: Update for unwinder changes.
4826
4827 2008-05-28  Joel Brobecker  <brobecker@adacore.com>
4828
4829         * ia64-tdep.c (ia64_convert_from_func_ptr_addr): Improve the heuristic
4830         that identifies function descriptors outside of the .opd section.
4831
4832 2008-05-28  Aleksandar Ristovski  <aristovski@qnx.com>
4833
4834         * breakpoint.c (print_exception_catchpoint): In CLI add 'Temporary' for
4835         temporary catchpoints.  In MI add missing fields 'reason', 'disp',
4836         'bkptno'.
4837         (print_mention_exception_catchpoint): Add 'Temporary' for temporary
4838         catchpoints.
4839         (handle_gnu_v3_exceptions): Use tempflag.
4840
4841 2008-05-28  Vladimir Prus  <vladimir@codesourcery.com>
4842
4843         Refactor varobj_update interface.
4844         * varobj.c (varobj_update): Report changes as vector.  Also
4845         return not just a list of varobj, but a list of special structures
4846         that tell what exactly has changed.
4847         * varobj.h (enum varobj_update_error): Rename to
4848         varobj_scope_status.
4849         (struct varobj_update_result_t): New.
4850         (varobj_update): Adjust prototype.
4851         * mi/mi-cmd-var.c: Adjust for changes.
4852
4853 2008-05-28  Vladimir Prus  <vladimir@codesourcery.com>
4854
4855         * varobj.c (varobj_update): Fix comment typo.
4856         Fix indentation.
4857
4858 2008-05-26  Joel Brobecker  <brobecker@adacore.com>
4859
4860         Set the symtab field of symbols read from ECOFF debugging entries.
4861         * mdebugread.c (add_symbol): Add new parameter symtab.
4862         (parse_symbol): Update calls to add_symbol throughout.
4863
4864 2008-05-27  Andreas Schwab  <schwab@suse.de>
4865
4866         * symtab.h (enum address_class): Remove LOC_REGPARM and
4867         LOC_COMPUTED_ARG.
4868         (struct symbol): Add is_argument.
4869         (SYMBOL_IS_ARGUMENT): Define.
4870
4871         * ada-lang.c (ada_add_block_symbols): Use SYMBOL_IS_ARGUMENT.
4872         * buildsym.c (finish_block): Likewise.
4873         * stack.c (print_frame_args, print_block_frame_locals)
4874         (print_frame_arg_vars): Likewise.
4875         * symtab.c (lookup_block_symbol): Likewise.
4876         * tracepoint.c (add_local_symbols): Likewise.
4877         * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
4878
4879         * coffread.c (process_coff_symbol): Set SYMBOL_IS_ARGUMENT.
4880         * dwarf2read.c (new_symbol): Likewise.
4881         * mdebugread.c (parse_symbol): Likewise.
4882         * stabsread.c (define_symbol): Likewise.
4883
4884         * ada-exp.y (select_possible_type_sym): Don't handle LOC_REGPARM
4885         and LOC_COMPUTED_ARG.
4886         * ada-lang.c (resolve_subexp, symtab_for_sym): Likewise.
4887         * ax-gdb.c (gen_var_ref): Likewise.
4888         * eval.c (evaluate_subexp_for_address): Likewise.
4889         * findvar.c (symbol_read_needs_frame, read_var_value): Likewise.
4890         * m2-exp.y (yylex): Likewise.
4891         * printcmd.c (address_info): Likewise.
4892         * symmisc.c (print_symbol, print_partial_symbols): Likewise.
4893         * tracepoint.c (collect_symbol, scope_info): Likewise.
4894
4895 2008-05-24  Carlos Eduardo Seo  <cseo@linux.vnet.ibm.com>
4896
4897         * gdbarch.sh: Added new gdbarch struct
4898         core_regset_sections.
4899         * gdbarch.c: Refreshed.
4900         * gdbarch.h: Refreshed.
4901         * regset.h (core_regset_section): Declared.
4902         * linux-nat.c (linux_nat_do_thread_registers): Added
4903         support for the new gdbarch struct core_regset_sections.
4904         * utils.c (host_address_to_string): New function.
4905         * defs.h (host_address_to_string): New prototype.
4906         * i386-linux-tdep.c (i386_regset_rections): New register
4907         sections list for i386.
4908           (i386_linux_init_abi): Initialized new gdbarch struct
4909           core_regset_sections.
4910         * Makefile.in: Updated to reflect dependency changes.
4911         * ppc-linux-tdep.c (ppc_regset_sections): Register
4912         sections list for ppc.
4913           (ppc_linux_init_abi): Initialized new gdbarch struct
4914           core_regset_sections
4915
4916 2008-05-24  Andreas Schwab  <schwab@suse.de>
4917
4918         * linespec.c (decode_objc): Save current language around call to
4919         get_selected_block.
4920
4921 2008-05-23  Joel Brobecker  <brobecker@adacore.com>
4922
4923         * valprint.h (get_array_bounds): Renames get_array_low_bound.
4924         * valprint.c (get_array_bounds): Renames get_array_low_bound.
4925         Return the proper bound value if the array index type is an
4926         enumerated type. Compute the high bound if requested.
4927         (val_print_array_elements): Handle the case when the array
4928         element has a null size.
4929         * ada-valprint.c (print_optional_low_bound): Add handling
4930         for empty arrays or arrays of zero-size elements.
4931         (ada_val_print_array): New function, extracted out from
4932         ada_val_print_1 case TYPE_CODE_ARRAY, and enhanced to
4933         handle empty arrays and arrays of zero-size elements.
4934         (ada_val_print_1)[case TYPE_CODE_ARRAY]: Replace extracted-out
4935         code by call to ada_val_print_array.
4936         (ada_value_print): Remove handling of null array.  The handling
4937         was incomplete and is now better handled by ada_val_print_array.
4938
4939 2008-05-23 Markus Deuling  <deuling@de.ibm.com>
4940
4941         * annotate.c (annotate_source, annotate_frame_begin): Replace
4942         deprecated_print_address_numeric with paddress.
4943         * cli/cli-cmds.c (list_command, edit_command): Likewise.
4944         * tui/tui-stack.c (tui_make_status_line): Likewise.
4945
4946         * defs.h (deprecated_print_address_numeric): Remove.
4947         * printcmd.c (deprecated_print_address_numeric): Remove.
4948         * maint.c (maint_print_section_info): Fix comment.
4949
4950 2008-05-23 Markus Deuling  <deuling@de.ibm.com>
4951
4952         * valprint.c (print_hex_chars, print_octal_chars, print_decimal_chars,
4953         print_binary_chars, print_char_chars): Add byte_order parameter and
4954         replace gdbarch_byte_order.
4955         (print_decimal_chars): Replace START_P, NOT_END_P and NEXT_P by their
4956         expressions and remove them.  Remove unused TWO_TO_FOURTH.
4957         (val_print_type_code_int): Introduce gdbarch_byte_order to get at the
4958         endianness.  Update call to print_hex_chars.
4959         * valprint.h (print_hex_chars, print_octal_chars, print_decimal_chars,
4960         print_binary_chars, print_char_chars): Add byte_order parameter.
4961         * printcmd.c (print_scalar_formatted): Introduce gdbarch_byte_order to
4962         get at the endianness.  Update print_*_char calls to use byte_order.
4963
4964 2008-05-22  Ulrich Weigand  <uweigand@de.ibm.com>
4965
4966         * symtab.h (struct symbol): Make "aux_value" member a void pointer
4967         instead of a union.
4968         (SYMBOL_LOCATION_BATON): Update.
4969
4970 2008-05-22  Ulrich Weigand  <uweigand@de.ibm.com>
4971
4972         * symtab.h (enum address_class): Remove LOC_BASEREG and
4973         LOC_BASEREG_ARG.
4974         (struct symbol): Remove "basereg" member of "aux_value" union.
4975         (SYMBOL_BASEREG): Remove.
4976
4977         * ada-exp.y (select_possible_type_sym): Do not handle LOC_BASEREG
4978         or LOC_BASEREG_ARG.
4979         * ada-lang.c (resolve_subexp, symtab_for_sym): Likewise.
4980         (ada_add_block_symbols): Likewise.
4981         * ax-gdb.c (gen_var_ref): Likewise.
4982         * buildsym.c (finish_block): Likewise.
4983         * findvar.c (symbol_read_needs_frame, read_var_value): Likewise.
4984         * m2-exp.y (yylex): Likewise.
4985         * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
4986         * printcmd.c (address_info): Likewise.
4987         * stack.c (print_frame_args, print_block_frame_locals): Likewise.
4988         (print_frame_arg_vars): Likewise.
4989         * symmisc.c (print_symbol): Likewise.
4990         * symtab.c (lookup_block_symbol): Likewise.
4991         * tracepoint.c (collect_symbol, add_local_symbols): Likewise.
4992         (scope_info): Likewise.
4993
4994 2008-05-22  Ulrich Weigand  <uweigand@de.ibm.com>
4995
4996         * symtab.h (enum address_class): Remove LOC_LOCAL_ARG.
4997
4998         * ada-exp.y (select_possible_type_sym): Do not handle LOC_LOCAL_ARG.
4999         * ada-lang.c (resolve_subexp, symtab_for_sym): Likewise.
5000         (ada_add_block_symbols): Likewise.
5001         * ax-gdb.c (gen_var_ref): Likewise.
5002         * buildsyms.c (finish_block): Likewise.
5003         * findvar.c (symbol_read_needs_frame, read_var_value): Likewise.
5004         * m2-exp.y (yylex): Likewise.
5005         * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
5006         * printcmd.c (address_info): Likewise.
5007         * stack.c (print_frame_args, print_frame_arg_vars): Likewise.
5008         * symmisc.c (print_symbol, print_partial_symbols): Likewise.
5009         * symtab.c (lookup_block_symbol): Likewise.
5010         * tracepoint.c (collect_symbol, add_local_symbols): Likewise.
5011         (scope_info): Likewise.
5012
5013 2008-05-22  Ulrich Weigand  <uweigand@de.ibm.com>
5014
5015         * symtab.h (enum address_class): Remove LOC_INDIRECT and
5016         LOC_HP_THREAD_LOCAL_STATIC.
5017
5018         * findvar.c (symbol_read_needs_frame, read_var_value): Do not
5019         handle LOC_INDIRECT or LOC_HP_THREAD_LOCAL_STATIC.
5020         (read_var_value): Likewise.
5021         * buildsym.c (finish_block): Likewise.
5022         * objfiles.c (objfile_relocate): Likewise.
5023         * printcmd.c (address_info): Likewise.
5024         * symmisc.c (print_symbol, print_partial_symbols): Likewise.
5025         * tracepoint.c (scope_info): Likewise.
5026
5027 2008-05-21 Markus Deuling  <deuling@de.ibm.com>
5028            Maxim Grigoriev  <maxim2405@gmail.com>
5029
5030         * xtensa-tdep.c (xtensa_read_register): Remove.
5031         (xtensa_frame_cache): Get rid of xtensa_read_register. Pass extra
5032         argument litbase to call0_frame_cache().
5033         (call0_track_op, call0_analyze_prologue)
5034         (call0_frame_cache): Use extra argument litbase.
5035
5036 2008-05-21  Joel Brobecker  <brobecker@adacore.com>
5037
5038         * infcmd.c (_initialize_infcmd): Add new "fin" alias for "finish".
5039
5040 2008-05-21  Ulrich Weigand  <uweigand@de.ibm.com>
5041
5042         * frame.h (SIZEOF_FRAME_SAVED_REGS): Remove.
5043
5044 2008-05-21  Ulrich Weigand  <uweigand@de.ibm.com>
5045
5046         * alpha-mdebug-tdep.c: Include "trad-frame.h".
5047         (struct alpha_mdebug_unwind_cache): Change type of SAVED_REGS to
5048         struct trad_frame_saved_reg *.
5049         (alpha_mdebug_frame_unwind_cache): Allocate SAVED_REGS using
5050         trad_frame_alloc_saved_regs.  Update accesses.  Record previous
5051         value of SP as being vfp.
5052         (alpha_mdebug_frame_prev_register): Use trad_frame_get_prev_register.
5053         * Makefile.in (alpha-mdebug-tdep.o): Update dependencies.
5054
5055 2008-05-21  Markus Deuling  <deuling@de.ibm.com>
5056
5057         * score-tdep.c (score_print_insn): Get the current endianess from
5058         disassemble_info instead of gdbarch_byte_order.
5059
5060 2008-05-21  Pedro Alves  <pedro@codesourcery.com>
5061
5062         * frame.c (get_prev_frame_1): Build frame id before setting
5063         this_frame->prev_p, not after.
5064
5065 2008-05-21  Nick Roberts  <nickrob@snap.net.nz>
5066
5067         * annotate.c (annotate_new_thread): New function for new-thread
5068         annotation.
5069         * annotate.h: (annotate_new_thread): New extern.
5070         * thread.c (add_thread_with_info): Use it.
5071         * Makefile.in (thread.o): Add dependency on annotate.h.
5072
5073 2008-05-20  Joel Brobecker  <brobecker@adacore.com>
5074
5075         * win32-nat.c (win32_wait): Block the control-c event while
5076         waiting for a debug event.
5077
5078 2008-05-19  Pedro Alves  <pedro@codesourcery.com>
5079
5080         * symtab.h (lookup_symbol_in_language): Update comment.
5081         * symtab.c (lookup_symbol_aux_block): Update comment.
5082         * ada-lang.c (ada_lookup_symbol_list): Update comment.
5083
5084 2008-05-19  Ulrich Weigand  <uweigand@de.ibm.com>
5085
5086         * symtab.h (lookup_symbol_in_language): Remove SYMTAB parameter.
5087         (lookup_symbol): Likewise.
5088         * symtab.c (lookup_symbol_in_language): Remove SYMTAB parameter.
5089         (lookup_symbol): Likewise.
5090         (search_symbols): Update.
5091
5092         * linespec.c (find_methods, collect_methods): Update.
5093         (add_matching_methods, add_constructors): Update.
5094         (decode_compound, decode_dollar, decode_variable): Update.
5095         (lookup_prefix_sym): Update.
5096
5097         (symbol_found): Remove SYM_SYMTAB parameter.
5098         Use SYMBOL_SYMTAB (sym) instead.
5099
5100         * gdbtypes.c (lookup_typename): Update.
5101         (lookup_struct, lookup_union, lookup_enum): Update.
5102         (lookup_template_type): Update.
5103         (check_typedef): Update.
5104         * language.c (lang_bool_type): Update.
5105         * mdebugread.c (parse_procedure): Update.
5106         * mi/mi-cmd-stack.c (list_args_or_locals): Update.
5107         * parse.c (write_dollar_variable): Update.
5108         * printcmd.c (address_info): Update.
5109         * source.c (select_source_symtab): Update.
5110         * stack.c (print_frame_args, print_frame_arg_vars): Update.
5111         * valops.c (find_function_in_inferior): Update.
5112         (value_struct_elt_for_reference): Update.
5113         * value.c (value_static_field, value_fn_field): Update.
5114
5115         * alpha-mdebug-tdep.c (find_proc_desc): Update.
5116         * arm-tdep.c (arm_skip_prologue): Update.
5117         * mt-tdep.c (mt_skip_prologue): Update.
5118         * xstormy16-tdep.c (xstormy16_skip_prologue): Update.
5119
5120         * ada-lang.h (struct ada_symbol_info): Remove SYMTAB member.
5121         * ada-lang.c (ada_add_block_symbols): Remove SYMTAB parameter.
5122         (add_defn_to_vec): Likewise.
5123         (ada_add_block_symbols): Likewise.
5124         (lookup_cached_symbol, cache_symbol): Likewise.
5125         (standard_lookup): Update.
5126         (ada_lookup_symbol_list): Update.
5127
5128         * c-valprint.c (c_val_print): Update.
5129         * cp-support.c (cp_lookup_rtti_type): Update.
5130         * jv-lang.c (java_lookup_class, get_java_object_type): Update.
5131         * objc-lang.c (lookup_struct_typedef, find_imps): Update.
5132         * p-valprint.c (pascal_val_print): Update.
5133         * scm-lang.c (scm_lookup_name): Update.
5134
5135         * c-exp.y: Update.
5136         * f-exp.y: Update.
5137         * jv-exp.y: Update.
5138         * m2-exp.y: Update.
5139         * objc-exp.y: Update.
5140         * p-exp.y: Update.
5141
5142 2008-05-19  Ulrich Weigand  <uweigand@de.ibm.com>
5143
5144         * language.h (struct language_defn): Remove SYMTAB parameter from
5145         la_lookup_symbol_nonlocal callback function pointer.
5146
5147         * ada-lang.h (ada_lookup_encoded_symbol): Remove SYMTAB parameter.
5148         (ada_lookup_encoded_symbol): Likewise.
5149         * ada-lang.c (ada_lookup_encoded_symbol): Remove SYMTAB parameter.
5150         Always call fixup_symbol_section.
5151         (ada_lookup_symbol): Remove SYMTAB parameter.
5152         (ada_lookup_symbol_nonlocal): Likewise.
5153         * ada-exp.y (write_object_renaming): Update.
5154         (find_primitive_type): Likewise.
5155
5156         * cp-support.h (cp_lookup_symbol_nonlocal): Remove SYMTAB parameter.
5157         (cp_lookup_symbol_namespace): Likewise.
5158         * cp-namespace.c (lookup_namespace_scope): Remove SYMTAB parameter.
5159         (lookup_symbol_file): Likewise.
5160         (lookup_possible_namespace_symbol): Likewise.
5161         (cp_lookup_symbol_nonlocal): Likewise.
5162         (cp_lookup_symbol_namespace): Likewise.
5163         (cp_lookup_nested_type): Update.
5164
5165         * scm-valprint.c (scm_inferior_print): Update.
5166         * valops.c (value_maybe_namespace_elt): Update.
5167
5168         * solist.h (struct target_so_ops): Remove SYMTAB parameter from
5169         lookup_lib_global_symbol callback function pointer.
5170         (solib_global_lookup): Remove SYMTAB parameter.
5171         * solib.c (solib_global_lookup): Remove SYMTAB parameter.
5172         * solib-svr4.c (elf_lookup_lib_symbol): Likewise.
5173
5174         * symtab.h (basic_lookup_symbol_nonlocal): Remove SYMTAB parameter.
5175         (lookup_symbol_static): Likewise.
5176         (lookup_symbol_global): Likewise.
5177         (lookup_symbol_aux_block): Likewise.
5178         (lookup_global_symbol_from_objfile): Likewise.
5179         * symtab.c (lookup_symbol_aux): Remove SYMTAB parameter.
5180         (lookup_symbol_aux_local): Likewise.
5181         (lookup_symbol_aux_block): Likewise.
5182         (lookup_symbol_aux_symtabs): Likewise.
5183         (lookup_symbol_aux_psymtabs): Likewise.
5184         (lookup_global_symbol_from_objfile): Likewise.
5185         (basic_lookup_symbol_nonlocal): Likewise.
5186         (lookup_symbol_static): Likewise.
5187         (lookup_symbol_global): Likewise.
5188
5189         (lookup_symbol_in_language): Do not pass SYMTAB to lookup_symbol_aux.
5190
5191 2008-05-17  Pedro Alves  <pedro@codesourcery.com>
5192
5193         * remote.c (init_extended_remote_ops): Fix typo.
5194
5195 2008-05-16  Pedro Alves  <pedro@codesourcery.com>
5196
5197         * NEWS: Mention new DICOS x86 target configuration.
5198
5199 2008-05-16  Pedro Alves  <pedro@codesourcery.com>
5200             Ulrich Weigand  <uweigand@de.ibm.com>
5201
5202         * minsyms.c (lookup_minimal_symbol_by_pc_name): New function.
5203         * symtab.h (lookup_minimal_symbol_by_pc_name): Add prototype.
5204
5205         * symtab.c (fixup_section): Remove prototype.  Add ADDR parameter;
5206         use it instead of ginfo->value.address.  Look up minimal symbol by
5207         address and name.  Assume OBJFILE is non-NULL.
5208         (fixup_symbol_section): Ensure we always have an objfile to look
5209         into.  Extract and pass to fixup_section the symbol's address that
5210         will match the minimal symbol's address.
5211         (fixup_psymbol_section): Likewise.
5212
5213         (find_pc_sect_psymtab): Fall back to non-addrmap case when debugging
5214         overlays and the addrmap returned the wrong section.
5215
5216         * dwarf2read.c (var_decode_location): Set SYMBOL_CLASS before
5217         calling fixup_symbol_section.
5218
5219 2008-05-16  Ulrich Weigand  <uweigand@de.ibm.com>
5220
5221         * minsyms.c: Include "target.h".
5222         (find_solib_trampoline_target): Handle minimal symbols pointing
5223         to function descriptors as well.
5224         * Makefile.in (minsyms.o): Update dependencies.
5225
5226         * ppc-linux-tdep.c (ppc64_standard_linkage): Rename to ...
5227         (ppc64_standard_linkage1): ... this.  Fix optional instructions.
5228         (PPC64_STANDARD_LINKAGE_LEN): Rename to ...
5229         (PPC64_STANDARD_LINKAGE1_LEN): ... this.
5230         (ppc64_standard_linkage2, ppc64_standard_linkage3): New.
5231         (PPC64_STANDARD_LINKAGE2_LEN, PPC64_STANDARD_LINKAGE3_LEN): New.
5232         (ppc64_standard_linkage_target): Rename to ...
5233         (ppc64_standard_linkage1_target): ... this.
5234         (ppc64_standard_linkage2_target, ppc64_standard_linkage3_target): New.
5235         (ppc64_skip_trampoline_code): Support three variants of standard
5236         linkage stubs.  Call find_solib_trampoline_target to handle
5237         glink stubs.
5238
5239 2008-05-16  Ulrich Weigand  <uweigand@de.ibm.com>
5240
5241         * ppc-linux-tdep.c (ppc_linux_init_abi): Do not install
5242         ppc64_sysv_abi_adjust_breakpoint_address.
5243         * ppc-sysv-tdep.c (ppc64_sysv_abi_adjust_breakpoint_address): Remove.
5244         * ppc-tdep.h (ppc64_sysv_abi_adjust_breakpoint_address): Remove.
5245
5246 2008-05-16  Ulrich Weigand  <uweigand@de.ibm.com>
5247
5248         * ppc-linux-tdep.c (ppc_linux_skip_trampoline_code): Remove.
5249         (ppc_linux_init_abi): Install find_solib_trampoline_target instead
5250         of ppc_linux_skip_trampoline_code.
5251
5252 2008-05-15  Daniel Jacobowitz  <dan@codesourcery.com>
5253
5254         * gdbarch.sh: Delete dwarf_reg_to_regnum.
5255         * gdbarch.c, gdbarch.h: Regenerated.
5256         * amd64-tdep.c, arm-tdep.c, h8300-tdep.c, hppa-linux-tdep.c,
5257         hppa-tdep.c, i386-tdep.c, m32c-tdep.c, m68k-tdep.c, mips-tdep.c,
5258         s390-tdep.c, xtensa-tdep.c: Do not set dwarf_reg_to_regnum.
5259
5260 2008-05-15  Pedro Alves  <pedro@codesourcery.com>
5261
5262         * linux-nat.c (trap_ptid): Delete.
5263         (linux_nat_detach, linux_nat_wait, linux_nat_mourn_inferior):
5264         Adjust.
5265         * linux-thread-db.c (thread_db_wait): Adjust.
5266
5267 2008-05-15  Joel Brobecker  <brobecker@adacore.com>
5268
5269         * linespec.c (decode_line_1): Fix a couple of comments.
5270
5271 2008-05-15  Alan Modra  <amodra@bigpond.net.au>
5272
5273         * dbxread.c: Formatting.
5274         (INTERNALIZE_SYMBOL): Init n_other.
5275         (set_namestring): Take pointer to nlist arg rather than struct
5276         copy.  Update all callers.
5277
5278 2008-05-15  Andreas Schwab  <schwab@suse.de>
5279
5280         * Makefile.in (dwarf2loc.o): Remove $(addrmap_h).
5281         (dwarf2read.o): Add $(addrmap_h).
5282
5283 2008-05-14  Ulrich Weigand  <uweigand@de.ibm.com>
5284
5285         * ppc-linux-tdep.c (ppc_linux_convert_from_func_ptr_addr): Rename ...
5286         (ppc64_linux_convert_from_func_ptr_addr): ... to this.  No longer try
5287         to handle ppc32 PLT entries.
5288         (ppc_linux_init_abi): Install ppc64_linux_convert_from_func_ptr_addr
5289         only on ppc64.
5290
5291 2008-05-14  Daniel Jacobowitz  <dan@codesourcery.com>
5292
5293         * elfread.c (elf_symtab_read): Create trampolines for @plt symbols.
5294         * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Renamed from
5295         lookup_minimal_symbol_by_pc_section.  Prefer trampolines if requested.
5296         (lookup_minimal_symbol_by_pc_section): Use
5297         lookup_minimal_symbol_by_pc_section_1.
5298         (lookup_solib_trampoline_symbol_by_pc): Likewise.
5299
5300 2008-05-13  Joel Brobecker  <brobecker@adacore.com>
5301
5302         * findcmd.c: Add #include "gdb_stdint.h".
5303         * Makefile.in (findcmd.o): Update dependencies.
5304
5305 2008-05-11  David S. Miller  <davem@davemloft.net>
5306
5307         * sparc-linux-tdep.c (sparc32_linux_init_abi): Remove
5308         long double size override, Linux does use 128-bit now.
5309
5310         * sparc-linux-tdep.c (PSR_SYSCALL): Define.
5311         (sparc_linux_write_pc): New function.
5312         (sparc32_linux_init_abi): Register it.
5313         * sparc64-linux-tdep.c (TSTATE_SYSCALL): Define.
5314         (sparc64_linux_write_pc): New function.
5315         (sparc64_linux_init_abi): Register it.
5316
5317         * sparc-linux-tdep.c, sparc64-linux-tdep.c: Use
5318         dwarf2_append_unwinders(), not dwarf2_frame_sniffer.
5319
5320 2008-05-11  Ulrich Weigand  <uweigand@de.ibm.com>
5321
5322         * rs6000-tdep.c (rs6000_gdbarch_init): Set up info.target_desc
5323         and info.tdep_info before calling gdbarch_init_osabi.
5324
5325 2008-05-09  Joel Brobecker  <brobecker@adacore.com>
5326
5327         * ada-lang.c (ada_evaluate_subexp) [BINOP_ASSIGN]: Do not force
5328         the type of the right hand side of the assignment to the type
5329         of the left hand side if the left hand side is a convenience
5330         variable.
5331
5332 2008-05-09  Ulrich Weigand  <uweigand@de.ibm.com>
5333
5334         * NEWS: Mention gdbserver bi-arch capability.
5335
5336 2008-05-09  Doug Evans  <dje@google.com>
5337
5338         New "find" command.
5339         * NEWS: Document find command and qSearch:memory packet.
5340         * Makefile.in (SFILES): Add findcmd.c.
5341         (COMMON_OBJS): Add findcmd.o.
5342         (findcmd.o): New rule.
5343         * findcmd.c: New file.
5344         * target.h (target_ops): New member to_search_memory.
5345         (simple_search_memory): Declare.
5346         (target_search_memory): Declare.
5347         * target.c (simple_search_memory): New fn.
5348         (target_search_memory): New fn.
5349         * remote.c (PACKET_qSearch_memory): New packet kind.
5350         (remote_search_memory): New fn.
5351         (init_remote_ops): Init to_search_memory.
5352         (init_extended_remote_ops): Ditto.
5353         (_initialize_remote): Add qSearch:memory packet config command.
5354
5355 2008-05-09  Eli Zaretskii  <eliz@gnu.org>
5356
5357         * thread.c (_initialize_thread): Don't use commas and periods in
5358         first line of doc string of "set/show print thread-events".
5359
5360 2008-05-08  Joel Brobecker  <brobecker@adacore.com>
5361
5362         * alpha-mdebug-tdep.c, alpha-osf1-tdep.c, alpha-tdep.c:
5363         Update for unwinder changes.
5364
5365 2008-05-08  Joel Brobecker  <brobecker@adacore.com>
5366
5367         * frame.c (get_frame_base_address, get_frame_locals_address)
5368         (get_frame_args_address): Pass the correct frame when calling
5369         frame_base_find_by_frame.
5370
5371 2008-05-08  Ulrich Weigand  <uweigand@de.ibm.com>
5372
5373         * remote.c (extended_remote_attach_1): Call target_find_description.
5374
5375 2008-05-08  Daniel Jacobowitz  <dan@codesourcery.com>
5376
5377         * remote.c (extended_remote_create_inferior_1): Clean up
5378         before marking the target running.
5379
5380 2008-05-08  Joel Brobecker  <brobecker@adacore.com>
5381
5382         * hppa-tdep.h, hppa-tdep.c, hppa-hpux-tdep.c: Update for unwinder
5383         changes.
5384
5385 2008-05-07  Joel Brobecker  <brobecker@adacore.com>
5386
5387         * sparc-tdep.c, sparc-tdep.h, sparc-sol2-tdep.c, sparc64-tdep.c,
5388         sparc64-sol2-tdep.c: Update for unwinder changes.
5389
5390 2008-05-07  Daniel Jacobowitz  <dan@codesourcery.com>
5391
5392         * cp-support.c (mangled_name_to_comp): Initialize storage.
5393         (unqualified_name_from_comp): Likewise.
5394
5395 2008-05-07  Jie Zhang  <jie.zhang@analog.com>
5396
5397         * remote.c (remote_insert_breakpoint): Call get_remote_state
5398         after gdbarch_breakpoint_from_pc is called.
5399         (remote_insert_hw_breakpoint): Likewise.
5400
5401 2008-05-06  Joel Brobecker  <brobecker@adacore.com>
5402
5403         * valprint.c (val_print): Add new language parameter and use it
5404         instead of using the current_language. Update calls to val_print
5405         throughout.
5406         (common_val_print): Add new langauge parameter and pass it to
5407         val_print.
5408         * value.h (struct language_defn): Add opaque declaration.
5409         (val_print, common_val_print): Update declarations.
5410         * stack.c (print_frame_args): Update call to common_val_print
5411         using the appropriate language.
5412         * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
5413         * c-valprint, f-valprint.c, m2-valprint.c, mt-tdep.c, infcmd.c,
5414         mi/mi-main.c, jv-valprint.c, ada-valprint.c, varobj.c, p-valprint.c,
5415         scm-valprint.c, cp-valprint.c, sh64-tdep.c, printcmd.c:
5416         #include "language.h" if necessary.
5417         Update calls to val_print and common_val_print.
5418         * Makefile.in (mt-tdep.o, sh64-tdep.o, mi-cmds.o, mi-main.o):
5419         Update dependencies.
5420
5421 2008-05-06  Joel Brobecker  <brobecker@adacore.com>
5422
5423         * ia64-tdep.c (ia64_convert_from_func_ptr_addr): Treat addresses
5424         pointing inside a non-executable section as function descriptors.
5425
5426 2008-05-06  Pedro Alves  <pedro@codesourcery.com>
5427
5428         * inf-loop.c (inferior_event_handler): Run all continuations and
5429         print any language change before running the breakpoint commands.
5430
5431 2008-05-06  Joel Brobecker  <brobecker@adacore.com>
5432
5433         * frame-unwind.c (frame_unwind_got_bytes): New function.
5434         * frame-unwind.h (frame_unwind_got_bytes): Add declaration.
5435         * libunwind-frame.h, libunwind-frame.c, ia64-tdep.c: Update
5436         for unwinder changes.
5437
5438 2008-05-05  Doug Evans  <dje@google.com>
5439
5440         * NEWS: Mention new /m modifier for disassemble command.
5441         * cli/cli-cmds.c (print_disassembly): New function.
5442         (disassemble_current_function): New function
5443         (disassemble_command): Recognize /m modifier, print mixed
5444         source+assembly.
5445         (init_cli_cmds): Update disassemble help text.
5446
5447 2008-05-05  Maxim Grigoriev  <maxim2405@gmail.com>
5448
5449         * xtensa-tdep.c: Update for unwinder changes.
5450
5451 2008-05-05  Andreas Schwab  <schwab@suse.de>
5452
5453         Update m68k port for unwinder changes.
5454         * m68k-tdep.c (m68k_frame_cache): Expect this_frame.
5455         (m68k_frame_this_id, m68k_frame_prev_register): Update signature.
5456         (m68k_frame_unwind): Use default_frame_sniffer.
5457         (m68k_frame_sniffer): Remove.
5458         (m68k_frame_base_address): Expect this_frame.
5459         (m68k_dummy_id): Renamed from m68k_unwind_dummy_id.  Expect
5460         this_frame.
5461         (m68k_gdbarch_init): Use set_gdbarch_dummy_id,
5462         dwarf2_append_unwinders, and frame_unwind_append_unwinder.
5463         * m68klinux-tdep.c (m68k_linux_pc_in_sigtramp): Expect frame_info
5464         parameter instead of pc value.
5465         (m68k_linux_get_sigtramp_info, m68k_linux_sigtramp_frame_cache):
5466         Expect this_frame.
5467         (m68k_linux_sigtramp_frame_this_id)
5468         (m68k_linux_sigtramp_frame_prev_register)
5469         (m68k_linux_sigtramp_frame_sniffer): Update signature.
5470         (m68k_linux_sigtramp_frame_unwind): Use
5471         m68k_linux_sigtramp_frame_sniffer.
5472         (m68k_linux_init_abi): Use frame_unwind_append_unwinder.
5473
5474         * m68klinux-nat.c (store_register): Fix typo.
5475
5476 2008-05-05  Pedro Alves  <pedro@codesourcery.com>
5477
5478         * infcmd.c (step_1): Put thread id on the stack to avoid possible
5479         NULL dereferencing.
5480
5481 2008-05-05  Luis Machado  <luisgpm@br.ibm.com>
5482
5483         * symfile.c (reread_symbols): Update objfile's entry point.
5484
5485 2008-05-05  Aleksandar Ristovski  <aristovski@qnx.com>
5486             Joel Brobecker  <brobecker@adacore.com>
5487
5488         * ada-lang.c: Update throughout to use symbol_matches_domain
5489         instead of matching the symbol domain explictly.
5490         * dwarf2read.c (add_partial_symbol): Do not add new psym for
5491         STRUCT_DOMAIN. Make sure you recognize c++ struct and java and ada
5492         class as typedefs. See lookup_partial_symbol function.
5493         (new_symbol): Similar to add_partial_symbol, do not create
5494         symbol for the typedef. See lookup_block_symbol.
5495         * symtab.c (symbol_matches_domain): New function, takes care
5496         of dual meaning of STRUCT_DOMAIN symbol for c++, ada and java.
5497         (lookup_partial_symbol): Use symbol_matches_domain to see if the
5498         found psym domain matches the given domain.
5499         (lookup_block_symbol): Likewise.
5500
5501 2008-05-05  Vladimir Prus  <vladimir@codesourcery.com>
5502
5503         * top.c (command_line_handler_continuation): Remove.
5504         (execute_command): Do not install the above.
5505
5506 2008-05-05  Vladimir Prus  <vladimir@codesourcery.com>
5507
5508         * inf-loop.c (inferior_event_handler): Call bpstat_do_action,
5509         and catch all exceptions from it.
5510         * top.c (command_line_handler_continuation): Don't
5511         call bpstat_do_action here.
5512
5513 2008-05-04  Daniel Jacobowitz  <dan@codesourcery.com>
5514
5515         * dwarf2read.c (struct dwarf2_cu): Add type_hash.
5516         (struct die_info): Remove type.
5517         (read_type_die, read_typedef, read_base_type, read_subrange_type)
5518         (read_structure_type, read_enumeration_type, read_array_type)
5519         (read_tag_pointer_type, read_tag_ptr_to_member_type)
5520         (read_tag_reference_type, read_tag_const_type, read_tag_volatile_type)
5521         (read_tag_string_type, read_subroutine_type, read_set_type)
5522         (read_unspecified_type): Delete prototypes.  Remove check for
5523         already-loaded type.  Return the new type.
5524         (set_die_type): Return the new type.
5525         (reset_die_and_siblings_types): Delete.
5526         (load_comp_unit, load_full_comp_unit): Set type_hash.
5527         (process_queue): Remove call to reset_die_and_siblings_types.
5528         (process_die): Do not read most types here.  Use read_type_die
5529         for others.
5530         (read_func_scope, dwarf2_add_member_fn): Use read_type_die.
5531         (quirk_gcc_member_function_pointer): Return the new type.
5532         (process_structure_scope, process_enumeration_scope): Use
5533         get_die_type and read the DIE's type.
5534         (read_full_die): Do not initialize die->type.
5535         (tag_type_to_type): Use read_type_die.
5536         (read_type_die): Check for already defined types.  Return the
5537         type.
5538         (determine_prefix): Use get_die_type.
5539         (set_die_type): Return the type.
5540         (get_die_type): Take a CU argument.  Check for no type_hash.
5541
5542 2008-05-04  Daniel Jacobowitz  <dan@codesourcery.com>
5543
5544         * dwarf2read.c (dwarf2_ranges_read, read_partial_die): Initialize
5545         locals.
5546
5547 2008-05-04  Pedro Alves  <pedro@codesourcery.com>
5548
5549         * breakpoint.c (update_breakpoints_after_exec): Delete bp_longjmp
5550         and bp_longjmp_resume breakpoints.
5551         (breakpoint_address_is_meaningful): Claim bp_longjmp_resume as
5552         meaningful.
5553         (create_longjmp_breakpoint): Don't create bp_longjmp_resume
5554         breakpoints.  Create bp_longjmp breakpoints as momentary
5555         breakpoints.
5556         (enable_longjmp_breakpoint): Delete.
5557         (set_longjmp_breakpoint): New.
5558         (disable_longjmp_breakpoint): Delete.
5559         (delete_longjmp_breakpoint): New.
5560         (set_longjmp_resume_breakpoint): Delete.
5561         (set_momentary_breakpoint_at_pc): New.
5562         (breakpoint_re_set_one): Don't delete bp_longjmp and
5563         bp_longjmp_resume breakpoints.
5564         (breakpoint_re_set): Don't create longjmp and longjmp-resume
5565         breakpoints.
5566
5567         * infrun.c (step_resume_breakpoint): Add comment.
5568         (struct execution_control_state): Delete handling_longjmp member.
5569         (init_execution_control_state). Don't clear handling_longjmp.
5570         (context_switch): Don't context switch handling_longjmp.
5571         (handle_inferior_event): If handling a bp_longjmp breakpoint,
5572         create a bp_longjmp_resume breakpoint, and set it as current
5573         step_resume_breakpoint, then step over the longjmp breakpoint.  If
5574         handling a bp_longjmp_resume breakpoint, don't delete the longjmp
5575         breakpoint, delete the longjmp-resume breakpoint, and stop
5576         stepping.
5577         (currently_stepping): Remove handling_longjmp from expression.
5578         (insert_step_resume_breakpoint_at_sal): Update comment.
5579         (insert_longjmp_resume_breakpoint): New.
5580
5581         * breakpoint.h (set_momentary_breakpoint_at_pc): Declare.
5582         (enable_longjmp_breakpoint, disable_longjmp_breakpoint): Delete
5583         declarations.
5584         (set_longjmp_breakpoint, delete_longjmp_breakpoint): Declare.
5585         (set_longjmp_resume_breakpoint): Delete declaration.
5586
5587         * gdbthread.h (save_infrun_state): Remove handling_longjmp
5588         parameter.
5589         (load_infrun_state): Delete *handling_longjmp parameter.
5590         * thread.c (save_infrun_state): Remove handling_longjmp parameter.
5591         Update body.
5592         (load_infrun_state): Delete *handling_longjmp parameter.  Update
5593         body.
5594
5595         * infcmd.c (disable_longjmp_breakpoint_cleanup): Delete.
5596         (delete_longjmp_breakpoint_cleanup): New.
5597         (step_1): Call set_longjmp_breakpoint instead of
5598         enable_longjmp_breakpoint.  Use delete_longjmp_breakpoint_cleanup
5599         instead of disable_longjmp_breakpoint_cleanup when making cleanup.
5600         (step_1_continuation): Pass thread id in the continuation args to
5601         step_once.
5602         (step_once): Add thread parameter.  Pass thread id the the
5603         continuation.
5604
5605 2008-05-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
5606
5607         Set CU BASE_ADDRESS already from partial DIEs.
5608         * dwarf2read.c (read_partial_die): New variables BASE_ADDRESS and
5609         BASE_ADDRESS_TYPE.  Set these variables from DW_AT_LOW_PC and
5610         DW_AT_ENTRY_PC.  Set CU->HEADER.BASE_KNOWN and CU->HEADER.BASE_ADDRESS
5611         from these variables if it was still unset.
5612
5613         * Makefile.in: Update dependencies.
5614         * dwarf2read.c: Include "addrmap.h"
5615         (struct dwarf2_cu): New fields RANGES_OFFSET and HAS_RANGES_OFFSET.
5616         (dwarf2_ranges_read): New prototype.
5617         (dwarf2_build_psymtabs_hard): Initialize and prepare PSYMTABS_ADDRMAP.
5618         Add discontiguous range to PSYMTABS_ADDRMAP by DWARF2_RANGES_READ on
5619         HAS_RANGES_OFFSET, otherwise add there the contiguous range.
5620         (dwarf2_ranges_read): New parameter RANGES_PST, update the function
5621         comment for it.  Add the found ranges to RANGES_PST.  New variable
5622         BASEADDR, initialize it the common way.
5623         (dwarf2_get_pc_bounds): Update the caller for the new parameter.
5624         (read_partial_die): `DW_AT_ranges' now only sets RANGES_OFFSET and
5625         HAS_RANGES_OFFSET for the later processing.
5626         * objfiles.h (struct objfile): New field PSYMTABS_ADDRMAP.
5627         * symtab.c: Include "addrmap.h"
5628         (find_pc_sect_psymtab): Support reading the field PSYMTABS_ADDRMAP.
5629         Move the psymtab locator into ...
5630         (find_pc_sect_psymtab_closer): ... a new function.
5631
5632 2008-05-04  Ulrich Weigand  <uweigand@de.ibm.com>
5633
5634         * arch-utils.c (gdbarch_update_p): Use default values for
5635         info.abfd and info.target_desc if they are NULL.
5636         (gdbarch_from_bfd): Remove assertion.
5637         (set_gdbarch_from_file): Call gdbarch_find_by_info directly,
5638         using the current target description.
5639         (gdbarch_info_fill): Do not use default values for info->abfd
5640         and info->target_desc.
5641
5642 2008-05-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
5643
5644         * symfile.c (reread_symbols): Reload EXEC_BFD on its change.
5645
5646 2008-05-04  Ulrich Weigand  <uweigand@de.ibm.com>
5647
5648         * inferior.h (read_pc_pid, write_pc_pid): Remove.
5649         * regcache.h (regcache_read_pc, regcache_write_pc): Add prototypes.
5650
5651         * regcache.c (read_pc_pid): Remove, replace by ...
5652         (regcache_read_pc): ... this function.
5653         (write_pc_pid): Remove, replace by ...
5654         (regcache_write_pc): ... this function.
5655         (read_pc, write_pc): Update.
5656
5657         * infrun.c (displaced_step_prepare): Replace read_pc_pid and
5658         write_pc_pid by regcache_read_pc and regcache_write_pc.
5659         (displaced_step_fixup): Likewise.
5660         (resume): Likewise.  Use regcache arch instead of current_gdbarch.
5661         (prepare_to_proceed): Likewise.
5662         (proceed): Likewise.
5663         (adjust_pc_after_break): Likewise.
5664         (handle_inferior_event): Likewise.
5665
5666         * linux-nat.c (cancel_breakpoint): Likewise.
5667         * linux-thread-db.c (check_event): Likewise.
5668         * aix-thread.c (aix_thread_wait): Likewise.
5669         * tracepoint.c (trace_dump_command): Likewise.
5670
5671 2008-05-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
5672
5673         * dwarf2loc.c (dwarf_expr_frame_base): Error out on missing
5674         SYMBOL_LOCATION_BATON.
5675
5676 2008-05-04  Vladimir Prus  <vladimir@codesourcery.com>
5677
5678         * target.h (struct target_ops): New field to_auxv_parse.
5679         * auxv.c (default_auxv_parse): New, renamed from previous
5680         target_auxv_parse.
5681         (target_auxv_parse): Try to call target method.  Fallback to
5682         default_auxv_parse if not found.
5683         * procfs.c (procfs_auxv_parse): New.
5684         (init_procfs_ops): On Solaris, in 64-bit mode, install
5685         procfs_auxv_parse.
5686
5687 2008-05-03  Adam Nemet  <anemet@caviumnetworks.com>
5688
5689         * symfile.c (add_symbol_file_command):  Use paddress rather than
5690         hex_string to print the address.
5691
5692 2008-05-03  Ulrich Weigand  <uweigand@de.ibm.com>
5693
5694         * rs6000-tdep.c (rs6000_frame_this_id): If info->base is 0,
5695         return the null frame ID to terminate the backtrace.
5696
5697 2008-05-03  Ulrich Weigand  <uweigand@de.ibm.com>
5698
5699         * rs6000-tdep.c: Do not include "rs6000-tdep.h".
5700         (rs6000_find_toc_address_hook): Move to rs6000-aix-tdep.c.
5701         (SIG_FRAME_PC_OFFSET): Likewise.
5702         (SIG_FRAME_LR_OFFSET): Likewise.
5703         (SIG_FRAME_FP_OFFSET): Likewise.
5704         (rs6000_push_dummy_call): Likewise.
5705         (rs6000_return_value): Likewise.
5706         (rs6000_convert_from_func_ptr_addr): Likewise.
5707         (branch_dest, rs6000_software_single_step): Likewise.
5708         (deal_with_atomic_sequence): Rename to ...
5709         (ppc_deal_with_atomic_sequence): ... this.  Adapt all callers.
5710         Do not call branch_dest; inline required parts of that function.
5711         (rs6000_skip_trampoline_code): Replace DEPRECATED_SYMBOL_NAME
5712         with SYMBOL_LINKAGE_NAME.
5713         (struct reg, regsize): Delete.
5714         (read_memory_addr): Delete; inline into callers.
5715         (rs6000_skip_prologue): Move after skip_prologue.
5716         (skip_prologue): Remove prototype.
5717         (rs6000_gdbarch_init): Remove sysv_abi variable; perform all
5718         initialization as if this variable were true.  Do not install
5719         ppc64_sysv_abi_adjust_breakpoint_address.
5720
5721         * rs6000-aix-tdep.c: Include "gdb_assert.h", "gdbtypes.h",
5722         "gdbcore.h", "target.h", "value.h", "infcall.h", "objfiles.h",
5723         and "breakpoint.h".
5724         (rs6000_find_toc_address_hook): Move here from rs6000-tdep.c.
5725         (SIG_FRAME_PC_OFFSET): Likewise.
5726         (SIG_FRAME_LR_OFFSET): Likewise.
5727         (SIG_FRAME_FP_OFFSET): Likewise.
5728         (rs6000_push_dummy_call): Likewise.
5729         (rs6000_return_value): Likewise.
5730         (rs6000_convert_from_func_ptr_addr): Likewise.
5731         (branch_dest, rs6000_software_single_step): Likewise.  Replace
5732         tdep->text_segment_base by AIX_TEXT_SEGMENT_BASE.
5733         (rs6000_aix_init_osabi): Install rs6000_push_dummy_call,
5734         rs6000_return_value, and rs6000_convert_from_func_ptr_addr.
5735         Call set_gdbarch_long_double_bit and set_gdbarch_frame_red_zone_size.
5736         Set tdep->lr_frame_offset.  Do not set tdep->text_segment_base.
5737
5738         * rs6000-tdep.h (rs6000_software_single_step): Remove prototype.
5739         (AIX_TEXT_SEGMENT_BASE): New macro.
5740         * rs6000-nat.c (exec_one_dummy_insn): Replace tdep->text_segment_base
5741         by AIX_TEXT_SEGMENT_BASE.
5742
5743         * ppc-tdep.h (ppc_deal_with_atomic_sequence): Add prototype.
5744         (struct gdbarch_tdep): Remove text_segment_base member.
5745         * ppc-linux-tdep.c (ppc_linux_init_abi): On 64-bit, install
5746         ppc64_sysv_abi_adjust_breakpoint_address.
5747
5748         * Makefile.in (rs6000-tdep.o): Update dependencies.
5749         (rs6000-aix-tdep.o): Likewise.
5750
5751 2008-05-03  Luis Machado  <luisgpm@br.ibm.com>
5752             Thiago Jung Bauermann  <bauerman@br.ibm.com>
5753
5754         * cli/cli-decode.c (lookup_cmd_1): Fix indentation.
5755         * doublest.c (convert_typed_floating): Fix typo in comment.
5756         * dwarf2-frame.c (dwarf2_frame_cache): Likewise.
5757         * frame-unwind.h (frame_sniffer_ftype): Likewise.
5758         * frame.c (frame_unwind_address_in_block): Likewise.
5759         * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Likewise.
5760         * symtab.h (struct symbol): Likewise.
5761         * tramp-frame.h (struct trad_frame_cache): Likewise.
5762         * value.c (allocate_repeat_value): Likewise.
5763
5764 2008-05-03  Ulrich Weigand  <uweigand@de.ibm.com>
5765
5766         * infrun.c (handle_inferior_event): Do not insert breakpoints at
5767         TARGET_WAITKIND_LOADED events during startup (i.e. in the shell).
5768
5769 2008-05-03  Pedro Alves  <pedro@codesourcery.com>
5770
5771         * parse.c (parse_exp_in_context): Don't override
5772         expression_context_pc if get_selected_block returned a valid
5773         block.
5774
5775 2008-05-03  Daniel Jacobowitz  <dan@codesourcery.com>
5776
5777         * alpha-tdep.h (ALPHA_REGISTER_BYTES): Delete.
5778         * arm-tdep.h (STATUS_REGISTER_SIZE): Delete.
5779         * breakpoint.c (args_for_catchpoint_enable, current_exception_event):
5780         Delete.
5781         * c-typeprint.c (c_type_print_base): Delete handling of template
5782         instantiations.
5783         * cp-support.h (METHOD_PTR_IS_VIRTUAL, METHOD_PTR_FROM_VOFFSET)
5784         (METHOD_PTR_TO_VOFFSET): Delete.
5785         * defs.h (QUIT_FIXME): Delete.
5786         * f-lang.h (DEFAULT_DOTMAIN_NAME_IN_MF77, DEFAULT_MAIN_NAME_IN_MF77)
5787         (DEFAULT_DOTMAIN_NAME_IN_XLF_BUGGY, DEFAULT_DOTMAIN_NAME_IN_XLF): Delete.
5788         * gdbtypes.h (struct cplus_struct_type): Delete is_inlined,
5789         ninstantiations, and instantiations.
5790         (TYPE_INSTANTIATIONS, TYPE_NINSTANTIATIONS, TYPE_INSTANTIATION)
5791         (TYPE_FN_FIELD_INLINED): Delete.
5792         * srec.h (SREC_BINARY): Delete.
5793         * symtab.c (symbol_init_demangled_name): Delete.
5794         * symtab.h (SYMBOL_INIT_DEMANGLED_NAME, symbol_init_demangled_name)
5795         (SYMBOL_OBJFILE, struct exception_event_record, CURRENT_EXCEPTION_KIND)
5796         (CURRENT_EXCEPTION_CATCH_SAL, CURRENT_EXCEPTION_CATCH_LINE)
5797         (CURRENT_EXCEPTION_CATCH_FILE, CURRENT_EXCEPTION_CATCH_PC)
5798         (CURRENT_EXCEPTION_THROW_SAL, CURRENT_EXCEPTION_THROW_LINE)
5799         (CURRENT_EXCEPTION_THROW_FILE, CURRENT_EXCEPTION_THROW_PC): Delete.
5800         * target.h (enum thread_control_capabilities): Delete tc_switch.
5801         (target_can_switch_threads): Delete.
5802
5803 2008-05-03  Daniel Jacobowitz  <dan@codesourcery.com>
5804
5805         * Makefile.in (objfiles.o): Update.
5806         * exec.c (exec_set_section_address): Support p->addr != 0.
5807         * objfiles.c (objfile_relocate): Update exec_ops section
5808         addresses.
5809         * symfile.c (place_section): Move exec_set_section_address call...
5810         (default_symfile_offsets): ...to here.
5811
5812 2008-05-03  Ulrich Weigand  <uweigand@de.ibm.com>
5813
5814         * Makefile.in (ppc_linux_tdep_h): New macro.
5815         (powerpc_32l_c, powerpc_altivec32_c, powerpc_altivec32l_c): Likewise.
5816         (powerpc_64l_c, powerpc_altivec64_c, powerpc_altivec64l_c): Likewise.
5817         (powerpc_e500l_c): Likewise.
5818         (ppc-linux-nat.o): Update dependencies.
5819         (ppc-linux-tdep.o): Update dependencies.
5820         (rs6000-tdep.o): Update dependencies.
5821
5822         * ppc-tdep.h (ppc_linux_memory_remove_breakpoint): Remove.
5823         (ppc_linux_svr4_fetch_link_map_offsets): Remove.
5824         (ppc_linux_gregset, ppc_linux_fpregset): Move to ppc-linux-tdep.h
5825         (ppc_supply_reg, ppc_collect_reg): Add prototypes.
5826         (tdesc_powerpc_e500): Remove.
5827
5828         * rs6000.c: Include "features/rs6000/powerpc-altivec32.c"
5829         and "features/rs6000/powerpc-altivec64.c".
5830         (ppc_supply_reg, ppc_collect_reg): Make global.
5831         (variants): Use tdesc_powerpc_32 for "powerpc" and
5832         tdesc_powerpc_altivec64 for "powerpc64".
5833         (_initialize_rs6000_tdep): Initialize AltiVec descriptions.
5834
5835         * ppc-linux-tdep.h: New file.
5836
5837         * ppc-linux-tdep.c: Include "ppc-linux-tdep.c".
5838         Include "features/rs6000/powerpc-32l.c".
5839         Include "features/rs6000/powerpc-altivec32l.c".
5840         Include "features/rs6000/powerpc-64l.c".
5841         Include "features/rs6000/powerpc-altivec64l.c".
5842         Include "features/rs6000/powerpc-e500l.c".
5843         (ppc_linux_supply_gregset): New function.
5844         (ppc_linux_collect_gregset): Handle orig_r3 and trap registers.
5845         (ppc32_linux_gregset): Use ppc_linux_supply_gregset.
5846         (ppc64_linux_gregset): Likewise.
5847         (ppc_linux_sigtramp_cache): Handle orig_r3 and trap registers.
5848         (ppc_linux_trap_reg_p): New function.
5849         (ppc_linux_write_pc): New function.
5850         (ppc_linux_core_read_description): New function.
5851         (ppc_linux_init_abi): Install ppc_linux_write_pc and
5852         ppc_linux_core_read_description.  Install orig_r3 and trap
5853         registers if present in the target description.
5854         (_initialize_ppc_linux_tdep): Initialize Linux target descriptions.
5855
5856         * ppc-linux-nat.c: Include "ppc-linux-tdep.h".
5857         (PT_ORIG_R3, PT_TRAP): Define if necessary.
5858         (ppc_register_u_addr): Handle orig_r3 and trap registers.
5859         (fetch_ppc_registers): Likewise.
5860         (store_ppc_registers): Likewise.
5861         (store_register): Likewise.
5862         (ppc_linux_read_description): Check whether AltiVec is supported.
5863         Check whether inferior is 32-bit or 64-bit.  Return the appropriate
5864         Linux target description.
5865
5866         * features/Makefile (WHICH): Use rs6000/powerpc-32l and
5867         rs6000/powerpc-altivec32l instead of rs6000/powerpc-32.
5868         Use rs6000/powerpc-64l and rs6000/powerpc-altivec64l instead
5869         of rs6000/powerpc-64.  Use rs6000/powerpc-e500l instead of
5870         rs6000/powerpc-e500.  Update -expedite variables accordingly.
5871
5872         * features/rs6000/power-spe.xml: Use regnum 73 for "acc".
5873         * features/rs6000/powerpc-32.xml: Do not include power-altivec.xml.
5874         * features/rs6000/powerpc-64.xml: Do not include power-altivec.xml.
5875         * features/rs6000/powerpc-e500.c: Regenerate.
5876         * features/rs6000/powerpc-32.c: Regenerate.
5877         * features/rs6000/powerpc-64.c: Regenerate.
5878
5879         * features/rs6000/power-linux.xml: New file.
5880         * features/rs6000/power64-linux.xml: New file.
5881         * features/rs6000/powerpc-32l.xml: New file.
5882         * features/rs6000/powerpc-altivec32l.xml: New file.
5883         * features/rs6000/powerpc-64l.xml: New file.
5884         * features/rs6000/powerpc-altivec64l.xml: New file.
5885         * features/rs6000/powerpc-e500l.xml: New file.
5886         * features/rs6000/powerpc-32l.c: New (generated) file.
5887         * features/rs6000/powerpc-altivec32l.c: New (generated) file.
5888         * features/rs6000/powerpc-64l.c: New (generated) file.
5889         * features/rs6000/powerpc-altivec64l.c: New (generated) file.
5890         * features/rs6000/powerpc-e500l.xml: New (generated) file.
5891
5892         * regformats/reg-ppc.dat: Remove.
5893         * regformats/reg-ppc64.dat: Remove.
5894         * regformats/rs6000/powerpc-32.dat: Remove.
5895         * regformats/rs6000/powerpc-64.dat: Remove.
5896         * regformats/rs6000/powerpc-e500.dat: Remove.
5897         * regformats/rs6000/powerpc-32l.dat: New (generated) file.
5898         * regformats/rs6000/powerpc-altivec32l.dat: New (generated) file.
5899         * regformats/rs6000/powerpc-64l.dat: New (generated) file.
5900         * regformats/rs6000/powerpc-altivec64l.dat: New (generated) file.
5901         * regformats/rs6000/powerpc-e500l.dat: New (generated) file.
5902
5903 2008-05-03  Pedro Alves  <pedro@codesourcery.com>
5904
5905         * thread.c (delete_thread): Call observer_notify_thread_exit.
5906         * mi/mi-interp.c (mi_interpreter_init): Register mi_thread_exit as
5907         thread_exit observer.
5908         (mi_thread_exit): New.
5909
5910 2008-05-03  Thiago Jung Bauermann  <bauerman@br.ibm.com>
5911
5912         * breakpoint.c (create_exception_catchpoint): Remove prototype
5913         for already deleted function.
5914         * breakpoint.h (ep_is_exception_catchpoint): Likewise.
5915         * frame.h (show_stack_frame): Remove prototype.
5916         * stack.c (show_stack_frame): Remove empty, unused function.
5917         * source.c (symtab_to_fullname, print_source_lines): Small fix
5918         in comment.
5919         * value.c (show_values): Update comments to mention "show values"
5920         command instead of "info history".
5921
5922 2008-05-02  Ulrich Weigand  <uweigand@de.ibm.com>
5923
5924         * linespec.c: Include "target.h".
5925         (minsym_found): Handle minimal symbols pointing to function
5926         descriptors.  Use find_function_start_pc.
5927         * minsyms.c (msymbol_objfile): New function.
5928         * parse.c (write_exp_msymbol): Handle minimal symbols pointing
5929         to function descriptors.
5930         * symtab.c (fixup_section): Only use minimal symbol at the same
5931         address to determine section of a symbol.
5932         (find_function_start_pc): New function.
5933         (find_function_start_sal): Use it.
5934         * symtab.h (msymbol_objfile): Add prototype.
5935         (find_function_start_pc): Likewise.
5936         * value.c: Include "objfiles.h".
5937         (value_fn_field): Handle minimal symbols pointing to function
5938         descriptors.
5939         * Makefile.in (linespec.o): Update dependencies.
5940         (value.o): Likewise.
5941
5942 2008-05-02  Joel Brobecker  <brobecker@adacore.com>
5943
5944         * ada-lang.c (unwrap_value): Handle the case where the "F" field
5945         inside a PAD type is a bitfield.
5946
5947 2008-05-02  Ulrich Weigand  <uweigand@de.ibm.com>
5948
5949         * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Handle
5950         TYPE_CODE_BOOL and TYPE_CODE_CHAR the same as TYPE_CODE_INT.
5951         Handle TYPE_CODE_REF the same as TYPE_CODE_PTR.
5952         Handle TYPE_CODE_METHOD the same as TYPE_CODE_FUNC.
5953         Allow typedefs when checking for function pointer arguments.
5954         Right-align small structs passed on the stack.
5955         (ppc64_sysv_abi_return_value): Handle TYPE_CODE_BOOL and
5956         TYPE_CODE_CHAR the same as TYPE_CODE_INT.
5957         Handle TYPE_CODE_REF the same as TYPE_CODE_PTR.
5958
5959 2008-05-02  Daniel Jacobowitz  <dan@codesourcery.com>
5960
5961         * Makefile.in (arm-tdep.o): Update.
5962         * arm-tdep.c (arm_objfile_data_key, struct arm_mapping_symbol)
5963         (struct arm_per_objfile, arm_compare_mapping_symbols): New.
5964         (arm_pc_is_thumb): Use mapping symbols.
5965         (arm_objfile_data_cleanup, arm_record_special_symbol): New.
5966         (arm_gdbarch_init): Call set_gdbarch_record_special_symbol.
5967         (_initialize_arm_tdep): Initialize arm_objfile_data_key.
5968         * elfread.c (elf_symtab_read): Use gdbarch_record_special_symbol.
5969         * gdbarch.sh: Add record_special_symbol.
5970         * gdbarch.c, gdbarch.h: Regenerated.
5971         * objfiles.c (struct objfile_data): Add cleanup member.
5972         (register_objfile_data_with_cleanup): New function, from
5973         register_objfile_data.
5974         (register_objfile_data): Use it.
5975         (objfile_free_data): Call clear_objfile_data.
5976         (clear_objfile_data): Call cleanup functions.
5977         * objfiles.h (register_objfile_data_with_cleanup): Declare.
5978
5979 2008-05-02  Daniel Jacobowitz  <dan@codesourcery.com>
5980
5981         * objfiles.c (init_entry_point_info): Handle shared libraries.
5982
5983 2008-05-02  Daniel Jacobowitz  <dan@codesourcery.com>
5984
5985         * arm-tdep.c (arm_prologue_this_id): Compare pc, not func, to
5986         lowest_pc.
5987
5988 2008-05-02  Jim Blandy  <jimb@codesourcery.com>
5989             Pedro Alves  <pedro@codesourcery.com>
5990
5991         Implement displaced stepping.
5992
5993         * gdbarch.sh (max_insn_length): New 'variable'.
5994         (displaced_step_copy, displaced_step_fixup)
5995         (displaced_step_free_closure, displaced_step_location): New
5996         functions.
5997         (struct displaced_step_closure): Add forward declaration.
5998         * gdbarch.c, gdbarch.h: Regenerated.
5999
6000         * arch-utils.c: #include "objfiles.h".
6001         (simple_displaced_step_copy_insn)
6002         (simple_displaced_step_free_closure)
6003         (displaced_step_at_entry_point): New functions.
6004         * arch-utils.h (simple_displaced_step_copy_insn)
6005         (simple_displaced_step_free_closure)
6006         (displaced_step_at_entry_point): New prototypes.
6007
6008         * i386-tdep.c (I386_MAX_INSN_LEN): Rename to...
6009         (I386_MAX_MATCHED_INSN_LEN): ... this.
6010         (i386_absolute_jmp_p, i386_absolute_call_p)
6011         (i386_ret_p, i386_call_p, i386_breakpoint_p, i386_syscall_p)
6012         (i386_displaced_step_fixup): New functions.
6013         (struct i386_insn, i386_match_insn): Update.
6014         (i386_gdbarch_init): Set gdbarch_max_insn_length.
6015         * i386-tdep.h (I386_MAX_INSN_LEN): New.
6016         (i386_displaced_step_fixup): New prototype.
6017         * i386-linux-tdep.c (i386_linux_init_abi): Include "arch-utils.h".
6018         Register gdbarch_displaced_step_copy,
6019         gdbarch_displaced_step_fixup, gdbarch_displaced_step_free_closure,
6020         and gdbarch_displaced_step_location functions.
6021
6022         * infrun.c (debug_displaced): New variable.
6023         (show_debug_displaced): New function.
6024         (struct displaced_step_request): New struct.
6025         (displaced_step_request_queue, displaced_step_ptid)
6026         (displaced_step_gdbarch, displaced_step_closure)
6027         (displaced_step_original, displaced_step_copy)
6028         (displaced_step_saved_copy, can_use_displaced_stepping): New
6029         variables.
6030         (show_can_use_displaced_stepping, use_displaced_stepping)
6031         (displaced_step_clear, cleanup_displaced_step_closure)
6032         (displaced_step_dump_bytes, displaced_step_prepare)
6033         (displaced_step_clear_cleanup, write_memory_ptid)
6034         (displaced_step_fixup): New functions.
6035         (resume): Call displaced_step_prepare.
6036         (proceed): Call read_pc once, and remember the value.  If using
6037         displaced stepping, don't remove breakpoints.
6038         (handle_inferior_event): Call displaced_step_fixup.  Add some
6039         debugging output.  When we try to step over a breakpoint, but get
6040         a signal to deliver to the thread instead, ensure the step-resume
6041         breakpoint is actually inserted.  If a thread hop is needed, and
6042         displaced stepping is enabled, don't remove breakpoints.
6043         (init_wait_for_inferior): Call displaced_step_clear.
6044         (_initialize_infrun): Add "set debug displaced" command.  Add
6045         "maint set can-use-displaced-stepping" command.  Clear
6046         displaced_step_ptid.
6047         * inferior.h (debug_displaced): Declare variable.
6048         (displaced_step_dump_bytes): Declare function.
6049
6050         * Makefile.in (arch-utils.o, i386-linux-tdep.o): Update
6051         dependencies.
6052
6053 2008-05-02  Daniel Jacobowitz  <dan@codesourcery.com>
6054
6055         * arm-tdep.c (arm_mode_strings, arm_fallback_mode_string)
6056         (arm_force_mode_string, arm_show_fallback_mode)
6057         (arm_show_force_mode): New.
6058         (arm_pc_is_thumb): Honor fallback-mode and force-mode.  Use
6059         arm_frame_is_thumb.
6060         (_initialize_arm_tdep): Add "set arm fallback-mode"
6061         and "set arm force-mode".
6062         * NEWS: Document new commands.
6063
6064 2008-05-02  Andrew Stubbs  <andrew.stubbs@st.com>
6065
6066         * main.h (batch_silent): Declare.
6067         * event-top.c: Include main.h.
6068         (gdb_setup_readline): Remove extern batch_silent declaration.
6069         * infrun.c (normal_stop): Don't print source location when running in
6070         --batch-silent mode.
6071         * Makefile.in (event-top.o): Add main.h dependency.
6072
6073 2008-05-02  Andreas Schwab  <schwab@suse.de>
6074
6075         * target.h (struct target_ops): Add
6076         to_watchpoint_addr_within_range.
6077         (target_watchpoint_addr_within_range): New function.
6078         * target.c (update_current_target): Inherit
6079         to_watchpoint_addr_within_range, defaulting to
6080         default_watchpoint_addr_within_range.
6081         (default_watchpoint_addr_within_range): New function.
6082         (debug_to_watchpoint_addr_within_range): New function.
6083         (setup_target_debug): Set to_watchpoint_addr_within_range.
6084         * ppc-linux-nat.c (ppc_linux_watchpoint_addr_within_range):
6085         New function.
6086         (_initialize_ppc_linux_nat): Set to_watchpoint_addr_within_range.
6087         * breakpoint.c (watchpoints_triggered): Use
6088         target_watchpoint_addr_within_range.
6089
6090 2008-05-01  Pedro Alves  <pedro@codesourcery.com>
6091
6092         * configure.tgt: Add i[34567]86-*-dicos* and x86_64-*-dicos*.
6093         (i[34567]86-*-dicos*, x86_64-*-dicos*):
6094         Set gdb_osabi to GDB_OSABI_DICOS.
6095
6096         * defs.h (enum gdb_osabi): Add GDB_OSABI_DICOS.
6097         * osabi.c (gdb_osabi_name): Add "DICOS".
6098
6099         * i386-dicos-tdep.c: New file.
6100
6101         * Makefile.in (ALL_TARGET_OBS): Add i386-dicos-tdep.o.
6102         (ALLDEPFILES): Add i386-dicos-tdep.c.
6103         (i386-dicos-tdep.o): New rule.
6104
6105 2008-05-01  Pedro Alves  <pedro@codesourcery.com>
6106
6107         * linux-nat.c (linux_nat_switch_fork): Reinit GDB's thread list
6108         and register the fork's PTID as a thread.
6109
6110 2008-05-01  Aleksandar Ristovski  <aristovski@qnx.com>
6111
6112         PR gdb/1665
6113         * breakpoint.c (create_breakpoint): Add breakpoint_ops argument and
6114         assign its value to the breakpoint created.
6115         (create_breakpoints): Add breakpoint_ops argument and pass it
6116         to create_breakpoint call.
6117         (break_command_really): Add breakpoint_ops argument and pass/assign
6118         appropriately.
6119         (break_command_1): Pass NULL as ops argument.
6120         (set_breakpoint): Pass NULL as ops argument.
6121         (print_one_exception_catchpoint): Print <PENDING> if no loc available.
6122         (handle_gnu_v3_exceptions): Call generic breakpoint code to insert
6123         catch and throw catchpoints.
6124
6125 2008-05-01  Aleksandar Ristovski  <aristovski@qnx.com>
6126
6127         PR gdb/2343
6128         * corelow.c (core_open): Use gdbarch_target_signal_from_host to
6129         translate signal numeric value from the target to GDB's enum
6130         target_signal.
6131         * gdbarch.c, gdbarch.h: Regenerated.
6132         * gdbarch.sh: Added two new functions target_signal_from_host and
6133         target_signal_to_host.
6134         * target.h (default_target_signal_from_host,
6135         default_target_signal_to_host): New functions - declarations.
6136         * signals/signals.c (struct gdbarch): New declaration.
6137         (default_target_signal_to_host, default_target_signal_from_host): New
6138         functions.
6139
6140 2008-05-01  Daniel Jacobowitz  <dan@codesourcery.com>
6141             Pedro Alves  <pedro@codesourcery.com>
6142
6143         Based on work by Jan Kratochvil <jan.kratochvil@redhat.com> and Jeff
6144         Johnston <jjohnstn@redhat.com>.
6145
6146         * NEWS: Mention attach to stopped process fix.
6147         * infcmd.c (detach_command, disconnect_command): Discard the thread
6148         list.
6149         * infrun.c (handle_inferior_event): Do not ignore non-SIGSTOP while
6150         attaching.  Use signal_stop_state.
6151         (signal_stop_state): Check stop_soon.
6152         * linux-nat.c (kill_lwp): Declare earlier.
6153         (pid_is_stopped, linux_nat_post_attach_wait): New.
6154         (lin_lwp_attach_lwp): Use linux_nat_post_attach_wait.  Update
6155         comments.
6156         (linux_nat_attach): Use linux_nat_post_attach_wait.
6157         (detach_callback, linux_nat_detach): Improve handling for signalled
6158         processes.
6159         (linux_nat_pid_to_str): Always print out the LWP ID if it differs
6160         from the process ID.
6161         * Makefile.in (infcmd.o): Update.
6162
6163 2008-05-01  Daniel Jacobowitz  <dan@codesourcery.com>
6164
6165         * arm-linux-tdep.h (ARM_CPSR_REGNUM): Delete definition.
6166         * arm-tdep.c (arm_frame_is_thumb): New.
6167         (arm_pc_is_thumb): Clarify comment.
6168         (thumb_analyze_prologue): Remove PC special case.
6169         (thumb_scan_prologue): Take a block_addr argument.  Use it for
6170         find_pc_partial_function.  Remove unused variables.
6171         (arm_scan_prologue): Use arm_frame_is_thumb.  Use the block address
6172         for find_pc_partial_function.  Remove PC special case.
6173         (arm_prologue_prev_register): Add special handling for PC and CPSR.
6174         (arm_dwarf2_prev_register, arm_dwarf2_frame_init_reg): New.
6175         (arm_get_next_pc): Use arm_frame_is_thumb.
6176         (arm_write_pc): Use CPSR_T instead of 0x20.
6177         (arm_gdbarch_init): Call dwarf2_frame_set_init_reg.
6178         * arm-tdep.h (enum gdb_regnum): Add ARM_CPSR_REGNUM.
6179         (CPSR_T): Define.
6180         * dwarf2-frame.c (dwarf2_frame_prev_register): Handle
6181         DWARF2_FRAME_REG_FN.
6182         * dwarf2-frame.h (enum dwarf2_frame_reg_rule): Add
6183         DWARF2_FRAME_REG_FN.
6184         (struct dwarf2_frame_state_reg): Add FN to loc union.
6185
6186 2008-05-01  Nick Roberts  <nickrob@snap.net.nz>
6187
6188         * exec.c (print_section_info): Add missing '\n'.
6189
6190 2008-05-01  Vladimir Prus  <vladimir@codesourcery.com>
6191
6192         * thread.c (add_thread): Move observer call to ...
6193         (add_thread_silent): ... here.
6194
6195 2008-04-30  Ulrich Weigand  <uweigand@de.ibm.com>
6196
6197         * rs6000-tdep.c: Update for unwinder changes.
6198         * ppcobsd-tdep.c: Likewise.
6199
6200 2008-04-30  Ulrich Weigand  <uweigand@de.ibm.com>
6201
6202         * s390-tdep.c: Update for unwinder changes.
6203
6204 2008-04-30  Ulrich Weigand  <uweigand@de.ibm.com>
6205
6206         * spu-tdep.c: Update for unwinder changes.
6207
6208 2008-04-30  Daniel Jacobowitz  <dan@codesourcery.com>
6209
6210         * hppanbsd-tdep.c, m68kbsd-tdep.c, mn10300-linux-tdep.c,
6211         ppc-linux-tdep.c, ppcnbsd-tdep.c, sparc-linux-tdep.c,
6212         sparc64-linux-tdep.c: Update for unwinder changes.
6213
6214 2008-04-30  Daniel Jacobowitz  <dan@codesourcery.com>
6215
6216         * mipsnbsd-tdep.c, mips64obsd-tdep.c, mips-linux-tdep.c: Update
6217         for unwinder changes.
6218         * mips-tdep.c: Likewise.
6219         (mips_stub_frame_cache): Unwind the ABI stack pointer, not the
6220         raw one.
6221
6222 2008-04-30  Daniel Jacobowitz  <dan@codesourcery.com>
6223
6224         * arm-linux-tdep.c, arm-tdep.c, armobsd-tdep.c: Update for
6225         unwinder changes.
6226
6227 2008-04-30  Daniel Jacobowitz  <dan@codesourcery.com>
6228
6229         Update i386 and amd64 ports for unwinder changes.
6230
6231         * amd64-tdep.c (amd64_frame_cache): Expect this_frame.
6232         (amd64_frame_this_id, amd64_frame_prev_register): Update signature.
6233         (amd64_frame_unwind): Use default_frame_sniffer.
6234         (amd64_frame_sniffer): Delete.
6235         (amd64_sigtramp_frame_cache): Expect this_frame.
6236         (amd64_sigtramp_frame_this_id, amd64_sigtramp_frame_prev_register)
6237         (amd64_sigtramp_frame_sniffer): Update signature.
6238         (amd64_sigtramp_frame_unwind): Add amd64_sigtramp_frame_sniffer.
6239         (amd64_frame_base_address): Expect this_frame.
6240         (amd64_dummy_id): Renamed from amd64_unwind_dummy_id.  Expect
6241         this_frame.
6242         (amd64_init_abi): Use set_gdbarch_dummy_id and
6243         frame_unwind_append_unwinder.
6244         * i386-tdep.c (i386_frame_cache): Expect this_frame.
6245         (i386_frame_this_id, i386_frame_prev_register): Update signature.
6246         (i386_frame_unwind): Use default_frame_sniffer.
6247         (i386_frame_sniffer): Delete.
6248         (i386_sigtramp_frame_cache): Expect this_frame.
6249         (i386_sigtramp_frame_this_id, i386_sigtramp_frame_prev_register)
6250         (i386_sigtramp_frame_sniffer): Update signature.
6251         (i386_sigtramp_frame_unwind): Use i386_sigtramp_frame_sniffer.
6252         (i386_frame_base_address): Update signature.
6253         (i386_dummy_id): Rename from i386_unwind_dummy_id.  Expect this_frame.
6254         (i386_push_dummy_call): Update comment.
6255         (i386_sigtramp_p, i386_svr4_sigtramp_p, i386_svr4_sigcontext_addr):
6256         Expect this_frame.
6257         (i386_gdbarch_init): Use set_gdbarch_dummy_id, dwarf2_append_unwinders,
6258         and frame_unwind_append_unwinder.
6259         * amd64-linux-tdep.c, amd64-sol2-tdep.c, amd64fbsd-tdep.c,
6260         amd64nbsd-tdep.c, amd64obsd-tdep.c, i386-linux-tdep.c,
6261         i386-nto-tdep.c, i386bsd-tdep.c, i386-sol2-tdep.c, i386obsd-tdep.c,
6262         i386nbsd-tdep.c: Update for unwinder changes.
6263
6264 2008-04-30  Daniel Jacobowitz  <dan@codesourcery.com>
6265
6266         * trad-frame.c (struct trad_frame_cache): Rename next_frame to this_frame.
6267         (trad_frame_cache_zalloc, trad_frame_alloc_saved_regs): Expect
6268         this_frame.
6269         (trad_frame_get_prev_register, trad_frame_get_register): Update signature.
6270         * trad-frame.h (trad_frame_cache_zalloc, trad_frame_get_register)
6271         (trad_frame_alloc_saved_regs, trad_frame_get_prev_register): Update
6272         signature.
6273         * tramp-frame.c (tramp_frame_cache, tramp_frame_start): Expect
6274         this_frame.
6275         (tramp_frame_this_id, tramp_frame_prev_register, tramp_frame_sniffer):
6276         Update signature.
6277         * tramp-frame.h (struct tramp_frame): Update signature of init.
6278         * Makefile.in (trad-frame.o): Update.
6279
6280 2008-04-30  Daniel Jacobowitz  <dan@codesourcery.com>
6281
6282         * dwarf2-frame.c (read_reg): Expect this_frame in the baton.
6283         (execute_stack_op): Put this_frame in the baton.
6284         (execute_cfa_program): Take this_frame.
6285         (struct dwarf2_frame_ops): Update comment for signal_frame_p.
6286         (dwarf2_frame_default_init_reg, dwarf2_frame_init_reg)
6287         (dwarf2_frame_signal_frame_p, dwarf2_frame_cache)
6288         (dwarf2_frame_this_id): Adjust to work on this_frame.
6289         (dwarf2_signal_frame_this_id): Delete.
6290         (dwarf2_frame_prev_register): Update signature.  Use new frame
6291         unwind methods.
6292         (dwarf2_frame_sniffer): Update signature.  Expect this_frame.
6293         (dwarf2_frame_unwind, dwarf2_signal_frame_unwind): Add
6294         dwarf2_frame_sniffer.
6295         (dwarf2_append_unwinders): New.
6296         (dwarf2_frame_base_address, dwarf2_frame_base_sniffer): Expect
6297         this_frame.
6298         * sparc-tdep.c (sparc32_dwarf2_struct_return_p)
6299         (sparc32_dwarf2_frame_init_reg): Expect this_frame.
6300         * cris-tdep.c (cris_dwarf2_frame_init_reg): Likewise.
6301         * rs6000-tdep.c (ppc_dwarf2_frame_init_reg): Likewise.
6302         * s390-tdep.c (s390_dwarf2_frame_init_reg): Likewise.
6303         * sh-tdep.c (sh_dwarf2_frame_init_reg): Likewise.
6304         * sparc64-tdep.c (sparc64_dwarf2_frame_init_reg): Likewise.
6305         * dwarf2-frame.h (dwarf2_frame_sniffer): Delete declaration.
6306         (dwarf2_append_unwinders): Declare.
6307         (dwarf2_frame_base_sniffer): Update declaration.
6308         * i386-linux-tdep.c (i386_linux_dwarf_signal_frame_p): Expect
6309         this_frame.
6310
6311 2008-04-30  Daniel Jacobowitz  <dan@codesourcery.com>
6312
6313         Convert frame unwinders to use the current frame and
6314         "struct value".
6315
6316         * frame.c (frame_debug): Make global.
6317         (get_frame_id): Pass this frame to unwinder routines.
6318         (frame_pc_unwind): Remove unused unwind->prev_pc support.
6319         (do_frame_register_read): Do not discard the return value of
6320         frame_register_read.
6321         (frame_register_unwind): Remove debug messages.  Use
6322         frame_unwind_register_value.
6323         (frame_unwind_register_value, get_frame_register_value): New
6324         functions.
6325         (create_new_frame, get_frame_base_address, get_frame_locals_address)
6326         (get_frame_args_address, get_frame_type): Pass this frame to
6327         unwinder routines.
6328         (frame_cleanup_after_sniffer, frame_prepare_for_sniffer): New
6329         functions.
6330         * frame.h: Update comments.
6331         (frame_debug, frame_unwind_register_value, get_frame_register_value)
6332         (frame_prepare_for_sniffer): Declare.
6333         * frame-unwind.h: Update comments and parameter names.
6334         (default_frame_sniffer): Declare.
6335         (frame_prev_register_ftype): Return a struct value *.
6336         (struct frame_unwind): Remove prev_pc member.
6337         (frame_unwind_sniffer_ftype, frame_unwind_append_sniffer): Delete.
6338         (frame_unwind_append_unwinder, frame_unwind_got_optimized)
6339         (frame_unwind_got_register, frame_unwind_got_memory)
6340         (frame_unwind_got_constant, frame_unwind_got_address): Declare.
6341         * frame-base.h: Update comments and parameter names.
6342         * valops.c (value_fetch_lazy): Use get_frame_register_value.  Iterate
6343         if necessary.  Add debugging output.
6344         * sentinel-frame.c (sentinel_frame_prev_register)
6345         (sentinel_frame_this_id): Update for new signature.
6346         (sentinel_frame_prev_pc): Delete.
6347         (sentinel_frame_unwinder): Remove prev_pc.
6348         * ia64-tdep.c (ia64_libunwind_frame_unwind): Do not initialize
6349         prev_pc.
6350         * libunwind-frame.c (libunwind_frame_unwind): Likewise.
6351         * frame-unwind.c (struct frame_unwind_table_entry): Remove sniffer.
6352         (frame_unwind_append_sniffer): Delete.
6353         (frame_unwind_append_unwinder): New function.
6354         (frame_unwind_find_by_frame): Take this frame.  Only use sniffers
6355         from unwinders.  Use frame_prepare_for_sniffer.
6356         (default_frame_sniffer, frame_unwind_got_optimized)
6357         (frame_unwind_got_register, frame_unwind_got_memory)
6358         (frame_unwind_got_constant, frame_unwind_got_address): New functions.
6359         * dummy-frame.c (dummy_frame_sniffer): Use gdbarch_dummy_id.
6360         (dummy_frame_prev_register, dummy_frame_this_id): Update for new
6361         signature.
6362         * gdbarch.sh: Replace unwind_dummy_id with dummy_id.
6363         * gdbarch.c, gdbarch.c: Regenerated.
6364         * frame-base.c (default_frame_base_address)
6365         (default_frame_locals_address, default_frame_args_address): Update
6366         for new signature.
6367         (frame_base_find_by_frame): Pass this frame to unwinder routines.
6368         * infcall.c (call_function_by_hand): Update comments.
6369         * Makefile.in (frame-unwind.o): Update dependencies.
6370
6371 2008-04-30  Daniel Jacobowitz  <dan@codesourcery.com>
6372
6373         * ada-lang.c (ada_value_primitive_packed_val): Only check
6374         value_lazy for memory lvals.
6375         * findvar.c (value_of_register_lazy): New function.
6376         (locate_var_value): Only check value_lazy for memory lvals.
6377         * valarith.c (value_subscripted_rvalue): Likewise.
6378         * valops.c (value_fetch_lazy): Handle both memory and register
6379         lvals.
6380         (search_struct_field, value_slice): Only check value_lazy for memory
6381         lvals.
6382         * value.c (struct value): Update comment for lazy.
6383         (value_primitive_field): Only check value_lazy for memory lvals.
6384         * value.h (value_lazy): Update comment.
6385         (value_of_register_lazy): Declare.
6386
6387 2008-04-30  Daniel Jacobowitz  <dan@codesourcery.com>
6388
6389         * corefile.c (reopen_exec_file): Close any open files.
6390
6391 2008-04-29  Joel Brobecker  <brobecker@adacore.com>
6392
6393         * ia64-tdep.c (ia64_memory_remove_breakpoint): Set
6394         show_memory_breakpoints to 1 while reading the instruction bundle.
6395
6396 2008-04-29  Joel Brobecker  <brobecker@adacore.com>
6397
6398         * gdbarch.sh: Document the return_value method. Explain that
6399         the FUNCTYPE parameter might be NULL.
6400         * gdbarch.h: Regenerated.
6401         * sparc-tdep.c (sparc32_push_dummy_code): Do not pass the function
6402         type when calling using_struct_return, as this is unnecessary
6403         on this target.
6404
6405 2008-04-28  Joel Brobecker  <brobecker@adacore.com>
6406
6407         * terminal.h (create_tty_session): Fix return type.
6408
6409 2008-04-26  Vladimir Prus  <vladimir@codesourcery.com>
6410
6411         * mi/mi-interp.c (mi_new_thread): Quote the thread id.
6412
6413 2008-04-26  Joel Brobecker  <brobecker@adacore.com>
6414
6415         * breakpoint.c (condition_command, commands_from_control_command)
6416         (break_command_really): Minor reformatting.
6417
6418 2008-04-25  Pedro Alves  <pedro@codesourcery.com>
6419
6420         * dwarf2read.c (dwarf2_const_value): Handle DW_FORM_strp.
6421
6422 2008-04-25  Pedro Alves  <pedro@codesourcery.com>
6423
6424         * amd64-tdep.c (amd64_get_longjmp_target): New.
6425         (amd64_init_abi): Register amd64_get_longjmp_target as
6426         gdbarch_get_longjmp_target callback.
6427         * i386-tdep.c (i386_get_longjmp_target): Remove 64-bit handling.
6428
6429 2008-04-25  Pedro Alves  <pedro@codesourcery.com>
6430
6431         * breakpoint.h (enum bpstat_what_main_action): Delete
6432         BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE.
6433
6434         * breakpoint.c (clrs): Delete.
6435         (bpstat_what): Update table.
6436
6437         * infrun.c (handle_inferior_event): Remove
6438         BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE handling.
6439
6440 2008-04-24  Vladimir Prus  <vladimir@codesourcery.com>
6441
6442         * mi/mi-cmds.h (mi_cmd_args_ftype): Remove.
6443         Adjust all prototypes using mi_cmd_args_ftype to use
6444         mi_cmd_argv_ftype.
6445         (struct mi_cmd): Remove the args_func field.
6446         * mi/mi-cmds.c: Don't provide value for the args_func field.
6447         * mi/mi-main.c (mi_execute_async_cli_command)
6448         (mi_cmd_exec_run, mi_cmd_exec_next, mi_cmd_exec_next_instruction)
6449         (mi_cmd_exec_step, mi_cmd_exec_step_instruction)
6450         (mi_cmd_exec_finish, mi_cmd_exec_until, mi_cmd_exec_return)
6451         (mi_cmd_exec_continue, mi_cmd_exec_interrupt)
6452         (mi_cmd_target_download): Adjust.
6453         (mi_cmd_target_select): Adjust. Pass 0 for from_tty parameter.
6454         (mi_cmd_execute): Do not check for args_func.
6455         (mi_execute_async_cli_command): Adjust.
6456         * mi/mi-parse.c: Don't check for args_func.
6457
6458 2008-04-24  Vladimir Prus  <vladimir@codesourcery.com>
6459
6460         * breakpoint.c (bpstat_check_location)
6461         (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions):
6462         New, extracted from bpstat_stop_status.
6463         (bpstat_stop_status): Use the above.
6464
6465 2008-04-24  Vladimir Prus  <vladimir@codesourcery.com>
6466
6467         * mi/mi-main.c (last_async_command): Rename to current_token.
6468         (previous_async_command): Remove.
6469         (mi_cmd_gdb_exit): Adjust.
6470         (mi_cmd_exec_interrupt): Don't dance with previous_async_command.
6471         (mi_cmd_target_select): Adjust.
6472         (mi_cmd_execute): Don't set previous_async_command.  Free token
6473         here even in async mode.
6474         (mi_execute_async_cli_command): Adjust.
6475         (mi_exec_async_cli_cmd_continuation): Adjust.  Do not free the
6476         token.
6477         (mi_load_progress): Adjust.
6478
6479 2008-04-24  Vladimir Prus  <vladimir@codesourcery.com>
6480
6481         * infcmd.c (step_1_continuation): Always disable longjmp
6482         breakpoint if we're not going to do another step.
6483
6484 2008-04-24  Vladimir Prus  <vladimir@codesourcery.com>
6485
6486         exec_cleanup murder.
6487         * breakpoint.c (until_break_command_continuation): Add
6488         the 'error' parameter.  Directly delete the breakoint as
6489         opposed to running cleanups.
6490         (until_break_command): Install continuation only
6491         after starting the target.  Don't use exec cleanups,
6492         use ordinary cleanups.  Discard cleanups is successfully
6493         started the target in async mode.
6494         (make_cleanup_delete_breakpoint): Remove.
6495         * breakpoint.h (make_cleanup_delete_breakpoint): Remove
6496         declaration.
6497         * defs.h (do_exec_cleanups, make_exec_cleanup): Remove
6498         declarations.
6499         (struct continations): Add the 'error' parameter to the
6500         continuation_hook field.
6501         (add_continuation, do_all_continuations)
6502         (add_intermediate_continuation)
6503         (do_all_intermediate_continuations): Add the 'error' parameter.
6504         * exceptions.c (throw_exception): Don't call do_exec_cleanups.
6505         * inf-loop.c (inferior_event_handler): Instead of calling
6506         discard_all_continuations, use do_all_continuations with 1 as
6507         'error' parameter.  Pass 0 as 'error' parameter in existing uses
6508         of discard_all_continuations.
6509         * infcmd.c (step_1): Do not use exec cleanup.  For async case, discard
6510         cleanups.
6511         (step_once): Install continuation only after resuming the target.
6512         (step_1_continuation): Disable longjmp breakpoint on error.
6513         (finish_command_continuation): Add the error parameter.  Delete
6514         the finish breakpoint directly, do not use cleanups.
6515         (finish_command): Do not use exec_cleanups. Always setup
6516         continuation.  For sync case, immediately run them.
6517         (attach_command_continuation): Add the error parameter.
6518         * infrun.c (fetch_inferior_event): Do not use exec cleanups to
6519         remove step_resume_breakpoint -- adjust delete it directly.
6520         * interps.c (interp_set): Adjust call to do_all_continations.
6521         * mi/mi-interp.c (mi_interpreter_exec_continuation): Do not
6522         do exec cleanups.
6523         * mi/mi-main.c (mi_cmd_target_select): Do not do exec
6524         cleanups.
6525         (mi_cmd_execute): Do not use exec_cleanup.
6526         (mi_execute_async_cli_command): Simplify the string concatenation
6527         logic.  Do no use exec cleanup.
6528         (mi_exec_async_cli_cmd_continuation): New parameter error.
6529         Free last_async_command.
6530         * top.c (command_line_handler_continuation): New parameter error.
6531         * utils.c (exec_cleanup_chain, make_exec_cleanup)
6532         (do_exec_cleanups): Remove.
6533         (add_continuation, do_all_continations)
6534         (add_intermediate_continuation)
6535         (do_all_intermediate_continuations): New parameter error.
6536
6537 2008-04-24  Vladimir Prus  <vladimir@codesourcery.com>
6538
6539         * breakpoint.h (bp_location_p): New typedef.
6540         Register a vector of bp_location_p.
6541         * breakpoint.c (always_inserted_mode)
6542         (show_always_inserted_mode): New.
6543         (unlink_locations_from_global_list): Remove.
6544         (update_global_location_list)
6545         (update_global_location_list_nothrow): New.
6546         (update_watchpoint): Don't free locations.
6547         (should_insert_location): New.
6548         (insert_bp_location): Use should_insert_location.
6549         (insert_breakpoint_locations): Copied from
6550         insert_breakpoints.
6551         (insert_breakpoint): Use insert_breakpoint_locations.
6552         (bpstat_stop_status): Call update_global_location_list
6553         when disabling breakpoint.
6554         (allocate_bp_location): Don't add to bp_location_chain.
6555         (set_raw_breakpoint)
6556         (create_longjmp_breakpoint, enable_longjmp_breakpoint)
6557         (disable_longjmp_breakpoint, create_overlay_event_breakpoint)
6558         (enable_overlay_breakpoints, disable_overlay_breakpoints)
6559         (set_longjmp_resume_breakpoint)
6560         (enable_watchpoints_after_interactive_call_stop)
6561         (disable_watchpoints_before_interactive_call_start)
6562         (create_internal_breakpoint)
6563         (create_fork_vfork_event_catchpoint)
6564         (create_exec_event_catchpoint, set_momentary_breakpoint)
6565         (create_breakpoints, break_command_1, watch_command_1)
6566         (create_exception_catchpoint)
6567         (handle_gnu_v3_exceptions)
6568         (disable_breakpoint, breakpoint_re_set_one)
6569         (create_thread_event_breakpoint, create_solib_event_breakpoint)
6570         (create_ada_exception_breakpoint): : Don't call check_duplicates.
6571         Call update_global_location_list.
6572         (delete_breakpoint): Don't remove locations and don't
6573         try to reinsert them. Call update_global_location_list.
6574         (update_breakpoint_locations): Likewise.
6575         (restore_always_inserted_mode): New.
6576         (update_breakpoints_after_exec): Temporary disable
6577         always inserted mode.
6578         * Makefile.in: Update dependencies.
6579
6580         * infrun.c (proceed): Remove breakpoints while stepping
6581         over breakpoint.
6582         (handle_inferior_event): Don't remove or insert
6583         breakpoints.
6584         * linux-fork.c (checkpoint_command): Remove breakpoints
6585         before fork and insert after.
6586         (linux_fork_context): Remove breakpoints before switch
6587         and insert after.
6588         * target.c (target_disconnect, target_detach): Remove
6589         breakpoints from target.
6590
6591
6592 2008-04-24  Vladimir Prus  <vladimir@codesourcery.com>
6593
6594         * breakpoint.c (print_one_breakpoint_location): In MI
6595         mode, report the location string the breakpoint was
6596         originally created with.
6597
6598 2008-04-23  Maxim Grigoriev  <maxim2405@gmail.com>
6599
6600         * Makefile.in (xtensa-tdep.o): Update dependencies.
6601         * configure.tgt (xtensa*): Update dependencies.
6602         * xtensa-tdep.c (arreg_number): Renamed from areg_number.
6603         Local variable areg renamed to arreg.
6604         (areg_number): New function.
6605         (xtensa_pseudo_register_read, xtensa_pseudo_register_write)
6606         (xtensa_extract_return_value, xtensa_store_return_value): areg_number
6607         replaced by arreg_number.
6608         (xtensa_windowed_frame_cache, struct xtensa_frame_cache): New comments.
6609         (xtensa_alloc_frame_cache): Initialize cache->wd.ws.
6610         (xtensa_scan_prologue): New function.
6611         (xtensa_frame_cache): New local fp_regnum. Handle separately the case,
6612         when ENTRY instraction hasn't been executed yet. Get the frame pointer
6613         value based on prologue analysis. Fix the bugs preventing WS and
6614         AR4-AR7/A11 registers from getting right values for intermediate frames,
6615         whose registers have been already spilled.
6616         (xtensa_frame_prev_register): Fix WS register value. Use are_number
6617         and arreg_number appropriately.
6618         (xtensa_gdbarch_init): Set solib_svr4_fetch_link_map_offsets to
6619         svr4_ilp32_fetch_link_map_offsets.
6620
6621 2008-04-23  Andrew Stubbs  <andrew.stubbs@st.com>
6622
6623         * printcmd.c: Define USE_PRINTF_I64 and PRINTF_HAS_LONG_LONG on MinGW.
6624         (printf_command): Convert %lld to %I64d when USE_PRINTF_I64 set.
6625
6626 2008-04-23  Paolo Bonzini  <bonzini@gnu.org>
6627
6628         * acinclude.m4: Add override.m4.
6629         * configure: Regenerate.
6630
6631 2008-04-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
6632
6633         * ada-lang.c (get_selections): Variable PROMPT made non-const and
6634         initialized with a trailing space now.  Use PROMPT_ARG of
6635         COMMAND_LINE_INPUT instead of printing it ourselves.
6636
6637 2008-04-22  Joel Brobecker  <brobecker@adacore.com>
6638
6639         * NEWS: Document support for 64-bit core file.
6640
6641 2008-04-22  Corinna Vinschen  <vinschen@redhat.com>
6642
6643         * NEWS: Add information on calling convention and new SH CLI options.
6644
6645         * sh-tdep.c (sh_cc_gcc): New static string.
6646         (sh_cc_renesas): Ditto.
6647         (sh_cc_enum): New static string array.
6648         (sh_active_calling_convention): New static string pointer denoting
6649         active user chosen ABI.
6650         (sh_is_renesas_calling_convention): New function to return function
6651         specific ABI, or user choice if necessary.
6652         (sh_use_struct_convention): Rename first argument and turn around its
6653         meaning.  Check for renesas ABI and return accordingly.
6654         (sh_use_struct_convention_nofpu): New function.
6655         (sh_next_flt_argreg): Get function type as third parameter.  Check
6656         for renesas ABI and choose floating registers accordingly.
6657         (sh_push_dummy_call_fpu): Check for ABI and choose argument slot and
6658         struct return slot accordingly.
6659         (sh_push_dummy_call_nofpu): Ditto.
6660         (sh_return_value_nofpu): Call sh_use_struct_convention_nofpu from here.
6661         Evaluate ABI and give to sh_use_struct_convention_nofpu.
6662         (sh_return_value_fpu):  Evaluate ABI and give to
6663         sh_use_struct_convention.
6664         (show_sh_command): New function.
6665         (set_sh_command): Ditto.
6666         (_initialize_sh_tdep): Initialize `set/show sh calling-convention
6667         CLI command.
6668
6669         * gdbarch.sh (return_value): Add func_type argument.
6670         * gdbarch.c: Regenerate.
6671         * gdbarch.h: Ditto.
6672         * eval.c (evaluate_subexp_standard): Rename local variable value_type to
6673         val_type so as not to collide with value_type function.  Call
6674         using_struct_return with additional function type argument.
6675         * infcall.c (call_function_by_hand): Call using_struct_return and
6676         gdbarch_return_value with additional function type argument.
6677         * infcmd.c (print_return_value): Take addition func_type argument.
6678         Call gdbarch_return_value with additional function type argument.
6679         (finish_command_continuation): Call print_return_value with additional
6680         function type argument.
6681         (finish_command): Ditto.
6682         * sparc-tdep.c (sparc32_push_dummy_code): Call using_struct_return with
6683         additional function type argument.
6684         * stack.c (return_command): Call using_struct_return and
6685         gdbarch_return_value with additional function type argument.
6686         * value.c (using_struct_return): Take additional function type argument.
6687         * value.h (using_struct_return): Accommodate declaration.
6688         * alpha-tdep.c (alpha_return_value): Add func_type argument.
6689         * amd64-tdep.c (amd64_return_value): Ditto.
6690         * arm-tdep.c (arm_return_value): Ditto.
6691         * avr-tdep.c (avr_return_value): Ditto.
6692         * cris-tdep.c (cris_return_value): Ditto.
6693         * frv-tdep.c (frv_return_value): Ditto.
6694         * h8300-tdep.c (h8300_return_value): Ditto.
6695         (h8300h_return_value): Ditto.
6696         * hppa-tdep.c (hppa32_return_value): Ditto.
6697         (hppa64_return_value): Ditto.
6698         * i386-tdep.c (i386_return_value): Ditto.
6699         * ia64-tdep.c (ia64_return_value): Ditto.
6700         * iq2000-tdep.c (iq2000_return_value): Ditto.
6701         * m32c-tdep.c (m32c_return_value): Ditto.
6702         * m32r-tdep.c (m32r_return_value): Ditto.
6703         * m68hc11-tdep.c (m68hc11_return_value): Ditto.
6704         * m68k-tdep.c (m68k_return_value): Ditto.
6705         (m68k_svr4_return_value): Ditto.
6706         * m88k-tdep.c  (m88k_return_value): Ditto.
6707         * mep-tdep.c (mep_return_value): Ditto.
6708         * mips-tdep.c (mips_eabi_return_value): Ditto.
6709         (mips_n32n64_return_value): Ditto.
6710         (mips_o32_return_value): Ditto.
6711         (mips_o64_return_value): Ditto.
6712         * mn10300-tdep.c (mn10300_return_value): Ditto.
6713         * mt-tdep.c (mt_return_value): Ditto.
6714         * ppc-linux-tdep.c (ppc_linux_return_value): Ditto.
6715         * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Ditto.
6716         (ppc_sysv_abi_broken_return_value): Ditto.
6717         (ppc64_sysv_abi_return_value): Ditto.
6718         * ppc-tdep.h (ppc_sysv_abi_return_value): Ditto.
6719         (ppc_sysv_abi_broken_return_value): Ditto.
6720         (ppc64_sysv_abi_return_value): Ditto.
6721         * ppcnbsd-tdep.c (ppcnbsd_return_value): Ditto.
6722         * rs6000-tdep.c (rs6000_return_value): Ditto.
6723         * s390-tdep.c (s390_return_value): Ditto.
6724         * score-tdep.c (score_return_value): Ditto.
6725         * sh-tdep.c (sh_return_value_nofpu): Ditto.
6726         (sh_return_value_fpu): Ditto.
6727         * sh64-tdep.c (sh64_return_value): Ditto.
6728         * sparc-tdep.c (sparc32_return_value): Ditto.
6729         * sparc64-tdep.c (sparc64_return_value): Ditto.
6730         * spu-tdep.c (spu_return_value): Ditto.
6731         * v850-tdep.c (v850_return_value): Ditto.
6732         * vax-tdep.c (vax_return_value): Ditto.
6733         * xstormy16-tdep.c (xstormy16_return_value): Ditto.
6734         * xtensa-tdep.c (xtensa_return_value): Ditto.
6735
6736         * gdbtypes.h (struct type): Add calling_convention member.
6737         * dwarf2read.c (read_subroutine_type): Add calling convention read
6738         from DW_AT_calling_convention attribute to function type.
6739
6740 2008-04-22  Markus Deuling  <deuling@de.ibm.com>
6741
6742         * eval.c (evaluate_subexp_standard): Use value_subscripted_rvalue for
6743         multi_f77_subscript to support values from registers.
6744         * valarith.c (value_subscripted_rvalue): Remove prototype and static.
6745         * value.h (value_subscripted_rvalue): Add prototype.
6746
6747         * f-typeprint.c (f_type_print_base): Add support for TYPE_CODE_UNION.
6748         Fix output.
6749         * f-valprint.c (f_val_print): Likewise.
6750
6751 2008-04-21  Craig Silverstein  <csilvers@google.com>
6752
6753         * dwarf2read.c (zlib_decompress_section): Define abfd in the
6754         !HAVE_ZLIB_H case.
6755
6756 2008-04-21  Pedro Alves  <pedro@codesourcery.com>
6757
6758         * symfile.c (syms_from_objfile): Don't warn if lowest loadable
6759         section is not a code section.
6760
6761 2008-04-19  Craig Silverstein  <csilvers@google.com>
6762
6763         * NEWS: Add information on compressed debug sections.
6764
6765 2008-04-19  Vladimir Prus  <vladimir@codesourcery.com>
6766
6767         * mi/mi-cmd-var.c (varobj_update_one): Print new
6768         value for variable objects that changed type.
6769
6770 2008-04-19  Vladimir Prus  <vladimir@codesourcery.com>
6771
6772         * varobj.c (varobj_invalidate): Don't touch floating
6773         varobjs.
6774
6775 2008-04-19  Mark Kettenis  <kettenis@gnu.org>
6776
6777         * symtab.c: (multiple_symbols_modes, multiple_symbols_ask)
6778         (multiple_symbols_cancel): Remove extra const.
6779         * symtab.h: Likewise.
6780
6781 2008-04-19  Nick Roberts  <nickrob@snap.net.nz>
6782
6783         * interps.c (top_level_interpreter): Rename static variable...
6784         (top_level_interpreter_ptr): ...to this.
6785         (top_level_interpreter): New function.
6786
6787         * interps.h: New extern for top_level_interpreter.
6788
6789         * linespec.c: Include interps.h and mi/mi-cmds.h.
6790         (decode_line_2): When using MI, always set all breakpoints in menu.
6791
6792         * Makefile.in (linespec.o, mi-interp.o): Add dependencies.
6793
6794 2008-04-18  Craig Silverstein  <csilvers@google.com>
6795
6796         * configure.ac (AC_SEARCH_LIBS): Add check for zlib.
6797         * config.in, configure: Regenerate.
6798         * dwarf2read.c: Include zlib.h if present.
6799         Modified *_SECTION macros.
6800         (section_is_p): New.
6801         (dwarf2_locate_sections): Use section_is_p instead of strcmp
6802         (dwarf2_resize_section): New.
6803         to determine whether a given section has a given name.
6804         (zlib_decompress_section): New.
6805         (dwarf2_read_section): Read the compressed section if present
6806         in the binary.
6807         * MAINTAINERS: Added myself to section Write After Approval.
6808
6809 2008-04-18  Thiago Jung Bauermann  <bauerman@br.ibm.com>
6810
6811         * defs.h (exec_set_section_offsets): Remove prototype.
6812         * exec.c (exec_set_section_offsets): Remove function.
6813
6814 2008-04-18  Joel Brobecker  <brobecker@adacore.com>
6815
6816         * stabsread.c (cleanup_undefined_types_1): Add instance flags check
6817         in the search for the matching symbol.
6818
6819 2008-04-17  Marc Khouzam  <marc.khouzam@ericsson.com>
6820
6821         * breakpoint.c (update_watchpoint): Always reparse
6822         condition.
6823
6824 2008-04-17  Joel Brobecker  <brobecker@adacore.com>
6825
6826         * breakpoint.c (print_one_breakpoint_location): Make sure to print
6827         the breakpoint address only once.
6828
6829 2008-04-17  Dennis Roberts  <dennis.roberts@sunquestinfo.com>
6830
6831         * rs6000-tdep.c (rs6000_gdbarch_init): Use the BFD architecture,
6832         rather than a hard-coded architecture, for xcoff executables.
6833
6834 2008-04-17  Doug Evans  <dje@google.com>
6835
6836         * buildsym.c (watch_main_source_file_lossage): New fn.
6837         (end_symtab): Call it.
6838
6839         * source.c (find_and_open_source): Add some comments clarifying
6840         handling of FULLNAME argument.  Make static.  Remove pointless
6841         xstrdup/xfree.
6842
6843 2008-04-17  Pedro Alves  <pedro@codesourcery.com>
6844
6845         * inf-loop.c (inferior_event_handler): Also run the intermediate
6846         continuations in the INF_EXEC_COMPLETE case.
6847
6848 2008-04-16  Tom Tromey  <tromey@redhat.com>
6849
6850         * cli/cli-decode.h (CMD_ASYNC_OK): New define.
6851         (set_cmd_async_ok, get_cmd_async_ok): Declare.
6852         * cli/cli-decode.c (set_cmd_async_ok): New function.
6853         (get_cmd_async_ok): New function.
6854         * cli/cli-cmds.c (init_cli_cmds): Mark "pwd", "help", "info", and
6855         "show" as async-ok.
6856         * top.c (execute_command): Use get_cmd_async_ok.
6857         * infcmd.c: Include cli/cli-decode.h.
6858         (_initialize_infcmd): Mark "interrupt" as async-ok.
6859         * Makefile.in (infcmd.o): Depend on cli_decode_h.
6860
6861 2008-04-16  Daniel Jacobowitz  <dan@codesourcery.com>
6862
6863         PR gdb/2445
6864         * exec.c: Correct "arch-utils.h" include.
6865
6866 2008-04-15  Aleksandar Ristovski  <aristovski@qnx.com>
6867
6868         PR gdb/2424
6869         * infrun.c (normal_stop) Move breakpoint_auto_delete further down
6870         to allow printing to 'see' real reason of stop. This fixes PR 2424.
6871         * breakpoint.c (bpdisp_texst): New function. The function takes over
6872         the role of bpstats static array in print_one_breakpoint_location.
6873         (print_it_typical): Print "Temporary breakpoint" instead
6874         of just "Breakpoint" when breakpoint is, well, temporary. For mi-like
6875         protocols, print disp field.
6876         (print_one_breakpoint_location): Removed bpdisps static definition.
6877         Call new bpstat_text function to get value for 'disp' field.
6878         (mention): Print "Temporary breakpoint" instead of just "Breakpoint".
6879
6880 2008-04-15  Daniel Jacobowitz  <dan@codesourcery.com>
6881
6882         * gnulib/Makefile.am, gnulib/m4/gnulib-cache.m4,
6883         gnulib/aux/link-warning.h, gnulib/extra/link-warning.h: Adjust
6884         by rerunning gnulib-tool with --aux-dir=gnulib/extra.
6885         * gnulib/Makefile.in: Regenerate.
6886
6887 2008-04-14  Daniel Jacobowitz  <dan@codesourcery.com>
6888
6889         * Makefile.in (GNULIB_H): New.  Trigger all-lib.
6890         (defs_h): Use $(GNULIB_H).
6891         (all-lib): Depend on gnulib/Makefile.
6892         (gnulib/Makefile): Regenerate gnulib/Makefile and gnulib/.deps.
6893         * config.in, gnulib/Makefile.in: Regenerated.
6894
6895 2008-04-14  Daniel Jacobowitz  <dan@codesourcery.com>
6896
6897         * Makefile.in (LIBGNU, INCGNU): Define.
6898         (INTERNAL_CFLAGS_BASE): Add INCGNU.
6899         (INTERNAL_LIBS, CLIBS, CDEPS): Add LIBGNU.
6900         (CLEANDIRS): New.
6901         ($(LIBGNU), all-lib): New rules.
6902         (clean, distclean, do-maintainer-clean): Use CLEANDIRS.
6903         * configure.ac: Use gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE.
6904         Simplify AC_CONFIG_AUX_DIR.  Generate gnulib/Makefile.
6905         * gnulib: New directory, from gnulib-tool.
6906         * configure, aclocal.m4: Regenerated.
6907
6908 2008-04-14  Daniel Jacobowitz  <dan@codesourcery.com>
6909
6910         * linux-thread-db.c (have_threads_callback): Check thread->private.
6911
6912 2008-04-13  Nick Roberts  <nickrob@snap.net.nz>
6913             Vladimir Prus  <vladimir@codesourcery.com>
6914
6915         Fix @-varobjs.
6916         * varobj.c (value_of_root): Update the expression for
6917         floating varobjs.
6918         * mi/mi-cmd-var.c (varobj_update_one): If type has changed,
6919         report that.
6920
6921 2008-04-09  Marc Khouzam  <marc.khouzam@ericsson.com>
6922
6923         * mi/mi-cmd-var.c: Include "mi-getopt.h".
6924         (mi_parse_format): New.  Factored out from mi_cmd_var_set_format.
6925         (mi_cmd_var_set_format): Use new mi_parse_format.
6926         (mi_cmd_var_evaluate_expression): Support for -f option to specify
6927         format.
6928         * Makefile.in (mi-cmd-var.o): Update dependencies.
6929
6930         * varobj.h (varobj_get_formatted_value): Declare.
6931         * varobj.c (my_value_of_variable): Added format parameter.
6932         (cplus_value_of_variable): Likewise.
6933         (java_value_of_variable): Likewise.
6934         (c_value_of_variable): Likewise.  Evaluate expression based
6935         on format parameter.
6936         (struct language_specific): Add format parameter to function member
6937         *value_of_variable.
6938         (varobj_get_formatted_value): New.
6939         (varobj_get_value): Added format parameter to method call.
6940
6941 2008-04-08  Joel Brobecker  <brobecker@adacore.com>
6942
6943         * stabsread.c (cleanup_undefined_types_noname): Manually set the
6944         instance flags of the undefined type before calling replace_type.
6945
6946 2008-04-08  Vladimir Prus  <vladimir@codesourcery.com>
6947
6948         * target.h (enum strata): Remove the download_stratum.
6949
6950 2008-04-07  Doug Evans  <dje@google.com>
6951
6952         * buildsym.h (last_source_file): Add dwarf info to comment.
6953         (last_source_start_addr): Ditto.
6954
6955 2008-04-07  Pedro Alves  <pedro@codesourcery.com>
6956
6957         * alphanbsd-tdep.c: Include "target.h".
6958         * mn10300-tdep.c: Include "target.h".
6959         * Makefile.in (alphanbsd-tdep.o, mn10300-tdep.o): Update.
6960
6961 2008-04-06  Vladimir Prus  <vladimir@codesourcery.com>
6962
6963         Fix breakpoint condition that use member variables.
6964         * valops.c (check_field): Remove.
6965         (check_field_in): Rename to check_field.
6966         (value_of_this): Use la_name_of_this.
6967         * value.h (check_field): Adjust prototype.
6968
6969         * language.h (la_value_of_this): Rename to la_name_of_this.
6970         * language.c (unknown_language_defn): Specify "this" for
6971         name_of_this.
6972         (auto_language_defn): Likewise.
6973         (local_language_defn): Likewise.
6974         * ada-lang.c (ada_language_defn): Adjust comment.
6975         * c-lang.c (c_language_defn): Adjust comment.
6976         (cplus_language_defn): Specify "this" for name_of_this.
6977         (asm_language_defn): Adjust comment.
6978         (minimal_language_defn): Adjust comment.
6979         * f-lang.c (f_language_defn): Specify NULL for name_of_this.
6980         * jv-lang.c (java_language_defn): Specify "this" for name_of_this.
6981         * m2-lang.c (m2_language_defn): Specify "this" for name_of_this.
6982         * objc-lang.c (objc_language_defn): Specify "self" for
6983         name_of_this.
6984         * p-lang.c (pascal_language_defn): Specify "this" for
6985         name_of_this.
6986         * scm-lang.c (scm_language_defn): Specify NULL for name_of_this.
6987
6988         * symtab.c (lookup_symbol_aux): Lookup "this" in the
6989         proper scope, and check for field in type of "this", without
6990         trying to create a value.
6991
6992 2008-04-04  Pedro Alves  <pedro@codesourcery.com>
6993
6994         * mi/mi-cmds.h (enum mi_cmd_result): Delete MI_CMD_ERROR.
6995         (mi_error_message): Delete declaration.
6996         * mi/mi-interp.c (mi_cmd_interpreter_exec): Call error instead of
6997         returning MI_CMD_ERROR.
6998         * mi/mi-main.c (mi_error_message): Delete.
6999         (mi_cmd_exec_interrupt):
7000         (mi_cmd_thread_select, mi_cmd_thread_list_ids)
7001         (mi_cmd_thread_info): Call error instead of returning
7002         MI_CMD_ERROR.
7003         (mi_cmd_data_list_register_values): Call error instead of
7004         returning MI_CMD_ERROR.  Adapt to new get_register interface.
7005         (get_register): Change return typo to void.  Call error instead of
7006         returning MI_CMD_ERROR.
7007         (mi_cmd_data_write_register_values): Call error instead of
7008         returning MI_CMD_ERROR.
7009         (mi_cmd_list_features): Return MI_CMD_DONE.
7010         (captured_mi_execute_command): Remove MI_CMD_ERROR handling.
7011         (mi_execute_command): Always print exceptions with -error.
7012
7013 2008-04-04  Joel Brobecker  <brobecker@adacore.com>
7014
7015         * NEWS: Mention new commands set/show multiple-symbols.
7016
7017 2008-04-03  Joel Brobecker  <brobecker@adacore.com>
7018
7019         * symtab.c (multiple_symbols_ask, multiple_symbols_all)
7020         (multiple_symbols_cancel): New constants.
7021         (multiple_symbols_modes, multiple_symbols_mode): New static globals.
7022         (multiple_symbols_select_mode): New function.
7023         (_initialize_symtab): Add new set/show multiple-symbols commands.
7024         * symtab.h (multiple_symbols_ask, multiple_symbols_all)
7025         (multiple_symbols_cancel, multiple_symbols_select_mode): Declare.
7026         * ada-lang.c (user_select_syms): Add handling of new multiple-symbols
7027         setting.
7028         * linespec.c (decode_line_2): Likewise.
7029
7030 2008-04-03  Doug Evans  <dje@sebabeach.org>
7031
7032         * symtab.h (enum free_code): Delete free_contents, unused.
7033         * symmisc.c (free_symtab_block): Delete.
7034         (free_symtab, case free_code): Delete.
7035
7036 2008-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
7037
7038         * valops.c (value_cast_structs): New function. Cast related
7039         STRUCT types up/down and return cast value. The body of this
7040         function comes mostly from value_cast_pointers.
7041         (value_cast_pointers): Code for actual cast STRUCT-STRUCT moved
7042         to value_cast_structs. Now value_cast_pointers needs only create
7043         appropriate reference after using value_cast_structs for actual
7044         casting.
7045         (value_cast): Handle references.
7046
7047 2008-04-01  Marc Khouzam  <marc.khouzam@ericsson.com>
7048
7049         * MAINTAINERS: Added myself to section Write After Approval.
7050
7051 2008-03-30  Daniel Jacobowitz  <dan@codesourcery.com>
7052
7053         * ia64-tdep.c (examine_prologue): Correct array access.
7054
7055 2008-03-28  Aleksandar Ristovski  <aristovski@qnx.com>
7056
7057         * cp-support.c (first_component_command): Return if no arguments.
7058
7059 2008-03-28  Carlos O'Donell  <carlos@codesourcery.com>
7060
7061         * ser-mingw.c (ser_windows_open): Open requested name.
7062
7063 2008-03-28  Aleksandar Ristovski  <aristovski@qnx.com>
7064
7065         * MAINTAINERS: Added myself.
7066
7067 2008-03-28  Pedro Alves  <pedro@codesourcery.com>
7068
7069         * target.c (find_default_run_target): Allow a NULL `do_mesg'
7070         parameter.  If it is NULL, don't call error.
7071         (find_default_can_async_p, find_default_is_async_p): Pass NULL as
7072         `do_mesg' parameter to find_default_run_target.  If no target was
7073         found, return 0.
7074
7075 2008-03-28  Daniel Jacobowitz  <dan@codesourcery.com>
7076
7077         * mips-linux-tdep.c: Update N32/N64 signal frame comments.
7078         (N64_SIGCONTEXT_LO, N64_SIGCONTEXT_PC, N64_SIGCONTEXT_FPCSR): Update.
7079         (N64_SIGCONTEXT_FIR, N64_SIGCONTEXT_CAUSE, N64_SIGCONTEXT_BADVADDR):
7080         Delete.
7081         (mips_linux_n32n64_sigframe_init): Do not record cause or badvaddr.
7082
7083 2008-03-27  Joel Brobecker  <brobecker@adacore.com>
7084
7085         GDB 6.8 released.
7086
7087 2008-03-27  Ulrich Weigand  <uweigand@de.ibm.com>
7088
7089         * features/Makefile (%.dat): Set xmltarget to the base filename
7090         of the XML source, without subdirectory.
7091         * regformats/rs6000/powerpc-32.dat: Regenerate.
7092         * regformats/rs6000/powerpc-64.dat: Regenerate.
7093         * regformats/rs6000/powerpc-e500.dat: Regenerate.
7094
7095 2008-03-27  Markus Deuling  <deuling@de.ibm.com>
7096
7097         * xcoffread.c (scan_xcoff_symtab): Replace current_gdbarch by
7098         objfile arch.
7099
7100 2008-03-27  Nick Roberts  <nickrob@snap.net.nz>
7101
7102         * mi/mi-main.c (enum captured_mi_execute_command_actions):
7103         Spell suppress in EXECUTE_COMMAND_SUPPRESS_PROMPT correctly.
7104
7105 2008-03-26  Ulrich Weigand  <uweigand@de.ibm.com>
7106
7107         * objfiles.h (struct objfile): New GDBARCH member.
7108         (get_objfile_arch): Add prototype.
7109         * objfiles.c: Include "arch-utils.h".
7110         (allocate_objfile): Look up gdbarch associated with bfd.
7111         (get_objfile_arch): New function.
7112         * Makefile (objfiles.o): Update dependencies.
7113
7114         * dwarf2-frame.c (decode_frame_entry_1): Replace current_gdbarch
7115         by objfile arch.
7116         * dwarf2loc.c (dwarf_expr_read_reg): Replace current_gdbarch
7117         by frame arch.
7118         (locexpr_describe_location): Replace current_gdbarch by
7119         objfile arch.
7120         * dwarf2read.c (die_type): Replace current_gdbarch by objfile arch.
7121         (dwarf2_add_field): Likewise.
7122         (read_tag_pointer_type): Likewise.
7123         (read_base_type): Likewise.
7124         (new_symbol): Likewise.
7125
7126         * coffread.c (decode_type): Add OBJFILE argument.  Update callers.
7127         (decode_base_type, decode_function_type): Likewise.
7128         (coff_read_struct_type, coff_read_enum_type): Likewise.
7129         (coff_symtab_read): Replace current_gdbarch by objfile arch.
7130         (decode_base_type): Likewise.
7131         (coff_read_enum_type): Likewise.
7132         (coff_read_struct_type): Replace current_objfile by OBJFILE argument.
7133         (coff_read_enum_type): Likewise.
7134
7135         * dbxread.c (read_dbx_symtab): Replace current_gdbarch by objfile arch.
7136         (end_psymtab): Likewise.
7137         (process_one_symbol): Likewise.
7138
7139         * mdebugread.c (parse_symbol): Replace current_gdbarch by objfile arch.
7140         (parse_procedure): Likewise.
7141         (parse_partial_symbols): Likewise.
7142
7143         * somread.c (som_symtab_read): Replace current_gdbarch by objfile arch.
7144
7145         * stabsread.c (define_symbol): Replace current_gdbarch by objfile arch.
7146         Replace static pcc_promotion_type and pcc_unsigned_promotion_type by
7147         built-in types.
7148         (read_range_type): Replace current_gdbarch by objfile arch.  Replace
7149         static range_index_type by built-in type.
7150         (read_one_struct_field): Replace current_gdbarch by objfile arch.
7151         (read_enum_type): Likewise.
7152
7153         * xcoffread.c (read_xcoff_symtab): Replace current_gdbarch by
7154         objfile arch.
7155
7156 2008-03-26  Vladimir Prus  <vladimir@codesourcery.com>
7157
7158         * varobj.h (varobj_floating_p): Declare.
7159         * varobj.c (varobj_floating_p): New.
7160         * mi/mi-cmd-var.c (mi_cmd_var_update): When passed
7161         '@' as the name, update all floating varobjs.
7162
7163 2008-03-26  Vladimir Prus  <vladimir@codesourcery.com>
7164
7165         * varobj.c (struct varobj_root): Rename use_selected_frame to
7166         floating, and clarify the meaning.
7167         (varobj_create, varobj_update,  new_root_variable): Adjust.
7168         (value_of_root): Don't use type_changed as in variable,
7169         adjust comment.
7170         (c_value_of_root): Adjust.
7171
7172 2008-03-25  Pedro Alves  <pedro@codesourcery.com>
7173
7174         * linux-nat.c (linux_nat_attach): Add the pid we attached to, to
7175         gdb's thread list.
7176         (linux_nat_wait): Add main lwp to gdb's thread list.
7177         * linux-thread-db.c (find_new_threads_callback): Also attach to
7178         already listed threads which thread_db didn't know about yet.
7179
7180 2008-03-25  Pedro Alves  <pedro@codesourcery.com>
7181
7182         * linux-nat.c (drain_queued_events): Fix comment typo.
7183         (linux_nat_attach): In async mode, don't rely on storing a pending
7184         status.  Instead place the wait status on the pipe.
7185         (linux_nat_resume): Remove unreacheable shortcut code in async
7186         mode.
7187         (stop_wait_callback): In async mode, don't store pending status.
7188         Instead, cancel breakpoints or resend the signal appropriatelly.
7189         (cancel_breakpoint): New, refactored from
7190         cancel_breakpoints_callback.
7191         (cancel_breakpoints_callback): Call cancel_breakpoint.
7192         (pipe_to_local_event_queue): Remove special token processing.
7193         (linux_nat_wait): Issue an internal error if a pending status is
7194         found in async mode.
7195
7196 2008-03-24  Daniel Jacobowitz  <dan@codesourcery.com>
7197
7198         * inflow.c (gdb_has_a_terminal): Guard access to our_process_group.
7199
7200 2008-03-24  Nick Roberts  <nickrob@snap.net.nz>
7201             Vladimir Prus  <vladimir@codesourcery.com>
7202
7203         * varobj.c  (struct varobj_root): New component thread_id.
7204         (varobj_get_thread_id, check_scope): New functions.
7205         (c_value_of_root): Use check_scope.  Switch to the
7206         proper thread if necessary.
7207
7208         * varobj.h (varobj_get_thread_id): New extern.
7209
7210         * mi/mi-cmd-var.c (print_varobj): Add thread-id field.
7211
7212 2008-03-23  Daniel Jacobowitz  <dan@codesourcery.com>
7213
7214         PR gdb/544
7215         * top.c: Revert 2008-03-21 changes.
7216
7217 2008-03-23  Vladimir Prus  <vladimir@codesourcery.com>
7218
7219         * thread.c (make_cleanup_restore_current_thread): Make it
7220         globally visible.
7221         * gdbthread.h (make_cleanup_restore_current_thread): Declare.
7222         * varobj.c (varobj_update): Don't save/restore frame.
7223         (c_value_of_root): Save/restore thread and frame here,
7224         using make_cleanup_restore_current_thread.
7225         * Makefile.in: Update dependecies.
7226
7227 2008-03-23  Vladimir Prus  <vladimir@codesourcery.com>
7228
7229         * varobj.c (struct varobj_root): Clarify
7230         comment on the frame field.
7231         (varobj_create): Don't set frame if we have no
7232         block.
7233
7234 2008-03-21  Daniel Jacobowitz  <dan@codesourcery.com>
7235
7236         PR gdb/544
7237         Suggested by Jan Kratochvil:
7238         * top.c (gdb_rl_operate_and_get_next_completion): Call
7239         rl_redisplay_function.
7240         (gdb_rl_redisplay): New.
7241         (init_main): Set rl_redisplay_function.
7242
7243 2008-03-21  Thomas Mittelstaedt  <T.Mittelstaedt@cadenas.de>  (tiny change)
7244
7245         * aix-thread.c (pdc_read_regs): Fix compiler warning.
7246         (pdc_write_regs, aix_thread_resume, fetch_regs_kernel_thread)
7247         (store_regs_kernel_thread): Likewise.
7248
7249 2008-03-21  Pedro Alves  <pedro@codesourcery.com>
7250
7251         Linux native async support.
7252
7253         * target.h (struct target_ops): Delete to_async_mask_value and add
7254         to_async_mask.
7255         (target_is_async_p, target_async): Formatting.
7256         (target_async_mask_value): Delete.
7257         (target_async_mask): Delete function declaration, and add new
7258         target macro with the same name.
7259
7260         * target.c (update_current_target): Replace to_async_mask_value by
7261         to_async_mask.  Default to_async_mask to return_one.
7262         (target_async_mask): Delete.
7263         (find_default_can_async_p, find_default_is_async_p): New.
7264         (init_dummy_target): register find_default_can_async_p and
7265         find_default_is_async_p on the dummy target.
7266
7267         * linux-nat.c: Include inf-loop.h, event-loop.h and event-top.h.
7268         (debug_linux_nat_async): New global.
7269         (show_debug_linux_nat_async): New function.
7270         (linux_nat_async_enabled, linux_nat_async_mask_value)
7271         (linux_nat_event_pipe, linux_nat_num_queued_events)
7272         (linux_nat_async_events_enabled): New globals.
7273         (struct waitpid_result): New struct.
7274         (waitpid_queue): New global.
7275         (queued_waitpid, push_waitpid, drain_queued_events): New.
7276         (my_waitpid): Call queued_waitpid.
7277         (linux_child_follow_fork): Disable async events during the call.
7278         (blocked_mask): Delete.
7279         (sync_sigchld_action, async_sigchld_action): New globals.
7280         (lin_lwp_attach_lwp): In sync mode, don't reblock SIGCHLD.  In
7281         async mode, block events during the call.
7282         (linux_nat_create_inferior): New.
7283         (linux_nat_attach): In sync mode, restore the mask states.  In
7284         async mode, wake the event loop immediatelly.
7285         (detach_callback): Drain all queued events of the lwp we're
7286         detaching from.
7287         (linux_nat_detach): Block async mode, and drain events of the main
7288         process.
7289         (linux_nat_resume): If in async mode, mask async events during the
7290         call.  If short circuiting, force event loop to wake up.  If
7291         resuming, set target_executing, and register target events in the
7292         event loop.
7293         (pipe_to_local_event_queue, local_event_queue_to_pipe): New.
7294         (linux_nat_wait): In async mode, block events during the call.
7295         Only enable/disable passing SIGINT to the inferior in sync mode.
7296         Get events from local waitpid queue.  If no interesting events was
7297         found, return to events loop.  Reregister target events in the
7298         event loop on exit.  In sync mode, no need to reblock SIGCHLD.
7299         (linux_nat_kill): Disable events on entry.
7300         (linux_nat_mourn_inferior): In sync mode, don't restore the masks
7301         here.  Detach async mode from the event loop if there are no more
7302         forks available, otherwise leave it on.
7303         (sigchld_handler): Assure this is called only in sync mode.
7304         (linux_async_permitted, linux_async_permitted_1): New globals.
7305         (set_maintenance_linux_async_permitted)
7306         (show_maintenance_linux_async_permitted): New functions.
7307         (linux_nat_is_async_p, linux_nat_can_async_p)
7308         (linux_nat_async_mask): New.
7309         (linux_nat_event_pipe_pop, linux_nat_event_pipe_push): New.
7310         (get_pending_events, async_sigchld_handler): New.
7311         (linux_nat_async_events): New.
7312         (async_terminal_is_ours): New global.
7313         (linux_nat_terminal_inferior, linux_nat_terminal_ours): New.
7314         (async_client_callback, async_client_context): New.
7315         (linux_nat_async_file_handler, linux_nat_async)
7316         (linux_nat_disable_async, linux_nat_enable_async): New.
7317         (linux_nat_add_target): Register linux_nat_create_inferior,
7318         linux_nat_can_async_p, linux_nat_is_async_p, linux_nat_async,
7319         linux_nat_async_mask, linux_nat_terminal_inferior and
7320         linux_nat_terminal_ours.
7321         (_initialize_linux_nat): Remove local action variable, and update
7322         code that used it to use sync_sigchld_action.  Add new
7323         "lin-lwp-async" debug set/show command.  Put the "lin-lwp" debug
7324         set/show command in the maintenance class.  Add new "linux-async"
7325         maintenance set/show command.  Block SIGCHLD by default.  Setup
7326         async_sichld_action, and sync_sigchld_action.  Install the default
7327         async mode.
7328         (lin_thread_get_thread_signals): Use a local sigset_t for blocking
7329         the cancel signals.
7330
7331         * linux-thread-db.c (re_check_for_thread_db): New.
7332         (clear_lwpid_callback): Handle TARGET_WAITKIND_IGNORE.
7333         (thread_db_can_async_p, thread_db_is_async_p, thread_db_async)
7334         (thread_db_async_mask): New.
7335         (init_thread_db_ops): Register thread_db_can_async_p,
7336         thread_db_is_async_p, thread_db_async and thread_db_async_mask.
7337
7338         * remote.c (remote_async_mask_value): New.
7339         (remote_return_zero): New.
7340         (init_remote_ops): Register remote_return_zero as callbacks of
7341         to_can_async_p and to_is_async_p.
7342         (remote_can_async_p, remote_is_async_p, remote_async): Update to
7343         use remote_async_mask_value.
7344         (remote_async_mask): New.
7345         (init_remote_async_ops): Remove to_async_mask_value setting and
7346         register remote_async_mask as to_async_mask callback in
7347         remote_async_ops.
7348
7349         * Makefile.in (linux-nat.o): Update.
7350
7351 2008-03-21  Daniel Jacobowitz  <dan@codesourcery.com>
7352
7353         * gdbthread.h (add_thread_with_info): New.
7354         * linux-thread-db.c: Add some documentation.
7355         (GET_LWP, GET_PID, GET_THREAD, is_lwp, is_thread, BUILD_LWP): Delete.
7356         (struct private_thread_info): Remove th_valid and ti_valid.
7357         Replace ti with tid.
7358         (thread_get_info_callback): Do not add TID to the new ptid.  Do
7359         not cache th or ti.
7360         (thread_db_map_id2thr, lwp_from_thread): Delete functions.
7361         (thread_from_lwp): Assert that the LWP is set.  Do not add TID to the
7362         new PTID.
7363         (attach_thread): Handle an already-existing thread.  Use
7364         add_thread_with_info.  Cache the th and tid.
7365         (detach_thread): Verify that private was set.  Remove verbose
7366         argument and printing.  Update caller.
7367         (thread_db_detach): Do not adjust inferior_ptid.
7368         (clear_lwpid_callback, thread_db_resume, thread_db_kill): Delete.
7369         (check_event, find_new_threads_callback): Do not add TID to the new PTID.
7370         (thread_db_wait): Do not use lwp_from_thread.
7371         (thread_db_pid_to_str): Use the cached TID.
7372         (thread_db_extra_thread_info): Check that private is set.
7373         (same_ptid_callback): Delete.
7374         (thread_db_get_thread_local_address): Do not use it or check
7375         is_thread.  Check that private is set.  Assume that the thread
7376         handle is already cached.
7377         (init_thread_db_ops): Remove to_resume and to_kill.
7378         * thread.c (add_thread_with_info): New.
7379         (add_thread): Use it.
7380         * linux-nat.c (find_thread_from_lwp): Delete.
7381         (exit_lwp): Do not use it.  Check print_thread_events.  Print before
7382         deleting the thread.
7383         (GET_PID, GET_LWP, BUILD_LWP, is_lwp): Move to...
7384         * linux-nat.h (GET_PID, GET_LWP, BUILD_LWP, is_lwp): ...here.
7385         * inf-ttrace.c (inf_ttrace_wait): Use print_thread_events and
7386         printf_unfiltered for thread exits.
7387         * procfs.c (procfs_wait): Likewise.
7388
7389 2008-03-21  Chris Demetriou  <cgd@google.com>
7390
7391         * symtab.c (rbreak_command): Quote symbol name before passing
7392         it to break_command.
7393
7394 2008-03-21  Daniel Jacobowitz  <dan@codesourcery.com>
7395
7396         * eval.c (evaluate_subexp_for_address): Clarify error message.
7397         Use value_must_coerce_to_target.
7398         * infcall.c (value_arg_coerce): Call value_coerce_to_target.
7399         * valops.c (value_assign): Call value_coerce_to_target when
7400         assigning to anything but internalvars.  Leave GDB-side arrays
7401         as arrays when assigning to internalvars.
7402         (value_must_coerce_to_target, value_coerce_to_target): New.
7403         (value_coerce_array, value_addr): Call value_coerce_to_target.
7404         (value_array): Create the array in GDB's memory instead of
7405         the inferior's.
7406         * value.h (value_must_coerce_to_target, value_coerce_to_target):
7407         Declare.
7408
7409 2008-03-21  Daniel Jacobowitz  <dan@codesourcery.com>
7410
7411         * top.c (quit_confirm): Warn that we will kill the program.
7412
7413 2008-03-19  Pedro Alves  <pedro@codesourcery.com>
7414
7415         * inflow.c (terminal_ours_1): Guard access to
7416         inferior_process_group with #ifdef PROCESS_GROUP_TYPE.
7417
7418 2008-03-18  Ulrich Weigand  <uweigand@de.ibm.com>
7419             Jim Blandy  <jimb@codesourcery.com>
7420             Daniel Jacobowitz  <drow@false.org>
7421
7422         * dwarf2expr.h (struct dwarf_expr_context): Add ADDR_SIZE member.
7423         (dwarf2_read_address): Update prototype.
7424
7425         * dwarf2expr.c (unsigned_address_type): Add ADDR_SIZE parameter.
7426         (signed_address_type): Likewise.
7427         (dwarf2_read_address): Replace BYTES_READ parameter with ADDR_SIZE.
7428         (execute_stack_op): Update calls to unsigned_address_type,
7429         signed_address_type and dwarf2_read_address.  Fix implementation
7430         of DW_OP_deref_size.
7431
7432         * dwarf2loc.h (dwarf2_per_cu_objfile): Add prototype.
7433         (dwarf2_per_cu_addr_size): Likewise.
7434         (struct dwarf2_locexpr_baton): Replace OBJFILE with PER_CU.
7435         (struct dwarf2_loclist_baton): Likewise.
7436
7437         * dwarf2loc.c (find_location_expression): Update calls to
7438         dwarf2_read_address.  Use dwarf2_per_cu_objfile and
7439         dwarf2_per_cu_addr_size to retrieve PER_CU parameters.
7440         (locexpr_describe_location): Likewise.
7441         (dwarf2_evaluate_loc_desc): Replace OBJFILE with PER_CU parameter.
7442         Set ctx->addr_size to dwarf2_per_cu_addr_size (per_cu).
7443         (dwarf2_loc_desc_needs_frame): Add PER_CU parameter.  Set ctx->addr_size
7444         to dwarf2_per_cu_addr_size (per_cu).
7445         (locexpr_read_variable): Update dwarf2_evaluate_loc_desc call.
7446         (loclist_read_variable): Likewise.
7447         (locexpr_read_needs_frame): Update dwarf2_loc_desc_needs_frame call.
7448
7449         * dwarf2read.c (dwarf2_symbol_mark_computed): Set baton->per_cu
7450         instead of baton->objfile.
7451         (dwarf2_per_cu_obfile): New function.
7452         (dwarf2_per_cu_addr_size): Likewise.
7453
7454         * dwarf2-frame.c (struct comp_unit): Move higher.
7455         (struct dwarf2_cie): Add UNIT and ADDR_SIZE members.
7456         (execute_stack_op): Add ADDR_SIZE parameter; set ctx->addr_size.
7457         (execute_cfa_program): Add FDE parameter.  Replace EH_FRAME_P
7458         parameter by using fde->eh_frame_p.  Use read_encoded_value
7459         to implement DW_CFA_set_loc.
7460         (struct dwarf2_frame_cache): Add ADDR_SIZE member.
7461         (dwarf2_frame_cache): Set cache->addr_size.  Update calls to
7462         execute_stack_op and execute_cfa_program.
7463         (dwarf2_frame_prev_register): Update calls to execute_stack_op.
7464         (size_of_encoded_value): Remove.
7465         (read_encoded_value): Add PTR_LEN and FUNC_BASE parameters.
7466         Remove call to size_of_encoded_value.  Implement DW_EH_PE_funcrel.
7467         (add_cie): Set cie->unit backlink.
7468         (decode_frame_entry_1): Set cie->addr_size.  Update calls to
7469         read_encoded_value.
7470         (dwarf2_build_frame_info): Allocate UNIT on objfile obstack.
7471
7472 2008-03-17  Markus Deuling  <deuling@de.ibm.com>
7473
7474         * i386-tdep.c (i386_print_insn): Remove unnecessary call to
7475         gdbarch_bfd_arch_info.
7476
7477 2008-03-17  Joel Brobecker  <brobecker@adacore.com>
7478
7479         * aix-thread.c (pdc_read_regs): Minor reformatting.
7480
7481 2008-03-17  Vladimir Prus  <vladimir@codesourcery.com>
7482
7483         * thread.c (print_thread_info): Don't insist
7484         on having current thread if there are no
7485         threads at all.
7486
7487 2008-03-17  Pedro Alves  <pedro@codesourcery.com>
7488
7489         * infcmd.c (attach_command_post_wait)
7490         (attach_command_continuation): New.
7491         (attach_command): Support background async execution, and async
7492         execution in synchronous mode.
7493
7494 2008-03-17  Daniel Jacobowitz  <dan@codesourcery.com>
7495
7496         * stack.c (print_stack_frame, print_frame): Use RETURN_MASK_ERROR.
7497         * symmisc.c (dump_symtab_1): Likewise.
7498         * wrapper.c (gdb_value_struct_elt): Likewise.
7499
7500 2008-03-17  Pedro Alves  <pedro@codesourcery.com>
7501
7502         * linux-nat.c (linux_nat_filter_event): Fix comment typo.
7503
7504 2008-03-17  Pedro Alves  <pedro@codesourcery.com>
7505
7506         * linux-nat.c (linux_nat_filter_event): New, refactored from
7507         linux_nat_wait.
7508         (linux_nat_wait): Call linux_nat_filter_event.
7509
7510 2008-03-17  Ulrich Weigand  <uweigand@de.ibm.com>
7511
7512         * top.c (execute_command): Fix uninitialized variable error.
7513
7514 2008-03-16  Nick Hudson  <nick.hudson@dsl.pipex.com>
7515
7516         * Makefile.in (amd64nbsd-nat.o): New dependency.
7517         * amd64nbsd-nat.c: Include "nbsd-nat.h".
7518         (_initialize_amd64nbsd_nat): Update target vector to use
7519         nbsd_pid_to_exec_file.
7520         * config/i386/nbsd64.mh (NATDEPFILES): Add nbsd-nat.o.
7521
7522 2008-03-15  Vladimir Prus  <vladimir@codesourcery.com>
7523
7524         Remove ignoring leading exec events code.
7525         * fork-child.c (startup_inferior): Do not set
7526         inferior_ignoring_leading_exec_events.
7527         * inf-child.c (inf_child_reported_exec_events_per_exec_call): Remove.
7528         (inf_child_target): Do not set to_reported_exec_events_per_exec_call.
7529         * infrun.c (inferior_ignoring_leading_exec_events): Remove.
7530         (handle_inferior_event): Remove code for ignoring leading exec
7531         events.
7532         * target.c (update_current_target): Do not inherit, or default,
7533         to_reported_exec_events_per_exec_call.
7534         (debug_to_reported_exec_events_per_exec_call): Remove.
7535         (setup_target_debug): Do not set to_reported_exec_events_per_exec_call.
7536         * target.h (target_reported_exec_events_per_exec_call): Remove.
7537         (struct target): Remove the to_reported_exec_events_per_exec_call
7538         field.
7539
7540 2008-03-15  Vladimir Prus  <vladimir@codesourcery.com>
7541
7542         Implement -thread-info.
7543         * gdbthread.h (print_thread_info): Declare.
7544
7545         * thread.c (print_thread_info): New, extracted
7546         from info_threads_command and adjusted to
7547         work for CLI and MI.
7548         (info_threads_command): Use print_thread_info.
7549         * Makefile.in: Update dependencies.
7550
7551         * mi/mi-cmds.c (mi_cmds): Specify a handler
7552         for -thread-info.
7553         * mi/mi-cmds.h (mi_cmd_thread_info): Declare.
7554         * mi/mi-main.c (mi_cmd_thread_info): New.
7555         (mi_cmd_list_features): Include 'thread-info'.
7556
7557 2008-03-14  Kevin Buettner  <kevinb@redhat.com>
7558
7559         * mips-tdep.c (mips32_scan_prologue): Use the ABI register size
7560         to decide whether to match instruction patterns using "sw" and "sd".
7561
7562 2008-03-14  Pedro Alves  <pedro@codesourcery.com>
7563
7564         * infcmd.c (jump_command): Postpone disabling stdin until after
7565         the possible query.
7566
7567 2008-03-14  Pedro Alves  <pedro@codesourcery.com>
7568
7569         * inflow.c (gdb_getpgrp): New.
7570         (gdb_has_a_terminal): Use get_getpgrp.
7571         (terminal_ours_1): If attach_flag is set, don't refetch
7572         inferior_process_group.
7573
7574 2008-03-14  Pedro Alves  <pedro@codesourcery.com>
7575
7576         * features/library-list.dtd: Allow "section" elements as children
7577         of "library".  Add "section" element and describe its attributes.
7578
7579         * solib-target.c (struct lm_info): Add section_bases member.
7580         (library_list_start_segment): Error out if seen a section element.
7581         (library_list_start_section): New.
7582         (library_list_end_library): New.
7583         (solib_target_free_library_list): Free section_bases.
7584         (section_attributes): New.
7585         (library_children): Make "segment" optional.  Add "section" child.
7586         (library_list_children): Register library_list_end_library.
7587         (solib_target_relocate_section_addresses): Handle section bases.
7588
7589         * NEWS: Mention new qXfer:libraries:read section offsets support.
7590
7591 2008-03-14  Vladimir Prus  <vladimir@codesourcery.com>
7592
7593         * defs.h (do_exec_error_cleanups, discard_exec_error_cleanups)
7594         (make_exec_error_cleanup): Remove declarations.
7595         * utils.c (exec_error_cleanup_chain): Remove.
7596         (do_exec_error_cleanups, discard_exec_error_cleanups)
7597         (make_exec_error_cleanup): Remove.
7598         * event-loop.c (start_event_loop): Adjust call to
7599         async_enable_stdin.
7600         * event-top.c (async_enable_stdin): Remove the paramater dummy.
7601         (async_disable_stdin): Don't register async_enable_stdin via
7602         cleanup.
7603         * inf-loop.c (inferior_event_handler): Don't
7604         call do_exec_error_cleanups.  Call async_enable_stdin instead.
7605         * event-loop.c (start_event_loop): Adjust call to
7606         async_enable_stdin.
7607         * tui/tui-interp.c (tui_command_loop): Adjust call to
7608         async_enable_stdin.
7609
7610 2008-03-14  Vladimir Prus  <vladimir@codesourcery.com>
7611
7612         Async mode fixes.
7613         * Makefile.in (infcmd.o, inf-loop.o): Update dependencies.
7614         * breakpoint.c (bpstat_do_actions): In async mode,
7615         don't jump to top expecting stop_bpstat to be already
7616         updated.
7617         * event-loop.c (start_event_loop): Call async_enable_stdin
7618         on exception.
7619         * event-top.c (async_enable_stdin): Do nothing if sync_execution
7620         is not set.
7621         (command_handler): Do not setup continuation here.
7622         (command_line_handler_continuation): Move to...
7623         * top.c (command_line_handler_continuation): ... here.
7624         (execute_command): In async mode, register continuation.
7625         Don't check frame's language in running in async mode.
7626         * exceptions.c (throw_exception): Don't do exec_error_cleanups.
7627         * inf-loop.c (complete_execution): Inline into...
7628         (inferior_event_handler): ... here.  Clear target_executing before
7629         doing any cleanups.  Don't try to show prompt if the target was
7630         resumed.
7631         * infcmd.c (signal_command): Add support for async mode.
7632         (finish_command): Only add continuation if the target was
7633         successfully resumed.
7634         * remote.c (init_async_opts): Register to_get_thread_local_address
7635         handler.
7636         * mi/mi-interp.c (mi_cmd_interpreter_exec): Don't mess
7637         with sync_execution.
7638         * tui/tui-interp.c (tui_command_loop): Call async_enable_stdin
7639         on exception.
7640
7641 2008-03-14  Daniel Jacobowitz  <dan@codesourcery.com>
7642
7643         * corefile.c (reopen_exec_file): Use exec_bfd_mtime.
7644         * exec.c (exec_bfd_mtime): Define.
7645         (exec_close): Clear it.
7646         (exec_file_attach): Set it.
7647         * gdbcore.h (exec_bfd_mtime): Declare.
7648         * source.c (find_source_lines): Do not use bfd_get_mtime.
7649
7650 2008-03-14  Vladimir Prus  <vladimir@codesourcery.com>
7651
7652         * top.c (simplified_command_loop): Remove.
7653
7654 2008-03-14  Vladimir Prus  <vladimir@codesourcery.com>
7655
7656         Remove unused remote.c hooks.
7657         * remote.c (deprecated_target_resume_hook)
7658         (deprecated_target_wait_loop_hook): Remove.
7659         (remote_resume): Do not call deprecated_target_resume_hook.
7660         (remote_wait): Do not call deprecated_target_wait_loop_hook.
7661         (remote_async_wait): Likewise.
7662
7663 2008-03-14  Vladimir Prus  <vladimir@codesourcery.com>
7664
7665         Implement MI notification for new threads.
7666         * doc/observer.texi (new_thread): Document.
7667         * observer.sh: Forward declare struct thread_info.
7668         * thread.c (add_thread): Notify observer.
7669
7670         * interps.h (interp_init_ftype): New parameter
7671         top_level.
7672         (interp_set): Likewise.
7673         (top_level_interpreter_data): Declare.
7674         * interps.c (interp_set): New parameter top_level.
7675         Pass it to interpreter's init function.  Remember
7676         top level interpreter.
7677         (interpreter_exec_cmd): Adjust.
7678         (top_level_interpreter_data): New.
7679         * main.c (captured_main): Pass 1 for top_level
7680         parameter of interp_set.
7681         * cli/cli-interp.c (cli_interpreter_init): New
7682         parameter top_level.
7683         * tui/tui-interp.c (tui_init): New parameter top_level.
7684
7685         * mi/mi-interp.c (mi_new_thread): New.
7686         (mi_interpreter_init): If top level, register
7687         observer for new threads.
7688
7689         * Makefile.in (mi-interp.o, thread.o): Update dependencies.
7690
7691 2008-03-14  Pedro Alves  <pedro@codesourcery.com>
7692
7693         * top.c (execute_command): Disable break and stop
7694         commands in async mode.
7695
7696 2008-03-14  Pedro Alves  <pedro@codesourcery.com>
7697
7698         revert:
7699         2008-03-14  Pedro Alves  <pedro@codesourcery.com>
7700         * inf-loop.c (inferior_event_handler): Don't include remote.h.
7701         Call target_stop in the INF_QUIT_REQ case.
7702         * Makefile.in (inf-loop.o): Update.
7703
7704 2008-03-14  Pedro Alves  <pedro@codesourcery.com>
7705
7706         * inf-loop.c (inferior_event_handler): Don't include remote.h.
7707         Call target_stop in the INF_QUIT_REQ case.
7708         * Makefile.in (inf-loop.o): Update.
7709
7710 2008-03-14  Pedro Alves  <pedro@codesourcery.com>
7711
7712         * top.c (execute_command): Enable break, info and interrupt
7713         commands in async mode.
7714
7715 2008-03-13  Vladimir Prus  <vladimir@codesourcery.com>
7716             Daniel Jacobowitz  <dan@codesourcery.com>
7717
7718         * breakpoint.h (breakpoint_restore_shadows): New
7719         declaration.
7720         * breakpoint.c (breakpoint_restore_shadows): New.
7721         (read_memory_nobpt): Delete.
7722         * gdbcore.h (read_memory_nobpt): Delete declaration.
7723         * target.c (memory_xfer_partial): Call
7724         breakpoint_restore_shadows.
7725         (restore_show_memory_breakpoints)
7726         (make_show_memory_beakpoints_cleanup): New.
7727         (show_memory_breakpoints): New.
7728         * target.h (make_show_memory_beakpoints_cleanup): Declare.
7729         * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint):
7730         Make sure we see memory breakpoints when checking if
7731         breakpoint is still there.
7732         * alpha-tdep.c, alphanbsd-tdep.c, frame.c, frv-tdep.c,
7733         hppa-linux-tdep.c, hppa-tdep.c, i386-linux-nat.c, i386-tdep.c,
7734         m68klinux-tdep.c, mips-tdep.c, mn10300-tdep.c, s390-tdep.c,
7735         sparc-tdep.c: Use target_read_memory instead of read_memory_nobpt.
7736
7737 2008-03-12  Pedro Alves  <pedro@codesourcery.com>
7738
7739         * thread.c (add_thread): Use printf_unfiltered to print.
7740
7741 2008-03-12  Joel Brobecker  <brobecker@gnat.com>
7742
7743         * sol-thread.c: Replace use of TM_I386SOL2_H by an expression
7744         that is true only on x86-solaris and x86_64-solaris.
7745         * procfs.c: Likewise. Move procfs_find_LDT_entry up together
7746         with proc_get_LDT_entry.
7747
7748 2008-03-12  Thiago Jung Bauermann  <bauerman@br.ibm.com>
7749
7750         * configure.ac (AC_CHECK_FUNCS): Add check for setsid.
7751         * config.in, configure: Regenerate.
7752         * fork-child.c (fork_inferior): Call create_tty_session.
7753         * inflow.c (new_tty): Set controlling terminal with TIOCSCTTY.
7754         (create_tty_session): New function.
7755         * terminal.h: Declare create_tty_session.
7756
7757 2008-03-12  Alan Modra  <amodra@bigpond.net.au>
7758
7759         PR 5900
7760         * elfread.c (elf_symtab_read): Make shndx an unsigned int.
7761         * mipsread.c: Include elf/internal.h.
7762         (read_alphacoff_dynamic_symtab): Map external reserved sym_shndx
7763         to internal range.
7764
7765 2008-03-11  Markus Deuling  <deuling@de.ibm.com>
7766
7767         * win32-nat.c (do_win32_fetch_inferior_registers): Use get_regcache_arch
7768         to get at the current architecture and at the target specific vector.
7769         Add target specific vector to I387_FISEG_REGNUM and I387_FOP_REGNUM and
7770         remove define of I387_ST0_REGNUM.
7771
7772         * amd64-tdep.c (I387_ST0_REGNUM): Remove define.
7773
7774         (amd64_supply_fxsave, amd64_collect_fxsave): Use get_regcache_arch to
7775         get at the current architecture
7776         (I387_FISEG_REGNUM, I387_FOSEG_REGNUM): Add target specific vector as
7777         parameter.
7778
7779         * i386-tdep.c: Remove various define's and undef's of I387_ST0_REGNUM,
7780         I387_NUM_XMM_REGS and I387_MM0_REGNUM.
7781
7782         (I387_NUM_XMM_REGS, I387_XMM0_REGNUM, I387_MXCSR_REGNUM,
7783         I387_ST0_REGNUM, I387_FCTRL_REGNUM, I387_MM0_REGNUM,
7784         (I387_FSTAT_REGNUM): Add target specific vector as parameter.
7785
7786         (i386_register_name, i386_dbx_reg_to_regnum): Use gdbarch_tdep to get
7787         at the target specific vector.
7788
7789         (i386_get_longjmp_target): Use get_frame_arch to get at the current
7790         architecture. Use gdbarch_tdep to get at the target specific vector.
7791
7792         (i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as parameter and
7793         update caller. Use gdbarch_tdep to get at the target specific vector.
7794
7795         (i386_register_to_value: Use get_frame_arch to get at the current
7796         architecture.
7797
7798         * i386-tdep.h (i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as
7799         parameter.
7800
7801         * i387-tdep.c (I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
7802         I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM
7803         I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_ST0_REGNUM, FSAVE_ADDR,
7804         FXSAVE_ADDR, I387_XMM0_REGNUM): Add target specific vector as parameter.
7805
7806         (I387_ST0_REGNUM, I387_NUM_XMM_REGS): Remove various define's and
7807         undef's.
7808
7809         (i387_convert_register_p, i387_register_to_value,
7810         i387_value_to_register): Update call for i386_fp_regnum_p.
7811
7812         * i387-tdep.h: Remove comment.
7813         (I387_ST0_REGNUM, I387_NUM_XMM_REGS, I387_MM0_REGNUM): Add define.
7814         (I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
7815         I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM,
7816         I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_XMM0_REGNUM,
7817         I387_MXCSR_REGNUM): Add target specific vector as parameter.
7818
7819 2008-03-10  Daniel Jacobowitz  <dan@codesourcery.com>
7820
7821         * Makefile.in (fork-child.o): Update.
7822         * NEWS: Document "set exec-wrapper" and the gdbserver --wrapper
7823         argument.  Gather all gdbserver features together.
7824         * fork-child.c (exec_wrapper): New variable.
7825         (fork_inferior): Use it.
7826         (startup_inferior): Skip an extra trap if using "set exec-wrapper".
7827         (unset_exec_wrapper_command, _initialize_fork_child): New.
7828
7829 2008-03-10  Hidetaka Takano  <hidetaka.takano@glb.toshiba.co.jp>
7830
7831         * source.c (directory_command): Modify the determination of
7832         condition of terminal "from_tty".
7833
7834 2008-03-10  Matt Rice  <ratmice@gmail.com>
7835
7836         * dwarf2read.c (set_cu_language): Add DW_LANG_ObjC.
7837
7838 2008-03-10  Hidetaka Takano  <hidetaka.takano@glb.toshiba.co.jp>
7839
7840         * spu-tdep.c (info_spu_event_command): Insert a '\0' to the end
7841         of the data passing to strtoulst function.
7842         (info_spu_signal_command): Likewise.
7843
7844 2008-03-08  Vladimir Prus  <vladimir@codesourcery.com>
7845
7846         * mi/mi-interp.c (mi_command_loop): Remove
7847         commented-out code.
7848
7849 2008-03-07  Joel Brobecker  <brobecker@adacore.com>
7850
7851         * remote.c (extended_remote_attach_1): Make local variable pid an int
7852         instead of a pid_t.
7853
7854 2008-03-07  Joel Brobecker  <brobecker@adacore.com>
7855
7856         * solib-svr4.c (svr4_same_1): New function, originally extracted
7857         from svr4_same and expanded to handle the sparc64 case.
7858         (svr4_same): Move up and reimplement using svr4_same_1.
7859         (enable_break): Use svr4_same_1 to do shared library name comparisons.
7860
7861 2008-03-07  Ramana Radhakrishnan  <ramana.r@gmail.com>
7862
7863         * MAINTAINERS: Move self to Paper trail.
7864
7865 2008-03-05  Daniel Jacobowitz  <dan@codesourcery.com>
7866
7867         * Makefile.in (mingw-hdep.o, posix-hdep.o, remote-fileio.o): Update.
7868         * event-loop.c (call_async_signal_handler): New.
7869         * event-loop.h (call_async_signal_handler)
7870         (gdb_call_async_signal_handler): Declare.
7871         (mark_async_signal_handler): Add comments.
7872         * event-top.c (handle_sigint): Use gdb_call_async_signal_handler.
7873         * mingw-hdep.c (sigint_event, sigint_handler): New.
7874         (gdb_select): Use them.  Wait for the readline signal handler
7875         to finish.
7876         (gdb_call_async_signal_handler, _initialize_mingw_hdep): New functions.
7877         * posix-hdep.c (gdb_call_async_signal_handler): New function.
7878         * remote-fileio.c (sigint_fileio_token, async_remote_fileio_interrupt):
7879         New.
7880         (remote_fileio_ctrl_c_signal_handler): Use
7881         gdb_call_async_signal_handler.
7882         (initialize_remote_fileio): Initialize sigint_fileio_token.
7883         * remote.c (initialize_sigint_signal_handler, handle_remote_sigint): Do
7884         not initialize tokens here.
7885         (handle_remote_sigint_twice): Likewise.  Reinstall
7886         handle_remote_sigint.
7887         (async_remote_interrupt_twice): Just call interrupt_query.
7888         (cleanup_sigint_signal_handler): Do not delete tokens.
7889         (remote_interrupt, remote_interrupt_twice): Use
7890         gdb_call_async_signal_handler.
7891         (interrupt_query): Reinstall the default signal handler.
7892         (_initialize_remote): Initialize tokens here.
7893
7894 2008-03-04  Joel Brobecker  <brobecker@adacore.com>
7895
7896         * features/rs6000/power-core.xml, features/rs6000/power64-core.xml,
7897         features/rs6000/powerpc-601.xml, features/rs6000/rs6000.xml:
7898         Change the type of the lr register to code_ptr.
7899         * features/rs6000/powerpc-32.c, features/rs6000/powerpc-403.c,
7900         features/rs6000/powerpc-403gc.c, features/rs6000/powerpc-505.c,
7901         features/rs6000/powerpc-601.c, features/rs6000/powerpc-602.c,
7902         features/rs6000/powerpc-603.c, features/rs6000/powerpc-604.c,
7903         features/rs6000/powerpc-64.c, features/rs6000/powerpc-7400.c,
7904         features/rs6000/powerpc-750.c, features/rs6000/powerpc-860.c,
7905         features/rs6000/powerpc-e500.c, features/rs6000/rs6000.c: Regenerate.
7906
7907 2008-03-03  James E. Wilson  <wilson@tuliptree.org>
7908
7909         * MAINTAINERS: Update my email address.
7910
7911 2008-03-03  Keith Seitz  <keiths@redhat.com>
7912
7913         From Dave Murphy  <davem@devkitpro.org>:
7914         * configure.ac: Set tcl configdir to win under mingw.
7915         * configure: Regenerate.
7916
7917 2008-03-03  Daniel Jacobowitz  <dan@codesourcery.com>
7918
7919         * breakpoint.c (fetch_watchpoint_value): New function.
7920         (update_watchpoint): Set and clear val_valid.  Use
7921         fetch_watchpoint_value.  Handle unreadable values on the
7922         value chain.  Correct check for user-requested array watchpoints.
7923         (breakpoint_init_inferior): Clear val_valid.
7924         (watchpoint_value_print): New function.
7925         (print_it_typical): Use it.  Do not free or clear old_val.  Print
7926         watchpoints even if old_val == NULL.
7927         (watchpoint_check): Use fetch_watchpoint_value.  Check for values
7928         becoming readable or unreadable.
7929         (watch_command_1): Use fetch_watchpoint_value.  Set val_valid.
7930         (do_enable_watchpoint): Likewise.
7931         * breakpoint.h (struct breakpoint): Update comment for val.  Add
7932         val_valid.
7933         * NEWS: Mention watchpoints on inaccessible memory.
7934
7935 2007-02-29  Daniel Jacobowitz  <dan@codesourcery.com>
7936
7937         * Makefile.in (i386-nat.o): Update.
7938         * amd64-linux-nat.c (_initialize_amd64_linux_nat): Call
7939         i386_use_watchpoints.
7940         * i386-linux-nat.c (_initialize_i386_linux_nat): Call
7941         i386_use_watchpoints.
7942         * i386-nat.c (i386_stopped_data_address): Take two arguments.
7943         (i386_stopped_by_watchpoint): Update call.
7944         (i386_can_use_hw_breakpoint, i386_use_watchpoints): New.
7945         * config/i386/nm-i386.h: Conditionalize definitions on
7946         ! I386_WATCHPOINTS_IN_TARGET_VECTOR.
7947         (i386_use_watchpoints): Declare.
7948         (i386_stopped_data_address): Update.
7949         * config/i386/nm-linux.h (I386_WATCHPOINTS_IN_TARGET_VECTOR): Define.
7950         * config/i386/nm-linux64.h (I386_WATCHPOINTS_IN_TARGET_VECTOR): Define.
7951
7952 2008-02-29  Joel Brobecker  <brobecker@adacore.com>
7953
7954         GDB 6.8 branch created (branch timestamp: 2008-02-26 10:00 UTC)
7955         * version.in: Bump version to 6.8.50.20080229-cvs.
7956
7957 2008-02-28  Markus Deuling  <deuling@de.ibm.com>
7958
7959         * f-typeprint.c (f_print_type): Handle NULL pointer in VARSTRING
7960         properly.
7961
7962 2008-02-28  Tom Tromey  <tromey@redhat.com>
7963
7964         * infcmd.c (notice_args_read): Print result of get_inferior_args.
7965
7966 2008-02-28  Daniel Jacobowitz  <dan@codesourcery.com>
7967
7968         * infcmd.c (kill_if_already_running): Make static.  Use
7969         target_require_runnable.
7970         * target.c (target_require_runnable): New.
7971         * target.h (target_require_runnable): Declare.
7972
7973 2008-02-28  Daniel Jacobowitz  <dan@codesourcery.com>
7974
7975         * frame.c (reinit_frame_cache): Only annotate if frames were
7976         previously valid.
7977
7978 2008-02-28  Ulrich Weigand  <uweigand@de.ibm.com>
7979
7980         * regformats/reg-ppc.dat: Rename "ps" to "msr".
7981         * regformats/reg-ppc64.dat: Likewise.
7982
7983 2008-02-28  Ulrich Weigand  <uweigand@de.ibm.com>
7984
7985         * features/Makefile (%.dat): Emit xmltarget statement.
7986
7987         * regformats/regdat.sh: Support xmltarget and xmlarch statments.
7988         Generate code to set gdbserver_xmltarget in init_registers_${name}.
7989
7990         * regformats/arm-with-iwmmxt.dat: Regenerate.
7991         * regformats/mips64-linux.dat: Regenerate.
7992         * regformats/mips-linux.dat: Regenerate.
7993         * regformats/rs6000/powerpc-32.dat: Regenerate.
7994         * regformats/rs6000/powerpc-64.dat: Regenerate.
7995         * regformats/rs6000/powerpc-e500.dat: Regenerate.
7996
7997         * regformats/reg-arm.dat: Add xmlarch statement.
7998         * regformats/reg-i386.dat: Likewise.
7999         * regformats/reg-i386-linux.dat: Likewise.
8000         * regformats/reg-x86-64-linux.dat: Likewise.
8001         * regformats/reg-spu.dat: Likewise.
8002
8003 2008-02-27  Daniel Jacobowitz  <dan@codesourcery.com>
8004
8005         * remote.c (remote_wait, remote_async_wait): Stop if we receive
8006         an error.
8007
8008 2008-02-27  Daniel Jacobowitz  <dan@codesourcery.com>
8009
8010         * utils.c (debug_timestamp): New.
8011         (vfprintf_unfiltered): Print timestamps if requested.
8012         (show_debug_timestamp): New.
8013         (initialize_utils): Register "set debug timestamp".
8014         * NEWS: Mention "set debug timestamp".  Add GDB 6.8 section.
8015
8016 2008-02-27  Joel Brobecker  <brobecker@adacore.com>
8017
8018         * breakpoint.c (skip_prologue_sal): New function.
8019         (resolve_sal_pc): Adjust SAL past prologue if the SAL was
8020         computed from a line number.
8021
8022 2008-02-27  Joel Brobecker  <brobecker@adacore.com>
8023
8024         * features/rs6000/power-core.xml, features/rs6000/power64-core.xml
8025         features/rs6000/powerpc-601.xml, features/rs6000/rs6000.xml:
8026         Set PC register type to "code_ptr".
8027         * features/rs6000/powerpc-32.c, features/rs6000/powerpc-403.c,
8028         features/rs6000/powerpc-403gc.c, features/rs6000/powerpc-505.c,
8029         features/rs6000/powerpc-601.c, features/rs6000/powerpc-602.c,
8030         features/rs6000/powerpc-603.c, features/rs6000/powerpc-604.c,
8031         features/rs6000/powerpc-64.c, features/rs6000/powerpc-7400.c,
8032         features/rs6000/powerpc-750.c, features/rs6000/powerpc-860.c,
8033         features/rs6000/powerpc-e500.c, features/rs6000/rs6000.c:
8034         Regenerate.
8035
8036 2008-02-27  Ulrich Weigand  <uweigand@de.ibm.com>
8037
8038         * regformats/regdat.sh: Rename init_registers function in
8039         generated file to init_registers_${name}.
8040
8041         * regformats/reg-crisv32.dat: Set "name" to crisv32.
8042         * regformats/reg-ppc64.dat: Set "name" to ppc64.
8043         * regformats/reg-s390x.dat: Set "name" to s390x.
8044
8045 2008-02-26  Greg Law  <glaw@undo-software.com>
8046
8047         * regcache.c (registers_changed): Call reinit_frame_cache.
8048
8049 2008-02-26  Daniel Jacobowitz  <dan@codesourcery.com>
8050
8051         * configure.tgt (sh-*-linux*): Match sh*.  Add glibc-tdep.o.
8052         * sh-linux-tdep.c (sh_linux_init_abi): Use glibc_skip_solib_resolver
8053         and svr4_fetch_objfile_link_map.
8054         * Makefile.in (sh-linux-tdep.o): Update.
8055
8056 2008-02-26  Thiago Jung Bauermann  <bauerman@br.ibm.com>
8057
8058         * amd64-tdep.c (amd64_classify): Add support for decimal float
8059         types.
8060         * i386-tdep.c (i386_return_value): Make 128-bit decimal float
8061         use the struct return convention.
8062
8063 2008-02-26  Nick Roberts  <nickrob@snap.net.nz>
8064
8065         * breakpoint.c (print_one_breakpoint_location): Revert Enb field
8066         to old format.  Discard breakpoint address if shared library is
8067         unloaded.
8068         (breakpoint_1): Adjust formatting of table header accordingly.
8069
8070 2008-02-25  Vladimir Prus  <vladimir@codesourcery.com>
8071
8072        * remote.c (remote_get_threadlist): If the response
8073        is empty, don't try to parse it.
8074
8075 2008-02-23  Vladimir Prus  <vladimir@codesourcery.com>
8076
8077         Unbreak 'target async'.
8078         * serial.c (serial_async): Set the
8079         handler function before enabling async
8080         mode.
8081
8082 2008-02-22  Daniel Jacobowitz  <dan@codesourcery.com>
8083
8084         * solib-svr4.c (enable_break): Convert r_brk to a code address.
8085
8086 2008-02-21  Pedro Alves  <pedro@codesourcery.com>
8087
8088         * remote.c (extended_remote_attach_1): Set attach_flag.
8089         (extended_remote_create_inferior_1): Clear attach_flag.
8090
8091 2008-02-20  Daniel Jacobowitz  <dan@codesourcery.com>
8092
8093         * mipsnbsd-tdep.c (mipsnbsd_ilp32_fetch_link_map_offsets): Set
8094         r_brk_offset.
8095         (mipsnbsd_lp64_fetch_link_map_offsets): Likewise.
8096         * solib-svr4.c (solib_svr4_r_brk): New.
8097         (open_symbol_file_object, svr4_current_sos): Always check the
8098         debug base.
8099         (svr4_fetch_objfile_link_map): Do not set debug_base.
8100         (enable_break): Use r_brk if it is set.
8101         (svr4_ilp32_fetch_link_map_offsets): Set r_brk_offset.
8102         (svr4_lp64_fetch_link_map_offsets): Likewise.
8103         * solib-svr4.h (struct link_map_offsets): Add r_brk_offset.
8104
8105 2008-02-20  Markus Deuling  <deuling@de.ibm.com>
8106             Mark Kettenis  <kettenis@gnu.org>
8107
8108         * alpha-tdep.c (alpha_heuristic_unwind_cache): Replace saved_regs by
8109         trad_frame_saved_reg.
8110         (trad-frame.h): New include.
8111
8112         (alpha_heuristic_frame_unwind_cache): Use trad_frame_alloc_saved_regs
8113         instead of frame_obstack_zalloc.
8114         (alpha_heuristic_frame_prev_register): Use trad_frame_get_prev_register.
8115
8116         * Makefile.in (alpha-tdep.o): Add dependency to trad_frame_h.
8117
8118 2008-02-20  Markus Deuling  <deuling@de.ibm.com>
8119
8120         * rs6000-tdep.c (gdb_print_insn_powerpc): Get the current endianess
8121         from disassemble_info instead of gdbarch_byte_order.
8122
8123         * mips-tdep.c (gdb_print_insn_mips): Likewise.
8124         * arm-tdep.c (gdb_print_insn_arm): Likewise.
8125
8126 2008-02-20  Markus Deuling  <deuling@de.ibm.com>
8127
8128         * gdbarch.sh (memory_insert_breakpoint, memory_remove_breakpoint): Add
8129         gdbarch as parameter.
8130
8131         * gdbarch.{c,h}: Regenerate.
8132
8133         * ppc-tdep.h (ppc_linux_memory_remove_breakpoint): Add gdbarch as
8134         parameter.
8135         * mem-break.c (default_memory_insert_breakpoint)
8136         (default_memory_remove_breakpoint): Likewise.
8137         * target.h (default_memory_remove_breakpoint)
8138         (default_memory_insert_breakpoint): Likewise.
8139
8140         * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Add gdbarch as
8141         parameter. Replace current_gdbarch by gdbarch.
8142         * m32r-tdep.c (m32r_memory_insert_breakpoint)
8143         (m32r_memory_remove_breakpoint): Likewise.
8144
8145 2008-02-19  Daniel Jacobowitz  <dan@codesourcery.com>
8146
8147         * MAINTAINERS: Add Vladimir Prus as MI maintainer.
8148
8149 2008-02-19  Joel Brobecker  <brobecker@adacore.com>
8150
8151         * NEWS: Add entry describing Add support improvements.
8152
8153 2008-02-18  Markus Deuling  <deuling@de.ibm.com>
8154
8155         * m68klinux-nat.c (getfpregs_supplies): Replace gdbarch_fp0_regnum by
8156         M68K_FP0_REGNUM.
8157
8158 2008-02-18  Markus Deuling  <deuling@de.ibm.com>
8159
8160         * sentinel-frame.c (sentinel_frame_prev_register): Do not call
8161         register_offset_hack anymore.
8162
8163         * regcache.{c,h} (register_offset_hack): Remove.
8164
8165 2008-02-18  Markus Deuling  <deuling@de.ibm.com>
8166
8167         * hppa-tdep.h (find_global_pointer): Add gdbarch as parameter.
8168
8169         * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer): Likewise. Replace
8170         current_gdbarch by gdbarch.
8171         (hppa64_hpux_find_global_pointer): Likewise.
8172         * hppa-tdep.c (hppa_find_global_pointer): Likewise.
8173         (hppa32_push_dummy_call, hppa64_push_dummy_call): Update call for
8174         find_global_pointer.
8175
8176         * hppabsd-tdep.c (hppabsd_find_global_pointer): Add gdbarch as
8177         parameter.
8178         * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
8179
8180         * hppa-linux-nat.c (hppa_linux_register_addr): Use ARRAY_SIZE instead
8181         of gdbarch_num_regs.
8182
8183         * hppa-hpux-tdep.c (hppa_hpux_sr_for_addr): Add gdbarch as parameter and
8184         replace current_gdbarch by gdbarch.
8185         (hppa_hpux_push_dummy_code): Update call for hppa_hpux_sr_for_addr.
8186
8187 2008-02-18  Markus Deuling  <deuling@de.ibm.com>
8188
8189         * rs6000-nat.c (exec_one_dummy_insn, regmap): Add gdbarch as parameter
8190         and replace current_gdbarch by gdbarch.
8191
8192         (store_register): Update call for exec_one_dummy_insn.
8193         (fetch_register, store_register): Update call of regmap.
8194
8195         * ppcnbsd-nat.c (getregs_supplies, getfpregs_supplies): Add gdbarch as
8196         parameter and replace current_gdbarch by gdbarch.
8197
8198         (ppcnbsd_store_inferior_registers): Use get_regcache_arch to get at
8199         the current architecture. Update call for getregs_supplies and
8200         getfpregs_supplies.
8201         (ppcnbsd_fetch_inferior_registers): Likewise.
8202
8203         * ppcobsd-nat.c (getfpregs_supplies): Add gdbarch as parameter and
8204         replace current_gdbarch by gdbarch.
8205         (ppcobsd_fetch_registers, ppcobsd_store_registers): Use
8206         get_regcache_arch to get at the current architecture. Update call for
8207         getfpregs_supplies.
8208
8209 2008-02-18  Markus Deuling  <deuling@de.ibm.com>
8210
8211         * arch-utils.c (gdbarch_from_bfd): Remove unnecessary {old,new}_gdbarch
8212         variables.
8213
8214 2008-02-15  Markus Deuling  <deuling@de.ibm.com>
8215
8216         * mips-linux-tdep.c (mips_linux_init_abi): Remove internal error.
8217
8218 2008-02-14  Vladimir Prus  <vladimir@codesourcery.com>
8219
8220         * NEWS: Mention pending breakpints in MI.
8221
8222 2008-02-14  Markus Deuling  <deuling@de.ibm.com>
8223
8224         * Makefile.in (ALL_TARGET_OBS): Remove dependency to xtensa-linux-nat.o.
8225
8226 2008-02-13  Markus Deuling  <deuling@de.ibm.com>
8227
8228         Add script to build and test GDB using enable-targets=all.
8229
8230         * gdb_buildall.sh: New file.
8231
8232 2008-02-11  Maxim Grigoriev  <maxim2405@gmail.com>
8233
8234         * NEWS (New native configurations): Xtensa GNU/Linux.
8235         (New targets): Xtensa GNU/Linux.
8236         * Makefile.in (ALL_TARGET_OBS): Add xtensa-linux-nat.o and
8237         xtensa-linux-tdep.o
8238         (ALLDEPFILES): Add xtensa-linux-tdep.c and xtensa-linux-nat.c
8239         (xtensa-linux-nat.o, xtensa-linux-tdep.o): New dependencies.
8240         * configure.tgt (xtensa*-*-linux*): New entry.
8241         * xtensa-config.c (xtensa_tdep): New variable.
8242         (xtensa_config_byte_order, xtensa_config_tdep): Removed.
8243         (rmap): Change format based on new macro XTREG.
8244         (XTENSA_CONFIG_INSTANTIATE): Use new macro defined in xtensa-tdep.h.
8245         * xtensa-linux-nat.c: New.
8246         * xtensa-linux-tdep.c: New.
8247         * xtensa-xtregs.c: New.
8248         * xtensa-tdep.h (xtensa_elf_gregset_t): Update.
8249         (XTENSA_ELF_NGREG, XTREG, XTREG_END, XTENSA_GDBARCH_TDEP_INSTANTIATE)
8250         (XCHAL_NUM_CONTEXTS, XCHAL_HAVE_EXCEPTIONS): New macros.
8251         (xtensa_register_t): New field coprocessor.
8252         (XTENSA_REGISTER_FLAGS_PRIVILEGED): Name spelling corrected.
8253         * xtensa-tdep.c (xtensa_config_tdep, xtensa_config_byte_order): Removed.
8254         (xtensa_pseudo_register_read, xtensa_pseudo_register_write):
8255         Update to handle privileged registers.
8256         (xtensa_supply_gregset) Remove exccause and excvaddr registers.
8257         (xtensa_push_dummy_call): Set windowstart register correctly.
8258         (call0_analyze_prologue): Initialize xtensa_default_isa.
8259         (xtensa_derive_tdep): New.
8260         (xtensa_gdbarch_init): Get rid of xtensa_config_byte_order and
8261         xtensa_config_tdep, use XCHAL_HAVE_BE and xtensa_tdep instead.
8262         Call xtensa_derive_tdep().
8263         * config/xtensa/linux.mh: New.
8264         * regformats/reg-xtensa.dat: New.
8265
8266 2008-02-09  Aleksandar Ristovski  <aristovski@qnx.com>  (tiny change)
8267
8268         * corelow.c (core_open): Use IS_ABSOLUTE_PATH.
8269         (filenames.h): New include.
8270         * Makefile.in (corelow.o): Add dependency for filenames.h.
8271
8272 2008-02-08  Doug Evans  <dje@google.com>
8273
8274         * source.c (find_and_open_source): Always rewrite absolute filenames.
8275
8276 2008-02-07  Doug Evans  <dje@google.com>
8277
8278         * breakpoint.c: #include "hashtab.h".
8279         (ambiguous_names_p): New fn.
8280         (update_breakpoint_locations): When restoring bp enable status, don't
8281         compare function names if any functions have same name.
8282         * Makefile.in (breakpoint.o): Add hashtab.h dependency.
8283
8284 2008-02-07  Joel Brobecker  <brobecker@adacore.com>
8285
8286         * ada-lang.c (symbol_completion_add): Make SV parameter a VEC**
8287         instead of just a VEC*. Update use of SV.
8288         (ada_make_symbol_completion_list): Update symbol_completion_add calls.
8289
8290 2007-02-07  Joel Brobecker  <brobecker@adacore.com>
8291
8292         * NEWS: Put all new commands since gdb-6.7 together.
8293
8294 2007-02-07  Joel Brobecker  <brobecker@adacore.com>
8295
8296         * ada-lang.c: #include "vec.h".
8297         (struct string_vector, new_string_vector, string_vector_append):
8298         Delete.
8299         (char_ptr): New typedef.
8300         (DEF_VEC_P (char_ptr)): New VEC type.
8301         (symbol_completion_add): Update profile to take the new VEC type
8302         instead of the old string_vector structure. Update code accordingly.
8303         (ada_make_symbol_completion_list): Use the new VEC type instead of
8304         the old string_vector structure, and update the code accordingly.
8305         * Makefile.in (ada-lang.o): Add dependency on vec.h.
8306
8307 2008-02-06  Pierre Muller  <muller@ics.u-strasbg.fr>
8308
8309         * p-exp.y: Set current_type in missing places.
8310         (leftdiv_is_integer): New static variable.
8311         Typecast right operand of BINOP_DIV to long_double if both operands
8312         are integers.
8313
8314 2008-02-06  Maciej W. Rozycki  <macro@mips.com>
8315
8316         * remote-mips.c (set_breakpoint): Rename to...
8317         (mips_set_breakpoint): ... this.
8318         (clear_breakpoint): Rename to...
8319         (mips_clear_breakpoint): ... this.
8320         (common_breakpoint): Rename to...
8321         (mips_common_breakpoint): ... this.
8322         (check_lsi_error): Rename to...
8323         (mips_check_lsi_error): ... this.
8324
8325 2007-02-05  Joel Brobecker  <brobecker@adacore.com>
8326
8327         * language.h (struct language_defn): Add new field
8328         la_make_symbol_completion_list.
8329         * symtab.c (default_make_symbol_completion_list): Renames
8330         make_symbol_completion_list.
8331         (make_symbol_completion_list): New function.
8332         * symtab.h (default_make_symbol_completion_list): Add declaration.
8333         * langauge.c (unknown_language): Set la_make_symbol_completion_list.
8334         (auto_language, local_language): Likewise.
8335         * objc-lang.c (objc_language_defn): Likewise.
8336         * scm-lang.c (scm_language_defn): Likewise.
8337         * m2-lang.c (m2_language_defn): Likewise.
8338         * f-lang.c (f_language_defn): Likewise.
8339         * jv-lang.c (java_language_defn): Likewise.
8340         * p-lang.c (pascal_language_defn): Likewise.
8341         * c-lang.c (c_language_defn, cplus_language_defn, asm_language_defn)
8342         (minimal_language_defn): Likewise.
8343         * ada-lang.c (struct string_vector): New structure.
8344         (new_string_vector, string_vector_append, ada_unqualified_name)
8345         (add_angle_brackets, symbol_completion_match, symbol_completion_add)
8346         (ada_make_symbol_completion_list): New functions.
8347         (ada_language_defn): Set la_make_symbol_completion_list.
8348         * ada-lang.h (ada_make_symbol_completion_list): Remove declaration,
8349         this function is static.
8350
8351 2008-02-05  Kevin Buettner  <kevinb@redhat.com>
8352
8353         * mn10300-tdep.c (mn10300_push_dummy_call): Adjust stack pointer
8354         to account for call site optimizations.
8355
8356 2008-02-05  Andrzej Zaborowski  <balrogg@gmail.com>
8357
8358         * tracepoint.c (read_actions): Handle end-of-text indicator
8359         in action list properly.  (Committed by Jim Blandy)
8360
8361 2008-02-05  Jim Blandy  <jimb@red-bean.com>
8362
8363         * ax-gdb.c (gen_expr): Yield ordinary error if asked to trace a
8364         pseudoregister, not an internal error.
8365         Reported by: Andrzej Zaborowski
8366
8367 2008-02-04  Vladimir Prus  <vladimir@codesourcery.com>
8368
8369         * varobj.c (c_value_of_variable): Use xstrdup.
8370
8371 2008-02-04  Vladimir Prus  <vladimir@codesourcery.com>
8372
8373         Update stored rendition of varobj value when format changes.
8374         * varobj.c (varobj_set_display_format): Recomputed
8375         print_value.
8376         (c_value_of_variable): Return print_value.
8377
8378 2008-02-03  Doug Evans  <dje@google.com>
8379
8380         * eval.c (evaluate_subexp_standard): Fix type of result of mixed
8381         integer/float division operations when EVAL_AVOID_SIDE_EFFECTS.
8382         * valops.c (value_one): New function.
8383         * value.h (value_one): Declare.
8384
8385         Fix argument promotion for binary arithmetic ops for C.
8386         * valarith.c (unop_result_type): New fn.
8387         (binop_result_type): New fn.
8388         (value_binop): Move result type computation to binop_result_type.
8389         (value_pos, value_neg, value_complement): Move result type
8390         computation to unop_result_type.
8391
8392         PR 2384
8393         * gdbtypes.c (get_vptr_fieldno): Renamed from fill_in_vptr_fieldno.
8394         Return basetype, fieldno if found.  All callers updated.
8395         Don't cache TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE if from different
8396         objfile.
8397         * gdbtypes.h (get_vptr_fieldno): Renamed from fill_in_vptr_fieldno.
8398         * symfile.h (fill_in_vptr_fieldno): Delete.
8399
8400 2008-02-02  Doug Evans  <dje@google.com>
8401
8402         * valarith.c (value_binop): Handle unsigned BINOP_REM division by zero.
8403
8404         * typeprint.c (*): Whitespace cleanup.
8405
8406 2008-02-02  Mark Kettenis  <kettenis@gnu.org>
8407             Luis Machado  <luisgpm@br.ibm.com>
8408             Thiago Jung Bauermann  <bauerman@br.ibm.com>
8409
8410         * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Pass floats that
8411         don't fit into registerson the stack the way GCC does.
8412
8413 2008-02-01  Joel Brobecker  <brobecker@adacore.com>
8414
8415         * symtab.c (symbol_set_names): Do not add an entry in the demangling
8416         hash table for Ada symbols. Just store the linkage name as is,
8417         and leave the demangled_name as NULL.
8418
8419 2007-02-01  Joel Brobecker  <brobecker@adacore.com>
8420
8421         * dwarf2read.c (add_partial_symbol): Always store all Ada subprograms
8422         in the global scope.
8423         (new_symbol): Likewise.
8424
8425 2008-02-01  Vladimir Prus  <vladimir@codesourcery.com>
8426
8427         * breakpoint.c (break_command_1): Return void.
8428         (break_command_really): Return void.  Rethrow
8429         exceptions instead of returning.
8430         (gdb_breakpoint): Remove the error_message parameter.
8431         Return void.  Rename to set_breakpoint.
8432         * gdb.h (gdb_breakpoint): Rename and move to...
8433         * breakpoint.h (set_breakpoint): ...here.
8434         * mi/mi-cmb-break.c (mi_cmd_break_insert): Restore
8435         event hooks even if exception is thrown.  Adjust to
8436         gdb_breakpoint interface changes.
8437
8438
8439 2008-02-01  Thiago Jung Bauermann  <bauerman@br.ibm.com>
8440
8441         * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Write 32-bit
8442         float in both first and second word in the doubleword, to support
8443         old and new ABIs.
8444
8445 2008-02-01  Vladimir Prus  <vladimir@codesourcery.com>
8446
8447         Properly rethrow exception.  This fixes errors
8448         about non-existent functions for -break-insert.
8449         * breakpoint.c (break_command_really): Use throw_exception
8450         for rethrowing.  If rethrowing, don't print the exception.
8451
8452 2008-01-31  Thiago Jung Bauermann  <bauerman@br.ibm.com>
8453
8454         * NEWS: Mention Decimal Floating Point support.
8455
8456 2008-01-31  Joel Brobecker  <brobecker@adacore.com>
8457
8458         * std-regs.c (value_of_builtin_frame_pc_reg): Change the returned
8459         value type to builtin_type_void_func_ptr.
8460
8461 2008-01-31  Andreas Krebbel  <krebbel1@de.ibm.com>
8462
8463         * s390-tdep.c (is_float_singleton, is_float_like,
8464         alignment_of, s390_return_value): Make checks for
8465         TYPE_CODE_FLT to match TYPE_CODE_DECFLOAT as well.
8466
8467 2008-01-31  Luis Machado  <luisgpm@br.ibm.com>
8468             Thiago Jung Bauermann  <bauerman@br.ibm.com>
8469
8470         * infcmd.c (default_print_registers_info): Also print hex
8471         raw contents for TYPE_CODE_DECFLOAT registers.
8472         * ppc-tdep.h (gdbarch_tdep): Add ppc_dl0_regnum member.
8473         * rs6000-tdep.c (IS_DFP_PSEUDOREG): New macro.
8474         (rs6000_register_name): Add support for DFP pseudo-registers.
8475         (rs6000_pseudo_register_type): Likewise.
8476         rs6000_pseudo_register_reggroup_p): Likewise.
8477         (ppc_pseudo_register_read): New function.
8478         (ppc_pseudo_register_write): Likewise.
8479         (rs6000_pseudo_register_read): Likewise.
8480         (rs6000_pseudo_register_write): Likewise.
8481         (e500_pseudo_register_read): Move checks to
8482         rs6000_pseudo_register_read.
8483         (e500_pseudo_register_write): Move checks to
8484         rs6000_pseudo_register_write.
8485         (rs6000_gdbarch_init): Initialize tdep->ppc_dl0_regnum.  Install
8486         rs6000_pseudo_register_read and rs6000_pseudo_register_write
8487         in gdbarch if SPE or DFP is available.  Adjust gdbarch's
8488         num_pseudo_regs to account for DFP pseudo regs.
8489
8490 2008-01-31  Thiago Jung Bauermann  <bauerman@br.ibm.com>
8491
8492         * ppc-tdep.h (struct gdbarch_tdep): Remove ppc_ev31_regnum member.
8493         * rs6000-tdep.c (IS_SPE_PSEUDOREG): New macro.
8494         (spe_register_p, rs6000_register_name, rs6000_pseudo_register_type,
8495         rs6000_pseudo_register_reggroup_p, e500_move_ev_register,
8496         e500_pseudo_register_read, e500_pseudo_register_write): Use
8497         IS_SPE_PSEUDOREG macro.
8498         (rs6000_frame_cache): Remove use of tdep->ppc_ev31_regnum.
8499         (rs6000_gdbarch_init): Remove unnecessary num_sprs local variable.
8500         Remove initialization of tdep->ppc_ev31_regnum.
8501
8502 2008-01-08  Paul Hilfinger  <hilfinger@adacore.com>
8503
8504         * printcmd.c (print_formatted): Handle references as for unformatted
8505         prints.
8506
8507 2008-01-30  Joel Brobecker  <brobecker@adacore.com>
8508
8509         * eval.c (evaluate_subexp_standard): Add handling of user
8510         registers when in EVAL_AVOID_SIDE_EFFECTS mode.
8511
8512 2008-01-30  Pierre Muller  <muller@ics.u-strasbg.fr>
8513
8514         * eval.c (evaluate_subexp_standard): Support
8515         BINOP_INTDIV opcode.
8516
8517 2008-01-30  Paul N. Hilfinger  <hilfinger@adacore.com>
8518
8519         * valarith.c (value_binop): Add floating-point BINOP_MIN and
8520         BINOP_MAX cases.
8521         For BINOP_EXP, use length and signedness of left operand only for
8522         result, as for shifts.
8523         For integral operands to BINOP_EXP, use new integer_pow and
8524         uinteger_pow functions so as to get full range of results.
8525         (integer_pow): New function.
8526         (uinteger_pow): New function.
8527
8528 2008-01-30  Vladimir Prus  <vladimir@codesourcery.com>
8529
8530         Use vector for varobj_list_children interface.
8531         * gdb/varobj.c (varobj_list_children): Return vector
8532         of varobjs.
8533         * gdb/varobj.h (varobj_list_children): Adjust
8534         prototype.
8535         (varobj_p): Declare.  Declare vector thereof.
8536         * mi/mi-cmd-var.c (mi_cmd_var_list_children): Adjust
8537         for varobj_list_children change.
8538         * Makefile.in (varobj_h): Update dependencies.
8539
8540 2008-01-30  Thiago Jung Bauermann  <bauerman@br.ibm.com>
8541
8542         * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Add support for
8543         TYPE_CODE_DECFLOAT arguments.
8544         (ppc64_sysv_abi_push_dummy_call) Likewise.
8545         (get_decimal_float_return_value): New function.
8546         (do_ppc_sysv_return_value): Add support for TYPE_CODE_DECFLOAT return
8547         values by calling get_decimal_float_return_value.
8548         (ppc64_sysv_abi_return_value): Likewise.
8549
8550 2008-01-30  Nick Roberts  <nickrob@snap.net.nz>
8551
8552         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file):  Add field
8553         for preprocessor macro information.  Formatting changes.
8554
8555 2008-01-29  Daniel Jacobowitz  <dan@codesourcery.com>
8556
8557         * remote.c (struct remote_state): Add cached_wait_status.
8558         (remote_exec_file): New variable.
8559         (PACKET_vAttach, PACKET_vRun): New constants.
8560         (extended_remote_restart): Do not query for status.
8561         (struct start_remote_args): New.
8562         (remote_start_remote): Take it as a second argument.  Check
8563         whether the target is running.  Issue an error for non-running
8564         non-extended targets.  Cache the wait status.  Set inferior_ptid
8565         here.
8566         (remote_open_1): Prompt to disconnect non-running targets.  Make
8567         sure the target is marked running.  Do not set inferior_ptid here.
8568         Update call to remote_start_remote.  Do not call remote_check_symbols
8569         if the target is not running.
8570         (remote_detach_1): Rename from remote_detach.  Take an EXTENDED
8571         argument.  Handle a non-running target.
8572         (remote_detach): Use it.
8573         (extended_remote_detach): New.
8574         (remote_disconnect): Fix typo.  Use remoute_mourn_1.
8575         (extended_remote_attach_1, extended_remote_attach)
8576         (extended_async_remote_attach): New.
8577         (remote_vcont_resume): Remove unused variable.
8578         (remote_wait, remote_async_wait): Use any cached wait status.
8579         (putpkt_binary, getpkt): Clear any cached wait status.
8580         (extended_remoute_mourn_1): New.
8581         (extended_remote_mourn): Use it.
8582         (extended_async_remote_mourn, extended_remote_run): New.
8583         (extended_remote_create_inferior_1): New.
8584         (extended_remote_create_inferior): Use it.
8585         (extended_remote_async_create_inferior): Likewise.
8586         (remote_xfer_partial): Skip for non-executing targets.
8587         (init_extended_remote_ops): Set to_detach and to_attach.
8588         (init_extended_async_remote_ops): Likewise.  Use
8589         extended_async_remote_mourn.
8590         (_initialize_remote): Register vAttach, vRun, and
8591         set remote exec-file.
8592         * NEWS: Mention vAttach, vRun, and gdbserver extended-remote support.
8593
8594 2008-01-29  Daniel Jacobowitz  <dan@codesourcery.com>
8595
8596         * Makefile.in (symfile.o): Update.
8597         * NEWS: Mention exec tracing support.
8598         * inf-ttrace.c (inf_ttrace_wait): Return TARGET_WAITKIND_EXECD for
8599         exec events.
8600         * infcmd.c (kill_if_already_running, detach_command)
8601         (disconnect_command): Replace SOLIB_RESTART with no_shared_libraries.
8602         * infrun.c (MAY_FOLLOW_EXEC, may_follow_exec): Delete.
8603         (follow_exec): Do not check may_follow_exec.  Do not mourn and push
8604         targets.  Apply the sysroot path to the loaded executable.  Use
8605         no_shared_libraries.
8606         * linux-nat.c (linux_child_follow_fork): Print fork following
8607         messages if verbose.
8608         (kill_wait_callback): Kill again before waiting a second time.
8609         * symfile.c (symbol_file_clear): Replace SOLIB_RESTART with
8610         no_shared_libraries.
8611
8612 2008-01-29  Joel Brobecker  <brobecker@adacore.com>
8613
8614         * amd64-tdep.c (amd64_classify): Add handling of TYPE_CODE_CHAR.
8615
8616 2008-01-29  Joel Brobecker  <brobecker@adacore.com>
8617
8618         * nto-tdep.h: Remove #include "defs.h".
8619         * nto-tdep.c: Add #include "defs.h".
8620         * Makefile.in (nto_tdep_h): Update dependencies.
8621         (nto-tdep.o): Likewise.
8622
8623 2008-01-29  Joel Brobecker  <brobecker@adacore.com>
8624
8625         * infrun.c (wait_for_inferior): Add treat_exec_as_sigtrap parameter
8626         and use it.
8627         (proceed, start_remote): Update call to wait_for_inferior.
8628         * inferior.h (wait_for_inferior): Update declaration.
8629         * fork-child.c, infcmd.c, solib-irix.c, solib-osf.c, solib-sunos.c,
8630         solib-svr4.c, win32-nat.c: Update calls to wait_for_inferior.
8631         * inf-ttrace.c (inf_ttrace_wait): Report TTEVT_EXEC events as
8632         TARGET_WAITKIND_EXECD instead of TARGET_WAITKIND_STOPPED.
8633
8634 2008-01-29  Aleksandar Ristovski  <aristovski@qnx.com>
8635
8636         * varobj (adjust_value_for_child_access): Added checking for
8637         returned value from gdb_value_ind.
8638         (c_describe_child): Likewise.
8639         (cplus_describe_child): Fixed a typo.
8640
8641 2008-01-29  Jim Blandy  <jimb@red-bean.com>
8642
8643         * MAINTAINERS: Update my info.
8644
8645 2008-01-29  Vladimir Prus  <vladimir@codesourcery.com>
8646
8647         Use multiple locations for hardware watchpoints.
8648         This eliminates the need to traverse value chain, doing
8649         various checks, in three different places.
8650
8651         * breakpoint.h (struct bp_location): New fields
8652         lengths and watchpoint_type.
8653         (struct breakpoint): Remove the val_chain field.
8654         * breakpoint.c (is_hardware_watchpoint): New.
8655         (free_valchain): Remove.
8656         (update_watchpoint): New.
8657         (insert_bp_location): For hardware watchpoint, just
8658         directly insert it.
8659         (insert_breakpoints): Call update_watchpoint_locations
8660         on all watchpoints.  If we have failed to insert
8661         any location of a hardware watchpoint, remove all inserted
8662         locations.
8663         (remove_breakpoint): For hardware watchpoints, directly
8664         remove location.
8665         (watchpoints_triggered): Iterate over locations.
8666         (bpstat_stop_status): Use only first location of
8667         a resource watchpoint.
8668         (delete_breakpoint): Don't call free_valchain.
8669         (print_one_breakpoint): Don't print all
8670         locations for watchpoints.
8671         (breakpoint_re_set_one): Use update_watchpoint for
8672         watchpoints.
8673
8674 2008-01-29  Vladimir Prus  <vladimir@codesourcery.com>
8675
8676         Don't reset watchpoint block on solib load.
8677
8678         * breakpoint.c (insert_bp_location): For watchpoints,
8679         recompute condition.
8680         (breakpoint_re_set_one): Instead of recomputing value
8681         and condition for watchpoints, just reset value and
8682         let insert_breakpoints/insert_bp_location recompute it.
8683         Don't do anything about disabled watchpoint.
8684
8685 2008-01-29  Pierre Muller  <muller@ics.u-strasbg.fr>
8686
8687         * valarith.c (value_binop): Handle unsigned integer
8688         division by zero.
8689
8690 2008-01-28  Kevin Buettner  <kevinb@redhat.com>
8691
8692         * mn10300-tdep.c (mn10300_analyze_prologue): Check for an
8693         instruction pattern that appears frequently in position
8694         independent code.  Fix bug in code which looks for "fmov" and
8695         backtracks if no "fmov" is found.
8696
8697 2008-01-28  Doug Evans  <dje@google.com>
8698
8699         * dbxread.c (read_dbx_symtab): Fix indentation.
8700         Reformat comments to 80 columns.
8701         Move local var def closer to only use.
8702
8703 2008-01-28  Daniel Jacobowitz  <dan@codesourcery.com>
8704
8705         * fork-child.c (SHELL_FILE): Remove #ifndef.
8706         (fork_inferior): Remove SHELL_COMMAND_CONCAT.
8707
8708 2008-01-25  Pierre Muller  <muller@ics.u-strasbg.fr>
8709
8710         * i386-tdep.c (i386_skip_noop): New function.
8711         (i386_analyze_prologue): Call i386_skip_noop function.
8712
8713 2008-01-24  Michael Snyder  <msnyder@specifix.com>
8714
8715         * procfs.c (procfs_xfer_partial): Comment, cut/paste error.
8716         * win32-nat.c (win32_xfer_partial): Ditto.
8717         * target.c (default_xfer_partial): Minor whitespace adjustment.
8718
8719 2008-01-24  Pedro Alves  <pedro@codesourcery.com>
8720
8721         * arm-tdep.c (arm_addr_bits_remove): In non 26-bit mode, don't
8722         strip bit 1 even if pc doesn't point to thumb code.
8723
8724 2008-01-23  Daniel Jacobowitz  <dan@codesourcery.com>
8725
8726         * remote.c (remote_wait): Handle SIGINT between packets.
8727         (remote_async_wait): Likewise.
8728
8729 2008-01-23  Vladimir Prus  <vladimir@codesourcery.com>
8730             Chris Demetriou  <cgd@google.com>
8731
8732         * thread.c (add_thread_silent): Renamed
8733         from add_thread.
8734         (print_thread_events): New variable definition.
8735         (show_print_thread_events): New function.
8736         (_initialize_thread): Add "set print thread-events" and
8737         "show print thread-events" commands.
8738         (add_thread): Announce new thread.
8739         * gdbthread.h (add_thread_silent): Declare.
8740         (print_thread_events): New variable declaration.
8741         * inf-ttrace.c (inf_ttrace_wait): Don't
8742         inform about new thread, as add_thread is always
8743         called too, and will take care of that.
8744         * infrun.c (handle_inferior_event): Likewise.
8745         * procfs.c (procfs_wait): Likewise.
8746         * remote.c (remote_currthread): Likewise.
8747         * sol-thread.c (sol_thread_wait): Likewise.
8748         * win32-nat.c (get_win32_debug_event): Likewise.
8749         * linux-thread-db.c (attach_thread): Likewise.
8750         Remove the verbose parameter.
8751         (check_event): Make detach_thread be verbose
8752         only if print_thread_events is set.
8753         * linux-nat.c (lin_lwp_attach_lwp): Don't inform
8754         about new thread.  This is called only from
8755         linux-thread-db.c:attach_thread, which will take care.
8756         Remove the verbose parameter.
8757         * linux-nat.h (lin_lwp_attach_lwp): Adjust prototype.
8758
8759 2008-01-23  Nick Roberts  <nickrob@snap.net.nz>
8760
8761         * mi/mi-cmd-var.c (mi_cmd_var_set_format): Add value field to output.
8762
8763 2008-01-22  Vladimir Prus  <vladimir@codesourcery.com>
8764
8765         * breakpoint.c (break_command_really): New parameter
8766         ignore_count.
8767         (break_command_1): Pass 0 as
8768         ignore_count to break_command_really.
8769         (gdb_breakpoint): Pass ignore_count to
8770         break_command_really.
8771
8772 2008-01-21  Kevin Buettner  <kevinb@redhat.com>
8773
8774         * mn10300-linux-tdep.c (am33_linux_sigframe_cache_init): Find
8775         sigcontext struct via pointer.
8776         (struct sigframe comment): Update to show new field `psc'.
8777
8778 2008-01-21  Vladimir Prus  <vladimir@codesourcery.com>
8779
8780         * infrun.c (handle_inferior_event): If
8781         we failed to remove breakpoints, error,
8782         don't try to increment PC by hand.
8783
8784 2008-01-18  Nick Hudson  <nick.hudson@dsl.pipex.com>
8785
8786         Add NetBSD/hppa target and host support.
8787
8788         * hppabsd-tdep.c (hppabsd_supply_gregset): Move to ...
8789         (hppabsd_gregset): Move to ...
8790         (hppabsd_regset_from_core_section): Rename
8791         hppaobsd_regset_from_core_section and move to ...
8792         (hppabsd_find_global_pointer): Update comment.
8793         (hppabsd_init_abi): Make global. Do not register
8794         hppabsd_regset_from_core_section.
8795         (hppabsd_core_osabi_sniffer): Rename hppaobsd_core_osabi_sniffer and
8796         move to ...
8797         (_initialize_hppabsd_tdep): Move to ...
8798         * hppaobsd-tdep.c: ... here. New file.
8799         * hppnbsd-tdep.c: New file.
8800         * hppnbsd-nat.c: New file.
8801         * Makefile.in (ALL_TARGET_OBS): Add hppanbsd-tdep.o and hppaobsd-tdep.o.
8802         (ALLDEPFILES): Add hppabsd-nat.c and hppabsd-tdep.c.
8803         (hppabsd-nat.o, hppabsd-tdep.o): New dependencies.
8804         (hppabsd-tdep.o, hppaobsd-tdep.o): Update dependencies.
8805         * configure.host (hppa*-*-netbsd*): New entry.
8806         * configure.tgt (hppa*-*-netbsd*): New entry.
8807         (hppa*-*-openbsd*): Update.
8808         * NEWS (New native configuration): Mention NetBSD/hppa.
8809         (New targets): Mention NetBSD/hppa.
8810
8811 2008-01-18  Markus Deuling  <deuling@de.ibm.com>
8812
8813         * gdbarch.sh (function_list): Add new property bits_big_endian to
8814         gdbarch structure.
8815         * gdbarch.{c,h}: Regenerate.
8816
8817         * value.c (struct value): Replace BITS_BIG_ENDIAN by
8818         gdbarch_bits_big_endian (comment).
8819         (unpack_field_as_long, modify_field): Likewise.
8820         * value.h: Likewise (comment).
8821         * valops.c (value_slice): Likewise.
8822         * valarith.c (value_subscript, value_bit_index): Likewise.
8823         * gdbtypes.h (field): Likewise (comment).
8824         * eval.c (evaluate_subexp_standard): Likewise.
8825         * dwarf2read.c (dwarf2_add_field): Likewise.
8826         * ada-lang.c (decode_packed_array, ada_value_primitive_packed_val)
8827         (move_bits, ada_value_assign, value_assign_to_component): Likewise.
8828
8829         * defs.h (BITS_BIG_ENDIAN): Remove.
8830
8831 2008-01-18  Markus Deuling  <deuling@de.ibm.com>
8832
8833         * jv-exp.y (yylex): Replace DEPRECATED_STREQN with the appropriate
8834         function calls.
8835         * m2-exp.y (yylex): Likewise.
8836         * objc-exp.y (yylex): Likewise.
8837
8838         * defs.h (DEPRECATED_STREQN): Remove.
8839
8840 2008-01-17  H.J. Lu  <hjl.tools@gmail.com>
8841
8842         * MAINTAINERS: Update my email address.
8843
8844 2008-01-17  Jim Blandy  <jimb@codesourcery.com>
8845
8846         * README: Mention gdbserver/README.
8847
8848 2008-01-17  Pierre Muller  <muller@ics.u-strasbg.fr>
8849
8850         * valarith.c (value_binop): Handle BINOP_INTDIV
8851         for unsigned and signed integers.
8852
8853 2008-01-17  Ulrich Weigand  <uweigand@de.ibm.com>
8854
8855         * s390-tdep.c (s390_gdbarch_init): Set default long double
8856         type to 128-bit IEEE quad.
8857
8858 2008-01-17  Joel Brobecker  <brobecker@adacore.com>
8859
8860         * hpux-thread.c (hpux_thread_resume): Delete commented-out code.
8861
8862 2008-01-16  Mark Kettenis  <kettenis@gnu.org>
8863
8864         * auxv.c (fprint_target_auxv): Add support for AT_SUN_AUXFLAGS.
8865
8866         * dfp.c, dfp.h: Rename decimal_to_double to decimal_to_doublest.
8867         * value.c: All callers changed.
8868
8869 2008-01-16  Markus Deuling  <deuling@de.ibm.com>
8870
8871         * rs6000-nat.c (add_vmap, vmap_ldinfo, vmap_exec): Replace
8872         DEPRECATED_STREQ by its expression.
8873         * coffread.c (coff_locate_sections, coff_symtab_read): Likewise.
8874         * xcoffread.c (read_xcoff_symtab, read_symbol_lineno, find_linenos)
8875         (scan_xcoff_symtab): Likewise.
8876         * hppa-hpux-tdep.c (hppa_hpux_skip_trampoline_code): Likewise.
8877         * f-lang.c (find_common_for_function): Likewise.
8878         * objc-exp.y (parse_number): Likewise.
8879
8880         * defs.h (DEPRECATED_STREQ): Remove.
8881
8882 2008-01-16  Markus Deuling  <deuling@de.ibm.com>
8883
8884         * mn10300-tdep.h (AM33_MODE): Add gdbarch as parameter.
8885         * mn10300-tdep.c (set_reg_offsets, mn10300_analyze_prologue): Use
8886         get_frame_arch to get at the current_architecture. Update AM33_MODE
8887         call.
8888         (mn10300_analyze_prologue): Add gdbarch as parameter. Update caller.
8889         (mn10300_frame_unwind_cache): Use get_frame_arch to get at the current
8890         architecture.
8891         (set_reg_offsets, mn10300_analyze_prologue): Fix indentation.
8892
8893 2008-01-16  Markus Deuling  <deuling@de.ibm.com>
8894
8895         * amd64-nat.h (amd64_native_gregset_supplies_p): Add gdbarch as
8896         parameter.
8897         * amd64-nat.c (amd64_native_gregset_supplies_p): Likewise.
8898
8899         (amd64_native_gregset_reg_offset): Add gdbarch as parameter. Replace
8900         current_gdbarch by gdbarch. Update caller.
8901
8902         * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers)
8903         (amd64_linux_store_inferior_registers): Use get_regcache_arch to get at
8904         the current architecture. Update calls of
8905         amd64_native_gregset_supplies_p.
8906         * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers)
8907         (amd64bsd_store_inferior_registers): Likewise.
8908
8909 2008-01-16  Markus Deuling  <deuling@de.ibm.com>
8910
8911         * ppc-linux-nat.c (ppc_register_u_addr): Add gdbarch as parameter.
8912         Replace current_gdbarch by gdbarch. Update caller.
8913
8914 2008-01-16  Markus Deuling  <deuling@de.ibm.com>
8915
8916         * dbxread.c (repeated_header_complaint, dbx_symfile_init)
8917         (read_dbx_dynamic_symtab, function_outside_compilation_unit_complaint)
8918         (read_dbx_symtab, end_psymtab, dbx_psymtab_to_symtab_1)
8919         (dbx_psymtab_to_symtab, read_ofile_symtab, process_one_symbol)
8920         (stabsect_build_psymtabs): Fix indentation.
8921
8922 2008-01-15  Michael Snyder  <msnyder@specifix.com>
8923
8924         * corelow.c (core_xfer_partial): Comment, cut/paste error.
8925
8926 2008-01-14  Pierre Muller  <muller@ics.u-strasbg.fr>
8927
8928         * win32-nat.c (win32_create_inferior): Restore code calling
8929         CloseHandle on ProcessInformation structure.
8930
8931 2008-01-13  Nick Hudson  <nick.hudson@dsl.pipex.com>
8932
8933         * configure.ac: Check for void * as 3 argument of ptrace.
8934         * configure: regenerate.
8935
8936 2008-01-11  Markus Deuling  <deuling@de.ibm.com>
8937
8938         * alpha-tdep.c (alpha_heuristic_proc_start)
8939         (alpha_sigtramp_register_address): Add gdbarch as parameter. Replace
8940         current_gdbarch by gdbarch.
8941
8942         (alpha_heuristic_frame_unwind_cache): Use get_frame_arch to get at the
8943         current architecture by frame_info. Update alpha_heuristic_proc_start
8944         call.
8945
8946         (alpha_sigtramp_frame_this_id, alpha_sigtramp_frame_prev_register): Use
8947         get_frame_arch to get at the current architecture by frame_info. Update
8948         alpha_sigtramp_register_address call.
8949
8950         * arm-tdep.c (thumb_scan_prologue): Add gdbarch as parameter and replace
8951         current_gdbarch by gdbarch. Update caller.
8952         (convert_to_extended, convert_from_extended): Add endianess parameter
8953         for comparison. Update caller.
8954         (arm_extract_return_value, arm_store_return_value): Use
8955         get_regcache_arch to get at the current architecture.
8956
8957         * cris-tdep.c (cris_register_size): Add gdbarch as parameter. Replace
8958         current_gdbarch by gdbarch. Update caller.
8959         (cris_gdb_func, move_to_preg_op, none_reg_mode_move_from_preg_op): Add
8960         gdbarch as parameter. Update caller. Replace current_gdbarch by gdbarch.
8961
8962         * h8300-tdep.c (E_PSEUDO_CCR_REGNUM, E_PSEUDO_EXR_REGNUM, BINWORD): Add
8963         gdbarch as parameter. Update caller.
8964         (h8300_init_frame_cache): Add gdbarch as parameter. Replace
8965         current_gdbarch by gdbarch. Update caller.
8966
8967         * hppa-tdep.c (skip_prologue_hard_way): Add gdbarch as parameter and
8968         update caller. Replace current_gdbarch by gdbarch.
8969
8970         * m32c-tdep.c (m32c_skip_trampoline_code): Use get_frame_arch to get at
8971         the current architecture. Replace current_gdbarch by gdbarch.
8972         * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Likewise.
8973         (STACK_CORRECTION, USE_PAGE_REGISTER): Replace M6811_TDEP by its
8974         expression. Add gdbarch as parameter and replace current_gdbarch with
8975         it. Update caller.
8976         (M6811_TDEP): Remove.
8977         (m68hc11_frame_prev_register): Use get_frame_arch to get at the current
8978         architecture.
8979         (m68hc11_scan_prologue): Add gdbarch as parameter. Replace
8980         current_gdbarch by gdbarch. Update caller.
8981
8982         * m68k-tdep.c (m68k_analyze_prologue): Add gdbarch as parameter and
8983         update caller.
8984         (m68k_analyze_register_saves): Likewise. Also replace current_gdbarch
8985         by gdbarch.
8986
8987         * rs6000-tdep.c (skip_prologue): Add gdbarch as parameter and update
8988         caller. Relace current_gdbarch by gdbarch.
8989         (altivec_register_p, spe_register_p): Likewise.
8990         * ppc-tdep.h (altivec_register_p, spe_register_p): Add gdbarch as
8991         parameter.
8992         * ppc-linux-nat.c (fetch_register, store_register): Update caller of
8993         altivec_register_p and spe_register_p.
8994
8995         * score-tdep.c (score_fetch_inst): Add gdbarch as parameter. Update
8996         caller. Replace current_gdbarch by gdbarch.
8997         (score_analyze_prologue): use get_frame_arch to get at the current
8998         architecture.
8999
9000         * sparc-tdep.h (sparc_analyze_prologue): Add gdbarch as parameter.
9001         * sparc-tdep.c (sparc_analyze_prologue): Likewise. Replace
9002         current_gdbarch by gdbarch. Update caller.
9003         (sparc_frame_cache): Use get_frame_arch to get at the current
9004         architecture.
9005         * sparce64-tdep.c (sparc64_skip_prologue): Update call of
9006         sparc_analyze_prologue.
9007
9008         * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): Add gdbarch as
9009         parameter.
9010
9011 2008-01-11  Markus Deuling  <deuling@de.ibm.com>
9012
9013         * exec.c: #include "arch-utils.h"
9014          (print_section_info): Use gdbarch_from_bfd to get at the
9015         current architecture. Replace current_gdbarch. Fix indention. Replace
9016         deprecated_print_address_numeric by paddress.
9017         * Makefile.in (exec.o) Add dependency to arch-utils.h.
9018
9019         * valprint.c (val_print_string): Replace
9020         deprecated_print_address_numeric.
9021         * tracepoint.c (trace_mention, scope_info): Likewise.
9022         * symmisc.c (dump_msymbols, dump_psymtab, dump_symtab_1, print_symbol)
9023         (print_symbol, print_partial_symbols, maintenance_info_psymtabs)
9024         (maintenance_check_symtabs): Likewise.
9025         * symfile.c (list_overlays_command): Likewise.
9026         * stack.c (frame_info, print_block_frame_labels): Likewise.
9027         * printcmd.c (print_address, print_address_demangle)
9028         (address_info): Likewise.
9029         * corefile.c (memory_error): Likewise.
9030         * infcmd.c (jump_command): Likewise.
9031         * breakpoint.c (insert_bp_location, describe_other_breakpoints)
9032         (mention, delete_breakpoint): Likewise.
9033         * c-valprint.c (print_function_pointer_address, c_val_print): Likewise.
9034         * dwarf2read.c (dump_die): Likewise.
9035         * ada-valprint.c (ada_val_print_1): Likewise.
9036         * f-valprint.c (f_val_print): Likewise.
9037         * linux-fork.c (info_forks_command): Likewise.
9038         * m32r-com.c (m32r_load_section, m32r_load)
9039         (m32r_upload_command): Likewise.
9040
9041         * ui-out.c (ui_out_field_core_addr): Remove unnecessary comment.
9042
9043 2008-01-11  Markus Deuling  <deuling@de.ibm.com>
9044
9045         * gdbarch.sh (skip_prologue): Add gdbarch
9046         as parameter.
9047         * gdbarch.{c,h}: Regenerate.
9048
9049         * alpha-tdep.c (alpha_skip_prologue): Add gdbarch as parameter.
9050         * amd64-tdep.c (amd64_skip_prologue): Likewise.
9051         * avr-tdep.c (avr_skip_prologue): Likewise.
9052         * cris-tdep.c (cris_skip_prologue): Likewise.
9053         * frv-tdep.c (frv_skip_prologue): Likewise.
9054         * h8300-tdep.c (h8300_skip_prologue): Likewise.
9055         * hppa-tdep.c (hppa_skip_prologue): Likewise.
9056         * i386-tdep.c (i386_skip_prologue): Likewise.
9057         * ia64-tdep.c (ia64_skip_prologue): Likewise.
9058         * iq2000-tdep.c (iq2000_skip_prologue): Likewise.
9059         * m32r-tdep.c (m32r_skip_prologue): Likewise.
9060         * m68hc11-tdep.c (m68hc11_skip_prologue): Likewise.
9061         * m68k-tdep.c (m68k_skip_prologue): Likewise.
9062         * m88k-tdep.c (m88k_skip_prologue): Likewise.
9063         * mep-tdep.c (mep_skip_prologue): Likewise.
9064         * mips-tdep.c (mips_skip_prologue): Likewise.
9065         * mn10300-tdep.c (mn10300_skip_prologue): Likewise.
9066         * mt-tdep.c (mt_skip_prologue): Likewise.
9067         * rs6000-tdep.c (rs6000_skip_prologue): Likewise.
9068         * score-tdep.c (score_skip_prologue): Likewise.
9069         * sh64-tdep.c (sh64_skip_prologue): Likewise.
9070         * sh-tdep.c (sh_skip_prologue): Likewise.
9071         * sparc64-tdep.c (sparc64_skip_prologue): Likewise.
9072         * sparc-tdep.c (sparc32_skip_prologue): Likewise.
9073         * spu-tdep.c (spu_skip_prologue): Likewise.
9074         * v850-tdep.c (v850_skip_prologue): Likewise.
9075         * vax-tdep.c (vax_skip_prologue): Likewise.
9076         * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
9077         * xtensa-tdep.c (xtensa_skip_prologue): Likewise.
9078
9079         * arm-tdep.c (arm_skip_prologue): Add gdbarch as parameter. Replace
9080         current_gdbarch by gdbarch.
9081         * m32c-tdep.c (m32c_skip_prologue): Likewise.
9082         * s390-tdep.c (s390_skip_prologue): Likewise.
9083
9084 2008-01-10  Doug Evans  <dje@google.com>
9085
9086         * defs.h (struct continuation_arg): Fix typo in comment.
9087         * target.c (target_translate_tls_address): Fix comment spelling error.
9088
9089 2008-01-09  Thiago Jung Bauermann  <bauerman@br.ibm.com>
9090
9091         * doublest.h (DOUBLEST_PRINT_FORMAT): Remove % from string.
9092         (DOUBLEST_SCAN_FORMAT): Likewise.
9093         * dfp.c (decimal_from_floating): Use DOUBLEST_PRINT_FORMAT.
9094         * ada-lex.l (processReal): Prepend "%" to use of DOUBLEST_SCAN_FORMAT.
9095         * c-exp.y (parse_number): Likewise.
9096         * jv-exp.y (parse_number): Likewise.
9097         * objc-exp.y (parse_number): Likewise.
9098         * p-exp.y (parse_number): Likewise.
9099
9100 2008-01-09  Joel Brobecker  <brobecker@adacore.com>
9101
9102         * gdbtypes.c (create_array_type): Add handling of null Ada arrays.
9103         (check_typedef): Likewise.
9104
9105 2008-01-09  Luis Machado  <luisgpm@br.ibm.com>
9106
9107         * printcmd.c (printf_command): Add seen_big_h, seen_big_d and
9108         seen_double_big_d, treat the new H, D, and DD modifiers as length
9109         modifiers.
9110
9111 2008-01-08  Joel Brobecker  <brobecker@adacore.com>
9112
9113         * dwarf2read.c (read_enumeration_type): Add comment.
9114
9115 2008-01-08  Thiago Jung Bauermann  <bauerman@br.ibm.com>
9116
9117         * config.in: Regenerate.
9118
9119 2008-01-08  Joel Brobecker  <brobecker@adacore.com>
9120
9121         * ada-lang.c (ada_convert_actual): Renames convert_actual.
9122         Make non-static.
9123         (ada_convert_actuals): Delete.
9124         * ada-lang.h (ada_convert_actual): Add declaration.
9125         (ada_convert_actuals): Remove declaration.
9126         * infcall.c: #include "ada-lang.h".
9127         (value_arg_coerce): Add new parameter sp.  Update function
9128         documetnation.  Add handling of Ada function call parameters.
9129         * Makefile.in (infcall.o): Update dependencies.
9130
9131 2008-01-08  Paul Hilfinger  <hilfinger@adacore.com>
9132
9133         * ada-lang.c (ensure_lval): Fix value lval kind.
9134         (convert_actual): Add handling for arguments passed by reference.
9135
9136 2008-01-08  Doug Evans  <dje@google.com>
9137
9138         * dbxread.c (read_dbx_symtab): Fix indentation.
9139
9140 2008-01-07  Thiago Jung Bauermann  <bauerman@br.ibm.com>
9141
9142         * Makefile.in (dfp.o): Depend on expression.h, gdbtypes.h and value.h.
9143         (valarith.o): Depend on dfp.h.
9144         (valops.o): Likewise.
9145         * dfp.c: Include expression.h, gdbtypes.h, value.h and dfp.h.
9146         (set_decnumber_context): New function.
9147         (decimal_check_errors): Likewise.
9148         (decimal_from_number): Likewise.
9149         (decimal_to_number): Likewise.
9150         (decimal_from_string): Use set_decnumber_context and
9151         decimal_check_errors.
9152         (decimal_from_integral): New function.
9153         (decimal_from_floating): Likewise.
9154         (decimal_to_double): Likewise.
9155         (promote_decimal): Likewise.
9156         (decimal_binop): Likewise.
9157         (decimal_is_zero): Likewise.
9158         (decimal_compare): Likewise.
9159         (decimal_convert): Likewise.
9160         * dfp.h (decimal_from_integral): New prototype.
9161         (decimal_from_floating): Likewise.
9162         (decimal_to_double): Likewise.
9163         (decimal_binop): Likewise.
9164         (decimal_is_zero): Likewise.
9165         (decimal_compare): Likewise.
9166         (decimal_convert): Likewise.
9167         * eval.c (evaluate_subexp_standard): Remove expect_type argument from
9168         call to value_from_decfloat.
9169         * valarith.c: Include dfp.h.
9170         (value_args_as_decimal): New function.
9171         (value_binop): Add if block to handle TYPE_CODE_DECFLOAT values.
9172         (value_logical_not): Likewise.
9173         (value_equal): Likewise.
9174         (value_less): Likewise.
9175         (value_pos): Likewise.
9176         (value_neg): Formatting fix.
9177         * valops.c: Include dfp.h.
9178         (value_cast): Add if block to handle TYPE_CODE_DECFLOAT values.
9179         * value.c (unpack_long): Add case to handle TYPE_CODE_DECFLOAT.
9180         (unpack_double): Add if block to handle TYPE_CODE_DECFLOAT.
9181         (value_from_decfloat): Remove expect_type argument.
9182         * value.h (value_from_decfloat): Update prototype.
9183
9184 2008-01-07  Vladimir Prus  <vladimir@codesourcery.com>
9185
9186         Ignore change in name of dynamic linker during
9187         execution on Solaris.  This also unbreaks pending breakpoints.
9188
9189         * solist.h (struct target_so_ops): New field same.
9190         * solib-svr4.c (svr4_same): New.
9191         (_initialize_svr4_solib): Register svr4_same.
9192         * solib.c (update_solib_list): Use ops->same, if available.
9193
9194 2008-01-06  Christopher Faylor  <me+cygwin@cgf.cx>
9195
9196         * win32-nat.c (win32_make_so): Use cygwin-style path to avoid warnings
9197         when using MS-DOS paths.
9198
9199 2008-01-05  Pedro Alves  <pedro@codesourcery.com>
9200
9201         * NEWS: Mention --pid and --core command line behaviour changes.
9202
9203 2008-01-05  Pedro Alves  <pedro@codesourcery.com>
9204
9205         * main.c (captured_main): Remove 'count' varible and the
9206         ALIGN_STACK_ON_ENTRY block that used it.  Error out if --core and
9207         --pid options were issued simultaneously.  If an explicit pid
9208         option was passed, don't fallback to core file.  Detect extra
9209         arguments better in the presence of explicit pid or core
9210         arguments.
9211
9212 2008-01-05  Joel Brobecker  <brobecker@adacore.com>
9213
9214         * ada-lang.c (ada_which_variant_applies): Correctly compute
9215         the value of the discriminant when the variant record is packed.
9216
9217 2008-01-04  Joel Brobecker  <brobecker@adacore.com>
9218
9219         * ada-lang.c (is_name_suffix): Handle middle-name numeric suffixes
9220         that are used to differentiate homonyms.
9221
9222 2008-01-04  Jerome Guitton  <guitton@adacore.com>
9223
9224         * ada-lang.c (decode_packed_array_type): Avoid a seg fault
9225         when the type is an anonymous pointer type.
9226         (ada_check_typedef): Avoid a seg fault when the type is null.
9227         * ada-typeprint.c (print_array_type): Add support for pointer
9228         to packed arrays.
9229
9230 2008-01-04  Paul N. Hilfinger  <hilfinger@adacore.com>
9231
9232         * ada-exp.y: Allow '{type} ADDRESS' notation on left of assignment.
9233
9234 2008-01-04  Joel Brobecker  <brobecker@adacore.com>
9235
9236         * ada-lang.c (ada_evaluate_subexp): Evaluate tagged types in
9237         EVAL_NORMAL mode when noside is EVAL_AVOID_SIDE_EFFECTS.
9238
9239 2008-01-04  Joel Brobecker  <brobecker@adacore.com>
9240
9241         * ada-exp.y (chop_separator): New function.
9242         (write_selectors): Rewrite to re-use chop_separator.
9243         (ada_nget_field_index, get_symbol_field_type): New functions.
9244         (write_var_or_type): Add support for "ptype TYPENAME.FIELD"
9245         expressions.
9246
9247 2008-01-03  Thiago Jung Bauermann  <bauerman@br.ibm.com>
9248
9249         * symtab.c (find_pc_sect_line): Use SYMBOL_VALUE_ADDRESS instead
9250         of SYMBOL_VALUE when working with function symbols.
9251
9252 2008-01-03  Joel Brobecker  <brobecker@adacore.com>
9253
9254         * ada-lang.c (resolve_subexp): Add handling of OP_REGISTER
9255         expressions.  These expressions do not need to be rewriten.
9256
9257 2008-01-03  Joel Brobecker  <brobecker@adacore.com>
9258
9259         * dwarf2read.c (read_enumeration_type): Flag type as stub if
9260         the given die is a declaration.
9261
9262 2008-01-03  Joel Brobecker  <brobecker@adacore.com>
9263
9264         * ada-lang.c (ada_array_bound_from_type): Make non-static.
9265         Handle properly the case when the index type is an enumerated type.
9266         Do not return the subtype of the bounds type, just return the
9267         bounds type directly - this is not needed and is more consistent
9268         with what we do for arrays when no XA parallel type exists.
9269
9270 2008-01-03  Joel Brobecker  <brobecker@adacore.com>
9271
9272         * ada-lang.c (static_unwrap_type): Add forward declaration.
9273         (template_to_static_fixed_type): Fields of dynamic types sometimes
9274         also need to be unwrapped. Take this into account.
9275         (ada_to_fixed_type_1): Renamed from ada_to_fixed_type.
9276         (ada_to_fixed_type): New wrapper around ada_to_fixed_type_1.
9277         * ada-typeprint.c (ada_print_type): Get the typename from
9278         the original type, not the base type.
9279
9280 2008-01-03  Jerome Guitton  <guitton@adacore.com>
9281
9282         * ada-lang.c (ada_value_struct_elt, to_fixed_array_type)
9283         (to_fixed_array_type, ada_to_fixed_value_create, unwrap_value):
9284         Update calls to ada_to_fixed_type.
9285         (ada_template_to_fixed_record_type_1): Ditto, but without looking
9286         for the tag.
9287         (ada_to_fixed_type): Add check_tag parameter; do not look for
9288         tag if null.  When looking for a tag, use a fixed record type.
9289         * ada-lang.h (ada_to_fixed_type): Add check_tag parameter.
9290         * ada-valprint.c (printable_val_type, ada_value_print): Update
9291         calls to ada_to_fixed_type.
9292
9293 2008-01-03  Luis Machado  <luisgpm@br.ibm.com>
9294
9295         * doublest.c (convert_floatformat_to_doublest): Call
9296         floatformat_to_doublest instead of floatformat_to_double and use
9297         DOUBLEST variables.
9298         (convert_doublest_to_floatformat): Call floatformat_from_doublest
9299         instead of floatformat_from_double and use DOUBLEST variables.
9300
9301 2008-01-03  Nick Hudson  <nick.hudson@dsl.pipex.com>
9302
9303         * MAINTAINERS (Write After Approval): Add self.
9304
9305 2008-01-03  Joel Brobecker  <brobecker@adacore.com>
9306
9307         * symfile.c (set_initial_language): Make non-static.
9308         * symfile.h (set_initial_language): Add declaration.
9309         * language.c: #include "symfile.h".
9310         (set_language): Call set_initial_language if the frame language
9311         could not be determined.
9312
9313 2008-01-03  Paul N. Hilfinger  <hilfinger@adacore.com>
9314
9315         * eval.c (evaluate_subexp_for_address): Provide frame address to
9316         locate_var_value only if it will be needed.
9317
9318 2008-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
9319
9320         * linux-nat.c (linux_child_follow_fork): Call also CHECK_FOR_THREAD_DB.
9321
9322 2008-01-02  Joel Brobecker  <brobecker@adacore.com>
9323
9324         * ada-lang.c (ada_evaluate_subexp): Modify the value returned
9325         when noside is EVAL_AVOID_SIDE_EFFECTS to be an lval_memory.
9326         This is needed to make sure that any other treatment applied
9327         to the resulting value does not fail for spurious reason,
9328         such as trying to take the address of this value.
9329
9330 2008-01-02  Joel Brobecker  <brobecker@adacore.com>
9331
9332         * ada-lang.c (ada_value_equal): Dereference reference types when
9333         comparing arrays.
9334
9335 2008-01-01  Daniel Jacobowitz  <dan@codesourcery.com>
9336
9337         Updated copyright notices for most files.
9338
9339 2008-01-01  Christopher Faylor  <me+gdb@cgf.cx>
9340
9341         * win32-nat.c (psapi_module_handle): Remove static.
9342         (get_module_name): Rename from psapi_get_dll_name.  Revamp slightly to
9343         return first module found if base_address is zero.  Don't initialize
9344         psapi function pointers here.  Convert to cygwin paths when
9345         appropriate.
9346         (win32_pid_to_exec_file): Use Cygwin's /proc interface to determine
9347         executable name.  Use get_module_name when that fails or when
9348         !__CYGWIN__.
9349         (_initialize_psapi): New function.  Initialize psapi stuff before it is
9350         needed or issue a warning if it is not found.  Move psapi_module_handle
9351         here.
9352
9353 2008-01-01  Joel Brobecker  <brobecker@adacore.com>
9354
9355         * ada-lang.c (ada_remove_trailing_digits): New function.
9356         (ada_remove_po_subprogram_suffix): New function.
9357         (ada_decode): Improve. Move the description of the algorithm
9358         directly inside the code, instead of in the function global
9359         description.
9360
9361 2008-01-01  Joel Brobecker  <brobecker@adacore.com>
9362
9363         * ada-valprint.c (ada_val_print_1) [TYPE_CODE_REF]: Ignore deref_ref
9364         and always print the dereferenced value.
9365
9366 2008-01-01  Joel Brobecker  <brobecker@adacore.com>
9367
9368         * ada-lang.c (ada_evaluate_subexp, case BINOP_SUB): Add handling
9369         of the case where the first argument is a reference.
9370         (ada_evaluate_subexp, case BINOP_ADD): Likewise.
9371
9372 2008-01-01  Joel Brobecker  <brobecker@adacore.com>
9373
9374         Implement support for Ada interface types.
9375
9376         * ada-lang.c (ada_is_dispatch_table_ptr_type): New function.
9377         (ada_is_ignored_field): Ignore fields that are a dispatch table
9378         of a tagged type.
9379
9380 2008-01-01  Joel Brobecker  <brobecker@adacore.com>
9381
9382         * top.c (print_gdb_version): Update copyright year.
9383
9384 2008-01-01  Joel Brobecker  <brobecker@adacore.com>
9385
9386         * ChangeLog-2007: New ChangeLog rotation.
9387         * ChangeLog: Reset for 2008.
9388         * config/djgpp/fnchange.lst: Add entries for ChangeLog-2006 and
9389         ChangeLog-2007.
9390
9391 For older changes see ChangeLog-2007.
9392 \f
9393 Local Variables:
9394 mode: change-log
9395 left-margin: 8
9396 fill-column: 74
9397 version-control: never
9398 coding: utf-8
9399 End: