Whoops, wrong patch. Reverting.
[binutils-gdb.git] / gdb / ChangeLog
1 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
2
3 * remote.c (remote_unpush_target): New function.
4 (remote_open_1): Remove two pop_target calls, update one comment, add
5 comment to target_preopen call. Replace pop_target call by
6 remote_unpush_target call.
7 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
8 pop_target calls by remote_unpush_target calls.
9
10 2013-03-22 Pedro Alves <palves@redhat.com>
11
12 * linux-nat.c (linux_child_follow_fork): Don't call
13 linux_enable_event_reporting.
14 (linux_handle_extended_wait): Don't call
15 linux_enable_event_reporting.
16
17 2013-03-22 Pedro Alves <palves@redhat.com>
18
19 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
20 use it to rewrite the trampoline buffers with type gdb_byte[], and
21 undefine the macro. Remove char* cast.
22
23 2013-03-21 Doug Evans <dje@google.com>
24
25 New commands "mt set per-command {space,time,symtab} {on,off}".
26 * NEWS: Add entry.
27 * event-top.c: #include "maint.h".
28 * main.c: #include "maint.h".
29 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
30 timeval-utils.h, maint.h, cli/cli-setshow.h.
31 (per_command_time, per_command_space): New static globals.
32 (per_command_symtab): New static global.
33 (per_command_setlist, per_command_showlist): New static globals.
34 (struct cmd_stats): Move here from utils.c.
35 (set_per_command_time): Renamed from set_display_time in utils.c
36 and moved here. All callers updated.
37 (set_per_command_space): Renamed from set_display_space in utils.c
38 and moved here. All callers updated.
39 (count_symtabs_and_blocks): New function.
40 (report_command_stats): Moved here from utils.c. Add support for
41 printing symtab stats. Only print data if enabled before command
42 executed.
43 (make_command_stats_cleanup): Ditto.
44 (sert_per_command_cmd, show_per_command_cmd): New functions.
45 (_initialize_maint_cmds): Add new commands
46 mt set per-command {space,time,symtab} {on,off}.
47 * maint.h: New file.
48 * top.c: #include "maint.h".
49 * utils.c (reset_prompt_for_continue_wait_time): New function.
50 (get_prompt_for_continue_wait_time): New function.
51 * utils.h (reset_prompt_for_continue_wait_time): Declare
52 (get_prompt_for_continue_wait_time): Declare.
53 (make_command_stats_cleanup): Moved to maint.h.
54 (set_display_time, set_display_space): Moved to maint.h and renamed
55 to set_per_command_time, set_per_command_space.
56 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
57 parse_binary_operation and made non-static. Don't call error,
58 just return an error marker. All callers updated.
59 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
60
61 2013-03-21 Tom Tromey <tromey@redhat.com>
62
63 * symfile.c (alloc_section_addr_info): Update header. Don't set
64 'num_sections' field.
65 (build_section_addr_info_from_section_table): Set 'num_sections'.
66 (build_section_addr_info_from_bfd): Likewise.
67 (build_section_addr_info_from_objfile): Remove dead loop
68 condition.
69 (free_section_addr_info): Unconditionally call xfree.
70 (relative_addr_info_to_section_offsets, addrs_section_sort)
71 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
72 condition.
73 (syms_from_objfile_1): Remove dead 'if' condition. Check
74 'num_sections'.
75 (add_symbol_file_command): Set 'num_sections'.
76 * symfile-mem.c (symbol_file_add_from_memory): Set
77 'num_sections'.
78 * somread.c (som_symfile_offsets): Remove dead loop condition.
79 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
80 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
81
82 2013-03-21 Tom Tromey <tromey@redhat.com>
83
84 * tracepoint.h (decode_agent_options): Add 'trace_string'
85 argument.
86 * tracepoint.c (decode_agent_options): Add 'trace_string'
87 argument.
88 (validate_actionline): Update.
89 (collect_symbol): Add 'trace_string' argument.
90 (struct add_local_symbols_data) <trace_string>: New field.
91 (do_collect_symbol): Update.
92 (add_local_symbols): Add 'trace_string' argument.
93 (encode_actions_1): Update.
94 (trace_dump_actions): Update.
95 * dwarf2loc.c (access_memory): Update.
96 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
97 * ax-general.c (new_agent_expr): Update.
98 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
99 (gen_trace_for_return_address): Add argument.
100 (trace_kludge, trace_string_kludge): Remove.
101 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
102 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
103 (gen_trace_for_var): Add 'trace_string' argument.
104 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
105 (gen_printf, agent_eval_command_one): Update.
106
107 2013-03-21 Tom Tromey <tromey@redhat.com>
108
109 PR exp/15109:
110 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
111 Handle FILENAME token.
112
113 2013-03-21 Tom Tromey <tromey@redhat.com>
114
115 * c-exp.y (YYPRINT): Define.
116 (c_print_token): New function.
117
118 2013-03-21 Tom Tromey <tromey@redhat.com>
119
120 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
121
122 2013-03-21 Yao Qi <yao@codesourcery.com>
123
124 * ctf.c: Include "gdb_stat.h".
125 [USE_WIN32API]: New macro 'mkdir'.
126 (ctf_start): Use permission bits macros if they are defined.
127
128 2013-03-20 Keith Seitz <keiths@redhat.com>
129
130 * breakpoint.h (struct breakpoint): Add comment to
131 extra_string indicating that this member is mallod'd.
132 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
133
134 2013-03-20 Pedro Alves <palves@redhat.com>
135
136 PR gdb/15289
137
138 * cli/cli-setshow.c (do_set_command)
139 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
140 the result of parsing the command argument. Throw error if the
141 value is greater than UINT_MAX. Print the invalid value with
142 plongest.
143 <var_integer, var_zinteger>: Use LONGEST for variable holding the
144 result of parsing the command argument. Throw error if the value
145 is greater than INT_MAX, not greater or equal. Also throw error
146 if the value is less than INT_MIN. Print the invalid value with
147 plongest.
148 <var_zuinteger_unlimited>: Throw error if the value is greater
149 than INT_MAX, not greater or equal.
150 (do_show_command) <var_integer, var_zinteger,
151 var_zuinteger_unlimited>: Use %d for printing int, not %u.
152
153 2013-03-20 Tom Tromey <tromey@redhat.com>
154
155 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
156 if possible.
157 * dwarf2read.c (read_func_scope): Remove old FIXME.
158 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
159 not LOC_COMPUTED.
160 * findvar.c (symbol_read_needs_frame, default_read_var_value):
161 Unconditionally call via computed ops, if possible.
162 * printcmd.c (address_info): Unconditionally call via computed ops,
163 if possible.
164 * stack.c (read_frame_arg): Unconditionally call via computed ops,
165 if possible.
166 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
167 * tracepoint.c (scope_info): Unconditionally call via computed ops,
168 if possible.
169
170 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
171 Tom Tromey <tromey@redhat.com>
172
173 PR symtab/8421:
174 * coffread.c (coff_register_index): New global.
175 (process_coff_symbol, coff_read_enum_type): Set
176 SYMBOL_ACLASS_INDEX.
177 (_initialize_coffread): Initialize new global.
178 * dwarf2loc.c (locexpr_find_frame_base_location)
179 (dwarf2_block_frame_base_locexpr_funcs)
180 (loclist_find_frame_base_location)
181 (dwarf2_block_frame_base_loclist_funcs): New.
182 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
183 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
184 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
185 (dwarf2_block_frame_base_loclist_funcs): New.
186 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
187 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
188 globals.
189 (read_func_scope): Update.
190 (fixup_go_packaging, mark_common_block_symbol_computed)
191 (var_decode_location, new_symbol_full, dwarf2_const_value):
192 Set SYMBOL_ACLASS_INDEX.
193 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
194 (_initialize_dwarf2_read): Initialize new globals.
195 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
196 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
197 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
198 globals.
199 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
200 (_initialize_mdebugread): Initialize new globals.
201 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
202 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
203 (stab_register_index, stab_regparm_index): New globals.
204 (define_symbol, read_enum_type, common_block_end): Set
205 SYMBOL_ACLASS_INDEX.
206 (_initialize_stabsread): Initialize new globals.
207 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
208 globals.
209 (MAX_SYMBOL_IMPLS): New define.
210 (register_symbol_computed_impl, register_symbol_block_impl)
211 (register_symbol_register_impl)
212 (initialize_ordinary_address_classes): New functions.
213 (_initialize_symtab): Call initialize_ordinary_address_classes.
214 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
215 (struct symbol_impl): New.
216 (SYMBOL_ACLASS_BITS): New define.
217 (struct symbol) <aclass, ops>: Remove fields.
218 <aclass_index>: New field.
219 (symbol_impls): Declare.
220 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
221 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
222 (register_symbol_computed_impl, register_symbol_block_impl)
223 (register_symbol_register_impl): Declare.
224 (struct symbol_computed_ops): Add location_has_loclist.
225 (struct symbol_block_ops): New.
226 (SYMBOL_BLOCK_OPS): New.
227 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
228
229 2013-03-20 Tom Tromey <tromey@redhat.com>
230
231 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
232 (print_partial_symbols, recursively_search_psymtabs): Use
233 PSYMBOL_CLASS.
234
235 2013-03-20 Pierre Muller <muller@sourceware.org>
236
237 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
238 addtion, subtraction, multiplication and division binary operator.
239
240 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
241
242 Code cleanup.
243 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
244 * bsd-kvm.c (bsd_kvm_close): Likewise.
245 * bsd-uthread.c (bsd_uthread_close): Likewise.
246 * corelow.c (core_close): Likewise.
247 (core_close_cleanup): Remove parameter quitting from a caller.
248 * event-top.c (async_disconnect): Likewise.
249 * exec.c (exec_close_1): Remove parameter quitting.
250 * go32-nat.c (go32_close): Likewise.
251 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
252 parameter quitting from a caller.
253 * mips-linux-nat.c (super_close): Remove parameter quitting from the
254 variable.
255 (mips_linux_close): Remove parameter quitting. Remove parameter
256 quitting from a caller.
257 * monitor.c (monitor_close): Remove parameter quitting.
258 * monitor.h (monitor_close): Likewise.
259 * record-btrace.c (record_btrace_close): Likewise.
260 * record-full.c (record_full_close): Likewise.
261 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
262 it also from fprintf_unfiltered.
263 * remote-mips.c (mips_close): Remove parameter quitting.
264 (mips_detach): Remove parameter quitting from a caller.
265 * remote-sim.c (gdbsim_close): Remove parameter quitting.
266 (gdbsim_close): Remove duplicate function comment. Remove parameter
267 quitting and remove it also from printf_filtered.
268 * remote.c (remote_close): Remove parameter quitting.
269 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
270 * target.c (update_current_target): Remove parameter int from to_close
271 de_fault.
272 (push_target, unpush_target, pop_target): Remove parameter quitting from
273 a caller.
274 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
275 Remove parameter quitting from a caller.
276 (target_preopen): Remove parameter quitting from a caller.
277 (target_close): Remove parameter quitting. Remove parameter quitting
278 from a caller two times. Remove parameter quitting also from
279 fprintf_unfiltered.
280 * target.h (struct target_ops): Remove parameter quitting and as int
281 from fields to_xclose and to_close.
282 (extern struct target_ops current_target):
283 (target_close, pop_all_targets): Remove parameter quitting. Update the
284 comment.
285 (pop_all_targets_above): Remove parameter quitting.
286 * top.c (quit_target): Remove parameter quitting from a caller.
287 * tracepoint.c (tfile_close): Remove parameter quitting.
288 * windows-nat.c (windows_close): Remove parameter quitting.
289
290 2013-03-20 Corinna Vinschen <vinschen@redhat.com>
291
292 * windows-nat.c (handle_output_debug_string): Replace call
293 to string_to_core_addr with call to strtoull.
294
295 2013-03-20 Yao Qi <yao@codesourcery.com>
296
297 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
298 and write it to CTF metadata.
299
300 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
301
302 * windows-nat.c (handle_output_debug_string): Change type of n to
303 SIZE_T to avoid crash on 64 bit systems.
304
305 2013-03-17 Eli Zaretskii <eliz@gnu.org>
306
307 * python/python-internal.h (HAVE_SNPRINTF)
308 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
309 about redefinition of snprintf by pyerrors.h.
310
311 2013-03-15 Steve Ellcey <sellcey@mips.com>
312
313 * remote-sim.c (sim_command_completer): Make char arguments const.
314
315 2013-03-15 Tom Tromey <tromey@redhat.com>
316
317 PR c++/15116:
318 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
319
320 2013-03-14 Tom Tromey <tromey@redhat.com>
321
322 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
323 New fields.
324 (get_file_crc): Move from symfile.c.
325 (gdb_bfd_crc): New function.
326 * gdb_bfd.h (gdb_bfd_crc): Declare.
327 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
328 * symfile.c (get_file_crc): Move to gdb_bfd.c.
329 (separate_debug_file_exists): Use gdb_bfd_crc.
330
331 2013-03-14 Tom Tromey <tromey@redhat.com>
332
333 * symfile.c (get_debug_link_info): Remove.
334 (find_separate_debug_file_by_debuglink): Use
335 bfd_get_debug_link_info.
336
337 2013-03-14 Tom Tromey <tromey@redhat.com>
338
339 * symtab.c (error_in_psymtab_expansion): New function.
340 (lookup_symbol_aux_quick)
341 (basic_lookup_transparent_type_quick): Remove "last resort"
342 code. Use error_in_psymtab_expansion.
343
344 2013-03-14 Doug Evans <dje@google.com>
345 Jan Kratochvil <jan.kratochvil@redhat.com>
346
347 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
348 any successful compare_filenames_for_search or FILENAME_CMP.
349 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
350 * symtab.c (iterate_over_some_symtabs): Likewise.
351
352 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
353
354 * source.c (print_source_lines_base): Make a local copy of
355 symtab_to_fullname.
356
357 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
358 Jan Kratochvil <jan.kratochvil@redhat.com>
359
360 * source.c (print_source_lines_base): Suppress "file" for TUI.
361
362 2013-03-14 Keith Seitz <keiths@redhat.com>
363 Alan Matsuoka <alanm@redhat.com>
364
365 PR c++/15203
366 PR c++/15210
367 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
368 TYPE_CODE_METHOD.
369 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
370 symbols.
371
372 2013-03-14 Yao Qi <yao@codesourcery.com>
373
374 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
375 status to tfile if trace is stopped by command 'tstop'.
376
377 2013-03-14 Yao Qi <yao@codesourcery.com>
378
379 * tracepoint.c (tfile_write_status): Write trace notes and user
380 name into tfile if they are not NULL.
381
382 2013-03-14 Hui Zhu <hui@codesourcery.com>
383 Yao Qi <yao@codesourcery.com>
384
385 * Makefile.in (REMOTE_OBS): Add ctf.o.
386 (SFILES): Add ctf.c.
387 (HFILES_NO_SRCDIR): Add ctf.h.
388 * ctf.c, ctf.h: New files.
389 * tracepoint.c: Include 'ctf.h'.
390 (collect_pseudocommand): Remove static.
391 (trace_save_command): Parse option "-ctf".
392 Produce different trace file writers per option.
393 Adjust output message.
394 (trace_save_tfile, trace_save_ctf): New.
395 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
396 * mi/mi-main.c: Include 'ctf.h'.
397 (mi_cmd_trace_save): Handle option '-ctf'. Call either
398 trace_save_tfile or trace_save_ctf.
399 * NEWS: Mention these changes.
400
401 2013-03-14 Yao Qi <yao@codesourcery.com>
402
403 * tracepoint.c (trace_file_writer_xfree): New.
404 (struct tfile_writer_data): New.
405 (tfile_dtor, tfile_can_target_save, tfile_start): New.
406 (tfile_write_header, tfile_write_regblock_type): New.
407 (tfile_write_status, tfile_write_uploaded_tsv): New.
408 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
409 (tfile_write_raw_data, (tfile_end): New.
410 (tfile_write_ops): New global variable.
411 (TRACE_WRITE_R_BLOCK): New macro.
412 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
413 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
414 (TRACE_WRITE_V_BLOCK): New macro.
415 (trace_save): Add extra one parameter WRITER. Make it static.
416 Use WRITER to writer trace.
417 (tfile_trace_file_writer_new): New.
418 (trace_save_command): Caller update.
419 (trace_save_tfile): Write trace data in TFILE format.
420 * tracepoint.h (struct trace_frame_write_ops): New.
421 (struct trace_file_write_ops): New.
422 (struct trace_file_writer): New.
423 (trace_save): Remove its declaration.
424 (trace_save_tfile): Declare it.
425 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
426 instead of trace_save.
427
428 2013-03-13 Pedro Alves <palves@redhat.com>
429
430 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
431
432 2013-03-13 Pedro Alves <palves@redhat.com>
433
434 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
435 commented out code.
436 * demangle.c (current_demangling_style_string): Make it const.
437 (set_demangling_command): Assert the demangling style is known.
438 Remove all handling of unknown styles. Set
439 'current_demangling_style_string' to an element of the
440 demangling_style_names array.
441 (set_demangling_style): Delete.
442 (_initialize_demangler): Set current_demangling_style_string to the
443 element of the demangling_style_names array that corresponds to
444 the default demangling style. Remove FIXME note. Don't call
445 set_demangling_style.
446 * gdb-demangle.h (set_demangling_style): Remove declaration.
447
448 2013-03-13 Pedro Alves <palves@redhat.com>
449
450 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
451 fields const.
452 (ada_make_symbol_completion_list): Make "text0" parameter const.
453 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
454 * breakpoint.c (condition_completer): Make "text" and "word"
455 parameters const. Adjust.
456 (check_tracepoint_command): Adjust to validate_actionline
457 prototype change.
458 (catch_syscall_completer): Make "text" and "word" parameters
459 const.
460 * cli/cli-cmds.c (show_user): Make "comname" local const.
461 (valid_command_p): Make "command" parameter const.
462 (alias_command): Make "alias_prefix" and "command_prefix" locals
463 const.
464 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
465 (add_alias_cmd): Make "name" and "oldname" parameters const.
466 Adjust. No longer make copy of OLDNAME.
467 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
468 (add_setshow_cmd_full, add_setshow_enum_cmd)
469 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
470 (add_setshow_filename_cmd, add_setshow_string_cmd)
471 (add_setshow_string_noescape_cmd)
472 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
473 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
474 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
475 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
476 Make "name" parameter const.
477 (help_cmd): Rename "command" parameter to "arg". New const local
478 "command".
479 (find_cmd): Make "command" parameter const.
480 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
481 deprecated_cmd_warning prototype change.
482 (undef_cmd_error): Make "cmdtype" parameter const.
483 (lookup_cmd): Make "line" parameter const.
484 (deprecated_cmd_warning): Change type of "text" parameter to
485 pointer to const char, from pointer to pointer to char. Adjust.
486 (lookup_cmd_composition): Make "text" parameter const.
487 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
488 parameters const.
489 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
490 const.
491 * cli/cli-script.c (validate_comname): Make "tem" local const.
492 (define_command): New const local "tem_c". Use it in calls to
493 lookup_cmd.
494 (document_command): Make "tem" and "comfull" locals const.
495 (show_user_1): Make "prefix" and "name" parameters const.
496 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
497 const.
498 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
499 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
500 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
501 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
502 (complete_on_enum, add_setshow_enum_cmd)
503 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
504 (add_setshow_filename_cmd, add_setshow_string_cmd)
505 (add_setshow_string_noescape_cmd)
506 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
507 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
508 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
509 Change prototypes, constifying strings.
510 * completer.c (noop_completer, filename_completer): Make "text"
511 and "prefix" parameters const.
512 (location_completer, expression_completer)
513 (complete_line_internal): Make "text" and "prefix" parameters
514 const and adjust.
515 (command_completer, signal_completer): Make "text" and "prefix"
516 parameters const.
517 * completer.h (noop_completer, filename_completer)
518 (expression_completer, location_completer, command_completer)
519 (signal_completer): Change prototypes.
520 * corefile.c (complete_set_gnutarget): Make "text" and "word"
521 parameters const.
522 * cp-abi.c (cp_abi_completer): Likewise.
523 * expression.h (parse_expression_for_completion): Change
524 prototype.
525 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
526 parameters const.
527 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
528 * infrun.c (handle_completer): Make "text" and "word" parameters
529 const.
530 * interps.c (interpreter_completer): Make "text" and "word"
531 parameters const.
532 * language.h (struct language_defn)
533 <la_make_symbol_completion_list>: Make "text" and "word"
534 parameters const.
535 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
536 (parse_exp_in_context): Rename to ...
537 (parse_exp_in_context_1): ... this.
538 (parse_exp_in_context): Reimplement, with const hack from
539 parse_exp_1.
540 (parse_expression_for_completion): Make "string" parameter const.
541 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
542 to pointer to const char. Adjust.
543 (print_command_1): Make "exp" parameter const.
544 (output_command): Rename to ...
545 (output_command_const): ... this. Make "exp" parameter const.
546 (output_command): Reimplement.
547 (x_command): Adjust.
548 (display_command): Rename "exp" parameter to "arg". New "exp"
549 local, const version of "arg".
550 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
551 "cmd_name" local const.
552 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
553 call.
554 (cmdpy_completer): Make "text" and "word" parameters const.
555 (gdbpy_parse_command_name): Make "prefix_text2" local const.
556 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
557 const.
558 * remote.c (_initialize_remote): Make "cmd_name" local const.
559 * symtab.c (language_search_unquoted_string): Make "text" and "p"
560 parameters const. Adjust.
561 (completion_list_add_fields): Make "sym_text", "text" and "word"
562 parameters const.
563 (struct add_name_data) <sym_text, text, word>: Make fields const.
564 (default_make_symbol_completion_list_break_on): Make "text" and
565 "word" parameters const. Adjust locals.
566 (default_make_symbol_completion_list)
567 (make_symbol_completion_list, make_symbol_completion_type)
568 (make_symbol_completion_list_fn): Make "text" and "word"
569 parameters const.
570 (make_file_symbol_completion_list): Make "text", "word" and
571 "srcfile" parameters const. Adjust locals.
572 (add_filename_to_list): Make "text" and "word" parameters const.
573 (struct add_partial_filename_data) <text, word>: Make fields
574 const.
575 (make_source_files_completion_list): Make "text" and "word"
576 parameters const.
577 * symtab.h (default_make_symbol_completion_list_break_on)
578 (default_make_symbol_completion_list, make_symbol_completion_list)
579 (make_symbol_completion_type enum type_code)
580 (make_symbol_completion_list_fn make_file_symbol_completion_list)
581 (make_source_files_completion_list): Change prototype.
582 * top.c (execute_command): Adjust to pass pointer to pointer to
583 const char to lookup_cmd, and to deprecated_cmd_warning prototype
584 change.
585 (set_verbose): Make "cmdname" local const.
586 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
587 and adjust.
588 (validate_actionline): Make "line" parameter a pointer to const
589 char, and adjust.
590 (encode_actions_1): Make "action_exp" local const, and adjust.
591 (encode_actions): Adjust.
592 (replace_comma): Delete.
593 (trace_dump_actions): Make "action_exp" and "next_comma" locals
594 const, and adjust. Don't frob the action string while splitting
595 it at commas. Instead, make a copy of each split substring in
596 turn.
597 (trace_dump_command): Adjust to validate_actionline prototype
598 change.
599 * tracepoint.h (decode_agent_options, decode_agent_options)
600 (encode_actions, validate_actionline): Change prototypes.
601 * valprint.h (output_command): Delete declaration.
602 (output_command_const): Declare.
603 * value.c (function_destroyer): Cast const away in xfree call.
604
605 2013-03-13 Pedro Alves <palves@redhat.com>
606
607 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
608 rather than casting 'const char * const *' to 'const char **'.
609 * ada-lex.l (processInt): Make "trailer" local const. Remove
610 'const char **' cast.
611 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
612 locals, and use those as strtol output pointer, instead than doing
613 invalid casts to from 'const char **' to 'char **'.
614 (_initialize_demangle): Remove cast.
615 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
616 locals, and use those as strtol output pointer, instead than doing
617 invalid casts to from 'const char **' to 'char **'.
618 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
619 casts.
620 * stap-probe.c (stap_parse_register_operand)
621 (stap_parse_single_operand): Likewise.
622
623 2013-03-13 Yao Qi <yao@codesourcery.com>
624
625 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
626 the last matched 'V' blcok in trace frame.
627
628 2013-03-12 Joel Brobecker <brobecker@adacore.com>
629
630 * NEWS: Create a new section for the next release branch.
631 Rename the section of the current branch, now that it has
632 been cut.
633
634 2013-03-12 Joel Brobecker <brobecker@adacore.com>
635
636 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
637 * version.in: Bump version to 7.6.50.20130312-cvs.
638
639 2013-03-12 Keith Seitz <keiths@redhat.com>
640
641 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
642 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
643 Remove temporary copy of input string.
644 (mi_execute_command_wrapper): Make "cmd" const.
645 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
646 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
647 Use const strings.
648 (mi_parse): Make "cmd" const.
649 Use const strings.
650 * mi/mi-parse.h (mi_parse): Make "cmd" const.
651
652 2013-03-12 Keith Seitz <keiths@redhat.com>
653
654 * ada-lang.c (ada_read_renaming_var_value): Pass const
655 pointer to expression string to parse_exp_1.
656 (create_excep_cond_exprs): Likewise.
657 * ax-gdb.c (agent_eval_command_one): Likewise.
658 (maint_agent_printf_command): Likewise.
659 Constify much of the string handling/parsing.
660 * breakpoint.c (set_breakpoint_condition): Pass const
661 pointer to expression string to parse_exp_1.
662 (update_watchpoint): Likewise.
663 (parse_cmd_to_aexpr): Constify string handling.
664 Pass const pointer to parse_exp_1.
665 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
666 (find_condition_and_thread): Likewise.
667 Make TOK const.
668 (watch_command_1): Make "arg" const.
669 Constify string handling.
670 Copy the expression string instead of changing the input
671 string.
672 (update_breakpoint_location): Pass const pointer to
673 parse_exp_1.
674 * eval.c (parse_and_eval_address): Make "exp" const.
675 (parse_to_comma_and_eval): Make "expp" const.
676 (parse_and_eval): Make "exp" const.
677 * expression.h (parse_expression): Make argument const.
678 (parse_exp_1): Make first argument const.
679 * findcmd.c (parse_find_args): Treat "args" as const.
680 * linespec.c (parse_linespec): Pass const pointer to
681 linespec_expression_to_pc.
682 (linespec_expression_to_pc): Make "exp_ptr" const.
683 * parse.c (parse_exp_1): Make "stringptr" const.
684 Make a copy of the expression to pass to parse_exp_in_context until
685 this whole interface can be constified.
686 (parse_expression): Make "string" const.
687 * printcmd.c (ui_printf): Treat "arg" as const.
688 Handle const strings.
689 * tracepoint.c (validate_actionline): Pass const pointer to
690 all calls to parse_exp_1.
691 (encode_actions_1): Likewise.
692 * value.h (parse_to_comma_and_eval): Make argument const.
693 (parse_and_eval_address): Likewise.
694 (parse_and_eval): Likewise.
695 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
696 (varobj_set_value): Likewise.
697 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
698 constify string handling.
699 Pass const pointers to parse_and_eval_address and
700 parse_to_comman_and_eval.
701 * cli/cli-utils.c (skip_to_space): Rename to ...
702 (skip_to_space_const): ... this. Handle const strings.
703 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
704 skip_to_space_const.
705 (skip_to_space_const): Declare.
706 * common/format.c (parse_format_string): Make "arg" const.
707 Handle const strings.
708 * common/format.h (parse_format_string): Make "arg" const.
709 * gdbserver/ax.c (ax_printf): Make "format" const.
710 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
711 of the expression string.
712
713 2013-03-12 Hui Zhu <hui@codesourcery.com>
714
715 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
716
717 2013-03-12 Yao Qi <yao@codesourcery.com>
718 Hui Zhu <hui@codesourcery.com>
719
720 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
721 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
722 DW_OP_deref_size.
723
724 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
725
726 * ada-lex.l (rules): Only recognize 'thread' as a
727 delimiter when followed by numerals, as for c-exp.y.
728 Use new rewind_to_char function to rewind the input for
729 expression-delimiting tokens.
730 (rewind_to_char): New function.
731
732 2013-03-11 Pedro Alves <palves@redhat.com>
733 Jan Kratochvil <jan.kratochvil@redhat.com>
734
735 * configure: Regenerate.
736 * configure.ac (check dynamic export flag): Link python test with
737 $PYTHON_LIBS.
738
739 2013-03-11 Doug Evans <dje@google.com>
740 Keith Seitz <keiths@redhat.com>
741
742 * linespec.c (find_linespec_symbols): Call find_function_symbols
743 first, and then call lookup_prefix_sym/find_method.
744
745 2013-03-11 Pedro Alves <palves@redhat.com>
746
747 * charset.c (convert_between_encodings): Don't cast between
748 different pointer to pointer types. Instead, make the 'inp' local
749 be of the type iconv expects.
750 (wchar_iterate): Don't cast between different pointer to pointer
751 types. Instead, use new pointer local of the type iconv expects.
752 * target.c (target_read_stralloc, target_fileio_read_stralloc):
753 Add new local of type char pointer, and use it to get a
754 char/string view of the byte buffer, instead of casting between
755 pointer to pointer types.
756
757 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
758
759 * remote.c (remote_set_trace_buffer_size): Move != operator
760 to the start of next line to fix an ARI warning.
761
762 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
763
764 * NEWS: Add record changes.
765
766 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
767
768 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
769 the instruction history disassembly.
770 * disasm.c (dump_insns): Omit the pc prefix, if requested.
771 * disasm.h (DISASSEMBLY_OMIT_PC): New.
772
773 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
774
775 * Makefile.in (SFILES): Add record-btrace.c
776 (COMMON_OBS): Add record-btrace.o
777 * record-btrace.c: New.
778 * objfiles.c: Include btrace.h.
779 (free_objfile): call btrace_free_objfile.
780
781 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
782
783 * target.c (target_call_history, target_call_history_from,
784 target_call_history_range): New.
785 * target.h (target_ops) <to_call_history, to_call_history_from,
786 to_call_history_range>: New fields.
787 (target_call_history, target_call_history_from,
788 target_call_history_range): New declaration.
789 * record.c (get_call_history_modifiers, cmd_record_call_history,
790 record_call_history_size): New.
791 (_initialize_record): Add the "record function-call-history" command.
792 Add "set/show record function-call-history-size" commands.
793 * record.h (record_print_flag): New.
794
795 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
796
797 * target.h (target_ops) <to_insn_history, to_insn_history_from,
798 to_insn_history_range>: New fields.
799 (target_insn_history): New.
800 (target_insn_history_from): New.
801 (target_insn_history_range): New.
802 * target.c (target_insn_history): New.
803 (target_insn_history_from): New.
804 (target_insn_history_range): New.
805 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
806 (record_insn_history_size): New.
807 (get_insn_number): New.
808 (get_context_size): New.
809 (no_chunk): New.
810 (get_insn_history_modifiers): New.
811 (cmd_record_insn_history): New.
812 (_initialize_record): Add "set/show record instruction-history-size"
813 command. Add "record instruction-history" command.
814
815 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
816
817 * record.h (record_disconnect): New.
818 (record_detach): New.
819 (record_mourn_inferior): New.
820 (record_kill): New.
821 * record-full.c (record_disconnect, record_detach,
822 record_mourn_inferior, record_kill): Move to...
823 * record.c: ...here.
824 (DEBUG): New.
825 (record_stop): New.
826 (record_unpush): New.
827 (cmd_record_stop): Call record_stop. Replace unpush_target
828 call with record_unpush call.
829 (record_disconnect, record_detach): Assert that the target
830 is of record stratum. Call record_unpush, record_stop, and
831 DEBUG.
832 (record_mourn_inferior, record_kill): Assert that the target
833 is of record stratum. Call record_unpush and DEBUG.
834
835 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
836
837 * record-full.h, record-full.c (record_memory_query): Rename
838 to ...
839 (record_full_memory_query): ...this. Update all users.
840 (record_arch_list_add_reg): Rename to ...
841 (record_full_arch_list_add_reg): ...this. Update all users.
842 (record_arch_list_add_mem): Rename to ...
843 (record_full_arch_list_add_mem): ...this. Update all users.
844 (record_arch_list_add_end): Rename to ...
845 (record_full_arch_list_add_end): ...this. Update all users.
846 (record_gdb_operation_disable_set): Rename to ...
847 (record_full_gdb_operation_disable_set): ...this.
848 Update all users.
849
850 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
851
852 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
853 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
854 (RECORD_IS_REPLAY): Renamed to ...
855 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
856 (RECORD_FILE_MAGIC): Renamed to ...
857 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
858 (record_mem_entry): Renamed to ...
859 (record_full_mem_entry): ... this. Updated all users.
860 (record_reg_entry): Renamed to ...
861 (record_full_reg_entry): ... this. Updated all users.
862 (record_end_entry): Renamed to ...
863 (record_full_end_entry): ... this. Updated all users.
864 (record_type) <record_end, record_reg, record_mem>: Renamed
865 to ...
866 (record_full_type) <record_full_end, record_full_reg,
867 record_full_mem>: ... this. Updated all users.
868 (record_entry): Renamed to ...
869 (record_full_entry): ... this. Updated all users.
870 (record_core_buf_entry): Renamed to ...
871 (record_full_core_buf_entry): ... this. Updated all users.
872 (record_core_regbuf): Renamed to ...
873 (record_full_core_regbuf): ... this. Updated all users.
874 (record_core_start): Renamed to ...
875 (record_full_core_start): ... this. Updated all users.
876 (record_core_end): Renamed to ...
877 (record_full_core_end): ... this. Updated all users.
878 (record_core_buf_list): Renamed to ...
879 (record_full_core_buf_list): ... this. Updated all users.
880 (record_first): Renamed to ...
881 (record_full_first): ... this. Updated all users.
882 (record_list): Renamed to ...
883 (record_full_list): ... this. Updated all users.
884 (record_arch_list_head): Renamed to ...
885 (record_full_arch_list_head): ... this. Updated all users.
886 (record_arch_list_tail): Renamed to ...
887 (record_full_arch_list_tail): ... this. Updated all users.
888 (record_stop_at_limit): Renamed to ...
889 (record_full_stop_at_limit): ... this. Updated all users.
890 (record_insn_max_num): Renamed to ...
891 (record_full_insn_max_num): ... this. Updated all users.
892 (record_insn_num): Renamed to ...
893 (record_full_insn_num): ... this. Updated all users.
894 (record_insn_count): Renamed to ...
895 (record_full_insn_count): ... this. Updated all users.
896 (record_ops): Renamed to ...
897 (record_full_ops): ... this. Updated all users.
898 (record_core_ops): Renamed to ...
899 (record_full_core_ops): ... this. Updated all users.
900 (set_record_cmdlist): Renamed to ...
901 (set_record_full_cmdlist): ... this. Updated all users.
902 (show_record_cmdlist): Renamed to ...
903 (show_record_full_cmdlist): ... this. Updated all users.
904 (record_cmdlist): Renamed to ...
905 (record_full_cmdlist): ... this. Updated all users.
906 (record_beneath_to_resume_ops): Renamed to ...
907 (record_full_beneath_to_resume_ops): ... this. Updated all users.
908 (record_beneath_to_resume): Renamed to ...
909 (record_full_beneath_to_resume): ... this. Updated all users.
910 (record_beneath_to_wait_ops): Renamed to ...
911 (record_full_beneath_to_wait_ops): ... this. Updated all users.
912 (record_beneath_to_wait): Renamed to ...
913 (record_full_beneath_to_wait): ... this. Updated all users.
914 (record_beneath_to_store_registers_ops): Renamed to ...
915 (record_full_beneath_to_store_registers_ops): ... this.
916 Updated all users.
917 (record_beneath_to_store_registers): Renamed to ...
918 (record_full_beneath_to_store_registers): ... this.
919 Updated all users.
920 (record_beneath_to_xfer_partial_ops): Renamed to ...
921 (record_full_beneath_to_xfer_partial_ops): ... this.
922 Updated all users.
923 (record_beneath_to_xfer_partial): Renamed to ...
924 (record_full_beneath_to_xfer_partial): ... this.
925 Updated all users.
926 (record_beneath_to_insert_breakpoint): Renamed to ...
927 (record_full_beneath_to_insert_breakpoint): ... this.
928 Updated all users.
929 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
930 (record_full_beneath_to_stopped_by_watchpoint): ... this.
931 Updated all users.
932 (record_beneath_to_stopped_data_address): Renamed to ...
933 (record_full_beneath_to_stopped_data_address): ... this.
934 Updated all users.
935 (record_beneath_to_async): Renamed to ...
936 (record_full_beneath_to_async): ... this. Updated all users.
937 (record_goto_insn): Renamed to ...
938 (record_full_goto_insn): ... this. Updated all users.
939 (record_save): Renamed to ...
940 (record_full_save): ... this. Updated all users.
941 (record_reg_alloc): Renamed to ...
942 (record_full_reg_alloc): ... this. Updated all users.
943 (record_reg_release): Renamed to ...
944 (record_full_reg_release): ... this. Updated all users.
945 (record_mem_alloc): Renamed to ...
946 (record_full_mem_alloc): ... this. Updated all users.
947 (record_mem_release): Renamed to ...
948 (record_full_mem_release): ... this. Updated all users.
949 (record_end_alloc): Renamed to ...
950 (record_full_end_alloc): ... this. Updated all users.
951 (record_end_release): Renamed to ...
952 (record_full_end_release): ... this. Updated all users.
953 (record_entry_release): Renamed to ...
954 (record_full_entry_release): ... this. Updated all users.
955 (record_list_release): Renamed to ...
956 (record_full_list_release): ... this. Updated all users.
957 (record_list_release_following): Renamed to ...
958 (record_full_list_release_following): ... this.
959 Updated all users.
960 (record_list_release_first): Renamed to ...
961 (record_full_list_release_first): ... this. Updated all users.
962 (record_arch_list_add): Renamed to ...
963 (record_full_arch_list_add): ... this. Updated all users.
964 (record_get_loc): Renamed to ...
965 (record_full_get_loc): ... this. Updated all users.
966 (record_check_insn_num): Renamed to ...
967 (record_full_check_insn_num): ... this. Updated all users.
968 (record_arch_list_cleanups): Renamed to ...
969 (record_full_arch_list_cleanups): ... this. Updated all users.
970 (record_message): Renamed to ...
971 (record_full_message): ... this. Updated all users.
972 (record_message_wrapper): Renamed to ...
973 (record_full_message_wrapper): ... this. Updated all users.
974 (record_message_wrapper_safe): Renamed to ...
975 (record_full_message_wrapper_safe): ... this. Updated all users.
976 (record_gdb_operation_disable): Renamed to ...
977 (record_full_gdb_operation_disable): ... this. Updated all users.
978 (record_hw_watchpoint): Renamed to ...
979 (record_full_hw_watchpoint): ... this. Updated all users.
980 (record_exec_insn): Renamed to ...
981 (record_full_exec_insn): ... this. Updated all users.
982 (record_restore): Renamed to ...
983 (record_full_restore): ... this. Updated all users.
984 (record_async_inferior_event_token): Renamed to ...
985 (record_full_async_inferior_event_token): ... this.
986 Updated all users.
987 (record_async_inferior_event_handler): Renamed to ...
988 (record_full_async_inferior_event_handler): ... this.
989 Updated all users.
990 (record_core_open_1): Renamed to ...
991 (record_full_core_open_1): ... this. Updated all users.
992 (record_open_1): Renamed to ...
993 (record_full_open_1): ... this. Updated all users.
994 (record_open): Renamed to ...
995 (record_full_open): ... this. Updated all users.
996 (record_close): Renamed to ...
997 (record_full_close): ... this. Updated all users.
998 (record_resume_step): Renamed to ...
999 (record_full_resume_step): ... this. Updated all users.
1000 (record_resumed): Renamed to ...
1001 (record_full_resumed): ... this. Updated all users.
1002 (record_execution_dir): Renamed to ...
1003 (record_full_execution_dir): ... this. Updated all users.
1004 (record_resume): Renamed to ...
1005 (record_full_resume): ... this. Updated all users.
1006 (record_get_sig): Renamed to ...
1007 (record_full_get_sig): ... this. Updated all users.
1008 (record_sig_handler): Renamed to ...
1009 (record_full_sig_handler): ... this. Updated all users.
1010 (record_wait_cleanups): Renamed to ...
1011 (record_full_wait_cleanups): ... this. Updated all users.
1012 (record_wait_1): Renamed to ...
1013 (record_full_wait_1): ... this. Updated all users.
1014 (record_wait): Renamed to ...
1015 (record_full_wait): ... this. Updated all users.
1016 (record_stopped_by_watchpoint): Renamed to ...
1017 (record_full_stopped_by_watchpoint): ... this. Updated all users.
1018 (record_disconnect): Renamed to ...
1019 (record_full_disconnect): ... this. Updated all users.
1020 (record_detach): Renamed to ...
1021 (record_full_detach): ... this. Updated all users.
1022 (record_mourn_inferior): Renamed to ...
1023 (record_full_mourn_inferior): ... this. Updated all users.
1024 (record_kill): Renamed to ...
1025 (record_full_kill): ... this. Updated all users.
1026 (record_stopped_data_address): Renamed to ...
1027 (record_full_stopped_data_address): ... this. Updated all users.
1028 (record_registers_change): Renamed to ...
1029 (record_full_registers_change): ... this. Updated all users.
1030 (record_store_registers): Renamed to ...
1031 (record_full_store_registers): ... this. Updated all users.
1032 (record_xfer_partial): Renamed to ...
1033 (record_full_xfer_partial): ... this. Updated all users.
1034 (record_breakpoint): Renamed to ...
1035 (record_full_breakpoint): ... this. Updated all users.
1036 (record_breakpoint_p): Renamed to ...
1037 (record_full_breakpoint_p): ... this. Updated all users.
1038 (record_breakpoints): Renamed to ...
1039 (record_full_breakpoints): ... this. Updated all users.
1040 (record_sync_record_breakpoints): Renamed to ...
1041 (record_full_sync_record_breakpoints): ... this.
1042 Updated all users.
1043 (record_init_record_breakpoints): Renamed to ...
1044 (record_full_init_record_breakpoints): ... this.
1045 Updated all users.
1046 (record_insert_breakpoint): Renamed to ...
1047 (record_full_insert_breakpoint): ... this. Updated all users.
1048 (record_remove_breakpoint): Renamed to ...
1049 (record_full_remove_breakpoint): ... this. Updated all users.
1050 (record_can_execute_reverse): Renamed to ...
1051 (record_full_can_execute_reverse): ... this. Updated all users.
1052 (record_get_bookmark): Renamed to ...
1053 (record_full_get_bookmark): ... this. Updated all users.
1054 (record_goto_bookmark): Renamed to ...
1055 (record_full_goto_bookmark): ... this. Updated all users.
1056 (record_async): Renamed to ...
1057 (record_full_async): ... this. Updated all users.
1058 (record_can_async_p): Renamed to ...
1059 (record_full_can_async_p): ... this. Updated all users.
1060 (record_is_async_p): Renamed to ...
1061 (record_full_is_async_p): ... this. Updated all users.
1062 (record_execution_direction): Renamed to ...
1063 (record_full_execution_direction): ... this. Updated all users.
1064 (record_info): Renamed to ...
1065 (record_full_info): ... this. Updated all users.
1066 (record_delete): Renamed to ...
1067 (record_full_delete): ... this. Updated all users.
1068 (record_is_replaying): Renamed to ...
1069 (record_full_is_replaying): ... this. Updated all users.
1070 (record_goto_entry): Renamed to ...
1071 (record_full_goto_entry): ... this. Updated all users.
1072 (record_goto_begin): Renamed to ...
1073 (record_full_goto_begin): ... this. Updated all users.
1074 (record_goto_end): Renamed to ...
1075 (record_full_goto_end): ... this. Updated all users.
1076 (record_goto): Renamed to ...
1077 (record_full_goto): ... this. Updated all users.
1078 (init_record_ops): Renamed to ...
1079 (init_record_full_ops): ... this. Updated all users.
1080 (record_core_resume): Renamed to ...
1081 (record_full_core_resume): ... this. Updated all users.
1082 (record_core_kill): Renamed to ...
1083 (record_full_core_kill): ... this. Updated all users.
1084 (record_core_fetch_registers): Renamed to ...
1085 (record_full_core_fetch_registers): ... this. Updated all users.
1086 (record_core_prepare_to_store): Renamed to ...
1087 (record_full_core_prepare_to_store): ... this. Updated all users.
1088 (record_core_store_registers): Renamed to ...
1089 (record_full_core_store_registers): ... this. Updated all users.
1090 (record_core_xfer_partial): Renamed to ...
1091 (record_full_core_xfer_partial): ... this. Updated all users.
1092 (record_core_insert_breakpoint): Renamed to ...
1093 (record_full_core_insert_breakpoint): ... this. Updated all users.
1094 (record_core_remove_breakpoint): Renamed to ...
1095 (record_full_core_remove_breakpoint): ... this. Updated all users.
1096 (record_core_has_execution): Renamed to ...
1097 (record_full_core_has_execution): ... this. Updated all users.
1098 (init_record_core_ops): Renamed to ...
1099 (init_record_full_core_ops): ... this. Updated all users.
1100 (cmd_record_restore): Renamed to ...
1101 (cmd_record_full_restore): ... this. Updated all users.
1102 (record_save_cleanups): Renamed to ...
1103 (record_full_save_cleanups): ... this. Updated all users.
1104 (cmd_record_start): Renamed to ...
1105 (cmd_record_full_start): ... this. Updated all users.
1106 (set_record_insn_max_num): Renamed to ...
1107 (set_record_full_insn_max_num): ... this. Updated all users.
1108 (set_record_command): Renamed to ...
1109 (set_record_full_command): ... this. Updated all users.
1110 (show_record_command): Renamed to ...
1111 (show_record_full_command): ... this. Updated all users.
1112 (_initialize_record): Renamed to ...
1113 (_initialize_record_full): ... this. Updated all users.
1114
1115 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
1116
1117 * record.h: Split into this and ...
1118 * record-full.h: ... this.
1119 * record.c: Split into this and ...
1120 * record-full.c: ... this.
1121 * target.h (target_ops): Add new fields to_info_record,
1122 to_save_record, to_delete_record, to_record_is_replaying,
1123 to_goto_record_begin, to_goto_record_end, to_goto_record.
1124 (target_info_record): New.
1125 (target_save_record): New.
1126 (target_supports_delete_record): New.
1127 (target_delete_record): New.
1128 (target_record_is_replaying): New.
1129 (target_goto_record_begin): New.
1130 (target_goto_record_end): New.
1131 (target_goto_record): New.
1132 * target.c (target_info_record): New.
1133 (target_save_record): New.
1134 (target_supports_delete_record): New.
1135 (target_delete_record): New.
1136 (target_record_is_replaying): New.
1137 (target_goto_record_begin): New.
1138 (target_goto_record_end): New.
1139 (target_goto_record): New.
1140 * record.h: Declare struct cmd_list_element.
1141 (record_cmdlist): New declaration.
1142 (set_record_cmdlist): New declaration.
1143 (show_record_cmdlist): New declaration.
1144 (info_record_cmdlist): New declaration.
1145 (cmd_record_goto): New declaration.
1146 * record.c: Remove unnecessary includes.
1147 Include inferior.h.
1148 (cmd_record_goto): Remove declaration.
1149 (record_cmdlist): Now extern. Initialize.
1150 (set_record_cmdlist): Now extern. Initialize.
1151 (show_record_cmdlist): Now extern. Initialize.
1152 (info_record_cmdlist): Now extern. Initialize.
1153 (find_record_target): New.
1154 (require_record_target): New.
1155 (cmd_record_start): Update.
1156 (cmd_record_delete): Remove target-specific code.
1157 Call target_delete_record.
1158 (cmd_record_stop): Unpush any record target.
1159 (set_record_insn_max_num): Move to record-full.c
1160 (set_record_command): Add comment.
1161 (show_record_command): Add comment.
1162 (info_record_command): Update comment.
1163 Remove target-specific code.
1164 Call the record target's to_info_record.
1165 (cmd_record_start): New.
1166 (cmd_record_goto): Now extern.
1167 Remove target-specific code.
1168 Call target_goto_begin, target_goto_end, or target_goto.
1169 (_initialize_record): Move record target ops initialization to
1170 record-full.c.
1171 Change "record" command help text.
1172 Move "record restore", "record set", and "record show" commands to
1173 record-full.c.
1174 * Makefile.in (SFILES): Add record-full.c.
1175 (HFILES_NO_SRCDIR): Add record-full.h.
1176 (COMMON_OBS): Add record-full.o.
1177 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
1178 * arm-tdep.c: Include record-full.h.
1179 * i386-linux-tdep.c: Include record-full.h instead of record.h.
1180 * i386-tdep.c: Include record-full.h.
1181 * infrun.c: Include record-full.h.
1182 * linux-record.c: Include record-full.h.
1183 * moxie-tdep.c: Include record-full.h.
1184 * record-full.c: Include record-full.h.
1185 Change module comment.
1186 (set_record_full_cmdlist): New.
1187 (show_record_full_cmdlist): New.
1188 (record_full_cmdlist): New.
1189 (record_goto_insn): New declaration.
1190 (record_save): New declaration.
1191 (record_check_insn_num): Change query string.
1192 (record_info): New.
1193 (record_delete): New.
1194 (record_is_replaying): New.
1195 (record_goto_entry): New.
1196 (record_goto_begin): New.
1197 (record_goto_end): New.
1198 (record_goto): New.
1199 (init_record_ops): Update.
1200 (init_record_core_ops): Update.
1201 (cmd_record_save): Rename to record_save. Remove target and arg checks.
1202 (cmd_record_start): New.
1203 (set_record_insn_max_num): Moved from record.c
1204 (set_record_full_command): New.
1205 (show_record_full_command): New.
1206 (_initialize_record_full): New.
1207
1208 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
1209
1210 * target.h (add_deprecated_target_alias): New.
1211 * target.c (add_deprecated_target_alias): New.
1212
1213 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
1214
1215 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
1216 and signal.h.
1217 (linux_supports_btrace): Add kernel and
1218 cpuid check.
1219 (kernel_supports_btrace): New function.
1220 (cpu_supports_btrace): New function.
1221 (intel_supports_btrace): New function.
1222
1223 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
1224
1225 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
1226 * remote.c: Include btrace.h.
1227 (struct btrace_target_info): New struct.
1228 (remote_supports_btrace): New function.
1229 (send_Qbtrace): New function.
1230 (remote_enable_btrace): New function.
1231 (remote_disable_btrace): New function.
1232 (remote_teardown_btrace): New function.
1233 (remote_read_btrace): New function.
1234 (init_remote_ops): Add btrace ops.
1235 (enum <unnamed>): Add btrace packets.
1236 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
1237 (_initialize_remote): Add packet configuration for branch tracing.
1238
1239 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
1240
1241 * features/btrace.dtd: New file.
1242 * Makefile.in (XMLFILES): Add btrace.dtd.
1243 * btrace.h (parse_xml_btrace): New declaration.
1244 * btrace.c: Include xml-support.h.
1245 (parse_xml_btrace): New function.
1246 (parse_xml_btrace_block): New function.
1247 (block_attributes): New struct.
1248 (btrace_attributes): New struct.
1249 (btrace_children): New struct.
1250 (btrace_elements): New struct.
1251
1252 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
1253
1254 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
1255 (amd64_linux_enable_btrace): New.
1256 (amd64_linux_disable_btrace): New.
1257 (amd64_linux_teardown_btrace): New.
1258 (_initialize_amd64_linux_nat): Initialize btrace ops.
1259 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
1260 (i386_linux_enable_btrace): New.
1261 (i386_linux_disable_btrace): New.
1262 (i386_linux_teardown_btrace): New.
1263 (_initialize_i386_linux_nat): Initialize btrace ops.
1264 * config/i386/linux.mh: Add linux-btrace.o.
1265 * config/i386/linux64.mh: Add linux-btrace.o.
1266
1267 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
1268
1269 * common/linux_btrace.h: New file.
1270 * common/linux_btrace.c: New file.
1271 * Makefile.in (SFILES): Add btrace.c.
1272 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
1273 (COMMON_OBS): Add btrace.o.
1274 (linux-btrace.o): New rule.
1275
1276 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
1277
1278 * target.h: Include btrace.h.
1279 (struct target_ops) <to_supports_btrace, to_enable_btrace,
1280 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
1281 * target.c (target_supports_btrace): New function.
1282 (target_enable_btrace): New function.
1283 (target_disable_btrace): New function.
1284 (target_teardown_btrace): New function.
1285 (target_read_btrace): New function.
1286 * btrace.h: New file.
1287 * btrace.c: New file.
1288 * Makefile.in: Add btrace.c.
1289 * gdbthread.h: Include btrace.h.
1290 (struct thread_info): Add btrace field.
1291 * thread.c: Include btrace.h.
1292 (clear_thread_inferior_resources): Call target_teardown_btrace.
1293 * common/btrace-common.h: New file.
1294
1295 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
1296
1297 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
1298 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
1299 kill_status to outer block.
1300
1301 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
1302
1303 Fix entry-values if the callee called a noreturn function.
1304 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
1305 get_frame_address_in_block. Add new comment.
1306
1307 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
1308
1309 Fix entry-values in C++ across CUs.
1310 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
1311 lookup_minimal_symbol. Add a comment.
1312 * dwarf2read.c
1313 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
1314 DW_AT_linkage_name.
1315
1316 2013-03-08 Yao Qi <yao@codesourcery.com>
1317
1318 * tracepoint.c (_initialize_tracepoint): Indent the code.
1319
1320 2013-03-08 Pedro Alves <palves@redhat.com>
1321
1322 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
1323 (parse_find_args, find_command): Change type of pattern buffer
1324 locals to 'gdb_byte *'.
1325
1326 2013-03-08 Stan Shebs <stan@codesourcery.com>
1327 Hafiz Abid Qadeer <abidh@codesourcery.com>
1328
1329 * NEWS: Mention set and show trace-buffer-size commands.
1330 Mention new packet.
1331 * target.h (struct target_ops): New method
1332 to_set_trace_buffer_size.
1333 (target_set_trace_buffer_size): New macro.
1334 * target.c (update_current_target): Set up new method.
1335 * tracepoint.c (trace_buffer_size): New global.
1336 (start_tracing): Send it to the target.
1337 (set_trace_buffer_size): New function.
1338 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
1339 * remote.c (remote_set_trace_buffer_size): New function.
1340 (_initialize_remote): Use it.
1341 (QTBuffer:size) New remote command.
1342 (PACKET_QTBuffer_size): New enum.
1343 (remote_protocol_features): Add an entry for
1344 PACKET_QTBuffer_size.
1345
1346 2013-03-08 Tom Tromey <tromey@redhat.com>
1347
1348 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
1349 variable.
1350
1351 2013-03-07 Pedro Alves <palves@redhat.com>
1352
1353 * target.c (target_read_stralloc, target_fileio_read_alloc):
1354 *Cast pointer to 'gdb_byte *' in target call.
1355
1356 2013-03-07 Pedro Alves <palves@redhat.com>
1357
1358 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
1359 call.
1360
1361 2013-03-07 Keith Seitz <keiths@redhat.com>
1362
1363 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
1364 (trace_pass_command): Likewise.
1365 * cli/cli-cmds.c: Include cli/cli-utils.h.
1366 (source_command): Use skip-spaces.
1367 (disassemble_command): Likewise.
1368 * findcmd.c: Include cli/cli-utils.h.
1369 (parse_find_args): Use skip_spaces.
1370 * go32-nat.c: Include cli/cli-utils.h.
1371 (go32_sldt): Use skip_spaces.
1372 (go32_sgdt): Likewise.
1373 (go32_sidt): Likewise.
1374 (go32_pde): Likewise.
1375 (go32_pte): Likewise.
1376 (go32_pte_for_address): Likewise.
1377 * infcmd.c: Include cli/cli-utils.h.
1378 (registers_info): Use skip_spaces.
1379 * linux-tdep.c (read_mapping): Use skip_spaces_const.
1380 (linux_info_proc): Likewise.
1381 * linux-thread-db.c: Include cli/cli-utils.h.
1382 (info_auto_load_libthread_db): Use skip_spaces_const.
1383 * m32r-rom.c: Include cli/cli-utils.h.
1384 (m32r_upload_command): Use skip_spaces.
1385 * maint.c: Include cli/cli-utils.h.
1386 (maintenance_translate_address): Use skip_spaces.
1387 * mi/mi-parse.c: Include cli/cli-utils.h.
1388 (mi_parse_argv): Use skip_spaces.
1389 (mi_parse): Likewise.
1390 * minsyms.c: Include cli/cli-utils.h.
1391 (msymbol_hash_iw): Use skip_spaces_const.
1392 * objc-lang.c: Include cli/cli-utils.h.
1393 (parse_selector): Use skip_spaces.
1394 (parse_method): Likewise.
1395 * python/python.c: Include cli/cli-utils.h.
1396 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
1397 (python_command)[HAVE_PYTHON]: Likewise.
1398 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
1399 * remote-m32r-sdi.c: Include cli/cli-utils.h.
1400 (m32r_load): Use skip_spaces.
1401 * serial.c: Include cli/cli-utils.h.
1402 (serial_open): Use skip_spaces_const.
1403 * stack.c: Include cli/cli-utils.h.
1404 (parse_frame_specification_1): Use skip_spaces_const.
1405 * symfile.c: Include cli/cli-utils.h.
1406 (set_ext_lang_command): Use skip_spaces.
1407 * symtab.c: Include cli/cli-utils.h.
1408 (rbreak_command): Use skip_spaces.
1409 * thread.c (thread_name_command): Use skip_spaces.
1410 * tracepoint.c (validate_actionline): Use skip_spaces.
1411 (encode_actions_1): Likewise.
1412 (trace_find_range_command): Likewise.
1413 (trace_find_outside_command): Likewise.
1414 (trace_dump_actions): Likewise.
1415
1416 2013-03-07 Pedro Alves <palves@redhat.com>
1417
1418 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
1419 * expprint.c (print_subexp_standard): Likewise.
1420 * utils.c (host_char_to_target): Likewise.
1421 * valprint.c (generic_emit_char, generic_printstr): Likewise.
1422 * varobj.c (value_get_print_value): Change type of local to char*.
1423 Cast it gdb_byte * in call to language printer.
1424
1425 2013-03-07 Pedro Alves <palves@redhat.com>
1426
1427 * charset.c (struct wchar_iterator) <input>: Change type to 'const
1428 gdb_byte *'.
1429 (make_wchar_iterator): Remove cast to char*.
1430 (wchar_iterate): Change type of local.
1431
1432 2013-03-07 Pedro Alves <palves@redhat.com>
1433
1434 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
1435 for 'regcache->register_status'.
1436
1437 2013-03-07 Pedro Alves <palves@redhat.com>
1438
1439 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
1440 int.
1441
1442 2013-03-07 Pedro Alves <palves@redhat.com>
1443
1444 * stap-probe.c (handle_stap_probe): Add cast to char*.
1445
1446 2013-03-07 Pedro Alves <palves@redhat.com>
1447
1448 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
1449 RECORD_MSGRCV>: Pass a signed variable to
1450 regcache_raw_read_signed, instead of an unsigned one.
1451
1452 2013-03-07 Pedro Alves <palves@redhat.com>
1453
1454 * remote-notif.c (notif_debug): Change type to int.
1455 * remote-notif.h (notif_debug): Likewise.
1456
1457 2013-03-07 Pedro Alves <palves@redhat.com>
1458
1459 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
1460
1461 2013-03-07 Pedro Alves <palves@redhat.com>
1462
1463 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
1464 * remote.h (hex2bin, bin2hex): ... here.
1465 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
1466
1467 2013-03-07 Eli Zaretskii <eliz@gnu.org>
1468
1469 * utils.c (initialize_utils): Improve doc strings of "set/show
1470 width", "set/show height", and "set/show pagination".
1471
1472 2013-03-06 Keith Seitz <keiths@redhat.com>
1473
1474 * ax-gdb.c (gen_printf): Make FORMAT const.
1475 * ax-gdb.h (gen_printf): Likewise.
1476 * ax-general.c (ax_string): Make STR const.
1477 * ax.h (ax_string): Likewise.
1478
1479 2013-03-06 Doug Evans <dje@google.com>
1480
1481 * elfread.c (elf_symfile_read): Move debugging printf to more
1482 logical location.
1483
1484 2013-03-06 Pedro Alves <palves@redhat.com>
1485
1486 * python/py-utils.c (target_string_to_unicode): Delete function.
1487 * python/python-internal.h (target_string_to_unicode): Delete
1488 declaration.
1489
1490 2013-03-06 Pierre Muller <muller@sourceware.org>
1491
1492 * linespec.c (get_current_search_block): ARI fix, use (void)
1493 for empty parameter list.
1494
1495 2013-03-05 Doug Evans <dje@google.com>
1496
1497 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
1498 of old ada_lookup_symbol_list. In !full_search case, don't
1499 search superblocks.
1500 (ada_lookup_symbol_list): Delete arg full_search, all callers
1501 updated. Call ada_lookup_symbol_list_worker.
1502 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
1503 * ada-lang.h (ada_lookup_symbol_list): Update.
1504 * language.h (language_defn): Update comment for
1505 la_iterate_over_symbols.
1506 * linespec.c (iterate_over_file_blocks): New function.
1507 (iterate_over_all_matching_symtabs): Call it.
1508 (lookup_prefix_sym): Ditto.
1509 (get_current_search_block): New function.
1510 (get_search_block): Delete.
1511 (find_label_symbols): Call get_current_search_block.
1512 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
1513 * symtab.c (iterate_over_symbols): Don't search superblocks.
1514
1515 2013-03-05 Yao Qi <yao@codesourcery.com>
1516
1517 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
1518 parameter VAR's type from "unsigned int" to "int".
1519 * command.h (var_zuinteger_unlimited): Update its comments.
1520 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
1521
1522 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
1523
1524 * NEWS: Mention new target x86_64-*-cygwin*.
1525
1526 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
1527
1528 * configure.host: Add x86_64-*-cygwin* as host.
1529 * configure.tgt: Add x86_64-*-cygwin* as target.
1530 * config/i386/cygwin64.mh: New file.
1531
1532 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1533
1534 * linespec.c (decode_line_2): Fix duplicate request off by two message.
1535
1536 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1537
1538 * linespec.c (struct linespec_canonical_name): New.
1539 (struct linespec_state): Change canonical_names type to it.
1540 (add_sal_to_sals): Change variable canonical_name to canonical. Change
1541 xrealloc element size. Initialize the different CANONICAL fields.
1542 (canonical_to_fullform): New.
1543 (filter_results): Use it. Add variables canonical, fullform and
1544 cleanup.
1545 (struct decode_line_2_item, decode_line_2_compare_items): New.
1546 (decode_line_2): Remove variables iter and item_names, add variables
1547 items and items_count. Modify the code for these new variables.
1548
1549 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
1550
1551 * coff-pe-read.c (read_pe_exported_syms): Don't return without
1552 calling do_cleanup.
1553
1554 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
1555
1556 * tracepoint.c (build_traceframe_info): Add code for byte order.
1557
1558 2013-03-02 Kevin Buettner <kevinb@redhat.com>
1559
1560 * v850-tdep.c: (v850e2_register_name): Revise system register
1561 names to match current V850E2M architecture specifications.
1562 Update register number enum comments too.
1563
1564 2013-03-01 Jiong Wang <jiwang@tilera.com>
1565 Pedro Alves <palves@redhat.com>
1566
1567 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
1568 to END_ADDR.
1569 (tilegx_skip_prologue): Limit prologue analysis to section end.
1570
1571 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1572
1573 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
1574 use it.
1575
1576 2013-03-01 Pedro Alves <palves@redhat.com>
1577
1578 Use gdb_byte for bytes from the program being debugged.
1579
1580 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
1581 Change type of local 'buf' to gdb_byte.
1582 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
1583 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
1584 * cris-tdep.c (cris_sigcontext_addr)
1585 (cris_sigtramp_frame_unwind_cache): Likewise.
1586 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
1587 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
1588 Likewise.
1589 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
1590 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
1591 (hppa32_hpux_search_dummy_call_sequence)
1592 (hppa_hpux_supply_save_state): Likewise.
1593 * hppa-linux-tdep.c (insns_match_pattern)
1594 (hppa_linux_find_global_pointer): Likewise.
1595 * hppa-tdep.c (hppa_in_function_epilogue_p)
1596 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
1597 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
1598 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
1599 (i386fbsd_collect_uthread): Likewise.
1600 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
1601 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
1602 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
1603 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
1604 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
1605 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
1606 (ia64_libunwind_frame_prev_register)
1607 (ia64_libunwind_sigtramp_frame_this_id)
1608 (ia64_find_global_pointer_from_dynamic_section)
1609 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
1610 (ia64_unwind_pc): Likewise.
1611 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
1612 * m68hc11-tdep.c (m68hc11_push_dummy_call)
1613 (m68hc11_extract_return_value): Likewise.
1614 * m68klinux-nat.c (fetch_register, store_register): Likewise.
1615 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
1616 (mep_get_insn, mep_push_dummy_call): Likewise.
1617 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
1618 (mips_linux_in_dynsym_stub): Likewise.
1619 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
1620 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
1621 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
1622 to gdb_byte.
1623 * remote-mips.c (mips_set_register): Likewise.
1624 * remote-sim.c (gdbsim_fetch_register): Likewise.
1625 * score-tdep.c (score7_fetch_inst): Change type of parameter
1626 'memblock' and local 'buf' to gdb_byte.
1627 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
1628 Change type of local 'buf' to gdb_byte. Adjust.
1629 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
1630 to gdb_byte**.
1631 (score7_analyze_prologue): Change type of 'memblock' and
1632 'memblock_ptr' locals to gdb_byte*.
1633 * sh64-tdep.c (sh64_extract_return_value)
1634 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
1635 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
1636 * solib-pa64.c (pa64_solib_create_inferior_hook)
1637 (pa64_open_symbol_file_object): Remove local 'buf'.
1638 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
1639 (som_open_symbol_file_object): Likewise.
1640 * solib-spu.c (spu_current_sos): Likewise.
1641 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
1642 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
1643 (spu_store_registers): Likewise.
1644 * target.c (debug_print_register): Likewise.
1645 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
1646 * xstormy16-tdep.c (xstormy16_store_return_value)
1647 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
1648 (xstormy16_find_jmp_table_entry): Likewise.
1649
1650 2013-03-01 Jiong Wang <jiwang@tilera.com>
1651
1652 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
1653 (tilegx_gdbarch_init): Install it.
1654
1655 2013-02-28 Tom Tromey <tromey@redhat.com>
1656
1657 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
1658 PyLong_Check.
1659
1660 2013-02-28 Doug Evans <dje@google.com>
1661
1662 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
1663 * python/python.c (gdbpy_find_pc_line): Ditto.
1664
1665 2013-02-28 Tom Tromey <tromey@redhat.com>
1666
1667 * contrib/excheck.py: New file.
1668 * contrib/exsummary.py: New file.
1669 * contrib/gcc-with-excheck: New file.
1670
1671 2013-02-28 Tom Tromey <tromey@redhat.com>
1672
1673 * python/python.c (gdbpy_print_stack): Call begin_line and
1674 fprintf_filtered inside TRY_CATCH.
1675
1676 2013-02-28 Tom Tromey <tromey@redhat.com>
1677
1678 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
1679 inside TRY_CATCH.
1680
1681 2013-02-28 Tom Tromey <tromey@redhat.com>
1682
1683 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
1684 frame_object_to_frame_info inside TRY_CATCH.
1685
1686 2013-02-28 Tom Tromey <tromey@redhat.com>
1687
1688 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
1689 TRY_CATCH.
1690
1691 2013-02-28 Tom Tromey <tromey@redhat.com>
1692
1693 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
1694
1695 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
1696
1697 * windows-nat.c: Throughout, fix format strings and casts of
1698 printf-like functions to avoid type related warnings on all
1699 platforms.
1700 (handle_output_debug_string): Fetch context information address
1701 from debug string using string_to_core_addr.
1702
1703 2013-02-27 Jiong Wang <jiwang@tilera.com>
1704
1705 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
1706 * regformats/reg-tilegx32.dat: New.
1707
1708 2013-02-27 Jiong Wang <jiwang@tilera.com>
1709
1710 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
1711
1712 2013-02-27 Jiong Wang <jiwang@tilera.com>
1713
1714 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
1715
1716 2013-02-27 Yao Qi <yao@codesourcery.com>
1717 Pedro Alves <palves@redhat.com>
1718
1719 * tracepoint.c (tfile_trace_find): For tfind
1720 pc/tp/range/outside, look for the next trace frame instead of
1721 always starting from frame 0.
1722
1723 2013-02-26 Anthony Green <green@moxielogic.com>
1724
1725 * configure.tgt: Add support for moxie-*-rtems* target.
1726
1727 2013-02-25 Pedro Alves <palves@redhat.com>
1728
1729 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
1730 warning text.
1731
1732 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
1733
1734 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
1735 if $fp is used as the virtual frame pointer.
1736
1737 2013-02-23 Alan Modra <amodra@gmail.com>
1738
1739 * elfread.c (elf_symtab_read): Do not use udata.p here to find
1740 symbol size.
1741 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
1742 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
1743 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
1744 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
1745
1746 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1747
1748 Code cleanup.
1749 * elfread.c (build_id_bfd_get): Make the return type const.
1750 (build_id_verify): Make the check parameter const.
1751 (build_id_to_debug_filename): Make the build_id parameter and variable
1752 data const.
1753 (find_separate_debug_file_by_buildid): Make the variable build_id const.
1754
1755 2013-02-21 Alan Modra <amodra@gmail.com>
1756
1757 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
1758
1759 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
1760
1761 Add a new method 'disassemble' to gdb.Architecture class.
1762 * python/py-arch.c (archpy_disassmble): Implementation of the
1763 new method gdb.Architecture.disassemble.
1764 (arch_object_methods): Add entry for the new method.
1765
1766 2013-02-20 Jiong Wang <jiwang@tilera.com>
1767
1768 * MAINTAINERS (Write After Approval): Add myself to the list.
1769
1770 2013-02-19 Pedro Alves <palves@redhat.com>
1771
1772 Garbage collect 'struct monitor_ops'::load_routine.
1773
1774 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
1775 * monitor.c (monitor_load): No longer call
1776 current_monitor->load_routine.
1777 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
1778 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
1779 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
1780
1781 2013-02-19 Pedro Alves <palves@redhat.com>
1782
1783 PR gdb/15161
1784
1785 Harmonize with generic_load.
1786
1787 * monitor.c: Include "readline/readline.h".
1788 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
1789 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
1790 long/strtol for the 'load_offset' local. Error out if no argument
1791 is given or if too many arguments are given. Tilde expand the
1792 passed in file name.
1793
1794 2013-02-19 Kai Tietz <ktietz@redhat.com>
1795
1796 PR gdb/15161
1797 * symfile.c (load_section_data): Change type of load_offset
1798 to CORE_ADDR.
1799 (generic_load): User strtoulst instead of strtoul for conversion
1800 of load_offset.
1801
1802 2013-02-19 Jiong Wang <jiwang@tilera.com>
1803
1804 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
1805 for return address, "lr" register, saved on stack.
1806 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
1807 after we invoke tilegx_analyze_prologue.
1808
1809 2013-02-19 Jiong Wang <jiwang@tilera.com>
1810
1811 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
1812
1813 2013-02-19 Jiong Wang <jiwang@tilera.com>
1814
1815 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
1816
1817 2013-02-19 Jiong Wang <jiwang@tilera.com>
1818
1819 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
1820 (tilegx_write_pc): New function.
1821 (tilegx_cannot_reference_register): Return zero if REGNO
1822 is TILEGX_FAULTNUM_REGNUM.
1823 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
1824 (tilegx_register_name): Add handling of "faultnum" register.
1825 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
1826 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
1827 handling of TILEGX_FAULTNUM_REGNUM.
1828 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
1829
1830 2013-02-19 Jiong Wang <jiwang@tilera.com>
1831
1832 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
1833 should be aligned to 64bit.
1834
1835 2013-02-19 Kai Tietz <ktietz@redhat.com>
1836
1837 * windows-nat.c (windows_xfer_memory): Fix debug-output
1838 for LLP64.
1839
1840 2013-02-19 Lei Liu <lei.liu2@windriver.com>
1841
1842 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
1843 Don't check DSP register number if HAVE_DSP is not set.
1844
1845 2013-02-19 Alan Modra <amodra@gmail.com>
1846
1847 * elfread.c (struct build_id): Delete. Use struct elf_build_id
1848 throughout file instead.
1849 (build_id_bfd_get): Update to use new elf_tdata build_id field.
1850 Don't xmalloc return value.
1851 (build_id_verify): Similarly. Don't xfree.
1852 (build_id_to_debug_filename): Update.
1853 (find_separate_debug_file_by_buildid): Update, don't xfree.
1854
1855 2013-02-18 Tom Tromey <tromey@redhat.com>
1856
1857 PR gdb/15102:
1858 * dwarf2read.c (read_subrange_type): Use result of
1859 'check_typedef'.
1860
1861 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
1862
1863 * frame.c: Remove one extra white space after #include
1864 directive.
1865
1866 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1867
1868 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
1869
1870 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1871
1872 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
1873 and dir commands into an if block.
1874
1875 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
1876
1877 * python/py-breakpoint (struct pybp_code): Use int instead of
1878 enum type_code.
1879
1880 2013-02-15 Pedro Alves <pedro@codesourcery.com>
1881 Hafiz Abid Qadeer <abidh@codesourcery.com>
1882
1883 * NEWS: Mention new field "trace-file".
1884 * tracepoint.c (trace_status_mi): Output "trace-file" field.
1885 (tfile_open): Record the trace file's filename in the trace
1886 status.
1887 (tfile_files_info): Mention the name of the trace file.
1888 Check the "filename" field explicitely.
1889 (trace_status_command): Explicitely check "filename" field.
1890 (trace_find_command): Ditto.
1891 (trace_find_pc_command): Ditto.
1892 (trace_find_tracepoint_command): Ditto.
1893 (trace_find_line_command): Ditto.
1894 (trace_find_range_command): Ditto.
1895 (trace_find_outside_command): Ditto.
1896 * tracepoint.h (struct trace_status) <from_file>: Rename it
1897 to "filename" and make it hold the trace file's filename
1898 instead of a boolean.
1899 * remote.c (remote_get_trace_status): Initialize "filename"
1900 field with NULL instead of 0.
1901
1902 2013-02-15 Yao Qi <yao@codesourcery.com>
1903
1904 * remote.c: Fix a typo.
1905
1906 2013-02-14 Pierre Muller <muller@sourceware.org>
1907
1908 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
1909
1910 2013-02-14 Pedro Alves <palves@redhat.com>
1911
1912 * utils.c (savestring): Don't #undef it. Move function to
1913 common/common-utils.c.
1914 * common/common-utils.c: Include gdb_string.h.
1915 (savestring): Move here from utils.c.
1916 * common/common-utils.h (savestring): Declare.
1917
1918 2013-02-14 Pedro Alves <palves@redhat.com>
1919
1920 * utils.c (savestring): Rename parameter 'size' to 'len'.
1921
1922 2013-02-14 Pedro Alves <palves@redhat.com>
1923 Yufeng Zhang <yufeng.zhang@arm.com>
1924
1925 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
1926 (aarch64_inferior_data, struct aarch64_inferior_data):
1927 Delete.
1928 (struct aarch64_process_info): New.
1929 (aarch64_process_list): New global.
1930 (aarch64_find_process_pid, aarch64_add_process)
1931 (aarch64_process_info_get): New functions.
1932 (aarch64_inferior_data_get): Delete.
1933 (aarch64_process_info_get): New function.
1934 (aarch64_forget_process): New function.
1935 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
1936 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
1937 aarch64_get_debug_reg_state.
1938 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
1939 instead of linux_nat_iterate_watchpoint_lwps.
1940 (aarch64_linux_new_fork): New function.
1941 (aarch64_linux_child_post_startup_inferior): Use
1942 aarch64_forget_process instead of aarch64_init_debug_reg_state.
1943 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
1944 (aarch64_linux_remove_hw_breakpoint)
1945 (aarch64_handle_aligned_watchpoint)
1946 (aarch64_handle_unaligned_watchpoint)
1947 (aarch64_linux_insert_watchpoint)
1948 (aarch64_linux_remove_watchpoint)
1949 (aarch64_linux_stopped_data_address): Adjust to pass the current
1950 process id to aarch64_debug_reg_state.
1951 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
1952 linux_nat_new_fork hook, and aarch64_forget_process as
1953 linux_nat_forget_process hook; remove the call to
1954 register_inferior_data_with_cleanup.
1955
1956 2013-02-14 Pedro Alves <palves@redhat.com>
1957
1958 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
1959 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
1960 lval_memory.
1961
1962 2013-02-14 Pedro Alves <pedro@codesourcery.com>
1963 Hafiz Abid Qadeer <abidh@codesourcery.com>
1964
1965 * tracepoint.h (validate_trace_state_variable_name): Declare.
1966 * tracepoint.c (validate_trace_state_variable_name): New.
1967 (trace_variable_command): Parse the trace state variable's name
1968 without using parse_expression. Do several validations.
1969 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
1970 trace state variable's name with parse_expression. Validate it.
1971
1972 2013-02-14 Yao Qi <yao@codesourcery.com>
1973
1974 * infcmd.c (breakpoint_proceeded): Remove it.
1975
1976 2013-02-14 Yao Qi <yao@codesourcery.com>
1977
1978 * tracepoint.c (end_actions_pseudocommand): Make it static.
1979 (while_stepping_pseudocommand): Likewise.
1980 * tracepoint.h (end_actions_pseudocommand): Remove the
1981 declaration.
1982 (while_stepping_pseudocommand): Likewise.
1983
1984 2013-02-14 Yao Qi <yao@codesourcery.com>
1985
1986 * cli/cli-decode.c (help_cmd): Remove the declaration of
1987 "cmdlist".
1988 (help_all): Likewise.
1989
1990 2013-02-13 Pedro Alves <palves@redhat.com>
1991
1992 * amd64-linux-nat.c (update_debug_registers_callback):
1993 Update comment.
1994 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
1995 iterate_over_lwps.
1996 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
1997 i386_debug_reg_state.
1998 (amd64_linux_new_fork): New function.
1999 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
2000 linux_nat_new_fork hook, and i386_forget_process as
2001 linux_nat_forget_process hook.
2002 * i386-linux-nat.c (update_debug_registers_callback):
2003 Update comment.
2004 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
2005 iterate_over_lwps.
2006 (i386_linux_prepare_to_resume): Pass the lwp's pid to
2007 i386_debug_reg_state.
2008 (i386_linux_new_fork): New function.
2009 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
2010 linux_nat_new_fork hook, and i386_forget_process as
2011 linux_nat_forget_process hook.
2012 * i386-nat.c (i386_init_dregs): Delete.
2013 (i386_inferior_data, struct i386_inferior_data):
2014 Delete.
2015 (struct i386_process_info): New.
2016 (i386_process_list): New global.
2017 (i386_find_process_pid, i386_add_process, i386_process_info_get):
2018 New functions.
2019 (i386_inferior_data_get): Delete.
2020 (i386_process_info_get): New function.
2021 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
2022 (i386_forget_process): New function.
2023 (i386_cleanup_dregs): Rewrite.
2024 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
2025 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
2026 (i386_stopped_data_address, i386_insert_hw_breakpoint)
2027 (i386_remove_hw_breakpoint): Adjust to pass the current process id
2028 to i386_debug_reg_state.
2029 (i386_use_watchpoints): Don't register inferior data.
2030 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
2031 adjust comment.
2032 (i386_forget_process): Declare.
2033 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
2034 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
2035 New static globals.
2036 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
2037 (add_initial_lwp): New, factored out from ...
2038 (add_lwp): ... this. Don't check the number of lwps before
2039 calling linux_nat_new_thread.
2040 (linux_nat_iterate_watchpoint_lwps): Delete.
2041 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
2042 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
2043 forks and vforks.
2044 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
2045 initial lwp.
2046 (linux_nat_kill, linux_nat_mourn_inferior): Call
2047 linux_nat_forget_process.
2048 (linux_nat_set_new_fork, linux_nat_set_forget_process)
2049 (linux_nat_forget_process): New functions.
2050 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
2051 type.
2052 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
2053 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
2054 types.
2055 (linux_nat_set_new_fork, linux_nat_set_forget_process)
2056 (linux_nat_forget_process): New declarations.
2057
2058 * amd64fbsd-nat.c (super_mourn_inferior): New global.
2059 (amd64fbsd_mourn_inferior): New function.
2060 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
2061 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
2062
2063 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
2064
2065 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
2066 Adding _().
2067
2068 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
2069
2070 * aarch64-linux-nat.c (debug_reg_change_callback)
2071 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
2072 %s and phex().
2073
2074 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
2075
2076 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
2077 with LONGEST.
2078
2079 2013-02-13 Pedro Alves <palves@redhat.com>
2080 Hafiz Abid Qadeer <abidh@codesourcery.com>
2081
2082 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
2083
2084 2013-02-12 Tom Tromey <tromey@redhat.com>
2085
2086 PR symtab/11464:
2087 * c-exp.y (lex_one_token): Initialize other fields of yylval on
2088 NAME return.
2089 (classify_inner_name): Remove 'first_name' argument, add
2090 'context'. Remove unused variable.
2091 (yylex): Explicitly maintain the context type. Exit loop earlier
2092 if NAME result is seen.
2093
2094 2013-02-12 Pedro Alves <palves@redhat.com>
2095
2096 * amd64-darwin-tdep.c: Add (C) after Copyright.
2097 * cli/cli-cmds.h: Ditto.
2098 * cli/cli-decode.c: Ditto.
2099 * cli/cli-decode.h: Ditto.
2100 * cli/cli-dump.c: Ditto.
2101 * cli/cli-dump.h: Ditto.
2102 * cli/cli-interp.c: Ditto.
2103 * cli/cli-logging.c: Ditto.
2104 * cli/cli-script.c: Ditto.
2105 * cli/cli-script.h: Ditto.
2106 * cli/cli-setshow.c: Ditto.
2107 * cli/cli-setshow.h: Ditto.
2108 * cli/cli-utils.c: Ditto.
2109 * cli/cli-utils.h: Ditto.
2110 * config/alpha/nm-osf3.h: Ditto.
2111 * config/djgpp/djconfig.sh: Ditto.
2112 * config/i386/nm-fbsd.h: Ditto.
2113 * config/i386/nm-i386gnu.h: Ditto.
2114 * config/nm-linux.h: Ditto.
2115 * config/nm-nto.h: Ditto.
2116 * config/rs6000/nm-rs6000.h: Ditto.
2117 * config/sparc/nm-sol2.h: Ditto.
2118 * darwin-nat-info.c: Ditto.
2119 * dfp.c: Ditto.
2120 * dfp.h: Ditto.
2121 * gdb-demangle.h: Ditto.
2122 * i386-darwin-nat.c: Ditto.
2123 * i386-darwin-tdep.c: Ditto.
2124 * linux-fork.h: Ditto.
2125 * m32c-tdep.c: Ditto.
2126 * microblaze-linux-tdep.c: Ditto.
2127 * microblaze-rom.c: Ditto.
2128 * microblaze-tdep.c: Ditto.
2129 * microblaze-tdep.h: Ditto.
2130 * mips-linux-tdep.h: Ditto.
2131 * ppc-ravenscar-thread.c: Ditto.
2132 * ppc-ravenscar-thread.h: Ditto.
2133 * prologue-value.c: Ditto.
2134 * prologue-value.h: Ditto.
2135 * ravenscar-thread.c: Ditto.
2136 * ravenscar-thread.h: Ditto.
2137 * sparc-ravenscar-thread.c: Ditto.
2138 * sparc-ravenscar-thread.h: Ditto.
2139 * tilegx-linux-tdep.c: Ditto.
2140 * unwind_stop_reasons.def: Ditto.
2141 * windows-nat.h: Ditto.
2142 * xtensa-linux-tdep.c: Ditto.
2143 * xtensa-xtregs.c: Ditto.
2144 * regformats/regdat.sh: Ditto.
2145 * regformats/regdef.h: Ditto.
2146
2147 2013-02-12 Pedro Alves <palves@redhat.com>
2148
2149 * break-catch-sig.c: Update copyright years.
2150
2151 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
2152
2153 Add support for a destructor for ui_out data and use it to
2154 provide a ui_out destructor.
2155 * ui-out.h: Declare the new ui_out destructor.
2156 (ui_out_impl): Add a field for data destructor in ui_out_impl.
2157 * ui-out.c (default_data_destroy): Add a default data destructor
2158 which does nothing.
2159 (default_ui_out_impl): Set the new data_destroy field to
2160 default_data_destroy
2161 (uo_data_destroy): Local function which invokes the data
2162 destructor if present.
2163 (clear_table): Local function which clears the table data of a
2164 ui_out object.
2165 (ui_out_destroy): Public function which frees a ui_out object.
2166 (ui_out_table_end): Use the new clear_table function.
2167 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
2168 NULL.
2169 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
2170 to NULL.
2171
2172 2013-02-11 Doug Evans <dje@google.com>
2173
2174 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
2175 (printf_decfloat): New function. Broken out from ui_printf.
2176 Remove unnecessary code to shift the entire format string down.
2177 (printf_pointer): New function.
2178 (ui_printf): Code to print C strings, wide C strings, decfloats,
2179 and pointers moved to separate functions.
2180
2181 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
2182
2183 * valops.c (value_assign): Handling bitfield offset in
2184 `lval_internalvar_component' case.
2185
2186 2013-02-08 Doug Evans <dje@google.com>
2187
2188 * common/format.c (parse_format_string): Fix whitespace.
2189
2190 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
2191
2192 * stack.c (return_command): Work around uninitialized variable
2193 warning.
2194
2195 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
2196
2197 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
2198 number of the registers from 36 to 34.
2199
2200 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
2201
2202 * NEWS: Mention new AArch64 native and target support.
2203
2204 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
2205
2206 * MAINTAINERS (Write After Approval): Add myself.
2207
2208 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
2209 Marcus Shawcroft <marcus.shawcroft@arm.com>
2210 Nigel Stephens <nigel.stephens@arm.com>
2211 Yufeng Zhang <yufeng.zhang@arm.com>
2212
2213 * aarch64-linux-nat.c: New file.
2214 * config/aarch64/linux.mh: New file.
2215 * configure.host: Add AArch64.
2216 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
2217
2218 2013-02-07 Doug Evans <dje@google.com>
2219
2220 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
2221 disassemble command.
2222
2223 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
2224
2225 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
2226 set_gdbarch_fetch_tls_load_module_address.
2227
2228 2013-02-06 David S. Miller <davem@davemloft.net>
2229
2230 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
2231 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
2232 * value.c (struct_return_convention): New function.
2233 (using_struct_return): Implement in terms of struct_return_convention.
2234 * value.h (struct_return_convention): Declare.
2235 * stack.c (return_command): Allow successful overriding of the return
2236 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
2237
2238 2013-02-06 Tom Tromey <tromey@redhat.com>
2239
2240 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
2241 outside of TRY_CATCH.
2242
2243 2013-02-06 Yao Qi <yao@codesourcery.com>
2244
2245 * mi/mi-interp.c: Include "tracepoint.h".
2246 (mi_tsv_modified): Declare.
2247 (mi_tsv_created, mi_tsv_deleted): Update declaration.
2248 (mi_interpreter_init): Call observer_attach_tsv_modified.
2249 (mi_tsv_modified): New.
2250 (mi_tsv_created, mi_tsv_deleted): Update.
2251 * tracepoint.c (trace_variable_command): Call
2252 observer_notify_tsv_modified if the initial value of tsv is
2253 changed.
2254 (delete_trace_state_variable): Call
2255 observer_notify_tsv_deleted earlier.
2256 (trace_variable_command): Caller update.
2257 (create_tsv_from_upload): Likewise.
2258 * observer.sh: Declare "struct trace_state_variable".
2259
2260 * NEWS: Mention the new MI notification "=tsv-modified".
2261
2262 2013-02-05 Doug Evans <dje@google.com>
2263
2264 * completer.c (location_completer): Fix typo in comment.
2265
2266 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2267
2268 * breakpoint.c (add_location_to_breakpoint): Insert the location with
2269 ADDRESS sorted.
2270
2271 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
2272
2273 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
2274 Refactor if statement to avoid trailing || operator.
2275
2276 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
2277
2278 * NEWS: Add PowerPC FreeBSD as a new native configuration.
2279
2280 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
2281
2282 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
2283 * configure.host: Add powerpc*-*-freebsd* target.
2284 * configure.tgt: Add target info for powerpc*-*-freebsd*.
2285 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
2286 * config/powerpc/fbsd.mh: New file.
2287
2288 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
2289 Denys Vlasenko <dvlasenk@redhat.com>
2290 Pedro Alves <palves@redhat.com>
2291
2292 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
2293 (struct elf_internal_linux_prpsinfo): Forward declare.
2294 * gdbarch.h, gdbarch.c: Regenerate.
2295 * linux-tdep.c: Include `cli/cli-utils.h'.
2296 (linux_fill_prpsinfo): New function.
2297 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
2298 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
2299 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
2300 depending on gdbarch pointer bitness.
2301 * ppc-linux-tdep.c: Include elf-bfd.h.
2302 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
2303 on 32-bit.
2304
2305 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
2306 Marcus Shawcroft <marcus.shawcroft@arm.com>
2307 Nigel Stephens <nigel.stephens@arm.com>
2308 Yufeng Zhang <yufeng.zhang@arm.com>
2309
2310 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
2311
2312 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
2313 Marcus Shawcroft <marcus.shawcroft@arm.com>
2314 Nigel Stephens <nigel.stephens@arm.com>
2315 Yufeng Zhang <yufeng.zhang@arm.com>
2316
2317 * aarch64-newlib-tdep.c: New file.
2318 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
2319 aarch64*-*-elf.
2320 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
2321 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
2322 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
2323 * osabi.c (gdb_osabi_names): Add "Newlib".
2324
2325 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
2326 Marcus Shawcroft <marcus.shawcroft@arm.com>
2327 Nigel Stephens <nigel.stephens@arm.com>
2328 Yufeng Zhang <yufeng.zhang@arm.com>
2329
2330 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
2331 (ALLDEPFILES): Add aarch64-linux-tdep.c.
2332 * aarch64-linux-tdep.c: New file.
2333 * aarch64-linux-tdep.h: New file.
2334 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
2335 * configure.tgt: Add aarch64-none-linux-gnu.
2336
2337 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
2338 Marcus Shawcroft <marcus.shawcroft@arm.com>
2339 Nigel Stephens <nigel.stephens@arm.com>
2340 Yufeng Zhang <yufeng.zhang@arm.com>
2341
2342 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
2343 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
2344 (ALLDEPFILES): Add aarch64-tdep.c.
2345 * aarch64-tdep.c: New file.
2346 * aarch64-tdep.h: New file.
2347 * configure.tgt: Add AArch64.
2348 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
2349 (aarch64-expedite): New definition.
2350 * features/aarch64-core.xml: New file.
2351 * features/aarch64-fpu.xml: New file.
2352 * features/aarch64-without-fpu.c: New file (generated).
2353 * features/aarch64-without-fpu.xml: New file.
2354 * features/aarch64.c: New file (generated).
2355 * features/aarch64.xml: New file.
2356 * regformats/aarch64-without-fpu.dat: New file (generated).
2357 * regformats/aarch64.dat: New file (generated).
2358
2359 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2360
2361 * contrib/expect-read1.c: New file.
2362 * contrib/expect-read1.sh: New file.
2363
2364 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2365
2366 * dwarf2read.c (file_file_name): New function with code from
2367 file_full_name.
2368 (file_full_name): Move most of the code to file_file_name.
2369 (macro_start_file): Rename variable full_name to file_name and use
2370 file_file_name for it. Add comp_dir parameter to new_macro_table.
2371 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
2372 macro_source_file->filename access by macro_source_fullname call.
2373 * macroscope.c (_initialize_macroscope): Update the new_macro_table
2374 caller.
2375 * macrotab.c (struct macro_table): New field comp_dir.
2376 (macro_include): New variables link_fullname and source_fullname.
2377 Replace any macro_source_file->filename access by macro_source_fullname
2378 call.
2379 (macro_lookup_inclusion): Remove the partial filenames checking code.
2380 (check_for_redefinition): New variables source_fullname and
2381 found_key_fullname. Replace any macro_source_file->filename access by
2382 macro_source_fullname call.
2383 (macro_undef): New variables source_fullname and key_fullname. Replace
2384 any macro_source_file->filename access by macro_source_fullname call.
2385 (macro_lookup_definition): New variables retval and source_fullname.
2386 Replace any macro_source_file->filename access by macro_source_fullname
2387 call.
2388 (foreach_macro): New variable key_fullname. Replace any
2389 macro_source_file->filename access by macro_source_fullname call.
2390 (foreach_macro_in_scope): New variable datum_fullname. Replace any
2391 macro_source_file->filename access by macro_source_fullname call.
2392 (new_macro_table): Add parameter comp_dir. Initialize T with it.
2393 (macro_source_fullname): New function.
2394 * macrotab.h (struct macro_source_file): Extent the filename field
2395 comment.
2396 (new_macro_table): New parameter comp_dir, add a comment for it.
2397 (macro_source_fullname): new declaration.
2398
2399 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2400
2401 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
2402 this_real_name to outer block. Use it also for
2403 compare_filenames_for_search.
2404 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
2405 with dw2_get_real_path for file_matcher, considering also
2406 BASENAMES_MAY_DIFFER.
2407 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
2408
2409 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2410
2411 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
2412 to the file_matcher parameter. Pass 0 to it.
2413 (dwarf2_create_include_psymtab): Copy also DIRNAME.
2414 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
2415 NULL psymtab_to_fullname result.
2416 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
2417 an expected filename instead.
2418 (expand_symtabs_matching_via_partial): Add basenames parameter to the
2419 file_matcher parameter. Call also psymtab_to_fullname, after newly
2420 considering BASENAMES_MAY_DIFFER.
2421 * source.c (rewrite_source_path): Remove static.
2422 * source.h (rewrite_source_path): New declaration.
2423 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
2424 the expand_symtabs_matching field. Comment it.
2425 * symtab.c (file_matches): New function comment. Add parameter
2426 basenames, implement it.
2427 (search_symbols_file_matches): Add basenames parameter. Update the
2428 file_matches caller.
2429 (search_symbols): Match FILES also against symtab_to_fullname.
2430 Optimize it for BASENAMES_MAY_DIFFER.
2431
2432 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2433
2434 * source.c (print_source_lines_base): Print for TUI also "fullname".
2435 * tui/tui-data.c (init_content_element): Change tui_locator_element
2436 field to full_name.
2437 * tui/tui-data.h (struct tui_locator_element): Likewise.
2438 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
2439 tui_update_locator_filename calls to tui_update_locator_fullname.
2440 Replace symtab->filename refererence by symtab_to_fullname call.
2441 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
2442 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
2443 field to full_name. Replace symtab->filename refererence by
2444 symtab_to_fullname call.
2445 (tui_show_symtab_source): Rename parameter to fullname. Change
2446 tui_locator_element field to full_name.
2447 * tui/tui-stack.c: Include source.h.
2448 (tui_set_locator_filename): Rename the declaration to ...
2449 (tui_set_locator_fullname): ... here. Rename its parameter to
2450 fullname, updates its comment.
2451 (tui_set_locator_info): Rename its parameter to fullname.
2452 (tui_set_locator_filename): Rename the definition to ...
2453 (tui_set_locator_fullname): ... here. Rename its parameter to
2454 fullname, updates its comment. Change tui_locator_element field to
2455 full_name.
2456 (tui_set_locator_info): Rename its parameter to fullname.
2457 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
2458 (tui_update_locator_filename): Rename to ...
2459 (tui_update_locator_fullname): ... here. Rename callee to
2460 tui_set_locator_fullname.
2461 (tui_show_frame_info): Replace symtab->filename refererence by
2462 symtab_to_fullname call.
2463 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
2464 (tui_update_locator_fullname): ... here.
2465 * tui/tui-winsource.c (tui_display_main): Rename the callee to
2466 tui_update_locator_fullname. Replace symtab->filename refererence by
2467 symtab_to_fullname call.
2468 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
2469 Rename the callee to tui_update_locator_fullname.
2470 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
2471
2472 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2473
2474 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
2475 by symtab_to_filename_for_display calls.
2476 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
2477 (clear_command): New variable sal_fullname, initialize it. Replace
2478 compare_filenames_for_search by filename_cmp with sal_fullname.
2479 (say_where, update_static_tracepoint): Replace symtab->filename
2480 refererences by symtab_to_filename_for_display calls.
2481 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
2482 Likewise.
2483 * dwarf2read.c: Include source.h.
2484 (fixup_go_packaging): Replace symtab->filename refererences by
2485 symtab_to_filename_for_display calls.
2486 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
2487 Replace symtab->filename refererences by symtab_to_filename_for_display
2488 calls.
2489 (create_sals_line_offset, convert_linespec_to_sals): New variable
2490 fullname, initialize it, replace symtab->filename reference by the
2491 variable.
2492 * linux-fork.c: Include source.h.
2493 (info_checkpoints_command): Replace symtab->filename refererences by
2494 symtab_to_filename_for_display calls.
2495 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
2496 by symtab_to_filename_for_display calls.
2497 * mdebugread.c: Include source.h.
2498 (psymtab_to_symtab_1): Replace symtab->filename refererences by
2499 symtab_to_filename_for_display calls.
2500 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
2501 (mi_cmd_file_list_exec_source_files): Likewise.
2502 * printcmd.c: Include source.h.
2503 (build_address_symbolic): Replace symtab->filename refererences by
2504 symtab_to_filename_for_display calls.
2505 * psymtab.c (partial_map_symtabs_matching_filename)
2506 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
2507 with psymtab_to_fullname.
2508 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
2509 by symtab_to_filename_for_display calls.
2510 (stpy_get_filename): New variable filename, initialize it, use instead
2511 of symtab->filename refererences.
2512 (salpy_str): Make variable filename const char *. Replace
2513 symtab->filename refererences by symtab_to_filename_for_display calls.
2514 * skip.c: Include source.h and filenames.h.
2515 (skip_file_command): Remove const from the symtab variable. Replace
2516 symtab->filename refererences by symtab_to_fullname call.
2517 (function_name_is_marked_for_skip): New variables searched_for_fullname
2518 and fullname. Use them to search also with symtab's fullname.
2519 * source.c (find_source_lines): Replace symtab->filename refererences
2520 by symtab_to_filename_for_display calls.
2521 (print_source_lines_base): New variable filename, use it instead of
2522 symtab->filename. Replace symtab->filename refererences by
2523 symtab_to_filename_for_display calls.
2524 (line_info, forward_search_command): Replace symtab->filename
2525 refererences by symtab_to_filename_for_display calls.
2526 (reverse_search_command): Replace symtab->filename refererences by
2527 symtab_to_filename_for_display calls. New variable filename for it.
2528 * stack.c (frame_info): Likewise.
2529 * symmisc.c: Include source.h.
2530 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
2531 (maintenance_info_symtabs): Replace symtab->filename refererences by
2532 symtab_to_filename_for_display calls.
2533 * symtab.c (iterate_over_some_symtabs): Call
2534 compare_filenames_for_search also with symtab_to_fullname.
2535 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
2536 symtab->filename refererences by symtab_to_filename_for_display calls.
2537 (find_line_symtab): Replace symtab->filename refererences by
2538 symtab_to_filename_for_display calls.
2539 (file_matches): Replace filename_cmp by compare_filenames_for_search.
2540 (print_symbol_info): Make the last parameter const char *. New
2541 variable s_filename. Use it in the function.
2542 (symtab_symbol_info): Make the last_filename variable const char *.
2543 Replace symtab->filename refererences by symtab_to_filename_for_display
2544 calls.
2545 (rbreak_command): New variable fullname. Use it. Replace
2546 symtab->filename refererence by symtab_to_filename_for_display call.
2547 * tracepoint.c (set_traceframe_context, trace_find_line_command)
2548 (print_one_static_tracepoint_marker): Replace symtab->filename
2549 refererences by symtab_to_filename_for_display calls.
2550 * tui/tui-source.c (tui_set_source_content): New variables filename and
2551 s_filename. Replace symtab->filename refererences by this variable.
2552 Replace other symtab->filename refererences by
2553 symtab_to_filename_for_display calls.
2554
2555 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
2556 Jan Kratochvil <jan.kratochvil@redhat.com>
2557
2558 Add a new variable that controls a way in which filenames are
2559 displayed.
2560 * NEWS (set filename-display): New entry.
2561 * source.c (filename_display_basename, filename_display_relative)
2562 (filename_display_absolute, filename_display_kind_names)
2563 (filename_display_string, show_filename_display_string)
2564 (symtab_to_filename_for_display): New.
2565 (_initialize_source): Added initialization of 'filename-display'
2566 variable.
2567 * source.h (symtab_to_filename_for_display): Added declaration.
2568 * stack.c (print_frame): Added new variable and calling of a new
2569 function and condition with this variable. Changed third argument of
2570 calling of a function.
2571
2572 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2573
2574 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
2575 Rename field reference filename to fullname.
2576 * tui/tui-data.h (struct tui_source_info): Rename field filename to
2577 fullname. New comment for it.
2578 * tui/tui-source.c (tui_set_source_content): Rename field reference
2579 filename to fullname. Initialize field by symtab_to_fullname now.
2580 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
2581 reference filename to fullname. Use symtab_to_fullname during
2582 comparison.
2583
2584 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2585
2586 Code cleanup.
2587 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
2588 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
2589 filename to fullname. Rename variable this_name to this_fullname.
2590 Lowercase FILENAME_CMP call.
2591 (dw2_find_symbol_file): New comment for the returned string.
2592 (dwarf2_gdb_index_functions): Rename the function to
2593 dw2_expand_symtabs_with_fullname.
2594 * psymtab.c (read_psymtabs_with_filename): Rename to ...
2595 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
2596 fullname.
2597 (psym_functions): Rename the function to read_psymtabs_with_fullname.
2598 * symfile.h (struct quick_symbol_functions): Rename field
2599 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
2600 parameter filename to fullname. Document returned string meaning for
2601 find_symbol_file.
2602 * symtab.c (find_line_symtab): Rename the called function to
2603 expand_symtabs_with_fullname.
2604
2605 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2606
2607 Code cleanup.
2608 * breakpoint.c (clear_command): Remove variable is_abs, unify the
2609 call of filename_cmp with compare_filenames_for_search.
2610 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
2611 is_abs, unify the call of FILENAME_CMP with
2612 compare_filenames_for_search. New gdb_asserts for real_path and name.
2613 Unify the call of compare_filenames_for_search with FILENAME_CMP.
2614 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
2615 * symfile.h (struct quick_symbol_functions): Extend the comment for
2616 map_symtabs_matching_filename.
2617 * symtab.c (compare_filenames_for_search): Remove the function comment
2618 relative path requirement. Handle absolute filenames, with a comment.
2619 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
2620 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
2621 real_path and name. Unify the call of compare_filenames_for_search
2622 with FILENAME_CMP.
2623 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
2624
2625 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2626
2627 Code cleanup.
2628 * breakpoint.c (print_breakpoint_location): Replace bp_location field
2629 source_file references by symtab field references. Remove variables
2630 sal and fullname.
2631 (momentary_breakpoint_from_master, add_location_to_breakpoint):
2632 (clear_command, say_where): Replace bp_location field source_file
2633 references by symtab field references.
2634 (bp_location_dtor): Remove the source_file reference.
2635 (update_static_tracepoint): Replace bp_location field source_file
2636 references by symtab field references.
2637 (breakpoint_free_objfile): New function.
2638 * breakpoint.h (struct bp_location): Extend the comment for line_number.
2639 Replace the field source_file by field symtab, extend its comment.
2640 (breakpoint_free_objfile): New declaration.
2641 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
2642 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
2643 field source_file references by symtab field references.
2644
2645 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2646
2647 Replace xfullpath calls by gdb_realpath calls.
2648 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
2649 function comment.
2650 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
2651 Remove it from the iterate_over_some_symtabs call.
2652 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
2653 Remove it from the dw2_map_expand_apply calls, remove a block handling
2654 it.
2655 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
2656 Remove it from the iterate_over_some_symtabs call.
2657 (partial_map_symtabs_matching_filename): Remove parameter full_path.
2658 Remove it from the partial_map_expand_apply calls, remove a block
2659 handling it. Drop gdb_realpath call and cleanups from the real_path
2660 handling.
2661 * source.c (openp): Drop the comment part about xfullpath. Replace
2662 xfullpath calls by gdb_realpath calls.
2663 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
2664 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
2665 from method map_symtabs_matching_filename and its comment.
2666 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
2667 gdb_realpath call.
2668 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
2669 remove it also from the function comment, remove a block handling it.
2670 Drop gdb_realpath call and cleanups from the real_path handling.
2671 (iterate_over_symtabs): Drop variable full_path and its use.
2672 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
2673 * utils.c (xfullpath): Remove.
2674 * utils.h (xfullpath): Remove.
2675
2676 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
2677
2678 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
2679 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
2680 (ALLDEPFILES): Add ppc64-tdep.c.
2681 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
2682 ppc64-tdep.o to gdb_target_obs.
2683 * ppc64-tdep.h: New file.
2684 * ppc64-tdep.c: New file.
2685 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
2686 ppc-linux-tdep.c to here.
2687 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
2688 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
2689 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
2690 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
2691 from ppc-linux-tdep.c to here.
2692 (ppc64_convert_from_func_ptr_addr): Rename from
2693 ppc64_linux_convert_from_func_ptr_addr to
2694 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
2695 here.
2696 * rs6000-tdep.c:
2697 (read_insn): Move from ppc-linux-tdep.c to here.
2698 (insns_match_pattern, insn_d_field, insn_ds_field): Move
2699 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
2700 * ppc-linux-tdep.c: Include ppc64-tdep.h.
2701 Removed above functions.
2702 (ppc_linux_init_abi): Adjust.
2703
2704 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
2705
2706 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
2707
2708 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
2709
2710 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
2711
2712 2013-02-01 Pedro Alves <palves@redhat.com>
2713
2714 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
2715 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
2716
2717 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2718
2719 * elfread.c (elf_symfile_read): Limit separate debug info additions to
2720 files with no separate debug info.
2721 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
2722 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
2723 only for files with no separate debug info.
2724
2725 2013-01-31 Tom Tromey <tromey@redhat.com>
2726
2727 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
2728 change type.
2729 (struct jit_program_space_data): Rename from jit_inferior_data.
2730 Update comments.
2731 (get_jit_program_space_data): Rename from get_jit_inferior_data.
2732 Change return type. Attach data to program space.
2733 (jit_program_space_data_cleanup): Rename from
2734 jit_inferior_data_cleanup; change argument type.
2735 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
2736 change type.
2737 (jit_register_code): Update.
2738 (jit_update_inferior_cache): Remove.
2739 (jit_breakpoint_deleted): Get jit data from the location's program
2740 space.
2741 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
2742 'ps_data', change type.
2743 (jit_inferior_init, jit_breakpoint_re_set_internal)
2744 (jit_event_handler): Update.
2745 (free_objfile_data): Get data from objfile's program space.
2746 (_initialize_jit): Update.
2747
2748 2013-01-31 Tom Tromey <tromey@redhat.com>
2749
2750 PR gdb/13987:
2751 * jit.c (struct jit_inferior_data) <cached_code_address,
2752 jit_breakpoint>: New fields.
2753 (jit_breakpoint_re_set_internal): Fix logging. Only create
2754 breakpoint if cached address has changed.
2755 (jit_update_inferior_cache, jit_breakpoint_deleted): New
2756 functions.
2757 (_initialize_jit): Register breakpoint deleted observer.
2758
2759 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2760
2761 * infrun.c (handle_syscall_event): Remove unused gdbarch.
2762 (save_infcall_suspend_state): Ifdef out unused inf.
2763 (restore_infcall_suspend_state): Ifdef out unused inf.
2764 * jit.c (jit_register_code): Remove unused i, b, inf_data.
2765 (jit_frame_sniffer): Remove unused inf_data.
2766
2767 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2768
2769 * c-exp.y (classify_inner_name): Remove unused type.
2770 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
2771 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
2772 need_escape.
2773 (c_get_string): Remove unused kind.
2774 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
2775
2776 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2777
2778 * charset.c (intermediate_encoding): Remove unused i.
2779 * completer.c (signal_completer): Remove unused i.
2780 * continuations.c (discard_my_continuations_1): Remove unused
2781 continuation_ptr.
2782 * corelow.c (core_close): Remove unuseD name.
2783 (get_core_siginfo): Remove unused pid.
2784 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
2785 i, cps.
2786 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
2787 (loclist_describe_location): Remove unused first.
2788 * event-top.c (command_line_handler): Remove unused got_eof.
2789 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
2790 (resize_section_table): Remove unused old_value.
2791 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
2792 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
2793 * i386-tdep.c (i386_process_record): Remove unused rex.
2794 * infcmd.c (get_return_value): Remove unused uiout.
2795 * jv-lang.c (type_from_class): Remove unused is_array.
2796 * jv-valprint.c (java_val_print): Remove unused i.
2797 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
2798 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
2799 * m2-typeprint.c (m2_print_type): Remove unused code.
2800 * macroexp.c (get_character_constant): Remove unused body_start.
2801 (macro_stringify): Remove unused result.
2802 * objc-lang.c (find_methods): Remove unused gdbarch.
2803 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
2804 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
2805 * stack.c (print_frame_args): Remove unused summary.
2806 * thread.c (thread_apply_command): Remove unused p.
2807 * valarith.c (value_x_unop): Remove unused mangle_ptr.
2808 * valops.c (search_struct_method): Remove unused skip.
2809 * valprint.c (generic_val_print): Remove unused byte_order.
2810 * varobj.c (varobj_update): Remove unused changed.
2811 * cli/cli-cmds.c (complete_command): Remove unused next_item.
2812 (alias_command): Remove unused c.
2813 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
2814 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
2815 format.
2816 (mi_cmd_data_write_memory): Remove unused word_format.
2817 (mi_cmd_data_write_memory_bytes): Remove unused r.
2818 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
2819 p_start, p_end.
2820 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
2821 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
2822 line_width.
2823
2824 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2825
2826 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
2827 * symtab.c (iterate_over_symtabs): Remove unused s.
2828 (find_pc_sect_symtab): Remove unused pspAce.
2829 (find_pc_sect_line): Remove unused alt_symtab.
2830 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
2831 (completion_list_add_name): Remove unused newsize.
2832
2833 2013-01-31 Tom Tromey <tromey@redhat.com>
2834
2835 PR c++/14998:
2836 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
2837 TYPE_CODE_FUNC.
2838
2839 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2840
2841 * target.c (target_read_string): Remove unused origlen.
2842
2843 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2844
2845 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
2846 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
2847 * ax-general.c (ax_print): Remove unused is_float.
2848 * blockframe.c (block_innermost_frame): Remove unused start, end.
2849 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
2850
2851 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2852
2853 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
2854 (svr4_read_so_list): Remove unused lmo.
2855 * solib-target.c (solib_target_relocate_section_addresses): Remove
2856 unused flags.
2857
2858 2013-01-30 Tom Tromey <tromey@redhat.com>
2859
2860 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
2861
2862 2013-01-30 Tom Tromey <tromey@redhat.com>
2863
2864 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
2865 * utils.c (gnu_debuglink_crc32): Remove.
2866 * utils.h (gnu_debuglink_crc32): Don't declare.
2867
2868 2013-01-30 Tom Tromey <tromey@redhat.com>
2869
2870 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
2871 (read_structure_type, read_enumeration_type): Remove cast.
2872
2873 2013-01-30 Tom Tromey <tromey@redhat.com>
2874
2875 * dwarf2read.c (read_namespace_type): Remove cast.
2876 (read_typedef): Likewise.
2877
2878 2013-01-29 Tom Tromey <tromey@redhat.com>
2879
2880 * dwarf2read.c (free_dwo_file): Remove assert.
2881
2882 2013-01-29 Tom Tromey <tromey@redhat.com>
2883
2884 * value.c (deprecated_set_value_modifiable): Remove.
2885 * value.h (deprecated_set_value_modifiable): Remove.
2886
2887 2013-01-28 Doug Evans <dje@google.com>
2888
2889 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
2890 to addresses from dwo files.
2891
2892 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
2893
2894 * valops.c (find_overload_match): Remove unused argument 'lax'.
2895 * value.h: Remove unused argument 'lax' from the declaration of
2896 find_overload_match.
2897 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
2898 to find_overload_match.
2899 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
2900 argument to find_overload_match.
2901
2902 2013-01-25 Tom Tromey <tromey@redhat.com>
2903
2904 * dwarf2read.c (processing_has_namespace_info): Remove.
2905 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
2906 (process_die, read_func_scope, dwarf2_start_symtab)
2907 (new_symbol_full): Update.
2908
2909 2013-01-25 Tom Tromey <tromey@redhat.com>
2910
2911 * cp-namespace.c (cp_set_block_scope): Remove.
2912 * cp-support.h (cp_set_block_scope): Remove.
2913 * dbxread.c: Include block.h.
2914 (cp_set_block_scope): New function.
2915 (process_one_symbol): Update.
2916 * dwarf2read.c (read_func_scope): Use block_set_scope.
2917
2918 2013-01-25 Pedro Alves <palves@redhat.com>
2919
2920 * remote.c (add_current_inferior_and_thread): Tweak comment.
2921
2922 2013-01-25 Tom Tromey <tromey@redhat.com>
2923
2924 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
2925 (cp_add_using_directive): Add 'copy_names' argument.
2926 * cp-support.h (cp_add_using_directive): Update.
2927 (struct using_direct) <import_src, import_dest, alias,
2928 declaration>: Now const.
2929 * dwarf2read.c (read_import_statement): Use obconcat.
2930 Don't copy names passed to cp_add_using_directive.
2931
2932 2013-01-25 Tom Tromey <tromey@redhat.com>
2933
2934 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
2935
2936 2013-01-25 Pedro Alves <palves@redhat.com>
2937
2938 * remote.c (stop_reply_extract_thread): New.
2939 (add_current_inferior_and_thread): New parameter 'wait_status'.
2940 Handle it.
2941 (remote_start_remote): Pass wait status to
2942 add_current_inferior_and_thread.
2943 (extended_remote_run): Update comment.
2944 (extended_remote_create_inferior_1): Pass wait status to
2945 add_current_inferior_and_thread.
2946
2947 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
2948 Ulrich Weigand <uweigand@de.ibm.com>
2949
2950 * valarith.c (value_vector_widen): New function for replicating a
2951 scalar into a vector.
2952 (value_binop): Use value_vector_widen to widen scalar to vector
2953 rather than casting, this better matches gcc C behaviour.
2954 * valops.c (value_casst): Update logic for casting between vector
2955 types, and for casting from scalar to vector, try to match gcc C
2956 behaviour.
2957 * value.h (value_vector_widen): Declare.
2958 * opencl-lang.c (opencl_value_cast): New opencl specific casting
2959 function, handle special case for casting scalar to vector.
2960 (opencl_relop): Use opencl_value_cast.
2961 (evaluate_subexp_opencl): Use opencl_value_cast instead of
2962 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
2963 in order to use opencl_value_cast.
2964
2965 2013-01-25 Yao Qi <yao@codesourcery.com>
2966
2967 * event-loop.c: Include "queue.h".
2968 (gdb_event_p): New typedef.
2969 (DECLARE_QUEUE_P): Use.
2970 (DEFINE_QUEUE_P): Use.
2971 (async_queue_event): Remove.
2972 (gdb_event_xfree): New.
2973 (initialize_event_loop): New.
2974 (process_event): Use QUEUE macros.
2975 (event_queue): Remove.
2976 (gdb_wait_for_event): Caller update.
2977 (check_async_event_handlers): Likewise.
2978 (poll_timers): Likewise.
2979 * event-loop.h (initialize_event_loop): Declare.
2980 * event-loop.c (gdb_event_xfree): New.
2981 * top.c (gdb_init): Call initialize_event_loop.
2982
2983 2013-01-25 Yao Qi <yao@codesourcery.com>
2984
2985 * event-loop.c (async_queue_event): Remove one parameter
2986 'position'. Remove code handling 'position' == TAIL.
2987 (gdb_wait_for_event): Caller update.
2988 (check_async_event_handlers): Caller update.
2989 (poll_timers): Caller update.
2990 * event-loop.h (enum queue_position): Remove.
2991
2992 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
2993
2994 * MAINTAINERS: Update my email.
2995
2996 2013-01-25 Yao Qi <yao@codesourcery.com>
2997
2998 * main.c (print_gdb_help): Remove "--epoch" from the help
2999 message.
3000
3001 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
3002
3003 * symtab.c (skip_prologue_using_sal): Consider a file
3004 change the same as an increased line number
3005
3006 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
3007
3008 * MAINTAINERS (Write After Approval): Add myself to the list.
3009
3010 2013-01-24 Tom Tromey <tromey@redhat.com>
3011
3012 * ada-lang.h (ada_decode_symbol): Make return type const.
3013 * ada-lang.c (ada_decode_symbol): Likewise.
3014
3015 2013-01-23 Doug Evans <dje@google.com>
3016
3017 * linespec.c (find_linespec_symbols): Make static.
3018
3019 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
3020
3021 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
3022 type on float conversion for complex type.
3023
3024 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
3025
3026 Add a new class gdb.Architecture which exposes GDB's
3027 internal representation of architecture via GDB Python API.
3028 * Makefile.in: Add entries corresponding to the new file
3029 python/py-arch.c.
3030 * NEWS (Python Scripting): Add entries for the new class
3031 gdb.Architecture and the new method gdb.Frame.architecture.
3032 * python/py-arch.c: Implement gdb.Architecture class.
3033 * python/py-frame.c (frapy_arch): Implement the method
3034 gdb.Frame.architecture().
3035 (frame_object_methods): Add 'architecture' to the method table.
3036 * python/python-internal.h: Add declarations of new utility
3037 functions.
3038 * python/python.c (_initialize_python): Initialize
3039 gdb.Architecture class.
3040
3041 2013-01-23 Doug Evans <dje@google.com>
3042
3043 Work around binutils/15021.
3044 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
3045 type_unit_group out of union s. All uses updated.
3046 (read_index_from_section): Watch for index version 8.
3047 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
3048 an imported symtab.
3049 (write_psymtabs_to_index): Increment version number to 8.
3050
3051 2013-01-22 Pedro Alves <palves@redhat.com>
3052
3053 * annotate.c (breakpoint_changed): Skip if breakpoint is not
3054 user-visible.
3055
3056 2013-01-22 Pedro Alves <palves@redhat.com>
3057
3058 * annotate.c (annotate_breakpoints_changed): Rename to ...
3059 (annotate_breakpoints_invalid): ... this. Make static.
3060 (breakpoint_changed): Adjust.
3061 (_initialize_annotate): Always install the observers. Install a
3062 "breakpoint_created" observer.
3063 * annotate.h (annotate_breakpoints_changed): Delete declaration.
3064 * breakpoint.c (set_breakpoint_condition)
3065 (breakpoint_set_commands, do_map_commands_command)
3066 (init_raw_breakpoint, clear_command, set_ignore_count)
3067 (enable_breakpoint_disp): No longer call
3068 annotate_breakpoints_changed.
3069
3070 2013-01-22 Pedro Alves <palves@redhat.com>
3071
3072 * annotate.c: Include "inferior.h".
3073 (frames_invalid_emitted)
3074 (breakpoints_invalid_emitted): New globals.
3075 (async_background_execution_p): New function.
3076 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
3077 emitting the annotation if it has already been emitted.
3078 (annotate_display_prompt): New function.
3079 * annotate.h (annotate_display_prompt): New declaration.
3080 * event-top.c: Include annotate.h.
3081 (display_gdb_prompt): Call annotate_display_prompt.
3082
3083 2013-01-22 Pedro Alves <palves@redhat.com>
3084
3085 * annotate.c (ignore_count_changed): Delete.
3086 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
3087 (annotate_ignore_count_change): Delete.
3088 (annotate_stopped): Don't emit a delayed breakpoints-changed
3089 annotation.
3090 * annotate.h (annotate_ignore_count_change): Delete.
3091 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
3092 annotate_ignore_count_change.
3093
3094 2013-01-22 Tom Tromey <tromey@redhat.com>
3095
3096 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
3097 require_rvalue for a register location.
3098
3099 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
3100
3101 * breakpoint.c (print_one_breakpoint_location): Add MI
3102 field 'thread-groups' when printing a breakpoint.
3103 (output_thread_groups): New function.
3104
3105 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
3106
3107 * python/lib/gdb/commands/explore.py
3108 (CompoundExplorer.explore_expr): Correct the name of a method
3109 being invoked.
3110 (ExploreTypeCommand.invoke): Add a missing 'return'.
3111
3112 2013-01-21 Tom Tromey <tromey@redhat.com>
3113
3114 * gdb_obstack.h (obconcat): Move declaration here, from...
3115 * symfile.h (obconcat): ... here.
3116 * gdb_obstack.c: New file.
3117 (obconcat): Move from...
3118 * symfile.c (obconcat): ... here.
3119 * Makefile.in (SFILES): Add gdb_obstack.c.
3120 (COMMON_OBS): Add gdb_obstack.o.
3121
3122 2013-01-21 Tom Tromey <tromey@redhat.com>
3123
3124 * symfile.h (obsavestring): Don't declare.
3125 * symfile.c (obsavestring): Remove.
3126 * ada-exp.y: Use obstack_copy0, not obsavestring.
3127 * ada-lang.c: Use obstack_copy0, not obsavestring.
3128 * coffread.c: Use obstack_copy0, not obsavestring.
3129 * cp-namespace.c: Use obstack_copy0, not obsavestring.
3130 * dbxread.c: Use obstack_copy0, not obsavestring.
3131 * dwarf2read.c: Use obstack_copy0, not obsavestring.
3132 * jit.c: Use obstack_copy0, not obsavestring.
3133 * mdebugread.c: Use obstack_copy0, not obsavestring.
3134 * psymtab.c: Use obstack_copy0, not obsavestring.
3135 * stabsread.c: Use obstack_copy0, not obsavestring.
3136 * xcoffread.c: Use obstack_copy0, not obsavestring.
3137
3138 2013-01-21 Tom Tromey <tromey@redhat.com>
3139
3140 * dwarf2read.c (fixup_go_packaging): Save package name
3141 on objfile obstack.
3142 * gdbtypes.c (init_type): Don't copy name.
3143
3144 2013-01-21 Tom Tromey <tromey@redhat.com>
3145
3146 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
3147 const.
3148 (struct attribute) <u.str>: Now const.
3149 (struct fnfieldlist) <name>: Now const.
3150 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
3151 (partial_die_parent_scope): Make return type const.
3152 (partial_die_full_name, add_partial_symbol): Update.
3153 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
3154 'name' const.
3155 (find_file_and_directory): Make 'name' and 'comp_dir' const.
3156 (read_file_scope, read_func_scope, dwarf2_add_field)
3157 (dwarf2_add_member_fn, read_structure_type)
3158 (process_enumeration_scope, read_array_type, read_module_type)
3159 (read_base_type, read_subrange_type): Update.
3160 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
3161 (new_symbol_full, guess_full_die_structure_name): Update.
3162 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
3163 (dwarf2_name): Return const type.
3164 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
3165 const.
3166
3167 2013-01-21 Tom Tromey <tromey@redhat.com>
3168
3169 * gdbtypes.c (init_type): Make 'name' const.
3170 * gdbtypes.h (init_type): Update.
3171
3172 2013-01-21 Tom Tromey <tromey@redhat.com>
3173
3174 * buildsym.c (patch_subfile_names): Use set_last_source_file.
3175 (start_symtab): Make 'name' and 'dirname' const. Use
3176 set_last_source_file.
3177 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
3178 (last_source_file): Define. Now static.
3179 (set_last_source_file, get_last_source_file): New functions.
3180 * buildsym.h (last_source_file): Don't declare.
3181 (start_symtab): Update.
3182 (set_last_source_file, get_last_source_file): Declare.
3183 * coffread.c (complete_symtab): Use set_last_source_file.
3184 (coff_end_symtab): Likewise.
3185 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
3186 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
3187 set_last_source_file.
3188 (process_one_symbol): Use get_last_source_file.
3189 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
3190 (psymtab_to_symtab_1): Use get_last_source_file.
3191 * xcoffread.c (process_linenos): Use get_last_source_file.
3192 (complete_symtab): Use set_last_source_file.
3193 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
3194 (scan_xcoff_symtab): Use set_last_source_file.
3195
3196 2013-01-21 Tom Tromey <tromey@redhat.com>
3197
3198 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
3199 (symbol_set_names): Remove casts. Handle field const-ness.
3200
3201 2013-01-21 Tom Tromey <tromey@redhat.com>
3202
3203 * dwarf2read.c (new_symbol_full): Remove cast.
3204 * symtab.c (symbol_set_demangled_name): Make 'name' const.
3205 * symtab.h (symbol_set_demangled_name): Update.
3206
3207 2013-01-21 Tom Tromey <tromey@redhat.com>
3208
3209 * main.c (captured_main): Call bfd_init.
3210
3211 2013-01-21 Tom Tromey <tromey@redhat.com>
3212
3213 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
3214 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
3215 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
3216 * NEWS: Update.
3217
3218 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
3219
3220 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
3221
3222 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
3223
3224 Fix gdb.fortran/common-block.exp crash in PIE mode.
3225 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
3226 LOC_COMMON_BLOCK.
3227 * f-valprint.c (info_common_command_for_block): Expect
3228 LOC_COMMON_BLOCK in gdb_assert.
3229 * symtab.h (struct general_symbol_info): Update comment for the
3230 common_block member.
3231 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
3232 (enum address_class): New member LOC_COMMON_BLOCK.
3233
3234 2013-01-18 David Blaikie <dblaikie@gmail.com>
3235
3236 * MAINTAINERS (Write After Approval): Add "David Blaikie".
3237
3238 2013-01-18 Tom Tromey <tromey@redhat.com>
3239
3240 PR c++/14999:
3241 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
3242 Call require_rvalue.
3243
3244 2013-01-18 Yao Qi <yao@codesourcery.com>
3245
3246 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
3247 (dbx_read_symtab): New declaration.
3248 (dbx_psymtab_to_symtab): Delete.
3249 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
3250 Rename parameter PST to SELF. Exchanged two parameters.
3251 (start_psymtab): Caller update.
3252 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
3253 (dwarf2_read_symtab): New declaration.
3254 (dwarf2_psymtab_to_symtab): Delete.
3255 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
3256 Rename parameter PST to SELF. Exchanged two parameters.
3257 (create_partial_symtab): Caller update.
3258 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
3259 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
3260 Rename parameter PST to SELF. Exchanged two parameters.
3261 (parse_partial_symbols, new_psymtab): Caller update.
3262 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
3263 two parameters.
3264 * psymtab.c (psymtab_to_symtab): Caller update.
3265 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
3266 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
3267 Rename parameter PST to SELF. Exchanged two parameters.
3268 (xcoff_start_psymtab): Caller update.
3269
3270 2013-01-18 Yao Qi <yao@codesourcery.com>
3271
3272 * infrun.c (proceed): Rename local variable 'oneproc' to
3273 'force_step'.
3274
3275 2013-01-17 Doug Evans <dje@google.com>
3276
3277 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
3278 (dw2_build_type_unit_groups): Delete. All uses updated.
3279
3280 * symtab.h (struct symbol_search): Add comment.
3281
3282 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3283
3284 * symtab.c (compare_filenames_for_search): New comment for
3285 HAS_DRIVE_SPEC.
3286
3287 2013-01-17 Tom Tromey <tromey@redhat.com>
3288
3289 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
3290
3291 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3292
3293 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
3294 initialize it by existing make_cleanup. Call new do_cleanups.
3295
3296 2013-01-17 Tom Tromey <tromey@redhat.com>
3297
3298 * cp-abi.c (cp_abi_completer): New function.
3299 (_initialize_cp_abi): Set completer for "set cp-abi".
3300
3301 2013-01-17 Tom Tromey <tromey@redhat.com>
3302
3303 * mem-break.c: Remove obsolete comment.
3304 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
3305
3306 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
3307
3308 * jit.c (jit_reader_load_command): Interpret the jit reader name
3309 as an absolute path if it begins with a forward slash.
3310
3311 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
3312
3313 PR gdb/14550
3314
3315 * jit.c (finalize_symtab): Ensure that only the global block has a
3316 NULL superblock.
3317
3318 2013-01-17 Pedro Alves <palves@redhat.com>
3319
3320 * acinclude.m4: Include ../config/plugins.m4,
3321 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
3322 * Makefile.in (aclocal_m4_deps): Update.
3323 * aclocal.m4: Renegerate.
3324
3325 2013-01-16 Doug Evans <dje@google.com>
3326
3327 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
3328
3329 2013-01-16 Pedro Alves <palves@redhat.com>
3330 Tom Tromey <tromey@redhat.com>
3331
3332 PR cli/7221:
3333 * NEWS: Add "catch signal".
3334 * breakpoint.c (base_breakpoint_ops): No longer static.
3335 (bpstat_explains_signal): New function.
3336 (init_catchpoint): No longer static.
3337 (base_breakpoint_explains_signal): New function.
3338 (base_breakpoint_ops): Initialize new field.
3339 * breakpoint.h (enum bpstat_signal_value): New.
3340 (struct breakpoint_ops) <explains_signal>: New field.
3341 (bpstat_explains_signal): Remove macro, declare as function.
3342 (base_breakpoint_ops, init_catchpoint): Declare.
3343 * break-catch-sig.c: New file.
3344 * inferior.h (signal_catch_update): Declare.
3345 * infrun.c (signal_catch): New global.
3346 (handle_syscall_event): Update for change to
3347 bpstat_explains_signal.
3348 (handle_inferior_event): Likewise. Always handle random signals
3349 via bpstats.
3350 (signal_cache_update): Check signal_catch.
3351 (signal_catch_update): New function.
3352 (_initialize_infrun): Initialize signal_catch.
3353 * Makefile.in (SFILES): Add break-catch-sig.c.
3354 (COMMON_OBS): Add break-catch-sig.o.
3355
3356 2013-01-16 Tom Tromey <tromey@redhat.com>
3357
3358 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
3359 (print_one_catch_solib, print_one_catch_syscall)
3360 (print_one_catch_exec, print_one_exception_catchpoint): Emit
3361 "catch-type".
3362
3363 2013-01-16 Yao Qi <yao@codesourcery.com>
3364
3365 * printcmd.c (current_display_number): Make it static.
3366
3367 2013-01-16 Yao Qi <yao@codesourcery.com>
3368
3369 * infcmd.c (step_once): Don't check '!single_inst' as it was
3370 checked before.
3371
3372 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
3373
3374 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
3375
3376 2013-01-14 Tom Tromey <tromey@redhat.com>
3377
3378 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
3379 set command.
3380 * command.h (add_setshow_string_noescape_cmd): Update.
3381 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
3382 (complete_set_gnutarget): New function.
3383 (_initialize_core): Set the "set gnutarget" completer.
3384
3385 2013-01-14 Tom Tromey <tromey@redhat.com>
3386
3387 PR symtab/14442:
3388 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
3389 (c_type_print_modifier): Likewise.
3390 * dwarf2read.c (read_tag_restrict_type): New function.
3391 (read_type_die_1): Handle DW_TAG_restrict_type.
3392 * gdbtypes.c (make_restrict_type): New function.
3393 (recursive_dump_type): Handle TYPE_RESTRICT.
3394 * gdbtypes.h (enum type_flag_values): Renumber.
3395 (enum type_instance_flag_value): Add
3396 TYPE_INSTANCE_FLAG_RESTRICT.
3397 (TYPE_RESTRICT): New macro.
3398 (make_restrict_type): Declare.
3399
3400 2013-01-14 Tom Tromey <tromey@redhat.com>
3401
3402 PR symtab/14931:
3403 * psymtab.c (struct psymtab_state): New.
3404 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
3405 functions.
3406 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
3407 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
3408
3409 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
3410 Pedro Alves <palves@redhat.com>
3411
3412 PR remote/14786
3413
3414 * remote.c (remote_threads_info): Make a copy of the reply from
3415 qfThreadInfo and use that instead of rs->buf.
3416
3417 2013-01-14 Yao Qi <yao@codesourcery.com>
3418
3419 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
3420 (dbx_psymtab_to_symtab): Likewise.
3421 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
3422 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
3423 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
3424
3425 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3426
3427 * parse.c (parse_exp_in_context): New variable inner_chain. Call
3428 make_cleanup_restore_current_language. Call set_language. Move
3429 OLD_CHAIN and INNER_CHAIN cleanups.
3430 * utils.c (do_restore_current_language)
3431 (make_cleanup_restore_current_language): New functions.
3432 * utils.h (make_cleanup_restore_current_language): New declaration.
3433
3434 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3435
3436 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
3437 non-existing files.
3438
3439 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
3440 non-existing files if FILENAME is already absolute.
3441
3442 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
3443
3444 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
3445 fputs_filtered. Append trailing newline.
3446
3447 2013-01-11 Yao Qi <yao@codesourcery.com>
3448 Stan Shebs <stan@codesourcery.com>
3449
3450 * psymtab.c (init_psymbol_list): Clarify the comment.
3451
3452 2013-01-11 Yao Qi <yao@codesourcery.com>
3453
3454 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
3455 (update_dprintf_command_list): Assert that 'printf_line' is
3456 non-null. Remove condition check.
3457
3458 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3459
3460 Code cleanup.
3461 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
3462 type const char *.
3463 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
3464 const char *.
3465 * tui/tui-source.h (tui_source_is_displayed): Likewise.
3466
3467 2013-01-09 Anthony Green <green@moxielogic.com>
3468
3469 * cp-abi.c (cplus_print_vtable): Don't return value from void
3470 function.
3471 * ada-lang.c (re_set_catch_assert): Ditto.
3472
3473 2013-01-09 Doug Evans <dje@google.com>
3474
3475 * symfile.h (quick_symbol_functions): Delete member
3476 pre_expand_symtabs_matching. All uses removed.
3477 * dwarf2read.c (dw2_lookup_symbol): Implement.
3478 (dw2_do_expand_symtabs_matching): Delete.
3479 (dw2_pre_expand_symtabs_matching): Delete.
3480 (struct dw2_symtab_iterator): New type.
3481 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
3482 (dw2_expand_symtabs_for_function): Rewrite.
3483 (dwarf2_gdb_index_functions): Update.
3484 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
3485 (psym_functions): Update.
3486
3487 2013-01-09 Tom Tromey <tromey@redhat.com>
3488
3489 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
3490 * configure: Rebuild.
3491 * configure.ac: Add somread.o to the build if BFD has SOM
3492 support.
3493 * somread.c: Include som/aout.h, not syms.h.
3494 (som_symtab_read): Use som_external_symbol_dictionary_record.
3495 Unpack records manually.
3496 (_initialize_somread): Declare.
3497
3498 2012-01-08 Mike Frysinger <vapier@gentoo.org>
3499
3500 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
3501 Cast return_address to 64bits.
3502
3503 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
3504
3505 * printcmd.c: Remove define of function output_command.
3506 * tracepoint.c: Remove extern of function output_command.
3507 * valprint.h: (output_command): New extern.
3508
3509 2013-01-07 Tom Tromey <tromey@redhat.com>
3510
3511 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
3512 Remove.
3513 (objc_language_defn): Use c_printchar, c_printstr,
3514 c_emit_char.
3515
3516 2013-01-07 Tom Tromey <tromey@redhat.com>
3517
3518 PR cli/7719:
3519 * NEWS: Update.
3520 * ada-valprint.c (printstr, print_field_values): Remove
3521 "inspect_it" code.
3522 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
3523 code.
3524 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
3525 code.
3526 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
3527 * main.c (captured_main): Remove "epoch" argument.
3528 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
3529 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
3530 * p-valprint.c (pascal_object_print_value_fields): Remove
3531 "inspect_it" code.
3532 * printcmd.c (print_command_1): Remove 'inspect' argument.
3533 (print_command, call_command): Update.
3534 (inspect_command): Remove.
3535 (_initialize_printcmd): Make "inspect" an alias for "print".
3536 * top.c (epoch_interface): Remove.
3537 * top.h (epoch_interface): Remove.
3538 * valprint.c (user_print_options): Update.
3539 (print_converted_chars_to_obstack): Remove "inspect_it" code.
3540 * valprint.h (struct value_print_options) <inspect_it>: Remove
3541 field.
3542
3543 2013-01-04 Tom Tromey <tromey@redhat.com>
3544
3545 * valprint.h (read_string): Add 'extern'.
3546
3547 2013-01-07 Joel Brobecker <brobecker@adacore.com>
3548
3549 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
3550 used to decide whether to define darwin_read_dyld_info or not.
3551
3552 2013-01-03 Pierre Muller <muller@sourceware.org>
3553
3554 * main.c (relocate_gdb_directory): Avoid calling stat function
3555 if DIR is empty.
3556
3557 2013-01-03 Yao Qi <yao@codesourcery.com>
3558
3559 * psymtab.c (fixup_psymbol_section): Update declaration.
3560 (fixup_psymbol_section): Remove code returning value.
3561
3562 2013-01-03 Yao Qi <yao@codesourcery.com>
3563
3564 * symtab.h: Remove some out of date comments.
3565 (enum exception_event_kind): Move it ...
3566 * breakpoint.c: ... here.
3567
3568 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
3569
3570 PR gdb/14405
3571 * darwin-nat.c (darwin_read_dyld_info): Only build if
3572 TASK_DYLD_INFO_COUNT is defined.
3573 (darwin_xfer_partial): Call darwin_read_dyld_info only if
3574 TASK_DYLD_INFO_COUNT is defined.
3575
3576 2013-01-02 Tom Tromey <tromey@redhat.com>
3577
3578 * symfile.h (struct ecoff_debug_hack): Remove.
3579 * objfiles.c: Don't include mdebugread.h.
3580
3581 2013-01-02 Tom Tromey <tromey@redhat.com>
3582
3583 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
3584 * configure.ac: Check for Mach-O support in BFD. Update
3585 CONFIG_OBS.
3586 * configure: Rebuild.
3587
3588 2013-01-02 Tom Tromey <tromey@redhat.com>
3589
3590 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
3591 * configure.ac: Use GDB_AC_CHECK_BFD.
3592 * configure: Rebuild.
3593
3594 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
3595
3596 * MAINTAINERS: Update my email.
3597
3598 2013-01-01 Joel Brobecker <brobecker@adacore.com>
3599
3600 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
3601
3602 2013-01-01 Joel Brobecker <brobecker@adacore.com>
3603
3604 * rs6000-nat.c (bss_data_overlap): New function.
3605 (vmap_symtab): Use it to adjust the .bss section's offset.
3606
3607 2013-01-01 Joel Brobecker <brobecker@adacore.com>
3608
3609 Update year range in copyright notice of all files.
3610
3611 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
3612
3613 * top.c (print_gdb_version): Update copyright year.
3614
3615 For older changes see ChangeLog-2012.
3616 \f
3617 Local Variables:
3618 mode: change-log
3619 left-margin: 8
3620 fill-column: 74
3621 version-control: never
3622 coding: utf-8
3623 End: