X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=gdb%2FChangeLog;h=a800d84a390667bd1cb4051aaf3417dd80a01108;hb=d63d0675b66c96510a519c93795e3ba3b074e979;hp=f051943f58abb2d99996884fbd03e3528a29034d;hpb=db04efe6afedfc35b7540b1ce9cafb77e2b8360f;p=binutils-gdb.git diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f051943f58a..a800d84a390 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,181 @@ +2010-08-16 Jan Kratochvil + + * breakpoint.c (update_watchpoint): Add source empty line. Prefer + EXP_STRING_REPARSE to EXP_STRING. + (watch_command_1): Set also EXP_STRING_REPARSE. + (delete_breakpoint): Free also EXP_STRING_REPARSE. + * breakpoint.h (struct breakpoint): New field exp_string_reparse. + Update comment for exp_string. + +2010-08-16 Tom Tromey + + * value.c (release_value): Clear 'next' pointer. + * breakpoint.c (watch_command_1): Add 'just_location' argument. + (watch_command_wrapper): Update. + (watch_maybe_just_location): New function. + (watch_command): Update. + (rwatch_command_wrapper): Update. + (rwatch_command): Update. + (awatch_command_wrapper): Update. + (awatch_command): Update. + (check_for_argument): New function. + (_initialize_breakpoint): Update help text. + +2010-08-14 Ulrich Weigand + + * arm-tdep.c (arm_push_dummy_call): Handle pointers to + typedef'ed function types correctly. + +2010-08-13 Tom Tromey + + * python/python-internal.h (gdbpy_get_hook_function): Don't + declare. + +2010-08-13 Jan Kratochvil + + * cli-logging.c (logging_overwrite, logging_redirect): Make them + static. + +2010-08-13 Ken Werner + + * python/python.c (gdbpy_solib_name): Remove the const qualifier of + the format strings to be compatible with Python 2.4. + +2010-08-13 Vladimir Prus + + Easier and more stubborn MI memory read commands. + + * mi/mi-cmds.c (mi_cmds): Register data-read-memory-bytes + and data-write-memory-bytes. + * mi/mi-cmds.h (mi_cmd_data_read_memory_bytes) + (mi_cmd_data_write_memory_bytes): New. + * mi/mi-main.c (mi_cmd_data_read_memory): Use regular target_read. + (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory_bytes): + New. + (mi_cmd_list_features): Add "data-read-memory-bytes" feature. + * target.c (target_read_until_error): Remove. + (read_whatever_is_readable, free_memory_read_result_vector) + (read_memory_robust): New. + * target.h (target_read_until_error): Remove. + (struct memory_read_result, free_memory_read_result_vector) + (read_memory_robust): New. + +2010-08-13 Hui Zhu + + * dwarf2read.c (load_partial_comp_unit): Initialize free_cu_cleanup. + (read_comp_unit): Initialize back_to. + +2010-08-12 Daniel Jacobowitz + Pedro Alves + + * dwarf2read.c: Include "c-lang.h" and "valprint.h". + (struct dwarf2_per_objfile) : New field. + (struct partial_die_info) : New field. + : Change type to unsigned char. + : New field. + (dwarf2_build_psymtabs_hard): Set reading_partial_symbols. Only + allocate a CU if we don't have one already. Add a cleanup for the + CU. + (partial_die_full_name): Handle template arguments not in + DW_AT_name. + (dwarf2_psymtab_to_symtab): Clear reading_partial_symbols. + (load_full_comp_unit): Only allocate a CU if we don't have one + already. + (do_ui_file_peek_last): New. + (dwarf2_compute_name): Handle template parameters not in + DW_AT_name. + (read_comp_unit): Read and free abbrevs if not read yet. + (load_partial_dies): Handle template arguments not in DW_AT_name. + (find_partial_die): If we have a CU, but no a partial dies yet, + also read in the CU. + (dwarf2_const_value_attr): New, abstracted out from + dwarf2_const_value. + (dwarf2_const_value, dwarf2_const_value_data): Adjust to use + dwarf2_const_value_attr. + (determine_prefix): Detect and break loops created by RCVT's debug + info. + (maybe_queue_comp_unit): Bail out early if reading partial + symbols. + (follow_die_offset): Load full CU if we have no dies. + * dwarf2loc.c (dwarf2_evaluate_loc_desc): Make public. + * dwarf2loc.h (dwarf2_evaluate_loc_desc): Declare. + +2010-08-11 Tom Tromey + Phil Muldoon + + * python/python.c (gdbpy_run_events): New function. + (gdbpy_post_event): Likewise. + (gdbpy_initialize_events): Likewise. + (_initialize_python): Call gdbpy_initialize_events. + +2010-08-11 Ken Werner + + * gdb/valarith.c (vector_binop): New function. + (scalar_binop): Likewise. + (value_binop): Call scalar_binop or vector_binop depending on the types. + * gdb/eval.c (ptrmath_type_p): Return 0 in case of TYPE_VECTOR. + (evaluate_subexp_with_coercion): Add vector check to not convert vectors + to pointers. + * gdb/value.c (coerce_array): Add vector check to not coerce vectors. + +2010-08-11 Brad Roberts + + * d-lang.c (extract_identifiers): Handle multiple digits. + +2010-08-11 Jan Kratochvil + + Code cleanup. + * dummy-frame.c (dummy_frame_unwinder): Remove its static qualifier. + Rename to dummy_frame_unwind. + (dummy_frame_unwind): Remove. + * dummy-frame.h (dummy_frame_unwind): Reference directly the struct. + * frame-unwind.c (frame_unwind_init): Use address of + dummy_frame_unwind and inline_frame_unwind. + * frame.c (create_sentinel_frame): Use address of + sentinel_frame_unwind. + * inline-frame.c (inline_frame_unwinder): Rename to + inline_frame_unwind. + (inline_frame_unwind): Remove. + * inline-frame.h (inline_frame_unwind): Reference directly the struct. + * sentinel-frame.c (sentinel_frame_unwinder): Rename to + sentinel_frame_unwind. + (sentinel_frame_unwind): Remove. + * sentinel-frame.h (sentinel_frame_unwind): Reference directly the + struct. + +2010-08-11 Jan Kratochvil + + Code cleanup. + * frame-unwind.c (frame_unwind_find_by_frame): Remove the return type + and returned value. New comment from frame-unwind.h. + * frame-unwind.h (frame_unwind_find_by_frame): Remove the return type. + Extend the comment. + * frame.c (get_frame_id, frame_unwind_register_value) + (create_new_frame, get_prev_frame_1, frame_unwinder_is) + (get_frame_type, frame_unwind_arch): Do not use the return value of + frame_unwind_find_by_frame. + +2010-08-11 Phil Muldoon + Thiago Jung Bauermann + Tom Tromey + + * python/python.c (gdbpy_solib_address): New function. + (gdbpy_decode_line): Likewise. + +2010-08-10 Tom Tromey + + Revert gdb-add-index addition: + * Makefile.in (install-only): Don't install gdb-add-index. + * gdb-add-index.sh: Remove. + +2010-08-09 Kevin Buettner + + * remote-sim.c (gdbsim_xfer_inferior_memory): Replace + `target_has_execution' check with `to_has_memory' check. + (gdbsim_has_all_memory, gdbsim_has_memory): New functions. + (init_gdbsym_ops): Initialize relevant fields of `gdbsim_ops' + with `gdbsim_has_all_memory' and `gdbsim_has_memory'. + 2010-08-09 Kevin Buettner * remote-sim.c (program_loaded, gdbsim_desc, remote_sim_ptid)