more add_target removals
[external/binutils.git] / gdb / ChangeLog
1 2013-08-05  Tom Tromey  <tromey@redhat.com>
2
3         * aix-thread.c (_initialize_aix_thread): Use
4         complete_target_initialization.
5         * bsd-uthread.c (_initialize_bsd_uthread): Use
6         complete_target_initialization.
7         * dec-thread.c (_initialize_dec_thread): Use
8         complete_target_initialization.
9         * ravenscar-thread.c (_initialize_ravenscar): Use
10         complete_target_initialization.
11         * sol-thread.c (_initialize_sol_thread): Use
12         complete_target_initialization.
13         * spu-multiarch.c (_initialize_spu_multiarch): Use
14         complete_target_initialization.
15
16 2013-08-05  Tom Tromey  <tromey@redhat.com>
17
18         * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
19         * ada-lang.c (ada_lookup_simple_minsym): Return
20         bound_minimal_symbol.
21         * ada-lang.h (ada_lookup_simple_minsym): Update.
22         * c-exp.y (variable): Use lookup_bound_minimal_symbol.
23         * f-exp.y (variable): Use lookup_bound_minimal_symbol.
24         * go-exp.y (variable): Use lookup_bound_minimal_symbol.
25         * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
26         * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
27         * minsyms.c (msymbol_objfile): Remove.
28         (lookup_minimal_symbol_internal): New function, from
29         lookup_minimal_symbol.
30         (lookup_minimal_symbol): Rewrite using
31         lookup_minimal_symbol_internal.
32         (lookup_bound_minimal_symbol): New function.
33         * minsyms.h (msymbol_objfile): Remove.
34         (lookup_bound_minimal_symbol): Declare.
35         * p-exp.y (variable): Use lookup_bound_minimal_symbol.
36         * parse.c (write_exp_msymbol): Change parameter to a
37         bound_minimal_symbol.
38         (write_dollar_variable): Use lookup_bound_minimal_symbol.
39         * parser-defs.h (write_exp_msymbol): Update.
40         * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
41         * symfile.c (simple_read_overlay_table): Use
42         lookup_bound_minimal_symbol.
43         * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
44         (search_symbols): Likewise.
45         (print_msymbol_info): Take a bound_minimal_symbol argument.
46         (symtab_symbol_info, rbreak_command): Update.
47         * symtab.h (struct symbol_search) <msymbol>: Change type
48         to bound_minimal_symbol.
49         * valops.c (find_function_in_inferior): Use
50         lookup_bound_minimal_symbol.
51         * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
52
53 2013-08-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
54
55         Code cleanup.
56         * remote.c (cleanup_sigint_signal_handler): Rename the declaration
57         to ...
58         (async_cleanup_sigint_signal_handler): ... this.
59         (initialize_sigint_signal_handler): Remove declaration.
60         (handle_remote_sigint): Rename the declaration to ...
61         (async_handle_remote_sigint): ... this.
62         (handle_remote_sigint_twice): Rename the declaration to ...
63         (async_handle_remote_sigint_twice): ... this.
64         (async_remote_interrupt, async_remote_interrupt_twice)
65         (remote_interrupt): Remove the declarations.
66         (remote_interrupt_twice): Rename the declaration ...
67         (sync_remote_interrupt_twice): ... this.
68         (sigint_remote_twice_token): Rename the variable to ...
69         (async_sigint_remote_twice_token): ... this.
70         (sigint_remote_token): Rename the variable to ...
71         (async_sigint_remote_token): ... this.
72         (initialize_sigint_signal_handler): Rename the function to ...
73         (async_initialize_sigint_signal_handler): ... this.  Update the name
74         inside.
75         (handle_remote_sigint): Rename the function to ...
76         (async_handle_remote_sigint): ... this.  Update the names inside.
77         (handle_remote_sigint_twice): Rename the function to ...
78         (async_handle_remote_sigint_twice): ... this.  Update the names inside.
79         (cleanup_sigint_signal_handler): Rename the function to ...
80         (async_cleanup_sigint_signal_handler): ... this.
81         (remote_interrupt): Rename the function to ...
82         (sync_remote_interrupt): this.  Update the names inside.
83         (remote_interrupt_twice): Rename the function to ...
84         (sync_remote_interrupt_twice): this.  Update the names inside.
85         (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
86         (_initialize_remote): Update the names inside.
87
88 2013-08-02  Tom Tromey  <tromey@redhat.com>
89
90         PR symtab/15719:
91         * breakpoint.c (update_watchpoint, watchpoint_check)
92         (watch_command_1): Update.
93         * eval.c (fetch_subexp_value): Add "preserve_errors"
94         parameter.
95         * ppc-linux-nat.c (check_condition): Update.
96         * value.h (fetch_subexp_value): Update.
97
98 2013-08-02  Andrew Burgess  <aburgess@broadcom.com>
99
100         * mi/mi-interp.c (mi_interpreter_resume): Remove call to
101         add_file_handler.
102
103 2013-08-01  Doug Evans  <dje@google.com>
104
105         PR symtab/15691
106         * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
107         (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
108         Add assert of sig_entry->dwo_unit == NULL.
109         (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
110         had already been read.
111         (read_signatured_type): Set per_cu.tu_read.
112
113         PR symtab/15695
114         * valops.c (value_struct_elt): Add missing call to check_typedef.
115         (value_find_oload_method_list): Ditto.
116
117         * symtab.c (do_free_search_symbols_cleanup): Change arg to,
118         effectively, struct symbol_search **.
119         (make_cleanup_free_search_symbols): Change arg to struct
120         symbol_search **.  All callers updated.
121         (compare_search_syms): Compare symtab file name and block as well.
122         (search_symbols_equal): New function.
123         (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
124         New args new_head, new_tail.  Result is now void.  Remove dups after
125         sorting the symbols.
126         (search_symbols): Sort all found symbols once, after all have been
127         found, and remove duplicates.  Simplify cleanup tracking of result.
128         * symtab.h (make_cleanup_free_search_symbols): Update prototype.
129
130         Further workarounds for binutils/15021.
131         * dwarf2read.c (recursively_compute_inclusions): Change type of result
132         parameter to VEC (symtab_ptr) **.  New parameter all_type_symtabs.
133         Watch for duplicate symtabs coming from type units.
134         (compute_symtab_includes): Update call to
135         recursively_compute_inclusions. Build vector of included symtabs
136         instead of per_cus.
137         * symtab.h (symtab_ptr): New typedef.
138         (DEF_VEC_P (symtab_ptr)): New VEC type.
139         * linespec.c (symtab_p): Delete.  All uses updated to use symtab_ptr
140         instead.
141
142 2013-08-01  Andrew Burgess  <aburgess@broadcom.com>
143
144         * cli/cli-script.c (script_from_file): Remove use of
145         error_pre_print.
146         * main.c (captured_main): Remove use of error_pre_print and
147         quit_pre_print.
148         * utils.c (error_pre_print, quit_pre_print): Remove.
149         * utils.h (error_pre_print, quit_pre_print): Likewise.
150
151 2013-08-01  Yao Qi  <yao@codesourcery.com>
152
153         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
154         with mi_getopt.
155         (mi_cmd_stack_list_variables): Likewise.
156
157 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
158
159         * exceptions.c (deprecated_throw_reason): Remove.
160         * exceptions.h (deprecated_throw_reason): Remove.
161
162 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
163
164         * remote-mips.c (mips_error): Replace use of
165         deprecated_throw_reason with throw_verror.  Use the error message
166         passed to mips_error as the error message for throw_verror.
167
168 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
169
170         * monitor.c (monitor_interrupt_query): Replace use of
171         deprecated_throw_reason with quit.
172         * nto-procfs.c (interrupt_query): Likewise.
173         * remote-fileio.c (remote_fileio_sig_exit): Likewise.
174         * remote-mips.c (mips_kill): Likewise.
175         * remote.c (interrupt_query): Likewise.
176
177 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
178
179         * utils.c (internal_verror): Replace use of deprecated_throw_reason
180         with call to fatal.
181
182 2013-07-31  Pedro Alves  <pedro@codesourcery.com>
183             Yao Qi  <yao@codesourcery.com>
184
185         * tracepoint.c (trace_dump_command): Select the current frame.
186
187 2013-07-30  Doug Evans  <dje@google.com>
188
189         * dwarf2read.c (process_queue): Add type signature to debug output.
190
191 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
192
193         * value.c (value_fetch_lazy): Mark optimized out values as such
194         rather than raising an error.
195
196 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
197
198         * value.c (value_fetch_lazy): Ensure parent value is not lazy
199         before checking which bits of the parent, not the child, value are
200         valid.
201
202 2013-07-30  Muhammad Bilal  <mbilal@codesorcery.com>
203
204         PR gdb/15715
205         * top.c: Include "filenames.h".
206         (set_history_filename): New function.
207         (init_main): Install it as set hook of the "set history filename"
208         command.
209
210 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
211
212         * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
213         attribute parameter.
214         (dwarf2_const_value_data): Constify struct attribute parameter.
215         (dwarf2_const_value): Constify struct attribute parameter.
216         (dwarf2_const_value_attr): Constify struct attribute parameter.
217         (lookup_die_type): Constify struct attribute parameter.
218         (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
219         (follow_die_ref_or_sig): Constify struct attribute parameter.
220         (follow_die_ref): Constify struct attribute parameter.
221         (follow_die_sig): Constify struct attribute parameter.
222         (get_DW_AT_signature_type): Constify struct attribute parameter.
223         (get_type_unit_group): Constify struct attribute parameter.
224         (fill_in_loclist_baton): Constify struct attribute parameter.
225         (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
226         (type_unit_group): Constify struct attribute parameter.
227
228 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
229
230         * dwarf2read.c (attr_form_is_block): Make argument const.
231         (attr_form_is_section_offset): Make argument const.
232         (attr_form_is_constant): Make argument const.
233         (attr_form_is_ref): Make argument const.
234
235 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
236
237         * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
238         All uses updated.
239         (attr_form_is_ref): Moved below attr_form_is_constant.
240
241 2013-07-29  Doug Evans  <dje@google.com>
242
243         * main.c (captured_command_loop): Tweak comment.
244
245         * target.c (target_async_permitted_1): Fix comment.
246
247         * symtab.c (iterate_over_some_symtabs): Add comment.
248
249         * symtab.c (iterate_over_some_symtabs): Fix indentation.
250
251 2013-07-27  Yao Qi  <yao@codesourcery.com>
252
253         * NEWS: Mention that GDBserver now supports hardware
254         watchpoints on the MIPS GNU/Linux target.
255
256 2013-07-27  Yao Qi  <yao@codesourcery.com>
257
258         * Makefile.in (HFILES_NO_SRCDIR): Add
259         common/mips-linux-watch.h.
260         (mips-linux-watch.o): New rule.
261         * common/mips-linux-watch.c: New.
262         * common/mips-linux-watch.h: New.
263         * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
264         * mips-linux-nat.c: Include mips-linux-watch.h.
265         (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
266         to common/mips-linux-watch.h.
267         (MAX_DEBUG_REGISTER): Likewise.
268         (enum pt_watch_style): Likewise.
269         (struct mips32_watch_regs): Likewise.
270         (struct mips64_watch_regs): Likewise.
271         (struct pt_watch_regs): Likewise.
272         (struct mips_watchpoint): Likewise.
273         (mips_linux_watch_get_irw_mask): Move to
274         common/mips-linux-watch.c.
275         (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
276         (mips_linux_watch_get_watchlo): Likewise.
277         (mips_linux_watch_set_watchlo): Likewise.
278         (mips_linux_watch_get_watchhi): Likewise.
279         (mips_linux_watch_set_watchhi): Likewise.
280         (mips_linux_read_watch_registers): Likewise.
281         (mips_linux_watch_type_to_irw): Likewise.
282         (mips_linux_stopped_data_address, fill_mask): Likewise.
283         (mips_linux_watch_try_one_watch): Likewise.
284         (mips_linux_watch_populate_regs): Likewise.
285
286 2013-07-27  Yao Qi  <yao@codesourcery.com>
287
288         * mips-linux-nat.c (get_irw_mask): Rename to ...
289         (mips_linux_watch_get_irw_mask): ... this.  Rename parameter
290         'set' to 'n'.  Update function comment.  All callers changed.
291         (get_reg_mask): Rename parameter 'set' to 'n'.  Update
292         function comment.  All callers changed.
293         (get_num_valid): Rename to ...
294         (mips_linux_watch_get_num_valid): ... this.  Rename parameter
295         'set' to 'n'.  Update function comment.  All callers changed.
296         (get_watchlo): Rename to ...
297         (mips_linux_watch_get_watchlo): ... this.  Rename parameter
298         'set' to 'n'.  Update function comment.  All callers changed.
299         (set_watchlo): Rename to ...
300         (mips_linux_watch_set_watchlo): ... this.  Rename parameter
301         'set' to 'n'.  Update function comment.  All callers changed.
302         (get_watchhi): Rename to ...
303         (mips_linux_watch_get_watchhi): ... this.  Update function
304         comment.  All callers changed.
305         (set_watchhi): Rename to ...
306         (mips_linux_watch_set_watchhi): ... this.  Update function
307         comment.  All callers changed.
308         (mips_linux_read_watch_registers): Update function comment.
309         Add new parameters 'lwpid', 'watch_readback', and
310         'watch_readback_valid'.  Update.
311         (type_to_irw): Rename to ...
312         (mips_linux_watch_type_to_irw): ... this.  Update function
313         comment.  All callers changed.
314         (fill_mask): Update function comment.
315         (try_one_watch): Rename to ...
316         (mips_linux_watch_try_one_watch): ... this.  Change the type
317         of parameter 'irw' from 'unsigned' to 'uint32_t'.
318         (populate_regs_from_watches): Rename to ...
319         (mips_linux_watch_populate_regs): ... this.  Add parameter
320         'current_watches'.  All callers changed.
321
322 2013-07-27  Yao Qi  <yao@codesourcery.com>
323
324         * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
325         the code.
326         (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
327         (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
328         (struct pt_watch_regs): Likewise.
329         [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
330         [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
331         [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
332         [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
333         [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
334
335 2013-07-27  Yao Qi  <yao@codesourcery.com>
336
337         * breakpoint.h: Include break-common.h.
338         (enum target_hw_bp_type): Move to ...
339         * common/break-common.h: ... here.  New.
340
341 2013-07-26  Cyril Nikolaev  <cyril@nichtverstehen.de>
342
343         * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
344         process group regardless of having tty on stdin.
345
346 2013-07-25  Doug Evans  <dje@google.com>
347
348         * linux-fork.h (detach_fork): Delete.
349
350 2013-07-25  Tom Tromey  <tromey@redhat.com>
351
352         PR remote/15256, PR remote/15266:
353         * bfd-target.c (target_bfd_reopen): Initialize to_magic.
354         * monitor.c (monitor_detach): Use unpush_target.
355         * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
356         * remote-mips.c (mips_detach): Use unpush_target.  Don't
357         call mips_close.
358         * remote-sim.c (gdbsim_detach): Use unpush_target.
359         * target.c (pop_target): Remove.
360         (pop_all_targets_above): Don't call target_close.
361         (target_close): Assert that the target is unpushed.
362         * target.h (pop_target): Don't declare.
363         * tracepoint.c (tfile_open): Use unpush_target.
364
365 2013-07-25  Tom Tromey  <tromey@redhat.com>
366
367         * linux-thread-db.c (init_thread_db_ops): Call
368         complete_target_initialization.
369         (_initialize_thread_db): Don't call add_target.
370         * target.c (complete_target_initialization): New function.
371         (add_target_with_completer): Call it.
372         * target.h (complete_target_initialization): Declare.
373
374 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
375
376         * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
377         * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
378         (HPPANBSD_SIZEOF_GREGS): New define.
379         (hppaobsd_supply_gregset): Handle additional registers.
380         * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
381         we provide more registers now.
382         (hppabsd_supply_gregset): Supply additional registers.
383         (hppabsd_collect_gregset): Collect additional registers.
384
385 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
386
387         * hppabsd-tdep.c: Include "dwarf2-frame.h".
388         (hppabsd_dwarf2_frame_init_reg): New function.
389         (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
390
391 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
392
393         * mi/mi-main.c (output_register): Make MI 'r' format use standard
394         'z' format code.  Remove error for optimized out values, standard
395         code will handle these fine.
396
397 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
398
399         * NEWS: Mention new 'z' formatter.
400         * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
401         (_initialize_printcmd): Mention 'z' formatter in help text of the
402         'x' command.
403
404 2013-07-24  Maciej W. Rozycki  <macro@codesourcery.com>
405
406         * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
407         formatting.
408
409 2013-07-24  Sergio Durigan Junior  <sergiodj@redhat.com>
410
411         * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
412         interface can evaluate arguments.  Fallback to the old mode if it
413         cannot.
414         (create_exception_master_breakpoint): Likewise.
415         * elfread.c (elf_can_evaluate_probe_arguments): New function.
416         (struct sym_probe_fns elf_probe_fns): Export function above to the
417         probe interface.
418         * probe.c (can_evaluate_probe_arguments): New function.
419         * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
420         function pointer.
421         (can_evaluate_probe_arguments): New function prototype.
422         * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
423         probe interface can evaluate arguments.  Fallback to the old mode
424         if it cannot.
425         * stap-probe.c (stap_get_probe_argument_count): Check if probe
426         interface can evaluate arguments.  Warning the user if it cannot.
427         (stap_can_evaluate_probe_arguments): New function.
428         (struct probe_ops stap_probe_ops): Export function above to the
429         probe interface.
430         * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
431         New function pointer.
432
433 2013-07-24  Luis Machado  <lgustavo@codesourcery.com>
434
435         * Makefile.in (SFILES): Add common/target-common.c.
436         Add common/target-common.h to headers.
437         (COMMON_OBS): Add target-common.o.
438         (target-common.o): New target.
439         * linux-nat.h (resume_kind): Move to common/target-common.h.
440         * target.c (target_waitstatus_to_string): Move to
441         common/target-common.c.
442         * target.h: Include target-common.h.
443         (target_waitkind): Move to common/target-common.h.
444         (target_waitstatus): Likewise.
445         (TARGET_WNOHANG): Likewise.
446         * common/target-common.c: New file.
447         * common/target-common.h: New file.
448
449 2013-07-24  Doug Evans  <dje@google.com>
450
451         * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
452         a warning.
453
454 2013-07-23  Yao Qi  <yao@codesourcery.com>
455
456         * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
457         parameter 'gdbarch'.
458         (i386_stack_tramp_frame_sniffer): Caller update.
459         * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
460         parameter 'gdbarch' and 'target'.
461         (i386_linux_core_read_description): Caller update.
462         * amd64-linux-tdep.c (amd64_linux_core_read_description):
463         Likewise.
464         * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
465         declaration.
466
467 2013-07-23  Tom Tromey  <tromey@redhat.com>
468
469         * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
470         2013-07-22.
471
472 2013-07-22  Doug Evans  <dje@google.com>
473
474         * exec.h (remove_target_sections): Delete arg abfd.
475         * exec.c (exec_close): Update call to remove_target_sections.
476         (remove_target_sections): Delete arg abfd.
477         * solib.c (update_solib_list): Ditto.
478         (reload_shared_libraries_1): Ditto.
479         (clear_solib): Ditto, and unconditionally call remove_target_sections.
480         * target.h (struct target_section): Rename key to owner.
481         All uses updated.
482
483 2013-07-22  Tom Tromey  <tromey@redhat.com>
484
485         * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
486
487 2013-07-22  Tom Tromey  <tromey@redhat.com>
488
489         * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
490         Simplify cleanup handling.
491
492 2013-07-22  Tom Tromey  <tromey@redhat.com>
493
494         * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
495         on all return paths.
496
497 2013-07-22  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
498
499         * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
500         (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
501         DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
502
503 2013-07-22  Phil Muldoon  <pmuldoon@redhat.com>
504
505         * top.c (print_gdb_version): Add help, apropos description and
506         url to online documentation.
507
508 2013-07-19  Hui Zhu  <hui@codesourcery.com>
509
510         PR gdb/15692
511         * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
512
513 2013-07-19  Yao Qi  <yao@codesourcery.com>
514
515         * target.c (update_current_target): Change the default action
516         of 'to_traceframe_info' from tcomplain to return_zero.
517         * target.h (struct target_ops) <to_traceframe_info>: Add more
518         comments.
519         * valops.c (read_value_memory): Call
520         traceframe_available_memory unconditionally.
521
522 2013-07-18  Yao Qi  <yao@codesourcery.com>
523
524         * coffread.c (coff_symfile_read): Iterate over minimal symbols,
525         if the name is prefixed by "__imp_" or "_imp_", look for minimal
526         symbol without prefix.  If found, set its type to
527         'mst_solib_trampoline'.
528
529 2013-07-17  Doug Evans  <dje@google.com>
530
531         * NEWS: Mention "set print raw frame-arguments".
532         * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
533         * stack.c (print_raw_frame_arguments): New static global.
534         (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
535         (_initialize_stack): New command "set/show print raw frame-arguments".
536         * valprint.c (setprintrawlist, showprintrawlist): New globals.
537         (set_print_raw, show_print_raw): New functions.
538         (_initialize_valprint): New prefix command "set/show print raw".
539         * valprint.h (value_print_options): Improve comments.
540
541         * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
542         of all *list variables.
543
544         * gdbcmd.h (togglelist): Delete.
545         * cli/cli-cmds.c (togglelist): Delete.
546         (init_cmd_lists): Update.
547         * cli/cli-cmds.h (togglelist): Delete.
548
549 2013-07-17  Tom Tromey  <tromey@redhat.com>
550
551         * dwarf2read.c (dwarf2_per_objfile_free): Clear
552         dwarf2_per_objfile.
553
554 2013-07-16  Doug Evans  <dje@google.com>
555
556         * nto-tdep.c (nto_relocate_section_addresses): Update,
557         target_section.bfd deleted.
558         * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
559         * s390-tdep.c (s390_load): Ditto.
560         * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
561
562 2013-07-16  Andrew Burgess  <aburgess@broadcom.com>
563
564         * common/format.c (parse_format_string): Add checks for NULL
565         character before calling strchr.
566
567 2013-07-16  Doug Evans  <dje@google.com>
568
569         * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
570         temp_pathname argument.
571         * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
572         when opening the file fails.
573
574         * target.h (struct target_section): Delete member bfd.
575         All users updated to use the_bfd_section->owner instead.
576         * exec.c (add_to_section_table): Assert bfd is expected value.
577         Remove initialization of target_section.bfd.
578         (remove_target_sections): Update.
579         (section_table_available_memory): Update.
580         (section_table_xfer_memory_partial): Update.
581         (print_section_info): Update.
582         (exec_set_section_address): Update.
583         * record-full.c (record_full_core_xfer_partial): Update.
584         * solib-svr4.c (svr4_relocate_section_addresses): Update.
585         * solib-target.c (solib_target_relocate_section_addresses): Update.
586         * symfile.c (build_section_addr_info_from_section_table): Update.
587         * target.c (memory_xfer_live_readonly_partial): Update.
588         (memory_xfer_partial_1): Update.
589
590 2013-07-15  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
591
592         * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
593         now available for embedded (BookE) and server (BookS) processors,
594         correct mentions of 'booke' and adjust comments accordingly in order to
595         avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
596         (have_ptrace_booke_interface): Rename function and variable
597         'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
598         Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
599         (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
600         'hwdebug_point_cmp'. Update all uses.
601         (booke_find_thread_points_by_tid): Rename function
602         'booke_find_thread_points_by_tid' to
603         'hwdebug_find_thread_points_by_tid'. Update all uses.
604         (booke_insert_point): Rename function 'booke_insert_point' to
605         'hwdebug_insert_point'. Update all uses.
606         (booke_remove_point): Rename function 'booke_remove_point' to
607         'hwdebug_remove_point'. Update all uses.
608
609 2013-07-15  Maciej W. Rozycki  <macro@codesourcery.com>
610
611         * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
612         numbers with enum values.
613
614 2013-07-15  Ali Anwar  <ali_anwar@codesourcery.com>
615
616         PR threads/13217
617         * thread.c (thread_apply_all_command): Check for valid threads
618         and thread count.
619         (thread_array_cleanup): New struct.
620         (set_thread_refcount): New function.
621
622 2013-07-11  Andrew Burgess  <aburgess@broadcom.com>
623
624         * infcmd.c (default_print_one_register_info): Reuse function
625         print_hex_chars.
626
627 2013-07-10  Tom Tromey  <tromey@redhat.com>
628
629         * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
630         (ada-exp.o): New target.
631
632 2013-07-10  Sergio Durigan Junior  <sergiodj@redhat.com>
633
634         * mt-tdep.c (mt_registers_info): Call
635         get_no_prettyformat_print_options instead of
636         get_raw_print_options (regression by last patch from Doug
637         Evans).
638
639 2013-07-09  Pedro Alves  <palves@redhat.com>
640
641         Checked in by Joel Brobecker  <brobecker@adacore.com>.
642         * ada-lang.c (coerce_unspec_val_to_type): Use
643         value_optimized_out_const.
644         * value.c (value_optimized_out_const): New function.
645         * value.h (value_optimized_out_const): New declaration.
646
647 2013-07-09  Doug Evans  <dje@google.com>
648
649         * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
650         Enum values rename as well.  All uses updated.
651         * valprint.h (value_print_options): Rename member pretty to
652         pretty format.  Rename member prettyprint_arrays to
653         prettyformat_arrays.  Rename member prettyprint_structs to
654         prettyformat_structs.  All uses updated.
655         (get_no_prettyformat_print_options): Renamed from
656         get_raw_print_options.
657         * valprint.c (get_no_prettyformat_print_options): Renamed from
658         get_raw_print_options.  All callers updated.
659         (show_prettyformat_structs): Renamed from show_prettyprint_structs.
660         All callers updated.
661         (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
662         All callers updated.
663         (_initialize_valprint): Improve help text for "set print pretty" and
664         "set print arrays".
665
666 2013-07-09  Andrew Burgess  <aburgess@broadcom.com>
667
668         * value.c (value_bits_valid): Revert previous change, and change
669         by Pedro on 2013-07-04, due to regressions in
670         gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
671
672 2013-07-08  Andrew Burgess  <aburgess@broadcom.com>
673             Pedro Alves  <palves@redhat.com>
674
675         * value.c (value_bits_valid): If the value is not lval_computed
676         or has no check validity handler then the answer is the
677         optimized_out flag, otherwise defer to the handler.
678
679 2013-07-06  Eli Zaretskii  <eliz@gnu.org>
680
681         * top.c (print_gdb_configuration): Explain in output of
682         --configuration what does "relocatable" mean.
683
684         * main.c (print_gdb_help): Regroup options in the --help text.
685         See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
686         the relevant discussions.
687
688 2013-07-06  Yao Qi  <yao@codesourcery.com>
689
690         * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
691         Remove parameter 'lsal'.
692         * breakpoint.c (create_breakpoint): Move local variable 'lsal'
693         to inner block.  Caller update.
694         (base_breakpoint_create_breakpoints_sal): Update.
695         (bkpt_create_breakpoints_sal): Likewise.
696         (tracepoint_create_breakpoints_sal): Likewise.
697         (strace_marker_create_breakpoints_sal): Get 'lsal' from the
698         element 0 of vector 'canonical->sals'.
699
700 2013-07-05  Luis Machado  <lgustavo@codesourcery.com>
701
702         * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
703         register number instead of the pseudo register one.
704         (rs6000_dwarf2_reg_to_regnum): Likewise.
705
706 2013-07-04  Pedro Alves  <palves@redhat.com>
707
708         * findvar.c (value_of_register): Use allocate_optimized_out_value
709         if the register has been optimized out, instead of
710         set_value_optimized_out.
711         * frame-unwind.c (frame_unwind_got_optimized): Use
712         allocate_optimized_out_value.
713
714 2013-07-04  Pedro Alves  <palves@redhat.com>
715
716         * value.c (value_bits_valid): If the value is not lval_computed,
717         or doesn't have a check_validity hook, assume the value is entirely
718         valid.
719
720 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
721
722         * stack.c (read_frame_arg): No longer fetch lazy values.
723         * value.c (value_optimized_out): If the value is not already
724         marked optimized out, and is lazy then fetch it.
725         (value_primitive_field): Move optimized out check to later in the
726         function, after we have loaded any lazy values.
727         (value_fetch_lazy): Use optimized out flag directly rather than
728         calling optimized_out method.
729
730 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
731
732         * valops.c: Don't include "user-regs.h".
733         (value_fetch_lazy): Moved to value.c.
734         * value.c: Include "user-regs.h".
735         (value_fetch_lazy): Moved from valops.c.
736
737 2013-07-04  Yao Qi  <yao@codesourcery.com>
738
739         Revert:
740         2013-06-27  Yao Qi  <yao@codesourcery.com>
741
742         * common/create-version.sh: Update comments.  Handle the case
743         that TARGET_ALIAS is empty.
744
745 2013-07-03  Pedro Alves  <palves@redhat.com>
746
747         * Makefile.in (config.status): Depend on development.sh.
748         (aclocal_m4_deps): Add libmcheck.m4.
749         * acinclude.m4: Include libmcheck.m4.
750         * configure.ac: Source development.sh instead of setting
751         'development' here.  --enable-libmcheck/--disable-libmcheck code
752         factored out to GDB_AC_LIBMCHECK.  Run it.
753         * development.sh: New file.
754         * libmcheck.m4: New file.
755         * configure: Regenerate.
756
757 2013-07-02  Tom Tromey  <tromey@redhat.com>
758
759         * contrib/ari/update-web-ari.sh: Update for version.in change.
760
761 2013-07-02  Tom Tromey  <tromey@redhat.com>
762
763         * common/ptid.h: Comment fixes.
764
765 2013-07-01  Tom Tromey  <tromey@redhat.com>
766
767         * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
768         .gnu_debugaltlink not found.  Use bfd_get_alt_debug_link_info.
769         (dwarf2_read_index, create_all_comp_units): Update.
770
771 2013-07-01  Tom Tromey  <tromey@redhat.com>
772
773         * configure.ac (build_warnings): Add -Wold-style-definition.
774         * configure: Rebuild.
775         * machoread.c (_initialize_machoread): Use "(void)".
776         * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
777         use "(void)".
778
779 2013-07-01  Tom Tromey  <tromey@redhat.com>
780
781         * configure.ac (build_warnings): Add -Wold-style-declaration.
782         * configure: Rebuild.
783         * dsrec.c (make_srec): Use "static const", not "const static".
784         * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
785         not "const static".
786         * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
787         Use "static const", not "const static".
788         * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
789         not "const static".
790         * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
791         not "const static".
792         * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
793         not "const static".
794         * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
795         not "const static".
796         (v850_dbtrap_breakpoint_from_pc): Likewise.
797         * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
798         not "const static".
799
800 2013-07-01  Tom Tromey  <tromey@redhat.com>
801
802         * configure.ac (build_warnings): Add -Wmissing-parameter-type.
803         * configure: Rebuild.
804
805 2013-07-01  Pedro Alves  <palves@redhat.com>
806
807         * defs.h: Include "pathmax.h".
808         * utils.c: Don't include sys/param.h.
809         (gdb_realpath): Remove code that checks for MAXPATHLEN.
810         * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
811         instead of MAXPATHLEN.
812         * solib-sunos.c: Don't include sys/param.h.
813         * xcoffread.c: Don't include sys/param.h.
814         * bsd-kvm.c: Don't include sys/param.h.
815         * darwin-nat.c: Don't include sys/param.h.
816         (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
817         * darwin-nat-info.c: Don't include sys/param.h.
818         * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
819         MAXPATHLEN.
820         * i386obsd-nat.c: Don't include sys/param.h.
821         * inf-child.c: Don't include sys/param.h.
822         (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
823         * linux-fork.c: Don't include sys/param.h.
824         (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
825         * linux-nat.c: Don't include sys/param.h.
826         (linux_child_pid_to_exec_file, linux_proc_pending_signals)
827         (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
828         * m68klinux-nat.c: Don't include sys/param.h.
829         * nbsd-nat.c: Don't include sys/param.h.
830         (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
831         * ppc-linux-nat.c: Don't include sys/param.h.
832         * rs6000-nat.c: Don't include sys/param.h.
833         * spu-linux-nat.c. Don't include sys/param.h.
834         * windows-nat.c: Don't include sys/param.h.
835         * xtensa-linux-nat.c: Don't include sys/param.h.
836         * config/i386/nm-fbsd.h: Don't include sys/param.h.
837
838 2013-07-01  Pedro Alves  <palves@redhat.com>
839
840         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
841         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
842         * gnulib/aclocal.m4: Regenerate.
843         * gnulib/config.in: Regenerate.
844         * gnulib/configure: Regenerate.
845         * gnulib/import/pathmax.h: New file.
846         * gnulib/import/Makefile.am: Regenerate.
847         * gnulib/import/Makefile.in: Regenerate.
848         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
849         * gnulib/import/m4/gnulib-comp.m4: Regenerate.
850         * gnulib/import/m4/pathmax.m4: New file.
851
852 2013-07-01  Pedro Alves  <palves@redhat.com>
853
854         * configure.ac (GDBINIT): Define, depending on host.
855         * go32-nat.c (init_go32_ops): Don't override gdbinit here.
856         * top.c (PATH_MAX): Delete fallback definition.
857         (GDBINIT_FILENAME): Delete.
858         (gdbinit): Reimplement as const char array set to the GDBINIT
859         string constant.
860         * top.h (gdbinit): Make const.
861         * configure, config.in: Regenerate.
862
863 2013-07-01  Pedro Alves  <palves@redhat.com>
864
865         * cli/cli-cmds.c (source_script): Make 'file' parameter const.
866         * cli/cli-cmds.h (source_script): Likewise.
867         * exceptions.c (catch_command_errors_const): New function.
868         * exceptions.h (catch_command_errors_const): Declare.
869         * main.c (get_init_files): Make parameters const, and adjust.
870         (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
871         'local_gdbinit' locals const.  Adjust to use
872         catch_command_errors_const.
873         (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
874         'local_gdbinit' locals const.
875
876 2013-07-01  Pedro Alves  <palves@redhat.com>
877
878         * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
879         (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
880         * tracepoint.c: Don't check HAVE_UNISTD_H before including
881         <unistd.h>.
882
883 2013-07-01  Pedro Alves  <palves@redhat.com>
884
885         Import the "unistd" gnulib module.
886         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
887         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
888         import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
889         import/m4/unistd_h.m4.
890         * gnulib/aclocal.m4: Renenerate.
891         * gnulib/config.in: Renenerate.
892         * gnulib/configure: Renenerate.
893         * gnulib/import/Makefile.am: Renenerate.
894         * gnulib/import/Makefile.in: Renenerate.
895         * gnulib/import/m4/gnulib-cache.m4: Renenerate.
896         * gnulib/import/m4/gnulib-comp.m4: Renenerate.
897         * gnulib/import/m4/off_t.m4: New file.
898         * gnulib/import/m4/ssize_t.m4: New file.
899         * gnulib/import/m4/sys_types_h.m4: New file.
900         * gnulib/import/m4/unistd_h.m4: New file.
901         * gnulib/import/sys_types.in.h: New file.
902         * gnulib/import/unistd.c: New file.
903         * gnulib/import/unistd.in.h: New file.
904
905 2013-07-01  Pedro Alves  <palves@redhat.com>
906
907         * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
908         defined instead of checking HAVE_UNISTD_H.
909
910 2013-07-01  Pedro Alves  <palves@redhat.com>
911
912         Reimport gnulib from scratch.
913         * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
914         import/m4/onceonly.m4.
915         * gnulib/aclocal.m4: Renegerate.
916         * gnulib/config.in: Renegerate.
917         * gnulib/configure: Renegerate.
918         * gnulib/import/Makefile.in: Renegerate.
919         * gnulib/import/extra/update-copyright: Renegerate.
920         * gnulib/import/m4/onceonly.m4: Delete.
921
922 2013-07-01  Pedro Alves  <palves@redhat.com>
923
924         * tui/tui-regs.c (pagination_enabled): Delete declaration.
925
926 2013-06-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
927
928         Code cleanup.
929         * remote.c (async_remote_interrupt_twice): Make it static.
930         * remote.h (async_remote_interrupt_twice): Remove the declaration.
931
932 2013-06-29  Sergio Durigan Junior  <sergiodj@redhat.com>
933
934         * ia64-linux-tdep.c: Include <ctype.h>.
935         (ia64_linux_stap_is_single_operand): New function.
936         (ia64_linux_init_abi): Initialize SystemTap related attributes.
937
938 2013-06-28  Tom Tromey  <tromey@redhat.com>
939
940         * Makefile.in (version.c): Use version.in, not
941         common/version.in.
942         * common/create-version.sh: Likewise.
943         * common/version.in: Move...
944         * version.in: ...here.
945
946 2013-06-28  Pedro Alves  <palves@redhat.com>
947
948         * infrun.c (set_observer_mode): Don't declare pagination_enabled
949         here.
950         * utils.h (pagination_enabled): Declare.
951
952 2013-06-28  Pedro Alves  <palves@redhat.com>
953
954         * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
955         Move higher up in file.
956
957 2013-06-28  Tom Tromey  <tromey@redhat.com>
958
959         * tracepoint.c (deprecated_readline_begin_hook)
960         (deprecated_readline_hook, deprecated_readline_end_hook): Don't
961         declare.
962
963 2013-06-28  Pedro Alves  <palves@redhat.com>
964
965         PR tui/14880
966         * tui/tui-regs.c (tui_get_register): Fetch value contents before
967         checking if they're available.
968         * value.c (value_available_contents_eq): Change comment.
969         * value.h (value_available_contents_eq): Expand comment.
970
971 2013-06-27  Tom Tromey  <tromey@redhat.com>
972
973         * target.c (find_run_target): Remove.
974         * target.h (find_run_target): Remove.
975
976 2013-06-27  Tom Tromey  <tromey@redhat.com>
977
978         * corelow.c (core_gdbarch): Now static.
979
980 2013-06-27  Tom Tromey  <tromey@redhat.com>
981
982         * target.c (target_struct_index): Remove.
983
984 2013-06-27  Pedro Alves  <palves@redhat.com>
985
986         * infrun.c: Remove comment describing the 'stepping over runtime
987         loader dynamic symbol resolution code' mechanism; moved to
988         gdbint.texinfo.
989
990 2013-06-27  Pedro Alves  <palves@redhat.com>
991
992         * exceptions.c (catch_command_errors): Remove spurious space.
993         * exceptions.h (catch_command_errors): Second parameter is "arg",
994         not "command".
995
996 2013-06-27  Yao Qi  <yao@codesourcery.com>
997
998         * common/create-version.sh: Update comments.  Handle the case
999         that TARGET_ALIAS is empty.
1000
1001 2013-06-26  Pedro Alves  <palves@redhat.com>
1002
1003         * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
1004         comment.
1005
1006 2013-06-26  Pedro Alves  <palves@redhat.com>
1007
1008         * infrun.c: Update comments on stepping over runtime loader
1009         dynamic symbol resolution code.
1010
1011 2013-06-26  Sergio Durigan Junior  <sergiodj@redhat.com>
1012
1013         * ax-gdb.h (union exp_element): Forward declare.
1014         * parser-defs.h: Include expression.h.
1015
1016 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
1017
1018         * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
1019
1020 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
1021
1022         * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
1023
1024 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
1025
1026         Fix trace-status to output proper start-time and stop-time.
1027         * tracepoint.c (trace_status_command): Fix type of printf arg to
1028         prevent improper type conversion.
1029         (trace_status_mi): Likewise.
1030
1031 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
1032
1033         * mips-tdep.c (mips_next_pc): Fix a typo.
1034
1035 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
1036
1037         * mips-tdep.c (micromips_scan_prologue): Fix a typo.
1038
1039 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
1040             Yao Qi  <yao@codesourcery.com>
1041
1042         * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
1043         * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
1044         * mi/mi-main.c (print_variable_or_computed): New function.
1045         (mi_cmd_trace_frame_collected): New function.
1046         * tracepoint.c (find_trace_state_variable_by_number): New.
1047         (struct traceframe_info): Move to tracepoint.h
1048         (struct collection_list): Likewise.
1049         (do_collect_symbol): Include locals and arguments in the
1050         collected variables list.
1051         (clear_collection_list): Clear wholly collected variables list
1052         and computed variables list.
1053         (append_exp): New function.
1054         (encode_actions_1): Include variables in the wholly
1055         collected variables list.  Include memory ranges and
1056         full-fledged expressions in the computed expressions list.
1057         (encode_actions): Move some code to ...
1058         Return the cleanup chain.
1059         (encode_actions_rsp): ... here.  New function.
1060         (get_traceframe_location, get_traceframe_info): Remove static.
1061         * tracepoint.h (struct memrange): Moved from tracepoint.c.
1062         (struct collection_list): Moved from tracepoint.c.  Add two
1063         new fields 'wholly_collected' and 'computed'.
1064         (find_trace_state_variable_by_number): Declare.
1065         (encode_actions): Adjust declaration.
1066         (encode_actions_rsp): Declare.
1067         (get_traceframe_info, get_traceframe_location): Declare.
1068
1069         * NEWS: Mention new MI command -trace-frame-collected.
1070
1071 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
1072             Yao Qi  <yao@codesourcery.com>
1073
1074         * ctf.c (ctf_traceframe_info): Push trace state variables
1075         present in the trace data into the traceframe info object.
1076         * breakpoint.c (DEF_VEC_I): Remove.
1077         * common/filestuff.c (DEF_VEC_I): Likewise.
1078         * dwarf2loc.c (DEF_VEC_I): Likewise.
1079         * mi/mi-main.c (DEF_VEC_I): Likewise.
1080         * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
1081         * features/traceframe-info.dtd: Add tvar element and its
1082         attributes.
1083         * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
1084         (build_traceframe_info): Push trace state variables present in
1085         the trace data into the traceframe info object.
1086         (traceframe_info_start_tvar): New function.
1087         (tvar_attributes): New.
1088         (traceframe_info_children): Add "tvar" element.
1089         * tracepoint.h (struct traceframe_info) <tvars>: New field.
1090
1091         * NEWS: Mention the change in GDB and GDBserver.
1092
1093 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
1094             Yao Qi  <yao@codesourcery.com>
1095
1096         * tracepoint.c (trace_dump_command): Move code to ...
1097         (get_traceframe_location): ... here.  New.
1098
1099 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
1100             Yao Qi  <yao@codesourcery.com>
1101
1102         * tracepoint.c (trace_dump_command): GDB emits an error
1103          instead of a warning when a traceframe is not selected.
1104
1105 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
1106             Yao Qi  <yao@codesourcery.com>
1107
1108         * tracepoint.c (tracepoint_list, stepping_list): Remove.
1109         (clear_collection_list): Free fields 'aexpre_list' and 'list'
1110         in collection_list.
1111         (do_clear_collection_list, init_collection_list): New.
1112         (encode_actions): Add local variables 'tracepoint_list' and
1113         'stepping_list'.  Call init_collection_list and make cleanup
1114         which calls do_clear_collection_list.  Don't call
1115         clear_collection_list.
1116         (_initialize_tracepoint): Delete references to
1117         'tracepoint_list' and 'stepping_list'.
1118
1119 2013-06-25  Tom Tromey  <tromey@redhat.com>
1120
1121         * common/create-version.sh (date): Use "$", not "$$" in sed
1122         expression.
1123
1124 2013-06-25  Kevin Buettner  <kevinb@redhat.com>
1125
1126         * NEWS (New targets): Add entry for TI MSP430.
1127
1128 2013-06-25  Yao Qi  <yao@codesourcery.com>
1129
1130         * remote.c (remote_start_remote): Move code to upload tsv
1131         earlier.
1132
1133 2013-06-25  Yao Qi  <yao@codesourcery.com>
1134             Hui Zhu  <hui@codesourcery.com>
1135             Pedro Alves  <palves@redhat.com>
1136
1137         PR breakpoints/15075
1138         PR breakpoints/15434
1139         * breakpoint.c (bpstat_stop_status): Call
1140         b->ops->after_condition_true.
1141         (update_dprintf_command_list): Don't append "continue" command
1142         to the command list of dprintf breakpoint.
1143         (base_breakpoint_after_condition_true): New function.
1144         (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
1145         (dprintf_after_condition_true): New function.
1146         (initialize_breakpoint_ops): Set dprintf_after_condition_true.
1147         * breakpoint.h (breakpoint_ops): Add after_condition_true.
1148
1149 2013-06-24  Kevin Buettner  <kevinb@redhat.com>
1150
1151         * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
1152         (ALLDEPFILES): Add msp430-tdep.c.
1153         * configure.tgt (msp430*-*-elf): New target.
1154         * msp430-tdep.c: New file.
1155
1156 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
1157
1158         * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
1159         microMIPS synthetic symbols.
1160
1161 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
1162
1163         * objfiles.h (pc_in_section): New prototype.
1164         (in_plt_section): Remove name argument, replace prototype with
1165         static inline function.
1166         * mips-tdep.h: Include "objfiles.h".
1167         (in_mips_stubs_section): New function.
1168         * hppa-tdep.h (gdbarch_tdep): Remove name argument of
1169         in_solib_call_trampoline member.
1170         (hppa_in_solib_call_trampoline): Remove name argument.
1171         * objfiles.c (pc_in_section): New function.
1172         (in_plt_section): Remove function.
1173         * mips-linux-tdep.c: Include "objfiles.h".
1174         (mips_linux_in_dynsym_stub): Call in_mips_stubs_section.  Remove
1175         name argument.  Return 1 rather than the low 16-bit halfword of
1176         any instruction examined.
1177         (mips_linux_in_dynsym_resolve_code): Update
1178         mips_linux_in_dynsym_stub call accordingly.
1179         * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
1180         rather than an equivalent hand-coded sequence.
1181         * hppa-hpux-tdep.c (in_opd_section): Remove function.
1182         (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
1183         (hppa64_hpux_in_solib_call_trampoline): Likewise.
1184         (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
1185         in_opd_section.
1186         * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
1187         on call to tdep->in_solib_call_trampoline.
1188         (hppa_in_solib_call_trampoline): Remove name argument, update
1189         according to in_plt_section change.
1190         (hppa_skip_trampoline_code): Update according to in_plt_section
1191         change.
1192         * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
1193         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
1194         Likewise.
1195         * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
1196         * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
1197         * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
1198         * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
1199         * nto-tdep.c (nto_relocate_section_addresses): Likewise.
1200         * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
1201         * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
1202         * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
1203         * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
1204         * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
1205         * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
1206         * sparc-tdep.c (sparc_analyze_prologue): Likewise.
1207         * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
1208
1209 2013-06-24  Joel Brobecker  <brobecker@adacore.com>
1210
1211         * common/create-version.sh: Fix expansion of $host_alias
1212         and $target_alias in generation of HOST_NAME and TARGET_NAME
1213         (resp.).
1214
1215 2013-06-24  Tom Tromey  <tromey@redhat.com>
1216
1217         * common/create-version.sh: New file.
1218         * Makefile.in (version.c): Use bfd/version.h, common/version.in,
1219         create-version.sh.
1220         (HFILES_NO_SRCDIR): Use common/version.h.
1221         * version.in: Move to ...
1222         * common/version.in: ... here.  Replace date with "DATE".
1223         * version.h: Move to ...
1224         * common/version.h: ... here.
1225
1226 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
1227
1228         * gdb/gnulib/Makefile.in: Update date in copyright header.
1229         * gdb/gnulib/configure.ac: Ditto.
1230         * gdb/gnulib/update-gnulib.sh: Ditto.
1231
1232 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
1233
1234         * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
1235         "gdb/gnulib/import".
1236
1237 2013-06-21  Will Newton  <will.newton@linaro.org>
1238
1239         * doublest.c (ldfrexp): Remove function.
1240         (convert_doublest_to_floatformat): Call frexpl instead of
1241         ldfrexp.
1242
1243 2013-06-21  Will Newton  <will.newton@linaro.org>
1244
1245         * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
1246         * gnulib/aclocal.m4: Regenerate.
1247         * gnulib/config.in: Regenerate.
1248         * gnulib/configure: Regenerate.
1249         * gnulib/import/Makefile.am: Update.
1250         * gnulib/import/Makefile.in: Update.
1251         * gnulib/import/m4/gnulib-cache.m4: Update.
1252         * gnulib/import/m4/gnulib-comp.m4: Update.
1253         * gnulib/import/float+.h: Import.
1254         * gnulib/import/float.c: Import.
1255         * gnulib/import/float.in.h: Import.
1256         * gnulib/import/fpucw.h: Import.
1257         * gnulib/import/frexp.c: Import.
1258         * gnulib/import/frexpl.c: Import.
1259         * gnulib/import/isnan.c: Import.
1260         * gnulib/import/isnand-nolibm.h: Import.
1261         * gnulib/import/isnand.c: Import.
1262         * gnulib/import/isnanl-nolibm.h: Import.
1263         * gnulib/import/isnanl.c: Import.
1264         * gnulib/import/itold.c: Import.
1265         * gnulib/import/m4/exponentd.m4: Import.
1266         * gnulib/import/m4/exponentl.m4: Import.
1267         * gnulib/import/m4/float_h.m4: Import.
1268         * gnulib/import/m4/fpieee.m4: Import.
1269         * gnulib/import/m4/frexp.m4: Import.
1270         * gnulib/import/m4/frexpl.m4: Import.
1271         * gnulib/import/m4/isnand.m4: Import.
1272         * gnulib/import/m4/isnanl.m4: Import.
1273         * gnulib/import/m4/math_h.m4: Import.
1274         * gnulib/import/math.c: Import.
1275         * gnulib/import/math.in.h: Import.
1276
1277 2013-06-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
1278
1279         * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
1280         replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
1281         signature_INTEL_edx comparisons.
1282
1283 2013-06-20  Doug Evans  <dje@google.com>
1284
1285         symtab/15652
1286         * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
1287         All callers updated.
1288         (open_dwp_file): If we can't find the dwp file, search the basename
1289         in debug-file-directory.
1290
1291         * dwarf2read.c (struct dwp_file): Fix comment.
1292         (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
1293
1294         * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
1295         better.
1296
1297 2013-06-20  Yao Qi  <yao@codesourcery.com>
1298
1299         * breakpoint.c (create_breakpoint): Fix code indentation.
1300
1301 2013-06-20  Yao Qi  <yao@codesourcery.com>
1302
1303         * breakpoint.c (create_breakpoints_sal_default): Remove
1304         parameter 'lsal'.  Update declaration.
1305         (bkpt_create_breakpoints_sal): Caller update.
1306         (tracepoint_create_breakpoints_sal): Likewise.
1307
1308 2013-06-20  Pedro Alves  <pedro@codesourcery.com>
1309             Yao Qi  <yao@codesourcery.com>
1310
1311         * NEWS: Mention the new option '--skip-unavailable' of command
1312         -data-list-register-values.
1313         * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
1314         --skip-unavailable option.  Adjust to use output_register.
1315         (output_register): Add new 'skip_unavailable' parameter.
1316         Handle it.
1317
1318 2013-06-19  Mike Frysinger  <vapier@gentoo.org>
1319
1320         * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
1321         common/i386-gcc-cpuid.h.
1322         * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
1323         * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
1324         Copy the latest version from upstream gcc.
1325         * common/linux-btrace.c: Include i386-cpuid.h.
1326         (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
1327         call to i386_cpuid.
1328         (cpu_supports_btrace): Likewise.
1329         * go32-nat.c: Include i386-cpuid.h.
1330         (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
1331
1332 2013-06-19  Doug Evans  <dje@google.com>
1333
1334         * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
1335         (get_section_index): Ditto.
1336
1337 2013-06-19  Tom Tromey  <tromey@redhat.com>
1338
1339         * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
1340         "dprintf" help.
1341
1342 2013-06-18  Doug Evans  <dje@google.com>
1343
1344         * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
1345         before using it.
1346         (dw2_expand_symtabs_matching): Fix symbol kind validity check.
1347         Move test of cu_index closer to use.  Print complaint if cu_index
1348         is bad.
1349
1350 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
1351
1352         * machoread.c (oso_vector): Delete this global.
1353         (macho_register_oso): Add new parameter "oso_vector_ptr".
1354         Use it instead of the "oso_vector" global.
1355         (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
1356         (macho_symfile_read): Use a local oso_vector, to be free'ed
1357         at the end of this function, in place of the old "oso_vector"
1358         global.  Update various function calls accordingly.  Use one
1359         single cleanup chain for the entire function.
1360
1361 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
1362
1363         * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
1364         DWARF2_PER_OBJFILE by uses of DATA instead.
1365
1366 2013-06-18  Tom Tromey  <tromey@redhat.com>
1367
1368         * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
1369         argument.
1370         * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
1371         Special case signals other than GDB_SIGNAL_TRAP.
1372         (explains_signal_watchpoint): New function.
1373         (base_breakpoint_explains_signal): Add 'sig' argument.
1374         (initialize_breakpoint_ops): Set 'explains_signal' method for
1375         watchpoints.
1376         * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
1377         signal argument.
1378         (bpstat_explains_signal): Likewise.
1379         * infrun.c (handle_syscall_event, handle_inferior_event): Update.
1380
1381 2013-06-18  Tom Tromey  <tromey@redhat.com>
1382
1383         * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
1384
1385 2013-06-18  Tom Tromey  <tromey@redhat.com>
1386
1387         * python/python.c (finish_python_initialization): Decref
1388         'pythondir' on failure path as well.
1389
1390 2013-06-18  Tom Tromey  <tromey@redhat.com>
1391
1392         PR symtab/15391:
1393         * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
1394         after taking bits_to_skip into account.  Sign extend byte_offset.
1395         * utils.h (gdb_sign_extend): Declare.
1396         * utils.c (gdb_sign_extend): New function.
1397
1398 2013-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
1399
1400         * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
1401
1402 2013-06-17  Pierre Muller  <muller@sourceware.org>
1403
1404         * corelow.c (core_open): Print GDB signal name instead of target
1405         signal number.
1406
1407 2013-06-17  Mike Frysinger  <vapier@gentoo.org>
1408
1409         * .gitignore: Add /gcore.
1410
1411 2013-06-13  Doug Evans  <dje@google.com>
1412
1413         * dwarf2read.c (try_open_dwop_file): Work around behaviour of
1414         OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
1415
1416 2013-06-12  Phil Muldoon  <pmuldoon@redhat.com>
1417
1418         * stack.c (backtrace_command_1): Fix indentation.
1419
1420 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
1421
1422         * window-nat.c (thread_rec): Add missing empty line after
1423         local variable declaration.
1424
1425 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
1426
1427         * windows-nat.c (thread_rec): Revert format used to print
1428         error code returned by SuspendThread from %d back to %u.
1429
1430 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
1431
1432         * windows-nat.c (windows_continue): Add "0x" prefix for thread
1433         ID in debug trace.
1434         (get_windows_debug_event): Likewise, for all debug traces.
1435
1436 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
1437
1438         * window-nat.c (thread_rec): Add thread ID in SuspendThread
1439         warning message.
1440
1441 2013-06-08  Pedro Alves  <pedro@codesourcery.com>
1442             Yao Qi  <yao@codesourcery.com>
1443
1444         * mi/mi-main.c (get_register): Remove declaration.
1445         (output_register): Declare.
1446         (mi_cmd_data_list_register_values): Remove local variable
1447         'tuple_cleanup'.  Move some code into output_register.
1448         (get_register): Renamed to ...
1449         (output_register): ... this.  Output the register's
1450         "number" ui_out tuple here.
1451
1452 2013-06-07  Pedro Alves  <palves@redhat.com>
1453
1454         * darwin-nat.c: Fix formating in copyright header.
1455         * darwin-nat.h: Likewise.
1456         * gnu-nat.c: Likewise.
1457         * machoread.c: Likewise.
1458
1459 2013-06-07  Pedro Alves  <palves@redhat.com>
1460
1461         PR server/14823
1462         * regformats/regdat.sh: Output #include tdesc.h.  Make globals
1463         static.  Output a global target description pointer.
1464         (init_registers_${name}): Adjust to initialize a
1465         target description structure.
1466
1467 2013-06-07  Will Newton  <will.newton@linaro.org>
1468
1469         * printcmd.c (build_address_symbolic): Call
1470         gdbarch_addr_bits_remove for text minimal symbols.
1471
1472 2013-06-07  Will Newton  <will.newton@linaro.org>
1473
1474         * MAINTAINERS: Add myself to Write After Approval.
1475
1476 2013-06-07  Yao Qi  <yao@codesourcery.com>
1477
1478         * tracepoint.c (start_tracing): Move code to ...
1479         (trace_reset_local_state): ... here.  New.
1480         (disconnect_tracing): Don't call set_current_traceframe,
1481         set_tracepoint_num, and set_traceframe_context. Call
1482         trace_reset_local_state instead.
1483         (tfile_close): Call trace_reset_local_state.
1484         * ctf.c (ctf_close): Likewise.
1485         * remote.c (remote_close): Likewise.
1486         * tracepoint.h (trace_reset_local_state): Declare.
1487
1488 2013-06-06  Doug Evans  <dje@google.com>
1489
1490         * dwarf2read.c: Whitespace fixes for DWP file format documentation,
1491         and fix header docs.
1492
1493 2013-06-05  Doug Evans  <dje@google.com>
1494             Keith Seitz  <keiths@redhat.com>
1495
1496         PR 15519
1497         * cp-namespace.c (find_symbol_in_baseclass): Call
1498         cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
1499         Check result of call to lookup_symbol_static.
1500         Call lookup_static_symbol_aux unconditionally.
1501         Call check_typedef on base types before accessing them.
1502         (cp_lookup_nested_symbol): Fix comment.
1503
1504 2013-06-05  Luis Machado  <lgustavo@codesourcery.com>
1505
1506         * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
1507         minimal symbols pointing to function descriptors.
1508
1509 2013-06-05  Tom Tromey  <tromey@redhat.com>
1510
1511         * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
1512
1513 2013-06-04  Sergio Durigan Junior  <sergiodj@redhat.com>
1514             Pedro Alves  <palves@redhat.com>
1515
1516         * remote.c (remote_wait_as): Restore signal handler before returning
1517         when GDB gets a notification.
1518
1519 2013-06-04  Gary Benson  <gbenson@redhat.com>
1520
1521         PR 2328
1522         * breakpoint.h (handle_solib_event): Moved function declaration
1523         to solib.h.
1524         * breakpoint.c (handle_solib_event): Moved function to solib.c.
1525         (bpstat_stop_status): Pass new argument to handle_solib_event.
1526         * solib.h (update_solib_breakpoints): New function declaration.
1527         (handle_solib_event): Moved function declaration from
1528         breakpoint.h.
1529         * solib.c (update_solib_breakpoints): New function.
1530         (handle_solib_event): Moved function from breakpoint.c.
1531         Updated to call solib_ops->handle_event if not NULL.
1532         * solist.h (target_so_ops): New fields "update_breakpoints" and
1533         "handle_event".
1534         * infrun.c (set_stop_on_solib_events): New function.
1535         (_initialize_infrun): Use the above for "set
1536         stop-on-solib-events".
1537         (handle_inferior_event): Pass new argument to handle_solib_event.
1538         * solib-svr4.c (probe.h): New include.
1539         (svr4_free_library_list): New forward declaration.
1540         (probe_action): New enum.
1541         (probe_info): New struct.
1542         (probe_info): New static variable.
1543         (NUM_PROBES): New definition.
1544         (svr4_info): New fields "using_xfer", "probes_table" and
1545         "solib_list".
1546         (free_probes_table): New function.
1547         (free_solib_list): New function.
1548         (svr4_pspace_data_cleanup): Free probes table and solib list.
1549         (svr4_copy_library_list): New function.
1550         (svr4_current_sos_via_xfer_libraries): New parameter "annex".
1551         (svr4_read_so_list): New parameter "prev_lm".
1552         (svr4_current_sos_direct): Renamed from "svr4_current_sos".
1553         (svr4_current_sos): New function.
1554         (probe_and_action): New struct.
1555         (hash_probe_and_action): New function.
1556         (equal_probe_and_action): Likewise.
1557         (register_solib_event_probe): Likewise.
1558         (solib_event_probe_at): Likewise.
1559         (solib_event_probe_action): Likewise.
1560         (solist_update_full): Likewise.
1561         (solist_update_incremental): Likewise.
1562         (disable_probes_interface_cleanup): Likewise.
1563         (svr4_handle_solib_event): Likewise.
1564         (svr4_update_solib_event_breakpoint): Likewise.
1565         (svr4_update_solib_event_breakpoints): Likewise.
1566         (svr4_create_solib_event_breakpoints): Likewise.
1567         (enable_break): Free probes table before creating breakpoints.
1568         Use svr4_create_solib_event_breakpoints to create breakpoints.
1569         (svr4_solib_create_inferior_hook): Free the solib list.
1570         (_initialize_svr4_solib): Initialise
1571         svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
1572
1573 2013-06-04  Gary Benson  <gbenson@redhat.com>
1574
1575         * target.h (target_ops): New field
1576         "to_augmented_libraries_svr4_read".
1577         (target_augmented_libraries_svr4_read): New macro.
1578         * target.c (update_current_target): Handle
1579         to_augmented_libraries_svr4_read.
1580         * remote.c (remote_state): New field
1581         "augmented_libraries_svr4_read".
1582         (remote_augmented_libraries_svr4_read_feature): New function.
1583         (remote_protocol_features): Add entry for
1584         "augmented-libraries-svr4-read".
1585         (remote_augmented_libraries_svr4_read): New function.
1586         (init_remote_ops): Initialize
1587         remote_ops.to_augmented_libraries_svr4_read.
1588
1589 2013-06-04  Gary Benson  <gbenson@redhat.com>
1590
1591         * NEWS: Update.
1592
1593 2013-06-04  Gary Benson  <gbenson@redhat.com>
1594
1595         * objfiles.h (inhibit_section_map_updates): New function
1596         declaration.
1597         (resume_section_map_updates): Likewise.
1598         (resume_section_map_updates_cleanup): Likewise.
1599         * objfiles.c (objfile_pspace_info): Removed field
1600         "objfiles_changed_p".  New fields "new_objfiles_available",
1601         "section_map_dirty" and "inhibit_updates".
1602         (allocate_objfile): Set new_objfiles_available.
1603         (free_objfile): Set section_map_dirty.
1604         (objfile_relocate1): Likewise.
1605         (in_plt_section): Likewise.
1606         (find_pc_section): Update the conditions under which the
1607         section map will be updated.
1608         (inhibit_section_map_updates): New function.
1609         (resume_section_map_updates): Likewise.
1610         (resume_section_map_updates_cleanup): Likewise.
1611
1612 2013-06-04  Gary Benson  <gbenson@redhat.com>
1613
1614         * probe.h (get_probe_argument_count): New declaration.
1615         (evaluate_probe_argument): Likewise.
1616         * probe.c (get_probe_argument_count): New function.
1617         (evaluate_probe_argument): Likewise.
1618         (probe_safe_evaluate_at_pc): Use the above new functions.
1619
1620 2013-06-04  Alan Modra  <amodra@gmail.com>
1621
1622         * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
1623         * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
1624         (ppc_insns_match_pattern): Add frame param.  Avoid multiple
1625         target mem reads on optional insns.
1626         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
1627         ppc_insns_match_pattern calls.
1628         * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
1629         Add match for power7 thread safety insns, and new order of
1630         std 2,40(1) insn.  Correct code shown for _dl_runtime_resolve
1631         invocation in comment, and update rest of comment.
1632         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
1633         PPC64_STANDARD_LINKAGE3_LEN): Delete.
1634         (ppc64_standard_linkage2_target): Update insn offsets.
1635         (ppc64_skip_trampoline_code): Use a single insn buffer.  Match newer
1636         stubs first.  Update calls.
1637
1638 2013-06-04  Yao Qi  <yao@codesourcery.com>
1639
1640         * solib.c (solib_find): Don't need dir separator if path has
1641         drive spec.
1642
1643 2013-06-03  Joel Brobecker  <brobecker@adacore.com>
1644
1645         Revert (indirectly causes a SIGSEGV):
1646         * machoread.c (macho_symfile_read): Assign first cleanup to
1647         'back_to'.
1648
1649 2013-06-03  Yao Qi  <yao@codesourcery.com>
1650
1651         * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
1652         mi-parse.c.  Make them static.
1653         (mi_all_values): Likewise.
1654         (mi_parse_values_option): Move to mi-parse.c.  Rename it to
1655         mi_parse_print_values.  Make it external.
1656         * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
1657         Remove the declarations.
1658         * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
1659         * mi/mi-parse.h (mi_parse_print_values): Declare.
1660         * mi/mi-cmd-stack.c: Include mi-parse.h.
1661         (parse_print_values): Remove
1662         (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
1663         of parse_print_values.
1664         (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
1665
1666 2013-05-31  Pedro Alves  <pedro@codesourcery.com>
1667             Yao Qi  <yao@codesourcery.com>
1668
1669         * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
1670         (encode_actions): Move code to ...
1671         (all_tracepoint_actions_and_cleanup): ... here.  New.
1672         (trace_dump_command): Likewise.
1673
1674 2013-05-30  Tom Tromey  <tromey@redhat.com>
1675
1676         * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
1677
1678 2013-05-30  Tom Tromey  <tromey@redhat.com>
1679
1680         * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
1681         gdb_xml_create_parser_and_cleanup_1.  Return a cleanup.  Remove
1682         'old_chain' argument.  Add 'parser_result' argument.
1683         (gdb_xml_create_parser_and_cleanup): Remove old version.
1684         (gdb_xml_parse_quick): Update.
1685         (xml_process_xincludes): Update.
1686         * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
1687         declare.
1688
1689 2013-05-30  Tom Tromey  <tromey@redhat.com>
1690
1691         * probe.c (collect_probes): Check arguments for NULL before
1692         calling compile_rx_or_error.
1693         * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
1694         Remove NULL return.
1695
1696 2013-05-30  Tom Tromey  <tromey@redhat.com>
1697
1698         * infrun.c (adjust_pc_after_break): Introduce an outer null
1699         cleanup.
1700
1701 2013-05-30  Tom Tromey  <tromey@redhat.com>
1702
1703         * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
1704
1705 2013-05-30  Tom Tromey  <tromey@redhat.com>
1706
1707         * cli/cli-script.c (read_command_lines_1): Use a null cleanup
1708         for 'old_chain'.  Do not check 'head' before processing
1709         cleanups.
1710
1711 2013-05-30  Tom Tromey  <tromey@redhat.com>
1712
1713         * mi/mi-cmd-stack.c (list_arg_or_local): Remove
1714         "cleanup_tuple".
1715
1716 2013-05-30  Tom Tromey  <tromey@redhat.com>
1717
1718         * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
1719         inner scope.  Unconditionally call do_cleanups.
1720
1721 2013-05-30  Tom Tromey  <tromey@redhat.com>
1722
1723         * source.c (find_and_open_source): Call do_cleanups.
1724
1725 2013-05-30  Tom Tromey  <tromey@redhat.com>
1726
1727         * linux-thread-db.c (thread_db_load_search): Unconditionally
1728         call do_cleanups.
1729
1730 2013-05-30  Tom Tromey  <tromey@redhat.com>
1731
1732         * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
1733         for 'cleanup'; instead use a later one.
1734
1735 2013-05-30  Tom Tromey  <tromey@redhat.com>
1736
1737         * python/py-breakpoint.c (bppy_get_commands): Use
1738         explicit, unconditional return.
1739         * python/py-frame.c (frapy_read_var): Likewise.
1740         * python/python.c (gdbpy_decode_line): Likewise.
1741
1742 2013-05-30  Tom Tromey  <tromey@redhat.com>
1743
1744         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
1745         do_cleanups on all return paths.
1746
1747 2013-05-30  Tom Tromey  <tromey@redhat.com>
1748
1749         * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
1750
1751 2013-05-30  Tom Tromey  <tromey@redhat.com>
1752
1753         * stabsread.c (read_struct_type): Call do_cleanups along
1754         all return paths.
1755
1756 2013-05-30  Maciej W. Rozycki  <macro@codesourcery.com>
1757
1758         * mips-linux-tdep.c: Adjust formatting throughout.
1759
1760 2013-05-30  Tom Tromey  <tromey@redhat.com>
1761
1762         * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
1763         along all return paths.
1764
1765 2013-05-30  Tom Tromey  <tromey@redhat.com>
1766
1767         * symfile.c (find_separate_debug_file): Call do_cleanups
1768         along all return paths.
1769
1770 2013-05-30  Tom Tromey  <tromey@redhat.com>
1771
1772         * symtab.c (search_symbols): Introduce a null cleanup for
1773         'retval_chain'.
1774
1775 2013-05-30  Tom Tromey  <tromey@redhat.com>
1776
1777         * python/py-value.c (valpy_binop): Call do_cleanups before
1778         exiting loop.
1779
1780 2013-05-30  Tom Tromey  <tromey@redhat.com>
1781
1782         * python/py-prettyprint.c (print_children): Remove extra
1783         do_cleanups call.
1784
1785 2013-05-30  Tom Tromey  <tromey@redhat.com>
1786
1787         * python/py-frame.c (frapy_read_var): Call do_cleanups along
1788         all return paths.
1789
1790 2013-05-30  Tom Tromey  <tromey@redhat.com>
1791
1792         * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
1793         along all return paths.
1794
1795 2013-05-30  Tom Tromey  <tromey@redhat.com>
1796
1797         * cli/cli-logging.c (set_logging_redirect): Unconditionally
1798         call do_cleanups.
1799
1800 2013-05-30  Tom Tromey  <tromey@redhat.com>
1801
1802         * varobj.c (c_value_of_root): Call do_cleanups along all
1803         return paths.
1804
1805 2013-05-30  Tom Tromey  <tromey@redhat.com>
1806
1807         * tracepoint.c (trace_dump_command): Unconditionally call
1808         do_cleanups.
1809
1810 2013-05-30  Tom Tromey  <tromey@redhat.com>
1811
1812         * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
1813         do_cleanups earlier.
1814
1815 2013-05-30  Tom Tromey  <tromey@redhat.com>
1816
1817         * machoread.c (macho_symfile_read): Assign first cleanup to
1818         'back_to'.
1819
1820 2013-05-30  Tom Tromey  <tromey@redhat.com>
1821
1822         * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
1823
1824 2013-05-30  Tom Tromey  <tromey@redhat.com>
1825
1826         * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
1827
1828 2013-05-30  Tom Tromey  <tromey@redhat.com>
1829
1830         * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
1831         call discard_cleanups.
1832         (inf_ptrace_attach): Likewise.
1833
1834 2013-05-30  Tom Tromey  <tromey@redhat.com>
1835
1836         * remote-mips.c (mips_exit_debug): Call do_cleanups on all
1837         return paths.
1838         (mips_initialize): Likewise.
1839         (common_open): Call do_cleanups.
1840
1841 2013-05-30  Tom Tromey  <tromey@redhat.com>
1842
1843         * utils.c (internal_vproblem): Call do_cleanups.
1844
1845 2013-05-30  Tom Tromey  <tromey@redhat.com>
1846
1847         * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
1848
1849 2013-05-30  Tom Tromey  <tromey@redhat.com>
1850
1851         * cli/cli-script.c (setup_user_args): Don't return after error.
1852
1853 2013-05-30  Tom Tromey  <tromey@redhat.com>
1854
1855         * somread.c (som_symtab_read): Call do_cleanups.
1856
1857 2013-05-30  Tom Tromey  <tromey@redhat.com>
1858
1859         * printcmd.c (print_command_1): Unconditionally call do_cleanups.
1860
1861 2013-05-30  Tom Tromey  <tromey@redhat.com>
1862
1863         * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
1864         * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
1865         * interps.c (interpreter_exec_cmd): Call do_cleanups.
1866         * source.c (show_substitute_path_command): Call do_cleanups.
1867         (unset_substitute_path_command, set_substitute_path_command):
1868         Likewise.
1869         * symfile.c (load_command): Call do_cleanups.
1870
1871 2013-05-30  Tom Tromey  <tromey@redhat.com>
1872
1873         * contrib/cleanup_check.py: New file.
1874         * contrib/gcc-with-excheck: Add option parsing.
1875
1876 2013-05-30  Joel Brobecker  <brobecker@adacore.com>
1877
1878         * windows-nat.c (windows_delete_thread): Add missing space
1879         in cast expression.
1880
1881 2013-05-30  Hafiz Abid Qadeer  <abidh@codesourcery.com>
1882
1883         * inferior.c (top level): Include tilde.h.
1884         (add_inferior_command): Call tilde_expand on the value of 'exec'
1885         argument.
1886
1887 2013-05-30  Pedro Alves  <pedro@codesourcery.com>
1888             Yao Qi  <yao@codesourcery.com>
1889
1890         * tracepoint.c (encode_actions_1): Remove parameter 't'.
1891         Caller update.
1892         (encode_actions): Likewise.
1893         * remote.c (remote_download_tracepoint): Caller update.
1894         * tracepoint.h (encode_actions): Update declaration.
1895
1896 2013-05-30  Pedro Alves  <palves@redhat.com>
1897
1898         * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
1899         pointer.
1900
1901 2013-05-30  Yao Qi  <yao@codesourcery.com>
1902
1903         * remote.c (remote_check_symbols): Remove unused parameter
1904         'objfile'.
1905         Declaration update.
1906         (remote_start_remote, remote_new_objfile): Caller update.
1907
1908 2013-05-30  Yao Qi  <yao@codesourcery.com>
1909
1910         * mi/mi-cmds.c (mi_cmds): Define MI command
1911         '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
1912         DEF_MI_CMD_CLI.
1913
1914 2013-05-29  Pedro Alves  <palves@redhat.com>
1915
1916         * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
1917         (remote_insert_watchpoint, remote_remove_watchpoint)
1918         (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
1919         (remote_verify_memory, compare_sections_command)
1920         (remote_search_memory): Set the general process/thread on the
1921         remote side.
1922
1923 2013-05-29  Pedro Alves  <palves@redhat.com>
1924
1925         * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
1926         (_initialize_aarch64_tdep): Don't call
1927         initialize_tdesc_aarch64_without_fpu.
1928         * features/Makefile (WHICH): Remove reference to
1929         aarch64-without-fpu.
1930         * features/aarch64-without-fpu.c: Delete file.
1931         * regformats/aarch64-without-fpu.dat: Delete file.
1932
1933 2013-05-28  Yao Qi  <yao@codesourcery.com>
1934
1935         * tracepoint.c (stringify_collection_list): Remove parameter
1936         'string'.
1937         (encode_actions): Caller update.  Remove local variables.
1938
1939 2013-05-24  Yao Qi  <yao@codesourcery.com>
1940
1941         * tracepoint.c (TFILE_PID): Remove.
1942         (tfile_open): Don't add thread and inferior.
1943         (tfile_close): Don't set 'inferior_ptid'.  Don't call
1944         exit_inferior_silent.
1945         (tfile_thread_alive): Remove.
1946         (init_tfile_ops): Don't set field 'to_thread_alive' of
1947         tfile_ops.
1948
1949 2013-05-23  Doug Evans  <dje@google.com>
1950
1951         * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
1952
1953 2013-05-23  Pedro Alves  <palves@redhat.com>
1954
1955         * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
1956         [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
1957         (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
1958         Only define if HAVE_SOCKETS is defined.
1959         * configure.ac: Check for sys/socket.h.
1960         * config.in, configure: Regenerate.
1961
1962 2013-05-23  Pedro Alves  <palves@redhat.com>
1963
1964         * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
1965         (open_and_init_dwp_file): Use %s/pulongest instead of %u for
1966         printing uint32_t variables.
1967
1968 2013-05-23  Pedro Alves  <palves@redhat.com>
1969
1970         * NEWS: Mention GDBserver range stepping support.
1971
1972 2013-05-23  Yao Qi  <yao@codesourcery.com>
1973             Pedro Alves  <palves@redhat.com>
1974
1975         * gdbthread.h (struct thread_control_state) <may_range_step>: New
1976         field.
1977         * infcmd.c (step_once, until_next_command): Enable range stepping.
1978         * infrun.c (displaced_step_prepare): Disable range stepping.
1979         (resume): Disable range stepping if stepping over a breakpoint or
1980         we have software watchpoints.  If range stepping is enabled,
1981         assert the thread is in the stepping range.
1982         (clear_proceed_status_thread): Clear may_range_step.
1983         (handle_inferior_event): Disable range stepping as soon as we know
1984         the thread that hit the event.  Re-enable it whenever we're going
1985         to step with a step range.
1986         * remote.c (struct vCont_action_support) <r>: New field.
1987         (use_range_stepping): New global.
1988         (remote_vcont_probe): Handle 'r' action.
1989         (append_resumption): Append an 'r' action if the thread may range
1990         step.
1991         (show_range_stepping): New function.
1992         (set_range_stepping): New function.
1993         (_initialize_remote): Call add_setshow_boolean_cmd to register the
1994         'set range-stepping' and 'show range-stepping' commands.
1995         * NEWS: Mention range stepping, the new vCont;r action, and the
1996         new "set/show range-stepping" commands.
1997
1998 2013-05-23  Yao Qi  <yao@codesourcery.com>
1999             Pedro Alves  <palves@redhat.com>
2000
2001         * remote.c (struct vCont_action_support): New struct.
2002         (struct remote_state) <support_vCont_t>: Remove field.
2003         <vCont_actions_support>: New field.
2004         (remote_vcont_probe, remote_stop_ns): Update.
2005
2006 2013-05-23  Yao Qi  <yao@codesourcery.com>
2007             Pedro Alves  <palves@redhat.com>
2008
2009         * gdbthread.h (pc_in_thread_step_range): New declaration.
2010         * thread.c (pc_in_thread_step_range): New function.
2011         * infrun.c (handle_inferior_event): Use it.
2012
2013 2013-05-23  Joel Brobecker  <brobecker@adacore.com>
2014
2015         * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
2016         of sprintf.
2017
2018 2013-05-22  Keith Seitz  <keiths@redhat.com>
2019
2020         * ada-lang.c (is_known_support_routine): Add explicit free of
2021         'func_name' from find_frame_funname.
2022         (ada_unhandled_exception_name_addr_from_raise): Add cleanups
2023         for func_name from find_frame_funname.
2024         * python/py-frame.c (frapy_name): Add explicit free of
2025         'name' from find_frame_funname.
2026         * stack.c (find_frame_funname): Add comment explaining that
2027         funcp must be freed by the caller.
2028         Return copy of symbol names instead of pointers.
2029         (print_frame): Add a cleanup for 'funname' from
2030         find_frame_funname.
2031         * stack.h (find_frame_funname): Remove "const" from
2032         'funname' parameter.
2033
2034 2013-05-22  Tom Tromey  <tromey@redhat.com>
2035
2036         PR c++/15401:
2037         * c-valprint.c (c_value_print): Use value_addr for
2038         references.  Convert back to reference type with value_ref.
2039
2040 2013-05-22  Eli Zaretskii  <eliz@gnu.org>
2041
2042         * windows-nat.c (handle_unload_dll): Don't call solib_add for the
2043         unloaded DLL, it will be done by handle_solib_event.  See
2044         http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
2045         details.
2046
2047 2013-05-22  Phil Muldoon  <pmuldoon@redhat.com>
2048
2049         * ui-out.c: Create typedef ui_out_level_p and define vector
2050         operations for that type.
2051         (struct ui_out): Use a vector instead of an array.
2052         (current_level): Return level from a vector.
2053         (push_level): Create a level in a vector.
2054         (pop_level): Delete a level in a vector.
2055         (ui_out_new): Create initial level zero level, and store in a
2056         vector.
2057         (ui_out_destroy): Add vector cleanup.
2058
2059 2013-05-22  Pedro Alves  <palves@redhat.com>
2060
2061         * python/python-internal.h (gdb_Py_DECREF): Tag with
2062         "ARI: editCase function".
2063
2064 2013-05-21  Paul Pluzhnikov  <ppluzhnikov@google.com>
2065
2066         * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
2067
2068 2013-05-21  Pedro Alves  <palves@redhat.com>
2069
2070         * python/py-prettyprint.c (apply_val_pretty_printer): Check
2071         whether PRINTER is NULL before installing a Py_DECREF cleanup.
2072         * python/py-utils.c (py_decref): Don't check for NULL before
2073         calling Py_DECREF.
2074
2075 2013-05-21  Pedro Alves  <palves@redhat.com>
2076
2077         * python/py-utils.c (py_decref): Remove extra braces.
2078         (gdb_pymodule_addobject): Remove extra braces.
2079         * python-internal.h (gdb_Py_DECREF): New static inline function.
2080         (Py_DECREF): Redefine as calling gdb_Py_DECREF.
2081
2082 2013-05-21  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
2083
2084         * breakpoints.c (detach_breakpoints): Do not
2085         detach breakpoints locations with loc_type bp_loc_other.
2086
2087 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
2088
2089         Workaround Python 2.6.
2090         * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
2091         a block.
2092
2093 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
2094
2095         Code cleanup: constification.
2096         * solib.c (solib_ops): Make return type and ops variable type const.
2097         (set_solib_ops): Make the new_ops parameter and ops variable const.
2098         (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
2099         (solib_add, solib_keep_data_in_core, clear_solib)
2100         (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
2101         (reload_shared_libraries, solib_global_lookup): Make the ops variable
2102         const.
2103         * solib.h (set_solib_ops): Make the new_ops parameter const.
2104
2105 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
2106
2107         * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
2108         variable.
2109         (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
2110         (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
2111         (SYSTEM_GDBINIT_FILES): New variables.
2112         (all): Add stamp-system-gdbinit.
2113         (stamp-system-gdbinit): New rule.
2114         (clean-system-gdbinit, install-system-gdbinit)
2115         (uninstall-system-gdbinit): New rules.  Make them .PHONY.
2116         (install-only): Add dependency on install-system-gdbinit.
2117         (uninstall): Add dependency on uninstall-system-gdbinit.
2118         (clean): Add dependency on clean-system-gdbinit.
2119         * system-gdbinit/elinos.py: New file.
2120         * system-gdbinit/wrs-linux.py: New file.
2121
2122 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
2123
2124         * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
2125
2126 2013-05-21  Hui Zhu  <hui@codesourcery.com>
2127
2128         * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
2129         * breakpoint.h (dprintf_breakpoint_ops): Add extern.
2130         * mi/mi-cmd-break.c (ctype.h): New include.
2131         (gdb_obstack.h): New include.
2132         (mi_argv_to_format, mi_cmd_break_insert_1): New.
2133         (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
2134         (mi_cmd_dprintf_insert): New.
2135         * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
2136         * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
2137
2138 2013-05-20  Tom Tromey  <tromey@redhat.com>
2139
2140         * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
2141
2142 2013-05-20  Tom Tromey  <tromey@redhat.com>
2143
2144         * python/py-value.c (valpy_get_dynamic_type): Simplify
2145         dynamic_type assignment.  Use Py_XINCREF.
2146
2147 2013-05-20  Tom Tromey  <tromey@redhat.com>
2148
2149         * python/py-type.c (typy_fields): Unconditionally decref 'r'.
2150
2151 2013-05-20  Tom Tromey  <tromey@redhat.com>
2152
2153         * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
2154         (gdbpy_selected_frame): Move object-construction code
2155         out of TRY_CATCH.
2156
2157 2013-05-20  Tom Tromey  <tromey@redhat.com>
2158
2159         * python/py-arch.c (gdbpy_initialize_arch): Use
2160         gdb_pymodule_addobject.
2161         * python/py-block.c (gdbpy_initialize_blocks): Use
2162         gdb_pymodule_addobject.
2163         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
2164         gdb_pymodule_addobject.
2165         * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
2166         gdb_pymodule_addobject.
2167         * python/py-event.c (gdbpy_initialize_event_generic): Use
2168         gdb_pymodule_addobject.
2169         * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
2170         gdb_pymodule_addobject.
2171         * python/py-evts.c (add_new_registry): Use
2172         gdb_pymodule_addobject.
2173         (gdbpy_initialize_py_events): Likewise.
2174         * python/py-finishbreakpoint.c
2175         (gdbpy_initialize_finishbreakpoints): Use
2176         gdb_pymodule_addobject.
2177         * python/py-frame.c (gdbpy_initialize_frames): Use
2178         gdb_pymodule_addobject.
2179         * python/py-function.c (gdbpy_initialize_functions): Use
2180         gdb_pymodule_addobject.
2181         * python/py-inferior.c (gdbpy_initialize_inferior): Use
2182         gdb_pymodule_addobject.
2183         * python/py-infthread.c (gdbpy_initialize_thread): Use
2184         gdb_pymodule_addobject.
2185         * python/py-objfile.c (gdbpy_initialize_objfile): Use
2186         gdb_pymodule_addobject.
2187         * python/py-param.c (gdbpy_initialize_parameters): Use
2188         gdb_pymodule_addobject.
2189         * python/py-progspace.c (gdbpy_initialize_pspace): Use
2190         gdb_pymodule_addobject.
2191         * python/py-symbol.c (gdbpy_initialize_symbols): Use
2192         gdb_pymodule_addobject.
2193         * python/py-symtab.c (gdbpy_initialize_symtabs): Use
2194         gdb_pymodule_addobject.
2195         * python/py-type.c (gdbpy_initialize_types): Use
2196         gdb_pymodule_addobject.
2197         * python/py-utils.c (gdb_pymodule_addobject): New function.
2198         * python/py-value.c (gdbpy_initialize_values): Use
2199         gdb_pymodule_addobject.
2200         * python/python-internal.h (gdb_pymodule_addobject): Declare.
2201         * python/python.c (_initialize_python): Use
2202         gdb_pymodule_addobject.
2203
2204 2013-05-20  Tom Tromey  <tromey@redhat.com>
2205
2206         * python/py-cmd.c (cmdpy_completer): Use explicit decref.
2207         * python/py-param.c (get_set_value, get_show_value): Use
2208         explicit decrefs.
2209         * python/python.c (start_type_printers, apply_type_printers):
2210         Use explicit decrefs.
2211
2212 2013-05-20  Tom Tromey  <tromey@redhat.com>
2213
2214         * python/py-evts.c (gdbpy_initialize_py_events): Don't
2215         incref the module.
2216
2217 2013-05-20  Tom Tromey  <tromey@redhat.com>
2218
2219         * python/python.c (gdbpy_run_events): Decref the result
2220         of PyObject_CallObject.
2221
2222 2013-05-20  Tom Tromey  <tromey@redhat.com>
2223
2224         * python/py-symtab.c (set_sal): Use
2225         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.  Return -1 on error.
2226         (symtab_and_line_to_sal_object): Update.
2227
2228 2013-05-20  Tom Tromey  <tromey@redhat.com>
2229
2230         * python/py-param.c (compute_enum_values): Decref 'item'.
2231
2232 2013-05-20  Tom Tromey  <tromey@redhat.com>
2233
2234         * mi/mi-main.c: Include python-internal.h.
2235         (mi_cmd_list_features): Check gdb_python_initialized.
2236         * python/py-inferior.c (python_on_normal_stop, python_on_resume)
2237         (python_inferior_exit, python_new_objfile, add_thread_object)
2238         (delete_thread_object, py_free_inferior): Check
2239         gdb_python_initialized.
2240         * python/py-prettyprint.c (apply_val_pretty_printer): Check
2241         gdb_python_initialized.
2242         * python/py-type.c (save_objfile_types): Check
2243         gdb_python_initialized.
2244         * python/python-internal.h (gdb_python_initialized): Declare.
2245         * python/python.c (ensure_python_env): Throw exception if
2246         Python not initialized.
2247         (before_prompt_hook, source_python_script_for_objfile)
2248         (start_type_printers, apply_type_printers,
2249         free_type_printers): Check gdb_python_initialized.
2250         * varobj.c (varobj_get_display_hint)
2251         (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
2252         (install_new_value_visualizer, varobj_set_visualizer)
2253         (value_get_print_value): Check gdb_python_initialized.
2254
2255 2013-05-20  Tom Tromey  <tromey@redhat.com>
2256
2257         * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
2258         Check errors.
2259         * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
2260         * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
2261         Check errors.
2262         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
2263         Check errors.
2264         * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
2265         Check errors.
2266         * python/py-event.c (gdbpy_initialize_event): Return 'int'.
2267         Check errors.
2268         * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
2269         init function to return 'int'.
2270         * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
2271         Return 'int'.  Check errors.
2272         * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
2273         Check errors.
2274         * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
2275         Return 'int'.  Check errors.
2276         * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
2277         Check errors.
2278         * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
2279         Check errors.
2280         * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
2281         Check errors.
2282         * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
2283         Check errors.
2284         * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
2285         Check errors.
2286         * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
2287         Check errors.
2288         * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
2289         Check errors.
2290         * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
2291         Check errors.
2292         * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
2293         Check errors.
2294         * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
2295         Check errors.
2296         * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
2297         Check errors.
2298         * python/py-type.c (gdbpy_initialize_types): Return 'int'.
2299         Check errors.
2300         * python/py-value.c (gdbpy_initialize_values): Return 'int'.
2301         Check errors.
2302         * python/python-internal.h (gdbpy_initialize_auto_load,
2303         gdbpy_initialize_values, gdbpy_initialize_frames,
2304         gdbpy_initialize_symtabs, gdbpy_initialize_commands,
2305         gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
2306         gdbpy_initialize_blocks, gdbpy_initialize_types,
2307         gdbpy_initialize_functions, gdbpy_initialize_pspace,
2308         gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
2309         gdbpy_initialize_finishbreakpoints,
2310         gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
2311         gdbpy_initialize_thread, gdbpy_initialize_inferior,
2312         gdbpy_initialize_eventregistry, gdbpy_initialize_event,
2313         gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
2314         gdbpy_initialize_signal_event,
2315         gdbpy_initialize_breakpoint_event,
2316         gdbpy_initialize_continue_event,
2317         gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
2318         gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
2319         Update.  Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
2320         * python/python.c (gdb_python_initialized): New global.
2321         (gdbpy_initialize_events): Return 'int'.  Check errors.
2322         (_initialize_python): Check errors.  Set
2323         gdb_python_initialized.
2324
2325 2013-05-20  Tom Tromey  <tromey@redhat.com>
2326
2327         * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
2328         Decref the reslut of PyObject_CallMethod.
2329
2330 2013-05-20  Tom Tromey  <tromey@redhat.com>
2331
2332         * python/py-event.c (gdbpy_initialize_event_generic): Return
2333         early if PyType_Ready fails.
2334
2335 2013-05-20  Tom Tromey  <tromey@redhat.com>
2336
2337         * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
2338         as 'default' in the switch.
2339
2340 2013-05-20  Tom Tromey  <tromey@redhat.com>
2341
2342         * python/py-inferior.c (gdbpy_inferiors): Update.  Hoist
2343         get_addr_from_python calls out of TRY_CATCH.
2344         (infpy_write_memory, infpy_search_memory): Likewise.
2345         * python/py-utils.c (get_addr_from_python): Return negative
2346         value on error.  Use TRY_CATCH.
2347         * python/python-internal.h (get_addr_from_python): Use
2348         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
2349
2350 2013-05-20  Tom Tromey  <tromey@redhat.com>
2351
2352         * python/py-event.c (evpy_emit_event): Decref the
2353         result of PyObject_CallFunctionObjArgs.
2354
2355 2013-05-20  Tom Tromey  <tromey@redhat.com>
2356
2357         * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
2358         Correctly decref.
2359
2360 2013-05-20  Tom Tromey  <tromey@redhat.com>
2361
2362         * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
2363
2364 2013-05-20  Tom Tromey  <tromey@redhat.com>
2365
2366         * python/py-event.h (gdbpy_initialize_event_generic): Use
2367         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
2368         * python/py-evts.c (add_new_registry): Use
2369         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
2370         * python/python-internal.h
2371         (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
2372
2373 2013-05-20  Tom Tromey  <tromey@redhat.com>
2374
2375         * python/py-arch.c (archpy_disassemble): Update.
2376         * python/py-type.c (typy_get_composite, typy_lookup_typename)
2377         (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
2378         * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
2379         * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
2380         macro.
2381         (GDB_PY_HANDLE_EXCEPTION): Update.
2382         (gdbpy_convert_exception): Update.  Use CPYCHECKER_SETS_EXCEPTION.
2383
2384 2013-05-20  Tom Tromey  <tromey@redhat.com>
2385
2386         * python/python-internal.h (events_object_type): Remove.
2387
2388 2013-05-20  Tom Tromey  <tromey@redhat.com>
2389
2390         * python/py-event.h (evpy_emit_event): Use
2391         CPYCHECKER_STEALS_REFERENCE_TO_ARG.
2392         * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
2393         New macro.
2394
2395 2013-05-20  Tom Tromey  <tromey@redhat.com>
2396
2397         * py-evtregistry.c (create_event_object): Decref
2398         eventregistry_object if PyList_New fails.
2399
2400 2013-05-20  Tom Tromey  <tromey@redhat.com>
2401
2402         * py-cmd.c (gdbpy_string_to_argv): Check result of
2403         PyList_New.
2404
2405 2013-05-20  Tom Tromey  <tromey@redhat.com>
2406
2407         * python/python.c (before_prompt_hook): Add cleanup to
2408         decref 'hook'.
2409
2410 2013-05-20  Tom Tromey  <tromey@redhat.com>
2411
2412         * python/py-function.c (fnpy_init): Decref result of
2413         PyObject_GetAttrString.
2414
2415 2013-05-20  Tom Tromey  <tromey@redhat.com>
2416
2417         * python/py-threadevent.c (get_event_thread): Use
2418         CPYCHECKER_RETURNS_BORROWED_REF.
2419         * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
2420         New define.
2421         (pspace_to_pspace_object, objfile_to_objfile_object)
2422         (find_thread_object): Use it.
2423
2424 2013-05-20  Tom Tromey  <tromey@redhat.com>
2425
2426         * python/py-arch.c (arch_object_type): Use
2427         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2428         * python/py-block.c (block_syms_iterator_object_type):
2429         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2430         * python/py-bpevent.c (breakpoint_event_object_type):
2431         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2432         * python/py-cmd.c (cmdpy_object_type): Use
2433         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2434         * python/py-continueevent.c (continue_event_object_type):
2435         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2436         * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
2437         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2438         * python/py-events.h (thread_event_object_type):
2439         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2440         * python/py-evtregistry.c (eventregistry_object_type): Use
2441         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2442         * python/py-exitedevent.c (exited_event_object_type):
2443         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2444         * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
2445         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2446         * python/py-function.c (fnpy_object_type): Use
2447         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2448         * python/py-inferior.c (inferior_object_type, membuf_object_type):
2449         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2450         * python/py-infthread.c (thread_object_type): Use
2451         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2452         * python/py-lazy-string.c (lazy_string_object_type):
2453         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2454         * python/py-newobjfileevent.c (new_objfile_event_object_type):
2455         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2456         * python/py-objfile.c (objfile_object_type): Use
2457         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2458         * python/py-param.c (parmpy_object_type):
2459         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2460         * python/py-progspace.c (pspace_object_type):
2461         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2462         * python/py-signalevent.c (signal_event_object_type):
2463         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2464         * python/py-symtab.c (symtab_object_type, sal_object_type): Use
2465         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2466         * python/py-type.c (type_object_type, field_object_type)
2467         (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2468         * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
2469         define.
2470         (value_object_type, block_object_type, symbol_object_type)
2471         (event_object_type, stop_event_object_type, breakpoint_object_type)
2472         (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
2473
2474 2013-05-20  Andreas Tobler  <andreas@fgznet.ch>
2475
2476         * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
2477         (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
2478
2479 2013-05-20  Doug Evans  <dje@google.com>
2480
2481         When reading CU, stay in DWO.  Be more tolerent of bad debug info.
2482         For Fission.
2483         * dwarf2read.c (struct dwarf2_per_cu_data): New member
2484         reading_dwo_directly.
2485         (struct signatured_type): New member dwo_unit.
2486         (struct die_reader_specs): New member comp_dir.
2487         (create_signatured_type_table_from_index): Use malloc for
2488         all_type_units instead of objfile's obstack.
2489         (create_all_type_units): Ditto.
2490         (fill_in_sig_entry_from_dwo_entry): New function.
2491         (add_type_unit): New function.
2492         (lookup_dwo_signatured_type): New function.
2493         (lookup_dwp_signatured_type): New function.
2494         (lookup_signatured_type): New arg cu.  All callers updated.
2495         (init_cu_die_reader): Initialize comp_dir.
2496         (read_cutu_die_from_dwo): New arg stub_comp_dir.  All callers updated.
2497         Change assert of matching type signatures to call error on mismatch.
2498         (lookup_dwo_unit): Add assert.
2499         (init_tu_and_read_dwo_dies): New function.
2500         (init_cutu_and_read_dies): Call it.
2501         (build_type_unit_groups): Handle case of no type unit groups created.
2502         (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
2503         (lookup_dwo_cutu): Tweak complaint.
2504         (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
2505         (dwarf2_per_objfile_free): Free all_type_units.
2506
2507 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
2508
2509         * windows-nat.c (handle_unload_dll): Add missing empty line.
2510
2511 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
2512
2513         * dwarf2read.c (prototyped_function_p): New function.
2514         (read_subroutine_type): Use it.
2515
2516 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
2517
2518         * rs6000-aix-tdep.c: De-indent some example code provided
2519         as a comment.
2520
2521 2013-05-17  Edjunior Machado  <emachado@linux.vnet.ibm.com>
2522
2523         * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
2524         region is ok for a hardware watchpoint using the new ptrace interface
2525         on Power servers.
2526
2527 2013-05-17  Doug Evans  <dje@google.com>
2528
2529         * NEWS: Mention new maintenance commands check-symtabs, and
2530         expand-symtabs, and renamed check-psymtabs.
2531         * psymtab.c (maintenance_check_psymtabs): Renamed from
2532         maintenance_check_symtabs.  Only process already-expanded symbol
2533         tables.
2534         (_initialize_psymtab): Update.
2535         * symmisc.c (maintenance_check_symtabs): New function.
2536         (maintenance_expand_name_matcher): New function
2537         (maintenance_expand_file_matcher): New function
2538         (maintenance_expand_symtabs): New function.
2539         (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
2540         commands.
2541
2542 2013-05-17  Tom Tromey  <tromey@redhat.com>
2543
2544         * python/py-inferior.c (infpy_read_memory): Don't call
2545         PyErr_SetString if PyObject_New fails.
2546         * python/py-frame.c (frame_info_to_frame_object): Don't call
2547         PyErr_SetString if PyObject_New fails.
2548
2549 2013-05-17  Pavel Chupin  <pavel.v.chupin@intel.com>
2550
2551         * acinclude.m4: Add check for dlopen in libdl.
2552         * configure.ac: Ditto.
2553         * configure: Regenerate.
2554
2555 2013-05-17  Phil Muldoon  <pmuldoon@redhat.com>
2556
2557         * frame.c (frame_stash): Convert to htab.
2558         (frame_addr_hash): New function.
2559         (frame_addr_hash_eq): New function.
2560         (frame_stash_create): Convert function to create
2561         a hash table.
2562         (frame_stash_add): Convert function to add an entry to a hash
2563         table.
2564         (frame_stash_find): Convert function to search the hash table.
2565         (frame_stash_invalidate): Convert function to empty the hash
2566         table.
2567         (get_frame_id): Only add to stash if a frame_id is created.
2568         (_initialize_frame): Call frame_stash_create.
2569
2570 2013-05-16  Yue Lu  <hacklu.newborn@gmail.com>  (tiny change)
2571
2572         * configure.ac: Ensure MIG is available when building for GNU Hurd
2573         hosts.
2574         * configure: Regenerate.
2575
2576 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
2577
2578         * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
2579
2580 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
2581
2582         * ada-lang.c (ada_make_symbol_completion_list): Make sure
2583         all cleanups are done before returning from this function.
2584
2585 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
2586
2587         * utils.h: #include "exceptions.h".
2588         (enum errors): Remove partial declaration.
2589
2590 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
2591
2592         * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
2593         * gdbarch.h, gdbarch.c: Regenerate.
2594         * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
2595         handling.
2596
2597         * rs6000-aix-tdep.h: New file.
2598         * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
2599         * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
2600         "xml-utils.h".
2601         (struct field_info, struct ld_info_desc): New types.
2602         (ld_info32_desc, ld_info64_desc): New static constants.
2603         (struct ld_info): New type.
2604         (rs6000_aix_extract_ld_info): New function.
2605         (rs6000_aix_shared_library_to_xml): Likewise.
2606         (rs6000_aix_ld_info_to_xml): Likewise.
2607         (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
2608         (rs6000_aix_init_osabi): Add call to
2609         set_gdbarch_core_xfer_shared_libraries_aix.
2610         * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
2611         Remove "xml-utils.h" include.
2612         (LdInfo): Delete typedef.
2613         (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
2614         Delete macros.
2615         (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
2616         Adjust code accordingly.
2617         (rs6000_core_ldinfo): Delete, folded into
2618         rs6000_aix_core_xfer_shared_libraries_aix.
2619         (rs6000_xfer_shared_library): Delete.
2620         (rs6000_xfer_shared_libraries): Reimplement.
2621
2622 2013-05-15  Markus Metzger  <markus.t.metzger@intel.com>
2623
2624         * record.c (record_goto_cmdlist): New.
2625         (cmd_record_goto): Split into this ...
2626         (cmd_record_goto_begin): ... this
2627         (cmd_record_goto_end): ... and this.
2628         (_initialize_record): Change "record goto" to prefix command.
2629         Add commands for "record goto begin" and "record goto end".
2630         Add an alias for "record goto start" to "record goto begin".
2631
2632 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
2633
2634         * linespec.c (convert_linespec_to_sals): New comment for
2635         SOURCE_FILENAME assignment.
2636
2637 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
2638
2639         * cleanups.c (restore_my_cleanups): Replace gdb_assert by
2640         internal_warning.
2641
2642 2013-05-14  Tom Tromey  <tromey@redhat.com>
2643
2644         * eval.c (parse_and_eval_long): Make 'exp' const.
2645         * value.h (parse_and_eval_long): Update.
2646
2647 2013-05-14  Tom Tromey  <tromey@redhat.com>
2648
2649         * ui-file.c (gdb_fopen): Make arguments const.
2650         * ui-file.h (gdb_fopen): Make arguments const.
2651
2652 2013-05-14  Tom Tromey  <tromey@redhat.com>
2653
2654         * remote.c (remote_set_trace_notes): Make arguments const.
2655         * target.c (update_current_target): Update cast.
2656         * target.h (to_set_trace_notes): Make arguments const.
2657
2658 2013-05-14  Tom Tromey  <tromey@redhat.com>
2659
2660         * go32-nat.c (go32_terminal_info): Make 'args' const.
2661         * inferior.h (child_terminal_info): Update.
2662         * inflow.c (child_terminal_info): Make 'args' const.
2663         * target.c (default_terminal_info): Make 'args' const.
2664         (debug_to_terminal_save_ours): Likewise.
2665         * target.h (struct target_ops) <to_terminal_info>: Make argument
2666         const.
2667
2668 2013-05-13  Tom Tromey  <tromey@redhat.com>
2669
2670         * gcore.c (create_gcore_bfd): Make 'filename' const.
2671         * gcore.h (create_gcore_bfd): Make 'filename' const.
2672         * record-full.c (record_full_save): Make 'recfilename' const.
2673         * target.c (target_save_record): Make 'filename' const.
2674         * target.h (struct target_ops) <to_save_record>: Make 'filename'
2675         const.
2676         (target_save_record): Likewise.
2677
2678 2013-05-13  Tom Tromey  <tromey@redhat.com>
2679
2680         PR gdb/15338:
2681         * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
2682         ranges section has been read.
2683
2684 2013-05-13  Tom Tromey  <tromey@redhat.com>
2685
2686         PR exp/15364:
2687         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
2688         STRUCTOP_PTR>: Return a not_lval value for
2689         EVAL_AVOID_SIDE_EFFECTS.
2690         * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
2691         for EVAL_AVOID_SIDE_EFFECTS.
2692
2693 2013-05-13  Joel Brobecker  <brobecker@adacore.com>
2694
2695         * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
2696         floating point registers to register type before storing
2697         value.
2698         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
2699         Likewise.
2700
2701 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
2702             Tom Tromey  <tromey@redhat.com>
2703
2704         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
2705         New functions.
2706         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
2707         Declare.
2708         * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
2709         (darwin_ptrace_him): Use unmark_fd_no_cloexec.
2710         * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
2711         (inf_ttrace_prepare): Use mark_fd_no_cloexec.
2712
2713 2013-05-10  Freddie Chopin  <freddie_chopin@op.pl>
2714             Tom Tromey  <tromey@redhat.com>
2715
2716         PR build/15414:
2717         * configure: Rebuild.
2718         * configure.ac (build_warnings): Do not use -Wformat-nonliteral
2719         with -Wno-format.
2720
2721 2013-05-10  Pedro Alves  <palves@redhat.com>
2722
2723         * remote.c (_initialize_remote): Fix spelling of
2724         qXfer:traceframe-info:read packet in packet config command.
2725
2726 2013-05-10  David Taylor  <dtaylor@emc.com>
2727
2728         PR remote/15455
2729
2730         * remote.c (remote_trace_set_readonly_regions): Do not overwrite
2731         "QTro" at start of packet.
2732
2733 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
2734
2735         * solib-aix.c (solib_aix_relocate_section_addresses):
2736         For the .bss section action, apply the same offset as
2737         the .data section.
2738
2739 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
2740
2741         * solib-aix.c (solib_aix_relocate_section_addresses):
2742         Remove FIXME comment.
2743
2744 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
2745
2746         PR tdep/15420:
2747         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2748         New functions, directly copied from sparc-sol-thread.c.
2749         * sparc-sol-thread.c: Delete.
2750         * configure.ac: Remove code handling sparc-solaris-thread.c.
2751         * configure: Regenerate.
2752
2753 2013-05-10  Phil Muldoon  <pmuldoon@redhat.com>
2754
2755         * stack.c (backtrace_command_1): Add "no-filters", and Python frame
2756         filter logic.
2757         (backtrace_command): Add "no-filters" option parsing.
2758         (_initialize_stack): Alter help to reflect "no-filters" option.
2759         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
2760         (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
2761         (py-frame.o): Add target
2762         * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
2763         filter files.
2764         * python/python.h: Add new frame filter constants, and flag enum.
2765         (apply_frame_filter): Add definition.
2766         * python/python.c (apply_frame_filter): New non-Python
2767         enabled function.
2768         * python/py-utils.c (py_xdecref): New function.
2769         (make_cleanup_py_xdecref): Ditto.
2770         * python/py-objfile.c: Declare frame_filters dictionary.
2771         (objfpy_dealloc): Add frame_filters dealloc.
2772         (objfpy_new): Initialize frame_filters attribute.
2773         (objfile_to_objfile_object): Ditto.
2774         (objfpy_get_frame_filters): New function.
2775         (objfpy_set_frame_filters): New function.
2776         * python/py-progspace.c: Declare frame_filters dictionary.
2777         (pspy_dealloc): Add frame_filters dealloc.
2778         (pspy_new): Initialize frame_filters attribute.
2779         (pspacee_to_pspace_object): Ditto.
2780         (pspy_get_frame_filters): New function.
2781         (pspy_set_frame_filters): New function.
2782         * python/py-framefilter.c: New file.
2783         * python/lib/gdb/command/frame_filters.py: New file.
2784         * python/lib/gdb/frames.py: New file.
2785         * python/lib/gdb/__init__.py: Initialize global frame_filters
2786         dictionary
2787         * python/lib/gdb/FrameDecorator.py: New file.
2788         * python/lib/gdb/FrameIterator.py: New file.
2789         * mi/mi-cmds.c (mi_cmds): Add frame filters command.
2790         * mi/mi-cmds.h: Declare.
2791         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
2792         --no-frame-filter logic, and Python frame filter logic.
2793         (stack_enable_frame_filters): New function.
2794         (parse_no_frame_option): Ditto.
2795         (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
2796         filter logic.
2797         (mi_cmd_stack_list_locals): Ditto.
2798         (mi_cmd_stack_list_args): Ditto.
2799         (mi_cmd_stack_list_variables): Ditto.
2800         * NEWS: Add frame filter note.
2801
2802 2013-05-09  Doug Evans  <dje@google.com>
2803
2804         * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
2805         All callers updated.
2806         (syms_from_objfile): Ditto.  Make static.
2807         (symbol_file_add_with_addrs): Renamed from
2808         symbol_file_add_with_addrs_or_offsets.  Delete args offsets,
2809         num_offsets.  All callers updated.
2810         * symfile.h (syms_from_objfile): Delete.
2811
2812         * symfile.c (decrement_reading_symtab): Add assert.
2813         (increment_reading_symtab): Ditto.
2814
2815 2013-05-09  Joel Brobecker  <brobecker@adacore.com>
2816
2817         * source.c (forward_search_command): Replace call to getc
2818         by call to fgetc.
2819         (reverse_search_command): Likewise.
2820
2821 2013-05-08  Doug Evans  <dje@google.com>
2822
2823         * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
2824         matching test.
2825
2826 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
2827
2828         * sol-thread.c (info_cb): Factorize the code a little.
2829
2830 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
2831
2832         * sol-thread.c (info_cb): Rework the output of the "maintenance
2833         info sol-threads" command a bit.
2834
2835 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
2836
2837         * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
2838         Replace ti.ti_startfunc by ti.ti_pc.
2839
2840 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
2841
2842         * solib-aix.c (solib_aix_free_library_list): New function
2843         for the case where HAVE_LIBEXPAT is not defined.
2844
2845 2013-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
2846
2847         PR breakpoints/15413:
2848         * breakpoint.c (condition_completer): Simplify the code to
2849         disconsider multiple locations of breakpoints when completing the
2850         "condition" command.
2851
2852 2013-05-07  Pierre Muller  <muller@sourceware.org>
2853
2854         * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
2855         instead of <sys/wait.h>.
2856
2857 2013-05-07  Pierre Muller  <muller@sourceware.org>
2858
2859         * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
2860         trailing new line from warning message.
2861
2862 2013-05-07  Pierre Muller  <muller@sourceware.org>
2863
2864         * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
2865         (PC_SOLIB): Change type from ari_deprecate to ari_regression.
2866
2867 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
2868
2869         * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
2870         error message (ARI fix).
2871
2872 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
2873
2874         * features/library-list-aix.dtd: Replace library-list by
2875         library-list-aix.
2876         * rs6000-nat.c: Replace library-list by library-list-aix
2877         throughout.
2878         * solib-aix.c: Likewise.
2879
2880 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
2881
2882         * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
2883         Renames TARGET_OBJECT_AIX_LIBRARIES.
2884         * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
2885         TARGET_OBJECT_LIBRARIES_AIX throughout.
2886         * solib-aix.c: Likwise.
2887
2888 2013-05-07  Yao Qi  <yao@codesourcery.com>
2889
2890         * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
2891         (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
2892
2893 2013-05-07  Yao Qi  <yao@codesourcery.com>
2894
2895         * solib-dsbt.c (enable_break): Declare.
2896         (dsbt_current_sos): Remove call to enable_break2.
2897         (enable_break2): Rename to enable_break.  Set solib breakpoint
2898         on '_dl_debug_state'.
2899         (enable_break): Remove.
2900
2901 2013-05-07  Luis Machado  <lgustavo@codesourcery.com>
2902
2903         * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
2904         debug state prior to replicating existing hardware watchpoints or
2905         breakpoints.
2906
2907 2013-05-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
2908
2909         * gcore.c (gcore_create_callback): Ignore sections with
2910         separate_debug_objfile_backlink != NULL.
2911
2912 2013-05-06  Sandra Loosemore  <sandra@codesourcery.com>
2913             Andrew Jenner  <andrew@codesourcery.com>
2914             Chung-Lin Tang  <cltang@codesourcery.com>
2915             Julian Brown  <julian@codesourcery.com>
2916
2917         Based on the nios2-elf port from Altera Corporation.
2918
2919         * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
2920         nios2-linux-tdep.o.
2921         (HFILES_NO_SRCDIR): Add nios2-tdep.h.
2922         (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
2923         * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
2924         * nios2-tdep.h: New.
2925         * nios2-tdep.c: New.
2926         * nios2-linux-tdep.c: New.
2927         * features/Makefile (WHICH): Add nios2-linux.
2928         (nios2-linux-expedite): Set.
2929         * features/nios2-cpu.xml: New.
2930         * features/nios2.xml: New.
2931         * features/nios2-linux.xml: New.
2932         * features/nios2.c: New (autogenerated).
2933         * features/nios2-linux.c: New (autogenerated).
2934         * regformats/nios2-linux.dat: New (autogenerated).
2935         * NEWS (Changes since GDB 7.6): Add new Nios II targets
2936         and commands.
2937
2938 2013-05-06  Doug Evans  <dje@google.com>
2939
2940         * symfile.c: Whitespace cleanup.
2941
2942         * solist.h (struct target_so_ops): New member clear_so.
2943         * solib-svr4.c (svr4_clear_so): New function.
2944         (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
2945         * solib.c (clear_so): Renamed from free_so_symbols.
2946         All callers updated.  Call target clear_so if it exists.
2947
2948 2013-05-06  Tom Tromey  <tromey@redhat.com>
2949
2950         * ada-lang.c (ada_value_primitive_packed_val): Don't
2951         call value_incref.
2952         * value.c (set_value_parent): Incref the new parent and decref
2953         the old parent.
2954         (value_copy, value_primitive_field): Use set_value_parent.
2955
2956 2013-05-06  Tom Tromey  <tromey@redhat.com>
2957
2958         * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
2959         (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
2960         if needed.
2961         * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
2962         * dwarf2read.c (write_constant_as_bytes)
2963         (dwarf2_fetch_constant_bytes): New functions.
2964
2965 2013-05-06  Tom Tromey  <tromey@redhat.com>
2966
2967         * dwarf2read.c (dwarf2_const_value_data): Remove unused
2968         parameters.
2969         (dwarf2_const_value_attr): Update.
2970
2971 2013-05-06  Tom Tromey  <tromey@redhat.com>
2972
2973         * somread.c (som_symfile_offsets): Add 'const' to addrs.
2974         * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
2975         * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
2976         Remove declaration.
2977
2978 2013-05-06  Tom Tromey  <tromey@redhat.com>
2979
2980         * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
2981         objfile's obstack.
2982
2983 2013-05-06  Doug Evans  <dje@google.com>
2984
2985         * dbxread.c (process_one_symbol): Constify section_offsets parameter.
2986         * stabsread.h (process_one_symbol): Update declaration.
2987         * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
2988         * elfread.c (elf_symfile_relocate_probe): Ditto.
2989         * psymtab.c (relocate_psymtabs): Ditto.
2990         * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
2991         (objfile_relocate): Ditto.
2992         * objfiles.h (objfile_relocate): Update declaration.
2993         * symfile.c (relative_addr_info_to_section_offsets): Constify
2994         addrs parameter.
2995         (default_symfile_offsets): Ditto.
2996         (syms_from_objfile_1): Constify offsets parameter.
2997         (syms_from_objfile): Ditto.
2998         (symbol_file_add_with_addrs_or_offsets): Ditto.
2999         (symfile_map_offsets_to_segments): Constify data parameter.
3000         * symfile.h (struct quick_symbol_functions): Constify new_offsets,
3001         delta parameters of member relocate.
3002         (struct sym_probe_fns): Constify new_offsets,
3003         delta parameters of member sym_relocate_probe.
3004         (struct sym_fns): Constify section_addr_info parameter of member
3005         sym_offsets.
3006         (relative_addr_info_to_section_offsets): Update declaration.
3007         (default_symfile_offsets): Ditto.
3008         (syms_from_objfile): Ditto.
3009         (symfile_map_offsets_to_segments): Ditto.
3010
3011         * symfile.c (syms_from_objfile_1): Use correct section count when
3012         objfile->sf == NULL.
3013
3014 2013-05-06  Mike Frysinger  <vapier@gentoo.org>
3015
3016         * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
3017
3018 2013-05-06  Doug Evans  <dje@google.com>
3019
3020         * psympriv.h (struct partial_symtab): Augment comment for member
3021         section_offsets.
3022
3023 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
3024
3025         Reimplement shared library support on ppc-aix...
3026         * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
3027         * features/library-list-aix.dtd: New file.
3028         * solib-aix.h, solib-aix.c: New file.
3029         * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
3030         (rs6000_find_toc_address_hook): Delete.
3031         (rs6000_push_dummy_call): Rewrite code setting the TOC value.
3032         (rs6000_aix_init_osabi): Register solib_aix_so_ops.
3033         * rs6000-nat.c: Remove "xcoffsolib.h" include.  Include
3034         "xml-utils.h".
3035         (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
3036         (vmap_symtab, fixup_breakpoints): Delete.
3037         (rs6000_xfer_shared_libraries): New function.
3038         (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
3039         (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
3040         (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
3041         (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
3042         (rs6000_xfer_shared_library): New function.
3043         (find_toc_address): Delete.
3044         (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
3045         * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
3046         * xcoffread.c (record_minimal_symbol): Reloate symbol address
3047         before creating minimal symbol.  Adjust function description
3048         accordingly.
3049         (scan_xcoff_symtab): Replace call to
3050         prim_record_minimal_symbol_and_info by call to
3051         record_minimal_symbol.
3052         (xcoff_symfile_offsets): Reimplement mostly as a wrapper
3053         around default_symfile_offsets.
3054         * configure.tgt: Add solib-aix.o to gdb_target_obs for
3055         powerpc-aix targets.
3056         * config/rs6000/nm-rs6000.h: Delete.
3057         * config/powerpc/aix.mh (NAT_FILE): Delete.
3058         (NATDEPFILES): Remove xcoffsolib.o.
3059         * Makefile.in (XMLFILES): Add library-list-aix.dtd.
3060         (ALL_TARGET_OBS): Add solib-aix.o.
3061         (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
3062         config/rs6000/nm-rs6000.h.  Add solib-aix.h.
3063         (ALLDEPFILES): Add solib-aix.c.  Remove xcoffsolib.c.
3064         * xcoffsolib.h, xcoffsolib.c: Delete.
3065
3066         * solib.c (reload_shared_libraries): Remove reference to
3067         SOLIB_CREATE_INFERIOR_HOOK.
3068         * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
3069         (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
3070         (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
3071         comment.
3072         * corelow.c (deprecated_core_resize_section_table): Delete.
3073         * exec.c: Remove include of xcoffsolib.h".
3074         (map_vmap, vmap): Delete.
3075         (exec_close_1): Remove references to vmap.
3076         (exec_file_attach): Remove vmap handling code, and reference
3077         to DEPRECATED_IBM6000_TARGET.
3078         (bfdsec_to_vmap): Delete.
3079         (exec_files_info): Remove block of code handling VMAP.
3080         * infcmd.c (post_create_inferior): Remove reference to
3081         SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
3082         * infrun.c (follow_exec): Remove reference to
3083         SOLIB_CREATE_INFERIOR_HOOK.
3084         * stack.c (print_frame): Remove reference to PC_SOLIB.
3085         * solib-dsbt.c (dsbt_current_sos): Adjust comment.
3086         (dsbt_relocate_main_executable): Likewise.
3087         * solib-frv.c (frv_current_sos): Likewise.
3088
3089 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
3090
3091         * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
3092         to target_write_memory and target_read_memory.
3093
3094 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
3095
3096         * darwin-nat.c (darwin_setup_fake_stop_event): New function.
3097         (darwin_attach): Adjust using darwin_setup_fake_stop_event.
3098
3099 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
3100
3101         * darwin-nat.c: Replace all "%x" instances in format strings
3102         into "0x%x" throughout.
3103
3104 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
3105
3106         * darwin-nat.c (darwin_mourn_inferior): Replace call to
3107         gdb_assert by call to MACH_CHECK_ERROR.
3108         (darwin_attach_pid): Raise an error rather than a failed
3109         assertion when various system calls failed.  Report a warning
3110         instead of raising a failed assertion when PREV_NOT is not NULL
3111         after call to mach_port_request_notification.
3112         (darwin_ptrace_me): Raise an error rather than a failed
3113         assertion when read returns nonzero.
3114
3115 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
3116
3117         * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
3118
3119 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
3120
3121         * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
3122
3123 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
3124
3125         * event-top.c (display_gdb_prompt): Call missing do_cleanups.
3126         * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
3127         * symfile.c (symfile_bfd_open): New variable back_to.  Do not leave
3128         a stale cleanup.  Fix double free of NAME.
3129
3130 2013-05-04  Eli Zaretskii  <eliz@gnu.org>
3131
3132         * windows-nat.c (windows_delete_thread): Accept an additional
3133         argument, the thread's exit code, and announce thread death when
3134         print_thread_events is non-zero and we are deleting a thread that
3135         is not the main thread.
3136         (get_windows_debug_event): Pass thread exit code to
3137         windows_delete_thread.
3138
3139 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
3140
3141         * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
3142         (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
3143         (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
3144         (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
3145         (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
3146         (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
3147         (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
3148         (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
3149         (gdbarch_tdep): New struct.
3150         (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
3151         E_NUM_REGS.
3152         (v850e3v5_register_name): New function.
3153         (v850_register_type): v850e3v5 vector registers are 64-bits wide.
3154         (v850_use_struct_convention): Add `gdbarch' parameter.  Add new
3155         code handling the struct return conventions for the RH850 ABI.
3156         Update all callers.
3157         (v850_eight_byte_align_p): New function.
3158         (v850_push_call_dummy): Push structs by value, not by reference
3159         for the RH850 ABI.  Add support for eight byte alignment.
3160         (v850_dbtrap_breakpoint_from_pc): New function.
3161         (v850_gdbarch_init): Add ABI detection code.  Register
3162         v850e3v5_register_name for the v850e3v5 architecture.  Set the
3163         number of registers for v850e3v5.  Register
3164         v850_dbtrap_breakpoint_from_pc as appropriate.
3165         (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
3166
3167 2013-05-03  Doug Evans  <dje@google.com>
3168
3169         * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
3170         of bfd_count_sections.
3171         * solib-target.c (solib_target_relocate_section_addresses): Ditto.
3172         * symfile.c (default_symfile_offsets): Ditto.
3173         (syms_from_objfile_1): Ditto.  Make dummy addrs list an array of
3174         one entry, not bfd_count_sections entries.
3175
3176 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
3177
3178         * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
3179         `save' and `restore' register groups.  Don't include SPL
3180         or SPH in these groups.
3181         (rl78_dwarf_reg_to_regnum):  Adjust mapping for
3182         RL78_PC_REGNUM.  Add mappings for RL78_PSW_REGNUM,
3183         RL78_ES_REGNUM, and RL78_CS_REGNUM.
3184         (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4.  Invoke
3185         dwarf2_append_unwinders().
3186
3187 2013-05-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
3188
3189         * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
3190         ignore SIGINT and SIGTRAP in case these internal signals are
3191         caught explicitely.
3192
3193 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
3194
3195         * darwin-nat.c (darwin_read_write_inferior): Change types
3196         of parameters rdaddr and wraddr to "gdb_byte *". Change type
3197         of copy_count to "mach_msg_type_number_t".
3198         (darwin_read_dyld_info): Change type of parameter
3199         rdaddr to "gdb_byte *".
3200
3201 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
3202
3203         * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
3204         of &info->load_map from "char *" to "gdb_byte *".
3205
3206 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
3207
3208         * ia64-tdep.c (ia64_access_fpreg): Change cast of val
3209         from "char *" to "gdb_byte *".
3210         (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
3211
3212 2013-04-30  Doug Evans  <dje@google.com>
3213
3214         * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
3215         (init_cutu_and_read_dies): Flag a complaint, not error, for bad
3216         DWO stub.  If DWO isn't found, just use stub.
3217         (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
3218
3219         * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
3220         calling init_cutu_and_read_dies.
3221
3222 2013-03-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
3223
3224         * target-descriptions.c (maint_print_c_tdesc_cmd):
3225         Add case to parse structures as register types and
3226         bitfields.
3227
3228 2013-04-30  Walfred Tedeschi  <walfred.tedeschi@intel.com>
3229
3230         * MAINTAINERS (Write After Approval): Add myself to the list.
3231
3232 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
3233
3234         * sol-thread.c (rw_common): Change type of parameter "buf"
3235         to "gdb_byte *".
3236         (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
3237         rw_common to "gdb_byte *" instead of "char *".
3238
3239 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
3240
3241         * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
3242         of local variable msym to const struct bound_minimal_symbol.
3243         Adjust use accordingly.
3244         [ti.ti_state == TD_THR_SLEEP]: Likewise.
3245
3246 2013-04-30  Samuel Thibault  <samuel.thibault@gnu.org>
3247
3248         * i386gnu-nat.c (CREG_OFFSET): New macro.
3249         (creg_offset): New array.
3250         (CREG_ADDR): Use creg_offset instead of reg_offset.
3251
3252 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
3253
3254         * mep-tdep.c (mep_write_pc): Delete.
3255         (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
3256         Add call to set_gdbarch_pc_regnum.
3257
3258 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
3259
3260         * common/filestuff.c: Replace #include <dirent.h> by
3261         #include "gdb_dirent.h".
3262
3263 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
3264
3265         * common/filestuff.c: Replace #include <sys/stat.h> by
3266         #include "gdb_stat.h".
3267
3268 2013-04-29  Pierre Muller  <muller@sourceware.org>
3269
3270         * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
3271         editCase function rule.
3272         (get_DW_AT_signature_type): Likewise.
3273
3274 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
3275
3276         * m32r-tdep.c (m32r_write_pc): Delete.
3277         (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
3278         Add call to set_gdbarch_pc_regnum.
3279
3280 2013-04-29  Pierre Muller  <muller@sourceware.org>
3281
3282         * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
3283
3284 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
3285
3286         * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
3287
3288 2013-04-28  Yao Qi  <yao@codesourcery.com>
3289
3290         * solib-dsbt.c (fetch_loadmap): Re-indent.
3291         (displacement_from_map, enable_break2): Likewise.
3292         (dsbt_relocate_section_addresses): Likewise.
3293
3294 2013-04-26  Joel Brobecker  <brobecker@adacore.com>
3295
3296         GDB 7.6 released.
3297
3298 2013-04-25  Andreas Kaufmann  <Andreas.Kaufmann@synopsys.com>
3299
3300         PR corefiles/14983:
3301         * dwarf2read.c (process_full_comp_unit): Always create a static
3302         block.
3303
3304 2013-04-25  Hui Zhu  <hui@codesourcery.com>
3305
3306         * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
3307         to loc->cmd_bytecode.
3308
3309 2013-04-24  Doug Evans  <dje@google.com>
3310
3311         * dwarf2read.c (setup_type_unit_groups): Fix comment.
3312
3313 2013-04-22  Keith Seitz  <keiths@redhat.com>
3314
3315         * tracepoint.c (trace_save):  Call the writer's start method.
3316
3317 2013-04-24  Muhammad Bilal  <mbilal@codesourcery.com>
3318
3319         PR gdb/10462
3320         * cli/cli-decode.c (lookup_command): Show an error if there is no space
3321         before argument.
3322
3323 2013-04-23  Tom Tromey  <tromey@redhat.com>
3324
3325         * common/filestuff.c: Check USE_WIN32API before including
3326         sys/socket.h.
3327         (HAVE_F_GETFD): New define.
3328         (mark_cloexec): Check HAVE_F_GETFD.
3329         (gdb_open_cloexec): Change 'mode' to unsigned long.
3330         (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
3331         (gdb_pipe_cloexec): Check HAVE_PIPE.
3332         * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
3333         long.
3334
3335 2013-04-23  Hui Zhu  <hui@codesourcery.com>
3336
3337         PR gdb/15293
3338         * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
3339
3340 2013-04-23  Hui Zhu  <hui@codesourcery.com>
3341
3342         PR gdb/15165
3343         * breakpoint.c (dprintf_print_recreate): New.
3344         (save_breakpoints): Let it not save dprintf commands.
3345         (initialize_breakpoint_ops): Set dprintf_print_recreate.
3346
3347 2013-04-22  Tom Tromey  <tromey@redhat.com>
3348
3349         PR gdb/7912:
3350         * Makefile.in (SFILES): Add filestuff.c
3351         (COMMON_OBS): Add filestuff.o.
3352         (filestuff.o): New target.
3353         * auto-load.c (auto_load_objfile_script_1): Use
3354         gdb_fopen_cloexec.
3355         * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
3356         * cli/cli-cmds.c (shell_escape): Call close_most_fds.
3357         * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
3358         * common/agent.c (gdb_connect_sync_socket): Use
3359         gdb_socket_cloexec.
3360         * common/filestuff.c: New file.
3361         * common/filestuff.h: New file.
3362         * common/linux-osdata.c (linux_common_core_of_thread)
3363         (command_from_pid, commandline_from_pid, print_source_lines)
3364         (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
3365         (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
3366         gdb_fopen_cloexec.
3367         * common/linux-procfs.c (linux_proc_get_int)
3368         (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
3369         * config.in, configure: Rebuild.
3370         * configure.ac: Don't check for sys/socket.h.  Check for
3371         fdwalk, pipe2.
3372         * corelow.c (core_open): Use gdb_open_cloexec.
3373         * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
3374         * fork-child.c (fork_inferior): Call close_most_fds.
3375         * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
3376         * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
3377         * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
3378         Use gdb_fopen_cloexec.
3379         (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
3380         gdb_open_cloexec.
3381         (linux_async_pipe): Use gdb_pipe_cloexec.
3382         * remote-fileio.c (remote_fileio_func_open): Use
3383         gdb_open_cloexec.
3384         * remote.c (remote_file_put, remote_file_get): Use
3385         gdb_fopen_cloexec.
3386         * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
3387         close_most_fds.
3388         * ser-tcp.c (net_open): Use gdb_socket_cloexec.
3389         * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
3390         * solib.c (solib_find): Use gdb_open_cloexec.
3391         * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
3392         * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
3393         (tfile_open): Use gdb_open_cloexec.
3394         * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
3395         * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
3396         * xml-support.c (xml_fetch_content_from_file): Use
3397         gdb_fopen_cloexec.
3398         * main.c (captured_main): Call notice_open_fds.
3399
3400 2013-04-22  Edjunior Machado  <emachado@linux.vnet.ibm.com>
3401
3402         * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
3403         'char *' to 'gdb_byte *'.
3404         (gdbsim_store_register): Change the type of 'tmp' from 'char' to
3405         'gdb_byte'.
3406
3407 2013-04-22  Yao Qi  <yao@codesourcery.com>
3408
3409         * infrun.c: Fix typo in comment.
3410
3411 2013-04-22  Andrew Haley  <aph@redhat.com>
3412
3413         * arm-tdep.c (BranchDest): Cast result as "unsigned long",
3414         instead of "long".
3415
3416 2013-04-20  Yao Qi  <yao@codesourcery.com>
3417
3418         * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
3419         'char *' to 'gdb_byte *'.  Cast the return value of
3420         'bt_ctf_get_char_array' to 'gdb_byte *'.
3421
3422 2013-04-19  Pedro Alves  <palves@redhat.com>
3423
3424         * configure.ac (build_warnings): Replace -Wno-pointer-sign with
3425         -Wpointer-sign.
3426         * configure: Regenerate.
3427
3428 2013-04-19  Pedro Alves  <palves@redhat.com>
3429
3430         * ser-tcp.c (net_read_prim): Cast second argument to recv to
3431         'void *'.
3432
3433 2013-04-19  Pedro Alves  <palves@redhat.com>
3434
3435         * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
3436         Change type of 'myaddr' parameter to gdb_byte pointer.
3437         (monitor_write_memory_longlongs): Likewise.  Cast 'myaddr' pointer
3438         to 'long long' pointer instead of to 'unsigned long long'.
3439         (monitor_write_memory_block, monitor_read_memory_single)
3440         (monitor_read_memory): Change type of 'myaddr' parameter to
3441         gdb_byte pointer.
3442
3443 2013-04-19  Pedro Alves  <palves@redhat.com>
3444
3445         * record.c (validate_history_size): Make parameter 'setting'
3446         unsigned.
3447
3448 2013-04-19  Pedro Alves  <palves@redhat.com>
3449
3450         * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
3451         to 'gdb_byte *'.
3452
3453 2013-04-19  Pedro Alves  <palves@redhat.com>
3454
3455         * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
3456         local to int.
3457
3458 2013-04-19  Pedro Alves  <palves@redhat.com>
3459
3460         * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
3461         * ada-tasks.c (read_fat_string_value): Likewise.
3462
3463 2013-04-19  Pedro Alves  <palves@redhat.com>
3464
3465         * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
3466         unsigned.  Pass 'tmp' to safe_read_uleb128 instead of the signed
3467         'offset', and adjust.
3468
3469 2013-04-19  Pedro Alves  <palves@redhat.com>
3470
3471         * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
3472         (read_index_from_section): Add cast to 'char *'.
3473
3474 2013-04-19  Pedro Alves  <palves@redhat.com>
3475
3476         * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
3477
3478 2013-04-19  Pedro Alves  <palves@redhat.com>
3479
3480         * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
3481
3482 2013-04-19  Pedro Alves  <palves@redhat.com>
3483
3484         * record-full.c (record_full_get_bookmark): Change local 'ret'
3485         type to char * and add cast to gdb_byte *.
3486         (record_full_goto_bookmark): Handle 'bookmark' argument as a
3487         string.
3488         * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
3489
3490 2013-04-19  Pedro Alves  <palves@redhat.com>
3491
3492         * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
3493         * python/py-prettyprint.c (print_string_repr): Change type of
3494         'output' local to char *.  Add cast to gdb_byte * in
3495         LA_PRINT_STRING call.
3496         (print_children): Change type of 'output' local to char *.
3497         * python/py-value.c (valpy_string): Add cast to const char * in
3498         PyUnicode_Decode call.
3499
3500 2013-04-19  Pedro Alves  <palves@redhat.com>
3501
3502         * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
3503         and change its type to 'const char *'.  Adjust.
3504         (mips_send_packet): Add cast to 'char *', and remove cast to
3505         'unsigned char *'.
3506         (mips_receive_packet): Remove cast to 'unsigned char *'.
3507         (mips_load_srec): Use bfd_byte.
3508         (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
3509         (pmon_checkset): Make 'value' parameter unsigned.
3510
3511 2013-04-19  Pedro Alves  <palves@redhat.com>
3512
3513         * common/agent.c (agent_run_command): Add cast to gdb_byte *.
3514
3515 2013-04-19  Pedro Alves  <palves@redhat.com>
3516
3517         * remote.c (remote_write_bytes_aux, compare_sections_command)
3518         (remote_read_qxfer)
3519         (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
3520         (remote_hostio_readlink, remote_bfd_iovec_pread)
3521         (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
3522         binary buffer, and char when buffer is used as string.
3523         * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
3524         (trace_save, tfile_open, traceframe_walk_blocks)
3525         (tfile_fetch_registers): Likewise.
3526
3527 2013-04-19  Pedro Alves  <palves@redhat.com>
3528
3529         * ser-base.c (ser_base_write): Change prototype -- take 'void *'
3530         buffer and size_t size.  Adjust.
3531         * ser-base.h (ser_base_write): Adjust.
3532         * ser-go32.c (cnts): Change type to size_t.
3533         (dos_write): Change prototype -- take 'void *'
3534         buffer and size_t size.  Adjust.
3535         (dos_info): Print elements of 'cnts' as unsigned long.
3536         * serial.c (serial_write): Likewise.
3537         * serial.h (serial_write): Adjust.
3538         (struct serial_ops) <write>: Change prototype -- take 'void *'
3539         buffer and size_t size.  Adjust.
3540
3541 2013-04-19  Pedro Alves  <palves@redhat.com>
3542
3543         * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
3544         gdb_byte *.
3545         * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
3546
3547 2013-04-19  Pedro Alves  <palves@redhat.com>
3548
3549         * alpha-tdep.c (alpha_extract_return_value): Use
3550         regcache_cooked_read_unsigned to read 'v0'.
3551
3552 2013-04-19  Pedro Alves  <palves@redhat.com>
3553
3554         * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
3555         parameters 'at', 'as' and 'offset' to uint32_t.
3556
3557 2013-04-19  Pedro Alves  <palves@redhat.com>
3558
3559         * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
3560         'is64' to signed 'int'.
3561
3562 2013-04-19  Pedro Alves  <palves@redhat.com>
3563
3564         * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
3565         parameter to int *.
3566
3567 2013-04-19  Pedro Alves  <palves@redhat.com>
3568
3569         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
3570         'insnbuf' buffer type to unsigned int[].
3571
3572 2013-04-19  Pedro Alves  <palves@redhat.com>
3573
3574         * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
3575
3576 2013-04-19  Pedro Alves  <palves@redhat.com>
3577
3578         * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
3579         unsigned long *.
3580
3581 2013-04-19  Pedro Alves  <palves@redhat.com>
3582
3583         * alpha-tdep.c (heuristic_fence_post): Change type to int.
3584         (alpha_heuristic_proc_start): Adjust to check -1 instead of
3585         UINT_MAX.
3586         * mips-tdep.c (heuristic_fence_post): Change type to int.
3587         (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
3588
3589 2013-04-19  Pedro Alves  <palves@redhat.com>
3590
3591         * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
3592         (struct gdbarch_tdep) <cris_version>: Make unsigned.
3593         (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
3594
3595 2013-04-19  Pedro Alves  <palves@redhat.com>
3596
3597         * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'.  Use
3598         it to get a string view of the byte buffer.
3599         * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
3600         type to gdb_byte *.  Adjust.
3601         * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
3602         Change local to char *.
3603         * solib-darwin.c (find_program_interpreter): Change return type to
3604         char *.  Adjust.
3605         (darwin_solib_get_all_image_info_addr_at_init): Adjust.
3606         * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
3607         * solib-frv.c (enable_break2): Change local 'buf' to char *.
3608         * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
3609         * solib-svr4.c (find_program_interpreter): Change return type to
3610         char *.  Adjust.
3611         (enable_break): Change local 'interp_name' to char *.
3612         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
3613         * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
3614         (spu_pseudo_register_write_spu): Use char for string buffer.
3615         Adjust.
3616         (info_spu_event_command, info_spu_signal_command): Add casts to
3617         'char *'.
3618
3619 2013-04-19  Pedro Alves  <palves@redhat.com>
3620
3621         * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
3622         gdb_byte[].
3623         (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
3624         * ada-lang.c (ada_value_assign): Use gdb_byte.
3625         * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
3626         (alphanbsd_sigtramp_offset): Use gdb_byte.
3627         * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
3628         (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
3629         (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
3630         (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
3631         (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
3632         * arm-tdep.c (arm_stub_unwind_sniffer)
3633         (arm_displaced_init_closure): Use gdb_byte.
3634         (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
3635         (arm_default_thumb_le_breakpoint)
3636         (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
3637         * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
3638         thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
3639         * arm-wince-tdep.c (arm_wince_le_breakpoint)
3640         (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
3641         * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
3642         (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
3643         (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
3644         * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
3645         (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
3646         * cris-tdep.c (push_stack_item, cris_push_dummy_call)
3647         (cris_store_return_value, cris_extract_return_value): Use
3648         gdb_byte.
3649         (constraint): Change type of parameter to char * from signed
3650         char*.  Use gdb_byte.
3651         * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
3652         of local buffer to gdb_byte *.
3653         * dwarf2read.c (read_index_from_section): Use gdb_byte.
3654         (create_dwp_hash_table): Change type of locals to gdb_byte *.
3655         (add_address_entry): Change type of local buffer to gdb_byte[].
3656         * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
3657         (frv_push_dummy_call): Use gdb_byte.
3658         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
3659         (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
3660         (hppa_hpux_supply_save_state): Use gdb_byte.
3661         * hppa-tdep.c (hppa32_push_dummy_call)
3662         (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
3663         * ia64-tdep.c (extract_bit_field, replace_bit_field)
3664         (slotN_contents, replace_slotN_contents): Change type of parameter
3665         to gdb_byte *.
3666         (fetch_instruction, ia64_pseudo_register_write)
3667         (ia64_register_to_value, ia64_value_to_register)
3668         (ia64_extract_return_value, ia64_store_return_value)
3669         (ia64_push_dummy_call): Use gdb_byte.
3670         * m32c-tdep.c (m32c_return_value): Remove cast.
3671         * m68hc11-tdep.c (m68hc11_pseudo_register_write)
3672         (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
3673         gdb_byte.
3674         * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
3675         * mn10300-tdep.c (mn10300_store_return_value)
3676         (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
3677         gdb_byte.
3678         * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
3679         (moxie_process_record): Remove casts.
3680         * ppc-ravenscar-thread.c (supply_register_at_address)
3681         (ppc_ravenscar_generic_store_registers): Use gdb_byte.
3682         * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
3683         * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
3684         * remote-mips.c (mips_xfer_memory): Use gdb_byte.
3685         * remote.c (compare_sections_command): Use gdb_byte.
3686         * score-tdep.c (score7_free_memblock): Change type of parameter to
3687         gdb_byte *.
3688         * sh-tdep.c (sh_justify_value_in_reg): Change return type to
3689         gdb_byte *.  Use gdb_byte.
3690         (sh_push_dummy_call_fpu): Use gdb_byte.
3691         (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
3692         (sh_store_return_value_nofpu, sh_store_return_value_fpu)
3693         (sh_register_convert_to_virtual, sh_register_convert_to_raw):
3694         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
3695         (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
3696         * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
3697         (sh64_store_return_value, sh64_register_convert_to_virtual):
3698         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
3699         (sh64_pseudo_register_write): Use gdb_byte.
3700         * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
3701         * solib-irix.c (fetch_lm_info): Likewise.  Use gdb_byte for byte
3702         buffer.
3703         (irix_current_sos): Use gdb_byte.
3704         * solib-som.c (som_current_sos): Use gdb_byte.
3705         * sparc-ravenscar-thread.c (supply_register_at_address)
3706         (sparc_ravenscar_generic_store_registers): Use gdb_byte.
3707         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
3708         * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
3709         * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
3710         'gdb_byte *'.
3711         * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
3712         'gdb_byte *'.
3713         * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
3714         * xstormy16-tdep.c (xstormy16_extract_return_value)
3715         (xstormy16_store_return_value): Change parameter type to
3716         'gdb_byte *'.  Adjust.
3717         (xstormy16_push_dummy_call): Use gdb_byte.
3718         * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
3719         (call0_analyze_prologue, execute_code): Use gdb_byte.
3720
3721 2013-04-19  Vladimir Kargov <kargov@gmail.com>
3722             Pedro Alves  <palves@redhat.com>
3723
3724         * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
3725         value contents.
3726
3727 2013-04-17  Doug Evans  <dje@google.com>
3728
3729         * dwarf2read.c (struct signatured_type): New member type.
3730         (struct attribute): Replace member signatured_type with signature.
3731         (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
3732         (read_call_site_scope): Call follow_die_ref instead of
3733         follow_die_ref_or_sig.
3734         (read_structure_type): Rewrite handling of signatured types.
3735         (read_enumeration_type): Ditto.
3736         (read_attribute_value): Update.
3737         (build_error_marker_type): New function.
3738         (lookup_die_type): Add assert.  Rewrite handling of signatured types.
3739         Don't call error for bad types, just build an error marker type.
3740         (dump_die_shallow): Update.
3741         (follow_die_sig_1): Renamed from follow_die_sig.
3742         Don't call error for bad types, instead return NULL.
3743         (follow_die_sig): New function.
3744         (get_signatured_type, get_DW_AT_signature_type): New functions.
3745
3746 2013-04-17  Yufeng Zhang  <yufeng.zhang@arm.com>
3747
3748         * aarch64-tdep.c (aarch64_write_pc): Removed.
3749         (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
3750         function.
3751
3752 2013-04-17  Yao Qi  <yao@codesourcery.com>
3753
3754         * top.c (print_gdb_configuration): Print configure-time
3755         parameter on using libbabeltrace or not.
3756
3757 2013-04-16  Pedro Alves  <palves@redhat.com>
3758
3759         * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
3760
3761 2013-04-16  Pedro Alves  <palves@redhat.com>
3762
3763         * common/glibc_thread_db.h: Update from upstream glibc
3764         (git 568035b7874a099087b77f7bba3e36a1173787b0).
3765
3766 2013-04-16  Pedro Alves  <palves@redhat.com>
3767
3768         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
3769         * common/glibc_thread_db.h: ... this new file ...
3770         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
3771
3772 2013-04-16  Will Newton  <will.newton@gmail.com>
3773             Pedro Alves  <palves@redhat.com>
3774
3775         PR build/11881
3776
3777         * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
3778         (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
3779         HAVE_THREAD_DB_H.
3780
3781 2013-04-16  Pedro Alves  <palves@redhat.com>
3782             Eli Zaretskii  <eliz@gnu.org>
3783
3784         * NEWS: Mention "set foo unlimited".
3785
3786 2013-04-15  Doug Evans  <dje@google.com>
3787
3788         * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
3789         (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
3790         (create_dwo_cu_reader): Renamed from
3791         create_dwo_debug_info_hash_table_reader.
3792         (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
3793         Remove support for multiple CUs in a DWO file.
3794         (open_and_init_dwo_file, lookup_dwo_cutu): Update.
3795
3796         * dwarf2read.c (create_debug_types_hash_table): Use hex_string
3797         instead of phex.
3798         (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
3799         (create_dwo_in_dwp): Ditto.
3800
3801 2013-04-15  Tom Tromey  <tromey@redhat.com>
3802
3803         * NEWS: Move recent entries into "since 7.6" section.
3804
3805 2013-04-15  Tom Tromey  <tromey@redhat.com>
3806
3807         PR c++/13588:
3808         * NEWS: Update.
3809         * break-catch-throw.c (struct exception_catchpoint)
3810         <exception_rx, pattern>: New fields.
3811         (fetch_probe_arguments, dtor_exception_catchpoint)
3812         (check_status_exception_catchpoint)
3813         (print_one_detail_exception_catchpoint): New functions.
3814         (handle_gnu_v3_exceptions): Add "except_rx" argument.
3815         Compile regular expression if needed.
3816         (extract_exception_regexp): New function.
3817         (catch_exception_command_1): Use extract_exception_regexp.
3818         (compute_exception): Use fetch_probe_arguments.
3819         (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
3820         and check_status fields.
3821         * cp-abi.c (cplus_typename_from_type_info): New function.
3822         * cp-abi.h (cplus_typename_from_type_info): Declare.
3823         (struct cp_abi_ops) <get_typename_from_type_info>: New field.
3824         * gdb_regex.h (compile_rx_or_error): Declare.
3825         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
3826         comment.
3827         (init_gnuv3_ops): Set get_type_from_type_info field.
3828         * probe.c (compile_rx_or_error): Move...
3829         * utils.c (compile_rx_or_error): ... here.
3830
3831 2013-04-15  Tom Tromey  <tromey@redhat.com>
3832
3833         PR c++/15176:
3834         * NEWS: Update.
3835         * break-catch-throw.c (compute_exception): New function.
3836         (exception_funcs): New global.
3837         (_initialize_break_catch_throw): Create $_exception.
3838         * cp-abi.c (cplus_type_from_type_info): New function.
3839         * cp-abi.h (cplus_type_from_type_info): Declare.
3840         (struct cp_abi_ops) <get_type_from_type_info>: New field.
3841         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
3842         (gnuv3_get_type_from_type_info): New functions.
3843         (init_gnuv3_ops): Set get_type_from_type_info ABI field.
3844
3845 2013-04-15  Tom Tromey  <tromey@redhat.com>
3846
3847         * break-catch-throw.c (struct exception_names): New.
3848         (exception_functions): Change type.
3849         (re_set_exception_catchpoint): Look for SDT probes.
3850
3851 2013-04-15  Tom Tromey  <tromey@redhat.com>
3852
3853         PR c++/10119:
3854         * break-catch-throw.c (exception_functions): New global.
3855         (gnu_v3_exception_catchpoint_ops): Move earlier.
3856         (struct exception_catchpoint): New.
3857         (classify_exception_breakpoint): Rewrite.
3858         (re_set_exception_catchpoint): New function.
3859         (handle_gnu_v3_exceptions): Return void.  Use init_catchpoint.
3860         Allocate a struct exception_catchpoint.
3861         (catch_exception_command_1): Update.
3862         (initialize_throw_catchpoint_ops): Set 're_set' method.
3863
3864 2013-04-15  Tom Tromey  <tromey@redhat.com>
3865
3866         * Makefile.in (SFILES): Add break-catch-throw.c
3867         (COMMON_OBS): Add break-catch-throw.o.
3868         * break-catch-throw.c: New file.
3869         * breakpoint.c: Move exception-catching code to new file.
3870         (ep_parse_optional_if_clause): No longer static.
3871         * breakpoint.h (ep_parse_optional_if_clause): Declare.
3872
3873 2013-04-15  Tom Tromey  <tromey@redhat.com>
3874
3875         PR c++/9065:
3876         * NEWS: Update.
3877         * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
3878         * c-exp.y (TYPEID): New token.
3879         (exp): Add new TYPEID productions.
3880         (ident_tokens): Add "typeid".
3881         * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
3882         * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
3883         (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
3884         * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
3885         * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
3886         case.
3887         * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
3888         (build_std_type_info_type, gnuv3_get_typeid_type)
3889         (gnuv3_get_typeid): New functions.
3890         (init_gnuv3_ops): Initialize std_type_info_gdbarch_data.  Set
3891         new fields on ABI object.
3892         * parse.c (operator_length_standard) <OP_TYPEID>: New case.
3893         * std-operator.def (OP_TYPEID): New.
3894
3895 2013-04-15  Tom Tromey  <tromey@redhat.com>
3896
3897         * elfread.c (elf_symtab_read): Install versioned symbol under
3898         unversioned name as well.
3899
3900 2013-04-15  Tom Tromey  <tromey@redhat.com>
3901
3902         PR c++/11990:
3903         * c-lang.c (cplus_language_defn): Use gdb_demangle.
3904         * c-typeprint.c (c_type_print_base): Use gdb_demangle.
3905         * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
3906         (gdb_demangle): New function.
3907         * cp-support.h (gdb_demangle): Declare.
3908         * dwarf2read.c (dwarf2_physname, fixup_partial_die)
3909         (dwarf2_name): Use gdb_demangle.
3910         * gdbtypes.c (check_stub_method): Use gdb_demangle.
3911         * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
3912         suffixes from name.
3913         (gnuv3_print_method_ptr): Use gdb_demangle.
3914         * jv-lang.c (java_demangle): Use gdb_demangle.
3915         * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
3916         * language.c (unk_lang_demangle): Use gdb_demangle.
3917         * symtab.c (symbol_find_demangled_name)
3918         (demangle_for_lookup): Use gdb_demangle.
3919
3920 2013-04-15  Tom Tromey  <tromey@redhat.com>
3921
3922         PR c++/12824:
3923         * NEWS: Update.
3924         * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
3925         New constant.
3926         (classify_exception_breakpoint): New function.
3927         (print_it_exception_catchpoint, print_one_exception_catchpoint)
3928         (print_mention_exception_catchpoint)
3929         (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
3930         (catch_exception_command_1): Handle "rethrow" catchpoint.
3931         (catch_rethrow_command): New function.
3932         (_initialize_breakpoint): Add "catch rethrow" command.
3933
3934 2013-04-15  Pierre Muller  <muller@sourceware.org>
3935
3936         * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
3937         set_gdbarch_write_pc as deprecated anymore.
3938
3939 2013-04-15  Joel Brobecker  <brobecker@adacore.com>
3940
3941         * spu-tdep.c (spu_write_pc): Add empty line after local variable
3942         declarations.
3943
3944 2013-04-13  Yao Qi  <yao@codesourcery.com>
3945
3946         * ctf.c (_initialize_ctf): Include "completer.h".
3947         Call add_target_with_completer instead of add_target.
3948
3949 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
3950
3951         Fix GDB regression related to PR binutils/14813.
3952         * jit.c (mem_bfd_iovec_close): Return 0 for success.
3953         * minidebug.c (lzma_close): Add return value comment.
3954         * remote.c (remote_bfd_iovec_close): Return 0 for success.
3955         * solib-spu.c (spu_bfd_iovec_close): Likewise.
3956         * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
3957
3958 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
3959
3960         * config.in: Regenerate.
3961
3962 2013-04-12  Tom Tromey  <tromey@redhat.com>
3963
3964         * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
3965         const.
3966         * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
3967         (struct die_reader_specs) <buffer>: Likewise.
3968         (die_reader_func_ftype): Make 'info_ptr' const.
3969         (struct line_header) <include_dirs, statement_program_start,
3970         statement_program_end>: Now const.
3971         (struct file_entry) <name>: Likewise.
3972         (struct partial_die_info) <sibling>: Likewise.
3973         (struct dwarf_block) <data>: Likewise.
3974         (dwarf2_read_section): Remove cast.
3975         (dwarf2_get_section_info): Make 'bufp' const.
3976         (read_index_from_section): Constify.
3977         (dw2_get_file_names_reader): Make 'info_ptr' const.
3978         (dw2_get_primary_filename_reader): Likewise.
3979         (read_comp_unit_head): Make 'info_ptr' and return type const.
3980         (read_and_check_comp_unit_head, read_and_check_type_unit_head):
3981         Likewise.
3982         (read_abbrev_offset): Constify.
3983         (dwarf2_create_include_psymtab): Make 'name' const.
3984         (create_debug_types_hash_table): Update.
3985         (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
3986         (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
3987         Constify.
3988         (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
3989         (load_partial_comp_unit_reader): Make 'info_ptr' const.
3990         (read_comp_units_from_section): Constify.
3991         (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
3992         (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
3993         const.
3994         (dwarf2_compute_name, setup_type_unit_groups): Constify.
3995         (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
3996         (create_dwp_hash_table, dwarf2_ranges_read)
3997         (dwarf2_record_block_ranges): Constify.
3998         (read_die_and_children, read_die_and_siblings_1)
3999         (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
4000         const.
4001         (read_full_die_1, read_full_die): Make 'info_ptr' const.
4002         (abbrev_table_read_table): Constify.
4003         (load_partial_dies): Make 'info_ptr' const.
4004         (read_partial_die, read_attribute_value, read_attribute): Make
4005         'info_ptr' and return type const.
4006         (read_address, read_initial_length)
4007         (read_checked_initial_length_and_offset, read_offset)
4008         (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
4009         const.
4010         (read_direct_string): Make 'buf' and return type const.
4011         (read_indirect_string_at_offset, read_indirect_string_from_dwz)
4012         (read_indirect_string): Make return type const.
4013         (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
4014         (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
4015         'info_ptr' const.
4016         (read_str_index): Make return type const.
4017         (add_include_dir): Make 'include_dir' const.
4018         (add_file_name): Make 'name' const.
4019         (dwarf_decode_line_header): Constify.
4020         (psymtab_include_file_name): Make return type const.
4021         (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
4022         (dwarf2_start_subfile): Make 'filename' const.
4023         (dwarf2_const_value_attr): Make 'bytes' const.
4024         (read_signatured_type_reader): Make 'info_ptr' const.
4025         (decode_locdesc): Constify.
4026         (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
4027         const.
4028         (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
4029         'mac_end', and return type const.
4030         (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
4031         (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
4032         type const.
4033         (per_cu_header_read_in): Constify.
4034         * symfile.h (dwarf2_get_section_info): Update.
4035
4036 2013-04-12  Tom Tromey  <tromey@redhat.com>
4037
4038         * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
4039
4040 2013-04-12  Eli Zaretskii  <eliz@gnu.org>
4041
4042         * NEWS: Mention "show configuration", --configuration.
4043         * top.c (print_gdb_configuration): New function, displays the
4044         details about GDB configure-time parameters.
4045         (print_gdb_version): Mention "show configuration".
4046         * cli/cli-cmds.c (show_configuration): New function.
4047         (_initialize_cli_cmds): Add the "show configuration" command.
4048         * main.c (captured_main) <print_configuration>: New static var.
4049         <long_options>: Use it.
4050         If --configuration was given, call print_gdb_configuration.
4051
4052 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
4053             Pedro Alves  <palves@redhat.com>
4054
4055         * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
4056         (generated_files): Add gcore.
4057         (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
4058         HAVE_NATIVE_GCORE_HOST.
4059         (gcore): New.
4060         * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
4061         * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
4062         config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
4063         config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
4064         config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
4065         Add HAVE_NATIVE_GCORE_HOST.
4066         * configure: Regenerate.
4067         * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
4068         New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME.  New
4069         AC_CONFIG_FILES for gcore.
4070         * configure.tgt: Add gdb_have_gcore to the initial comment.  Set
4071         gdb_have_gcore.
4072         * gdb_gcore.sh: Rename to ...
4073         * gcore.in: ... here.  Remove gcore.sh comment.  Use GDB_TRANSFORM_NAME
4074         and GCORE_TRANSFORM_NAME substitutions.
4075
4076         Fix parsing tabs in ${gdb_target_obs}.
4077         * configure.tgt (gdb_have_gcore): Replace case with for and if.
4078
4079 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
4080
4081         * remote.c (unpush_and_perror): Add output message final dot.
4082
4083 2013-04-11  Yao Qi  <yao@codesourcery.com>
4084
4085         * tracepoint.c (tfile_interp_line): Fit parameters line and
4086         utpp in one line.
4087
4088 2013-04-10  Joel Brobecker  <brobecker@adacore.com>
4089
4090         * solib.c (solib_map_sections): Remove code overwriting
4091         SO->SO_NAME with the bfd's filename.
4092
4093 2013-04-10  Pedro Alves  <palves@redhat.com>
4094
4095         * cli/cli-decode.c (integer_unlimited_completer): New function.
4096         (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
4097         (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
4098         completer.
4099         * cli/cli-setshow.c: Include "cli/cli-utils.h".
4100         (is_unlimited_literal): New function.
4101         (do_set_command): Handle literal "unlimited" arguments.
4102         * frame.c (_initialize_frame) <set backtrace limit>: Document
4103         "unlimited".
4104         * printcmd.c (_initialize_printcmd) <set print
4105         max-symbolic-offset>: Add help text.
4106         * record-full.c (_initialize_record_full) <set record full
4107         insn-number-max>: Likewise.
4108         * record.c (_initialize_record) <set record
4109         instruction-history-size, set record function-call-history-size>:
4110         Add help text.
4111         * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
4112         help text.
4113         * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
4114         Likewise.
4115         * source.c (_initialize_source) <set listsize>: Add help text.
4116         * utils.c (initialize_utils) <set height, set width>: Likewise.
4117         <set pagination>: Mention "set height unlimited".
4118         * valprint.c (_initialize_valprint) <set print elements, set print
4119         repeats>: Document "unlimited".
4120
4121 2013-04-10  Pedro Alves  <palves@redhat.com>
4122
4123         * cli/cli-cmds.c (quit_command): Call query_if_trace_running
4124         instead of disconnect_tracing.
4125         * infcmd.c (detach_command, disconnect_command): Call
4126         query_if_trace_running.  Adjust.
4127         * top.c: Include "tracepoint.h".
4128         (quit_target): Delete.  Contents moved ...
4129         (quit_force): ... here.  Wrap each stage of teardown in
4130         TRY_CATCH.  Call disconnect_tracing before detaching.
4131
4132 2013-04-10  Hui Zhu  <hui@codesourcery.com>
4133             Yao Qi  <yao@codesourcery.com>
4134
4135         * configure.ac: Check libbabeltrace is installed.
4136         * config.in: Regenerate.
4137         * configure: Regenerate.
4138         * Makefile.in (LIBBABELTRACE): New.
4139         (CLIBS): Add LIBBABELTRACE.
4140         * ctf.c: Include "exec.h".
4141         (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
4142         (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
4143         (ctf_save_metadata_header): Define new type aliases in
4144         metadata.
4145         (ctf_write_header): Define event type "tsv_def" and "tp_def"
4146         in metadata.  Start a new faked packet for trace status.
4147         (ctf_write_status): Write trace status to CTF.
4148         (ctf_write_uploaded_tsv): Write TSV to CTF.
4149         (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
4150         (ctf_write_definition_end): End the faked packet.
4151
4152         (ctx, ctf_iter, trace_dirname): New.
4153         (start_pos): New variable.
4154         (ctf_destroy, ctf_open_dir, ctf_open): New.
4155         (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
4156         macros.
4157         (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
4158         (ctf_fetch_registers, ctf_xfer_partial): New.
4159         (ctf_get_trace_state_variable_value): New.
4160         (ctf_get_tpnum_from_frame_event): New.
4161         (ctf_get_traceframe_address): New.
4162         (ctf_trace_find, ctf_has_stack): New.
4163         (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
4164         (ctf_get_trace_status, ctf_read_status): New.
4165         (_initialize_ctf): New.
4166         * tracepoint.c (get_tracepoint_number): New
4167         (get_uploaded_tsv): Remove 'static'.
4168         (struct traceframe_info, trace_regblock_size): Move it to ...
4169         * tracepoint.h: ... here.
4170         (get_tracepoint_number): Declare it.
4171         (get_uploaded_tsv): Declare it.
4172
4173         * NEWS: Mention new configure option.
4174
4175 2013-04-10  Pedro Alves  <palves@redhat.com>
4176             Hui Zhu  <hui@codesourcery.com>
4177
4178         * breakpoint.c (dprintf_re_set): New.
4179         (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
4180         to dprintf_re_set.
4181
4182 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
4183
4184         * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
4185         Remove solib-svr4.o from the list.
4186
4187 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
4188
4189         * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
4190         Use gdb_assert_not_reached instead of invalid boolean expression.
4191
4192 2013-04-09  Pedro Alves  <palves@redhat.com>
4193
4194         * remote.c (unpush_and_perror): New function.
4195         (readchar, remote_serial_write): Use it.
4196
4197 2013-04-09  Markus Metzger  <markus.t.metzger@intel.com>
4198
4199         * NEWS: Mention new btrace RSP packets.
4200
4201 2013-04-08  Tom Tromey  <tromey@redhat.com>
4202
4203         * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
4204         long.
4205
4206 2013-04-08  Tom Tromey  <tromey@redhat.com>
4207
4208         * maint.c (print_bfd_section_info): Print the section index.
4209         * symmisc.c (dump_msymbols): Print the section index.
4210
4211 2013-04-08  Tom Tromey  <tromey@redhat.com>
4212
4213         PR symtab/8424:
4214         * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
4215         SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
4216         * breakpoint.c (resolve_sal_pc): Update.
4217         * elfread.c (elf_gnu_ifunc_record_cache): Update.
4218         * findvar.c (struct minsym_lookup_data) <objfile>: New field.
4219         (minsym_lookup_iterator_cb): Use it.
4220         (default_read_var_value): Update.
4221         * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
4222         Update.
4223         * infcmd.c (jump_command): Update.
4224         * linespec.c (minsym_found): Update.
4225         * maint.c (maintenance_translate_address): Update.
4226         * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
4227         (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
4228         * parse.c (write_exp_msymbol): Update.
4229         * printcmd.c (address_info): Update.
4230         * psymtab.c (find_pc_sect_psymbol): Update.
4231         (fixup_psymbol_section): Check SYMBOL_SECTION, not
4232         SYMBOL_OBJ_SECTION.
4233         (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
4234         Don't initialize SYMBOL_OBJ_SECTION.
4235         * spu-tdep.c (spu_catch_start): Update.
4236         * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
4237         * symmisc.c (dump_msymbols, print_symbol): Update.
4238         * symtab.c (fixup_section): Don't set 'obj_section'.  Change
4239         how fallback section is computed.
4240         (fixup_symbol_section): Update.
4241         (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
4242         Update.
4243         (allocate_symbol, initialize_symbol, allocate_template_symbol):
4244         Initialize SYMBOL_SECTION.
4245         * symtab.h (struct general_symbol_info) <section>: Update comment.
4246         <obj_section>: Remove.
4247         (SYMBOL_OBJ_SECTION): Add 'objfile' argument.  Rewrite.
4248         (SYMBOL_OBJFILE): New macro.
4249
4250 2013-04-08  Tom Tromey  <tromey@redhat.com>
4251
4252         * coffread.c (record_minimal_symbol): Update.
4253         * dbxread.c (record_minimal_symbol): Update.
4254         * elfread.c (record_minimal_symbol): Update.
4255         * machoread.c (macho_symtab_add_minsym): Update.
4256         * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
4257         Update.
4258         * minsyms.c (prim_record_minimal_symbol): Update.
4259         (prim_record_minimal_symbol_full): Remove 'bfd_section'
4260         argument.
4261         (prim_record_minimal_symbol_and_info): Likewise.
4262         * minsyms.h (prim_record_minimal_symbol_full)
4263         (prim_record_minimal_symbol_and_info): Update.
4264         * symtab.c (allocate_symbol, initialize_symbol)
4265         (allocate_template_symbol): Initialize SYMBOL_SECTION.
4266         * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
4267         Update.
4268
4269 2013-04-08  Tom Tromey  <tromey@redhat.com>
4270
4271         PR symtab/8423:
4272         * solib-som.c (som_solib_section_offsets): Use BFD section
4273         indices.  Set offsets for all sections.
4274         * somread.c (som_symtab_read): Compute BFD section for
4275         symbol.  Use prim_record_minimal_symbol_and_info.
4276         (som_symfile_read): Fix comment.
4277         (struct find_section_offset_arg): New.
4278         (find_section_offset, set_section_index): New functions.
4279         (som_symfile_offsets): Use set_section_index to compute
4280         section indices.
4281
4282 2013-04-08  Tom Tromey  <tromey@redhat.com>
4283
4284         * coffread.c (cs_to_section): Use gdb_bfd_section_index.
4285         * elfread.c (record_minimal_symbol, elf_symtab_read): Use
4286         gdb_bfd_section_index.
4287         * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
4288         New functions.
4289         * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
4290         Declare.
4291         * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
4292         Update.
4293         * objfiles.c (add_to_objfile_sections_full): New function.
4294         (add_to_objfile_sections): Use it.
4295         (build_section_table): Rewrite.
4296         (objfile_relocate1): Use gdb_bfd_section_index.  Update.
4297         * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
4298         (struct objfile) <sections>: Update comment.
4299         (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
4300         is NULL.
4301         (ALL_OBJSECTIONS): Use it.
4302         * solib-dsbt.c (dsbt_relocate_main_executable): Update.
4303         * solib-frv.c (frv_relocate_main_executable): Update.
4304         * solib-target.c (solib_target_relocate_section_addresses):
4305         Use gdb_bfd_section_index.
4306         * symfile.c (build_section_addr_info_from_section_table):
4307         Use gdb_bfd_section_index.
4308         (build_section_addr_info_from_bfd, place_section): Likewise.
4309         * symtab.c (fixup_section): Update.
4310         * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
4311
4312 2013-04-08  Tom Tromey  <tromey@redhat.com>
4313
4314         * minsyms.h (struct bound_minimal_symbol): New.
4315         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
4316         Remove objfile argument.
4317         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
4318         Return bound_minimal_symbol.
4319         * minsyms.c (lookup_minimal_symbol_by_pc_1)
4320         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
4321         Return bound_minimal_symbol.
4322         (in_gnu_ifunc_stub): Update.
4323         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
4324         Remove 'objfile_p' argument.
4325         (lookup_solib_trampoline_symbol_by_pc): Update.
4326         * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
4327         arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
4328         c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
4329         glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
4330         i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
4331         linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
4332         mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
4333         ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
4334         stack.c, symtab.c, tui/tui-disasm.c: Update.
4335
4336 2013-04-08  Tom Tromey  <tromey@redhat.com>
4337
4338         * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
4339         Use symbol's obstack, not an objfile.
4340         * coffread.c (process_coff_symbol): Update.
4341         * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
4342         * jv-lang.c (add_class_symbol): Update.
4343         * mdebugread.c (new_symbol): Update.
4344         * minsyms.c (prim_record_minimal_symbol_full)
4345         (terminate_minimal_symbol_table): Update.
4346         * psymtab.c (add_psymbol_to_bcache): Clear entire symbol.  Update.
4347         * stabsread.c (define_symbol, read_enum_type): Update.
4348         * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
4349         Handle Ada specially.
4350         (symbol_set_language): Add 'obstack' argument.
4351         (symbol_set_names): Update.
4352         (symbol_natural_name, symbol_demangled_name): Always use
4353         ada_decode_symbol.
4354         * symtab.h (struct general_symbol_info)
4355         <language_specific::obstack>: New field.
4356         <ada_mangled>: New field.
4357         (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
4358         (symbol_set_language): Update.
4359
4360 2013-04-08  Tom Tromey  <tromey@redhat.com>
4361
4362         * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
4363         Take an obstack, not an objfile.
4364         (symbol_set_names): Update.
4365         * symtab.h (symbol_set_demangled_name): Update.
4366
4367 2013-04-08  Tom Tromey  <tromey@redhat.com>
4368
4369         * coffread.c (process_coff_symbol, coff_read_enum_type): Call
4370         allocate_symbol.
4371         * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
4372         (read_func_scope): Call allocate_template_symbol.
4373         (new_symbol_full): Call allocate_symbol.
4374         * jit.c (finalize_symtab): Call allocate_symbol.
4375         * jv-lang.c (add_class_symbol): Call allocate_symbol.
4376         * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
4377         * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
4378         (common_block_end): Call allocate_symbol.
4379         * symtab.c (allocate_symbol, initialize_symbol)
4380         (allocate_template_symbol): New functions.
4381         * symtab.c (allocate_symbol, initialize_symbol)
4382         (allocate_template_symbol): Declare.
4383         * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
4384
4385 2013-04-08  Pedro Alves  <palves@redhat.com>
4386             Keith Seitz  <keiths@redhat.com>
4387
4388         * breakpoint.c (create_breakpoint): Rename
4389         "parse_condition_and_thread" parameter to "parse_arg".  Update
4390         describing comment.  If !PARSE_ARG, then error out if ARG is not
4391         the empty string after extracting the location.
4392         * breakpoint.h (create_breakpoint): Rename
4393         "parse_condition_and_thread" parameter to "parse_arg".
4394
4395 2013-04-08  Aleksandar Ristovski  <aristovski@qnx.com
4396
4397         * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
4398
4399 2013-04-07  Yao Qi  <yao@codesourcery.com>
4400
4401         * remote.c (remote_trace_find): Change type of parameters 'addr1'
4402         and 'addr2' to CORE_ADDR.
4403         * target.c (update_current_target): Update.
4404         * target.h (struct target_ops) <to_trace_find>: Change parameter
4405         type to CORE_ADDR.
4406         * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
4407         'addr2' to CORE_ADDR.
4408         (tfile_trace_find): Likewise.
4409         (tfile_get_traceframe_address): Change return type to CORE_ADDR.
4410         Change local variable 'addr' to type CORE_ADDR.
4411         * tracepoint.h (tfind_1): Update declaration.
4412
4413 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
4414
4415         * windows-nat.c (windows_get_absolute_argv0): Move from here...
4416         * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
4417         Include main.h.
4418
4419         * windows-nat.h (windows_get_absolute_argv0): Move prototype from
4420         here...
4421         * main.h (windows_get_absolute_argv0): ...to here.
4422
4423 2013-04-05  Doug Evans  <dje@google.com>
4424
4425         * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
4426         (read_cutu_die_from_dwo): Add comments.
4427         (read_structure_type): Update comment.
4428         (read_enumeration_type, read_namespace_type): Update comment.
4429         (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
4430
4431 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4432
4433         Convert man pages to texinfo, new gdbinit.5 texinfo page.
4434         * Makefile.in (gdb.z): Remove.
4435         (install-only): Remove $(man1dir) and gdb.1 installation.
4436         * gdb.1: Remove.
4437
4438 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4439
4440         Fix compatibility with Linux kernel 3.8.3.
4441         * linux-tdep.c (linux_find_memory_regions_full): Move variable number
4442         to more inner block.  Remove parsing of NUMBER from outer block.
4443         Parse NUMBER only if KEYWORD has been identified.
4444
4445 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4446
4447         Fix variable name shadowing.
4448         * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
4449         filename to mapsfilename and update its uses.
4450
4451 2013-04-05  Eli Zaretskii  <eliz@gnu.org>
4452
4453         * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
4454         empty.  See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
4455         and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
4456         details of the problem.
4457
4458 2013-04-04  Pedro Alves  <palves@redhat.com>
4459             Hui Zhu  <hui@codesourcery.com>
4460
4461         * breakpoint.c (validate_commands_for_breakpoint): If validating a
4462         tracepoint, reset its STEP_COUNT and call validate_actionline.
4463
4464 2013-04-03  Doug Evans  <dje@google.com>
4465
4466         * dwarf2read.c (read_die_and_siblings_1): Renamed from
4467         read_die_and_siblings.
4468         (read_die_and_siblings): New function.
4469         (read_cutu_die_from_dwo): Dump die if requested.
4470         (read_die_and_children): Call read_full_die_1 and
4471         read_die_and_siblings_1.
4472         (read_full_die): Dump die if requested.
4473
4474         * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
4475
4476         * dwarf2read.c (struct dwo_file): New member comp_dir.
4477         Rename member name to dwo_name.  All uses updated.
4478         (hash_dwo_file): Include comp_dir in computation.
4479         (eq_dwo_file): Ditto.
4480         (lookup_dwo_file_slot): New arg comp_dir.  All callers updated.
4481         (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
4482
4483         * psymtab.c (read_psymtabs_with_fullname): Don't call
4484         psymtab_to_fullname if the basenames are different.
4485
4486 2013-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4487
4488         * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
4489         New entry about "fullname" presence.
4490
4491 2013-04-03  Pedro Alves  <palves@redhat.com>
4492
4493         * NEWS: Mention x86_64/Cygwin as new native configuration.
4494
4495 2013-04-02  Doug Evans  <dje@google.com>
4496
4497         * dwarf2read.c (read_structure_type): Fix typo in comment.
4498
4499 2013-04-02  Pedro Alves  <palves@redhat.com>
4500
4501         * NEWS: Mention "set/show debug aarch64", "set/show debug
4502         coff-pe-read" and "set/show debug mach-o".
4503
4504 2013-04-02  Pedro Alves  <palves@redhat.com>
4505
4506         * NEWS: Mention "set/show remote trace-buffer-size-packet".
4507
4508 2013-04-02  Eli Zaretskii  <eliz@gnu.org>
4509
4510         * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
4511         gdb_string.h is now in common/.
4512
4513 2013-04-02  Pedro Alves  <palves@redhat.com>
4514
4515         * NEWS: Move "set debug notification" and "set trace-buffer-size"
4516         under "New options".
4517
4518 2013-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4519
4520         Revert this patch:
4521         PR gdb/15275
4522         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
4523
4524 2013-04-02  Pedro Alves  <palves@redhat.com>
4525
4526         PR gdb/15275
4527
4528         * remote.c (send_interrupt_sequence): Use remote_serial_write.
4529         (remote_serial_write): New function.
4530         (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
4531
4532 2013-04-01  Jiong Wang  <jiwang@tilera.com>
4533
4534         * NEWS: Mention TILE-Gx in "New native configurations" and
4535         "New targets" sections. 
4536
4537 2013-04-01  Doug Evans  <dje@google.com>
4538
4539         * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
4540         (process_enumeration_scope): Simplify.
4541
4542         * dwarf2read.c (struct dwarf2_per_cu_data): Move member
4543         type_unit_group ...
4544         (struct signatured_type): ... to here.
4545         (sig_type_ptr): New typedef.
4546         (type_unit_group): Delete member 't.first_cu'.  Move member 'tus'
4547         out of union 't'.  All uses updated.
4548         (dw2_get_file_names_reader): Assert not called for a type unit.
4549         (dw2_get_file_names): Assert not called for a type unit or type
4550         unit group.
4551         (build_type_psymtabs_reader): Assert called for a type unit.
4552         (build_type_psymtab_dependencies): Assert called for a type unit group.
4553
4554         * dwarf2read.c (free_dwo_file): Add comment.
4555         (dwarf2_per_objfile_free): Unref dwp bfd.
4556
4557 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
4558
4559         * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
4560         (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
4561         (read_pe_exported_syms): Remove unused 'exportix'.
4562         (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
4563         'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
4564         'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
4565
4566 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
4567
4568         * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
4569         (print_it_watchpoint): Remove unused 'bl'.
4570         (say_where): Remove unused 'uiout'.
4571         (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
4572         (bkpt_breakpoint_hit): Remove unused 'b'.
4573         (internal_bkpt_print_it): Remove unused 'uiout'.
4574         * buildsym.c (augment_type_symtab): Remove unused 'i'.
4575
4576 2013-03-31  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
4577
4578         * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
4579         (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
4580
4581 2013-03-29  Doug Evans  <dje@google.com>
4582
4583         * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
4584         Delete arg is_dwp.  All callers updated.
4585         (open_dwp_file): New function.
4586         (open_and_init_dwp_file): Call it.
4587         (get_dwp_file): New function.
4588         (lookup_dwo_cutu): Call it.
4589
4590         * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
4591         unnecessary, cleanup.
4592
4593         * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
4594
4595         * dwarf2read.c (read_cutu_die_from_dwo): New function.
4596         (lookup_dwo_unit): New function.
4597         (init_cutu_and_read_dies): Move DWO handling to new functions.
4598
4599         * dwarf2read.c (struct signatured_type): Tweak comment.
4600         (struct dwo_unit): Tweak comment.
4601         (create_debug_types_hash_table): Tweak comment.  Reformat long line.
4602         (create_dwo_debug_info_hash_table): Tweak comment.
4603         (dwarf2_per_cu_offset_and_type): Tweak comment.
4604
4605         * dwarf2read.c (lookup_signatured_type): Remove complaint about
4606         missing .debug_types section.
4607
4608 2013-03-29  Yao Qi  <yao@codesourcery.com>
4609
4610         * corelow.c: Include "completer.h".
4611         (_initialize_corelow): Call add_target_with_completer with
4612         argument 'filename_completer'.
4613         * tracepoint.c: Likewise.
4614         * exec.c (_initialize_exec): Likewise.
4615         * target.c (add_target): Rename to ...
4616         (add_target_with_completer): ... this.  Call set_cmd_completer
4617         if parameter completer is not NULL.
4618         (add_target): New.
4619         * target.h: Include "command.h".
4620         (add_target_with_completer): Declare it.
4621
4622 2013-03-28  Joel Brobecker  <brobecker@adacore.com>
4623
4624         * coffread.c (is_import_fixup_symbol): New function.
4625         (record_minimal_symbol): Use is_import_fixup_symbol to
4626         detect import fixup symbols, and discard them.
4627
4628 2013-03-28  Doug Evans  <dje@google.com>
4629
4630         * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
4631         types hash table until we know we need it.
4632
4633         * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
4634         index numbers.
4635
4636         * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
4637         All callers updated.
4638         (dw2_print_stats): Print #read CUs too.
4639         (dump_die_shallow): Print signatured types better.
4640
4641         * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
4642         info_or_types_section to section.  All uses updated.
4643         (struct dwo_unit): Ditto.
4644
4645 2013-03-28  Pedro Alves  <palves@redhat.com>
4646
4647         * NEWS (New options): New section.
4648         (New options): Mention set/show remote trace-status-packet.
4649         * remote.c (PACKET_qTStatus): New enumeration value.
4650         (remote_get_trace_status): Skip sending qTStatus if the packet is
4651         disabled.  Use packet_ok.
4652         (_initialize_remote): Register a configuration command for
4653         qTStatus packet.
4654
4655 2013-03-28  Doug Evans  <dje@google.com>
4656
4657         * symfile.c (find_separate_debug_file): Add comment.
4658         (terminate_after_last_dir_separator): Tweak comment.
4659
4660         * dwarf2read.c (create_partial_symtab): Add forward decl.
4661         (create_partial_symtab): Move to be closer to other psymtab functions.
4662         (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
4663
4664         * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
4665         (compute_symtab_includes): Remove unnecessary forward declaration.
4666         (die_needs_namespace): Add comment marking group of functions for
4667         dwarf2 name computation.
4668
4669         * typeprint.c (_initialize_typeprint): Improve type help text.
4670
4671         * python/python.c (finish_python_initialization): Provide suggestion
4672         for how to tell gdb to find its python files.
4673
4674 2013-03-28  Pedro Alves  <palves@redhat.com>
4675
4676         PR gdb/15294
4677
4678         * source.c (_initialize_source): Change back "set listsize" to an
4679         integer command.
4680
4681 2013-03-27  Gareth McMullin  <gareth@blacksphere.co.nz>
4682
4683         PR gdb/15275
4684         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
4685
4686 2013-03-27  Pedro Alves  <palves@redhat.com>
4687
4688         * top.c (history_size): Rename to ...
4689         (history_size_setshow_var): ... this.  Add comment.
4690         (show_commands): Use readline's 'history_length' instead of
4691         computing the history length by calling history_get in a loop.
4692         (set_history_size_command): Error out for sizes over INT_MAX.
4693         Restore previous history size on invalid size.
4694         (init_history): If HISTSIZE is negative, leave the history size as
4695         zero.  Add comments.
4696         (init_main): Adjust.
4697
4698 2013-03-27  Pedro Alves  <palves@redhat.com>
4699
4700         * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
4701         coff_pe_read" command to "set debug coff-pe-read".
4702
4703 2013-03-27  Markus Metzger  <markus.t.metzger@intel.com>
4704
4705         * record.c (command_size_to_target_size): Fix size comparison.
4706         Change parameter type from pointer to integer to integer.
4707         Update all users.
4708
4709 2013-03-27  Pierre Muller  <muller@sourceware.org>
4710
4711         * windows-nat.c (handle_output_debug_string): Avoid typecast
4712         from integer of different size warning.
4713
4714 2013-03-26  Joel Brobecker  <brobecker@adacore.com>
4715
4716         * windows-nat.c (handle_output_debug_string): Add empty line
4717         after local block variable definition.
4718
4719 2013-03-26  Pedro Alves  <palves@redhat.com>
4720
4721         * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
4722         (net_open): Make 'polls' local unsigned.
4723
4724 2013-03-26  Pedro Alves  <palves@redhat.com>
4725
4726         * remote.c (_initialize_remote): Make "set remoteaddresssize"
4727         a zuinteger command instead of uinteger.
4728
4729 2013-03-26  Pedro Alves  <palves@redhat.com>
4730
4731         * record-full.c (record_full_insn_num): Make it unsigned.
4732         (record_full_check_insn_num, record_full_message)
4733         (record_full_registers_change, record_full_xfer_partial): Remove
4734         record_full_insn_max_num check (it's always != 0).
4735         (record_full_info, record_full_restore): Use %u as format string.
4736         (): Use %u as format string.
4737         (set_record_full_insn_max_num): Remove record_full_insn_max_num
4738         check (it's always != 0).
4739
4740 2013-03-26  Pedro Alves  <palves@redhat.com>
4741
4742         * dcache.c (_initialize_dcache): Make the "set dcache line-size"
4743         and "set dcache size" commands zuinteger instead of uinteger.
4744
4745 2013-03-26  Pedro Alves  <palves@redhat.com>
4746
4747         * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
4748         command zuinteger instead of uinteger.
4749
4750 2013-03-26  Pedro Alves  <palves@redhat.com>
4751
4752         * coff-pe-read.c (_initialize_coff_pe_read): Make the command
4753         zuinteger instead of uinteger.
4754
4755 2013-03-26  Pedro Alves  <palves@redhat.com>
4756
4757         * record.c (record_insn_history_size_setshow_var)
4758         (record_call_history_size_setshow_var): New globals.
4759         (command_size_to_target_size): New function.
4760         (cmd_record_insn_history, cmd_record_call_history): Use
4761         command_size_to_target_size instead of cast.
4762         (validate_history_size, set_record_insn_history_size)
4763         (set_record_call_history_size): New functions.
4764         (_initialize_record): Install set_record_insn_history_size and
4765         set_record_call_history_size as "set" hooks of "set record
4766         instruction-history-size" and "set record
4767         function-call-history-size".
4768
4769 2013-03-26  Pedro Alves  <palves@redhat.com>
4770
4771         * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
4772         use with history_max_entries use.  Remove FIXME note.
4773
4774 2013-03-26  Markus Metzger  <markus.t.metzger@intel.com>
4775
4776         * record-btrace.c (record_btrace_close): Call
4777         record_btrace_auto_disable.
4778
4779 2013-03-25  Joel Brobecker  <brobecker@adacore.com>
4780
4781         * rs6000-nat.c (fixup_breakpoints): Delete declaration.
4782
4783 2013-03-25  Doug Evans  <dje@google.com>
4784
4785         * contrib/cc-with-tweaks.sh: Check exit code of dwp.
4786
4787 2013-03-25  Tom Tromey  <tromey@redhat.com>
4788
4789         PR symtab/11462:
4790         * c-exp.y (exp): Add new productions for destructors after '.' and
4791         '->'.
4792         (write_destructor_name): New function.
4793
4794 2013-03-25  Tom Tromey  <tromey@redhat.com>
4795
4796         PR c++/9197:
4797         * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
4798         value_struct_elt, not lookup_struct_elt_type.
4799         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
4800         STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
4801         * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
4802
4803 2013-03-25  Yao Qi  <yao@codesourcery.com>
4804
4805         * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
4806         instead of '_mkdir'.
4807
4808 2013-03-23  Eli Zaretskii  <eliz@gnu.org>
4809
4810         * windows-nat.c (windows_get_absolute_argv0): New function.
4811         * windows-nat.h: Add its prototype.
4812
4813         * main.c (get_init_files): Use filename_ncmp instead of strncmp.
4814         Use IS_DIR_SEPARATOR instead of looking for a character inside
4815         SLASH_STRING.  Include filenames.h.
4816         (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
4817         relocate_gdb_directory works when passed gdb_program_name.
4818         Include windows-nat.h.
4819
4820 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
4821
4822         * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
4823         * remote.c (trace_error): Remove the special handling of '2'.
4824         (readchar) <SERIAL_EOF>
4825         (readchar) <SERIAL_ERROR>
4826         (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
4827         (remote_get_trace_status): Call throw_exception if EX is
4828         TARGET_CLOSE_ERROR.
4829         * utils.c (perror_with_name): Rename to ...
4830         (throw_perror_with_name): ... here.  New parameter errcode, describe it
4831         in the function comment.
4832         (perror_with_name): New function wrapper.
4833         * utils.h (enum errors): New stub declaration.
4834         (throw_perror_with_name): New declaration.
4835
4836 2013-03-22  Pedro Alves  <palves@redhat.com>
4837             Yao Qi  <yao@codesourcery.com>
4838             Mark Kettenis  <kettenis@gnu.org>
4839
4840         * cli/cli-setshow.c (do_set_command) <var_uinteger>:
4841         Don't let the user set the value to UINT_MAX directly.
4842         <var_integer>: Don't let the user set the value to INT_MAX
4843         directly.
4844
4845 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
4846
4847         * remote.c (remote_unpush_target): New function.
4848         (remote_open_1): Remove two pop_target calls, update one comment, add
4849         comment to target_preopen call.  Replace pop_target call by
4850         remote_unpush_target call.
4851         (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
4852         pop_target calls by remote_unpush_target calls.
4853
4854 2013-03-22  Pedro Alves  <palves@redhat.com>
4855
4856         * linux-nat.c (linux_child_follow_fork): Don't call
4857         linux_enable_event_reporting.
4858         (linux_handle_extended_wait): Don't call
4859         linux_enable_event_reporting.
4860
4861 2013-03-22  Pedro Alves  <palves@redhat.com>
4862
4863         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
4864         use it to rewrite the trampoline buffers with type gdb_byte[], and
4865         undefine the macro.  Remove char* cast.
4866
4867 2013-03-21  Doug Evans  <dje@google.com>
4868
4869         New commands "mt set per-command {space,time,symtab} {on,off}".
4870         * NEWS: Add entry.
4871         * event-top.c: #include "maint.h".
4872         * main.c: #include "maint.h".
4873         * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
4874         timeval-utils.h, maint.h, cli/cli-setshow.h.
4875         (per_command_time, per_command_space): New static globals.
4876         (per_command_symtab): New static global.
4877         (per_command_setlist, per_command_showlist): New static globals.
4878         (struct cmd_stats): Move here from utils.c.
4879         (set_per_command_time): Renamed from set_display_time in utils.c
4880         and moved here.  All callers updated.
4881         (set_per_command_space): Renamed from set_display_space in utils.c
4882         and moved here.  All callers updated.
4883         (count_symtabs_and_blocks): New function.
4884         (report_command_stats): Moved here from utils.c.  Add support for
4885         printing symtab stats.  Only print data if enabled before command
4886         executed.
4887         (make_command_stats_cleanup): Ditto.
4888         (sert_per_command_cmd, show_per_command_cmd): New functions.
4889         (_initialize_maint_cmds): Add new commands
4890         mt set per-command {space,time,symtab} {on,off}.
4891         * maint.h: New file.
4892         * top.c: #include "maint.h".
4893         * utils.c (reset_prompt_for_continue_wait_time): New function.
4894         (get_prompt_for_continue_wait_time): New function.
4895         * utils.h (reset_prompt_for_continue_wait_time): Declare
4896         (get_prompt_for_continue_wait_time): Declare.
4897         (make_command_stats_cleanup): Moved to maint.h.
4898         (set_display_time, set_display_space): Moved to maint.h and renamed
4899         to set_per_command_time, set_per_command_space.
4900         * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
4901         parse_binary_operation and made non-static.  Don't call error,
4902         just return an error marker.  All callers updated.
4903         * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
4904
4905 2013-03-21  Tom Tromey  <tromey@redhat.com>
4906
4907         * symfile.c (alloc_section_addr_info): Update header.  Don't set
4908         'num_sections' field.
4909         (build_section_addr_info_from_section_table): Set 'num_sections'.
4910         (build_section_addr_info_from_bfd): Likewise.
4911         (build_section_addr_info_from_objfile): Remove dead loop
4912         condition.
4913         (free_section_addr_info): Unconditionally call xfree.
4914         (relative_addr_info_to_section_offsets, addrs_section_sort)
4915         (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
4916         condition.
4917         (syms_from_objfile_1): Remove dead 'if' condition.  Check
4918         'num_sections'.
4919         (add_symbol_file_command): Set 'num_sections'.
4920         * symfile-mem.c (symbol_file_add_from_memory): Set
4921         'num_sections'.
4922         * somread.c (som_symfile_offsets): Remove dead loop condition.
4923         * machoread.c (macho_symfile_offsets): Remove dead 'if'.
4924         * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
4925
4926 2013-03-21  Tom Tromey  <tromey@redhat.com>
4927
4928         * tracepoint.h (decode_agent_options): Add 'trace_string'
4929         argument.
4930         * tracepoint.c (decode_agent_options): Add 'trace_string'
4931         argument.
4932         (validate_actionline): Update.
4933         (collect_symbol): Add 'trace_string' argument.
4934         (struct add_local_symbols_data) <trace_string>: New field.
4935         (do_collect_symbol): Update.
4936         (add_local_symbols): Add 'trace_string' argument.
4937         (encode_actions_1): Update.
4938         (trace_dump_actions): Update.
4939         * dwarf2loc.c (access_memory): Update.
4940         * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
4941         * ax-general.c (new_agent_expr): Update.
4942         * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
4943         (gen_trace_for_return_address): Add argument.
4944         (trace_kludge, trace_string_kludge): Remove.
4945         * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
4946         (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
4947         (gen_trace_for_var): Add 'trace_string' argument.
4948         (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
4949         (gen_printf, agent_eval_command_one): Update.
4950
4951 2013-03-21  Tom Tromey  <tromey@redhat.com>
4952
4953         PR exp/15109:
4954         * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
4955         Handle FILENAME token.
4956
4957 2013-03-21  Tom Tromey  <tromey@redhat.com>
4958
4959         * c-exp.y (YYPRINT): Define.
4960         (c_print_token): New function.
4961
4962 2013-03-21  Tom Tromey  <tromey@redhat.com>
4963
4964         * c-exp.y (%union) <sym, ivar, ivec>: Remove.
4965
4966 2013-03-21  Yao Qi  <yao@codesourcery.com>
4967
4968         * ctf.c: Include "gdb_stat.h".
4969         [USE_WIN32API]: New macro 'mkdir'.
4970         (ctf_start): Use permission bits macros if they are defined.
4971
4972 2013-03-20  Keith Seitz  <keiths@redhat.com>
4973
4974         * breakpoint.h (struct breakpoint): Add comment to
4975         extra_string indicating that this member is mallod'd.
4976         * breakpoint.c (base_breakpoint_dtor): Free extra_string.
4977
4978 2013-03-20  Pedro Alves  <palves@redhat.com>
4979
4980         PR gdb/15289
4981
4982         * cli/cli-setshow.c (do_set_command)
4983         <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
4984         the result of parsing the command argument.  Throw error if the
4985         value is greater than UINT_MAX.  Print the invalid value with
4986         plongest.
4987         <var_integer, var_zinteger>: Use LONGEST for variable holding the
4988         result of parsing the command argument.  Throw error if the value
4989         is greater than INT_MAX, not greater or equal.  Also throw error
4990         if the value is less than INT_MIN.  Print the invalid value with
4991         plongest.
4992         <var_zuinteger_unlimited>: Throw error if the value is greater
4993         than INT_MAX, not greater or equal.
4994         (do_show_command) <var_integer, var_zinteger,
4995         var_zuinteger_unlimited>: Use %d for printing int, not %u.
4996
4997 2013-03-20  Tom Tromey  <tromey@redhat.com>
4998
4999         * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
5000         if possible.
5001         * dwarf2read.c (read_func_scope): Remove old FIXME.
5002         * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
5003         not LOC_COMPUTED.
5004         * findvar.c (symbol_read_needs_frame, default_read_var_value):
5005         Unconditionally call via computed ops, if possible.
5006         * printcmd.c (address_info): Unconditionally call via computed ops,
5007         if possible.
5008         * stack.c (read_frame_arg): Unconditionally call via computed ops,
5009         if possible.
5010         * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
5011         * tracepoint.c (scope_info): Unconditionally call via computed ops,
5012         if possible.
5013
5014 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
5015             Tom Tromey  <tromey@redhat.com>
5016
5017         PR symtab/8421:
5018         * coffread.c (coff_register_index): New global.
5019         (process_coff_symbol, coff_read_enum_type): Set
5020         SYMBOL_ACLASS_INDEX.
5021         (_initialize_coffread): Initialize new global.
5022         * dwarf2loc.c (locexpr_find_frame_base_location)
5023         (dwarf2_block_frame_base_locexpr_funcs)
5024         (loclist_find_frame_base_location)
5025         (dwarf2_block_frame_base_loclist_funcs): New.
5026         (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
5027         (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
5028         * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
5029         (dwarf2_block_frame_base_loclist_funcs): New.
5030         * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
5031         (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
5032         globals.
5033         (read_func_scope): Update.
5034         (fixup_go_packaging, mark_common_block_symbol_computed)
5035         (var_decode_location, new_symbol_full, dwarf2_const_value):
5036         Set SYMBOL_ACLASS_INDEX.
5037         (dwarf2_symbol_mark_computed): Likewise.  Add 'is_block' argument.
5038         (_initialize_dwarf2_read): Initialize new globals.
5039         * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
5040         * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
5041         * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
5042         globals.
5043         (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
5044         (_initialize_mdebugread): Initialize new globals.
5045         * psympriv.h (struct partial_symbol) <aclass>: Update comment.
5046         * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
5047         (stab_register_index, stab_regparm_index): New globals.
5048         (define_symbol, read_enum_type, common_block_end): Set
5049         SYMBOL_ACLASS_INDEX.
5050         (_initialize_stabsread): Initialize new globals.
5051         * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
5052         globals.
5053         (MAX_SYMBOL_IMPLS): New define.
5054         (register_symbol_computed_impl, register_symbol_block_impl)
5055         (register_symbol_register_impl)
5056         (initialize_ordinary_address_classes): New functions.
5057         (_initialize_symtab): Call initialize_ordinary_address_classes.
5058         * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
5059         (struct symbol_impl): New.
5060         (SYMBOL_ACLASS_BITS): New define.
5061         (struct symbol) <aclass, ops>: Remove fields.
5062         <aclass_index>: New field.
5063         (symbol_impls): Declare.
5064         (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
5065         (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
5066         (register_symbol_computed_impl, register_symbol_block_impl)
5067         (register_symbol_register_impl): Declare.
5068         (struct symbol_computed_ops): Add location_has_loclist.
5069         (struct symbol_block_ops): New.
5070         (SYMBOL_BLOCK_OPS): New.
5071         * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
5072
5073 2013-03-20  Tom Tromey  <tromey@redhat.com>
5074
5075         * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
5076         (print_partial_symbols, recursively_search_psymtabs): Use
5077         PSYMBOL_CLASS.
5078
5079 2013-03-20  Pierre Muller  <muller@sourceware.org>
5080
5081         * contrib/ari/gdb_ari.sh (OP eol rule): Also check
5082         addtion, subtraction, multiplication and division binary operator.
5083
5084 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
5085
5086         Code cleanup.
5087         * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
5088         * bsd-kvm.c (bsd_kvm_close): Likewise.
5089         * bsd-uthread.c (bsd_uthread_close): Likewise.
5090         * corelow.c (core_close): Likewise.
5091         (core_close_cleanup): Remove parameter quitting from a caller.
5092         * event-top.c (async_disconnect): Likewise.
5093         * exec.c (exec_close_1): Remove parameter quitting.
5094         * go32-nat.c (go32_close): Likewise.
5095         * linux-nat.c (linux_nat_close): Remove parameter quitting.  Remove
5096         parameter quitting from a caller.
5097         * mips-linux-nat.c (super_close): Remove parameter quitting from the
5098         variable.
5099         (mips_linux_close): Remove parameter quitting.  Remove parameter
5100         quitting from a caller.
5101         * monitor.c (monitor_close): Remove parameter quitting.
5102         * monitor.h (monitor_close): Likewise.
5103         * record-btrace.c (record_btrace_close): Likewise.
5104         * record-full.c (record_full_close): Likewise.
5105         * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
5106         it also from fprintf_unfiltered.
5107         * remote-mips.c (mips_close): Remove parameter quitting.
5108         (mips_detach): Remove parameter quitting from a caller.
5109         * remote-sim.c (gdbsim_close): Remove parameter quitting.
5110         (gdbsim_close): Remove duplicate function comment.  Remove parameter
5111         quitting and remove it also from printf_filtered.
5112         * remote.c (remote_close): Remove parameter quitting.
5113         * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
5114         * target.c (update_current_target): Remove parameter int from to_close
5115         de_fault.
5116         (push_target, unpush_target, pop_target): Remove parameter quitting from
5117         a caller.
5118         (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
5119         Remove parameter quitting from a caller.
5120         (target_preopen): Remove parameter quitting from a caller.
5121         (target_close): Remove parameter quitting.  Remove parameter quitting
5122         from a caller two times.  Remove parameter quitting also from
5123         fprintf_unfiltered.
5124         * target.h (struct target_ops): Remove parameter quitting and as int
5125         from fields to_xclose and to_close.
5126         (extern struct target_ops current_target):
5127         (target_close, pop_all_targets): Remove parameter quitting.  Update the
5128         comment.
5129         (pop_all_targets_above): Remove parameter quitting.
5130         * top.c (quit_target): Remove parameter quitting from a caller.
5131         * tracepoint.c (tfile_close): Remove parameter quitting.
5132         * windows-nat.c (windows_close): Remove parameter quitting.
5133
5134 2013-03-20  Corinna Vinschen  <vinschen@redhat.com>
5135
5136         * windows-nat.c (handle_output_debug_string): Replace call
5137         to string_to_core_addr with call to strtoull.
5138
5139 2013-03-20  Yao Qi  <yao@codesourcery.com>
5140
5141         * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
5142         and write it to CTF metadata.
5143
5144 2013-03-19  Corinna Vinschen  <vinschen@redhat.com>
5145
5146         * windows-nat.c (handle_output_debug_string): Change type of n to
5147         SIZE_T to avoid crash on 64 bit systems.
5148
5149 2013-03-17  Eli Zaretskii  <eliz@gnu.org>
5150
5151         * python/python-internal.h (HAVE_SNPRINTF)
5152         [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
5153         about redefinition of snprintf by pyerrors.h.
5154
5155 2013-03-15  Steve Ellcey  <sellcey@mips.com>
5156
5157         * remote-sim.c (sim_command_completer): Make char arguments const.
5158
5159 2013-03-15  Tom Tromey  <tromey@redhat.com>
5160
5161         PR c++/15116:
5162         * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
5163
5164 2013-03-14  Tom Tromey  <tromey@redhat.com>
5165
5166         * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
5167         New fields.
5168         (get_file_crc): Move from symfile.c.
5169         (gdb_bfd_crc): New function.
5170         * gdb_bfd.h (gdb_bfd_crc): Declare.
5171         * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
5172         * symfile.c (get_file_crc): Move to gdb_bfd.c.
5173         (separate_debug_file_exists): Use gdb_bfd_crc.
5174
5175 2013-03-14  Tom Tromey  <tromey@redhat.com>
5176
5177         * symfile.c (get_debug_link_info): Remove.
5178         (find_separate_debug_file_by_debuglink): Use
5179         bfd_get_debug_link_info.
5180
5181 2013-03-14  Tom Tromey  <tromey@redhat.com>
5182
5183         * symtab.c (error_in_psymtab_expansion): New function.
5184         (lookup_symbol_aux_quick)
5185         (basic_lookup_transparent_type_quick): Remove "last resort"
5186         code.  Use error_in_psymtab_expansion.
5187
5188 2013-03-14  Doug Evans  <dje@google.com>
5189             Jan Kratochvil  <jan.kratochvil@redhat.com>
5190
5191         * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
5192         any successful compare_filenames_for_search or FILENAME_CMP.
5193         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
5194         * symtab.c (iterate_over_some_symtabs): Likewise.
5195
5196 2013-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
5197
5198         * source.c (print_source_lines_base): Make a local copy of
5199         symtab_to_fullname.
5200
5201 2013-03-14  Hui Zhu  <hui_zhu@mentor.com>
5202             Jan Kratochvil  <jan.kratochvil@redhat.com>
5203
5204         * source.c (print_source_lines_base): Suppress "file" for TUI.
5205
5206 2013-03-14  Keith Seitz  <keiths@redhat.com>
5207             Alan Matsuoka  <alanm@redhat.com>
5208
5209         PR c++/15203
5210         PR c++/15210
5211         * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
5212         TYPE_CODE_METHOD.
5213         * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
5214         symbols.
5215
5216 2013-03-14  Yao Qi  <yao@codesourcery.com>
5217
5218         * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
5219         status to tfile if trace is stopped by command 'tstop'.
5220
5221 2013-03-14  Yao Qi  <yao@codesourcery.com>
5222
5223         * tracepoint.c (tfile_write_status): Write trace notes and user
5224         name into tfile if they are not NULL.
5225
5226 2013-03-14  Hui Zhu  <hui@codesourcery.com>
5227             Yao Qi  <yao@codesourcery.com>
5228
5229         * Makefile.in (REMOTE_OBS): Add ctf.o.
5230         (SFILES): Add ctf.c.
5231         (HFILES_NO_SRCDIR): Add ctf.h.
5232         * ctf.c, ctf.h: New files.
5233         * tracepoint.c: Include 'ctf.h'.
5234         (collect_pseudocommand): Remove static.
5235         (trace_save_command): Parse option "-ctf".
5236         Produce different trace file writers per option.
5237         Adjust output message.
5238         (trace_save_tfile, trace_save_ctf): New.
5239         * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
5240         * mi/mi-main.c: Include 'ctf.h'.
5241         (mi_cmd_trace_save): Handle option '-ctf'.  Call either
5242         trace_save_tfile or trace_save_ctf.
5243         * NEWS: Mention these changes.
5244
5245 2013-03-14  Yao Qi  <yao@codesourcery.com>
5246
5247         * tracepoint.c (trace_file_writer_xfree): New.
5248         (struct tfile_writer_data): New.
5249         (tfile_dtor, tfile_can_target_save, tfile_start): New.
5250         (tfile_write_header, tfile_write_regblock_type): New.
5251         (tfile_write_status, tfile_write_uploaded_tsv): New.
5252         (tfile_write_uploaded_tp, tfile_write_definition_end): New.
5253         (tfile_write_raw_data, (tfile_end): New.
5254         (tfile_write_ops): New global variable.
5255         (TRACE_WRITE_R_BLOCK): New macro.
5256         (TRACE_WRITE_M_BLOCK_HEADER): New macro.
5257         (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
5258         (TRACE_WRITE_V_BLOCK): New macro.
5259         (trace_save): Add extra one parameter WRITER.  Make it static.
5260         Use WRITER to writer trace.
5261         (tfile_trace_file_writer_new): New.
5262         (trace_save_command): Caller update.
5263         (trace_save_tfile): Write trace data in TFILE format.
5264         * tracepoint.h (struct trace_frame_write_ops): New.
5265         (struct trace_file_write_ops): New.
5266         (struct trace_file_writer): New.
5267         (trace_save): Remove its declaration.
5268         (trace_save_tfile): Declare it.
5269         * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
5270         instead of trace_save.
5271
5272 2013-03-13  Pedro Alves  <palves@redhat.com>
5273
5274         * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
5275
5276 2013-03-13  Pedro Alves  <palves@redhat.com>
5277
5278         * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
5279         commented out code.
5280         * demangle.c (current_demangling_style_string): Make it const.
5281         (set_demangling_command): Assert the demangling style is known.
5282         Remove all handling of unknown styles.  Set
5283         'current_demangling_style_string' to an element of the
5284         demangling_style_names array.
5285         (set_demangling_style): Delete.
5286         (_initialize_demangler): Set current_demangling_style_string to the
5287         element of the demangling_style_names array that corresponds to
5288         the default demangling style.  Remove FIXME note.  Don't call
5289         set_demangling_style.
5290         * gdb-demangle.h (set_demangling_style): Remove declaration.
5291
5292 2013-03-13  Pedro Alves  <palves@redhat.com>
5293
5294         * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
5295         fields const.
5296         (ada_make_symbol_completion_list): Make "text0" parameter const.
5297         * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
5298         * breakpoint.c (condition_completer): Make "text" and "word"
5299         parameters const.  Adjust.
5300         (check_tracepoint_command): Adjust to validate_actionline
5301         prototype change.
5302         (catch_syscall_completer): Make "text" and "word" parameters
5303         const.
5304         * cli/cli-cmds.c (show_user): Make "comname" local const.
5305         (valid_command_p): Make "command" parameter const.
5306         (alias_command): Make "alias_prefix" and "command_prefix" locals
5307         const.
5308         * cli/cli-decode.c (add_cmd): Make "name" parameter const.
5309         (add_alias_cmd): Make "name" and "oldname" parameters const.
5310         Adjust.  No longer make copy of OLDNAME.
5311         (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
5312         (add_setshow_cmd_full, add_setshow_enum_cmd)
5313         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
5314         (add_setshow_filename_cmd, add_setshow_string_cmd)
5315         (add_setshow_string_noescape_cmd)
5316         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
5317         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
5318         (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
5319         (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
5320         Make "name" parameter const.
5321         (help_cmd): Rename "command" parameter to "arg".  New const local
5322         "command".
5323         (find_cmd): Make "command" parameter const.
5324         (lookup_cmd_1): Make "text" parameter pointer to const.  Adjust to
5325         deprecated_cmd_warning prototype change.
5326         (undef_cmd_error): Make "cmdtype" parameter const.
5327         (lookup_cmd): Make "line" parameter const.
5328         (deprecated_cmd_warning): Change type of "text" parameter to
5329         pointer to const char, from pointer to pointer to char.  Adjust.
5330         (lookup_cmd_composition): Make "text" parameter const.
5331         (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
5332         parameters const.
5333         * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
5334         const.
5335         * cli/cli-script.c (validate_comname): Make "tem" local const.
5336         (define_command): New const local "tem_c".  Use it in calls to
5337         lookup_cmd.
5338         (document_command): Make "tem" and "comfull" locals const.
5339         (show_user_1): Make "prefix" and "name" parameters const.
5340         * cli-script.h (show_user_1): Make "prefix" and "name" parameters
5341         const.
5342         * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
5343         (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
5344         (deprecated_cmd_warning, lookup_cmd_composition, add_com)
5345         (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
5346         (complete_on_enum, add_setshow_enum_cmd)
5347         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
5348         (add_setshow_filename_cmd, add_setshow_string_cmd)
5349         (add_setshow_string_noescape_cmd)
5350         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
5351         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
5352         (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
5353         Change prototypes, constifying strings.
5354         * completer.c (noop_completer, filename_completer): Make "text"
5355         and "prefix" parameters const.
5356         (location_completer, expression_completer)
5357         (complete_line_internal): Make "text" and "prefix" parameters
5358         const and adjust.
5359         (command_completer, signal_completer): Make "text" and "prefix"
5360         parameters const.
5361         * completer.h (noop_completer, filename_completer)
5362         (expression_completer, location_completer, command_completer)
5363         (signal_completer): Change prototypes.
5364         * corefile.c (complete_set_gnutarget): Make "text" and "word"
5365         parameters const.
5366         * cp-abi.c (cp_abi_completer): Likewise.
5367         * expression.h (parse_expression_for_completion): Change
5368         prototype.
5369         * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
5370         parameters const.
5371         * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
5372         * infrun.c (handle_completer): Make "text" and "word" parameters
5373         const.
5374         * interps.c (interpreter_completer): Make "text" and "word"
5375         parameters const.
5376         * language.h (struct language_defn)
5377         <la_make_symbol_completion_list>: Make "text" and "word"
5378         parameters const.
5379         * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
5380         (parse_exp_in_context): Rename to ...
5381         (parse_exp_in_context_1): ... this.
5382         (parse_exp_in_context): Reimplement, with const hack from
5383         parse_exp_1.
5384         (parse_expression_for_completion): Make "string" parameter const.
5385         * printcmd.c (decode_format): Make "string_ptr" parameter pointer
5386         to pointer to const char.  Adjust.
5387         (print_command_1): Make "exp" parameter const.
5388         (output_command): Rename to ...
5389         (output_command_const): ... this.  Make "exp" parameter const.
5390         (output_command): Reimplement.
5391         (x_command): Adjust.
5392         (display_command): Rename "exp" parameter to "arg".  New "exp"
5393         local, const version of "arg".
5394         * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
5395         "cmd_name" local const.
5396         * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
5397         call.
5398         (cmdpy_completer): Make "text" and "word" parameters const.
5399         (gdbpy_parse_command_name): Make "prefix_text2" local const.
5400         * python/py-param.c (add_setshow_generic): Make "tmp_name" local
5401         const.
5402         * remote.c (_initialize_remote): Make "cmd_name" local const.
5403         * symtab.c (language_search_unquoted_string): Make "text" and "p"
5404         parameters const.  Adjust.
5405         (completion_list_add_fields): Make "sym_text", "text" and "word"
5406         parameters const.
5407         (struct add_name_data) <sym_text, text, word>: Make fields const.
5408         (default_make_symbol_completion_list_break_on): Make "text" and
5409         "word" parameters const.  Adjust locals.
5410         (default_make_symbol_completion_list)
5411         (make_symbol_completion_list, make_symbol_completion_type)
5412         (make_symbol_completion_list_fn): Make "text" and "word"
5413         parameters const.
5414         (make_file_symbol_completion_list): Make "text", "word" and
5415         "srcfile" parameters const.  Adjust locals.
5416         (add_filename_to_list): Make "text" and "word" parameters const.
5417         (struct add_partial_filename_data) <text, word>: Make fields
5418         const.
5419         (make_source_files_completion_list): Make "text" and "word"
5420         parameters const.
5421         * symtab.h (default_make_symbol_completion_list_break_on)
5422         (default_make_symbol_completion_list, make_symbol_completion_list)
5423         (make_symbol_completion_type enum type_code)
5424         (make_symbol_completion_list_fn make_file_symbol_completion_list)
5425         (make_source_files_completion_list): Change prototype.
5426         * top.c (execute_command): Adjust to pass pointer to pointer to
5427         const char to lookup_cmd, and to deprecated_cmd_warning prototype
5428         change.
5429         (set_verbose): Make "cmdname" local const.
5430         * tracepoint.c (decode_agent_options): Make "exp" parameter const,
5431         and adjust.
5432         (validate_actionline): Make "line" parameter a pointer to const
5433         char, and adjust.
5434         (encode_actions_1): Make "action_exp" local const, and adjust.
5435         (encode_actions): Adjust.
5436         (replace_comma): Delete.
5437         (trace_dump_actions): Make "action_exp" and "next_comma" locals
5438         const, and adjust.  Don't frob the action string while splitting
5439         it at commas.  Instead, make a copy of each split substring in
5440         turn.
5441         (trace_dump_command): Adjust to validate_actionline prototype
5442         change.
5443         * tracepoint.h (decode_agent_options, decode_agent_options)
5444         (encode_actions, validate_actionline): Change prototypes.
5445         * valprint.h (output_command): Delete declaration.
5446         (output_command_const): Declare.
5447         * value.c (function_destroyer): Cast const away in xfree call.
5448
5449 2013-03-13  Pedro Alves  <palves@redhat.com>
5450
5451         * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
5452         rather than casting 'const char * const *' to 'const char **'.
5453         * ada-lex.l (processInt): Make "trailer" local const.  Remove
5454         'const char **' cast.
5455         * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
5456         locals, and use those as strtol output pointer, instead than doing
5457         invalid casts to from 'const char **' to 'char **'.
5458         (_initialize_demangle): Remove cast.
5459         * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
5460         locals, and use those as strtol output pointer, instead than doing
5461         invalid casts to from 'const char **' to 'char **'.
5462         * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
5463         casts.
5464         * stap-probe.c (stap_parse_register_operand)
5465         (stap_parse_single_operand): Likewise.
5466
5467 2013-03-13  Yao Qi  <yao@codesourcery.com>
5468
5469         * tracepoint.c (tfile_get_trace_state_variable_value): Look for
5470         the last matched 'V' blcok in trace frame.
5471
5472 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
5473
5474         * NEWS: Create a new section for the next release branch.
5475         Rename the section of the current branch, now that it has
5476         been cut.
5477
5478 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
5479
5480         GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
5481         * version.in: Bump version to 7.6.50.20130312-cvs.
5482
5483 2013-03-12  Keith Seitz  <keiths@redhat.com>
5484
5485         * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
5486         * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
5487         Remove temporary copy of input string.
5488         (mi_execute_command_wrapper): Make "cmd" const.
5489         * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
5490         * mi/mi-parse.c (mi_parse_argv): Make "args" const.
5491         Use const strings.
5492         (mi_parse): Make "cmd" const.
5493         Use const strings.
5494         * mi/mi-parse.h (mi_parse): Make "cmd" const.
5495
5496 2013-03-12  Keith Seitz  <keiths@redhat.com>
5497
5498         * ada-lang.c (ada_read_renaming_var_value): Pass const
5499         pointer to expression string to parse_exp_1.
5500         (create_excep_cond_exprs): Likewise.
5501         * ax-gdb.c (agent_eval_command_one): Likewise.
5502         (maint_agent_printf_command): Likewise.
5503         Constify much of the string handling/parsing.
5504         * breakpoint.c (set_breakpoint_condition): Pass const
5505         pointer to expression string to parse_exp_1.
5506         (update_watchpoint): Likewise.
5507         (parse_cmd_to_aexpr): Constify string handling.
5508         Pass const pointer to parse_exp_1.
5509         (init_breakpoint_sal): Pass const pointer to parse_exp_1.
5510         (find_condition_and_thread): Likewise.
5511         Make TOK const.
5512         (watch_command_1): Make "arg" const.
5513         Constify string handling.
5514         Copy the expression string instead of changing the input
5515         string.
5516         (update_breakpoint_location): Pass const pointer to
5517         parse_exp_1.
5518         * eval.c (parse_and_eval_address): Make "exp" const.
5519         (parse_to_comma_and_eval): Make "expp" const.
5520         (parse_and_eval): Make "exp" const.
5521         * expression.h (parse_expression): Make argument const.
5522         (parse_exp_1): Make first argument const.
5523         * findcmd.c (parse_find_args): Treat "args" as const.
5524         * linespec.c (parse_linespec): Pass const pointer to
5525         linespec_expression_to_pc.
5526         (linespec_expression_to_pc): Make "exp_ptr" const.
5527         * parse.c (parse_exp_1): Make "stringptr" const.
5528         Make a copy of the expression to pass to parse_exp_in_context until
5529         this whole interface can be constified.
5530         (parse_expression): Make "string" const.
5531         * printcmd.c (ui_printf): Treat "arg" as const.
5532         Handle const strings.
5533         * tracepoint.c (validate_actionline): Pass const pointer to
5534         all calls to parse_exp_1.
5535         (encode_actions_1): Likewise.
5536         * value.h (parse_to_comma_and_eval): Make argument const.
5537         (parse_and_eval_address): Likewise.
5538         (parse_and_eval): Likewise.
5539         * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
5540         (varobj_set_value): Likewise.
5541         * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
5542         constify string handling.
5543         Pass const pointers to parse_and_eval_address and
5544         parse_to_comman_and_eval.
5545         * cli/cli-utils.c (skip_to_space): Rename to ...
5546         (skip_to_space_const): ... this. Handle const strings.
5547         * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
5548         skip_to_space_const.
5549         (skip_to_space_const): Declare.
5550         * common/format.c (parse_format_string): Make "arg" const.
5551         Handle const strings.
5552         * common/format.h (parse_format_string): Make "arg" const.
5553         * gdbserver/ax.c (ax_printf): Make "format" const.
5554         * python/python.c (gdbpy_parse_and_eval): Do not make a copy
5555         of the expression string.
5556
5557 2013-03-12  Hui Zhu  <hui@codesourcery.com>
5558
5559         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
5560
5561 2013-03-12  Yao Qi  <yao@codesourcery.com>
5562             Hui Zhu  <hui@codesourcery.com>
5563
5564         * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
5565         (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
5566         DW_OP_deref_size.
5567
5568 2013-03-12  Paul Hilfinger  <hilfingr@adacore.com>
5569
5570         * ada-lex.l (rules): Only recognize 'thread' as a
5571         delimiter when followed by numerals, as for c-exp.y.
5572         Use new rewind_to_char function to rewind the input for
5573         expression-delimiting tokens.
5574         (rewind_to_char): New function.
5575
5576 2013-03-11  Pedro Alves  <palves@redhat.com>
5577             Jan Kratochvil  <jan.kratochvil@redhat.com>
5578
5579         * configure: Regenerate.
5580         * configure.ac (check dynamic export flag): Link python test with
5581         $PYTHON_LIBS.
5582
5583 2013-03-11  Doug Evans  <dje@google.com>
5584             Keith Seitz  <keiths@redhat.com>
5585
5586         * linespec.c (find_linespec_symbols): Call find_function_symbols
5587         first, and then call lookup_prefix_sym/find_method.
5588
5589 2013-03-11  Pedro Alves  <palves@redhat.com>
5590
5591         * charset.c (convert_between_encodings): Don't cast between
5592         different pointer to pointer types.  Instead, make the 'inp' local
5593         be of the type iconv expects.
5594         (wchar_iterate): Don't cast between different pointer to pointer
5595         types.  Instead, use new pointer local of the type iconv expects.
5596         * target.c (target_read_stralloc, target_fileio_read_stralloc):
5597         Add new local of type char pointer, and use it to get a
5598         char/string view of the byte buffer, instead of casting between
5599         pointer to pointer types.
5600
5601 2013-03-11  Hafiz Abid Qadeer  <abidh@codesourcery.com>
5602
5603         * remote.c (remote_set_trace_buffer_size): Move != operator
5604         to the start of next line to fix an ARI warning.
5605
5606 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5607
5608         * NEWS: Add record changes.
5609
5610 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5611
5612         * record-btrace.c (btrace_insn_history): Omit the pc prefix in
5613         the instruction history disassembly.
5614         * disasm.c (dump_insns): Omit the pc prefix, if requested.
5615         * disasm.h (DISASSEMBLY_OMIT_PC): New.
5616
5617 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5618
5619         * Makefile.in (SFILES): Add record-btrace.c
5620         (COMMON_OBS): Add record-btrace.o
5621         * record-btrace.c: New.
5622         * objfiles.c: Include btrace.h.
5623         (free_objfile): call btrace_free_objfile.
5624
5625 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5626
5627         * target.c (target_call_history, target_call_history_from,
5628         target_call_history_range): New.
5629         * target.h (target_ops) <to_call_history, to_call_history_from,
5630         to_call_history_range>: New fields.
5631         (target_call_history, target_call_history_from,
5632         target_call_history_range): New declaration.
5633         * record.c (get_call_history_modifiers, cmd_record_call_history,
5634         record_call_history_size): New.
5635         (_initialize_record): Add the "record function-call-history" command.
5636         Add "set/show record function-call-history-size" commands.
5637         * record.h (record_print_flag): New.
5638
5639 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5640
5641         * target.h (target_ops) <to_insn_history, to_insn_history_from,
5642         to_insn_history_range>: New fields.
5643         (target_insn_history): New.
5644         (target_insn_history_from): New.
5645         (target_insn_history_range): New.
5646         * target.c (target_insn_history): New.
5647         (target_insn_history_from): New.
5648         (target_insn_history_range): New.
5649         * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
5650         (record_insn_history_size): New.
5651         (get_insn_number): New.
5652         (get_context_size): New.
5653         (no_chunk): New.
5654         (get_insn_history_modifiers): New.
5655         (cmd_record_insn_history): New.
5656         (_initialize_record): Add "set/show record instruction-history-size"
5657         command. Add "record instruction-history" command.
5658
5659 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5660
5661         * record.h (record_disconnect): New.
5662         (record_detach): New.
5663         (record_mourn_inferior): New.
5664         (record_kill): New.
5665         * record-full.c (record_disconnect, record_detach,
5666         record_mourn_inferior, record_kill): Move to...
5667         * record.c: ...here.
5668         (DEBUG): New.
5669         (record_stop): New.
5670         (record_unpush): New.
5671         (cmd_record_stop): Call record_stop. Replace unpush_target
5672         call with record_unpush call.
5673         (record_disconnect, record_detach): Assert that the target
5674         is of record stratum. Call record_unpush, record_stop, and
5675         DEBUG.
5676         (record_mourn_inferior, record_kill): Assert that the target
5677         is of record stratum. Call record_unpush and DEBUG.
5678
5679 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5680
5681         * record-full.h, record-full.c (record_memory_query): Rename
5682         to ...
5683         (record_full_memory_query): ...this. Update all users.
5684         (record_arch_list_add_reg): Rename to ...
5685         (record_full_arch_list_add_reg): ...this. Update all users.
5686         (record_arch_list_add_mem): Rename to ...
5687         (record_full_arch_list_add_mem): ...this. Update all users.
5688         (record_arch_list_add_end): Rename to ...
5689         (record_full_arch_list_add_end): ...this. Update all users.
5690         (record_gdb_operation_disable_set): Rename to ...
5691         (record_full_gdb_operation_disable_set): ...this.
5692         Update all users.
5693
5694 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5695
5696         * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
5697         (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
5698         (RECORD_IS_REPLAY): Renamed to ...
5699         (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
5700         (RECORD_FILE_MAGIC): Renamed to ...
5701         (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
5702         (record_mem_entry): Renamed to ...
5703         (record_full_mem_entry): ... this. Updated all users.
5704         (record_reg_entry): Renamed to ...
5705         (record_full_reg_entry): ... this. Updated all users.
5706         (record_end_entry): Renamed to ...
5707         (record_full_end_entry): ... this. Updated all users.
5708         (record_type) <record_end, record_reg, record_mem>: Renamed
5709         to ...
5710         (record_full_type) <record_full_end, record_full_reg,
5711         record_full_mem>: ... this. Updated all users.
5712         (record_entry): Renamed to ...
5713         (record_full_entry): ... this. Updated all users.
5714         (record_core_buf_entry): Renamed to ...
5715         (record_full_core_buf_entry): ... this. Updated all users.
5716         (record_core_regbuf): Renamed to ...
5717         (record_full_core_regbuf): ... this. Updated all users.
5718         (record_core_start): Renamed to ...
5719         (record_full_core_start): ... this. Updated all users.
5720         (record_core_end): Renamed to ...
5721         (record_full_core_end): ... this. Updated all users.
5722         (record_core_buf_list): Renamed to ...
5723         (record_full_core_buf_list): ... this. Updated all users.
5724         (record_first): Renamed to ...
5725         (record_full_first): ... this. Updated all users.
5726         (record_list): Renamed to ...
5727         (record_full_list): ... this. Updated all users.
5728         (record_arch_list_head): Renamed to ...
5729         (record_full_arch_list_head): ... this. Updated all users.
5730         (record_arch_list_tail): Renamed to ...
5731         (record_full_arch_list_tail): ... this. Updated all users.
5732         (record_stop_at_limit): Renamed to ...
5733         (record_full_stop_at_limit): ... this. Updated all users.
5734         (record_insn_max_num): Renamed to ...
5735         (record_full_insn_max_num): ... this. Updated all users.
5736         (record_insn_num): Renamed to ...
5737         (record_full_insn_num): ... this. Updated all users.
5738         (record_insn_count): Renamed to ...
5739         (record_full_insn_count): ... this. Updated all users.
5740         (record_ops): Renamed to ...
5741         (record_full_ops): ... this. Updated all users.
5742         (record_core_ops): Renamed to ...
5743         (record_full_core_ops): ... this. Updated all users.
5744         (set_record_cmdlist): Renamed to ...
5745         (set_record_full_cmdlist): ... this. Updated all users.
5746         (show_record_cmdlist): Renamed to ...
5747         (show_record_full_cmdlist): ... this. Updated all users.
5748         (record_cmdlist): Renamed to ...
5749         (record_full_cmdlist): ... this. Updated all users.
5750         (record_beneath_to_resume_ops): Renamed to ...
5751         (record_full_beneath_to_resume_ops): ... this. Updated all users.
5752         (record_beneath_to_resume): Renamed to ...
5753         (record_full_beneath_to_resume): ... this. Updated all users.
5754         (record_beneath_to_wait_ops): Renamed to ...
5755         (record_full_beneath_to_wait_ops): ... this. Updated all users.
5756         (record_beneath_to_wait): Renamed to ...
5757         (record_full_beneath_to_wait): ... this. Updated all users.
5758         (record_beneath_to_store_registers_ops): Renamed to ...
5759         (record_full_beneath_to_store_registers_ops): ... this.
5760         Updated all users.
5761         (record_beneath_to_store_registers): Renamed to ...
5762         (record_full_beneath_to_store_registers): ... this.
5763         Updated all users.
5764         (record_beneath_to_xfer_partial_ops): Renamed to ...
5765         (record_full_beneath_to_xfer_partial_ops): ... this.
5766         Updated all users.
5767         (record_beneath_to_xfer_partial): Renamed to ...
5768         (record_full_beneath_to_xfer_partial): ... this.
5769         Updated all users.
5770         (record_beneath_to_insert_breakpoint): Renamed to ...
5771         (record_full_beneath_to_insert_breakpoint): ... this.
5772         Updated all users.
5773         (record_beneath_to_stopped_by_watchpoint): Renamed to ...
5774         (record_full_beneath_to_stopped_by_watchpoint): ... this.
5775         Updated all users.
5776         (record_beneath_to_stopped_data_address): Renamed to ...
5777         (record_full_beneath_to_stopped_data_address): ... this.
5778         Updated all users.
5779         (record_beneath_to_async): Renamed to ...
5780         (record_full_beneath_to_async): ... this. Updated all users.
5781         (record_goto_insn): Renamed to ...
5782         (record_full_goto_insn): ... this. Updated all users.
5783         (record_save): Renamed to ...
5784         (record_full_save): ... this. Updated all users.
5785         (record_reg_alloc): Renamed to ...
5786         (record_full_reg_alloc): ... this. Updated all users.
5787         (record_reg_release): Renamed to ...
5788         (record_full_reg_release): ... this. Updated all users.
5789         (record_mem_alloc): Renamed to ...
5790         (record_full_mem_alloc): ... this. Updated all users.
5791         (record_mem_release): Renamed to ...
5792         (record_full_mem_release): ... this. Updated all users.
5793         (record_end_alloc): Renamed to ...
5794         (record_full_end_alloc): ... this. Updated all users.
5795         (record_end_release): Renamed to ...
5796         (record_full_end_release): ... this. Updated all users.
5797         (record_entry_release): Renamed to ...
5798         (record_full_entry_release): ... this. Updated all users.
5799         (record_list_release): Renamed to ...
5800         (record_full_list_release): ... this. Updated all users.
5801         (record_list_release_following): Renamed to ...
5802         (record_full_list_release_following): ... this.
5803         Updated all users.
5804         (record_list_release_first): Renamed to ...
5805         (record_full_list_release_first): ... this. Updated all users.
5806         (record_arch_list_add): Renamed to ...
5807         (record_full_arch_list_add): ... this. Updated all users.
5808         (record_get_loc): Renamed to ...
5809         (record_full_get_loc): ... this. Updated all users.
5810         (record_check_insn_num): Renamed to ...
5811         (record_full_check_insn_num): ... this. Updated all users.
5812         (record_arch_list_cleanups): Renamed to ...
5813         (record_full_arch_list_cleanups): ... this. Updated all users.
5814         (record_message): Renamed to ...
5815         (record_full_message): ... this. Updated all users.
5816         (record_message_wrapper): Renamed to ...
5817         (record_full_message_wrapper): ... this. Updated all users.
5818         (record_message_wrapper_safe): Renamed to ...
5819         (record_full_message_wrapper_safe): ... this. Updated all users.
5820         (record_gdb_operation_disable): Renamed to ...
5821         (record_full_gdb_operation_disable): ... this. Updated all users.
5822         (record_hw_watchpoint): Renamed to ...
5823         (record_full_hw_watchpoint): ... this. Updated all users.
5824         (record_exec_insn): Renamed to ...
5825         (record_full_exec_insn): ... this. Updated all users.
5826         (record_restore): Renamed to ...
5827         (record_full_restore): ... this. Updated all users.
5828         (record_async_inferior_event_token): Renamed to ...
5829         (record_full_async_inferior_event_token): ... this.
5830         Updated all users.
5831         (record_async_inferior_event_handler): Renamed to ...
5832         (record_full_async_inferior_event_handler): ... this.
5833         Updated all users.
5834         (record_core_open_1): Renamed to ...
5835         (record_full_core_open_1): ... this. Updated all users.
5836         (record_open_1): Renamed to ...
5837         (record_full_open_1): ... this. Updated all users.
5838         (record_open): Renamed to ...
5839         (record_full_open): ... this. Updated all users.
5840         (record_close): Renamed to ...
5841         (record_full_close): ... this. Updated all users.
5842         (record_resume_step): Renamed to ...
5843         (record_full_resume_step): ... this. Updated all users.
5844         (record_resumed): Renamed to ...
5845         (record_full_resumed): ... this. Updated all users.
5846         (record_execution_dir): Renamed to ...
5847         (record_full_execution_dir): ... this. Updated all users.
5848         (record_resume): Renamed to ...
5849         (record_full_resume): ... this. Updated all users.
5850         (record_get_sig): Renamed to ...
5851         (record_full_get_sig): ... this. Updated all users.
5852         (record_sig_handler): Renamed to ...
5853         (record_full_sig_handler): ... this. Updated all users.
5854         (record_wait_cleanups): Renamed to ...
5855         (record_full_wait_cleanups): ... this. Updated all users.
5856         (record_wait_1): Renamed to ...
5857         (record_full_wait_1): ... this. Updated all users.
5858         (record_wait): Renamed to ...
5859         (record_full_wait): ... this. Updated all users.
5860         (record_stopped_by_watchpoint): Renamed to ...
5861         (record_full_stopped_by_watchpoint): ... this. Updated all users.
5862         (record_disconnect): Renamed to ...
5863         (record_full_disconnect): ... this. Updated all users.
5864         (record_detach): Renamed to ...
5865         (record_full_detach): ... this. Updated all users.
5866         (record_mourn_inferior): Renamed to ...
5867         (record_full_mourn_inferior): ... this. Updated all users.
5868         (record_kill): Renamed to ...
5869         (record_full_kill): ... this. Updated all users.
5870         (record_stopped_data_address): Renamed to ...
5871         (record_full_stopped_data_address): ... this. Updated all users.
5872         (record_registers_change): Renamed to ...
5873         (record_full_registers_change): ... this. Updated all users.
5874         (record_store_registers): Renamed to ...
5875         (record_full_store_registers): ... this. Updated all users.
5876         (record_xfer_partial): Renamed to ...
5877         (record_full_xfer_partial): ... this. Updated all users.
5878         (record_breakpoint): Renamed to ...
5879         (record_full_breakpoint): ... this. Updated all users.
5880         (record_breakpoint_p): Renamed to ...
5881         (record_full_breakpoint_p): ... this. Updated all users.
5882         (record_breakpoints): Renamed to ...
5883         (record_full_breakpoints): ... this. Updated all users.
5884         (record_sync_record_breakpoints): Renamed to ...
5885         (record_full_sync_record_breakpoints): ... this.
5886         Updated all users.
5887         (record_init_record_breakpoints): Renamed to ...
5888         (record_full_init_record_breakpoints): ... this.
5889         Updated all users.
5890         (record_insert_breakpoint): Renamed to ...
5891         (record_full_insert_breakpoint): ... this. Updated all users.
5892         (record_remove_breakpoint): Renamed to ...
5893         (record_full_remove_breakpoint): ... this. Updated all users.
5894         (record_can_execute_reverse): Renamed to ...
5895         (record_full_can_execute_reverse): ... this. Updated all users.
5896         (record_get_bookmark): Renamed to ...
5897         (record_full_get_bookmark): ... this. Updated all users.
5898         (record_goto_bookmark): Renamed to ...
5899         (record_full_goto_bookmark): ... this. Updated all users.
5900         (record_async): Renamed to ...
5901         (record_full_async): ... this. Updated all users.
5902         (record_can_async_p): Renamed to ...
5903         (record_full_can_async_p): ... this. Updated all users.
5904         (record_is_async_p): Renamed to ...
5905         (record_full_is_async_p): ... this. Updated all users.
5906         (record_execution_direction): Renamed to ...
5907         (record_full_execution_direction): ... this. Updated all users.
5908         (record_info): Renamed to ...
5909         (record_full_info): ... this. Updated all users.
5910         (record_delete): Renamed to ...
5911         (record_full_delete): ... this. Updated all users.
5912         (record_is_replaying): Renamed to ...
5913         (record_full_is_replaying): ... this. Updated all users.
5914         (record_goto_entry): Renamed to ...
5915         (record_full_goto_entry): ... this. Updated all users.
5916         (record_goto_begin): Renamed to ...
5917         (record_full_goto_begin): ... this. Updated all users.
5918         (record_goto_end): Renamed to ...
5919         (record_full_goto_end): ... this. Updated all users.
5920         (record_goto): Renamed to ...
5921         (record_full_goto): ... this. Updated all users.
5922         (init_record_ops): Renamed to ...
5923         (init_record_full_ops): ... this. Updated all users.
5924         (record_core_resume): Renamed to ...
5925         (record_full_core_resume): ... this. Updated all users.
5926         (record_core_kill): Renamed to ...
5927         (record_full_core_kill): ... this. Updated all users.
5928         (record_core_fetch_registers): Renamed to ...
5929         (record_full_core_fetch_registers): ... this. Updated all users.
5930         (record_core_prepare_to_store): Renamed to ...
5931         (record_full_core_prepare_to_store): ... this. Updated all users.
5932         (record_core_store_registers): Renamed to ...
5933         (record_full_core_store_registers): ... this. Updated all users.
5934         (record_core_xfer_partial): Renamed to ...
5935         (record_full_core_xfer_partial): ... this. Updated all users.
5936         (record_core_insert_breakpoint): Renamed to ...
5937         (record_full_core_insert_breakpoint): ... this. Updated all users.
5938         (record_core_remove_breakpoint): Renamed to ...
5939         (record_full_core_remove_breakpoint): ... this. Updated all users.
5940         (record_core_has_execution): Renamed to ...
5941         (record_full_core_has_execution): ... this. Updated all users.
5942         (init_record_core_ops): Renamed to ...
5943         (init_record_full_core_ops): ... this. Updated all users.
5944         (cmd_record_restore): Renamed to ...
5945         (cmd_record_full_restore): ... this. Updated all users.
5946         (record_save_cleanups): Renamed to ...
5947         (record_full_save_cleanups): ... this. Updated all users.
5948         (cmd_record_start): Renamed to ...
5949         (cmd_record_full_start): ... this. Updated all users.
5950         (set_record_insn_max_num): Renamed to ...
5951         (set_record_full_insn_max_num): ... this. Updated all users.
5952         (set_record_command): Renamed to ...
5953         (set_record_full_command): ... this. Updated all users.
5954         (show_record_command): Renamed to ...
5955         (show_record_full_command): ... this. Updated all users.
5956         (_initialize_record): Renamed to ...
5957         (_initialize_record_full): ... this. Updated all users.
5958
5959 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
5960
5961         * record.h: Split into this and ...
5962         * record-full.h: ... this.
5963         * record.c: Split into this and ...
5964         * record-full.c: ... this.
5965         * target.h (target_ops): Add new fields to_info_record,
5966         to_save_record, to_delete_record, to_record_is_replaying,
5967         to_goto_record_begin, to_goto_record_end, to_goto_record.
5968         (target_info_record): New.
5969         (target_save_record): New.
5970         (target_supports_delete_record): New.
5971         (target_delete_record): New.
5972         (target_record_is_replaying): New.
5973         (target_goto_record_begin): New.
5974         (target_goto_record_end): New.
5975         (target_goto_record): New.
5976         * target.c (target_info_record): New.
5977         (target_save_record): New.
5978         (target_supports_delete_record): New.
5979         (target_delete_record): New.
5980         (target_record_is_replaying): New.
5981         (target_goto_record_begin): New.
5982         (target_goto_record_end): New.
5983         (target_goto_record): New.
5984         * record.h: Declare struct cmd_list_element.
5985         (record_cmdlist): New declaration.
5986         (set_record_cmdlist): New declaration.
5987         (show_record_cmdlist): New declaration.
5988         (info_record_cmdlist): New declaration.
5989         (cmd_record_goto): New declaration.
5990         * record.c: Remove unnecessary includes.
5991         Include inferior.h.
5992         (cmd_record_goto): Remove declaration.
5993         (record_cmdlist): Now extern. Initialize.
5994         (set_record_cmdlist): Now extern. Initialize.
5995         (show_record_cmdlist): Now extern. Initialize.
5996         (info_record_cmdlist): Now extern. Initialize.
5997         (find_record_target): New.
5998         (require_record_target): New.
5999         (cmd_record_start): Update.
6000         (cmd_record_delete): Remove target-specific code.
6001         Call target_delete_record.
6002         (cmd_record_stop): Unpush any record target.
6003         (set_record_insn_max_num): Move to record-full.c
6004         (set_record_command): Add comment.
6005         (show_record_command): Add comment.
6006         (info_record_command): Update comment.
6007         Remove target-specific code.
6008         Call the record target's to_info_record.
6009         (cmd_record_start): New.
6010         (cmd_record_goto): Now extern.
6011         Remove target-specific code.
6012         Call target_goto_begin,  target_goto_end, or target_goto.
6013         (_initialize_record): Move record target ops initialization to
6014         record-full.c.
6015         Change "record" command help text.
6016         Move "record restore", "record set", and "record show" commands to
6017         record-full.c.
6018         * Makefile.in (SFILES): Add record-full.c.
6019         (HFILES_NO_SRCDIR): Add record-full.h.
6020         (COMMON_OBS): Add record-full.o.
6021         * amd64-linux-tdep.c: Include record-full.h instead of record.h.
6022         * arm-tdep.c: Include record-full.h.
6023         * i386-linux-tdep.c: Include record-full.h instead of record.h.
6024         * i386-tdep.c: Include record-full.h.
6025         * infrun.c: Include record-full.h.
6026         * linux-record.c: Include record-full.h.
6027         * moxie-tdep.c: Include record-full.h.
6028         * record-full.c: Include record-full.h.
6029         Change module comment.
6030         (set_record_full_cmdlist): New.
6031         (show_record_full_cmdlist): New.
6032         (record_full_cmdlist): New.
6033         (record_goto_insn): New declaration.
6034         (record_save): New declaration.
6035         (record_check_insn_num): Change query string.
6036         (record_info): New.
6037         (record_delete): New.
6038         (record_is_replaying): New.
6039         (record_goto_entry): New.
6040         (record_goto_begin): New.
6041         (record_goto_end): New.
6042         (record_goto): New.
6043         (init_record_ops): Update.
6044         (init_record_core_ops): Update.
6045         (cmd_record_save): Rename to record_save. Remove target and arg checks.
6046         (cmd_record_start): New.
6047         (set_record_insn_max_num): Moved from record.c
6048         (set_record_full_command): New.
6049         (show_record_full_command): New.
6050         (_initialize_record_full): New.
6051
6052 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
6053
6054         * target.h (add_deprecated_target_alias): New.
6055         * target.c (add_deprecated_target_alias): New.
6056
6057 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
6058
6059         * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
6060         and signal.h.
6061         (linux_supports_btrace): Add kernel and
6062         cpuid check.
6063         (kernel_supports_btrace): New function.
6064         (cpu_supports_btrace): New function.
6065         (intel_supports_btrace): New function.
6066
6067 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
6068
6069         * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
6070         * remote.c: Include btrace.h.
6071         (struct btrace_target_info): New struct.
6072         (remote_supports_btrace): New function.
6073         (send_Qbtrace): New function.
6074         (remote_enable_btrace): New function.
6075         (remote_disable_btrace): New function.
6076         (remote_teardown_btrace): New function.
6077         (remote_read_btrace): New function.
6078         (init_remote_ops): Add btrace ops.
6079         (enum <unnamed>): Add btrace packets.
6080         (struct protocol_feature remote_protocol_features[]): Add btrace packets.
6081         (_initialize_remote): Add packet configuration for branch tracing.
6082
6083 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
6084
6085         * features/btrace.dtd: New file.
6086         * Makefile.in (XMLFILES): Add btrace.dtd.
6087         * btrace.h (parse_xml_btrace): New declaration.
6088         * btrace.c: Include xml-support.h.
6089         (parse_xml_btrace): New function.
6090         (parse_xml_btrace_block): New function.
6091         (block_attributes): New struct.
6092         (btrace_attributes): New struct.
6093         (btrace_children): New struct.
6094         (btrace_elements): New struct.
6095
6096 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
6097
6098         * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
6099         (amd64_linux_enable_btrace): New.
6100         (amd64_linux_disable_btrace): New.
6101         (amd64_linux_teardown_btrace): New.
6102         (_initialize_amd64_linux_nat): Initialize btrace ops.
6103         * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
6104         (i386_linux_enable_btrace): New.
6105         (i386_linux_disable_btrace): New.
6106         (i386_linux_teardown_btrace): New.
6107         (_initialize_i386_linux_nat): Initialize btrace ops.
6108         * config/i386/linux.mh: Add linux-btrace.o.
6109         * config/i386/linux64.mh: Add linux-btrace.o.
6110
6111 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
6112
6113         * common/linux_btrace.h: New file.
6114         * common/linux_btrace.c: New file.
6115         * Makefile.in (SFILES): Add btrace.c.
6116         (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
6117         (COMMON_OBS): Add btrace.o.
6118         (linux-btrace.o): New rule.
6119
6120 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
6121
6122         * target.h: Include btrace.h.
6123         (struct target_ops) <to_supports_btrace, to_enable_btrace,
6124         to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
6125         * target.c (target_supports_btrace): New function.
6126         (target_enable_btrace): New function.
6127         (target_disable_btrace): New function.
6128         (target_teardown_btrace): New function.
6129         (target_read_btrace): New function.
6130         * btrace.h: New file.
6131         * btrace.c: New file.
6132         * Makefile.in: Add btrace.c.
6133         * gdbthread.h: Include btrace.h.
6134         (struct thread_info): Add btrace field.
6135         * thread.c: Include btrace.h.
6136         (clear_thread_inferior_resources): Call target_teardown_btrace.
6137         * common/btrace-common.h: New file.
6138
6139 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
6140
6141         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
6142         for CHILD, ignore PTRACE_KILL errors, move the inner block variable
6143         kill_status to outer block.
6144
6145 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
6146
6147         Fix entry-values if the callee called a noreturn function.
6148         * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
6149         get_frame_address_in_block.  Add new comment.
6150
6151 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
6152
6153         Fix entry-values in C++ across CUs.
6154         * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
6155         lookup_minimal_symbol.  Add a comment.
6156         * dwarf2read.c
6157         (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
6158         DW_AT_linkage_name.
6159
6160 2013-03-08  Yao Qi  <yao@codesourcery.com>
6161
6162         * tracepoint.c (_initialize_tracepoint): Indent the code.
6163
6164 2013-03-08  Pedro Alves  <palves@redhat.com>
6165
6166         * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
6167         (parse_find_args, find_command): Change type of pattern buffer
6168         locals to 'gdb_byte *'.
6169
6170 2013-03-08  Stan Shebs  <stan@codesourcery.com>
6171             Hafiz Abid Qadeer  <abidh@codesourcery.com>
6172
6173         * NEWS: Mention set and show trace-buffer-size commands.
6174         Mention new packet.
6175         * target.h (struct target_ops): New method
6176         to_set_trace_buffer_size.
6177         (target_set_trace_buffer_size): New macro.
6178         * target.c (update_current_target): Set up new method.
6179         * tracepoint.c (trace_buffer_size): New global.
6180         (start_tracing): Send it to the target.
6181         (set_trace_buffer_size): New function.
6182         (_initialize_tracepoint): Add new setshow for trace-buffer-size.
6183         * remote.c (remote_set_trace_buffer_size): New function.
6184         (_initialize_remote): Use it.
6185         (QTBuffer:size) New remote command.
6186         (PACKET_QTBuffer_size): New enum.
6187         (remote_protocol_features): Add an entry for
6188         PACKET_QTBuffer_size.
6189
6190 2013-03-08  Tom Tromey  <tromey@redhat.com>
6191
6192         * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
6193         variable.
6194
6195 2013-03-07  Pedro Alves  <palves@redhat.com>
6196
6197         * target.c (target_read_stralloc, target_fileio_read_alloc):
6198         *Cast pointer to 'gdb_byte *' in target call.
6199
6200 2013-03-07  Pedro Alves  <palves@redhat.com>
6201
6202         * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
6203         call.
6204
6205 2013-03-07  Keith Seitz  <keiths@redhat.com>
6206
6207         * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
6208         (trace_pass_command): Likewise.
6209         * cli/cli-cmds.c: Include cli/cli-utils.h.
6210         (source_command): Use skip-spaces.
6211         (disassemble_command): Likewise.
6212         * findcmd.c: Include cli/cli-utils.h.
6213         (parse_find_args): Use skip_spaces.
6214         * go32-nat.c: Include cli/cli-utils.h.
6215         (go32_sldt): Use skip_spaces.
6216         (go32_sgdt): Likewise.
6217         (go32_sidt): Likewise.
6218         (go32_pde): Likewise.
6219         (go32_pte): Likewise.
6220         (go32_pte_for_address): Likewise.
6221         * infcmd.c: Include cli/cli-utils.h.
6222         (registers_info): Use skip_spaces.
6223         * linux-tdep.c (read_mapping): Use skip_spaces_const.
6224         (linux_info_proc): Likewise.
6225         * linux-thread-db.c: Include cli/cli-utils.h.
6226         (info_auto_load_libthread_db): Use skip_spaces_const.
6227         * m32r-rom.c: Include cli/cli-utils.h.
6228         (m32r_upload_command): Use skip_spaces.
6229         * maint.c: Include cli/cli-utils.h.
6230         (maintenance_translate_address): Use skip_spaces.
6231         * mi/mi-parse.c: Include cli/cli-utils.h.
6232         (mi_parse_argv): Use skip_spaces.
6233         (mi_parse): Likewise.
6234         * minsyms.c: Include cli/cli-utils.h.
6235         (msymbol_hash_iw): Use skip_spaces_const.
6236         * objc-lang.c: Include cli/cli-utils.h.
6237         (parse_selector): Use skip_spaces.
6238         (parse_method): Likewise.
6239         * python/python.c: Include cli/cli-utils.h.
6240         (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
6241         (python_command)[HAVE_PYTHON]: Likewise.
6242         (python_interactive_command)[!HAVE_PYTHON]: Likewise.
6243         * remote-m32r-sdi.c: Include cli/cli-utils.h.
6244         (m32r_load): Use skip_spaces.
6245         * serial.c: Include cli/cli-utils.h.
6246         (serial_open): Use skip_spaces_const.
6247         * stack.c: Include cli/cli-utils.h.
6248         (parse_frame_specification_1): Use skip_spaces_const.
6249         * symfile.c: Include cli/cli-utils.h.
6250         (set_ext_lang_command): Use skip_spaces.
6251         * symtab.c: Include cli/cli-utils.h.
6252         (rbreak_command): Use skip_spaces.
6253         * thread.c (thread_name_command): Use skip_spaces.
6254         * tracepoint.c (validate_actionline): Use skip_spaces.
6255         (encode_actions_1): Likewise.
6256         (trace_find_range_command): Likewise.
6257         (trace_find_outside_command): Likewise.
6258         (trace_dump_actions): Likewise.
6259
6260 2013-03-07  Pedro Alves  <palves@redhat.com>
6261
6262         * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
6263         * expprint.c (print_subexp_standard): Likewise.
6264         * utils.c (host_char_to_target): Likewise.
6265         * valprint.c (generic_emit_char, generic_printstr): Likewise.
6266         * varobj.c (value_get_print_value): Change type of local to char*.
6267         Cast it gdb_byte * in call to language printer.
6268
6269 2013-03-07  Pedro Alves  <palves@redhat.com>
6270
6271         * charset.c (struct wchar_iterator) <input>: Change type to 'const
6272         gdb_byte *'.
6273         (make_wchar_iterator): Remove cast to char*.
6274         (wchar_iterate): Change type of local.
6275
6276 2013-03-07  Pedro Alves  <palves@redhat.com>
6277
6278         * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
6279         for 'regcache->register_status'.
6280
6281 2013-03-07  Pedro Alves  <palves@redhat.com>
6282
6283         * breakpoint.c (breakpoint_xfer_memory): Change type of local to
6284         int.
6285
6286 2013-03-07  Pedro Alves  <palves@redhat.com>
6287
6288         * stap-probe.c (handle_stap_probe): Add cast to char*.
6289
6290 2013-03-07  Pedro Alves  <palves@redhat.com>
6291
6292         * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
6293         RECORD_MSGRCV>: Pass a signed variable to
6294         regcache_raw_read_signed, instead of an unsigned one.
6295
6296 2013-03-07  Pedro Alves  <palves@redhat.com>
6297
6298         * remote-notif.c (notif_debug): Change type to int.
6299         * remote-notif.h (notif_debug): Likewise.
6300
6301 2013-03-07  Pedro Alves  <palves@redhat.com>
6302
6303         * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
6304
6305 2013-03-07  Pedro Alves  <palves@redhat.com>
6306
6307         * remote.c (hex2bin, bin2hex): Move extern declarations to ...
6308         * remote.h (hex2bin, bin2hex): ... here.
6309         * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
6310
6311 2013-03-07  Eli Zaretskii  <eliz@gnu.org>
6312
6313         * utils.c (initialize_utils): Improve doc strings of "set/show
6314         width", "set/show height", and "set/show pagination".
6315
6316 2013-03-06  Keith Seitz  <keiths@redhat.com>
6317
6318         * ax-gdb.c (gen_printf): Make FORMAT const.
6319         * ax-gdb.h (gen_printf): Likewise.
6320         * ax-general.c (ax_string): Make STR const.
6321         * ax.h (ax_string): Likewise.
6322
6323 2013-03-06  Doug Evans  <dje@google.com>
6324
6325         * elfread.c (elf_symfile_read): Move debugging printf to more
6326         logical location.
6327
6328 2013-03-06  Pedro Alves  <palves@redhat.com>
6329
6330         * python/py-utils.c (target_string_to_unicode): Delete function.
6331         * python/python-internal.h (target_string_to_unicode): Delete
6332         declaration.
6333
6334 2013-03-06  Pierre Muller  <muller@sourceware.org>
6335
6336         * linespec.c (get_current_search_block): ARI fix, use (void)
6337         for empty parameter list.
6338
6339 2013-03-05  Doug Evans  <dje@google.com>
6340
6341         * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
6342         of old ada_lookup_symbol_list.  In !full_search case, don't
6343         search superblocks.
6344         (ada_lookup_symbol_list): Delete arg full_search, all callers
6345         updated.  Call ada_lookup_symbol_list_worker.
6346         (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
6347         * ada-lang.h (ada_lookup_symbol_list): Update.
6348         * language.h (language_defn): Update comment for
6349         la_iterate_over_symbols.
6350         * linespec.c (iterate_over_file_blocks): New function.
6351         (iterate_over_all_matching_symtabs): Call it.
6352         (lookup_prefix_sym): Ditto.
6353         (get_current_search_block): New function.
6354         (get_search_block): Delete.
6355         (find_label_symbols): Call get_current_search_block.
6356         (add_matching_symbols_to_info): Call iterate_over_file_blocks.
6357         * symtab.c (iterate_over_symbols): Don't search superblocks.
6358
6359 2013-03-05  Yao Qi  <yao@codesourcery.com>
6360
6361         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
6362         parameter VAR's type from "unsigned int" to "int".
6363         * command.h (var_zuinteger_unlimited): Update its comments.
6364         (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
6365
6366 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
6367
6368         * NEWS: Mention new target x86_64-*-cygwin*.
6369
6370 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
6371
6372         * configure.host: Add x86_64-*-cygwin* as host.
6373         * configure.tgt: Add x86_64-*-cygwin* as target.
6374         * config/i386/cygwin64.mh: New file.
6375
6376 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
6377
6378         * linespec.c (decode_line_2): Fix duplicate request off by two message.
6379
6380 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
6381
6382         * linespec.c (struct linespec_canonical_name): New.
6383         (struct linespec_state): Change canonical_names type to it.
6384         (add_sal_to_sals): Change variable canonical_name to canonical.  Change
6385         xrealloc element size.  Initialize the different CANONICAL fields.
6386         (canonical_to_fullform): New.
6387         (filter_results): Use it.  Add variables canonical, fullform and
6388         cleanup.
6389         (struct decode_line_2_item, decode_line_2_compare_items): New.
6390         (decode_line_2): Remove variables iter and item_names, add variables
6391         items and items_count.  Modify the code for these new variables.
6392
6393 2013-03-04  Corinna Vinschen  <vinschen@redhat.com>
6394
6395         * coff-pe-read.c (read_pe_exported_syms): Don't return without
6396         calling do_cleanup.
6397
6398 2013-03-04  Luis Machado  <lgustavo@codesourcery.com>
6399
6400         * tracepoint.c (build_traceframe_info): Add code for byte order.
6401
6402 2013-03-02  Kevin Buettner  <kevinb@redhat.com>
6403
6404         * v850-tdep.c: (v850e2_register_name): Revise system register
6405         names to match current V850E2M architecture specifications.
6406         Update register number enum comments too.
6407         
6408 2013-03-01  Jiong Wang  <jiwang@tilera.com>
6409             Pedro Alves  <palves@redhat.com>
6410
6411         * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
6412         to END_ADDR.
6413         (tilegx_skip_prologue): Limit prologue analysis to section end.
6414
6415 2013-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
6416
6417         * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
6418         use it.
6419
6420 2013-03-01  Pedro Alves  <palves@redhat.com>
6421
6422         Use gdb_byte for bytes from the program being debugged.
6423
6424         * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
6425         Change type of local 'buf' to gdb_byte.
6426         * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
6427         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
6428         * cris-tdep.c (cris_sigcontext_addr)
6429         (cris_sigtramp_frame_unwind_cache): Likewise.
6430         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
6431         (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
6432         Likewise.
6433         * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
6434         * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
6435         (hppa32_hpux_search_dummy_call_sequence)
6436         (hppa_hpux_supply_save_state): Likewise.
6437         * hppa-linux-tdep.c (insns_match_pattern)
6438         (hppa_linux_find_global_pointer): Likewise.
6439         * hppa-tdep.c (hppa_in_function_epilogue_p)
6440         (skip_prologue_hard_way, hppa_frame_cache): Likewise.
6441         * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
6442         * i386fbsd-tdep.c (i386fbsd_supply_uthread)
6443         (i386fbsd_collect_uthread): Likewise.
6444         * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
6445         * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
6446         * ia64-tdep.c (examine_prologue, ia64_frame_cache)
6447         (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
6448         (ia64_sigtramp_frame_prev_register, ia64_access_reg)
6449         (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
6450         (ia64_libunwind_frame_prev_register)
6451         (ia64_libunwind_sigtramp_frame_this_id)
6452         (ia64_find_global_pointer_from_dynamic_section)
6453         (find_extant_func_descr, find_func_descr, ia64_dummy_id)
6454         (ia64_unwind_pc): Likewise.
6455         * iq2000-tdep.c (iq2000_store_return_value): Likewise.
6456         * m68hc11-tdep.c (m68hc11_push_dummy_call)
6457         (m68hc11_extract_return_value): Likewise.
6458         * m68klinux-nat.c (fetch_register, store_register): Likewise.
6459         * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
6460         (mep_get_insn, mep_push_dummy_call): Likewise.
6461         * mips-linux-tdep.c (mips_linux_get_longjmp_target)
6462         (mips_linux_in_dynsym_stub): Likewise.
6463         * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
6464         * ppc-linux-nat.c (fetch_register, store_register): Likewise.
6465         * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
6466         to gdb_byte.
6467         * remote-mips.c (mips_set_register): Likewise.
6468         * remote-sim.c (gdbsim_fetch_register): Likewise.
6469         * score-tdep.c (score7_fetch_inst): Change type of parameter
6470         'memblock' and local 'buf' to gdb_byte.
6471         (score7_malloc_and_get_memblock): Change return type to gdb_byte.
6472         Change type of local 'buf' to gdb_byte.  Adjust.
6473         (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
6474         to gdb_byte**.
6475         (score7_analyze_prologue): Change type of 'memblock' and
6476         'memblock_ptr' locals to gdb_byte*.
6477         * sh64-tdep.c (sh64_extract_return_value)
6478         (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
6479         * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
6480         * solib-pa64.c (pa64_solib_create_inferior_hook)
6481         (pa64_open_symbol_file_object): Remove local 'buf'.
6482         * solib-som.c (som_solib_create_inferior_hook, link_map_start)
6483         (som_open_symbol_file_object): Likewise.
6484         * solib-spu.c (spu_current_sos): Likewise.
6485         * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
6486         * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
6487         (spu_store_registers): Likewise.
6488         * target.c (debug_print_register): Likewise.
6489         * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
6490         * xstormy16-tdep.c (xstormy16_store_return_value)
6491         (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
6492         (xstormy16_find_jmp_table_entry): Likewise.
6493
6494 2013-03-01  Jiong Wang  <jiwang@tilera.com>
6495
6496         * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
6497         (tilegx_gdbarch_init): Install it.
6498
6499 2013-02-28  Tom Tromey  <tromey@redhat.com>
6500
6501         * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
6502         PyLong_Check.
6503
6504 2013-02-28  Doug Evans  <dje@google.com>
6505
6506         * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
6507         * python/python.c (gdbpy_find_pc_line): Ditto.
6508
6509 2013-02-28  Tom Tromey  <tromey@redhat.com>
6510
6511         * contrib/excheck.py: New file.
6512         * contrib/exsummary.py: New file.
6513         * contrib/gcc-with-excheck: New file.
6514
6515 2013-02-28  Tom Tromey  <tromey@redhat.com>
6516
6517         * python/python.c (gdbpy_print_stack): Call begin_line and
6518         fprintf_filtered inside TRY_CATCH.
6519
6520 2013-02-28  Tom Tromey  <tromey@redhat.com>
6521
6522         * python/python.c (gdbpy_find_pc_line): Call find_pc_line
6523         inside TRY_CATCH.
6524
6525 2013-02-28  Tom Tromey  <tromey@redhat.com>
6526
6527         * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
6528         frame_object_to_frame_info inside TRY_CATCH.
6529
6530 2013-02-28  Tom Tromey  <tromey@redhat.com>
6531
6532         * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
6533         TRY_CATCH.
6534
6535 2013-02-28  Tom Tromey  <tromey@redhat.com>
6536
6537         * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
6538
6539 2013-02-27  Corinna Vinschen  <vinschen@redhat.com>
6540
6541         * windows-nat.c: Throughout, fix format strings and casts of
6542         printf-like functions to avoid type related warnings on all
6543         platforms.
6544         (handle_output_debug_string): Fetch context information address
6545         from debug string using string_to_core_addr.
6546
6547 2013-02-27  Jiong Wang  <jiwang@tilera.com>
6548
6549         * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
6550         * regformats/reg-tilegx32.dat: New.
6551
6552 2013-02-27  Jiong Wang  <jiwang@tilera.com>
6553
6554         * configure.tgt (tilegx-*-linux*): Enable gdbserver.
6555
6556 2013-02-27  Jiong Wang  <jiwang@tilera.com>
6557
6558         * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
6559
6560 2013-02-27  Yao Qi  <yao@codesourcery.com>
6561             Pedro Alves  <palves@redhat.com>
6562
6563         * tracepoint.c (tfile_trace_find): For tfind
6564         pc/tp/range/outside, look for the next trace frame instead of
6565         always starting from frame 0.
6566
6567 2013-02-26  Anthony Green  <green@moxielogic.com>
6568
6569         * configure.tgt: Add support for moxie-*-rtems* target.
6570
6571 2013-02-25  Pedro Alves  <palves@redhat.com>
6572
6573         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
6574         warning text.
6575
6576 2013-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
6577
6578         * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
6579         if $fp is used as the virtual frame pointer.
6580
6581 2013-02-23  Alan Modra  <amodra@gmail.com>
6582
6583         * elfread.c (elf_symtab_read): Do not use udata.p here to find
6584         symbol size.
6585         * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
6586         * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
6587         * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
6588         * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
6589
6590 2013-02-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
6591
6592         Code cleanup.
6593         * elfread.c (build_id_bfd_get): Make the return type const.
6594         (build_id_verify): Make the check parameter const.
6595         (build_id_to_debug_filename): Make the build_id parameter and variable
6596         data const.
6597         (find_separate_debug_file_by_buildid): Make the variable build_id const.
6598
6599 2013-02-21  Alan Modra  <amodra@gmail.com>
6600
6601         * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
6602
6603 2013-02-20  Siva Chandra Reddy  <sivachandra@google.com>
6604
6605         Add a new method 'disassemble' to gdb.Architecture class.
6606         * python/py-arch.c (archpy_disassmble): Implementation of the
6607         new method gdb.Architecture.disassemble.
6608         (arch_object_methods): Add entry for the new method.
6609
6610 2013-02-20  Jiong Wang  <jiwang@tilera.com>
6611
6612         * MAINTAINERS (Write After Approval): Add myself to the list.
6613
6614 2013-02-19  Pedro Alves  <palves@redhat.com>
6615
6616         Garbage collect 'struct monitor_ops'::load_routine.
6617
6618         * monitor.h (struct monitor_ops) <load_routine>: Remove field.
6619         * monitor.c (monitor_load): No longer call
6620         current_monitor->load_routine.
6621         * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
6622         * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
6623         * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
6624
6625 2013-02-19  Pedro Alves  <palves@redhat.com>
6626
6627         PR gdb/15161
6628
6629         Harmonize with generic_load.
6630
6631         * monitor.c: Include "readline/readline.h".
6632         (monitor_load): Rename parameter 'file' to 'args'.  Use build_argv
6633         instead of sscanf.  Use CORE_ADDR/strtoulst instead of unsigned
6634         long/strtol for the 'load_offset' local.  Error out if no argument
6635         is given or if too many arguments are given.  Tilde expand the
6636         passed in file name.
6637
6638 2013-02-19  Kai Tietz  <ktietz@redhat.com>
6639
6640         PR gdb/15161
6641         * symfile.c (load_section_data): Change type of load_offset
6642         to CORE_ADDR.
6643         (generic_load): User strtoulst instead of strtoul for conversion
6644         of load_offset.
6645
6646 2013-02-19  Jiong Wang  <jiwang@tilera.com>
6647
6648         * tilegx-tdep.c (tilegx_analyze_prologue): add check for
6649          for return address, "lr" register, saved on stack.
6650         * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
6651         after we invoke tilegx_analyze_prologue.
6652
6653 2013-02-19  Jiong Wang  <jiwang@tilera.com>
6654
6655         * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
6656
6657 2013-02-19  Jiong Wang  <jiwang@tilera.com>
6658
6659         * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
6660
6661 2013-02-19  Jiong Wang  <jiwang@tilera.com>
6662
6663         * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
6664         (tilegx_write_pc): New function.
6665         (tilegx_cannot_reference_register): Return zero if REGNO
6666         is TILEGX_FAULTNUM_REGNUM.
6667         (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
6668         (tilegx_register_name): Add handling of "faultnum" register.
6669         * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
6670         * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
6671         handling of TILEGX_FAULTNUM_REGNUM.
6672         * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
6673
6674 2013-02-19  Jiong Wang  <jiwang@tilera.com>
6675
6676         * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
6677         should be aligned to 64bit.
6678
6679 2013-02-19  Kai Tietz  <ktietz@redhat.com>
6680
6681         * windows-nat.c (windows_xfer_memory): Fix debug-output
6682         for LLP64.
6683
6684 2013-02-19  Lei Liu  <lei.liu2@windriver.com>
6685
6686         * mips-linux-nat.c (mips64_linux_regsets_store_registers):
6687         Don't check DSP register number if HAVE_DSP is not set.
6688
6689 2013-02-19  Alan Modra  <amodra@gmail.com>
6690
6691         * elfread.c (struct build_id): Delete.  Use struct elf_build_id
6692         throughout file instead.
6693         (build_id_bfd_get): Update to use new elf_tdata build_id field.
6694         Don't xmalloc return value.
6695         (build_id_verify): Similarly.  Don't xfree.
6696         (build_id_to_debug_filename): Update.
6697         (find_separate_debug_file_by_buildid): Update, don't xfree.
6698
6699 2013-02-18  Tom Tromey  <tromey@redhat.com>
6700
6701         PR gdb/15102:
6702         * dwarf2read.c (read_subrange_type): Use result of
6703         'check_typedef'.
6704
6705 2013-02-16  Yuanhui Zhang  <asmwarrior@gmail.com>
6706
6707         * frame.c: Remove one extra white space after #include
6708         directive.
6709
6710 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
6711
6712         * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
6713
6714 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
6715
6716         * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
6717         and dir commands into an if block.
6718
6719 2013-02-15  Sanimir Agovic  <sanimir.agovic@intel.com>
6720
6721         * python/py-breakpoint (struct pybp_code):  Use int instead of
6722         enum type_code.
6723
6724 2013-02-15  Pedro Alves  <pedro@codesourcery.com>
6725             Hafiz Abid Qadeer  <abidh@codesourcery.com>
6726
6727         * NEWS: Mention new field "trace-file".
6728         * tracepoint.c (trace_status_mi): Output "trace-file" field.
6729         (tfile_open): Record the trace file's filename in the trace
6730         status.
6731         (tfile_files_info): Mention the name of the trace file.
6732         Check the "filename" field explicitely.
6733         (trace_status_command): Explicitely check "filename" field.
6734         (trace_find_command): Ditto.
6735         (trace_find_pc_command): Ditto.
6736         (trace_find_tracepoint_command): Ditto.
6737         (trace_find_line_command): Ditto.
6738         (trace_find_range_command): Ditto.
6739         (trace_find_outside_command): Ditto.
6740         * tracepoint.h (struct trace_status) <from_file>: Rename it
6741         to "filename" and make it hold the trace file's filename
6742         instead of a boolean.
6743         * remote.c (remote_get_trace_status): Initialize "filename"
6744         field with NULL instead of 0.
6745
6746 2013-02-15  Yao Qi  <yao@codesourcery.com>
6747
6748         * remote.c: Fix a typo.
6749
6750 2013-02-14  Pierre Muller  <muller@sourceware.org>
6751
6752         * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
6753
6754 2013-02-14  Pedro Alves  <palves@redhat.com>
6755
6756         * utils.c (savestring): Don't #undef it.  Move function to
6757         common/common-utils.c.
6758         * common/common-utils.c: Include gdb_string.h.
6759         (savestring): Move here from utils.c.
6760         * common/common-utils.h (savestring): Declare.
6761
6762 2013-02-14  Pedro Alves  <palves@redhat.com>
6763
6764         * utils.c (savestring): Rename parameter 'size' to 'len'.
6765
6766 2013-02-14  Pedro Alves  <palves@redhat.com>
6767             Yufeng Zhang  <yufeng.zhang@arm.com>
6768
6769         * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
6770         (aarch64_inferior_data, struct aarch64_inferior_data):
6771         Delete.
6772         (struct aarch64_process_info): New.
6773         (aarch64_process_list): New global.
6774         (aarch64_find_process_pid, aarch64_add_process)
6775         (aarch64_process_info_get): New functions.
6776         (aarch64_inferior_data_get): Delete.
6777         (aarch64_process_info_get): New function.
6778         (aarch64_forget_process): New function.
6779         (aarch64_get_debug_reg_state): New parameter 'pid'.  Reimplement.
6780         (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
6781         aarch64_get_debug_reg_state.
6782         (aarch64_notify_debug_reg_change): Use iterate_over_lwps
6783         instead of linux_nat_iterate_watchpoint_lwps.
6784         (aarch64_linux_new_fork): New function.
6785         (aarch64_linux_child_post_startup_inferior): Use
6786         aarch64_forget_process instead of aarch64_init_debug_reg_state.
6787         (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
6788         (aarch64_linux_remove_hw_breakpoint)
6789         (aarch64_handle_aligned_watchpoint)
6790         (aarch64_handle_unaligned_watchpoint)
6791         (aarch64_linux_insert_watchpoint)
6792         (aarch64_linux_remove_watchpoint)
6793         (aarch64_linux_stopped_data_address): Adjust to pass the current
6794         process id to aarch64_debug_reg_state.
6795         (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
6796         linux_nat_new_fork hook, and aarch64_forget_process as
6797         linux_nat_forget_process hook; remove the call to
6798         register_inferior_data_with_cleanup.
6799
6800 2013-02-14  Pedro Alves  <palves@redhat.com>
6801
6802         * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
6803         EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
6804         lval_memory.
6805
6806 2013-02-14  Pedro Alves  <pedro@codesourcery.com>
6807             Hafiz Abid Qadeer  <abidh@codesourcery.com>
6808
6809         * tracepoint.h (validate_trace_state_variable_name): Declare.
6810         * tracepoint.c (validate_trace_state_variable_name): New.
6811         (trace_variable_command): Parse the trace state variable's name
6812         without using parse_expression.  Do several validations.
6813         * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
6814         trace state variable's name with parse_expression.  Validate it.
6815
6816 2013-02-14  Yao Qi  <yao@codesourcery.com>
6817
6818         * infcmd.c (breakpoint_proceeded): Remove it.
6819
6820 2013-02-14  Yao Qi  <yao@codesourcery.com>
6821
6822         * tracepoint.c (end_actions_pseudocommand): Make it static.
6823         (while_stepping_pseudocommand): Likewise.
6824         * tracepoint.h (end_actions_pseudocommand): Remove the
6825         declaration.
6826         (while_stepping_pseudocommand): Likewise.
6827
6828 2013-02-14  Yao Qi  <yao@codesourcery.com>
6829
6830         * cli/cli-decode.c (help_cmd): Remove the declaration of
6831         "cmdlist".
6832         (help_all): Likewise.
6833
6834 2013-02-13  Pedro Alves  <palves@redhat.com>
6835
6836         * amd64-linux-nat.c (update_debug_registers_callback):
6837         Update comment.
6838         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
6839         iterate_over_lwps.
6840         (amd64_linux_prepare_to_resume): Pass the lwp's pid to
6841         i386_debug_reg_state.
6842         (amd64_linux_new_fork): New function.
6843         (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
6844         linux_nat_new_fork hook, and i386_forget_process as
6845         linux_nat_forget_process hook.
6846         * i386-linux-nat.c (update_debug_registers_callback):
6847         Update comment.
6848         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
6849         iterate_over_lwps.
6850         (i386_linux_prepare_to_resume): Pass the lwp's pid to
6851         i386_debug_reg_state.
6852         (i386_linux_new_fork): New function.
6853         (_initialize_i386_linux_nat): Install i386_linux_new_fork as
6854         linux_nat_new_fork hook, and i386_forget_process as
6855         linux_nat_forget_process hook.
6856         * i386-nat.c (i386_init_dregs): Delete.
6857         (i386_inferior_data, struct i386_inferior_data):
6858         Delete.
6859         (struct i386_process_info): New.
6860         (i386_process_list): New global.
6861         (i386_find_process_pid, i386_add_process, i386_process_info_get):
6862         New functions.
6863         (i386_inferior_data_get): Delete.
6864         (i386_process_info_get): New function.
6865         (i386_debug_reg_state): New parameter 'pid'.  Reimplement.
6866         (i386_forget_process): New function.
6867         (i386_cleanup_dregs): Rewrite.
6868         (i386_update_inferior_debug_regs, i386_insert_watchpoint)
6869         (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
6870         (i386_stopped_data_address, i386_insert_hw_breakpoint)
6871         (i386_remove_hw_breakpoint): Adjust to pass the current process id
6872         to i386_debug_reg_state.
6873         (i386_use_watchpoints): Don't register inferior data.
6874         * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
6875         adjust comment.
6876         (i386_forget_process): Declare.
6877         * linux-fork.c (delete_fork): Call linux_nat_forget_process.
6878         * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
6879         New static globals.
6880         (linux_child_follow_fork): Don't call linux_nat_new_thread here.
6881         (add_initial_lwp): New, factored out from ...
6882         (add_lwp): ... this.  Don't check the number of lwps before
6883         calling linux_nat_new_thread.
6884         (linux_nat_iterate_watchpoint_lwps): Delete.
6885         (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
6886         (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
6887         forks and vforks.
6888         (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
6889         initial lwp.
6890         (linux_nat_kill, linux_nat_mourn_inferior): Call
6891         linux_nat_forget_process.
6892         (linux_nat_set_new_fork, linux_nat_set_forget_process)
6893         (linux_nat_forget_process): New functions.
6894         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
6895         type.
6896         (linux_nat_iterate_watchpoint_lwps): Delete declaration.
6897         (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
6898         types.
6899         (linux_nat_set_new_fork, linux_nat_set_forget_process)
6900         (linux_nat_forget_process): New declarations.
6901
6902         * amd64fbsd-nat.c (super_mourn_inferior): New global.
6903         (amd64fbsd_mourn_inferior): New function.
6904         (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
6905         * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
6906
6907 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
6908
6909         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
6910         Adding _().
6911
6912 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
6913
6914         * aarch64-linux-nat.c (debug_reg_change_callback)
6915         (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
6916         %s and phex().
6917
6918 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
6919
6920         * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
6921         with LONGEST.
6922
6923 2013-02-13  Pedro Alves  <palves@redhat.com>
6924             Hafiz Abid Qadeer  <abidh@codesourcery.com>
6925
6926         * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
6927
6928 2013-02-12  Tom Tromey  <tromey@redhat.com>
6929
6930         PR symtab/11464:
6931         * c-exp.y (lex_one_token): Initialize other fields of yylval on
6932         NAME return.
6933         (classify_inner_name): Remove 'first_name' argument, add
6934         'context'.  Remove unused variable.
6935         (yylex): Explicitly maintain the context type.  Exit loop earlier
6936         if NAME result is seen.
6937
6938 2013-02-12  Pedro Alves  <palves@redhat.com>
6939
6940         * amd64-darwin-tdep.c: Add (C) after Copyright.
6941         * cli/cli-cmds.h: Ditto.
6942         * cli/cli-decode.c: Ditto.
6943         * cli/cli-decode.h: Ditto.
6944         * cli/cli-dump.c: Ditto.
6945         * cli/cli-dump.h: Ditto.
6946         * cli/cli-interp.c: Ditto.
6947         * cli/cli-logging.c: Ditto.
6948         * cli/cli-script.c: Ditto.
6949         * cli/cli-script.h: Ditto.
6950         * cli/cli-setshow.c: Ditto.
6951         * cli/cli-setshow.h: Ditto.
6952         * cli/cli-utils.c: Ditto.
6953         * cli/cli-utils.h: Ditto.
6954         * config/alpha/nm-osf3.h: Ditto.
6955         * config/djgpp/djconfig.sh: Ditto.
6956         * config/i386/nm-fbsd.h: Ditto.
6957         * config/i386/nm-i386gnu.h: Ditto.
6958         * config/nm-linux.h: Ditto.
6959         * config/nm-nto.h: Ditto.
6960         * config/rs6000/nm-rs6000.h: Ditto.
6961         * config/sparc/nm-sol2.h: Ditto.
6962         * darwin-nat-info.c: Ditto.
6963         * dfp.c: Ditto.
6964         * dfp.h: Ditto.
6965         * gdb-demangle.h: Ditto.
6966         * i386-darwin-nat.c: Ditto.
6967         * i386-darwin-tdep.c: Ditto.
6968         * linux-fork.h: Ditto.
6969         * m32c-tdep.c: Ditto.
6970         * microblaze-linux-tdep.c: Ditto.
6971         * microblaze-rom.c: Ditto.
6972         * microblaze-tdep.c: Ditto.
6973         * microblaze-tdep.h: Ditto.
6974         * mips-linux-tdep.h: Ditto.
6975         * ppc-ravenscar-thread.c: Ditto.
6976         * ppc-ravenscar-thread.h: Ditto.
6977         * prologue-value.c: Ditto.
6978         * prologue-value.h: Ditto.
6979         * ravenscar-thread.c: Ditto.
6980         * ravenscar-thread.h: Ditto.
6981         * sparc-ravenscar-thread.c: Ditto.
6982         * sparc-ravenscar-thread.h: Ditto.
6983         * tilegx-linux-tdep.c: Ditto.
6984         * unwind_stop_reasons.def: Ditto.
6985         * windows-nat.h: Ditto.
6986         * xtensa-linux-tdep.c: Ditto.
6987         * xtensa-xtregs.c: Ditto.
6988         * regformats/regdat.sh: Ditto.
6989         * regformats/regdef.h: Ditto.
6990
6991 2013-02-12  Pedro Alves  <palves@redhat.com>
6992
6993         * break-catch-sig.c: Update copyright years.
6994
6995 2013-02-11  Siva Chandra Reddy  <sivachandra@google.com>
6996
6997         Add support for a destructor for ui_out data and use it to
6998         provide a ui_out destructor.
6999         * ui-out.h: Declare the new ui_out destructor.
7000         (ui_out_impl): Add a field for data destructor in ui_out_impl.
7001         * ui-out.c (default_data_destroy): Add a default data destructor
7002         which does nothing.
7003         (default_ui_out_impl): Set the new data_destroy field to
7004         default_data_destroy
7005         (uo_data_destroy): Local function which invokes the data
7006         destructor if present.
7007         (clear_table): Local function which clears the table data of a
7008         ui_out object.
7009         (ui_out_destroy): Public function which frees a ui_out object.
7010         (ui_out_table_end): Use the new clear_table function.
7011         * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
7012         NULL.
7013         * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
7014         to NULL.
7015
7016 2013-02-11  Doug Evans  <dje@google.com>
7017
7018         * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
7019         (printf_decfloat): New function.  Broken out from ui_printf.
7020         Remove unnecessary code to shift the entire format string down.
7021         (printf_pointer): New function.
7022         (ui_printf): Code to print C strings, wide C strings, decfloats,
7023         and pointers moved to separate functions.
7024
7025 2013-02-11  Sergio Durigan Junior  <sergiodj@redhat.com>
7026
7027         * valops.c (value_assign): Handling bitfield offset in
7028         `lval_internalvar_component' case.
7029
7030 2013-02-08  Doug Evans  <dje@google.com>
7031
7032         * common/format.c (parse_format_string): Fix whitespace.
7033
7034 2013-02-08  Matthew Gretton-Dann  <matthew.gretton-dann@linaro.org>
7035
7036         * stack.c (return_command): Work around uninitialized variable
7037         warning.
7038
7039 2013-02-08  Yufeng Zhang  <yufeng.zhang@arm.com>
7040
7041         * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
7042         number of the registers from 36 to 34.
7043
7044 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
7045
7046         * NEWS: Mention new AArch64 native and target support.
7047
7048 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
7049
7050         * MAINTAINERS (Write After Approval): Add myself.
7051
7052 2013-02-08  Jim MacArthur  <jim.macarthur@arm.com>
7053             Marcus Shawcroft  <marcus.shawcroft@arm.com>
7054             Nigel Stephens  <nigel.stephens@arm.com>
7055             Yufeng Zhang  <yufeng.zhang@arm.com>
7056
7057         * aarch64-linux-nat.c: New file.
7058         * config/aarch64/linux.mh: New file.
7059         * configure.host: Add AArch64.
7060         * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
7061
7062 2013-02-07  Doug Evans  <dje@google.com>
7063
7064         * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
7065         disassemble command.
7066
7067 2013-02-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
7068
7069         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
7070         set_gdbarch_fetch_tls_load_module_address.
7071
7072 2013-02-06  David S. Miller  <davem@davemloft.net>
7073
7074         * sparc-tdep.c (sparc32_return_value): Handle writing return value when
7075         using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
7076         * value.c (struct_return_convention): New function.
7077         (using_struct_return): Implement in terms of struct_return_convention.
7078         * value.h (struct_return_convention): Declare.
7079         * stack.c (return_command): Allow successful overriding of the return
7080         value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
7081
7082 2013-02-06  Tom Tromey  <tromey@redhat.com>
7083
7084         * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
7085         outside of TRY_CATCH.
7086
7087 2013-02-06  Yao Qi  <yao@codesourcery.com>
7088
7089         * mi/mi-interp.c: Include "tracepoint.h".
7090         (mi_tsv_modified): Declare.
7091         (mi_tsv_created, mi_tsv_deleted): Update declaration.
7092         (mi_interpreter_init): Call observer_attach_tsv_modified.
7093         (mi_tsv_modified): New.
7094         (mi_tsv_created, mi_tsv_deleted): Update.
7095         * tracepoint.c (trace_variable_command): Call
7096         observer_notify_tsv_modified if the initial value of tsv is
7097         changed.
7098         (delete_trace_state_variable): Call
7099         observer_notify_tsv_deleted earlier.
7100         (trace_variable_command): Caller update.
7101         (create_tsv_from_upload): Likewise.
7102         * observer.sh: Declare "struct trace_state_variable".
7103
7104         * NEWS: Mention the new MI notification "=tsv-modified".
7105
7106 2013-02-05  Doug Evans  <dje@google.com>
7107
7108         * completer.c (location_completer): Fix typo in comment.
7109
7110 2013-02-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7111
7112         * breakpoint.c (add_location_to_breakpoint): Insert the location with
7113         ADDRESS sorted.
7114
7115 2013-02-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
7116
7117         * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
7118         Refactor if statement to avoid trailing || operator.
7119
7120 2013-02-05  Andreas Tobler  <andreast@fgznet.ch>
7121
7122         * NEWS: Add PowerPC FreeBSD as a new native configuration.
7123
7124 2013-02-04  Andreas Tobler  <andreast@fgznet.ch>
7125
7126         * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
7127         * configure.host: Add powerpc*-*-freebsd* target.
7128         * configure.tgt: Add target info for powerpc*-*-freebsd*.
7129         * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
7130         * config/powerpc/fbsd.mh: New file.
7131
7132 2013-02-04  Sergio Durigan Junior  <sergiodj@redhat.com>
7133             Denys Vlasenko  <dvlasenk@redhat.com>
7134             Pedro Alves  <palves@redhat.com>
7135
7136         * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
7137         (struct elf_internal_linux_prpsinfo): Forward declare.
7138         * gdbarch.h, gdbarch.c: Regenerate.
7139         * linux-tdep.c: Include `cli/cli-utils.h'.
7140         (linux_fill_prpsinfo): New function.
7141         (linux_make_corefile_notes): Use linux_fill_prpsinfo.  If there's
7142         an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
7143         elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
7144         depending on gdbarch pointer bitness.
7145         * ppc-linux-tdep.c: Include elf-bfd.h.
7146         (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
7147         on 32-bit.
7148
7149 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
7150             Marcus Shawcroft  <marcus.shawcroft@arm.com>
7151             Nigel Stephens  <nigel.stephens@arm.com>
7152             Yufeng Zhang  <yufeng.zhang@arm.com>
7153
7154         * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
7155
7156 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
7157             Marcus Shawcroft  <marcus.shawcroft@arm.com>
7158             Nigel Stephens  <nigel.stephens@arm.com>
7159             Yufeng Zhang  <yufeng.zhang@arm.com>
7160
7161         * aarch64-newlib-tdep.c: New file.
7162         * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
7163         aarch64*-*-elf.
7164         * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
7165         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
7166         (ALLDEPFILES): Add aarch64-newlib-tdep.c.
7167         * osabi.c (gdb_osabi_names): Add "Newlib".
7168
7169 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
7170             Marcus Shawcroft  <marcus.shawcroft@arm.com>
7171             Nigel Stephens  <nigel.stephens@arm.com>
7172             Yufeng Zhang  <yufeng.zhang@arm.com>
7173
7174         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
7175         (ALLDEPFILES): Add aarch64-linux-tdep.c.
7176         * aarch64-linux-tdep.c: New file.
7177         * aarch64-linux-tdep.h: New file.
7178         * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
7179         * configure.tgt: Add aarch64-none-linux-gnu.
7180
7181 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
7182             Marcus Shawcroft  <marcus.shawcroft@arm.com>
7183             Nigel Stephens  <nigel.stephens@arm.com>
7184             Yufeng Zhang  <yufeng.zhang@arm.com>
7185
7186         * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
7187         (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
7188         (ALLDEPFILES): Add aarch64-tdep.c.
7189         * aarch64-tdep.c: New file.
7190         * aarch64-tdep.h: New file.
7191         * configure.tgt: Add AArch64.
7192         * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
7193         (aarch64-expedite): New definition.
7194         * features/aarch64-core.xml: New file.
7195         * features/aarch64-fpu.xml: New file.
7196         * features/aarch64-without-fpu.c: New file (generated).
7197         * features/aarch64-without-fpu.xml: New file.
7198         * features/aarch64.c: New file (generated).
7199         * features/aarch64.xml: New file.
7200         * regformats/aarch64-without-fpu.dat: New file (generated).
7201         * regformats/aarch64.dat: New file (generated).
7202
7203 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7204
7205         * contrib/expect-read1.c: New file.
7206         * contrib/expect-read1.sh: New file.
7207
7208 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7209
7210         * dwarf2read.c (file_file_name): New function with code from
7211         file_full_name.
7212         (file_full_name): Move most of the code to file_file_name.
7213         (macro_start_file): Rename variable full_name to file_name and use
7214         file_file_name for it.  Add comp_dir parameter to new_macro_table.
7215         * macrocmd.c (show_pp_source_pos): New variable fullname.  Replace any
7216         macro_source_file->filename access by macro_source_fullname call.
7217         * macroscope.c (_initialize_macroscope): Update the new_macro_table
7218         caller.
7219         * macrotab.c (struct macro_table): New field comp_dir.
7220         (macro_include): New variables link_fullname and source_fullname.
7221         Replace any macro_source_file->filename access by macro_source_fullname
7222         call.
7223         (macro_lookup_inclusion): Remove the partial filenames checking code.
7224         (check_for_redefinition): New variables source_fullname and
7225         found_key_fullname.  Replace any macro_source_file->filename access by
7226         macro_source_fullname call.
7227         (macro_undef): New variables source_fullname and key_fullname.  Replace
7228         any macro_source_file->filename access by macro_source_fullname call.
7229         (macro_lookup_definition): New variables retval and source_fullname.
7230         Replace any macro_source_file->filename access by macro_source_fullname
7231         call.
7232         (foreach_macro): New variable key_fullname.  Replace any
7233         macro_source_file->filename access by macro_source_fullname call.
7234         (foreach_macro_in_scope): New variable datum_fullname.  Replace any
7235         macro_source_file->filename access by macro_source_fullname call.
7236         (new_macro_table): Add parameter comp_dir.  Initialize T with it.
7237         (macro_source_fullname): New function.
7238         * macrotab.h (struct macro_source_file): Extent the filename field
7239         comment.
7240         (new_macro_table): New parameter comp_dir, add a comment for it.
7241         (macro_source_fullname): new declaration.
7242
7243 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7244
7245         * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
7246         this_real_name to outer block.  Use it also for
7247         compare_filenames_for_search.
7248         (dw2_expand_symtabs_matching): New variable this_real_name.  Use it
7249         with dw2_get_real_path for file_matcher, considering also
7250         BASENAMES_MAY_DIFFER.
7251         (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
7252
7253 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7254
7255         * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
7256         to the file_matcher parameter.  Pass 0 to it.
7257         (dwarf2_create_include_psymtab): Copy also DIRNAME.
7258         * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
7259         NULL psymtab_to_fullname result.
7260         (psymtab_to_fullname): Remove variable r.  Never return NULL, assemble
7261         an expected filename instead.
7262         (expand_symtabs_matching_via_partial): Add basenames parameter to the
7263         file_matcher parameter.  Call also psymtab_to_fullname, after newly
7264         considering BASENAMES_MAY_DIFFER.
7265         * source.c (rewrite_source_path): Remove static.
7266         * source.h (rewrite_source_path): New declaration.
7267         * symfile.h (struct quick_symbol_functions): Add basenames parameter to
7268         the expand_symtabs_matching field.  Comment it.
7269         * symtab.c (file_matches): New function comment.  Add parameter
7270         basenames, implement it.
7271         (search_symbols_file_matches): Add basenames parameter.  Update the
7272         file_matches caller.
7273         (search_symbols): Match FILES also against symtab_to_fullname.
7274         Optimize it for BASENAMES_MAY_DIFFER.
7275
7276 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7277
7278         * source.c (print_source_lines_base): Print for TUI also "fullname".
7279         * tui/tui-data.c (init_content_element): Change tui_locator_element
7280         field to full_name.
7281         * tui/tui-data.h (struct tui_locator_element): Likewise.
7282         * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
7283         tui_update_locator_filename calls to tui_update_locator_fullname.
7284         Replace symtab->filename refererence by symtab_to_fullname call.
7285         * tui/tui-out.c (tui_field_string): Check for "fullname" now.
7286         * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
7287         field to full_name.  Replace symtab->filename refererence by
7288         symtab_to_fullname call.
7289         (tui_show_symtab_source): Rename parameter to fullname.  Change
7290         tui_locator_element field to full_name.
7291         * tui/tui-stack.c: Include source.h.
7292         (tui_set_locator_filename): Rename the declaration to ...
7293         (tui_set_locator_fullname): ... here.  Rename its parameter to
7294         fullname, updates its comment.
7295         (tui_set_locator_info): Rename its parameter to fullname.
7296         (tui_set_locator_filename): Rename the definition to ...
7297         (tui_set_locator_fullname): ... here.  Rename its parameter to
7298         fullname, updates its comment.  Change tui_locator_element field to
7299         full_name.
7300         (tui_set_locator_info): Rename its parameter to fullname.
7301         (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
7302         (tui_update_locator_filename): Rename to ...
7303         (tui_update_locator_fullname): ... here. Rename callee to
7304         tui_set_locator_fullname.
7305         (tui_show_frame_info): Replace symtab->filename refererence by
7306         symtab_to_fullname call.
7307         * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
7308         (tui_update_locator_fullname): ... here.
7309         * tui/tui-winsource.c (tui_display_main): Rename the callee to
7310         tui_update_locator_fullname.  Replace symtab->filename refererence by
7311         symtab_to_fullname call.
7312         * tui/tui.c (tui_show_source): Rename its parameter to fullname.
7313         Rename the callee to tui_update_locator_fullname.
7314         * tui/tui.h (tui_show_source): Rename its parameter to fullname.
7315
7316 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7317
7318         * ada-lang.c (user_select_syms): Replace symtab->filename refererences
7319         by symtab_to_filename_for_display calls.
7320         * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
7321         (clear_command): New variable sal_fullname, initialize it.  Replace
7322         compare_filenames_for_search by filename_cmp with sal_fullname.
7323         (say_where, update_static_tracepoint): Replace symtab->filename
7324         refererences by symtab_to_filename_for_display calls.
7325         * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
7326         Likewise.
7327         * dwarf2read.c: Include source.h.
7328         (fixup_go_packaging): Replace symtab->filename refererences by
7329         symtab_to_filename_for_display calls.
7330         * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
7331         Replace symtab->filename refererences by symtab_to_filename_for_display
7332         calls.
7333         (create_sals_line_offset, convert_linespec_to_sals): New variable
7334         fullname, initialize it, replace symtab->filename reference by the
7335         variable.
7336         * linux-fork.c: Include source.h.
7337         (info_checkpoints_command): Replace symtab->filename refererences by
7338         symtab_to_filename_for_display calls.
7339         * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
7340         by symtab_to_filename_for_display calls.
7341         * mdebugread.c: Include source.h.
7342         (psymtab_to_symtab_1): Replace symtab->filename refererences by
7343         symtab_to_filename_for_display calls.
7344         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
7345         (mi_cmd_file_list_exec_source_files): Likewise.
7346         * printcmd.c: Include source.h.
7347         (build_address_symbolic): Replace symtab->filename refererences by
7348         symtab_to_filename_for_display calls.
7349         * psymtab.c (partial_map_symtabs_matching_filename)
7350         (read_psymtabs_with_fullname): Call compare_filenames_for_search also
7351         with psymtab_to_fullname.
7352         * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
7353         by symtab_to_filename_for_display calls.
7354         (stpy_get_filename): New variable filename, initialize it, use instead
7355         of symtab->filename refererences.
7356         (salpy_str): Make variable filename const char *.  Replace
7357         symtab->filename refererences by symtab_to_filename_for_display calls.
7358         * skip.c: Include source.h and filenames.h.
7359         (skip_file_command): Remove const from the symtab variable.  Replace
7360         symtab->filename refererences by symtab_to_fullname call.
7361         (function_name_is_marked_for_skip): New variables searched_for_fullname
7362         and fullname.  Use them to search also with symtab's fullname.
7363         * source.c (find_source_lines): Replace symtab->filename refererences
7364         by symtab_to_filename_for_display calls.
7365         (print_source_lines_base): New variable filename, use it instead of
7366         symtab->filename.  Replace symtab->filename refererences by
7367         symtab_to_filename_for_display calls.
7368         (line_info, forward_search_command): Replace symtab->filename
7369         refererences by symtab_to_filename_for_display calls.
7370         (reverse_search_command): Replace symtab->filename refererences by
7371         symtab_to_filename_for_display calls.  New variable filename for it.
7372         * stack.c (frame_info): Likewise.
7373         * symmisc.c: Include source.h.
7374         (dump_objfile, dump_symtab_1, maintenance_print_symbols)
7375         (maintenance_info_symtabs): Replace symtab->filename refererences by
7376         symtab_to_filename_for_display calls.
7377         * symtab.c (iterate_over_some_symtabs): Call
7378         compare_filenames_for_search also with symtab_to_fullname.
7379         (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
7380         symtab->filename refererences by symtab_to_filename_for_display calls.
7381         (find_line_symtab): Replace symtab->filename refererences by
7382         symtab_to_filename_for_display calls.
7383         (file_matches): Replace filename_cmp by compare_filenames_for_search.
7384         (print_symbol_info): Make the last parameter const char *.  New
7385         variable s_filename.  Use it in the function.
7386         (symtab_symbol_info): Make the last_filename variable const char *.
7387         Replace symtab->filename refererences by symtab_to_filename_for_display
7388         calls.
7389         (rbreak_command): New variable fullname.  Use it.  Replace
7390         symtab->filename refererence by symtab_to_filename_for_display call.
7391         * tracepoint.c (set_traceframe_context, trace_find_line_command)
7392         (print_one_static_tracepoint_marker): Replace symtab->filename
7393         refererences by symtab_to_filename_for_display calls.
7394         * tui/tui-source.c (tui_set_source_content): New variables filename and
7395         s_filename.  Replace symtab->filename refererences by this variable.
7396         Replace other symtab->filename refererences by
7397         symtab_to_filename_for_display calls.
7398
7399 2013-02-03  Eldar Gaynetdinov <hal9000ed2k@gmail.com>
7400             Jan Kratochvil  <jan.kratochvil@redhat.com>
7401
7402         Add a new variable that controls a way in which filenames are
7403         displayed.
7404         * NEWS (set filename-display): New entry.
7405         * source.c (filename_display_basename, filename_display_relative)
7406         (filename_display_absolute, filename_display_kind_names)
7407         (filename_display_string, show_filename_display_string)
7408         (symtab_to_filename_for_display): New.
7409         (_initialize_source): Added initialization of 'filename-display'
7410         variable.
7411         * source.h (symtab_to_filename_for_display): Added declaration.
7412         * stack.c (print_frame): Added new variable and calling of a new
7413         function and condition with this variable. Changed third argument of
7414         calling of a function.
7415
7416 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7417
7418         * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
7419         Rename field reference filename to fullname.
7420         * tui/tui-data.h (struct tui_source_info): Rename field filename to
7421         fullname.  New comment for it.
7422         * tui/tui-source.c (tui_set_source_content): Rename field reference
7423         filename to fullname.  Initialize field by symtab_to_fullname now.
7424         * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
7425         reference filename to fullname.  Use symtab_to_fullname during
7426         comparison.
7427
7428 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7429
7430         Code cleanup.
7431         * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
7432         (dw2_expand_symtabs_with_fullname): ... here.  Rename parameter
7433         filename to fullname.  Rename variable this_name to this_fullname.
7434         Lowercase FILENAME_CMP call.
7435         (dw2_find_symbol_file): New comment for the returned string.
7436         (dwarf2_gdb_index_functions): Rename the function to
7437         dw2_expand_symtabs_with_fullname.
7438         * psymtab.c (read_psymtabs_with_filename): Rename to ...
7439         (read_psymtabs_with_fullname): ... here.  Rename parameter filename to
7440         fullname.
7441         (psym_functions): Rename the function to read_psymtabs_with_fullname.
7442         * symfile.h (struct quick_symbol_functions): Rename field
7443         expand_symtabs_with_filename to expand_symtabs_with_fullname and its
7444         parameter filename to fullname.  Document returned string meaning for
7445         find_symbol_file.
7446         * symtab.c (find_line_symtab): Rename the called function to
7447         expand_symtabs_with_fullname.
7448
7449 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7450
7451         Code cleanup.
7452         * breakpoint.c (clear_command): Remove variable is_abs, unify the
7453         call of filename_cmp with compare_filenames_for_search.
7454         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
7455         is_abs, unify the call of FILENAME_CMP with
7456         compare_filenames_for_search.  New gdb_asserts for real_path and name.
7457         Unify the call of compare_filenames_for_search with FILENAME_CMP.
7458         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
7459         * symfile.h (struct quick_symbol_functions): Extend the comment for
7460         map_symtabs_matching_filename.
7461         * symtab.c (compare_filenames_for_search): Remove the function comment
7462         relative path requirement.  Handle absolute filenames, with a comment.
7463         (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
7464         FILENAME_CMP with compare_filenames_for_search.  New gdb_asserts for
7465         real_path and name.  Unify the call of compare_filenames_for_search
7466         with FILENAME_CMP.
7467         (iterate_over_symtabs): New gdb_assert on REAL_PATH.
7468
7469 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7470
7471         Code cleanup.
7472         * breakpoint.c (print_breakpoint_location): Replace bp_location field
7473         source_file references by symtab field references.  Remove variables
7474         sal and fullname.
7475         (momentary_breakpoint_from_master, add_location_to_breakpoint):
7476         (clear_command, say_where): Replace bp_location field source_file
7477         references by symtab field references.
7478         (bp_location_dtor): Remove the source_file reference.
7479         (update_static_tracepoint): Replace bp_location field source_file
7480         references by symtab field references.
7481         (breakpoint_free_objfile): New function.
7482         * breakpoint.h (struct bp_location): Extend the comment for line_number.
7483         Replace the field source_file by field symtab, extend its comment.
7484         (breakpoint_free_objfile): New declaration.
7485         * objfiles.c (free_objfile): Call breakpoint_free_objfile.
7486         * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
7487         field source_file references by symtab field references.
7488
7489 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7490
7491         Replace xfullpath calls by gdb_realpath calls.
7492         * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
7493         function comment.
7494         * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
7495         Remove it from the iterate_over_some_symtabs call.
7496         (dw2_map_symtabs_matching_filename): Remove parameter full_path.
7497         Remove it from the dw2_map_expand_apply calls, remove a block handling
7498         it.
7499         * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
7500         Remove it from the iterate_over_some_symtabs call.
7501         (partial_map_symtabs_matching_filename): Remove parameter full_path.
7502         Remove it from the partial_map_expand_apply calls, remove a block
7503         handling it.  Drop gdb_realpath call and cleanups from the real_path
7504         handling.
7505         * source.c (openp): Drop the comment part about xfullpath.  Replace
7506         xfullpath calls by gdb_realpath calls.
7507         (find_and_open_source): Replace xfullpath call by gdb_realpath call.
7508         * symfile.h (struct quick_symbol_functions): Remove parameter full_path
7509         from method map_symtabs_matching_filename and its comment.
7510         * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
7511         gdb_realpath call.
7512         * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
7513         remove it also from the function comment, remove a block handling it.
7514         Drop gdb_realpath call and cleanups from the real_path handling.
7515         (iterate_over_symtabs): Drop variable full_path and its use.
7516         * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
7517         * utils.c (xfullpath): Remove.
7518         * utils.h (xfullpath): Remove.
7519
7520 2013-02-01  Andreas Tobler  <andreast@fgznet.ch>
7521
7522         * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
7523         (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
7524         (ALLDEPFILES): Add ppc64-tdep.c.
7525         * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
7526         ppc64-tdep.o to gdb_target_obs.
7527         * ppc64-tdep.h: New file.
7528         * ppc64-tdep.c: New file.
7529         (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
7530         ppc-linux-tdep.c to here.
7531         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
7532         (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
7533         (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
7534         (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
7535         from ppc-linux-tdep.c to here.
7536         (ppc64_convert_from_func_ptr_addr): Rename from
7537         ppc64_linux_convert_from_func_ptr_addr to
7538         ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
7539         here.
7540         * rs6000-tdep.c:
7541         (read_insn): Move from ppc-linux-tdep.c to here.
7542         (insns_match_pattern, insn_d_field, insn_ds_field): Move
7543         from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
7544         * ppc-linux-tdep.c: Include ppc64-tdep.h.
7545         Removed above functions.
7546         (ppc_linux_init_abi): Adjust.
7547
7548 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
7549
7550         * ada-valprint.c (ada_print_floating): Remove unused 'len'.
7551
7552 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
7553
7554         * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
7555
7556 2013-02-01  Pedro Alves  <palves@redhat.com>
7557
7558         * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
7559         * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
7560
7561 2013-02-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
7562
7563         * elfread.c (elf_symfile_read): Limit separate debug info additions to
7564         files with no separate debug info.
7565         * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
7566         * symfile.c (read_symbols): Call find_separate_debug_file_in_section
7567         only for files with no separate debug info.
7568
7569 2013-01-31  Tom Tromey  <tromey@redhat.com>
7570
7571         * jit.c (jit_program_space_data): Rename from jit_inferior_data;
7572         change type.
7573         (struct jit_program_space_data): Rename from jit_inferior_data.
7574         Update comments.
7575         (get_jit_program_space_data): Rename from get_jit_inferior_data.
7576         Change return type.  Attach data to program space.
7577         (jit_program_space_data_cleanup): Rename from
7578         jit_inferior_data_cleanup; change argument type.
7579         (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
7580         change type.
7581         (jit_register_code): Update.
7582         (jit_update_inferior_cache): Remove.
7583         (jit_breakpoint_deleted): Get jit data from the location's program
7584         space.
7585         (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
7586         'ps_data', change type.
7587         (jit_inferior_init, jit_breakpoint_re_set_internal)
7588         (jit_event_handler): Update.
7589         (free_objfile_data): Get data from objfile's program space.
7590         (_initialize_jit): Update.
7591
7592 2013-01-31  Tom Tromey  <tromey@redhat.com>
7593
7594         PR gdb/13987:
7595         * jit.c (struct jit_inferior_data) <cached_code_address,
7596         jit_breakpoint>: New fields.
7597         (jit_breakpoint_re_set_internal): Fix logging.  Only create
7598         breakpoint if cached address has changed.
7599         (jit_update_inferior_cache, jit_breakpoint_deleted): New
7600         functions.
7601         (_initialize_jit): Register breakpoint deleted observer.
7602
7603 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
7604
7605         * infrun.c (handle_syscall_event): Remove unused gdbarch.
7606         (save_infcall_suspend_state): Ifdef out unused inf.
7607         (restore_infcall_suspend_state): Ifdef out unused inf.
7608         * jit.c (jit_register_code): Remove unused i, b, inf_data.
7609         (jit_frame_sniffer): Remove unused inf_data.
7610
7611 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
7612
7613         * c-exp.y (classify_inner_name): Remove unused type.
7614         * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
7615         in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
7616         need_escape.
7617         (c_get_string): Remove unused kind.
7618         * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
7619
7620 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
7621
7622         * charset.c (intermediate_encoding): Remove unused i.
7623         * completer.c (signal_completer): Remove unused i.
7624         * continuations.c (discard_my_continuations_1): Remove unused
7625         continuation_ptr.
7626         * corelow.c (core_close): Remove unuseD name.
7627         (get_core_siginfo): Remove unused pid.
7628         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
7629         i, cps.
7630         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
7631         (loclist_describe_location): Remove unused first.
7632         * event-top.c (command_line_handler): Remove unused got_eof.
7633         * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
7634         (resize_section_table): Remove unused old_value.
7635         * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
7636         * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
7637         * i386-tdep.c (i386_process_record): Remove unused rex.
7638         * infcmd.c (get_return_value): Remove unused uiout.
7639         * jv-lang.c (type_from_class): Remove unused is_array.
7640         * jv-valprint.c (java_val_print): Remove unused i.
7641         * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
7642         * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
7643         * m2-typeprint.c (m2_print_type): Remove unused code.
7644         * macroexp.c (get_character_constant): Remove unused body_start.
7645         (macro_stringify): Remove unused result.
7646         * objc-lang.c (find_methods): Remove unused gdbarch.
7647         * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
7648         * regcache.c (regcache_cooked_read): Remove unused gdbarch.
7649         * stack.c (print_frame_args): Remove unused summary.
7650         * thread.c (thread_apply_command): Remove unused p.
7651         * valarith.c (value_x_unop): Remove unused mangle_ptr.
7652         * valops.c (search_struct_method): Remove unused skip.
7653         * valprint.c (generic_val_print): Remove unused byte_order.
7654         * varobj.c (varobj_update): Remove unused changed.
7655         * cli/cli-cmds.c (complete_command): Remove unused next_item.
7656         (alias_command): Remove unused c.
7657         * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
7658         * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
7659         format.
7660         (mi_cmd_data_write_memory): Remove unused word_format.
7661         (mi_cmd_data_write_memory_bytes): Remove unused r.
7662         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
7663         p_start, p_end.
7664         * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
7665         * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
7666         line_width.
7667
7668 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
7669
7670         * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
7671         * symtab.c (iterate_over_symtabs): Remove unused s.
7672         (find_pc_sect_symtab): Remove unused pspAce.
7673         (find_pc_sect_line): Remove unused alt_symtab.
7674         (find_pcs_for_symtab_line): Remove unused ix, previous_function.
7675         (completion_list_add_name): Remove unused newsize.
7676
7677 2013-01-31  Tom Tromey  <tromey@redhat.com>
7678
7679         PR c++/14998:
7680         * dwarf2read.c (read_tag_ptr_to_member_type): Handle
7681         TYPE_CODE_FUNC.
7682
7683 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
7684
7685         * target.c (target_read_string): Remove unused origlen.
7686
7687 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
7688
7689         * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
7690         * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
7691         * ax-general.c (ax_print): Remove unused is_float.
7692         * blockframe.c (block_innermost_frame): Remove unused start, end.
7693         * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
7694
7695 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
7696
7697         * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
7698         (svr4_read_so_list): Remove unused lmo.
7699         * solib-target.c (solib_target_relocate_section_addresses): Remove
7700         unused flags.
7701
7702 2013-01-30  Tom Tromey  <tromey@redhat.com>
7703
7704         * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
7705
7706 2013-01-30  Tom Tromey  <tromey@redhat.com>
7707
7708         * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
7709         * utils.c (gnu_debuglink_crc32): Remove.
7710         * utils.h (gnu_debuglink_crc32): Don't declare.
7711
7712 2013-01-30  Tom Tromey  <tromey@redhat.com>
7713
7714         * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
7715         (read_structure_type, read_enumeration_type): Remove cast.
7716
7717 2013-01-30  Tom Tromey  <tromey@redhat.com>
7718
7719         * dwarf2read.c (read_namespace_type): Remove cast.
7720         (read_typedef): Likewise.
7721
7722 2013-01-29  Tom Tromey  <tromey@redhat.com>
7723
7724         * dwarf2read.c (free_dwo_file): Remove assert.
7725
7726 2013-01-29  Tom Tromey  <tromey@redhat.com>
7727
7728         * value.c (deprecated_set_value_modifiable): Remove.
7729         * value.h (deprecated_set_value_modifiable): Remove.
7730
7731 2013-01-28  Doug Evans  <dje@google.com>
7732
7733         * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
7734         to addresses from dwo files.
7735
7736 2013-01-25  Siva Chandra Reddy  <sivachandra@google.com>
7737
7738         * valops.c (find_overload_match): Remove unused argument 'lax'.
7739         * value.h: Remove unused argument 'lax' from the declaration of
7740         find_overload_match.
7741         * eval.c (value_subexp_standard): Do not pass a 'lax' argument
7742         to find_overload_match.
7743         * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
7744         argument to find_overload_match.
7745
7746 2013-01-25  Tom Tromey  <tromey@redhat.com>
7747
7748         * dwarf2read.c (processing_has_namespace_info): Remove.
7749         (struct dwarf2_cu) <processing_has_namespace_info>: New field.
7750         (process_die, read_func_scope, dwarf2_start_symtab)
7751         (new_symbol_full): Update.
7752
7753 2013-01-25  Tom Tromey  <tromey@redhat.com>
7754
7755         * cp-namespace.c (cp_set_block_scope): Remove.
7756         * cp-support.h (cp_set_block_scope): Remove.
7757         * dbxread.c: Include block.h.
7758         (cp_set_block_scope): New function.
7759         (process_one_symbol): Update.
7760         * dwarf2read.c (read_func_scope): Use block_set_scope.
7761
7762 2013-01-25  Pedro Alves  <palves@redhat.com>
7763
7764         * remote.c (add_current_inferior_and_thread): Tweak comment.
7765
7766 2013-01-25  Tom Tromey  <tromey@redhat.com>
7767
7768         * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
7769         (cp_add_using_directive): Add 'copy_names' argument.
7770         * cp-support.h (cp_add_using_directive): Update.
7771         (struct using_direct) <import_src, import_dest, alias,
7772         declaration>: Now const.
7773         * dwarf2read.c (read_import_statement): Use obconcat.
7774         Don't copy names passed to cp_add_using_directive.
7775
7776 2013-01-25  Tom Tromey  <tromey@redhat.com>
7777
7778         * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
7779
7780 2013-01-25  Pedro Alves  <palves@redhat.com>
7781
7782         * remote.c (stop_reply_extract_thread): New.
7783         (add_current_inferior_and_thread): New parameter 'wait_status'.
7784         Handle it.
7785         (remote_start_remote): Pass wait status to
7786         add_current_inferior_and_thread.
7787         (extended_remote_run): Update comment.
7788         (extended_remote_create_inferior_1): Pass wait status to
7789         add_current_inferior_and_thread.
7790
7791 2013-01-25  Andrew Burgess  <aburgess@broadcom.com>
7792             Ulrich Weigand  <uweigand@de.ibm.com>
7793
7794         * valarith.c (value_vector_widen): New function for replicating a
7795         scalar into a vector.
7796         (value_binop): Use value_vector_widen to widen scalar to vector
7797         rather than casting, this better matches gcc C behaviour.
7798         * valops.c (value_casst): Update logic for casting between vector
7799         types, and for casting from scalar to vector, try to match gcc C
7800         behaviour.
7801         * value.h (value_vector_widen): Declare.
7802         * opencl-lang.c (opencl_value_cast): New opencl specific casting
7803         function, handle special case for casting scalar to vector.
7804         (opencl_relop): Use opencl_value_cast.
7805         (evaluate_subexp_opencl): Use opencl_value_cast instead of
7806         value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
7807         in order to use opencl_value_cast.
7808
7809 2013-01-25  Yao Qi  <yao@codesourcery.com>
7810
7811         * event-loop.c: Include "queue.h".
7812         (gdb_event_p): New typedef.
7813         (DECLARE_QUEUE_P): Use.
7814         (DEFINE_QUEUE_P): Use.
7815         (async_queue_event): Remove.
7816         (gdb_event_xfree): New.
7817         (initialize_event_loop): New.
7818         (process_event): Use QUEUE macros.
7819         (event_queue): Remove.
7820         (gdb_wait_for_event): Caller update.
7821         (check_async_event_handlers): Likewise.
7822         (poll_timers): Likewise.
7823         * event-loop.h (initialize_event_loop): Declare.
7824         * event-loop.c (gdb_event_xfree): New.
7825         * top.c (gdb_init): Call initialize_event_loop.
7826
7827 2013-01-25  Yao Qi  <yao@codesourcery.com>
7828
7829         * event-loop.c (async_queue_event): Remove one parameter
7830         'position'.  Remove code handling 'position' == TAIL.
7831         (gdb_wait_for_event): Caller update.
7832         (check_async_event_handlers): Caller update.
7833         (poll_timers): Caller update.
7834         * event-loop.h (enum queue_position): Remove.
7835
7836 2013-01-25  Maxim Kuvyrkov  <maxim@kugelworks.com>
7837
7838         * MAINTAINERS: Update my email.
7839
7840 2013-01-25  Yao Qi  <yao@codesourcery.com>
7841
7842         * main.c (print_gdb_help): Remove "--epoch" from the help
7843         message.
7844
7845 2013-01-24  Ulrich Weigand  <uweigand@de.ibm.com>
7846
7847         * symtab.c (skip_prologue_using_sal): Consider a file
7848         change the same as an increased line number
7849
7850 2013-01-24  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
7851
7852         * MAINTAINERS (Write After Approval): Add myself to the list.
7853
7854 2013-01-24  Tom Tromey  <tromey@redhat.com>
7855
7856         * ada-lang.h (ada_decode_symbol): Make return type const.
7857         * ada-lang.c (ada_decode_symbol): Likewise.
7858
7859 2013-01-23  Doug Evans  <dje@google.com>
7860
7861         * linespec.c (find_linespec_symbols): Make static.
7862
7863 2013-01-23  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
7864
7865         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
7866         type on float conversion for complex type.
7867
7868 2013-01-23  Siva Chandra Reddy  <sivachandra@google.com>
7869
7870         Add a new class gdb.Architecture which exposes GDB's
7871         internal representation of architecture via GDB Python API.
7872         * Makefile.in: Add entries corresponding to the new file
7873         python/py-arch.c.
7874         * NEWS (Python Scripting): Add entries for the new class
7875         gdb.Architecture and the new method gdb.Frame.architecture.
7876         * python/py-arch.c: Implement gdb.Architecture class.
7877         * python/py-frame.c (frapy_arch): Implement the method
7878         gdb.Frame.architecture().
7879         (frame_object_methods): Add 'architecture' to the method table.
7880         * python/python-internal.h: Add declarations of new utility
7881         functions.
7882         * python/python.c (_initialize_python): Initialize
7883         gdb.Architecture class.
7884
7885 2013-01-23  Doug Evans  <dje@google.com>
7886
7887         Work around binutils/15021.
7888         * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
7889         type_unit_group out of union s.  All uses updated.
7890         (read_index_from_section): Watch for index version 8.
7891         (follow_die_sig): If using .gdb_index version <= 7, record the TU as
7892         an imported symtab.
7893         (write_psymtabs_to_index): Increment version number to 8.
7894
7895 2013-01-22  Pedro Alves  <palves@redhat.com>
7896
7897         * annotate.c (breakpoint_changed): Skip if breakpoint is not
7898         user-visible.
7899
7900 2013-01-22  Pedro Alves  <palves@redhat.com>
7901
7902         * annotate.c (annotate_breakpoints_changed): Rename to ...
7903         (annotate_breakpoints_invalid): ... this.  Make static.
7904         (breakpoint_changed): Adjust.
7905         (_initialize_annotate): Always install the observers.  Install a
7906         "breakpoint_created" observer.
7907         * annotate.h (annotate_breakpoints_changed): Delete declaration.
7908         * breakpoint.c (set_breakpoint_condition)
7909         (breakpoint_set_commands, do_map_commands_command)
7910         (init_raw_breakpoint, clear_command, set_ignore_count)
7911         (enable_breakpoint_disp): No longer call
7912         annotate_breakpoints_changed.
7913
7914 2013-01-22  Pedro Alves  <palves@redhat.com>
7915
7916         * annotate.c: Include "inferior.h".
7917         (frames_invalid_emitted)
7918         (breakpoints_invalid_emitted): New globals.
7919         (async_background_execution_p): New function.
7920         (annotate_breakpoints_changed, annotate_frames_invalid): Skip
7921         emitting the annotation if it has already been emitted.
7922         (annotate_display_prompt): New function.
7923         * annotate.h (annotate_display_prompt): New declaration.
7924         * event-top.c: Include annotate.h.
7925         (display_gdb_prompt): Call annotate_display_prompt.
7926
7927 2013-01-22  Pedro Alves  <palves@redhat.com>
7928
7929         * annotate.c (ignore_count_changed): Delete.
7930         (annotate_breakpoints_changed): Don't clear ignore_count_changed.
7931         (annotate_ignore_count_change): Delete.
7932         (annotate_stopped): Don't emit a delayed breakpoints-changed
7933         annotation.
7934         * annotate.h (annotate_ignore_count_change): Delete.
7935         * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
7936         annotate_ignore_count_change.
7937
7938 2013-01-22  Tom Tromey  <tromey@redhat.com>
7939
7940         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
7941         require_rvalue for a register location.
7942
7943 2013-01-21  Marc Khouzam  <marc.khouzam@ericsson.com>
7944
7945         * breakpoint.c (print_one_breakpoint_location): Add MI
7946         field 'thread-groups' when printing a breakpoint.
7947         (output_thread_groups): New function.
7948
7949 2013-01-21  Siva Chandra Reddy  <sivachandra@google.com>
7950
7951         * python/lib/gdb/commands/explore.py
7952         (CompoundExplorer.explore_expr): Correct the name of a method
7953         being invoked.
7954         (ExploreTypeCommand.invoke): Add a missing 'return'.
7955
7956 2013-01-21  Tom Tromey  <tromey@redhat.com>
7957
7958         * gdb_obstack.h (obconcat): Move declaration here, from...
7959         * symfile.h (obconcat): ... here.
7960         * gdb_obstack.c: New file.
7961         (obconcat): Move from...
7962         * symfile.c (obconcat): ... here.
7963         * Makefile.in (SFILES): Add gdb_obstack.c.
7964         (COMMON_OBS): Add gdb_obstack.o.
7965
7966 2013-01-21  Tom Tromey  <tromey@redhat.com>
7967
7968         * symfile.h (obsavestring): Don't declare.
7969         * symfile.c (obsavestring): Remove.
7970         * ada-exp.y: Use obstack_copy0, not obsavestring.
7971         * ada-lang.c: Use obstack_copy0, not obsavestring.
7972         * coffread.c: Use obstack_copy0, not obsavestring.
7973         * cp-namespace.c: Use obstack_copy0, not obsavestring.
7974         * dbxread.c: Use obstack_copy0, not obsavestring.
7975         * dwarf2read.c: Use obstack_copy0, not obsavestring.
7976         * jit.c: Use obstack_copy0, not obsavestring.
7977         * mdebugread.c: Use obstack_copy0, not obsavestring.
7978         * psymtab.c: Use obstack_copy0, not obsavestring.
7979         * stabsread.c: Use obstack_copy0, not obsavestring.
7980         * xcoffread.c: Use obstack_copy0, not obsavestring.
7981
7982 2013-01-21  Tom Tromey  <tromey@redhat.com>
7983
7984         * dwarf2read.c (fixup_go_packaging): Save package name
7985         on objfile obstack.
7986         * gdbtypes.c (init_type): Don't copy name.
7987
7988 2013-01-21  Tom Tromey  <tromey@redhat.com>
7989
7990         * dwarf2read.c (struct partial_die_info) <name, scope>: Now
7991         const.
7992         (struct attribute) <u.str>: Now const.
7993         (struct fnfieldlist) <name>: Now const.
7994         (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
7995         (partial_die_parent_scope): Make return type const.
7996         (partial_die_full_name, add_partial_symbol): Update.
7997         (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
7998         'name' const.
7999         (find_file_and_directory): Make 'name' and 'comp_dir' const.
8000         (read_file_scope, read_func_scope, dwarf2_add_field)
8001         (dwarf2_add_member_fn, read_structure_type)
8002         (process_enumeration_scope, read_array_type, read_module_type)
8003         (read_base_type, read_subrange_type): Update.
8004         (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
8005         (new_symbol_full, guess_full_die_structure_name): Update.
8006         (dwarf2_canonicalize_name): Return const type.  Make 'name' const.
8007         (dwarf2_name): Return const type.
8008         (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
8009         const.
8010
8011 2013-01-21  Tom Tromey  <tromey@redhat.com>
8012
8013         * gdbtypes.c (init_type): Make 'name' const.
8014         * gdbtypes.h (init_type): Update.
8015
8016 2013-01-21  Tom Tromey  <tromey@redhat.com>
8017
8018         * buildsym.c (patch_subfile_names): Use set_last_source_file.
8019         (start_symtab): Make 'name' and 'dirname' const.  Use
8020         set_last_source_file.
8021         (restart_symtab, reset_symtab_globals): Use set_last_source_file.
8022         (last_source_file): Define.  Now static.
8023         (set_last_source_file, get_last_source_file): New functions.
8024         * buildsym.h (last_source_file): Don't declare.
8025         (start_symtab): Update.
8026         (set_last_source_file, get_last_source_file): Declare.
8027         * coffread.c (complete_symtab): Use set_last_source_file.
8028         (coff_end_symtab): Likewise.
8029         (coff_symtab_read): Use set_last_source_file, get_last_source_file.
8030         * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
8031         set_last_source_file.
8032         (process_one_symbol): Use get_last_source_file.
8033         * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
8034         (psymtab_to_symtab_1): Use get_last_source_file.
8035         * xcoffread.c (process_linenos): Use get_last_source_file.
8036         (complete_symtab): Use set_last_source_file.
8037         (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
8038         (scan_xcoff_symtab): Use set_last_source_file.
8039
8040 2013-01-21  Tom Tromey  <tromey@redhat.com>
8041
8042         * symtab.c (struct demangled_name_entry) <mangled>: Now const.
8043         (symbol_set_names): Remove casts.  Handle field const-ness.
8044
8045 2013-01-21  Tom Tromey  <tromey@redhat.com>
8046
8047         * dwarf2read.c (new_symbol_full): Remove cast.
8048         * symtab.c (symbol_set_demangled_name): Make 'name' const.
8049         * symtab.h (symbol_set_demangled_name): Update.
8050
8051 2013-01-21  Tom Tromey  <tromey@redhat.com>
8052
8053         * main.c (captured_main): Call bfd_init.
8054
8055 2013-01-21  Tom Tromey  <tromey@redhat.com>
8056
8057         * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
8058         * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
8059         * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
8060         * NEWS: Update.
8061
8062 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
8063
8064         * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
8065
8066 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
8067
8068         Fix gdb.fortran/common-block.exp crash in PIE mode.
8069         * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
8070         LOC_COMMON_BLOCK.
8071         * f-valprint.c (info_common_command_for_block): Expect
8072         LOC_COMMON_BLOCK in gdb_assert.
8073         * symtab.h (struct general_symbol_info): Update comment for the
8074         common_block member.
8075         (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
8076         (enum address_class): New member LOC_COMMON_BLOCK.
8077
8078 2013-01-18  David Blaikie  <dblaikie@gmail.com>
8079
8080         * MAINTAINERS (Write After Approval): Add "David Blaikie".
8081
8082 2013-01-18  Tom Tromey  <tromey@redhat.com>
8083
8084         PR c++/14999:
8085         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
8086         Call require_rvalue.
8087
8088 2013-01-18  Yao Qi  <yao@codesourcery.com>
8089
8090         * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
8091         (dbx_read_symtab): New declaration.
8092         (dbx_psymtab_to_symtab): Delete.
8093         (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
8094         Rename parameter PST to SELF.  Exchanged two parameters.
8095         (start_psymtab): Caller update.
8096         * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
8097         (dwarf2_read_symtab): New declaration.
8098         (dwarf2_psymtab_to_symtab): Delete.
8099         (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
8100         Rename parameter PST to SELF.  Exchanged two parameters.
8101         (create_partial_symtab): Caller update.
8102         * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
8103         (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
8104         Rename parameter PST to SELF.  Exchanged two parameters.
8105         (parse_partial_symbols, new_psymtab): Caller update.
8106         * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
8107         two parameters.
8108         * psymtab.c (psymtab_to_symtab): Caller update.
8109         * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
8110         (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
8111         Rename parameter PST to SELF.  Exchanged two parameters.
8112         (xcoff_start_psymtab): Caller update.
8113
8114 2013-01-18  Yao Qi  <yao@codesourcery.com>
8115
8116         * infrun.c (proceed): Rename local variable 'oneproc' to
8117         'force_step'.
8118
8119 2013-01-17  Doug Evans  <dje@google.com>
8120
8121         * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
8122         (dw2_build_type_unit_groups): Delete.  All uses updated.
8123
8124         * symtab.h (struct symbol_search): Add comment.
8125
8126 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8127
8128         * symtab.c (compare_filenames_for_search): New comment for
8129         HAS_DRIVE_SPEC.
8130
8131 2013-01-17  Tom Tromey  <tromey@redhat.com>
8132
8133         * cp-abi.c (cp_abi_completer): Fix typo in assignment.
8134
8135 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8136
8137         * symtab.c (iterate_over_some_symtabs): New variable cleanups,
8138         initialize it by existing make_cleanup.  Call new do_cleanups.
8139
8140 2013-01-17  Tom Tromey  <tromey@redhat.com>
8141
8142         * cp-abi.c (cp_abi_completer): New function.
8143         (_initialize_cp_abi): Set completer for "set cp-abi".
8144
8145 2013-01-17  Tom Tromey  <tromey@redhat.com>
8146
8147         * mem-break.c: Remove obsolete comment.
8148         * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
8149
8150 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
8151
8152         * jit.c (jit_reader_load_command): Interpret the jit reader name
8153         as an absolute path if it begins with a forward slash.
8154
8155 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
8156
8157         PR gdb/14550
8158
8159         * jit.c (finalize_symtab): Ensure that only the global block has a
8160         NULL superblock.
8161
8162 2013-01-17  Pedro Alves  <palves@redhat.com>
8163
8164         * acinclude.m4: Include ../config/plugins.m4,
8165         ../config/largefile.m4 and ../config/lead-dot.m4.  Add comments.
8166         * Makefile.in (aclocal_m4_deps): Update.
8167         * aclocal.m4: Renegerate.
8168
8169 2013-01-16  Doug Evans  <dje@google.com>
8170
8171         * contrib/cc-with-tweaks.sh: Add references to Fission docs.
8172
8173 2013-01-16  Pedro Alves  <palves@redhat.com>
8174             Tom Tromey  <tromey@redhat.com>
8175
8176         PR cli/7221:
8177         * NEWS: Add "catch signal".
8178         * breakpoint.c (base_breakpoint_ops): No longer static.
8179         (bpstat_explains_signal): New function.
8180         (init_catchpoint): No longer static.
8181         (base_breakpoint_explains_signal): New function.
8182         (base_breakpoint_ops): Initialize new field.
8183         * breakpoint.h (enum bpstat_signal_value): New.
8184         (struct breakpoint_ops) <explains_signal>: New field.
8185         (bpstat_explains_signal): Remove macro, declare as function.
8186         (base_breakpoint_ops, init_catchpoint): Declare.
8187         * break-catch-sig.c: New file.
8188         * inferior.h (signal_catch_update): Declare.
8189         * infrun.c (signal_catch): New global.
8190         (handle_syscall_event): Update for change to
8191         bpstat_explains_signal.
8192         (handle_inferior_event): Likewise.  Always handle random signals
8193         via bpstats.
8194         (signal_cache_update): Check signal_catch.
8195         (signal_catch_update): New function.
8196         (_initialize_infrun): Initialize signal_catch.
8197         * Makefile.in (SFILES): Add break-catch-sig.c.
8198         (COMMON_OBS): Add break-catch-sig.o.
8199
8200 2013-01-16  Tom Tromey  <tromey@redhat.com>
8201
8202         * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
8203         (print_one_catch_solib, print_one_catch_syscall)
8204         (print_one_catch_exec, print_one_exception_catchpoint): Emit
8205         "catch-type".
8206
8207 2013-01-16  Yao Qi  <yao@codesourcery.com>
8208
8209         * printcmd.c (current_display_number): Make it static.
8210
8211 2013-01-16  Yao Qi  <yao@codesourcery.com>
8212
8213         * infcmd.c (step_once): Don't check '!single_inst' as it was
8214         checked before.
8215
8216 2013-01-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
8217
8218         * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
8219
8220 2013-01-14  Tom Tromey  <tromey@redhat.com>
8221
8222         * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
8223         set command.
8224         * command.h (add_setshow_string_noescape_cmd): Update.
8225         * corefile.c (set_gnutarget_command): Remove trailing whitespace.
8226         (complete_set_gnutarget): New function.
8227         (_initialize_core): Set the "set gnutarget" completer.
8228
8229 2013-01-14  Tom Tromey  <tromey@redhat.com>
8230
8231         PR symtab/14442:
8232         * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
8233         (c_type_print_modifier): Likewise.
8234         * dwarf2read.c (read_tag_restrict_type): New function.
8235         (read_type_die_1): Handle DW_TAG_restrict_type.
8236         * gdbtypes.c (make_restrict_type): New function.
8237         (recursive_dump_type): Handle TYPE_RESTRICT.
8238         * gdbtypes.h (enum type_flag_values): Renumber.
8239         (enum type_instance_flag_value): Add
8240         TYPE_INSTANCE_FLAG_RESTRICT.
8241         (TYPE_RESTRICT): New macro.
8242         (make_restrict_type): Declare.
8243
8244 2013-01-14  Tom Tromey  <tromey@redhat.com>
8245
8246         PR symtab/14931:
8247         * psymtab.c (struct psymtab_state): New.
8248         (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
8249         functions.
8250         * psympriv.h (make_cleanup_discard_psymtabs): Declare.
8251         * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
8252
8253 2013-01-14  Richard Sharman  <richard_sharman@mitel.com>
8254             Pedro Alves  <palves@redhat.com>
8255
8256         PR remote/14786
8257
8258         * remote.c (remote_threads_info): Make a copy of the reply from
8259         qfThreadInfo and use that instead of rs->buf.
8260
8261 2013-01-14  Yao Qi  <yao@codesourcery.com>
8262
8263         * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
8264         (dbx_psymtab_to_symtab): Likewise.
8265         * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
8266         * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
8267         * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
8268
8269 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
8270
8271         * parse.c (parse_exp_in_context): New variable inner_chain.  Call
8272         make_cleanup_restore_current_language.  Call set_language.  Move
8273         OLD_CHAIN and INNER_CHAIN cleanups.
8274         * utils.c (do_restore_current_language)
8275         (make_cleanup_restore_current_language): New functions.
8276         * utils.h (make_cleanup_restore_current_language): New declaration.
8277
8278 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
8279
8280         * source.c (symtab_to_fullname): Apply rewrite_source_path also for
8281         non-existing files.
8282
8283         * source.c (symtab_to_fullname): Do not prepend DIRNAME for
8284         non-existing files if FILENAME is already absolute.
8285
8286 2013-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8287
8288         * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
8289         fputs_filtered.  Append trailing newline.
8290
8291 2013-01-11  Yao Qi  <yao@codesourcery.com>
8292             Stan Shebs  <stan@codesourcery.com>
8293
8294         * psymtab.c (init_psymbol_list): Clarify the comment.
8295
8296 2013-01-11  Yao Qi  <yao@codesourcery.com>
8297
8298         * breakpoint.c (print_one_breakpoint_location): Remove dead code.
8299         (update_dprintf_command_list): Assert that 'printf_line' is
8300         non-null.  Remove condition check.
8301
8302 2013-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
8303
8304         Code cleanup.
8305         * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
8306         type const char *.
8307         * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
8308         const char *.
8309         * tui/tui-source.h (tui_source_is_displayed): Likewise.
8310
8311 2013-01-09  Anthony Green  <green@moxielogic.com>
8312
8313         * cp-abi.c (cplus_print_vtable): Don't return value from void
8314         function.
8315         * ada-lang.c (re_set_catch_assert): Ditto.
8316
8317 2013-01-09  Doug Evans  <dje@google.com>
8318
8319         * symfile.h (quick_symbol_functions): Delete member
8320         pre_expand_symtabs_matching.  All uses removed.
8321         * dwarf2read.c (dw2_lookup_symbol): Implement.
8322         (dw2_do_expand_symtabs_matching): Delete.
8323         (dw2_pre_expand_symtabs_matching): Delete.
8324         (struct dw2_symtab_iterator): New type.
8325         (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
8326         (dw2_expand_symtabs_for_function): Rewrite.
8327         (dwarf2_gdb_index_functions): Update.
8328         * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
8329         (psym_functions): Update.
8330
8331 2013-01-09  Tom Tromey  <tromey@redhat.com>
8332
8333         * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
8334         * configure: Rebuild.
8335         * configure.ac: Add somread.o to the build if BFD has SOM
8336         support.
8337         * somread.c: Include som/aout.h, not syms.h.
8338         (som_symtab_read): Use som_external_symbol_dictionary_record.
8339         Unpack records manually.
8340         (_initialize_somread): Declare.
8341
8342 2012-01-08  Mike Frysinger  <vapier@gentoo.org>
8343
8344         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
8345         Cast return_address to 64bits.
8346
8347 2013-01-08  Hui Zhu  <hui_zhu@mentor.com>
8348
8349         * printcmd.c: Remove define of function output_command.
8350         * tracepoint.c: Remove extern of function output_command.
8351         * valprint.h: (output_command): New extern.
8352
8353 2013-01-07  Tom Tromey  <tromey@redhat.com>
8354
8355         * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
8356         Remove.
8357         (objc_language_defn): Use c_printchar, c_printstr,
8358         c_emit_char.
8359
8360 2013-01-07  Tom Tromey  <tromey@redhat.com>
8361
8362         PR cli/7719:
8363         * NEWS: Update.
8364         * ada-valprint.c (printstr, print_field_values): Remove
8365         "inspect_it" code.
8366         * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
8367         code.
8368         * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
8369         code.
8370         * m2-lang.c (m2_printstr): Remove "inspect_it" code.
8371         * main.c (captured_main): Remove "epoch" argument.
8372         * objc-lang.c (objc_printstr): Remove "inspect_it" code.
8373         * p-lang.c (pascal_printstr): Remove "inspect_it" code.
8374         * p-valprint.c (pascal_object_print_value_fields): Remove
8375         "inspect_it" code.
8376         * printcmd.c (print_command_1): Remove 'inspect' argument.
8377         (print_command, call_command): Update.
8378         (inspect_command): Remove.
8379         (_initialize_printcmd): Make "inspect" an alias for "print".
8380         * top.c (epoch_interface): Remove.
8381         * top.h (epoch_interface): Remove.
8382         * valprint.c (user_print_options): Update.
8383         (print_converted_chars_to_obstack): Remove "inspect_it" code.
8384         * valprint.h (struct value_print_options) <inspect_it>: Remove
8385         field.
8386
8387 2013-01-04  Tom Tromey  <tromey@redhat.com>
8388
8389         * valprint.h (read_string): Add 'extern'.
8390
8391 2013-01-07  Joel Brobecker  <brobecker@adacore.com>
8392
8393         * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
8394         used to decide whether to define darwin_read_dyld_info or not.
8395
8396 2013-01-03  Pierre Muller  <muller@sourceware.org>
8397
8398         * main.c (relocate_gdb_directory): Avoid calling stat function
8399         if DIR is empty.
8400
8401 2013-01-03  Yao Qi  <yao@codesourcery.com>
8402
8403         * psymtab.c (fixup_psymbol_section): Update declaration.
8404         (fixup_psymbol_section): Remove code returning value.
8405
8406 2013-01-03  Yao Qi  <yao@codesourcery.com>
8407
8408         * symtab.h: Remove some out of date comments.
8409          (enum exception_event_kind): Move it ...
8410         * breakpoint.c: ... here.
8411
8412 2013-01-02  Iain Sandoe  <developer@sandoe-acoustics.co.uk>
8413
8414         PR gdb/14405
8415         * darwin-nat.c (darwin_read_dyld_info): Only build if
8416         TASK_DYLD_INFO_COUNT is defined.
8417         (darwin_xfer_partial): Call darwin_read_dyld_info only if
8418         TASK_DYLD_INFO_COUNT is defined.
8419
8420 2013-01-02  Tom Tromey  <tromey@redhat.com>
8421
8422         * symfile.h (struct ecoff_debug_hack): Remove.
8423         * objfiles.c: Don't include mdebugread.h.
8424
8425 2013-01-02  Tom Tromey  <tromey@redhat.com>
8426
8427         * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
8428         * configure.ac: Check for Mach-O support in BFD.  Update
8429         CONFIG_OBS.
8430         * configure: Rebuild.
8431
8432 2013-01-02  Tom Tromey  <tromey@redhat.com>
8433
8434         * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
8435         * configure.ac: Use GDB_AC_CHECK_BFD.
8436         * configure: Rebuild.
8437
8438 2013-01-01  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
8439
8440         * MAINTAINERS: Update my email.
8441
8442 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
8443
8444         * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
8445
8446 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
8447
8448         * rs6000-nat.c (bss_data_overlap): New function.
8449         (vmap_symtab): Use it to adjust the .bss section's offset.
8450
8451 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
8452
8453         Update year range in copyright notice of all files.
8454
8455 2013-01-01, 13  Joel Brobecker  <brobecker@adacore.com>
8456
8457         * top.c (print_gdb_version): Update copyright year.
8458
8459 For older changes see ChangeLog-2012.
8460 \f
8461 Local Variables:
8462 mode: change-log
8463 left-margin: 8
8464 fill-column: 74
8465 version-control: never
8466 coding: utf-8
8467 End: