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