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