gdb/
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index 3a5bf3d241ce7acdd26174ded74933f3ea2a0ed8..ca892e99385780551abf8a981671459b6ecd12c0 100644 (file)
@@ -1,3 +1,191 @@
+2010-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * defs.h (parse_pid_to_attach): New.
+       * utils.c (parse_pid_to_attach): New.
+       * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
+       * gnu-nat.c (gnu_attach): Likewise.
+       * nto-procfs.c (procfs_attach): Likewise.
+       * procfs.c (procfs_attach): Likewise.
+       * windows-nat.c (windows_attach): Likewise.
+       * inf-ptrace.c (inf_ptrace_attach): Likewise.  Remove variable dummy.
+       * inf-ttrace.c (inf_ttrace_attach): Likewise.
+       * remote.c (extended_remote_attach_1): Likewise.  New comment on getpid
+       check.
+
+2010-02-14  Masaki Muranaka  <monaka@monami-software.com>
+
+       * MAINTAINERS: Add myself for write after approval privileges.
+
+2010-02-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
+       block.
+
+2010-02-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
+       only if INFO_VERBOSE.
+
+2010-02-12  Tomas Holmberg <th@virtutech.com>
+
+       * mi/mi-main.c: Added the --reverse flag to the following MI
+       commands: exec-continue, exec-finish, exec-next, exec-step,
+       exec-next-instruction, exec-step-instruction. This is to
+       support reverse execution over the MI interface to gdb.
+
+2010-02-12  Pedro Alves  <pedro@codesourcery.com>
+
+       * tracepoint.c (_initialize_tracepoint): Specify that the address
+       range of `tfind outsize' is exclusive, and that the address range
+       of `tfind range' is inclusive, in the commands' help strings.
+
+2010-02-12  Joel Brobecker  <brobecker@adacore.com>
+
+       Spurious "dll not found" error messages on x64-windows.
+       * windows-nat.c: Add include of complaints.h.
+       (handle_unload_dll): Change dll-not-found error into a complaint.
+
+2010-02-12  Pedro Alves  <pedro@codesourcery.com>
+
+       * breakpoint.c (allocate_bp_location): Use bp_loc_other for
+       bp_tracepoint and bp_fast_tracepoint, not
+       bp_loc_software_breakpoint.
+       (update_global_location_list): Tracepoints are never duplicates of
+       anything.
+
+2010-02-12  Pedro Alves  <pedro@codesourcery.com>
+
+       * breakpoint.c (break_command_really): Change return type to int.
+       Return false if no breakpoint was created, true otherwise.
+       (trace_command): Don't set the tracepoint count if no tracepoint
+       was created.
+       (ftrace_command): Ditto.
+       (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
+       created in the breakpoints table.
+
+2010-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
+           Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
+
+2010-02-11  Pedro Alves  <pedro@codesourcery.com>
+
+       * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
+       the offset value isn't of integral type.
+
+2010-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
+       New.
+
+2010-02-11  Pedro Alves  <pedro@codesourcery.com>
+
+       * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
+       non-subscriptable types.
+       * valarith.c (binop_types_user_defined_p): New, abstracted out
+       from ...
+       (binop_user_defined_p): ... this.
+       * value.h (binop_types_user_defined_p): Declare.
+
+2010-02-11  Pedro Alves  <pedro@codesourcery.com>
+
+       * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
+       Merge uploaded TSVs before merging uploaded tracepoints.
+
+2010-02-11  Pedro Alves  <pedro@codesourcery.com>
+
+       * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
+
+2010-02-11  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
+       whitespace character after a dot in comment.
+       (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
+       Likewise.
+       (list_args_or_locals): For the 'all' (that is
+       -stack-list-variables) case, always output list of tuples.
+       Output 'arg' field if variable is argument.
+
+2010-02-10  Tom Tromey  <tromey@redhat.com>
+
+       * parser-defs.h (parser_debug): Declare.
+       * parse.c (_initialize_parse): Install "debug parser" set/show
+       command.
+       (parser_debug): New global.
+       (show_parserdebug): New function.
+       * c-exp.y (c_parse): Set yydebug.
+
+2010-02-10  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
+       TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
+       (tdesc_predefined_types): Add i387_ext, i386_eflags and
+       i386_mxcsr.
+       (tdesc_find_type): New.
+       (tdesc_gdb_type): Use tdesc_find_type.  Handle TDESC_TYPE_I387_EXT,
+       TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
+
+       * target-descriptions.h (tdesc_find_type): New.
+
+2010-02-10  Michael Snyder  <msnyder@vmware.com>
+
+       * gdb-gdb.py: Comment fix.
+
+2010-02-09  Tristan Gingold  <gingold@adacore.com>
+
+       * machoread.c (macho_symfile_relocate): New function.
+       (macho_sym_fns): Use macho_symfile_relocate instead of
+       default_symfile_relocate.
+       (macho_oso_data): New type.
+       (current_oso): New variable.
+       (macho_add_oso_symfile): Do not compute section_addr_info, but
+       instead set vma of sections.
+       Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
+       Set and clear current_oso.
+
+2010-02-09  Joel Brobecker  <brobecker@adacore.com>
+
+       Wrong type description for tagged type parameter.
+       * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
+       EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
+       reference to a tagged type.
+
+2010-02-09  Tristan Gingold  <gingold@adacore.com>
+
+       * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
+       brothers of the parent.
+
+2010-02-08  Tom Tromey  <tromey@redhat.com>
+
+       PR c++/8017:
+       * value.h: Update.
+       * valops.c (search_struct_field): Make 'name' const.
+       (search_struct_method): Likewise.
+       (find_method_list): Make 'method' const.
+       (value_struct_elt): Make 'name' and 'err' const.
+       (value_find_oload_method_list): Make 'method' const.
+       (find_overload_match): Make 'name' const.
+       * eval.c (evaluate_subexp_standard): New locals function,
+       function_name.
+       <OP_FUNCALL>: Handle OP_SCOPE specially.
+
+2010-02-08  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * infrun.c (handle_inferior_event): Do not look up regcache
+       for exited processes.
+
+Mon Feb  8 13:17:10 2010  Chris Moller  <moller@mollerware.com>
+
+       PR gdb/10728
+       * valarith.c (value_ptrdiff): Added a test for a zero type length,
+       warn if found, and assume length = 1. 
+
+2010-02-08  Chris Moller  <cmoller@redhat.com>
+
+       PR gdb/9067
+       * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
+       cp_print_static_field)  Fix use of obstacks.
+       
 2010-02-08  Pedro Alves  <pedro@codesourcery.com>
 
        * linux-nat.c (linux_nat_resume): In non-stop, also only tag
This page took 0.032188 seconds and 4 git commands to generate.