OSDN Git Service

* dec-thread.c (dec_thread_wait): Add options parameter. Use it
[pf3gnuchains/pf3gnuchains3x.git] / gdb / ChangeLog
1 2009-05-21  Pedro Alves  <pedro@codesourcery.com>
2
3         * dec-thread.c (dec_thread_wait): Add options parameter.  Use it
4         to call the to_wait method in the target beneath.
5         * remote-m32r-sdi.c (m32r_wait): Add options parameter.
6
7 2009-05-21  Joel Brobecker  <brobecker@adacore.com>
8
9         * aix-thread.c (aix_thread_wait): Add options parameter.  Use it
10         to call the to_wait method in the target_beneath.
11
12 2009-05-21  Pedro Alves  <pedro@codesourcery.com>
13
14         * linux-nat.c (linux_nat_terminal_inferior)
15         (linux_nat_terminal_ours): Don't check sync_execution.
16         * remote.c (remote_terminal_inferior, remote_terminal_ours):
17         Don't check sync_execution.  Update comments.
18         * target.c (target_terminal_inferior): New.
19         * target.h (target_terminal_inferior): Delete macro, and declare
20         as function.
21         * event-top.c (async_disable_stdin): Make idempotent.  Don't give
22         the target the terminal here.
23         * inflow.c (terminal_ours_1): Don't return early without setting
24         `terminal_is_ours'.
25
26 2009-05-21  Pedro Alves  <pedro@codesourcery.com>
27
28         * target.h (TARGET_WNOHANG): New.
29         * target.c (target_wait): Add `options' argument.  Adjust.
30         (struct target_ops) <to_wait>: Add `options' argument.
31         (target_wait): Add `options' argument.
32         * infrun.c (wait_for_inferior): Pass 0 as options to
33         target_wait (blocking wait).
34         (fetch_inferior_event): Pass TARGET_WNOHANG as options to
35         target_wait.
36         * fork-child.c (startup_inferior): Pass 0 as options to
37         target_wait (blocking wait).
38         * linux-nat.c (linux_nat_create_inferior): Remove async masking.
39         (linux_nat_wait_1): Add `target_options' argument.  Use it instead
40         of checking on target_can_async_p.
41         (linux_nat_wait): Add `target_options' argument.  Adjust.
42         * remote.c (remote_wait_ns): Add `options' argument.  Adjust to
43         check on TARGET_WNOWAIT instead of checking on remote_is_async_p.
44         (remote_wait_as): Add `options' argument.  Adjust to check on
45         TARGET_WNOWAIT instead of checking on remote_is_async_p.  If doing
46         a blocking wait, keep waiting until an interesting event comes
47         out.
48         (remote_wait): Add `options' argument.  Don't loop here if the
49         target is in async mode, and a blocking wait has been requested.
50
51         * top.c (deprecated_target_wait_hook): Add `options' argument.
52         * linux-thread-db.c (thread_db_wait): Add `options' argument, and
53         pass it down to the layer beneath.
54         * inf-ptrace.c (inf_ptrace_wait): Add `options' argument.
55         * record.c (record_beneath_to_wait): Add `options' argument.
56         (record_wait): Add `options' argument, and pass it down to the
57         layer beneath.
58         * bsd-uthread.c (bsd_uthread_wait): Add `options' argument.
59         * darwin-nat.c (darwin_wait): Likewise.
60         * defs.h (deprecated_target_wait_hook): Likewise.
61         * gnu-nat.c (gnu_wait): Add `options' argument.
62         * go32-nat.c (go32_wait): Likewise.
63         * hpux-thread.c (hpux_thread_wait): Add `options' argument, and
64         pass it down to the layer beneath.
65         * inf-ttrace.c (inf_ttrace_wait): Add `options' argument.
66         * monitor.c (monitor_wait): Likewise.
67         * nto-procfs.c (procfs_wait): Likewise.
68         * remote-mips.c (mips_wait): Add `options' argument.
69         * remote-sim.c (gdbsim_wait): Likewise.
70         * rs6000-nat.c (rs6000_wait): Add `options' argument.
71         * sol-thread.c (sol_thread_wait): Add `options' argument, and pass
72         it down to the layer beneath.
73         * spu-linux-nat.c (spu_child_wait): Add `options' argument.
74         * windows-nat.c (windows_wait): Likewise.
75         * tui/tui-hooks.c (tui_target_wait_hook): Likewise.  Adjust.
76
77 2009-05-21  Pedro Alves  <pedro@codesourcery.com>
78
79         * mi/mi-interp.c (mi_on_resume): Account for whole process
80         resumes.
81
82 2009-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
83
84         * m2-exp.y (MAX_FUNC): Fix trailing UNOP_MAX.
85
86 2009-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
87
88         * dwarf2read.c (set_cu_language): Recognize also DW_LANG_C99.
89
90 2009-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
91
92         Fix parsing DW_AT_const_value using DW_FORM_string.
93         * dwarf2read.c (dwarf2_const_value <DW_FORM_string>): New.
94
95 2009-05-20  Joel Brobecker  <brobecker@adacore.com>
96
97         * aix-thread.c (giter_count): Do not count the main thread.
98         (giter_accum): Do not include the main thread.
99
100 2009-05-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
101
102         Remove the PROT parameter from openp.
103         * source.c (openp): Remove the parameter PROT.  Assertion check MODE.
104         defs.h (openp): Update the prototype.
105         Update all the openp callers.
106
107 2009-05-19  Pedro Alves  <pedro@codesourcery.com>
108
109         * inflow.c (kill_command): Moved to infcmd.c.
110         (_initialize_inflow): Don't add the "kill" command or clear
111         inferior_ptid here.
112         * infcmd.c (kill_command): Moved here from inflow.c.
113         (_initialize_infcmd): Add the "kill" command here.
114
115 2009-05-19  Pedro Alves  <pedro@codesourcery.com>
116
117         * fork-child.c: Don't include frame.h.  Include terminal.h.
118         (fork_inferior): Call new_tty_postfork after forking adn adding
119         the child to the inferior list.
120         * inferior.h (new_tty_prefork, gdb_has_a_terminal): Don't declare
121         here.
122         * inflow.c (struct terminal_info): Remove const qualifier from
123         `run_terminal' field.
124         (inferior_thisrun_terminal): Tweak comment.
125         (inflow_inferior_exit): Release the `run_terminal' field.
126         (copy_terminal_info): New function.
127         (new_tty_postfork): New function.
128         * terminal.h (new_tty_prefork, new_tty, new_tty_postfork,
129         (copy_terminal_info, gdb_has_a_terminal, gdb_setpgid): Declare.
130         * inf-ptrace.c: Include terminal.h.
131         (inf_ptrace_follow_fork): Copy the parent's terminal info to the
132         child.
133         * linux-nat.c: Include terminal.h.
134         (linux_child_follow_fork): Copy the parent's terminal info to the
135         child.
136         * inf-ttrace.c: Include terminal.h.
137         (inf_ttrace_follow_fork): Copy the parent's terminal info to the
138         child.
139
140 2009-05-19  Pedro Alves  <pedro@codesourcery.com>
141
142         * breakpoint.c (insert_breakpoints, breakpoint_init_inferior)
143         (update_global_location_list): Use gdbarch_has_global_breakpoints
144         instead of gdbarch_has_global_solist and
145         target_supports_multi_process.
146         * dicos-tdep.c (dicos_init_abi): Set
147         gdbarch_has_global_breakpoints.
148         * gdbarch.sh (has_global_solist): Update comment.
149         (has_global_breakpoints): New.
150         * remote.c (remote_start_remote): Use
151         gdbarch_has_global_breakpoints instead of
152         gdbarch_has_global_solist.
153         * target.c (target_detach): Use gdbarch_has_global_breakpoints
154         instead of gdbarch_has_global_solist.
155         * infcmd.c (attach_command): Use gdbarch_has_global_solist instead
156         of target_supports_multi_process.
157
158 2009-05-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
159
160         * objc-lang.c (find_methods): Plug a small memory leak.
161
162 2009-05-18  Pedro Alves  <pedro@codesourcery.com>
163
164         * solib-svr4.c: Include observer.h.
165         (debug_base, debug_loader_offset_p, debug_loader_offset)
166         (debug_loader_name, main_lm_addr): Move these globals...
167         (struct svr4_info): ... into this new structure.
168         (svr4_info_p): New typedef.
169         (svr4_info): New global.
170         (get_svr4_info, remove_svr4_info, solib_svr4_inferior_exit): New
171         functions.
172         (locate_base, solib_svr4_r_map, solib_svr4_r_brk)
173         (solib_svr4_r_ldsomap): Add svr4_info argument.  Adjust to
174         per-inferior svr4.
175         (open_symbol_file_object): Adjust to per-inferior svr4.
176         (svr4_default_sos, svr4_current_sos, svr4_fetch_objfile_link_map):
177         Ditto.
178         (enable_break): Add svr4_info argument.  Adjust to per-inferior
179         svr4.
180         (enable_break, svr4_solib_create_inferior_hook, svr4_clear_solib):
181         Adjust to per-inferior svr4.
182         (_initialize_svr4_solib): Install the solib_svr4_inferior_exit
183         observer.
184
185 2009-05-18  Pedro Alves  <pedro@codesourcery.com>
186
187         * linux-nat.h (linux_proc_get_tgid): Declare.
188         * linux-nat.c (linux_proc_get_tgid): New.
189         * linux-thread-db.c (struct thread_db_info): New field
190         `need_stale_parent_threads_check'.
191         (add_thread_db_info): Set it.
192         (find_new_threads_callback): Ignore stale fork parent threads.
193         (thread_db_resume): New.
194         (init_thread_db_ops): Install thread_db_resume.
195
196 2009-05-18  Pedro Alves  <pedro@codesourcery.com>
197
198         * fork-child.c (fork_inferior): Only reset the thread list if this
199         is the first inferior.
200         (startup_inferior): If the target support multi-process, tell it
201         to resume only the new process.
202         * linux-nat.c (num_lwps): Delete global.
203         (purge_lwp_list): New function.
204         (num_lwps): New function.
205         (add_lwp, delete_lwp): Adjust.
206         (ptid_match): New.
207         (iterate_over_lwps): Add filter argument.  Handle it.
208         (linux_nat_attach): Remove FIXME note.
209         (linux_nat_detach): Adjust to iterate over threads of the inferior
210         we're detaching from.  Adjust to num_lwps being a function.  Don't
211         assume the head of the lwp list is the main thread of the process
212         we're detaching from.  Don't destroy the LWP list.
213         (resume_callback): Add debug output.
214         (linux_nat_resume): Handle resuming a single inferior.  Allow a
215         wildcard resume in non-stop mode.
216         (linux_handle_extended_wait): Don't assume inferior_ptid is the
217         correct inferior of the parent LWP.
218         (status_callback): Also check lp->waitstatus.
219         (select_event_lwp): Add new filter parameter.  Handle it.
220         (linux_nat_filter_event): Adjust to num_lwps being a function.
221         (linux_nat_wait_1): When adding the first lwp of the inferior, use
222         an is_lwp check instead of checking for the number of lwps.
223         (linux_nat_wait_1): Handle waiting for a specific tgid.  Handle
224         pending process exit statuses.
225         (linux_nat_mourn_inferior): Don't destroy all the LWP info.
226         Instead delete LWPs of the inferior that we're mourning.  Don't
227         unregister from the event loop here.
228         (linux_nat_pid_to_str): Use `num_lwps'.
229         (linux_nat_make_corefile_notes): Adjust to walk over lwps of a
230         single inferior.
231         (linux_nat_is_async_p): Check if async was masked out.
232         (linux_multi_process): New global.
233         (linux_nat_supports_multi_process): New.
234         (linux_nat_stop_lwp): Remove LWP filtering.  It is done by the
235         caller.
236         (linux_nat_stop): Adjust to make iterate_over_lwps itself do the
237         LWP filtering.
238         (linux_nat_close): New.
239         (linux_nat_add_target): Register linux_nat_close and
240         linux_nat_supports_multi_process.
241         * linux-nat.h (iterate_over_lwps): Add filter argument.
242         * linux-thread-db.c (thread_db_handle): Delete.
243         (proc_handle, thread_agent, td_init_p, td_ta_new_p)
244         (td_ta_map_id2thr_p, td_ta_map_lwp2thr_p, td_ta_thr_iter_p)
245         (td_ta_event_addr_p, td_ta_set_event_p, td_ta_event_getmsg_p)
246         (td_thr_validate_p, td_thr_get_info_p, td_thr_event_enable_p)
247         (td_thr_tls_get_addr_p, td_create_bp_addr, td_death_bp_addr): No
248         longer globals, moved to...
249         (struct thread_db_info): ... this new structure.
250         (thread_db_list): New.
251         (add_thread_db_info, get_thread_db_info, delete_thread_db_info):
252         New.
253         (have_threads_callback): Filter out threads of all inferiors but
254         the one specified by the ARGS argument.
255         (have_threads): Add ptid argument specifying the inferior we're
256         interested in.  Handle it.
257         (struct thread_get_info_inout): New.
258         (thread_get_info_callback, thread_from_lwp): Adjust to use it.
259         (thread_db_attach_lwp): Check that inferior of the passed in
260         thread is using thread-db.  Adjust.
261         (enable_thread_event): Remove thread_agent parameter.  Instead,
262         get it from the per-inferior thread-db info.
263         (dladdr_to_soname): Move higher up.
264         (enable_thread_event_reporting): Adjust to use per-inferior
265         thread-db info.
266         (try_thread_db_load_1): Replace `handle' parameter by a
267         thread_db_info parameter.  Adjust to use per-inferior thread-db
268         info.
269         (try_thread_db_load): Adjust to use per-inferior thread-db info.
270         (thread_db_load, disable_thread_event_reporting): Ditto.
271         (check_for_thread_db): Remove conditional reporting of which
272         libthread_db is in use.
273         (thread_db_new_objfile): Add comment about inferior_ptid.
274         (attach_thread): Adjust to use per-inferior thread-db info.
275         (thread_db_detach): Adjust to use per-inferior thread-db info.
276         Remove thread event breakpoints of the current inferior.  Only
277         unpush the thread-db target if there are no more processes using
278         it.
279         (check_event): Adjust to use per-inferior thread-db info.
280         (thread_db_wait): Adjust to use per-inferior thread-db info.  Only
281         unpush the thread-db target if there are no more processes using
282         it.
283         (thread_db_mourn_inferior): Adjust to use per-inferior thread-db
284         info.  Mark breakpoints of the current inferior out before
285         deleting them.  Only unpush the thread-db target if there are no
286         more processes using it.
287         (find_new_threads_callback): Adjust to use per-inferior thread_db
288         info.
289         (thread_db_find_new_threads_1): Add new ptid argument.  Adjust to
290         use per-inferior thread-db info.
291         (thread_db_find_new_threads): Adjust to use per-inferior thread-db
292         info.
293         (thread_db_get_thread_local_address): Adjust.
294         (thread_db_get_ada_task_ptid): Adjust.
295         * inf-ptrace.c (inf_ptrace_mourn_inferior): Only unpush the target
296         if there no more processes left to debug.
297         * thread.c (set_running, set_executing): Handle resuming all
298         threads of a single inferior.
299         * mi/mi-interp.c (mi_output_running_pid): New.
300         (mi_inferior_count): New.
301         (mi_on_resume): For backwards compatibility, if resuming all
302         threads of an inferior, and there is only one inferior, output
303         "all".
304
305 2009-05-18  Ulrich Weigand  <uweigand@de.ibm.com>
306
307         * ada-lang.c (ada_find_any_type): Move check for primitive types ...
308         (to_fixed_range_type): ... to here.
309
310 2009-05-18  Ulrich Weigand  <uweigand@de.ibm.com>
311
312         * ada-lang.c (desc_data_type): Remove, replace by ...
313         (desc_data_target_type): ... this.
314         (thin_data_pntr): Use desc_data_target_type instead of desc_data_type.
315         (ada_is_array_descriptor_type): Likewise.
316         (ada_type_of_array): Likewise.
317         (ada_coerce_to_simple_array_type): Likewise.
318         (ada_array_element_type): Likewise.
319
320 2009-05-18  Ulrich Weigand  <uweigand@de.ibm.com>
321
322         * ada-valprint.c (ada_val_print_1): Use val_print_string to print
323         result of ada_vax_float_print_function inferior call.
324
325 2009-05-18  Ulrich Weigand  <uweigand@de.ibm.com>
326
327         * ada-lang.c (ada_coerce_to_simple_array_type): Reimplement to
328         avoid creating a dummy value.
329
330 2009-05-18  Ulrich Weigand  <uweigand@de.ibm.com>
331
332         * p-valprint.c (pascal_val_print): Use extract_typed_address
333         to extract reference value.
334
335 2009-05-18  Ulrich Weigand  <uweigand@de.ibm.com>
336
337         * doublest.c (NAN): Remove unused define.
338         (extract_floating_by_length, deprecated_extract_floating): Remove.
339         (store_floating_by_length, deprecated_store_floating): Remove.
340         (extract_typed_floating): Do not call extract_floating_by_length.
341         (store_typed_floating): Do not call store_floating_by_length.
342         (convert_typed_floating): Remove redundant assertions.
343         * doublest.h (deprecated_extract_floating): Remove.
344         (deprecated_store_floating): Remove.
345         * sh64-tdep.c (sh64_register_convert_to_raw): Call
346         extract_typed_floating instead of deprecated_extract_floating.
347
348 2009-05-18  Jon Beniston <jon@beniston.com>
349         
350         * MAINTAINERS: Add lm32 target.        
351         * Makefile.in: Add lm32 dependencies.        
352         * NEWS: Indicate lm32 is a new target.
353         * configure.tgt: Add lm32 targets.
354         * lm32-tdep.c: New file.
355
356 2009-05-18  Pedro Alves  <pedro@codesourcery.com>
357
358         * corelow.c (core_open): Flush the register cache before doing
359         anything with registers.
360
361 2009-05-18  Pedro Alves  <pedro@codesourcery.com>
362
363         * inflow.h (our_process_group): Remove declaration.
364         (inferior_process_group): Delete global variable declaration.
365         (inferior_process_group): New function declaration.
366         * inflow.c: Include observer.h.
367         (inferior_ttystate, our_ttystate, tflags_inferior, tflags_ours):
368         Delete.
369         (struct terminal_info): New struct.
370         (our_terminal_info): New global.
371         (inferior_process_group): New function.
372         (inferior_thisrun_terminal): Extend description comment.
373         (gdb_has_a_terminal): Adjust to write to our_terminal_info fields
374         instead of globals.
375         (terminal_init_inferior_with_pgrp): Adjust to per-inferior
376         terminal settings.
377         (terminal_inferior): Ditto.
378         (terminal_ours_1): Ditto.
379         (inflow_new_inferior, inflow_inferior_exit): New functions.
380         (child_terminal_info): Adjust to per-inferior terminal settings.
381         (osig_set): New global.
382         (set_sigint_trap): Adjust to per-inferior terminal settings.  Set
383         or clear `osig_set' accordingly.
384         (clear_sigint_trap): Check `osig_set' to decide wheater to restore
385         SIGINT handler, instead of checking the current inferior (which
386         may be none).
387         (_initialize_inflow): Attach inflow_new_inferior and
388         inflow_inferior_exit to the "new_inferior" and "inferior_exit"
389         notifications, respectively.
390         * inferior.h (struct terminal_info): Forward declare.
391         (struct inferior): Add `terminal_info' field.
392         * inferior.c (delete_inferior_1): Notify the inferior_exit
393         observers before removing the inferior from the lists and deleting
394         it.
395         * inf-ptrace.c (inf_ptrace_stop): `inferior_process_group' is now
396         a function instead of a variable.  Adjust.
397         * procfs.c (procfs_stop): Ditto.
398
399 2009-05-17  Pedro Alves  <pedro@codesourcery.com>
400
401         * infrun.c (handle_inferior_event): When handling a
402         TARGET_WAITKIND_FORKED, detach breakpoints from the fork child
403         immediatelly.
404         * linux-nat.c (linux_child_follow_fork): Only detach breakpoints
405         from the child if vforking.
406         * inf-ptrace.c (inf_ptrace_follow_fork): No need to detach
407         breakpoints from the child here.
408
409 2009-05-17  Pedro Alves  <pedro@codesourcery.com>
410
411         * infrun.c (pending_follow): Remove execd_pathname member.
412         (resume): No longer handle TARGET_WAITKIND_EXECD pending follow.
413         (handle_inferior_event): When handling a TARGET_WAITKIND_EXECD
414         event, don't copy `execd_pathname' to pending_follow, use the
415         event copy instead.  Release `execd_pathname' once done with
416         handling the event.
417
418         * infrun.c (pending_follow): Remove mention of exec events.
419
420 2009-05-17  Hui Zhu  <teawater@gmail.com>
421
422         * i386-tdep.c (i386_process_record): Make it extern.
423         (i386_gdbarch_init): Don't call set_gdbarch_process_record
424         here.
425         * i386-tdep.h (i386_process_record): Declare.
426         * i386-linux-tdep.c (i386_linux_init_abi): Call
427         set_gdbarch_process_record.
428
429 2009-05-17  Vladimir Prus  <vladimir@codesourcery.com>
430
431         Always report varobj as changed when in_scope attribute changes.
432
433         * varobj.c (install_new_value): If non-NULL-ness of value
434         changed, return 1.
435
436 2009-05-15  Paul Pluzhnikov  <ppluzhnikov@google.com>
437         
438         * NEWS: Mention set/show libthread-db-search-path.
439         * gdb_thread_db.h (LIBTHREAD_DB_SEARCH_PATH): New define.
440         (LIBTHREAD_DB_SO): Moved from linux-thread-db.c
441         * linux-thread-db.c (libthread_db_search_path): New setting.
442         (thread_db_handle): New variable (replaces using_thread_db).
443         (try_thread_db_load_1): New function.
444         (try_thread_db_load, thread_db_load_search): Likewise.
445         (dladdr_to_soname): Likewise.
446         (thread_db_load): Iterate over possibly multiple libthread_db's.
447         (check_for_thread_db): Attempt to load new libthread_db.
448         (thread_db_detach, thread_db_wait): Unload libthread_db.
449         (thread_db_mourn_inferior): Likewise.
450         (_initialize_thread_db): Add new libthread-db-search-path option.
451         Defer loading of libthread_db to check_for_thread_db.
452         * solib.c (libpthread_name_p): New function.
453         (libpthread_solib_p): Call it.
454         * solib.h (libpthread_name_p): New prototype.
455         
456 2009-05-15  Pierre Muller  <muller@ics.u-strasbg.fr>
457
458         * MAINTAINERS: Update my email address.
459         
460 2009-05-14  Paul Pluzhnikov  <ppluzhnikov@google.com>
461
462         * breakpoint.h: Add breakpoint_re_set_objfile prototype.
463         * breakpoint.c (create_overlay_event_breakpoint): Renamed
464         from create_overlay_event_breakpoint_1, old
465         create_overlay_event_breakpoint deleted.
466         (breakpoint_re_set_objfile): Don't rescan all objfiles
467         unnecessarily.
468         (breakpoint_re_set): New function.
469         * symfile.c (new_symfile_objfile): Call breakpoint_re_set_objfile
470         instead of breakpoint_re_set.
471         * objfiles.c (objfile_relocate): Likewise.
472         
473 2009-05-14  Joel Brobecker  <brobecker@adacore.com>
474
475         * gdbarch.sh: Add comment documenting the target_gdbarch global.
476         gdbarch.h does NOT need to be regenerated as the corresponding
477         change has already been made in a previous commit.
478
479 2009-05-14  Pierre Muller  <muller@ics.u-strasbg.fr>
480
481         Remove all i386 debug register low level macros in config nm files.
482         (I386_DR_LOW_SET_ADDR, I386_DR_LOW_RESET_ADDR): Remove.
483         (I386_DR_LOW_GET_STATUS, I386_DR_LOW_SET_CONTROL): Remove.
484         (I386_USE_GENERIC_WATCHPOIINTS): Remove.
485
486         * i386-nat.h: New file (adapted from config/i386/nm-i386.h).
487         (struct i386_dr_low_type): New type.
488         (i386_dr_low): New global variable.
489         * i386-nat.c (TARGET_HAS_DR_LEN_8): Update macro.
490         (i386_insert_aligned_watchpoint): Replace i386 dr low macros by
491         i386_dr_low struct variable fields.
492         (i386_remove_aligned_watchpoint): Likewise.
493         (i386_stopped_data_address): Likewise.
494         (i386_stopped_by_hwbp): Likewise.
495         (show_debug_regs_command_added): New static variable.
496         (add_show_debug_regs_command): New static function.
497         (i386_use_watchpoints): Call add_show_debug_regs_command if not done.
498         (i386_set_debug_register_length): New function.
499         (_initialize_i386_nat): Delete.
500         
501         * amd64-linux-nat.c: Include "i386-nat.h".
502         (amd64_linux_dr_set_control):  Change to static.
503         (amd64_linux_dr_get_status): Change to static.
504         (amd64_linux_dr_set_addr,amd64_linux_dr_reset_addr): Likewise.
505         (_initialize_amd64_linux_nat): Set i386_dr_low variable fields.
506         
507         * go32-nat.c: Include "i386-nat.h".
508         (go32_set_addr): Change to static.
509         (go32_set_dr7): Change to static. Change arg type to unisgned long.
510         (go32_get_dr6): Change to static. Change return type to unisnged long.
511         (init_go32_ops):  Set i386_dr_low variable fields.
512         * i386-linux-nat.c: Include "i386-nat.h".
513         (i386_linux_dr_set_control, i386_linux_dr_get_status): Change to static.
514         (i386_linux_dr_set_addr, i386_linux_dr_reset_addr): Idem.
515         (_initialize_i386_linux_nat):  Set i386_dr_low variable fields.
516         * i386bsd-nat.h: Declare functions used for
517         i386_dr_low fields in i386fbsd-nat.c.
518         * i386fbsd-nat.c: Include "i386-nat.h".
519         (_initialize_i386fbsd_nat): Set i386_dr_low variable fields.
520         * windows-nat.c: Include "i386-nat.h".
521         (cygwin_set_dr, cygwin_get_dr6, cygwin_set_dr7): Add prototypes.
522         Change to static.
523         (cygwin_get_dr6): Change return type to unisnged long.
524         (cygwin_set_dr7): Change arg type to unisgned long.
525         (init_windows_ops): Set i386_dr_low function fields.
526
527         * amd64-windows-nat.c (_initialize_amd64_windows_nat): Call 
528         i386_set_debug_register_length.
529         * i386-windows-nat.c (_initialize_i386_windows_nat): Likewise.
530
531         * config/i386/nm-cygwin.h: Remove all I386_* macros.
532         * config/i386/nm-cygwin64.h: Likewise.
533         * config/i386/nm-fbsd.h: Likewise.
534         * config/i386/nm-linux.h: Likewise.
535         * config/i386/nm-i386.h: Remove completely.
536         * config/i386/nm-go32.h: Remove completely.
537         * config/i386/nm-linux64.h: Remove completely.
538         * config/i386/go32.mh (NAT_FILE): Remove entry.
539         * config/i386/linux64.h (NAT_FILE): Change to config/nm-linux.h.
540
541 2009-05-14  Jon Beniston  <jon@beniston.com>
542
543         * MAINTAINERS: Add Jon Beniston to write after approval list.
544
545 2009-05-13  Paul Pluzhnikov  <ppluzhnikov@google.com>
546
547         * objc-lang.c (objc_objfile_data): New variable.
548         (find_methods): Skip objfiles without Obj-C methods.
549         (_initialize_objc_lang): New function.
550
551 2009-05-13  Joel Brobecker  <brobecker@adacore.com>
552
553         * c-lang.c (print_wchar): Remove unnecessary cast.
554
555 2009-05-12  Jim Blandy  <jimb@red-bean.com>
556
557         * MAINTAINERS: Remove self as m32c target maintainer.
558
559 2009-05-12  Pedro Alves  <pedro@codesourcery.com>
560
561         * cli/cli-decode.c (deprecated_add_set_cmd): Delete.
562         * command.h (deprecated_add_set_cmd): Delete declaration.
563         * gnu-nat.c (_initialize_gnu_nat): Replace 'maint gnu-debug' with
564         'set debug gnu-nat' and 'show debug gnu-nat'.
565         * i386-nat.c (_initialize_i386_nat): Replace 'maint
566         show-debug-registers' with 'maint set show-debug-registers' and
567         'maint show show-debug-registers'.
568         * mips-linux-nat.c (_initialize_mips_linux_nat): Replace 'maint
569         show-debug-registers' with 'maint set show-debug-registers' and
570         'maint show show-debug-registers'.
571
572 2009-05-12  Joel Brobecker <brobecker@adacore.com>
573
574         * c-lang.c (print_wchar): Convert w into a gdb_wchar_t before
575         pushing it on the output obstack.
576
577 2009-05-11  Joel Brobecker <brobecker@adacore.com>
578
579         Fix internal error on breaking at a multi-locations caller source line.
580         * breakpoint.c (parse_breakpoint_sals): Set EXPLICIT_PC for the `break'
581         command with no parameters.
582
583 2009-05-11  Pedro Alves  <pedro@codesourcery.com>
584
585         * linux-nat.c (enum sigchld_state): Delete.
586         (linux_nat_async_events_state): Delete.
587         (struct waitpid_result): Delete.
588         (waitpid_queue): Delete.
589         (queued_waitpid_1): Delete.
590         (async_file_flush): New.
591         (queued_waitpid, push_waitpid): Delete.
592         (async_file_mark): New.
593         (drain_queued_events): Delete.
594         (my_waitpid): Remove locally queued events handling.
595         (linux_test_for_tracefork): Upjust.
596         (linux_child_follow_fork): Ditto.
597         (sync_sigchld_action): Delete.
598         (blocked_mask): Reinstate.
599         (async_sigchld_action): Rename to...
600         (sigchld_action): ... this.
601         (block_child_signals): New.
602         (restore_child_signals_mask): New.
603         (lin_lwp_attach_lwp): Adjust.
604         (linux_nat_create_inferior): Ditto.
605         (linux_nat_attach): Also use lp->status in async mode.
606         (get_pending_status): Don't use queued_waitpid.
607         (linux_nat_detach): Don't drain locally queued events.
608         (linux_nat_resume): Allow pending wait statuses stored lp->status
609         in async mode.  If returning early due to a pending event,
610         re-register the event source.
611         (stop_wait_callback): Allow pending wait statuses stored
612         lp->status in async mode.
613         (pipe_to_local_event_queue, local_event_queue_to_pipe): Delete.
614         (linux_nat_wait): Rename to ...
615         (linux_nat_wait_1): ... this.  Allow pending wait statuses stored
616         lp->status in async mode.  Always add WNOHANG to the waitpid
617         options in async mode.
618         (linux_nat_wait): New.
619         (kill_callback): Don't drain locally queued events.
620         (sigchld_handler): Rewrite.
621         (linux_nat_is_async_p, linux_nat_can_async_p): Fix comments to
622         refer to "set target-async".
623         (linux_nat_async_mask): If in non-stop, and re-enabling async
624         mode, re-register the target event source in the event loop.
625         (linux_nat_event_pipe_pop, linux_nat_event_pipe_push)
626         (get_pending_events, async_sigchld_handler)
627         (linux_nat_async_events): Delete.
628         (handle_target_event): New.
629         (linux_nat_async_file_handler): Delete.
630         (linux_async_pipe): New.
631         (linux_nat_async): Only re-register in the event loop if not
632         registered yet.  Always notify the event-loop once if enabling the
633         event source.
634         (linux_nat_stop_lwp): Rewrite to handle pending events stored in
635         lp->status, not in the locally queued event list.
636         (linux_nat_stop): Don't mask out async event handling.
637         (linux_nat_setup_async): Delete.
638         (_initialize_linux_nat): Adjust.
639         (lin_thread_get_thread_signals): blocked_mask is global again.
640         Adjust.
641
642 2009-05-11  Pierre Muller  <muller@ics.u-strasbg.fr>
643
644         Unify target macros.
645
646         * target.h (STOPPED_BY_WATCHPOINT): Delete, replaced by ...
647         (target_stoppped_by_watchpoint): New macro.
648         (HAVE_STEPPABLE_WATCHPOINT): Delete, replaced by ...
649         (target_have_steppable_watchpoint): New macro.
650         (HAVE_CONTINUABLE_WATCHPOINT): Delete, replace by ...
651         (target_have_continuable_watchpoint): New macro.
652         (TARGET_CAN_USE_HARDWARE_WATCHPOINT):Delete, replaced by ...
653         (target_can_use_hardware_watchpoint): New macro.
654         (TARGET_REGION_OK_FOR_HW_WATCHPOINT):Delete, replaced by ...
655         (target_region_ok_for_hw_watchpoint): New macro.
656
657         * breakpoint.c (update_watchpoint): Use new macros.
658         (bpstat_alloc): Likewise.
659         (create_breakpoint): Likewise.
660         (watch_command_1): Likewise.
661         (can_use_hardware_watchpoint): Likewise.
662         (do_enable_breakpoint): Likewise.
663         * infrun.c (handle_inferior_event): Adapt to new macros.
664         * mips-tdep.c (mips_gdbarch_init): Update comments.
665         * procfs.c (procfs_set_watchpoint): Update comment.
666         (procfs_insert_watchpoint): Adapt to new macros.
667         * remote-m32r-sdi.c (m32r_stop):
668         * remote-mips.c (mips_remove_breakpoint):
669         * target.c (debug_to_region_ok_for_hw_watchpoint): Update to new macros.
670         (debug_to_stopped_by_watchpoint): Likewise.
671
672
673 2009-05-10  Pierre Muller  <muller@ics.u-strasbg.fr>
674
675         * src/gdb/target.h: Remove all tests for already defined
676         macros. All macros defined here should not be set in config
677         headers anymore.
678
679 2009-05-08  Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
680
681         * ppc-linux-nat.c (have_ptrace_getsetregs): New variable.
682         (have_ptrace_getsetfpregs): Likewise.
683         fetch_all_gp_regs): New function.
684         (fetch_gp_regs): New function.
685         (fetch_all_fp_regs): Likewise.
686         (fetch_fp_regs): New function.
687         (fetch_ppc_registers): Using the new methods to fetch general-
688         purpose and floating-pointer registers.
689         (store_all_gp_regs): New function.
690         (store_gp_regs): Likewise.
691         (store_all_fp_regs): New function.
692         (store_fp_regs): Likewise.
693         (store_ppc_registers): Using the new methods to store general-
694         purpose and floating-pointer registers.
695
696 2009-05-08  Doug Evans  <dje@google.com>
697
698         * linux-nat.c (linux_xfer_siginfo): Delete unused locals lp, n.
699
700 2009-05-07  Sergio Durigan Junior  <sergiodj@linux.vnet.ibm.com>
701
702         * MAINTAINERS (Write After Approval): Add self.
703
704 2009-05-07  Joel Brobecker  <brobecker@adacore.com>
705
706         * gdbarch.h (target_gdbarch): Add comment documenting this global.
707
708 2009-05-06  Joel Brobecker  <brobecker@adacore.com>
709
710         * acinclude.m4 (AM_ICONV): Prefer in-tree libiconv if present over
711         system iconv.
712         * configure: Regenerate.
713
714 2009-05-06  Joel Brobecker  <brobecker@adacore.com>
715
716         * utils.c: Add include of gdb_usleep.h.
717         (defaulted_query): Detect false EOF conditions that happen
718         on terminals opened with the O_NONBLOCK flag when there is
719         nothing to read.
720
721 2009-05-06  Pedro Alves  <pedro@codesourcery.com>
722
723         * inferior.c (add_inferior): Move observer_notify_new_inferior
724         call to ...
725         (add_inferior_silent): ... here.
726
727 2009-05-06  Pierre Muller  <muller@ics.u-strasbg.fr>
728             Pedro Alves  <pedro@codesourcery.com>
729
730         * procfs.c (procfs_insert_watchpoint, procfs_remove_watchpoint)
731         (procfs_region_ok_for_hw_watchpoint, procfs_use_watchpoints): New
732         functions.
733         (procfs_stopped_by_watchpoint): Made static, ptid argument
734         removed.
735         (_initialize_procfs): Register new watchpoint related target
736         functions.
737         * config/i386/nm-i386sol2.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT)
738         (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT, STOPPED_BY_WATCHPOINT)
739         (HAVE_CONTINUABLE_WATCHPOINT): Delete.
740         (target_insert_watchpoint, target_remove_watchpoint): Delete.
741         (procfs_stopped_by_watchpoint, procfs_set_watchpoint): Delete
742         declarations.
743         * config/mips/nm-irix5.h (STOPPED_BY_WATCHPOINT)
744         (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
745         (target_insert_watchpoint, target_remove_watchpoint): Delete.
746         (procfs_stopped_by_watchpoint, procfs_set_watchpoint): Delete
747         declarations.
748         * config/sparc/nm-sol2.h (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
749         (HAVE_CONTINUABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT): Delete.
750         (target_insert_watchpoint, target_remove_watchpoint): Delete.
751         (procfs_stopped_by_watchpoint, procfs_set_watchpoint): Delete
752         declarations.
753
754 2009-05-06  Hui Zhu  <teawater@gmail.com>
755
756         * i386-tdep.c (i386_process_record): Change bzero to memset.
757
758 2009-05-06  Hui Zhu  <teawater@gmail.com>
759
760         * NEWS: Add item for process record and replay.
761
762 2009-05-05  Maxim Grigoriev  <maxim2405@gmail.com>
763
764         * xtensa-tdep.c (xtensa_frame_cache): Use pc instead of cache->pc.
765
766 2009-05-05  Ulrich Weigand  <uweigand@de.ibm.com>
767
768         * inferior.h (read_pc, write_pc): Remove.
769         * regcache.c (read_pc, write_pc): Remove.
770
771         * infrun.c (displaced_step_fixup): Use regcache_read_pc instead
772         of read_pc.
773         (handle_inferior_event): Use regcache_read_pc instead of read_pc
774         when determining value of stop_pc.  Replace subsequent uses of
775         read_pc by inspecting already-retrieved stop_pc value.
776         (keep_going): Use regcache_read_pc instead of read_pc.
777
778         * breakpoint.c (watchpoint_check): Use current frame architecture
779         and PC instead of current_gdbarch and read_pc ().
780         * tracepoint.c (set_traceframe_context): Replace PC argument
781         with FRAME argument.
782         (trace_start_command, finish_tfind_command): Update calls.
783         (finish_tfind_command): Compare frame IDs to identify transitions
784         between frames.
785         (trace_find_pc_command): Use regcache_read_pc instead of read_pc.
786         * rs6000-nat.c (exec_one_dummy_insn): Pass in regcache instead
787         of gdbarch.  Use regcache_read_pc and regcache_write_pc instead
788         of read_pc and write_pc.
789         (store_register): Make regcache argument non-const.  Update call
790         to exec_one_dummy_insn.
791
792         * thread.c (switch_to_thread): Use regcache_read_pc instead of read_pc.
793         * infcmd.c (post_create_inferior): Likewise.
794         * solib-darwin.c (darwin_solib_create_inferior_hook): Likewise.
795         * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
796         * solib-sunos.c (sunos_solib_create_inferior_hook): Likewise.
797         * solib-svr4.c (enable_break, svr4_relocate_main_executable): Likewise.
798         * linux-fork.c (fork_load_infrun_state): Likewise.
799         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Likewise.
800         * record.c (record_wait): Likewise.
801         * procfs.c (procfs_wait): Likewise.
802         * remote-mips.c (common_open, mips_wait): Likewise.
803         * remote-m32r-sdi.c (m32r_resume): Likewise.
804
805         * symfile.c (generic_load): Use regcache_write_pc instead of write_pc.
806         * monitor.c (monitor_create_inferior, monitor_load): Likewise.
807         * m32r-rom.c (m32r_load, m32r_upload_command): Likewise.
808         * remote-m32r-sdi.c (m32r_create_inferior, m32r_load): Likewise.
809         * remote-mips.c (mips_create_inferior, mips_load): Likewise.
810
811         * solib-darwin.c: Include "regcache.h".
812         * solib-pa64.c: Include "regcache.h".
813         * solib-svr4.c: Include "regcache.h.".
814
815         * symfile.c: Do not mention read_pc or write_pc in comments.
816         * dink32-rom.c: Likewise.
817         * m32r-rom.c: Likewise.
818         * mips-tdep.c: Likewise.
819
820 2009-05-05  Ulrich Weigand  <uweigand@de.ibm.com>
821
822         * fork-child.c (startup_inferior): Move setting stop_pc ...
823         * infcmd.c (post_create_inferior): ... to here.
824
825 2009-05-04  Michael Snyder  <msnyder@vmware.com>
826
827         * NEWS: Add item for reverse debugging commands.
828
829 2009-05-04  Pedro Alves  <pedro@codesourcery.com>
830
831         * go32-nat.c (go32_stop): Delete.
832         (go32_kill_inferior): Rewrite to only call go32_mourn_inferior.
833         (go32_create_inferior): Don't call go32_stop or
834         go32_kill_inferior.
835         (go32_mourn_inferior): Inline go32_stop and go32_kill_inferior
836         here.
837         (init_go32_ops): Don't register go32_stop.
838
839 2009-05-02  Eli Zaretskii  <eliz@gnu.org>
840
841         * dbxread.c (read_dbx_symtab): Avoid compiler warnings for
842         sym_name.
843
844         * infcall.c (find_function_addr): Avoid compiler warnings for
845         funaddr.
846
847 2009-05-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
848
849         * dictionary.c (dict_hashed_vector, dict_hashed_expandable_vector)
850         (dict_linear_vector, dict_linear_expandable_vector): Fix a comment typo.
851
852 2009-05-01  Doug Evans  <dje@google.com>
853
854         * linux-thread-db.c (thread_db_pid_to_str): Delete unused assignment
855         to thread_info.
856
857 2009-05-01  Eli Zaretskii  <eliz@gnu.org>
858
859         * record.c (_initialize_record): Reformat and clarify doc strings
860         for stop-at-limit and insn-number-max.
861
862         * go32-nat.c: Add comments about dirty secrets of DJGPP debugging.
863
864 2009-05-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
865
866         Make specifiable the make_function_type type memory ownership.
867         * gdbtypes.c (make_function_type): New parameter `objfile', use it
868         explicitely instead of TYPE-initialized removed local variable
869         `objfile'.  Describe `objfile' it in the function comment.
870         (lookup_function_type): Update make_function_type callers.
871         * gdbtypes.h (make_function_type): Update the prototype.
872         * jv-lang.c (java_link_class_type): Update make_function_type callers.
873         * dwarf2read.c (read_subroutine_type): Likewise.
874         * stabsread.c (read_type): Likewise.
875
876 2009-05-01  Eli Zaretskii  <eliz@gnu.org>
877
878         * go32-nat.c (go32_pid_to_str): Call normal_pid_to_str instead of
879         printing a bogus "Thread <main>".
880         (go32_thread_alive): Don't return 1 for null_ptid.
881
882         * i386-tdep.c (i386_go32_init_abi): Override the number of
883         registers due to non-support of SSE.
884
885 2009-04-30  Anthony Green  <green@moxielogic.com>
886
887         * configure.tgt: Link the moxie simulator in with gdb.
888
889 2009-04-30  Paul Pluzhnikov  <ppluzhnikov@google.com>
890
891         * elfread.c (elf_symtab_read): Don't assume .data and .rodata
892         are present.
893
894 2009-04-30  Hui Zhu  <teawater@gmail.com>
895             Michael Snyder  <msnyder@vmware.com>
896
897         I386 Linux process record and replay support.
898
899         * i386-linux-tdep.c (i386_linux_record_tdep): New variable.
900         This struct has the argument for the function
901         "record_linux_system_call".
902         (i386_linux_intx80_sysenter_record): New function. Parse the
903         system call instruction and call function
904         "record_linux_system_call" to record execute log.
905         (i386_linux_init_abi): Initialize "i386_linux_record_tdep".
906         Set "i386_linux_intx80_sysenter_record" to
907         "i386_intx80_record" and "i386_sysenter_record".
908
909 2009-04-30  Hui Zhu  <teawater@gmail.com>
910             Michael Snyder  <msnyder@vmware.com>
911
912         I386 architecture process record and replay support.
913
914         * i386-tdep.c (PREFIX_REPZ, PREFIX_REPNZ, PREFIX_LOCK,
915         PREFIX_DATA, PREFIX_ADDR): New macros. Help decode the i386
916         instruction set.
917         (aflag, dflag, override, modrm, mod, reg, rm, ot,
918         i386_record_pc): New variables. Ditto.
919         (i386_record_modrm, i386_record_lea_modrm_addr,
920         i386_record_lea_modrm): New functions. Ditto.
921         (i386_process_record): New function. Parse the instruction in
922         address "addr" and record the values of registers and memory
923         that will be changed by this instruction.
924         (i386_gdbarch_init): Set "i386_process_record" to GDBARCH
925         "process_record" interface.
926         * i386-tdep.h (gdbarch_tdep): New function pointers
927         "i386_intx80_record" and "i386_sysenter_record" that point to
928         the function that can record "intx80" and "sysenter" execute
929         log.
930
931 2009-04-30  Hui Zhu  <teawater@gmail.com>
932             Michael Snyder  <msnyder@vmware.com>
933
934         * infrun.c (use_displaced_stepping): Return false if process
935         record and replay target is used.
936         (proceed): Call function "record_not_record_set" if pocess
937         record and replay target is used.
938
939 2009-04-30  Hui Zhu  <teawater@gmail.com>
940             Michael Snyder  <msnyder@vmware.com>
941
942         Linux process record and replay support.
943
944         * Makefile.in (ALLDEPFILES): Add linux-record.c.
945         (ALL_TARGET_OBS): Add linux-record.o.
946         * configure.tgt (x86_64-*-linux*): Add linux-record.o.
947         (i[34567]86-*-linux*): Add linux-record.o.
948         * linux-record.c, linux-record.h: New file.
949
950 2009-04-30  Hui Zhu  <teawater@gmail.com>
951             Michael Snyder  <msnyder@vmware.com>
952
953         Process record and replay target.
954
955         * Makefile.in (SFILES): Add record.c.
956         (COMMON_OBS): Add record.o.
957         * record.c, record.h: New file.
958
959 2009-04-30  Hui Zhu  <teawater@gmail.com>
960             Michael Snyder  <msnyder@vmware.com>
961
962         * target.h (strata): New stratum "record_stratum".
963
964 2009-04-30  Hui Zhu  <teawater@gmail.com>
965             Michael Snyder  <msnyder@vmware.com>
966
967         GDBARCH interface for process record and replay.
968
969         * gdbarch.sh (process_record): This interface point to the
970         function that records the inferior execute log.
971
972 2009-04-29  Doug Evans  <dje@google.com>
973
974         * i386-nat.c (child_post_startup_inferior): Delete, unused.
975
976 2009-04-29  Pedro Alves  <pedro@codesourcery.com>
977
978         * breakpoint.c (print_exception_catchpoint): Access `b' directly
979         instead of `b->loc->owner'.
980         (print_mention_exception_catchpoint): Ditto.
981
982 2009-04-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
983
984         * macrocmd.c (info_macro_command): Print -Dname=value if LINE is zero.
985
986 2009-04-27  Tom Tromey  <tromey@redhat.com>
987
988         * c-exp.y (yylex): Handle '[' and ']' like '(' and ')'.
989
990 2009-04-27  Jerome Guitton  <guitton@adacore.com>
991
992         * symtab.c (append_exact_match_to_sals): New function, extracted
993         from expand_line_sal.
994         (expand_line_sal): Use append_exact_match_to_sals to append exact
995         matches. If none found, append all best items.
996
997 2009-04-27  Jerome Guitton  <guitton@adacore.com>
998
999         * main.c (captured_main): Move gdbinit lookups after gdb_init.
1000
1001 2009-04-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
1002
1003         PR gdb/9675:
1004         * dwarf2read.c (unsigned_int_compar, inherit_abstract_dies): New.
1005         (read_func_scope): Call inherit_abstract_dies.
1006
1007 2009-04-25  Eli Zaretskii  <eliz@gnu.org>
1008
1009         * Makefile.in (ALLDEPFILES): Remove duplicate entries for
1010         sparc-sol2-nat.c and sparc-sol2-tdep.c.
1011
1012         * stack.c (_initialize_stack) <disassemble-next-line>: Doc fix.
1013
1014 2009-04-24  Pierre Muller  <muller@ics.u-strasbg.fr>
1015
1016         ARI change: Use "/* ARI: rule */" pattern.
1017         * utils.c: Update ARI patterns.
1018         * gdb_dirent.h: Likewise.
1019
1020 2009-04-23  Anthony Green  <green@moxielogic.com>
1021
1022         * MAINTAINERS: Add moxie target.
1023         * configure.tgt: Add moxie-*-elf target.
1024         * moxie-tdep.c: New file.
1025         * moxie-tdep.h: New file.
1026
1027 2009-04-23  Joel Brobecker  <brobecker@adacore.com>
1028
1029         * ada-lang.c: Remove an extra empty line. No code change.
1030
1031 2009-04-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
1032
1033         Fix double free on error inserting the breakpoint instruction.
1034         * breakpoint.c (create_breakpoints): Move the
1035         update_global_location_list call to ...
1036         (break_command_really): ... here together with the second local call
1037         both unified after all the cleanups.
1038
1039 2009-04-23  Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
1040             Tom Tromey  <tromey@redhat.com>
1041
1042         * configure, config.in: Regenerate.
1043         * configure.ac: Support for relocatable GDB datadir.  Use
1044         GDB_AC_WITH_DIR.  Always define TARGET_SYSTEM_ROOT_RELOCATABLE.
1045         * acinclude.m4 (GDB_AC_WITH_DIR): New defun.
1046         * top.c (init_main): Add "set data-directory".
1047         * defs.h (gdb_datadir): Declare.
1048         * main.c (gdb_datadir): New global.
1049         (captured_main): Initialize gdb_datadir.  Use relocate_directory.
1050         (relocate_path): New function.
1051         (relocate_directory): Likewise.
1052         (get_init_files): Use relocate_path.
1053         (README): Mention --with-gdb-datadir.
1054
1055 2009-04-23  Joel Brobecker  <brobecker@adacore.com>
1056
1057         * ada-tasks (task_command_1): Call target_find_new_threads.
1058
1059 2009-04-23  Joel Brobecker  <brobecker@adacore.com>
1060
1061         * stack.c (do_gdb_disassembly): Print the exception message if an
1062         error was thrown while trying to perform the disassembly.
1063
1064 2009-04-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
1065
1066         * varobj.c (free_variable): Replace free_current_contents by xfree.
1067
1068 2009-04-22  Kazu Hirata  <kazu@codesourcery.com>
1069
1070         * arm-linux-nat.c (fetch_register, store_register): Use
1071         ARM_CPSR_GREGNUM instead of ARM_CPSR_REGNUM.
1072         * arm-linux-tdep.c (arm_linux_supply_gregset,
1073         arm_linux_collect_gregset): Likewise.
1074         * arm-linux-tdep.h (ARM_CPSR_GREGNUM): New.
1075         * arm-tdep.h (ARM_CPSR_REGNUM): Remove.
1076
1077 2009-04-22  Hui Zhu  <teawater@gmail.com>
1078
1079         * stack.c (_initialize_stack): Set the default of
1080         disassemble-next-line to off.
1081
1082 2009-04-21  Tom Tromey  <tromey@redhat.com>
1083
1084         * acinclude.m4: Use AS_HELP_STRING, not AC_HELP_STRING.
1085         * configure.ac: Use AS_HELP_STRING, not AC_HELP_STRING.
1086
1087 2009-04-21  Andreas Schwab  <schwab@linux-m68k.org>
1088
1089         * configure.ac: Add quotes to not lose brackets in help text.
1090         * configure: Rebuild.
1091
1092 2009-04-21  Andreas Schwab  <schwab@linux-m68k.org>
1093
1094         * configure.ac: Don't postprocess Makefile in config.status.
1095         Substitute GDB_NM_FILE.  Don't substitute nm_h.
1096         * Makefile.in (GDB_NM_FILE): Substitute.
1097         (TAGS): Use $(GDB_NM_FILE) instead of $(NAT_FILE).
1098         * configure: Regenerate.
1099         * gnulib/Makefile.in: Regenerate.
1100
1101 2009-04-21  Joseph Myers  <joseph@codesourcery.com>
1102
1103         * configure.ac (--with-datarootdir, --with-docdir, --with-pdfdir,
1104         --with-htmldir): New.
1105         * configure: Regenerate.
1106
1107 2009-04-21  Tom Tromey  <tromey@redhat.com>
1108
1109         * configure: Rebuild.
1110         * configure.ac: Use lower case for start of help strings.  Clean
1111         up --with-sysroot help.
1112
1113 2009-04-21  Tom Tromey  <tromey@redhat.com>
1114
1115         * configure: Rebuild.
1116         * acinclude.m4 (AM_ICONV): Use AC_HELP_STRING.
1117         * configure.ac: Use AC_HELP_STRING.  Use upper case for variables
1118         in help.
1119
1120 2009-04-21  Pierre Muller  <muller@ics.u-strasbg.fr>
1121
1122         ARI fix: remove "%p".
1123         * ia64-tdep.c (ia64_frame_this_id): Use host_address_to_string function.
1124         (ia64_sigtramp_frame_this_id): Ditto.
1125         (ia64_libunwind_frame_this_id): Ditto.
1126         (ia64_libunwind_sigtramp_frame_this_id): Ditto.
1127         * symmisc.c (maintenance_info_psymtabs): Ditto.
1128
1129 2009-04-21  Joseph Myers  <joseph@codesourcery.com>
1130
1131         * configure.ac (--with-relocated-sources): New.
1132         * configure, config.in: Regenerate.
1133         * source.c (add_substitute_path_rule): Remove static.
1134         * source.h (add_substitute_path_rule): Declare.
1135         * main.c: Include "source.h".
1136         (captured_main): Add substitution rule if RELOC_SRCDIR.
1137
1138 2009-04-21  Pierre Muller  <muller@ics.u-strasbg.fr>
1139
1140         * gnu-nat.h (proc_debug): Add missing continuation line in macro.
1141
1142 2009-04-20  David Daney  <ddaney@caviumnetworks.com>
1143
1144         * NEWS: Mention MIPS/Linux hardware watchpoint support.
1145
1146 2009-04-20  David Daney  <ddaney@caviumnetworks.com>
1147
1148         * mips-linux-nat.c (command.h, gdbcmd.h, gdb_assert.h): New #includes.
1149         (maint_show_dr, super_close): New variables.
1150         (super_fetch_registers, super_store_registers): Make static.
1151         (PTRACE_GET_WATCH_REGS, PTRACE_SET_WATCH_REGS, W_BIT, R_BIT, I_BIT)
1152         (W_MASK, R_MASK, I_MASK, IRW_MASK, MAX_DEBUG_REGISTER): Define.
1153         (pt_watch_style): Define new enum.
1154         (mips32_watch_regs, mips64_watch_regs, pt_watch_regs, mips_watchpoint):
1155         Define new structs.
1156         (watch_readback_valid, watch_readback, current_watches, watch_mirror):
1157         New variables.
1158         (get_irw_mask, get_reg_mask, get_num_valid, get_watchlo)
1159         (set_watchlo, get_watchhi, set_watchhi, mips_show_dr)
1160         (mips_linux_read_watch_registers, mips_linux_can_use_hw_breakpoint)
1161         (mips_linux_stopped_by_watchpoint, mips_linux_stopped_data_address)
1162         (type_to_irw, fill_mask, try_one_watch)
1163         (mips_linux_region_ok_for_hw_watchpoint, write_watchpoint_regs)
1164         (mips_linux_new_thread, populate_regs_from_watches)
1165         (mips_linux_insert_watchpoint, mips_linux_remove_watchpoint)
1166         (mips_linux_close): New functions.
1167         (_initialize_mips_linux_nat): Register watchpoint functions with
1168         the target_ops.  Add show-debug-regs maintenance command.
1169
1170 2009-04-20  David Daney  <ddaney@caviumnetworks.com>
1171
1172         * infrun.c (handle_inferior_event): Move gegisters_changed call down.
1173
1174 2009-04-19  Pedro Alves  <pedro@codesourcery.com>
1175
1176         * NEWS: Mention gdbserver support for x86 Windows CE.
1177
1178 2009-04-19  Eli Zaretskii  <eliz@gnu.org>
1179
1180         * config/djgpp/fnchange.lst: Fix typos.
1181
1182         Set default host and target charsets in the DJGPP port.
1183
1184         * config/djgpp/config.sed (am_cv_langinfo_codeset)
1185         (bash_cv_langinfo_codeset, ac_cv_header_nl_types_h): Set to "yes"
1186         in all configure scripts that define ac_cv_env_CPP_value.
1187
1188         * go32-nat.c (dos_codepage, nl_langinfo): New functions.
1189         Include langinfo.h.
1190
1191         * config/djgpp/nl_types.h: New file.
1192
1193         * config/djgpp/langinfo.h: New file.
1194
1195         * config/i386/go32.mh (MH_CFLAGS): Add $(srcdir)/config/djgpp.
1196
1197 2009-04-18  Carlos O'Donell  <carlos@codesourcery.com>
1198
1199         * Makefile.in (MAKEHTML): Set to makeinfo --html.
1200         (MAKEHTMLFLAGS): Set to empty.
1201
1202 2009-04-18  Eli Zaretskii  <eliz@gnu.org>
1203
1204         * NEWS: Mention all new set/show commands added since GDB 6.8 was
1205         released.
1206
1207         * go32-nat.c (go32_sysinfo): Check if the call to
1208         __dpmi_get_capabilities fills the buffer with information, and
1209         don't use the buffer if not.
1210
1211 2009-04-17  Tom Tromey  <tromey@redhat.com>
1212
1213         * charset.c (_initialize_charset): Add special case for "646".
1214
1215 2009-04-17  Carlos O'Donell  <carlos@codesourcery.com>
1216
1217         * configure.ac: AC_SUBST datarootdir, docdir, htmldir, pdfdir.
1218         * configure: Regenerate.
1219         * Makefile.in: Set datarootdir, docdir, htmldir, and pdfdir from
1220         configure substitutions.
1221         (FLAGS_TO_PASS): Add datarootdir, docdir, and htmldir.
1222
1223 2009-04-17  Pierre Muller  <muller@ics.u-strasbg.fr>
1224
1225         ARI fix: Do not use %p, replace by call to host_address_to_string
1226         for host pointers.
1227         * darwin-nat.c (darwin_xfer_partial): Apply change.
1228         * gnu-nat.c (inf_continue, gnu_xfer_memory): Ditto.
1229         * gnu-nat.h (proc_debug): Ditto.
1230         * symmisc.c (maintenance_info_symtabs): Ditto.
1231         (maintenance_info_psymtabs): Ditto.
1232         * windows-nat.c (handle_load_dll): Ditto.
1233         (handle_unload_dll, info_w32_command, handle_exception): Ditto.
1234         * xtensa-tdep.c (xtensa_unwind_pc): Ditto.
1235
1236 2009-04-17  Joseph Myers  <joseph@codesourcery.com>
1237
1238         * configure.tgt (i[34567]86-*-linux*): Use 64-bit configuration if
1239         --enable-64-bit-bfd.
1240         (sparc-*-linux*): Likewise.
1241
1242 2009-04-17  Eli Zaretskii  <eliz@gnu.org>
1243
1244         * go32-nat.c (go32_sysinfo): Update list of Windows versions of
1245         the NT family.
1246
1247 2009-04-16  Pedro Alves  <pedro@codesourcery.com>
1248
1249         * remote.c (remote_query_attached): Fix pasto in packet_ok result
1250         checking.
1251
1252 2009-04-16  Joel Brobecker  <brobecker@adacore.com>
1253
1254         * procfs.c (solib_mappings_callback, find_memory_regions_callback):
1255         Revert the previous change.  Might not be correct, actually.
1256
1257 2009-04-16  Joel Brobecker  <brobecker@adacore.com>
1258
1259         * ada-lang.h (ada_adjust_exception_stop, ada_print_exception_stop)
1260         (ada_get_current_task, ada_print_exception_breakpoint_nontask)
1261         (ada_print_exception_breakpoint_task, ada_reset_thread_registers):
1262         Remove declaration. These are non-existent functions.
1263
1264 2009-04-16  Joel Brobecker  <brobecker@adacore.com>
1265
1266         * procfs.c (solib_mappings_callback, find_memory_regions_callback):
1267         Fix a compilation warning on mips-irix due to casting from
1268         a pointer of different size.
1269
1270 2009-04-16  Joel Brobecker  <brobecker@adacore.com>
1271
1272         * ada-lang.c (symtab_for_sym): Delete.
1273         (user_select_syms): Use sym->symtab instead of calling symtab_for_sym.
1274
1275 2009-04-16  Joel Brobecker  <brobecker@adacore.com>
1276
1277         * ada-lang.c (extract_string): Delete.
1278         (ada_main_name): Reimplement using target_read_string instead of
1279         extract_string.
1280
1281 2009-04-16  Andreas Schwab  <schwab@linux-m68k.org>
1282
1283         * m68klinux-nat.c: Remove obsolete comment.
1284         (fetch_register, store_register): Don't call
1285         gdbarch_cannot_fetch_register or gdbarch_cannot_store_register,
1286         which are always nops here.
1287
1288 2009-04-14  Tom Tromey  <tromey@redhat.com>
1289
1290         * c-lang.c (c_emit_char): Use INTERMEDIATE_ENCODING.
1291         (c_printstr): Likewise.
1292         * charset.c: Include gdb_wait.h.
1293         (make_wchar_iterator): Use INTERMEDIATE_ENCODING.
1294         (find_charset_names): Use pexecute.  Handle libiconv's output.
1295         Detect errors.
1296         (_initialize_charset): Use xstrdup.
1297         * gdb_wchar.h: Check HAVE_BTOWC.  Split PHONY_ICONV and wchar
1298         cases.
1299         (INTERMEDIATE_ENCODING): New define.
1300         * configure, config.in: Rebuild.
1301         * configure.ac: Check for btowc.
1302
1303 2009-04-15  Tom Tromey  <tromey@redhat.com>
1304
1305         * c-lang.c (evaluate_subexp_c): Correctly handle EVAL_SKIP.
1306
1307 2009-04-15  Eli Zaretskii  <eliz@gnu.org>
1308
1309         * utils.c (parse_escape): Initialize target_char to pacify GCC.
1310
1311 2009-04-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
1312
1313         * c-lang.c (c_get_string): Fix xfree crash on a failed string read.
1314
1315 2009-04-14  Pierre Muller  <muller@ics.u-strasbg.fr>
1316
1317         ARI fix: sprintf rule.
1318         * ada-exp.y (convert_char_literal): Replace sprintf by xsnprintf.
1319         * ada-lang.c (add_angle_brackets): Use xstrprintf.
1320         (ada_decode): Replace sprintf by xsnprintf.
1321         (find_old_style_renaming_symbol): Ditto.
1322         (ada_to_fixed_type_1, ada_enum_name): Ditto.
1323
1324
1325 2009-04-14  Joel Brobecker  <brobecker@adacore.com>
1326
1327         * target.c (target_mourn_inferior): Call bfd_cache_close_all
1328         after having executed the target mourn_inferior routine.
1329
1330 2009-04-14  Eli Zaretskii  <eliz@gnu.org>
1331
1332         * config/djgpp/djconfig.sh (DEPDIR): Define to "_deps", if
1333         undefined.
1334
1335 2009-04-13  David Daney  <ddaney@caviumnetworks.com>
1336
1337         * infrun.c (maybe_software_singlestep): New function.
1338         (resume): Call maybe_software_singlestep.
1339         (handle_inferior_event): Same.
1340
1341 2009-04-13  Tom Tromey  <tromey@redhat.com>
1342
1343         * python/python-frame.c (frapy_richcompare): Return
1344         Py_NotImplemented, not an error.  Handle Py_NE as well.
1345
1346 2009-04-13  Eli Zaretskii  <eliz@gnu.org>
1347
1348         * charset.c (EILSEQ): Define if not defined by system headers.
1349
1350 2009-04-11  Eli Zaretskii  <eliz@gnu.org>
1351
1352         * config/djgpp/config.sed: Tweak ac_config_files in intl/configure
1353         to be consistent with renaming config.intl.in into config_intl.in.
1354
1355         * go32-nat.c (go32_attach, go32_detach): Fix prototypes to be
1356         consistent with the change from 2008-11-09.
1357
1358 2009-04-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
1359
1360         * gdbtypes.c: Remove excessive parentheses at the return keywords.
1361         * varobj.c (varobj_invalidate): Fix indentation.
1362         * varobj.c (varobj_invalidate): Fix formatting text width.
1363
1364 2009-04-08  Vladimir Prus  <vladimir@codesourcery.com>
1365
1366         Implement -exec-jump.
1367
1368         * mi/mi-cmds.h (mi_cmd_exec_jump): Declare.
1369         * mi/mi-main.c (mi_cmd_exec_jump): New.
1370         * mi/mi-cmds.c (mi_cmds): Register exec-jump.
1371
1372 2009-04-07  Doug Evans  <dje@google.com>
1373
1374         * symfile.c (symbol_file_clear): Fix indentation.
1375
1376 2009-04-06  Mark Kettenis  <kettenis@gnu.org>
1377
1378         * sparc64nbsd-nat.c (sparc64nbsd_supply_pcb): Fix comment.
1379
1380 2009-04-03  Ulrich Weigand  <uweigand@de.ibm.com>
1381
1382         * ppc-linux-nat.c (ppc_linux_target_wordsize): New function.
1383         (ppc_linux_auxv_parse): New function.
1384         (ppc_linux_read_description): Use ppc_linux_target_wordsize.
1385         (_initialize_ppc_linux_nat): Install ppc_linux_auxv_parse.
1386
1387 2009-04-03  Ulrich Weigand  <uweigand@de.ibm.com>
1388
1389         * spu-linux-nat.c (spu_bfd_open): Set filename of in-memory
1390         BFD to contents of SPU name note.
1391         (spu_symbol_file_add_from_memory): Call symbol_file_add_from_bfd
1392         with "from_tty" argument 1 instead of 0.
1393
1394 2009-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
1395
1396         * dwarf2read.c
1397         (new_symbol <DW_TAG_variable> <!DW_AT_location> <DW_AT_external>):
1398         Create the symbol in local scope.
1399         * symtab.h (cu->list_in_scope <LOC_UNRESOLVED>): New comment part.
1400
1401 2009-04-02  Keith Seitz  <keiths@redhat.com>
1402
1403         * stabsread.c (read_member_functions): GCC may emit an extra space
1404         at the end of the names "__base_ctor" and "__base_dtor"; so ignore
1405         whitespace when looking for these functions.
1406
1407 2009-04-01  Joel Brobecker  <brobecker@adacore.com>
1408
1409         Change the default value for "set print frame-arguments" to scalars.
1410
1411         * stack.c (print_frame_arguments): Set initial value to "scalars".
1412
1413 2009-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
1414
1415         * mips-tdep.c (mips_numeric_register_alieses): New definition.
1416         (mips_gdbarch_init): Add user registers from
1417         mips_numeric_register_aliases.
1418
1419 2009-04-01  Joel Brobecker  <brobecker@adacore.com>
1420
1421         * linux-nat.c (linux_nat_filter_event): Minor comment reformatting.
1422
1423 2009-04-01  Joel Brobecker  <brobecker@adacore.com>
1424
1425         * linux-nat.c (linux_nat_filter_events): Do not delete the lwp if
1426         this is the last one.
1427
1428 2009-04-01  Pedro Alves  <pedro@codesourcery.com>
1429
1430         * remote.c (append_resumption): New.
1431         (remote_vcont_resume): Use it.
1432
1433 2009-04-01  Joel Brobecker  <brobecker@adacore.com>
1434
1435         * windows-nat.c (+windows_get_ada_task_ptid): New function.
1436         (init_windows_ops): Set windows_ops.to_get_ada_task_ptid.
1437
1438 2009-03-31  Daniel Jacobowitz  <dan@codesourcery.com>
1439             Keith Seitz  <keiths@redhat.com>
1440             Jan Kratochvil  <jan.kratochvil@redhat.com>
1441
1442         PR gdb/6817
1443         * Makefile.in (dbxread.o): Update.
1444         * dbxread.c (read_dbx_symtab): Use cp_canonicalize_string.
1445         * dwarf2read.c (GDB_FORM_cached_string): New.
1446         (read_partial_die): Use dwarf2_canonicalize_name.
1447         (dwarf2_linkage_name): Use dwarf2_name.
1448         (dwarf2_canonicalize_name): New.
1449         (dwarf2_name): Use dwarf2_canonicalize_name.
1450         (dwarf_form_name, dump_die): Handle GDB_FORM_cached_string.
1451         * stabsread.c (define_symbol, read_type): Use cp_canonicalize_string.
1452         * symtab.c (lookup_symbol_in_language): Canonicalize input before
1453         searching.
1454         * cp-name-parser.y: operator() requires two parameters,
1455         according to libiberty.
1456         * minsyms.c (lookup_minimal_symbol): Canonicalize input
1457         before searching.
1458         * NEWS: Update.
1459
1460 2009-03-31  Joel Brobecker  <brobecker@adacore.com>
1461
1462         Provide support for (Ada) task-specific breakpoints.
1463
1464         * ada-lang.h (ada_get_task_number): Add declaration.
1465         (breakpoint_ada_task_match): Delete declaration.
1466         * ada-tasks.c (ada_get_task_number): Make non-static.
1467         * breakpoint.h (struct breakpoint): Add field "task".
1468         * breakpoint.c (print_one_breakpoint_location): Add handling of
1469         task-specific breakpoints.
1470         (create_breakpoint, create_breakpoints, find_condition_and_thread):
1471         New parameter "task".
1472         (break_command_really): Update calls to find_condition_and_thread
1473         and create_breakpoints.
1474         (breakpoint_re_set_one): Update call to find_condition_and_thread.
1475         Set b->task.
1476
1477 2009-03-31  Joel Brobecker  <brobecker@adacore.com>
1478
1479         * ada-tasks.c (short_task_info): Eliminate the "Running" task state.
1480
1481 2009-03-31  Pedro Alves  <pedro@codesourcery.com>
1482
1483         * remote.c (remote_notice_new_inferior): Use ptid_is_pid.  Check
1484         if the thread's ptid without a thread id field is in the list
1485         before calling thread_change_ptid.
1486         (extended_remote_attach_1): In non-stop mode, do not rely on
1487         querying the current thread, instead, query the thread list, and
1488         select the first thread of the process.
1489         * gdbthread.h (first_thread_of_process): Declare.
1490         * thread.c (first_thread_of_process): Define.
1491
1492 2009-03-30  Stan Shebs  <stan@codesourcery.com>
1493
1494         Make tracepoints into a type of breakpoint.
1495         * breakpoint.h (enum bptype): Add bp_tracepoint.
1496         (struct breakpoint): Add fields step_count, pass_count, actions.
1497         (get_tracepoint, get_tracepoint_by_number): Declare.
1498         (all_tracepoints): Declare.
1499         * breakpoint.c: Include tracepoint.h, readline.h.
1500         (ALL_TRACEPOINTS): Move here from tracepoint.c.
1501         (tracepoint_count): Ditto.
1502         (should_be_inserted): GDB does not insert tracepoints itself.
1503         (print_it_typical): Add tracepoint case.
1504         (bpstat_what): Ditto.
1505         (print_one_breakpoint_location): Ditto, and add printing for
1506         pass count, step count, and action list.
1507         (user_settable_breakpoint): Add tracepoint case.
1508         (allocate_bp_location): Ditto.
1509         (set_breakpoint_location_function): Ditto.
1510         (disable_breakpoints_in_shlibs): Ditto.
1511         (mention): Ditto.
1512         (break_command_really): Add argument traceflag, use to choose
1513         basic breakpoint type.
1514         (break_command_1): Pass extra argument.
1515         (set_breakpoint, handle_gnu_v3_exceptions): Ditto.
1516         (breakpoint_re_set_one): Add tracepoint case.
1517         (disable_command, enable_command): Ditto.
1518         (set_tracepoint_count): Move here from tracepoint.c.
1519         (trace_command): Move here from tracepoint.c and use
1520         break_command_really.
1521         (tracepoints_info): Move here from tracepoint.c and call
1522         breakpoints_info.
1523         (enable_trace_command): Move here from tracepoint.c and call
1524         enable_command.
1525         (disable_trace_command): Move here from tracepoint.c and call
1526         disable_command.
1527         (delete_trace_command): Move here from tracepoint.c and call
1528         delete_breakpoint.
1529         (trace_pass_command): Move here from tracepoint.c.
1530         (get_tracepoint_by_number): Ditto.
1531         (tracepoint_save_command): Ditto.
1532         (get_tracepoint): New function.
1533         (all_tracepoints): New function.
1534         (_initialize_breakpoint): Move tracepoint init from tracepoint.c,
1535         deprecate "enable trace" and "disable trace" commands.
1536         * tracepoint.h (struct tracepoint): Remove.
1537         (tracepoint_chain): Remove decl.
1538         (deprecated_create_tracepoint_hook): Remove decl.
1539         (deprecated_delete_tracepoint_hook): Remove decl.
1540         (deprecated_modify_tracepoint_hook): Remove decl.
1541         (ALL_TRACEPOINTS, ALL_TRACEPOINTS_SAFE): Remove.
1542         (free_actions): Update signature.
1543         (validate_actionline): Update signature.
1544         (end_actions_pseudocommand): Declare.
1545         (while_stepping_pseudocommand): Declare.
1546         * tracepoint.c: Include breakpoint.h.
1547         (tracepoint_chain, tracepoint_count): Remove.
1548         (free_actions, make_cleanup_free_actions): Update signature.
1549         (trace_command, set_raw_tracepoint): Remove.
1550         (trace_mention): Remove.
1551         (tracepoints_info): Remove.
1552         (tracepoint_operation, map_args_over_tracepoints): Remove.
1553         (get_tracepoint_by_number): Remove.
1554         (enable_trace_command, disable_trace_command): Remove.
1555         (delete_trace_command, trace_pass_command): Remove.
1556         (trace_actions_command, read_actions): Update signature.
1557         (validate_actionline): Update signature, use bp loc.
1558         (encode_actions): Ditto.
1559         (download_tracepoint): New function, body of trace_start_command.
1560         (trace_start_command): Call it, use all_tracepoints.
1561         (tracepoint_save_command): Remove.
1562         (tracepoint_dump_command): Use get_tracepoint.
1563         (end_actions_pseudocommand): Make globally visible.
1564         (while_stepping_pseudocommand): Ditto.
1565         (_initialize_tracepoint): Move command definitions to breakpoint.c.
1566
1567 2009-03-30  Thiago Jung Bauermann  <bauerman@br.ibm.com>
1568
1569         Expose frames to Python.
1570         * Makefile.in (SUBDIR_PYTHON_OBS): Add python-frame.o.
1571         (SUBDIR_PYTHON_SRCS): Add python-frame.c.
1572         (python-frame.o): New target.
1573         * python/python-frame.c: New file.
1574         * python/python-internal.h (gdbpy_frames, gdbpy_newest_frame,
1575         gdbpy_frame_stop_reason_string, gdbpy_selected_frame,
1576         gdbpy_initialize_frames): New prototypes.
1577         * python/python.c (_initialize_python): Call gdbpy_initialize_frames.
1578         (GdbMethods): Add `selected_frame' and `frame_stop_reason_string'
1579         entries.
1580         * stack.c (find_frame_funname): New function, factored out of
1581         print_frame.
1582         (print_frame): Call find_frame_funname.
1583         * stack.h (find_frame_funname): Add prototype.
1584
1585 2009-03-29  Thiago Jung Bauermann  <bauerman@br.ibm.com>
1586
1587         Remove unused value_object attribute `owned_by_gdb'.
1588         * python/python-value.c (value_object): Remove owned_by_gdb
1589         attribute.
1590         (valpy_dealloc): Remove reference to self->owned_by_gdb.
1591         (valpy_new): Likewise.
1592         (value_to_value_object): Likewise.
1593
1594 2009-03-29  Thiago Jung Bauermann  <bauerman@br.ibm.com>
1595
1596         Change gdb.Value.address from a method to an attribute.
1597         * python/python-value.c (value_object): Add `address' element.
1598         (valpy_dealloc): Decrement reference to self->address if set.
1599         (valpy_new): Initialize val_obj->address.
1600         (valpy_address): Rename to ...
1601         (valpy_get_address): ... this.  Change signature from method to
1602         attribute.  Update self->address if not set.
1603         (value_to_value_object): Initialize val_obj->address.
1604         (value_object_getset): Add `address' element.
1605         (value_object_methods): Remove `address' element.
1606
1607 2009-03-29  Andreas Schwab  <schwab@linux-m68k.org>
1608
1609         * observer.sh: Set LANG/LC_ALL to C, not c.
1610
1611 2009-03-28  Kevin Buettner  <kevinb@redhat.com>
1612
1613         * mn10300-tdep.c (mn10300_gdbarch_init): For mn10300, by default,
1614         `char' is unsigned.
1615
1616 2009-03-28  Pedro Alves  <pedro@codesourcery.com>
1617
1618         * remote.c (remote_stop_ns): If multi-process extensions are off,
1619         and GDB is requesting the whole process to stop, sent "vCont;t",
1620         not "vCont;t:-1"
1621
1622 2009-03-28  Pedro Alves  <pedro@codesourcery.com>
1623
1624         * inf-loop.c (inferior_event_handler): Avoid calling is_running on
1625         null inferior_ptid.
1626
1627 2009-03-27  Eli Zaretskii  <eliz@gnu.org>
1628
1629         * config/djgpp/fnchange.lst: Update to fix ARI-reported problems.
1630
1631 2009-03-26  Doug Evans  <dje@google.com>
1632
1633         * thread.c (do_restore_current_thread_cleanup): Redo test for
1634         whether to restore old->inferior_ptid.
1635
1636 2009-03-26  Tom Tromey  <tromey@redhat.com>
1637
1638         * breakpoint.c (resolve_sal_pc): Preserve original line number
1639         when skipping prologue.
1640
1641 2009-03-26  Doug Evans  <dje@google.com>
1642
1643         * thread.c (inferior_thread) Remove "extern" in definition.
1644
1645 2009-03-26  Thiago Jung Bauermann  <bauerman@br.ibm.com>
1646
1647         Add gdb.Value.is_optimized_out attribute.
1648         * python/python-value.c (valpy_get_is_optimized_out): New
1649         function.
1650         (value_object_getset): New variable.
1651         (value_object_type): Initialize tp_getset element.
1652
1653 2009-03-26  Joel Brobecker  <brobecker@adacore.com>
1654
1655         Recognize missing DW_AT_location as <value optimized out>.
1656         * dwarf2read.c
1657         (new_symbol <DW_TAG_variable> <!DW_AT_location> <!DW_AT_external>):
1658         Call add_symbol_to_list.
1659
1660 2009-03-25  Tom Tromey  <tromey@redhat.com>
1661
1662         * gdbtypes.h (CHECK_TYPEDEF): Don't yield a value.
1663         * stack.c (print_this_frame_argument_p): Use check_typedef.
1664
1665 2009-03-25  Tom Tromey  <tromey@redhat.com>
1666
1667         * configure: Rebuild.
1668         * acinclude.m4 (AM_ICONV): Set am_cv_use_build_libiconv.
1669         Rearrange flags setting.  Add comments.
1670
1671 2009-03-25  Pierre Muller  <muller@ics.u-strasbg.fr>
1672
1673         * config/i386/nm-i386.h: Remove code within
1674         I386_WATCHPOINTS_IN_TARGET_VECTOR conditional.
1675         * config/i386/nm-cygwin.h: Remove I386_WATCHPOINTS_IN_TARGET_VECTOR
1676         macro.
1677         * config/i386/nm-cygwin64.h: Ditto.
1678         * config/i386/nm-fbsd.h: Ditto.
1679         * config/i386/nm-go32.h: Ditto.
1680         * config/i386/nm-linux.h: Ditto.
1681         * config/i386/nm-linux64.h: Ditto.
1682
1683 2009-03-25  Pierre Muller  <muller@ics.u-strasbg.fr>
1684
1685         ARI fix: "xasprintf" rule.
1686         * printcmd.c (sym_info): Replace xasprintf by xstrprintf.
1687
1688 2009-03-25  Pedro Alves  <pedro@codesourcery.com>
1689
1690         * remote.c (remote_start_remote): In non-stop mode, call
1691         init_wait_for_inferior before adding threads and inferiors.
1692
1693 2009-03-25  Joel Brobecker  <brobecker@adacore.com>
1694
1695         * breakpoint.c (breakpoint_thread_match): Split a large condition
1696         into several smaller conditions.  No behavior change.
1697
1698 2009-03-25  Pedro Alves  <pedro@codesourcery.com>
1699
1700         * infrun.c (infrun_thread_thread_exit): New.
1701         (_initialize_infrun): Attach it to the thread_exit observer.
1702         * thread.c (delete_thread_1): Always call the observer, passing it
1703         the silent flag.
1704         * mi/mi-interp.c (mi_thread_exit): Add "silent" parameter.  If
1705         SILENT, return immediately.
1706
1707 2009-03-25  Pedro Alves  <pedro@codesourcery.com>
1708
1709         * infrun.c (normal_stop): Use has_stack_frames instead of
1710         target_has_stack.
1711         * mi/mi-main.c (mi_execute_command): Avoid calling inferior_thread
1712         when there is no thread selected.
1713         (mi_cmd_execute): Don't special case commands that can run without
1714         a valid selected thread.
1715         * top.c (execute_command): Don't special case commands that can
1716         run without a valid selected thread.  Use has_stack_frames.
1717         * infcmd.c (ensure_valid_thread): New.
1718         (continue_1, step_1, jump_command, signal_command): Use it.
1719         (detach_command): Error out if there's no selected thread/inferior.
1720         * thread.c (print_thread_info): Allow having no thread selected.
1721         (switch_to_thread): Don't read the PC if there is no current thread.
1722         (do_restore_current_thread_cleanup): Don't record the current
1723         frame if there is no current thread.
1724         (make_cleanup_restore_current_thread): Don't read frame info if
1725         there is no selected thread.
1726         (_initialize_thread): Don't mark commands as
1727         "no_selected_thread_ok".
1728         * frame.c (get_current_frame): Error out if there is no valid
1729         selected thread.
1730         (has_stack_frames): Return false if there is no valid
1731         selected thread.
1732         * cli/cli-cmds.c (init_cli_cmds): Don't mark commands as
1733         "no_selected_thread_ok".
1734         * cli/cli-decode.c (set_cmd_no_selected_thread_ok)
1735         (get_cmd_no_selected_thread_ok): Delete.
1736         * cli/cli-decode.h (CMD_NO_SELECTED_THREAD_OK): Delete.
1737         (set_cmd_no_selected_thread_ok, get_cmd_no_selected_thread_ok):
1738         Delete declaration.
1739         * stack.c (get_selected_block): Use has_stack_frames.
1740
1741 2009-03-25  Thiago Jung Bauermann  <bauerman@br.ibm.com>
1742
1743         Fix size of FPSCR in Power 7 processors.
1744         * ppc-linux-nat.c (PPC_FEATURE_ARCH_2_05): Remove #define.
1745         (PPC_FEATURE_HAS_DFP): New #define.
1746         (ppc_linux_read_description): Check for DFP feature instead of
1747         ISA 2.05 to decide on size of the FPSCR.
1748
1749 2009-03-25  Kevin Buettner  <kevinb@redhat.com>
1750
1751         * mn10300-tdep.c (trad-frame.h): Don't include.
1752         (prologue-value.h): Include.
1753         (mn10300_frame_unwind_cache, set_reg_offsets): Delete.
1754         (struct mn10300_prologue): Define.
1755         (push_reg, translate_rreg, check_for_saved): New functions.
1756         (mn10300_analyze_prologue): Rewrite, using prologue-value
1757         machinery.  Handle more instructions than before.  Permit
1758         instructions to occur in any order.
1759         (mn10300_skip_prologue): Find the extents of the function
1760         in question; mn10300_analyze_prologue no longer does this.
1761         (mn10300_analyze_frame_prologue): New function.
1762         (mn10300_frame_base): New function.
1763         (mn10300_frame_this_id): Rewrite, no longer using trad-frame
1764         implementation.
1765         (mn10300_frame_prev_register): Likewise.
1766         (mn10300_frame_base_address, mn10300_frame_base struct): Delete.
1767         (mn10300_unwind_pc, mn10300_unwind_sp): Rename `next_frame' to
1768         `this_frame'.
1769         (mn10300_frame_unwind_init): Don't call frame_base_set_default().
1770
1771 2009-03-25  Pierre Muller  <muller@ics.u-strasbg.fr>
1772
1773         Fix completer problem for filename completion on the first try.
1774
1775         * gdb/completer.h (gdb_completion_word_break_characters): New function.
1776         * gdb/completer.c: Include gdb_assert.h.
1777         (complete_line_internal_reason): New enum.
1778         (complete_line_internal): Change last argument type to
1779         complete_line_internal_reason.
1780         Modify function to handle the different complete_line_internal_reason
1781         argument values.
1782         (complete_line): Adapt to change in complete_line_internal.
1783         (command_completer): Ditto.
1784         (gdb_completion_word_break_characters): Implement new function.
1785         * top.c (init_main): Set  rl_completion_word_break_hook to
1786         gdb_completion_word_break_characters.
1787
1788
1789 2009-03-25  Pierre Muller  <muller@ics.u-strasbg.fr>
1790
1791         ARI fix: "strlen d_name" rule.
1792         * linux-nat.c (linux_nat_xfer_osdata): Use NAMELEN macro.
1793
1794
1795 2009-03-24  Tom Tromey  <tromey@redhat.com>
1796             Pedro Alves  <pedro@codesourcery.com>
1797
1798         * configure, config.in: Rebuild.
1799         * configure.ac: Check for libiconvlist.
1800         * charset.c: Check HAVE_LIBICONVLIST.
1801         * acinclude.m4 (AM_ICONV): Don't subst LIBICONV, LIBICONV_INCLUDE,
1802         LIBICONV_LIBDIR.  Update CPPFLAGS and LIBS.
1803         * Makefile.in (LIBICONV, LIBICONV_INCLUDE, LIBICONV_LIBDIR):
1804         Remove.
1805         (INTERNAL_CFLAGS_BASE): Update.
1806         (INTERNAL_LDFLAGS): Update.
1807         (CLIBS): Update.
1808
1809 2009-03-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
1810
1811         * configure.ac: Initialize the variable $PREFER_CURSES.
1812         * configure: Regenerated.
1813
1814 2009-03-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
1815
1816         * configure.ac: Enable $PREFER_CURSES even with default $ENABLE_TUI.
1817         * configure: Regenerated.
1818
1819 2009-03-24  Pierre Muller  <muller@ics.u-strasbg.fr>
1820
1821         ARI fix: "strerror" rule.
1822         * darwin-nat.c (darwin_ptrace): Use safe_strerror.
1823         (darwin_stop_inferior, darwin_attach, darwin_detach): Ditto.
1824
1825 2009-03-23  Joel Brobecker  <brobecker@adacore.com>
1826
1827         * ada-exp.y (get_symbol_field_type): Make sure to resolve typedefs
1828         before looking up the fields inside our struct type.
1829
1830 2009-03-23  Joel Brobecker  <brobecker@adacore.com>
1831
1832         * ada-lang.c (resolve_subexp) [UNOP_QUAL]: Resolve typedefs before
1833         trying to resolve the type qualification.
1834
1835 2009-03-23  Joel Brobecker  <brobecker@adacore.com>
1836
1837         * ada-lang.c (ada_evaluate_subexp) [UNOP_IN_RANGE]: make sure
1838         we try to apply the attribute on the real type, rather than
1839         its associated typedef.
1840
1841 2009-03-23  Joel Brobecker  <brobecker@adacore.com>
1842
1843         * ada-lang.c (ada_evaluate_subexp) [OP_ATR_MODULUS]: Use check_typdef
1844         to make sure we try to get the modulus of the actual type, not the
1845         associated typedef.
1846
1847 2009-03-23  Joel Brobecker  <brobecker@adacore.com>
1848
1849         * ada-lang.c (ada_evaluate_subexp): [OP_ATR_FIRST, OP_ATR_LAST]
1850         [OP_ATR_LENGTH]: When using the attribute on a type, make sure
1851         to get the real type, not the associated typedef.
1852
1853 2009-03-23  Joel Brobecker  <brobecker@adacore.com>
1854
1855         * ada-lang.c (ada_get_field_index): Add handling of the case
1856         when TYPE is a typedef of a struct.
1857
1858 2009-03-23  Joel Brobecker  <brobecker@adacore.com>
1859
1860         Add gdb_usleep as a portable version of usleep based on gdb_select.
1861         * gdb_usleep.h, gdb_usleep.c: New files.
1862         * Makefile.in (SFILES): Add gdb_usleep.c.
1863         (HFILES_NO_SRCDIR): Add gdb_usleep.h.
1864         (COMMON_OBS): Add gdb_usleep.o.
1865         * ser-unix.c (hardwire_send_break): Replace call to gdb_select
1866         by call to gdb_usleep.
1867
1868 2009-03-23  Joel Brobecker  <brobecker@adacore.com>
1869
1870         * buildsym.c (end_symtab): If we ignore the subfiles, then
1871         unlink the associated symtabs if they were already allocated.
1872
1873 2009-03-23  Jerome Guitton  <guitton@adacore.com>
1874
1875         Provide a way to force building of GDB with libcurses.
1876         * configure.ac: Add --with-curses.
1877         * configure: Regenerated.
1878
1879 2009-03-23  Tom Tromey  <tromey@redhat.com>
1880
1881         * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_uninit>: Fix typo in
1882         error message.
1883
1884 2009-03-23  Paul Pluzhnikov  <ppluzhnikov@google.com>
1885
1886         * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Use
1887         solib_contains_address_p instead of searching.
1888
1889 2009-03-23  Tom Tromey  <tromey@redhat.com>
1890
1891         * charset.c (ICONV_CONST) <PHONY_ICONV>: Define.
1892         (iconv): Make 'inbuf' argument const.
1893         (convert_between_encodings): Use ICONV_CONST.
1894         (wchar_iterate): Likewise.
1895
1896 2009-03-22  Christopher Faylor  <me+cygwin@cgf.cx>
1897
1898         * windows-nat.c (AdjustTokenPrivileges): Implement macro wraparound for
1899         dynamically loaded function.
1900         (LookupPrivilegeValueA): Ditto.
1901         (OpenProcessToken): Ditto.
1902         (AdjustTokenPrivileges): Rename and define placeholder for address of
1903         dynamically loaded function.
1904         (LookupPrivilegeValueA): Ditto.
1905         (OpenProcessToken): Ditto.
1906         (set_process_privilege): Remove check for loaded functions.
1907         (bad_OpenProcessToken): Define.
1908         (_initialize_loadable): Load token functions from advapi here, setting
1909         OpenProcessToken function to a dummy static function which always return
1910         error if OS doesn't support this functionality.
1911
1912 2009-03-22   Nicolas Roche  <roche@adacore.com>
1913              Christopher Faylor <me+cygwin@cgf.cx>
1914
1915         * win32-nat.c (ctrl_c_handler): New function.
1916         (win32_wait): Register ctrl_c_handler as Ctrl-C handler if the inferior
1917         is run in a separate console.
1918
1919 2009-03-22  Christopher Faylor  <me+cygwin@cgf.cx>
1920
1921         * windows-nat.c (DebugActiveProcessStop): Implement macro wraparound
1922         for dynamically loaded function.
1923         (DebugBreakProcess): Ditto.
1924         (DebugSetProcessKillOnExit): Ditto.
1925         (EnumProcessModules): Ditto.
1926         (GetModuleFileNameExA): Ditto.
1927         (GetModuleInformation): Ditto.
1928         (DebugActiveProcessStop): Rename and define placeholder for address of
1929         dynamically loaded function.
1930         (DebugBreakProcess): Ditto.
1931         (DebugSetProcessKillOnExit): Ditto.
1932         (EnumProcessModules): Ditto.
1933         (GetModuleFileNameExA): Ditto.
1934         (GetModuleInformation): Ditto.
1935         (psapi_loaded): Delete.
1936         (get_module_name): Don't check psapi_loaded, just rely on the fact that
1937         dynamically loaded functions will return failure if they weren't
1938         previously found.
1939         (has_detach_ability): Delete.
1940         (windows_attach): Remove call to has_detach_ability ().  Just rely on
1941         functions being callable.
1942         (bad_DebugActiveProcessStop): Define.
1943         (bad_DebugBreakProcess): Ditto.
1944         (bad_DebugSetProcessKillOnExit): Ditto.
1945         (bad_EnumProcessModules): Ditto.
1946         (bad_GetModuleFileNameExA): Ditto.
1947         (bad_GetModuleInformation): Ditto.
1948         (_initialize_loadable): Rename from _initialize_psapi.  Initialize all
1949         dynamic storage here, setting nonexistent functions to dummy static
1950         functions which always return error.
1951
1952 2009-03-22  Pedro Alves  <pedro@codesourcery.com>
1953
1954         * mi/mi-interp.c (mi_interpreter_init): Attach mi_about_to_proceed
1955         to the about_to_proceed observer notification.
1956         (mi_about_to_proceed): New.
1957         (mi_on_resume): Only output ^running and the prompt here if the
1958         target was proceeded.
1959         * breakpoint.c (breakpoint_proceeded): New static.
1960         (breakpoint_about_to_proceed): New.
1961         (_initialize_breakpoints): Attach breakpoint_about_to_proceed to
1962         the about_to_proceed observer notification.
1963         * inferior.h (breakpoint_proceeded): Delete declaration.
1964         * infrun.c (clear_proceed_status): Don't set breakpoint_proceeded.
1965         Notify the about_to_proceed observers.
1966         (struct inferior_status): Delete breakpoint_proceeded member.
1967         (save_inferior_status): Don't save it.
1968         (restore_inferior_status): Don't restore it.
1969         * mi-main.h (mi_proceeded): Declare.
1970         * mi/mi-main.c (mi_cmd_execute): Clear mi_proceeded before running
1971         a command.
1972
1973 2009-03-22  Pedro Alves  <pedro@codesourcery.com>
1974
1975         * gdbthread.h (struct thread_info): Add in_infcall member.
1976         * infcall.c (run_inferior_call): Save, set and restore in_infcall.
1977         Remove reverences to suppress_resume_observer.  Refresh
1978         `call_thread' after returning from `proceed'.
1979         * infcmd.c (suppress_resume_observer): Delete.
1980         * inferior.h (suppress_resume_observer): Delete declaration.
1981         * mi/mi-interp.c (mi_on_resume): Suppress output while calling an
1982         inferior function.
1983         * thread.c (set_running): Remove references to
1984         suppress_resume_observer.
1985         * infrun.c (struct inferior_status): Add in_infcall member.
1986         (save_inferior_status): Save it.
1987         (restore_inferior_status): Restore it.
1988
1989 2009-03-22  Pedro Alves  <pedro@codesourcery.com>
1990
1991         * infcall.c (run_inferior_call): Remove references to
1992         suppress_stop_observer.
1993         * infcmd.c (suppress_stop_observer): Delete.
1994         (finish_command_continuation): Remove NOTE.  Don't clear
1995         suppress_stop_observer anymore.
1996         (finish_command_continuation_free_arg): Likewise.
1997         (finish_forward): Remove references to suppress_stop_observer.
1998         Call normal_stop observer if we haven't already.
1999         * inferior.h (suppress_stop_observer): Delete.
2000         * infrun.c (normal_stop): When deciding to suppress the
2001         normal_stop observer, check for proceed_to_finish instead of
2002         suppress_stop_observer.
2003
2004 2009-03-22  Pedro Alves  <pedro@codesourcery.com>
2005
2006         * symfile.c (symfile_relocate_debug_section): Remove check for
2007         SEC_DEBUGGING.
2008
2009 2009-03-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
2010             Jim Blandy  <jimb@red-bean.com>
2011             Thiago Jung Bauermann  <bauerman@br.ibm.com>
2012             Tom Tromey  <tromey@redhat.com>
2013
2014         Miscellaneous fixes to the Python code.
2015         * python/python-cmd.c (cmdpy_init): Accept keyword
2016         arguments.
2017         * python/python-value.c (valpy_string): Accept keyword
2018         arguments.
2019         (valpy_binop): Use `break' to exit from the TRY_CATCH block.
2020         Do not call value_to_value_object on NULL RES_VAL.
2021         (value_object_methods): Change `string' entry to also accept
2022         keyword arguments.
2023         (convert_value_from_python): Return a copy of the value if obj is
2024         a gdb.Value object.
2025         (value_object_methods): Mark the `string' method as accepting
2026         keywords, and show method "prototype" in the doc string.
2027         * python/python.c (get_parameter): Don't return inside a
2028         TRY_CATCH.
2029
2030 2009-03-20  Tom Tromey  <tromey@redhat.com>
2031
2032         Add support for convenience functions in Python.
2033         * Makefile.in (SUBDIR_PYTHON_OBS): Add python-function.o.
2034         (SUBDIR_PYTHON_SRCS): Add python-function.c.
2035         (python-function.o): New target.
2036         * eval.c: Include "python/python.h" and <ctype.h>.
2037         (evaluate_subexp_standard): Handle values of type
2038         TYPE_CODE_INTERNAL_FUNCTION.
2039         * gdbtypes.h (type_code): Add TYPE_CODE_INTERNAL_FUNCTION.
2040         * parse.c (write_exp_string): Remove duplicate word in comment.
2041         * python/python-function.c: New file.
2042         * python/python-internal.h (gdbpy_initialize_functions): Add
2043         prototype.
2044         * python/python.c (_initialize_python): Call
2045         gdbpy_initialize_functions.
2046         * valprint.c (value_check_printable): Handle values of type
2047         TYPE_CODE_INTERNAL_FUNCTION.
2048         * value.c: Include "cli/cli-decode.h".
2049         (internal_function): New struct.
2050         (functionlist, internal_fn_type): New static variables.
2051         (lookup_only_internalvar,
2052         lookup_internalvar): Add const qualifier to name argument.
2053         (create_internalvar): Likewise.  Initialize new field.
2054         (set_internal_var): Fix typo in comment.  Don't allow assignment
2055         to canonical variable.
2056         (value_create_internal_function, value_internal_function_name,
2057         call_internal_function, function_command, function_destroyer,
2058         add_internal_function): New functions.
2059         (_initialize_values): Create `function' placeholder command.
2060         Initialize internal_fn_type.
2061         * value.h (lookup_only_internalvar, create_internalvar,
2062         lookup_internalvar): Add const qualifier to name argument.
2063         (internal_function_fn, add_internal_function, call_internal_function,
2064         value_internal_function_name): Add prototypes.
2065         (struct internalvar) <canonical>: New field.
2066
2067 2009-03-20  Tom Tromey  <tromey@redhat.com>
2068
2069         * c-lang.c (evaluate_subexp_c): Call check_typedef.
2070
2071 2009-03-20  Tom Tromey  <tromey@redhat.com>
2072             Julian Brown  <julian@codesourcery.com>
2073
2074         PR i18n/7220, PR i18n/7821, PR exp/8815, PR exp/9103,
2075         PR i18n/9401, PR exp/9613:
2076         * NEWS: Update
2077         * value.h (value_typed_string): Declare.
2078         (val_print_string): Update.
2079         * valprint.h (print_char_chars): Update.
2080         * valprint.c (print_char_chars): Add type argument.  Update.
2081         (val_print_string): Likewise.
2082         * valops.c (value_typed_string): New function.
2083         * utils.c (host_char_to_target): New function.
2084         (parse_escape): Use host_char_to_target, host_hex_value.  Update.
2085         Remove '^' case.
2086         (no_control_char_error): Remove.
2087         * typeprint.c (print_type_scalar): Update.
2088         * scm-valprint.c (scm_scmval_print): Update.
2089         * scm-lang.h (scm_printchar, scm_printstr): Update.
2090         * scm-lang.c (scm_printchar): Add type argument.
2091         (scm_printstr): Likewise.
2092         * printcmd.c (print_formatted): Update.
2093         (print_scalar_formatted): Update.
2094         (printf_command) <wide_string_arg, wide_char_arg>: New constants.
2095         Handle '%lc' and '%ls'.
2096         * parser-defs.h (struct typed_stoken): New type.
2097         (struct stoken_vector): Likewise.
2098         (write_exp_string_vector): Declare.
2099         * parse.c (write_exp_string_vector): New function.
2100         * p-valprint.c (pascal_val_print): Update.
2101         * p-lang.h (is_pascal_string_type, pascal_printchar,
2102         pascal_printstr): Update.
2103         * p-lang.c (is_pascal_string_type): Remove 'char_size' argument.
2104         Add 'char_type' argument.
2105         (pascal_emit_char): Add type argument.
2106         (pascal_printchar): Likewise.
2107         (pascal_printstr): Likewise.
2108         * objc-lang.c (objc_emit_char): Add type argument.
2109         (objc_printchar): Likewise.
2110         (objc_printstr): Likewise.
2111         * macroexp.c (get_character_constant): Handle unicode characters.
2112         Use c_parse_escape.
2113         (get_string_literal): Handle unicode strings.  Use
2114         c_parse_escape.
2115         * m2-valprint.c (print_unpacked_pointer): Update.
2116         (m2_print_array_contents): Update.
2117         (m2_val_print): Update.
2118         * m2-lang.c (m2_emit_char): Add type argument.
2119         (m2_printchar): Likewise.
2120         (m2_printstr): Likewise.
2121         * language.h (struct language_defn) <la_printchar>: Add type
2122         argument.
2123         <la_printstr, la_emitchar>: Likewise.
2124         (LA_PRINT_CHAR): Likewise.
2125         (LA_PRINT_STRING): Likewise.
2126         (LA_EMIT_CHAR): Likewise.
2127         * language.c (unk_lang_emit_char): Add type argument.
2128         (unk_lang_printchar): Likewise.
2129         (unk_lang_printstr): Likewise.
2130         * jv-valprint.c (java_val_print): Update.
2131         * jv-lang.c (java_emit_char): Add type argument.
2132         * f-valprint.c (f_val_print): Update.
2133         * f-lang.c (f_emit_char): Add type argument.
2134         (f_printchar): Likewise.
2135         (f_printstr): Likewise.
2136         * expprint.c (print_subexp_standard): Update.
2137         * charset.h (target_wide_charset): Declare.
2138         (c_target_char_has_backslash_escape, c_parse_backslash,
2139         host_char_print_literally, host_char_to_target,
2140         target_char_to_host, target_char_to_control_char): Remove.
2141         (enum transliterations): New type.
2142         (convert_between_encodings): Declare.
2143         (HOST_ESCAPE_CHAR): New define.
2144         (host_letter_to_control_character, host_hex_value): Declare.
2145         (enum wchar_iterate_result): New enum.
2146         (struct wchar_iterator): Declare.
2147         (make_wchar_iterator, make_cleanup_wchar_iterator, wchar_iterator,
2148         wchar_push_back): Declare.
2149         * charset-list.h: New file.
2150         * c-valprint.c (textual_name): New function.
2151         (textual_element_type): Handle wide character types.
2152         (c_val_print): Pass original type to textual_element_type.  Handle
2153         wide character types.
2154         (c_value_print): Use textual_element_type.  Pass original type of
2155         value to val_print.
2156         * c-lang.h (enum c_string_type): New type.
2157         (c_printchar, c_printstr): Update.
2158         * c-lang.c (classify_type): New function.
2159         (print_wchar): Likewise.
2160         (c_emit_char): Add type argument.  Handle wide characters.
2161         (c_printchar): Likewise.
2162         (c_printstr): Add type argument.  Handle wide and multibyte
2163         character sets.
2164         (convert_ucn): New function.
2165         (emit_numeric_character): Likewise.
2166         (convert_octal): Likewise.
2167         (convert_hex): Likewise.
2168         (ADVANCE): New macro.
2169         (convert_escape): New function.
2170         (parse_one_string): Likewise.
2171         (evaluate_subexp_c): Likewise.
2172         (exp_descriptor_c): New global.
2173         (c_language_defn): Use exp_descriptor_c.
2174         (cplus_language_defn): Likewise.
2175         (asm_language_defn): Likewise.
2176         (minimal_language_defn): Likewise.
2177         (charset_for_string_type): New function.
2178         * c-exp.y (%union): Add 'svec' and 'tsval'.
2179         (CHAR): New token.
2180         (exp): Add CHAR production.
2181         (string_exp): Rewrite.
2182         (exp) <string_exp>: Rewrite.
2183         (tempbuf): Now global.
2184         (tempbuf_init): New global.
2185         (parse_string_or_char): New function.
2186         (yylex) <tempbuf>: Now global.
2187         <tokptr, tempbufindex, tempbufsize, token_string, class_prefix>:
2188         Remove.
2189         Handle 'u', 'U', and 'L' prefixes.  Call parse_string_or_char.
2190         (c_parse_escape): New function.
2191         * auxv.c (fprint_target_auxv): Update.
2192         * ada-valprint.c (ada_emit_char): Add type argument.
2193         (ada_printchar): Likewise.
2194         (ada_print_scalar): Update.
2195         (printstr): Add type argument.  Update calls to ada_emit_char.
2196         (ada_printstr): Add type argument.
2197         (ada_val_print_array): Update.
2198         (ada_val_print_1): Likewise.
2199         * ada-lang.c (emit_char): Add type argument.
2200         * ada-lang.h (ada_emit_char, ada_printchar, ada_printstr): Add
2201         type arguments.
2202         * gdb_locale.h: Include langinfo.h.
2203         * charset.c (_initialize_charset): Set default host charset from
2204         the locale.  Don't register charsets.  Add target-wide-charset
2205         commands.  Call find_charset_names.
2206         (struct charset, struct translation): Remove.
2207         (GDB_DEFAULT_HOST_CHARSET): Remove.
2208         (GDB_DEFAULT_TARGET_WIDE_CHARSET): New define.
2209         (target_wide_charset_name): New global.
2210         (show_host_charset_name): Handle "auto".
2211         (show_target_wide_charset_name): New function.
2212         (host_charset_enum, target_charset_enum): Remove.
2213         (charset_enum): New global.
2214         (all_charsets, register_charset, lookup_charset, all_translations,
2215         register_translation, lookup_translation): Remove.
2216         (simple_charset, ascii_print_literally, ascii_to_control): Remove.
2217         (iso_8859_print_literally, iso_8859_to_control,
2218         iso_8859_family_charset): Remove.
2219         (ebcdic_print_literally, ebcdic_to_control,
2220         ebcdic_family_charset): Remove.
2221         (struct cached_iconv, check_iconv_cache, cached_iconv_convert,
2222         register_iconv_charsets): Remove.
2223         (target_wide_charset_be_name, target_wide_charset_le_name): New
2224         globals.
2225         (identity_either_char_to_other): Remove.
2226         (set_be_le_names, validate): New functions.
2227         (backslashable, backslashed, represented): Remove.
2228         (default_c_target_char_has_backslash_escape): Remove.
2229         (default_c_parse_backslash, iconv_convert): Remove.
2230         (ascii_to_iso_8859_1_table, ascii_to_ebcdic_us_table,
2231         ascii_to_ibm1047_table, iso_8859_1_to_ascii_table,
2232         iso_8859_1_to_ebcdic_us_table, iso_8859_1_to_ibm1047_table,
2233         ebcdic_us_to_ascii_table, ebcdic_us_to_iso_8859_1_table,
2234         ebcdic_us_to_ibm1047_table, ibm1047_to_ascii_table,
2235         ibm1047_to_iso_8859_1_table, ibm1047_to_ebcdic_us_table): Remove.
2236         (table_convert_char, table_translation, simple_table_translation):
2237         Remove.
2238         (current_host_charset, current_target_charset,
2239         c_target_char_has_backslash_escape_func,
2240         c_target_char_has_backslash_escape_baton): Remove.
2241         (c_parse_backslash_func, c_parse_backslash_baton): Remove.
2242         (host_char_to_target_func, host_char_to_target_baton): Remove.
2243         (target_char_to_host_func, target_char_to_host_baton): Remove.
2244         (cached_iconv_host_to_target, cached_iconv_target_to_host):
2245         Remove.
2246         (lookup_charset_or_error, check_valid_host_charset): Remove.
2247         (set_host_and_target_charsets): Remove.
2248         (set_host_charset, set_target_charset): Remove.
2249         (set_host_charset_sfunc, set_target_charset_sfunc): Rewrite.
2250         (set_target_wide_charset_sfunc): New function.
2251         (show_charset): Print target wide character set.
2252         (host_charset, target_charset): Rewrite.
2253         (target_wide_charset): New function.
2254         (c_target_char_has_backslash_escape): Remove.
2255         (c_parse_backslash): Remove.
2256         (host_letter_to_control_character): New function.
2257         (host_char_print_literally): Remove.
2258         (host_hex_value): New function.
2259         (target_char_to_control_char): Remove.
2260         (cleanup_iconv): New function.
2261         (convert_between_encodings): New function.
2262         (target_char_to_host): Remove.
2263         (struct wchar_iterator): Define.
2264         (make_wchar_iterator, make_cleanup_wchar_iterator, wchar_iterator,
2265         wchar_push_back): New functions.
2266         (do_cleanup_iterator): New function.
2267         (char_ptr): New typedef.
2268         (charsets): New global.
2269         (add_one, find_charset_names): New functions.
2270         (default_charset_names): New global.
2271         (auto_host_charset_name): Likewise.
2272         * aclocal.m4, config.in, configure: Rebuild.
2273         * configure.ac: Call AM_LANGINFO_CODESET.
2274         (GDB_DEFAULT_HOST_CHARSET): Default to UTF-8.
2275         (AM_ICONV): Invoke earlier.
2276         * acinclude.m4: Include codeset.m4.  Subst LIBICONV_INCLUDE and
2277         LIBICONV_LIBDIR.  Check for libiconv in build tree.
2278         * Makefile.in (LIBICONV_LIBDIR, LIBICONV_INCLUDE): New macros.
2279         (INTERNAL_CFLAGS_BASE): Add LIBICONV_INCLUDE.
2280         (INTERNAL_LDFLAGS): Add LIBICONV_LIBDIR.
2281         * gdb_obstack.h (obstack_grow_wstr): New define.
2282         * gdb_wchar.h: New file.
2283         * defs.h: Include it.
2284
2285 2009-03-20  Tom Tromey  <tromey@redhat.com>
2286             Jan Kratochvil  <jan.kratochvil@redhat.com>
2287
2288         * dwarf2read.c (process_die): Handle DW_TAG_typedef.
2289         * eval.c (evaluate_subexp_standard) <OP_TYPE>: Strip a single
2290         typedef.
2291         * ada-lang.c (decode_packed_array_type): Call CHECK_TYPEDEF on the
2292         SYMBOL_TYPE result.
2293         * ada-typeprint.c (print_array_type): Do the NULL check
2294         unconditionally.
2295
2296 2009-03-19  Tom Tromey  <tromey@redhat.com>
2297
2298         * utils.c (do_obstack_free): New function.
2299         (make_cleanup_obstack_free): Likewise.
2300         * defs.h (make_cleanup_obstack_free): Declare.
2301
2302 2009-03-18  Doug Evans  <dje@google.com>
2303
2304         * linux-nat.c (linux_nat_find_memory_regions): Result of PIDGET is an
2305         int, not a long long.
2306         (linux_nat_info_proc_cmd): Store pid in long instead of long long.
2307
2308         * expprint.c (dump_raw_expression): Print note if non-NULL.
2309
2310         * printcmd.c (display_uses_solib_p): Redo loop, scan element list
2311         backwards.
2312
2313 2009-03-18  Nathan Sidwell  <nathan@codesourcery.com>
2314
2315         * Makefile.in: Update license to GPLv3.
2316         * ada-exp.y: Update license to GPLv3.
2317         * ada-lex.l: Update license to GPLv3.
2318         * c-exp.y: Update license to GPLv3.
2319         * cp-name-parser.y: Update license to GPLv3.
2320         * darwin-nat-info.c: Update license to GPLv3.
2321         * f-exp.y: Update license to GPLv3.
2322         * gdb_thread_db.h: Update license to GPLv3.
2323         * hppanbsd-nat.c: Update license to GPLv3.
2324         * hppanbsd-tdep.c: Update license to GPLv3.
2325         * hppaobsd-tdep.c: Update license to GPLv3.
2326         * jv-exp.y: Update license to GPLv3.
2327         * m2-exp.y: Update license to GPLv3.
2328         * objc-exp.y: Update license to GPLv3.
2329         * p-exp.y: Update license to GPLv3.
2330         * reply_mig_hack.awk: Update license to GPLv3.
2331         * reverse.c: Update license to GPLv3.
2332         * xtensa-xtregs.c: Update license to GPLv3.
2333
2334 2009-03-18  Pedro Alves  <pedro@codesourcery.com>
2335
2336         * remote.c (remote_close): Don't call generic_mourn_inferior.
2337         (remote_mourn_1): Call generic_mourn_inferior after closing the
2338         target.
2339
2340 2009-03-18  Pedro Alves  <pedro@codesourcery.com>
2341
2342         * remote.c (remote_start_remote): Add missing call to
2343         init_wait_for_inferior in non-stop mode.
2344
2345 2009-03-18  Pedro Alves  <pedro@codesourcery.com>
2346
2347         * breakpoint.c (bpstat_should_step): Only consider software
2348         watchpoints that have a location.
2349
2350 2009-03-17  Joel Brobecker  <brobecker@adacore.com>
2351
2352         Add a target_ops parameter to the to_kill method in struct target_ops.
2353
2354         * target.h (struct target_ops): Add a "target_ops *" parameter to
2355         method to_kill.
2356         (target_kill): Remove macro. Add declaration.
2357         * target.c (debug_to_kill): Delete, no longer necessary.
2358         (target_kill): New function.
2359         (update_current_target):  Stop inheriting the to_kill method.
2360         Do not de_fault it to no_process either.
2361         (setup_target_debug): Do not set current_target.to_kill.
2362         * gnu-nat.c, go32-nat.c, hpux-thread.c, inf-ptrace.c, inf-ttrace.c,
2363         linux-nat.c, monitor.c, nto-procfs.c, procfs.c, remote-m32r-sdi.c,
2364         remote-mips.c, remote-sim.c, remote.c, windows-nat.c: Update
2365         accordingly.
2366
2367 2009-03-17  Doug Evans  <dje@google.com>
2368
2369         * amd64-linux-nat.c (si_timerid,si_overrun): Provide definition for
2370         glibc 2.3.2 and earlier.
2371
2372 2009-03-17  Joel Brobecker  <brobecker@adacore.com>
2373
2374         * frame.c (get_prev_frame_1): Do not perform the inner_frame
2375         sanity check if this_frame is not NORMAL.
2376         (frame_id_inner): Update the description of this function.
2377
2378 2009-03-17  Hui Zhu  <teawater@gmail.com>
2379
2380         * stack.c: Change the introduce of "disassemble-next-line".
2381
2382 2009-03-17  Pedro Alves  <pedro@codesourcery.com>
2383
2384         * mi/mi-main.h (mi_print_timing_maybe): Add strict prototype,
2385         declare as extern.
2386
2387 2009-03-17  Hui Zhu  <teawater@gmail.com>
2388
2389         * stack.c: Include valprint.h.
2390         (disassemble_next_line): New enum.
2391         (show_disassemble_next_line): New function.  Show the current
2392         value of disassemble-next-line.
2393         (gdb_disassembly_stub_args): New struct for argument passing
2394         between function do_gdb_disassembly and function
2395         gdb_disassembly_stub.
2396         (gdb_disassembly_stub): New function.  Helper for
2397         gdb_disassembly.
2398         (do_gdb_disassembly): New function.  Use TRY_CATCH to catch
2399         the exception from the gdb_disassembly because it will be
2400         broken by filter sometime.
2401         (print_frame_info): If disassemble-next-line is set to auto
2402         or on and doesn't have the line debug messages for $pc,
2403         output the next instruction.
2404         If disassemble-next-line is set to on and there is line debug
2405         messages, output assembly codes for next line.
2406         (_initialize_stack): Make the "set disassemble-next-line"
2407         command an auto-boolean command.  Change its class to
2408         class_stack.  Place it in the top level set list.  Extend help
2409         to describe the auto mode.
2410
2411 2009-03-17  Pedro Alves  <pedro@codesourcery.com>
2412
2413         * infrun.c (normal_stop): Don't overwrite old_chain.
2414
2415 2009-03-16  Joel Brobecker  <brobecker@adacore.com>
2416
2417         * remote-mips.c (mips_load): Replace call to regcache_set_valid_p,
2418         which is undefined, by call to regcache_invalidate, which should
2419         do what the original author wanted to do.
2420
2421 2009-03-16  Joel Brobecker  <brobecker@adacore.com>
2422
2423         * remote-mips.c (mips_mourn_inferior): Add missing ops parameter.
2424         (mips_create_inferior): Likewise.
2425
2426 2009-03-16  Joel Brobecker  <brobecker@adacore.com>
2427
2428         * go32-nat.c (go32_create_inferior): Add missing ops parameter.
2429
2430 2009-03-16  Joel Brobecker  <brobecker@adacore.com>
2431
2432         * darwin-nat.c (darwin_resume): Fix a compiler warning when
2433         building on x86_64-darwin.
2434
2435 2009-03-16  Tristan Gingold  <gingold@adacore.com>
2436
2437         * configure.tgt: Add handling for x86_64-darwin.
2438
2439 2009-03-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
2440
2441         * auxv.c (fprint_target_auxv): New TAG for AT_RANDOM.
2442
2443 2009-03-15  Joel Brobecker  <brobecker@adacore.com>
2444
2445         * aix-thread.c (aix_thread_thread_alive, aix_thread_pid_to_str):
2446         Use the ops parameter to get to the target beneath, rather than
2447         using the current_target global.  Using the current_target global
2448         was an unintended accident.
2449
2450 2009-03-15  Joel Brobecker  <brobecker@adacore.com>
2451
2452         Fix an error happening while loading symbols from a core file
2453         (on AIX).
2454
2455         * rs6000-nat.c (xcoff_relocate_symtab): Use target_has_execution
2456         to detect whether we're debugging a core file or not.
2457
2458 2009-03-15  Joel Brobecker  <brobecker@adacore.com>
2459
2460         Modernize the aix-thread later by getting rid of the base_target
2461         global.  This brings back to life the AIX port which was otherwise
2462         crashing all the time.
2463
2464         * aix-thread.c (base_target): Delete.
2465         (pd_enable): Do not set base_target.
2466         (aix_thread_attach): Use find_target_beneath instead of base_target.
2467         (aix_thread_detach, aix_thread_resume, aix_thread_wait)
2468         (aix_thread_fetch_registers, aix_thread_store_registers),
2469         (aix_thread_xfer_partial, aix_thread_mourn_inferior)
2470         (aix_thread_thread_alive, aix_thread_pid_to_str): Likewise.
2471         (aix_thread_kill): Delete. Does not seem necessary.
2472         (init_aix_thread_ops): Do not set aix_thread_ops.to_kill.
2473
2474 2009-03-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
2475
2476         * stack.c (return_command <retval_exp>): New variables retval_expr
2477         and old_chain.  Inline parse_and_eval to initialize retval_expr.  Check
2478         RETVAL_EXPR for UNOP_CAST and set RETURN_TYPE to the RETURN_VALUE type
2479         if RETURN_TYPE is NULL.
2480
2481 2009-03-14  Pedro Alves  <pedro@codesourcery.com>
2482
2483         * remote.c (PACKET_qAttached): New.
2484         (remote_query_attached): New.
2485         (remote_add_inferior): Add new `attached' argument.  Handle it.
2486         (remote_notice_new_inferior, remote_start_remote): Adjust to pass
2487         -1 to remote_add_inferior in new parameter.
2488         (extended_remote_attach_1): Adjust to pass 1 to
2489         remote_add_inferior in the new parameter.
2490         (extended_remote_create_inferior_1): Adjust to pass 0 to
2491         remote_add_inferior in the new parameter.
2492         (_initialize_remote): Add "set/show remote query-attached-packet"
2493         commands.
2494
2495 2009-03-13  Tom Tromey  <tromey@redhat.com>
2496
2497         * symtab.c (lookup_symbol_in_language): Use a cleanup.
2498
2499 2009-03-13  Doug Evans  <dje@google.com>
2500
2501         * exceptions.h: Clean up some comments on catch_exceptions usage.
2502         * exceptions.c: Ditto.  Plus mark catch_errors as superseded by
2503         catch_exceptions.
2504
2505 2009-02-17  Joel Brobecker  <brobecker@adacore.com>
2506
2507         The following patch helps getting rid of a warning inside solib-som.c.
2508
2509         * source.c (source_full_path_of): Constify parameter filename.
2510         * defs.h (source_full_path_of): Update declaration accordingly.
2511
2512 2009-03-12  Joel Brobecker  <brobecker@adacore.com>
2513
2514         * ada-lang.c (ada_evaluate_subexp): Merge case BINOP_REM and
2515         BINOP_MOD cases with the handling of case BINOP_DIV and BINOP_MUL.
2516         Remove useless op value checks when EVAL_AVOID_SIDE_EFFECTS.
2517
2518 2009-03-12  Joel Brobecker  <brobecker@adacore.com>
2519
2520         * ada-lang.c (ada_evaluate_subexp) <BINOP_DIV>: make sure to
2521         promote the operands when noside is EVAL_AVOID_SIDE_EFFECTS.
2522
2523 2009-03-12  Joel Brobecker  <brobecker@adacore.com>
2524
2525         * ada-tasks.c (ada_task_is_alive): Move up and make static.
2526         * ada-lang.h (ada_task_is_alive): Remove declaration.
2527
2528 2009-03-12  Jerome Guitton  <guitton@adacore.com>
2529
2530         * ada-lang.c (ada_delta): Change the type of numerators and
2531         denominators to DOUBLEST, as they may not fit into a long.
2532         (scaling_factor): Ditto.
2533
2534 2009-03-12  Jerome Guitton  <guitton@adacore.com>
2535
2536         * language.c (lang_bool_type): Set lai->bool_type_symbol to NULL.
2537
2538 2009-03-12  Joel Brobecker  <brobecker@adacore.com>
2539
2540         * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: For tagged
2541         types, if we are unable to determine the actual symbol type
2542         from its tag, then use the static approximation instead.
2543
2544 2009-03-12  Joel Brobecker  <brobecker@adacore.com>
2545
2546         Fix crash printing packed record with packed array.
2547
2548         * ada-lang.c (ada_modulus_from_name): New function.
2549         (ada_modulus): In the case where the type length is bigger than
2550         the size of the type used to hold the bounds, try determining
2551         the modulus from the type name.
2552         (ada_value_primitive_packed_val): Fix bug in the computation of
2553         ntarg causing an out-of-buffer invalid access.
2554
2555 2009-03-12  Joel Brobecker  <brobecker@adacore.com>
2556
2557         Fix segfault when printing short_integer'last.
2558
2559         * ada-lang.c (ada_find_any_type): Search in the primitive types
2560         if a symbol could not be found.
2561
2562 2009-03-12  Joel Brobecker  <brobecker@adacore.com>
2563
2564         * ada-tasks.c (task_states,long_task_states): Add new states
2565         Activating and Acceptor_Delay_Sleep.  Update the description
2566         of state Acceptor_Sleep.
2567
2568 2009-03-12  Jonas Maebe <jonas.maebe@elis.ugent.be>  (obvious change)
2569
2570         Fix a build failure on Darwin following some changes in
2571         the profile of some target_ops methods.
2572
2573         * darwin-nat.c (darwin_kill_inferior): Add target_ops parameter
2574         where missing.
2575         (darwin_stop_inferior, darwin_detach): Likewise.
2576
2577 2009-03-12  Vladimir Prus  <vladimir@codesourcery.com>
2578
2579         Include token in ^running notification for CLI commands.
2580
2581         * mi/mi-main.c (mi_execute_command): Set current_token here.
2582         (mi_cmd_execute): Do not set current_token here.
2583
2584 2009-03-12  Vladimir Prus  <vladimir@codesourcery.com>
2585
2586         Fix MI timings.
2587
2588         * mi/mi-main.c (mi_print_timing_maybe): New.
2589         (captured_mi_execute_command): Simplify. Output timings to
2590         CLI commands, too.
2591         (mi_execute_async_cli_command): Do not print timings.
2592         * mi/mi-main.h (mi_print_timing_maybe): Declare.
2593         * mi/mi-interp.c (mi_on_normal_stop): Call mi_print_timing_maybe.
2594
2595 2009-03-12  Jerome Guitton  <guitton@adacore.com>
2596
2597         * xcoffread.c (process_linenos): Check if the line in the
2598         include table refers to the main source file and, if so,
2599         add them to the main subfile.
2600
2601 2009-03-12  Joel Brobecker  <brobecker@adacore.com>
2602
2603         Fix a build failure on AIX introduced after a change in the profile
2604         of some of the "methods" in the target_ops structure.
2605         * aix-thread.c: Add missing target_ops parameter throughout.
2606
2607         Implement Ada task switching on AIX.
2608         * aix-thread.c (aix_thread_get_ada_task_ptid): New function.
2609         (init_aix_thread_ops): Set aix_thread_ops.to_get_ada_task_ptid.
2610
2611 2009-03-11  Daniel Jacobowitz  <dan@codesourcery.com>
2612
2613         * breakpoint.c (bpstat_check_breakpoint_conditions): Use
2614         value_mark and value_free_to_mark.
2615         * objfiles.c (free_objfile): Call objfile_free_data before
2616         freeing the BFD.
2617
2618 2009-03-10  Hui Zhu  <teawater@gmail.com>
2619
2620         * disasm.c (gdb_disassembly): Remove unused argument
2621         "line_num".
2622         * disasm.h (gdb_disassembly): Ditto.
2623         * cli/cli-cmds.c (print_disassembly): Ditto.
2624         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Ditto.
2625
2626 2009-03-09  Paul Pluzhnikov  <ppluzhnikov@google.com>
2627
2628         * solib.c (solib_contains_address_p): New function.
2629         (solib_name_from_address): Use it.
2630         * printcmd.c (display_uses_solib_p): Use it.
2631         * solib.h (solib_contains_address_p): Declare it.
2632
2633 2009-03-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
2634
2635         * varobj.c (free_variable): Call value_free.
2636
2637 2009-03-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
2638
2639         PR gdb/9873:
2640         * dwarf2read.c (dwarf_decode_macros): New variable `at_commandline'.
2641         Move the variable `macinfo_type' out of the loop.  Create a new
2642         processing pass before the current one to pre-create `current_file'.
2643         New complaint on misplaced zero/non-zero definitions/includes.
2644         Skip first DW_MACINFO_start_file with `at_commandline' set.
2645
2646 2008-03-09  Vladimir Prus  <vladimir@codesourcery.com>
2647
2648        * solib.c (reload_shared_libraries): Give
2649        inferior a chance to reset solib breakpoint.
2650        Reinit frame cache.
2651
2652 2009-03-08  Christopher Faylor  <me+cygwin@cgf.cx>
2653
2654         * windows-nat.c (dr): Redefine to use largest possible integer which
2655         holds a pointer.
2656         (cygwin_set_dr): Avoid coercion.
2657
2658 2009-03-08  Oswald Buddenhagen  <oswald.buddenhagen@trolltech.de>
2659
2660         * windows-nat.c (windows_create_inferior): Implement --tty handling on
2661         non-cygwin.
2662
2663 2009-03-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
2664
2665         Rename solib_address to solib_name_from_address.
2666         * breakpoint.c (insert_bp_location, disable_breakpoints_in_shlibs)
2667         (disable_breakpoints_in_unloaded_shlib): Update.
2668         * printcmd.c (display_uses_solib_p): Likewise.
2669         * stack.c (print_frame): Likewise.
2670         * solib.c: Rename.
2671         * solib.h: Rename.
2672
2673 2009-03-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
2674
2675         * printcmd.c (do_one_display): Reparse exp_string.
2676         (display_uses_solib_p): New function.
2677         (clear_dangling_display_expressions): New function.
2678         (_initialize_printcmd): Add observer.
2679         * solib.c (no_shared_libraries): Swap order of calls to
2680         clear_solib and objfile_purge_solibs.
2681
2682 2009-03-05  Joel Brobecker  <brobecker@adacore.com>
2683
2684         Implement the target-specific part of Ada tasking support
2685         on Tru64.
2686
2687         * dec-thread.c (dec_thread_get_ada_task_ptid): New function.
2688         (init_dec_thread_ops): Set the to_get_ada_task_ptid method.
2689
2690 2009-03-05  Joel Brobecker  <brobecker@adacore.com>
2691
2692         Get rid of the global "base_target" and use "find_target_beneath"
2693         to find the underlying target.
2694         * dec-thread.c (base_target): Delete.
2695         (enable_dec_thread): Remove assignement to base_target.
2696         (dec_thread_detach, dec_thread_wait, dec_thread_wait)
2697         (dec_thread_fetch_registers, dec_thread_store_registers)
2698         (dec_thread_mourn_inferior, dec_thread_pid_to_str):
2699         Update the function profile if necessary.
2700         Use find_target_beneath to call the same method but from
2701         the underlying target, removing the need for "base_target".
2702
2703         * dec-thread.c (dec_thread_get_regsets, dec_thread_set_regsets):
2704         Fix a copy/paste error in a few debug traces...
2705
2706         * solib-osf.c (init_so): Use a simpler method for computing
2707         the size of lm_info structure. This also gets rid of warning
2708         emitted by the compiler.
2709
2710 2009-03-05  Pedro Alves  <pedro@codesourcery.com>
2711
2712         * breakpoint.c (check_duplicates_for): Skip permanent breakpoints
2713         duplicates of permanent breakpoints.
2714
2715 2009-03-04  Pedro Alves  <pedro@codesourcery.com>
2716
2717         * inferior.h (notice_new_inferior): Declare.
2718         * infcmd.c (notice_new_inferior): New.
2719         * remote.c (remote_add_inferior, remote_add_thread): New.
2720         (notice_new_inferiors): Rename to...
2721         (remote_notice_new_inferior): ... this.  Add RUNNING argument.
2722         Use remote_add_thread instead of add_thread, passing it the
2723         RUNNING argument.  Add an inferior with remote_add_inferior.  If
2724         we just learned about an inferior, call notice_new_inferior.
2725         (record_currthread): Adjust.
2726         (remote_threads_info): Adjust to use remote_notice_new_inferior.
2727         (remote_start_remote, extended_remote_attach_1): Use
2728         remote_add_inferior.
2729         (process_stop_reply): Adjust.  Call remote_notice_new_inferior
2730         after handling expedited registers and watchpoint state.
2731         (extended_remote_create_inferior_1): Use remote_add_inferior.
2732
2733 2009-03-04  Aleksandar Ristovski  <aristovski@qnx.com>
2734
2735         * infcmd.c (registers_info): Remove register number case.
2736
2737 2009-03-03  Pedro Alves  <pedro@codesourcery.com>
2738
2739         * top.c (quit_target): Check for target_has_execution before
2740         killing or detaching from inferiors.
2741
2742 2009-03-02  Joel Brobecker  <brobecker@adacore.com>
2743
2744         Remove some unused routines.
2745
2746         * ada-lang.c (is_suppressed_name, ada_suppress_symbol_printing):
2747         Delete.
2748         * ada-lang.c (ada_task_list_iterator_ftype)
2749         (iterate_over_live_ada_tasks): Delete.
2750         * ada-tasks.c (ada_get_environment_task, iterate_over_live_ada_tasks):
2751         Delete.
2752
2753 2009-03-01  Doug Evans  <dje@google.com>
2754
2755         * symtab.c: Remove trailing whitespace throughout the file.
2756         (expand_line_sal): Fix some typos and whitespace.
2757
2758         * Makefile.in (clean): rm -f $(DEPDIR)/*.
2759
2760         * Makefile.in (GDB_CFLAGS): Add -I$(srcdir)/common.
2761         (init.c): signals/ -> common/.
2762         (signals.o): Update.
2763         * target.h (target_signal_to_string,target_signal_to_string)
2764         (target_signal_from_name,target_signal_to_host_p)
2765         (target_signal_from_host,target_signal_to_host): Move to ...
2766         * common/gdb_signals.h: ... here.  New file.
2767         * common/signals.c: Moved here from signals/signals.c.
2768         #include gdb_signals.h, remove #include of target.h in gdb case.
2769         (target_signal_from_command,default_target_signal_to_host)
2770         (default_target_signal_from_host): Move inside #ifndef GDBSERVER.
2771
2772         Include thread ID in target_wait debugging output.
2773         * infrun.c (print_target_wait_results): New function.
2774         (wait_for_inferior,fetch_inferior_event): Call it.
2775
2776 2009-02-27  Pedro Alves  <pedro@codesourcery.com>
2777
2778         * gdb_proc_service.h (struct ps_prochandle): Replace pid_t field
2779         with a ptid_t field.
2780         * linux-thread-db.c (thread_get_info_callback): Build the ptid
2781         using the pid stored in proc_handle.ptid.
2782         (thread_from_lwp, thread_db_attach_lwp, enable_thread_event)
2783         (check_for_thread_db, thread_db_detach, check_event)
2784         (thread_db_mourn_inferior, find_new_threads_callback)
2785         (thread_db_find_new_threads_1): Adjust.
2786         * proc-service.c (ps_xfer_memory, ps_lgetregs, ps_lsetregs)
2787         (ps_lgetfpregs, ps_lsetfpregs, ps_getpid): Adjust.
2788
2789 2009-02-27  Phil Muldoon  <pmuldoon@redhat.com>
2790
2791         * valprint.c (read_string): Rework clean-up logic. Use
2792         free_current_contents to clean-up buffer.
2793
2794 2009-02-27  Andreas Schwab  <schwab@linux-m68k.org>
2795
2796         * MAINTAINERS: Update e-mail address.
2797
2798 2009-02-26  Phil Muldoon  <pmuldoon@redhat.com>
2799
2800         * python/python-utils.c (python_string_to_unicode): Always return
2801         a new reference.
2802         (python_string_to_target_string): Decrement transient python
2803         instance.
2804         (python_string_to_host_string): Likewise.
2805
2806 2007-02-26  Pedro Alves  <pedro@codesourcery.com>
2807
2808         * mips-linux-nat.c (mips64_linux_fetch_registers): Pass `ops' to
2809         call to super_fetch_registers.
2810         (mips64_linux_store_registers): Pass `ops' to call to
2811         super_store_registers.
2812
2813 2009-02-25  Doug Evans  <dje@google.com>
2814
2815         * breakpoint.c (insert_bp_location): Add \n to overlay breakpoint
2816         error message.
2817
2818         * breakpoint.c (disable_breakpoints_in_shlibs): Delete local
2819         disabled_shlib_breaks, unused.
2820
2821         * printcmd.c (build_address_symbolic): Fix comment.
2822
2823 2009-02-25  Hui Zhu  <teawater@gmail.com>
2824
2825         * cli/cli-script.c (define_command): Add _() to query.
2826         * gnu-nat.c (inf_validate_task_sc): Ditto.
2827         * infcmd.c (kill_if_already_running): Ditto.
2828         (jump_command): Ditto.
2829         (attach_command): Ditto.
2830         * inflow.c (kill_command): Ditto.
2831         * infrun.c (handle_command): Ditto.
2832         * maint.c (maintenance_dump_me): Ditto.
2833         * memattr.c (mem_delete_command): Ditto.
2834         * monitor.c (monitor_interrupt_query): Ditto.
2835         * nto-procfs.c (interrupt_query): Ditto.
2836         * printcmd.c (undisplay_command): Ditto.
2837         * remote-mips.c (mips_kill): Ditto.
2838         * remote.c (interrupt_query): Ditto.
2839         * solib-irix.c (irix_open_symbol_file_object): Ditto.
2840         * solib-osf.c (osf_open_symbol_file_object): Ditto.
2841         * solib-pa64.c (pa64_open_symbol_file_object): Ditto.
2842         * solib-som.c (som_open_symbol_file_object): Ditto.
2843         * solib-svr4.c (open_symbol_file_object): Ditto.
2844         * symfile.c (symbol_file_add_with_addrs_or_offsets): Ditto.
2845         * target.c (kill_or_be_killed): Ditto.
2846         * tracepoint.c (delete_trace_command): Ditto.
2847         * top.c (quit_confirm): Add _() to s that will be used
2848         in query.
2849
2850 2009-02-24  Pierre Muller  <muller@ics.u-strasbg.fr>
2851
2852         Fix windows-nat.c compilation failure.
2853
2854         * windows-nat.c (windows_thread_alive): Fix forward declaration.
2855         (get_windows_debug_event): Add ops parameter to call to windows_resume.
2856
2857 2009-02-23  Pedro Alves  <pedro@codesourcery.com>
2858
2859         * remote-sim.c (gdbsim_resume): Add target_ops* argument.
2860
2861 2009-02-23  Jay Krell  <jay.krell@cornell.edu>  (tiny change)
2862
2863         * symtab.c (find_line_symtab): Initialize exact to avoid
2864         a compiler warning.
2865
2866 2009-02-23  Pedro Alves  <pedro@codesourcery.com>
2867
2868         * i386-linux-nat.c (i386_linux_fetch_inferior_registers): Pass
2869         `ops' to recursive call.
2870
2871 2009-02-23  Pedro Alves  <pedro@codesourcery.com>
2872
2873         * corelow.c (get_core_registers): Adjust.
2874         (core_file_thread_alive): Rename to...
2875         (core_thread_alive): ... this.
2876         (core_pid_to_str): Try gdbarch_core_pid_to_str first.
2877         (init_core_ops): Adjust.
2878         (coreops_suppress_target): Delete.
2879         (_initialize_corelow): Unconditionally add core_ops.
2880         * procfs.c: Include "inf-child.h".
2881         (procfs_ops): Delete.
2882         (init_procfs_ops): Delete.  Reimplement as...
2883         (procfs_target): ... this, inheriting from inf-child.
2884         (procfs_attach, procfs_detach, procfs_fetch_registers): Adjust.
2885         (procfs_prepare_to_store): Delete.
2886         (procfs_store_registers, procfs_resume): Adjust.
2887         (procfs_open): Delete.
2888         (procfs_suppress_run): Delete.
2889         (procfs_can_run): Delete.
2890         (procfs_mourn_inferior): Adjust.
2891         (procfs_init_inferior): Add target_ops parameter.  Adjust.
2892         (procfs_create_inferior): Don't pass procfs_init_inferior to
2893         fork_inferior.  Instead call it after fork_inferior returns.
2894         (procfs_find_new_threads): Adjust.
2895         (_initialize_procfs): Adjust to use procfs_target instead of
2896         init_procfs_ops.
2897         * sol-thread.c (orig_core_ops, sol_core_ops): Delete.
2898         (lwp_to_thread): Use target_thread_alive.
2899         (sol_thread_open): Delete.
2900         (sol_thread_attach): Delete.
2901         (sol_thread_detach, sol_thread_resume, sol_thread_wait)
2902         (sol_thread_fetch_registers, sol_thread_store_registers): Adjust
2903         to use find_target_beneath.
2904         (sol_thread_prepare_to_store, sol_thread_xfer_memory): Delete.
2905         (sol_thread_xfer_partial): Adjust to use find_target_beneath.
2906         (sol_thread_files_info, sol_thread_kill_inferior): Delete.
2907         (check_for_thread_db): New.
2908         (sol_thread_notice_signals, sol_thread_create_inferior): Delete.
2909         (sol_thread_new_objfile): Call check_for_thread_db.
2910         (sol_thread_mourn_inferior): Adjust to use find_target_beneath.
2911         (sol_thread_can_run): Delete.
2912         (sol_thread_alive): Adjust to use find_target_beneath.
2913         (sol_thread_stop): Delete.
2914         (rw_common): Use target_write_memory or target_read_memory.
2915         (ps_lgetregs, ps_lgetfpregs): Use target_fetch_registers.
2916         (ps_lsetregs, ps_lsetfpregs): Use target_store_registers.
2917         (solaris_pid_to_str): Remove check for libthread_db initialization
2918         failing.
2919         (sol_find_new_threads): Remove check for libthread_db
2920         initialization failing, or for an invalid inferior_ptid.  Adjust
2921         to use find_target_beneath.
2922         (sol_core_open, sol_core_close, sol_core_detach,
2923         sol_core_files_info, sol_find_memory_regions,
2924         sol_make_note_section, ignore): Delete.
2925         (init_sol_thread_ops): Make it a thread_stratum target.  Remove
2926         unneeded callback settings.
2927         (init_sol_core_ops): Delete.
2928         (_initialize_sol_thread): No longer call init_sol_core_ops, set
2929         procfs_suppress_run, or hack with core_ops.
2930
2931         * target.h (struct target_ops): Add a target_ops * parameter to
2932         to_resume, to_fetch_registers, to_store_registers, to_thread_alive
2933         and to_find_new_threads.
2934         (target_fetch_registers, target_store_registers)
2935         (target_thread_alive, target_find_new_threads): Redeclare as
2936         function.
2937
2938         * target.c (update_current_target): Do not inherit or de_fault
2939         to_resume, to_fetch_registers, to_store_registers,
2940         to_thread_alive, to_find_new_threads.
2941         (target_resume): Adjust.
2942         (target_thread_alive, target_find_new_threads): New.
2943         (debug_to_resume, debug_to_fetch_registers): Delete.
2944         (target_fetch_registers): New.
2945         (debug_to_store_registers): Delete.
2946         (target_store_registers): New.
2947         (debug_to_thread_alive, debug_to_find_new_threads): Delete.
2948         (setup_target_debug): Adjust.
2949
2950         * gdbcore.h (core_ops): Delete declaration.
2951
2952         * inf-ptrace.c, linux-nat.c, remote.c, amd64-linux-nat.c,
2953         inf-child.c, linux-thread-db.c, bsd-uthread.c, inf-ttrace.c,
2954         i386-sol2-tdep.c, darwin-nat.c, gnu-nat.c, go32-nat.c,
2955         hpux-thread.c, i386-linux-nat.c, i386fbsd-nat.c, monitor.c,
2956         nto-procfs.c, remote-m32r-sdi.c, remote-mips.c, windows-nat.c,
2957         alphabsd-nat.c, amd64bsd-nat.c, arm-linux-nat.c, armnbsd-nat.c,
2958         bsd-kvm.c, hppa-hpux-nat.c, hppa-linux-nat.c, hppabsd-nat.c,
2959         hppanbsd-nat.c, i386-darwin-nat.c, i386bsd-nat.c,
2960         ia64-linux-nat.c, m32r-linux-nat.c, m68kbsd-nat.c,
2961         m68klinux-nat.c, m88kbsd-nat.c, mips-linux-nat.c,
2962         mips64obsd-nat.c, mipsnbsd-nat.c, ppc-linux-nat.c, ppcnbsd-nat.c,
2963         ppcobsd-nat.c, remote-sim.c, rs6000-nat.c, s390-nat.c,
2964         shnbsd-nat.c, sparc-nat.c, sparc-nat.h, spu-linux-nat.c,
2965         vaxbsd-nat.c, xtensa-linux-nat.c: Adjust to target_ops changes.
2966
2967         * gdbarch.sh (core_pid_to_str): New gdbarch callback.
2968         * gdbarch.h, gdbarch.c: Regenerate.
2969
2970         * sol2-tdep.c: Include "inferior.h".
2971         (sol2_core_pid_to_str): New.
2972         * sol2-tdep.h (sol2_core_pid_to_str): Declare.
2973
2974         * amd64-sol2-tdep.c (amd64_sol2_init_abi): Set it.
2975         * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Set it.
2976         * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Set it.
2977         * i386-sol2-tdep.c (i386_sol2_init_abi): Set it.
2978
2979 2009-02-22  Doug Evans  <dje@google.com>
2980
2981         * exec.c (exec_file_attach): Fix comment.
2982
2983 2009-02-22  Pedro Alves  <pedro@codesourcery.com>
2984
2985         Silence a few -Wmissing-prototypes warnings.
2986
2987         PR build/9877:
2988         * alpha-linux-tdep.c (alpha_linux_regset_from_core_section): Make
2989         it static.
2990         * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Declare.
2991         * amd64fbsd-tdep.c (amd64fbsd_init_abi): Make it static.
2992         * amd64nbsd-tdep.c (_initialize_amd64nbsd_ndep): Rename to ...
2993         (_initialize_amd64nbsd_tdep): ... this.
2994         * arm-linux-tdep.c (arm_linux_software_single_step): Make it static.
2995         (_initialize_arm_linux_tdep): Declare.
2996         * armbsd-tdep.c (armbsd_fpreg_offset): Make it static.
2997         * armnbsd-tdep.c (_initialize_arm_netbsd_tdep): Declare.
2998         * armobsd-tdep.c (_initialize_armobsd_tdep): Declare.
2999         * avr-tdep.c (avr_return_value): Make it static.
3000         (avr_frame_unwind_cache): Ditto.
3001         * bsd-uthread.c (bsd_uthread_inferior_created): Ditto.
3002         (bsd_uthread_solib_loaded): Ditto.
3003         (bsd_uthread_solib_unloaded): Ditto.
3004         (bsd_uthread_target): Ditto.
3005         (_initialize_bsd_uthread): Declare.
3006         * cris-tdep.c (crisv32_single_step_through_delay): Make it static.
3007         (cris_frame_unwind_cache): Ditto.
3008         * frv-tdep.c (frv_return_value): Ditto.
3009         * h8300-tdep.c (h8300_use_struct_convention): Ditto.
3010         (h8300h_use_struct_convention): Ditto.
3011         * hppa-tdep.c (hppa_sign_extend, hppa_low_hppa_sign_extend):
3012         Ditto.
3013         * hppa-tdep.h (hppa_low_sign_extend, hppa_sign_extend): Delete
3014         declarations.
3015         * hppabsd-tdep.c: Include hppabsd-tdep.h.
3016         (hppabsd_find_global_pointer): Make it static.
3017         * hppabsd-tdep.h: New.
3018         * hppanbsd-tdep.c: Include hppabsd-tdep.h.
3019         (hppabsd_init_abi): Remove declaration.
3020         (_initialize_hppabsd_tdep): Remove declaration.
3021         (_initialize_hppanbsd_tdep): Declare.
3022         * hppaobsd-tdep.c: Include hppabsd-tdep.h.
3023         (hppabsd_init_abi): Delete declaration.
3024         (hppaobsd_init_abi): Make it static.
3025         * i386-nto-tdep.c (_initialize_i386nto_tdep): Declare.
3026         * i386nbsd-tdep.c (_initialize_i386nbsd_tdep): Declare.
3027         * ia64-linux-tdep.c (_initialize_ia64_linux_tdep): Declare.
3028         * ia64-tdep.c (ia64_register_reggroup_p): Make it static.
3029         * iq2000-tdep.c (_initialize_iq2000_tdep): Declare.
3030         * m32c-tdep.c (m32c_register_reggroup_p): Make it static.
3031         (m32c_analyze_prologue, m32c_virtual_frame_pointer): Ditto.
3032         (_initialize_m32c_tdep): Declare.
3033         * m32r-rom.c (_initialize_m32r_rom): Declare.
3034         * m32r-tdep.c (m32r_skip_prologue): Make it static.
3035         (m32r_return_value): Ditto.
3036         * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Make it static.
3037         (m68hc11_return_value): Ditto.
3038         * m68klinux-tdep.c (_initialize_m68k_linux_tdep): Declare.
3039         * m88k-tdep.c (m88k_frame_cache): Make it static.
3040         * mep-tdep.c (mep_gdb_print_insn): Ditto.
3041         (mep_return_value): Ditto.
3042         (_initialize_mep_tdep): Declare.
3043         * mips-irix-tdep.c (_initialize_mips_irix_tdep): Declare.
3044         * mips-linux-tdep.c (supply_64bit_reg): Make it static.
3045         (mips_linux_syscall_next_pc): Ditto.
3046         (_initialize_mips_linux_tdep): Declare.
3047         * mips-tdep.c (mips_single_step_through_delay): Make it static.
3048         * mipsnbsd-tdep.c (_initialize_mipsnbsd_tdep): Declare.
3049         * mn10300-linux-tdep.c (_initialize_mn10300_linux_tdep): Declare.
3050         * mn10300-tdep.c (_initialize_mn10300_tdep): Declare.
3051         * mt-tdep.c (_initialize_mt_tdep): Declare.
3052         * nbsd-tdep.c: Include nbsd-tdep.h.
3053         * nto-tdep.c (find_load_phdr): Make it static.
3054         (_initialize_nto_tdep): Declare.
3055         * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Make it
3056         static.
3057         (_initialize_ppc_linux_tdep): Declare.
3058         * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint)
3059         (m32r_insert_watchpoint, m32r_remove_watchpoint)
3060         (m32r_stopped_data_address, m32r_stopped_by_watchpoint): Make
3061         static.
3062         * rs6000-aix-tdep.c (_initialize_rs6000_aix_tdep): Declare.
3063         * rs6000-nat.c: Include xcoffread.h.
3064         (find_toc_address): Don't extern declare get_toc_offset.  Adjust
3065         to call xcoff_get_to_offset.
3066         * rs6000-tdep.c (ppc_vsx_support_p, ppc_displaced_step_fixup)
3067         (rs6000_skip_main_prologue, rs6000_in_solib_return_trampoline)
3068         (rs6000_skip_trampoline_code): Make static.
3069         * s390-tdep.c (s390_regset_from_core_section): Ditto.
3070         * sh-tdep.c (sh_register_reggroup_p): Ditto.
3071         * shnbsd-tdep.c (shnbsd_regset_from_core_section): Ditto.
3072         (_initialize_shnbsd_tdep): Declare.
3073         * solib-frv.c (displacement_from_map): Make static.
3074         (_initialize_frv_solib): Declare.
3075         * solib-irix.c (fetch_lm_info): Make static.
3076         (_initialize_irix_solib): Declare.
3077         * solib-som.c: Include solib-som.h.
3078         (som_solib_select): Line break.
3079         * sparc-tdep.c (sparc_regset_from_core_section): Make static.
3080         * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Rename to ...
3081         (_initialize_sparcnbsd_tdep): ... this.
3082         * spu-tdep.c (spu_software_single_step): Make it static.
3083         (_initialize_spu_tdep): Declare.
3084         * vax-tdep.c (vax_frame_cache): Make it static.
3085         * xcoffread.c: Include xcoffread.h.
3086         (get_toc_offset): Rename to ...
3087         (xcoff_get_toc_offset): ... this.
3088         (_initialize_xcoffread): Declare.
3089         * xcoffread.h: New.
3090         * xtensa-linux-tdep.c (_initialize_xtensa_linux_tdep): Declare.
3091         * xtensa-tdep.c (xtensa_skip_prologue, xtensa_derive_tdep): Make
3092         static.
3093         (_initialize_xtensa_tdep): Declare.
3094
3095 2008-02-21  Pedro Alves  <pedro@codesorcery.com>
3096
3097         Silence a few -Wmissing-prototypes warnings.
3098
3099         PR build/9877:
3100         * amd64-nat.c: Include "amd64-nat.h".
3101         * fork-child.c (_initialize_fork_child): Ditto.
3102         * gcore.c (_initialize_gcore): Ditto.
3103         * inf-ptrace.c: Include "inf-ptrace.h".
3104         (inf_ptrace_store_registers): Make it static.
3105         * linux-nat.c (linux_nat_terminal_ours): Make it static.
3106         (_initialize_linux_nat): Declare before definition.
3107         * linux-tdep.c: Include "linux-tdep.h".
3108         * linux-thread-db.c (_initialize_thread_db): Declare before
3109         definition.
3110         * proc-service.c (_initialize_proc_service): Ditto.
3111         * remote.c (remote_send_printf): Make it static.
3112         * solib.c: Include "solib.h".
3113         * symfile-mem.c (_initialize_symfile_mem): Declare before
3114         definition.
3115         * ada-lang.c (ada_la_decode, ada_match_name)
3116         (ada_suppress_symbol_printing, ada_is_array_type)
3117         (ada_value_ptr_subscript, ada_array_length)
3118         (ada_to_static_fixed_value): Make them static.
3119         (_initialize_ada_language): Declare before definition.
3120         * ada-tasks.c (ada_get_task_number, ada_get_environment_task)
3121         (ada_task_list_changed, ada_new_objfile_observer): Make them
3122         static.
3123         (_initialize_tasks): Declare before definition.
3124         * addrmap.c (_initialize_addrmap): Declare before definition.
3125         * auxv.c (default_auxv_parse): Make it static.
3126         * bfd-target.c (target_bfd_xfer_partial, target_bfd_xclose): Make
3127         them static.
3128         * breakpoint.c (remove_sal): Add line break.
3129         (expand_line_sal_maybe): Make it static.
3130         * cp-name-parser.y: Include "cp-support.h".
3131         * cp-valprint.c (cp_find_class_member): Make it static.
3132         * eval.c (value_f90_subarray): Ditto.
3133         * exceptions.c (print_any_exception): Ditto.
3134         * findcmd.c (_initialize_mem_search): Declare before definition.
3135         * frame.c (frame_observer_target_changed): Make it static.
3136         * gnu-v3-abi.c (gnuv3_find_method_in): Make it static.
3137         * inf-child.c: Include "inf-child.h".
3138         * inferior.h (valid_inferior_id): Rename to ...
3139         (valid_gdb_inferior_id): ... this.
3140         * infrun.c (infrun_thread_stop_requested, siginfo_make_value):
3141         Make them static.
3142         * jv-lang.c (java_language_arch_info): Make it static.
3143         * m2-typeprint.c (m2_get_discrete_bounds): Ditto.
3144         * osdata.c (info_osdata_command): Make it static.
3145         * regcache.c (regcache_observer_target_changed): Make it static.
3146         * reverse.c (_initialize_reverse): Declare before definition.
3147         * stabsread.c (cleanup_undefined_types_noname)
3148         (cleanup_undefined_types_1): Make them static.
3149         * symfile.c (place_section): Make it static.
3150         * symtab.c (find_pc_sect_psymtab_closer): Make it static.
3151         * target-descriptions.c (_initialize_target_descriptions): Declare
3152         before definition.
3153         * target.c (default_get_ada_task_ptid, find_default_can_async_p)
3154         (find_default_is_async_p, find_default_supports_non_stop): Make
3155         them static.
3156         (target_supports_non_stop): Add prototype.
3157         (dummy_pid_to_str): Make it static.
3158         * utils.c (_initialize_utils): Declare before definition.
3159         * ada-exp.y (_initialize_ada_exp): Declare before definition.
3160         * solib-svr4.c (HAS_LM_DYNAMIC_FROM_LINK_MAP): Add a prototype.
3161         * target.h (struct target_ops): Add a prototype to the
3162         to_can_execute_reverse callback.
3163         * macroscope.c (_initialize_macroscope): Declare before definition.
3164         * cp-namespace.c (_initialize_cp_namespace): Declare before definition.
3165         * python/python.c (_initialize_python): Declare before definition.
3166         * tui/tui-command.c: Include "tui/tui-command.h".
3167         * tui/tui-data.c (init_content_element, init_win_info): Make them
3168         static.
3169         * tui/tui-disasm.c: Include "tui/tui-disasm.h".
3170         * tui/tui-interp.c (_initialize_tui_interp): Declare before
3171         definition.
3172         * tui/tui-layout.c: Include "tui/tui-layout.h".
3173         (_initialize_tui_layout): Declare before definition.
3174         * tui/tui-regs.c: Include "tui/tui-regs.h".
3175         (tui_display_reg_element_at_line): Make it static.
3176         (_initialize_tui_regs): Declare before definition.
3177         * tui/tui-stack.c (_initialize_tui_stack): Declare before
3178         definition.
3179         * tui/tui-win.c: Include "tui/tui-win.h".
3180         (_initialize_tui_win): Declare before definition.
3181         (tui_sigwinch_handler): Make it static.  Wrap in ifdef SIGWINCH.
3182         * tui/tui-win.h (tui_sigwinch_handler): Delete declaration.
3183         (tui_get_cmd_list): Add a prototype.
3184         * tui/tui-windata.c: Include tui-windata.h.
3185         * tui/tui-wingeneral.c (box_win): Make it static.
3186         * cli/cli-logging.c (show_logging_command): Make it static.
3187         (_initialize_cli_logging): Declare before definition.
3188         * mi/mi-common.c (_initialize_gdb_mi_common): Declare before
3189         definition.
3190
3191 2009-02-20  Pierre Muller  <muller@ics.u-strasbg.fr>
3192
3193         Extend use of i386_use_watchpoints to all i386 native files
3194         using hardware watchpoints.
3195         * go32-nat.c (init_go32_ops): Call i386_use_watchpoints.
3196         * i386fbsd-nat.c (_initialize_i386fbsd_nat): Ditto.
3197         * windows-nat.c (init_windows_ops): Ditto.
3198         * config/i386/nm-cygwin.h: Define I386_WATCHPOINTS_IN_TARGET_VECTOR.
3199         * config/i386/nm-cygwin64.h: Ditto.
3200         * config/i386/nm-fbsd.h: Ditto.
3201         * config/i386/nm-go32.h: Ditto.
3202
3203 2009-02-19  Joel Brobecker  <brobecker@adacore.com>
3204
3205         * ada-typeprint.c (ada_typedef_print): Remove.  Unused.
3206
3207 2009-02-18  Vladimir Prus  <vladimir@codesourcery.com>
3208
3209         * mi/mi-interp.c (mi_solib_loaded, mi_solib_unloaded): New.
3210         (mi_interpreter_init): Register the above.
3211         * solib.c (clear_solib): Notify solib unload.
3212         * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Do not
3213         disable breakpoints on a.out targets.
3214
3215 2009-02-17  Vladimir Prus  <vladimir@codesourcery.com>
3216
3217         * observer.c (observer_test_first_notification_function)
3218         (observer_test_second_notification_function)
3219         (observer_test_third_notification_function): Adjust prototype.
3220
3221 2009-02-17  Pedro Alves  <pedro@codesourcery.com>
3222
3223         * Makefile.in (ALL_64_TARGET_OBS): Add amd64-dicos-tdep.o.
3224         (ALL_TARGET_OBS): Add dicos-tdep.o.
3225         (ALLDEPFILES): Add amd64-dicos-tdep.c and dicos-tdep.c.
3226         * configure.tgt (i[34567]86-*-dicos*): Add dicos-tdep.o to
3227         gdb_target_obs.
3228         (x86_64-*-dicos*): Add dicos-tdep.o and amd64-dicos-tdep.o to
3229         gdb_target_obs.
3230         * dicos-tdep.h, dicos-tdep.c: New.
3231         * amd64-dicos-tdep.c: New.
3232         * i386-dicos-tdep.c: Don't include solib.h, solib-target.h or
3233         inferior.h.  Include dicos-tdep.h.
3234         (i386_dicos_init_abi): Call dicos_init_abi.
3235         (i386_dicos_bfd_has_symbol_p): Delete.
3236         (i386_dicos_osabi_sniffer): Use dicos_load_module_p.
3237
3238         * NEWS: Mention x86-64 DICOS target support.
3239
3240 2009-02-16  Doug Evans  <dje@google.com>
3241
3242         * amd64-tdep.c (amd64_skip_prefixes): Renamed from skip_prefixes.
3243         All callers updated.
3244         (amd64_get_insn_details): Handle more 3-byte opcode insns.
3245         (amd64_breakpoint_p): Delete.
3246         (amd64_displaced_step_fixup): When fixing up after stepping an int3,
3247         don't back up pc to the start of the int3.
3248         * i386-tdep.c: #include opcode/i386.h.
3249         (i386_skip_prefixes): New function.
3250         (i386_absolute_jmp_p): Constify argument.
3251         (i386_absolute_call_p,i386_ret_p,i386_call_p,i386_syscall_p): Ditto.
3252         (i386_breakpoint_p): Delete.
3253         (i386_displaced_step_fixup): Handle unnecessary or redundant prefixes.
3254         When fixing up after stepping an int3, don't back up pc to the start
3255         of the int3.
3256
3257 2009-02-16  Pedro Alves  <pedro@codesourcery.com>
3258
3259         * corelow.c (core_close): Don't hardcode the core's pid.
3260         (core_open): Find core threads before calling
3261         post_create_inferior.
3262         (add_to_thread_list, get_core_register_section): Take into account
3263         systems where the regset section names encode the pid of the
3264         inferior.
3265
3266         * gdbarch.sh (core_reg_section_encodes_pid): New gdbarch setting.
3267         * gdbarch.h, gdbarch.c: Regenerate.
3268
3269         * amd64-sol2-tdep.c (amd64_sol2_init_abi): Set it.
3270         * i386-sol2-tdep.c (i386_sol2_init_abi): Set it.
3271         * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Set it.
3272         * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Set it.
3273
3274 2009-02-14  Vladimir Prus  <vladimir@codesourcery.com>
3275
3276         Include frame information for *stopped due to CLI commands.
3277
3278         * ada-tasks.c (ada_normal_stop_observer): Adjust prototype.
3279         * infcmd.c (finish_command_continuation): Pass '1' for
3280         'print_frame' parameter to the observer.
3281         * infrun.c (normal_stop): Don't print mi-specific information
3282         here. Pass 'stop_print_frame' to the 'print_frame' parameter
3283         of the observer.
3284         * mi/mi-interp.c (mi_on_normal_stop): Adjust prototype.
3285         If we need to print frame, and current uiout is not the MI one,
3286         print frame again.
3287
3288 2009-02-13  Pierre Muller  <muller@ics.u-strasbg.fr>
3289
3290         * xtensa-tdep.c (call0_analyze_prologue): Delete BSZ macro.
3291         Replace BSZ macro uses by XTENSA_ISA_BSZ macro.
3292
3293 2009-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
3294
3295         PR fortran/9806
3296         * dwarf2read.c (process_die <DW_TAG_module>, read_module)
3297         (scan_partial_symbols <DW_TAG_module>, add_partial_module): New.
3298
3299 2009-02-11  Pierre Muller  <muller@ics.u-strasbg.fr>
3300
3301         * dwarf2read.c (read_base_type): Set code to TYPE_CODE_CHAR
3302         for DW_ATE_signed_char and DW_ATE_unsigned_char
3303         for pascal language.
3304
3305 2009-02-11  Jim Meyering  <meyering@redhat.com>
3306             Jan Kratochvil  <jan.kratochvil@redhat.com>
3307
3308         Avoid NULL dereference.
3309         * stack.c (return_command): Guard use of SYMBOL_TYPE (thisfun).
3310         New variable func_type.
3311
3312 2009-02-11  Pedro Alves  <pedro@codesourcery.com>
3313
3314         * gdbarch.c: Regenerate.
3315
3316 2009-02-10  Pierre Muller  <muller@ics.u-strasbg.fr>
3317
3318         * p-lang.c (is_pascal_string_type): Fix comment.
3319         Determine exact size of char elements for GPC
3320         strings.
3321         (pascal_printstr): Handle char width of 2 or 4.
3322         * p-valprint.c (pascal_val_print): Handle char
3323         of width 2 or 4.
3324
3325 2009-02-07  Daniel Jacobowitz  <dan@codesourcery.com>
3326
3327         * dwarf2read.c (dwarf2_build_psymtabs_hard): Move lowpc and highpc
3328         inside the loop.  Only call addrmap_set_empty if the compilation unit
3329         had DW_AT_high_pc and DW_AT_low_pc.  Update call to
3330         scan_partial_symbols.
3331         (scan_partial_symbols): Take NEED_PC argument and pass it along with
3332         LOWPC and HIGHPC.
3333         (add_partial_namespace): Take NEED_PC argument and pass it through.
3334         (add_partial_subprogram): Take NEED_PC argument.  Update the addrmap
3335         if necessary.
3336
3337 2009-02-07  Pedro Alves  <pedro@codesourcery.com>
3338
3339         * NEWS: Mention inspecting extra signal information, $_siginfo,
3340         and the qXfer:siginfo:read and qXfer:siginfo:write packets.
3341
3342 2009-02-07  Pedro Alves  <pedro@codesourcery.com>
3343
3344         * linux-nat.c (PTRACE_SETSIGINFO): Define if PTRACE_GETSIGINFO
3345         isn't defined.
3346
3347 2009-02-06  Pedro Alves  <pedro@codesourcery.com>
3348
3349         * amd64-linux-nat.c (compat_int_t, compat_uptr_t, compat_time_t)
3350         (compat_timer_t, compat_clock_t, struct compat_timeval)
3351         (compat_sigval_t, compat_siginfo_t): New types.
3352         (cpt_si_pid, cpt_si_uid, cpt_si_timerid, cpt_si_overrun)
3353         (cpt_si_status, cpt_si_utime, cpt_si_stime, cpt_si_ptr)
3354         (cpt_si_addr, cpt_si_band, cpt_si_fd): New defines.
3355         (compat_siginfo_from_siginfo, siginfo_from_compat_siginfo)
3356         (amd64_linux_siginfo_fixup): New.
3357         * linux-nat.c (linux_nat_siginfo_fixup): New.
3358         (siginfo_fixup): New.
3359         (linux_xfer_siginfo): Use siginfo_fixup to convert between the
3360         siginfo layout expected by ptrace and the siginfo layout of the
3361         inferior.
3362         (linux_nat_set_siginfo_fixup): New.
3363         * linux-nat.h (linux_nat_set_siginfo_fixup): Declare.
3364
3365 2009-02-06  Pedro Alves  <pedro@codesourcery.com>
3366
3367         * target.h (enum target_object): Add new TARGET_OBJECT_SIGNAL_INFO.
3368         * infrun.c (siginfo_value_read, siginfo_value_write): New.
3369         (siginfo_value_funcs): New.
3370         (siginfo_make_value): New.
3371         (_initialize_infrun): Create the $_siginfo convenience variable.
3372         * gdbtypes.h (append_composite_type_field_aligned): Declare.
3373         * gdbtypes.c (append_composite_type_field): Rename to...
3374         (append_composite_type_field_aligned): ... this.  Add ALIGNMENT
3375         argument.  Handle it.
3376         (append_composite_type_field): Rewrite on top of
3377         append_composite_type_field_aligned.
3378         * value.h (internalvar_make_value): New typedef.
3379         (struct internalvar) <make_value>: New field.
3380         (create_internalvar_type_lazy): Declare.
3381         * value.c (create_internalvar): Clear make_value.
3382         (create_internalvar_type_lazy): New.
3383         (value_of_internalvar): If make_value is set use it.
3384         (preserve_values): Skip internal variables that don't have a
3385         value.
3386         * gdbarch.sh (get_siginfo_type): New.
3387         * gdbarch.h, gdbarch.c: Regenerate.
3388
3389         * linux-tdep.h, linux-tdep.c: New.
3390         * amd64-linux-tdep.c: Include "linux-tdep.h".
3391         (amd64_linux_init_abi): Register linux_get_siginfo_type and
3392         linux_get_siginfo_mapper.
3393         * i386-linux-tdep.c: Include "linux-tdep.h".
3394         (i386_linux_init_abi): Register linux_get_siginfo_type and
3395         linux_get_siginfo_mapper.
3396         * arm-linux-tdep.c: Include "linux-tdep.h".
3397         (i386_linux_init_abi): Register linux_get_siginfo_type and
3398         linux_get_siginfo_mapper.
3399
3400         * linux-nat.c (linux_xfer_siginfo): New.
3401         (linux_nat_xfer_partial): Handle TARGET_OBJECT_SIGNAL_INFO.
3402         * remote.c (PACKET_qXfer_siginfo_read)
3403         (PACKET_qXfer_siginfo_write): New.
3404         (feature remote_protocol_features): Add "qXfer:siginfo:read" and
3405         "qXfer:siginfo:write" features.
3406         (remote_xfer_partial): Handle TARGET_OBJECT_SIGNAL_INFO.
3407         (_initialize_remote): Add "set/show remote read-siginfo-object"
3408         and "set/show remote write-siginfo-object" commands.
3409
3410         * Makefile.in (ALL_TARGET_OBS): Add linux-tdep.o.
3411         (HFILES_NO_SRCDIR): Add linux-tdep.h.
3412         (ALLDEPFILES): Add linux-tdep.c.
3413
3414         * configure.tgt (arm*-*-linux* | arm*-*-uclinux*)
3415         (i[34567]86-*-linux*, x86_64-*-linux*): Add linux-tdep.o to
3416         gdb_target_obs.
3417
3418 2009-02-06  Jim Blandy  <jimb@codesourcery.com>
3419             Daniel Jacobowitz  <dan@codesourcery.com>
3420             Vladimir Prus  <vladimir@codesourcery.com>
3421             Pedro Alves  <pedro@codesourcery.com>
3422
3423         * defs.h (enum lval_type): New value: lval_computed.
3424         * value.h (struct lval_funcs): New type.
3425         (allocate_computed_value, value_computed_funcs)
3426         (value_computed_closure): New declarations.
3427         * value.c (struct value): Add a structure to the location union
3428         for computed lvalues, containing 'funcs' and 'closure' members.
3429         (allocate_computed_value, value_computed_funcs)
3430         (value_computed_closure): New functions.
3431         (value_free): For computed lvalues, call the closure's
3432         'free_closure' function before freeing the value itself.
3433         (value_copy): If we're copying an lval_computed value, call the
3434         closure's 'copy_closure' function.
3435         (set_value_component_location): If the original value is a
3436         computed lvalue, then call the closure's 'copy_closure' function.
3437         (value_of_internalvar): If an internal variable's value is a
3438         computed lvalue, make retrieving its value produce an equivalent
3439         computed lvalue.
3440         * valops.c (value_fetch_lazy): Unlazy computed lvalues by calling
3441         their read function.
3442         (value_assign): Assign to computed lvalues by calling their write
3443         function.
3444
3445 2009-02-06  Pedro Alves  <pedro@codesourcery.com>
3446
3447         * linux-nat.c (linux_nat_wait): Adjust.
3448         (linux_nat_pid_to_str): Adjust.  Remove call to thread_db_init.
3449         * linux-nat.h (thread_db_init): Delete declaration.
3450         * linux-thread-db.c (target_beneath): Delete.
3451         (thread_db_init): Delete.
3452         (thread_db_detach): Use find_target_beneath.
3453         (thread_db_wait): Adjust interface.  Use find_target_beneath.
3454         (thread_db_mourn_inferior): Use find_target_beneath.
3455         (thread_db_can_async_p, thread_db_is_async_p, thread_db_async)
3456         (thread_db_async_mask): Delete.
3457         (thread_db_pid_to_str): Adjust interface.  Use
3458         find_target_beneath.
3459         (thread_db_get_thread_local_address): Adjust interface.  Use
3460         find_target_beneath.
3461         (init_thread_db_ops): Delete references to delete functions.
3462         * target.c (update_current_target): Don't inherit or default
3463         to_wait.  Don't inherit to_pid_to_str and
3464         to_get_thread_local_address.
3465         (target_translate_tls_address): Look for a pushed target that
3466         implements to_get_thread_local_address, and use it instead of
3467         checking for target_get_thread_local_address_p.
3468         (target_wait, target_pid_to_str): Reimplement as functions.
3469         (dummy_pid_to_str): New.
3470         (init_dummy_target): Register it.
3471         (debug_to_wait): Delete.
3472         * target.h (struct target_ops): Make to_wait, to_pid_to_str and
3473         to_get_thread_local_address accept a pointer to struct target_ops.
3474         (target_wait): Delete macro, and declare as function.
3475         (target_pid_to_str): Likewise.
3476         (target_get_thread_local_address)
3477         (target_get_thread_local_address_p): Delete.
3478         (noprocess): Add NORETURN and ATTR_NORETURN tags.
3479         * inf-ptrace.c (inf_ptrace_wait): Adjust.
3480         (inf_ptrace_pid_to_str): New.
3481         (inf_ptrace_target): Use inf_ptrace_pid_to_str.
3482         * aix-thread.c (aix_thread_wait, aix_thread_pid_to_str): Adjust.
3483         * bsd-kvm.c (bsd_kvm_pid_to_str): Adjust.
3484         * bsd-uthread.c (bsd_uthread_wait, bsd_uthread_pid_to_str):
3485         Adjust.
3486         * corelow.c (core_pid_to_str): Adjust.
3487         * darwin-nat.c (darwin_wait, darwin_pid_to_str): Adjust.
3488         * dec-thread.c (dec_thread_wait, dec_thread_pid_to_str): Adjust.
3489         * gnu-nat.c (gnu_wait, gnu_pid_to_str): Adjust.
3490         * go32-nat.c (go32_wait, go32_pid_to_str): Adjust.
3491         * hpux-thread.c (hpux_thread_wait): Adjust.
3492         * inf-ttrace.c (inf_ttrace_wait, inf_ttrace_pid_to_str): Adjust.
3493         * monitor.c (monitor_wait, monitor_pid_to_str): Adjust.
3494         * nto-procfs.c (procfs_wait, procfs_pid_to_str): Adjust.
3495         * procfs.c (procfs_pid_to_str): Adjust.
3496         * remote-m32r-sdi.c (m32r_wait, m32r_pid_to_str): Adjust.
3497         * remote-mips.c (mips_wait): Adjust.
3498         * remote-sim.c (gdbsim_wait, gdbsim_pid_to_str): Adjust.
3499         * remote.c (remote_wait, remote_pid_to_str)
3500         (remote_get_thread_local_address): Adjust.
3501         * rs6000-nat.c (rs6000_wait): Adjust.
3502         * sol-thread.c (procfs_pid_to_str): Adjust declaration.
3503         (sol_thread_wait, solaris_pid_to_str): Adjust.
3504         * spu-linux-nat.c (spu_child_wait): Adjust.
3505         * windows-nat.c (windows_wait, windows_pid_to_str): Adjust.
3506
3507 2009-02-06  Tom Tromey  <tromey@redhat.com>
3508
3509         * Makefile.in (SUBDIR_PYTHON_OBS): Add python-cmd.o.
3510         (SUBDIR_PYTHON_SRCS): Add python-cmd.c.
3511         (python-cmd.o): New target.
3512         * cli/cli-decode.c (set_cmd_completer): Add self parameter to
3513         completer prototype.
3514         (add_cmd): Initialize destroyer member of cmd_list_element. Use
3515         make_symbol_completion_list_fn as completer.
3516         (delete_cmd): Call destroyer if one is set.
3517         * cli/cli-decode.h (cmd_list_element): Add cmd parameter to
3518         completer member.  Add destroyer member.
3519         (set_cmd_completer): Add self parameter to
3520         completer prototype.
3521         * command.h (set_cmd_completer): Add cmd parameter to
3522         completer prototype.
3523         * completer.c (noop_completer, filename_completer,
3524         location_completer, expression_completer, command_completer): Adapt
3525         to new completer prototype.
3526         (complete_line_internal): Pass new parameter to completer function.
3527         * completer.h (noop_completer, filename_completer,
3528         location_completer, expression_completer, command_completer): Adapt
3529         prototypes to new completer prototype.
3530         * interps.c (interpreter_completer): Adapt to new completer
3531         prototype.
3532         * python/python-cmd.c: New file.
3533         * python/python-internal.h (gdbpy_initialize_commands): Add
3534         prototype.
3535         (gdbpy_doc_cst): Add forward declaration.
3536         * python/python.c (gdbpy_doc_cst): Declare.
3537         (_initialize_python): Call gdbpy_initialize_commands.  Initialize
3538         gdbpy_doc_cst.
3539         * symtab.c (make_symbol_completion_list_fn): New function.
3540         * symtab.h (make_symbol_completion_list_fn): Add prototype.
3541
3542 2009-02-06  Pedro Alves  <pedro@codesourcery.com>
3543
3544         * target.c (target_get_osdata): Check for equal or higher than
3545         process_stratum, not dummy_stratum.
3546
3547 2009-02-06  Pedro Alves  <pedro@codesourcery.com>
3548
3549         * remote.c (extended_remote_can_run): Delete.
3550         (init_remote_ops): Don't register it.
3551         * target.c (target_get_osdata): Don't check for target_can_run.
3552         Instead any target that has already been pushed, otherwise
3553         fallback to the default run target.
3554
3555 2009-02-06  Pedro Alves  <pedro@codesourcery.com>
3556
3557         * target.c (target_create_inferior, target_detach)
3558         (target_mourn_inferior, target_attach, target_close): Do target
3559         debug output.
3560         (debug_to_attach, debug_to_detach, debug_to_create_inferior)
3561         (debug_to_mourn_inferior, debug_to_close): Delete.
3562         (setup_target_debug): Adjust.
3563
3564 2009-02-05  Pedro Alves  <pedro@codesourcery.com>
3565
3566         * target.h (target_stopped_data_address_p): Delete declaration,
3567         and don't define as macro.
3568         * target.c (target_stopped_data_address_p): Delete.
3569
3570 2009-02-05  Thiago Jung Bauermann  <bauerman@br.ibm.com>
3571             Tom Tromey  <tromey@redhat.com>
3572
3573         * python/python-utils.c (target_string_to_unicode): New function.
3574         * python/python-internal.h (target_string_to_unicode): New prototype.
3575         * python/python-value.c (valpy_string): New function.
3576         (value_object_methods): Add `string' entry.
3577
3578 2009-02-05  Pedro Alves  <pedro@codesourcery.com>
3579
3580         * target.h (target_tid_to_str): Delete.
3581         * thread.c (print_thread_info, thread_apply_all_command)
3582         (thread_apply_command, thread_command, do_captured_thread_select):
3583         Use target_pid_to_str instead of target_tid_to_str.
3584         * linux-fork.c (delete_fork_command): Likewise.
3585
3586 2009-02-05  Pedro Alves  <pedro@codesourcery.com>
3587
3588         * frame.c (has_stack_frames): Make public.
3589         (get_prev_frame): Don't allow a NULL this_frame anymore.
3590         * frame.h (has_stack_frames): Declare.
3591         * varobj.c (find_frame_addr_in_frame_chain): Don't ever pass NULL
3592         to get_prev_frame, instead start at get_current_frame.
3593         (varobj_create): Check has_stack_frames before getting any frame;
3594         eliminate one usage of deprecated_safe_get_selected_frame.
3595
3596 2009-02-05  Tom Tromey  <tromey@redhat.com>
3597             Thiago Jung Bauermann  <bauerman@br.ibm.com>
3598
3599         * python/python.c (GdbMethods): Move to bottom of file.
3600         (get_parameter, execute_gdb_command, gdbpy_write,
3601         gdbpy_flush): Remove forward declarations.
3602         (eval_python_from_control_command): Fix error checking of function
3603         PyRun_SimpleString.  Fix error string.
3604         (python_command): Likewise.
3605         (execute_gdb_command): Added from_tty argument.
3606
3607 2009-02-05  Thiago Jung Bauermann  <bauerman@br.ibm.com>
3608
3609         * language.h (language_dfn): Add la_get_string member.
3610         (LA_GET_STRING): New macro.
3611         (default_get_string): New prototype.
3612         * language.c (default_get_string): New function.
3613         (unknown_language_defn, auto_language_defn, local_language_defn): Use
3614         default_get_string for la_get_string.
3615         * c-lang.c (c_get_string): New function.
3616         (c_language_defn, cplus_language_defn, asm_language_defn): Use
3617         c_get_string for la_get_string.
3618         (minimal_language_defn): Likewise
3619         * ada-lang.c (ada_language_defn): Likewise.
3620         * f-lang.c (f_language_defn): Use default_get_string for
3621         la_get_string.
3622         * jv-lang.c (java_language_defn): Likewise.
3623         * m2-lang.c (m2_language_defn): Likewise.
3624         * objc-lang.c (objc_language_defn): Likewise.
3625         * p-lang.c (p_language_defn): Likewise.
3626         * scm-lang.c (scm_language_defn): Likewise.
3627         * typeprint.c (type_to_string): New function.
3628         * value.h (type_to_string): New prototype.
3629         * valprint.c (val_print_string): Factor out code for reading string
3630         from the inferior into its own function.  Put 2 spaces after period
3631         in comments.
3632         (read_string): New function.
3633         * valprint.h (read_string): New prototype.
3634
3635 2009-01-07  Pierre Muller  <muller@ics.u-strasbg.fr>
3636             Tom Tromey  <tromey@redhat.com>
3637
3638         PR breakpoints/8079:
3639         * breakpoint.c (print_one_breakpoint): Use exp_string field
3640         to display expression of watchpoints.
3641         (mention): Likewise.
3642         (watch_command_1): Remove trailing whitespace from expression.
3643         * printcmd.c (struct display) <exp_string>: New field.
3644         (display_command): Set exp_string.
3645         (free_display): Free exp_string.
3646         (clear_displays): Use free_display.
3647         (do_one_display): Print exp_string.
3648         (display_info): Likewise.
3649
3650 2009-02-04  Tom Tromey  <tromey@redhat.com>
3651             Thiago Jung Bauermann  <bauerman@br.ibm.com>
3652             Phil Muldoon  <pmuldoon@redhat.com>
3653
3654         * python/python-internal.h (gdbpy_get_value_from_history): Rename
3655         prototype to gdbpy_history.
3656         (gdbpy_is_string): Declare.
3657         (python_string_to_host_string): Declare.
3658         * python/python-utils.c (gdbpy_is_string): New function.
3659         (unicode_to_encoded_string): New function.
3660         (unicode_to_target_string): Use it.
3661         (python_string_to_host_string): New function.
3662         * python/python-value.c (valpy_address): New function.
3663         (convert_value_from_python): Use gdbpy_is_string.  Change to throw
3664         Python exception instead of a GDB exception on error.  Properly check
3665         Python booleans.
3666         (valpy_getitem): Convert field name to host string.  Handle array
3667         accesses.  Adapt to new behaviour of convert_value_from_python.
3668         (valpy_new): Adapt to new behaviour of convert_value_from_python.
3669         (enum valpy_opcode) <VALPY_LSH, VALPY_RSH, VALPY_BITAND,
3670         VALPY_BITXOR, VALPY_BITOR>: New constants.
3671         (valpy_binop): Update.  Adapt to new behaviour of
3672         convert_value_from_python.
3673         (valpy_invert): New function.
3674         (valpy_lsh): Likewise.
3675         (valpy_rsh): Likewise.
3676         (valpy_and): Likewise.
3677         (valpy_or): Likewise.
3678         (valpy_xor): Likewise.
3679         (valpy_richcompare): Call convert_value_from_python instead of doing
3680         conversions itself.
3681         (is_intlike, valpy_int, valpy_long, valpy_float): New functions.
3682         (gdbpy_get_value_from_history): Rename
3683         function to gdbpy_history.
3684         (gdbpy_initialize_values): Don't set tp_new.
3685         (value_object_type): Add valpy_new.
3686         (value_object_methods): Add `address' entry.
3687         (value_object_as_number): Update for new methods.
3688         * python/python.c (GdbMethods): Rename entry from
3689         `get_value_from_history' to `history'.
3690
3691 2009-02-04  Jerome Guitton  <guitton@adacore.com>
3692
3693         * ada-lang.c (ada_template_to_fixed_record_type_1): Check size
3694         of type to guard against a crash.
3695
3696 2009-02-04  Jerome Guitton  <guitton@adacore.com>
3697
3698         * value.c (value_from_contents_and_address): Always return
3699         a lval_memory value, even if address is null.
3700
3701 2009-02-04  Tristan Gingold  <gingold@adacore.com>
3702
3703         * i386-darwin-tdep.c (i386_darwin_sigcontext_addr): New function.
3704         (amd64_darwin_sigcontext_addr): Ditto.
3705         (darwin_dwarf_signal_frame_p): Ditto.
3706         (i386_darwin_init_abi): Handle signal frames, use the const for
3707         sc_num_regs.
3708         (x86_darwin_init_abi_64): Ditto.
3709
3710 2009-02-04  Tristan Gingold  <gingold@adacore.com>
3711
3712         * i386-tdep.c (i386_sigtramp_p): Make it public.
3713         * i386-tdep.h (i386_sigtramp_p): Declare.
3714
3715 2009-02-04  Tristan Gingold  <gingold@adacore.com>
3716
3717         * machoread.c (macho_symfile_read): Read minsymtab also from
3718         shared libraries.
3719         (macho_symfile_read): Try to read dwarf2 frame info from main
3720         object file, but not from OSO files.
3721         (macho_symfile_offsets): Update section names for latest BFD
3722         changes.
3723         * i386-darwin-tdep.c (i386_darwin_init_abi): Call set_solib_ops.
3724         (x86_darwin_init_abi_64): Ditto.
3725         * solib-darwin.c: New file.
3726         * solib-darwin.h: New file.
3727         * configure.tgt: Add solib.o solib-darwin.o for Darwin.
3728
3729 2009-02-04  Tristan Gingold  <gingold@adacore.com>
3730
3731         * solist.h (struct target_so_ops): Comment fallback behavior for
3732         operation same.
3733
3734 2009-02-03  Tom Tromey  <tromey@redhat.com>
3735
3736         * completer.c (add_struct_fields): Check type_name against NULL
3737         before use.
3738
3739 2009-02-03  Joel Brobecker  <brobecker@adacore.com>
3740
3741         * MAINTAINERS: Update Elena's email address.
3742
3743 2009-02-02  Joel Brobecker  <brobecker@adacore.com>
3744
3745         * breakpoint (update_watchpoint): Minor comment adjustment.
3746
3747 2009-02-02  Tom Tromey  <tromey@redhat.com>
3748
3749         PR gdb/9594:
3750         * completer.c (count_struct_fields): Count method names.
3751         (add_struct_fields): Add matching method names.
3752
3753 2009-02-02  Doug Evans  <dje@google.com>
3754
3755         * configure.ac (gdbkt): Check both no_tcl/no_tk first, before
3756         doing any further tcl/tk configury.  Don't configure gdbtk if
3757         tcl or tk check fails.
3758         * aclocal.m4: Regenerate.
3759         * configure: Regenerate.
3760
3761 2009-02-02  Tom Tromey  <tromey@redhat.com>
3762
3763         PR exp/9059:
3764         * valops.c (find_overload_match): Follow typedefs before taking
3765         address of object argument.
3766
3767 2009-02-01  Doug Evans  <dje@google.com>
3768
3769         * target.h (target_waitstatus_to_string): Declare.
3770         * target.c (target_waitstatus_to_string): New function.  Copied from
3771         debug_to_wait.  Add missing entries for TARGET_WAITKIND_SYSCALL_ENTRY,
3772         TARGET_WAITKIND_SYSCALL_RETURN, TARGET_WAITKIND_IGNORE,
3773         TARGET_WAITKIND_NO_HISTORY.
3774         (debug_to_wait): Call it.
3775         * infrun.c (wait_for_inferior): If debug_infrun, print result of
3776         target_wait.
3777         (fetch_inferior_event): Ditto.
3778
3779 2009-01-30  Tom Tromey  <tromey@redhat.com>
3780
3781         * Makefile.in (HFILES_NO_SRCDIR): Remove i386-cygwin-tdep.h.
3782
3783 2009-01-30  Vladimir Prus  <vladimir@codesourcery.com>
3784
3785         PR 8145.
3786         * thread.c (do_captured_list_thread_ids): Report the current
3787         thread id.
3788
3789 2009-01-30  Vladimir Prus  <vladimir@codesourcery.com>
3790
3791         * breakpoint.c (create_breakpoint, create_breakpoints)
3792         (break_command_really, set_breakpoint): New parameter enabled.
3793         (create_breakpoint, break_command_really): Make breakpoint
3794         disabled if so requested.
3795         * breakpoint.h (set_breakpoint): New parameter enabled.
3796         * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle the -d option.
3797
3798 2009-01-28  Doug Evans  <dje@google.com>
3799
3800         * amd64-tdep.h (amd64_displaced_step_copy_insn): Declare.
3801         (amd64_displaced_step_fixup): Declare.
3802         * amd64-tdep.c: #include opcode/i386.h, dis-asm.h.
3803         (amd64_arch_regmap): Move out of amd64_analyze_stack_align
3804         and make static global.
3805         (amd64_arch_regmap_len): New static global.
3806         (amd64_arch_reg_to_regnum): New function.
3807         (struct amd64_insn): New struct.
3808         (struct displaced_step_closure): New struct.
3809         (onebyte_has_modrm,twobyte_has_modrm): New static globals.
3810         (rex_prefix_p,skip_prefixes)
3811         (amd64_insn_length_fprintf,amd64_insn_length_init_dis)
3812         (amd64_insn_length,amd64_get_unused_input_int_reg)
3813         (amd64_get_insn_details,fixup_riprel,fixup_displaced_copy)
3814         (amd64_displaced_step_copy_insn)
3815         (amd64_absolute_jmp_p,amd64_absolute_call_p,amd64_ret_p)
3816         (amd64_call_p,amd64_breakpoint_p,amd64_syscall_p)
3817         (amd64_displaced_step_fixup): New functions.
3818         * amd64-linux-tdep.c: #include arch-utils.h.
3819         (amd64_linux_init_abi): Install displaced stepping support.
3820
3821 2009-01-28  Daniel Jacobowitz  <dan@codesourcery.com>
3822             Jerome Guitton  <guitton@adacore.com>
3823
3824         * configure, config.in: Regenerated.
3825         * configure.ac: Add --with-system-gdbinit.
3826         * main.c (get_init_files): New.
3827         (captured_main): Use get_init_files.  Load system gdbinit before
3828         $HOME/.gdbinit.
3829         (print_gdb_help): Print location of init files.
3830
3831 2009-01-28  Pedro Alves  <pedro@codesourcery.com>
3832
3833         * corefile.c (generic_search): Delete disabled code.
3834         * gdbcore.h (generic_search): Delete declaration.
3835
3836 2009-01-26  Pedro Alves  <pedro@codesourcery.com>
3837
3838         * linux-nat.c (linux_child_follow_fork): Copy attach_flag from the
3839         parent to the child.
3840         * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
3841         * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.  Use
3842         remove_breakpoints to remove breakpoints from the parent.
3843
3844 2009-01-26  Pedro Alves  <pedro@codesourcery.com>
3845
3846         PR backtrace/9458, PR backtrace/8864:
3847         * frame.c (create_new_frame): Update the frame's cached PC before
3848         finding its unwinder.  Use frame_id_build to build the new frame's
3849         id.
3850         * stack.c (parse_frame_specification_1): Correct setting ``addrs''
3851         array values from the ``args'' array values.
3852
3853 2009-01-26  Pedro Alves  <pedro@codesourcery.com>
3854
3855         * gdbtypes.c (alloc_type, alloc_type_instance, create_range_type)
3856         (create_array_type, create_set_type, init_flags_type)
3857         (copy_type_recursive): Replace pairs of calls to XALLOC and memset
3858         with a call to XZALLOC or XCALLOC, and pairs of calls to
3859         obstack_alloc and memset with a call to OBSTACK_ZALLOC.
3860
3861 2009-01-26  Pedro Alves  <pedro@codesourcery.com>
3862
3863         Add "maint set|show internal-error|internal-warning quit|corefile
3864         ask|yes|no" commands.
3865
3866         PR gdb/7580:
3867         * utils.c (internal_problem_ask, internal_problem_yes)
3868         (internal_problem_no, internal_problem_modes): New.
3869         (struct internal_problem): Remove FIXME.  Make should_quit and
3870         should_dump_core types to char *.
3871         (internal_vproblem, internal_error_problem)
3872         (internal_warning_problem): Adjust.
3873         (set_internal_problem_cmd, show_internal_problem_cmd): New dummy
3874         functions.
3875         (add_internal_problem_command): New.
3876         (_initialize_utils): New.
3877
3878 2009-01-25  Pedro Alves  <pedro@codesourcery.com>
3879
3880         * infcmd.c (program_info): Use paddress instead of casting stop_pc
3881         to unsigned long.
3882
3883 2009-01-24  Pedro Alves  <pedro@codesourcery.com>
3884
3885         * infrun.c (normal_stop): Don't call
3886         deprecated_update_frame_pc_hack.
3887         * frame.c (deprecated_update_frame_pc_hack)
3888         (deprecated_update_frame_base_hack): Delete, and ...
3889         (create_new_frame): ... inline here.
3890         * frame.h (deprecated_update_frame_pc_hack)
3891         (deprecated_update_frame_base_hack): Delete declarations.
3892
3893 2009-01-23  Pedro Alves  <pedro@codesourcery.com>
3894
3895         * cli/cli-decode.c (add_setshow_zuinteger_cmd): New.
3896         * cli/cli-setshow.c (do_setshow_command): Handle it.
3897         * command.h (enum var_types): Add var_zuinteger.
3898         (add_setshow_zuinteger_cmd): Declare.
3899
3900         * valprint.c (_initialize_valprint): Change the set input-radix
3901         and set output-radix commands to zuinteger type.
3902
3903 2009-01-23  Pedro Alves  <pedro@codesourcery.com>
3904
3905         PR gdb/9664:
3906         * infrun.c (normal_stop): Tag threads as stopped, and run the
3907         hook-stop before printing the stack frame.
3908
3909 2009-01-22  Pedro Alves  <pedro@codesourcery.com>
3910
3911         PR c++/9631:
3912         * gnu-v3-abi.c (gnuv3_baseclass_offset): Call check_typedef on
3913         vbasetype.
3914
3915 2009-01-20  Kazu Hirata  <kazu@codesourcery.com>
3916
3917         * gdb/procfs.c (info_mappings_callback): Cast map->pr_size to
3918         unsigned long.
3919
3920 2009-01-20  Daniel Jacobowitz  <dan@codesourcery.com>
3921
3922         PR gdb/9346
3923         * infcmd.c (signal_command): Do not specify a resume PC.
3924
3925 2009-01-19  Doug Evans  <dje@google.com>
3926
3927         * dummy-frame.c (dummy_frame): Replace regcache member with
3928         caller_state.
3929         (dummy_frame_push): Replace caller_regcache arg with caller_state.
3930         All callers updated.
3931         (remove_dummy_frame,pop_dummy_frame,lookup_dummy_frame): New fns.
3932         (dummy_frame_pop): Rewrite.  Verify requested frame is in the
3933         dummy frame stack.  Restore program state.
3934         (cleanup_dummy_frames): Rewrite.
3935         (dummy_frame_sniffer): Update.  Make static.
3936         * dummy-frame.h (regcache,frame_info): Delete forward decls.
3937         (inferior_thread_state): New forward decl.
3938         (dummy_frame_push): Update prototype.
3939         * frame.c (frame_pop): dummy_frame_pop now does all the work for
3940         DUMMY_FRAMEs.
3941         * infcall.c (breakpoint_auto_delete_contents): Delete.
3942         (get_function_name,run_inferior_call): New fns.
3943         (call_function_by_hand): Simplify by moving some code to
3944         get_function_name, run_inferior_call.  Inferior function call wrapped
3945         in TRY_CATCH so there's less need for cleanups and all exits from
3946         proceed are handled similarily.  Detect program exit.
3947         Detect program stopping in a different thread.
3948         Make error messages more consistent.
3949         * inferior.h (inferior_thread_state): Declare (opaque type).
3950         (save_inferior_thread_state,restore_inferior_thread_state,
3951         make_cleanup_restore_inferior_thread_state,
3952         discard_inferior_thread_state, get_inferior_thread_state_regcache):
3953         Declare.
3954         (save_inferior_status): Update prototype.
3955         * infrun.c: (normal_stop): When stopped for the completion of an
3956         inferior function call, verify the expected stack frame kind.
3957         (inferior_thread_state): New struct.
3958         (save_inferior_thread_state,restore_inferior_thread_state,
3959         do_restore_inferior_thread_state_cleanup,
3960         make_cleanup_restore_inferior_thread_state,
3961         discard_inferior_thread_state,
3962         get_inferior_thread_state_regcache): New functions.
3963         (inferior_status): Move stop_signal, stop_pc, registers to
3964         inferior_thread_state.  Remove restore_stack_info.
3965         (save_inferior_status): Remove arg restore_stack_info.
3966         All callers updated.  Remove saving of state now saved by
3967         save_inferior_thread_state.
3968         (restore_inferior_status): Remove restoration of state now done by
3969         restore_inferior_thread_state.
3970         (discard_inferior_status): Remove freeing of registers, now done by
3971         discard_inferior_thread_state.
3972
3973 2009-01-18  Pedro Alves  <pedro@codesourcery.com>
3974
3975         * tui/tui-disasm.c (tui_vertical_disassem_scroll): Scroll one line
3976         at a time, times NUM_TO_SCROLL.
3977         * tui/tui-winsource.c (tui_horizontal_source_scroll): Don't try to
3978         fetch the selected frame if there is no stack.
3979
3980 2009-01-18  Pedro Alves  <pedro@codesourcery.com>
3981
3982         PR gdb/9747:
3983         * gdbthread.h (finish_thread_state, finish_thread_state_cleanup):
3984         Declare.
3985         * thread.c (finish_thread_state, finish_thread_state_cleanup): New.
3986         * infrun.c (wait_for_inferior, fetch_inferior_event): If an error
3987         is thrown while handling an event, finish the thread state.
3988         (normal_stop): Use finish_thread_state cleanup.
3989         * infcmd.c (run_command_1): If an error is thrown while starting
3990         the inferior, finish the thread state.
3991
3992 2009-01-18  Pedro Alves  <pedro@codesourcery.com>
3993
3994         * tui/tui-winsource.c (tui_update_breakpoint_info): In asm layout,
3995         skip breakpoints without a location (pending breakpoints).
3996
3997 2009-01-18  Pedro Alves  <pedro@codesourcery.com>
3998
3999         PR build/9186:
4000         * hppa-hpux-tdep.c (hppa_hpux_write_pc): Remove 'return'.
4001
4002 2009-01-18  Nick Roberts  <nickrob@snap.net.nz>
4003
4004         * thread.c (thread_command): Move call to annotate_thread_changed
4005         to...
4006         (do_captured_thread_select): ... here, to avoid printing an
4007         annotation if the thread change generates an exception.
4008
4009 2009-01-16  Joel Brobecker  <brobecker@adacore.com>
4010
4011         * NEWS: Document x86_64/MinGW as a new native configuration.
4012
4013 2009-01-16  Joel Brobecker  <brobecker@adacore.com>
4014
4015         * NEWS: Move the documentation of "info os processes" to
4016         the appropriate section (documenting the new commands).
4017
4018 2009-01-15  Doug Evans  <dje@google.com>
4019
4020         * target.h (target_signal_to_string): Make return type const char *.
4021         (target_signal_to_name): Ditto.
4022         (target_signal_from_name): Make arg const char *.
4023         * infrun.c (sig_print_info): Update.
4024         * signals/signals.c (signals): Make array and struct members const.
4025         (target_signal_to_string): Make return type const char *.
4026         (target_signal_to_name): Ditto.
4027         (target_signal_from_name): Make arg const char *.
4028
4029 2009-01-15  Ulrich Weigand  <uweigand@de.ibm.com>
4030             Tristan Gingold  <gingold@adacore.com>
4031
4032         * solist.h (struct target_so_ops): New member bfd_open.
4033         (solib_find): Add prototype.
4034         (solib_bfd_fopen): Add prototype.
4035         * solib.c (solib_find, solib_bfd_fopen): New functions, extracted
4036         from solib_bfd_open.
4037         (solib_bfd_open): Use ops->bfd_open override if present.  Call
4038         solib_find and solib_bfd_open otherwise.
4039
4040         * objfiles.h (OBJF_KEEPBFD): New define.
4041         * objfiles.c (free_objfile): Do not close BFD if OBJF_KEEPBFD
4042         objfile flag is set.
4043         * solib.c (symbol_add_stub): Do not allocate second BFD for
4044         shared library; use OBJF_KEEPBFD flag on solib objfile.
4045
4046 2009-01-15  Ulrich Weigand  <uweigand@de.ibm.com>
4047
4048         * frame.c (get_frame_arch): Abort if called with NULL this_frame.
4049
4050 2009-01-15  Ulrich Weigand  <uweigand@de.ibm.com>
4051
4052         * value.h (address_of_variable): Add prototype.
4053         (locate_var_value): Remove prototype.
4054
4055         * findvar.c (read_var_value): Do not attempt to default frame
4056         to selected frame.
4057         (locate_var_value): Remove function.
4058         * valops.c (value_of_variable): Retrieve selected frame for
4059         symbols that require a frame when called with NULL block.
4060         * valops.c (address_of_variable): New function.
4061
4062         * eval.c (evaluate_subexp_for_address): Call address_of_variable
4063         instead of calling locate_var_value.
4064         (evaluate_subexp_with_coercion): Likewise.
4065
4066 2009-01-14  Daniel Jacobowitz  <dan@codesourcery.com>
4067
4068         * NEWS: Document "define" for prefixed commands.
4069         * cli/cli-cmds.c (show_user): Update calls to show_user_1.  Call
4070         show_user_1 for prefix commands.
4071         * cli/cli-decode.c (help_cmd_list): Recurse for "help user-defined".
4072         * cli/cli-script.c (validate_comname): Rewrite to handle prefix
4073         commands.  Return the containing command list.
4074         (define_command, document_command): Update to handle prefix commands.
4075         (show_user_1): Add prefix and name arguments.  Handle prefix
4076         commands.
4077         * cli/cli-script.h (show_user_1): Update prototype.
4078
4079 2009-01-14  Kai Tietz  <kai.tietz@onevision.com>
4080
4081         * ser-mingw.c (console_select_thread): Add return to make
4082         compiler happy.
4083         (pipe_select_thread): Likewise.
4084         (file_select_thread): Likewise.
4085
4086 2009-01-14  Pedro Alves  <pedro@codesourcery.com>
4087
4088         * mi/mi-main.c (mi_cmd_execute): Clean up parenthesis mess from
4089         previous change.
4090
4091 2009-01-14  Pedro Alves  <pedro@codesourcery.com>
4092
4093         * remote.c (extended_remote_mourn_1): Invalidate our notion of
4094         current general thread.
4095
4096 2009-01-14  Pedro Alves  <pedro@codesourcery.com>
4097
4098         * mi/mi-main.c (mi_cmd_execute): Also allow -list-thread-groups
4099         without a live selected thread.
4100
4101 2009-01-14  Joel Brobecker  <brobecker@adacore.com>
4102
4103         Update the copyright notice of some of the files I missed
4104         in the previous copyright update.
4105
4106 2009-01-14  Joel Brobecker  <brobecker@adacore.com>
4107
4108         * windows-nat.c (handle_unload_dll): Use %p to print the DLL
4109         base address instead of casting it to DWORD.
4110
4111 2009-01-13  Ulrich Weigand  <uweigand@de.ibm.com>
4112
4113         * dwarf2loc.c (dwarf2_evaluate_loc_desc): Do not call get_frame_arch
4114         for NULL frame pointers.
4115
4116 2009-01-13  Mark Kettenis  <kettenis@gnu.org>
4117
4118         * utils.c (host_address_to_string): Reimplement in a way that
4119         avoids the cast of the address to long.
4120
4121 2009-01-13  Joel Brobecker  <brobecker@adacore.com>
4122
4123         * mdebugread.c (parse_symbol): Save the symbol private data
4124         using SYMBOL_VALUE_BYTES instead of SYMBOL_VALUE.
4125         (psymtab_to_symtab_1): Likewise.
4126         (parse_procedure): Declare variable "e" only in the scope
4127         where it is used. Extract the symbol private data using
4128         SYMBOL_VALUE_BYTES.
4129
4130 2009-01-13  Jim Blandy  <jimb@codesourcery.com>
4131
4132         Abstract out common code for copying value locations.
4133
4134         * value.h (set_value_component_location): New declaration.
4135         * value.c (set_value_component_location): New function.
4136         (value_primitive_field): Use it.
4137         * valarith.c (value_subscript, value_subscripted_rvalue): Same.
4138         * valops.c (search_struct_field, value_slice): Same.
4139         * ada-lang.c (coerce_unspec_val_to_type)
4140         (ada_value_primitive_packed_val): Same.
4141
4142 2009-01-13  Joel Brobecker  <brobecker@adacore.com>
4143
4144         * MAINTAINERS (GLOBAL MAINTAINERS): Add Tom Tromey.
4145
4146 2009-01-12  Christopher Faylor  <me+cygwin@cgf.cx>
4147
4148         * amd64-windows-nat.c Rename gdb-specific win32_* to windows_*
4149         throughout.
4150         * i386-cygwin-tdep.c: Ditto.
4151         * i386-windows-nat.c: Ditto.
4152         * windows-nat.h: Ditto.
4153         * windows-tdep.c: Ditto.
4154         * windows-tdep.h: Ditto.
4155         * windows-nat.c: Ditto.
4156         (cygwin_load_start): Redefine as CORE_ADDR.
4157         (cygwin_load_end): Ditto.
4158         (windows_make_so): Coerce result of address arithmetic to uintptr_t
4159         before coercing to CORE_ADDR to avoid a compiler warning.
4160         (handle_exception): Define addr as CORE_ADDR and coerce
4161         ExceptionAddress to uintptr_t before assigining to avoid a compiler
4162         warning.
4163         * config/djgpp/fnchange.lst: Add mappings for recently renamed windows
4164         files.
4165
4166 2009-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
4167
4168         Fix linking with --enable-targets=all:
4169         * Makefile.in (ALL_TARGET_OBS): Add windows-tdep.o.
4170         (HFILES_NO_SRCDIR): Add windows-tdep.h.
4171         (ALLDEPFILES): Add windows-tdep.c.
4172
4173 2009-01-11  Chris Faylor  <me.gdb@cgf.cx>
4174
4175         * win32-nat.h: Delete.
4176         * windows-nat.h: Rename from win32-nat.h.
4177         * win32-nat.c: Delete.
4178         * windows-nat.c: Rename from win32-nat.c.
4179         * win32-termcap.c: Delete.
4180         * windows-termcap.c: Rename from win32-termcap.c.
4181         * amd64-windows-nat.c: Handle rename from win32-nat.h -> windows-nat.h.
4182         * configure.ac: Handle rename from win32-termcap.c ->
4183         windows-termcap.c.
4184         * configure: Regenerate.
4185         * gdb_curses.h: Change comment to reflect rename from win32-termcap.c
4186         -> windows-termcap.c.
4187         * i386-cygwin-tdep.c: Handle rename from win32-tdep.h ->
4188         windows-tdep.h.
4189         * i386-windows-nat.c: Refect rename from win32-nat.h -> windows-nat.h.
4190         * windows-nat.c: Ditto.  Also reflect rename from from win32-tdep.h ->
4191         windows-tdep.h.
4192         (win32_make_so): Handle cygwin compiler warning due to change of
4193         load_addr from DWORD to LPVOID.
4194         (handle_load_dll): Use %p in format string to properly print address
4195         and avoid a compiler warning.
4196         (DEBUG_EXCEPTION_SIMPLE): Ditto.
4197         (handle_exception): Ditto.
4198         * windows-tdep.c: Handle rename from win32-tdep.h -> windows-tdep.h.
4199         * config/i386/cygwin.mh: Handle rename from win32-nat.o ->
4200         windows-nat.o.
4201         * config/i386/mingw.mh: Ditto.
4202         * config/i386/mingw64.mh: Ditto.
4203
4204 2009-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
4205
4206         * f-typeprint.c (f_type_print_varspec_suffix): Convert the autovariable
4207         arrayprint_recurse_level to a parameter.  Update all the callers.  New
4208         comment at autovariables.
4209
4210 2009-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
4211
4212         * gdbtypes.c (make_qualified_type, replace_type): Reformat to the GNU
4213         coding style.
4214
4215 2009-01-11  Joel Brobecker  <brobecker@adacore.com>
4216
4217         * target.c (target_xfer_partial): Use host_address_to_string to
4218         print the address of readbuf and writebuf. Cast the address of
4219         elements inside the myaddr buffer into intptr_t.
4220         (deprecated_debug_xfer_memory): Use paddress to print memaddr.
4221         Cast the address of elements inside the myaddr buffer into
4222         intptr_t.
4223
4224 2009-01-11  Joel Brobecker  <brobecker@adacore.com>
4225
4226         * amd64-windows-nat.c, amd64-windows-tdep.c: New files.
4227         * config/i386/mingw64.mh, config/i386/nm-cygwin64.h: New files.
4228         * configure.host, configure.tgt: Add handling for x86_64/windows.
4229         * config/djgpp/fnchange.lst: Add entries for amd64-windows-nat.c
4230         and amd64-windows-tdep.c.
4231
4232 2009-01-11  Joel Brobecker  <brobecker@adacore.com>
4233
4234         * win32-tdep.h, win32-tdep.c: New files.
4235         * i386-cygwin-tdep.h: Delete.
4236         * i386-cygwin-tdep.c: Include win32-tdep.h instead of
4237         i386-cygwin-tdep.h.
4238         (win32_xfer_shared_library): Delete.  Moved to win32-tdep.c.
4239         * win32-nat.c: Likewise.
4240         * configure.tgt: Add win32-tdep.o to the list of target object
4241         files for i386-cygwin and i386-mingw targets.
4242
4243 2009-01-11  Joel Brobecker  <brobecker@adacore.com>
4244
4245         * win32-nat.h: New file.
4246         * win32-nat.c (mappings): Initialize to NULL.
4247         (win32_set_context_register_offsets): New function.
4248         * i386-windows-nat.c: New file.
4249         (mappings): Moved here from win32-nat.c.
4250         (_initialize_i386_windows_nat): New function.
4251         * config/i386/mingw.mh (NATDEPFILES): Add i386-windows-nat.o.
4252         * config/i386/cygwin.mh (NATDEPFILES): Likewise.
4253
4254 2009-01-09  Andreas Schwab  <schwab@suse.de>
4255
4256         * Makefile.in (init.c): Set LANG/LC_ALL to C, not c.
4257
4258 2009-01-09  Daniel Jacobowitz  <dan@codesourcery.com>
4259
4260         * gdbtypes.c (append_composite_type_field): Correct the location of
4261         appended fields.
4262
4263 2009-01-09  Pedro Alves  <pedro@codesourcery.com>
4264
4265         * defs.h (deprecated_error_hook): Delete declaration.
4266         * interps.c (clear_interpreter_hooks): Adjust.
4267         * remote-sim.c (gdb_os_error): Don't try to call
4268         deprecated_error_hook.  No need to call exit anymore.
4269         * top.c (deprecated_error_hook): Delete.
4270
4271 2009-01-09  Joel Brobecker  <brobecker@adacore.com>
4272
4273         * arch-utils.c (gdbarch_update_p): Use host_address_to_string
4274         to print the address of the gdbarch pointer.
4275
4276 2009-01-09  Joel Brobecker  <brobecker@adacore.com>
4277
4278         * gdbarch.sh: Fix all the compilation errors on amd64-windows
4279         due to casting a pointer to a long when printing a function
4280         address. Instead, use host_address_to_string to convert our
4281         address to a string.
4282         * gdbarch.c: Regenerate.
4283
4284 2009-01-09  Joel Brobecker  <brobecker@adacore.com>
4285
4286         * event-top.c (async_disconnect, async_stop_sig): use "raise"
4287         instead of "kill" to raise a signal.
4288
4289 2009-01-09  Joel Brobecker  <brobecker@adacore.com>
4290
4291         * win32-nat.c (get_module_name): Change the type of parameter
4292         "base_address" to LPVOID.  Remove unnecessary cast.
4293         (struct lm_info): Change type of load_addr to LPVOID.
4294         (win32_make_so): Change the type of parameter "load_addr"
4295         to LPVOID.  Remove some unnecessary casts.
4296         (handle_unload_dll): Change the type of "lpBaseOfDll" to LPVOID.
4297         (win32_xfer_shared_libraries): Add missing cast.
4298
4299 2009-01-09  Joel Brobecker  <brobecker@adacore.com>
4300
4301         * win32-nat.c (has_detach_ability, set_process_privilege):
4302         Cast the result of GetProcAddress to (void *) to avoid
4303         a compilation warning.
4304
4305 2009-01-09  Joel Brobecker  <brobecker@adacore.com>
4306
4307         * win32-nat.c (CONTEXT_EXTENDED_REGISTERS): Define to 0 if not
4308         already defined.
4309
4310 2009-01-09  Joel Brobecker  <brobecker@adacore.com>
4311
4312         * win32-nat.c (get_image_name, win32_xfer_memory): Fix type
4313         definition of local variable "done".
4314         (info_w32_command, handle_exception): Remove unnecessary cast.
4315
4316 2009-01-09  Joel Brobecker  <brobecker@adacore.com>
4317
4318         * win32-nat.c (kernel32_DebugSetProcessKillOnExit): Renames
4319         DebugSetProcessKillOnExit.  Update all uses in this file.
4320         (kernel32_DebugActiveProcessStop): Renames DebugActiveProcessStop.
4321         Update all uses in this file.
4322
4323 2009-01-09  Joel Brobecker  <brobecker@adacore.com>
4324
4325         * win32-nat.c (do_initial_win32_stuff): Add new ops parameter,
4326         and use it when pushing the target.
4327         (win32_attach, win32_create_inferior): Update call to
4328         do_initial_win32_stuff.
4329         (win32_detach, win32_mourn_inferior): Use our ops parameter
4330         instead of the global win32_ops to unpush the target.
4331
4332 2009-01-09  Joel Brobecker  <brobecker@adacore.com>
4333
4334         * ser-mingw.c (ser_windows_open): Use proper type when casting
4335         in call to _open_osfhandle.
4336
4337 2009-01-09  Kai Tietz  <kai.tietz@onevision.com>
4338
4339         * coff-pe-read.c (read_pe_exported_syms): Fix typo.
4340
4341 2009-01-09  Joel Brobecker  <brobecker@adacore.com>
4342
4343         * CONTRIBUTE: Minor reformatting.
4344
4345 2009-01-08  Kai Tietz  <kai.tietz@onevision.com>
4346
4347         * MAINTAINERS: Add myself to Write After Approval.
4348         * coff-pe-read.c (read_pe_exported_syms): Enable read of PE+
4349         export directory.
4350
4351 2009-01-08  Nathan Froyd  <froydnj@codesourcery.com>
4352
4353         * remote-sim.c (gdb_os_error): Mark as a noreturn function.
4354         Call exit to make it obvious to GCC.
4355
4356 2009-01-08  Tom Tromey  <tromey@redhat.com>
4357
4358         PR breakpoints/9350:
4359         * varobj.c (varobj_invalidate): Unconditionally free
4360         all_rootvarobj.
4361         * symfile.c (syms_from_objfile): Free local_addr when returning
4362         normally.
4363         * exec.c (exec_file_attach): Do cleanups before returning.
4364         (exec_file_command): Likewise.
4365         * corefile.c (reopen_exec_file): Do cleanups before returning.
4366         * breakpoint.c (insert_breakpoint_locations): Do cleanups before
4367         returning.
4368         (do_vec_free): New function.
4369         (update_global_location_list): Make a cleanup for old_locations.
4370         Do cleanups before returning.  Remove unused variable 'e'.
4371         (find_condition_and_thread): Free result of parsing the
4372         expression.
4373         (print_it_typical): Do cleanups before returning.
4374         (breakpoint_re_set_one): Always free sals.sals.
4375
4376 2009-01-08  Joel Brobecker  <brobecker@adacore.com>
4377             Emi Suzuki  <emi-suzuki@tjsys.co.jp>
4378
4379         * breakpoint.c (do_enable_breakpoint): Use update_watchpoint for
4380         watchpoints.
4381
4382 2009-01-07  Doug Evans  <dje@google.com>
4383
4384         * top.c (gdb_prompt_string): Delete, unused.
4385
4386 2009-01-07  Pedro Alves  <pedro@codesourcery.com>
4387
4388         Delete ONE_PROCESS_WRITETEXT leftovers.
4389
4390         * breakpoint.c (insert_bp_location): Delete process_warning
4391         argument.  Adjust.
4392         (insert_breakpoint_locations): Adjust.
4393         (reattach_breakpoints): Adjust.
4394         * infrun.c (normal_stop): Drop "It might be running in another
4395         process" notice.
4396
4397 2009-01-07  Stan Shebs  <stan@codesourcery.com>
4398
4399         * config/pa/linux.mh (XDEPFILES): Remove.
4400
4401 2009-01-07  Doug Evans  <dje@google.com>
4402
4403         * cli/cli-cmds.c (set_debug): Fix cut-n-paste error.
4404
4405 2009-01-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
4406
4407         * f-typeprint.c (f_type_print_base <TYPE_CODE_STRUCT>): Fix output
4408         spacing, a regression from 2008-04-22.
4409
4410 2009-01-07  Joel Brobecker  <brobecker@adacore.com>
4411
4412         * utils.c (gdb_print_host_address): Adjust implementation to
4413         reuse host_address_to_string. Move comment explaining the conversion
4414         from host address to string from here...
4415         (host_address_to_string): ... to there.
4416
4417 2009-01-07  Emi Suzuki  <emi-suzuki@tjsys.co.jp>
4418
4419         * MAINTAINERS: Add myself for write after approval privileges.
4420
4421 2009-01-06  Tom Tromey  <tromey@redhat.com>
4422
4423         * value.c (set_internalvar): Use value_free, not xfree.
4424
4425 2009-01-06  Jim Blandy  <jimb@red-bean.com>
4426
4427         Check return values of functions declared with warn_unused_result
4428         attribute in GLIBC 2.8.
4429         * cli/cli-cmds.c (pwd_command): Check return value from getcwd.
4430         * inflow.c (check_syscall): New function.
4431         (new_tty): Use check_syscall to check return values from open and dup.
4432         * linux-nat.c (linux_nat_info_proc_cmd): Check return value from fgets.
4433         * main.c (captured_main): Call cwd after setting up gdb_stderr;
4434         check for errors from getcwd.
4435         * mi/mi-cmd-env.c (mi_cmd_env_pwd): Check return value from getcwd.
4436         * ui-file.c (stdio_file_write): Ignore return value from fwrite.
4437         (stdio_file_fputs): Same.
4438         * utils.c (internal_vproblem): abort if last-ditch error message
4439         write fails.
4440
4441         * top.c (gdb_init): Don't set the current directory here; that's
4442         already been done in captured_main.
4443
4444 2009-01-06  Sandra Loosemore  <sandra@codesourcery.com>
4445
4446         * ser-tcp.c: Adjust includes.
4447         (tcp_set_cmdlist, tcp_show_cmdlist): Declare.
4448         (tcp_auto_retry, tcp_retry_limit): Declare.
4449         (TIMEOUT): Remove, in favor of tcp_retry_limit.
4450         (POLL_INTERVAL): Increase to 5, in favor of backoff logic.
4451         (wait_for_connect): New function.
4452         (net_open): Use it.  Add auto-retry logic.
4453         (set_tcp_cmd, show_tcp_cmd): New functions.
4454         (_initialize_ser_tcp): Initialize new "set/show tcp auto-retry"
4455         and "set/show tcp connect-timeout" commands.
4456         * NEWS: Document new commands.
4457
4458 2009-01-05  Tom Tromey  <tromey@redhat.com>
4459
4460         * python/python-internal.h (Py_ssize_t): Define as int.
4461
4462 2009-01-05  Jim Blandy  <jimb@red-bean.com>
4463
4464         * MAINTAINERS: Fix my e-mail address as steering committee member.
4465
4466 2009-01-03  Joel Brobecker  <brobecker@adacore.com>
4467
4468         Updated copyright notices for most files.
4469
4470 2009-01-03  Joel Brobecker  <brobecker@adacore.com>
4471
4472         * top.c (print_gdb_version): Update copyright year.
4473
4474 2009-01-03  Joel Brobecker  <brobecker@adacore.com>
4475
4476         * config/djgpp/fnchange.lst: Add entry for ChangeLog-2008.
4477
4478 2009-01-01  Pedro Alves  <pedro@codesourcery.com>
4479
4480         PR breakpoints/9681:
4481         * exceptions.h (enum errors): New error type, MEMORY_ERROR.
4482         * corefile.c (memory_error): Rewrite to throw a MEMORY_ERROR.
4483         * breakpoint.c (fetch_watchpoint_value): Ignore MEMORY_ERRORs, but
4484         retrow all other exceptions.
4485
4486 For older changes see ChangeLog-2008.
4487 \f
4488 Local Variables:
4489 mode: change-log
4490 left-margin: 8
4491 fill-column: 74
4492 version-control: never
4493 coding: utf-8
4494 End: