* i386-dicos-tdep.c (i386_dicos_frame_align): Delete.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2008-07-14 Pedro Alves <pedro@codesourcery.com>
2
3 * i386-dicos-tdep.c (i386_dicos_frame_align): Delete.
4 (i386_dicos_push_dummy_code): New.
5 (i386_dicos_init_abi): Don't register i386_dicos_frame_align.
6 Register i386_dicos_push_dummy_code.
7
8 2008-07-14 Markus Deuling <deuling@de.ibm.com>
9
10 * mips-tdep.c (fp_register_arg_p): Add gdbarch as paramter.
11 (mips_n32n64_push_dummy_call, mips_o64_return_value)
12 (mips_eabi_push_dummy_call): Update call to fp_register_arg_p.
13
14 (MIPS_FPU_TYPE): Add gdbarch as parameter and replace current_gdbarch.
15 (fp_register_arg_p, mips_dump_tdep, show_mipsfpu_command)
16 (mips_n32n64_fp_arg_chunk_p): Update caller.
17
18 (mips_n32n64_fp_arg_chunk_p): Add gdbarch as paramter.
19 (mips_n32n64_push_dummy_call): Update caller.
20
21 (MIPS_LAST_ARG_REGNUM): Add gdbarch as parameter and replace
22 current_gdbarch.
23 (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call)
24 (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Update caller.
25
26
27 (MIPS_LAST_FP_ARG_REGNUM): Add gdbarch as parameter and replace
28 current_gdbarch.
29 (mips_eabi_push_dummy_call, mips_o32_push_dummy_call)
30 (mips_o64_push_dummy_call): Update caller.
31
32 (MIPS_EABI): Add gdbarch as parameter and replace current_gdbarch.
33 (fp_register_arg_p, mips_dump_tdep): Update caller.
34
35 (set_reg_offset): Add gdbarch as parameter and replace current_gdbarch.
36 (mips16_scan_prologue, mips32_scan_prologue): Update caller.
37
38 (reset_saved_regs): Make static. Add gdbarch as parameter. Replace
39 current_gdbarch.
40 (mips32_scan_prologue): Update caller.
41
42 (heuristic_proc_start): Add gdbarch as parameter. Replace
43 current_gdbarch.
44 (mips_insn16_frame_cache, mips_insn32_frame_cache): Update caller.
45
46 * mipsnbsd-nat.c (mipsnbsd_fetch_inferior_registers)
47 (mipsnbsd_store_inferior_registers): Use get_regcache_arch to get at
48 the current architecture. Update call to getregs_supplies.
49 (getregs_supplies): Add gdbarch as parameter and replace
50 current_gdbarch.
51
52 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use get_frame_arch to
53 get at the current architecture. Update call to NBSD_MIPS_JB_OFFSET and
54 NBSD_MIPS_JB_ELEMENT_SIZE.
55 (NBSD_MIPS_JB_ELEMENT_SIZE, NBSD_MIPS_JB_OFFSET): Add gdbarch and
56 replace current_gdbarch.
57
58 * remote-mips.c (mips_map_regno): Add gdbarch as parameter and replace
59 current_gdbarch.
60 (mips_fetch_registers, mips_store_registers): Update call
61 to mips_map_regno.
62 (mips_load): Use get_regcache_arch to get at the current_architecture
63 and replace current_gdbarch.
64
65 2008-07-13 Pedro Alves <pedro@codesourcery.com>
66
67 * thread.c (restore_selected_frame): On fail to restore, select
68 the innermost frame, and don't crash when warning the user.
69
70 2008-07-13 Hui Zhu <teawater@gmail.com>
71
72 * symtab.c (expand_line_sal): Fix a memory leak.
73
74 2008-07-13 Pedro Alves <pedro@codesourcery.com>
75
76 * utils.c (struct continuation): Define as inheriting struct
77 cleanup.
78 (add_continuation, do_all_continuations)
79 (discard_all_continuations, add_intermediate_continuation)
80 (do_all_intermediate_continuations)
81 (discard_all_intermediate_continuations): Adjust.
82
83 2008-07-13 Vladimir Prus <vladimir@codesourcery.com>
84
85 Skip varobj in running threads.
86 * mi/mi-cmd-var.c (mi_cmd_var_update): If varobj's
87 thread is not stopped, skip the varobj.
88 * Makefile.in: Update dependencies.
89
90 2008-07-13 Vladimir Prus <vladimir@codesourcery.com>
91
92 Enable all commands while inferiour is running
93 * mi/mi-main.c (mi_cmd_execute): Don't check if
94 inferiour is executing.
95
96 2008-07-13 Vladimir Prus <vladimir@codesourcery.com>
97
98 Allow all CLI command even if target is executing.
99 * gdb/top.c (execute_command_1): Don't check if the inferiour
100 is running.
101
102 2008-07-13 Vladimir Prus <vladimir@codesourcery.com>
103
104 * mi/mi-main.c (mi_cmd_execute): Remove unused variable.
105 Fix printing of frame, when frame is wrong.
106
107 2008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
108
109 * spu-tdep.c (spu_frame_unwind_cache): Do not error if
110 backchain is unreadable.
111
112 2008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
113
114 * spu-linux-nat.c: Include "gdbthread.h".
115 (spu_child_post_startup_inferior): Register main thread.
116 (spu_child_post_attach): Likewise.
117 * Makefile.in (spu-linux-nat.o): Update dependencies.
118
119 2008-07-12 Pedro Alves <pedro@codesourcery.com>
120
121 Rewrite continuations internals on top of cleanups and plug
122 continuation arguments leaks.
123
124 * defs.h (struct continuation): Make it opaque.
125 (add_continuation, add_intermediate_continuation): Drop the int
126 argument of the continuation hook argument. Add
127 continuation_free_args argument.
128 (do_all_continuations, do_all_intermediate_continuations): Drop
129 the error_p argument.
130
131 * utils.c (add_continuation): Drop the int argument of the
132 continuation hook argument. Add continuation_free_args argument.
133 Reimplement on top of cleanups.
134 (do_all_continuations): Drop error argument. Reimplement on top
135 of cleanups.
136 (discard_all_continuations): Reimplement on top of cleanups.
137 (add_intermediate_continuation): Drop the int argument of the
138 continuation hook argument. Add continuation_free_args argument.
139 Reimplement on top of cleanups.
140 (do_all_intermediate_continuations): Drop error argument.
141 Reimplement on top of cleanups.
142 (discard_all_intermediate_continuations): Reimplement on top of
143 cleanups.
144
145 * breakpoint.c (until_break_command_continuation): Drop error
146 argument. Add xfree as continuation argument deleter.
147
148 * inf-loop.c (inferior_event_handler): On error, discard all
149 continuations. Adjust to new do_all_intermediate_continuations
150 and do_all_continuations interfaces.
151
152 * infcmd.c (step_1_continuation): Drop error_p argument. Adjust.
153 Pass xfree as continuation argument deleter.
154 (finish_command_continuation): Drop error_p argument. Adjust.
155 (finish_command_continuation_free_arg): New.
156 (finish_command): Pass finish_command_continuation_free_arg as
157 continuation argument deleter. Adjust to new do_all_continuations
158 interfaces.
159 (attach_command_continuation): Drop error_p argument.
160 (attach_command_continuation_free_args): New.
161 (attach_command): Pass attach_command_continuation_free_args as
162 continuation argument deleter.
163
164 * interps.c (interp_set): Adjust to new do_all_continuations
165 interfaces.
166
167 * event-top.c (stdin_event_handler): In error, also discard the
168 intermediate continuations.
169
170 2008-07-12 Pedro Alves <pedro@codesourcery.com>
171
172 Replace struct continuation_args by void* and per command structs.
173
174 * top.c (execute_command): Remove unused arg1 and arg2 locals.
175
176 * breakpoint.c (struct until_break_command_continuation_args):
177 New.
178 (until_break_command_continuation): Take a void* instead of a
179 continuations_arg. Adjust.
180 (until_break_command): Adjust to use struct
181 until_break_command_continuation_args instead of struct
182 continuation_arg.
183
184 * infcmd.c (struct step_1_continuation_args): New.
185 (step_1_continuation): Take a void* instead of a
186 continuations_arg. Adjust to use struct step_1_continuation_args.
187 (step_once): Adjust to use struct step_1_continuation_args.
188
189 (struct finish_command_continuation_args): New.
190 (finish_command_continuation): Take a void* instead of a
191 continuations_arg. Adjust to use struct
192 finish_command_continuation_args.
193 (finish_command): Adjust to use struct
194 finish_command_continuation_args.
195 (struct attach_command_continuation_args): New.
196 (attach_command_continuation): Take a void* instead of a
197 continuations_arg. Adjust to use struct
198 attach_command_continuation_args.
199 (attach_command): Adjust to use struct
200 attach_command_continuation_args.
201
202 * defs.h (struct continuation_arg): Delete.
203 (struct continuation): Replace the struct continuation_arg*
204 parameter of continuation_hook by a void*. Replace "arg_list"
205 member by a new "args" member with void* type.
206 (add_continuation, add_intermediate_continuation): Replace struct
207 continuation_arg type usages by void* usages.
208
209 * utils.c (add_continuation, do_all_continuations)
210 (add_intermediate_continuation)
211 (do_all_intermediate_continuations): Replace struct
212 continuation_arg type usages by void* usages. Pass "args" instead
213 of "arg_list".
214
215 2008-07-12 Pedro Alves <pedro@codesourcery.com>
216
217 * infrun.c (struct thread_stepping_state): Delete sal member.
218 (init_thread_stepping_state): Add local sal. Use it instead of
219 tss->sal.
220 (handle_inferior_event): New local stop_pc_sal. Use it instead of
221 tss->sal.
222 (step_into_function): Add local stop_func_sal. Use it instead of
223 tss->sal.
224
225 2008-07-12 Vladimir Prus <vladimir@codesourcery.com>
226
227 Implement -exec-continue/-exec-interrupt --all.
228 * infcmd.c (continue_1): New, extracted from
229 (continue_command): ...here.
230 (interrupt_target_1): New, extracted from
231 (interrupt_target_command): ...here.
232 * inferior.h (continue_1, interrupt_target_1): New.
233 * mi/mi-main.c (mi_cmd_exec_continue)
234 (mi_cmd_exec_interrupt): Handle --all.
235
236 2008-07-12 Vladimir Prus <vladimir@codesourcery.com>
237
238 Implement --thread and --frame.
239 * gdbthread.h (find_thread_id): Declare.
240 * thread.c (find_thread_id): Make non-static.
241 * mi/mi-main.c (mi_cmd_execute): Switch to the right
242 thread and frame, if necessary.
243 * mi/mi-parse.c (mi_parse): Handle --thread and --frame.
244 * mi/mi-parse.h (strcut mi_parse): New fields thread and frame.
245
246 2008-07-12 Vladimir Prus <vladimir@codesourcery.com>
247
248 * infrun.c (resume): Discard cleanups on early exit path.
249
250 2008-07-12 Vladimir Prus <vladimir@codesourcery.com>
251
252 * infrun.c (normal_stop): For MI, report which threads
253 were stopped.
254
255 2008-07-12 Vladimir Prus <vladimir@codesourcery.com>
256
257 Report thread state in -thread-info output.
258 * thread.c (print_thread_info): Add new field "state".
259
260 2008-07-11 Pedro Alves <pedro@codesourcery.com>
261
262 * infrun.c (handle_inferior_event): Also ignore a
263 TARGET_SIGNAL_TRAP on a STOP_QUIETLY_NO_SIGSTOP.
264
265 2008-07-11 Tom Tromey <tromey@redhat.com>
266
267 * completer.c (complete_line_internal): New function, from
268 complete_line. Add 'for_help' parameter.
269 (complete_line): Use it.
270 (command_completer): Move later. Rewrite.
271
272 2008-07-11 Pedro Alves <pedro@codesourcery.com>
273
274 * thread.c (thread_apply_command): Move making the cleanup out of
275 the loop.
276
277 2008-07-11 Pedro Alves <pedro@codesourcery.com>
278
279 Exited threads.
280
281 * thread.c (enum thread_state): New.
282 (thread_state main_thread_running): Delete, in favor of...
283 (thread_state main_thread_state): ... this. Update throughout.
284 (clear_thread_inferior_resources): New, split from free_thread.
285 (free_thread): Call clear_thread_inferior_resources.
286 (init_thread_list): Set main thread to stopped state.
287 (add_thread_silent): Take care of PTID reuses.
288 (delete_thread): If deleting inferior_ptid or a thread with
289 refcount > 0, mark it as exited, but still keep it in the list.
290 Only notify of thread exits, if we haven't done so yet.
291 (iterate_over_threads): Make it safe to delete threads while
292 iterating over them.
293 (do_captured_list_thread_ids): Don't account for exited threads.
294 (thread_alive): Check for the THREAD_EXITED state, and don't set
295 ptid to -1 on exited threads.
296 (set_running): Update to account for extra possible states.
297 (is_thread_state): New.
298 (is_stopped, is_exited): New.
299 (is_running): Implement in terms of is_thread_state.
300 (any_running): Update.
301 (print_thread_info): Update. Account for exited threads. Don't
302 warn about missed frame restoring here, its done in the cleanup.
303 (switch_to_thread): Don't read from a thread that has gone.
304 (restore_current_thread): In non-stop mode, do a full context
305 switch.
306 (restore_selected_frame): Add a frame_level argument. Rewrite.
307 (struct current_thread_cleanup): Add selected_frame_level and
308 was_stopped members.
309 (do_restore_current_thread_cleanup): Check if thread was stopped
310 and still is, and if the target has registers, stack and memory
311 before restoring the selected frame. Don't delete the cleanup
312 argument here.
313 (restore_current_thread_cleanup_dtor): New.
314 (make_cleanup_restore_current_thread): Remove all arguments.
315 Rewrite.
316 (thread_apply_all_command): Update. Prune threads.
317 (thread_apply_command): Update.
318 (thread_command): Account for currently selected exited thread.
319 (do_captured_thread_select): Check for a running thread. Prune
320 threads.
321 (_initialize_thread): Make "info threads", "thread", "thread
322 apply", and "thread apply all" appliable without a selected thread.
323 * gdbthread.h (struct thread_info): Replace running_ by state_.
324 Add refcount.
325 (is_exited, is_stopped): Declare.
326 (make_cleanup_restore_current_thread): Remove all arguments.
327 * infrun.c: Include "event-top.h".
328 (fetch_inferior_event): In non-stop mode, restore selected thread
329 and frame after handling the event and running breakpoint
330 commands. Display GDB prompt if needed.
331 (normal_stop): In non-stop mode, don't print thread switching
332 notice.
333 * cli/cli-decode.c (set_cmd_no_selected_thread_ok)
334 (get_cmd_no_selected_thread_ok): New.
335 * cli/cli-decode.h (CMD_NO_SELECTED_THREAD_OK): New.
336 (set_cmd_no_selected_thread_ok, get_cmd_no_selected_thread_ok):
337 Declare.
338 * cli/cli-cmds.c: Set "pwd", "help", "info", "show" as
339 no-selected-thread ok.
340 * top.c (execute_command): Check for non no-selected-thread-ok
341 commands.
342 * linux-nat.c (struct saved_ptids, threads_to_delete)
343 (record_dead_thread, prune_lwps): Delete.
344 (exit_lwp): Unconditionally delete thread.
345 (linux_nat_resume): Remove prune_lwps call.
346 * infcmd.c (proceed_thread_callback): Check if !is_stopped instead
347 of is_running. Adjust to make_cleanup_restore_current_thread
348 interface change.
349 * mi/mi-main.c (mi_cmd_execute): Only allow a few commands if the
350 selected thread has exited.
351 * inf-loop.c (inferior_event_handler): Don't display the prompt
352 here.
353 * varobj.c (c_value_of_root): Update.
354 * defs.h (make_cleanup_dtor): Declare.
355 * utils.c (make_cleanup_dtor): New.
356
357 * Makefile.in (infrun.o): Depend on $(event_top_h).
358
359 2008-07-11 Pedro Alves <pedro@codesourcery.com>
360
361 Add "continue -a" and "interrupt -a" options for non-stop mode.
362
363 * infcmd.c (proceed_thread_callback, do_context_switch_to): New.
364 (continue_command): Add "-a" option.
365 (interrupt_target_command): Add "-a" option.
366 (_initialize_infcmd): Add extend help of continue and interrupt
367 command to mention the new "-a" option. Mark "continue" async ok.
368
369 2008-07-10 Doug Evans <dje@google.com>
370
371 Add "set print symbol-loading on|off".
372 * NEWS: Document new option.
373 * symfile.h (print_symbol_loading): Declare.
374 * symfile.c (print_symbol_loading): New global.
375 (symbol_file_add_with_addrs_or_offsets): Only print "Reading symbols
376 from ..." if print_symbol_loading.
377 (_initialize_symfile): Add set/show print symbol-loading.
378 * solib.c (solib_read_symbols): Only print "Loaded symbols for ..."
379 if print_symbol_loading.
380
381 2008-07-10 Pedro Alves <pedro@codesourcery.com>
382
383 Non-stop linux native.
384
385 * linux-nat.c (linux_test_for_tracefork): Block events while we're
386 here.
387 (get_pending_status): Implement non-stop mode.
388 (linux_nat_detach): Stop threads before detaching.
389 (linux_nat_resume): In non-stop mode, always resume only a single
390 PTID.
391 (linux_handle_extended_wait): On a clone event, in non-stop mode,
392 add new lwp to GDB's thread table, and mark as running, executing
393 and stopped appropriately.
394 (linux_nat_filter_event): Don't assume there are other running
395 threads when a thread exits.
396 (linux_nat_wait): Mark the main thread as running and executing.
397 In non-stop mode, don't stop all lwps.
398 (linux_nat_kill): Stop lwps before killing them.
399 (linux_nat_thread_alive): Use signal 0 to detect if a thread is
400 alive.
401 (send_sigint_callback): New.
402 (linux_nat_stop): New.
403 (linux_nat_add_target): Set to_stop to linux_nat_stop.
404
405 * linux-nat.h (thread_db_attach_lwp): Declare.
406
407 * linux-thread-db.c (thread_get_info_callback): Check for new
408 threads if we have none.
409 (thread_from_lwp, enable_thread_event): Set proc_handle.pid to the
410 stopped lwp. Check for new threads if we have none.
411 (thread_db_attach_lwp): New.
412 (thread_db_init): Set proc_handle.pid to inferior_ptid.
413 (check_event): Set proc_handle.pid to the stopped lwp.
414 (thread_db_find_new_threads): Set proc_handle.pid to any stopped
415 lwp available, bail out if there is none.
416
417 * linux-fork.c (linux_fork_killall): Use SIGKILL instead of
418 PTRACE_KILL.
419
420 2008-07-10 Kevin Buettner <kevinb@redhat.com>
421
422 * rs6000-tdep.c (ppc_displaced_step_fixup): Change type of
423 `current_pc' from CORE_ADDR to ULONGEST.
424
425 * remote-sim.c (gdbsim_cntrl_c): Pass remote_sim_ptid to
426 gdbsim_stop().
427
428 2008-07-10 Jan Kratochvil <jan.kratochvil@redhat.com>
429
430 * NEWS (New commands): Mention "set disable-randomization".
431 * configure.ac: Add check for HAVE_PERSONALITY and
432 HAVE_DECL_ADDR_NO_RANDOMIZE.
433 * configure, config.in: Regenerate.
434 * linux-nat.c [HAVE_PERSONALITY]: New include <sys/personality.h>.
435 [HAVE_PERSONALITY] [!HAVE_DECL_ADDR_NO_RANDOMIZE]: Set
436 ADDR_NO_RANDOMIZE.
437 (disable_randomization, show_disable_randomization)
438 (set_disable_randomization): New.
439 (linux_nat_create_inferior) [HAVE_PERSONALITY]: New variables
440 PERSONALITY_ORIG and PERSONALITY_SET. Disable randomization upon the
441 variable DISABLE_RANDOMIZATION.
442 (_initialize_linux_nat): Call ADD_SETSHOW_BOOLEAN_CMD for the variable
443 DISABLE_RANDOMIZATION.
444
445 2008-07-09 Pedro Alves <pedro@codesourcery.com>
446
447 Adjust all targets to new target_stop interface.
448
449 * gnu-nat.c (gnu_stop): Add ptid argument.
450 * go32-nat.c (go32_stop): Add ptid argument.
451 (go32_create_inferior): Pass inferior_ptid to go32_stop.
452 * hpux-thread.c (hpux_thread_stop): Add ptid argument.
453 * monitor.c (monitor_stop): Add ptid argument.
454 (monitor_open): Pass inferior_ptid to monitor_stop.
455 (monitor_interrupt): Pass inferior_ptid to target_stop.
456 (monitor_stop): Add ptid argument.
457 * nto-procfs.c (nto_interrupt): Pass inferior_ptid to target_stop.
458 (procfs_create_inferior): Add ptid argument.
459 * procfs.c (procfs_stop): Add ptid argument.
460 * remote-m32r-sdi.c (m32r_stop): Add ptid argument.
461 * remote-sim.c (gdbsim_stop): Add ptid argument.
462 * sol-thread.c (sol_thread_stop): Add ptid argument.
463 * win32-nat.c (win32_stop): Add ptid argument.
464
465 2008-07-09 Pedro Alves <pedro@codesourcery.com>
466
467 Non-stop inferior control.
468
469 * infrun.c (resume): In non-stop mode, always resume just one
470 thread.
471 (proceed): Don't call prepare_to_proceed in non-stop mode.
472 (fetch_inferior_event): In non-stop mode, switch context before
473 handling the event.
474 (error_is_running, ensure_not_running): New.
475 (handle_inferior_event): In non-stop mode: Mark only the event
476 thread as stopped. Require that the target module manages adding
477 threads to the thread list. Assert that there isn't a
478 deferred_step_ptid set. Don't switch to infwait_thread_hop_state.
479 (normal_stop): Only mark not-running if inferior hasn't exited.
480 In non-stop mode, only mark the event thread.
481
482 * thread.c:Include "cli/cli-decode.h".
483 (print_thread_info): Don't read from a running thread.
484 Output "(running)" if thread is running.
485 (switch_to_thread): Don't read stop_pc if thread is executing.
486 (do_restore_current_thread_cleanup): Don't write to a running
487 thread.
488 (thread_apply_all_command): Don't read from a running thread. In
489 non-stop mode, do a full context-switch instead of just switching
490 threads.
491 (thread_apply_command): In non-stop mode, do a full context-switch
492 instead of just switching threads.
493 (do_captured_thread_select): Likewise. Inform user if selected
494 thread is running.
495 (_initialize_thread): Mark "info threads" and "thread" and
496 async_ok.
497
498 * inf-loop.c (inferior_event_handler): In non-stop mode, don't
499 unregister the target from the event loop.
500
501 * infcmd.c (continue_command, step_1, jump_command)
502 (signal_command): Ensure the selected thread isn't running.
503 (interrupt_target_command): In non-stop mode, interrupt only the
504 selected thread.
505
506 * inferior.h (error_is_running, ensure_not_running): Declare.
507
508 * target.h (struct target_ops): Add ptid argument to the to_stop
509 member.
510 (target_stop): Add ptid_t argument.
511
512 * target.c (update_current_target): Add ptid argument to to_stop's
513 type.
514 (debug_to_stop): Add ptid_t argument.
515 (debug_to_rcmd): Set to_stop_ptid.
516
517 * remote.c (remote_stop): Add ptid_t argument.
518 (async_remote_interrupt): Add inferior_ptid to target_stop.
519 * inf-ptrace.c (inf_ptrace_stop): Add ptid argument.
520
521 * Makefile.in (thread.o): Depend on $(cli_decode_h).
522
523 2008-07-09 Pedro Alves <pedro@codesourcery.com>
524
525 Don't rely on ecs->wait_for_more.
526
527 * infrun.c (proceed): Clear the stepping state, set
528 previous_inferior_ptid and clear infwait state.
529 (wait_for_inferior): Don't clear the stepping state, set
530 previous_inferior_ptid, or clear the infwait state here.
531 (fetch_inferior_event): Don't clear the stepping state, set
532 previous_inferior_ptid, or clear the infwait state here. Don't
533 condition on wait_for_more.
534
535 2008-07-09 Pedro Alves <pedro@codesourcery.com>
536
537 Refactor infrun a bit.
538
539 * infrun.c (currently_stepping): Take a struct
540 thread_stepping_state instead of an execution_control_state.
541 (struct thread_stepping_state): New, split from
542 execution_control_state.
543 (gtss, tss): New globals.
544 (proceed): Clear the stepping state, set previous_inferior_ptid
545 and clear infwait state.
546 (init_wait_for_inferior): Clear the stepping state,
547 previous_inferior_ptid and infwait state.
548 (waiton_ptid, infwait_state): New, split from
549 execution_control_state.
550 (struct execution_control_state): Members that persist through
551 events moved out to either struct thred_stepping_state or made
552 global. Deleted unneeded wp, saved_inferior_ptid, tmpstatus.
553 (wait_for_inferior, fetch_inferior_event): Use local
554 execution_control_state. Update to execution_control_state split.
555 (init_execution_control_state): Adjust.
556 (init_thread_stepping_state): New, extracted from
557 init_execution_control_state.
558 (context_switch): Take a ptid instead of an
559 execution_control_state.
560 (context_switch_to): Adjust.
561 (adjust_pc_after_break): Adjust.
562 (init_infwait_state): New.
563 (handle_inferior_event): Adjust.
564
565 2008-07-09 Pedro Alves <pedro@codesourcery.com>
566 Vladimir Prus <vladimir@codesourcery.com>
567
568 Per-thread commands.
569
570 * gdbthread.h: Remove unneeded forward declarations.
571 Include "inferior.h".
572 (struct thread_info): Add continuations,
573 intermediate_continuations, proceed_to_finish, step_over_calls,
574 stop_step, step_multi and stop_signal members.
575 (save_infrun_state): Add continuations,
576 intermediate_continuations, proceed_to_finish, step_over_calls,
577 stop_step, step_multi, stop_signal and stop_bpstat parameters.
578 (load_infrun_state): Add continuations,
579 intermediate_continuations, proceed_to_finish, step_over_calls,
580 stop_step, step_multi, stop_signal and stop_bpstat parameters.
581
582 * thread.c (load_infrun_state): In non-stop mode, load
583 continuations, intermediate_continuations, proceed_to_finish,
584 step_over_calls, stop_step, step_multi and stop_signal.
585 (save_infrun_state): Store continuations,
586 intermediate_continuations, proceed_to_finish, step_over_calls,
587 stop_step, step_multi, stop_signal and stop_bpstat.
588 (save_infrun_state): Store continuations,
589 intermediate_continuations, proceed_to_finish, step_over_calls,
590 stop_step, step_multi, stop_signal and stop_bpstat.
591 (free_thread): Clear The thread's stop_bpstat.
592
593 * inferior.h (context_switch_to): Declare.
594
595 * infrun.c (ecss): New global.
596 (context_switch): Context switch continuations,
597 intermediate_continuations, proceed_to_finish, step_over_calls,
598 stop_step, step_multi, stop_signal and stop_bpstat.
599 (wait_for_inferior): Use global ecss.
600 (async_ecss, async_ecs): Delete.
601 (fetch_inferior_event): Use global ecss.
602 (context_switch_to): New.
603
604 * top.c (execute_command): In non-stop, only check if the current
605 thread is running, in all-stop, check if there's any thread
606 running.
607
608 * breakpoint.c (bpstat_remove_breakpoint): New.
609 (bpstat_remove_breakpoint_callback): New.
610 (delete_breakpoint): Clear the stop_bpstats of all threads.
611
612 * mi/mi-main.c (mi_cmd_execute): In non-stop, only check if the
613 current thread is running, in all-stop, check if there's any
614 thread running.
615
616 * Makefile.in (gdbthread_h): Depend on $(inferior_h).
617
618 2008-07-09 Pedro Alves <pedro@codesourcery.com>
619
620 Add non_stop global.
621
622 * inferior.h (non_stop): Declare.
623 * infrun.c (non_stop, non_stop_1): New.
624 (set_non_stop, show_non_stop): New.
625 (_initialize_infrun): Add "set/show non-stop" command.
626
627 2008-07-09 Pedro Alves <pedro@codesourcery.com>
628
629 Adjust fork/vfork/exec to pass ptids around.
630
631 * target.h (struct target_waitstatus): Store related_pid as a ptid.
632 (inferior_has_forked, inferior_has_vforked, inferior_has_execd):
633 Take a ptid_t.
634 * breakpoint.h (struct breakpoint): Change forked_inferior_pid
635 type to ptid.
636 * breakpoint.c (print_it_typical, bpstat_check_location)
637 (print_one_breakpoint_location, set_raw_breakpoint_without_location)
638 (create_fork_vfork_event_catchpoint): Adjust.
639 * infrun.c (fork_event): Change parent_pid and child_pid types to
640 ptid.
641 (follow_exec, inferior_has_forked, inferior_has_vforked)
642 (inferior_has_execd): Take a ptid_t and don't trim it.
643 * linux-thread-db.c (thread_db_wait): Don't trim the returned ptid.
644 * linux-nat.c (linux_child_follow_fork): Adjust.
645 * inf-ptrace.c (inf_ptrace_wait): Adjust.
646 * inf-ttrace.c (inf_ttrace_wait): Adjust.
647 * win32-nat.c (get_win32_debug_event): Don't set related_pid.
648
649 2008-07-09 Pedro Alves <pedro@codesourcery.com>
650
651 Add "executing" property to threads.
652
653 * inferior.h (target_executing): Delete.
654 * gdbthread.h (struct thread_info): Add executing_ field.
655 (set_executing, is_executing): New.
656 * thread.c (main_thread_executing): New.
657 (init_thread_list): Clear it and also main_thread_running.
658 (is_running): Return false if target has no execution.
659 (any_running, is_executing, set_executing): New.
660
661 * top.c: Include "gdbthread.h".
662 (target_executing): Delete.
663 (execute_command): Replace target_executing check by any_running.
664 * event-top.c: Include "gdbthread.h".
665 (display_gdb_prompt, command_handler): Replace target_executing by
666 is_running.
667 * inf-loop.c: Include "gdbthread.h". Don't mark as not executing
668 here. Replace target_executing by is_running.
669 * infrun.c (handle_inferior_event): Mark all threads as
670 not-executing.
671 * linux-nat.c (linux_nat_resume): Don't mark thread as executing
672 here.
673 * stack.c (get_selected_block): Return null if inferior is
674 executing.
675 * target.c (target_resume): Mark resumed ptid as executing.
676 * breakpoint.c (until_break_command): Replace target_executing
677 check by is_executing.
678 * remote.c (remote_async_resume): Don't mark inferior as executing
679 here.
680 * mi/mi-interp.c (mi_cmd_interpreter_exec): Replace target_executing
681 by any_running.
682
683 * mi/mi-main.c (mi_cmd_exec_interrupt, mi_cmd_execute)
684 (mi_execute_async_cli_command): Replace target_executing by
685 is_running.
686
687 * frame.c (get_current_frame): Error out if the current thread is
688 executing.
689 (has_stack_frames): New.
690 (get_selected_frame, deprecated_safe_get_selected_frame): Check
691 has_stack_frames.
692
693 * Makefile.in (event-top.o, frame.o, inf-loop.o, top.o): Depend on
694 $(gdbthread_h).
695
696 2008-07-09 Pedro Alves <pedro@codesourcery.com>
697
698 * symfile.c (load_command): Reopen the exec file and reread
699 symbols before anything else.
700
701 2008-07-09 Pedro Alves <pedro@codesourcery.com>
702
703 * remote-sim.c: Include gdbthread.h.
704 (remote_sim_ptid): New global.
705 (gdbsim_create_inferior): Silently add the main task to GDB's
706 thread list.
707 (gdbsim_close, gdbsim_mourn_inferior): Silently delete the main
708 task from GDB's thread list.
709 (gdbsim_resume): Adjust to use remote_sim_ptid.
710 (gdbsim_thread_alive, gdbsim_pid_to_str): New.
711 (init_gdbsim_ops): Register gdbsim_thread_alive and
712 gdbsim_pid_to_str.
713 (_initialize_remote_sim): Initialize remote_sim_ptid.
714 * Makefile.in (remote-sim.o): Depend on $(gdbthread_h).
715
716 2008-07-09 Pedro Alves <pedro@codesourcery.com>
717
718 * monitor (monitor_ptid): New global.
719 (monitor_open): Silently add the main task to GDB's thread list.
720 (monitor_close, monitor_mourn_inferior): Silently delete the main
721 task from GDB's thread list.
722 (monitor_thread_alive, monitor_pid_to_str): New.
723 (init_base_monitor_ops): Register monitor_thread_alive and
724 monitor_pid_to_str.
725 (_initialize_remote_monitors): Initialize monitor_ptid.
726
727 * gdbthread.h (delete_thread_silent): Declare.
728 * thread.c (delete_thread): Rename to ...
729 (delete_thread_1): ... this. Add "silent" parameter. If silent,
730 don't do exit notifications.
731 (delete_thread, delete_thread_silent): New, as wrappers to
732 delete_thread_1.
733
734 2008-07-08 Pedro Alves <pedro@codesourcery.com>
735
736 * breakpoint.c (update_global_location_list): Add boolean
737 "should_insert" argument. Only insert locations if caller told it
738 too.
739 (update_global_location_list_nothrow): Add boolean "should_insert"
740 argument. Pass it to update_global_location_list.
741 (insert_breakpoints, create_longjmp_breakpoint)
742 (create_overlay_event_breakpoint, enable_overlay_breakpoints)
743 (create_thread_event_breakpoint, create_solib_event_breakpoint)
744 (create_fork_vfork_event_catchpoint, create_exec_event_catchpoint)
745 (enable_watchpoints_after_interactive_call_stop)
746 (set_momentary_breakpoint, create_breakpoints)
747 (break_command_really, watch_command_1)
748 (create_ada_exception_breakpoint, update_breakpoint_locations)
749 (do_enable_breakpoint, enable_command): Pass true to
750 update_global_location_list.
751 (bpstat_stop_status, disable_overlay_breakpoints)
752 (disable_watchpoints_before_interactive_call_start)
753 (delete_breakpoint, disable_breakpoint, disable_command): Pass
754 false to update_global_location_list.
755 (update_breakpoints_after_exec): Don't temporarily disable
756 always-inserted mode.
757
758 2008-07-08 Pedro Alves <pedro@codesourcery.com>
759
760 * breakpoint.c (mark_breakpoints_out): Make public.
761 (update_breakpoints_after_exec): Don't call mark_breakpoints_out
762 here. Update comment.
763 * breakpoint.h (mark_breakpoints_out): Declare.
764
765 * linux-nat.c (linux_handle_extended_wait): On
766 TARGET_WAITKIND_EXECD, call mark_breakpoints_out.
767 * inf-ttrace.c (inf_ttrace_wait): Likewise.
768
769 2008-07-08 Pedro Alves <pedro@codesourcery.com>
770
771 * infrun.c (follow_exec): Reset shared libraries before adding the
772 main exec file.
773
774 2008-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
775
776 * breakpoint.c (bpstat_copy): Call RELEASE_VALUE on the new OLD_VAL.
777
778 2008-07-07 Pedro Alves <pedro@codesourcery.com>
779
780 * i386-dicos-tdep.c: Include "inferior.h".
781 (i386_dicos_frame_align): New.
782 (i386_dicos_init_abi): Register i386_dicos_frame_align. Set call
783 dummy location ON_STACK.
784 * Makefile.in (i386-dicos-tdep.o): Depend on $(inferior_h).
785
786 2008-07-07 Joel Brobecker <brobecker@adacore.com>
787
788 * gstdint.h: New file.
789
790 2008-07-05 Vladimir Prus <vladimir@codesourcery.com>
791
792 * mi/mi-interp.c (mi_on_resume): Don't try to report
793 resumed thread it the thread list is empty.
794
795 2008-07-05 Pierre Muller <muller@ics.u-strasbg.fr>
796
797 * cli/cli-decode.c (add_setshow_optional_filename_cmd): Set
798 completer for set to filename_completer.
799
800 NEWS: Mention it.
801
802 2008-07-04 Vladimir Prus <vladimir@codesourcery.com>
803
804 Implement -target-attach.
805 * mi/mi-cmds.c (mi_cmds): Forward -target-attach to CLI attach.
806
807 2008-06-21 Hui Zhu <teawater@gmail.com>
808
809 * target-descriptions.c (maint_print_c_tdesc_cmd): Fix a memory leak.
810
811 2008-07-03 Pedro Alves <pedro@codesourcery.com>
812
813 * config/i386/nm-cygwin.h (ATTACH_NO_WAIT): Delete.
814 * config/i386/nm-i386gnu.h (ATTACH_NO_WAIT): Delete.
815
816 * target.h (struct target_ops): Add to_attach_no_wait member.
817 (target_attach_no_wait): New.
818 * target.c (update_current_target): Inherit to_attach_no_wait.
819
820 * infcmd.c: Replace ATTACH_NO_WAIT compile time check by
821 target_attach_no_wait runtime check.
822
823 * gnu-nat.c (init_gnu_ops): Set to_attach_no_wait in gnu_ops.
824 * win32-nat.c (init_win32_ops): Set to_attach_no_wait in
825 win32_ops.
826
827 2008-07-03 Pedro Alves <pedro@codesourcery.com>
828
829 * i386-tdep.c (i386_displaced_step_fixup): Condition log printing
830 on debug_displaced being set.
831
832 2008-06-30 Daniel Jacobowitz <dan@codesourcery.com>
833
834 * frame.c (get_prev_frame_1): Call frame_unwind_find_by_frame
835 directly instead of get_frame_id.
836
837 2008-06-30 Luis Machado <luisgpm@br.ibm.com>
838
839 * rs6000-tdep.c (ppc_displaced_step_fixup): New function.
840 (deal_with_atomic_sequence): Update BC masks.
841 (rs6000_gdbarch_init): Init displaced stepping infra-structure.
842 Define BRANCH_MASK, B_INSN, BC_INSN, BXL_INSN, BP_MASK and BP_INSN.
843
844 2008-06-30 Daniel Jacobowitz <dan@codesourcery.com>
845
846 * cris-tdep.c (crisv32_single_step_through_delay): Get this frame's
847 register, not the previous frame's.
848
849 2008-06-30 Luis Machado <luisgpm@br.ibm.com>
850
851 * source.c (select_source_symtab): Make sure we skip namespace
852 symtabs when showing cpp source code.
853
854 2008-06-30 Hans-Peter Nilsson <hp@axis.com>
855
856 * MAINTAINERS (Authorized committers): Fix my email address.
857
858 2008-06-28 Vladimir Prus <vladimir@codesourcery.com>
859
860 * mi/mi-cmds.c (mi_cmds): Route -exec-run, -exec-until,
861 -target-download and -target-select via CLI, so that
862 the quoting rules are the same as they were (unfortunately)
863 in all prior gdb releases.
864 * mi/mi-cmds.h (mi_cmd_exec_run, mi_cmd_exec_until)
865 (mi_cmd_target_download, mi_cmd_target_select): Remove.
866 * mi/mi-main.c (mi_cmd_exec_run, mi_cmd_exec_until)
867 (mi_cmd_target_download, mi_cmd_target_select): Remove.
868 (mi_cmd_execute): Set current_token even for commands
869 routed via CLI.
870
871 2008-06-28 Ulrich Weigand <uweigand@de.ibm.com>
872
873 * alphafbsd-tdep.c: Update for unwinder changes.
874 * alpha-linux-tdep.c: Likewise.
875 * alphanbsd-tdep.c: Likewise.
876 * alphaobsd-tdep.c: Likewise.
877 * avr-tdep.c: Likewise.
878 * cris-tdep.c: Likewise.
879 * frv-linux-tdep.c: Likewise.
880 * frv-tdep.c: Likewise.
881 * h8300-tdep.c: Likewise.
882 * hppa-linux-tdep.c: Likewise.
883 * iq2000-tdep.c: Likewise.
884 * m32c-tdep.c: Likewise.
885 * m32r-linux-tdep.c: Likewise.
886 * m32r-tdep.c: Likewise.
887 * m68hc11-tdep.c: Likewise.
888 * mep-tdep.c: Likewise.
889 * mn10300-tdep.c: Likewise.
890 * mt-tdep.c: Likewise.
891 * score-tdep.c: Likewise.
892 * sh64-tdep.c: Likewise.
893 * sh-tdep.c: Likewise.
894 * sparc64fbsd-tdep.c: Likewise.
895 * sparc64nbsd-tdep.c: Likewise.
896 * sparc64obsd-tdep.c: Likewise.
897 * v850-tdep.c: Likewise.
898 * vaxobsd-tdep.c: Likewise.
899 * vax-tdep.c: Likewise.
900 * xstormy16-tdep.c: Likewise.
901
902 2008-06-28 Vladimir Prus <vladimir@codesourcery.com>
903
904 * mi/mi-main.c (enum captured_mi_execute_command_actions)
905 (captured_mi_execute_command_args): Remove.
906 (captured_mi_execute_command): Cast the closure to mi_parse
907 pointer, not to captured_mi_execute_command_args, and don't
908 set the action field thereof.
909 (mi_execute_command): Pass struct mi_parse, not
910 captured_mi_execute_command_args to captured_mi_execute_command.
911 (mi_execute_command): Remove (dead) code for suppressing
912 printing prompt.
913
914 2008-06-28 Pedro Alves <pedro@codesourcery.com>
915
916 * linux-nat.c (enum sigchld_state): New.
917 (linux_nat_async_events_state): Renamed from
918 linux_nat_async_events_enabled.
919 (linux_nat_event_pipe_push, my_waitpid): Adjust.
920 (sigchld_default_action): New.
921 (lin_lwp_attach_lwp): Adjust. Call linux_nat_async_events
922 unconditionally.
923 (linux_nat_create_inferior): Set events state to sigchld_default
924 state.
925 (linux_nat_resume): Adjust.
926 (linux_nat_wait): Call linux_nat_async_events unconditionally.
927 (sigchld_handler): Adjust.
928 (linux_nat_async_mask): Don't set SIGCHLD actions here.
929 (get_pending_events): Adjust.
930 (linux_nat_async_events): Rewrite to handle enum sigchld_state
931 instead of a boolean.
932 (linux_nat_async): Adjust.
933 (_initialize_linux_nat): Capture default SIGCHLD action into
934 sigchld_default_action.
935
936 2008-06-28 Vladimir Prus <vladimir@codesourcery.com>
937
938 * breakpoint.c (moribund_locations): New.
939 (bpstat_stop_status): Process moribund locations.
940 (update_global_location_list): Add removed
941 locations to moribund_locations.
942 (breakpoint_retire_moribund): New.
943 * breakpoint.h (struct bp_location): New field
944 events_till_retirement.
945 (breakpoint_retire_moribund): Declare.
946 * thread.c (thread_count): New.
947 * infrun.c (handle_inferior_event): Call
948 breakpoint_retire_moribund.
949 * gdbthread.h (thread_count): Declare.
950
951 2008-06-27 Joseph Myers <joseph@codesourcery.com>
952
953 * dfp.c (decimal_convert): Call match_endianness before and after
954 conversion.
955
956 2008-06-27 Jonathan Larmour <jifl@eCosCentric.com>
957
958 * remote.c (remote_insert_breakpoint): Ensure that if Z0
959 unsupported and we fall back to memory_insert_breakpoint, we
960 use the unmodified requested address.
961
962 2008-06-27 Joel Brobecker <brobecker@adacore.com>
963
964 * dwarf2read.c (read_attribute_value): Issue a complaint when
965 adjusting size attribute values of 0xffffffff as zero.
966
967 2008-06-27 Joseph Myers <joseph@codesourcery.com>
968
969 * i386-tdep.c (i386_16_byte_align_p): New.
970 (i386_push_dummy_call): Determine stack space required for
971 arguments going forwards allowing for 16-byte alignment, then push
972 arguments going forwards.
973
974 2008-06-27 Pedro Alves <pedro@codesourcery.com>
975
976 * infrun.c (start_remote): Don't clear thread list here.
977 * monitor.c (monitor_open): Include "gdbthread.h". Clear thread
978 list here.
979 * remote.c (record_currthread): Upgrade the main thread and its
980 entry in the thread list if this is the first time we hear about
981 threads.
982 (remote_thread_alive): Consider magic_null_ptid or a ptid without
983 a tid member always alive.
984 (remote_find_new_threads): Don't update the main thread here.
985 (remote_start_remote): Clear thread list here. Always add the
986 main thread.
987 (extended_remote_attach_1): Add the main thread here.
988 (extended_remote_mourn_1): Re-add the main thread here.
989 (extended_remote_create_inferior_1): Add a main thread.
990
991 * Makefile.in (monitor.o): Depend on $(gdbthread_h).
992
993 2008-06-27 Pedro Alves <pedro@codesourcery.com>
994
995 Use ptid_t.tid to store thread ids instead of ptid_t.pid.
996
997 * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): New
998 globals.
999 (general_thread, continue_thread): Change type to ptid_t.
1000 (record_currthread): Take a ptid_t parameter instead of an
1001 integer.
1002 (MAGIC_NULL_PID): Delete.
1003 (set_thread): Take a ptid_t parameter and adjust.
1004 (set_general_thread, set_continue_thread): New.
1005 (remote_thread_alive, remote_newthread_step)
1006 (remote_current_thread, remote_find_new_threads)
1007 (remote_threads_info, remote_start_remote, remote_vcont_resume)
1008 (remote_resume_1, remote_wait, extended_remote_create_inferior_1)
1009 (threadalive_test, remote_pid_to_str)
1010 (remote_get_thread_local_address): Adjust.
1011 (_initialize_remote): Initialize magic_null_ptid, not_sent_ptid
1012 and any_thread_ptid.
1013
1014 2008-06-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1015
1016 * configure.ac (--enable-tui): AC_MSG_ERROR for explicit --enable-tui.
1017 * configure: Regenerated.
1018
1019 2008-06-26 Joel Brobecker <brobecker@adacore.com>
1020
1021 * dwarf2read.c (read_attribute_value): Treat size attribute
1022 values of 0xffffffff as if the attribute value was zero.
1023
1024 2008-06-26 Vladimir Prus <vladimir@codesourcery.com>
1025
1026 * linux-nat.c: Add description of overall logic.
1027
1028 2008-06-26 Daniel Jacobowitz <dan@codesourcery.com>
1029
1030 * Makefile.in (GNULIB_H): Use GNULIB_STDINT_H.
1031 (gdb_stdint_h, gdb_stdint.h, stamp-int): Delete. Remove
1032 all dependencies on $(gdb_stdint_h).
1033 (distclean): Do not delete gdb_stdint.h.
1034 * acinclude.m4: Do not use stdint.m4.
1035 * configure.ac: Set GNULIB_STDINT_H. Remove tests for stdint.h,
1036 uintptr_t, and gdb_stdint.h.
1037 * defs.h: Include <stdint.h>.
1038 * gdb_thread_db.h: Assume stdint.h is already included.
1039 * breakpoint.c, findcmd.c, hppa-tdep.c, inf-ptrace.c, proc-service.c,
1040 rs6000-nat.c, spu-linux-nat.c, target.c, win32-nat.c: Do not
1041 include gdb_stdint.h.
1042 * configure, config.in: Regenerate.
1043
1044 2008-06-26 Joseph Myers <joseph@codesourcery.com>
1045
1046 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Handle passing
1047 decimal floating-point values in GPRs for soft-float.
1048 (do_ppc_sysv_return_value): Handle returning decimal
1049 floating-point values in GPRs for soft-float.
1050
1051 2008-06-26 Vladimir Prus <vladimir@codesourcery.com>
1052
1053 * target.c (target_read_until_error): New.
1054 * target.h (target_read_until_error): Declare.
1055 * mi/mi-main.c (mi_cmd_data_read_memory): Use
1056 target_read_until_error.
1057
1058 2008-06-25 Jan Kratochvil <jan.kratochvil@redhat.com>
1059
1060 Fix a memory leak found by Hui Zhu <teawater@gmail.com>.
1061 * c-exp.y (parse_number): Move the S and SAVED_CHAR initialization
1062 after the DECFLOAT detection to fix a memory leak. Remove the
1063 redundant NUM initialization. Protect the DECFLOAT detection memory
1064 access before the P block. Restore the P memory content for the
1065 DECFLOAT detection.
1066
1067 2008-06-25 Vladimir Prus <vladimir@codesourcery.com>
1068
1069 Kill the return value for all MI command functions.
1070 * mi/mi-cmds.h (enum mi_cmd_result): Remove.
1071 (mi_cmd_argv_ftype): Change return type to void.
1072
1073 * mi/mi-main.c: Adjust all function that implement
1074 MI commands to return nothing.
1075 (struct captured_mi_execute_command_actions):
1076 Remove the rc field.
1077 (mi_cmd_execute): Return nothing.
1078 (mi_execute_async_cli_command): Return nothing.
1079 (mi_cmd_exec_interrupt): Don't print ^done here.
1080 (mi_cmd_target_select): Don't print ^connected here.
1081 (captured_mi_execute_command): Don't check for MI_CMD_DONE.
1082 Special-case -target-select and output ^connected, not ^done.
1083
1084 * mi/mi-cmd-break.c: Adjust.
1085 * mi/mi-cmd-disas.c: Adjust.
1086 * mi/mi-cmd-env.c: Adjust.
1087 * mi/mi-cmd-file.c: Adjust.
1088 * mi/mi-cmd-stack.c: Adjust.
1089 * mi/mi-cmd-target.c: Adjust.
1090 * mi/mi-cmd-var.c: Adjust.
1091 * mi/mi-interp.c: Adjust.
1092 * mi/mi-symbol-cmds.c: Adjust.
1093
1094 2008-06-25 Vladimir Prus <vladimir@codesourcery.com>
1095
1096 Emit ^running via observer.
1097 * mi/mi-interp.c (mi_cmd_interpreter_exec): Do no print
1098 ^running here.
1099 (mi_on_resume): Print ^running if not previously output.
1100 * mi/mi-main.c (running_result_record_printed): New.
1101 (captured_mi_execute_command): Reset
1102 running_result_record_printed. Use running_result_record_printed
1103 to decide if we should skip ^done.
1104 (mi_execute_async_cli_command): Don't print ^running here.
1105 * mi/mi-main.h (current_token, running_result_record_printed):
1106 Declare.
1107
1108 2008-06-24 Michael Snyder <msnyder@specifix.com>
1109
1110 * infrun.c (_initialize_infrun): White space and typo fix.
1111
1112 2008-06-23 Christopher Faylor <me.gdb.changelog@cgf.cx>
1113
1114 * win32-nat.c (safe_symbol_file_add_stub): Remove unused variable.
1115 (do_initial_win32_stuff): Fix problem with inability to set breakpoints
1116 when first loading DLL with "dll" command.
1117
1118 2008-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
1119
1120 * gnu-nat.c (proc_string): Use capital T for "Thread".
1121
1122 2008-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
1123
1124 * win32-nat.c (win32_pid_to_str): Use capital T for "Thread".
1125
1126 2008-06-18 Joel Brobecker <brobecker@adacore.com>
1127
1128 * solib-osf.c (osf_solib_create_inferior_hook): Do nothing if
1129 the target cannot run.
1130
1131 2008-06-18 Joel Brobecker <brobecker@adacore.com>
1132
1133 * solib-osf.c (osf_solib_create_inferior_hook): Do nothing if
1134 we're attaching to a running process.
1135
1136 2008-06-18 Pierre Muller <muller@ics.u-strasbg.fr>
1137
1138 * win32-nat.c (handle_load_dll): Give dll name and load address
1139 if debug_events is on.
1140 (handle_unload_dll): Likewise.
1141
1142 2008-06-14 Vladimir Prus <vladimir@codesourcery.com>
1143
1144 Don't suppress *running when doing finish.
1145 * infcall.c (call_function_by_hand): Set both
1146 suppress_resume_observer and suppress_stop_observer.
1147 * infcmd.c (suppress_run_stop_observers): Split into...
1148 (suppress_resume_observer, suppress_stop_observer): ...those.
1149 (finish_command_continuation): Clear suppress_stop_observer.
1150 (finish_command): Set suppress_stop_observer.
1151 * inferior.h (suppress_run_stop_observers): Split into...
1152 (suppress_resume_observer, suppress_stop_observer): ...those.
1153 * infrun.c (normal_stop): Check for suppress_stop_observer.
1154 * thread.c (set_running): Check for suppress_resume_observer.
1155
1156 2008-06-12 Pedro Alves <pedro_alves@portugalmail.pt>
1157 Pierre Muller <muller@ics.u-strasbg.fr>
1158
1159 * gdbarch.sh (gdbarch_skip_main_prologue): New.
1160 * gdbarch.h, gdbarch.c: Regenerate.
1161 * i386-tdep.h (i386_skip_main_prologue): Declare.
1162 * i386-tdep.c (i386_skip_main_prologue): New.
1163 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Register
1164 i386_skip_main_prologue as gdbarch_skip_main_prologue gdbarch callback.
1165 * symtab.c (find_function_start_sal): When pc points at the "main"
1166 function, call gdbarch_skip_main_prologue.
1167
1168 2008-06-11 Daniel Jacobowitz <dan@codesourcery.com>
1169
1170 * value.c (value_primitive_field): Fetch lazy register values.
1171
1172 2008-06-11 Pedro Alves <pedro@codesourcery.com>
1173
1174 * NEWS: Mention support removal of undocumented S AA p PID stop
1175 reply packet.
1176
1177 * remote.c (remote_wait): Remove undocumented S AA p PID support.
1178
1179 2008-06-10 Stan Shebs <stan@codesourcery.com>
1180
1181 * MAINTAINERS: Update my affiliation and address.
1182
1183 2008-06-10 Andreas Schwab <schwab@suse.de>
1184
1185 * top.c (print_gdb_version): Don't print final newline.
1186
1187 2008-06-10 Vladimir Prus <vladimir@codesourcery.com>
1188
1189 Implement *running.
1190 * Makefile.in: Update dependencies.
1191 * gdbthread.h (struct thread_info): New field
1192 running_.
1193 (set_running, is_running): New.
1194 * thread.c (set_running, is_running): New.
1195 * inferior.h (suppress_normal_stop_observer): Rename to...
1196 (suppress_run_stop_observers): ..this.
1197 * infcmd.c (suppress_normal_stop_observer): Rename to...
1198 (suppress_run_stop_observers): ..this.
1199 (finish_command_continuation, finish_command): Adjust.
1200 * infcall.c (call_function_by_hand): Adjust.
1201 * infrun.c (normal_stop): Call set_running.
1202 * target.c (target_resume): New. Call set_running.
1203 * target.h (target_resume): Convert from macro to
1204 a function.
1205
1206 * mi/mi-interp.c (mi_on_resume): New.
1207 (mi_interpreter_init): Register mi_on_resume.
1208
1209 2008-06-10 Vladimir Prus <vladimir@codesourcery.com>
1210
1211 Use observers to report stop events in MI.
1212 * mi/mi-interp.c (mi_on_normal_stop): New.
1213 (mi_interpreter_init): Register mi_on_normal_stop.
1214 (mi_interpreter_exec_continuation): Remove.
1215 (mi_cmd_interpreter_exec): Don't register the above.
1216 * mi/mi-main.c (captured_mi_execute_command): Don't care
1217 about sync_execution.
1218 (mi_execute_async_cli_command): Don't install continuation. Don't
1219 print *stopped.
1220 (mi_exec_async_cli_cmd_continuation): Remove.
1221
1222 2008-06-10 Vladimir Prus <vladimir@codesourcery.com>
1223
1224 Suppress normal stop observer when it's problematic.
1225 * inferior.h (suppress_normal_stop_observer): New.
1226 * infcall.c (call_function_by_hand): Disable stop events when
1227 doing function calls.
1228 * infmcd.c (suppress_normal_stop_observer): New.
1229 (finish_command_continuation): Call normal_stop observer
1230 explicitly.
1231 (finish_command): Disable stop events inside proceed.
1232 * infrun.c (normal_stop): Don't call normal stop observer if
1233 suppressed of if multi-step is in progress.
1234
1235 2008-06-10 Vladimir Prus <vladimir@codesourcery.com>
1236
1237 Remove stale code.
1238 * infrun.c (finish_command): Don't pass cleanup
1239 to continuation.
1240 (finish_command_continuation): Don't grab cleanup from
1241 the passed data, as we don't use, and cannot, use it anyway.
1242
1243 2008-06-10 Vladimir Prus <vladimir@codesourcery.com>
1244
1245 Introduce common cleanup for restoring integers.
1246 * defs.h (make_cleanup_restore_integer): New declaration.
1247 (struct cleanup): New field free_arg.
1248 (make_my_cleanup_2): New.
1249 * utils.c (restore_integer_closure, restore_integer)
1250 (make_cleanup_restore_integer): New.
1251 (make_my_cleanup): Initialize the free_arg field and
1252 renamed to make_my_cleanup_2.
1253 (do_my_cleanups): Call free_arg.
1254 (discard_cleanups): Call free_arg.
1255 * breakpoint.c (restore_always_inserted_mode): Remove.
1256 (update_breakpoints_after_exec): Use make_cleanup_restore_integer.
1257
1258 2008-06-09 Doug Evans <dje@google.com>
1259
1260 * remote.c (remote_wait): Include beginning of malformed packet
1261 in error output.
1262
1263 2008-06-09 Tom Tromey <tromey@redhat.com>
1264
1265 * completer.c (complete_line): Don't special-case
1266 expression_completer.
1267 (expression_completer): Only pass last word to
1268 location_completer.
1269 * c-exp.y (yylex): Check 'token', not 'operator'.
1270
1271 2008-06-09 Daniel Jacobowitz <dan@codesourcery.com>
1272
1273 * configure.ac (build_warnings): Add -Wno-format for mingw.
1274 * configure: Regenerated.
1275
1276 2008-06-07 Daniel Jacobowitz <dan@codesourcery.com>
1277
1278 * NEWS: Make indentation consistent. Move exec tracing entry out
1279 of remote packet list.
1280
1281 2008-06-06 Tom Tromey <tromey@redhat.com>
1282
1283 * value.h (evaluate_subexpression_type, extract_field_op):
1284 Declare.
1285 * printcmd.c (_initialize_printcmd): Use expression_completer for
1286 'p', 'inspect', 'call'.
1287 * parser-defs.h (parse_field_expression): Declare.
1288 * parse.c: Include exceptions.h.
1289 (in_parse_field, expout_last_struct): New globals.
1290 (mark_struct_expression): New function.
1291 (prefixify_expression): Return int.
1292 (prefixify_subexp): Return int. Use expout_last_struct.
1293 (parse_exp_1): Update.
1294 (parse_exp_in_context): Add 'out_subexp' argument. Handle
1295 in_parse_field.
1296 (parse_field_expression): New function.
1297 * expression.h (parse_field_expression): Declare.
1298 (in_parse_field): Likewise.
1299 * eval.c (evaluate_subexpression_type): New function.
1300 (extract_field_op): Likewise.
1301 * completer.h (expression_completer): Declare.
1302 * completer.c (expression_completer): New function.
1303 (count_struct_fields, add_struct_fields): New functions.
1304 * c-exp.y (yyparse): Redefine.
1305 (COMPLETE): New token.
1306 (exp): New productions.
1307 (saw_name_at_eof, last_was_structop): New globals.
1308 (yylex): Return COMPLETE when needed. Recognize in_parse_field.
1309 (c_parse): New function.
1310 * breakpoint.c (_initialize_breakpoint): Use expression_completer
1311 for watch, awatch, and rwatch.
1312 * Makefile.in (parse.o): Depend on exceptions_h.
1313
1314 2008-06-06 Paul Pluzhnikov <ppluzhnikov@google.com>
1315
1316 PR gdb/1147
1317 * gdb/valopts.c (find_overload_match): Handle references
1318 to pointers.
1319
1320 2008-06-06 Paul N. Hilfinger <hilfinger@adacore.com>
1321
1322 * ada-lang.c (ada_value_assign): Correct big-endian case to take into
1323 account the bitsize of the 'from' operand.
1324
1325 2008-06-06 Pedro Alves <pedro@codesourcery.com>
1326
1327 * annotate.h (annotate_thread_changed): Declare.
1328
1329 2008-06-06 Nick Roberts <nickrob@snap.net.nz>
1330
1331 * annotate.c (annotate_thread_changed): New function.
1332 * thread.c (thread_command) : Use it.
1333 * infrun.c (normal_stop): Use it.
1334
1335 2008-06-05 Vladimir Prus <vladimir@codesourcery.com>
1336 Nathan Sidwell <nathan@codesourcery.com>
1337 Joseph Myers <joseph@codesourcery.com>
1338
1339 * acinclude.m4: Include ../config/acx.m4.
1340 * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
1341 * configure, config.in: Regenerate.
1342 * main.c (print_gdb_help): Use REPORT_BUGS_TO for bug-reporting
1343 address.
1344 * top.c (print_gdb_version): Use PKGVERSION and REPORT_BUGS_TO.
1345
1346 2008-06-05 Pedro Alves <pedro@codesourcery.com>
1347
1348 Replace 'target async' by 'maintenance set remote-async' and
1349 'target remote' combination.
1350
1351 * remote.c (remote_async_wait): Merge into remote_wait, and
1352 remove.
1353 (remote_async_permitted, remote_async_permitted_set): New
1354 variables.
1355 (set_maintenance_remote_async_permitted)
1356 (show_maintenance_remote_async_permitted): New functions.
1357 (remote_async_ops, extended_async_remote_ops): Delete.
1358 (remote_async_open, extended_remote_async_open): Delete.
1359 (remote_open_1): Drop async_p parameter. Update callers. Replace
1360 async_p with remote_async_permitted checks.
1361 (extended_async_remote_attach): Delete.
1362 (remote_resume, remote_async_resume): Merge and leave remote_resume.
1363 (remote_async_terminal_inferior): Rename to...
1364 (remote_terminal_inferior): ... this, and add
1365 remote_async_termitted check.
1366 (remote_async_terminal_ours): Rename to...
1367 (remote_terminal_ours): ... this, and add remote_async_termitted
1368 check.
1369 (remote_wait, remote_async_wait): Merge and leave remote_wait
1370 only.
1371 (remote_kill, remote_async_kill): Merge and leave remote_kill
1372 only.
1373 (remote_async_mourn, extended_async_remote_mourn): Delete.
1374 (extended_remote_create_inferior_1): Drop async_p parameter.
1375 Update callers. Always use extended_remote_ops.
1376 (extended_remote_async_create_inferior): Delete.
1377 (remote_return_zero): Delete.
1378 (init_remote_ops): Register remote_can_async_p, remote_async,
1379 remote_async_mask, remote_terminal_inferior and
1380 remote_terminal_ours.
1381 (remote_can_async_p, remote_is_async_p): Check for
1382 remote_async_permitted.
1383 (init_remote_async_ops, init_extended_async_remote_ops): Remove.
1384 (set_remote_cmd): Don't add async and extended-async targets.
1385 (_initialize_remote): Add set/show remote-async maintenance
1386 commands.
1387
1388 2008-06-05 Pedro Alves <pedro@codesourcery.com>
1389
1390 * remote.c (kill_kludge): Delete.
1391 (remote_wait, remote_async_wait): Don't set it.
1392 (remote_kill, remote_async_kill): Don't do anything with it.
1393
1394 2008-06-05 Pedro Alves <pedro@codesourcery.com>
1395
1396 * linux-thread-db.c (thread_db_wait): Don't trim event ptid.
1397
1398 2008-06-05 Aleksandar Ristovski <aristovski@qnx.com>
1399
1400 * bcache.c (bcache_data): Call deprecated_bcache_added function.
1401 (deprecated_bcache_added): New function name. Body of function
1402 bcache_data is used here with the addition of 'added' argument.
1403 * bcache.h (deprecated_bcache_added): New function.
1404 * symfile.c (add_psymbol_to_bcache): New helper function, takes part of
1405 work from add_psymbol_to_list - initialises partial symbol and stashes
1406 it in objfile's cache.
1407 (append_psymbol_to_list): New helper function, takes other part of
1408 work from add_psymbol_to_list - adds partial symbol to the given list.
1409 (add_psymbol_to_list): Call helper functions instead of doing work
1410 here. If adding to global list, do not duplicate partial symbols in the
1411 partial symtab.
1412
1413 2008-06-05 Aleksandar Ristovski <aristovski@qnx.com>
1414
1415 * breakpoint.c (print_exception_catchpoint): Put 'exception' back to
1416 'exception caught|thrown' message.
1417
1418 2008-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1419
1420 * Makefile.in: Update dependencies.
1421 * dwarf2expr.c: New include "gdb_assert.h".
1422 (new_dwarf_expr_context): Initialize MAX_RECURSION_DEPTH.
1423 (dwarf_expr_eval): Sanity check the RECURSION_DEPTH count.
1424 (execute_stack_op): Error out on too large RECURSION_DEPTH.
1425 Increase/decrease RECURSION_DEPTH around the function.
1426
1427 2008-06-05 Daniel Jacobowitz <dan@codesourcery.com>
1428
1429 * remote.c (get_offsets): Handle a single segment.
1430 * symfile.c (symfile_map_offsets_to_segments): Allow more bases
1431 than segments.
1432
1433 2008-06-03 Daniel Jacobowitz <dan@codesourcery.com>
1434
1435 * solib-svr4.c (struct lm_info): Add lm_addr.
1436 (main_lm_addr): New.
1437 (svr4_default_sos): Set lm_addr.
1438 (svr4_current_sos): Set lm_addr and main_lm_addr.
1439 (svr4_fetch_objfile_link_map): Rewrite.
1440 (svr4_clear_solib): Clear main_lm_addr.
1441
1442 2008-06-03 Michael Snyder <msnyder@redhat.com>
1443 Joseph Myers <joseph@codesourcery.com>
1444
1445 * mips-tdep.c (mips_eabi_return_value): Replace stub that always
1446 returned RETURN_VALUE_STRUCT_CONVENTION with a real function.
1447
1448 2008-06-02 Roman Zippel <zippel@linux-m68k.org>
1449
1450 * m68klinux-tdep.c (m68k_linux_pc_in_sigtramp): Fix incorrect test.
1451
1452 2008-06-02 Roman Zippel <zippel@linux-m68k.org>
1453
1454 * m68k-tdep.c (m68k_analyze_prologue): Fix length of lea insn.
1455
1456 2008-06-01 Joel Brobecker <brobecker@adacore.com>
1457
1458 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Do not
1459 treat pointers in data space as function descriptors if the
1460 target address is also in the data space.
1461
1462 2008-05-30 Joel Brobecker <brobecker@adacore.com>
1463
1464 * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Set
1465 the trad-frame register value for the SP register.
1466
1467 2008-05-29 Mark Kettenis <kettenis@gnu.org>
1468
1469 * sparcnbsd-tdep.c, sparcobsd-tdep.c: Update for unwinder changes.
1470
1471 2008-05-28 Joel Brobecker <brobecker@adacore.com>
1472
1473 * ia64-tdep.c (ia64_convert_from_func_ptr_addr): Improve the heuristic
1474 that identifies function descriptors outside of the .opd section.
1475
1476 2008-05-28 Aleksandar Ristovski <aristovski@qnx.com>
1477
1478 * breakpoint.c (print_exception_catchpoint): In CLI add 'Temporary' for
1479 temporary catchpoints. In MI add missing fields 'reason', 'disp',
1480 'bkptno'.
1481 (print_mention_exception_catchpoint): Add 'Temporary' for temporary
1482 catchpoints.
1483 (handle_gnu_v3_exceptions): Use tempflag.
1484
1485 2008-05-28 Vladimir Prus <vladimir@codesourcery.com>
1486
1487 Refactor varobj_update interface.
1488 * varobj.c (varobj_update): Report changes as vector. Also
1489 return not just a list of varobj, but a list of special structures
1490 that tell what exactly has changed.
1491 * varobj.h (enum varobj_update_error): Rename to
1492 varobj_scope_status.
1493 (struct varobj_update_result_t): New.
1494 (varobj_update): Adjust prototype.
1495 * mi/mi-cmd-var.c: Adjust for changes.
1496
1497 2008-05-28 Vladimir Prus <vladimir@codesourcery.com>
1498
1499 * varobj.c (varobj_update): Fix comment typo.
1500 Fix indentation.
1501
1502 2008-05-26 Joel Brobecker <brobecker@adacore.com>
1503
1504 Set the symtab field of symbols read from ECOFF debugging entries.
1505 * mdebugread.c (add_symbol): Add new parameter symtab.
1506 (parse_symbol): Update calls to add_symbol throughout.
1507
1508 2008-05-27 Andreas Schwab <schwab@suse.de>
1509
1510 * symtab.h (enum address_class): Remove LOC_REGPARM and
1511 LOC_COMPUTED_ARG.
1512 (struct symbol): Add is_argument.
1513 (SYMBOL_IS_ARGUMENT): Define.
1514
1515 * ada-lang.c (ada_add_block_symbols): Use SYMBOL_IS_ARGUMENT.
1516 * buildsym.c (finish_block): Likewise.
1517 * stack.c (print_frame_args, print_block_frame_locals)
1518 (print_frame_arg_vars): Likewise.
1519 * symtab.c (lookup_block_symbol): Likewise.
1520 * tracepoint.c (add_local_symbols): Likewise.
1521 * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
1522
1523 * coffread.c (process_coff_symbol): Set SYMBOL_IS_ARGUMENT.
1524 * dwarf2read.c (new_symbol): Likewise.
1525 * mdebugread.c (parse_symbol): Likewise.
1526 * stabsread.c (define_symbol): Likewise.
1527
1528 * ada-exp.y (select_possible_type_sym): Don't handle LOC_REGPARM
1529 and LOC_COMPUTED_ARG.
1530 * ada-lang.c (resolve_subexp, symtab_for_sym): Likewise.
1531 * ax-gdb.c (gen_var_ref): Likewise.
1532 * eval.c (evaluate_subexp_for_address): Likewise.
1533 * findvar.c (symbol_read_needs_frame, read_var_value): Likewise.
1534 * m2-exp.y (yylex): Likewise.
1535 * printcmd.c (address_info): Likewise.
1536 * symmisc.c (print_symbol, print_partial_symbols): Likewise.
1537 * tracepoint.c (collect_symbol, scope_info): Likewise.
1538
1539 2008-05-24 Carlos Eduardo Seo <cseo@linux.vnet.ibm.com>
1540
1541 * gdbarch.sh: Added new gdbarch struct
1542 core_regset_sections.
1543 * gdbarch.c: Refreshed.
1544 * gdbarch.h: Refreshed.
1545 * regset.h (core_regset_section): Declared.
1546 * linux-nat.c (linux_nat_do_thread_registers): Added
1547 support for the new gdbarch struct core_regset_sections.
1548 * utils.c (host_address_to_string): New function.
1549 * defs.h (host_address_to_string): New prototype.
1550 * i386-linux-tdep.c (i386_regset_rections): New register
1551 sections list for i386.
1552 (i386_linux_init_abi): Initialized new gdbarch struct
1553 core_regset_sections.
1554 * Makefile.in: Updated to reflect dependency changes.
1555 * ppc-linux-tdep.c (ppc_regset_sections): Register
1556 sections list for ppc.
1557 (ppc_linux_init_abi): Initialized new gdbarch struct
1558 core_regset_sections
1559
1560 2008-05-24 Andreas Schwab <schwab@suse.de>
1561
1562 * linespec.c (decode_objc): Save current language around call to
1563 get_selected_block.
1564
1565 2008-05-23 Joel Brobecker <brobecker@adacore.com>
1566
1567 * valprint.h (get_array_bounds): Renames get_array_low_bound.
1568 * valprint.c (get_array_bounds): Renames get_array_low_bound.
1569 Return the proper bound value if the array index type is an
1570 enumerated type. Compute the high bound if requested.
1571 (val_print_array_elements): Handle the case when the array
1572 element has a null size.
1573 * ada-valprint.c (print_optional_low_bound): Add handling
1574 for empty arrays or arrays of zero-size elements.
1575 (ada_val_print_array): New function, extracted out from
1576 ada_val_print_1 case TYPE_CODE_ARRAY, and enhanced to
1577 handle empty arrays and arrays of zero-size elements.
1578 (ada_val_print_1)[case TYPE_CODE_ARRAY]: Replace extracted-out
1579 code by call to ada_val_print_array.
1580 (ada_value_print): Remove handling of null array. The handling
1581 was incomplete and is now better handled by ada_val_print_array.
1582
1583 2008-05-23 Markus Deuling <deuling@de.ibm.com>
1584
1585 * annotate.c (annotate_source, annotate_frame_begin): Replace
1586 deprecated_print_address_numeric with paddress.
1587 * cli/cli-cmds.c (list_command, edit_command): Likewise.
1588 * tui/tui-stack.c (tui_make_status_line): Likewise.
1589
1590 * defs.h (deprecated_print_address_numeric): Remove.
1591 * printcmd.c (deprecated_print_address_numeric): Remove.
1592 * maint.c (maint_print_section_info): Fix comment.
1593
1594 2008-05-23 Markus Deuling <deuling@de.ibm.com>
1595
1596 * valprint.c (print_hex_chars, print_octal_chars, print_decimal_chars,
1597 print_binary_chars, print_char_chars): Add byte_order parameter and
1598 replace gdbarch_byte_order.
1599 (print_decimal_chars): Replace START_P, NOT_END_P and NEXT_P by their
1600 expressions and remove them. Remove unused TWO_TO_FOURTH.
1601 (val_print_type_code_int): Introduce gdbarch_byte_order to get at the
1602 endianness. Update call to print_hex_chars.
1603 * valprint.h (print_hex_chars, print_octal_chars, print_decimal_chars,
1604 print_binary_chars, print_char_chars): Add byte_order parameter.
1605 * printcmd.c (print_scalar_formatted): Introduce gdbarch_byte_order to
1606 get at the endianness. Update print_*_char calls to use byte_order.
1607
1608 2008-05-22 Ulrich Weigand <uweigand@de.ibm.com>
1609
1610 * symtab.h (struct symbol): Make "aux_value" member a void pointer
1611 instead of a union.
1612 (SYMBOL_LOCATION_BATON): Update.
1613
1614 2008-05-22 Ulrich Weigand <uweigand@de.ibm.com>
1615
1616 * symtab.h (enum address_class): Remove LOC_BASEREG and
1617 LOC_BASEREG_ARG.
1618 (struct symbol): Remove "basereg" member of "aux_value" union.
1619 (SYMBOL_BASEREG): Remove.
1620
1621 * ada-exp.y (select_possible_type_sym): Do not handle LOC_BASEREG
1622 or LOC_BASEREG_ARG.
1623 * ada-lang.c (resolve_subexp, symtab_for_sym): Likewise.
1624 (ada_add_block_symbols): Likewise.
1625 * ax-gdb.c (gen_var_ref): Likewise.
1626 * buildsym.c (finish_block): Likewise.
1627 * findvar.c (symbol_read_needs_frame, read_var_value): Likewise.
1628 * m2-exp.y (yylex): Likewise.
1629 * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
1630 * printcmd.c (address_info): Likewise.
1631 * stack.c (print_frame_args, print_block_frame_locals): Likewise.
1632 (print_frame_arg_vars): Likewise.
1633 * symmisc.c (print_symbol): Likewise.
1634 * symtab.c (lookup_block_symbol): Likewise.
1635 * tracepoint.c (collect_symbol, add_local_symbols): Likewise.
1636 (scope_info): Likewise.
1637
1638 2008-05-22 Ulrich Weigand <uweigand@de.ibm.com>
1639
1640 * symtab.h (enum address_class): Remove LOC_LOCAL_ARG.
1641
1642 * ada-exp.y (select_possible_type_sym): Do not handle LOC_LOCAL_ARG.
1643 * ada-lang.c (resolve_subexp, symtab_for_sym): Likewise.
1644 (ada_add_block_symbols): Likewise.
1645 * ax-gdb.c (gen_var_ref): Likewise.
1646 * buildsyms.c (finish_block): Likewise.
1647 * findvar.c (symbol_read_needs_frame, read_var_value): Likewise.
1648 * m2-exp.y (yylex): Likewise.
1649 * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
1650 * printcmd.c (address_info): Likewise.
1651 * stack.c (print_frame_args, print_frame_arg_vars): Likewise.
1652 * symmisc.c (print_symbol, print_partial_symbols): Likewise.
1653 * symtab.c (lookup_block_symbol): Likewise.
1654 * tracepoint.c (collect_symbol, add_local_symbols): Likewise.
1655 (scope_info): Likewise.
1656
1657 2008-05-22 Ulrich Weigand <uweigand@de.ibm.com>
1658
1659 * symtab.h (enum address_class): Remove LOC_INDIRECT and
1660 LOC_HP_THREAD_LOCAL_STATIC.
1661
1662 * findvar.c (symbol_read_needs_frame, read_var_value): Do not
1663 handle LOC_INDIRECT or LOC_HP_THREAD_LOCAL_STATIC.
1664 (read_var_value): Likewise.
1665 * buildsym.c (finish_block): Likewise.
1666 * objfiles.c (objfile_relocate): Likewise.
1667 * printcmd.c (address_info): Likewise.
1668 * symmisc.c (print_symbol, print_partial_symbols): Likewise.
1669 * tracepoint.c (scope_info): Likewise.
1670
1671 2008-05-21 Markus Deuling <deuling@de.ibm.com>
1672 Maxim Grigoriev <maxim2405@gmail.com>
1673
1674 * xtensa-tdep.c (xtensa_read_register): Remove.
1675 (xtensa_frame_cache): Get rid of xtensa_read_register. Pass extra
1676 argument litbase to call0_frame_cache().
1677 (call0_track_op, call0_analyze_prologue)
1678 (call0_frame_cache): Use extra argument litbase.
1679
1680 2008-05-21 Joel Brobecker <brobecker@adacore.com>
1681
1682 * infcmd.c (_initialize_infcmd): Add new "fin" alias for "finish".
1683
1684 2008-05-21 Ulrich Weigand <uweigand@de.ibm.com>
1685
1686 * frame.h (SIZEOF_FRAME_SAVED_REGS): Remove.
1687
1688 2008-05-21 Ulrich Weigand <uweigand@de.ibm.com>
1689
1690 * alpha-mdebug-tdep.c: Include "trad-frame.h".
1691 (struct alpha_mdebug_unwind_cache): Change type of SAVED_REGS to
1692 struct trad_frame_saved_reg *.
1693 (alpha_mdebug_frame_unwind_cache): Allocate SAVED_REGS using
1694 trad_frame_alloc_saved_regs. Update accesses. Record previous
1695 value of SP as being vfp.
1696 (alpha_mdebug_frame_prev_register): Use trad_frame_get_prev_register.
1697 * Makefile.in (alpha-mdebug-tdep.o): Update dependencies.
1698
1699 2008-05-21 Markus Deuling <deuling@de.ibm.com>
1700
1701 * score-tdep.c (score_print_insn): Get the current endianess from
1702 disassemble_info instead of gdbarch_byte_order.
1703
1704 2008-05-21 Pedro Alves <pedro@codesourcery.com>
1705
1706 * frame.c (get_prev_frame_1): Build frame id before setting
1707 this_frame->prev_p, not after.
1708
1709 2008-05-21 Nick Roberts <nickrob@snap.net.nz>
1710
1711 * annotate.c (annotate_new_thread): New function for new-thread
1712 annotation.
1713 * annotate.h: (annotate_new_thread): New extern.
1714 * thread.c (add_thread_with_info): Use it.
1715 * Makefile.in (thread.o): Add dependency on annotate.h.
1716
1717 2008-05-20 Joel Brobecker <brobecker@adacore.com>
1718
1719 * win32-nat.c (win32_wait): Block the control-c event while
1720 waiting for a debug event.
1721
1722 2008-05-19 Pedro Alves <pedro@codesourcery.com>
1723
1724 * symtab.h (lookup_symbol_in_language): Update comment.
1725 * symtab.c (lookup_symbol_aux_block): Update comment.
1726 * ada-lang.c (ada_lookup_symbol_list): Update comment.
1727
1728 2008-05-19 Ulrich Weigand <uweigand@de.ibm.com>
1729
1730 * symtab.h (lookup_symbol_in_language): Remove SYMTAB parameter.
1731 (lookup_symbol): Likewise.
1732 * symtab.c (lookup_symbol_in_language): Remove SYMTAB parameter.
1733 (lookup_symbol): Likewise.
1734 (search_symbols): Update.
1735
1736 * linespec.c (find_methods, collect_methods): Update.
1737 (add_matching_methods, add_constructors): Update.
1738 (decode_compound, decode_dollar, decode_variable): Update.
1739 (lookup_prefix_sym): Update.
1740
1741 (symbol_found): Remove SYM_SYMTAB parameter.
1742 Use SYMBOL_SYMTAB (sym) instead.
1743
1744 * gdbtypes.c (lookup_typename): Update.
1745 (lookup_struct, lookup_union, lookup_enum): Update.
1746 (lookup_template_type): Update.
1747 (check_typedef): Update.
1748 * language.c (lang_bool_type): Update.
1749 * mdebugread.c (parse_procedure): Update.
1750 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
1751 * parse.c (write_dollar_variable): Update.
1752 * printcmd.c (address_info): Update.
1753 * source.c (select_source_symtab): Update.
1754 * stack.c (print_frame_args, print_frame_arg_vars): Update.
1755 * valops.c (find_function_in_inferior): Update.
1756 (value_struct_elt_for_reference): Update.
1757 * value.c (value_static_field, value_fn_field): Update.
1758
1759 * alpha-mdebug-tdep.c (find_proc_desc): Update.
1760 * arm-tdep.c (arm_skip_prologue): Update.
1761 * mt-tdep.c (mt_skip_prologue): Update.
1762 * xstormy16-tdep.c (xstormy16_skip_prologue): Update.
1763
1764 * ada-lang.h (struct ada_symbol_info): Remove SYMTAB member.
1765 * ada-lang.c (ada_add_block_symbols): Remove SYMTAB parameter.
1766 (add_defn_to_vec): Likewise.
1767 (ada_add_block_symbols): Likewise.
1768 (lookup_cached_symbol, cache_symbol): Likewise.
1769 (standard_lookup): Update.
1770 (ada_lookup_symbol_list): Update.
1771
1772 * c-valprint.c (c_val_print): Update.
1773 * cp-support.c (cp_lookup_rtti_type): Update.
1774 * jv-lang.c (java_lookup_class, get_java_object_type): Update.
1775 * objc-lang.c (lookup_struct_typedef, find_imps): Update.
1776 * p-valprint.c (pascal_val_print): Update.
1777 * scm-lang.c (scm_lookup_name): Update.
1778
1779 * c-exp.y: Update.
1780 * f-exp.y: Update.
1781 * jv-exp.y: Update.
1782 * m2-exp.y: Update.
1783 * objc-exp.y: Update.
1784 * p-exp.y: Update.
1785
1786 2008-05-19 Ulrich Weigand <uweigand@de.ibm.com>
1787
1788 * language.h (struct language_defn): Remove SYMTAB parameter from
1789 la_lookup_symbol_nonlocal callback function pointer.
1790
1791 * ada-lang.h (ada_lookup_encoded_symbol): Remove SYMTAB parameter.
1792 (ada_lookup_encoded_symbol): Likewise.
1793 * ada-lang.c (ada_lookup_encoded_symbol): Remove SYMTAB parameter.
1794 Always call fixup_symbol_section.
1795 (ada_lookup_symbol): Remove SYMTAB parameter.
1796 (ada_lookup_symbol_nonlocal): Likewise.
1797 * ada-exp.y (write_object_renaming): Update.
1798 (find_primitive_type): Likewise.
1799
1800 * cp-support.h (cp_lookup_symbol_nonlocal): Remove SYMTAB parameter.
1801 (cp_lookup_symbol_namespace): Likewise.
1802 * cp-namespace.c (lookup_namespace_scope): Remove SYMTAB parameter.
1803 (lookup_symbol_file): Likewise.
1804 (lookup_possible_namespace_symbol): Likewise.
1805 (cp_lookup_symbol_nonlocal): Likewise.
1806 (cp_lookup_symbol_namespace): Likewise.
1807 (cp_lookup_nested_type): Update.
1808
1809 * scm-valprint.c (scm_inferior_print): Update.
1810 * valops.c (value_maybe_namespace_elt): Update.
1811
1812 * solist.h (struct target_so_ops): Remove SYMTAB parameter from
1813 lookup_lib_global_symbol callback function pointer.
1814 (solib_global_lookup): Remove SYMTAB parameter.
1815 * solib.c (solib_global_lookup): Remove SYMTAB parameter.
1816 * solib-svr4.c (elf_lookup_lib_symbol): Likewise.
1817
1818 * symtab.h (basic_lookup_symbol_nonlocal): Remove SYMTAB parameter.
1819 (lookup_symbol_static): Likewise.
1820 (lookup_symbol_global): Likewise.
1821 (lookup_symbol_aux_block): Likewise.
1822 (lookup_global_symbol_from_objfile): Likewise.
1823 * symtab.c (lookup_symbol_aux): Remove SYMTAB parameter.
1824 (lookup_symbol_aux_local): Likewise.
1825 (lookup_symbol_aux_block): Likewise.
1826 (lookup_symbol_aux_symtabs): Likewise.
1827 (lookup_symbol_aux_psymtabs): Likewise.
1828 (lookup_global_symbol_from_objfile): Likewise.
1829 (basic_lookup_symbol_nonlocal): Likewise.
1830 (lookup_symbol_static): Likewise.
1831 (lookup_symbol_global): Likewise.
1832
1833 (lookup_symbol_in_language): Do not pass SYMTAB to lookup_symbol_aux.
1834
1835 2008-05-17 Pedro Alves <pedro@codesourcery.com>
1836
1837 * remote.c (init_extended_remote_ops): Fix typo.
1838
1839 2008-05-16 Pedro Alves <pedro@codesourcery.com>
1840
1841 * NEWS: Mention new DICOS x86 target configuration.
1842
1843 2008-05-16 Pedro Alves <pedro@codesourcery.com>
1844 Ulrich Weigand <uweigand@de.ibm.com>
1845
1846 * minsyms.c (lookup_minimal_symbol_by_pc_name): New function.
1847 * symtab.h (lookup_minimal_symbol_by_pc_name): Add prototype.
1848
1849 * symtab.c (fixup_section): Remove prototype. Add ADDR parameter;
1850 use it instead of ginfo->value.address. Look up minimal symbol by
1851 address and name. Assume OBJFILE is non-NULL.
1852 (fixup_symbol_section): Ensure we always have an objfile to look
1853 into. Extract and pass to fixup_section the symbol's address that
1854 will match the minimal symbol's address.
1855 (fixup_psymbol_section): Likewise.
1856
1857 (find_pc_sect_psymtab): Fall back to non-addrmap case when debugging
1858 overlays and the addrmap returned the wrong section.
1859
1860 * dwarf2read.c (var_decode_location): Set SYMBOL_CLASS before
1861 calling fixup_symbol_section.
1862
1863 2008-05-16 Ulrich Weigand <uweigand@de.ibm.com>
1864
1865 * minsyms.c: Include "target.h".
1866 (find_solib_trampoline_target): Handle minimal symbols pointing
1867 to function descriptors as well.
1868 * Makefile.in (minsyms.o): Update dependencies.
1869
1870 * ppc-linux-tdep.c (ppc64_standard_linkage): Rename to ...
1871 (ppc64_standard_linkage1): ... this. Fix optional instructions.
1872 (PPC64_STANDARD_LINKAGE_LEN): Rename to ...
1873 (PPC64_STANDARD_LINKAGE1_LEN): ... this.
1874 (ppc64_standard_linkage2, ppc64_standard_linkage3): New.
1875 (PPC64_STANDARD_LINKAGE2_LEN, PPC64_STANDARD_LINKAGE3_LEN): New.
1876 (ppc64_standard_linkage_target): Rename to ...
1877 (ppc64_standard_linkage1_target): ... this.
1878 (ppc64_standard_linkage2_target, ppc64_standard_linkage3_target): New.
1879 (ppc64_skip_trampoline_code): Support three variants of standard
1880 linkage stubs. Call find_solib_trampoline_target to handle
1881 glink stubs.
1882
1883 2008-05-16 Ulrich Weigand <uweigand@de.ibm.com>
1884
1885 * ppc-linux-tdep.c (ppc_linux_init_abi): Do not install
1886 ppc64_sysv_abi_adjust_breakpoint_address.
1887 * ppc-sysv-tdep.c (ppc64_sysv_abi_adjust_breakpoint_address): Remove.
1888 * ppc-tdep.h (ppc64_sysv_abi_adjust_breakpoint_address): Remove.
1889
1890 2008-05-16 Ulrich Weigand <uweigand@de.ibm.com>
1891
1892 * ppc-linux-tdep.c (ppc_linux_skip_trampoline_code): Remove.
1893 (ppc_linux_init_abi): Install find_solib_trampoline_target instead
1894 of ppc_linux_skip_trampoline_code.
1895
1896 2008-05-15 Daniel Jacobowitz <dan@codesourcery.com>
1897
1898 * gdbarch.sh: Delete dwarf_reg_to_regnum.
1899 * gdbarch.c, gdbarch.h: Regenerated.
1900 * amd64-tdep.c, arm-tdep.c, h8300-tdep.c, hppa-linux-tdep.c,
1901 hppa-tdep.c, i386-tdep.c, m32c-tdep.c, m68k-tdep.c, mips-tdep.c,
1902 s390-tdep.c, xtensa-tdep.c: Do not set dwarf_reg_to_regnum.
1903
1904 2008-05-15 Pedro Alves <pedro@codesourcery.com>
1905
1906 * linux-nat.c (trap_ptid): Delete.
1907 (linux_nat_detach, linux_nat_wait, linux_nat_mourn_inferior):
1908 Adjust.
1909 * linux-thread-db.c (thread_db_wait): Adjust.
1910
1911 2008-05-15 Joel Brobecker <brobecker@adacore.com>
1912
1913 * linespec.c (decode_line_1): Fix a couple of comments.
1914
1915 2008-05-15 Alan Modra <amodra@bigpond.net.au>
1916
1917 * dbxread.c: Formatting.
1918 (INTERNALIZE_SYMBOL): Init n_other.
1919 (set_namestring): Take pointer to nlist arg rather than struct
1920 copy. Update all callers.
1921
1922 2008-05-15 Andreas Schwab <schwab@suse.de>
1923
1924 * Makefile.in (dwarf2loc.o): Remove $(addrmap_h).
1925 (dwarf2read.o): Add $(addrmap_h).
1926
1927 2008-05-14 Ulrich Weigand <uweigand@de.ibm.com>
1928
1929 * ppc-linux-tdep.c (ppc_linux_convert_from_func_ptr_addr): Rename ...
1930 (ppc64_linux_convert_from_func_ptr_addr): ... to this. No longer try
1931 to handle ppc32 PLT entries.
1932 (ppc_linux_init_abi): Install ppc64_linux_convert_from_func_ptr_addr
1933 only on ppc64.
1934
1935 2008-05-14 Daniel Jacobowitz <dan@codesourcery.com>
1936
1937 * elfread.c (elf_symtab_read): Create trampolines for @plt symbols.
1938 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Renamed from
1939 lookup_minimal_symbol_by_pc_section. Prefer trampolines if requested.
1940 (lookup_minimal_symbol_by_pc_section): Use
1941 lookup_minimal_symbol_by_pc_section_1.
1942 (lookup_solib_trampoline_symbol_by_pc): Likewise.
1943
1944 2008-05-13 Joel Brobecker <brobecker@adacore.com>
1945
1946 * findcmd.c: Add #include "gdb_stdint.h".
1947 * Makefile.in (findcmd.o): Update dependencies.
1948
1949 2008-05-11 David S. Miller <davem@davemloft.net>
1950
1951 * sparc-linux-tdep.c (sparc32_linux_init_abi): Remove
1952 long double size override, Linux does use 128-bit now.
1953
1954 * sparc-linux-tdep.c (PSR_SYSCALL): Define.
1955 (sparc_linux_write_pc): New function.
1956 (sparc32_linux_init_abi): Register it.
1957 * sparc64-linux-tdep.c (TSTATE_SYSCALL): Define.
1958 (sparc64_linux_write_pc): New function.
1959 (sparc64_linux_init_abi): Register it.
1960
1961 * sparc-linux-tdep.c, sparc64-linux-tdep.c: Use
1962 dwarf2_append_unwinders(), not dwarf2_frame_sniffer.
1963
1964 2008-05-11 Ulrich Weigand <uweigand@de.ibm.com>
1965
1966 * rs6000-tdep.c (rs6000_gdbarch_init): Set up info.target_desc
1967 and info.tdep_info before calling gdbarch_init_osabi.
1968
1969 2008-05-09 Joel Brobecker <brobecker@adacore.com>
1970
1971 * ada-lang.c (ada_evaluate_subexp) [BINOP_ASSIGN]: Do not force
1972 the type of the right hand side of the assignment to the type
1973 of the left hand side if the left hand side is a convenience
1974 variable.
1975
1976 2008-05-09 Ulrich Weigand <uweigand@de.ibm.com>
1977
1978 * NEWS: Mention gdbserver bi-arch capability.
1979
1980 2008-05-09 Doug Evans <dje@google.com>
1981
1982 New "find" command.
1983 * NEWS: Document find command and qSearch:memory packet.
1984 * Makefile.in (SFILES): Add findcmd.c.
1985 (COMMON_OBJS): Add findcmd.o.
1986 (findcmd.o): New rule.
1987 * findcmd.c: New file.
1988 * target.h (target_ops): New member to_search_memory.
1989 (simple_search_memory): Declare.
1990 (target_search_memory): Declare.
1991 * target.c (simple_search_memory): New fn.
1992 (target_search_memory): New fn.
1993 * remote.c (PACKET_qSearch_memory): New packet kind.
1994 (remote_search_memory): New fn.
1995 (init_remote_ops): Init to_search_memory.
1996 (init_extended_remote_ops): Ditto.
1997 (_initialize_remote): Add qSearch:memory packet config command.
1998
1999 2008-05-09 Eli Zaretskii <eliz@gnu.org>
2000
2001 * thread.c (_initialize_thread): Don't use commas and periods in
2002 first line of doc string of "set/show print thread-events".
2003
2004 2008-05-08 Joel Brobecker <brobecker@adacore.com>
2005
2006 * alpha-mdebug-tdep.c, alpha-osf1-tdep.c, alpha-tdep.c:
2007 Update for unwinder changes.
2008
2009 2008-05-08 Joel Brobecker <brobecker@adacore.com>
2010
2011 * frame.c (get_frame_base_address, get_frame_locals_address)
2012 (get_frame_args_address): Pass the correct frame when calling
2013 frame_base_find_by_frame.
2014
2015 2008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
2016
2017 * remote.c (extended_remote_attach_1): Call target_find_description.
2018
2019 2008-05-08 Daniel Jacobowitz <dan@codesourcery.com>
2020
2021 * remote.c (extended_remote_create_inferior_1): Clean up
2022 before marking the target running.
2023
2024 2008-05-08 Joel Brobecker <brobecker@adacore.com>
2025
2026 * hppa-tdep.h, hppa-tdep.c, hppa-hpux-tdep.c: Update for unwinder
2027 changes.
2028
2029 2008-05-07 Joel Brobecker <brobecker@adacore.com>
2030
2031 * sparc-tdep.c, sparc-tdep.h, sparc-sol2-tdep.c, sparc64-tdep.c,
2032 sparc64-sol2-tdep.c: Update for unwinder changes.
2033
2034 2008-05-07 Daniel Jacobowitz <dan@codesourcery.com>
2035
2036 * cp-support.c (mangled_name_to_comp): Initialize storage.
2037 (unqualified_name_from_comp): Likewise.
2038
2039 2008-05-07 Jie Zhang <jie.zhang@analog.com>
2040
2041 * remote.c (remote_insert_breakpoint): Call get_remote_state
2042 after gdbarch_breakpoint_from_pc is called.
2043 (remote_insert_hw_breakpoint): Likewise.
2044
2045 2008-05-06 Joel Brobecker <brobecker@adacore.com>
2046
2047 * valprint.c (val_print): Add new language parameter and use it
2048 instead of using the current_language. Update calls to val_print
2049 throughout.
2050 (common_val_print): Add new langauge parameter and pass it to
2051 val_print.
2052 * value.h (struct language_defn): Add opaque declaration.
2053 (val_print, common_val_print): Update declarations.
2054 * stack.c (print_frame_args): Update call to common_val_print
2055 using the appropriate language.
2056 * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
2057 * c-valprint, f-valprint.c, m2-valprint.c, mt-tdep.c, infcmd.c,
2058 mi/mi-main.c, jv-valprint.c, ada-valprint.c, varobj.c, p-valprint.c,
2059 scm-valprint.c, cp-valprint.c, sh64-tdep.c, printcmd.c:
2060 #include "language.h" if necessary.
2061 Update calls to val_print and common_val_print.
2062 * Makefile.in (mt-tdep.o, sh64-tdep.o, mi-cmds.o, mi-main.o):
2063 Update dependencies.
2064
2065 2008-05-06 Joel Brobecker <brobecker@adacore.com>
2066
2067 * ia64-tdep.c (ia64_convert_from_func_ptr_addr): Treat addresses
2068 pointing inside a non-executable section as function descriptors.
2069
2070 2008-05-06 Pedro Alves <pedro@codesourcery.com>
2071
2072 * inf-loop.c (inferior_event_handler): Run all continuations and
2073 print any language change before running the breakpoint commands.
2074
2075 2008-05-06 Joel Brobecker <brobecker@adacore.com>
2076
2077 * frame-unwind.c (frame_unwind_got_bytes): New function.
2078 * frame-unwind.h (frame_unwind_got_bytes): Add declaration.
2079 * libunwind-frame.h, libunwind-frame.c, ia64-tdep.c: Update
2080 for unwinder changes.
2081
2082 2008-05-05 Doug Evans <dje@google.com>
2083
2084 * NEWS: Mention new /m modifier for disassemble command.
2085 * cli/cli-cmds.c (print_disassembly): New function.
2086 (disassemble_current_function): New function
2087 (disassemble_command): Recognize /m modifier, print mixed
2088 source+assembly.
2089 (init_cli_cmds): Update disassemble help text.
2090
2091 2008-05-05 Maxim Grigoriev <maxim2405@gmail.com>
2092
2093 * xtensa-tdep.c: Update for unwinder changes.
2094
2095 2008-05-05 Andreas Schwab <schwab@suse.de>
2096
2097 Update m68k port for unwinder changes.
2098 * m68k-tdep.c (m68k_frame_cache): Expect this_frame.
2099 (m68k_frame_this_id, m68k_frame_prev_register): Update signature.
2100 (m68k_frame_unwind): Use default_frame_sniffer.
2101 (m68k_frame_sniffer): Remove.
2102 (m68k_frame_base_address): Expect this_frame.
2103 (m68k_dummy_id): Renamed from m68k_unwind_dummy_id. Expect
2104 this_frame.
2105 (m68k_gdbarch_init): Use set_gdbarch_dummy_id,
2106 dwarf2_append_unwinders, and frame_unwind_append_unwinder.
2107 * m68klinux-tdep.c (m68k_linux_pc_in_sigtramp): Expect frame_info
2108 parameter instead of pc value.
2109 (m68k_linux_get_sigtramp_info, m68k_linux_sigtramp_frame_cache):
2110 Expect this_frame.
2111 (m68k_linux_sigtramp_frame_this_id)
2112 (m68k_linux_sigtramp_frame_prev_register)
2113 (m68k_linux_sigtramp_frame_sniffer): Update signature.
2114 (m68k_linux_sigtramp_frame_unwind): Use
2115 m68k_linux_sigtramp_frame_sniffer.
2116 (m68k_linux_init_abi): Use frame_unwind_append_unwinder.
2117
2118 * m68klinux-nat.c (store_register): Fix typo.
2119
2120 2008-05-05 Pedro Alves <pedro@codesourcery.com>
2121
2122 * infcmd.c (step_1): Put thread id on the stack to avoid possible
2123 NULL dereferencing.
2124
2125 2008-05-05 Luis Machado <luisgpm@br.ibm.com>
2126
2127 * symfile.c (reread_symbols): Update objfile's entry point.
2128
2129 2008-05-05 Aleksandar Ristovski <aristovski@qnx.com>
2130 Joel Brobecker <brobecker@adacore.com>
2131
2132 * ada-lang.c: Update throughout to use symbol_matches_domain
2133 instead of matching the symbol domain explictly.
2134 * dwarf2read.c (add_partial_symbol): Do not add new psym for
2135 STRUCT_DOMAIN. Make sure you recognize c++ struct and java and ada
2136 class as typedefs. See lookup_partial_symbol function.
2137 (new_symbol): Similar to add_partial_symbol, do not create
2138 symbol for the typedef. See lookup_block_symbol.
2139 * symtab.c (symbol_matches_domain): New function, takes care
2140 of dual meaning of STRUCT_DOMAIN symbol for c++, ada and java.
2141 (lookup_partial_symbol): Use symbol_matches_domain to see if the
2142 found psym domain matches the given domain.
2143 (lookup_block_symbol): Likewise.
2144
2145 2008-05-05 Vladimir Prus <vladimir@codesourcery.com>
2146
2147 * top.c (command_line_handler_continuation): Remove.
2148 (execute_command): Do not install the above.
2149
2150 2008-05-05 Vladimir Prus <vladimir@codesourcery.com>
2151
2152 * inf-loop.c (inferior_event_handler): Call bpstat_do_action,
2153 and catch all exceptions from it.
2154 * top.c (command_line_handler_continuation): Don't
2155 call bpstat_do_action here.
2156
2157 2008-05-04 Daniel Jacobowitz <dan@codesourcery.com>
2158
2159 * dwarf2read.c (struct dwarf2_cu): Add type_hash.
2160 (struct die_info): Remove type.
2161 (read_type_die, read_typedef, read_base_type, read_subrange_type)
2162 (read_structure_type, read_enumeration_type, read_array_type)
2163 (read_tag_pointer_type, read_tag_ptr_to_member_type)
2164 (read_tag_reference_type, read_tag_const_type, read_tag_volatile_type)
2165 (read_tag_string_type, read_subroutine_type, read_set_type)
2166 (read_unspecified_type): Delete prototypes. Remove check for
2167 already-loaded type. Return the new type.
2168 (set_die_type): Return the new type.
2169 (reset_die_and_siblings_types): Delete.
2170 (load_comp_unit, load_full_comp_unit): Set type_hash.
2171 (process_queue): Remove call to reset_die_and_siblings_types.
2172 (process_die): Do not read most types here. Use read_type_die
2173 for others.
2174 (read_func_scope, dwarf2_add_member_fn): Use read_type_die.
2175 (quirk_gcc_member_function_pointer): Return the new type.
2176 (process_structure_scope, process_enumeration_scope): Use
2177 get_die_type and read the DIE's type.
2178 (read_full_die): Do not initialize die->type.
2179 (tag_type_to_type): Use read_type_die.
2180 (read_type_die): Check for already defined types. Return the
2181 type.
2182 (determine_prefix): Use get_die_type.
2183 (set_die_type): Return the type.
2184 (get_die_type): Take a CU argument. Check for no type_hash.
2185
2186 2008-05-04 Daniel Jacobowitz <dan@codesourcery.com>
2187
2188 * dwarf2read.c (dwarf2_ranges_read, read_partial_die): Initialize
2189 locals.
2190
2191 2008-05-04 Pedro Alves <pedro@codesourcery.com>
2192
2193 * breakpoint.c (update_breakpoints_after_exec): Delete bp_longjmp
2194 and bp_longjmp_resume breakpoints.
2195 (breakpoint_address_is_meaningful): Claim bp_longjmp_resume as
2196 meaningful.
2197 (create_longjmp_breakpoint): Don't create bp_longjmp_resume
2198 breakpoints. Create bp_longjmp breakpoints as momentary
2199 breakpoints.
2200 (enable_longjmp_breakpoint): Delete.
2201 (set_longjmp_breakpoint): New.
2202 (disable_longjmp_breakpoint): Delete.
2203 (delete_longjmp_breakpoint): New.
2204 (set_longjmp_resume_breakpoint): Delete.
2205 (set_momentary_breakpoint_at_pc): New.
2206 (breakpoint_re_set_one): Don't delete bp_longjmp and
2207 bp_longjmp_resume breakpoints.
2208 (breakpoint_re_set): Don't create longjmp and longjmp-resume
2209 breakpoints.
2210
2211 * infrun.c (step_resume_breakpoint): Add comment.
2212 (struct execution_control_state): Delete handling_longjmp member.
2213 (init_execution_control_state). Don't clear handling_longjmp.
2214 (context_switch): Don't context switch handling_longjmp.
2215 (handle_inferior_event): If handling a bp_longjmp breakpoint,
2216 create a bp_longjmp_resume breakpoint, and set it as current
2217 step_resume_breakpoint, then step over the longjmp breakpoint. If
2218 handling a bp_longjmp_resume breakpoint, don't delete the longjmp
2219 breakpoint, delete the longjmp-resume breakpoint, and stop
2220 stepping.
2221 (currently_stepping): Remove handling_longjmp from expression.
2222 (insert_step_resume_breakpoint_at_sal): Update comment.
2223 (insert_longjmp_resume_breakpoint): New.
2224
2225 * breakpoint.h (set_momentary_breakpoint_at_pc): Declare.
2226 (enable_longjmp_breakpoint, disable_longjmp_breakpoint): Delete
2227 declarations.
2228 (set_longjmp_breakpoint, delete_longjmp_breakpoint): Declare.
2229 (set_longjmp_resume_breakpoint): Delete declaration.
2230
2231 * gdbthread.h (save_infrun_state): Remove handling_longjmp
2232 parameter.
2233 (load_infrun_state): Delete *handling_longjmp parameter.
2234 * thread.c (save_infrun_state): Remove handling_longjmp parameter.
2235 Update body.
2236 (load_infrun_state): Delete *handling_longjmp parameter. Update
2237 body.
2238
2239 * infcmd.c (disable_longjmp_breakpoint_cleanup): Delete.
2240 (delete_longjmp_breakpoint_cleanup): New.
2241 (step_1): Call set_longjmp_breakpoint instead of
2242 enable_longjmp_breakpoint. Use delete_longjmp_breakpoint_cleanup
2243 instead of disable_longjmp_breakpoint_cleanup when making cleanup.
2244 (step_1_continuation): Pass thread id in the continuation args to
2245 step_once.
2246 (step_once): Add thread parameter. Pass thread id the the
2247 continuation.
2248
2249 2008-05-04 Jan Kratochvil <jan.kratochvil@redhat.com>
2250
2251 Set CU BASE_ADDRESS already from partial DIEs.
2252 * dwarf2read.c (read_partial_die): New variables BASE_ADDRESS and
2253 BASE_ADDRESS_TYPE. Set these variables from DW_AT_LOW_PC and
2254 DW_AT_ENTRY_PC. Set CU->HEADER.BASE_KNOWN and CU->HEADER.BASE_ADDRESS
2255 from these variables if it was still unset.
2256
2257 * Makefile.in: Update dependencies.
2258 * dwarf2read.c: Include "addrmap.h"
2259 (struct dwarf2_cu): New fields RANGES_OFFSET and HAS_RANGES_OFFSET.
2260 (dwarf2_ranges_read): New prototype.
2261 (dwarf2_build_psymtabs_hard): Initialize and prepare PSYMTABS_ADDRMAP.
2262 Add discontiguous range to PSYMTABS_ADDRMAP by DWARF2_RANGES_READ on
2263 HAS_RANGES_OFFSET, otherwise add there the contiguous range.
2264 (dwarf2_ranges_read): New parameter RANGES_PST, update the function
2265 comment for it. Add the found ranges to RANGES_PST. New variable
2266 BASEADDR, initialize it the common way.
2267 (dwarf2_get_pc_bounds): Update the caller for the new parameter.
2268 (read_partial_die): `DW_AT_ranges' now only sets RANGES_OFFSET and
2269 HAS_RANGES_OFFSET for the later processing.
2270 * objfiles.h (struct objfile): New field PSYMTABS_ADDRMAP.
2271 * symtab.c: Include "addrmap.h"
2272 (find_pc_sect_psymtab): Support reading the field PSYMTABS_ADDRMAP.
2273 Move the psymtab locator into ...
2274 (find_pc_sect_psymtab_closer): ... a new function.
2275
2276 2008-05-04 Ulrich Weigand <uweigand@de.ibm.com>
2277
2278 * arch-utils.c (gdbarch_update_p): Use default values for
2279 info.abfd and info.target_desc if they are NULL.
2280 (gdbarch_from_bfd): Remove assertion.
2281 (set_gdbarch_from_file): Call gdbarch_find_by_info directly,
2282 using the current target description.
2283 (gdbarch_info_fill): Do not use default values for info->abfd
2284 and info->target_desc.
2285
2286 2008-05-04 Jan Kratochvil <jan.kratochvil@redhat.com>
2287
2288 * symfile.c (reread_symbols): Reload EXEC_BFD on its change.
2289
2290 2008-05-04 Ulrich Weigand <uweigand@de.ibm.com>
2291
2292 * inferior.h (read_pc_pid, write_pc_pid): Remove.
2293 * regcache.h (regcache_read_pc, regcache_write_pc): Add prototypes.
2294
2295 * regcache.c (read_pc_pid): Remove, replace by ...
2296 (regcache_read_pc): ... this function.
2297 (write_pc_pid): Remove, replace by ...
2298 (regcache_write_pc): ... this function.
2299 (read_pc, write_pc): Update.
2300
2301 * infrun.c (displaced_step_prepare): Replace read_pc_pid and
2302 write_pc_pid by regcache_read_pc and regcache_write_pc.
2303 (displaced_step_fixup): Likewise.
2304 (resume): Likewise. Use regcache arch instead of current_gdbarch.
2305 (prepare_to_proceed): Likewise.
2306 (proceed): Likewise.
2307 (adjust_pc_after_break): Likewise.
2308 (handle_inferior_event): Likewise.
2309
2310 * linux-nat.c (cancel_breakpoint): Likewise.
2311 * linux-thread-db.c (check_event): Likewise.
2312 * aix-thread.c (aix_thread_wait): Likewise.
2313 * tracepoint.c (trace_dump_command): Likewise.
2314
2315 2008-05-04 Jan Kratochvil <jan.kratochvil@redhat.com>
2316
2317 * dwarf2loc.c (dwarf_expr_frame_base): Error out on missing
2318 SYMBOL_LOCATION_BATON.
2319
2320 2008-05-04 Vladimir Prus <vladimir@codesourcery.com>
2321
2322 * target.h (struct target_ops): New field to_auxv_parse.
2323 * auxv.c (default_auxv_parse): New, renamed from previous
2324 target_auxv_parse.
2325 (target_auxv_parse): Try to call target method. Fallback to
2326 default_auxv_parse if not found.
2327 * procfs.c (procfs_auxv_parse): New.
2328 (init_procfs_ops): On Solaris, in 64-bit mode, install
2329 procfs_auxv_parse.
2330
2331 2008-05-03 Adam Nemet <anemet@caviumnetworks.com>
2332
2333 * symfile.c (add_symbol_file_command): Use paddress rather than
2334 hex_string to print the address.
2335
2336 2008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
2337
2338 * rs6000-tdep.c (rs6000_frame_this_id): If info->base is 0,
2339 return the null frame ID to terminate the backtrace.
2340
2341 2008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
2342
2343 * rs6000-tdep.c: Do not include "rs6000-tdep.h".
2344 (rs6000_find_toc_address_hook): Move to rs6000-aix-tdep.c.
2345 (SIG_FRAME_PC_OFFSET): Likewise.
2346 (SIG_FRAME_LR_OFFSET): Likewise.
2347 (SIG_FRAME_FP_OFFSET): Likewise.
2348 (rs6000_push_dummy_call): Likewise.
2349 (rs6000_return_value): Likewise.
2350 (rs6000_convert_from_func_ptr_addr): Likewise.
2351 (branch_dest, rs6000_software_single_step): Likewise.
2352 (deal_with_atomic_sequence): Rename to ...
2353 (ppc_deal_with_atomic_sequence): ... this. Adapt all callers.
2354 Do not call branch_dest; inline required parts of that function.
2355 (rs6000_skip_trampoline_code): Replace DEPRECATED_SYMBOL_NAME
2356 with SYMBOL_LINKAGE_NAME.
2357 (struct reg, regsize): Delete.
2358 (read_memory_addr): Delete; inline into callers.
2359 (rs6000_skip_prologue): Move after skip_prologue.
2360 (skip_prologue): Remove prototype.
2361 (rs6000_gdbarch_init): Remove sysv_abi variable; perform all
2362 initialization as if this variable were true. Do not install
2363 ppc64_sysv_abi_adjust_breakpoint_address.
2364
2365 * rs6000-aix-tdep.c: Include "gdb_assert.h", "gdbtypes.h",
2366 "gdbcore.h", "target.h", "value.h", "infcall.h", "objfiles.h",
2367 and "breakpoint.h".
2368 (rs6000_find_toc_address_hook): Move here from rs6000-tdep.c.
2369 (SIG_FRAME_PC_OFFSET): Likewise.
2370 (SIG_FRAME_LR_OFFSET): Likewise.
2371 (SIG_FRAME_FP_OFFSET): Likewise.
2372 (rs6000_push_dummy_call): Likewise.
2373 (rs6000_return_value): Likewise.
2374 (rs6000_convert_from_func_ptr_addr): Likewise.
2375 (branch_dest, rs6000_software_single_step): Likewise. Replace
2376 tdep->text_segment_base by AIX_TEXT_SEGMENT_BASE.
2377 (rs6000_aix_init_osabi): Install rs6000_push_dummy_call,
2378 rs6000_return_value, and rs6000_convert_from_func_ptr_addr.
2379 Call set_gdbarch_long_double_bit and set_gdbarch_frame_red_zone_size.
2380 Set tdep->lr_frame_offset. Do not set tdep->text_segment_base.
2381
2382 * rs6000-tdep.h (rs6000_software_single_step): Remove prototype.
2383 (AIX_TEXT_SEGMENT_BASE): New macro.
2384 * rs6000-nat.c (exec_one_dummy_insn): Replace tdep->text_segment_base
2385 by AIX_TEXT_SEGMENT_BASE.
2386
2387 * ppc-tdep.h (ppc_deal_with_atomic_sequence): Add prototype.
2388 (struct gdbarch_tdep): Remove text_segment_base member.
2389 * ppc-linux-tdep.c (ppc_linux_init_abi): On 64-bit, install
2390 ppc64_sysv_abi_adjust_breakpoint_address.
2391
2392 * Makefile.in (rs6000-tdep.o): Update dependencies.
2393 (rs6000-aix-tdep.o): Likewise.
2394
2395 2008-05-03 Luis Machado <luisgpm@br.ibm.com>
2396 Thiago Jung Bauermann <bauerman@br.ibm.com>
2397
2398 * cli/cli-decode.c (lookup_cmd_1): Fix indentation.
2399 * doublest.c (convert_typed_floating): Fix typo in comment.
2400 * dwarf2-frame.c (dwarf2_frame_cache): Likewise.
2401 * frame-unwind.h (frame_sniffer_ftype): Likewise.
2402 * frame.c (frame_unwind_address_in_block): Likewise.
2403 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Likewise.
2404 * symtab.h (struct symbol): Likewise.
2405 * tramp-frame.h (struct trad_frame_cache): Likewise.
2406 * value.c (allocate_repeat_value): Likewise.
2407
2408 2008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
2409
2410 * infrun.c (handle_inferior_event): Do not insert breakpoints at
2411 TARGET_WAITKIND_LOADED events during startup (i.e. in the shell).
2412
2413 2008-05-03 Pedro Alves <pedro@codesourcery.com>
2414
2415 * parse.c (parse_exp_in_context): Don't override
2416 expression_context_pc if get_selected_block returned a valid
2417 block.
2418
2419 2008-05-03 Daniel Jacobowitz <dan@codesourcery.com>
2420
2421 * alpha-tdep.h (ALPHA_REGISTER_BYTES): Delete.
2422 * arm-tdep.h (STATUS_REGISTER_SIZE): Delete.
2423 * breakpoint.c (args_for_catchpoint_enable, current_exception_event):
2424 Delete.
2425 * c-typeprint.c (c_type_print_base): Delete handling of template
2426 instantiations.
2427 * cp-support.h (METHOD_PTR_IS_VIRTUAL, METHOD_PTR_FROM_VOFFSET)
2428 (METHOD_PTR_TO_VOFFSET): Delete.
2429 * defs.h (QUIT_FIXME): Delete.
2430 * f-lang.h (DEFAULT_DOTMAIN_NAME_IN_MF77, DEFAULT_MAIN_NAME_IN_MF77)
2431 (DEFAULT_DOTMAIN_NAME_IN_XLF_BUGGY, DEFAULT_DOTMAIN_NAME_IN_XLF): Delete.
2432 * gdbtypes.h (struct cplus_struct_type): Delete is_inlined,
2433 ninstantiations, and instantiations.
2434 (TYPE_INSTANTIATIONS, TYPE_NINSTANTIATIONS, TYPE_INSTANTIATION)
2435 (TYPE_FN_FIELD_INLINED): Delete.
2436 * srec.h (SREC_BINARY): Delete.
2437 * symtab.c (symbol_init_demangled_name): Delete.
2438 * symtab.h (SYMBOL_INIT_DEMANGLED_NAME, symbol_init_demangled_name)
2439 (SYMBOL_OBJFILE, struct exception_event_record, CURRENT_EXCEPTION_KIND)
2440 (CURRENT_EXCEPTION_CATCH_SAL, CURRENT_EXCEPTION_CATCH_LINE)
2441 (CURRENT_EXCEPTION_CATCH_FILE, CURRENT_EXCEPTION_CATCH_PC)
2442 (CURRENT_EXCEPTION_THROW_SAL, CURRENT_EXCEPTION_THROW_LINE)
2443 (CURRENT_EXCEPTION_THROW_FILE, CURRENT_EXCEPTION_THROW_PC): Delete.
2444 * target.h (enum thread_control_capabilities): Delete tc_switch.
2445 (target_can_switch_threads): Delete.
2446
2447 2008-05-03 Daniel Jacobowitz <dan@codesourcery.com>
2448
2449 * Makefile.in (objfiles.o): Update.
2450 * exec.c (exec_set_section_address): Support p->addr != 0.
2451 * objfiles.c (objfile_relocate): Update exec_ops section
2452 addresses.
2453 * symfile.c (place_section): Move exec_set_section_address call...
2454 (default_symfile_offsets): ...to here.
2455
2456 2008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
2457
2458 * Makefile.in (ppc_linux_tdep_h): New macro.
2459 (powerpc_32l_c, powerpc_altivec32_c, powerpc_altivec32l_c): Likewise.
2460 (powerpc_64l_c, powerpc_altivec64_c, powerpc_altivec64l_c): Likewise.
2461 (powerpc_e500l_c): Likewise.
2462 (ppc-linux-nat.o): Update dependencies.
2463 (ppc-linux-tdep.o): Update dependencies.
2464 (rs6000-tdep.o): Update dependencies.
2465
2466 * ppc-tdep.h (ppc_linux_memory_remove_breakpoint): Remove.
2467 (ppc_linux_svr4_fetch_link_map_offsets): Remove.
2468 (ppc_linux_gregset, ppc_linux_fpregset): Move to ppc-linux-tdep.h
2469 (ppc_supply_reg, ppc_collect_reg): Add prototypes.
2470 (tdesc_powerpc_e500): Remove.
2471
2472 * rs6000.c: Include "features/rs6000/powerpc-altivec32.c"
2473 and "features/rs6000/powerpc-altivec64.c".
2474 (ppc_supply_reg, ppc_collect_reg): Make global.
2475 (variants): Use tdesc_powerpc_32 for "powerpc" and
2476 tdesc_powerpc_altivec64 for "powerpc64".
2477 (_initialize_rs6000_tdep): Initialize AltiVec descriptions.
2478
2479 * ppc-linux-tdep.h: New file.
2480
2481 * ppc-linux-tdep.c: Include "ppc-linux-tdep.c".
2482 Include "features/rs6000/powerpc-32l.c".
2483 Include "features/rs6000/powerpc-altivec32l.c".
2484 Include "features/rs6000/powerpc-64l.c".
2485 Include "features/rs6000/powerpc-altivec64l.c".
2486 Include "features/rs6000/powerpc-e500l.c".
2487 (ppc_linux_supply_gregset): New function.
2488 (ppc_linux_collect_gregset): Handle orig_r3 and trap registers.
2489 (ppc32_linux_gregset): Use ppc_linux_supply_gregset.
2490 (ppc64_linux_gregset): Likewise.
2491 (ppc_linux_sigtramp_cache): Handle orig_r3 and trap registers.
2492 (ppc_linux_trap_reg_p): New function.
2493 (ppc_linux_write_pc): New function.
2494 (ppc_linux_core_read_description): New function.
2495 (ppc_linux_init_abi): Install ppc_linux_write_pc and
2496 ppc_linux_core_read_description. Install orig_r3 and trap
2497 registers if present in the target description.
2498 (_initialize_ppc_linux_tdep): Initialize Linux target descriptions.
2499
2500 * ppc-linux-nat.c: Include "ppc-linux-tdep.h".
2501 (PT_ORIG_R3, PT_TRAP): Define if necessary.
2502 (ppc_register_u_addr): Handle orig_r3 and trap registers.
2503 (fetch_ppc_registers): Likewise.
2504 (store_ppc_registers): Likewise.
2505 (store_register): Likewise.
2506 (ppc_linux_read_description): Check whether AltiVec is supported.
2507 Check whether inferior is 32-bit or 64-bit. Return the appropriate
2508 Linux target description.
2509
2510 * features/Makefile (WHICH): Use rs6000/powerpc-32l and
2511 rs6000/powerpc-altivec32l instead of rs6000/powerpc-32.
2512 Use rs6000/powerpc-64l and rs6000/powerpc-altivec64l instead
2513 of rs6000/powerpc-64. Use rs6000/powerpc-e500l instead of
2514 rs6000/powerpc-e500. Update -expedite variables accordingly.
2515
2516 * features/rs6000/power-spe.xml: Use regnum 73 for "acc".
2517 * features/rs6000/powerpc-32.xml: Do not include power-altivec.xml.
2518 * features/rs6000/powerpc-64.xml: Do not include power-altivec.xml.
2519 * features/rs6000/powerpc-e500.c: Regenerate.
2520 * features/rs6000/powerpc-32.c: Regenerate.
2521 * features/rs6000/powerpc-64.c: Regenerate.
2522
2523 * features/rs6000/power-linux.xml: New file.
2524 * features/rs6000/power64-linux.xml: New file.
2525 * features/rs6000/powerpc-32l.xml: New file.
2526 * features/rs6000/powerpc-altivec32l.xml: New file.
2527 * features/rs6000/powerpc-64l.xml: New file.
2528 * features/rs6000/powerpc-altivec64l.xml: New file.
2529 * features/rs6000/powerpc-e500l.xml: New file.
2530 * features/rs6000/powerpc-32l.c: New (generated) file.
2531 * features/rs6000/powerpc-altivec32l.c: New (generated) file.
2532 * features/rs6000/powerpc-64l.c: New (generated) file.
2533 * features/rs6000/powerpc-altivec64l.c: New (generated) file.
2534 * features/rs6000/powerpc-e500l.xml: New (generated) file.
2535
2536 * regformats/reg-ppc.dat: Remove.
2537 * regformats/reg-ppc64.dat: Remove.
2538 * regformats/rs6000/powerpc-32.dat: Remove.
2539 * regformats/rs6000/powerpc-64.dat: Remove.
2540 * regformats/rs6000/powerpc-e500.dat: Remove.
2541 * regformats/rs6000/powerpc-32l.dat: New (generated) file.
2542 * regformats/rs6000/powerpc-altivec32l.dat: New (generated) file.
2543 * regformats/rs6000/powerpc-64l.dat: New (generated) file.
2544 * regformats/rs6000/powerpc-altivec64l.dat: New (generated) file.
2545 * regformats/rs6000/powerpc-e500l.dat: New (generated) file.
2546
2547 2008-05-03 Pedro Alves <pedro@codesourcery.com>
2548
2549 * thread.c (delete_thread): Call observer_notify_thread_exit.
2550 * mi/mi-interp.c (mi_interpreter_init): Register mi_thread_exit as
2551 thread_exit observer.
2552 (mi_thread_exit): New.
2553
2554 2008-05-03 Thiago Jung Bauermann <bauerman@br.ibm.com>
2555
2556 * breakpoint.c (create_exception_catchpoint): Remove prototype
2557 for already deleted function.
2558 * breakpoint.h (ep_is_exception_catchpoint): Likewise.
2559 * frame.h (show_stack_frame): Remove prototype.
2560 * stack.c (show_stack_frame): Remove empty, unused function.
2561 * source.c (symtab_to_fullname, print_source_lines): Small fix
2562 in comment.
2563 * value.c (show_values): Update comments to mention "show values"
2564 command instead of "info history".
2565
2566 2008-05-02 Ulrich Weigand <uweigand@de.ibm.com>
2567
2568 * linespec.c: Include "target.h".
2569 (minsym_found): Handle minimal symbols pointing to function
2570 descriptors. Use find_function_start_pc.
2571 * minsyms.c (msymbol_objfile): New function.
2572 * parse.c (write_exp_msymbol): Handle minimal symbols pointing
2573 to function descriptors.
2574 * symtab.c (fixup_section): Only use minimal symbol at the same
2575 address to determine section of a symbol.
2576 (find_function_start_pc): New function.
2577 (find_function_start_sal): Use it.
2578 * symtab.h (msymbol_objfile): Add prototype.
2579 (find_function_start_pc): Likewise.
2580 * value.c: Include "objfiles.h".
2581 (value_fn_field): Handle minimal symbols pointing to function
2582 descriptors.
2583 * Makefile.in (linespec.o): Update dependencies.
2584 (value.o): Likewise.
2585
2586 2008-05-02 Joel Brobecker <brobecker@adacore.com>
2587
2588 * ada-lang.c (unwrap_value): Handle the case where the "F" field
2589 inside a PAD type is a bitfield.
2590
2591 2008-05-02 Ulrich Weigand <uweigand@de.ibm.com>
2592
2593 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Handle
2594 TYPE_CODE_BOOL and TYPE_CODE_CHAR the same as TYPE_CODE_INT.
2595 Handle TYPE_CODE_REF the same as TYPE_CODE_PTR.
2596 Handle TYPE_CODE_METHOD the same as TYPE_CODE_FUNC.
2597 Allow typedefs when checking for function pointer arguments.
2598 Right-align small structs passed on the stack.
2599 (ppc64_sysv_abi_return_value): Handle TYPE_CODE_BOOL and
2600 TYPE_CODE_CHAR the same as TYPE_CODE_INT.
2601 Handle TYPE_CODE_REF the same as TYPE_CODE_PTR.
2602
2603 2008-05-02 Daniel Jacobowitz <dan@codesourcery.com>
2604
2605 * Makefile.in (arm-tdep.o): Update.
2606 * arm-tdep.c (arm_objfile_data_key, struct arm_mapping_symbol)
2607 (struct arm_per_objfile, arm_compare_mapping_symbols): New.
2608 (arm_pc_is_thumb): Use mapping symbols.
2609 (arm_objfile_data_cleanup, arm_record_special_symbol): New.
2610 (arm_gdbarch_init): Call set_gdbarch_record_special_symbol.
2611 (_initialize_arm_tdep): Initialize arm_objfile_data_key.
2612 * elfread.c (elf_symtab_read): Use gdbarch_record_special_symbol.
2613 * gdbarch.sh: Add record_special_symbol.
2614 * gdbarch.c, gdbarch.h: Regenerated.
2615 * objfiles.c (struct objfile_data): Add cleanup member.
2616 (register_objfile_data_with_cleanup): New function, from
2617 register_objfile_data.
2618 (register_objfile_data): Use it.
2619 (objfile_free_data): Call clear_objfile_data.
2620 (clear_objfile_data): Call cleanup functions.
2621 * objfiles.h (register_objfile_data_with_cleanup): Declare.
2622
2623 2008-05-02 Daniel Jacobowitz <dan@codesourcery.com>
2624
2625 * objfiles.c (init_entry_point_info): Handle shared libraries.
2626
2627 2008-05-02 Daniel Jacobowitz <dan@codesourcery.com>
2628
2629 * arm-tdep.c (arm_prologue_this_id): Compare pc, not func, to
2630 lowest_pc.
2631
2632 2008-05-02 Jim Blandy <jimb@codesourcery.com>
2633 Pedro Alves <pedro@codesourcery.com>
2634
2635 Implement displaced stepping.
2636
2637 * gdbarch.sh (max_insn_length): New 'variable'.
2638 (displaced_step_copy, displaced_step_fixup)
2639 (displaced_step_free_closure, displaced_step_location): New
2640 functions.
2641 (struct displaced_step_closure): Add forward declaration.
2642 * gdbarch.c, gdbarch.h: Regenerated.
2643
2644 * arch-utils.c: #include "objfiles.h".
2645 (simple_displaced_step_copy_insn)
2646 (simple_displaced_step_free_closure)
2647 (displaced_step_at_entry_point): New functions.
2648 * arch-utils.h (simple_displaced_step_copy_insn)
2649 (simple_displaced_step_free_closure)
2650 (displaced_step_at_entry_point): New prototypes.
2651
2652 * i386-tdep.c (I386_MAX_INSN_LEN): Rename to...
2653 (I386_MAX_MATCHED_INSN_LEN): ... this.
2654 (i386_absolute_jmp_p, i386_absolute_call_p)
2655 (i386_ret_p, i386_call_p, i386_breakpoint_p, i386_syscall_p)
2656 (i386_displaced_step_fixup): New functions.
2657 (struct i386_insn, i386_match_insn): Update.
2658 (i386_gdbarch_init): Set gdbarch_max_insn_length.
2659 * i386-tdep.h (I386_MAX_INSN_LEN): New.
2660 (i386_displaced_step_fixup): New prototype.
2661 * i386-linux-tdep.c (i386_linux_init_abi): Include "arch-utils.h".
2662 Register gdbarch_displaced_step_copy,
2663 gdbarch_displaced_step_fixup, gdbarch_displaced_step_free_closure,
2664 and gdbarch_displaced_step_location functions.
2665
2666 * infrun.c (debug_displaced): New variable.
2667 (show_debug_displaced): New function.
2668 (struct displaced_step_request): New struct.
2669 (displaced_step_request_queue, displaced_step_ptid)
2670 (displaced_step_gdbarch, displaced_step_closure)
2671 (displaced_step_original, displaced_step_copy)
2672 (displaced_step_saved_copy, can_use_displaced_stepping): New
2673 variables.
2674 (show_can_use_displaced_stepping, use_displaced_stepping)
2675 (displaced_step_clear, cleanup_displaced_step_closure)
2676 (displaced_step_dump_bytes, displaced_step_prepare)
2677 (displaced_step_clear_cleanup, write_memory_ptid)
2678 (displaced_step_fixup): New functions.
2679 (resume): Call displaced_step_prepare.
2680 (proceed): Call read_pc once, and remember the value. If using
2681 displaced stepping, don't remove breakpoints.
2682 (handle_inferior_event): Call displaced_step_fixup. Add some
2683 debugging output. When we try to step over a breakpoint, but get
2684 a signal to deliver to the thread instead, ensure the step-resume
2685 breakpoint is actually inserted. If a thread hop is needed, and
2686 displaced stepping is enabled, don't remove breakpoints.
2687 (init_wait_for_inferior): Call displaced_step_clear.
2688 (_initialize_infrun): Add "set debug displaced" command. Add
2689 "maint set can-use-displaced-stepping" command. Clear
2690 displaced_step_ptid.
2691 * inferior.h (debug_displaced): Declare variable.
2692 (displaced_step_dump_bytes): Declare function.
2693
2694 * Makefile.in (arch-utils.o, i386-linux-tdep.o): Update
2695 dependencies.
2696
2697 2008-05-02 Daniel Jacobowitz <dan@codesourcery.com>
2698
2699 * arm-tdep.c (arm_mode_strings, arm_fallback_mode_string)
2700 (arm_force_mode_string, arm_show_fallback_mode)
2701 (arm_show_force_mode): New.
2702 (arm_pc_is_thumb): Honor fallback-mode and force-mode. Use
2703 arm_frame_is_thumb.
2704 (_initialize_arm_tdep): Add "set arm fallback-mode"
2705 and "set arm force-mode".
2706 * NEWS: Document new commands.
2707
2708 2008-05-02 Andrew Stubbs <andrew.stubbs@st.com>
2709
2710 * main.h (batch_silent): Declare.
2711 * event-top.c: Include main.h.
2712 (gdb_setup_readline): Remove extern batch_silent declaration.
2713 * infrun.c (normal_stop): Don't print source location when running in
2714 --batch-silent mode.
2715 * Makefile.in (event-top.o): Add main.h dependency.
2716
2717 2008-05-02 Andreas Schwab <schwab@suse.de>
2718
2719 * target.h (struct target_ops): Add
2720 to_watchpoint_addr_within_range.
2721 (target_watchpoint_addr_within_range): New function.
2722 * target.c (update_current_target): Inherit
2723 to_watchpoint_addr_within_range, defaulting to
2724 default_watchpoint_addr_within_range.
2725 (default_watchpoint_addr_within_range): New function.
2726 (debug_to_watchpoint_addr_within_range): New function.
2727 (setup_target_debug): Set to_watchpoint_addr_within_range.
2728 * ppc-linux-nat.c (ppc_linux_watchpoint_addr_within_range):
2729 New function.
2730 (_initialize_ppc_linux_nat): Set to_watchpoint_addr_within_range.
2731 * breakpoint.c (watchpoints_triggered): Use
2732 target_watchpoint_addr_within_range.
2733
2734 2008-05-01 Pedro Alves <pedro@codesourcery.com>
2735
2736 * configure.tgt: Add i[34567]86-*-dicos* and x86_64-*-dicos*.
2737 (i[34567]86-*-dicos*, x86_64-*-dicos*):
2738 Set gdb_osabi to GDB_OSABI_DICOS.
2739
2740 * defs.h (enum gdb_osabi): Add GDB_OSABI_DICOS.
2741 * osabi.c (gdb_osabi_name): Add "DICOS".
2742
2743 * i386-dicos-tdep.c: New file.
2744
2745 * Makefile.in (ALL_TARGET_OBS): Add i386-dicos-tdep.o.
2746 (ALLDEPFILES): Add i386-dicos-tdep.c.
2747 (i386-dicos-tdep.o): New rule.
2748
2749 2008-05-01 Pedro Alves <pedro@codesourcery.com>
2750
2751 * linux-nat.c (linux_nat_switch_fork): Reinit GDB's thread list
2752 and register the fork's PTID as a thread.
2753
2754 2008-05-01 Aleksandar Ristovski <aristovski@qnx.com>
2755
2756 PR gdb/1665
2757 * breakpoint.c (create_breakpoint): Add breakpoint_ops argument and
2758 assign its value to the breakpoint created.
2759 (create_breakpoints): Add breakpoint_ops argument and pass it
2760 to create_breakpoint call.
2761 (break_command_really): Add breakpoint_ops argument and pass/assign
2762 appropriately.
2763 (break_command_1): Pass NULL as ops argument.
2764 (set_breakpoint): Pass NULL as ops argument.
2765 (print_one_exception_catchpoint): Print <PENDING> if no loc available.
2766 (handle_gnu_v3_exceptions): Call generic breakpoint code to insert
2767 catch and throw catchpoints.
2768
2769 2008-05-01 Aleksandar Ristovski <aristovski@qnx.com>
2770
2771 PR gdb/2343
2772 * corelow.c (core_open): Use gdbarch_target_signal_from_host to
2773 translate signal numeric value from the target to GDB's enum
2774 target_signal.
2775 * gdbarch.c, gdbarch.h: Regenerated.
2776 * gdbarch.sh: Added two new functions target_signal_from_host and
2777 target_signal_to_host.
2778 * target.h (default_target_signal_from_host,
2779 default_target_signal_to_host): New functions - declarations.
2780 * signals/signals.c (struct gdbarch): New declaration.
2781 (default_target_signal_to_host, default_target_signal_from_host): New
2782 functions.
2783
2784 2008-05-01 Daniel Jacobowitz <dan@codesourcery.com>
2785 Pedro Alves <pedro@codesourcery.com>
2786
2787 Based on work by Jan Kratochvil <jan.kratochvil@redhat.com> and Jeff
2788 Johnston <jjohnstn@redhat.com>.
2789
2790 * NEWS: Mention attach to stopped process fix.
2791 * infcmd.c (detach_command, disconnect_command): Discard the thread
2792 list.
2793 * infrun.c (handle_inferior_event): Do not ignore non-SIGSTOP while
2794 attaching. Use signal_stop_state.
2795 (signal_stop_state): Check stop_soon.
2796 * linux-nat.c (kill_lwp): Declare earlier.
2797 (pid_is_stopped, linux_nat_post_attach_wait): New.
2798 (lin_lwp_attach_lwp): Use linux_nat_post_attach_wait. Update
2799 comments.
2800 (linux_nat_attach): Use linux_nat_post_attach_wait.
2801 (detach_callback, linux_nat_detach): Improve handling for signalled
2802 processes.
2803 (linux_nat_pid_to_str): Always print out the LWP ID if it differs
2804 from the process ID.
2805 * Makefile.in (infcmd.o): Update.
2806
2807 2008-05-01 Daniel Jacobowitz <dan@codesourcery.com>
2808
2809 * arm-linux-tdep.h (ARM_CPSR_REGNUM): Delete definition.
2810 * arm-tdep.c (arm_frame_is_thumb): New.
2811 (arm_pc_is_thumb): Clarify comment.
2812 (thumb_analyze_prologue): Remove PC special case.
2813 (thumb_scan_prologue): Take a block_addr argument. Use it for
2814 find_pc_partial_function. Remove unused variables.
2815 (arm_scan_prologue): Use arm_frame_is_thumb. Use the block address
2816 for find_pc_partial_function. Remove PC special case.
2817 (arm_prologue_prev_register): Add special handling for PC and CPSR.
2818 (arm_dwarf2_prev_register, arm_dwarf2_frame_init_reg): New.
2819 (arm_get_next_pc): Use arm_frame_is_thumb.
2820 (arm_write_pc): Use CPSR_T instead of 0x20.
2821 (arm_gdbarch_init): Call dwarf2_frame_set_init_reg.
2822 * arm-tdep.h (enum gdb_regnum): Add ARM_CPSR_REGNUM.
2823 (CPSR_T): Define.
2824 * dwarf2-frame.c (dwarf2_frame_prev_register): Handle
2825 DWARF2_FRAME_REG_FN.
2826 * dwarf2-frame.h (enum dwarf2_frame_reg_rule): Add
2827 DWARF2_FRAME_REG_FN.
2828 (struct dwarf2_frame_state_reg): Add FN to loc union.
2829
2830 2008-05-01 Nick Roberts <nickrob@snap.net.nz>
2831
2832 * exec.c (print_section_info): Add missing '\n'.
2833
2834 2008-05-01 Vladimir Prus <vladimir@codesourcery.com>
2835
2836 * thread.c (add_thread): Move observer call to ...
2837 (add_thread_silent): ... here.
2838
2839 2008-04-30 Ulrich Weigand <uweigand@de.ibm.com>
2840
2841 * rs6000-tdep.c: Update for unwinder changes.
2842 * ppcobsd-tdep.c: Likewise.
2843
2844 2008-04-30 Ulrich Weigand <uweigand@de.ibm.com>
2845
2846 * s390-tdep.c: Update for unwinder changes.
2847
2848 2008-04-30 Ulrich Weigand <uweigand@de.ibm.com>
2849
2850 * spu-tdep.c: Update for unwinder changes.
2851
2852 2008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
2853
2854 * hppanbsd-tdep.c, m68kbsd-tdep.c, mn10300-linux-tdep.c,
2855 ppc-linux-tdep.c, ppcnbsd-tdep.c, sparc-linux-tdep.c,
2856 sparc64-linux-tdep.c: Update for unwinder changes.
2857
2858 2008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
2859
2860 * mipsnbsd-tdep.c, mips64obsd-tdep.c, mips-linux-tdep.c: Update
2861 for unwinder changes.
2862 * mips-tdep.c: Likewise.
2863 (mips_stub_frame_cache): Unwind the ABI stack pointer, not the
2864 raw one.
2865
2866 2008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
2867
2868 * arm-linux-tdep.c, arm-tdep.c, armobsd-tdep.c: Update for
2869 unwinder changes.
2870
2871 2008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
2872
2873 Update i386 and amd64 ports for unwinder changes.
2874
2875 * amd64-tdep.c (amd64_frame_cache): Expect this_frame.
2876 (amd64_frame_this_id, amd64_frame_prev_register): Update signature.
2877 (amd64_frame_unwind): Use default_frame_sniffer.
2878 (amd64_frame_sniffer): Delete.
2879 (amd64_sigtramp_frame_cache): Expect this_frame.
2880 (amd64_sigtramp_frame_this_id, amd64_sigtramp_frame_prev_register)
2881 (amd64_sigtramp_frame_sniffer): Update signature.
2882 (amd64_sigtramp_frame_unwind): Add amd64_sigtramp_frame_sniffer.
2883 (amd64_frame_base_address): Expect this_frame.
2884 (amd64_dummy_id): Renamed from amd64_unwind_dummy_id. Expect
2885 this_frame.
2886 (amd64_init_abi): Use set_gdbarch_dummy_id and
2887 frame_unwind_append_unwinder.
2888 * i386-tdep.c (i386_frame_cache): Expect this_frame.
2889 (i386_frame_this_id, i386_frame_prev_register): Update signature.
2890 (i386_frame_unwind): Use default_frame_sniffer.
2891 (i386_frame_sniffer): Delete.
2892 (i386_sigtramp_frame_cache): Expect this_frame.
2893 (i386_sigtramp_frame_this_id, i386_sigtramp_frame_prev_register)
2894 (i386_sigtramp_frame_sniffer): Update signature.
2895 (i386_sigtramp_frame_unwind): Use i386_sigtramp_frame_sniffer.
2896 (i386_frame_base_address): Update signature.
2897 (i386_dummy_id): Rename from i386_unwind_dummy_id. Expect this_frame.
2898 (i386_push_dummy_call): Update comment.
2899 (i386_sigtramp_p, i386_svr4_sigtramp_p, i386_svr4_sigcontext_addr):
2900 Expect this_frame.
2901 (i386_gdbarch_init): Use set_gdbarch_dummy_id, dwarf2_append_unwinders,
2902 and frame_unwind_append_unwinder.
2903 * amd64-linux-tdep.c, amd64-sol2-tdep.c, amd64fbsd-tdep.c,
2904 amd64nbsd-tdep.c, amd64obsd-tdep.c, i386-linux-tdep.c,
2905 i386-nto-tdep.c, i386bsd-tdep.c, i386-sol2-tdep.c, i386obsd-tdep.c,
2906 i386nbsd-tdep.c: Update for unwinder changes.
2907
2908 2008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
2909
2910 * trad-frame.c (struct trad_frame_cache): Rename next_frame to this_frame.
2911 (trad_frame_cache_zalloc, trad_frame_alloc_saved_regs): Expect
2912 this_frame.
2913 (trad_frame_get_prev_register, trad_frame_get_register): Update signature.
2914 * trad-frame.h (trad_frame_cache_zalloc, trad_frame_get_register)
2915 (trad_frame_alloc_saved_regs, trad_frame_get_prev_register): Update
2916 signature.
2917 * tramp-frame.c (tramp_frame_cache, tramp_frame_start): Expect
2918 this_frame.
2919 (tramp_frame_this_id, tramp_frame_prev_register, tramp_frame_sniffer):
2920 Update signature.
2921 * tramp-frame.h (struct tramp_frame): Update signature of init.
2922 * Makefile.in (trad-frame.o): Update.
2923
2924 2008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
2925
2926 * dwarf2-frame.c (read_reg): Expect this_frame in the baton.
2927 (execute_stack_op): Put this_frame in the baton.
2928 (execute_cfa_program): Take this_frame.
2929 (struct dwarf2_frame_ops): Update comment for signal_frame_p.
2930 (dwarf2_frame_default_init_reg, dwarf2_frame_init_reg)
2931 (dwarf2_frame_signal_frame_p, dwarf2_frame_cache)
2932 (dwarf2_frame_this_id): Adjust to work on this_frame.
2933 (dwarf2_signal_frame_this_id): Delete.
2934 (dwarf2_frame_prev_register): Update signature. Use new frame
2935 unwind methods.
2936 (dwarf2_frame_sniffer): Update signature. Expect this_frame.
2937 (dwarf2_frame_unwind, dwarf2_signal_frame_unwind): Add
2938 dwarf2_frame_sniffer.
2939 (dwarf2_append_unwinders): New.
2940 (dwarf2_frame_base_address, dwarf2_frame_base_sniffer): Expect
2941 this_frame.
2942 * sparc-tdep.c (sparc32_dwarf2_struct_return_p)
2943 (sparc32_dwarf2_frame_init_reg): Expect this_frame.
2944 * cris-tdep.c (cris_dwarf2_frame_init_reg): Likewise.
2945 * rs6000-tdep.c (ppc_dwarf2_frame_init_reg): Likewise.
2946 * s390-tdep.c (s390_dwarf2_frame_init_reg): Likewise.
2947 * sh-tdep.c (sh_dwarf2_frame_init_reg): Likewise.
2948 * sparc64-tdep.c (sparc64_dwarf2_frame_init_reg): Likewise.
2949 * dwarf2-frame.h (dwarf2_frame_sniffer): Delete declaration.
2950 (dwarf2_append_unwinders): Declare.
2951 (dwarf2_frame_base_sniffer): Update declaration.
2952 * i386-linux-tdep.c (i386_linux_dwarf_signal_frame_p): Expect
2953 this_frame.
2954
2955 2008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
2956
2957 Convert frame unwinders to use the current frame and
2958 "struct value".
2959
2960 * frame.c (frame_debug): Make global.
2961 (get_frame_id): Pass this frame to unwinder routines.
2962 (frame_pc_unwind): Remove unused unwind->prev_pc support.
2963 (do_frame_register_read): Do not discard the return value of
2964 frame_register_read.
2965 (frame_register_unwind): Remove debug messages. Use
2966 frame_unwind_register_value.
2967 (frame_unwind_register_value, get_frame_register_value): New
2968 functions.
2969 (create_new_frame, get_frame_base_address, get_frame_locals_address)
2970 (get_frame_args_address, get_frame_type): Pass this frame to
2971 unwinder routines.
2972 (frame_cleanup_after_sniffer, frame_prepare_for_sniffer): New
2973 functions.
2974 * frame.h: Update comments.
2975 (frame_debug, frame_unwind_register_value, get_frame_register_value)
2976 (frame_prepare_for_sniffer): Declare.
2977 * frame-unwind.h: Update comments and parameter names.
2978 (default_frame_sniffer): Declare.
2979 (frame_prev_register_ftype): Return a struct value *.
2980 (struct frame_unwind): Remove prev_pc member.
2981 (frame_unwind_sniffer_ftype, frame_unwind_append_sniffer): Delete.
2982 (frame_unwind_append_unwinder, frame_unwind_got_optimized)
2983 (frame_unwind_got_register, frame_unwind_got_memory)
2984 (frame_unwind_got_constant, frame_unwind_got_address): Declare.
2985 * frame-base.h: Update comments and parameter names.
2986 * valops.c (value_fetch_lazy): Use get_frame_register_value. Iterate
2987 if necessary. Add debugging output.
2988 * sentinel-frame.c (sentinel_frame_prev_register)
2989 (sentinel_frame_this_id): Update for new signature.
2990 (sentinel_frame_prev_pc): Delete.
2991 (sentinel_frame_unwinder): Remove prev_pc.
2992 * ia64-tdep.c (ia64_libunwind_frame_unwind): Do not initialize
2993 prev_pc.
2994 * libunwind-frame.c (libunwind_frame_unwind): Likewise.
2995 * frame-unwind.c (struct frame_unwind_table_entry): Remove sniffer.
2996 (frame_unwind_append_sniffer): Delete.
2997 (frame_unwind_append_unwinder): New function.
2998 (frame_unwind_find_by_frame): Take this frame. Only use sniffers
2999 from unwinders. Use frame_prepare_for_sniffer.
3000 (default_frame_sniffer, frame_unwind_got_optimized)
3001 (frame_unwind_got_register, frame_unwind_got_memory)
3002 (frame_unwind_got_constant, frame_unwind_got_address): New functions.
3003 * dummy-frame.c (dummy_frame_sniffer): Use gdbarch_dummy_id.
3004 (dummy_frame_prev_register, dummy_frame_this_id): Update for new
3005 signature.
3006 * gdbarch.sh: Replace unwind_dummy_id with dummy_id.
3007 * gdbarch.c, gdbarch.c: Regenerated.
3008 * frame-base.c (default_frame_base_address)
3009 (default_frame_locals_address, default_frame_args_address): Update
3010 for new signature.
3011 (frame_base_find_by_frame): Pass this frame to unwinder routines.
3012 * infcall.c (call_function_by_hand): Update comments.
3013 * Makefile.in (frame-unwind.o): Update dependencies.
3014
3015 2008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
3016
3017 * ada-lang.c (ada_value_primitive_packed_val): Only check
3018 value_lazy for memory lvals.
3019 * findvar.c (value_of_register_lazy): New function.
3020 (locate_var_value): Only check value_lazy for memory lvals.
3021 * valarith.c (value_subscripted_rvalue): Likewise.
3022 * valops.c (value_fetch_lazy): Handle both memory and register
3023 lvals.
3024 (search_struct_field, value_slice): Only check value_lazy for memory
3025 lvals.
3026 * value.c (struct value): Update comment for lazy.
3027 (value_primitive_field): Only check value_lazy for memory lvals.
3028 * value.h (value_lazy): Update comment.
3029 (value_of_register_lazy): Declare.
3030
3031 2008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
3032
3033 * corefile.c (reopen_exec_file): Close any open files.
3034
3035 2008-04-29 Joel Brobecker <brobecker@adacore.com>
3036
3037 * ia64-tdep.c (ia64_memory_remove_breakpoint): Set
3038 show_memory_breakpoints to 1 while reading the instruction bundle.
3039
3040 2008-04-29 Joel Brobecker <brobecker@adacore.com>
3041
3042 * gdbarch.sh: Document the return_value method. Explain that
3043 the FUNCTYPE parameter might be NULL.
3044 * gdbarch.h: Regenerated.
3045 * sparc-tdep.c (sparc32_push_dummy_code): Do not pass the function
3046 type when calling using_struct_return, as this is unnecessary
3047 on this target.
3048
3049 2008-04-28 Joel Brobecker <brobecker@adacore.com>
3050
3051 * terminal.h (create_tty_session): Fix return type.
3052
3053 2008-04-26 Vladimir Prus <vladimir@codesourcery.com>
3054
3055 * mi/mi-interp.c (mi_new_thread): Quote the thread id.
3056
3057 2008-04-26 Joel Brobecker <brobecker@adacore.com>
3058
3059 * breakpoint.c (condition_command, commands_from_control_command)
3060 (break_command_really): Minor reformatting.
3061
3062 2008-04-25 Pedro Alves <pedro@codesourcery.com>
3063
3064 * dwarf2read.c (dwarf2_const_value): Handle DW_FORM_strp.
3065
3066 2008-04-25 Pedro Alves <pedro@codesourcery.com>
3067
3068 * amd64-tdep.c (amd64_get_longjmp_target): New.
3069 (amd64_init_abi): Register amd64_get_longjmp_target as
3070 gdbarch_get_longjmp_target callback.
3071 * i386-tdep.c (i386_get_longjmp_target): Remove 64-bit handling.
3072
3073 2008-04-25 Pedro Alves <pedro@codesourcery.com>
3074
3075 * breakpoint.h (enum bpstat_what_main_action): Delete
3076 BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE.
3077
3078 * breakpoint.c (clrs): Delete.
3079 (bpstat_what): Update table.
3080
3081 * infrun.c (handle_inferior_event): Remove
3082 BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE handling.
3083
3084 2008-04-24 Vladimir Prus <vladimir@codesourcery.com>
3085
3086 * mi/mi-cmds.h (mi_cmd_args_ftype): Remove.
3087 Adjust all prototypes using mi_cmd_args_ftype to use
3088 mi_cmd_argv_ftype.
3089 (struct mi_cmd): Remove the args_func field.
3090 * mi/mi-cmds.c: Don't provide value for the args_func field.
3091 * mi/mi-main.c (mi_execute_async_cli_command)
3092 (mi_cmd_exec_run, mi_cmd_exec_next, mi_cmd_exec_next_instruction)
3093 (mi_cmd_exec_step, mi_cmd_exec_step_instruction)
3094 (mi_cmd_exec_finish, mi_cmd_exec_until, mi_cmd_exec_return)
3095 (mi_cmd_exec_continue, mi_cmd_exec_interrupt)
3096 (mi_cmd_target_download): Adjust.
3097 (mi_cmd_target_select): Adjust. Pass 0 for from_tty parameter.
3098 (mi_cmd_execute): Do not check for args_func.
3099 (mi_execute_async_cli_command): Adjust.
3100 * mi/mi-parse.c: Don't check for args_func.
3101
3102 2008-04-24 Vladimir Prus <vladimir@codesourcery.com>
3103
3104 * breakpoint.c (bpstat_check_location)
3105 (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions):
3106 New, extracted from bpstat_stop_status.
3107 (bpstat_stop_status): Use the above.
3108
3109 2008-04-24 Vladimir Prus <vladimir@codesourcery.com>
3110
3111 * mi/mi-main.c (last_async_command): Rename to current_token.
3112 (previous_async_command): Remove.
3113 (mi_cmd_gdb_exit): Adjust.
3114 (mi_cmd_exec_interrupt): Don't dance with previous_async_command.
3115 (mi_cmd_target_select): Adjust.
3116 (mi_cmd_execute): Don't set previous_async_command. Free token
3117 here even in async mode.
3118 (mi_execute_async_cli_command): Adjust.
3119 (mi_exec_async_cli_cmd_continuation): Adjust. Do not free the
3120 token.
3121 (mi_load_progress): Adjust.
3122
3123 2008-04-24 Vladimir Prus <vladimir@codesourcery.com>
3124
3125 * infcmd.c (step_1_continuation): Always disable longjmp
3126 breakpoint if we're not going to do another step.
3127
3128 2008-04-24 Vladimir Prus <vladimir@codesourcery.com>
3129
3130 exec_cleanup murder.
3131 * breakpoint.c (until_break_command_continuation): Add
3132 the 'error' parameter. Directly delete the breakoint as
3133 opposed to running cleanups.
3134 (until_break_command): Install continuation only
3135 after starting the target. Don't use exec cleanups,
3136 use ordinary cleanups. Discard cleanups is successfully
3137 started the target in async mode.
3138 (make_cleanup_delete_breakpoint): Remove.
3139 * breakpoint.h (make_cleanup_delete_breakpoint): Remove
3140 declaration.
3141 * defs.h (do_exec_cleanups, make_exec_cleanup): Remove
3142 declarations.
3143 (struct continations): Add the 'error' parameter to the
3144 continuation_hook field.
3145 (add_continuation, do_all_continuations)
3146 (add_intermediate_continuation)
3147 (do_all_intermediate_continuations): Add the 'error' parameter.
3148 * exceptions.c (throw_exception): Don't call do_exec_cleanups.
3149 * inf-loop.c (inferior_event_handler): Instead of calling
3150 discard_all_continuations, use do_all_continuations with 1 as
3151 'error' parameter. Pass 0 as 'error' parameter in existing uses
3152 of discard_all_continuations.
3153 * infcmd.c (step_1): Do not use exec cleanup. For async case, discard
3154 cleanups.
3155 (step_once): Install continuation only after resuming the target.
3156 (step_1_continuation): Disable longjmp breakpoint on error.
3157 (finish_command_continuation): Add the error parameter. Delete
3158 the finish breakpoint directly, do not use cleanups.
3159 (finish_command): Do not use exec_cleanups. Always setup
3160 continuation. For sync case, immediately run them.
3161 (attach_command_continuation): Add the error parameter.
3162 * infrun.c (fetch_inferior_event): Do not use exec cleanups to
3163 remove step_resume_breakpoint -- adjust delete it directly.
3164 * interps.c (interp_set): Adjust call to do_all_continations.
3165 * mi/mi-interp.c (mi_interpreter_exec_continuation): Do not
3166 do exec cleanups.
3167 * mi/mi-main.c (mi_cmd_target_select): Do not do exec
3168 cleanups.
3169 (mi_cmd_execute): Do not use exec_cleanup.
3170 (mi_execute_async_cli_command): Simplify the string concatenation
3171 logic. Do no use exec cleanup.
3172 (mi_exec_async_cli_cmd_continuation): New parameter error.
3173 Free last_async_command.
3174 * top.c (command_line_handler_continuation): New parameter error.
3175 * utils.c (exec_cleanup_chain, make_exec_cleanup)
3176 (do_exec_cleanups): Remove.
3177 (add_continuation, do_all_continations)
3178 (add_intermediate_continuation)
3179 (do_all_intermediate_continuations): New parameter error.
3180
3181 2008-04-24 Vladimir Prus <vladimir@codesourcery.com>
3182
3183 * breakpoint.h (bp_location_p): New typedef.
3184 Register a vector of bp_location_p.
3185 * breakpoint.c (always_inserted_mode)
3186 (show_always_inserted_mode): New.
3187 (unlink_locations_from_global_list): Remove.
3188 (update_global_location_list)
3189 (update_global_location_list_nothrow): New.
3190 (update_watchpoint): Don't free locations.
3191 (should_insert_location): New.
3192 (insert_bp_location): Use should_insert_location.
3193 (insert_breakpoint_locations): Copied from
3194 insert_breakpoints.
3195 (insert_breakpoint): Use insert_breakpoint_locations.
3196 (bpstat_stop_status): Call update_global_location_list
3197 when disabling breakpoint.
3198 (allocate_bp_location): Don't add to bp_location_chain.
3199 (set_raw_breakpoint)
3200 (create_longjmp_breakpoint, enable_longjmp_breakpoint)
3201 (disable_longjmp_breakpoint, create_overlay_event_breakpoint)
3202 (enable_overlay_breakpoints, disable_overlay_breakpoints)
3203 (set_longjmp_resume_breakpoint)
3204 (enable_watchpoints_after_interactive_call_stop)
3205 (disable_watchpoints_before_interactive_call_start)
3206 (create_internal_breakpoint)
3207 (create_fork_vfork_event_catchpoint)
3208 (create_exec_event_catchpoint, set_momentary_breakpoint)
3209 (create_breakpoints, break_command_1, watch_command_1)
3210 (create_exception_catchpoint)
3211 (handle_gnu_v3_exceptions)
3212 (disable_breakpoint, breakpoint_re_set_one)
3213 (create_thread_event_breakpoint, create_solib_event_breakpoint)
3214 (create_ada_exception_breakpoint): : Don't call check_duplicates.
3215 Call update_global_location_list.
3216 (delete_breakpoint): Don't remove locations and don't
3217 try to reinsert them. Call update_global_location_list.
3218 (update_breakpoint_locations): Likewise.
3219 (restore_always_inserted_mode): New.
3220 (update_breakpoints_after_exec): Temporary disable
3221 always inserted mode.
3222 * Makefile.in: Update dependencies.
3223
3224 * infrun.c (proceed): Remove breakpoints while stepping
3225 over breakpoint.
3226 (handle_inferior_event): Don't remove or insert
3227 breakpoints.
3228 * linux-fork.c (checkpoint_command): Remove breakpoints
3229 before fork and insert after.
3230 (linux_fork_context): Remove breakpoints before switch
3231 and insert after.
3232 * target.c (target_disconnect, target_detach): Remove
3233 breakpoints from target.
3234
3235
3236 2008-04-24 Vladimir Prus <vladimir@codesourcery.com>
3237
3238 * breakpoint.c (print_one_breakpoint_location): In MI
3239 mode, report the location string the breakpoint was
3240 originally created with.
3241
3242 2008-04-23 Maxim Grigoriev <maxim2405@gmail.com>
3243
3244 * Makefile.in (xtensa-tdep.o): Update dependencies.
3245 * configure.tgt (xtensa*): Update dependencies.
3246 * xtensa-tdep.c (arreg_number): Renamed from areg_number.
3247 Local variable areg renamed to arreg.
3248 (areg_number): New function.
3249 (xtensa_pseudo_register_read, xtensa_pseudo_register_write)
3250 (xtensa_extract_return_value, xtensa_store_return_value): areg_number
3251 replaced by arreg_number.
3252 (xtensa_windowed_frame_cache, struct xtensa_frame_cache): New comments.
3253 (xtensa_alloc_frame_cache): Initialize cache->wd.ws.
3254 (xtensa_scan_prologue): New function.
3255 (xtensa_frame_cache): New local fp_regnum. Handle separately the case,
3256 when ENTRY instraction hasn't been executed yet. Get the frame pointer
3257 value based on prologue analysis. Fix the bugs preventing WS and
3258 AR4-AR7/A11 registers from getting right values for intermediate frames,
3259 whose registers have been already spilled.
3260 (xtensa_frame_prev_register): Fix WS register value. Use are_number
3261 and arreg_number appropriately.
3262 (xtensa_gdbarch_init): Set solib_svr4_fetch_link_map_offsets to
3263 svr4_ilp32_fetch_link_map_offsets.
3264
3265 2008-04-23 Andrew Stubbs <andrew.stubbs@st.com>
3266
3267 * printcmd.c: Define USE_PRINTF_I64 and PRINTF_HAS_LONG_LONG on MinGW.
3268 (printf_command): Convert %lld to %I64d when USE_PRINTF_I64 set.
3269
3270 2008-04-23 Paolo Bonzini <bonzini@gnu.org>
3271
3272 * acinclude.m4: Add override.m4.
3273 * configure: Regenerate.
3274
3275 2008-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
3276
3277 * ada-lang.c (get_selections): Variable PROMPT made non-const and
3278 initialized with a trailing space now. Use PROMPT_ARG of
3279 COMMAND_LINE_INPUT instead of printing it ourselves.
3280
3281 2008-04-22 Joel Brobecker <brobecker@adacore.com>
3282
3283 * NEWS: Document support for 64-bit core file.
3284
3285 2008-04-22 Corinna Vinschen <vinschen@redhat.com>
3286
3287 * NEWS: Add information on calling convention and new SH CLI options.
3288
3289 * sh-tdep.c (sh_cc_gcc): New static string.
3290 (sh_cc_renesas): Ditto.
3291 (sh_cc_enum): New static string array.
3292 (sh_active_calling_convention): New static string pointer denoting
3293 active user chosen ABI.
3294 (sh_is_renesas_calling_convention): New function to return function
3295 specific ABI, or user choice if necessary.
3296 (sh_use_struct_convention): Rename first argument and turn around its
3297 meaning. Check for renesas ABI and return accordingly.
3298 (sh_use_struct_convention_nofpu): New function.
3299 (sh_next_flt_argreg): Get function type as third parameter. Check
3300 for renesas ABI and choose floating registers accordingly.
3301 (sh_push_dummy_call_fpu): Check for ABI and choose argument slot and
3302 struct return slot accordingly.
3303 (sh_push_dummy_call_nofpu): Ditto.
3304 (sh_return_value_nofpu): Call sh_use_struct_convention_nofpu from here.
3305 Evaluate ABI and give to sh_use_struct_convention_nofpu.
3306 (sh_return_value_fpu): Evaluate ABI and give to
3307 sh_use_struct_convention.
3308 (show_sh_command): New function.
3309 (set_sh_command): Ditto.
3310 (_initialize_sh_tdep): Initialize `set/show sh calling-convention
3311 CLI command.
3312
3313 * gdbarch.sh (return_value): Add func_type argument.
3314 * gdbarch.c: Regenerate.
3315 * gdbarch.h: Ditto.
3316 * eval.c (evaluate_subexp_standard): Rename local variable value_type to
3317 val_type so as not to collide with value_type function. Call
3318 using_struct_return with additional function type argument.
3319 * infcall.c (call_function_by_hand): Call using_struct_return and
3320 gdbarch_return_value with additional function type argument.
3321 * infcmd.c (print_return_value): Take addition func_type argument.
3322 Call gdbarch_return_value with additional function type argument.
3323 (finish_command_continuation): Call print_return_value with additional
3324 function type argument.
3325 (finish_command): Ditto.
3326 * sparc-tdep.c (sparc32_push_dummy_code): Call using_struct_return with
3327 additional function type argument.
3328 * stack.c (return_command): Call using_struct_return and
3329 gdbarch_return_value with additional function type argument.
3330 * value.c (using_struct_return): Take additional function type argument.
3331 * value.h (using_struct_return): Accommodate declaration.
3332 * alpha-tdep.c (alpha_return_value): Add func_type argument.
3333 * amd64-tdep.c (amd64_return_value): Ditto.
3334 * arm-tdep.c (arm_return_value): Ditto.
3335 * avr-tdep.c (avr_return_value): Ditto.
3336 * cris-tdep.c (cris_return_value): Ditto.
3337 * frv-tdep.c (frv_return_value): Ditto.
3338 * h8300-tdep.c (h8300_return_value): Ditto.
3339 (h8300h_return_value): Ditto.
3340 * hppa-tdep.c (hppa32_return_value): Ditto.
3341 (hppa64_return_value): Ditto.
3342 * i386-tdep.c (i386_return_value): Ditto.
3343 * ia64-tdep.c (ia64_return_value): Ditto.
3344 * iq2000-tdep.c (iq2000_return_value): Ditto.
3345 * m32c-tdep.c (m32c_return_value): Ditto.
3346 * m32r-tdep.c (m32r_return_value): Ditto.
3347 * m68hc11-tdep.c (m68hc11_return_value): Ditto.
3348 * m68k-tdep.c (m68k_return_value): Ditto.
3349 (m68k_svr4_return_value): Ditto.
3350 * m88k-tdep.c (m88k_return_value): Ditto.
3351 * mep-tdep.c (mep_return_value): Ditto.
3352 * mips-tdep.c (mips_eabi_return_value): Ditto.
3353 (mips_n32n64_return_value): Ditto.
3354 (mips_o32_return_value): Ditto.
3355 (mips_o64_return_value): Ditto.
3356 * mn10300-tdep.c (mn10300_return_value): Ditto.
3357 * mt-tdep.c (mt_return_value): Ditto.
3358 * ppc-linux-tdep.c (ppc_linux_return_value): Ditto.
3359 * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Ditto.
3360 (ppc_sysv_abi_broken_return_value): Ditto.
3361 (ppc64_sysv_abi_return_value): Ditto.
3362 * ppc-tdep.h (ppc_sysv_abi_return_value): Ditto.
3363 (ppc_sysv_abi_broken_return_value): Ditto.
3364 (ppc64_sysv_abi_return_value): Ditto.
3365 * ppcnbsd-tdep.c (ppcnbsd_return_value): Ditto.
3366 * rs6000-tdep.c (rs6000_return_value): Ditto.
3367 * s390-tdep.c (s390_return_value): Ditto.
3368 * score-tdep.c (score_return_value): Ditto.
3369 * sh-tdep.c (sh_return_value_nofpu): Ditto.
3370 (sh_return_value_fpu): Ditto.
3371 * sh64-tdep.c (sh64_return_value): Ditto.
3372 * sparc-tdep.c (sparc32_return_value): Ditto.
3373 * sparc64-tdep.c (sparc64_return_value): Ditto.
3374 * spu-tdep.c (spu_return_value): Ditto.
3375 * v850-tdep.c (v850_return_value): Ditto.
3376 * vax-tdep.c (vax_return_value): Ditto.
3377 * xstormy16-tdep.c (xstormy16_return_value): Ditto.
3378 * xtensa-tdep.c (xtensa_return_value): Ditto.
3379
3380 * gdbtypes.h (struct type): Add calling_convention member.
3381 * dwarf2read.c (read_subroutine_type): Add calling convention read
3382 from DW_AT_calling_convention attribute to function type.
3383
3384 2008-04-22 Markus Deuling <deuling@de.ibm.com>
3385
3386 * eval.c (evaluate_subexp_standard): Use value_subscripted_rvalue for
3387 multi_f77_subscript to support values from registers.
3388 * valarith.c (value_subscripted_rvalue): Remove prototype and static.
3389 * value.h (value_subscripted_rvalue): Add prototype.
3390
3391 * f-typeprint.c (f_type_print_base): Add support for TYPE_CODE_UNION.
3392 Fix output.
3393 * f-valprint.c (f_val_print): Likewise.
3394
3395 2008-04-21 Craig Silverstein <csilvers@google.com>
3396
3397 * dwarf2read.c (zlib_decompress_section): Define abfd in the
3398 !HAVE_ZLIB_H case.
3399
3400 2008-04-21 Pedro Alves <pedro@codesourcery.com>
3401
3402 * symfile.c (syms_from_objfile): Don't warn if lowest loadable
3403 section is not a code section.
3404
3405 2008-04-19 Craig Silverstein <csilvers@google.com>
3406
3407 * NEWS: Add information on compressed debug sections.
3408
3409 2008-04-19 Vladimir Prus <vladimir@codesourcery.com>
3410
3411 * mi/mi-cmd-var.c (varobj_update_one): Print new
3412 value for variable objects that changed type.
3413
3414 2008-04-19 Vladimir Prus <vladimir@codesourcery.com>
3415
3416 * varobj.c (varobj_invalidate): Don't touch floating
3417 varobjs.
3418
3419 2008-04-19 Mark Kettenis <kettenis@gnu.org>
3420
3421 * symtab.c: (multiple_symbols_modes, multiple_symbols_ask)
3422 (multiple_symbols_cancel): Remove extra const.
3423 * symtab.h: Likewise.
3424
3425 2008-04-19 Nick Roberts <nickrob@snap.net.nz>
3426
3427 * interps.c (top_level_interpreter): Rename static variable...
3428 (top_level_interpreter_ptr): ...to this.
3429 (top_level_interpreter): New function.
3430
3431 * interps.h: New extern for top_level_interpreter.
3432
3433 * linespec.c: Include interps.h and mi/mi-cmds.h.
3434 (decode_line_2): When using MI, always set all breakpoints in menu.
3435
3436 * Makefile.in (linespec.o, mi-interp.o): Add dependencies.
3437
3438 2008-04-18 Craig Silverstein <csilvers@google.com>
3439
3440 * configure.ac (AC_SEARCH_LIBS): Add check for zlib.
3441 * config.in, configure: Regenerate.
3442 * dwarf2read.c: Include zlib.h if present.
3443 Modified *_SECTION macros.
3444 (section_is_p): New.
3445 (dwarf2_locate_sections): Use section_is_p instead of strcmp
3446 (dwarf2_resize_section): New.
3447 to determine whether a given section has a given name.
3448 (zlib_decompress_section): New.
3449 (dwarf2_read_section): Read the compressed section if present
3450 in the binary.
3451 * MAINTAINERS: Added myself to section Write After Approval.
3452
3453 2008-04-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
3454
3455 * defs.h (exec_set_section_offsets): Remove prototype.
3456 * exec.c (exec_set_section_offsets): Remove function.
3457
3458 2008-04-18 Joel Brobecker <brobecker@adacore.com>
3459
3460 * stabsread.c (cleanup_undefined_types_1): Add instance flags check
3461 in the search for the matching symbol.
3462
3463 2008-04-17 Marc Khouzam <marc.khouzam@ericsson.com>
3464
3465 * breakpoint.c (update_watchpoint): Always reparse
3466 condition.
3467
3468 2008-04-17 Joel Brobecker <brobecker@adacore.com>
3469
3470 * breakpoint.c (print_one_breakpoint_location): Make sure to print
3471 the breakpoint address only once.
3472
3473 2008-04-17 Dennis Roberts <dennis.roberts@sunquestinfo.com>
3474
3475 * rs6000-tdep.c (rs6000_gdbarch_init): Use the BFD architecture,
3476 rather than a hard-coded architecture, for xcoff executables.
3477
3478 2008-04-17 Doug Evans <dje@google.com>
3479
3480 * buildsym.c (watch_main_source_file_lossage): New fn.
3481 (end_symtab): Call it.
3482
3483 * source.c (find_and_open_source): Add some comments clarifying
3484 handling of FULLNAME argument. Make static. Remove pointless
3485 xstrdup/xfree.
3486
3487 2008-04-17 Pedro Alves <pedro@codesourcery.com>
3488
3489 * inf-loop.c (inferior_event_handler): Also run the intermediate
3490 continuations in the INF_EXEC_COMPLETE case.
3491
3492 2008-04-16 Tom Tromey <tromey@redhat.com>
3493
3494 * cli/cli-decode.h (CMD_ASYNC_OK): New define.
3495 (set_cmd_async_ok, get_cmd_async_ok): Declare.
3496 * cli/cli-decode.c (set_cmd_async_ok): New function.
3497 (get_cmd_async_ok): New function.
3498 * cli/cli-cmds.c (init_cli_cmds): Mark "pwd", "help", "info", and
3499 "show" as async-ok.
3500 * top.c (execute_command): Use get_cmd_async_ok.
3501 * infcmd.c: Include cli/cli-decode.h.
3502 (_initialize_infcmd): Mark "interrupt" as async-ok.
3503 * Makefile.in (infcmd.o): Depend on cli_decode_h.
3504
3505 2008-04-16 Daniel Jacobowitz <dan@codesourcery.com>
3506
3507 PR gdb/2445
3508 * exec.c: Correct "arch-utils.h" include.
3509
3510 2008-04-15 Aleksandar Ristovski <aristovski@qnx.com>
3511
3512 PR gdb/2424
3513 * infrun.c (normal_stop) Move breakpoint_auto_delete further down
3514 to allow printing to 'see' real reason of stop. This fixes PR 2424.
3515 * breakpoint.c (bpdisp_texst): New function. The function takes over
3516 the role of bpstats static array in print_one_breakpoint_location.
3517 (print_it_typical): Print "Temporary breakpoint" instead
3518 of just "Breakpoint" when breakpoint is, well, temporary. For mi-like
3519 protocols, print disp field.
3520 (print_one_breakpoint_location): Removed bpdisps static definition.
3521 Call new bpstat_text function to get value for 'disp' field.
3522 (mention): Print "Temporary breakpoint" instead of just "Breakpoint".
3523
3524 2008-04-15 Daniel Jacobowitz <dan@codesourcery.com>
3525
3526 * gnulib/Makefile.am, gnulib/m4/gnulib-cache.m4,
3527 gnulib/aux/link-warning.h, gnulib/extra/link-warning.h: Adjust
3528 by rerunning gnulib-tool with --aux-dir=gnulib/extra.
3529 * gnulib/Makefile.in: Regenerate.
3530
3531 2008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
3532
3533 * Makefile.in (GNULIB_H): New. Trigger all-lib.
3534 (defs_h): Use $(GNULIB_H).
3535 (all-lib): Depend on gnulib/Makefile.
3536 (gnulib/Makefile): Regenerate gnulib/Makefile and gnulib/.deps.
3537 * config.in, gnulib/Makefile.in: Regenerated.
3538
3539 2008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
3540
3541 * Makefile.in (LIBGNU, INCGNU): Define.
3542 (INTERNAL_CFLAGS_BASE): Add INCGNU.
3543 (INTERNAL_LIBS, CLIBS, CDEPS): Add LIBGNU.
3544 (CLEANDIRS): New.
3545 ($(LIBGNU), all-lib): New rules.
3546 (clean, distclean, do-maintainer-clean): Use CLEANDIRS.
3547 * configure.ac: Use gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE.
3548 Simplify AC_CONFIG_AUX_DIR. Generate gnulib/Makefile.
3549 * gnulib: New directory, from gnulib-tool.
3550 * configure, aclocal.m4: Regenerated.
3551
3552 2008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
3553
3554 * linux-thread-db.c (have_threads_callback): Check thread->private.
3555
3556 2008-04-13 Nick Roberts <nickrob@snap.net.nz>
3557 Vladimir Prus <vladimir@codesourcery.com>
3558
3559 Fix @-varobjs.
3560 * varobj.c (value_of_root): Update the expression for
3561 floating varobjs.
3562 * mi/mi-cmd-var.c (varobj_update_one): If type has changed,
3563 report that.
3564
3565 2008-04-09 Marc Khouzam <marc.khouzam@ericsson.com>
3566
3567 * mi/mi-cmd-var.c: Include "mi-getopt.h".
3568 (mi_parse_format): New. Factored out from mi_cmd_var_set_format.
3569 (mi_cmd_var_set_format): Use new mi_parse_format.
3570 (mi_cmd_var_evaluate_expression): Support for -f option to specify
3571 format.
3572 * Makefile.in (mi-cmd-var.o): Update dependencies.
3573
3574 * varobj.h (varobj_get_formatted_value): Declare.
3575 * varobj.c (my_value_of_variable): Added format parameter.
3576 (cplus_value_of_variable): Likewise.
3577 (java_value_of_variable): Likewise.
3578 (c_value_of_variable): Likewise. Evaluate expression based
3579 on format parameter.
3580 (struct language_specific): Add format parameter to function member
3581 *value_of_variable.
3582 (varobj_get_formatted_value): New.
3583 (varobj_get_value): Added format parameter to method call.
3584
3585 2008-04-08 Joel Brobecker <brobecker@adacore.com>
3586
3587 * stabsread.c (cleanup_undefined_types_noname): Manually set the
3588 instance flags of the undefined type before calling replace_type.
3589
3590 2008-04-08 Vladimir Prus <vladimir@codesourcery.com>
3591
3592 * target.h (enum strata): Remove the download_stratum.
3593
3594 2008-04-07 Doug Evans <dje@google.com>
3595
3596 * buildsym.h (last_source_file): Add dwarf info to comment.
3597 (last_source_start_addr): Ditto.
3598
3599 2008-04-07 Pedro Alves <pedro@codesourcery.com>
3600
3601 * alphanbsd-tdep.c: Include "target.h".
3602 * mn10300-tdep.c: Include "target.h".
3603 * Makefile.in (alphanbsd-tdep.o, mn10300-tdep.o): Update.
3604
3605 2008-04-06 Vladimir Prus <vladimir@codesourcery.com>
3606
3607 Fix breakpoint condition that use member variables.
3608 * valops.c (check_field): Remove.
3609 (check_field_in): Rename to check_field.
3610 (value_of_this): Use la_name_of_this.
3611 * value.h (check_field): Adjust prototype.
3612
3613 * language.h (la_value_of_this): Rename to la_name_of_this.
3614 * language.c (unknown_language_defn): Specify "this" for
3615 name_of_this.
3616 (auto_language_defn): Likewise.
3617 (local_language_defn): Likewise.
3618 * ada-lang.c (ada_language_defn): Adjust comment.
3619 * c-lang.c (c_language_defn): Adjust comment.
3620 (cplus_language_defn): Specify "this" for name_of_this.
3621 (asm_language_defn): Adjust comment.
3622 (minimal_language_defn): Adjust comment.
3623 * f-lang.c (f_language_defn): Specify NULL for name_of_this.
3624 * jv-lang.c (java_language_defn): Specify "this" for name_of_this.
3625 * m2-lang.c (m2_language_defn): Specify "this" for name_of_this.
3626 * objc-lang.c (objc_language_defn): Specify "self" for
3627 name_of_this.
3628 * p-lang.c (pascal_language_defn): Specify "this" for
3629 name_of_this.
3630 * scm-lang.c (scm_language_defn): Specify NULL for name_of_this.
3631
3632 * symtab.c (lookup_symbol_aux): Lookup "this" in the
3633 proper scope, and check for field in type of "this", without
3634 trying to create a value.
3635
3636 2008-04-04 Pedro Alves <pedro@codesourcery.com>
3637
3638 * mi/mi-cmds.h (enum mi_cmd_result): Delete MI_CMD_ERROR.
3639 (mi_error_message): Delete declaration.
3640 * mi/mi-interp.c (mi_cmd_interpreter_exec): Call error instead of
3641 returning MI_CMD_ERROR.
3642 * mi/mi-main.c (mi_error_message): Delete.
3643 (mi_cmd_exec_interrupt):
3644 (mi_cmd_thread_select, mi_cmd_thread_list_ids)
3645 (mi_cmd_thread_info): Call error instead of returning
3646 MI_CMD_ERROR.
3647 (mi_cmd_data_list_register_values): Call error instead of
3648 returning MI_CMD_ERROR. Adapt to new get_register interface.
3649 (get_register): Change return typo to void. Call error instead of
3650 returning MI_CMD_ERROR.
3651 (mi_cmd_data_write_register_values): Call error instead of
3652 returning MI_CMD_ERROR.
3653 (mi_cmd_list_features): Return MI_CMD_DONE.
3654 (captured_mi_execute_command): Remove MI_CMD_ERROR handling.
3655 (mi_execute_command): Always print exceptions with -error.
3656
3657 2008-04-04 Joel Brobecker <brobecker@adacore.com>
3658
3659 * NEWS: Mention new commands set/show multiple-symbols.
3660
3661 2008-04-03 Joel Brobecker <brobecker@adacore.com>
3662
3663 * symtab.c (multiple_symbols_ask, multiple_symbols_all)
3664 (multiple_symbols_cancel): New constants.
3665 (multiple_symbols_modes, multiple_symbols_mode): New static globals.
3666 (multiple_symbols_select_mode): New function.
3667 (_initialize_symtab): Add new set/show multiple-symbols commands.
3668 * symtab.h (multiple_symbols_ask, multiple_symbols_all)
3669 (multiple_symbols_cancel, multiple_symbols_select_mode): Declare.
3670 * ada-lang.c (user_select_syms): Add handling of new multiple-symbols
3671 setting.
3672 * linespec.c (decode_line_2): Likewise.
3673
3674 2008-04-03 Doug Evans <dje@sebabeach.org>
3675
3676 * symtab.h (enum free_code): Delete free_contents, unused.
3677 * symmisc.c (free_symtab_block): Delete.
3678 (free_symtab, case free_code): Delete.
3679
3680 2008-04-01 Aleksandar Ristovski <aristovski@qnx.com>
3681
3682 * valops.c (value_cast_structs): New function. Cast related
3683 STRUCT types up/down and return cast value. The body of this
3684 function comes mostly from value_cast_pointers.
3685 (value_cast_pointers): Code for actual cast STRUCT-STRUCT moved
3686 to value_cast_structs. Now value_cast_pointers needs only create
3687 appropriate reference after using value_cast_structs for actual
3688 casting.
3689 (value_cast): Handle references.
3690
3691 2008-04-01 Marc Khouzam <marc.khouzam@ericsson.com>
3692
3693 * MAINTAINERS: Added myself to section Write After Approval.
3694
3695 2008-03-30 Daniel Jacobowitz <dan@codesourcery.com>
3696
3697 * ia64-tdep.c (examine_prologue): Correct array access.
3698
3699 2008-03-28 Aleksandar Ristovski <aristovski@qnx.com>
3700
3701 * cp-support.c (first_component_command): Return if no arguments.
3702
3703 2008-03-28 Carlos O'Donell <carlos@codesourcery.com>
3704
3705 * ser-mingw.c (ser_windows_open): Open requested name.
3706
3707 2008-03-28 Aleksandar Ristovski <aristovski@qnx.com>
3708
3709 * MAINTAINERS: Added myself.
3710
3711 2008-03-28 Pedro Alves <pedro@codesourcery.com>
3712
3713 * target.c (find_default_run_target): Allow a NULL `do_mesg'
3714 parameter. If it is NULL, don't call error.
3715 (find_default_can_async_p, find_default_is_async_p): Pass NULL as
3716 `do_mesg' parameter to find_default_run_target. If no target was
3717 found, return 0.
3718
3719 2008-03-28 Daniel Jacobowitz <dan@codesourcery.com>
3720
3721 * mips-linux-tdep.c: Update N32/N64 signal frame comments.
3722 (N64_SIGCONTEXT_LO, N64_SIGCONTEXT_PC, N64_SIGCONTEXT_FPCSR): Update.
3723 (N64_SIGCONTEXT_FIR, N64_SIGCONTEXT_CAUSE, N64_SIGCONTEXT_BADVADDR):
3724 Delete.
3725 (mips_linux_n32n64_sigframe_init): Do not record cause or badvaddr.
3726
3727 2008-03-27 Joel Brobecker <brobecker@adacore.com>
3728
3729 GDB 6.8 released.
3730
3731 2008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
3732
3733 * features/Makefile (%.dat): Set xmltarget to the base filename
3734 of the XML source, without subdirectory.
3735 * regformats/rs6000/powerpc-32.dat: Regenerate.
3736 * regformats/rs6000/powerpc-64.dat: Regenerate.
3737 * regformats/rs6000/powerpc-e500.dat: Regenerate.
3738
3739 2008-03-27 Markus Deuling <deuling@de.ibm.com>
3740
3741 * xcoffread.c (scan_xcoff_symtab): Replace current_gdbarch by
3742 objfile arch.
3743
3744 2008-03-27 Nick Roberts <nickrob@snap.net.nz>
3745
3746 * mi/mi-main.c (enum captured_mi_execute_command_actions):
3747 Spell suppress in EXECUTE_COMMAND_SUPPRESS_PROMPT correctly.
3748
3749 2008-03-26 Ulrich Weigand <uweigand@de.ibm.com>
3750
3751 * objfiles.h (struct objfile): New GDBARCH member.
3752 (get_objfile_arch): Add prototype.
3753 * objfiles.c: Include "arch-utils.h".
3754 (allocate_objfile): Look up gdbarch associated with bfd.
3755 (get_objfile_arch): New function.
3756 * Makefile (objfiles.o): Update dependencies.
3757
3758 * dwarf2-frame.c (decode_frame_entry_1): Replace current_gdbarch
3759 by objfile arch.
3760 * dwarf2loc.c (dwarf_expr_read_reg): Replace current_gdbarch
3761 by frame arch.
3762 (locexpr_describe_location): Replace current_gdbarch by
3763 objfile arch.
3764 * dwarf2read.c (die_type): Replace current_gdbarch by objfile arch.
3765 (dwarf2_add_field): Likewise.
3766 (read_tag_pointer_type): Likewise.
3767 (read_base_type): Likewise.
3768 (new_symbol): Likewise.
3769
3770 * coffread.c (decode_type): Add OBJFILE argument. Update callers.
3771 (decode_base_type, decode_function_type): Likewise.
3772 (coff_read_struct_type, coff_read_enum_type): Likewise.
3773 (coff_symtab_read): Replace current_gdbarch by objfile arch.
3774 (decode_base_type): Likewise.
3775 (coff_read_enum_type): Likewise.
3776 (coff_read_struct_type): Replace current_objfile by OBJFILE argument.
3777 (coff_read_enum_type): Likewise.
3778
3779 * dbxread.c (read_dbx_symtab): Replace current_gdbarch by objfile arch.
3780 (end_psymtab): Likewise.
3781 (process_one_symbol): Likewise.
3782
3783 * mdebugread.c (parse_symbol): Replace current_gdbarch by objfile arch.
3784 (parse_procedure): Likewise.
3785 (parse_partial_symbols): Likewise.
3786
3787 * somread.c (som_symtab_read): Replace current_gdbarch by objfile arch.
3788
3789 * stabsread.c (define_symbol): Replace current_gdbarch by objfile arch.
3790 Replace static pcc_promotion_type and pcc_unsigned_promotion_type by
3791 built-in types.
3792 (read_range_type): Replace current_gdbarch by objfile arch. Replace
3793 static range_index_type by built-in type.
3794 (read_one_struct_field): Replace current_gdbarch by objfile arch.
3795 (read_enum_type): Likewise.
3796
3797 * xcoffread.c (read_xcoff_symtab): Replace current_gdbarch by
3798 objfile arch.
3799
3800 2008-03-26 Vladimir Prus <vladimir@codesourcery.com>
3801
3802 * varobj.h (varobj_floating_p): Declare.
3803 * varobj.c (varobj_floating_p): New.
3804 * mi/mi-cmd-var.c (mi_cmd_var_update): When passed
3805 '@' as the name, update all floating varobjs.
3806
3807 2008-03-26 Vladimir Prus <vladimir@codesourcery.com>
3808
3809 * varobj.c (struct varobj_root): Rename use_selected_frame to
3810 floating, and clarify the meaning.
3811 (varobj_create, varobj_update, new_root_variable): Adjust.
3812 (value_of_root): Don't use type_changed as in variable,
3813 adjust comment.
3814 (c_value_of_root): Adjust.
3815
3816 2008-03-25 Pedro Alves <pedro@codesourcery.com>
3817
3818 * linux-nat.c (linux_nat_attach): Add the pid we attached to, to
3819 gdb's thread list.
3820 (linux_nat_wait): Add main lwp to gdb's thread list.
3821 * linux-thread-db.c (find_new_threads_callback): Also attach to
3822 already listed threads which thread_db didn't know about yet.
3823
3824 2008-03-25 Pedro Alves <pedro@codesourcery.com>
3825
3826 * linux-nat.c (drain_queued_events): Fix comment typo.
3827 (linux_nat_attach): In async mode, don't rely on storing a pending
3828 status. Instead place the wait status on the pipe.
3829 (linux_nat_resume): Remove unreacheable shortcut code in async
3830 mode.
3831 (stop_wait_callback): In async mode, don't store pending status.
3832 Instead, cancel breakpoints or resend the signal appropriatelly.
3833 (cancel_breakpoint): New, refactored from
3834 cancel_breakpoints_callback.
3835 (cancel_breakpoints_callback): Call cancel_breakpoint.
3836 (pipe_to_local_event_queue): Remove special token processing.
3837 (linux_nat_wait): Issue an internal error if a pending status is
3838 found in async mode.
3839
3840 2008-03-24 Daniel Jacobowitz <dan@codesourcery.com>
3841
3842 * inflow.c (gdb_has_a_terminal): Guard access to our_process_group.
3843
3844 2008-03-24 Nick Roberts <nickrob@snap.net.nz>
3845 Vladimir Prus <vladimir@codesourcery.com>
3846
3847 * varobj.c (struct varobj_root): New component thread_id.
3848 (varobj_get_thread_id, check_scope): New functions.
3849 (c_value_of_root): Use check_scope. Switch to the
3850 proper thread if necessary.
3851
3852 * varobj.h (varobj_get_thread_id): New extern.
3853
3854 * mi/mi-cmd-var.c (print_varobj): Add thread-id field.
3855
3856 2008-03-23 Daniel Jacobowitz <dan@codesourcery.com>
3857
3858 PR gdb/544
3859 * top.c: Revert 2008-03-21 changes.
3860
3861 2008-03-23 Vladimir Prus <vladimir@codesourcery.com>
3862
3863 * thread.c (make_cleanup_restore_current_thread): Make it
3864 globally visible.
3865 * gdbthread.h (make_cleanup_restore_current_thread): Declare.
3866 * varobj.c (varobj_update): Don't save/restore frame.
3867 (c_value_of_root): Save/restore thread and frame here,
3868 using make_cleanup_restore_current_thread.
3869 * Makefile.in: Update dependecies.
3870
3871 2008-03-23 Vladimir Prus <vladimir@codesourcery.com>
3872
3873 * varobj.c (struct varobj_root): Clarify
3874 comment on the frame field.
3875 (varobj_create): Don't set frame if we have no
3876 block.
3877
3878 2008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
3879
3880 PR gdb/544
3881 Suggested by Jan Kratochvil:
3882 * top.c (gdb_rl_operate_and_get_next_completion): Call
3883 rl_redisplay_function.
3884 (gdb_rl_redisplay): New.
3885 (init_main): Set rl_redisplay_function.
3886
3887 2008-03-21 Thomas Mittelstaedt <T.Mittelstaedt@cadenas.de> (tiny change)
3888
3889 * aix-thread.c (pdc_read_regs): Fix compiler warning.
3890 (pdc_write_regs, aix_thread_resume, fetch_regs_kernel_thread)
3891 (store_regs_kernel_thread): Likewise.
3892
3893 2008-03-21 Pedro Alves <pedro@codesourcery.com>
3894
3895 Linux native async support.
3896
3897 * target.h (struct target_ops): Delete to_async_mask_value and add
3898 to_async_mask.
3899 (target_is_async_p, target_async): Formatting.
3900 (target_async_mask_value): Delete.
3901 (target_async_mask): Delete function declaration, and add new
3902 target macro with the same name.
3903
3904 * target.c (update_current_target): Replace to_async_mask_value by
3905 to_async_mask. Default to_async_mask to return_one.
3906 (target_async_mask): Delete.
3907 (find_default_can_async_p, find_default_is_async_p): New.
3908 (init_dummy_target): register find_default_can_async_p and
3909 find_default_is_async_p on the dummy target.
3910
3911 * linux-nat.c: Include inf-loop.h, event-loop.h and event-top.h.
3912 (debug_linux_nat_async): New global.
3913 (show_debug_linux_nat_async): New function.
3914 (linux_nat_async_enabled, linux_nat_async_mask_value)
3915 (linux_nat_event_pipe, linux_nat_num_queued_events)
3916 (linux_nat_async_events_enabled): New globals.
3917 (struct waitpid_result): New struct.
3918 (waitpid_queue): New global.
3919 (queued_waitpid, push_waitpid, drain_queued_events): New.
3920 (my_waitpid): Call queued_waitpid.
3921 (linux_child_follow_fork): Disable async events during the call.
3922 (blocked_mask): Delete.
3923 (sync_sigchld_action, async_sigchld_action): New globals.
3924 (lin_lwp_attach_lwp): In sync mode, don't reblock SIGCHLD. In
3925 async mode, block events during the call.
3926 (linux_nat_create_inferior): New.
3927 (linux_nat_attach): In sync mode, restore the mask states. In
3928 async mode, wake the event loop immediatelly.
3929 (detach_callback): Drain all queued events of the lwp we're
3930 detaching from.
3931 (linux_nat_detach): Block async mode, and drain events of the main
3932 process.
3933 (linux_nat_resume): If in async mode, mask async events during the
3934 call. If short circuiting, force event loop to wake up. If
3935 resuming, set target_executing, and register target events in the
3936 event loop.
3937 (pipe_to_local_event_queue, local_event_queue_to_pipe): New.
3938 (linux_nat_wait): In async mode, block events during the call.
3939 Only enable/disable passing SIGINT to the inferior in sync mode.
3940 Get events from local waitpid queue. If no interesting events was
3941 found, return to events loop. Reregister target events in the
3942 event loop on exit. In sync mode, no need to reblock SIGCHLD.
3943 (linux_nat_kill): Disable events on entry.
3944 (linux_nat_mourn_inferior): In sync mode, don't restore the masks
3945 here. Detach async mode from the event loop if there are no more
3946 forks available, otherwise leave it on.
3947 (sigchld_handler): Assure this is called only in sync mode.
3948 (linux_async_permitted, linux_async_permitted_1): New globals.
3949 (set_maintenance_linux_async_permitted)
3950 (show_maintenance_linux_async_permitted): New functions.
3951 (linux_nat_is_async_p, linux_nat_can_async_p)
3952 (linux_nat_async_mask): New.
3953 (linux_nat_event_pipe_pop, linux_nat_event_pipe_push): New.
3954 (get_pending_events, async_sigchld_handler): New.
3955 (linux_nat_async_events): New.
3956 (async_terminal_is_ours): New global.
3957 (linux_nat_terminal_inferior, linux_nat_terminal_ours): New.
3958 (async_client_callback, async_client_context): New.
3959 (linux_nat_async_file_handler, linux_nat_async)
3960 (linux_nat_disable_async, linux_nat_enable_async): New.
3961 (linux_nat_add_target): Register linux_nat_create_inferior,
3962 linux_nat_can_async_p, linux_nat_is_async_p, linux_nat_async,
3963 linux_nat_async_mask, linux_nat_terminal_inferior and
3964 linux_nat_terminal_ours.
3965 (_initialize_linux_nat): Remove local action variable, and update
3966 code that used it to use sync_sigchld_action. Add new
3967 "lin-lwp-async" debug set/show command. Put the "lin-lwp" debug
3968 set/show command in the maintenance class. Add new "linux-async"
3969 maintenance set/show command. Block SIGCHLD by default. Setup
3970 async_sichld_action, and sync_sigchld_action. Install the default
3971 async mode.
3972 (lin_thread_get_thread_signals): Use a local sigset_t for blocking
3973 the cancel signals.
3974
3975 * linux-thread-db.c (re_check_for_thread_db): New.
3976 (clear_lwpid_callback): Handle TARGET_WAITKIND_IGNORE.
3977 (thread_db_can_async_p, thread_db_is_async_p, thread_db_async)
3978 (thread_db_async_mask): New.
3979 (init_thread_db_ops): Register thread_db_can_async_p,
3980 thread_db_is_async_p, thread_db_async and thread_db_async_mask.
3981
3982 * remote.c (remote_async_mask_value): New.
3983 (remote_return_zero): New.
3984 (init_remote_ops): Register remote_return_zero as callbacks of
3985 to_can_async_p and to_is_async_p.
3986 (remote_can_async_p, remote_is_async_p, remote_async): Update to
3987 use remote_async_mask_value.
3988 (remote_async_mask): New.
3989 (init_remote_async_ops): Remove to_async_mask_value setting and
3990 register remote_async_mask as to_async_mask callback in
3991 remote_async_ops.
3992
3993 * Makefile.in (linux-nat.o): Update.
3994
3995 2008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
3996
3997 * gdbthread.h (add_thread_with_info): New.
3998 * linux-thread-db.c: Add some documentation.
3999 (GET_LWP, GET_PID, GET_THREAD, is_lwp, is_thread, BUILD_LWP): Delete.
4000 (struct private_thread_info): Remove th_valid and ti_valid.
4001 Replace ti with tid.
4002 (thread_get_info_callback): Do not add TID to the new ptid. Do
4003 not cache th or ti.
4004 (thread_db_map_id2thr, lwp_from_thread): Delete functions.
4005 (thread_from_lwp): Assert that the LWP is set. Do not add TID to the
4006 new PTID.
4007 (attach_thread): Handle an already-existing thread. Use
4008 add_thread_with_info. Cache the th and tid.
4009 (detach_thread): Verify that private was set. Remove verbose
4010 argument and printing. Update caller.
4011 (thread_db_detach): Do not adjust inferior_ptid.
4012 (clear_lwpid_callback, thread_db_resume, thread_db_kill): Delete.
4013 (check_event, find_new_threads_callback): Do not add TID to the new PTID.
4014 (thread_db_wait): Do not use lwp_from_thread.
4015 (thread_db_pid_to_str): Use the cached TID.
4016 (thread_db_extra_thread_info): Check that private is set.
4017 (same_ptid_callback): Delete.
4018 (thread_db_get_thread_local_address): Do not use it or check
4019 is_thread. Check that private is set. Assume that the thread
4020 handle is already cached.
4021 (init_thread_db_ops): Remove to_resume and to_kill.
4022 * thread.c (add_thread_with_info): New.
4023 (add_thread): Use it.
4024 * linux-nat.c (find_thread_from_lwp): Delete.
4025 (exit_lwp): Do not use it. Check print_thread_events. Print before
4026 deleting the thread.
4027 (GET_PID, GET_LWP, BUILD_LWP, is_lwp): Move to...
4028 * linux-nat.h (GET_PID, GET_LWP, BUILD_LWP, is_lwp): ...here.
4029 * inf-ttrace.c (inf_ttrace_wait): Use print_thread_events and
4030 printf_unfiltered for thread exits.
4031 * procfs.c (procfs_wait): Likewise.
4032
4033 2008-03-21 Chris Demetriou <cgd@google.com>
4034
4035 * symtab.c (rbreak_command): Quote symbol name before passing
4036 it to break_command.
4037
4038 2008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
4039
4040 * eval.c (evaluate_subexp_for_address): Clarify error message.
4041 Use value_must_coerce_to_target.
4042 * infcall.c (value_arg_coerce): Call value_coerce_to_target.
4043 * valops.c (value_assign): Call value_coerce_to_target when
4044 assigning to anything but internalvars. Leave GDB-side arrays
4045 as arrays when assigning to internalvars.
4046 (value_must_coerce_to_target, value_coerce_to_target): New.
4047 (value_coerce_array, value_addr): Call value_coerce_to_target.
4048 (value_array): Create the array in GDB's memory instead of
4049 the inferior's.
4050 * value.h (value_must_coerce_to_target, value_coerce_to_target):
4051 Declare.
4052
4053 2008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
4054
4055 * top.c (quit_confirm): Warn that we will kill the program.
4056
4057 2008-03-19 Pedro Alves <pedro@codesourcery.com>
4058
4059 * inflow.c (terminal_ours_1): Guard access to
4060 inferior_process_group with #ifdef PROCESS_GROUP_TYPE.
4061
4062 2008-03-18 Ulrich Weigand <uweigand@de.ibm.com>
4063 Jim Blandy <jimb@codesourcery.com>
4064 Daniel Jacobowitz <drow@false.org>
4065
4066 * dwarf2expr.h (struct dwarf_expr_context): Add ADDR_SIZE member.
4067 (dwarf2_read_address): Update prototype.
4068
4069 * dwarf2expr.c (unsigned_address_type): Add ADDR_SIZE parameter.
4070 (signed_address_type): Likewise.
4071 (dwarf2_read_address): Replace BYTES_READ parameter with ADDR_SIZE.
4072 (execute_stack_op): Update calls to unsigned_address_type,
4073 signed_address_type and dwarf2_read_address. Fix implementation
4074 of DW_OP_deref_size.
4075
4076 * dwarf2loc.h (dwarf2_per_cu_objfile): Add prototype.
4077 (dwarf2_per_cu_addr_size): Likewise.
4078 (struct dwarf2_locexpr_baton): Replace OBJFILE with PER_CU.
4079 (struct dwarf2_loclist_baton): Likewise.
4080
4081 * dwarf2loc.c (find_location_expression): Update calls to
4082 dwarf2_read_address. Use dwarf2_per_cu_objfile and
4083 dwarf2_per_cu_addr_size to retrieve PER_CU parameters.
4084 (locexpr_describe_location): Likewise.
4085 (dwarf2_evaluate_loc_desc): Replace OBJFILE with PER_CU parameter.
4086 Set ctx->addr_size to dwarf2_per_cu_addr_size (per_cu).
4087 (dwarf2_loc_desc_needs_frame): Add PER_CU parameter. Set ctx->addr_size
4088 to dwarf2_per_cu_addr_size (per_cu).
4089 (locexpr_read_variable): Update dwarf2_evaluate_loc_desc call.
4090 (loclist_read_variable): Likewise.
4091 (locexpr_read_needs_frame): Update dwarf2_loc_desc_needs_frame call.
4092
4093 * dwarf2read.c (dwarf2_symbol_mark_computed): Set baton->per_cu
4094 instead of baton->objfile.
4095 (dwarf2_per_cu_obfile): New function.
4096 (dwarf2_per_cu_addr_size): Likewise.
4097
4098 * dwarf2-frame.c (struct comp_unit): Move higher.
4099 (struct dwarf2_cie): Add UNIT and ADDR_SIZE members.
4100 (execute_stack_op): Add ADDR_SIZE parameter; set ctx->addr_size.
4101 (execute_cfa_program): Add FDE parameter. Replace EH_FRAME_P
4102 parameter by using fde->eh_frame_p. Use read_encoded_value
4103 to implement DW_CFA_set_loc.
4104 (struct dwarf2_frame_cache): Add ADDR_SIZE member.
4105 (dwarf2_frame_cache): Set cache->addr_size. Update calls to
4106 execute_stack_op and execute_cfa_program.
4107 (dwarf2_frame_prev_register): Update calls to execute_stack_op.
4108 (size_of_encoded_value): Remove.
4109 (read_encoded_value): Add PTR_LEN and FUNC_BASE parameters.
4110 Remove call to size_of_encoded_value. Implement DW_EH_PE_funcrel.
4111 (add_cie): Set cie->unit backlink.
4112 (decode_frame_entry_1): Set cie->addr_size. Update calls to
4113 read_encoded_value.
4114 (dwarf2_build_frame_info): Allocate UNIT on objfile obstack.
4115
4116 2008-03-17 Markus Deuling <deuling@de.ibm.com>
4117
4118 * i386-tdep.c (i386_print_insn): Remove unnecessary call to
4119 gdbarch_bfd_arch_info.
4120
4121 2008-03-17 Joel Brobecker <brobecker@adacore.com>
4122
4123 * aix-thread.c (pdc_read_regs): Minor reformatting.
4124
4125 2008-03-17 Vladimir Prus <vladimir@codesourcery.com>
4126
4127 * thread.c (print_thread_info): Don't insist
4128 on having current thread if there are no
4129 threads at all.
4130
4131 2008-03-17 Pedro Alves <pedro@codesourcery.com>
4132
4133 * infcmd.c (attach_command_post_wait)
4134 (attach_command_continuation): New.
4135 (attach_command): Support background async execution, and async
4136 execution in synchronous mode.
4137
4138 2008-03-17 Daniel Jacobowitz <dan@codesourcery.com>
4139
4140 * stack.c (print_stack_frame, print_frame): Use RETURN_MASK_ERROR.
4141 * symmisc.c (dump_symtab_1): Likewise.
4142 * wrapper.c (gdb_value_struct_elt): Likewise.
4143
4144 2008-03-17 Pedro Alves <pedro@codesourcery.com>
4145
4146 * linux-nat.c (linux_nat_filter_event): Fix comment typo.
4147
4148 2008-03-17 Pedro Alves <pedro@codesourcery.com>
4149
4150 * linux-nat.c (linux_nat_filter_event): New, refactored from
4151 linux_nat_wait.
4152 (linux_nat_wait): Call linux_nat_filter_event.
4153
4154 2008-03-17 Ulrich Weigand <uweigand@de.ibm.com>
4155
4156 * top.c (execute_command): Fix uninitialized variable error.
4157
4158 2008-03-16 Nick Hudson <nick.hudson@dsl.pipex.com>
4159
4160 * Makefile.in (amd64nbsd-nat.o): New dependency.
4161 * amd64nbsd-nat.c: Include "nbsd-nat.h".
4162 (_initialize_amd64nbsd_nat): Update target vector to use
4163 nbsd_pid_to_exec_file.
4164 * config/i386/nbsd64.mh (NATDEPFILES): Add nbsd-nat.o.
4165
4166 2008-03-15 Vladimir Prus <vladimir@codesourcery.com>
4167
4168 Remove ignoring leading exec events code.
4169 * fork-child.c (startup_inferior): Do not set
4170 inferior_ignoring_leading_exec_events.
4171 * inf-child.c (inf_child_reported_exec_events_per_exec_call): Remove.
4172 (inf_child_target): Do not set to_reported_exec_events_per_exec_call.
4173 * infrun.c (inferior_ignoring_leading_exec_events): Remove.
4174 (handle_inferior_event): Remove code for ignoring leading exec
4175 events.
4176 * target.c (update_current_target): Do not inherit, or default,
4177 to_reported_exec_events_per_exec_call.
4178 (debug_to_reported_exec_events_per_exec_call): Remove.
4179 (setup_target_debug): Do not set to_reported_exec_events_per_exec_call.
4180 * target.h (target_reported_exec_events_per_exec_call): Remove.
4181 (struct target): Remove the to_reported_exec_events_per_exec_call
4182 field.
4183
4184 2008-03-15 Vladimir Prus <vladimir@codesourcery.com>
4185
4186 Implement -thread-info.
4187 * gdbthread.h (print_thread_info): Declare.
4188
4189 * thread.c (print_thread_info): New, extracted
4190 from info_threads_command and adjusted to
4191 work for CLI and MI.
4192 (info_threads_command): Use print_thread_info.
4193 * Makefile.in: Update dependencies.
4194
4195 * mi/mi-cmds.c (mi_cmds): Specify a handler
4196 for -thread-info.
4197 * mi/mi-cmds.h (mi_cmd_thread_info): Declare.
4198 * mi/mi-main.c (mi_cmd_thread_info): New.
4199 (mi_cmd_list_features): Include 'thread-info'.
4200
4201 2008-03-14 Kevin Buettner <kevinb@redhat.com>
4202
4203 * mips-tdep.c (mips32_scan_prologue): Use the ABI register size
4204 to decide whether to match instruction patterns using "sw" and "sd".
4205
4206 2008-03-14 Pedro Alves <pedro@codesourcery.com>
4207
4208 * infcmd.c (jump_command): Postpone disabling stdin until after
4209 the possible query.
4210
4211 2008-03-14 Pedro Alves <pedro@codesourcery.com>
4212
4213 * inflow.c (gdb_getpgrp): New.
4214 (gdb_has_a_terminal): Use get_getpgrp.
4215 (terminal_ours_1): If attach_flag is set, don't refetch
4216 inferior_process_group.
4217
4218 2008-03-14 Pedro Alves <pedro@codesourcery.com>
4219
4220 * features/library-list.dtd: Allow "section" elements as children
4221 of "library". Add "section" element and describe its attributes.
4222
4223 * solib-target.c (struct lm_info): Add section_bases member.
4224 (library_list_start_segment): Error out if seen a section element.
4225 (library_list_start_section): New.
4226 (library_list_end_library): New.
4227 (solib_target_free_library_list): Free section_bases.
4228 (section_attributes): New.
4229 (library_children): Make "segment" optional. Add "section" child.
4230 (library_list_children): Register library_list_end_library.
4231 (solib_target_relocate_section_addresses): Handle section bases.
4232
4233 * NEWS: Mention new qXfer:libraries:read section offsets support.
4234
4235 2008-03-14 Vladimir Prus <vladimir@codesourcery.com>
4236
4237 * defs.h (do_exec_error_cleanups, discard_exec_error_cleanups)
4238 (make_exec_error_cleanup): Remove declarations.
4239 * utils.c (exec_error_cleanup_chain): Remove.
4240 (do_exec_error_cleanups, discard_exec_error_cleanups)
4241 (make_exec_error_cleanup): Remove.
4242 * event-loop.c (start_event_loop): Adjust call to
4243 async_enable_stdin.
4244 * event-top.c (async_enable_stdin): Remove the paramater dummy.
4245 (async_disable_stdin): Don't register async_enable_stdin via
4246 cleanup.
4247 * inf-loop.c (inferior_event_handler): Don't
4248 call do_exec_error_cleanups. Call async_enable_stdin instead.
4249 * event-loop.c (start_event_loop): Adjust call to
4250 async_enable_stdin.
4251 * tui/tui-interp.c (tui_command_loop): Adjust call to
4252 async_enable_stdin.
4253
4254 2008-03-14 Vladimir Prus <vladimir@codesourcery.com>
4255
4256 Async mode fixes.
4257 * Makefile.in (infcmd.o, inf-loop.o): Update dependencies.
4258 * breakpoint.c (bpstat_do_actions): In async mode,
4259 don't jump to top expecting stop_bpstat to be already
4260 updated.
4261 * event-loop.c (start_event_loop): Call async_enable_stdin
4262 on exception.
4263 * event-top.c (async_enable_stdin): Do nothing if sync_execution
4264 is not set.
4265 (command_handler): Do not setup continuation here.
4266 (command_line_handler_continuation): Move to...
4267 * top.c (command_line_handler_continuation): ... here.
4268 (execute_command): In async mode, register continuation.
4269 Don't check frame's language in running in async mode.
4270 * exceptions.c (throw_exception): Don't do exec_error_cleanups.
4271 * inf-loop.c (complete_execution): Inline into...
4272 (inferior_event_handler): ... here. Clear target_executing before
4273 doing any cleanups. Don't try to show prompt if the target was
4274 resumed.
4275 * infcmd.c (signal_command): Add support for async mode.
4276 (finish_command): Only add continuation if the target was
4277 successfully resumed.
4278 * remote.c (init_async_opts): Register to_get_thread_local_address
4279 handler.
4280 * mi/mi-interp.c (mi_cmd_interpreter_exec): Don't mess
4281 with sync_execution.
4282 * tui/tui-interp.c (tui_command_loop): Call async_enable_stdin
4283 on exception.
4284
4285 2008-03-14 Daniel Jacobowitz <dan@codesourcery.com>
4286
4287 * corefile.c (reopen_exec_file): Use exec_bfd_mtime.
4288 * exec.c (exec_bfd_mtime): Define.
4289 (exec_close): Clear it.
4290 (exec_file_attach): Set it.
4291 * gdbcore.h (exec_bfd_mtime): Declare.
4292 * source.c (find_source_lines): Do not use bfd_get_mtime.
4293
4294 2008-03-14 Vladimir Prus <vladimir@codesourcery.com>
4295
4296 * top.c (simplified_command_loop): Remove.
4297
4298 2008-03-14 Vladimir Prus <vladimir@codesourcery.com>
4299
4300 Remove unused remote.c hooks.
4301 * remote.c (deprecated_target_resume_hook)
4302 (deprecated_target_wait_loop_hook): Remove.
4303 (remote_resume): Do not call deprecated_target_resume_hook.
4304 (remote_wait): Do not call deprecated_target_wait_loop_hook.
4305 (remote_async_wait): Likewise.
4306
4307 2008-03-14 Vladimir Prus <vladimir@codesourcery.com>
4308
4309 Implement MI notification for new threads.
4310 * doc/observer.texi (new_thread): Document.
4311 * observer.sh: Forward declare struct thread_info.
4312 * thread.c (add_thread): Notify observer.
4313
4314 * interps.h (interp_init_ftype): New parameter
4315 top_level.
4316 (interp_set): Likewise.
4317 (top_level_interpreter_data): Declare.
4318 * interps.c (interp_set): New parameter top_level.
4319 Pass it to interpreter's init function. Remember
4320 top level interpreter.
4321 (interpreter_exec_cmd): Adjust.
4322 (top_level_interpreter_data): New.
4323 * main.c (captured_main): Pass 1 for top_level
4324 parameter of interp_set.
4325 * cli/cli-interp.c (cli_interpreter_init): New
4326 parameter top_level.
4327 * tui/tui-interp.c (tui_init): New parameter top_level.
4328
4329 * mi/mi-interp.c (mi_new_thread): New.
4330 (mi_interpreter_init): If top level, register
4331 observer for new threads.
4332
4333 * Makefile.in (mi-interp.o, thread.o): Update dependencies.
4334
4335 2008-03-14 Pedro Alves <pedro@codesourcery.com>
4336
4337 * top.c (execute_command): Disable break and stop
4338 commands in async mode.
4339
4340 2008-03-14 Pedro Alves <pedro@codesourcery.com>
4341
4342 revert:
4343 2008-03-14 Pedro Alves <pedro@codesourcery.com>
4344 * inf-loop.c (inferior_event_handler): Don't include remote.h.
4345 Call target_stop in the INF_QUIT_REQ case.
4346 * Makefile.in (inf-loop.o): Update.
4347
4348 2008-03-14 Pedro Alves <pedro@codesourcery.com>
4349
4350 * inf-loop.c (inferior_event_handler): Don't include remote.h.
4351 Call target_stop in the INF_QUIT_REQ case.
4352 * Makefile.in (inf-loop.o): Update.
4353
4354 2008-03-14 Pedro Alves <pedro@codesourcery.com>
4355
4356 * top.c (execute_command): Enable break, info and interrupt
4357 commands in async mode.
4358
4359 2008-03-13 Vladimir Prus <vladimir@codesourcery.com>
4360 Daniel Jacobowitz <dan@codesourcery.com>
4361
4362 * breakpoint.h (breakpoint_restore_shadows): New
4363 declaration.
4364 * breakpoint.c (breakpoint_restore_shadows): New.
4365 (read_memory_nobpt): Delete.
4366 * gdbcore.h (read_memory_nobpt): Delete declaration.
4367 * target.c (memory_xfer_partial): Call
4368 breakpoint_restore_shadows.
4369 (restore_show_memory_breakpoints)
4370 (make_show_memory_beakpoints_cleanup): New.
4371 (show_memory_breakpoints): New.
4372 * target.h (make_show_memory_beakpoints_cleanup): Declare.
4373 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint):
4374 Make sure we see memory breakpoints when checking if
4375 breakpoint is still there.
4376 * alpha-tdep.c, alphanbsd-tdep.c, frame.c, frv-tdep.c,
4377 hppa-linux-tdep.c, hppa-tdep.c, i386-linux-nat.c, i386-tdep.c,
4378 m68klinux-tdep.c, mips-tdep.c, mn10300-tdep.c, s390-tdep.c,
4379 sparc-tdep.c: Use target_read_memory instead of read_memory_nobpt.
4380
4381 2008-03-12 Pedro Alves <pedro@codesourcery.com>
4382
4383 * thread.c (add_thread): Use printf_unfiltered to print.
4384
4385 2008-03-12 Joel Brobecker <brobecker@gnat.com>
4386
4387 * sol-thread.c: Replace use of TM_I386SOL2_H by an expression
4388 that is true only on x86-solaris and x86_64-solaris.
4389 * procfs.c: Likewise. Move procfs_find_LDT_entry up together
4390 with proc_get_LDT_entry.
4391
4392 2008-03-12 Thiago Jung Bauermann <bauerman@br.ibm.com>
4393
4394 * configure.ac (AC_CHECK_FUNCS): Add check for setsid.
4395 * config.in, configure: Regenerate.
4396 * fork-child.c (fork_inferior): Call create_tty_session.
4397 * inflow.c (new_tty): Set controlling terminal with TIOCSCTTY.
4398 (create_tty_session): New function.
4399 * terminal.h: Declare create_tty_session.
4400
4401 2008-03-12 Alan Modra <amodra@bigpond.net.au>
4402
4403 PR 5900
4404 * elfread.c (elf_symtab_read): Make shndx an unsigned int.
4405 * mipsread.c: Include elf/internal.h.
4406 (read_alphacoff_dynamic_symtab): Map external reserved sym_shndx
4407 to internal range.
4408
4409 2008-03-11 Markus Deuling <deuling@de.ibm.com>
4410
4411 * win32-nat.c (do_win32_fetch_inferior_registers): Use get_regcache_arch
4412 to get at the current architecture and at the target specific vector.
4413 Add target specific vector to I387_FISEG_REGNUM and I387_FOP_REGNUM and
4414 remove define of I387_ST0_REGNUM.
4415
4416 * amd64-tdep.c (I387_ST0_REGNUM): Remove define.
4417
4418 (amd64_supply_fxsave, amd64_collect_fxsave): Use get_regcache_arch to
4419 get at the current architecture
4420 (I387_FISEG_REGNUM, I387_FOSEG_REGNUM): Add target specific vector as
4421 parameter.
4422
4423 * i386-tdep.c: Remove various define's and undef's of I387_ST0_REGNUM,
4424 I387_NUM_XMM_REGS and I387_MM0_REGNUM.
4425
4426 (I387_NUM_XMM_REGS, I387_XMM0_REGNUM, I387_MXCSR_REGNUM,
4427 I387_ST0_REGNUM, I387_FCTRL_REGNUM, I387_MM0_REGNUM,
4428 (I387_FSTAT_REGNUM): Add target specific vector as parameter.
4429
4430 (i386_register_name, i386_dbx_reg_to_regnum): Use gdbarch_tdep to get
4431 at the target specific vector.
4432
4433 (i386_get_longjmp_target): Use get_frame_arch to get at the current
4434 architecture. Use gdbarch_tdep to get at the target specific vector.
4435
4436 (i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as parameter and
4437 update caller. Use gdbarch_tdep to get at the target specific vector.
4438
4439 (i386_register_to_value: Use get_frame_arch to get at the current
4440 architecture.
4441
4442 * i386-tdep.h (i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as
4443 parameter.
4444
4445 * i387-tdep.c (I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
4446 I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM
4447 I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_ST0_REGNUM, FSAVE_ADDR,
4448 FXSAVE_ADDR, I387_XMM0_REGNUM): Add target specific vector as parameter.
4449
4450 (I387_ST0_REGNUM, I387_NUM_XMM_REGS): Remove various define's and
4451 undef's.
4452
4453 (i387_convert_register_p, i387_register_to_value,
4454 i387_value_to_register): Update call for i386_fp_regnum_p.
4455
4456 * i387-tdep.h: Remove comment.
4457 (I387_ST0_REGNUM, I387_NUM_XMM_REGS, I387_MM0_REGNUM): Add define.
4458 (I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
4459 I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM,
4460 I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_XMM0_REGNUM,
4461 I387_MXCSR_REGNUM): Add target specific vector as parameter.
4462
4463 2008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
4464
4465 * Makefile.in (fork-child.o): Update.
4466 * NEWS: Document "set exec-wrapper" and the gdbserver --wrapper
4467 argument. Gather all gdbserver features together.
4468 * fork-child.c (exec_wrapper): New variable.
4469 (fork_inferior): Use it.
4470 (startup_inferior): Skip an extra trap if using "set exec-wrapper".
4471 (unset_exec_wrapper_command, _initialize_fork_child): New.
4472
4473 2008-03-10 Hidetaka Takano <hidetaka.takano@glb.toshiba.co.jp>
4474
4475 * source.c (directory_command): Modify the determination of
4476 condition of terminal "from_tty".
4477
4478 2008-03-10 Matt Rice <ratmice@gmail.com>
4479
4480 * dwarf2read.c (set_cu_language): Add DW_LANG_ObjC.
4481
4482 2008-03-10 Hidetaka Takano <hidetaka.takano@glb.toshiba.co.jp>
4483
4484 * spu-tdep.c (info_spu_event_command): Insert a '\0' to the end
4485 of the data passing to strtoulst function.
4486 (info_spu_signal_command): Likewise.
4487
4488 2008-03-08 Vladimir Prus <vladimir@codesourcery.com>
4489
4490 * mi/mi-interp.c (mi_command_loop): Remove
4491 commented-out code.
4492
4493 2008-03-07 Joel Brobecker <brobecker@adacore.com>
4494
4495 * remote.c (extended_remote_attach_1): Make local variable pid an int
4496 instead of a pid_t.
4497
4498 2008-03-07 Joel Brobecker <brobecker@adacore.com>
4499
4500 * solib-svr4.c (svr4_same_1): New function, originally extracted
4501 from svr4_same and expanded to handle the sparc64 case.
4502 (svr4_same): Move up and reimplement using svr4_same_1.
4503 (enable_break): Use svr4_same_1 to do shared library name comparisons.
4504
4505 2008-03-07 Ramana Radhakrishnan <ramana.r@gmail.com>
4506
4507 * MAINTAINERS: Move self to Paper trail.
4508
4509 2008-03-05 Daniel Jacobowitz <dan@codesourcery.com>
4510
4511 * Makefile.in (mingw-hdep.o, posix-hdep.o, remote-fileio.o): Update.
4512 * event-loop.c (call_async_signal_handler): New.
4513 * event-loop.h (call_async_signal_handler)
4514 (gdb_call_async_signal_handler): Declare.
4515 (mark_async_signal_handler): Add comments.
4516 * event-top.c (handle_sigint): Use gdb_call_async_signal_handler.
4517 * mingw-hdep.c (sigint_event, sigint_handler): New.
4518 (gdb_select): Use them. Wait for the readline signal handler
4519 to finish.
4520 (gdb_call_async_signal_handler, _initialize_mingw_hdep): New functions.
4521 * posix-hdep.c (gdb_call_async_signal_handler): New function.
4522 * remote-fileio.c (sigint_fileio_token, async_remote_fileio_interrupt):
4523 New.
4524 (remote_fileio_ctrl_c_signal_handler): Use
4525 gdb_call_async_signal_handler.
4526 (initialize_remote_fileio): Initialize sigint_fileio_token.
4527 * remote.c (initialize_sigint_signal_handler, handle_remote_sigint): Do
4528 not initialize tokens here.
4529 (handle_remote_sigint_twice): Likewise. Reinstall
4530 handle_remote_sigint.
4531 (async_remote_interrupt_twice): Just call interrupt_query.
4532 (cleanup_sigint_signal_handler): Do not delete tokens.
4533 (remote_interrupt, remote_interrupt_twice): Use
4534 gdb_call_async_signal_handler.
4535 (interrupt_query): Reinstall the default signal handler.
4536 (_initialize_remote): Initialize tokens here.
4537
4538 2008-03-04 Joel Brobecker <brobecker@adacore.com>
4539
4540 * features/rs6000/power-core.xml, features/rs6000/power64-core.xml,
4541 features/rs6000/powerpc-601.xml, features/rs6000/rs6000.xml:
4542 Change the type of the lr register to code_ptr.
4543 * features/rs6000/powerpc-32.c, features/rs6000/powerpc-403.c,
4544 features/rs6000/powerpc-403gc.c, features/rs6000/powerpc-505.c,
4545 features/rs6000/powerpc-601.c, features/rs6000/powerpc-602.c,
4546 features/rs6000/powerpc-603.c, features/rs6000/powerpc-604.c,
4547 features/rs6000/powerpc-64.c, features/rs6000/powerpc-7400.c,
4548 features/rs6000/powerpc-750.c, features/rs6000/powerpc-860.c,
4549 features/rs6000/powerpc-e500.c, features/rs6000/rs6000.c: Regenerate.
4550
4551 2008-03-03 James E. Wilson <wilson@tuliptree.org>
4552
4553 * MAINTAINERS: Update my email address.
4554
4555 2008-03-03 Keith Seitz <keiths@redhat.com>
4556
4557 From Dave Murphy <davem@devkitpro.org>:
4558 * configure.ac: Set tcl configdir to win under mingw.
4559 * configure: Regenerate.
4560
4561 2008-03-03 Daniel Jacobowitz <dan@codesourcery.com>
4562
4563 * breakpoint.c (fetch_watchpoint_value): New function.
4564 (update_watchpoint): Set and clear val_valid. Use
4565 fetch_watchpoint_value. Handle unreadable values on the
4566 value chain. Correct check for user-requested array watchpoints.
4567 (breakpoint_init_inferior): Clear val_valid.
4568 (watchpoint_value_print): New function.
4569 (print_it_typical): Use it. Do not free or clear old_val. Print
4570 watchpoints even if old_val == NULL.
4571 (watchpoint_check): Use fetch_watchpoint_value. Check for values
4572 becoming readable or unreadable.
4573 (watch_command_1): Use fetch_watchpoint_value. Set val_valid.
4574 (do_enable_watchpoint): Likewise.
4575 * breakpoint.h (struct breakpoint): Update comment for val. Add
4576 val_valid.
4577 * NEWS: Mention watchpoints on inaccessible memory.
4578
4579 2007-02-29 Daniel Jacobowitz <dan@codesourcery.com>
4580
4581 * Makefile.in (i386-nat.o): Update.
4582 * amd64-linux-nat.c (_initialize_amd64_linux_nat): Call
4583 i386_use_watchpoints.
4584 * i386-linux-nat.c (_initialize_i386_linux_nat): Call
4585 i386_use_watchpoints.
4586 * i386-nat.c (i386_stopped_data_address): Take two arguments.
4587 (i386_stopped_by_watchpoint): Update call.
4588 (i386_can_use_hw_breakpoint, i386_use_watchpoints): New.
4589 * config/i386/nm-i386.h: Conditionalize definitions on
4590 ! I386_WATCHPOINTS_IN_TARGET_VECTOR.
4591 (i386_use_watchpoints): Declare.
4592 (i386_stopped_data_address): Update.
4593 * config/i386/nm-linux.h (I386_WATCHPOINTS_IN_TARGET_VECTOR): Define.
4594 * config/i386/nm-linux64.h (I386_WATCHPOINTS_IN_TARGET_VECTOR): Define.
4595
4596 2008-02-29 Joel Brobecker <brobecker@adacore.com>
4597
4598 GDB 6.8 branch created (branch timestamp: 2008-02-26 10:00 UTC)
4599 * version.in: Bump version to 6.8.50.20080229-cvs.
4600
4601 2008-02-28 Markus Deuling <deuling@de.ibm.com>
4602
4603 * f-typeprint.c (f_print_type): Handle NULL pointer in VARSTRING
4604 properly.
4605
4606 2008-02-28 Tom Tromey <tromey@redhat.com>
4607
4608 * infcmd.c (notice_args_read): Print result of get_inferior_args.
4609
4610 2008-02-28 Daniel Jacobowitz <dan@codesourcery.com>
4611
4612 * infcmd.c (kill_if_already_running): Make static. Use
4613 target_require_runnable.
4614 * target.c (target_require_runnable): New.
4615 * target.h (target_require_runnable): Declare.
4616
4617 2008-02-28 Daniel Jacobowitz <dan@codesourcery.com>
4618
4619 * frame.c (reinit_frame_cache): Only annotate if frames were
4620 previously valid.
4621
4622 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
4623
4624 * regformats/reg-ppc.dat: Rename "ps" to "msr".
4625 * regformats/reg-ppc64.dat: Likewise.
4626
4627 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
4628
4629 * features/Makefile (%.dat): Emit xmltarget statement.
4630
4631 * regformats/regdat.sh: Support xmltarget and xmlarch statments.
4632 Generate code to set gdbserver_xmltarget in init_registers_${name}.
4633
4634 * regformats/arm-with-iwmmxt.dat: Regenerate.
4635 * regformats/mips64-linux.dat: Regenerate.
4636 * regformats/mips-linux.dat: Regenerate.
4637 * regformats/rs6000/powerpc-32.dat: Regenerate.
4638 * regformats/rs6000/powerpc-64.dat: Regenerate.
4639 * regformats/rs6000/powerpc-e500.dat: Regenerate.
4640
4641 * regformats/reg-arm.dat: Add xmlarch statement.
4642 * regformats/reg-i386.dat: Likewise.
4643 * regformats/reg-i386-linux.dat: Likewise.
4644 * regformats/reg-x86-64-linux.dat: Likewise.
4645 * regformats/reg-spu.dat: Likewise.
4646
4647 2008-02-27 Daniel Jacobowitz <dan@codesourcery.com>
4648
4649 * remote.c (remote_wait, remote_async_wait): Stop if we receive
4650 an error.
4651
4652 2008-02-27 Daniel Jacobowitz <dan@codesourcery.com>
4653
4654 * utils.c (debug_timestamp): New.
4655 (vfprintf_unfiltered): Print timestamps if requested.
4656 (show_debug_timestamp): New.
4657 (initialize_utils): Register "set debug timestamp".
4658 * NEWS: Mention "set debug timestamp". Add GDB 6.8 section.
4659
4660 2008-02-27 Joel Brobecker <brobecker@adacore.com>
4661
4662 * breakpoint.c (skip_prologue_sal): New function.
4663 (resolve_sal_pc): Adjust SAL past prologue if the SAL was
4664 computed from a line number.
4665
4666 2008-02-27 Joel Brobecker <brobecker@adacore.com>
4667
4668 * features/rs6000/power-core.xml, features/rs6000/power64-core.xml
4669 features/rs6000/powerpc-601.xml, features/rs6000/rs6000.xml:
4670 Set PC register type to "code_ptr".
4671 * features/rs6000/powerpc-32.c, features/rs6000/powerpc-403.c,
4672 features/rs6000/powerpc-403gc.c, features/rs6000/powerpc-505.c,
4673 features/rs6000/powerpc-601.c, features/rs6000/powerpc-602.c,
4674 features/rs6000/powerpc-603.c, features/rs6000/powerpc-604.c,
4675 features/rs6000/powerpc-64.c, features/rs6000/powerpc-7400.c,
4676 features/rs6000/powerpc-750.c, features/rs6000/powerpc-860.c,
4677 features/rs6000/powerpc-e500.c, features/rs6000/rs6000.c:
4678 Regenerate.
4679
4680 2008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
4681
4682 * regformats/regdat.sh: Rename init_registers function in
4683 generated file to init_registers_${name}.
4684
4685 * regformats/reg-crisv32.dat: Set "name" to crisv32.
4686 * regformats/reg-ppc64.dat: Set "name" to ppc64.
4687 * regformats/reg-s390x.dat: Set "name" to s390x.
4688
4689 2008-02-26 Greg Law <glaw@undo-software.com>
4690
4691 * regcache.c (registers_changed): Call reinit_frame_cache.
4692
4693 2008-02-26 Daniel Jacobowitz <dan@codesourcery.com>
4694
4695 * configure.tgt (sh-*-linux*): Match sh*. Add glibc-tdep.o.
4696 * sh-linux-tdep.c (sh_linux_init_abi): Use glibc_skip_solib_resolver
4697 and svr4_fetch_objfile_link_map.
4698 * Makefile.in (sh-linux-tdep.o): Update.
4699
4700 2008-02-26 Thiago Jung Bauermann <bauerman@br.ibm.com>
4701
4702 * amd64-tdep.c (amd64_classify): Add support for decimal float
4703 types.
4704 * i386-tdep.c (i386_return_value): Make 128-bit decimal float
4705 use the struct return convention.
4706
4707 2008-02-26 Nick Roberts <nickrob@snap.net.nz>
4708
4709 * breakpoint.c (print_one_breakpoint_location): Revert Enb field
4710 to old format. Discard breakpoint address if shared library is
4711 unloaded.
4712 (breakpoint_1): Adjust formatting of table header accordingly.
4713
4714 2008-02-25 Vladimir Prus <vladimir@codesourcery.com>
4715
4716 * remote.c (remote_get_threadlist): If the response
4717 is empty, don't try to parse it.
4718
4719 2008-02-23 Vladimir Prus <vladimir@codesourcery.com>
4720
4721 Unbreak 'target async'.
4722 * serial.c (serial_async): Set the
4723 handler function before enabling async
4724 mode.
4725
4726 2008-02-22 Daniel Jacobowitz <dan@codesourcery.com>
4727
4728 * solib-svr4.c (enable_break): Convert r_brk to a code address.
4729
4730 2008-02-21 Pedro Alves <pedro@codesourcery.com>
4731
4732 * remote.c (extended_remote_attach_1): Set attach_flag.
4733 (extended_remote_create_inferior_1): Clear attach_flag.
4734
4735 2008-02-20 Daniel Jacobowitz <dan@codesourcery.com>
4736
4737 * mipsnbsd-tdep.c (mipsnbsd_ilp32_fetch_link_map_offsets): Set
4738 r_brk_offset.
4739 (mipsnbsd_lp64_fetch_link_map_offsets): Likewise.
4740 * solib-svr4.c (solib_svr4_r_brk): New.
4741 (open_symbol_file_object, svr4_current_sos): Always check the
4742 debug base.
4743 (svr4_fetch_objfile_link_map): Do not set debug_base.
4744 (enable_break): Use r_brk if it is set.
4745 (svr4_ilp32_fetch_link_map_offsets): Set r_brk_offset.
4746 (svr4_lp64_fetch_link_map_offsets): Likewise.
4747 * solib-svr4.h (struct link_map_offsets): Add r_brk_offset.
4748
4749 2008-02-20 Markus Deuling <deuling@de.ibm.com>
4750 Mark Kettenis <kettenis@gnu.org>
4751
4752 * alpha-tdep.c (alpha_heuristic_unwind_cache): Replace saved_regs by
4753 trad_frame_saved_reg.
4754 (trad-frame.h): New include.
4755
4756 (alpha_heuristic_frame_unwind_cache): Use trad_frame_alloc_saved_regs
4757 instead of frame_obstack_zalloc.
4758 (alpha_heuristic_frame_prev_register): Use trad_frame_get_prev_register.
4759
4760 * Makefile.in (alpha-tdep.o): Add dependency to trad_frame_h.
4761
4762 2008-02-20 Markus Deuling <deuling@de.ibm.com>
4763
4764 * rs6000-tdep.c (gdb_print_insn_powerpc): Get the current endianess
4765 from disassemble_info instead of gdbarch_byte_order.
4766
4767 * mips-tdep.c (gdb_print_insn_mips): Likewise.
4768 * arm-tdep.c (gdb_print_insn_arm): Likewise.
4769
4770 2008-02-20 Markus Deuling <deuling@de.ibm.com>
4771
4772 * gdbarch.sh (memory_insert_breakpoint, memory_remove_breakpoint): Add
4773 gdbarch as parameter.
4774
4775 * gdbarch.{c,h}: Regenerate.
4776
4777 * ppc-tdep.h (ppc_linux_memory_remove_breakpoint): Add gdbarch as
4778 parameter.
4779 * mem-break.c (default_memory_insert_breakpoint)
4780 (default_memory_remove_breakpoint): Likewise.
4781 * target.h (default_memory_remove_breakpoint)
4782 (default_memory_insert_breakpoint): Likewise.
4783
4784 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Add gdbarch as
4785 parameter. Replace current_gdbarch by gdbarch.
4786 * m32r-tdep.c (m32r_memory_insert_breakpoint)
4787 (m32r_memory_remove_breakpoint): Likewise.
4788
4789 2008-02-19 Daniel Jacobowitz <dan@codesourcery.com>
4790
4791 * MAINTAINERS: Add Vladimir Prus as MI maintainer.
4792
4793 2008-02-19 Joel Brobecker <brobecker@adacore.com>
4794
4795 * NEWS: Add entry describing Add support improvements.
4796
4797 2008-02-18 Markus Deuling <deuling@de.ibm.com>
4798
4799 * m68klinux-nat.c (getfpregs_supplies): Replace gdbarch_fp0_regnum by
4800 M68K_FP0_REGNUM.
4801
4802 2008-02-18 Markus Deuling <deuling@de.ibm.com>
4803
4804 * sentinel-frame.c (sentinel_frame_prev_register): Do not call
4805 register_offset_hack anymore.
4806
4807 * regcache.{c,h} (register_offset_hack): Remove.
4808
4809 2008-02-18 Markus Deuling <deuling@de.ibm.com>
4810
4811 * hppa-tdep.h (find_global_pointer): Add gdbarch as parameter.
4812
4813 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer): Likewise. Replace
4814 current_gdbarch by gdbarch.
4815 (hppa64_hpux_find_global_pointer): Likewise.
4816 * hppa-tdep.c (hppa_find_global_pointer): Likewise.
4817 (hppa32_push_dummy_call, hppa64_push_dummy_call): Update call for
4818 find_global_pointer.
4819
4820 * hppabsd-tdep.c (hppabsd_find_global_pointer): Add gdbarch as
4821 parameter.
4822 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
4823
4824 * hppa-linux-nat.c (hppa_linux_register_addr): Use ARRAY_SIZE instead
4825 of gdbarch_num_regs.
4826
4827 * hppa-hpux-tdep.c (hppa_hpux_sr_for_addr): Add gdbarch as parameter and
4828 replace current_gdbarch by gdbarch.
4829 (hppa_hpux_push_dummy_code): Update call for hppa_hpux_sr_for_addr.
4830
4831 2008-02-18 Markus Deuling <deuling@de.ibm.com>
4832
4833 * rs6000-nat.c (exec_one_dummy_insn, regmap): Add gdbarch as parameter
4834 and replace current_gdbarch by gdbarch.
4835
4836 (store_register): Update call for exec_one_dummy_insn.
4837 (fetch_register, store_register): Update call of regmap.
4838
4839 * ppcnbsd-nat.c (getregs_supplies, getfpregs_supplies): Add gdbarch as
4840 parameter and replace current_gdbarch by gdbarch.
4841
4842 (ppcnbsd_store_inferior_registers): Use get_regcache_arch to get at
4843 the current architecture. Update call for getregs_supplies and
4844 getfpregs_supplies.
4845 (ppcnbsd_fetch_inferior_registers): Likewise.
4846
4847 * ppcobsd-nat.c (getfpregs_supplies): Add gdbarch as parameter and
4848 replace current_gdbarch by gdbarch.
4849 (ppcobsd_fetch_registers, ppcobsd_store_registers): Use
4850 get_regcache_arch to get at the current architecture. Update call for
4851 getfpregs_supplies.
4852
4853 2008-02-18 Markus Deuling <deuling@de.ibm.com>
4854
4855 * arch-utils.c (gdbarch_from_bfd): Remove unnecessary {old,new}_gdbarch
4856 variables.
4857
4858 2008-02-15 Markus Deuling <deuling@de.ibm.com>
4859
4860 * mips-linux-tdep.c (mips_linux_init_abi): Remove internal error.
4861
4862 2008-02-14 Vladimir Prus <vladimir@codesourcery.com>
4863
4864 * NEWS: Mention pending breakpints in MI.
4865
4866 2008-02-14 Markus Deuling <deuling@de.ibm.com>
4867
4868 * Makefile.in (ALL_TARGET_OBS): Remove dependency to xtensa-linux-nat.o.
4869
4870 2008-02-13 Markus Deuling <deuling@de.ibm.com>
4871
4872 Add script to build and test GDB using enable-targets=all.
4873
4874 * gdb_buildall.sh: New file.
4875
4876 2008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
4877
4878 * NEWS (New native configurations): Xtensa GNU/Linux.
4879 (New targets): Xtensa GNU/Linux.
4880 * Makefile.in (ALL_TARGET_OBS): Add xtensa-linux-nat.o and
4881 xtensa-linux-tdep.o
4882 (ALLDEPFILES): Add xtensa-linux-tdep.c and xtensa-linux-nat.c
4883 (xtensa-linux-nat.o, xtensa-linux-tdep.o): New dependencies.
4884 * configure.tgt (xtensa*-*-linux*): New entry.
4885 * xtensa-config.c (xtensa_tdep): New variable.
4886 (xtensa_config_byte_order, xtensa_config_tdep): Removed.
4887 (rmap): Change format based on new macro XTREG.
4888 (XTENSA_CONFIG_INSTANTIATE): Use new macro defined in xtensa-tdep.h.
4889 * xtensa-linux-nat.c: New.
4890 * xtensa-linux-tdep.c: New.
4891 * xtensa-xtregs.c: New.
4892 * xtensa-tdep.h (xtensa_elf_gregset_t): Update.
4893 (XTENSA_ELF_NGREG, XTREG, XTREG_END, XTENSA_GDBARCH_TDEP_INSTANTIATE)
4894 (XCHAL_NUM_CONTEXTS, XCHAL_HAVE_EXCEPTIONS): New macros.
4895 (xtensa_register_t): New field coprocessor.
4896 (XTENSA_REGISTER_FLAGS_PRIVILEGED): Name spelling corrected.
4897 * xtensa-tdep.c (xtensa_config_tdep, xtensa_config_byte_order): Removed.
4898 (xtensa_pseudo_register_read, xtensa_pseudo_register_write):
4899 Update to handle privileged registers.
4900 (xtensa_supply_gregset) Remove exccause and excvaddr registers.
4901 (xtensa_push_dummy_call): Set windowstart register correctly.
4902 (call0_analyze_prologue): Initialize xtensa_default_isa.
4903 (xtensa_derive_tdep): New.
4904 (xtensa_gdbarch_init): Get rid of xtensa_config_byte_order and
4905 xtensa_config_tdep, use XCHAL_HAVE_BE and xtensa_tdep instead.
4906 Call xtensa_derive_tdep().
4907 * config/xtensa/linux.mh: New.
4908 * regformats/reg-xtensa.dat: New.
4909
4910 2008-02-09 Aleksandar Ristovski <aristovski@qnx.com> (tiny change)
4911
4912 * corelow.c (core_open): Use IS_ABSOLUTE_PATH.
4913 (filenames.h): New include.
4914 * Makefile.in (corelow.o): Add dependency for filenames.h.
4915
4916 2008-02-08 Doug Evans <dje@google.com>
4917
4918 * source.c (find_and_open_source): Always rewrite absolute filenames.
4919
4920 2008-02-07 Doug Evans <dje@google.com>
4921
4922 * breakpoint.c: #include "hashtab.h".
4923 (ambiguous_names_p): New fn.
4924 (update_breakpoint_locations): When restoring bp enable status, don't
4925 compare function names if any functions have same name.
4926 * Makefile.in (breakpoint.o): Add hashtab.h dependency.
4927
4928 2008-02-07 Joel Brobecker <brobecker@adacore.com>
4929
4930 * ada-lang.c (symbol_completion_add): Make SV parameter a VEC**
4931 instead of just a VEC*. Update use of SV.
4932 (ada_make_symbol_completion_list): Update symbol_completion_add calls.
4933
4934 2007-02-07 Joel Brobecker <brobecker@adacore.com>
4935
4936 * NEWS: Put all new commands since gdb-6.7 together.
4937
4938 2007-02-07 Joel Brobecker <brobecker@adacore.com>
4939
4940 * ada-lang.c: #include "vec.h".
4941 (struct string_vector, new_string_vector, string_vector_append):
4942 Delete.
4943 (char_ptr): New typedef.
4944 (DEF_VEC_P (char_ptr)): New VEC type.
4945 (symbol_completion_add): Update profile to take the new VEC type
4946 instead of the old string_vector structure. Update code accordingly.
4947 (ada_make_symbol_completion_list): Use the new VEC type instead of
4948 the old string_vector structure, and update the code accordingly.
4949 * Makefile.in (ada-lang.o): Add dependency on vec.h.
4950
4951 2008-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
4952
4953 * p-exp.y: Set current_type in missing places.
4954 (leftdiv_is_integer): New static variable.
4955 Typecast right operand of BINOP_DIV to long_double if both operands
4956 are integers.
4957
4958 2008-02-06 Maciej W. Rozycki <macro@mips.com>
4959
4960 * remote-mips.c (set_breakpoint): Rename to...
4961 (mips_set_breakpoint): ... this.
4962 (clear_breakpoint): Rename to...
4963 (mips_clear_breakpoint): ... this.
4964 (common_breakpoint): Rename to...
4965 (mips_common_breakpoint): ... this.
4966 (check_lsi_error): Rename to...
4967 (mips_check_lsi_error): ... this.
4968
4969 2007-02-05 Joel Brobecker <brobecker@adacore.com>
4970
4971 * language.h (struct language_defn): Add new field
4972 la_make_symbol_completion_list.
4973 * symtab.c (default_make_symbol_completion_list): Renames
4974 make_symbol_completion_list.
4975 (make_symbol_completion_list): New function.
4976 * symtab.h (default_make_symbol_completion_list): Add declaration.
4977 * langauge.c (unknown_language): Set la_make_symbol_completion_list.
4978 (auto_language, local_language): Likewise.
4979 * objc-lang.c (objc_language_defn): Likewise.
4980 * scm-lang.c (scm_language_defn): Likewise.
4981 * m2-lang.c (m2_language_defn): Likewise.
4982 * f-lang.c (f_language_defn): Likewise.
4983 * jv-lang.c (java_language_defn): Likewise.
4984 * p-lang.c (pascal_language_defn): Likewise.
4985 * c-lang.c (c_language_defn, cplus_language_defn, asm_language_defn)
4986 (minimal_language_defn): Likewise.
4987 * ada-lang.c (struct string_vector): New structure.
4988 (new_string_vector, string_vector_append, ada_unqualified_name)
4989 (add_angle_brackets, symbol_completion_match, symbol_completion_add)
4990 (ada_make_symbol_completion_list): New functions.
4991 (ada_language_defn): Set la_make_symbol_completion_list.
4992 * ada-lang.h (ada_make_symbol_completion_list): Remove declaration,
4993 this function is static.
4994
4995 2008-02-05 Kevin Buettner <kevinb@redhat.com>
4996
4997 * mn10300-tdep.c (mn10300_push_dummy_call): Adjust stack pointer
4998 to account for call site optimizations.
4999
5000 2008-02-05 Andrzej Zaborowski <balrogg@gmail.com>
5001
5002 * tracepoint.c (read_actions): Handle end-of-text indicator
5003 in action list properly. (Committed by Jim Blandy)
5004
5005 2008-02-05 Jim Blandy <jimb@red-bean.com>
5006
5007 * ax-gdb.c (gen_expr): Yield ordinary error if asked to trace a
5008 pseudoregister, not an internal error.
5009 Reported by: Andrzej Zaborowski
5010
5011 2008-02-04 Vladimir Prus <vladimir@codesourcery.com>
5012
5013 * varobj.c (c_value_of_variable): Use xstrdup.
5014
5015 2008-02-04 Vladimir Prus <vladimir@codesourcery.com>
5016
5017 Update stored rendition of varobj value when format changes.
5018 * varobj.c (varobj_set_display_format): Recomputed
5019 print_value.
5020 (c_value_of_variable): Return print_value.
5021
5022 2008-02-03 Doug Evans <dje@google.com>
5023
5024 * eval.c (evaluate_subexp_standard): Fix type of result of mixed
5025 integer/float division operations when EVAL_AVOID_SIDE_EFFECTS.
5026 * valops.c (value_one): New function.
5027 * value.h (value_one): Declare.
5028
5029 Fix argument promotion for binary arithmetic ops for C.
5030 * valarith.c (unop_result_type): New fn.
5031 (binop_result_type): New fn.
5032 (value_binop): Move result type computation to binop_result_type.
5033 (value_pos, value_neg, value_complement): Move result type
5034 computation to unop_result_type.
5035
5036 PR 2384
5037 * gdbtypes.c (get_vptr_fieldno): Renamed from fill_in_vptr_fieldno.
5038 Return basetype, fieldno if found. All callers updated.
5039 Don't cache TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE if from different
5040 objfile.
5041 * gdbtypes.h (get_vptr_fieldno): Renamed from fill_in_vptr_fieldno.
5042 * symfile.h (fill_in_vptr_fieldno): Delete.
5043
5044 2008-02-02 Doug Evans <dje@google.com>
5045
5046 * valarith.c (value_binop): Handle unsigned BINOP_REM division by zero.
5047
5048 * typeprint.c (*): Whitespace cleanup.
5049
5050 2008-02-02 Mark Kettenis <kettenis@gnu.org>
5051 Luis Machado <luisgpm@br.ibm.com>
5052 Thiago Jung Bauermann <bauerman@br.ibm.com>
5053
5054 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Pass floats that
5055 don't fit into registerson the stack the way GCC does.
5056
5057 2008-02-01 Joel Brobecker <brobecker@adacore.com>
5058
5059 * symtab.c (symbol_set_names): Do not add an entry in the demangling
5060 hash table for Ada symbols. Just store the linkage name as is,
5061 and leave the demangled_name as NULL.
5062
5063 2007-02-01 Joel Brobecker <brobecker@adacore.com>
5064
5065 * dwarf2read.c (add_partial_symbol): Always store all Ada subprograms
5066 in the global scope.
5067 (new_symbol): Likewise.
5068
5069 2008-02-01 Vladimir Prus <vladimir@codesourcery.com>
5070
5071 * breakpoint.c (break_command_1): Return void.
5072 (break_command_really): Return void. Rethrow
5073 exceptions instead of returning.
5074 (gdb_breakpoint): Remove the error_message parameter.
5075 Return void. Rename to set_breakpoint.
5076 * gdb.h (gdb_breakpoint): Rename and move to...
5077 * breakpoint.h (set_breakpoint): ...here.
5078 * mi/mi-cmb-break.c (mi_cmd_break_insert): Restore
5079 event hooks even if exception is thrown. Adjust to
5080 gdb_breakpoint interface changes.
5081
5082
5083 2008-02-01 Thiago Jung Bauermann <bauerman@br.ibm.com>
5084
5085 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Write 32-bit
5086 float in both first and second word in the doubleword, to support
5087 old and new ABIs.
5088
5089 2008-02-01 Vladimir Prus <vladimir@codesourcery.com>
5090
5091 Properly rethrow exception. This fixes errors
5092 about non-existent functions for -break-insert.
5093 * breakpoint.c (break_command_really): Use throw_exception
5094 for rethrowing. If rethrowing, don't print the exception.
5095
5096 2008-01-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
5097
5098 * NEWS: Mention Decimal Floating Point support.
5099
5100 2008-01-31 Joel Brobecker <brobecker@adacore.com>
5101
5102 * std-regs.c (value_of_builtin_frame_pc_reg): Change the returned
5103 value type to builtin_type_void_func_ptr.
5104
5105 2008-01-31 Andreas Krebbel <krebbel1@de.ibm.com>
5106
5107 * s390-tdep.c (is_float_singleton, is_float_like,
5108 alignment_of, s390_return_value): Make checks for
5109 TYPE_CODE_FLT to match TYPE_CODE_DECFLOAT as well.
5110
5111 2008-01-31 Luis Machado <luisgpm@br.ibm.com>
5112 Thiago Jung Bauermann <bauerman@br.ibm.com>
5113
5114 * infcmd.c (default_print_registers_info): Also print hex
5115 raw contents for TYPE_CODE_DECFLOAT registers.
5116 * ppc-tdep.h (gdbarch_tdep): Add ppc_dl0_regnum member.
5117 * rs6000-tdep.c (IS_DFP_PSEUDOREG): New macro.
5118 (rs6000_register_name): Add support for DFP pseudo-registers.
5119 (rs6000_pseudo_register_type): Likewise.
5120 rs6000_pseudo_register_reggroup_p): Likewise.
5121 (ppc_pseudo_register_read): New function.
5122 (ppc_pseudo_register_write): Likewise.
5123 (rs6000_pseudo_register_read): Likewise.
5124 (rs6000_pseudo_register_write): Likewise.
5125 (e500_pseudo_register_read): Move checks to
5126 rs6000_pseudo_register_read.
5127 (e500_pseudo_register_write): Move checks to
5128 rs6000_pseudo_register_write.
5129 (rs6000_gdbarch_init): Initialize tdep->ppc_dl0_regnum. Install
5130 rs6000_pseudo_register_read and rs6000_pseudo_register_write
5131 in gdbarch if SPE or DFP is available. Adjust gdbarch's
5132 num_pseudo_regs to account for DFP pseudo regs.
5133
5134 2008-01-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
5135
5136 * ppc-tdep.h (struct gdbarch_tdep): Remove ppc_ev31_regnum member.
5137 * rs6000-tdep.c (IS_SPE_PSEUDOREG): New macro.
5138 (spe_register_p, rs6000_register_name, rs6000_pseudo_register_type,
5139 rs6000_pseudo_register_reggroup_p, e500_move_ev_register,
5140 e500_pseudo_register_read, e500_pseudo_register_write): Use
5141 IS_SPE_PSEUDOREG macro.
5142 (rs6000_frame_cache): Remove use of tdep->ppc_ev31_regnum.
5143 (rs6000_gdbarch_init): Remove unnecessary num_sprs local variable.
5144 Remove initialization of tdep->ppc_ev31_regnum.
5145
5146 2008-01-08 Paul Hilfinger <hilfinger@adacore.com>
5147
5148 * printcmd.c (print_formatted): Handle references as for unformatted
5149 prints.
5150
5151 2008-01-30 Joel Brobecker <brobecker@adacore.com>
5152
5153 * eval.c (evaluate_subexp_standard): Add handling of user
5154 registers when in EVAL_AVOID_SIDE_EFFECTS mode.
5155
5156 2008-01-30 Pierre Muller <muller@ics.u-strasbg.fr>
5157
5158 * eval.c (evaluate_subexp_standard): Support
5159 BINOP_INTDIV opcode.
5160
5161 2008-01-30 Paul N. Hilfinger <hilfinger@adacore.com>
5162
5163 * valarith.c (value_binop): Add floating-point BINOP_MIN and
5164 BINOP_MAX cases.
5165 For BINOP_EXP, use length and signedness of left operand only for
5166 result, as for shifts.
5167 For integral operands to BINOP_EXP, use new integer_pow and
5168 uinteger_pow functions so as to get full range of results.
5169 (integer_pow): New function.
5170 (uinteger_pow): New function.
5171
5172 2008-01-30 Vladimir Prus <vladimir@codesourcery.com>
5173
5174 Use vector for varobj_list_children interface.
5175 * gdb/varobj.c (varobj_list_children): Return vector
5176 of varobjs.
5177 * gdb/varobj.h (varobj_list_children): Adjust
5178 prototype.
5179 (varobj_p): Declare. Declare vector thereof.
5180 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Adjust
5181 for varobj_list_children change.
5182 * Makefile.in (varobj_h): Update dependencies.
5183
5184 2008-01-30 Thiago Jung Bauermann <bauerman@br.ibm.com>
5185
5186 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Add support for
5187 TYPE_CODE_DECFLOAT arguments.
5188 (ppc64_sysv_abi_push_dummy_call) Likewise.
5189 (get_decimal_float_return_value): New function.
5190 (do_ppc_sysv_return_value): Add support for TYPE_CODE_DECFLOAT return
5191 values by calling get_decimal_float_return_value.
5192 (ppc64_sysv_abi_return_value): Likewise.
5193
5194 2008-01-30 Nick Roberts <nickrob@snap.net.nz>
5195
5196 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Add field
5197 for preprocessor macro information. Formatting changes.
5198
5199 2008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
5200
5201 * remote.c (struct remote_state): Add cached_wait_status.
5202 (remote_exec_file): New variable.
5203 (PACKET_vAttach, PACKET_vRun): New constants.
5204 (extended_remote_restart): Do not query for status.
5205 (struct start_remote_args): New.
5206 (remote_start_remote): Take it as a second argument. Check
5207 whether the target is running. Issue an error for non-running
5208 non-extended targets. Cache the wait status. Set inferior_ptid
5209 here.
5210 (remote_open_1): Prompt to disconnect non-running targets. Make
5211 sure the target is marked running. Do not set inferior_ptid here.
5212 Update call to remote_start_remote. Do not call remote_check_symbols
5213 if the target is not running.
5214 (remote_detach_1): Rename from remote_detach. Take an EXTENDED
5215 argument. Handle a non-running target.
5216 (remote_detach): Use it.
5217 (extended_remote_detach): New.
5218 (remote_disconnect): Fix typo. Use remoute_mourn_1.
5219 (extended_remote_attach_1, extended_remote_attach)
5220 (extended_async_remote_attach): New.
5221 (remote_vcont_resume): Remove unused variable.
5222 (remote_wait, remote_async_wait): Use any cached wait status.
5223 (putpkt_binary, getpkt): Clear any cached wait status.
5224 (extended_remoute_mourn_1): New.
5225 (extended_remote_mourn): Use it.
5226 (extended_async_remote_mourn, extended_remote_run): New.
5227 (extended_remote_create_inferior_1): New.
5228 (extended_remote_create_inferior): Use it.
5229 (extended_remote_async_create_inferior): Likewise.
5230 (remote_xfer_partial): Skip for non-executing targets.
5231 (init_extended_remote_ops): Set to_detach and to_attach.
5232 (init_extended_async_remote_ops): Likewise. Use
5233 extended_async_remote_mourn.
5234 (_initialize_remote): Register vAttach, vRun, and
5235 set remote exec-file.
5236 * NEWS: Mention vAttach, vRun, and gdbserver extended-remote support.
5237
5238 2008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
5239
5240 * Makefile.in (symfile.o): Update.
5241 * NEWS: Mention exec tracing support.
5242 * inf-ttrace.c (inf_ttrace_wait): Return TARGET_WAITKIND_EXECD for
5243 exec events.
5244 * infcmd.c (kill_if_already_running, detach_command)
5245 (disconnect_command): Replace SOLIB_RESTART with no_shared_libraries.
5246 * infrun.c (MAY_FOLLOW_EXEC, may_follow_exec): Delete.
5247 (follow_exec): Do not check may_follow_exec. Do not mourn and push
5248 targets. Apply the sysroot path to the loaded executable. Use
5249 no_shared_libraries.
5250 * linux-nat.c (linux_child_follow_fork): Print fork following
5251 messages if verbose.
5252 (kill_wait_callback): Kill again before waiting a second time.
5253 * symfile.c (symbol_file_clear): Replace SOLIB_RESTART with
5254 no_shared_libraries.
5255
5256 2008-01-29 Joel Brobecker <brobecker@adacore.com>
5257
5258 * amd64-tdep.c (amd64_classify): Add handling of TYPE_CODE_CHAR.
5259
5260 2008-01-29 Joel Brobecker <brobecker@adacore.com>
5261
5262 * nto-tdep.h: Remove #include "defs.h".
5263 * nto-tdep.c: Add #include "defs.h".
5264 * Makefile.in (nto_tdep_h): Update dependencies.
5265 (nto-tdep.o): Likewise.
5266
5267 2008-01-29 Joel Brobecker <brobecker@adacore.com>
5268
5269 * infrun.c (wait_for_inferior): Add treat_exec_as_sigtrap parameter
5270 and use it.
5271 (proceed, start_remote): Update call to wait_for_inferior.
5272 * inferior.h (wait_for_inferior): Update declaration.
5273 * fork-child.c, infcmd.c, solib-irix.c, solib-osf.c, solib-sunos.c,
5274 solib-svr4.c, win32-nat.c: Update calls to wait_for_inferior.
5275 * inf-ttrace.c (inf_ttrace_wait): Report TTEVT_EXEC events as
5276 TARGET_WAITKIND_EXECD instead of TARGET_WAITKIND_STOPPED.
5277
5278 2008-01-29 Aleksandar Ristovski <aristovski@qnx.com>
5279
5280 * varobj (adjust_value_for_child_access): Added checking for
5281 returned value from gdb_value_ind.
5282 (c_describe_child): Likewise.
5283 (cplus_describe_child): Fixed a typo.
5284
5285 2008-01-29 Jim Blandy <jimb@red-bean.com>
5286
5287 * MAINTAINERS: Update my info.
5288
5289 2008-01-29 Vladimir Prus <vladimir@codesourcery.com>
5290
5291 Use multiple locations for hardware watchpoints.
5292 This eliminates the need to traverse value chain, doing
5293 various checks, in three different places.
5294
5295 * breakpoint.h (struct bp_location): New fields
5296 lengths and watchpoint_type.
5297 (struct breakpoint): Remove the val_chain field.
5298 * breakpoint.c (is_hardware_watchpoint): New.
5299 (free_valchain): Remove.
5300 (update_watchpoint): New.
5301 (insert_bp_location): For hardware watchpoint, just
5302 directly insert it.
5303 (insert_breakpoints): Call update_watchpoint_locations
5304 on all watchpoints. If we have failed to insert
5305 any location of a hardware watchpoint, remove all inserted
5306 locations.
5307 (remove_breakpoint): For hardware watchpoints, directly
5308 remove location.
5309 (watchpoints_triggered): Iterate over locations.
5310 (bpstat_stop_status): Use only first location of
5311 a resource watchpoint.
5312 (delete_breakpoint): Don't call free_valchain.
5313 (print_one_breakpoint): Don't print all
5314 locations for watchpoints.
5315 (breakpoint_re_set_one): Use update_watchpoint for
5316 watchpoints.
5317
5318 2008-01-29 Vladimir Prus <vladimir@codesourcery.com>
5319
5320 Don't reset watchpoint block on solib load.
5321
5322 * breakpoint.c (insert_bp_location): For watchpoints,
5323 recompute condition.
5324 (breakpoint_re_set_one): Instead of recomputing value
5325 and condition for watchpoints, just reset value and
5326 let insert_breakpoints/insert_bp_location recompute it.
5327 Don't do anything about disabled watchpoint.
5328
5329 2008-01-29 Pierre Muller <muller@ics.u-strasbg.fr>
5330
5331 * valarith.c (value_binop): Handle unsigned integer
5332 division by zero.
5333
5334 2008-01-28 Kevin Buettner <kevinb@redhat.com>
5335
5336 * mn10300-tdep.c (mn10300_analyze_prologue): Check for an
5337 instruction pattern that appears frequently in position
5338 independent code. Fix bug in code which looks for "fmov" and
5339 backtracks if no "fmov" is found.
5340
5341 2008-01-28 Doug Evans <dje@google.com>
5342
5343 * dbxread.c (read_dbx_symtab): Fix indentation.
5344 Reformat comments to 80 columns.
5345 Move local var def closer to only use.
5346
5347 2008-01-28 Daniel Jacobowitz <dan@codesourcery.com>
5348
5349 * fork-child.c (SHELL_FILE): Remove #ifndef.
5350 (fork_inferior): Remove SHELL_COMMAND_CONCAT.
5351
5352 2008-01-25 Pierre Muller <muller@ics.u-strasbg.fr>
5353
5354 * i386-tdep.c (i386_skip_noop): New function.
5355 (i386_analyze_prologue): Call i386_skip_noop function.
5356
5357 2008-01-24 Michael Snyder <msnyder@specifix.com>
5358
5359 * procfs.c (procfs_xfer_partial): Comment, cut/paste error.
5360 * win32-nat.c (win32_xfer_partial): Ditto.
5361 * target.c (default_xfer_partial): Minor whitespace adjustment.
5362
5363 2008-01-24 Pedro Alves <pedro@codesourcery.com>
5364
5365 * arm-tdep.c (arm_addr_bits_remove): In non 26-bit mode, don't
5366 strip bit 1 even if pc doesn't point to thumb code.
5367
5368 2008-01-23 Daniel Jacobowitz <dan@codesourcery.com>
5369
5370 * remote.c (remote_wait): Handle SIGINT between packets.
5371 (remote_async_wait): Likewise.
5372
5373 2008-01-23 Vladimir Prus <vladimir@codesourcery.com>
5374 Chris Demetriou <cgd@google.com>
5375
5376 * thread.c (add_thread_silent): Renamed
5377 from add_thread.
5378 (print_thread_events): New variable definition.
5379 (show_print_thread_events): New function.
5380 (_initialize_thread): Add "set print thread-events" and
5381 "show print thread-events" commands.
5382 (add_thread): Announce new thread.
5383 * gdbthread.h (add_thread_silent): Declare.
5384 (print_thread_events): New variable declaration.
5385 * inf-ttrace.c (inf_ttrace_wait): Don't
5386 inform about new thread, as add_thread is always
5387 called too, and will take care of that.
5388 * infrun.c (handle_inferior_event): Likewise.
5389 * procfs.c (procfs_wait): Likewise.
5390 * remote.c (remote_currthread): Likewise.
5391 * sol-thread.c (sol_thread_wait): Likewise.
5392 * win32-nat.c (get_win32_debug_event): Likewise.
5393 * linux-thread-db.c (attach_thread): Likewise.
5394 Remove the verbose parameter.
5395 (check_event): Make detach_thread be verbose
5396 only if print_thread_events is set.
5397 * linux-nat.c (lin_lwp_attach_lwp): Don't inform
5398 about new thread. This is called only from
5399 linux-thread-db.c:attach_thread, which will take care.
5400 Remove the verbose parameter.
5401 * linux-nat.h (lin_lwp_attach_lwp): Adjust prototype.
5402
5403 2008-01-23 Nick Roberts <nickrob@snap.net.nz>
5404
5405 * mi/mi-cmd-var.c (mi_cmd_var_set_format): Add value field to output.
5406
5407 2008-01-22 Vladimir Prus <vladimir@codesourcery.com>
5408
5409 * breakpoint.c (break_command_really): New parameter
5410 ignore_count.
5411 (break_command_1): Pass 0 as
5412 ignore_count to break_command_really.
5413 (gdb_breakpoint): Pass ignore_count to
5414 break_command_really.
5415
5416 2008-01-21 Kevin Buettner <kevinb@redhat.com>
5417
5418 * mn10300-linux-tdep.c (am33_linux_sigframe_cache_init): Find
5419 sigcontext struct via pointer.
5420 (struct sigframe comment): Update to show new field `psc'.
5421
5422 2008-01-21 Vladimir Prus <vladimir@codesourcery.com>
5423
5424 * infrun.c (handle_inferior_event): If
5425 we failed to remove breakpoints, error,
5426 don't try to increment PC by hand.
5427
5428 2008-01-18 Nick Hudson <nick.hudson@dsl.pipex.com>
5429
5430 Add NetBSD/hppa target and host support.
5431
5432 * hppabsd-tdep.c (hppabsd_supply_gregset): Move to ...
5433 (hppabsd_gregset): Move to ...
5434 (hppabsd_regset_from_core_section): Rename
5435 hppaobsd_regset_from_core_section and move to ...
5436 (hppabsd_find_global_pointer): Update comment.
5437 (hppabsd_init_abi): Make global. Do not register
5438 hppabsd_regset_from_core_section.
5439 (hppabsd_core_osabi_sniffer): Rename hppaobsd_core_osabi_sniffer and
5440 move to ...
5441 (_initialize_hppabsd_tdep): Move to ...
5442 * hppaobsd-tdep.c: ... here. New file.
5443 * hppnbsd-tdep.c: New file.
5444 * hppnbsd-nat.c: New file.
5445 * Makefile.in (ALL_TARGET_OBS): Add hppanbsd-tdep.o and hppaobsd-tdep.o.
5446 (ALLDEPFILES): Add hppabsd-nat.c and hppabsd-tdep.c.
5447 (hppabsd-nat.o, hppabsd-tdep.o): New dependencies.
5448 (hppabsd-tdep.o, hppaobsd-tdep.o): Update dependencies.
5449 * configure.host (hppa*-*-netbsd*): New entry.
5450 * configure.tgt (hppa*-*-netbsd*): New entry.
5451 (hppa*-*-openbsd*): Update.
5452 * NEWS (New native configuration): Mention NetBSD/hppa.
5453 (New targets): Mention NetBSD/hppa.
5454
5455 2008-01-18 Markus Deuling <deuling@de.ibm.com>
5456
5457 * gdbarch.sh (function_list): Add new property bits_big_endian to
5458 gdbarch structure.
5459 * gdbarch.{c,h}: Regenerate.
5460
5461 * value.c (struct value): Replace BITS_BIG_ENDIAN by
5462 gdbarch_bits_big_endian (comment).
5463 (unpack_field_as_long, modify_field): Likewise.
5464 * value.h: Likewise (comment).
5465 * valops.c (value_slice): Likewise.
5466 * valarith.c (value_subscript, value_bit_index): Likewise.
5467 * gdbtypes.h (field): Likewise (comment).
5468 * eval.c (evaluate_subexp_standard): Likewise.
5469 * dwarf2read.c (dwarf2_add_field): Likewise.
5470 * ada-lang.c (decode_packed_array, ada_value_primitive_packed_val)
5471 (move_bits, ada_value_assign, value_assign_to_component): Likewise.
5472
5473 * defs.h (BITS_BIG_ENDIAN): Remove.
5474
5475 2008-01-18 Markus Deuling <deuling@de.ibm.com>
5476
5477 * jv-exp.y (yylex): Replace DEPRECATED_STREQN with the appropriate
5478 function calls.
5479 * m2-exp.y (yylex): Likewise.
5480 * objc-exp.y (yylex): Likewise.
5481
5482 * defs.h (DEPRECATED_STREQN): Remove.
5483
5484 2008-01-17 H.J. Lu <hjl.tools@gmail.com>
5485
5486 * MAINTAINERS: Update my email address.
5487
5488 2008-01-17 Jim Blandy <jimb@codesourcery.com>
5489
5490 * README: Mention gdbserver/README.
5491
5492 2008-01-17 Pierre Muller <muller@ics.u-strasbg.fr>
5493
5494 * valarith.c (value_binop): Handle BINOP_INTDIV
5495 for unsigned and signed integers.
5496
5497 2008-01-17 Ulrich Weigand <uweigand@de.ibm.com>
5498
5499 * s390-tdep.c (s390_gdbarch_init): Set default long double
5500 type to 128-bit IEEE quad.
5501
5502 2008-01-17 Joel Brobecker <brobecker@adacore.com>
5503
5504 * hpux-thread.c (hpux_thread_resume): Delete commented-out code.
5505
5506 2008-01-16 Mark Kettenis <kettenis@gnu.org>
5507
5508 * auxv.c (fprint_target_auxv): Add support for AT_SUN_AUXFLAGS.
5509
5510 * dfp.c, dfp.h: Rename decimal_to_double to decimal_to_doublest.
5511 * value.c: All callers changed.
5512
5513 2008-01-16 Markus Deuling <deuling@de.ibm.com>
5514
5515 * rs6000-nat.c (add_vmap, vmap_ldinfo, vmap_exec): Replace
5516 DEPRECATED_STREQ by its expression.
5517 * coffread.c (coff_locate_sections, coff_symtab_read): Likewise.
5518 * xcoffread.c (read_xcoff_symtab, read_symbol_lineno, find_linenos)
5519 (scan_xcoff_symtab): Likewise.
5520 * hppa-hpux-tdep.c (hppa_hpux_skip_trampoline_code): Likewise.
5521 * f-lang.c (find_common_for_function): Likewise.
5522 * objc-exp.y (parse_number): Likewise.
5523
5524 * defs.h (DEPRECATED_STREQ): Remove.
5525
5526 2008-01-16 Markus Deuling <deuling@de.ibm.com>
5527
5528 * mn10300-tdep.h (AM33_MODE): Add gdbarch as parameter.
5529 * mn10300-tdep.c (set_reg_offsets, mn10300_analyze_prologue): Use
5530 get_frame_arch to get at the current_architecture. Update AM33_MODE
5531 call.
5532 (mn10300_analyze_prologue): Add gdbarch as parameter. Update caller.
5533 (mn10300_frame_unwind_cache): Use get_frame_arch to get at the current
5534 architecture.
5535 (set_reg_offsets, mn10300_analyze_prologue): Fix indentation.
5536
5537 2008-01-16 Markus Deuling <deuling@de.ibm.com>
5538
5539 * amd64-nat.h (amd64_native_gregset_supplies_p): Add gdbarch as
5540 parameter.
5541 * amd64-nat.c (amd64_native_gregset_supplies_p): Likewise.
5542
5543 (amd64_native_gregset_reg_offset): Add gdbarch as parameter. Replace
5544 current_gdbarch by gdbarch. Update caller.
5545
5546 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers)
5547 (amd64_linux_store_inferior_registers): Use get_regcache_arch to get at
5548 the current architecture. Update calls of
5549 amd64_native_gregset_supplies_p.
5550 * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers)
5551 (amd64bsd_store_inferior_registers): Likewise.
5552
5553 2008-01-16 Markus Deuling <deuling@de.ibm.com>
5554
5555 * ppc-linux-nat.c (ppc_register_u_addr): Add gdbarch as parameter.
5556 Replace current_gdbarch by gdbarch. Update caller.
5557
5558 2008-01-16 Markus Deuling <deuling@de.ibm.com>
5559
5560 * dbxread.c (repeated_header_complaint, dbx_symfile_init)
5561 (read_dbx_dynamic_symtab, function_outside_compilation_unit_complaint)
5562 (read_dbx_symtab, end_psymtab, dbx_psymtab_to_symtab_1)
5563 (dbx_psymtab_to_symtab, read_ofile_symtab, process_one_symbol)
5564 (stabsect_build_psymtabs): Fix indentation.
5565
5566 2008-01-15 Michael Snyder <msnyder@specifix.com>
5567
5568 * corelow.c (core_xfer_partial): Comment, cut/paste error.
5569
5570 2008-01-14 Pierre Muller <muller@ics.u-strasbg.fr>
5571
5572 * win32-nat.c (win32_create_inferior): Restore code calling
5573 CloseHandle on ProcessInformation structure.
5574
5575 2008-01-13 Nick Hudson <nick.hudson@dsl.pipex.com>
5576
5577 * configure.ac: Check for void * as 3 argument of ptrace.
5578 * configure: regenerate.
5579
5580 2008-01-11 Markus Deuling <deuling@de.ibm.com>
5581
5582 * alpha-tdep.c (alpha_heuristic_proc_start)
5583 (alpha_sigtramp_register_address): Add gdbarch as parameter. Replace
5584 current_gdbarch by gdbarch.
5585
5586 (alpha_heuristic_frame_unwind_cache): Use get_frame_arch to get at the
5587 current architecture by frame_info. Update alpha_heuristic_proc_start
5588 call.
5589
5590 (alpha_sigtramp_frame_this_id, alpha_sigtramp_frame_prev_register): Use
5591 get_frame_arch to get at the current architecture by frame_info. Update
5592 alpha_sigtramp_register_address call.
5593
5594 * arm-tdep.c (thumb_scan_prologue): Add gdbarch as parameter and replace
5595 current_gdbarch by gdbarch. Update caller.
5596 (convert_to_extended, convert_from_extended): Add endianess parameter
5597 for comparison. Update caller.
5598 (arm_extract_return_value, arm_store_return_value): Use
5599 get_regcache_arch to get at the current architecture.
5600
5601 * cris-tdep.c (cris_register_size): Add gdbarch as parameter. Replace
5602 current_gdbarch by gdbarch. Update caller.
5603 (cris_gdb_func, move_to_preg_op, none_reg_mode_move_from_preg_op): Add
5604 gdbarch as parameter. Update caller. Replace current_gdbarch by gdbarch.
5605
5606 * h8300-tdep.c (E_PSEUDO_CCR_REGNUM, E_PSEUDO_EXR_REGNUM, BINWORD): Add
5607 gdbarch as parameter. Update caller.
5608 (h8300_init_frame_cache): Add gdbarch as parameter. Replace
5609 current_gdbarch by gdbarch. Update caller.
5610
5611 * hppa-tdep.c (skip_prologue_hard_way): Add gdbarch as parameter and
5612 update caller. Replace current_gdbarch by gdbarch.
5613
5614 * m32c-tdep.c (m32c_skip_trampoline_code): Use get_frame_arch to get at
5615 the current architecture. Replace current_gdbarch by gdbarch.
5616 * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Likewise.
5617 (STACK_CORRECTION, USE_PAGE_REGISTER): Replace M6811_TDEP by its
5618 expression. Add gdbarch as parameter and replace current_gdbarch with
5619 it. Update caller.
5620 (M6811_TDEP): Remove.
5621 (m68hc11_frame_prev_register): Use get_frame_arch to get at the current
5622 architecture.
5623 (m68hc11_scan_prologue): Add gdbarch as parameter. Replace
5624 current_gdbarch by gdbarch. Update caller.
5625
5626 * m68k-tdep.c (m68k_analyze_prologue): Add gdbarch as parameter and
5627 update caller.
5628 (m68k_analyze_register_saves): Likewise. Also replace current_gdbarch
5629 by gdbarch.
5630
5631 * rs6000-tdep.c (skip_prologue): Add gdbarch as parameter and update
5632 caller. Relace current_gdbarch by gdbarch.
5633 (altivec_register_p, spe_register_p): Likewise.
5634 * ppc-tdep.h (altivec_register_p, spe_register_p): Add gdbarch as
5635 parameter.
5636 * ppc-linux-nat.c (fetch_register, store_register): Update caller of
5637 altivec_register_p and spe_register_p.
5638
5639 * score-tdep.c (score_fetch_inst): Add gdbarch as parameter. Update
5640 caller. Replace current_gdbarch by gdbarch.
5641 (score_analyze_prologue): use get_frame_arch to get at the current
5642 architecture.
5643
5644 * sparc-tdep.h (sparc_analyze_prologue): Add gdbarch as parameter.
5645 * sparc-tdep.c (sparc_analyze_prologue): Likewise. Replace
5646 current_gdbarch by gdbarch. Update caller.
5647 (sparc_frame_cache): Use get_frame_arch to get at the current
5648 architecture.
5649 * sparce64-tdep.c (sparc64_skip_prologue): Update call of
5650 sparc_analyze_prologue.
5651
5652 * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): Add gdbarch as
5653 parameter.
5654
5655 2008-01-11 Markus Deuling <deuling@de.ibm.com>
5656
5657 * exec.c: #include "arch-utils.h"
5658 (print_section_info): Use gdbarch_from_bfd to get at the
5659 current architecture. Replace current_gdbarch. Fix indention. Replace
5660 deprecated_print_address_numeric by paddress.
5661 * Makefile.in (exec.o) Add dependency to arch-utils.h.
5662
5663 * valprint.c (val_print_string): Replace
5664 deprecated_print_address_numeric.
5665 * tracepoint.c (trace_mention, scope_info): Likewise.
5666 * symmisc.c (dump_msymbols, dump_psymtab, dump_symtab_1, print_symbol)
5667 (print_symbol, print_partial_symbols, maintenance_info_psymtabs)
5668 (maintenance_check_symtabs): Likewise.
5669 * symfile.c (list_overlays_command): Likewise.
5670 * stack.c (frame_info, print_block_frame_labels): Likewise.
5671 * printcmd.c (print_address, print_address_demangle)
5672 (address_info): Likewise.
5673 * corefile.c (memory_error): Likewise.
5674 * infcmd.c (jump_command): Likewise.
5675 * breakpoint.c (insert_bp_location, describe_other_breakpoints)
5676 (mention, delete_breakpoint): Likewise.
5677 * c-valprint.c (print_function_pointer_address, c_val_print): Likewise.
5678 * dwarf2read.c (dump_die): Likewise.
5679 * ada-valprint.c (ada_val_print_1): Likewise.
5680 * f-valprint.c (f_val_print): Likewise.
5681 * linux-fork.c (info_forks_command): Likewise.
5682 * m32r-com.c (m32r_load_section, m32r_load)
5683 (m32r_upload_command): Likewise.
5684
5685 * ui-out.c (ui_out_field_core_addr): Remove unnecessary comment.
5686
5687 2008-01-11 Markus Deuling <deuling@de.ibm.com>
5688
5689 * gdbarch.sh (skip_prologue): Add gdbarch
5690 as parameter.
5691 * gdbarch.{c,h}: Regenerate.
5692
5693 * alpha-tdep.c (alpha_skip_prologue): Add gdbarch as parameter.
5694 * amd64-tdep.c (amd64_skip_prologue): Likewise.
5695 * avr-tdep.c (avr_skip_prologue): Likewise.
5696 * cris-tdep.c (cris_skip_prologue): Likewise.
5697 * frv-tdep.c (frv_skip_prologue): Likewise.
5698 * h8300-tdep.c (h8300_skip_prologue): Likewise.
5699 * hppa-tdep.c (hppa_skip_prologue): Likewise.
5700 * i386-tdep.c (i386_skip_prologue): Likewise.
5701 * ia64-tdep.c (ia64_skip_prologue): Likewise.
5702 * iq2000-tdep.c (iq2000_skip_prologue): Likewise.
5703 * m32r-tdep.c (m32r_skip_prologue): Likewise.
5704 * m68hc11-tdep.c (m68hc11_skip_prologue): Likewise.
5705 * m68k-tdep.c (m68k_skip_prologue): Likewise.
5706 * m88k-tdep.c (m88k_skip_prologue): Likewise.
5707 * mep-tdep.c (mep_skip_prologue): Likewise.
5708 * mips-tdep.c (mips_skip_prologue): Likewise.
5709 * mn10300-tdep.c (mn10300_skip_prologue): Likewise.
5710 * mt-tdep.c (mt_skip_prologue): Likewise.
5711 * rs6000-tdep.c (rs6000_skip_prologue): Likewise.
5712 * score-tdep.c (score_skip_prologue): Likewise.
5713 * sh64-tdep.c (sh64_skip_prologue): Likewise.
5714 * sh-tdep.c (sh_skip_prologue): Likewise.
5715 * sparc64-tdep.c (sparc64_skip_prologue): Likewise.
5716 * sparc-tdep.c (sparc32_skip_prologue): Likewise.
5717 * spu-tdep.c (spu_skip_prologue): Likewise.
5718 * v850-tdep.c (v850_skip_prologue): Likewise.
5719 * vax-tdep.c (vax_skip_prologue): Likewise.
5720 * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
5721 * xtensa-tdep.c (xtensa_skip_prologue): Likewise.
5722
5723 * arm-tdep.c (arm_skip_prologue): Add gdbarch as parameter. Replace
5724 current_gdbarch by gdbarch.
5725 * m32c-tdep.c (m32c_skip_prologue): Likewise.
5726 * s390-tdep.c (s390_skip_prologue): Likewise.
5727
5728 2008-01-10 Doug Evans <dje@google.com>
5729
5730 * defs.h (struct continuation_arg): Fix typo in comment.
5731 * target.c (target_translate_tls_address): Fix comment spelling error.
5732
5733 2008-01-09 Thiago Jung Bauermann <bauerman@br.ibm.com>
5734
5735 * doublest.h (DOUBLEST_PRINT_FORMAT): Remove % from string.
5736 (DOUBLEST_SCAN_FORMAT): Likewise.
5737 * dfp.c (decimal_from_floating): Use DOUBLEST_PRINT_FORMAT.
5738 * ada-lex.l (processReal): Prepend "%" to use of DOUBLEST_SCAN_FORMAT.
5739 * c-exp.y (parse_number): Likewise.
5740 * jv-exp.y (parse_number): Likewise.
5741 * objc-exp.y (parse_number): Likewise.
5742 * p-exp.y (parse_number): Likewise.
5743
5744 2008-01-09 Joel Brobecker <brobecker@adacore.com>
5745
5746 * gdbtypes.c (create_array_type): Add handling of null Ada arrays.
5747 (check_typedef): Likewise.
5748
5749 2008-01-09 Luis Machado <luisgpm@br.ibm.com>
5750
5751 * printcmd.c (printf_command): Add seen_big_h, seen_big_d and
5752 seen_double_big_d, treat the new H, D, and DD modifiers as length
5753 modifiers.
5754
5755 2008-01-08 Joel Brobecker <brobecker@adacore.com>
5756
5757 * dwarf2read.c (read_enumeration_type): Add comment.
5758
5759 2008-01-08 Thiago Jung Bauermann <bauerman@br.ibm.com>
5760
5761 * config.in: Regenerate.
5762
5763 2008-01-08 Joel Brobecker <brobecker@adacore.com>
5764
5765 * ada-lang.c (ada_convert_actual): Renames convert_actual.
5766 Make non-static.
5767 (ada_convert_actuals): Delete.
5768 * ada-lang.h (ada_convert_actual): Add declaration.
5769 (ada_convert_actuals): Remove declaration.
5770 * infcall.c: #include "ada-lang.h".
5771 (value_arg_coerce): Add new parameter sp. Update function
5772 documetnation. Add handling of Ada function call parameters.
5773 * Makefile.in (infcall.o): Update dependencies.
5774
5775 2008-01-08 Paul Hilfinger <hilfinger@adacore.com>
5776
5777 * ada-lang.c (ensure_lval): Fix value lval kind.
5778 (convert_actual): Add handling for arguments passed by reference.
5779
5780 2008-01-08 Doug Evans <dje@google.com>
5781
5782 * dbxread.c (read_dbx_symtab): Fix indentation.
5783
5784 2008-01-07 Thiago Jung Bauermann <bauerman@br.ibm.com>
5785
5786 * Makefile.in (dfp.o): Depend on expression.h, gdbtypes.h and value.h.
5787 (valarith.o): Depend on dfp.h.
5788 (valops.o): Likewise.
5789 * dfp.c: Include expression.h, gdbtypes.h, value.h and dfp.h.
5790 (set_decnumber_context): New function.
5791 (decimal_check_errors): Likewise.
5792 (decimal_from_number): Likewise.
5793 (decimal_to_number): Likewise.
5794 (decimal_from_string): Use set_decnumber_context and
5795 decimal_check_errors.
5796 (decimal_from_integral): New function.
5797 (decimal_from_floating): Likewise.
5798 (decimal_to_double): Likewise.
5799 (promote_decimal): Likewise.
5800 (decimal_binop): Likewise.
5801 (decimal_is_zero): Likewise.
5802 (decimal_compare): Likewise.
5803 (decimal_convert): Likewise.
5804 * dfp.h (decimal_from_integral): New prototype.
5805 (decimal_from_floating): Likewise.
5806 (decimal_to_double): Likewise.
5807 (decimal_binop): Likewise.
5808 (decimal_is_zero): Likewise.
5809 (decimal_compare): Likewise.
5810 (decimal_convert): Likewise.
5811 * eval.c (evaluate_subexp_standard): Remove expect_type argument from
5812 call to value_from_decfloat.
5813 * valarith.c: Include dfp.h.
5814 (value_args_as_decimal): New function.
5815 (value_binop): Add if block to handle TYPE_CODE_DECFLOAT values.
5816 (value_logical_not): Likewise.
5817 (value_equal): Likewise.
5818 (value_less): Likewise.
5819 (value_pos): Likewise.
5820 (value_neg): Formatting fix.
5821 * valops.c: Include dfp.h.
5822 (value_cast): Add if block to handle TYPE_CODE_DECFLOAT values.
5823 * value.c (unpack_long): Add case to handle TYPE_CODE_DECFLOAT.
5824 (unpack_double): Add if block to handle TYPE_CODE_DECFLOAT.
5825 (value_from_decfloat): Remove expect_type argument.
5826 * value.h (value_from_decfloat): Update prototype.
5827
5828 2008-01-07 Vladimir Prus <vladimir@codesourcery.com>
5829
5830 Ignore change in name of dynamic linker during
5831 execution on Solaris. This also unbreaks pending breakpoints.
5832
5833 * solist.h (struct target_so_ops): New field same.
5834 * solib-svr4.c (svr4_same): New.
5835 (_initialize_svr4_solib): Register svr4_same.
5836 * solib.c (update_solib_list): Use ops->same, if available.
5837
5838 2008-01-06 Christopher Faylor <me+cygwin@cgf.cx>
5839
5840 * win32-nat.c (win32_make_so): Use cygwin-style path to avoid warnings
5841 when using MS-DOS paths.
5842
5843 2008-01-05 Pedro Alves <pedro@codesourcery.com>
5844
5845 * NEWS: Mention --pid and --core command line behaviour changes.
5846
5847 2008-01-05 Pedro Alves <pedro@codesourcery.com>
5848
5849 * main.c (captured_main): Remove 'count' varible and the
5850 ALIGN_STACK_ON_ENTRY block that used it. Error out if --core and
5851 --pid options were issued simultaneously. If an explicit pid
5852 option was passed, don't fallback to core file. Detect extra
5853 arguments better in the presence of explicit pid or core
5854 arguments.
5855
5856 2008-01-05 Joel Brobecker <brobecker@adacore.com>
5857
5858 * ada-lang.c (ada_which_variant_applies): Correctly compute
5859 the value of the discriminant when the variant record is packed.
5860
5861 2008-01-04 Joel Brobecker <brobecker@adacore.com>
5862
5863 * ada-lang.c (is_name_suffix): Handle middle-name numeric suffixes
5864 that are used to differentiate homonyms.
5865
5866 2008-01-04 Jerome Guitton <guitton@adacore.com>
5867
5868 * ada-lang.c (decode_packed_array_type): Avoid a seg fault
5869 when the type is an anonymous pointer type.
5870 (ada_check_typedef): Avoid a seg fault when the type is null.
5871 * ada-typeprint.c (print_array_type): Add support for pointer
5872 to packed arrays.
5873
5874 2008-01-04 Paul N. Hilfinger <hilfinger@adacore.com>
5875
5876 * ada-exp.y: Allow '{type} ADDRESS' notation on left of assignment.
5877
5878 2008-01-04 Joel Brobecker <brobecker@adacore.com>
5879
5880 * ada-lang.c (ada_evaluate_subexp): Evaluate tagged types in
5881 EVAL_NORMAL mode when noside is EVAL_AVOID_SIDE_EFFECTS.
5882
5883 2008-01-04 Joel Brobecker <brobecker@adacore.com>
5884
5885 * ada-exp.y (chop_separator): New function.
5886 (write_selectors): Rewrite to re-use chop_separator.
5887 (ada_nget_field_index, get_symbol_field_type): New functions.
5888 (write_var_or_type): Add support for "ptype TYPENAME.FIELD"
5889 expressions.
5890
5891 2008-01-03 Thiago Jung Bauermann <bauerman@br.ibm.com>
5892
5893 * symtab.c (find_pc_sect_line): Use SYMBOL_VALUE_ADDRESS instead
5894 of SYMBOL_VALUE when working with function symbols.
5895
5896 2008-01-03 Joel Brobecker <brobecker@adacore.com>
5897
5898 * ada-lang.c (resolve_subexp): Add handling of OP_REGISTER
5899 expressions. These expressions do not need to be rewriten.
5900
5901 2008-01-03 Joel Brobecker <brobecker@adacore.com>
5902
5903 * dwarf2read.c (read_enumeration_type): Flag type as stub if
5904 the given die is a declaration.
5905
5906 2008-01-03 Joel Brobecker <brobecker@adacore.com>
5907
5908 * ada-lang.c (ada_array_bound_from_type): Make non-static.
5909 Handle properly the case when the index type is an enumerated type.
5910 Do not return the subtype of the bounds type, just return the
5911 bounds type directly - this is not needed and is more consistent
5912 with what we do for arrays when no XA parallel type exists.
5913
5914 2008-01-03 Joel Brobecker <brobecker@adacore.com>
5915
5916 * ada-lang.c (static_unwrap_type): Add forward declaration.
5917 (template_to_static_fixed_type): Fields of dynamic types sometimes
5918 also need to be unwrapped. Take this into account.
5919 (ada_to_fixed_type_1): Renamed from ada_to_fixed_type.
5920 (ada_to_fixed_type): New wrapper around ada_to_fixed_type_1.
5921 * ada-typeprint.c (ada_print_type): Get the typename from
5922 the original type, not the base type.
5923
5924 2008-01-03 Jerome Guitton <guitton@adacore.com>
5925
5926 * ada-lang.c (ada_value_struct_elt, to_fixed_array_type)
5927 (to_fixed_array_type, ada_to_fixed_value_create, unwrap_value):
5928 Update calls to ada_to_fixed_type.
5929 (ada_template_to_fixed_record_type_1): Ditto, but without looking
5930 for the tag.
5931 (ada_to_fixed_type): Add check_tag parameter; do not look for
5932 tag if null. When looking for a tag, use a fixed record type.
5933 * ada-lang.h (ada_to_fixed_type): Add check_tag parameter.
5934 * ada-valprint.c (printable_val_type, ada_value_print): Update
5935 calls to ada_to_fixed_type.
5936
5937 2008-01-03 Luis Machado <luisgpm@br.ibm.com>
5938
5939 * doublest.c (convert_floatformat_to_doublest): Call
5940 floatformat_to_doublest instead of floatformat_to_double and use
5941 DOUBLEST variables.
5942 (convert_doublest_to_floatformat): Call floatformat_from_doublest
5943 instead of floatformat_from_double and use DOUBLEST variables.
5944
5945 2008-01-03 Nick Hudson <nick.hudson@dsl.pipex.com>
5946
5947 * MAINTAINERS (Write After Approval): Add self.
5948
5949 2008-01-03 Joel Brobecker <brobecker@adacore.com>
5950
5951 * symfile.c (set_initial_language): Make non-static.
5952 * symfile.h (set_initial_language): Add declaration.
5953 * language.c: #include "symfile.h".
5954 (set_language): Call set_initial_language if the frame language
5955 could not be determined.
5956
5957 2008-01-03 Paul N. Hilfinger <hilfinger@adacore.com>
5958
5959 * eval.c (evaluate_subexp_for_address): Provide frame address to
5960 locate_var_value only if it will be needed.
5961
5962 2008-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5963
5964 * linux-nat.c (linux_child_follow_fork): Call also CHECK_FOR_THREAD_DB.
5965
5966 2008-01-02 Joel Brobecker <brobecker@adacore.com>
5967
5968 * ada-lang.c (ada_evaluate_subexp): Modify the value returned
5969 when noside is EVAL_AVOID_SIDE_EFFECTS to be an lval_memory.
5970 This is needed to make sure that any other treatment applied
5971 to the resulting value does not fail for spurious reason,
5972 such as trying to take the address of this value.
5973
5974 2008-01-02 Joel Brobecker <brobecker@adacore.com>
5975
5976 * ada-lang.c (ada_value_equal): Dereference reference types when
5977 comparing arrays.
5978
5979 2008-01-01 Daniel Jacobowitz <dan@codesourcery.com>
5980
5981 Updated copyright notices for most files.
5982
5983 2008-01-01 Christopher Faylor <me+gdb@cgf.cx>
5984
5985 * win32-nat.c (psapi_module_handle): Remove static.
5986 (get_module_name): Rename from psapi_get_dll_name. Revamp slightly to
5987 return first module found if base_address is zero. Don't initialize
5988 psapi function pointers here. Convert to cygwin paths when
5989 appropriate.
5990 (win32_pid_to_exec_file): Use Cygwin's /proc interface to determine
5991 executable name. Use get_module_name when that fails or when
5992 !__CYGWIN__.
5993 (_initialize_psapi): New function. Initialize psapi stuff before it is
5994 needed or issue a warning if it is not found. Move psapi_module_handle
5995 here.
5996
5997 2008-01-01 Joel Brobecker <brobecker@adacore.com>
5998
5999 * ada-lang.c (ada_remove_trailing_digits): New function.
6000 (ada_remove_po_subprogram_suffix): New function.
6001 (ada_decode): Improve. Move the description of the algorithm
6002 directly inside the code, instead of in the function global
6003 description.
6004
6005 2008-01-01 Joel Brobecker <brobecker@adacore.com>
6006
6007 * ada-valprint.c (ada_val_print_1) [TYPE_CODE_REF]: Ignore deref_ref
6008 and always print the dereferenced value.
6009
6010 2008-01-01 Joel Brobecker <brobecker@adacore.com>
6011
6012 * ada-lang.c (ada_evaluate_subexp, case BINOP_SUB): Add handling
6013 of the case where the first argument is a reference.
6014 (ada_evaluate_subexp, case BINOP_ADD): Likewise.
6015
6016 2008-01-01 Joel Brobecker <brobecker@adacore.com>
6017
6018 Implement support for Ada interface types.
6019
6020 * ada-lang.c (ada_is_dispatch_table_ptr_type): New function.
6021 (ada_is_ignored_field): Ignore fields that are a dispatch table
6022 of a tagged type.
6023
6024 2008-01-01 Joel Brobecker <brobecker@adacore.com>
6025
6026 * top.c (print_gdb_version): Update copyright year.
6027
6028 2008-01-01 Joel Brobecker <brobecker@adacore.com>
6029
6030 * ChangeLog-2007: New ChangeLog rotation.
6031 * ChangeLog: Reset for 2008.
6032 * config/djgpp/fnchange.lst: Add entries for ChangeLog-2006 and
6033 ChangeLog-2007.
6034
6035 For older changes see ChangeLog-2007.
6036 \f
6037 Local Variables:
6038 mode: change-log
6039 left-margin: 8
6040 fill-column: 74
6041 version-control: never
6042 coding: utf-8
6043 End:
This page took 0.243389 seconds and 5 git commands to generate.