aboutsummaryrefslogtreecommitdiff
path: root/gdb
AgeCommit message (Collapse)AuthorFilesLines
2012-06-15 * infrun.c (handle_inferior_event): Correct indentation.Maciej W. Rozycki2-4/+8
2012-06-15*** empty log message ***gdbadmin1-1/+1
2012-06-14 * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.Doug Evans2-9/+39
(DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL. All uses updated. (decode_debug_loc_dwo_addresses): New arg "byte_order". All callers updated. Handle DEBUG_LOC_START_LENGTH. (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH. (loclist_describe_location): Ditto.
2012-06-14 PR backtrace/13866Maciej W. Rozycki2-1/+14
* infrun.c (handle_inferior_event): Re-fetch frame and gdbarch after hiding inline functions.
2012-06-14Fix copy/paste error in _initialize_inf_ttrace's advance declaration.Joel Brobecker2-1/+6
gdb/ChangeLog: * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into _initialize_inf_ttrace.
2012-06-14Rename ia64-hpux-nat.c:_initialize_hppa_hpux_nat...Joel Brobecker2-2/+7
... into _initialize_ia64_hpux_nat. Looks like a harmless but unfortunate copy/paste error. gdb/ChangeLog: * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames _initialize_hppa_hpux_nat.
2012-06-14Fix invalid profile for command-completer in remote-sim.cJoel Brobecker2-2/+19
The profile of command completers has been change to returna VEC of char_ptr. Most completers were updated, except the one in remote-sim.c. Unfortunately, to make things a little more difficult, the meat of the completer is actually implemented in the sim, were VECs are not available. This patch thus translates the returned array into a VEC, and then returns that VEC. gdb/ChangeLog: * remote-sim.c (sim_command_completer): Change type of return value to "VEC (char_ptr) *". Adjust implementation accordingly.
2012-06-14*** empty log message ***gdbadmin1-1/+1
2012-06-13gdb/testsuite/Jan Kratochvil4-0/+351
PR tdep/14222 * gdb.arch/i386-sse-stack-align.S: New file. * gdb.arch/i386-sse-stack-align.c: New file. * gdb.arch/i386-sse-stack-align.exp: New file.
2012-06-13 PR tdep/14222Mark Kettenis2-7/+14
* i386-tdep.c (i386_push_dummy_call): Unconditionally align the stack on a 16-byte boundary.
2012-06-132012-06-13 Kaushik Srenevasan <kaushik@twitter.com>Tom Tromey2-0/+10
* jit.c (finalize_symtab): Set function's return type to 'void' by default.
2012-06-13 * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.Mark Kettenis2-34/+93
Move bits common to both the classic LP64 and the new x32 ILP32 ABI here. (amd64_linux_init_abi): Call amd64_linux_init_abi_common. (amd64_x32_linux_init_abi): New function. (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32 subtype.
2012-06-13 H.J. Lu <hongjiu.lu@intel.com>Mark Kettenis5-2/+54
* i386-tdep.h (i386_pseudo_register_name): New prototype. * i386-tdep.c (i386_pseudo_register_name): Make public. * amd64-tdep.h (amd64_x32_init_abi): New prototype. * amd64-tdep.c (amd64_dword_names): Add "eip". (amd64_x32_pseudo_register_type): New function (amd64_x32_init_abi): New function.
2012-06-13gdb/Jan Kratochvil3-0/+20
PR build/14003 * inferior.h (struct inferior_suspend_state): Comment out. (struct inferior): Comment out the field suspend. * infrun.c (struct infcall_suspend_state): Comment out the field inferior_suspend. (save_infcall_suspend_state, restore_infcall_suspend_state): Comment out its assignment.
2012-06-13 PR breakpoints/13798 and mi/11541Keith Seitz2-1/+9
* gdb.linespec/ls-errs.exp: Add a few more tests for filenames with spaces and colons.
2012-06-13gdb/Jan Kratochvil7-27/+104
PR c++/14177 - Fix parsing TYPENAME:: in parentheses. * c-exp.y (classify_inner_name): Remove caller assumptions in the function comment. Return ERROR for unresolved cases. Implement returning proper NAME. (yylex): Accept also NAME from classify_inner_name. * cp-namespace.c (cp_lookup_nested_type): Rename to ... (cp_lookup_nested_symbol): ... here. Return any found symbol, not just LOC_TYPEDEF type. * cp-support.h (cp_lookup_nested_type): Update its declaration. gdb/testsuite/ PR c++/14177 - Fix parsing TYPENAME:: in parentheses. * gdb.cp/cpexprs.cc (class CV, CV::i, ATTRIBUTE_USED, CV_f): New. (test_function): Call CV_f. * gdb.cp/cpexprs.exp (p 'CV::m(int)', p CV::m(int)) (p 'CV::m(int) const', p CV::m(int) const, p 'CV::m(int) volatile') (p CV::m(int) volatile, p 'CV::m(int) const volatile') (p CV::m(int) const volatile, p CV_f(int), p CV_f(CV::t)) (p CV_f(CV::i)): New tests.
2012-06-13 * breakpoint.c (condition_completer): New function.Tom Tromey6-1/+99
(_initialize_breakpoint): Use it. * value.c (complete_internalvar): New function. * value.h (complete_internalvar): Declare. testsuite * gdb.base/condbreak.exp: Add tests for "condition" completion.
2012-06-13 * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.Tom Tromey14-334/+230
* breakpoint.c (catch_syscall_completer): Return a VEC. * cli/cli-cmds.c (complete_command): Update. * cli/cli-decode.c (complete_on_cmdlist): Return a VEC. (complete_on_enum): Likewise. * command.h: Include gdb_vecs.h. (completer_ftype): Change return type. (complete_on_cmdlist, complete_on_enum): Likewise. * completer.c (noop_completer, filename_completer) (location_completer): Return a VEC. (add_struct_fields): Remove 'nextp' argument. Change 'output' to a VEC. (expression_completer, complete_line_internal, complete_line) (command_completer): Return a VEC. (gdb_completion_word_break_characters, line_completion_function): Update. * completer.h: Include gdb_vecs.h. (complete_line, noop_completer, filename_completer) (expression_completer, location_completer, command_completer): Update. * f-lang.c (f_word_break_characters): Return a VEC. * interps.c (interpreter_completer): Return a VEC. * language.h (struct language_defn) <la_make_symbol_completion_list>: Return a VEC. * python/py-cmd.c (cmdpy_completer): Return a VEC. * symtab.c (free_completion_list): Take a VEC. (return_val_size, return_val_index): Remove. (return_val): Now a VEC. (completion_list_add_name): Update. (default_make_symbol_completion_list_break_on) (default_make_symbol_completion_list, make_symbol_completion_list) (make_symbol_completion_list_fn, make_file_symbol_completion_list): Return a VEC. (add_filename_to_list): Update. (struct add_partial_filename_data) <list_used, list_alloced>: Remove. <list>: Now a VEC. (maybe_add_partial_symtab_filename): Update. (make_source_files_completion_list): Return a VEC. * symtab.h (default_make_symbol_completion_list_break_on) (default_make_symbol_completion_list, make_symbol_completion_list) (make_symbol_completion_list_fn, make_file_symbol_completion_list) (make_source_files_completion_list): Update.
2012-06-13 * breakpoint.c (add_catch_command): Use completer_ftype.Tom Tromey7-13/+22
* breakpoint.h: Include command.h. (add_catch_command): Use completer_ftype. * cli/cli-decode.c (set_cmd_completer): Use completer_ftype. * cli/cli-decode.h (struct cmd_list_element) <completer>: Use completer_ftype. * command.h (completer_ftype): New typedef. (set_cmd_completer): Use it. * python/py-cmd.c (struct cmdpy_completer) <completer>: Use completer_ftype.
2012-06-132012-06-13 Pedro Alves <palves@redhat.com>Pedro Alves3-0/+46
Partial revert of previous change. * serial.c (scb_base): New global. (serial_for_fd): New. (serial_open, serial_fdopen_ops): Link new serial in open serials chain. (do_serial_close): Unlink serial from the open serials chain.
2012-06-13gdb/gdbserver:Yao Qi2-2/+5
* server.c (start_inferior): Remove duplicated writes to fields 'last_resume_kind' and 'last_status' of 'current_inferior'.
2012-06-13*** empty log message ***gdbadmin1-1/+1
2012-06-122012-06-12 Pedro Alves <palves@redhat.com>Pedro Alves2-20/+25
* infrun.c (infrun_thread_stop_requested_callback): Don't switch threads here. (prepare_for_detach): No longer context switch here in non-stop mode. (fetch_inferior_event): Ditto. (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch to the event thread before removing breakpoints. Switch to the event thread before inserting breakpoints and resuming. (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the event thread before resuming. (handle_inferior_event) <stepping_past_singlestep_breakpoint>: Switch to the event thread before removing breakpoints.
2012-06-12Fix quoting of special characters for the MinGW build.Eli Zaretskii2-5/+39
infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote special characters correctly for the Windows shells. See http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug report. [!__MINGW32__]: Remove extra double quote character from special characters.
2012-06-12gdb/gdbserver:Yao Qi3-6/+14
* linux-low.c (linux_set_resume_request): Simplify predicate. Add comment. * server.c (handle_v_cont): Extend comment.
2012-06-12 * ui-out.h: Remove #if 0 declarations.Stan Shebs3-79/+5
* ui-out.c: Remove #if 0 functions.
2012-06-12*** empty log message ***gdbadmin1-1/+1
2012-06-112012-06-11 Pedro Alves <palves@redhat.com>Pedro Alves4-11/+88
* ser-base.c (run_async_handler_and_reschedule): New. (fd_event, push_event): Use it. * serial.c (serial_open, serial_fdopen_ops): Set the initial reference count to 1. (do_serial_close): Set the bufp field to NULL. Use serial_unref instead of xfree. (serial_is_open, serial_ref, serial_unref): New. * serial.h (serial_open): Adjust comment. (serial_is_open): Declare. (serial_close): Adjust comment. (serial_ref, serial_unref) Declare. (struct serial): New field 'refcnt'.
2012-06-112012-06-11 Pedro Alves <palves@redhat.com>Pedro Alves3-190/+13
Remove #if 0'd "connect" command, and unnecessary associated refcounting and serial reuse bits. * serial.h (struct serial): Remove fields 'next' and 'refcnt'. * serial.c (last_serial_opened): Delete. (scb_base): Delete. (serial_open): Adjust. (serial_for_fd): Delete. (serial_fdopen_ops, do_serial_close): Adjust. (serial_fdopen_ops): Adjust.
2012-06-112012-06-11 Pedro Alves <palves@redhat.com>Pedro Alves2-6/+5
* serial.c (do_serial_close): Remove early return when SCB is null.
2012-06-11 * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.Tom Tromey2-0/+12
2012-06-11gdb/Jan Kratochvil4-4/+31
Fix regression by the "ambiguous linespec" series. * breakpoint.c (parse_breakpoint_sals): New variable cursal. Use get_last_displayed_symtab and get_last_displayed_line and depending on CURSAL. gdb/testsuite/ Fix regression by the "ambiguous linespec" series. * gdb.base/break.exp (list marker1, break lineno, delete $bpnum): New tests.
2012-06-11 * dwarf2read.c (dw2_get_primary_filename_reader): New function.Tom Tromey2-5/+37
(dw2_find_symbol_file): Use it.
2012-06-11gdb/testsuite/Jan Kratochvil2-1/+6
* lib/future.exp: Set $use_gdb_compile even if only find_go_linker is missing.
2012-06-11*** empty log message ***Michael Eager3-0/+141
2012-06-11 * infrun.c (handle_inferior_event)Tom Tromey4-57/+68
<BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume breakpoint. <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use exception logic in all cases. Update comments. (insert_longjmp_resume_breakpoint): Set the exception resume breakpoint. testsuite * gdb.base/longjmp.c (hidden_longjmp): Move expected catch location... (main): ...here.
2012-06-11 * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.Maciej W. Rozycki2-3/+14
2012-06-11gdb/gdbserver:Yao Qi2-1/+5
* linux-low.c (linux_attach): Add 'static'.
2012-06-11*** empty log message ***gdbadmin1-1/+1
2012-06-10*** empty log message ***gdbadmin1-1/+1
2012-06-092012-06-09 Siva Chandra Reddy <sivachandra@google.com>Siva Chandra Reddy2-1/+5
* valarith.c (binop_types_user_defined_p): Fix a typo.
2012-06-09*** empty log message ***gdbadmin1-1/+1
2012-06-08gdb/Yao Qi10-42/+135
* arch-utils.c (default_return_in_first_hidden_param_p): New. * arch-utils.h: Declare. * gdbarch.sh: Add return_in_first_hidden_param_p. * gdbarch.c, gdbarch.h: Regenerated. * infcall.c (call_function_by_hand): Call gdbarch_return_in_first_hidden_param_p instead of language_pass_by_reference. * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New. (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p. * sh-tdep.c (sh_return_in_first_hidden_param_p): New. (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p. * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable `cplus_return_struct_by_reference'. (tic6x_return_value): Handle language cplusplus. (tic6x_return_in_first_hidden_param_p): New. (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
2012-06-08gdb/doc:Yao Qi2-0/+163
* gdb.texinfo (In-Process Agent): Add 'In-Process Agent Protocol'. (In-Process Agent Protocol, IPA Protocol Objects) (IPA Protocol Commands): New nodes. (Tracepoint Packets): Add anchors.
2012-06-08*** empty log message ***gdbadmin1-1/+1
2012-06-07 * dwarf2read.c (dwarf2_cu): Add comment.Doug Evans2-1/+13
2012-06-07gdb/testsuite/Yao Qi2-12/+24
* gdb.trace/strace.exp: Shorten some too-long lines.
2012-06-07*** empty log message ***gdbadmin1-1/+1
2012-06-06 * mips-tdep.c (mips_pseudo_register_type): Remove tdep localMaciej W. Rozycki2-5/+9
variable. (mips_eabi_push_dummy_call): Likewise. (mips_n32n64_push_dummy_call): Likewise. (mips_o32_push_dummy_call): Likewise. (mips_o64_push_dummy_call): Likewise.
2012-06-06 * mips-tdep.c (mips_convert_register_p): Correct coding style.Maciej W. Rozycki2-2/+6