aboutsummaryrefslogtreecommitdiff
path: root/gdb
AgeCommit message (Collapse)AuthorFilesLines
2009-06-17 * tui/tui-regs.c (tui_show_register_group): Remove GDBARCH parameter;Ulrich Weigand2-31/+39
use frame architecture instead. Replace current_gdbarch uses. (tui_show_registers): Update call. (tui_get_register): Remove GDBARCH parameter; use frame architecture instead. (tui_show_register_group): Update call. (tui_check_register_values): Likewise. (tui_register_format): Remove GDBARCH parameter; use frame architecture instead. Replace current_gdbarch uses. (tui_get_register): Update call.
2009-06-17 * gdbarch.sh (construct_inferior_arguments): Remove.Ulrich Weigand6-50/+12
* gdbarch.c, gdbarch.h: Regenerate. * infcmd.c (get_inferior_args): Call construct_inferior_arguments directly instead of gdbarch_construct_inferior_arguments. (construct_inferior_arguments): Remove GDBARCH argument. * inferior.h (construct_inferior_arguments): Likewise.
2009-06-17 * symfile.c (section_is_mapped): Use objfile architecture insteadUlrich Weigand2-15/+38
of current_gdbarch. (TARGET_LONG_BYTES): Remove. (read_target_long_array): Add SIZE argument. Use it instead of TARGET_LONG_BYTES. (simple_read_overlay_table): Retrieve long size from objfile architecture; pass it to read_target_long_array. (simple_read_overlay_region_table): Likewise. (simple_overlay_update_1): Likewise.
2009-06-17 * infrun.c (cleanup_displaced_step_closure): Remove.Ulrich Weigand2-20/+25
(displaced_step_clear_cleanup): Move to before displaced_step_prepare. (displaced_step_prepare): Use displaced_step_clear_cleanup instead of cleanup_displaced_step_closure. (handle_inferior_event, keep_going): Use thread architecture instead of current_gdbarch.
2009-06-17ChangeLog:Ulrich Weigand5-47/+77
* infrun.c (handle_inferior_event): Use current frame architecture or thread architecture instead of current_gdbarch. Pass to handle_step_into_function and handle_step_into_function_backward. (handle_step_into_function): Add GDBARCH parameter. Use it instead of current_gdbarch. (handle_step_into_function_backward): Likewise. (insert_step_resume_breakpoint_at_frame): Use frame architecture instead of current_gdbarch. (insert_step_resume_breakpoint_at_caller): Likewise. testsuite/ChangeLog: * gdb.base/annota1.exp: Allow multiple occurrences of the frames-invalid annotation. * gdb.cp/annota2.exp: Likewise.
2009-06-17 * infcmd.c (post_create_inferior): Call breakpoint_re_set after targetPierre Muller2-0/+18
is pushed for watchpoint promotion to hardware watchpoint.
2009-06-17*** empty log message ***gdbadmin1-1/+1
2009-06-162009-06-16 Paul Pluzhnikov <ppluzhnikov@google.com>Paul Pluzhnikov3-348/+359
* dwarf2read.c (dwarf_info_section, dwarf_abbrev_section) (dwarf_line_section, dwarf_pubnames_section, dwarf_aranges_section) (dwarf_loc_section, dwarf_macinfo_section, dwarf_str_section) (dwarf_ranges_section, dwarf_frame_section) (dwarf_eh_frame_section): Removed. (dwarf2_resize_section): Likewise. (dwarf2_read_section): Now static, use bfd_mmap() if possible. (dwarf2_get_section_info): New function. (munmap_section_buffer): Likewise. (dwarf2_per_objfile_cleanup): Likewise. (section_is_p): Signature change. * dwarf2-frame.c (dwarf2_build_frame_info): Use dwarf2_get_section_info instead of dwarf2_read_section.
2009-06-162009-06-16 Paul Pluzhnikov <ppluzhnikov@google.com>Paul Pluzhnikov10-76/+120
* solib.c (symbol_add_stub): New FLAGS parameter. (solib_read_symbols): FROM_TTY -> FLAGS, call symbol_add_stub directly. (solib_add): Defer breakpoint_re_set until after all solibs. * bsd-uthread.c (bsd_uthread_solib_loaded): Adjust. * rs6000-nat.c (objfile_symbol_add): Adjust. * symfile.c (syms_from_objfile): Merge parameters into ADD_FLAGS. (new_symfile_objfile): Likewise. (symbol_file_add_with_addrs_or_offsets): Likewise. (symbol_file_add_from_bfd): Likewise. (symbol_file_add): Likewise. * symfile.h (enum symfile_add_flags): New. Adjust prototypes. * symfile-mem.c (symbol_file_add_from_memory): Adjust. * windows-nat.c (safe_symbol_file_add_stub): Adjust. * machoread.c (macho_oso_symfile, macho_symfile_read): Adjust.
2009-06-16 * linespec.c (collect_methods): Delete.Keith Seitz5-117/+20
(add_matching_methods): Reove destructor special case. (find_method): Call find_methods directly instead of collect_methods. * valops.c (value_struct_elt): Remove destructor special cases. (check_field): Likewise. (value_struct_elt_for_reference): Likewise. (destructor_name_p): Remove misleading comment about dtors being "special cases". * gdbtypes.h (get_destructor_fn_field): Remove. No longer needed. * gdbtypes.c (get_destructor_fn_field): Likewise.
2009-06-16 * mi/mi-main.c (mi_cmd_data_read_memory): DispatchPedro Alves2-2/+11
TARGET_OJECT_MEMORY reads to the topmost target, not the the flattened current_target.
2009-06-162009-06-16 Tristan Gingold <gingold@adacore.com>Tristan Gingold2-103/+148
* avr-tdep.c (struct gdbarch_tdep): Replace the unused field with call_length field. (avr_register_name): Add const to register_names. (avr_scan_arg_moves): Move inside avr_scan_prologue. (avr_scan_prologue): Add pc_end argument. Only read prologue bytes that can be read. Limit the scan to the known prologue length. Makes pattern variables static and const. Fix indentation. (avr_skip_prologue): Pass func_end argument to avr_scan_prologue. Fix indentation. (avr_breakpoint_from_pc): Constify avr_break_insn. (avr_extract_return_value): Fix function comment. (avr_frame_unwind_cache): Fix GNU style violations. Pass current_pc argument to avr_scan_prologue to stop prologue analysis to the current pc. This fixes the bug with the 'next' command. Correctly set the SP register of the previous frame (use call_length). (avr_frame_prev_register): Fix indentation. Correctly read PC from the stack on avr6 architectures. (avr_push_dummy_call): Fix indentation. (avr_gdbarch_init): Set call_length according to the architecture.
2009-06-16*** empty log message ***gdbadmin1-1/+1
2009-06-152009-06-15 Phil Muldoon <pmuldoon@redhat.com>Phil Muldoon8-1/+392
* infcall.c (show_unwind_on_terminating_exception_p): New function. (call_function_by_hand): Create breakpoint and clean-up call for std::terminate.breakpoint. Add unwind_on_terminating_exception_p gate. Pop frame on breakpoint hit. (_initialize_infcall): Add add_setshow_boolean_cmd for unwind-on-terminating-exception. testsuite/ 2009-06-15 Phil Muldoon <pmuldoon@redhat.com> * gdb.cp/gdb2495.cc: New file. * gdb.cp/gdb2495.exp: New file. doc/ 2009-06-15 Phil Muldoon <pmuldoon@redhat.com> * doc/gdb.texinfo (Calling): Document set-unwind-on-terminating-exception usage.
2009-06-15*** empty log message ***gdbadmin1-1/+1
2009-06-14*** empty log message ***gdbadmin1-1/+1
2009-06-13 * dwarf2read.c (dwarf2_psymtab_to_symtab): PropagateKevin Buettner2-0/+19
`has_section_at_zero' flag from stripped objfile to separate, debug info only, objfile.
2009-06-13*** empty log message ***gdbadmin1-1/+1
2009-06-12gdb/testsuite/Jan Kratochvil2-0/+9
Report error on GDB crash during runto. * lib/gdb.exp (runto <eof>): New.
2009-06-12 * exec.h (section_table_xfer_memory_partial): Improve description,Pedro Alves3-24/+14
mention SECTION_NAME. * exec.c (section_table_xfer_memory_partial): Remove stale description.
2009-06-12* nto-tdep.h (nto_generic_supply_gpregset)Aleksandar Ristovski3-30/+7
(nto_generic_supply_fpregset, nto_generic_supply_altregset): Remove. * nto-tdep.c (nto_generic_supply_gpregset) (nto_generic_supply_fpregset, nto_generic_supply_altregset): Remove.
2009-06-12*** empty log message ***gdbadmin1-1/+1
2009-06-11 * i386-nto-tdep.c (I386_NTO_SIGCONTEXT_OFFSET): Remove define.Aleksandar Ristovski2-8/+15
(i386nto_sigcontext_addr): Change the way context address is calculated. (i386nto_init_abi): Remove usage of deprecated sc_reg_offset and sc_sp_offset and set sc_reg_offset and sc_num_regs.
2009-06-11 * i386-nto-tdep.c (i386_nto_target): Remove definition.Aleksandar Ristovski4-28/+17
(init_i386nto_ops): Use macros to set fields to global current_nto_target directly. (i386nto_init_abi): Remove unused nto_set_target call. * nto-tdep.h (nto_set_target): Remove unused declaration. * nto-tdep.c (nto_set_target): Remove unused function.
2009-06-11 * breakpoint.c (break_command_really): Rename local variablePedro Alves2-10/+14
breakpoint_chain to bkpt_chain.
2009-06-11 Add support for XMM registers.Aleksandar Ristovski2-13/+93
* i386-nto-tdep.c (i386nto_regset_id): Add case for SSE register set. (i386nto_register_area): Correctly calculate offsets and sizes for all supported registers.
2009-06-11 * eval.c (evaluate_subexp_standard) <OP_OBJC_MSGCALL>: RemoveTom Tromey2-5/+10
'static' from local variable definitions.
2009-06-11 * symtab.c (append_expanded_sal): Remove unused local variables.Pedro Alves2-2/+4
2009-06-11gdb/Pedro Alves6-10/+106
* infrun.c (sched_multi): New global. (resume): If sched_multi is set, resume only threads of the current inferior. (prepare_to_proceed): Don't switch over to wait_ptid if we're resuming a different inferior, and sched_multi is off. (show_schedule_multiple): New. (_initialize_infrun): Register new "set schedule-multiple" command. * inferior.h (sched_multi): Declare. * NEWS: Mention new "schedule-multiple" setting. gdb/doc/ * gdb.texinfo (All-Stop): Document new 'set schedule-multiple' command.
2009-06-11*** empty log message ***gdbadmin1-1/+1
2009-06-10 * varobj.c (varobj_create): Properly restore the selected frame.Pedro Alves2-1/+5
2009-06-10 * inferior.c (print_inferior): Make a table, not a list. EmitTom Tromey2-4/+31
table headers.
2009-06-102009-06-10 Jonas Maebe <jonas.maebe@elis.ugent.be>Pedro Alves2-2/+8
* darwin-nat.c (darwin_stop_inferior): Pass 0 as options to darwin_wait (blocking wait). (darwin_kill_inferior): Likewise.
2009-06-10 * infrun.c (handle_inferior_event): Update comment around tryingPedro Alves2-3/+24
to revert back to a stepping thread that has exited.
2009-06-10 * dwarf2read.c (dwarf_decode_lines): Recognize and ignoreCary Coutant2-0/+10
DW_LNE_set_discriminator.
2009-06-10 * breakpoint.c: ARI fixes.Pierre Muller2-39/+61
(create_overlay_event_breakpoint): Avoid assignment inside if statement. (print_one_breakpoint_location): Likewise. (create_longjmp_breakpoint): Likewise. (tracepoint_save_command): Likewise (bpstat_find_step_resume_breakpoint): No operator at end of line. (bpstat_stop_status): Likewise. (describe_other_breakpoints): Likewise. (hw_watchpoint_used_count): Likewise. (expand_line_sal_maybe): Likewise. (break_command_really): Likewise. (delete_command): Likewise. (do_enable_breakpoint): Likewise. (delete_trace_command): Likewise. (catch_exception_command_1): Likewise and remove extra parentheses.
2009-06-10*** empty log message ***gdbadmin1-1/+1
2009-06-09 * gdb.mi/mi-async.exp, gdb.mi/mi-basics.exp,Daniel Jacobowitz50-52/+81
gdb.mi/mi-break.exp, gdb.mi/mi-cli.exp, gdb.mi/mi-disassemble.exp, gdb.mi/mi-eval.exp, gdb.mi/mi-file-transfer.exp, gdb.mi/mi-file.exp, gdb.mi/mi-regs.exp, gdb.mi/mi-return.exp, gdb.mi/mi-simplerun.exp, gdb.mi/mi-stepi.exp, gdb.mi/mi-var-block.exp, gdb.mi/mi-var-cmd.exp, gdb.mi/mi-var-display.exp, gdb.mi/mi-var-invalidate.exp, gdb.mi/mi-watch.exp, gdb.mi/mi2-basics.exp, gdb.mi/mi2-break.exp, gdb.mi/mi2-cli.exp, gdb.mi/mi2-disassemble.exp, gdb.mi/mi2-eval.exp, gdb.mi/mi2-file.exp, gdb.mi/mi2-regs.exp, gdb.mi/mi2-return.exp, gdb.mi/mi2-simplerun.exp, gdb.mi/mi2-stepi.exp, gdb.mi/mi2-var-block.exp, gdb.mi/mi2-var-child.exp, gdb.mi/mi2-var-cmd.exp, gdb.mi/mi2-var-display.exp, gdb.mi/mi2-watch.exp, gdb.server/ext-run.exp, gdb.server/file-transfer.exp, gdb.server/server-mon.exp, gdb.server/server-run.exp, gdb.trace/actions.exp, gdb.trace/backtrace.exp, gdb.trace/deltrace.exp, gdb.trace/infotrace.exp, gdb.trace/packetlen.exp, gdb.trace/passc-dyn.exp, gdb.trace/passcount.exp, gdb.trace/report.exp, gdb.trace/save-trace.exp, gdb.trace/tfind.exp, gdb.trace/tracecmd.exp, gdb.trace/while-dyn.exp, gdb.trace/while-stepping.exp: Use a unique name for the compiled executable.
2009-06-09*** empty log message ***gdbadmin1-1/+1
2009-06-08 * breakpoint.c (_initialize_breakpoint): Remove "bu" command alias ofPierre Muller2-5/+7
"ubreak" command that does not exist.
2009-06-08 * cli/cli-decode.c (add_alias_cmd): Correct assertion.Pierre Muller2-1/+5
2009-06-08*** empty log message ***gdbadmin1-1/+1
2009-06-07 * hppa-tdep.c (_initialize_hppa_tdep): Add declaration.Pedro Alves2-0/+7
2009-06-072009-06-07 Pedro Alves <pedro@codesourcery.com>Pedro Alves15-48/+120
* procfs.h: New. * proc-utils.h (procfs_first_available): Don't declare here. * sol-thread.c: Include procfs.h instead of sys/procfs.h and proc-utils.h. * procfs.c: Include procfs.h. (procfs_target): Make it public. Don't register procfs_can_use_hw_breakpoint here. (proc_set_watchpoint): Check for PCWATCH or PIOCSWATCH being defined instead of TARGET_HAS_HARDWARE_WATCHPOINTS. (procfs_can_use_hw_breakpoint): Remove check of TARGET_HAS_HARDWARE_WATCHPOINTS. (procfs_use_watchpoints): Register procfs_can_use_hw_breakpoint here. (_initialize_procfs): Don't add the procfs target here. * i386-sol2-nat.c: Include target.h and procfs.h. (_initialize_amd64_sol2_nat): Install the procfs target here, customized with watchpoints support. * irix5-nat.c: Include target.h. (_initialize_core_irix5): Rename to ... (_initialize_irix5_nat): ... this. Install the procfs target here, customized with watchpoints support. * alpha-nat.c: Include procfs.h. (_initialize_core_alpha): Rename to... (_initialize_alpha_nat): ... this. Install the procfs target here, customized with watchpoints support. * sparc-sol2-nat.c: Include target.h and procfs.h. (_initialize_sparc_sol2_nat): New. * config/i386/nm-i386sol2.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete. * config/sparc/nm-sol2.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete. * config/mips/irix5.mh (NAT_FILE): Delete. * config/mips/irix6.mh (NAT_FILE): Delete. * config/mips/nm-irix5.h: Delete. 2009-06-07 Pedro Alves <pedro@codesourcery.com> * gdbint.texinfo (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete all references.
2009-06-07 * gdb.threads/manythreads.c (main): Check if PTHREAD_STACK_MIN isPedro Alves2-0/+8
defined before referencing it.
2009-06-07 * auxv.c (procfs_xfer_auxv): Change type of the `object' argumentPedro Alves3-22/+17
to enum target_object. Cleanup comments. * auxv.h: Include "target.h". Cleanup comments to not mention NATIVE_XFER_AUXV anymore.
2009-06-07 * inferior.h (procfs_first_available): Move declaration to...Pedro Alves4-5/+17
* proc-utils.h: ... here. * sol-thread.c: Include procfs.h and proc-utils.h.
2009-06-07 * inferior.h (proc_iterate_over_mappings): Delete declaration.Pedro Alves4-29/+6
* nto-tdep.h (proc_iterate_over_mappings): Delete declaration. * procfs.c (proc_iterate_over_mappings): Delete.
2009-06-07 * target.h (struct target_ops): Make to_has_all_memory,Pedro Alves26-241/+432
to_has_memory, to_has_stack, to_has_registers and to_has_execution methods instead of variables. (target_has_all_memory_1, target_has_memory_1, target_has_stack_1) (target_has_registers_1, target_has_execution_1): Declare functions. (target_has_all_memory): Rewrite to call target_has_all_memory_1. (target_has_memory): Rewrite to call target_has_memory_1. (target_has_stack): Rewrite to call target_has_all_stack_1. (target_has_registers): Rewrite to call target_has_registers_1. (target_has_execution): Rewrite to call target_has_execution_1. (default_child_has_all_memory, default_child_has_memory) (default_child_has_stack, default_child_has_registers) (default_child_has_execution): Declare. (target_mark_running, target_mark_exited): Delete declarations. * target.c (default_child_has_all_memory, default_child_has_memory, default_child_has_stack, default_child_has_registers, default_child_has_execution): New. (target_has_all_memory_1, target_has_memory_1, target_has_stack_1, target_has_registers_1, target_has_execution_1): New. (add_target): Default the to_has_all_memory, to_has_all_memory, to_has_memory, to_has_stack, to_has_registers and to_has_execution callbacks to return 0. (update_current_target): Do not inherit to_has_all_memory, to_has_memory, to_has_stack, to_has_registers or to_has_execution. (target_mark_running, target_mark_exited): Delete. (memory_xfer_partial): Adjust. (target_read_memory, target_write_memory, target_search_memory): Dispatch to the the top-most target, not the flattened current_target. (target_info): Adjust. (init_dummy_target): Install return_zero as callback for to_has_all_memory, to_has_memory, to_has_stack, to_has_registers, to_has_execution. (set_maintenance_target_async_permitted): Use have_live_inferiors instead of target_has_execution. * target-memory.c (target_write_memory_blocks): Dispatch memory writes to the the top-most target, not the flattened current_target. * breakpoint.c (insert_breakpoints): Don't check for target_has_execution here. (update_global_location_list): Check if there are live inferiors to debug instead of target_has_execution. * infcmd.c (kill_command, detach_command): Check if there are inferiors instead of target_has_execution. * inferior.h (have_live_inferiors): Declare. * inferior.c (have_live_inferiors): New. * infrun.c (normal_stop): Don't check for target_has_execution to finish the thread states. * thread.c (is_thread_state, is_stopped, is_exited, is_running) (any_running, is_executing): Remove checks for target_has_execution. * top.c (kill_or_detach): Don't try to kill core inferiors. (quit_target): Don't check for target_has_execution. * corelow.c (core_has_memory, core_has_stack, core_has_registers): New. (init_core_ops): Install core_has_memory, core_has_stack and core_has_registers. * exec.c (exec_has_memory): New. (init_exec_ops): Install exec_has_memory. * remote.c (remote_add_inferior): Don't call target_mark_running. (remote_start_remote): Don't call target_mark_exited or call target_mark_running. (remote_open_1): Use have_inferiors instead of target_has_execution. Don't use target_mark_exited. (init_remote_ops): Install deafult_child_has_all_memory, default_child_has_memory, default_child_has_stack, default_child_has_registers, default_child_has_execution. * bsd-kvm.c (bsd_kvm_return_one): New. (bsd_kvm_add_target): Register bsd_kvm_return_one as to_has_memory, to_has_stack and to_has_registers callbacks. * remote-m32r-sdi.c (m32r_return_one): New. (init_m32r_ops): Register it. * inf-child.c (inf_child_target): Adjust to register default_child_has_all_memory, default_child_has_memory, default_child_has_stack, default_child_has_registers, default_child_has_execution callbacks. * gnu-nat.c (init_gnu_ops): Likewise. * go32-nat.c (init_go32_ops): Likewise. * hpux-thread.c (init_hpux_thread_ops): Likewise. * monitor.c (init_base_monitor_ops): Likewise. * nto-procfs.c (init_procfs_ops): Likewise. * remote-mips.c (_initialize_remote_mips): Likewise. * windows-nat.c (init_windows_ops): Likewise. * remote-sim.c (gdbsim_create_inferior): Don't use target_mark_running or target_mark_exited. (gdbsim_mourn_inferior): Don't call target_mark_exited. (init_gdbsim_ops): Adjust to register default_child_has_all_memory, default_child_has_memory, default_child_has_stack, default_child_has_registers, default_child_has_execution callbacks. * linux-nat.c (linux_nat_xfer_partial): If reading memory, and there's no inferior selected, defer to a lower stratum.
2009-06-07Tiny formatting fix.Pedro Alves1-1/+1