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