X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2FChangeLog;h=58251edd43985f5360ca6190fc2cdd2636e20ada;hb=9852c492bd1c33290056351227ed7f314ff045c3;hp=afcaf28e96bea4227d21621e57dd65859f26b3a7;hpb=b4b79973de7d289e0c12af9979782acba1c6eba3;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/ChangeLog b/gdb/ChangeLog index afcaf28e96..58251edd43 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,873 @@ +2013-03-29 Yao Qi + + * corelow.c: Include "completer.h". + (_initialize_corelow): Call add_target_with_completer with + argument 'filename_completer'. + * tracepoint.c: Likewise. + * exec.c (_initialize_exec): Likewise. + * target.c (add_target): Rename to ... + (add_target_with_completer): ... this. Call set_cmd_completer + if parameter completer is not NULL. + (add_target): New. + * target.h: Include "command.h". + (add_target_with_completer): Declare it. + +2013-03-28 Joel Brobecker + + * coffread.c (is_import_fixup_symbol): New function. + (record_minimal_symbol): Use is_import_fixup_symbol to + detect import fixup symbols, and discard them. + +2013-03-28 Doug Evans + + * dwarf2read.c (create_debug_types_hash_table): Don't allocate the + types hash table until we know we need it. + + * dwarf2read.c (create_addrmap_from_index): Complain about bad CU + index numbers. + + * dwarf2read.c (dw2_get_file_names): Delete arg "objfile". + All callers updated. + (dw2_print_stats): Print #read CUs too. + (dump_die_shallow): Print signatured types better. + + * dwarf2read.c (struct dwarf2_per_cu_data): Rename member + info_or_types_section to section. All uses updated. + (struct dwo_unit): Ditto. + +2013-03-28 Pedro Alves + + * NEWS (New options): New section. + (New options): Mention set/show remote trace-status-packet. + * remote.c (PACKET_qTStatus): New enumeration value. + (remote_get_trace_status): Skip sending qTStatus if the packet is + disabled. Use packet_ok. + (_initialize_remote): Register a configuration command for + qTStatus packet. + +2013-03-28 Doug Evans + + * symfile.c (find_separate_debug_file): Add comment. + (terminate_after_last_dir_separator): Tweak comment. + + * dwarf2read.c (create_partial_symtab): Add forward decl. + (create_partial_symtab): Move to be closer to other psymtab functions. + (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto. + + * dwarf2read.c (dwarf2_physname): Move declaration to better spot. + (compute_symtab_includes): Remove unnecessary forward declaration. + (die_needs_namespace): Add comment marking group of functions for + dwarf2 name computation. + + * typeprint.c (_initialize_typeprint): Improve type help text. + + * python/python.c (finish_python_initialization): Provide suggestion + for how to tell gdb to find its python files. + +2013-03-28 Pedro Alves + + PR gdb/15294 + + * source.c (_initialize_source): Change back "set listsize" to an + integer command. + +2013-03-27 Gareth McMullin + + PR gdb/15275 + * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH. + +2013-03-27 Pedro Alves + + * top.c (history_size): Rename to ... + (history_size_setshow_var): ... this. Add comment. + (show_commands): Use readline's 'history_length' instead of + computing the history length by calling history_get in a loop. + (set_history_size_command): Error out for sizes over INT_MAX. + Restore previous history size on invalid size. + (init_history): If HISTSIZE is negative, leave the history size as + zero. Add comments. + (init_main): Adjust. + +2013-03-27 Pedro Alves + + * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug + coff_pe_read" command to "set debug coff-pe-read". + +2013-03-27 Markus Metzger + + * record.c (command_size_to_target_size): Fix size comparison. + Change parameter type from pointer to integer to integer. + Update all users. + +2013-03-27 Pierre Muller + + * windows-nat.c (handle_output_debug_string): Avoid typecast + from integer of different size warning. + +2013-03-26 Joel Brobecker + + * windows-nat.c (handle_output_debug_string): Add empty line + after local block variable definition. + +2013-03-26 Pedro Alves + + * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned. + (net_open): Make 'polls' local unsigned. + +2013-03-26 Pedro Alves + + * remote.c (_initialize_remote): Make "set remoteaddresssize" + a zuinteger command instead of uinteger. + +2013-03-26 Pedro Alves + + * record-full.c (record_full_insn_num): Make it unsigned. + (record_full_check_insn_num, record_full_message) + (record_full_registers_change, record_full_xfer_partial): Remove + record_full_insn_max_num check (it's always != 0). + (record_full_info, record_full_restore): Use %u as format string. + (): Use %u as format string. + (set_record_full_insn_max_num): Remove record_full_insn_max_num + check (it's always != 0). + +2013-03-26 Pedro Alves + + * dcache.c (_initialize_dcache): Make the "set dcache line-size" + and "set dcache size" commands zuinteger instead of uinteger. + +2013-03-26 Pedro Alves + + * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version" + command zuinteger instead of uinteger. + +2013-03-26 Pedro Alves + + * coff-pe-read.c (_initialize_coff_pe_read): Make the command + zuinteger instead of uinteger. + +2013-03-26 Pedro Alves + + * record.c (record_insn_history_size_setshow_var) + (record_call_history_size_setshow_var): New globals. + (command_size_to_target_size): New function. + (cmd_record_insn_history, cmd_record_call_history): Use + command_size_to_target_size instead of cast. + (validate_history_size, set_record_insn_history_size) + (set_record_call_history_size): New functions. + (_initialize_record): Install set_record_insn_history_size and + set_record_call_history_size as "set" hooks of "set record + instruction-history-size" and "set record + function-call-history-size". + +2013-03-26 Pedro Alves + + * top.c (gdb_rl_operate_and_get_next): Replace max_input_history + use with history_max_entries use. Remove FIXME note. + +2013-03-26 Markus Metzger + + * record-btrace.c (record_btrace_close): Call + record_btrace_auto_disable. + +2013-03-25 Joel Brobecker + + * rs6000-nat.c (fixup_breakpoints): Delete declaration. + +2013-03-25 Doug Evans + + * contrib/cc-with-tweaks.sh: Check exit code of dwp. + +2013-03-25 Tom Tromey + + PR symtab/11462: + * c-exp.y (exp): Add new productions for destructors after '.' and + '->'. + (write_destructor_name): New function. + +2013-03-25 Tom Tromey + + PR c++/9197: + * opencl-lang.c (evaluate_subexp_opencl) : Use + value_struct_elt, not lookup_struct_elt_type. + * eval.c (evaluate_subexp_standard) : Use value_struct_elt, not lookup_struct_elt_type. + * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment. + +2013-03-25 Yao Qi + + * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir' + instead of '_mkdir'. + +2013-03-23 Eli Zaretskii + + * windows-nat.c (windows_get_absolute_argv0): New function. + * windows-nat.h: Add its prototype. + + * main.c (get_init_files): Use filename_ncmp instead of strncmp. + Use IS_DIR_SEPARATOR instead of looking for a character inside + SLASH_STRING. Include filenames.h. + (captured_main) [__MINGW32__]: Make argv[0] absolute, so that + relocate_gdb_directory works when passed gdb_program_name. + Include windows-nat.h. + +2013-03-22 Jan Kratochvil + + * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR. + * remote.c (trace_error): Remove the special handling of '2'. + (readchar) + (readchar) + (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them. + (remote_get_trace_status): Call throw_exception if EX is + TARGET_CLOSE_ERROR. + * utils.c (perror_with_name): Rename to ... + (throw_perror_with_name): ... here. New parameter errcode, describe it + in the function comment. + (perror_with_name): New function wrapper. + * utils.h (enum errors): New stub declaration. + (throw_perror_with_name): New declaration. + +2013-03-22 Pedro Alves + Yao Qi + Mark Kettenis + + * cli/cli-setshow.c (do_set_command) : + Don't let the user set the value to UINT_MAX directly. + : Don't let the user set the value to INT_MAX + directly. + +2013-03-22 Jan Kratochvil + + * remote.c (remote_unpush_target): New function. + (remote_open_1): Remove two pop_target calls, update one comment, add + comment to target_preopen call. Replace pop_target call by + remote_unpush_target call. + (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace + pop_target calls by remote_unpush_target calls. + +2013-03-22 Pedro Alves + + * linux-nat.c (linux_child_follow_fork): Don't call + linux_enable_event_reporting. + (linux_handle_extended_wait): Don't call + linux_enable_event_reporting. + +2013-03-22 Pedro Alves + + * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro, + use it to rewrite the trampoline buffers with type gdb_byte[], and + undefine the macro. Remove char* cast. + +2013-03-21 Doug Evans + + New commands "mt set per-command {space,time,symtab} {on,off}". + * NEWS: Add entry. + * event-top.c: #include "maint.h". + * main.c: #include "maint.h". + * maint.c: #include , , block.h, top.h, + timeval-utils.h, maint.h, cli/cli-setshow.h. + (per_command_time, per_command_space): New static globals. + (per_command_symtab): New static global. + (per_command_setlist, per_command_showlist): New static globals. + (struct cmd_stats): Move here from utils.c. + (set_per_command_time): Renamed from set_display_time in utils.c + and moved here. All callers updated. + (set_per_command_space): Renamed from set_display_space in utils.c + and moved here. All callers updated. + (count_symtabs_and_blocks): New function. + (report_command_stats): Moved here from utils.c. Add support for + printing symtab stats. Only print data if enabled before command + executed. + (make_command_stats_cleanup): Ditto. + (sert_per_command_cmd, show_per_command_cmd): New functions. + (_initialize_maint_cmds): Add new commands + mt set per-command {space,time,symtab} {on,off}. + * maint.h: New file. + * top.c: #include "maint.h". + * utils.c (reset_prompt_for_continue_wait_time): New function. + (get_prompt_for_continue_wait_time): New function. + * utils.h (reset_prompt_for_continue_wait_time): Declare + (get_prompt_for_continue_wait_time): Declare. + (make_command_stats_cleanup): Moved to maint.h. + (set_display_time, set_display_space): Moved to maint.h and renamed + to set_per_command_time, set_per_command_space. + * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from + parse_binary_operation and made non-static. Don't call error, + just return an error marker. All callers updated. + * cli/cli-setshow.h (parse_cli_boolean_value): Declare. + +2013-03-21 Tom Tromey + + * symfile.c (alloc_section_addr_info): Update header. Don't set + 'num_sections' field. + (build_section_addr_info_from_section_table): Set 'num_sections'. + (build_section_addr_info_from_bfd): Likewise. + (build_section_addr_info_from_objfile): Remove dead loop + condition. + (free_section_addr_info): Unconditionally call xfree. + (relative_addr_info_to_section_offsets, addrs_section_sort) + (addr_info_make_relative, syms_from_objfile_1): Remove dead loop + condition. + (syms_from_objfile_1): Remove dead 'if' condition. Check + 'num_sections'. + (add_symbol_file_command): Set 'num_sections'. + * symfile-mem.c (symbol_file_add_from_memory): Set + 'num_sections'. + * somread.c (som_symfile_offsets): Remove dead loop condition. + * machoread.c (macho_symfile_offsets): Remove dead 'if'. + * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'. + +2013-03-21 Tom Tromey + + * tracepoint.h (decode_agent_options): Add 'trace_string' + argument. + * tracepoint.c (decode_agent_options): Add 'trace_string' + argument. + (validate_actionline): Update. + (collect_symbol): Add 'trace_string' argument. + (struct add_local_symbols_data) : New field. + (do_collect_symbol): Update. + (add_local_symbols): Add 'trace_string' argument. + (encode_actions_1): Update. + (trace_dump_actions): Update. + * dwarf2loc.c (access_memory): Update. + * ax.h (struct agent_expr) : New fields. + * ax-general.c (new_agent_expr): Update. + * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var) + (gen_trace_for_return_address): Add argument. + (trace_kludge, trace_string_kludge): Remove. + * ax-gdb.c (trace_kludge, trace_string_kludge): Remove. + (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update. + (gen_trace_for_var): Add 'trace_string' argument. + (gen_trace_for_expr, gen_trace_for_return_address): Likewise. + (gen_printf, agent_eval_command_one): Update. + +2013-03-21 Tom Tromey + + PR exp/15109: + * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO. + Handle FILENAME token. + +2013-03-21 Tom Tromey + + * c-exp.y (YYPRINT): Define. + (c_print_token): New function. + +2013-03-21 Tom Tromey + + * c-exp.y (%union) : Remove. + +2013-03-21 Yao Qi + + * ctf.c: Include "gdb_stat.h". + [USE_WIN32API]: New macro 'mkdir'. + (ctf_start): Use permission bits macros if they are defined. + +2013-03-20 Keith Seitz + + * breakpoint.h (struct breakpoint): Add comment to + extra_string indicating that this member is mallod'd. + * breakpoint.c (base_breakpoint_dtor): Free extra_string. + +2013-03-20 Pedro Alves + + PR gdb/15289 + + * cli/cli-setshow.c (do_set_command) + : Use LONGEST for variable holding + the result of parsing the command argument. Throw error if the + value is greater than UINT_MAX. Print the invalid value with + plongest. + : Use LONGEST for variable holding the + result of parsing the command argument. Throw error if the value + is greater than INT_MAX, not greater or equal. Also throw error + if the value is less than INT_MIN. Print the invalid value with + plongest. + : Throw error if the value is greater + than INT_MAX, not greater or equal. + (do_show_command) : Use %d for printing int, not %u. + +2013-03-20 Tom Tromey + + * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops, + if possible. + * dwarf2read.c (read_func_scope): Remove old FIXME. + * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS, + not LOC_COMPUTED. + * findvar.c (symbol_read_needs_frame, default_read_var_value): + Unconditionally call via computed ops, if possible. + * printcmd.c (address_info): Unconditionally call via computed ops, + if possible. + * stack.c (read_frame_arg): Unconditionally call via computed ops, + if possible. + * symtab.c (register_symbol_computed_impl): Sanity check 'ops'. + * tracepoint.c (scope_info): Unconditionally call via computed ops, + if possible. + +2013-03-20 Jan Kratochvil + Tom Tromey + + PR symtab/8421: + * coffread.c (coff_register_index): New global. + (process_coff_symbol, coff_read_enum_type): Set + SYMBOL_ACLASS_INDEX. + (_initialize_coffread): Initialize new global. + * dwarf2loc.c (locexpr_find_frame_base_location) + (dwarf2_block_frame_base_locexpr_funcs) + (loclist_find_frame_base_location) + (dwarf2_block_frame_base_loclist_funcs): New. + (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error. + (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist. + * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs) + (dwarf2_block_frame_base_loclist_funcs): New. + * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index) + (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New + globals. + (read_func_scope): Update. + (fixup_go_packaging, mark_common_block_symbol_computed) + (var_decode_location, new_symbol_full, dwarf2_const_value): + Set SYMBOL_ACLASS_INDEX. + (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument. + (_initialize_dwarf2_read): Initialize new globals. + * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX. + * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX. + * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New + globals. + (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX. + (_initialize_mdebugread): Initialize new globals. + * psympriv.h (struct partial_symbol) : Update comment. + * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX. + (stab_register_index, stab_regparm_index): New globals. + (define_symbol, read_enum_type, common_block_end): Set + SYMBOL_ACLASS_INDEX. + (_initialize_stabsread): Initialize new globals. + * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New + globals. + (MAX_SYMBOL_IMPLS): New define. + (register_symbol_computed_impl, register_symbol_block_impl) + (register_symbol_register_impl) + (initialize_ordinary_address_classes): New functions. + (_initialize_symtab): Call initialize_ordinary_address_classes. + * symtab.h (enum address_class) : New constant. + (struct symbol_impl): New. + (SYMBOL_ACLASS_BITS): New define. + (struct symbol) : Remove fields. + : New field. + (symbol_impls): Declare. + (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine. + (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines. + (register_symbol_computed_impl, register_symbol_block_impl) + (register_symbol_register_impl): Declare. + (struct symbol_computed_ops): Add location_has_loclist. + (struct symbol_block_ops): New. + (SYMBOL_BLOCK_OPS): New. + * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX. + +2013-03-20 Tom Tromey + + * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section) + (print_partial_symbols, recursively_search_psymtabs): Use + PSYMBOL_CLASS. + +2013-03-20 Pierre Muller + + * contrib/ari/gdb_ari.sh (OP eol rule): Also check + addtion, subtraction, multiplication and division binary operator. + +2013-03-20 Jan Kratochvil + + Code cleanup. + * bfd-target.c (target_bfd_xclose): Remove parameter quitting. + * bsd-kvm.c (bsd_kvm_close): Likewise. + * bsd-uthread.c (bsd_uthread_close): Likewise. + * corelow.c (core_close): Likewise. + (core_close_cleanup): Remove parameter quitting from a caller. + * event-top.c (async_disconnect): Likewise. + * exec.c (exec_close_1): Remove parameter quitting. + * go32-nat.c (go32_close): Likewise. + * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove + parameter quitting from a caller. + * mips-linux-nat.c (super_close): Remove parameter quitting from the + variable. + (mips_linux_close): Remove parameter quitting. Remove parameter + quitting from a caller. + * monitor.c (monitor_close): Remove parameter quitting. + * monitor.h (monitor_close): Likewise. + * record-btrace.c (record_btrace_close): Likewise. + * record-full.c (record_full_close): Likewise. + * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove + it also from fprintf_unfiltered. + * remote-mips.c (mips_close): Remove parameter quitting. + (mips_detach): Remove parameter quitting from a caller. + * remote-sim.c (gdbsim_close): Remove parameter quitting. + (gdbsim_close): Remove duplicate function comment. Remove parameter + quitting and remove it also from printf_filtered. + * remote.c (remote_close): Remove parameter quitting. + * solib-svr4.c (enable_break): Remove parameter quitting from a caller. + * target.c (update_current_target): Remove parameter int from to_close + de_fault. + (push_target, unpush_target, pop_target): Remove parameter quitting from + a caller. + (pop_all_targets_above, pop_all_targets): Remove parameter quitting. + Remove parameter quitting from a caller. + (target_preopen): Remove parameter quitting from a caller. + (target_close): Remove parameter quitting. Remove parameter quitting + from a caller two times. Remove parameter quitting also from + fprintf_unfiltered. + * target.h (struct target_ops): Remove parameter quitting and as int + from fields to_xclose and to_close. + (extern struct target_ops current_target): + (target_close, pop_all_targets): Remove parameter quitting. Update the + comment. + (pop_all_targets_above): Remove parameter quitting. + * top.c (quit_target): Remove parameter quitting from a caller. + * tracepoint.c (tfile_close): Remove parameter quitting. + * windows-nat.c (windows_close): Remove parameter quitting. + +2013-03-20 Corinna Vinschen + + * windows-nat.c (handle_output_debug_string): Replace call + to string_to_core_addr with call to strtoull. + +2013-03-20 Yao Qi + + * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS + and write it to CTF metadata. + +2013-03-19 Corinna Vinschen + + * windows-nat.c (handle_output_debug_string): Change type of n to + SIZE_T to avoid crash on 64 bit systems. + +2013-03-17 Eli Zaretskii + + * python/python-internal.h (HAVE_SNPRINTF) + [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings + about redefinition of snprintf by pyerrors.h. + +2013-03-15 Steve Ellcey + + * remote-sim.c (sim_command_completer): Make char arguments const. + +2013-03-15 Tom Tromey + + PR c++/15116: + * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC. + +2013-03-14 Tom Tromey + + * gdb_bfd.c (struct gdb_bfd_data) : + New fields. + (get_file_crc): Move from symfile.c. + (gdb_bfd_crc): New function. + * gdb_bfd.h (gdb_bfd_crc): Declare. + * objfiles.h (struct objfile) : Remove. + * symfile.c (get_file_crc): Move to gdb_bfd.c. + (separate_debug_file_exists): Use gdb_bfd_crc. + +2013-03-14 Tom Tromey + + * symfile.c (get_debug_link_info): Remove. + (find_separate_debug_file_by_debuglink): Use + bfd_get_debug_link_info. + +2013-03-14 Tom Tromey + + * symtab.c (error_in_psymtab_expansion): New function. + (lookup_symbol_aux_quick) + (basic_lookup_transparent_type_quick): Remove "last resort" + code. Use error_in_psymtab_expansion. + +2013-03-14 Doug Evans + Jan Kratochvil + + * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after + any successful compare_filenames_for_search or FILENAME_CMP. + * psymtab.c (partial_map_symtabs_matching_filename): Likewise. + * symtab.c (iterate_over_some_symtabs): Likewise. + +2013-03-14 Jan Kratochvil + + * source.c (print_source_lines_base): Make a local copy of + symtab_to_fullname. + +2013-03-14 Hui Zhu + Jan Kratochvil + + * source.c (print_source_lines_base): Suppress "file" for TUI. + +2013-03-14 Keith Seitz + Alan Matsuoka + + PR c++/15203 + PR c++/15210 + * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and + TYPE_CODE_METHOD. + * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain + symbols. + +2013-03-14 Yao Qi + + * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace + status to tfile if trace is stopped by command 'tstop'. + +2013-03-14 Yao Qi + + * tracepoint.c (tfile_write_status): Write trace notes and user + name into tfile if they are not NULL. + +2013-03-14 Hui Zhu + Yao Qi + + * Makefile.in (REMOTE_OBS): Add ctf.o. + (SFILES): Add ctf.c. + (HFILES_NO_SRCDIR): Add ctf.h. + * ctf.c, ctf.h: New files. + * tracepoint.c: Include 'ctf.h'. + (collect_pseudocommand): Remove static. + (trace_save_command): Parse option "-ctf". + Produce different trace file writers per option. + Adjust output message. + (trace_save_tfile, trace_save_ctf): New. + * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare. + * mi/mi-main.c: Include 'ctf.h'. + (mi_cmd_trace_save): Handle option '-ctf'. Call either + trace_save_tfile or trace_save_ctf. + * NEWS: Mention these changes. + +2013-03-14 Yao Qi + + * tracepoint.c (trace_file_writer_xfree): New. + (struct tfile_writer_data): New. + (tfile_dtor, tfile_can_target_save, tfile_start): New. + (tfile_write_header, tfile_write_regblock_type): New. + (tfile_write_status, tfile_write_uploaded_tsv): New. + (tfile_write_uploaded_tp, tfile_write_definition_end): New. + (tfile_write_raw_data, (tfile_end): New. + (tfile_write_ops): New global variable. + (TRACE_WRITE_R_BLOCK): New macro. + (TRACE_WRITE_M_BLOCK_HEADER): New macro. + (TRACE_WRITE_M_BLOCK_MEMORY): New macro. + (TRACE_WRITE_V_BLOCK): New macro. + (trace_save): Add extra one parameter WRITER. Make it static. + Use WRITER to writer trace. + (tfile_trace_file_writer_new): New. + (trace_save_command): Caller update. + (trace_save_tfile): Write trace data in TFILE format. + * tracepoint.h (struct trace_frame_write_ops): New. + (struct trace_file_write_ops): New. + (struct trace_file_writer): New. + (trace_save): Remove its declaration. + (trace_save_tfile): Declare it. + * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile + instead of trace_save. + +2013-03-13 Pedro Alves + + * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static. + +2013-03-13 Pedro Alves + + * dbxread.c (read_ofile_symtab, process_one_symbol): Remove + commented out code. + * demangle.c (current_demangling_style_string): Make it const. + (set_demangling_command): Assert the demangling style is known. + Remove all handling of unknown styles. Set + 'current_demangling_style_string' to an element of the + demangling_style_names array. + (set_demangling_style): Delete. + (_initialize_demangler): Set current_demangling_style_string to the + element of the demangling_style_names array that corresponds to + the default demangling style. Remove FIXME note. Don't call + set_demangling_style. + * gdb-demangle.h (set_demangling_style): Remove declaration. + +2013-03-13 Pedro Alves + + * ada-lang.c (struct add_partial_datum) : Make + fields const. + (ada_make_symbol_completion_list): Make "text0" parameter const. + * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const. + * breakpoint.c (condition_completer): Make "text" and "word" + parameters const. Adjust. + (check_tracepoint_command): Adjust to validate_actionline + prototype change. + (catch_syscall_completer): Make "text" and "word" parameters + const. + * cli/cli-cmds.c (show_user): Make "comname" local const. + (valid_command_p): Make "command" parameter const. + (alias_command): Make "alias_prefix" and "command_prefix" locals + const. + * cli/cli-decode.c (add_cmd): Make "name" parameter const. + (add_alias_cmd): Make "name" and "oldname" parameters const. + Adjust. No longer make copy of OLDNAME. + (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd) + (add_setshow_cmd_full, add_setshow_enum_cmd) + (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd) + (add_setshow_filename_cmd, add_setshow_string_cmd) + (add_setshow_string_noescape_cmd) + (add_setshow_optional_filename_cmd, add_setshow_integer_cmd) + (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd) + (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd) + (delete_cmd, add_info, add_info_alias, add_com, add_com_alias): + Make "name" parameter const. + (help_cmd): Rename "command" parameter to "arg". New const local + "command". + (find_cmd): Make "command" parameter const. + (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to + deprecated_cmd_warning prototype change. + (undef_cmd_error): Make "cmdtype" parameter const. + (lookup_cmd): Make "line" parameter const. + (deprecated_cmd_warning): Change type of "text" parameter to + pointer to const char, from pointer to pointer to char. Adjust. + (lookup_cmd_composition): Make "text" parameter const. + (complete_on_cmdlist, complete_on_enum): Make "text" and "word" + parameters const. + * cli/cli-decode.h (struct cmd_list_element) : Make field + const. + * cli/cli-script.c (validate_comname): Make "tem" local const. + (define_command): New const local "tem_c". Use it in calls to + lookup_cmd. + (document_command): Make "tem" and "comfull" locals const. + (show_user_1): Make "prefix" and "name" parameters const. + * cli-script.h (show_user_1): Make "prefix" and "name" parameters + const. + * command.h (add_cmd, add_alias_cmd, add_prefix_cmd) + (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1) + (deprecated_cmd_warning, lookup_cmd_composition, add_com) + (add_com_alias, add_info, add_info_alias, complete_on_cmdlist) + (complete_on_enum, add_setshow_enum_cmd) + (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd) + (add_setshow_filename_cmd, add_setshow_string_cmd) + (add_setshow_string_noescape_cmd) + (add_setshow_optional_filename_cmd, add_setshow_integer_cmd) + (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd) + (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd): + Change prototypes, constifying strings. + * completer.c (noop_completer, filename_completer): Make "text" + and "prefix" parameters const. + (location_completer, expression_completer) + (complete_line_internal): Make "text" and "prefix" parameters + const and adjust. + (command_completer, signal_completer): Make "text" and "prefix" + parameters const. + * completer.h (noop_completer, filename_completer) + (expression_completer, location_completer, command_completer) + (signal_completer): Change prototypes. + * corefile.c (complete_set_gnutarget): Make "text" and "word" + parameters const. + * cp-abi.c (cp_abi_completer): Likewise. + * expression.h (parse_expression_for_completion): Change + prototype. + * f-lang.c (f_make_symbol_completion_list): Make "text" and "word" + parameters const. + * infcmd.c (_initialize_infcmd): Make "cmd_name" local const. + * infrun.c (handle_completer): Make "text" and "word" parameters + const. + * interps.c (interpreter_completer): Make "text" and "word" + parameters const. + * language.h (struct language_defn) + : Make "text" and "word" + parameters const. + * parse.c (parse_exp_1): Move const hack to parse_exp_in_context. + (parse_exp_in_context): Rename to ... + (parse_exp_in_context_1): ... this. + (parse_exp_in_context): Reimplement, with const hack from + parse_exp_1. + (parse_expression_for_completion): Make "string" parameter const. + * printcmd.c (decode_format): Make "string_ptr" parameter pointer + to pointer to const char. Adjust. + (print_command_1): Make "exp" parameter const. + (output_command): Rename to ... + (output_command_const): ... this. Make "exp" parameter const. + (output_command): Reimplement. + (x_command): Adjust. + (display_command): Rename "exp" parameter to "arg". New "exp" + local, const version of "arg". + * python/py-auto-load.c (gdbpy_initialize_auto_load): Make + "cmd_name" local const. + * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree + call. + (cmdpy_completer): Make "text" and "word" parameters const. + (gdbpy_parse_command_name): Make "prefix_text2" local const. + * python/py-param.c (add_setshow_generic): Make "tmp_name" local + const. + * remote.c (_initialize_remote): Make "cmd_name" local const. + * symtab.c (language_search_unquoted_string): Make "text" and "p" + parameters const. Adjust. + (completion_list_add_fields): Make "sym_text", "text" and "word" + parameters const. + (struct add_name_data) : Make fields const. + (default_make_symbol_completion_list_break_on): Make "text" and + "word" parameters const. Adjust locals. + (default_make_symbol_completion_list) + (make_symbol_completion_list, make_symbol_completion_type) + (make_symbol_completion_list_fn): Make "text" and "word" + parameters const. + (make_file_symbol_completion_list): Make "text", "word" and + "srcfile" parameters const. Adjust locals. + (add_filename_to_list): Make "text" and "word" parameters const. + (struct add_partial_filename_data) : Make fields + const. + (make_source_files_completion_list): Make "text" and "word" + parameters const. + * symtab.h (default_make_symbol_completion_list_break_on) + (default_make_symbol_completion_list, make_symbol_completion_list) + (make_symbol_completion_type enum type_code) + (make_symbol_completion_list_fn make_file_symbol_completion_list) + (make_source_files_completion_list): Change prototype. + * top.c (execute_command): Adjust to pass pointer to pointer to + const char to lookup_cmd, and to deprecated_cmd_warning prototype + change. + (set_verbose): Make "cmdname" local const. + * tracepoint.c (decode_agent_options): Make "exp" parameter const, + and adjust. + (validate_actionline): Make "line" parameter a pointer to const + char, and adjust. + (encode_actions_1): Make "action_exp" local const, and adjust. + (encode_actions): Adjust. + (replace_comma): Delete. + (trace_dump_actions): Make "action_exp" and "next_comma" locals + const, and adjust. Don't frob the action string while splitting + it at commas. Instead, make a copy of each split substring in + turn. + (trace_dump_command): Adjust to validate_actionline prototype + change. + * tracepoint.h (decode_agent_options, decode_agent_options) + (encode_actions, validate_actionline): Change prototypes. + * valprint.h (output_command): Delete declaration. + (output_command_const): Declare. + * value.c (function_destroyer): Cast const away in xfree call. + +2013-03-13 Pedro Alves + + * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL + rather than casting 'const char * const *' to 'const char **'. + * ada-lex.l (processInt): Make "trailer" local const. Remove + 'const char **' cast. + * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *' + locals, and use those as strtol output pointer, instead than doing + invalid casts to from 'const char **' to 'char **'. + (_initialize_demangle): Remove cast. + * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *' + locals, and use those as strtol output pointer, instead than doing + invalid casts to from 'const char **' to 'char **'. + * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**' + casts. + * stap-probe.c (stap_parse_register_operand) + (stap_parse_single_operand): Likewise. + +2013-03-13 Yao Qi + + * tracepoint.c (tfile_get_trace_state_variable_value): Look for + the last matched 'V' blcok in trace frame. + +2013-03-12 Joel Brobecker + + * NEWS: Create a new section for the next release branch. + Rename the section of the current branch, now that it has + been cut. + 2013-03-12 Joel Brobecker GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)