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