e4abc1c7446e1bf9116247620b2d200a881c43ab
[platform/upstream/binutils.git] / gdb / ChangeLog
1 2013-10-22  Pedro Alves  <palves@redhat.com>
2
3         * infrun.c (keep_going): Update comments.
4
5 2013-10-22  Pedro Alves  <palves@redhat.com>
6
7         * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
8         invalid signal numbers to GDB_SIGNAL_UNKNOWN.
9
10 2013-10-22  Pedro Alves  <palves@redhat.com>
11
12         * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
13         GDB_EXC_BAD_ACCESS.
14         (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
15         (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
16         (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
17         (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
18         (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
19         (GDB_SIGNAL_LAST): Change description string.
20         * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
21         Adjust to signal renaming.
22         * darwin-nat.c (darwin_decode_message): Likewise.
23
24 2013-10-22  Jose E. Marchesi  <jose.marchesi@oracle.com>
25
26         * MAINTAINERS (Write After Approval): Add myself to the list.
27
28 2013-10-18  Andrew Burgess  <aburgess@broadcom.com>
29
30         * breakpoint.c (update_watchpoint): If hardware watchpoints are
31         forced off, downgrade them to software watchpoints if possible,
32         and error out if not possible.
33         (watch_command_1): Move watchpoint type selection closer to
34         watchpoint creation, and extend the comments.
35
36 2013-10-18  Pedro Alves  <palves@redhat.com>
37
38         PR gdb/16062
39         * infrun.c (handle_inferior_event): Keep going if we got a random
40         signal we should not stop for, instead of falling through to the
41         step tests.
42
43 2013-10-18  Yao Qi  <yao@codesourcery.com>
44
45         * c-varobj.c (cplus_number_of_children): Fix indentation.
46
47 2013-10-17  Tom Tromey  <tromey@redhat.com>
48
49         PR gdb/15995:
50         * printcmd.c (printcmd): Call gdb_flush.
51
52 2013-10-17  Tom Tromey  <tromey@redhat.com>
53
54         * elfread.c (struct elfinfo) <stabindexsect>: Remove.
55         (elf_locate_sections): Update.
56
57 2013-10-17  Yao Qi  <yao@codesourcery.com>
58
59         * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
60         * ada-varobj.c: Remove the include of ada-varobj.h.
61         (ada_varobj_get_number_of_children): Declare.
62         (ada_varobj_get_name_of_child): Make it static.
63         (ada_varobj_get_path_expr_of_child): Likewise.
64         (ada_varobj_get_value_of_child): Likewise.
65         (ada_varobj_get_type_of_child): Likewise.
66         (ada_varobj_get_value_of_array_variable): Likewise.
67         * ada-varobj.h: Remove.
68
69 2013-10-17  Yao Qi  <yao@codesourcery.com>
70
71         * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
72         (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
73         * ada-varobj.c: Include "varobj.h".
74         (ada_number_of_children): New.  Moved from varobj.c.
75         (ada_name_of_variable, ada_name_of_child): Likewise.
76         (ada_path_expr_of_child, ada_value_of_child): Likewise.
77         (ada_type_of_child, ada_value_of_variable): Likewise.
78         (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
79         (ada_varobj_ops): New.
80         * c-varobj.c, jv-varobj.c: New file.  Moved from varobj.c.
81         * gdbtypes.c (get_target_type): New.  Moved from varobj.c.
82         * gdbtypes.h (get_target_type): Declare.
83         * varobj.c: Remove the inclusion of "ada-varobj.h" and
84         "ada-lang.h".
85         (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
86         (ANONYMOUS_UNION_NAME): Likewise.
87         (get_type, get_value_type, get_target_type): Remove declarations.
88         (value_get_print_value, varobj_value_get_print_value): Likewise.
89         (c_number_of_children, c_name_of_variable): Likewise.
90         (c_name_of_child, c_path_expr_of_child): Likewise.
91         (c_value_of_child, c_type_of_child): Likewise.
92         (c_value_of_variable, cplus_number_of_children): Likewise.
93         (cplus_class_num_children, cplus_name_of_variable): Likewise.
94         (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
95         (cplus_value_of_child, cplus_type_of_child): Likewise.
96         (cplus_value_of_variable, java_number_of_children): Likewise.
97         (java_name_of_variable, java_name_of_child): Likewise.
98         (java_path_expr_of_child, java_value_of_child): Likewise.
99         (java_type_of_child, java_value_of_variable): Likewise.
100         (ada_number_of_children, ada_name_of_variable): Likewise.
101         (ada_name_of_child, ada_path_expr_of_child): Likewise.
102         (ada_value_of_child, ada_type_of_child): Likewise.
103         (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
104         (ada_value_has_mutated): Likewise.
105         (struct language_specific): Move it to varobj.h.
106         (CPLUS_FAKE_CHILD): Move it to varobj.h.
107         (restrict_range): Rename it varobj_restrict_range.  Make it extern.
108         Callers update.
109         (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
110         Make it extern.
111         (is_anonymous_child): Move it to c-varobj.c and rename to
112         varobj_is_anonymous_child.  Caller update.
113         (get_type): Move it to c-varobj.c.
114         (get_value_type): Rename it varobj_get_value_type.  Make it
115         extern.
116         (get_target_type): Move it gdbtypes.c.
117         (varobj_formatted_print_options): New function.
118         (value_get_print_value): Rename it to
119         varobj_value_get_print_value and make it extern.
120         (varobj_value_is_changeable_p): Make it extern.
121         (adjust_value_for_child_access): Move it to c-varobj.c.
122         (default_value_is_changeable_p): Rename it to
123         varobj_default_value_is_changeable_p.  Make it extern.
124         (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
125         (c_name_of_child, c_path_expr_of_child): Likewise.
126         (c_value_of_child, c_type_of_child): Likewise.
127         (c_value_of_variable, cplus_number_of_children): Likewise.
128         (cplus_class_num_children, cplus_name_of_variable): Likewise.
129         (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
130         (cplus_value_of_child, cplus_type_of_child): Likewise.
131         (cplus_value_of_variable): Likewise.
132         (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
133         (java_name_of_child, java_path_expr_of_child): Likewise.
134         (java_value_of_child, java_type_of_child): Likewise.
135         (java_value_of_variable): Likewise.
136         (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
137         (ada_name_of_child, ada_path_expr_of_child): Likewise.
138         (ada_value_of_child, ada_type_of_child): Likewise.
139         (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
140         (ada_value_has_mutated): Likewise.
141         * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
142         (struct lang_varobj_ops): New.  Renamed by 'struct language_specific'.
143         (c_varobj_ops, cplus_varobj_ops): Declare.
144         (java_varobj_ops, ada_varobj_ops): Declare.
145         (varobj_default_value_is_changeable_p): Declare.
146         (varobj_value_is_changeable_p): Declare.
147         (varobj_get_value_type, varobj_is_anonymous_child): Declare.
148         (varobj_get_path_expr_parent): Declare.
149         (varobj_value_get_print_value): Declare.
150         (varobj_formatted_print_options): Declare.
151         (varobj_restrict_range): Declare.
152
153 2013-10-17  Luis Machado  <lgustavo@codesourcery.com>
154
155         * target/waitstatus.h (target_waitkind): Remove spurious
156         character from the comments.
157
158 2013-10-17  Joel Brobecker  <brobecker@adacore.com>
159
160         * gdbarch.sh (get_longjmp_target): Add method documentation.
161         * gdbarch.h: Regenerate.
162
163 2013-10-16  Tom Tromey  <tromey@redhat.com>
164
165         * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
166         label.
167
168 2013-10-16  Luis Machado  <lgustavo@codesourcery.com>
169
170         * gcore.in: Call GDB using the full path to the gcore script.
171         Error out if the GDB binary is not found.
172
173 2013-10-16  Sergio Durigan Junior  <sergiodj@redhat.com>
174
175         PR gdb/16014
176         * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
177         sizeof.
178
179 2013-10-16  Sergio Durigan Junior  <sergiodj@redhat.com>
180
181         PR gdb/16042
182         * target.c (target_disable_btrace): Fix invalid return value for
183         void function.
184         (target_teardown_btrace): Likewise.
185
186 2013-10-14  Yao Qi  <yao@codesourcery.com>
187
188         * varobj.c (struct varobj): Move most of the fields to
189         varobj.h.
190         (struct varobj_dynamic): New struct.
191         (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
192         (varobj_has_more): Likewise.
193         (dynamic_varobj_has_child_method): Likewise.
194         (update_dynamic_varobj_children): Likewise.
195         (varobj_get_num_children): Likewise.
196         (varobj_list_children, varobj_pretty_printed_p): Likewise.
197         (install_new_value_visualizer): Likewise.
198         (install_new_value_visualizer, install_new_value): Likewise.
199         (varobj_update, new_variable, free_variable): Likewise.
200         (my_value_of_variable, value_get_print_value): Likewise.
201         (install_visualizer): Change the type of parameter 'var' to
202         'struct varobjd_dynamic *'.  Callers update.
203         * varobj.h (struct varobj): Moved from varobj.c.
204         (struct varobj) <dynamic>: New field.
205
206 2013-10-13  Sandra Loosemore  <sandra@codesourcery.com>
207
208         * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
209         as the preferred name of r30.
210         * nios2-linux-tdep.c (reg_offsets): Likewise.
211         * features/nios2-cpu.xml: Likewise.
212         * features/nios2-linux.c: Regenerated.
213         * features/nios2.c: Regenerated.
214         * regformats/nios2-linux.dat: Regenerated.
215
216 2013-10-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
217
218         Canonicalize directories for EXEC_FILENAME.
219         * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
220         exec_filename.
221         * utils.c (gdb_realpath_keepfile): New function.
222         * utils.h (gdb_realpath_keepfile): New declaration.
223
224 2013-10-11  Doug Evans  <dje@google.com>
225
226         * Makefile.in (GDBFLAGS): New variable.
227         (run): New rule.
228
229 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
230
231         * NEWS: Add entry documenting the new "-catch-assert" and
232         "-catch-exception" GDB/MI commands.
233
234 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
235
236         * breakpoint.h (init_ada_exception_breakpoint): Add parameter
237         "enabled".
238         * breakpoint.c (init_ada_exception_breakpoint): Add parameter
239         "enabled".  Set B->ENABLE_STATE accordingly.
240         * ada-lang.h (ada_exception_catchpoint_kind): Move here from
241         ada-lang.c.
242         (create_ada_exception_catchpoint): Add declaration.
243         * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
244         (create_ada_exception_catchpoint): Make non-static. Add new
245         parameter "disabled". Use it in call to
246         init_ada_exception_breakpoint.
247         (catch_ada_exception_command): Add parameter "enabled" in call
248         to create_ada_exception_catchpoint.
249         (catch_assert_command): Likewise.
250
251         * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
252         Add declarations.
253         * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
254         "catch-exception" commands.
255         * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
256         (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
257
258 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
259
260         * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
261         "enum exception_catchpoint_kind".  Replace the "ex_" prefix
262         of all its enumerates with "ada_".  Update the rest of this
263         file throughout.
264
265 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
266
267         * ada-lang.c (ada_decode_exception_location): Delete.
268         (create_ada_exception_catchpoint): Remove arguments "sal",
269         "addr_string" and "ops".  Add argument "ex_kind" instead.
270         Adjust implementation accordingly, calling ada_exception_sal
271         to get the entities it no longer gets passed as arguments.
272         Document the function's arguments.
273         (catch_ada_exception_command): Use catch_ada_exception_command_split
274         instead of ada_decode_exception_location, and update call to
275         create_ada_exception_catchpoint.
276         (catch_ada_assert_command_split): Renames
277         ada_decode_assert_location.  Remove parameters "addr_string" and
278         "ops", and now returns void.  Adjust implementation accordingly.
279         Update the function documentation.
280         (catch_assert_command): Use catch_ada_assert_command_split
281         instead of ada_decode_assert_location.  Update call to
282         create_ada_exception_catchpoint.
283
284 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
285
286         * utils.h (perror_warning_with_name): Add declaration.
287         * utils.c (perror_warning_with_name): New function.
288         * cli/cli-cmds.c (source_script_with_search): Add call to
289         perror_warning_with_name if from_tty is nul.
290
291 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
292
293         * utils.c (perror_string): New function, extracted out of
294         throw_perror_with_name.
295         (throw_perror_with_name): Rework to use perror_string.
296
297 2013-10-11  Yao Qi  <yao@codesourcery.com>
298
299         * remote.c (discard_pending_stop_replies_in_queue): Update
300         declaration.
301         (struct stop_reply) <rs>: New field.
302         (remove_stop_reply_of_remote_state): New function.
303         (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
304         Callers update.  Pass remove_stop_reply_of_remote_state to
305         QUEUE_iterate.
306         (remote_parse_stop_reply): Initialize field 'rs'.
307
308 2013-10-10  Will Newton  <will.newton@linaro.org>
309
310         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
311         linux_init_abi.
312
313 2013-10-10  Joel Brobecker  <brobecker@adacore.com>
314
315         * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
316         serial_baud_show_cmd.
317         (_initialize_cli_cmds): Delete the code creating the
318         "set/show remotebaud" commands.
319         * serial.c (baud_rate): Move here from top.c.
320         (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
321         (_initialize_serial): Create "set/show serial baud" commands.
322         Add "set/show remotebaud" command aliases.
323         * top.c (baud_rate): Moved to serial.c.
324         * NEWS: Document the new "set/show serial baud" commands,
325         replacing "set/show remotebaud".
326
327 2013-10-09  Pedro Alves  <palves@redhat.com>
328
329         * breakpoint.c (insert_bp_location): Use memory_error_message to
330         build the memory error string.
331         * c-lang.c: Include "gdbcore.h".
332         (c_get_string): Use memory_error to throw error.
333         (target_xfer_memory_error): Delete.
334         (memory_error_message): New, factored out from
335         target_xfer_memory_error.
336         (memory_error): Change parameter type to target_xfer_error.
337         Rewrite.
338         (read_memory): Use memory_error instead of
339         target_xfer_memory_error.
340         * gdbcore.h: Include "target.h".
341         (memory_error): Change parameter type to target_xfer_error.
342         (memory_error_message): Declare function.
343         * target.c (target_read_memory, target_read_stack)
344         (target_write_memory, target_write_raw_memory): Return
345         TARGET_XFER_E_IO on error.  Adjust comments.
346         (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
347         instead of EIO.
348         * target.h (target_read, target_insert_breakpoint)
349         (target_remove_breakpoint): Adjust comments.
350         * valprint.c (partial_memory_read): Rename parameter, and adjust
351         comment.
352         (val_print_string): Use memory_error_message to build the memory
353         error string.
354
355 2013-10-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
356
357         * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
358         result variable.  Rename variable fopen_e_ever_failed to
359         fopen_e_ever_failed_einval.  Retry fopen only for errno EINVAL.
360
361 2013-10-09  Pedro Alves  <palves@redhat.com>
362
363         * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
364         (monitor_write_memory_longlongs, monitor_write_memory_block):
365         Constify 'myaddr' parameter.
366         (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
367         helper.
368         (monitor_xfer_partial): New function.
369         (init_base_monitor_ops): Don't install a deprecated_xfer_memory
370         hook.  Install a to_xfer_partial hook.
371
372 2013-10-09  Tom Tromey  <tromey@redhat.com>
373
374         * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
375         bfd_get_alt_debug_link_info.
376
377 2013-10-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
378
379         New flag OBJF_NOT_FILENAME.
380         * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
381         * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
382         allocate_objfile.
383         (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
384         symbol_file_add_from_bfd.
385         * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
386         allocate_objfile.
387         * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
388         NULL.
389         * objfiles.h (OBJF_NOT_FILENAME): New.
390
391 2013-10-08  Tom Tromey  <tromey@redhat.com>
392
393         * Makefile.in (SFILES): Add build-id.c.
394         (HFILES_NO_SRCDIR): Add build-id.h.
395         * build-id.c: New file, largely from elfread.c.  Modified
396         most functions.
397         * build-id.h: New file.
398         * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
399         bfd_get_alt_debug_link_info.  Verify dwz file's build-id.
400         Search for dwz file using build-id.
401         * elfread.c (build_id_bfd_get, build_id_verify)
402         (build_id_to_debug_filename, find_separate_debug_file): Remove.
403
404 2013-10-08  Joel Brobecker  <brobecker@adacore.com>
405
406         * ada-lang.c (compare_names_with_case): Renamed from
407         compare_names, adding a new parameter "casing" and its handling.
408         New function documentation.
409         (compare_names): New function, implemented using
410         compare_names_with_case.
411
412 2013-10-08  Joel Brobecker  <brobecker@adacore.com>
413
414         * ada-lang.c (ada_exception_sal): Remove advance declaration.
415
416 2013-10-07  Tom Tromey  <tromey@redhat.com>
417
418         * objfiles.c (free_objfile_per_bfd_storage): Delete the
419         demangled_names_hash.
420         (free_objfile): Don't delete the demangled_names_hash.
421         * objfiles.h (struct objfile_per_bfd_storage)
422         <demangled_names_hash>: New field.
423         (struct objfile) <demangled_names_hash>: Move to
424         objfile_per_bfd_storage.
425         * symfile.c (reread_symbols): Don't delete the
426         demangled_names_hash.
427         * symtab.c (create_demangled_names_hash): Update.
428         (symbol_set_names): Update.
429
430 2013-10-07  Tom Tromey  <tromey@redhat.com>
431
432         * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
433         needs_relocations>: New fields.
434         (gdb_bfd_requires_relocations): New function.
435         * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
436         * objfiles.c (get_objfile_bfd_data): Disallow sharing if
437         the BFD needs relocations applied.
438
439 2013-10-07  Pedro Alves  <palves@redhat.com>
440
441         PR breakpoints/11568
442         * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
443         the thread list" instead of "gone".
444
445 2013-10-06  Sergio Durigan Junior  <sergiodj@redhat.com>
446
447         * NEWS: Mention new convenience variable $_exitsignal.
448         * corelow.c (core_open): Reset exit convenience variables.  Set
449         $_exitsignal to the uncaught signal which generated the corefile.
450         * infrun.c (handle_inferior_event): Reset exit convenience
451         variables.  Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
452         (clear_exit_convenience_vars): New function.
453         * inferior.h (clear_exit_convenience_vars): New prototype.
454
455 2013-10-06  Yao Qi  <yao@codesourcery.com>
456
457         * varobj.h: Add comments to enum varobj_languages.
458
459 2013-10-04  Doug Evans  <dje@google.com>
460
461         Add support for DWP file format version 2.
462         * NEWS: Mention support for DWP file format version 2.
463         * dwarf2read.c (dwarf2_section_info): Convert asection field to a
464         union of asection, containing_section.  New fields virtual_offset
465         and is_virtual.  Change type of readin filed from int to char.
466         (dwo_sections, dwo_file): Tweak comments.
467         (dwp_v2_section_ids): New enum.
468         (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
469         str_offsets, types.
470         (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
471         All uses updated.
472         (virtual_v2_dwo_sections): New struct.
473         (dwp_hash_table): New fields version, nr_columns.  Change type of
474         section_pool field to a union.
475         (dwp_file): New field version.
476         (dwarf2_has_info): Check for virtual sections.
477         (get_containing_section): New function.
478         (get_section_bfd_owner, get_section_bfd_section): Call it.
479         (dwarf2_locate_sections): Update.
480         (dwarf2_section_empty_p): Update.
481         (dwarf2_read_section): Handle virtual sections.
482         (locate_dwz_sections): Update.
483         (create_dwp_hash_table): Document and handle V2 format.
484         (locate_v1_virtual_dwo_sections): Renamed from
485         locate_virtual_dwo_sections and update.  All callers updated.
486         (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
487         Delete arg htab.  Rename arg section_index to unit_index.
488         All callers updated.
489         (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
490         All uses updated.
491         (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
492         (lookup_dwo_unit_in_dwp): Add V2 support.
493         (dwarf2_locate_dwo_sections): Update.
494         (dwarf2_locate_common_dwp_sections): Renamed from
495         dwarf2_locate_dwp_sections and update.  All callers updated.
496         (dwarf2_locate_v2_dwp_sections): New function.
497         (open_and_init_dwp_file): Add V2 support.
498         (read_str_index): New locals str_section, str_offsets_section.
499
500 2013-10-04  Pedro Alves  <palves@redhat.com>
501
502         * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
503         (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
504         (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
505         describing comments with references to ptid.h.
506         * common/ptid.h: Remove intro description of constructors,
507         accessors and predicates.
508         (struct ptid): Reformat.
509         (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
510         (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
511         describing comments.
512
513 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
514
515         * aix-thread.c (sync_threadlists): Add missing ')' in call
516         to ptid_build.
517
518 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
519
520         * procfs.c (procfs_init_inferior): Fix typo causing the build
521         to fail.
522
523 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
524
525         * aix-thread.c (ptrace32): Remove cast to addr_ptr.
526
527 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
528
529         * mi/mi-main.c (run_one_inferior): Add function description.
530         Make ARG a pointer to an integer whose value determines whether
531         we should "run" or "start" the program.
532         (mi_cmd_exec_run): Add handling of the "--start" option.
533         Reject all other command-line options.
534         * NEWS: Add entry for "-exec-run"'s new "--start" option.
535
536 2013-10-04  Yao Qi  <yao@codesourcery.com>
537
538         * remote-notif.h (REMOTE_NOTIF_ID): New enum.
539         (struct notif_client) <pending_event>: Moved
540         to struct remote_notif_state.
541         <id>: New field.
542         (struct remote_notif_state) <pending_event>: New field.
543         (notif_event_xfree): Declare.
544         * remote-notif.c (handle_notification): Adjust.
545         (notif_event_xfree): New function.
546         (do_notif_event_xfree): Call notif_event_xfree.
547         (remote_notif_state_xfree): Call notif_event_xfree to free
548         each element in field pending_event.
549         * remote.c (discard_pending_stop_replies): Remove declaration.
550         (discard_pending_stop_replies_in_queue): Declare.
551         (remote_close): Call discard_pending_stop_replies_in_queue
552         instead of discard_pending_stop_replies.
553         (remote_start_remote): Adjust.
554         (stop_reply_xfree): Call notif_event_xfree.
555         (notif_client_stop): Adjust initialization.
556         (remote_notif_remove_all): Rename it to ...
557         (remove_stop_reply_for_inferior): ... this.  Update comments.
558         Don't check INF is NULL.
559         (discard_pending_stop_replies): Return early if notif_state is
560         NULL.  Adjust.  Don't check INF is NULL.
561         (remote_notif_get_pending_events): Adjust.
562         (discard_pending_stop_replies_in_queue): New function.
563         (remote_wait_ns): Likewise.
564
565 2013-10-04  Yao Qi  <yao@codesourcery.com>
566
567         * remote-notif.c (DECLARE_QUEUE_P): Remove.
568         (notif_queue): Remove.
569         (remote_notif_process): Add one parameter 'notif_queue'.
570         Update comments.  Callers update.
571         (remote_async_get_pending_events_token): Remove.
572         (remote_notif_register_async_event_handler): Remove.
573         (remote_notif_unregister_async_event_handler): Remove.
574         (handle_notification): Add parameter 'notif_queue'.  Update
575         comments.  Callers update.
576         (notif_xfree): Remove.
577         (remote_notif_state_allocate): New function.
578         (remote_notif_state_xfree): New function.
579         (_initialize_notif): Remove code to allocate queue.
580         * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
581         (struct remote_notif_state): New.
582         (handle_notification): Update declaration.
583         (remote_notif_process): Likewise.
584         (remote_notif_register_async_event_handler): Remove.
585         (remote_notif_unregister_async_event_handler): Remove.
586         (remote_notif_state_allocate): Declare.
587         (remote_notif_state_xfree): Declare.
588         * remote.c (struct remote_state) <notif_state>: New field.
589         (remote_close): Don't call
590         remote_notif_unregister_async_event_handler.  Call
591         remote_notif_state_xfree.
592         (remote_open_1): Don't call
593         remote_notif_register_async_event_handler.  Call
594         remote_notif_state_allocate.
595
596 2013-10-04  Yao Qi  <yao@codesourcery.com>
597
598         * varobj.c (create_child_with_value): Remove 'const' from the
599         type of parameter 'name'.
600         (varobj_add_child): Likewise.
601         (install_dynamic_child): Remove 'const' from the type of
602         parameter 'name'.
603         (varobj_add_child): Likewise.
604         (create_child_with_value): Likewise.  Update comments.  Don't
605         duplicate 'name'.
606         (update_dynamic_varobj_children): Duplicate 'name'
607         and pass it to install_dynamic_child.
608
609 2013-10-03  Phil Muldoon  <pmuldoon@redhat.com>
610
611         * python/py-value.c (convert_value_from_python): Move PyInt_Check
612         conversion logic to occur after PyLong_Check.  Comment on order
613         change significance.
614         * python/py-arch.c (archpy_disassemble): Comment on order of
615         conversion for integers and longs.
616
617 2013-10-03  Pedro Alves  <palves@redhat.com>
618
619         * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
620         the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
621         functions.  Always test for PTRACE_O_TRACESYSGOOD even if
622         PTRACE_O_TRACEFORK is not supported.
623         (linux_test_for_tracesysgood): New function.
624         (linux_test_for_tracefork): New function, factored out from
625         linux_check_ptrace_features, and also don't kill child_pid here.
626
627 2013-10-03  Tristan Gingold  <gingold@adacore.com>
628
629         * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
630         Remove verbose error reporting.  Use detected state to
631         thread_set_state call.
632         (i386_darwin_dr_get): Fix return type.  Remove verbose error
633         report.
634         Remove trailing spaces.
635
636 2013-10-02  Pedro Alves  <palves@redhat.com>
637
638         * cp-valprint.c (cp_print_value_fields): Adjust calls to
639         val_print_optimized_out.
640         * jv-valprint.c (java_print_value_fields): Likewise.
641         * p-valprint.c (pascal_object_print_value_fields): Likewise.
642         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
643         <DWARF_VALUE_REGISTER>: If the register was not saved, return a
644         new optimized out value.
645         * findvar.c (address_from_register): Likewise.
646         * frame.c (put_frame_register): Tweak error string to say the
647         register was not saved, rather than optimized out.
648         * infcmd.c (default_print_one_register_info): Adjust call to
649         val_print_optimized_out.  Use value_of_register instead of
650         get_frame_register_value.
651         * mi/mi-main.c (output_register): Use value_of_register instead of
652         get_frame_register_value.
653         * valprint.c (valprint_check_validity): Likewise.
654         (val_print_optimized_out): New value parameter.  If the value is
655         lval_register, print <not saved> instead.
656         (value_check_printable, val_print_scalar_formatted): Adjust calls
657         to val_print_optimized_out.
658         * valprint.h (val_print_optimized_out): New value parameter.
659         * value.c (struct value) <optimized_out>: Extend comment.
660         (error_value_optimized_out): New function.
661         (require_not_optimized_out): Use it.  Use a different string for
662         lval_register values.
663         * value.h (error_value_optimized_out): New declaration.
664         * NEWS: Mention <not saved>.
665
666 2013-10-02  Joel Brobecker  <brobecker@adacore.com>
667
668         * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
669         strcmp to compare two symtab filenames.
670
671 2013-10-02  Joel Brobecker  <brobecker@adacore.com>
672
673         * symtab.c (search_symbols_equal): Delete.
674         (sort_search_symbols_remove_dups): Replace call to
675         search_symbols_equal by call to compare_search_syms,
676         adjusting as necessary.
677
678 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
679
680         PR python/15579
681
682         * python/python.c: Document gdb.execute command in Python help.
683
684 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
685
686         * python/py-frame.c (frame_info_to_frame_object): Use
687         gdbpy_convert_exception. Clean up Python object on failure.
688
689 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
690
691         * python/lib/gdb/command/frame_filters.py
692         (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
693         (ShowFrameFilterPriority.invoke): Ditto.
694
695 2013-10-01  Keith Seitz  <keiths@redhat.com>
696
697         * linespec.c (struct ls_parser): Make 'saved_arg' const.
698         (parse_linespec): Make 'argptr' const.
699         Remove temporary cast of 'argptr' to const char **.
700         (decode_line_full): Pass const pointer to parse_linespec.
701         (decode_line_1): Likewise.
702         (decode_objc): Make local variable 'new_argptr' const.
703         (find_function_symbols): Remove temporary cast to char *
704         to find_imps.
705         * objc-lang.c (find_imps): Make argument 'method' const.
706         Return const.
707         * objc-lang.h (find_imps): Likewise.
708
709 2013-10-01  Keith Seitz  <keiths@redhat.com>
710
711         * completer.c (skip_quoted_chars): Make all arguments const.
712         Return const.
713         (skip_quoted): Likewise.
714         * completer.h (skip_quoted_chars): Likewise.
715         (skip_quoted): Likewise.
716         * defs.h (skip_quoted): Remove duplicate declaration.
717         * jv-exp.y: Include completer.h.
718         (yylex): Remove unneccessary cast to char * fro skip_quoted.
719         * p-exp.y: Include completer.h.
720
721 2013-10-01  Keith Seitz  <keiths@redhat.com>
722
723         * c-exp.y (parse_number): Make first argument const.
724         Make a copy of the input to manipulate.
725         (c_parse_escape): Make first argument const.
726         Make local variable 'tokptr' const.
727         (parse_string_or_char): Make first two arguments const.
728         (macro_original_text): Make const.
729         (lex_one_token): Make local variable 'tokstart' const.
730         Likewise for local variables named 'p'.
731         Cast away const for struct stoken (temporary).
732         * c-lang.h (c_parse_escpae): Make first argument const.
733         * cli/cli-cmds.c (echo_command): Make local variable 'p'
734         const.
735         * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
736         var_string case.
737         * f-exp.y (parse_number): Make first argument const.
738         (match_string_literal): Make local variable 'tokstart'
739         const.
740         (yylex): Make local variable 'p' const.
741         Cast away const for struct stoken (temporary).
742         * go-exp.y (parse_number): Make first argument const.
743         (parse_string_or_char): Likewise.
744         Make local variable 'tokstart' const.
745         (lex_one_token): Likewise for numerous locals called 'p'.
746         Cast away const for struct stoken (temporary).
747         * jv-exp.y (parse_number): Make first argument const.
748         Make local variables 'tokstart' and 'tokptr' const.
749         Cast away const for call to skip_quoted (temporary).
750         (yylex): Make local variable 'p' const.
751         Cast away const for struct stoken (temporary).
752         * m2-exp.y (parse_number): Make local variable 'p' const.
753         (yylex): Likewise for 'tokstart'.
754         Cast away const for struct stoken (temporary).
755         Make local variable 'p' const.
756         * macroexp.c (get_character_constant): Pass a const string
757         to c_parse_escape.
758         (get_string_literal): Likewise.
759         (macro_expand_next): Make first argument const.
760         Cast away const for init_shared_buffer.
761         * macroexp.h (macro_expand_next): Make first argument const.
762         * p-exp.y (yylex): Make a local copy of 'lexptr'.
763         Pass a const string to c_parse_escape.
764         Make local variables 'p' and 'namestart' const.
765         * parse.c (lexptr): Make const.
766         (prev_lexptr): Likewise.
767         (find_template_name_end): Return const.
768         Make argument const, too.
769         (parse_exp_in_context): Make first argument const.
770         Remove the entire const_hack.
771         (parse_exp_in_context_1): Make first argument const.
772         * parser-defs.h (find_template_name_end): Return const.
773         Make argument const, too.
774         (lexptr): Make const.
775         (prev_lexptr): Likewise.
776         * utils.c (parse_escape): Make second argument const.
777         * utils.h (parse_escape): Likewise.
778
779 2013-10-01  Keith Seitz  <keiths@redhat.com>
780
781         * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
782         is now const.
783         (block_lookup): Make 'raw_name' and 'name' const.
784         * ada-lex.l (processString): Update for struct stoken.ptr.
785         * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
786         (operator_stoken): Likewise.
787         (lex_one_token): Remove temporary cast to char * for
788         'yylval.sval.ptr'.
789         * f-exp.y (yylex): Likewise.
790         * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
791         * gdbtypes.h (lookup_struct_elt_type): Likewisee.
792         * go-exp.y (lex_one_token): Remove temporary cast to char * for
793         'yylval.sval.ptr'.
794         * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
795         (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
796         * linespec.c (struct ls_parser): Make 'stream' const.
797         (find_parameter_list_end): Make argument 'input' and local
798         variable 'p' const.
799         (linespec_lexer_lex_string): Make local variables 'start' and
800         'p' const.
801         Use skip_spaces_const instead of skip_spaces.
802         (linespec_lexer_peek_token): Make local variable 'saved_stream'
803         const.
804         (parse_linespec): Temporarily cast 'argptr' to const for
805         'parser->lexer.stream'.
806         * m2-exp.y (yylex): Remove temporary cast to char * for
807         'yylval.sval.ptr'.
808         * objc-lang.c (add_msglist): Make local variable 'p' const.
809         * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
810         (exp : STRING): Make 'sp' const.
811         (parse_number): Make argument 'p' const.
812         * parser-defs.h (struct stoken): Make 'ptr' const.
813
814 2013-10-01  Doug Evans  <dje@google.com>
815
816         * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
817
818 2013-10-01  Yao Qi  <yao@codesourcery.com>
819
820         * varobj.c (c_value_of_root): Remove declaration.
821         (cplus_value_of_root, java_value_of_root): Likewise.
822         (ada_value_of_root): Likewise.
823         (struct language_specific) <value_of_root>: Remove.
824         (languages): Update initialization.
825         (check_scope): Move earlier.
826         (c_value_of_root): Move earlier and rename to ...
827         (value_of_root_1): ... this.
828         (value_of_root): Caller update.
829         (cplus_value_of_root, java_value_of_root): Remove.
830         (ada_value_of_root): Remove.
831
832 2013-10-01  Yao Qi  <yao@codesourcery.com>
833
834         * varobj.c (varobj_format_string): Remove "unknown".
835         (languages): Remove the first element.
836         * varobj.h (enum varobj_languages): Remove vlang_c.
837
838 2013-10-01  Yao Qi  <yao@codesourcery.com>
839
840         * varobj.c (struct language_specific) <language>: Remove.
841         (languages): Update the initialization.
842
843 2013-10-01  Yao Qi  <yao@codesourcery.com>
844
845         * arm-wince-tdep.c: Remove inclusion of "solib.h" and
846         "solib-target.h".  Include "windows-tdep.h".
847         (arm_wince_init_abi): Call windows_init_abi.  Remove call to
848         set_solib_ops and set_gdbarch_has_dos_based_file_system.
849         * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
850         windows-tdep.o to gdb_target_obs.
851
852 2013-10-01  Yao Qi  <yao@codesourcery.com>
853
854         * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
855         "solib-target.h".
856         (amd64_windows_init_abi): Don't call set_solib_ops and
857         set_gdbarch_iterate_over_objfiles_in_search_order.  Call
858         windows_init_abi instead.
859         * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
860         "solib-target.h".
861         (i386_cygwin_init_abi): Don't call set_solib_ops,
862         set_gdbarch_has_dos_based_file_system and
863         set_gdbarch_iterate_over_objfiles_in_search_order.  Call
864         windows_init_abi instead.
865         * windows-tdep.c: Include "solib.h" and "solib-target.h".
866         (windows_init_abi): New function.
867         (windows_iterate_over_objfiles_in_search_order): Make it
868         static.
869         * windows-tdep.h (windows_init_abi): Declare.
870         (windows_iterate_over_objfiles_in_search_order): Remove
871         declaration.
872
873 2013-10-01  Jerome Guitton  <guitton@adacore.com>
874
875         Checked in by Joel Brobecker  <brobecker@adacore.com>
876         * system-gdbinit/elinos.py (get_elinos_environment): Return an
877         incomplete dictionnary instead of None in case of missing
878         environment variables.
879         (elinos_init): in case of an incomplete environment, best
880         effort to load system libraries instead of abort.
881
882 2013-10-01  Joel Brobecker  <brobecker@adacore.com>
883
884         * ada-lang.c (ada_has_this_exception_support): Ignore
885         mst_solib_trampoline minimal symbols.
886
887 2013-09-30  Tristan Gingold  <gingold@adacore.com>
888
889         * i386-darwin-nat.c (darwin_complete_target): Install methods for
890         hardware watchpoint.
891         (i386_darwin_dr_set): Support 32 and 64 bit states.
892         (i386_darwin_dr_get): Likewise.
893         (i386_darwin_dr_set_control): Make static.
894         (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
895         (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
896
897 2013-09-30  Luis Machado  <lgustavo@codesourcery.com>
898
899         * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
900         Replace TIDGET with ptid_get_lwp.
901         Replace GET_LWP with ptid_get_lwp.
902         * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
903         Replace BUILD_THREAD with ptid_build.
904         Replace BUILD_LWP with ptid_build.
905         Replace PIDGET with ptid_get_pid.
906         Replace TIDGET with ptid_get_lwp.
907         * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
908         * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
909         Replace TIDGET with ptid_get_lwp.
910         * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
911         * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
912         Replace TIDGET with ptid_get_lwp.
913         Replace GET_LWP with ptid_get_lwp.
914         * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
915         * auxv.c: Likewise.
916         * breakpoint.c: Likewise.
917         * common/ptid.c (ptid_is_pid): Condense check for
918         null_ptid and minus_one_ptid.
919         (ptid_lwp_p): New function.
920         (ptid_tid_p): New function.
921         * common/ptid.h: Update comments for accessors.
922         (ptid_lwp_p): New prototype.
923         (ptid_tid_p): New prototype.
924         * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
925         * gcore.c: Replace PIDGET with ptid_get_pid.
926         * gdbthread.h: Likewise.
927         * gnu-nat.c: Likewise.
928         * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
929         Replace TIDGET with ptid_get_lwp.
930         * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
931         * hppanbsd-nat.c: Likewise.
932         * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
933         Replace TIDGET with ptid_get_lwp.
934         * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
935         * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
936         * infcmd.c: Likewise.
937         * inferior.h: Likewise.
938         * inflow.c: Likewise.
939         * infrun.c: Likewise.
940         * linux-fork.c: Likewise.
941         * linux-nat.c: Replace PIDGET with ptid_get_pid.
942         Replace GET_PID with ptid_get_pid.
943         Replace is_lwp with ptid_lwp_p.
944         Replace GET_LWP with ptid_get_lwp.
945         Replace BUILD_LWP with ptid_build.
946
947 2013-09-28  Mike Frysinger  <vapier@gentoo.org>
948
949         * common/linux-btrace.c: Move sys/syscall.h out of the
950         HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
951         Also check for SYS_perf_event_open before attempting to buid.
952
953 2013-09-27  Doug Evans  <dje@google.com>
954
955         * dwarf2read.c (dwarf2_section_info): Add comment.
956         (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
957         All uses updated.
958         (dwarf2_section_empty_p): Rename arg from "info" to "section".
959         (dwarf2_read_section): Delete unused local "header".  Add section
960         name to error message.
961         (create_dwo_in_dwp): Tweak comment.
962         (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
963
964         * dwarf2read.c (die_reader_specs): Tweak comment.
965         (get_section_bfd_owner, get_section_bfd_section): New functions.
966         (get_section_name, get_section_file_name): New functions.
967         (get_section_id, get_section_flags): New functions.
968         (*): Use new functions to access section fields.
969
970         * dwarf2read.c (struct dwo_file): Add/tweak comments.
971         (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp.  Remove
972         arg "htab".  All callers updated.
973         (create_debug_types_hash_table): Remove redundant copy of
974         abbrev_section.
975         (create_dwo_in_dwp): Tweak comments.
976         (read_str_index): Tweak comment.  Record dwarf form name in static
977         local.
978
979 2013-09-27  Pedro Alves  <palves@redhat.com>
980
981         * remote.h (REMOTE_SYSROOT_PREFIX): New define.
982         (remote_filename_p): Add comment.
983         * remote.c (remote_filename_p): Adjust to use
984         REMOTE_SYSROOT_PREFIX.
985         * solib.c (solib_find): When deciding whether we need to add a
986         directory separator, check whether the sysroot is "remote:"
987         instead of checking whether the patch has a drive spec.  Add
988         comments.
989
990 2013-09-27  Pedro Alves  <palves@redhat.com>
991
992         * remote.c (struct stop_reply) <solibs_changed, replay_event>:
993         Delete fields.
994         (remote_parse_stop_reply): Adjust, setting event->ws.kind
995         directly.
996
997 2013-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
998
999         Fix set debug frame output.
1000         * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry.  Move
1001         SENTINEL_FRAME entry lower to match enum frame_type order.
1002
1003 2013-09-26  Pierre Muller  <muller@sourceware.org>
1004
1005         Replace constant values 8 to 15 by AMD64_R8_REGNUM to
1006         AMD64_R15_REGNUM when a register index is expected.
1007         * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
1008         Substitute in array.
1009         * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
1010         (amd64_push_arguments): Substitute in integer_regnum array.
1011
1012 2013-09-25  Doug Evans  <dje@google.com>
1013
1014         * objfiles.c (allocate_objfile): Move comment to better place.
1015
1016         New option "set debug symfile on".
1017         * NEWS: Mention "set debug symfile".
1018         * Makefile.in (SFILES): Add symfile-debug.c.
1019         (COMMON_OBS): Add symfile-debug.o.
1020         * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
1021         objfile's symbol functions.
1022         * objfiles.h (objfile_set_sym_fns): Declare.
1023         * symfile-debug.c: New file.
1024         * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
1025         objfile's symbol functions.
1026         (reread_symbols): Ditto.
1027
1028         * symfile.h (struct sym_fns): Delete member "sym_flavour".
1029         All uses updated.
1030         (add_symtab_fns): Update prototype.
1031         * symfile.c (sym_fns_ptr): Delete.  Replace with ...
1032         (registered_sym_fns): ... this.
1033         (symtab_fns): Update.
1034         (add_symtab_fns): New arg "flavour".  All callers updated.
1035         (find_sym_fns): Rewrite to use new sym_fns registry.
1036
1037         * symfile.h (struct sym_fns): Add "objfile" argument to
1038         sym_read_linetable.  All uses updated.
1039
1040         * symtab.c (domain_name, search_domain_name): New functions.
1041         * symtab.h (domain_name, search_domain_name): Declare.
1042
1043         * symfile.h (struct quick_symbol_functions): Reorg arg list of
1044         map_matching_symbols so objfile is first.  All uses updated.
1045         * dwarf2read.c (dw2_map_matching_symbols): Update signature.
1046         * psymtab.c (map_matching_symbols_psymtab): Update signature.
1047
1048 2013-09-25  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1049
1050         PR shlibs/8882
1051         * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
1052         link map entries.
1053
1054 2013-09-24  Doug Evans  <dje@google.com>
1055
1056         * objfiles.c (free_objfile): Move comment.
1057
1058 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
1059
1060         * ada-exp.y (string_to_operator): Delete.
1061         (dummy_string_to_ada_operator): Delete.
1062
1063 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
1064
1065         Revert:
1066         * i386-tdep.h (enum amd64_reg_class): New, moved here from
1067         amd64-tdep.c.
1068         (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
1069         call_dummy_integer_regs, and classify.
1070         * amd64-tdep.h (amd64_classify): Add declaration.
1071         * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
1072         (amd64_reg_class): Delete, moved to i386-tdep.h.
1073         (amd64_classify): Make non-static.  Move declaration to amd64-tdep.h.
1074         Replace call to amd64_classify by call to tdep->classify.
1075         (amd64_push_arguments): Get the list of registers to use for
1076         passing integer parameters from the gdbarch tdep structure,
1077         rather than using a hardcoded one.  Replace calls to amd64_classify
1078         by calls to tdep->classify.
1079         (amd64_push_dummy_call): Get the register number used for
1080         the "hidden" argument from tdep->call_dummy_integer_regs.
1081         (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
1082         and tdep->call_dummy_integer_regs.  Set tdep->classify.
1083
1084 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
1085
1086         Revert:
1087         * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
1088         * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
1089         where tdep->memory_args_by_pointer is non-zero.
1090
1091 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
1092
1093         Revert:
1094         * i386-tdep.h (struct gdbarch_tdep): Add new field
1095         integer_param_regs_saved_in_caller_frame.
1096         * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
1097         stack if tdep->integer_param_regs_saved_in_caller_frame is set.
1098
1099 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
1100
1101         * amd64-windows-tdep.c: #include "value.h"
1102         (amd64_windows_classify): Delete.
1103         (amd64_windows_passed_by_integer_register)
1104         (amd64_windows_passed_by_xmm_register)
1105         (amd64_windows_passed_by_pointer)
1106         (amd64_windows_adjust_args_passed_by_pointer)
1107         (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
1108         (amd64_windows_push_dummy_call): New functions.
1109         (amd64_windows_init_abi): Remove setting of
1110         tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
1111         tdep->classify, tdep->memory_args_by_pointer and
1112         tdep->integer_param_regs_saved_in_caller_frame.
1113         Add call to set_gdbarch_push_dummy_call.
1114
1115 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
1116
1117         * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
1118         objfile->original_name.
1119
1120 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
1121
1122         Pass down original filename for objfile.
1123         * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
1124         * elfread.c (elf_symfile_read): Likewise.
1125         * jit.c (jit_object_close_impl): Update allocate_objfile call, no
1126         longer set ORIGINAL_NAME.
1127         (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
1128         * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
1129         * machoread.c (macho_add_oso_symfile): Add parameter name.  Update
1130         symbol_file_add_from_bfd call.
1131         (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
1132         (macho_check_dsym): Add parameter filenamep.  Change function comment.
1133         Set *filenamep.
1134         (macho_symfile_read): New variable dsym_filename.  Update
1135         macho_check_dsym call.  Use it for symbol_file_add_separate.
1136         * objfiles.c (allocate_objfile): Add parameter name.  New comment for
1137         it.  Use it for objfile->original_name.
1138         (objfile_name): Return OBFD's filename, if available.
1139         * objfiles.h (allocate_objfile): Add new parameter name.
1140         * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
1141         * symfile-mem.c (symbol_file_add_from_memory): Update
1142         symbol_file_add_from_bfd call.
1143         * symfile.c (read_symbols): Update symbol_file_add_separate call, new
1144         comment for it.
1145         (symbol_file_add_with_addrs): New parameter name, add function comment
1146         for it.  Remove variable name.  Update allocate_objfile call.
1147         (symbol_file_add_separate): New parameter name, add function comment
1148         for it.  Update symbol_file_add_with_addrs call.
1149         (symbol_file_add_from_bfd): New parameter name.  Update
1150         symbol_file_add_with_addrs call.
1151         (symbol_file_add): Update symbol_file_add_from_bfd call.
1152         (reread_symbols): New variable original_name.  Save
1153         objfile->original_name by it.
1154         * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
1155         second parameter.
1156
1157 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
1158
1159         Code cleanup: Add objfile_name accessor function.
1160         * ada-lang.c (is_known_support_routine): Use objfile_name.
1161         * auto-load.c (source_gdb_script_for_objfile)
1162         (auto_load_objfile_script): Likewise.
1163         * coffread.c (coff_symtab_read, read_one_sym): Likewise.
1164         * dbxread.c (dbx_symfile_read): Likewise.
1165         * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
1166         * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
1167         * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
1168         (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
1169         (lookup_dwp_signatured_type, lookup_dwo_unit)
1170         (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
1171         (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
1172         (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
1173         (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
1174         (dwarf2_record_block_ranges, read_common_block, read_typedef)
1175         (read_subrange_type, load_partial_dies, read_partial_die)
1176         (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
1177         (die_containing_type, build_error_marker_type, lookup_die_type)
1178         (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
1179         (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
1180         (get_DW_AT_signature_type, write_psymtabs_to_index)
1181         (save_gdb_index_command): Likewise.
1182         * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
1183         Likewise.
1184         * expprint.c (dump_subexp_body_standard): Likewise.
1185         * gdbtypes.c (type_name_no_tag_or_error): Likewise.
1186         * jit.c (jit_object_close_impl): Use the objfile field name renamed to
1187         original_name.
1188         * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
1189         obj_name, use objfile_name for it, use the variable.
1190         (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
1191         Use objfile_name.
1192         * machoread.c (macho_symtab_read, macho_check_dsym)
1193         (macho_symfile_relocate): Likewise.
1194         * maint.c (maintenance_translate_address): Likewise.
1195         * minidebug.c (find_separate_debug_file_in_section): Likewise.
1196         * minsyms.c (install_minimal_symbols): Likewise.
1197         * objfiles.c (allocate_objfile): Use the objfile field name renamed to
1198         original_name.
1199         (filter_overlapping_sections): Use objfile_name.
1200         (objfile_name): New function.
1201         * objfiles.h (struct objfile): Rename field name to original_name.
1202         (objfile_name): New prototype.
1203         * printcmd.c (sym_info, address_info): Use objfile_name.
1204         * probe.c (parse_probes, collect_probes, compare_probes)
1205         (info_probes_for_ops): Likewise.
1206         * progspace.c (clone_program_space): Likewise.
1207         * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
1208         (maintenance_info_psymtabs): Likewise.
1209         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
1210         (source_section_scripts): Likewise.
1211         * python/py-objfile.c (objfpy_get_filename): Likewise.
1212         * python/py-progspace.c (pspy_get_filename): Likewise.
1213         * solib-aix.c (solib_aix_get_toc_value): Likewise.
1214         * solib-som.c (match_main, som_solib_section_offsets): Likewise.
1215         * solib.c (solib_read_symbols): Likewise.
1216         * stabsread.c (scan_file_globals): Likewise.
1217         * stap-probe.c (handle_stap_probe): Likewise.
1218         * symfile.c (symbol_file_clear, separate_debug_file_exists)
1219         (find_separate_debug_file_by_debuglink): Likewise.
1220         (reread_symbols): Likewise.  Use the objfile field name renamed to
1221         original_name.
1222         (allocate_symtab): Use objfile_name.
1223         * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
1224         (dump_objfile, dump_msymbols, dump_symtab_1)
1225         (maintenance_print_msymbols, maintenance_print_objfiles)
1226         (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
1227         * target.c (target_translate_tls_address, target_info): Likewise.
1228         * xcoffread.c (xcoff_initial_scan): Make variable name const.  Use
1229         objfile_name.
1230
1231 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
1232
1233         Code cleanup.
1234         * probe.c (parse_probes): Rename variable objfile_name to
1235         objfile_namestr.
1236
1237 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
1238
1239         Remove solib-sunos.c.
1240         * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
1241         * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
1242         * objfiles.c (rt_common_objfile): Remove.
1243         (free_objfile): Remove rt_common_objfile comparison.
1244         * objfiles.h (rt_common_objfile): Remove.
1245         * solib-sunos.c: Remove.
1246         * symfile.c (reread_symbols): Remove solib-sunos.c comment.
1247
1248 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
1249
1250         Remove a.out NetBSD and OpenBSD hosts.
1251         * NEWS (Removed native configurations): New.
1252         * config/arm/nbsdaout.mh: Remove.
1253         * config/i386/nbsdaout.mh: Remove.
1254         * config/i386/obsdaout.mh: Remove.
1255         * config/m68k/nbsdaout.mh: Remove.
1256         * config/sparc/nbsdaout.mh: Remove.
1257         * config/vax/nbsdaout.mh: Remove.
1258         * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
1259         (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
1260         (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
1261         error.
1262         (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
1263         (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
1264         (sparc-*-netbsd*, vax-*-netbsd*): Remove.
1265
1266 2013-09-23  Tom Tromey  <tromey@redhat.com>
1267
1268         * linespec.c (struct minsym_and_objfile): Remove.
1269         (minsym_and_objfile_d): Remove.
1270         (struct linespec, struct collect_info, linespec_parse_basic)
1271         (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
1272         (compare_msymbols, find_method, find_function_symbols)
1273         (find_linespec_symbols, struct collect_minsyms, compare_msyms)
1274         (add_minsym, search_minsyms_for_name): Update.
1275
1276 2013-09-23  Andrew Burgess  <aburgess@broadcom.com>
1277
1278         * regcache.c: Add include of valprint.h.
1279         (dump_endian_bytes): Delete.
1280         (regcache_dump): Use print_hex_chars not dump_endian_bytes.
1281
1282 2013-09-23  Andrew Burgess  <aburgess@broadcom.com>
1283
1284         * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
1285
1286 2013-09-19  Pedro Alves  <palves@redhat.com>
1287
1288         * breakpoint.c (remove_threaded_breakpoints): Skip non-user
1289         breakpoints.
1290
1291 2013-09-19  Pedro Alves  <palves@redhat.com>
1292             Thomas Schwinge  <thomas@codesourcery.com>
1293             Yue Lu  <hacklu.newborn@gmail.com>
1294
1295         * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
1296         Take a gdb_byte pointer instead of a char pointer.
1297
1298         * gnu-nat.c (gnu_xfer_memory): Adjust interface as
1299         gnu_xfer_partial helper.
1300         (gnu_xfer_partial): New function.
1301         (gnu_target): Don't install a deprecated_xfer_memory hook.
1302         Install a to_xfer_partial hook.
1303
1304 2013-09-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
1305
1306         Constification.
1307         * main.c (captured_main): Replace catch_command_errors by
1308         catch_command_errors_const.  Twice.
1309         * symfile.c (symbol_file_add_main_1): Make args parameter const.
1310         (symbol_file_add): Make name parameter const.
1311         (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
1312         (symfile_bfd_open): Make name parameter const, rename it to cname.  Add
1313         variable name.  Change their usage accordingly.
1314         * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
1315         const.
1316         (symbol_file_add_main): Make args parameter const.
1317
1318 2013-09-18  Raunaq Bathija  <raunaq12@in.ibm.com>
1319             Ulrich Weigand  <uweigand@de.ibm.com>
1320
1321         * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
1322         of c_value member.
1323         (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
1324
1325 2013-09-18  Pedro Alves  <palves@redhat.com>
1326             Yue Lu  <hacklu.newborn@gmail.com>
1327
1328         * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
1329         (gnu_create_inferior)
1330         (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
1331         (set_sig_thread_cmd): Use the lwpid field of ptids to
1332         store/extract thread ids instead of the tid field.
1333         * i386gnu-nat.c (gnu_fetch_registers): Adjust.
1334
1335 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
1336
1337         * infcmd.c (default_print_one_register_info): Add detection of
1338         optimized out values.
1339         (default_print_registers_info): Switch to using
1340         get_frame_register_value.
1341
1342 2013-09-18  Markus Metzger  <markus.t.metzger@intel.com>
1343
1344         * infrun.c (handle_inferior_event): Check if we know the
1345         function start address before setting a resume breakpoint.
1346
1347 2013-09-18  Pedro Alves  <palves@redhat.com>
1348
1349         * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
1350         minus_one_ptid instead of looking at the ptid's tid field and
1351         comparing that to -1.
1352
1353 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
1354
1355         * main.h (get_gdb_program_name): Remove extra whitespace.
1356
1357 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
1358
1359         * main.h (get_gdb_program_name): Add declaration.
1360         * main.c (get_gdb_program_name): Add definition.
1361
1362 2013-09-17  Doug Evans  <dje@google.com>
1363
1364         * dwarf2read.c: Move definitions of complaint functions to after
1365         forward declarations of local functions.
1366
1367 2013-09-17  Muhammad Waqas <mwaqas@codesourcery.com>
1368             Pedro Alves  <palves@redhat.com>
1369
1370         PR gdb/11568
1371         * breakpoint.c (remove_threaded_breakpoints): New function.
1372         (_initialize_breakpoint): Attach remove_threaded_breakpoints
1373         as thread_exit observer.
1374
1375 2013-09-17  Pedro Alves  <palves@redhat.com>
1376
1377         PR gdb/15911
1378         * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
1379         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
1380         * corelow.c (core_open):
1381         * frame.h (print_stack_frame, print_frame_info): New
1382         'set_current_sal' parameter.
1383         * infcmd.c (finish_command, kill_command): Adjust call to
1384         print_stack_frame.
1385         * inferior.c (inferior_command): Likewise.
1386         * infrun.c (normal_stop): Likewise.
1387         * linux-fork.c (linux_fork_context): Likewise.
1388         * record-full.c (record_full_goto_entry, record_full_restore):
1389         Likewise.
1390         * remote-mips.c (common_open): Likewise.
1391         * stack.c (print_stack_frame): New 'set_current_sal' parameter.
1392         Use it.
1393         (print_frame_info): New 'set_current_sal' parameter.  Set the last
1394         displayed sal depending on the new paremeter instead of looking at
1395         print_what.
1396         (backtrace_command_1, select_and_print_frame, frame_command)
1397         (current_frame_command, up_command, down_command): Adjust call to
1398         print_stack_frame.
1399         * thread.c (print_thread_info, restore_selected_frame)
1400         (do_captured_thread_select): Adjust call to print_stack_frame.
1401         * tracepoint.c (tfind_1): Likewise.
1402         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
1403         (mi_cmd_stack_info_frame): Likewise.
1404         * mi/mi-interp.c (mi_on_normal_stop): Likewise.
1405         * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
1406
1407 2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
1408
1409         * value.c (isvoid_internal_fn): Replace "parameter" with
1410         "argument".
1411
1412 2013-09-16  Stan Shebs  <stan@codesourcery.com>
1413
1414         * README: Update references to writing code for GDB.
1415         * configure.ac (build_warnings): Remove obsolete comment.
1416         * configure: Regenerate.
1417         * gdbarch.sh: Remove references to gdbint.texinfo.
1418         * gdbarch.h: Regenerate.
1419         * gdbtypes.c (objfile_type): Remove comments referencing internals
1420         manual and D10V.
1421
1422 2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
1423
1424         * NEWS: Mention new convenience function $_isvoid.
1425         * value.c (isvoid_internal_fn): New function.
1426         (_initialize_values): Add new convenience function $_isvoid.
1427
1428 2013-09-16  Pierre Muller  <muller@sourceware.org>
1429
1430         * arm-linux-tdep.c: Add "elf/common.h" header.
1431         Remove AT_HWCAP macro definintion as it is provided in
1432         added include file.
1433         * s390-tdep.c: Remove system header <elf.h>
1434         Add "elf/common.h" header for AT_HWCAP definition.
1435         (s390_core_read_description): Use correct CORE_ADDR
1436         for hwcap local variable used as third parameter
1437         of function target_auxv_search.
1438
1439 2013-09-14  Pierre Muller  <muller@sourceware.org>
1440             Tom Tromey  <tromey@redhat.com>
1441             Pedro Alves  <palves@redhat.com>
1442
1443         * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
1444         mode if operating system doesn't know O_CLOEXEC.
1445
1446 2013-09-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
1447
1448         Code cleanup.
1449         * symfile.c (reread_symbols): Move variable obfd_filename to a more
1450         inner block.
1451
1452 2013-09-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1453
1454         * NEWS: Mention TDB support.
1455         * features/s390-tdb.xml: New file.
1456         * features/s390-te-linux64.xml: New file.
1457         * features/s390x-te-linux64.xml: New file.
1458         * features/Makefile (WHICH): Add new tdescs above.
1459         (s390-te-linux64-expedite): Set.
1460         (s390x-te-linux64-expedite): Set.
1461         * features/s390-te-linux64.c: New file (generated).
1462         * features/s390x-te-linux64.c: New file (generated).
1463         * regformats/s390-te-linux64.dat: New file (generated).
1464         * regformats/s390x-te-linux64.dat: New file (generated).
1465         * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
1466         (HWCAP_S390_TE): Likewise.
1467         (S390_TDB_DWORD0_REGNUM): Likewise.
1468         (S390_TDB_DWORD0_REGNUM): Likewise.
1469         (S390_TDB_ABORT_CODE_REGNUM): Likewise.
1470         (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
1471         (S390_TDB_ATIA_REGNUM): Likewise.
1472         (S390_TDB_R0_REGNUM): Likewise.
1473         (S390_TDB_R1_REGNUM): Likewise.
1474         (S390_TDB_R2_REGNUM): Likewise.
1475         (S390_TDB_R3_REGNUM): Likewise.
1476         (S390_TDB_R4_REGNUM): Likewise.
1477         (S390_TDB_R5_REGNUM): Likewise.
1478         (S390_TDB_R6_REGNUM): Likewise.
1479         (S390_TDB_R7_REGNUM): Likewise.
1480         (S390_TDB_R8_REGNUM): Likewise.
1481         (S390_TDB_R9_REGNUM): Likewise.
1482         (S390_TDB_R10_REGNUM): Likewise.
1483         (S390_TDB_R11_REGNUM): Likewise.
1484         (S390_TDB_R12_REGNUM): Likewise.
1485         (S390_TDB_R13_REGNUM): Likewise.
1486         (S390_TDB_R14_REGNUM): Likewise.
1487         (S390_TDB_R15_REGNUM): Likewise.
1488         (S390_NUM_REGS): Increase.
1489         (S390_IS_TDBREGSET_REGNUM): New macro.
1490         (s390_regmap_tdb): Declare.
1491         (s390_sizeof_tdbregset): Define.
1492         (tdesc_s390_te_linux64): Declare.
1493         (tdesc_s390x_te_linux64): Likewise.
1494         * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
1495         "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
1496         (s390_regmap_tdb): New regmap.
1497         (s390_supply_tdb_regset): New function.
1498         (s390_tdb_regset): New regset.
1499         (s390_linux64v2_regset_sections): Add TDB regset to list.
1500         (s390x_linux64v2_regset_sections): Likewise.
1501         (s390_regset_from_core_section): Recognize TDB core note section.
1502         (s390_core_read_description): If HWCAP indicates TE support,
1503         select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
1504         (s390_gdbarch_init): Handle TDB regset.
1505         (_initialize_s390_tdep): Initialize new tdescs.
1506         * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
1507         (have_regset_tdb): New variable.
1508         (s390_native_supply): Support register invalidation.
1509         (fetch_regset): Invalidate registers if ptrace yields ENODATA.
1510         (check_regset): Treat ENODATA as "regset exists".
1511         (s390_linux_fetch_inferior_registers): Add TDB.
1512         (s390_read_description): Check for TDB existence and select
1513         appropriate tdesc.
1514         * gdbserver/Makefile.in (clean): Add removal of new makefile
1515         targets.
1516         (s390-te-linux64.c): New makefile target.
1517         (s390x-te-linux64.c): Likewise.
1518         * gdbserver/configure.srv (srv_regobj): Append new objects
1519         s390-te-linux64.o and s390x-te-linux64.o.
1520         (srv_xmlfiles): Append new files s390-te-linux64.xml,
1521         s390x-te-linux64.xml, and s390-tdb.xml.
1522         * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
1523         declaration.
1524         (tdesc_s390_te_linux64): Likewise.
1525         (init_registers_s390x_te_linux64): Likewise.
1526         (tdesc_s390x_te_linux64): Likewise.
1527         (s390_check_regset): Treat ENODATA as "regset exists".
1528         (s390_arch_setup): Add TDB regset support.
1529         (initialize_low_arch): Initialize registers for new tdescs.
1530
1531 2013-09-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1532
1533         * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
1534         (S390_IS_FPREGSET_REGNUM): New macro.
1535         * s390-tdep.c (s390_dwarf_regmap): Make const.
1536         (regnum_is_gpr_full): New function for replacing repeated code.
1537         (s390_pseudo_register_name): Use it.
1538         (s390_pseudo_register_type): Likewise.
1539         (s390_pseudo_register_read): Likewise.
1540         (s390_pseudo_register_write): Likewise.
1541         (s390_unwind_pseudo_register): Likewise.
1542         (s390_regmap_gregset): New format for regmap.
1543         (s390x_regmap_gregset): Likewise.
1544         (s390_regmap_fpregset): Likewise.
1545         (s390_regmap_upper): Likewise.
1546         (s390_regmap_last_break): Likewise.
1547         (s390_regmap_system_call): Likewise.
1548         (s390_supply_regset): Adjust to new regmap format.
1549         (s390_collect_regset): Likewise.
1550         * s390-nat.c (s390_native_supply): Adjust to new regmap format.
1551         (s390_native_collect): Likewise.
1552         (supply_gregset): Likewise.
1553         (fill_gregset): Likewise.
1554         (supply_fpregset): Likewise.
1555         (fill_fpregset): Likewise.
1556         (fetch_regset): Likewise.
1557         (store_regset): Likewise.
1558         (s390_linux_fetch_inferior_registers): Likewise.
1559         (s390_linux_fetch_inferior_registers): Likewise.
1560
1561 2013-09-12  Andrew Pinski  <apinski@cavium.com>
1562
1563         * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
1564
1565 2013-09-10  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1566
1567         * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
1568
1569 2013-09-09  Andrew Burgess  <aburgess@broadcom.com>
1570
1571         * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
1572
1573 2013-09-06  Pedro Alves <palves@redhat.com>
1574
1575         * remote-sim.c (dump_mem, gdbsim_fetch_register)
1576         (gdbsim_store_register, gdbsim_kill, gdbsim_load)
1577         (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
1578         (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
1579         (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
1580         gdb_stdlog.
1581
1582 2013-09-06  Pedro Alves  <palves@redhat.com>
1583
1584         * remote-sim.c (dump_mem): Constify buf parameter.
1585         gdbsim_xfer_inferior_memory): Rename to ...
1586         (gdbsim_xfer_memory): ... this.  Adjust interface as
1587         target_xfer_partial helper.
1588         (gdbsim_xfer_partial): New function.
1589         (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
1590         Install a to_xfer_partial hook.  Send output to gdb_stdlog.
1591
1592 2013-09-06  Pedro Alves  <palves@redhat.com>
1593
1594         * remote-sim.c (gdbsim_xfer_inferior_memory): Use
1595         host_address_to_string, and send debug output to gdb_stdlog.
1596
1597 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
1598
1599         * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
1600         * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
1601         gdb_target_obs for cris target.
1602         * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
1603         (cris_gdbarch_init): Move calls to
1604         set_gdbarch_fetch_tls_load_module_address and
1605         set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
1606         Add call to gdbarch_init_osabi.
1607         * cris-linux-tdep.c: New file.
1608         * cris-tdep.h: New file.
1609
1610 2013-09-06  Andrew Burgess  <aburgess@broadcom.com>
1611
1612         * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
1613         to deprecated_init_ui_hook.
1614
1615 2013-09-06  Andrew Burgess  <aburgess@broadcom.com>
1616
1617         * cli/cli-interp.c (_initialize_cli_interp): Add a
1618         command_loop_proc to interp_procs.
1619         * event-top.c (cli_command_loop): Change signature to match
1620         interp_command_loop_ftype.
1621         * event-top.h (cli_command_loop): Same.
1622         * interps.c (interp_new): Require every interpreter to have a
1623         command_loop_proc.
1624         (current_interp_command_loop): Just call the command_loop_proc on
1625         the current interpreter.
1626         * tui/tui-interp.c (_initialize_tui_interp): Add a
1627         command_loop_proc to interp_procs.
1628
1629 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
1630
1631         * cris-tdep.c (cris_gdbarch_init): Add call to
1632         get_gdbarch_fetch_tls_load_module_address.
1633
1634 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
1635
1636         * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
1637         (cris_elf_gregset_t): Rename from elf_gregset_t.
1638         (crisv32_elf_gregset_t): Adjust.
1639         (cris_supply_gregset, fetch_core_registers): Adjust.
1640
1641 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
1642
1643         * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
1644
1645 2013-09-05  Andrew Burgess  <aburgess@broadcom.com>
1646
1647         * defs.h (deprecated_command_loop_hook): Remove, including
1648         references in comments.
1649         * interps.c (current_interp_command_loop): No longer use
1650         deprecated_command_loop_hook.
1651         (clear_interpreter_hooks): Remove deprecated_command_loop_hook
1652         setup.
1653         * top.c (deprecated_command_loop_hook): Remove.
1654
1655 2013-09-05  Pedro Alves  <palves@redhat.com>
1656
1657         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
1658         local is now int instead of ULONGEST.  Print it with %d
1659         instead of paddress.
1660
1661 2013-09-05  Tristan Gingold  <gingold@adacore.com>
1662
1663         * MAINTAINERS: Remove avr maintainership.
1664
1665 2013-09-05  Pedro Alves  <palves@redhat.com>
1666
1667         * findvar.c (value_of_register): Rework in terms of
1668         value_of_register_lazy.
1669
1670 2013-09-05  Muhammad Bilal  <mbilal@codesourcery.com>
1671
1672         * symfile.c (add_symbol_file_command): Remove trailing
1673          whitespaces and blank line after comment.
1674
1675 2013-09-05  Pedro Alves  <palves@redhat.com>
1676
1677         * tui/tui-regs.c (tui_register_format): Don't look at the
1678         register's name here.  Return string representing register
1679         value instead of storing it in the data element.
1680         (tui_get_register): Compare register string representations
1681         instead of register value states and contents.
1682
1683 2013-09-05  Pedro Alves  <palves@redhat.com>
1684
1685         PR tui/15933
1686         * tui/tui-regs.c (tui_show_registers): Show registers of the
1687         selected frame, not the current frame.
1688
1689 2013-09-05  Ricard Wanderlof  <ricardw@axis.com>
1690
1691         * MAINTAINERS (Write After Approval): Add myself to the list.
1692
1693 2013-09-04  Doug Evans  <dje@google.com>
1694
1695         * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
1696         (queue_and_load_dwo_tu): New function.
1697         (lookup_dwo_signatured_type): Set per_cu.tu_read.
1698         (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
1699         Make dependent_cu optional.
1700         (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
1701         and an older .gdb_index is in use, queue and load all its TUs too.
1702
1703 2013-09-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
1704
1705         Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
1706         * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
1707         variable search_flags.
1708         * defs.h (OPF_DISABLE_REALPATH): Rename to ...
1709         (OPF_RETURN_REALPATH): ... here.
1710         * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
1711         * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
1712         call.  Twice.
1713         * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
1714         openp call.
1715         * solib.c (solib_find): Likewise.  Four times.
1716         * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
1717         in the function comment and for the realpath_fptr variable.
1718         (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
1719         (find_and_open_source): Likewise.  Twice.
1720         * symfile.c (symfile_bfd_open): Likewise, also twice.
1721
1722 2013-09-04  Doug Evans  <dje@google.com>
1723
1724         * progspace.c (save_current_space_and_thread): Remove unnecessary
1725         call to save_current_inferior.
1726
1727 2013-09-04  Andrew Burgess  <aburgess@broadcom.com>
1728
1729         * sh64-tdep.c (sh64_do_register): Return after printing message
1730         about unavailable register contents.
1731
1732 2013-09-04  Muhammad Bilal  <mbilal@codesourcery.com>
1733             Pedro Alves  <palves@redhat.com>
1734
1735         * symfile.c (add_symbol_file_command): Error out on unknown
1736         option.  Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
1737         options and collapse into single conditional branch.
1738
1739 2013-09-03  Luis Machado  <lgustavo@codesourcery.com>
1740
1741         * inf-child.c (inf_child_follow_fork): New parameter
1742         detach_fork.
1743         * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
1744         * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
1745         * inferior.h (detach_fork): Remove.
1746         * infrun.c (detach_fork): Adjust comment and make it
1747         static.
1748         (follow_fork): Pass detach_fork parameter to
1749         target_follow_fork.
1750         * linux-nat.c (linux_child_follow_fork): New parameter
1751         detach_fork.
1752         * target.c (target_follow_fork): New parameter detach_fork.
1753         Pass detach_fork as parameter and print its value.
1754         * target.h (struct target_ops) <to_follow_fork>: New int
1755         parameter.
1756         (target_follow_fork): New parameter detach_fork.
1757
1758 2013-09-03  Joel Brobecker  <brobecker@adacore.com>
1759
1760         * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
1761         Replace sec->bfd by sec->the_bfd_section->owner.
1762
1763 2013-09-03  Yao Qi  <yao@codesourcery.com>
1764
1765         * linux-tdep.c (linux_is_uclinux): New function.  Code moved
1766         from linux_has_shared_address_space.
1767         (linux_has_shared_address_space): Call linux_is_uclinux.
1768         * linux-tdep.h (linux_is_uclinux): Declare.
1769         * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
1770         linux_is_uclinux.
1771
1772 2013-09-03  Yao Qi  <yao@codesourcery.com>
1773
1774         * config/djgpp/fnchange.lst: Remove entry of
1775         i386-interix-nat.c and i386-interix-tdep.c.
1776         * configure.ac: Remove '*-*-interix*'.
1777         * configure: Re-generated.
1778         * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
1779         * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
1780         obsolete comments.
1781         * osabi.c (gdb_osabi_names): Remove "Interix".
1782
1783 2013-09-03  Yao Qi  <yao@codesourcery.com>
1784
1785         * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
1786
1787 2013-09-02  Markus Metzger  <markus.t.metzger@intel.com>
1788
1789         * record.h (record_print_flag) <record_print_src_line,
1790         record_print_insn_range>: Rename into ...
1791         (record_print_flag) <record_print_src_line,
1792         record_print_insn_range>: ... this.  Update all users.
1793
1794 2013-09-02  Pierre Muller  <muller@sourceware.org>
1795
1796         * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
1797         error code.
1798
1799 2013-09-02  Pierre Muller  <muller@sourceware.org>
1800
1801         * windows-nat.c (windows_xfer_memory): Fix compilation failure
1802         by use of plongest function.
1803
1804 2013-09-02  Tristan Gingold  <gingold@adacore.com>
1805
1806         * NEWS: Add entry mentioning support for native Windows x64
1807         SEH data.
1808
1809         * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
1810         "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
1811         (struct amd64_windows_frame_cache): New struct.
1812         (amd64_windows_w2gdb_regnum): New global.
1813         (pc_in_range, amd64_windows_frame_decode_epilogue)
1814         (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
1815         (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
1816         (amd64_windows_frame_this_id): New functions.
1817         (amd64_windows_frame_unwind): New static global.
1818         (amd64_windows_skip_prologue): New function.
1819         (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
1820         with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
1821         with amd64_windows_skip_prologue.
1822
1823 2013-08-30  Joel Brobecker  <brobecker@adacore.com>
1824
1825         GDB 7.6.1 released.
1826
1827 2013-08-30  Pedro Alves  <palves@redhat.com>
1828
1829         * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
1830         SRC_AND_LOC.
1831
1832 2013-08-30  Pedro Alves  <palves@redhat.com>
1833
1834         * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
1835         warning text.
1836
1837 2013-08-30  Pedro Alves  <palves@redhat.com>
1838
1839         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
1840         Adjust arguments to print_stack_frame.
1841
1842 2013-08-30  Pedro Alves  <palves@redhat.com>
1843
1844         * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
1845
1846 2013-08-30  Pedro Alves  <palves@redhat.com>
1847
1848         * frame.h (show_and_print_stack_frame): Delete declaration.
1849
1850 2013-08-30  Phil Muldoon  <pmuldoon@redhat.com>
1851
1852         PR python/15461
1853
1854         * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
1855         (archpy_name): Check for valid architecture.
1856         (archpy_disassemble): Ditto.
1857
1858 2013-08-29  Joel Brobecker  <brobecker@adacore.com>
1859
1860         * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
1861         instead of "long long" in call to ptrace64.
1862
1863 2013-08-29  Andrew Burgess  <aburgess@broadcom.com>
1864
1865         * mi/mi-interp.c (mi_command_loop): Change signature to match
1866         interp_command_loop_ftype.
1867         (mi1_command_loop): Remove.
1868         (mi2_command_loop): Remove.
1869         (mi3_command_loop): Remove.
1870         (mi_interpreter_resume): Remove setting of
1871         deprecated_command_loop_hook.
1872         (_initialize_mi_interp): Set mi_command_loop as the command loop
1873         callback.
1874
1875 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
1876
1877         * valops.c (do_search_struct_field): Pass v2 instead of base_type to
1878         value_type.
1879
1880 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
1881
1882         * value.c (allocate_value_contents): Make static.
1883         * value.h (allocate_value_contents): Remove prototype.
1884
1885 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
1886
1887         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
1888         of assembling value via allocate_value_lazy and attribute setter.
1889         * findvar.c (default_read_var_value): Use value_at_lazy instead of
1890         assembling value via allocate_value_lazy and attribute setter.
1891         * valops.c (do_search_struct_field): Use value_at_lazy instead of
1892         assembling value via allocate_value_lazy and attribute setter.
1893
1894 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
1895
1896         * value.c (value_from_contents_and_address): Replace allocate_value and
1897         memcpy with value_from_contents.
1898
1899 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
1900
1901         * python/py-framefilter.c (py_print_frame): Remove usage of
1902         PyString_AsString.  Use python_string_to_host_string instead.
1903         Refactor function to work with a string as a new allocation
1904         instead of a pointer.
1905         (py_print_frame): Ditto.
1906         * python/lib/gdb/frames.py (return_list): Cain iterators together
1907         instead of adding them as a list.
1908         (_sort_list): Call return_list, and remove duplicate code.
1909         (execute_frame_filters): Convert iterator to a list with list().
1910         * python/lib/gdb/command/frame_filters.py
1911         (SetFrameFilterPriority._set_filter_priority): Convert priority
1912         attribute to an integer.
1913         * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
1914         wrapper function __next__.
1915         * python/lib/gdb/FrameDecorator.py: If basestring not defined,
1916         define as "str".
1917
1918 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
1919
1920         PR python/15752
1921         * python/py-framefilter.c (apply_frame_filter): Check
1922         gdb_python_initialized.  Exit if the Python frame-filter code
1923         cannot be initialized.
1924
1925 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
1926
1927         PR cli/15842
1928         * top.c (print_gdb_version): Remove erroneous newline after help
1929         text.
1930
1931 2013-08-29  Yao Qi  <yao@codesourcery.com>
1932
1933         * varobj.c (install_dynamic_child): Remove trailing space.
1934         Add one blank line after variable declaration.
1935
1936 2013-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
1937
1938         PR gdb/15415
1939         * corefile.c (get_exec_file): Use exec_filename.
1940         * defs.h (OPF_DISABLE_REALPATH): New definition.  Add new comment.
1941         * exec.c (exec_close): Free EXEC_FILENAME.
1942         (exec_file_attach): New variable canonical_pathname.  Use
1943         OPF_DISABLE_REALPATH.  Call gdb_realpath explicitly.  Set
1944         EXEC_FILENAME.
1945         * exec.h (exec_filename): New.
1946         * inferior.c (print_inferior, inferior_command): Use
1947         PSPACE_EXEC_FILENAME.
1948         * mi/mi-main.c (print_one_inferior): Likewise.
1949         * progspace.c (clone_program_space, print_program_space): Likewise.
1950         * progspace.h (struct program_space): New field pspace_exec_filename.
1951         * source.c (openp): Describe OPF_DISABLE_REALPATH.  New variable
1952         realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
1953
1954 2013-08-28  Will Newton  <will.newton@linaro.org>
1955
1956         * common/linux-ptrace.c: Include stdint.h unconditionally.
1957
1958 2013-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
1959
1960         Code cleanup.
1961         * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
1962
1963 2013-08-28  Yao Qi  <yao@codesourcery.com>
1964             Pedro Alves  <palves@redhat.com>
1965
1966         * event-top.c (gdb_setup_readline): Call stderr_fileopen
1967         instead of stdio_fileopen.
1968         * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
1969         .Call stderr_fileopen instead of stdio_fileopen.
1970         * ui-file.c [__MINGW32__] (stderr_file_write): New function.
1971         [__MINGW32__] (stderr_file_fputs): New function.
1972         (stderr_fileopen): New function.
1973         * ui-file.h (stderr_fileopen): Declare.
1974
1975 2013-08-27  Doug Evans  <dje@google.com>
1976
1977         * dwarf2read.c (struct dwarf2_cu): Tweak comment.
1978         (struct dwarf2_per_cu_data): Ditto.
1979         (maybe_queue_comp_unit): Delete forward decl.  Add comment.
1980         (process_imported_unit_die): Ditto.
1981         (follow_die_sig_1): Simplify assert.
1982
1983 2013-08-27  Pedro Alves  <palves@redhat.com>
1984
1985         * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
1986         xfer_partial's interface.  Return TARGET_XFER_E_IO on error.
1987         (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
1988         windows_xfer_memory directly.
1989         (init_windows_ops): Don't install a deprecated_xfer_memory method.
1990
1991 2013-08-27  Pedro Alves  <palves@redhat.com>
1992
1993         * darwin-nat.c (darwin_xfer_memory): Delete.
1994         (_initialize_darwin_inferior): Don't install a
1995         deprecated_xfer_memory method.
1996
1997 2013-08-27  Pedro Alves  <pedro@codesourcery.com>
1998             Yao Qi  <yao@codesourcery.com>
1999
2000         * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
2001         (parse_no_frames_option): Remove.
2002         (mi_cmd_stack_list_locals): Handle --skip-unavailable.
2003         (mi_cmd_stack_list_args): Adjust.
2004         (mi_cmd_stack_list_variables): Handle --skip-unavailable.
2005         (list_arg_or_local): Add new parameter 'skip_unavailable'.  Return
2006         early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
2007         Caller update.
2008         (list_args_or_locals): New parameter 'skip_unavailable'.
2009         Handle it.
2010         * valprint.c (scalar_type_p): Rename to ...
2011         (val_print_scalar_type_p): ... this.  Make extern.
2012         (val_print, value_check_printable): Adjust.
2013         * valprint.h (val_print_scalar_type_p): Declare.
2014         * value.c (value_entirely_unavailable): New function.
2015         * value.h (value_entirely_unavailable): Declare.
2016
2017         * NEWS: Mention the new option "--skip-unavailable" to MI
2018         commands '-stack-list-locals', '-stack-list-arguments' and
2019         '-stack-list-variables'.
2020
2021 2013-08-27  Yao Qi  <yao@codesourcery.com>
2022
2023         * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
2024         (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
2025         options.
2026         * mi/mi-getopt.c (mi_getopt): Remove.
2027         (mi_getopt_1): Renamed from mi_getopt.  Add one parameter
2028         'error_on_unknown'.
2029         (mi_getopt): Call mi_getopt_1.
2030         (mi_getopt_silent): New.
2031         * mi/mi-getopt.h (mi_getopt_silent): Declare.
2032
2033 2013-08-26  Doug Evans  <dje@google.com>
2034
2035         PR symtab/15885
2036         * dwarf2read.c (dw2_dump): Print some minimal information indicating
2037         .gdb_index is in use.
2038         * symfile.c (reread_symbols): Reset objfile->sf.
2039
2040         * NEWS: Document "mt print objfiles" now takes optional regexp.
2041         * symmisc.c (maintenance_print_objfiles): Argument is now an optional
2042         regexp of objfiles to print.
2043         (_initialize_symmisc): Update doc string for "mt print objfiles".
2044
2045         * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
2046         missing debug info checks.
2047
2048 2013-08-26  Raunaq Bathija  <raunaq12@in.ibm.com>
2049             Ulrich Weigand  <uweigand@de.ibm.com>
2050
2051         * xcoffread.c (arrange_linetable): Add fix to correctly handle
2052         line tables generated by XLC compiled binaries.
2053
2054 2013-08-23  Doug Evans  <dje@google.com>
2055
2056         * symmisc.c (dump_symtab): Delete prototype.
2057         (dump_msymbols, dump_objfile): Ditto.
2058         (maintenance_info_symtabs): Mark as dont_repeat.
2059         (_initialize_symmisc): Improve doc string for "mt info symtabs".
2060
2061         * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
2062         debugging printf to better location.
2063
2064 2013-08-23  Pedro Alves  <palves@redhat.com>
2065
2066         * target.c (target_read_live_memory): Change type of 'ret' local
2067         to LONGEST.
2068
2069 2013-08-23  Pedro Alves  <palves@redhat.com>
2070
2071         * remote.c (remote_write_bytes_aux, remote_write_bytes)
2072         (remote_read_bytes): Change return type to LONGEST, and adjust to
2073         return a target_xfer_error on error.
2074         (remote_xfer_memory): Delete.
2075         (remote_flash_write): Change type of 'ret' local to LONGEST.
2076         (remote_xfer_partial, remote_xfer_partial): Adjust.
2077         (init_remote_ops): Don't install a deprecated_xfer_memory hook.
2078
2079 2013-08-23  Pierre Muller  <muller@sourceware.org>
2080
2081         ARI fix: Push # directives to start of line.
2082         * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
2083
2084 2013-08-12  Muhammad Waqas  <mwaqas@codesourcery.com>
2085
2086         PR gdb/15501
2087         * breakpoint.c (enable_command, disable_command): Iterate over
2088         all specified breakpoint locations.
2089
2090 2013-08-22  Luis Machado  <lgustavo@codesourcery.com>
2091
2092         * common/linux-ptrace.c (linux_fork_to_function): Push #
2093         directives to the start of the line.
2094         (linux_check_ptrace_features): Fix warning message to use
2095         the "_" markup.
2096
2097 2013-08-22  Luis Machado  <lgustavo@codesourcery.com>
2098
2099         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
2100         nat/linux-waitpid.h.
2101         (linux-waitpid.o): New object file rule.
2102         * common/linux-ptrace.c: Include nat/linux-waitpid.h.
2103         (current_ptrace_options): Moved from linux-nat.c.
2104         (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
2105         parameters.
2106         (linux_fork_to_function): New function.
2107         (linux_grandchild_function): Likewise.
2108         (linux_child_function): Likewise.
2109         (linux_check_ptrace_features): New function, heavily
2110         based on linux-nat.c:linux_test_for_tracefork.
2111         (linux_enable_event_reporting): New function.
2112         (ptrace_supports_feature): Likewise.
2113         (linux_supports_tracefork): Likewise.
2114         (linux_supports_traceclone): Likewise.
2115         (linux_supports_tracevforkdone): Likewise.
2116         (linux_supports_tracesysgood): Likewise.
2117         * common/linux-ptrace.h (HAS_NOMMU): Moved from
2118         gdbserver/linux-low.c.
2119         (linux_enable_event_reporting): New declaration.
2120         (linux_supports_tracefork): Likewise.
2121         (linux_supports_traceclone): Likewise.
2122         (linux_supports_tracevforkdone): Likewise.
2123         (linux_supports_tracesysgood): Likewise.
2124         * config.in (PTRACE_TYPE_ARG4): Regenerate.
2125         * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
2126         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
2127         * config/arm/linux.mh (NATDEPFILES): Likewise.
2128         * config/i386/linux.mh (NATDEPFILES): Likewise.
2129         * config/i386/linux64.mh (NATDEPFILES): Likewise.
2130         * config/ia64/linux.mh (NATDEPFILES): Likewise.
2131         * config/m32r/linux.mh (NATDEPFILES): Likewise.
2132         * config/m68k/linux.mh (NATDEPFILES): Likewise.
2133         * config/mips/linux.mh (NATDEPFILES): Likewise.
2134         * config/pa/linux.mh (NATDEPFILES): Likewise..
2135         * config/powerpc/linux.mh (NATDEPFILES): Likewise..
2136         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
2137         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
2138         * config/sparc/linux.mh (NATDEPFILES): Likewise.
2139         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
2140         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
2141         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
2142         * configure.ac (AC_CACHE_CHECK): Add void * to the list of
2143         ptrace's 4th argument's types.
2144         Check the type of PTRACE_TYPE_ARG4.
2145         * configure: Regenerate.
2146         * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
2147         (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
2148         (linux_supports_tracefork_flag): Remove.
2149         (linux_supports_tracesysgood_flag): Likewise.
2150         (linux_supports_tracevforkdone_flag): Likewise.
2151         (current_ptrace_options): Moved to
2152         common/linux-ptrace.c.
2153         (linux_tracefork_child): Remove.
2154         (my_waitpid): Remove.
2155         (linux_test_for_tracefork): Renamed to
2156         linux_check_ptrace_features and moved to common/linux-ptrace.c.
2157         (linux_test_for_tracesysgood): Remove.
2158         (linux_supports_tracesysgood): Remove.
2159         (linux_supports_tracefork): Remove.
2160         (linux_supports_tracevforkdone): Remove.
2161         (linux_enable_tracesysgood): Remove.
2162         (linux_enable_event_reporting): Remove.
2163         (linux_init_ptrace): New function.
2164         (linux_child_post_attach): Call linux_init_ptrace.
2165         (linux_child_post_startup_inferior): Call linux_init_ptrace.
2166         (linux_child_follow_fork): Call linux_supports_tracefork
2167         and linux_supports_tracevforkdone.
2168         (linux_child_insert_fork_catchpoint): Call
2169         linux_supports_tracefork.
2170         (linux_child_insert_vfork_catchpoint): Likewise.
2171         (linux_child_set_syscall_catchpoint): Call
2172         linux_supports_tracesysgood.
2173         (lin_lwp_attach_lwp): Call linux_supports_tracefork.
2174         * nat/linux-nat.h: New file.
2175         * nat/linux-waitpid.c: New file.
2176         * nat/linux-waitpid.h: New file.
2177
2178 2013-08-22  Samuel Bronson  <naesten@gmail.com>
2179
2180         ARM Linux support for `catch syscall'.
2181         * syscalls/arm-linux.py: New file.
2182         * syscalls/arm-linux.xml: Likewise.
2183         * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
2184         (arm_linux_init_abi): Register the new function and syscall xml file.
2185         * data-directory/Makefile.in: Install the new syscall xml file.
2186         * NEWS: Brag about this.
2187
2188 2013-08-22  Pedro Alves  <palves@redhat.com>
2189
2190         PR gdb/15871
2191         * corefile.c (target_xfer_memory_error): New function.
2192         (memory_error): Defer EIO to target_memory_error.
2193         (read_memory): Use target_xfer_partial, and handle finer-grained
2194         target xfer errors.
2195         * target.c (target_xfer_error_to_string): New function.
2196         (memory_xfer_partial_1): If memory is known to be
2197         unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
2198         (target_xfer_partial): Make extern.
2199         * target.h (enum target_xfer_error): New enum.
2200         (target_xfer_error_to_string): Declare function.
2201         (target_xfer_partial): Declare function.
2202         (struct target_ops) <xfer_partial>: Adjust describing comment.
2203
2204 2013-08-22  Alan Modra  <amodra@gmail.com>
2205
2206         * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
2207         * configure.tgt: Likewise as targets.
2208
2209 2013-08-20  Doug Evans  <dje@google.com>
2210
2211         * buildsym.c (subfile_stack): Move here from buildsym.h.
2212         (pending_macros): Ditto.
2213         (get_macro_table): New function.
2214         (buildsym_init): Initialize subfile_stack.
2215         * coffread.c (type_vector,type_vector_length): Moved here from
2216         buildsym.h.
2217         (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2218         (coff_symtab_read): Use it.
2219         * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
2220         * dwarf2read.c (macro_start_file): Replace uses of pending_macros
2221         with call to get_macro_table.
2222         * stabsread.c (type_vector,type_vector_length): Moved here from
2223         buildsym.h.
2224         (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2225         * buildsym.h (get_macro_table): Declare.
2226
2227 2013-08-20  Tom Tromey  <tromey@redhat.com>
2228
2229         * dbxread.c (record_minimal_symbol): Make 'name' argument const.
2230         Update.
2231         (read_dbx_dynamic_symtab): Make 'name' const.  Remove casts.
2232
2233 2013-08-20  Doug Evans  <dje@google.com>
2234
2235         * blockframe.c: Remove #include "psymtab.h".
2236         * cp-support.c: Ditto.
2237         * source.c: Ditto.
2238         * stack.c: Ditto.
2239
2240 2013-08-20  Tom Tromey  <tromey@redhat.com>
2241
2242         PR python/15816:
2243         * exceptions.h (return_mask): Now an enum.
2244         (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
2245         enum constants.
2246
2247 2013-08-20  Tom Tromey  <tromey@redhat.com>
2248
2249         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
2250         get_objfile_arch.
2251         * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
2252         (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
2253         * jit.c (jit_object_close_impl): Update.
2254         * jv-lang.c (get_dynamics_objfile): Update.
2255         * linespec.c (add_minsym): Use get_dynamics_objfile.
2256         * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
2257         (allocate_objfile): Don't initialize 'gdbarch' field.
2258         (get_objfile_arch): Update.
2259         * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
2260         moved from...
2261         (struct objfile) <gdbarch>: ... here.  Remove.
2262         * stap-probe.c (stap_can_evaluate_probe_arguments): Use
2263         get_objfile_arch.
2264         * symfile.c (init_entry_point_info): Use get_objfile_arch.
2265
2266 2013-08-20  Alan Modra  <amodra@gmail.com>
2267
2268         * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
2269         for IBM long double nan and inf.
2270         (floatformat_is_negative, floatformat_classify,
2271         floatformat_mantissa): Similarly.
2272         (floatformat_ieee_single, floatformat_ieee_double,
2273         floatformat_ieee_quad, floatformat_arm_ext,
2274         floatformat_ia64_spill): Delete unused vars.
2275         (_initialize_doublest): Delete unused function.
2276         * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
2277         little-endian variants of floatformat_ibm_long_double.
2278
2279 2013-08-19  Luis Machado  <lgustavo@codesourcery.com>
2280
2281         * Makefile.in (SFILES): Remove common/target-common.c and
2282         add target/waitstatus.c.
2283         (HFILES_NO_SRCDIR): Remove common/target-common.h and add
2284         target/resume.h, target/wait.h and target/waitstatus.h.
2285         (COMMON_OBS): Remove target-common.o and add
2286         waitstatus.o.
2287         (target-common.o): Remove.
2288         (waitstatus.o): New target object file.
2289         * common/target-common.c: Move contents to
2290         target/waitstatus.c and remove.
2291         * common/target-common.h: Move contents to other files and
2292         remove.
2293         (enum resume_kind: Move to target/resume.h.
2294         (TARGET_WNOHANG): Move to target/wait.h.
2295         (enum target_waitkind): Move to target/waitstatus.h.
2296         (struct target_waitstatus): Likewise.
2297         * target.h: Do not include target-common.h and
2298         include target/resume.h, target/wait.h and
2299         target/waitstatus.h.
2300         * target/resume.h: New file.
2301         * target/wait.h: New file.
2302         * target/waitstatus.h: New file.
2303         * target/waitstatus.c: New file.
2304
2305 2013-08-19  Pedro Alves  <palves@redhat.com>
2306
2307         * linux-nat.c (linux_test_for_tracefork)
2308         (linux_test_for_tracesysgood, linux_child_follow_fork)
2309         (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
2310         (linux_nat_wait_1): Extend comment.
2311         (linux_async_pipe): Add comment.
2312
2313 2013-08-15  Kevin Buettner  <kevinb@redhat.com>
2314
2315         * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
2316         (RL78_PC_REGNUM): Move to list of pseudo-register enums.
2317         (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
2318         Update to account for fact that PC is now a pseudo-register.
2319         (rl78_pseudo_register_write, rl78_pseudo_register_read):  Add
2320         cases for RL78_PC_REGNUM.
2321
2322 2013-08-15  Muhammad Bilal  <mbilal@codesourcery.com>
2323
2324         PR cli/15841
2325         * top.c (quit_force): Skip writing history file
2326         if input is not from terminal.
2327
2328 2013-08-14  Tom Tromey  <tromey@redhat.com>
2329
2330         * remote.c (struct remote_state) <echo_nextthread, nextthread,
2331         resultthreadlist>: New fields.
2332         (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
2333         (remote_get_threadlist, remote_threadlist_iterator): Use
2334         new fields.  Remove static variables.
2335
2336 2013-08-14  Tom Tromey  <tromey@redhat.com>
2337
2338         * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
2339         remote_watch_data_address>: New fields.
2340         (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
2341         (process_stop_reply, remote_wait_as)
2342         (remote_check_watch_resources, remote_stopped_data_address): Update.
2343
2344 2013-08-14  Tom Tromey  <tromey@redhat.com>
2345
2346         * remote.c (struct remote_state) <async_client_callback,
2347         async_client_context>: New fields.
2348         (async_client_callback, async_client_context): Remove.
2349         (remote_async_serial_handler, remote_async): Update.
2350
2351 2013-08-14  Tom Tromey  <tromey@redhat.com>
2352
2353         * remote.c (sizeof_pkt): Remove.
2354         (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
2355
2356 2013-08-14  Tom Tromey  <tromey@redhat.com>
2357
2358         * remote.c (struct remote_state) <use_threadinfo_query,
2359         use_threadextra_query>: New fields.
2360         (remote_threads_info, remote_threads_extra_info)
2361         (remote_open_1): Update.
2362
2363 2013-08-14  Tom Tromey  <tromey@redhat.com>
2364
2365         * remote.c (struct remote_state) <finished_object,
2366         finished_annex, finished_offset>: New fields.
2367         (remote_read_qxfer): Use remote_state fields; remove static
2368         variables.
2369
2370 2013-08-14  Tom Tromey  <tromey@redhat.com>
2371
2372         * remote.c (struct remote_state) <last_sent_step>:
2373         New field.
2374         (last_sent_step): Remove.
2375         (remote_resume, remote_wait_as): Update.
2376
2377 2013-08-14  Tom Tromey  <tromey@redhat.com>
2378
2379         * remote.c (struct remote_state) <last_sent_signal>:
2380         New field.
2381         (last_sent_signal): Remove.
2382         (new_remote_state, remote_resume, remote_wait_as): Update.
2383
2384 2013-08-14  Tom Tromey  <tromey@redhat.com>
2385
2386         * remote.c (struct remote_state) <last_program_signals_packet>:
2387         New field.
2388         (last_program_signals_packet): Remove.
2389         (remote_program_signals, remote_open_1): Update.
2390
2391 2013-08-14  Tom Tromey  <tromey@redhat.com>
2392
2393         * remote.c (struct remote_state) <last_pass_packet>:
2394         New field.
2395         (last_pass_packet): Remove.
2396         (remote_pass_signals, remote_open_1): Update.
2397
2398 2013-08-14  Tom Tromey  <tromey@redhat.com>
2399
2400         * remote.c (struct remote_state) <remote_traceframe_number>:
2401         New field.
2402         (remote_traceframe_number): Remove.
2403         (new_remote_state, remote_open_1, set_remote_traceframe)
2404         (remote_trace_find): Update.
2405
2406 2013-08-14  Tom Tromey  <tromey@redhat.com>
2407
2408         * remote.c (struct remote_state) <general_thread, continue_thread>:
2409         New fields.
2410         (general_thread, continue_thread): Remove.
2411         (record_currthread, set_thread, set_general_process)
2412         (remote_open_1, extended_remote_attach_1, remote_wait_as)
2413         (extended_remote_mourn_1): Update.
2414
2415 2013-08-14  Tom Tromey  <tromey@redhat.com>
2416
2417         * remote.c (struct remote_state) <remote_desc>: New field.
2418         (remote_desc): Remove.
2419         (remote_threads_info, remote_threads_extra_info, remote_close)
2420         (send_interrupt_sequence, remote_start_remote, remote_open_1)
2421         (readchar, remote_xfer_partial, remote_rcmd, packet_command)
2422         (remote_hostio_send_command, remote_file_put, remote_file_get)
2423         (remote_file_delete, remote_can_async_p, remote_is_async_p)
2424         (remote_async, remote_new_objfile, set_range_stepping): Update.
2425
2426 2013-08-14  Tom Tromey  <tromey@redhat.com>
2427
2428         * remote.c (remote_state): Now a pointer.
2429         (get_remote_state_raw): Update.
2430         (new_remote_state): New function.
2431         (_initialize_remote): Use new_remote_state.
2432
2433 2013-08-14  Tom Tromey  <tromey@redhat.com>
2434
2435         * remote.c (remote_protocol_features): Now const.
2436
2437 2013-08-14  Tom Tromey  <tromey@redhat.com>
2438
2439         * remote.c (crc32_table, crc32): Remove.
2440         (remote_verify_memory): Use xcrc32.
2441
2442 2013-08-13  Sergio Durigan Junior  <sergiodj@redhat.com>
2443
2444         * value.h (create_internalvar_type_lazy): Adjust prototype
2445         declaration.
2446
2447 2013-08-13  Andrew Burgess  <aburgess@broadcom.com>
2448
2449         * common/format.c (parse_format_string): Don't allow '#' flag for
2450         pointer arguments in format string.
2451
2452 2013-08-13  Pierre Muller  <muller@sourceware.org>
2453
2454         * utils.c (init_page_info): Only call tgetnum function
2455         if rl_get_screen_size did not return useful values.
2456
2457 2013-08-12  Ali Anwar  <ali_anwar@codesourcery.com>
2458
2459         PR breakpoints/15117
2460         * linespec.c (linespec_parse_basic): Check for convenience
2461         variable or history value while parsing.
2462
2463 2013-08-12  Sergio Durigan Junior  <sergiodj@redhat.com>
2464
2465         Revert implementation of gdbarch_gdb_signal_{to,from}_target for
2466         AVR.
2467         * avr-tdep.c: Remove include of "linux-tdep.h".  Remove enum with
2468         different signals between the generic Linux kernel implementation
2469         and AVR's.
2470         (avr_linux_gdb_signal_from_target): Delete.
2471         (avr_linux_gdb_signal_to_target): Delete.
2472         (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
2473
2474 2013-08-09  Doug Evans  <dje@google.com>
2475
2476         * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
2477         entries.
2478
2479 2013-08-09  Sergio Durigan Junior  <sergiodj@redhat.com>
2480
2481         * linux-tdep.c: Define enum with generic signal numbers.
2482         (linux_gdb_signal_from_target): New function.
2483         (linux_gdb_signal_to_target): Likewise.
2484         (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2485         methods to the functions above.
2486         * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
2487         (linux_gdb_signal_to_target): Likewise.
2488         * alpha-linux-tdep.c: Define new enum with signals different
2489         from generic Linux kernel.
2490         (alpha_linux_gdb_signal_from_target): New function.
2491         (alpha_linux_gdb_signal_to_target): Likewise.
2492         (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2493         with the functions mentioned above.
2494         * avr-tdep.c: Define enum with differences between Linux kernel
2495         and AVR signals.
2496         (avr_linux_gdb_signal_from_target): New function.
2497         (avr_linux_gdb_signal_to_target): Likewise.
2498         (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
2499         the functions mentioned above.
2500         * sparc-linux-tdep.c: Define enum with differences between SPARC
2501         and generic Linux kernel signal numbers.
2502         (sparc32_linux_gdb_signal_from_target): New function.
2503         (sparc32_linux_gdb_signal_to_target): Likewise.
2504         (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2505         to the functions defined above.
2506         * xtensa-linux-tdep.c: Define enum with differences between
2507         Xtensa and Linux kernel generic signals.
2508         (xtensa_linux_gdb_signal_from_target): New function.
2509         (xtensa_linux_gdb_signal_to_target): Likewise.
2510         (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
2511         to the functions defined above.
2512         * mips-linux-tdep.c: Define enum with differences between
2513         signals in MIPS and Linux kernel generic ones.
2514         (mips_gdb_signal_to_target): New function.
2515         (mips_gdb_signal_from_target): Redefine to use new enum, handle
2516         only different signals from the Linux kernel generic.
2517         (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2518         the functions defined above.
2519         * mips-linux-tdep.h (enum mips_signals): Remove.
2520
2521 2013-08-09  Pedro Alves  <palves@redhat.com>
2522
2523         * avr-tdep.c (XMALLOC): Delete macro.
2524         * cli/cli-dump.c (XMALLOC): Delete macro.
2525
2526 2013-08-09  Pedro Alves  <palves@redhat.com>
2527
2528         * cli/cli-dump.c: Don't include cli/cli-dump.h.
2529         (scan_expression_with_cleanup, scan_filename_with_cleanup)
2530         (fopen_with_cleanup, add_dump_command): Make static.
2531         * cli/cli-dump.h: Delete file.
2532         * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
2533         cli/cli-dump.h.
2534
2535 2013-08-09  Pedro Alves  <palves@redhat.com>
2536
2537         * tracepoint.c (tfile_start): Show tilde-expanded filename in
2538         error message.
2539
2540 2013-08-09  Pedro Alves  <palves@redhat.com>
2541
2542         * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
2543         error message.
2544
2545 2013-08-09  Pedro Alves  <palves@redhat.com>
2546
2547         * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
2548         (gcore_command): Use tilde_expand here, and when showing the
2549         filename to the user, show the expanded version.
2550
2551 2013-08-09  Yao Qi  <yao@codesourcery.com>
2552
2553         * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
2554         'entryval' is set.
2555
2556 2013-08-08  Azat Khuzhin  <a3at.mail@gmail.com>  (tiny change)
2557
2558         * gcore.c (create_gcore_bfd): Use tilde_expand.
2559
2560 2013-08-08  Yao Qi  <yao@codesourcery.com>
2561
2562         * frame.h (read_frame_local): Declare.
2563         * mi/mi-cmd-stack.c (list_args_or_locals): Call
2564         read_frame_local.
2565         * stack.c (read_frame_local): New.
2566
2567 2013-08-08  Yao Qi  <yao@codesourcery.com>
2568
2569         * mi/mi-cmd-stack.c: Update comments to function
2570         list_args_or_locals.
2571
2572 2013-08-07  Tom Tromey  <tromey@redhat.com>
2573
2574         PR symtab/15028:
2575         * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
2576         (process_psymtab_comp_unit_reader): Use it.
2577         (process_psymtab_comp_unit): Update.  Add "pretend_language"
2578         argument.
2579         (dwarf2_build_psymtabs_hard): Update.
2580         (scan_partial_symbols): Pass CU's language to
2581         process_psymtab_comp_unit.
2582
2583 2013-08-07  Tom Tromey  <tromey@redhat.com>
2584
2585         * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
2586         (dwarf2_gdb_index_functions): Update.
2587         * psymtab.c (find_symbol_file_from_partial): Remove.
2588         (psym_functions): Update.
2589         * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
2590         Remove.
2591
2592 2013-08-07  Tom Tromey  <tromey@redhat.com>
2593
2594         * symfile.c (set_initial_language): Look up "main" symbol
2595         and use its language.
2596         * symtab.c (find_main_filename): Remove.
2597         * symtab.h (find_main_filename): Remove.
2598
2599 2013-08-07  Tom Tromey  <tromey@redhat.com>
2600
2601         * dwarf2read.c (recursively_compute_inclusions): Add
2602         "immediate_parent" argument.  Set symtab's "user" field
2603         if not set.
2604         (compute_symtab_includes): Update.
2605
2606 2013-08-07  Tom Tromey  <tromey@redhat.com>
2607
2608         * linespec.c (convert_linespec_to_sals): Use maybe_add_address
2609         when adding label symbols.
2610
2611 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
2612             Ulrich Weigand  <uweigand@de.ibm.com>
2613
2614         * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
2615         * configure.host (powerpc64-*-aix*): Likewise.
2616
2617 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
2618             Ulrich Weigand  <uweigand@de.ibm.com>
2619
2620         * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
2621         is defined.
2622         * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
2623         (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
2624         (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
2625         * configure.ac: Check for ptrace64.
2626         * configure, config.in: Regenerate.
2627
2628 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
2629             Ulrich Weigand  <uweigand@de.ibm.com>
2630
2631         * aixthread.c: Call ptrace64 instead of ptracex if defined.
2632         Call ptrace64 instead of ptrace if defined.
2633         Add macro addr_ptr to take care of ptrace address argument.
2634         (pdc_read_regs): Likewise.
2635         (pdc_write_regs): Likewise.
2636         (aix_thread_resume): Likewise.
2637         (fetch_regs_kernel_thread): Likewise.
2638         (store_regs_kernel_thread): Likewise.
2639
2640 2013-08-07  Anton Blanchard  <anton@samba.org>
2641
2642         * MAINTAINERS: Add myself to Write After Approval.
2643
2644 2013-08-05  Tom Tromey  <tromey@redhat.com>
2645
2646         * aix-thread.c (_initialize_aix_thread): Use
2647         complete_target_initialization.
2648         * bsd-uthread.c (_initialize_bsd_uthread): Use
2649         complete_target_initialization.
2650         * dec-thread.c (_initialize_dec_thread): Use
2651         complete_target_initialization.
2652         * ravenscar-thread.c (_initialize_ravenscar): Use
2653         complete_target_initialization.
2654         * sol-thread.c (_initialize_sol_thread): Use
2655         complete_target_initialization.
2656         * spu-multiarch.c (_initialize_spu_multiarch): Use
2657         complete_target_initialization.
2658
2659 2013-08-05  Tom Tromey  <tromey@redhat.com>
2660
2661         * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
2662         * ada-lang.c (ada_lookup_simple_minsym): Return
2663         bound_minimal_symbol.
2664         * ada-lang.h (ada_lookup_simple_minsym): Update.
2665         * c-exp.y (variable): Use lookup_bound_minimal_symbol.
2666         * f-exp.y (variable): Use lookup_bound_minimal_symbol.
2667         * go-exp.y (variable): Use lookup_bound_minimal_symbol.
2668         * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
2669         * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
2670         * minsyms.c (msymbol_objfile): Remove.
2671         (lookup_minimal_symbol_internal): New function, from
2672         lookup_minimal_symbol.
2673         (lookup_minimal_symbol): Rewrite using
2674         lookup_minimal_symbol_internal.
2675         (lookup_bound_minimal_symbol): New function.
2676         * minsyms.h (msymbol_objfile): Remove.
2677         (lookup_bound_minimal_symbol): Declare.
2678         * p-exp.y (variable): Use lookup_bound_minimal_symbol.
2679         * parse.c (write_exp_msymbol): Change parameter to a
2680         bound_minimal_symbol.
2681         (write_dollar_variable): Use lookup_bound_minimal_symbol.
2682         * parser-defs.h (write_exp_msymbol): Update.
2683         * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
2684         * symfile.c (simple_read_overlay_table): Use
2685         lookup_bound_minimal_symbol.
2686         * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
2687         (search_symbols): Likewise.
2688         (print_msymbol_info): Take a bound_minimal_symbol argument.
2689         (symtab_symbol_info, rbreak_command): Update.
2690         * symtab.h (struct symbol_search) <msymbol>: Change type
2691         to bound_minimal_symbol.
2692         * valops.c (find_function_in_inferior): Use
2693         lookup_bound_minimal_symbol.
2694         * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
2695
2696 2013-08-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
2697
2698         Code cleanup.
2699         * remote.c (cleanup_sigint_signal_handler): Rename the declaration
2700         to ...
2701         (async_cleanup_sigint_signal_handler): ... this.
2702         (initialize_sigint_signal_handler): Remove declaration.
2703         (handle_remote_sigint): Rename the declaration to ...
2704         (async_handle_remote_sigint): ... this.
2705         (handle_remote_sigint_twice): Rename the declaration to ...
2706         (async_handle_remote_sigint_twice): ... this.
2707         (async_remote_interrupt, async_remote_interrupt_twice)
2708         (remote_interrupt): Remove the declarations.
2709         (remote_interrupt_twice): Rename the declaration ...
2710         (sync_remote_interrupt_twice): ... this.
2711         (sigint_remote_twice_token): Rename the variable to ...
2712         (async_sigint_remote_twice_token): ... this.
2713         (sigint_remote_token): Rename the variable to ...
2714         (async_sigint_remote_token): ... this.
2715         (initialize_sigint_signal_handler): Rename the function to ...
2716         (async_initialize_sigint_signal_handler): ... this.  Update the name
2717         inside.
2718         (handle_remote_sigint): Rename the function to ...
2719         (async_handle_remote_sigint): ... this.  Update the names inside.
2720         (handle_remote_sigint_twice): Rename the function to ...
2721         (async_handle_remote_sigint_twice): ... this.  Update the names inside.
2722         (cleanup_sigint_signal_handler): Rename the function to ...
2723         (async_cleanup_sigint_signal_handler): ... this.
2724         (remote_interrupt): Rename the function to ...
2725         (sync_remote_interrupt): this.  Update the names inside.
2726         (remote_interrupt_twice): Rename the function to ...
2727         (sync_remote_interrupt_twice): this.  Update the names inside.
2728         (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
2729         (_initialize_remote): Update the names inside.
2730
2731 2013-08-02  Tom Tromey  <tromey@redhat.com>
2732
2733         PR symtab/15719:
2734         * breakpoint.c (update_watchpoint, watchpoint_check)
2735         (watch_command_1): Update.
2736         * eval.c (fetch_subexp_value): Add "preserve_errors"
2737         parameter.
2738         * ppc-linux-nat.c (check_condition): Update.
2739         * value.h (fetch_subexp_value): Update.
2740
2741 2013-08-02  Andrew Burgess  <aburgess@broadcom.com>
2742
2743         * mi/mi-interp.c (mi_interpreter_resume): Remove call to
2744         add_file_handler.
2745
2746 2013-08-01  Doug Evans  <dje@google.com>
2747
2748         PR symtab/15691
2749         * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
2750         (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
2751         Add assert of sig_entry->dwo_unit == NULL.
2752         (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
2753         had already been read.
2754         (read_signatured_type): Set per_cu.tu_read.
2755
2756         PR symtab/15695
2757         * valops.c (value_struct_elt): Add missing call to check_typedef.
2758         (value_find_oload_method_list): Ditto.
2759
2760         * symtab.c (do_free_search_symbols_cleanup): Change arg to,
2761         effectively, struct symbol_search **.
2762         (make_cleanup_free_search_symbols): Change arg to struct
2763         symbol_search **.  All callers updated.
2764         (compare_search_syms): Compare symtab file name and block as well.
2765         (search_symbols_equal): New function.
2766         (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
2767         New args new_head, new_tail.  Result is now void.  Remove dups after
2768         sorting the symbols.
2769         (search_symbols): Sort all found symbols once, after all have been
2770         found, and remove duplicates.  Simplify cleanup tracking of result.
2771         * symtab.h (make_cleanup_free_search_symbols): Update prototype.
2772
2773         Further workarounds for binutils/15021.
2774         * dwarf2read.c (recursively_compute_inclusions): Change type of result
2775         parameter to VEC (symtab_ptr) **.  New parameter all_type_symtabs.
2776         Watch for duplicate symtabs coming from type units.
2777         (compute_symtab_includes): Update call to
2778         recursively_compute_inclusions. Build vector of included symtabs
2779         instead of per_cus.
2780         * symtab.h (symtab_ptr): New typedef.
2781         (DEF_VEC_P (symtab_ptr)): New VEC type.
2782         * linespec.c (symtab_p): Delete.  All uses updated to use symtab_ptr
2783         instead.
2784
2785 2013-08-01  Andrew Burgess  <aburgess@broadcom.com>
2786
2787         * cli/cli-script.c (script_from_file): Remove use of
2788         error_pre_print.
2789         * main.c (captured_main): Remove use of error_pre_print and
2790         quit_pre_print.
2791         * utils.c (error_pre_print, quit_pre_print): Remove.
2792         * utils.h (error_pre_print, quit_pre_print): Likewise.
2793
2794 2013-08-01  Yao Qi  <yao@codesourcery.com>
2795
2796         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
2797         with mi_getopt.
2798         (mi_cmd_stack_list_variables): Likewise.
2799
2800 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
2801
2802         * exceptions.c (deprecated_throw_reason): Remove.
2803         * exceptions.h (deprecated_throw_reason): Remove.
2804
2805 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
2806
2807         * remote-mips.c (mips_error): Replace use of
2808         deprecated_throw_reason with throw_verror.  Use the error message
2809         passed to mips_error as the error message for throw_verror.
2810
2811 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
2812
2813         * monitor.c (monitor_interrupt_query): Replace use of
2814         deprecated_throw_reason with quit.
2815         * nto-procfs.c (interrupt_query): Likewise.
2816         * remote-fileio.c (remote_fileio_sig_exit): Likewise.
2817         * remote-mips.c (mips_kill): Likewise.
2818         * remote.c (interrupt_query): Likewise.
2819
2820 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
2821
2822         * utils.c (internal_verror): Replace use of deprecated_throw_reason
2823         with call to fatal.
2824
2825 2013-07-31  Pedro Alves  <pedro@codesourcery.com>
2826             Yao Qi  <yao@codesourcery.com>
2827
2828         * tracepoint.c (trace_dump_command): Select the current frame.
2829
2830 2013-07-30  Doug Evans  <dje@google.com>
2831
2832         * dwarf2read.c (process_queue): Add type signature to debug output.
2833
2834 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
2835
2836         * value.c (value_fetch_lazy): Mark optimized out values as such
2837         rather than raising an error.
2838
2839 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
2840
2841         * value.c (value_fetch_lazy): Ensure parent value is not lazy
2842         before checking which bits of the parent, not the child, value are
2843         valid.
2844
2845 2013-07-30  Muhammad Bilal  <mbilal@codesorcery.com>
2846
2847         PR gdb/15715
2848         * top.c: Include "filenames.h".
2849         (set_history_filename): New function.
2850         (init_main): Install it as set hook of the "set history filename"
2851         command.
2852
2853 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
2854
2855         * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
2856         attribute parameter.
2857         (dwarf2_const_value_data): Constify struct attribute parameter.
2858         (dwarf2_const_value): Constify struct attribute parameter.
2859         (dwarf2_const_value_attr): Constify struct attribute parameter.
2860         (lookup_die_type): Constify struct attribute parameter.
2861         (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
2862         (follow_die_ref_or_sig): Constify struct attribute parameter.
2863         (follow_die_ref): Constify struct attribute parameter.
2864         (follow_die_sig): Constify struct attribute parameter.
2865         (get_DW_AT_signature_type): Constify struct attribute parameter.
2866         (get_type_unit_group): Constify struct attribute parameter.
2867         (fill_in_loclist_baton): Constify struct attribute parameter.
2868         (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
2869         (type_unit_group): Constify struct attribute parameter.
2870
2871 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
2872
2873         * dwarf2read.c (attr_form_is_block): Make argument const.
2874         (attr_form_is_section_offset): Make argument const.
2875         (attr_form_is_constant): Make argument const.
2876         (attr_form_is_ref): Make argument const.
2877
2878 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
2879
2880         * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
2881         All uses updated.
2882         (attr_form_is_ref): Moved below attr_form_is_constant.
2883
2884 2013-07-29  Doug Evans  <dje@google.com>
2885
2886         * main.c (captured_command_loop): Tweak comment.
2887
2888         * target.c (target_async_permitted_1): Fix comment.
2889
2890         * symtab.c (iterate_over_some_symtabs): Add comment.
2891
2892         * symtab.c (iterate_over_some_symtabs): Fix indentation.
2893
2894 2013-07-27  Yao Qi  <yao@codesourcery.com>
2895
2896         * NEWS: Mention that GDBserver now supports hardware
2897         watchpoints on the MIPS GNU/Linux target.
2898
2899 2013-07-27  Yao Qi  <yao@codesourcery.com>
2900
2901         * Makefile.in (HFILES_NO_SRCDIR): Add
2902         common/mips-linux-watch.h.
2903         (mips-linux-watch.o): New rule.
2904         * common/mips-linux-watch.c: New.
2905         * common/mips-linux-watch.h: New.
2906         * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
2907         * mips-linux-nat.c: Include mips-linux-watch.h.
2908         (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
2909         to common/mips-linux-watch.h.
2910         (MAX_DEBUG_REGISTER): Likewise.
2911         (enum pt_watch_style): Likewise.
2912         (struct mips32_watch_regs): Likewise.
2913         (struct mips64_watch_regs): Likewise.
2914         (struct pt_watch_regs): Likewise.
2915         (struct mips_watchpoint): Likewise.
2916         (mips_linux_watch_get_irw_mask): Move to
2917         common/mips-linux-watch.c.
2918         (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
2919         (mips_linux_watch_get_watchlo): Likewise.
2920         (mips_linux_watch_set_watchlo): Likewise.
2921         (mips_linux_watch_get_watchhi): Likewise.
2922         (mips_linux_watch_set_watchhi): Likewise.
2923         (mips_linux_read_watch_registers): Likewise.
2924         (mips_linux_watch_type_to_irw): Likewise.
2925         (mips_linux_stopped_data_address, fill_mask): Likewise.
2926         (mips_linux_watch_try_one_watch): Likewise.
2927         (mips_linux_watch_populate_regs): Likewise.
2928
2929 2013-07-27  Yao Qi  <yao@codesourcery.com>
2930
2931         * mips-linux-nat.c (get_irw_mask): Rename to ...
2932         (mips_linux_watch_get_irw_mask): ... this.  Rename parameter
2933         'set' to 'n'.  Update function comment.  All callers changed.
2934         (get_reg_mask): Rename parameter 'set' to 'n'.  Update
2935         function comment.  All callers changed.
2936         (get_num_valid): Rename to ...
2937         (mips_linux_watch_get_num_valid): ... this.  Rename parameter
2938         'set' to 'n'.  Update function comment.  All callers changed.
2939         (get_watchlo): Rename to ...
2940         (mips_linux_watch_get_watchlo): ... this.  Rename parameter
2941         'set' to 'n'.  Update function comment.  All callers changed.
2942         (set_watchlo): Rename to ...
2943         (mips_linux_watch_set_watchlo): ... this.  Rename parameter
2944         'set' to 'n'.  Update function comment.  All callers changed.
2945         (get_watchhi): Rename to ...
2946         (mips_linux_watch_get_watchhi): ... this.  Update function
2947         comment.  All callers changed.
2948         (set_watchhi): Rename to ...
2949         (mips_linux_watch_set_watchhi): ... this.  Update function
2950         comment.  All callers changed.
2951         (mips_linux_read_watch_registers): Update function comment.
2952         Add new parameters 'lwpid', 'watch_readback', and
2953         'watch_readback_valid'.  Update.
2954         (type_to_irw): Rename to ...
2955         (mips_linux_watch_type_to_irw): ... this.  Update function
2956         comment.  All callers changed.
2957         (fill_mask): Update function comment.
2958         (try_one_watch): Rename to ...
2959         (mips_linux_watch_try_one_watch): ... this.  Change the type
2960         of parameter 'irw' from 'unsigned' to 'uint32_t'.
2961         (populate_regs_from_watches): Rename to ...
2962         (mips_linux_watch_populate_regs): ... this.  Add parameter
2963         'current_watches'.  All callers changed.
2964
2965 2013-07-27  Yao Qi  <yao@codesourcery.com>
2966
2967         * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
2968         the code.
2969         (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
2970         (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
2971         (struct pt_watch_regs): Likewise.
2972         [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
2973         [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
2974         [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
2975         [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
2976         [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
2977
2978 2013-07-27  Yao Qi  <yao@codesourcery.com>
2979
2980         * breakpoint.h: Include break-common.h.
2981         (enum target_hw_bp_type): Move to ...
2982         * common/break-common.h: ... here.  New.
2983
2984 2013-07-26  Cyril Nikolaev  <cyril@nichtverstehen.de>
2985
2986         * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
2987         process group regardless of having tty on stdin.
2988
2989 2013-07-25  Doug Evans  <dje@google.com>
2990
2991         * linux-fork.h (detach_fork): Delete.
2992
2993 2013-07-25  Tom Tromey  <tromey@redhat.com>
2994
2995         PR remote/15256, PR remote/15266:
2996         * bfd-target.c (target_bfd_reopen): Initialize to_magic.
2997         * monitor.c (monitor_detach): Use unpush_target.
2998         * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
2999         * remote-mips.c (mips_detach): Use unpush_target.  Don't
3000         call mips_close.
3001         * remote-sim.c (gdbsim_detach): Use unpush_target.
3002         * target.c (pop_target): Remove.
3003         (pop_all_targets_above): Don't call target_close.
3004         (target_close): Assert that the target is unpushed.
3005         * target.h (pop_target): Don't declare.
3006         * tracepoint.c (tfile_open): Use unpush_target.
3007
3008 2013-07-25  Tom Tromey  <tromey@redhat.com>
3009
3010         * linux-thread-db.c (init_thread_db_ops): Call
3011         complete_target_initialization.
3012         (_initialize_thread_db): Don't call add_target.
3013         * target.c (complete_target_initialization): New function.
3014         (add_target_with_completer): Call it.
3015         * target.h (complete_target_initialization): Declare.
3016
3017 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
3018
3019         * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
3020         * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
3021         (HPPANBSD_SIZEOF_GREGS): New define.
3022         (hppaobsd_supply_gregset): Handle additional registers.
3023         * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
3024         we provide more registers now.
3025         (hppabsd_supply_gregset): Supply additional registers.
3026         (hppabsd_collect_gregset): Collect additional registers.
3027
3028 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
3029
3030         * hppabsd-tdep.c: Include "dwarf2-frame.h".
3031         (hppabsd_dwarf2_frame_init_reg): New function.
3032         (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
3033
3034 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
3035
3036         * mi/mi-main.c (output_register): Make MI 'r' format use standard
3037         'z' format code.  Remove error for optimized out values, standard
3038         code will handle these fine.
3039
3040 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
3041
3042         * NEWS: Mention new 'z' formatter.
3043         * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
3044         (_initialize_printcmd): Mention 'z' formatter in help text of the
3045         'x' command.
3046
3047 2013-07-24  Maciej W. Rozycki  <macro@codesourcery.com>
3048
3049         * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
3050         formatting.
3051
3052 2013-07-24  Sergio Durigan Junior  <sergiodj@redhat.com>
3053
3054         * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
3055         interface can evaluate arguments.  Fallback to the old mode if it
3056         cannot.
3057         (create_exception_master_breakpoint): Likewise.
3058         * elfread.c (elf_can_evaluate_probe_arguments): New function.
3059         (struct sym_probe_fns elf_probe_fns): Export function above to the
3060         probe interface.
3061         * probe.c (can_evaluate_probe_arguments): New function.
3062         * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
3063         function pointer.
3064         (can_evaluate_probe_arguments): New function prototype.
3065         * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
3066         probe interface can evaluate arguments.  Fallback to the old mode
3067         if it cannot.
3068         * stap-probe.c (stap_get_probe_argument_count): Check if probe
3069         interface can evaluate arguments.  Warning the user if it cannot.
3070         (stap_can_evaluate_probe_arguments): New function.
3071         (struct probe_ops stap_probe_ops): Export function above to the
3072         probe interface.
3073         * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
3074         New function pointer.
3075
3076 2013-07-24  Luis Machado  <lgustavo@codesourcery.com>
3077
3078         * Makefile.in (SFILES): Add common/target-common.c.
3079         Add common/target-common.h to headers.
3080         (COMMON_OBS): Add target-common.o.
3081         (target-common.o): New target.
3082         * linux-nat.h (resume_kind): Move to common/target-common.h.
3083         * target.c (target_waitstatus_to_string): Move to
3084         common/target-common.c.
3085         * target.h: Include target-common.h.
3086         (target_waitkind): Move to common/target-common.h.
3087         (target_waitstatus): Likewise.
3088         (TARGET_WNOHANG): Likewise.
3089         * common/target-common.c: New file.
3090         * common/target-common.h: New file.
3091
3092 2013-07-24  Doug Evans  <dje@google.com>
3093
3094         * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
3095         a warning.
3096
3097 2013-07-23  Yao Qi  <yao@codesourcery.com>
3098
3099         * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
3100         parameter 'gdbarch'.
3101         (i386_stack_tramp_frame_sniffer): Caller update.
3102         * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
3103         parameter 'gdbarch' and 'target'.
3104         (i386_linux_core_read_description): Caller update.
3105         * amd64-linux-tdep.c (amd64_linux_core_read_description):
3106         Likewise.
3107         * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
3108         declaration.
3109
3110 2013-07-23  Tom Tromey  <tromey@redhat.com>
3111
3112         * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
3113         2013-07-22.
3114
3115 2013-07-22  Doug Evans  <dje@google.com>
3116
3117         * exec.h (remove_target_sections): Delete arg abfd.
3118         * exec.c (exec_close): Update call to remove_target_sections.
3119         (remove_target_sections): Delete arg abfd.
3120         * solib.c (update_solib_list): Ditto.
3121         (reload_shared_libraries_1): Ditto.
3122         (clear_solib): Ditto, and unconditionally call remove_target_sections.
3123         * target.h (struct target_section): Rename key to owner.
3124         All uses updated.
3125
3126 2013-07-22  Tom Tromey  <tromey@redhat.com>
3127
3128         * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
3129
3130 2013-07-22  Tom Tromey  <tromey@redhat.com>
3131
3132         * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
3133         Simplify cleanup handling.
3134
3135 2013-07-22  Tom Tromey  <tromey@redhat.com>
3136
3137         * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
3138         on all return paths.
3139
3140 2013-07-22  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
3141
3142         * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
3143         (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
3144         DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
3145
3146 2013-07-22  Phil Muldoon  <pmuldoon@redhat.com>
3147
3148         * top.c (print_gdb_version): Add help, apropos description and
3149         url to online documentation.
3150
3151 2013-07-19  Hui Zhu  <hui@codesourcery.com>
3152
3153         PR gdb/15692
3154         * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
3155
3156 2013-07-19  Yao Qi  <yao@codesourcery.com>
3157
3158         * target.c (update_current_target): Change the default action
3159         of 'to_traceframe_info' from tcomplain to return_zero.
3160         * target.h (struct target_ops) <to_traceframe_info>: Add more
3161         comments.
3162         * valops.c (read_value_memory): Call
3163         traceframe_available_memory unconditionally.
3164
3165 2013-07-18  Yao Qi  <yao@codesourcery.com>
3166
3167         * coffread.c (coff_symfile_read): Iterate over minimal symbols,
3168         if the name is prefixed by "__imp_" or "_imp_", look for minimal
3169         symbol without prefix.  If found, set its type to
3170         'mst_solib_trampoline'.
3171
3172 2013-07-17  Doug Evans  <dje@google.com>
3173
3174         * NEWS: Mention "set print raw frame-arguments".
3175         * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
3176         * stack.c (print_raw_frame_arguments): New static global.
3177         (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
3178         (_initialize_stack): New command "set/show print raw frame-arguments".
3179         * valprint.c (setprintrawlist, showprintrawlist): New globals.
3180         (set_print_raw, show_print_raw): New functions.
3181         (_initialize_valprint): New prefix command "set/show print raw".
3182         * valprint.h (value_print_options): Improve comments.
3183
3184         * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
3185         of all *list variables.
3186
3187         * gdbcmd.h (togglelist): Delete.
3188         * cli/cli-cmds.c (togglelist): Delete.
3189         (init_cmd_lists): Update.
3190         * cli/cli-cmds.h (togglelist): Delete.
3191
3192 2013-07-17  Tom Tromey  <tromey@redhat.com>
3193
3194         * dwarf2read.c (dwarf2_per_objfile_free): Clear
3195         dwarf2_per_objfile.
3196
3197 2013-07-16  Doug Evans  <dje@google.com>
3198
3199         * nto-tdep.c (nto_relocate_section_addresses): Update,
3200         target_section.bfd deleted.
3201         * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
3202         * s390-tdep.c (s390_load): Ditto.
3203         * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
3204
3205 2013-07-16  Andrew Burgess  <aburgess@broadcom.com>
3206
3207         * common/format.c (parse_format_string): Add checks for NULL
3208         character before calling strchr.
3209
3210 2013-07-16  Doug Evans  <dje@google.com>
3211
3212         * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
3213         temp_pathname argument.
3214         * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
3215         when opening the file fails.
3216
3217         * target.h (struct target_section): Delete member bfd.
3218         All users updated to use the_bfd_section->owner instead.
3219         * exec.c (add_to_section_table): Assert bfd is expected value.
3220         Remove initialization of target_section.bfd.
3221         (remove_target_sections): Update.
3222         (section_table_available_memory): Update.
3223         (section_table_xfer_memory_partial): Update.
3224         (print_section_info): Update.
3225         (exec_set_section_address): Update.
3226         * record-full.c (record_full_core_xfer_partial): Update.
3227         * solib-svr4.c (svr4_relocate_section_addresses): Update.
3228         * solib-target.c (solib_target_relocate_section_addresses): Update.
3229         * symfile.c (build_section_addr_info_from_section_table): Update.
3230         * target.c (memory_xfer_live_readonly_partial): Update.
3231         (memory_xfer_partial_1): Update.
3232
3233 2013-07-15  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
3234
3235         * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
3236         now available for embedded (BookE) and server (BookS) processors,
3237         correct mentions of 'booke' and adjust comments accordingly in order to
3238         avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
3239         (have_ptrace_booke_interface): Rename function and variable
3240         'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
3241         Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
3242         (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
3243         'hwdebug_point_cmp'. Update all uses.
3244         (booke_find_thread_points_by_tid): Rename function
3245         'booke_find_thread_points_by_tid' to
3246         'hwdebug_find_thread_points_by_tid'. Update all uses.
3247         (booke_insert_point): Rename function 'booke_insert_point' to
3248         'hwdebug_insert_point'. Update all uses.
3249         (booke_remove_point): Rename function 'booke_remove_point' to
3250         'hwdebug_remove_point'. Update all uses.
3251
3252 2013-07-15  Maciej W. Rozycki  <macro@codesourcery.com>
3253
3254         * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
3255         numbers with enum values.
3256
3257 2013-07-15  Ali Anwar  <ali_anwar@codesourcery.com>
3258
3259         PR threads/13217
3260         * thread.c (thread_apply_all_command): Check for valid threads
3261         and thread count.
3262         (thread_array_cleanup): New struct.
3263         (set_thread_refcount): New function.
3264
3265 2013-07-11  Andrew Burgess  <aburgess@broadcom.com>
3266
3267         * infcmd.c (default_print_one_register_info): Reuse function
3268         print_hex_chars.
3269
3270 2013-07-10  Tom Tromey  <tromey@redhat.com>
3271
3272         * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
3273         (ada-exp.o): New target.
3274
3275 2013-07-10  Sergio Durigan Junior  <sergiodj@redhat.com>
3276
3277         * mt-tdep.c (mt_registers_info): Call
3278         get_no_prettyformat_print_options instead of
3279         get_raw_print_options (regression by last patch from Doug
3280         Evans).
3281
3282 2013-07-09  Pedro Alves  <palves@redhat.com>
3283
3284         Checked in by Joel Brobecker  <brobecker@adacore.com>.
3285         * ada-lang.c (coerce_unspec_val_to_type): Use
3286         value_optimized_out_const.
3287         * value.c (value_optimized_out_const): New function.
3288         * value.h (value_optimized_out_const): New declaration.
3289
3290 2013-07-09  Doug Evans  <dje@google.com>
3291
3292         * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
3293         Enum values rename as well.  All uses updated.
3294         * valprint.h (value_print_options): Rename member pretty to
3295         pretty format.  Rename member prettyprint_arrays to
3296         prettyformat_arrays.  Rename member prettyprint_structs to
3297         prettyformat_structs.  All uses updated.
3298         (get_no_prettyformat_print_options): Renamed from
3299         get_raw_print_options.
3300         * valprint.c (get_no_prettyformat_print_options): Renamed from
3301         get_raw_print_options.  All callers updated.
3302         (show_prettyformat_structs): Renamed from show_prettyprint_structs.
3303         All callers updated.
3304         (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
3305         All callers updated.
3306         (_initialize_valprint): Improve help text for "set print pretty" and
3307         "set print arrays".
3308
3309 2013-07-09  Andrew Burgess  <aburgess@broadcom.com>
3310
3311         * value.c (value_bits_valid): Revert previous change, and change
3312         by Pedro on 2013-07-04, due to regressions in
3313         gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
3314
3315 2013-07-08  Andrew Burgess  <aburgess@broadcom.com>
3316             Pedro Alves  <palves@redhat.com>
3317
3318         * value.c (value_bits_valid): If the value is not lval_computed
3319         or has no check validity handler then the answer is the
3320         optimized_out flag, otherwise defer to the handler.
3321
3322 2013-07-06  Eli Zaretskii  <eliz@gnu.org>
3323
3324         * top.c (print_gdb_configuration): Explain in output of
3325         --configuration what does "relocatable" mean.
3326
3327         * main.c (print_gdb_help): Regroup options in the --help text.
3328         See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
3329         the relevant discussions.
3330
3331 2013-07-06  Yao Qi  <yao@codesourcery.com>
3332
3333         * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
3334         Remove parameter 'lsal'.
3335         * breakpoint.c (create_breakpoint): Move local variable 'lsal'
3336         to inner block.  Caller update.
3337         (base_breakpoint_create_breakpoints_sal): Update.
3338         (bkpt_create_breakpoints_sal): Likewise.
3339         (tracepoint_create_breakpoints_sal): Likewise.
3340         (strace_marker_create_breakpoints_sal): Get 'lsal' from the
3341         element 0 of vector 'canonical->sals'.
3342
3343 2013-07-05  Luis Machado  <lgustavo@codesourcery.com>
3344
3345         * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
3346         register number instead of the pseudo register one.
3347         (rs6000_dwarf2_reg_to_regnum): Likewise.
3348
3349 2013-07-04  Pedro Alves  <palves@redhat.com>
3350
3351         * findvar.c (value_of_register): Use allocate_optimized_out_value
3352         if the register has been optimized out, instead of
3353         set_value_optimized_out.
3354         * frame-unwind.c (frame_unwind_got_optimized): Use
3355         allocate_optimized_out_value.
3356
3357 2013-07-04  Pedro Alves  <palves@redhat.com>
3358
3359         * value.c (value_bits_valid): If the value is not lval_computed,
3360         or doesn't have a check_validity hook, assume the value is entirely
3361         valid.
3362
3363 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
3364
3365         * stack.c (read_frame_arg): No longer fetch lazy values.
3366         * value.c (value_optimized_out): If the value is not already
3367         marked optimized out, and is lazy then fetch it.
3368         (value_primitive_field): Move optimized out check to later in the
3369         function, after we have loaded any lazy values.
3370         (value_fetch_lazy): Use optimized out flag directly rather than
3371         calling optimized_out method.
3372
3373 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
3374
3375         * valops.c: Don't include "user-regs.h".
3376         (value_fetch_lazy): Moved to value.c.
3377         * value.c: Include "user-regs.h".
3378         (value_fetch_lazy): Moved from valops.c.
3379
3380 2013-07-04  Yao Qi  <yao@codesourcery.com>
3381
3382         Revert:
3383         2013-06-27  Yao Qi  <yao@codesourcery.com>
3384
3385         * common/create-version.sh: Update comments.  Handle the case
3386         that TARGET_ALIAS is empty.
3387
3388 2013-07-03  Pedro Alves  <palves@redhat.com>
3389
3390         * Makefile.in (config.status): Depend on development.sh.
3391         (aclocal_m4_deps): Add libmcheck.m4.
3392         * acinclude.m4: Include libmcheck.m4.
3393         * configure.ac: Source development.sh instead of setting
3394         'development' here.  --enable-libmcheck/--disable-libmcheck code
3395         factored out to GDB_AC_LIBMCHECK.  Run it.
3396         * development.sh: New file.
3397         * libmcheck.m4: New file.
3398         * configure: Regenerate.
3399
3400 2013-07-02  Tom Tromey  <tromey@redhat.com>
3401
3402         * contrib/ari/update-web-ari.sh: Update for version.in change.
3403
3404 2013-07-02  Tom Tromey  <tromey@redhat.com>
3405
3406         * common/ptid.h: Comment fixes.
3407
3408 2013-07-01  Tom Tromey  <tromey@redhat.com>
3409
3410         * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
3411         .gnu_debugaltlink not found.  Use bfd_get_alt_debug_link_info.
3412         (dwarf2_read_index, create_all_comp_units): Update.
3413
3414 2013-07-01  Tom Tromey  <tromey@redhat.com>
3415
3416         * configure.ac (build_warnings): Add -Wold-style-definition.
3417         * configure: Rebuild.
3418         * machoread.c (_initialize_machoread): Use "(void)".
3419         * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
3420         use "(void)".
3421
3422 2013-07-01  Tom Tromey  <tromey@redhat.com>
3423
3424         * configure.ac (build_warnings): Add -Wold-style-declaration.
3425         * configure: Rebuild.
3426         * dsrec.c (make_srec): Use "static const", not "const static".
3427         * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
3428         not "const static".
3429         * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
3430         Use "static const", not "const static".
3431         * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
3432         not "const static".
3433         * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
3434         not "const static".
3435         * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
3436         not "const static".
3437         * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
3438         not "const static".
3439         (v850_dbtrap_breakpoint_from_pc): Likewise.
3440         * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
3441         not "const static".
3442
3443 2013-07-01  Tom Tromey  <tromey@redhat.com>
3444
3445         * configure.ac (build_warnings): Add -Wmissing-parameter-type.
3446         * configure: Rebuild.
3447
3448 2013-07-01  Pedro Alves  <palves@redhat.com>
3449
3450         * defs.h: Include "pathmax.h".
3451         * utils.c: Don't include sys/param.h.
3452         (gdb_realpath): Remove code that checks for MAXPATHLEN.
3453         * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
3454         instead of MAXPATHLEN.
3455         * solib-sunos.c: Don't include sys/param.h.
3456         * xcoffread.c: Don't include sys/param.h.
3457         * bsd-kvm.c: Don't include sys/param.h.
3458         * darwin-nat.c: Don't include sys/param.h.
3459         (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
3460         * darwin-nat-info.c: Don't include sys/param.h.
3461         * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
3462         MAXPATHLEN.
3463         * i386obsd-nat.c: Don't include sys/param.h.
3464         * inf-child.c: Don't include sys/param.h.
3465         (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
3466         * linux-fork.c: Don't include sys/param.h.
3467         (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
3468         * linux-nat.c: Don't include sys/param.h.
3469         (linux_child_pid_to_exec_file, linux_proc_pending_signals)
3470         (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
3471         * m68klinux-nat.c: Don't include sys/param.h.
3472         * nbsd-nat.c: Don't include sys/param.h.
3473         (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
3474         * ppc-linux-nat.c: Don't include sys/param.h.
3475         * rs6000-nat.c: Don't include sys/param.h.
3476         * spu-linux-nat.c. Don't include sys/param.h.
3477         * windows-nat.c: Don't include sys/param.h.
3478         * xtensa-linux-nat.c: Don't include sys/param.h.
3479         * config/i386/nm-fbsd.h: Don't include sys/param.h.
3480
3481 2013-07-01  Pedro Alves  <palves@redhat.com>
3482
3483         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
3484         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
3485         * gnulib/aclocal.m4: Regenerate.
3486         * gnulib/config.in: Regenerate.
3487         * gnulib/configure: Regenerate.
3488         * gnulib/import/pathmax.h: New file.
3489         * gnulib/import/Makefile.am: Regenerate.
3490         * gnulib/import/Makefile.in: Regenerate.
3491         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
3492         * gnulib/import/m4/gnulib-comp.m4: Regenerate.
3493         * gnulib/import/m4/pathmax.m4: New file.
3494
3495 2013-07-01  Pedro Alves  <palves@redhat.com>
3496
3497         * configure.ac (GDBINIT): Define, depending on host.
3498         * go32-nat.c (init_go32_ops): Don't override gdbinit here.
3499         * top.c (PATH_MAX): Delete fallback definition.
3500         (GDBINIT_FILENAME): Delete.
3501         (gdbinit): Reimplement as const char array set to the GDBINIT
3502         string constant.
3503         * top.h (gdbinit): Make const.
3504         * configure, config.in: Regenerate.
3505
3506 2013-07-01  Pedro Alves  <palves@redhat.com>
3507
3508         * cli/cli-cmds.c (source_script): Make 'file' parameter const.
3509         * cli/cli-cmds.h (source_script): Likewise.
3510         * exceptions.c (catch_command_errors_const): New function.
3511         * exceptions.h (catch_command_errors_const): Declare.
3512         * main.c (get_init_files): Make parameters const, and adjust.
3513         (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
3514         'local_gdbinit' locals const.  Adjust to use
3515         catch_command_errors_const.
3516         (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
3517         'local_gdbinit' locals const.
3518
3519 2013-07-01  Pedro Alves  <palves@redhat.com>
3520
3521         * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
3522         (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
3523         * tracepoint.c: Don't check HAVE_UNISTD_H before including
3524         <unistd.h>.
3525
3526 2013-07-01  Pedro Alves  <palves@redhat.com>
3527
3528         Import the "unistd" gnulib module.
3529         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
3530         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
3531         import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
3532         import/m4/unistd_h.m4.
3533         * gnulib/aclocal.m4: Renenerate.
3534         * gnulib/config.in: Renenerate.
3535         * gnulib/configure: Renenerate.
3536         * gnulib/import/Makefile.am: Renenerate.
3537         * gnulib/import/Makefile.in: Renenerate.
3538         * gnulib/import/m4/gnulib-cache.m4: Renenerate.
3539         * gnulib/import/m4/gnulib-comp.m4: Renenerate.
3540         * gnulib/import/m4/off_t.m4: New file.
3541         * gnulib/import/m4/ssize_t.m4: New file.
3542         * gnulib/import/m4/sys_types_h.m4: New file.
3543         * gnulib/import/m4/unistd_h.m4: New file.
3544         * gnulib/import/sys_types.in.h: New file.
3545         * gnulib/import/unistd.c: New file.
3546         * gnulib/import/unistd.in.h: New file.
3547
3548 2013-07-01  Pedro Alves  <palves@redhat.com>
3549
3550         * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
3551         defined instead of checking HAVE_UNISTD_H.
3552
3553 2013-07-01  Pedro Alves  <palves@redhat.com>
3554
3555         Reimport gnulib from scratch.
3556         * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
3557         import/m4/onceonly.m4.
3558         * gnulib/aclocal.m4: Renegerate.
3559         * gnulib/config.in: Renegerate.
3560         * gnulib/configure: Renegerate.
3561         * gnulib/import/Makefile.in: Renegerate.
3562         * gnulib/import/extra/update-copyright: Renegerate.
3563         * gnulib/import/m4/onceonly.m4: Delete.
3564
3565 2013-07-01  Pedro Alves  <palves@redhat.com>
3566
3567         * tui/tui-regs.c (pagination_enabled): Delete declaration.
3568
3569 2013-06-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
3570
3571         Code cleanup.
3572         * remote.c (async_remote_interrupt_twice): Make it static.
3573         * remote.h (async_remote_interrupt_twice): Remove the declaration.
3574
3575 2013-06-29  Sergio Durigan Junior  <sergiodj@redhat.com>
3576
3577         * ia64-linux-tdep.c: Include <ctype.h>.
3578         (ia64_linux_stap_is_single_operand): New function.
3579         (ia64_linux_init_abi): Initialize SystemTap related attributes.
3580
3581 2013-06-28  Tom Tromey  <tromey@redhat.com>
3582
3583         * Makefile.in (version.c): Use version.in, not
3584         common/version.in.
3585         * common/create-version.sh: Likewise.
3586         * common/version.in: Move...
3587         * version.in: ...here.
3588
3589 2013-06-28  Pedro Alves  <palves@redhat.com>
3590
3591         * infrun.c (set_observer_mode): Don't declare pagination_enabled
3592         here.
3593         * utils.h (pagination_enabled): Declare.
3594
3595 2013-06-28  Pedro Alves  <palves@redhat.com>
3596
3597         * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
3598         Move higher up in file.
3599
3600 2013-06-28  Tom Tromey  <tromey@redhat.com>
3601
3602         * tracepoint.c (deprecated_readline_begin_hook)
3603         (deprecated_readline_hook, deprecated_readline_end_hook): Don't
3604         declare.
3605
3606 2013-06-28  Pedro Alves  <palves@redhat.com>
3607
3608         PR tui/14880
3609         * tui/tui-regs.c (tui_get_register): Fetch value contents before
3610         checking if they're available.
3611         * value.c (value_available_contents_eq): Change comment.
3612         * value.h (value_available_contents_eq): Expand comment.
3613
3614 2013-06-27  Tom Tromey  <tromey@redhat.com>
3615
3616         * target.c (find_run_target): Remove.
3617         * target.h (find_run_target): Remove.
3618
3619 2013-06-27  Tom Tromey  <tromey@redhat.com>
3620
3621         * corelow.c (core_gdbarch): Now static.
3622
3623 2013-06-27  Tom Tromey  <tromey@redhat.com>
3624
3625         * target.c (target_struct_index): Remove.
3626
3627 2013-06-27  Pedro Alves  <palves@redhat.com>
3628
3629         * infrun.c: Remove comment describing the 'stepping over runtime
3630         loader dynamic symbol resolution code' mechanism; moved to
3631         gdbint.texinfo.
3632
3633 2013-06-27  Pedro Alves  <palves@redhat.com>
3634
3635         * exceptions.c (catch_command_errors): Remove spurious space.
3636         * exceptions.h (catch_command_errors): Second parameter is "arg",
3637         not "command".
3638
3639 2013-06-27  Yao Qi  <yao@codesourcery.com>
3640
3641         * common/create-version.sh: Update comments.  Handle the case
3642         that TARGET_ALIAS is empty.
3643
3644 2013-06-26  Pedro Alves  <palves@redhat.com>
3645
3646         * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
3647         comment.
3648
3649 2013-06-26  Pedro Alves  <palves@redhat.com>
3650
3651         * infrun.c: Update comments on stepping over runtime loader
3652         dynamic symbol resolution code.
3653
3654 2013-06-26  Sergio Durigan Junior  <sergiodj@redhat.com>
3655
3656         * ax-gdb.h (union exp_element): Forward declare.
3657         * parser-defs.h: Include expression.h.
3658
3659 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
3660
3661         * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
3662
3663 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
3664
3665         * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
3666
3667 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
3668
3669         Fix trace-status to output proper start-time and stop-time.
3670         * tracepoint.c (trace_status_command): Fix type of printf arg to
3671         prevent improper type conversion.
3672         (trace_status_mi): Likewise.
3673
3674 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
3675
3676         * mips-tdep.c (mips_next_pc): Fix a typo.
3677
3678 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
3679
3680         * mips-tdep.c (micromips_scan_prologue): Fix a typo.
3681
3682 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
3683             Yao Qi  <yao@codesourcery.com>
3684
3685         * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
3686         * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
3687         * mi/mi-main.c (print_variable_or_computed): New function.
3688         (mi_cmd_trace_frame_collected): New function.
3689         * tracepoint.c (find_trace_state_variable_by_number): New.
3690         (struct traceframe_info): Move to tracepoint.h
3691         (struct collection_list): Likewise.
3692         (do_collect_symbol): Include locals and arguments in the
3693         collected variables list.
3694         (clear_collection_list): Clear wholly collected variables list
3695         and computed variables list.
3696         (append_exp): New function.
3697         (encode_actions_1): Include variables in the wholly
3698         collected variables list.  Include memory ranges and
3699         full-fledged expressions in the computed expressions list.
3700         (encode_actions): Move some code to ...
3701         Return the cleanup chain.
3702         (encode_actions_rsp): ... here.  New function.
3703         (get_traceframe_location, get_traceframe_info): Remove static.
3704         * tracepoint.h (struct memrange): Moved from tracepoint.c.
3705         (struct collection_list): Moved from tracepoint.c.  Add two
3706         new fields 'wholly_collected' and 'computed'.
3707         (find_trace_state_variable_by_number): Declare.
3708         (encode_actions): Adjust declaration.
3709         (encode_actions_rsp): Declare.
3710         (get_traceframe_info, get_traceframe_location): Declare.
3711
3712         * NEWS: Mention new MI command -trace-frame-collected.
3713
3714 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
3715             Yao Qi  <yao@codesourcery.com>
3716
3717         * ctf.c (ctf_traceframe_info): Push trace state variables
3718         present in the trace data into the traceframe info object.
3719         * breakpoint.c (DEF_VEC_I): Remove.
3720         * common/filestuff.c (DEF_VEC_I): Likewise.
3721         * dwarf2loc.c (DEF_VEC_I): Likewise.
3722         * mi/mi-main.c (DEF_VEC_I): Likewise.
3723         * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
3724         * features/traceframe-info.dtd: Add tvar element and its
3725         attributes.
3726         * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
3727         (build_traceframe_info): Push trace state variables present in
3728         the trace data into the traceframe info object.
3729         (traceframe_info_start_tvar): New function.
3730         (tvar_attributes): New.
3731         (traceframe_info_children): Add "tvar" element.
3732         * tracepoint.h (struct traceframe_info) <tvars>: New field.
3733
3734         * NEWS: Mention the change in GDB and GDBserver.
3735
3736 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
3737             Yao Qi  <yao@codesourcery.com>
3738
3739         * tracepoint.c (trace_dump_command): Move code to ...
3740         (get_traceframe_location): ... here.  New.
3741
3742 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
3743             Yao Qi  <yao@codesourcery.com>
3744
3745         * tracepoint.c (trace_dump_command): GDB emits an error
3746          instead of a warning when a traceframe is not selected.
3747
3748 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
3749             Yao Qi  <yao@codesourcery.com>
3750
3751         * tracepoint.c (tracepoint_list, stepping_list): Remove.
3752         (clear_collection_list): Free fields 'aexpre_list' and 'list'
3753         in collection_list.
3754         (do_clear_collection_list, init_collection_list): New.
3755         (encode_actions): Add local variables 'tracepoint_list' and
3756         'stepping_list'.  Call init_collection_list and make cleanup
3757         which calls do_clear_collection_list.  Don't call
3758         clear_collection_list.
3759         (_initialize_tracepoint): Delete references to
3760         'tracepoint_list' and 'stepping_list'.
3761
3762 2013-06-25  Tom Tromey  <tromey@redhat.com>
3763
3764         * common/create-version.sh (date): Use "$", not "$$" in sed
3765         expression.
3766
3767 2013-06-25  Kevin Buettner  <kevinb@redhat.com>
3768
3769         * NEWS (New targets): Add entry for TI MSP430.
3770
3771 2013-06-25  Yao Qi  <yao@codesourcery.com>
3772
3773         * remote.c (remote_start_remote): Move code to upload tsv
3774         earlier.
3775
3776 2013-06-25  Yao Qi  <yao@codesourcery.com>
3777             Hui Zhu  <hui@codesourcery.com>
3778             Pedro Alves  <palves@redhat.com>
3779
3780         PR breakpoints/15075
3781         PR breakpoints/15434
3782         * breakpoint.c (bpstat_stop_status): Call
3783         b->ops->after_condition_true.
3784         (update_dprintf_command_list): Don't append "continue" command
3785         to the command list of dprintf breakpoint.
3786         (base_breakpoint_after_condition_true): New function.
3787         (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
3788         (dprintf_after_condition_true): New function.
3789         (initialize_breakpoint_ops): Set dprintf_after_condition_true.
3790         * breakpoint.h (breakpoint_ops): Add after_condition_true.
3791
3792 2013-06-24  Kevin Buettner  <kevinb@redhat.com>
3793
3794         * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
3795         (ALLDEPFILES): Add msp430-tdep.c.
3796         * configure.tgt (msp430*-*-elf): New target.
3797         * msp430-tdep.c: New file.
3798
3799 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
3800
3801         * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
3802         microMIPS synthetic symbols.
3803
3804 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
3805
3806         * objfiles.h (pc_in_section): New prototype.
3807         (in_plt_section): Remove name argument, replace prototype with
3808         static inline function.
3809         * mips-tdep.h: Include "objfiles.h".
3810         (in_mips_stubs_section): New function.
3811         * hppa-tdep.h (gdbarch_tdep): Remove name argument of
3812         in_solib_call_trampoline member.
3813         (hppa_in_solib_call_trampoline): Remove name argument.
3814         * objfiles.c (pc_in_section): New function.
3815         (in_plt_section): Remove function.
3816         * mips-linux-tdep.c: Include "objfiles.h".
3817         (mips_linux_in_dynsym_stub): Call in_mips_stubs_section.  Remove
3818         name argument.  Return 1 rather than the low 16-bit halfword of
3819         any instruction examined.
3820         (mips_linux_in_dynsym_resolve_code): Update
3821         mips_linux_in_dynsym_stub call accordingly.
3822         * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
3823         rather than an equivalent hand-coded sequence.
3824         * hppa-hpux-tdep.c (in_opd_section): Remove function.
3825         (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
3826         (hppa64_hpux_in_solib_call_trampoline): Likewise.
3827         (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
3828         in_opd_section.
3829         * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
3830         on call to tdep->in_solib_call_trampoline.
3831         (hppa_in_solib_call_trampoline): Remove name argument, update
3832         according to in_plt_section change.
3833         (hppa_skip_trampoline_code): Update according to in_plt_section
3834         change.
3835         * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
3836         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
3837         Likewise.
3838         * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
3839         * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
3840         * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
3841         * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
3842         * nto-tdep.c (nto_relocate_section_addresses): Likewise.
3843         * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
3844         * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
3845         * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
3846         * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
3847         * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
3848         * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
3849         * sparc-tdep.c (sparc_analyze_prologue): Likewise.
3850         * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
3851
3852 2013-06-24  Joel Brobecker  <brobecker@adacore.com>
3853
3854         * common/create-version.sh: Fix expansion of $host_alias
3855         and $target_alias in generation of HOST_NAME and TARGET_NAME
3856         (resp.).
3857
3858 2013-06-24  Tom Tromey  <tromey@redhat.com>
3859
3860         * common/create-version.sh: New file.
3861         * Makefile.in (version.c): Use bfd/version.h, common/version.in,
3862         create-version.sh.
3863         (HFILES_NO_SRCDIR): Use common/version.h.
3864         * version.in: Move to ...
3865         * common/version.in: ... here.  Replace date with "DATE".
3866         * version.h: Move to ...
3867         * common/version.h: ... here.
3868
3869 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
3870
3871         * gdb/gnulib/Makefile.in: Update date in copyright header.
3872         * gdb/gnulib/configure.ac: Ditto.
3873         * gdb/gnulib/update-gnulib.sh: Ditto.
3874
3875 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
3876
3877         * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
3878         "gdb/gnulib/import".
3879
3880 2013-06-21  Will Newton  <will.newton@linaro.org>
3881
3882         * doublest.c (ldfrexp): Remove function.
3883         (convert_doublest_to_floatformat): Call frexpl instead of
3884         ldfrexp.
3885
3886 2013-06-21  Will Newton  <will.newton@linaro.org>
3887
3888         * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
3889         * gnulib/aclocal.m4: Regenerate.
3890         * gnulib/config.in: Regenerate.
3891         * gnulib/configure: Regenerate.
3892         * gnulib/import/Makefile.am: Update.
3893         * gnulib/import/Makefile.in: Update.
3894         * gnulib/import/m4/gnulib-cache.m4: Update.
3895         * gnulib/import/m4/gnulib-comp.m4: Update.
3896         * gnulib/import/float+.h: Import.
3897         * gnulib/import/float.c: Import.
3898         * gnulib/import/float.in.h: Import.
3899         * gnulib/import/fpucw.h: Import.
3900         * gnulib/import/frexp.c: Import.
3901         * gnulib/import/frexpl.c: Import.
3902         * gnulib/import/isnan.c: Import.
3903         * gnulib/import/isnand-nolibm.h: Import.
3904         * gnulib/import/isnand.c: Import.
3905         * gnulib/import/isnanl-nolibm.h: Import.
3906         * gnulib/import/isnanl.c: Import.
3907         * gnulib/import/itold.c: Import.
3908         * gnulib/import/m4/exponentd.m4: Import.
3909         * gnulib/import/m4/exponentl.m4: Import.
3910         * gnulib/import/m4/float_h.m4: Import.
3911         * gnulib/import/m4/fpieee.m4: Import.
3912         * gnulib/import/m4/frexp.m4: Import.
3913         * gnulib/import/m4/frexpl.m4: Import.
3914         * gnulib/import/m4/isnand.m4: Import.
3915         * gnulib/import/m4/isnanl.m4: Import.
3916         * gnulib/import/m4/math_h.m4: Import.
3917         * gnulib/import/math.c: Import.
3918         * gnulib/import/math.in.h: Import.
3919
3920 2013-06-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
3921
3922         * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
3923         replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
3924         signature_INTEL_edx comparisons.
3925
3926 2013-06-20  Doug Evans  <dje@google.com>
3927
3928         symtab/15652
3929         * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
3930         All callers updated.
3931         (open_dwp_file): If we can't find the dwp file, search the basename
3932         in debug-file-directory.
3933
3934         * dwarf2read.c (struct dwp_file): Fix comment.
3935         (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
3936
3937         * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
3938         better.
3939
3940 2013-06-20  Yao Qi  <yao@codesourcery.com>
3941
3942         * breakpoint.c (create_breakpoint): Fix code indentation.
3943
3944 2013-06-20  Yao Qi  <yao@codesourcery.com>
3945
3946         * breakpoint.c (create_breakpoints_sal_default): Remove
3947         parameter 'lsal'.  Update declaration.
3948         (bkpt_create_breakpoints_sal): Caller update.
3949         (tracepoint_create_breakpoints_sal): Likewise.
3950
3951 2013-06-20  Pedro Alves  <pedro@codesourcery.com>
3952             Yao Qi  <yao@codesourcery.com>
3953
3954         * NEWS: Mention the new option '--skip-unavailable' of command
3955         -data-list-register-values.
3956         * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
3957         --skip-unavailable option.  Adjust to use output_register.
3958         (output_register): Add new 'skip_unavailable' parameter.
3959         Handle it.
3960
3961 2013-06-19  Mike Frysinger  <vapier@gentoo.org>
3962
3963         * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
3964         common/i386-gcc-cpuid.h.
3965         * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
3966         * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
3967         Copy the latest version from upstream gcc.
3968         * common/linux-btrace.c: Include i386-cpuid.h.
3969         (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
3970         call to i386_cpuid.
3971         (cpu_supports_btrace): Likewise.
3972         * go32-nat.c: Include i386-cpuid.h.
3973         (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
3974
3975 2013-06-19  Doug Evans  <dje@google.com>
3976
3977         * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
3978         (get_section_index): Ditto.
3979
3980 2013-06-19  Tom Tromey  <tromey@redhat.com>
3981
3982         * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
3983         "dprintf" help.
3984
3985 2013-06-18  Doug Evans  <dje@google.com>
3986
3987         * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
3988         before using it.
3989         (dw2_expand_symtabs_matching): Fix symbol kind validity check.
3990         Move test of cu_index closer to use.  Print complaint if cu_index
3991         is bad.
3992
3993 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
3994
3995         * machoread.c (oso_vector): Delete this global.
3996         (macho_register_oso): Add new parameter "oso_vector_ptr".
3997         Use it instead of the "oso_vector" global.
3998         (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
3999         (macho_symfile_read): Use a local oso_vector, to be free'ed
4000         at the end of this function, in place of the old "oso_vector"
4001         global.  Update various function calls accordingly.  Use one
4002         single cleanup chain for the entire function.
4003
4004 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
4005
4006         * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
4007         DWARF2_PER_OBJFILE by uses of DATA instead.
4008
4009 2013-06-18  Tom Tromey  <tromey@redhat.com>
4010
4011         * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
4012         argument.
4013         * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
4014         Special case signals other than GDB_SIGNAL_TRAP.
4015         (explains_signal_watchpoint): New function.
4016         (base_breakpoint_explains_signal): Add 'sig' argument.
4017         (initialize_breakpoint_ops): Set 'explains_signal' method for
4018         watchpoints.
4019         * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
4020         signal argument.
4021         (bpstat_explains_signal): Likewise.
4022         * infrun.c (handle_syscall_event, handle_inferior_event): Update.
4023
4024 2013-06-18  Tom Tromey  <tromey@redhat.com>
4025
4026         * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
4027
4028 2013-06-18  Tom Tromey  <tromey@redhat.com>
4029
4030         * python/python.c (finish_python_initialization): Decref
4031         'pythondir' on failure path as well.
4032
4033 2013-06-18  Tom Tromey  <tromey@redhat.com>
4034
4035         PR symtab/15391:
4036         * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
4037         after taking bits_to_skip into account.  Sign extend byte_offset.
4038         * utils.h (gdb_sign_extend): Declare.
4039         * utils.c (gdb_sign_extend): New function.
4040
4041 2013-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
4042
4043         * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
4044
4045 2013-06-17  Pierre Muller  <muller@sourceware.org>
4046
4047         * corelow.c (core_open): Print GDB signal name instead of target
4048         signal number.
4049
4050 2013-06-17  Mike Frysinger  <vapier@gentoo.org>
4051
4052         * .gitignore: Add /gcore.
4053
4054 2013-06-13  Doug Evans  <dje@google.com>
4055
4056         * dwarf2read.c (try_open_dwop_file): Work around behaviour of
4057         OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
4058
4059 2013-06-12  Phil Muldoon  <pmuldoon@redhat.com>
4060
4061         * stack.c (backtrace_command_1): Fix indentation.
4062
4063 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
4064
4065         * window-nat.c (thread_rec): Add missing empty line after
4066         local variable declaration.
4067
4068 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
4069
4070         * windows-nat.c (thread_rec): Revert format used to print
4071         error code returned by SuspendThread from %d back to %u.
4072
4073 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
4074
4075         * windows-nat.c (windows_continue): Add "0x" prefix for thread
4076         ID in debug trace.
4077         (get_windows_debug_event): Likewise, for all debug traces.
4078
4079 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
4080
4081         * window-nat.c (thread_rec): Add thread ID in SuspendThread
4082         warning message.
4083
4084 2013-06-08  Pedro Alves  <pedro@codesourcery.com>
4085             Yao Qi  <yao@codesourcery.com>
4086
4087         * mi/mi-main.c (get_register): Remove declaration.
4088         (output_register): Declare.
4089         (mi_cmd_data_list_register_values): Remove local variable
4090         'tuple_cleanup'.  Move some code into output_register.
4091         (get_register): Renamed to ...
4092         (output_register): ... this.  Output the register's
4093         "number" ui_out tuple here.
4094
4095 2013-06-07  Pedro Alves  <palves@redhat.com>
4096
4097         * darwin-nat.c: Fix formating in copyright header.
4098         * darwin-nat.h: Likewise.
4099         * gnu-nat.c: Likewise.
4100         * machoread.c: Likewise.
4101
4102 2013-06-07  Pedro Alves  <palves@redhat.com>
4103
4104         PR server/14823
4105         * regformats/regdat.sh: Output #include tdesc.h.  Make globals
4106         static.  Output a global target description pointer.
4107         (init_registers_${name}): Adjust to initialize a
4108         target description structure.
4109
4110 2013-06-07  Will Newton  <will.newton@linaro.org>
4111
4112         * printcmd.c (build_address_symbolic): Call
4113         gdbarch_addr_bits_remove for text minimal symbols.
4114
4115 2013-06-07  Will Newton  <will.newton@linaro.org>
4116
4117         * MAINTAINERS: Add myself to Write After Approval.
4118
4119 2013-06-07  Yao Qi  <yao@codesourcery.com>
4120
4121         * tracepoint.c (start_tracing): Move code to ...
4122         (trace_reset_local_state): ... here.  New.
4123         (disconnect_tracing): Don't call set_current_traceframe,
4124         set_tracepoint_num, and set_traceframe_context. Call
4125         trace_reset_local_state instead.
4126         (tfile_close): Call trace_reset_local_state.
4127         * ctf.c (ctf_close): Likewise.
4128         * remote.c (remote_close): Likewise.
4129         * tracepoint.h (trace_reset_local_state): Declare.
4130
4131 2013-06-06  Doug Evans  <dje@google.com>
4132
4133         * dwarf2read.c: Whitespace fixes for DWP file format documentation,
4134         and fix header docs.
4135
4136 2013-06-05  Doug Evans  <dje@google.com>
4137             Keith Seitz  <keiths@redhat.com>
4138
4139         PR 15519
4140         * cp-namespace.c (find_symbol_in_baseclass): Call
4141         cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
4142         Check result of call to lookup_symbol_static.
4143         Call lookup_static_symbol_aux unconditionally.
4144         Call check_typedef on base types before accessing them.
4145         (cp_lookup_nested_symbol): Fix comment.
4146
4147 2013-06-05  Luis Machado  <lgustavo@codesourcery.com>
4148
4149         * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
4150         minimal symbols pointing to function descriptors.
4151
4152 2013-06-05  Tom Tromey  <tromey@redhat.com>
4153
4154         * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
4155
4156 2013-06-04  Sergio Durigan Junior  <sergiodj@redhat.com>
4157             Pedro Alves  <palves@redhat.com>
4158
4159         * remote.c (remote_wait_as): Restore signal handler before returning
4160         when GDB gets a notification.
4161
4162 2013-06-04  Gary Benson  <gbenson@redhat.com>
4163
4164         PR 2328
4165         * breakpoint.h (handle_solib_event): Moved function declaration
4166         to solib.h.
4167         * breakpoint.c (handle_solib_event): Moved function to solib.c.
4168         (bpstat_stop_status): Pass new argument to handle_solib_event.
4169         * solib.h (update_solib_breakpoints): New function declaration.
4170         (handle_solib_event): Moved function declaration from
4171         breakpoint.h.
4172         * solib.c (update_solib_breakpoints): New function.
4173         (handle_solib_event): Moved function from breakpoint.c.
4174         Updated to call solib_ops->handle_event if not NULL.
4175         * solist.h (target_so_ops): New fields "update_breakpoints" and
4176         "handle_event".
4177         * infrun.c (set_stop_on_solib_events): New function.
4178         (_initialize_infrun): Use the above for "set
4179         stop-on-solib-events".
4180         (handle_inferior_event): Pass new argument to handle_solib_event.
4181         * solib-svr4.c (probe.h): New include.
4182         (svr4_free_library_list): New forward declaration.
4183         (probe_action): New enum.
4184         (probe_info): New struct.
4185         (probe_info): New static variable.
4186         (NUM_PROBES): New definition.
4187         (svr4_info): New fields "using_xfer", "probes_table" and
4188         "solib_list".
4189         (free_probes_table): New function.
4190         (free_solib_list): New function.
4191         (svr4_pspace_data_cleanup): Free probes table and solib list.
4192         (svr4_copy_library_list): New function.
4193         (svr4_current_sos_via_xfer_libraries): New parameter "annex".
4194         (svr4_read_so_list): New parameter "prev_lm".
4195         (svr4_current_sos_direct): Renamed from "svr4_current_sos".
4196         (svr4_current_sos): New function.
4197         (probe_and_action): New struct.
4198         (hash_probe_and_action): New function.
4199         (equal_probe_and_action): Likewise.
4200         (register_solib_event_probe): Likewise.
4201         (solib_event_probe_at): Likewise.
4202         (solib_event_probe_action): Likewise.
4203         (solist_update_full): Likewise.
4204         (solist_update_incremental): Likewise.
4205         (disable_probes_interface_cleanup): Likewise.
4206         (svr4_handle_solib_event): Likewise.
4207         (svr4_update_solib_event_breakpoint): Likewise.
4208         (svr4_update_solib_event_breakpoints): Likewise.
4209         (svr4_create_solib_event_breakpoints): Likewise.
4210         (enable_break): Free probes table before creating breakpoints.
4211         Use svr4_create_solib_event_breakpoints to create breakpoints.
4212         (svr4_solib_create_inferior_hook): Free the solib list.
4213         (_initialize_svr4_solib): Initialise
4214         svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
4215
4216 2013-06-04  Gary Benson  <gbenson@redhat.com>
4217
4218         * target.h (target_ops): New field
4219         "to_augmented_libraries_svr4_read".
4220         (target_augmented_libraries_svr4_read): New macro.
4221         * target.c (update_current_target): Handle
4222         to_augmented_libraries_svr4_read.
4223         * remote.c (remote_state): New field
4224         "augmented_libraries_svr4_read".
4225         (remote_augmented_libraries_svr4_read_feature): New function.
4226         (remote_protocol_features): Add entry for
4227         "augmented-libraries-svr4-read".
4228         (remote_augmented_libraries_svr4_read): New function.
4229         (init_remote_ops): Initialize
4230         remote_ops.to_augmented_libraries_svr4_read.
4231
4232 2013-06-04  Gary Benson  <gbenson@redhat.com>
4233
4234         * NEWS: Update.
4235
4236 2013-06-04  Gary Benson  <gbenson@redhat.com>
4237
4238         * objfiles.h (inhibit_section_map_updates): New function
4239         declaration.
4240         (resume_section_map_updates): Likewise.
4241         (resume_section_map_updates_cleanup): Likewise.
4242         * objfiles.c (objfile_pspace_info): Removed field
4243         "objfiles_changed_p".  New fields "new_objfiles_available",
4244         "section_map_dirty" and "inhibit_updates".
4245         (allocate_objfile): Set new_objfiles_available.
4246         (free_objfile): Set section_map_dirty.
4247         (objfile_relocate1): Likewise.
4248         (in_plt_section): Likewise.
4249         (find_pc_section): Update the conditions under which the
4250         section map will be updated.
4251         (inhibit_section_map_updates): New function.
4252         (resume_section_map_updates): Likewise.
4253         (resume_section_map_updates_cleanup): Likewise.
4254
4255 2013-06-04  Gary Benson  <gbenson@redhat.com>
4256
4257         * probe.h (get_probe_argument_count): New declaration.
4258         (evaluate_probe_argument): Likewise.
4259         * probe.c (get_probe_argument_count): New function.
4260         (evaluate_probe_argument): Likewise.
4261         (probe_safe_evaluate_at_pc): Use the above new functions.
4262
4263 2013-06-04  Alan Modra  <amodra@gmail.com>
4264
4265         * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
4266         * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
4267         (ppc_insns_match_pattern): Add frame param.  Avoid multiple
4268         target mem reads on optional insns.
4269         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
4270         ppc_insns_match_pattern calls.
4271         * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
4272         Add match for power7 thread safety insns, and new order of
4273         std 2,40(1) insn.  Correct code shown for _dl_runtime_resolve
4274         invocation in comment, and update rest of comment.
4275         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
4276         PPC64_STANDARD_LINKAGE3_LEN): Delete.
4277         (ppc64_standard_linkage2_target): Update insn offsets.
4278         (ppc64_skip_trampoline_code): Use a single insn buffer.  Match newer
4279         stubs first.  Update calls.
4280
4281 2013-06-04  Yao Qi  <yao@codesourcery.com>
4282
4283         * solib.c (solib_find): Don't need dir separator if path has
4284         drive spec.
4285
4286 2013-06-03  Joel Brobecker  <brobecker@adacore.com>
4287
4288         Revert (indirectly causes a SIGSEGV):
4289         * machoread.c (macho_symfile_read): Assign first cleanup to
4290         'back_to'.
4291
4292 2013-06-03  Yao Qi  <yao@codesourcery.com>
4293
4294         * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
4295         mi-parse.c.  Make them static.
4296         (mi_all_values): Likewise.
4297         (mi_parse_values_option): Move to mi-parse.c.  Rename it to
4298         mi_parse_print_values.  Make it external.
4299         * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
4300         Remove the declarations.
4301         * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
4302         * mi/mi-parse.h (mi_parse_print_values): Declare.
4303         * mi/mi-cmd-stack.c: Include mi-parse.h.
4304         (parse_print_values): Remove
4305         (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
4306         of parse_print_values.
4307         (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
4308
4309 2013-05-31  Pedro Alves  <pedro@codesourcery.com>
4310             Yao Qi  <yao@codesourcery.com>
4311
4312         * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
4313         (encode_actions): Move code to ...
4314         (all_tracepoint_actions_and_cleanup): ... here.  New.
4315         (trace_dump_command): Likewise.
4316
4317 2013-05-30  Tom Tromey  <tromey@redhat.com>
4318
4319         * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
4320
4321 2013-05-30  Tom Tromey  <tromey@redhat.com>
4322
4323         * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
4324         gdb_xml_create_parser_and_cleanup_1.  Return a cleanup.  Remove
4325         'old_chain' argument.  Add 'parser_result' argument.
4326         (gdb_xml_create_parser_and_cleanup): Remove old version.
4327         (gdb_xml_parse_quick): Update.
4328         (xml_process_xincludes): Update.
4329         * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
4330         declare.
4331
4332 2013-05-30  Tom Tromey  <tromey@redhat.com>
4333
4334         * probe.c (collect_probes): Check arguments for NULL before
4335         calling compile_rx_or_error.
4336         * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
4337         Remove NULL return.
4338
4339 2013-05-30  Tom Tromey  <tromey@redhat.com>
4340
4341         * infrun.c (adjust_pc_after_break): Introduce an outer null
4342         cleanup.
4343
4344 2013-05-30  Tom Tromey  <tromey@redhat.com>
4345
4346         * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
4347
4348 2013-05-30  Tom Tromey  <tromey@redhat.com>
4349
4350         * cli/cli-script.c (read_command_lines_1): Use a null cleanup
4351         for 'old_chain'.  Do not check 'head' before processing
4352         cleanups.
4353
4354 2013-05-30  Tom Tromey  <tromey@redhat.com>
4355
4356         * mi/mi-cmd-stack.c (list_arg_or_local): Remove
4357         "cleanup_tuple".
4358
4359 2013-05-30  Tom Tromey  <tromey@redhat.com>
4360
4361         * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
4362         inner scope.  Unconditionally call do_cleanups.
4363
4364 2013-05-30  Tom Tromey  <tromey@redhat.com>
4365
4366         * source.c (find_and_open_source): Call do_cleanups.
4367
4368 2013-05-30  Tom Tromey  <tromey@redhat.com>
4369
4370         * linux-thread-db.c (thread_db_load_search): Unconditionally
4371         call do_cleanups.
4372
4373 2013-05-30  Tom Tromey  <tromey@redhat.com>
4374
4375         * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
4376         for 'cleanup'; instead use a later one.
4377
4378 2013-05-30  Tom Tromey  <tromey@redhat.com>
4379
4380         * python/py-breakpoint.c (bppy_get_commands): Use
4381         explicit, unconditional return.
4382         * python/py-frame.c (frapy_read_var): Likewise.
4383         * python/python.c (gdbpy_decode_line): Likewise.
4384
4385 2013-05-30  Tom Tromey  <tromey@redhat.com>
4386
4387         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
4388         do_cleanups on all return paths.
4389
4390 2013-05-30  Tom Tromey  <tromey@redhat.com>
4391
4392         * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
4393
4394 2013-05-30  Tom Tromey  <tromey@redhat.com>
4395
4396         * stabsread.c (read_struct_type): Call do_cleanups along
4397         all return paths.
4398
4399 2013-05-30  Maciej W. Rozycki  <macro@codesourcery.com>
4400
4401         * mips-linux-tdep.c: Adjust formatting throughout.
4402
4403 2013-05-30  Tom Tromey  <tromey@redhat.com>
4404
4405         * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
4406         along all return paths.
4407
4408 2013-05-30  Tom Tromey  <tromey@redhat.com>
4409
4410         * symfile.c (find_separate_debug_file): Call do_cleanups
4411         along all return paths.
4412
4413 2013-05-30  Tom Tromey  <tromey@redhat.com>
4414
4415         * symtab.c (search_symbols): Introduce a null cleanup for
4416         'retval_chain'.
4417
4418 2013-05-30  Tom Tromey  <tromey@redhat.com>
4419
4420         * python/py-value.c (valpy_binop): Call do_cleanups before
4421         exiting loop.
4422
4423 2013-05-30  Tom Tromey  <tromey@redhat.com>
4424
4425         * python/py-prettyprint.c (print_children): Remove extra
4426         do_cleanups call.
4427
4428 2013-05-30  Tom Tromey  <tromey@redhat.com>
4429
4430         * python/py-frame.c (frapy_read_var): Call do_cleanups along
4431         all return paths.
4432
4433 2013-05-30  Tom Tromey  <tromey@redhat.com>
4434
4435         * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
4436         along all return paths.
4437
4438 2013-05-30  Tom Tromey  <tromey@redhat.com>
4439
4440         * cli/cli-logging.c (set_logging_redirect): Unconditionally
4441         call do_cleanups.
4442
4443 2013-05-30  Tom Tromey  <tromey@redhat.com>
4444
4445         * varobj.c (c_value_of_root): Call do_cleanups along all
4446         return paths.
4447
4448 2013-05-30  Tom Tromey  <tromey@redhat.com>
4449
4450         * tracepoint.c (trace_dump_command): Unconditionally call
4451         do_cleanups.
4452
4453 2013-05-30  Tom Tromey  <tromey@redhat.com>
4454
4455         * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
4456         do_cleanups earlier.
4457
4458 2013-05-30  Tom Tromey  <tromey@redhat.com>
4459
4460         * machoread.c (macho_symfile_read): Assign first cleanup to
4461         'back_to'.
4462
4463 2013-05-30  Tom Tromey  <tromey@redhat.com>
4464
4465         * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
4466
4467 2013-05-30  Tom Tromey  <tromey@redhat.com>
4468
4469         * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
4470
4471 2013-05-30  Tom Tromey  <tromey@redhat.com>
4472
4473         * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
4474         call discard_cleanups.
4475         (inf_ptrace_attach): Likewise.
4476
4477 2013-05-30  Tom Tromey  <tromey@redhat.com>
4478
4479         * remote-mips.c (mips_exit_debug): Call do_cleanups on all
4480         return paths.
4481         (mips_initialize): Likewise.
4482         (common_open): Call do_cleanups.
4483
4484 2013-05-30  Tom Tromey  <tromey@redhat.com>
4485
4486         * utils.c (internal_vproblem): Call do_cleanups.
4487
4488 2013-05-30  Tom Tromey  <tromey@redhat.com>
4489
4490         * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
4491
4492 2013-05-30  Tom Tromey  <tromey@redhat.com>
4493
4494         * cli/cli-script.c (setup_user_args): Don't return after error.
4495
4496 2013-05-30  Tom Tromey  <tromey@redhat.com>
4497
4498         * somread.c (som_symtab_read): Call do_cleanups.
4499
4500 2013-05-30  Tom Tromey  <tromey@redhat.com>
4501
4502         * printcmd.c (print_command_1): Unconditionally call do_cleanups.
4503
4504 2013-05-30  Tom Tromey  <tromey@redhat.com>
4505
4506         * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
4507         * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
4508         * interps.c (interpreter_exec_cmd): Call do_cleanups.
4509         * source.c (show_substitute_path_command): Call do_cleanups.
4510         (unset_substitute_path_command, set_substitute_path_command):
4511         Likewise.
4512         * symfile.c (load_command): Call do_cleanups.
4513
4514 2013-05-30  Tom Tromey  <tromey@redhat.com>
4515
4516         * contrib/cleanup_check.py: New file.
4517         * contrib/gcc-with-excheck: Add option parsing.
4518
4519 2013-05-30  Joel Brobecker  <brobecker@adacore.com>
4520
4521         * windows-nat.c (windows_delete_thread): Add missing space
4522         in cast expression.
4523
4524 2013-05-30  Hafiz Abid Qadeer  <abidh@codesourcery.com>
4525
4526         * inferior.c (top level): Include tilde.h.
4527         (add_inferior_command): Call tilde_expand on the value of 'exec'
4528         argument.
4529
4530 2013-05-30  Pedro Alves  <pedro@codesourcery.com>
4531             Yao Qi  <yao@codesourcery.com>
4532
4533         * tracepoint.c (encode_actions_1): Remove parameter 't'.
4534         Caller update.
4535         (encode_actions): Likewise.
4536         * remote.c (remote_download_tracepoint): Caller update.
4537         * tracepoint.h (encode_actions): Update declaration.
4538
4539 2013-05-30  Pedro Alves  <palves@redhat.com>
4540
4541         * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
4542         pointer.
4543
4544 2013-05-30  Yao Qi  <yao@codesourcery.com>
4545
4546         * remote.c (remote_check_symbols): Remove unused parameter
4547         'objfile'.
4548         Declaration update.
4549         (remote_start_remote, remote_new_objfile): Caller update.
4550
4551 2013-05-30  Yao Qi  <yao@codesourcery.com>
4552
4553         * mi/mi-cmds.c (mi_cmds): Define MI command
4554         '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
4555         DEF_MI_CMD_CLI.
4556
4557 2013-05-29  Pedro Alves  <palves@redhat.com>
4558
4559         * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
4560         (remote_insert_watchpoint, remote_remove_watchpoint)
4561         (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
4562         (remote_verify_memory, compare_sections_command)
4563         (remote_search_memory): Set the general process/thread on the
4564         remote side.
4565
4566 2013-05-29  Pedro Alves  <palves@redhat.com>
4567
4568         * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
4569         (_initialize_aarch64_tdep): Don't call
4570         initialize_tdesc_aarch64_without_fpu.
4571         * features/Makefile (WHICH): Remove reference to
4572         aarch64-without-fpu.
4573         * features/aarch64-without-fpu.c: Delete file.
4574         * regformats/aarch64-without-fpu.dat: Delete file.
4575
4576 2013-05-28  Yao Qi  <yao@codesourcery.com>
4577
4578         * tracepoint.c (stringify_collection_list): Remove parameter
4579         'string'.
4580         (encode_actions): Caller update.  Remove local variables.
4581
4582 2013-05-24  Yao Qi  <yao@codesourcery.com>
4583
4584         * tracepoint.c (TFILE_PID): Remove.
4585         (tfile_open): Don't add thread and inferior.
4586         (tfile_close): Don't set 'inferior_ptid'.  Don't call
4587         exit_inferior_silent.
4588         (tfile_thread_alive): Remove.
4589         (init_tfile_ops): Don't set field 'to_thread_alive' of
4590         tfile_ops.
4591
4592 2013-05-23  Doug Evans  <dje@google.com>
4593
4594         * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
4595
4596 2013-05-23  Pedro Alves  <palves@redhat.com>
4597
4598         * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
4599         [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
4600         (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
4601         Only define if HAVE_SOCKETS is defined.
4602         * configure.ac: Check for sys/socket.h.
4603         * config.in, configure: Regenerate.
4604
4605 2013-05-23  Pedro Alves  <palves@redhat.com>
4606
4607         * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
4608         (open_and_init_dwp_file): Use %s/pulongest instead of %u for
4609         printing uint32_t variables.
4610
4611 2013-05-23  Pedro Alves  <palves@redhat.com>
4612
4613         * NEWS: Mention GDBserver range stepping support.
4614
4615 2013-05-23  Yao Qi  <yao@codesourcery.com>
4616             Pedro Alves  <palves@redhat.com>
4617
4618         * gdbthread.h (struct thread_control_state) <may_range_step>: New
4619         field.
4620         * infcmd.c (step_once, until_next_command): Enable range stepping.
4621         * infrun.c (displaced_step_prepare): Disable range stepping.
4622         (resume): Disable range stepping if stepping over a breakpoint or
4623         we have software watchpoints.  If range stepping is enabled,
4624         assert the thread is in the stepping range.
4625         (clear_proceed_status_thread): Clear may_range_step.
4626         (handle_inferior_event): Disable range stepping as soon as we know
4627         the thread that hit the event.  Re-enable it whenever we're going
4628         to step with a step range.
4629         * remote.c (struct vCont_action_support) <r>: New field.
4630         (use_range_stepping): New global.
4631         (remote_vcont_probe): Handle 'r' action.
4632         (append_resumption): Append an 'r' action if the thread may range
4633         step.
4634         (show_range_stepping): New function.
4635         (set_range_stepping): New function.
4636         (_initialize_remote): Call add_setshow_boolean_cmd to register the
4637         'set range-stepping' and 'show range-stepping' commands.
4638         * NEWS: Mention range stepping, the new vCont;r action, and the
4639         new "set/show range-stepping" commands.
4640
4641 2013-05-23  Yao Qi  <yao@codesourcery.com>
4642             Pedro Alves  <palves@redhat.com>
4643
4644         * remote.c (struct vCont_action_support): New struct.
4645         (struct remote_state) <support_vCont_t>: Remove field.
4646         <vCont_actions_support>: New field.
4647         (remote_vcont_probe, remote_stop_ns): Update.
4648
4649 2013-05-23  Yao Qi  <yao@codesourcery.com>
4650             Pedro Alves  <palves@redhat.com>
4651
4652         * gdbthread.h (pc_in_thread_step_range): New declaration.
4653         * thread.c (pc_in_thread_step_range): New function.
4654         * infrun.c (handle_inferior_event): Use it.
4655
4656 2013-05-23  Joel Brobecker  <brobecker@adacore.com>
4657
4658         * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
4659         of sprintf.
4660
4661 2013-05-22  Keith Seitz  <keiths@redhat.com>
4662
4663         * ada-lang.c (is_known_support_routine): Add explicit free of
4664         'func_name' from find_frame_funname.
4665         (ada_unhandled_exception_name_addr_from_raise): Add cleanups
4666         for func_name from find_frame_funname.
4667         * python/py-frame.c (frapy_name): Add explicit free of
4668         'name' from find_frame_funname.
4669         * stack.c (find_frame_funname): Add comment explaining that
4670         funcp must be freed by the caller.
4671         Return copy of symbol names instead of pointers.
4672         (print_frame): Add a cleanup for 'funname' from
4673         find_frame_funname.
4674         * stack.h (find_frame_funname): Remove "const" from
4675         'funname' parameter.
4676
4677 2013-05-22  Tom Tromey  <tromey@redhat.com>
4678
4679         PR c++/15401:
4680         * c-valprint.c (c_value_print): Use value_addr for
4681         references.  Convert back to reference type with value_ref.
4682
4683 2013-05-22  Eli Zaretskii  <eliz@gnu.org>
4684
4685         * windows-nat.c (handle_unload_dll): Don't call solib_add for the
4686         unloaded DLL, it will be done by handle_solib_event.  See
4687         http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
4688         details.
4689
4690 2013-05-22  Phil Muldoon  <pmuldoon@redhat.com>
4691
4692         * ui-out.c: Create typedef ui_out_level_p and define vector
4693         operations for that type.
4694         (struct ui_out): Use a vector instead of an array.
4695         (current_level): Return level from a vector.
4696         (push_level): Create a level in a vector.
4697         (pop_level): Delete a level in a vector.
4698         (ui_out_new): Create initial level zero level, and store in a
4699         vector.
4700         (ui_out_destroy): Add vector cleanup.
4701
4702 2013-05-22  Pedro Alves  <palves@redhat.com>
4703
4704         * python/python-internal.h (gdb_Py_DECREF): Tag with
4705         "ARI: editCase function".
4706
4707 2013-05-21  Paul Pluzhnikov  <ppluzhnikov@google.com>
4708
4709         * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
4710
4711 2013-05-21  Pedro Alves  <palves@redhat.com>
4712
4713         * python/py-prettyprint.c (apply_val_pretty_printer): Check
4714         whether PRINTER is NULL before installing a Py_DECREF cleanup.
4715         * python/py-utils.c (py_decref): Don't check for NULL before
4716         calling Py_DECREF.
4717
4718 2013-05-21  Pedro Alves  <palves@redhat.com>
4719
4720         * python/py-utils.c (py_decref): Remove extra braces.
4721         (gdb_pymodule_addobject): Remove extra braces.
4722         * python-internal.h (gdb_Py_DECREF): New static inline function.
4723         (Py_DECREF): Redefine as calling gdb_Py_DECREF.
4724
4725 2013-05-21  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
4726
4727         * breakpoints.c (detach_breakpoints): Do not
4728         detach breakpoints locations with loc_type bp_loc_other.
4729
4730 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
4731
4732         Workaround Python 2.6.
4733         * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
4734         a block.
4735
4736 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
4737
4738         Code cleanup: constification.
4739         * solib.c (solib_ops): Make return type and ops variable type const.
4740         (set_solib_ops): Make the new_ops parameter and ops variable const.
4741         (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
4742         (solib_add, solib_keep_data_in_core, clear_solib)
4743         (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
4744         (reload_shared_libraries, solib_global_lookup): Make the ops variable
4745         const.
4746         * solib.h (set_solib_ops): Make the new_ops parameter const.
4747
4748 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
4749
4750         * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
4751         variable.
4752         (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
4753         (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
4754         (SYSTEM_GDBINIT_FILES): New variables.
4755         (all): Add stamp-system-gdbinit.
4756         (stamp-system-gdbinit): New rule.
4757         (clean-system-gdbinit, install-system-gdbinit)
4758         (uninstall-system-gdbinit): New rules.  Make them .PHONY.
4759         (install-only): Add dependency on install-system-gdbinit.
4760         (uninstall): Add dependency on uninstall-system-gdbinit.
4761         (clean): Add dependency on clean-system-gdbinit.
4762         * system-gdbinit/elinos.py: New file.
4763         * system-gdbinit/wrs-linux.py: New file.
4764
4765 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
4766
4767         * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
4768
4769 2013-05-21  Hui Zhu  <hui@codesourcery.com>
4770
4771         * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
4772         * breakpoint.h (dprintf_breakpoint_ops): Add extern.
4773         * mi/mi-cmd-break.c (ctype.h): New include.
4774         (gdb_obstack.h): New include.
4775         (mi_argv_to_format, mi_cmd_break_insert_1): New.
4776         (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
4777         (mi_cmd_dprintf_insert): New.
4778         * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
4779         * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
4780
4781 2013-05-20  Tom Tromey  <tromey@redhat.com>
4782
4783         * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
4784
4785 2013-05-20  Tom Tromey  <tromey@redhat.com>
4786
4787         * python/py-value.c (valpy_get_dynamic_type): Simplify
4788         dynamic_type assignment.  Use Py_XINCREF.
4789
4790 2013-05-20  Tom Tromey  <tromey@redhat.com>
4791
4792         * python/py-type.c (typy_fields): Unconditionally decref 'r'.
4793
4794 2013-05-20  Tom Tromey  <tromey@redhat.com>
4795
4796         * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
4797         (gdbpy_selected_frame): Move object-construction code
4798         out of TRY_CATCH.
4799
4800 2013-05-20  Tom Tromey  <tromey@redhat.com>
4801
4802         * python/py-arch.c (gdbpy_initialize_arch): Use
4803         gdb_pymodule_addobject.
4804         * python/py-block.c (gdbpy_initialize_blocks): Use
4805         gdb_pymodule_addobject.
4806         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
4807         gdb_pymodule_addobject.
4808         * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
4809         gdb_pymodule_addobject.
4810         * python/py-event.c (gdbpy_initialize_event_generic): Use
4811         gdb_pymodule_addobject.
4812         * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
4813         gdb_pymodule_addobject.
4814         * python/py-evts.c (add_new_registry): Use
4815         gdb_pymodule_addobject.
4816         (gdbpy_initialize_py_events): Likewise.
4817         * python/py-finishbreakpoint.c
4818         (gdbpy_initialize_finishbreakpoints): Use
4819         gdb_pymodule_addobject.
4820         * python/py-frame.c (gdbpy_initialize_frames): Use
4821         gdb_pymodule_addobject.
4822         * python/py-function.c (gdbpy_initialize_functions): Use
4823         gdb_pymodule_addobject.
4824         * python/py-inferior.c (gdbpy_initialize_inferior): Use
4825         gdb_pymodule_addobject.
4826         * python/py-infthread.c (gdbpy_initialize_thread): Use
4827         gdb_pymodule_addobject.
4828         * python/py-objfile.c (gdbpy_initialize_objfile): Use
4829         gdb_pymodule_addobject.
4830         * python/py-param.c (gdbpy_initialize_parameters): Use
4831         gdb_pymodule_addobject.
4832         * python/py-progspace.c (gdbpy_initialize_pspace): Use
4833         gdb_pymodule_addobject.
4834         * python/py-symbol.c (gdbpy_initialize_symbols): Use
4835         gdb_pymodule_addobject.
4836         * python/py-symtab.c (gdbpy_initialize_symtabs): Use
4837         gdb_pymodule_addobject.
4838         * python/py-type.c (gdbpy_initialize_types): Use
4839         gdb_pymodule_addobject.
4840         * python/py-utils.c (gdb_pymodule_addobject): New function.
4841         * python/py-value.c (gdbpy_initialize_values): Use
4842         gdb_pymodule_addobject.
4843         * python/python-internal.h (gdb_pymodule_addobject): Declare.
4844         * python/python.c (_initialize_python): Use
4845         gdb_pymodule_addobject.
4846
4847 2013-05-20  Tom Tromey  <tromey@redhat.com>
4848
4849         * python/py-cmd.c (cmdpy_completer): Use explicit decref.
4850         * python/py-param.c (get_set_value, get_show_value): Use
4851         explicit decrefs.
4852         * python/python.c (start_type_printers, apply_type_printers):
4853         Use explicit decrefs.
4854
4855 2013-05-20  Tom Tromey  <tromey@redhat.com>
4856
4857         * python/py-evts.c (gdbpy_initialize_py_events): Don't
4858         incref the module.
4859
4860 2013-05-20  Tom Tromey  <tromey@redhat.com>
4861
4862         * python/python.c (gdbpy_run_events): Decref the result
4863         of PyObject_CallObject.
4864
4865 2013-05-20  Tom Tromey  <tromey@redhat.com>
4866
4867         * python/py-symtab.c (set_sal): Use
4868         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.  Return -1 on error.
4869         (symtab_and_line_to_sal_object): Update.
4870
4871 2013-05-20  Tom Tromey  <tromey@redhat.com>
4872
4873         * python/py-param.c (compute_enum_values): Decref 'item'.
4874
4875 2013-05-20  Tom Tromey  <tromey@redhat.com>
4876
4877         * mi/mi-main.c: Include python-internal.h.
4878         (mi_cmd_list_features): Check gdb_python_initialized.
4879         * python/py-inferior.c (python_on_normal_stop, python_on_resume)
4880         (python_inferior_exit, python_new_objfile, add_thread_object)
4881         (delete_thread_object, py_free_inferior): Check
4882         gdb_python_initialized.
4883         * python/py-prettyprint.c (apply_val_pretty_printer): Check
4884         gdb_python_initialized.
4885         * python/py-type.c (save_objfile_types): Check
4886         gdb_python_initialized.
4887         * python/python-internal.h (gdb_python_initialized): Declare.
4888         * python/python.c (ensure_python_env): Throw exception if
4889         Python not initialized.
4890         (before_prompt_hook, source_python_script_for_objfile)
4891         (start_type_printers, apply_type_printers,
4892         free_type_printers): Check gdb_python_initialized.
4893         * varobj.c (varobj_get_display_hint)
4894         (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
4895         (install_new_value_visualizer, varobj_set_visualizer)
4896         (value_get_print_value): Check gdb_python_initialized.
4897
4898 2013-05-20  Tom Tromey  <tromey@redhat.com>
4899
4900         * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
4901         Check errors.
4902         * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
4903         * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
4904         Check errors.
4905         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
4906         Check errors.
4907         * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
4908         Check errors.
4909         * python/py-event.c (gdbpy_initialize_event): Return 'int'.
4910         Check errors.
4911         * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
4912         init function to return 'int'.
4913         * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
4914         Return 'int'.  Check errors.
4915         * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
4916         Check errors.
4917         * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
4918         Return 'int'.  Check errors.
4919         * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
4920         Check errors.
4921         * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
4922         Check errors.
4923         * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
4924         Check errors.
4925         * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
4926         Check errors.
4927         * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
4928         Check errors.
4929         * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
4930         Check errors.
4931         * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
4932         Check errors.
4933         * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
4934         Check errors.
4935         * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
4936         Check errors.
4937         * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
4938         Check errors.
4939         * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
4940         Check errors.
4941         * python/py-type.c (gdbpy_initialize_types): Return 'int'.
4942         Check errors.
4943         * python/py-value.c (gdbpy_initialize_values): Return 'int'.
4944         Check errors.
4945         * python/python-internal.h (gdbpy_initialize_auto_load,
4946         gdbpy_initialize_values, gdbpy_initialize_frames,
4947         gdbpy_initialize_symtabs, gdbpy_initialize_commands,
4948         gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
4949         gdbpy_initialize_blocks, gdbpy_initialize_types,
4950         gdbpy_initialize_functions, gdbpy_initialize_pspace,
4951         gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
4952         gdbpy_initialize_finishbreakpoints,
4953         gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
4954         gdbpy_initialize_thread, gdbpy_initialize_inferior,
4955         gdbpy_initialize_eventregistry, gdbpy_initialize_event,
4956         gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
4957         gdbpy_initialize_signal_event,
4958         gdbpy_initialize_breakpoint_event,
4959         gdbpy_initialize_continue_event,
4960         gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
4961         gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
4962         Update.  Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
4963         * python/python.c (gdb_python_initialized): New global.
4964         (gdbpy_initialize_events): Return 'int'.  Check errors.
4965         (_initialize_python): Check errors.  Set
4966         gdb_python_initialized.
4967
4968 2013-05-20  Tom Tromey  <tromey@redhat.com>
4969
4970         * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
4971         Decref the reslut of PyObject_CallMethod.
4972
4973 2013-05-20  Tom Tromey  <tromey@redhat.com>
4974
4975         * python/py-event.c (gdbpy_initialize_event_generic): Return
4976         early if PyType_Ready fails.
4977
4978 2013-05-20  Tom Tromey  <tromey@redhat.com>
4979
4980         * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
4981         as 'default' in the switch.
4982
4983 2013-05-20  Tom Tromey  <tromey@redhat.com>
4984
4985         * python/py-inferior.c (gdbpy_inferiors): Update.  Hoist
4986         get_addr_from_python calls out of TRY_CATCH.
4987         (infpy_write_memory, infpy_search_memory): Likewise.
4988         * python/py-utils.c (get_addr_from_python): Return negative
4989         value on error.  Use TRY_CATCH.
4990         * python/python-internal.h (get_addr_from_python): Use
4991         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
4992
4993 2013-05-20  Tom Tromey  <tromey@redhat.com>
4994
4995         * python/py-event.c (evpy_emit_event): Decref the
4996         result of PyObject_CallFunctionObjArgs.
4997
4998 2013-05-20  Tom Tromey  <tromey@redhat.com>
4999
5000         * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
5001         Correctly decref.
5002
5003 2013-05-20  Tom Tromey  <tromey@redhat.com>
5004
5005         * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
5006
5007 2013-05-20  Tom Tromey  <tromey@redhat.com>
5008
5009         * python/py-event.h (gdbpy_initialize_event_generic): Use
5010         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5011         * python/py-evts.c (add_new_registry): Use
5012         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5013         * python/python-internal.h
5014         (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
5015
5016 2013-05-20  Tom Tromey  <tromey@redhat.com>
5017
5018         * python/py-arch.c (archpy_disassemble): Update.
5019         * python/py-type.c (typy_get_composite, typy_lookup_typename)
5020         (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
5021         * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
5022         * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
5023         macro.
5024         (GDB_PY_HANDLE_EXCEPTION): Update.
5025         (gdbpy_convert_exception): Update.  Use CPYCHECKER_SETS_EXCEPTION.
5026
5027 2013-05-20  Tom Tromey  <tromey@redhat.com>
5028
5029         * python/python-internal.h (events_object_type): Remove.
5030
5031 2013-05-20  Tom Tromey  <tromey@redhat.com>
5032
5033         * python/py-event.h (evpy_emit_event): Use
5034         CPYCHECKER_STEALS_REFERENCE_TO_ARG.
5035         * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
5036         New macro.
5037
5038 2013-05-20  Tom Tromey  <tromey@redhat.com>
5039
5040         * py-evtregistry.c (create_event_object): Decref
5041         eventregistry_object if PyList_New fails.
5042
5043 2013-05-20  Tom Tromey  <tromey@redhat.com>
5044
5045         * py-cmd.c (gdbpy_string_to_argv): Check result of
5046         PyList_New.
5047
5048 2013-05-20  Tom Tromey  <tromey@redhat.com>
5049
5050         * python/python.c (before_prompt_hook): Add cleanup to
5051         decref 'hook'.
5052
5053 2013-05-20  Tom Tromey  <tromey@redhat.com>
5054
5055         * python/py-function.c (fnpy_init): Decref result of
5056         PyObject_GetAttrString.
5057
5058 2013-05-20  Tom Tromey  <tromey@redhat.com>
5059
5060         * python/py-threadevent.c (get_event_thread): Use
5061         CPYCHECKER_RETURNS_BORROWED_REF.
5062         * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
5063         New define.
5064         (pspace_to_pspace_object, objfile_to_objfile_object)
5065         (find_thread_object): Use it.
5066
5067 2013-05-20  Tom Tromey  <tromey@redhat.com>
5068
5069         * python/py-arch.c (arch_object_type): Use
5070         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5071         * python/py-block.c (block_syms_iterator_object_type):
5072         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5073         * python/py-bpevent.c (breakpoint_event_object_type):
5074         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5075         * python/py-cmd.c (cmdpy_object_type): Use
5076         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5077         * python/py-continueevent.c (continue_event_object_type):
5078         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5079         * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
5080         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5081         * python/py-events.h (thread_event_object_type):
5082         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5083         * python/py-evtregistry.c (eventregistry_object_type): Use
5084         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5085         * python/py-exitedevent.c (exited_event_object_type):
5086         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5087         * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
5088         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5089         * python/py-function.c (fnpy_object_type): Use
5090         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5091         * python/py-inferior.c (inferior_object_type, membuf_object_type):
5092         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5093         * python/py-infthread.c (thread_object_type): Use
5094         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5095         * python/py-lazy-string.c (lazy_string_object_type):
5096         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5097         * python/py-newobjfileevent.c (new_objfile_event_object_type):
5098         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5099         * python/py-objfile.c (objfile_object_type): Use
5100         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5101         * python/py-param.c (parmpy_object_type):
5102         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5103         * python/py-progspace.c (pspace_object_type):
5104         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5105         * python/py-signalevent.c (signal_event_object_type):
5106         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5107         * python/py-symtab.c (symtab_object_type, sal_object_type): Use
5108         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5109         * python/py-type.c (type_object_type, field_object_type)
5110         (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5111         * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
5112         define.
5113         (value_object_type, block_object_type, symbol_object_type)
5114         (event_object_type, stop_event_object_type, breakpoint_object_type)
5115         (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5116
5117 2013-05-20  Andreas Tobler  <andreas@fgznet.ch>
5118
5119         * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
5120         (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
5121
5122 2013-05-20  Doug Evans  <dje@google.com>
5123
5124         When reading CU, stay in DWO.  Be more tolerent of bad debug info.
5125         For Fission.
5126         * dwarf2read.c (struct dwarf2_per_cu_data): New member
5127         reading_dwo_directly.
5128         (struct signatured_type): New member dwo_unit.
5129         (struct die_reader_specs): New member comp_dir.
5130         (create_signatured_type_table_from_index): Use malloc for
5131         all_type_units instead of objfile's obstack.
5132         (create_all_type_units): Ditto.
5133         (fill_in_sig_entry_from_dwo_entry): New function.
5134         (add_type_unit): New function.
5135         (lookup_dwo_signatured_type): New function.
5136         (lookup_dwp_signatured_type): New function.
5137         (lookup_signatured_type): New arg cu.  All callers updated.
5138         (init_cu_die_reader): Initialize comp_dir.
5139         (read_cutu_die_from_dwo): New arg stub_comp_dir.  All callers updated.
5140         Change assert of matching type signatures to call error on mismatch.
5141         (lookup_dwo_unit): Add assert.
5142         (init_tu_and_read_dwo_dies): New function.
5143         (init_cutu_and_read_dies): Call it.
5144         (build_type_unit_groups): Handle case of no type unit groups created.
5145         (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
5146         (lookup_dwo_cutu): Tweak complaint.
5147         (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
5148         (dwarf2_per_objfile_free): Free all_type_units.
5149
5150 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
5151
5152         * windows-nat.c (handle_unload_dll): Add missing empty line.
5153
5154 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
5155
5156         * dwarf2read.c (prototyped_function_p): New function.
5157         (read_subroutine_type): Use it.
5158
5159 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
5160
5161         * rs6000-aix-tdep.c: De-indent some example code provided
5162         as a comment.
5163
5164 2013-05-17  Edjunior Machado  <emachado@linux.vnet.ibm.com>
5165
5166         * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
5167         region is ok for a hardware watchpoint using the new ptrace interface
5168         on Power servers.
5169
5170 2013-05-17  Doug Evans  <dje@google.com>
5171
5172         * NEWS: Mention new maintenance commands check-symtabs, and
5173         expand-symtabs, and renamed check-psymtabs.
5174         * psymtab.c (maintenance_check_psymtabs): Renamed from
5175         maintenance_check_symtabs.  Only process already-expanded symbol
5176         tables.
5177         (_initialize_psymtab): Update.
5178         * symmisc.c (maintenance_check_symtabs): New function.
5179         (maintenance_expand_name_matcher): New function
5180         (maintenance_expand_file_matcher): New function
5181         (maintenance_expand_symtabs): New function.
5182         (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
5183         commands.
5184
5185 2013-05-17  Tom Tromey  <tromey@redhat.com>
5186
5187         * python/py-inferior.c (infpy_read_memory): Don't call
5188         PyErr_SetString if PyObject_New fails.
5189         * python/py-frame.c (frame_info_to_frame_object): Don't call
5190         PyErr_SetString if PyObject_New fails.
5191
5192 2013-05-17  Pavel Chupin  <pavel.v.chupin@intel.com>
5193
5194         * acinclude.m4: Add check for dlopen in libdl.
5195         * configure.ac: Ditto.
5196         * configure: Regenerate.
5197
5198 2013-05-17  Phil Muldoon  <pmuldoon@redhat.com>
5199
5200         * frame.c (frame_stash): Convert to htab.
5201         (frame_addr_hash): New function.
5202         (frame_addr_hash_eq): New function.
5203         (frame_stash_create): Convert function to create
5204         a hash table.
5205         (frame_stash_add): Convert function to add an entry to a hash
5206         table.
5207         (frame_stash_find): Convert function to search the hash table.
5208         (frame_stash_invalidate): Convert function to empty the hash
5209         table.
5210         (get_frame_id): Only add to stash if a frame_id is created.
5211         (_initialize_frame): Call frame_stash_create.
5212
5213 2013-05-16  Yue Lu  <hacklu.newborn@gmail.com>  (tiny change)
5214
5215         * configure.ac: Ensure MIG is available when building for GNU Hurd
5216         hosts.
5217         * configure: Regenerate.
5218
5219 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
5220
5221         * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
5222
5223 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
5224
5225         * ada-lang.c (ada_make_symbol_completion_list): Make sure
5226         all cleanups are done before returning from this function.
5227
5228 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
5229
5230         * utils.h: #include "exceptions.h".
5231         (enum errors): Remove partial declaration.
5232
5233 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
5234
5235         * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
5236         * gdbarch.h, gdbarch.c: Regenerate.
5237         * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
5238         handling.
5239
5240         * rs6000-aix-tdep.h: New file.
5241         * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
5242         * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
5243         "xml-utils.h".
5244         (struct field_info, struct ld_info_desc): New types.
5245         (ld_info32_desc, ld_info64_desc): New static constants.
5246         (struct ld_info): New type.
5247         (rs6000_aix_extract_ld_info): New function.
5248         (rs6000_aix_shared_library_to_xml): Likewise.
5249         (rs6000_aix_ld_info_to_xml): Likewise.
5250         (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
5251         (rs6000_aix_init_osabi): Add call to
5252         set_gdbarch_core_xfer_shared_libraries_aix.
5253         * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
5254         Remove "xml-utils.h" include.
5255         (LdInfo): Delete typedef.
5256         (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
5257         Delete macros.
5258         (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
5259         Adjust code accordingly.
5260         (rs6000_core_ldinfo): Delete, folded into
5261         rs6000_aix_core_xfer_shared_libraries_aix.
5262         (rs6000_xfer_shared_library): Delete.
5263         (rs6000_xfer_shared_libraries): Reimplement.
5264
5265 2013-05-15  Markus Metzger  <markus.t.metzger@intel.com>
5266
5267         * record.c (record_goto_cmdlist): New.
5268         (cmd_record_goto): Split into this ...
5269         (cmd_record_goto_begin): ... this
5270         (cmd_record_goto_end): ... and this.
5271         (_initialize_record): Change "record goto" to prefix command.
5272         Add commands for "record goto begin" and "record goto end".
5273         Add an alias for "record goto start" to "record goto begin".
5274
5275 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
5276
5277         * linespec.c (convert_linespec_to_sals): New comment for
5278         SOURCE_FILENAME assignment.
5279
5280 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
5281
5282         * cleanups.c (restore_my_cleanups): Replace gdb_assert by
5283         internal_warning.
5284
5285 2013-05-14  Tom Tromey  <tromey@redhat.com>
5286
5287         * eval.c (parse_and_eval_long): Make 'exp' const.
5288         * value.h (parse_and_eval_long): Update.
5289
5290 2013-05-14  Tom Tromey  <tromey@redhat.com>
5291
5292         * ui-file.c (gdb_fopen): Make arguments const.
5293         * ui-file.h (gdb_fopen): Make arguments const.
5294
5295 2013-05-14  Tom Tromey  <tromey@redhat.com>
5296
5297         * remote.c (remote_set_trace_notes): Make arguments const.
5298         * target.c (update_current_target): Update cast.
5299         * target.h (to_set_trace_notes): Make arguments const.
5300
5301 2013-05-14  Tom Tromey  <tromey@redhat.com>
5302
5303         * go32-nat.c (go32_terminal_info): Make 'args' const.
5304         * inferior.h (child_terminal_info): Update.
5305         * inflow.c (child_terminal_info): Make 'args' const.
5306         * target.c (default_terminal_info): Make 'args' const.
5307         (debug_to_terminal_save_ours): Likewise.
5308         * target.h (struct target_ops) <to_terminal_info>: Make argument
5309         const.
5310
5311 2013-05-13  Tom Tromey  <tromey@redhat.com>
5312
5313         * gcore.c (create_gcore_bfd): Make 'filename' const.
5314         * gcore.h (create_gcore_bfd): Make 'filename' const.
5315         * record-full.c (record_full_save): Make 'recfilename' const.
5316         * target.c (target_save_record): Make 'filename' const.
5317         * target.h (struct target_ops) <to_save_record>: Make 'filename'
5318         const.
5319         (target_save_record): Likewise.
5320
5321 2013-05-13  Tom Tromey  <tromey@redhat.com>
5322
5323         PR gdb/15338:
5324         * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
5325         ranges section has been read.
5326
5327 2013-05-13  Tom Tromey  <tromey@redhat.com>
5328
5329         PR exp/15364:
5330         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
5331         STRUCTOP_PTR>: Return a not_lval value for
5332         EVAL_AVOID_SIDE_EFFECTS.
5333         * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
5334         for EVAL_AVOID_SIDE_EFFECTS.
5335
5336 2013-05-13  Joel Brobecker  <brobecker@adacore.com>
5337
5338         * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
5339         floating point registers to register type before storing
5340         value.
5341         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
5342         Likewise.
5343
5344 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
5345             Tom Tromey  <tromey@redhat.com>
5346
5347         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
5348         New functions.
5349         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
5350         Declare.
5351         * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
5352         (darwin_ptrace_him): Use unmark_fd_no_cloexec.
5353         * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
5354         (inf_ttrace_prepare): Use mark_fd_no_cloexec.
5355
5356 2013-05-10  Freddie Chopin  <freddie_chopin@op.pl>
5357             Tom Tromey  <tromey@redhat.com>
5358
5359         PR build/15414:
5360         * configure: Rebuild.
5361         * configure.ac (build_warnings): Do not use -Wformat-nonliteral
5362         with -Wno-format.
5363
5364 2013-05-10  Pedro Alves  <palves@redhat.com>
5365
5366         * remote.c (_initialize_remote): Fix spelling of
5367         qXfer:traceframe-info:read packet in packet config command.
5368
5369 2013-05-10  David Taylor  <dtaylor@emc.com>
5370
5371         PR remote/15455
5372
5373         * remote.c (remote_trace_set_readonly_regions): Do not overwrite
5374         "QTro" at start of packet.
5375
5376 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
5377
5378         * solib-aix.c (solib_aix_relocate_section_addresses):
5379         For the .bss section action, apply the same offset as
5380         the .data section.
5381
5382 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
5383
5384         * solib-aix.c (solib_aix_relocate_section_addresses):
5385         Remove FIXME comment.
5386
5387 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
5388
5389         PR tdep/15420:
5390         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
5391         New functions, directly copied from sparc-sol-thread.c.
5392         * sparc-sol-thread.c: Delete.
5393         * configure.ac: Remove code handling sparc-solaris-thread.c.
5394         * configure: Regenerate.
5395
5396 2013-05-10  Phil Muldoon  <pmuldoon@redhat.com>
5397
5398         * stack.c (backtrace_command_1): Add "no-filters", and Python frame
5399         filter logic.
5400         (backtrace_command): Add "no-filters" option parsing.
5401         (_initialize_stack): Alter help to reflect "no-filters" option.
5402         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
5403         (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
5404         (py-frame.o): Add target
5405         * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
5406         filter files.
5407         * python/python.h: Add new frame filter constants, and flag enum.
5408         (apply_frame_filter): Add definition.
5409         * python/python.c (apply_frame_filter): New non-Python
5410         enabled function.
5411         * python/py-utils.c (py_xdecref): New function.
5412         (make_cleanup_py_xdecref): Ditto.
5413         * python/py-objfile.c: Declare frame_filters dictionary.
5414         (objfpy_dealloc): Add frame_filters dealloc.
5415         (objfpy_new): Initialize frame_filters attribute.
5416         (objfile_to_objfile_object): Ditto.
5417         (objfpy_get_frame_filters): New function.
5418         (objfpy_set_frame_filters): New function.
5419         * python/py-progspace.c: Declare frame_filters dictionary.
5420         (pspy_dealloc): Add frame_filters dealloc.
5421         (pspy_new): Initialize frame_filters attribute.
5422         (pspacee_to_pspace_object): Ditto.
5423         (pspy_get_frame_filters): New function.
5424         (pspy_set_frame_filters): New function.
5425         * python/py-framefilter.c: New file.
5426         * python/lib/gdb/command/frame_filters.py: New file.
5427         * python/lib/gdb/frames.py: New file.
5428         * python/lib/gdb/__init__.py: Initialize global frame_filters
5429         dictionary
5430         * python/lib/gdb/FrameDecorator.py: New file.
5431         * python/lib/gdb/FrameIterator.py: New file.
5432         * mi/mi-cmds.c (mi_cmds): Add frame filters command.
5433         * mi/mi-cmds.h: Declare.
5434         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
5435         --no-frame-filter logic, and Python frame filter logic.
5436         (stack_enable_frame_filters): New function.
5437         (parse_no_frame_option): Ditto.
5438         (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
5439         filter logic.
5440         (mi_cmd_stack_list_locals): Ditto.
5441         (mi_cmd_stack_list_args): Ditto.
5442         (mi_cmd_stack_list_variables): Ditto.
5443         * NEWS: Add frame filter note.
5444
5445 2013-05-09  Doug Evans  <dje@google.com>
5446
5447         * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
5448         All callers updated.
5449         (syms_from_objfile): Ditto.  Make static.
5450         (symbol_file_add_with_addrs): Renamed from
5451         symbol_file_add_with_addrs_or_offsets.  Delete args offsets,
5452         num_offsets.  All callers updated.
5453         * symfile.h (syms_from_objfile): Delete.
5454
5455         * symfile.c (decrement_reading_symtab): Add assert.
5456         (increment_reading_symtab): Ditto.
5457
5458 2013-05-09  Joel Brobecker  <brobecker@adacore.com>
5459
5460         * source.c (forward_search_command): Replace call to getc
5461         by call to fgetc.
5462         (reverse_search_command): Likewise.
5463
5464 2013-05-08  Doug Evans  <dje@google.com>
5465
5466         * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
5467         matching test.
5468
5469 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
5470
5471         * sol-thread.c (info_cb): Factorize the code a little.
5472
5473 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
5474
5475         * sol-thread.c (info_cb): Rework the output of the "maintenance
5476         info sol-threads" command a bit.
5477
5478 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
5479
5480         * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
5481         Replace ti.ti_startfunc by ti.ti_pc.
5482
5483 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
5484
5485         * solib-aix.c (solib_aix_free_library_list): New function
5486         for the case where HAVE_LIBEXPAT is not defined.
5487
5488 2013-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
5489
5490         PR breakpoints/15413:
5491         * breakpoint.c (condition_completer): Simplify the code to
5492         disconsider multiple locations of breakpoints when completing the
5493         "condition" command.
5494
5495 2013-05-07  Pierre Muller  <muller@sourceware.org>
5496
5497         * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
5498         instead of <sys/wait.h>.
5499
5500 2013-05-07  Pierre Muller  <muller@sourceware.org>
5501
5502         * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
5503         trailing new line from warning message.
5504
5505 2013-05-07  Pierre Muller  <muller@sourceware.org>
5506
5507         * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
5508         (PC_SOLIB): Change type from ari_deprecate to ari_regression.
5509
5510 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
5511
5512         * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
5513         error message (ARI fix).
5514
5515 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
5516
5517         * features/library-list-aix.dtd: Replace library-list by
5518         library-list-aix.
5519         * rs6000-nat.c: Replace library-list by library-list-aix
5520         throughout.
5521         * solib-aix.c: Likewise.
5522
5523 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
5524
5525         * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
5526         Renames TARGET_OBJECT_AIX_LIBRARIES.
5527         * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
5528         TARGET_OBJECT_LIBRARIES_AIX throughout.
5529         * solib-aix.c: Likwise.
5530
5531 2013-05-07  Yao Qi  <yao@codesourcery.com>
5532
5533         * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
5534         (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
5535
5536 2013-05-07  Yao Qi  <yao@codesourcery.com>
5537
5538         * solib-dsbt.c (enable_break): Declare.
5539         (dsbt_current_sos): Remove call to enable_break2.
5540         (enable_break2): Rename to enable_break.  Set solib breakpoint
5541         on '_dl_debug_state'.
5542         (enable_break): Remove.
5543
5544 2013-05-07  Luis Machado  <lgustavo@codesourcery.com>
5545
5546         * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
5547         debug state prior to replicating existing hardware watchpoints or
5548         breakpoints.
5549
5550 2013-05-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
5551
5552         * gcore.c (gcore_create_callback): Ignore sections with
5553         separate_debug_objfile_backlink != NULL.
5554
5555 2013-05-06  Sandra Loosemore  <sandra@codesourcery.com>
5556             Andrew Jenner  <andrew@codesourcery.com>
5557             Chung-Lin Tang  <cltang@codesourcery.com>
5558             Julian Brown  <julian@codesourcery.com>
5559
5560         Based on the nios2-elf port from Altera Corporation.
5561
5562         * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
5563         nios2-linux-tdep.o.
5564         (HFILES_NO_SRCDIR): Add nios2-tdep.h.
5565         (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
5566         * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
5567         * nios2-tdep.h: New.
5568         * nios2-tdep.c: New.
5569         * nios2-linux-tdep.c: New.
5570         * features/Makefile (WHICH): Add nios2-linux.
5571         (nios2-linux-expedite): Set.
5572         * features/nios2-cpu.xml: New.
5573         * features/nios2.xml: New.
5574         * features/nios2-linux.xml: New.
5575         * features/nios2.c: New (autogenerated).
5576         * features/nios2-linux.c: New (autogenerated).
5577         * regformats/nios2-linux.dat: New (autogenerated).
5578         * NEWS (Changes since GDB 7.6): Add new Nios II targets
5579         and commands.
5580
5581 2013-05-06  Doug Evans  <dje@google.com>
5582
5583         * symfile.c: Whitespace cleanup.
5584
5585         * solist.h (struct target_so_ops): New member clear_so.
5586         * solib-svr4.c (svr4_clear_so): New function.
5587         (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
5588         * solib.c (clear_so): Renamed from free_so_symbols.
5589         All callers updated.  Call target clear_so if it exists.
5590
5591 2013-05-06  Tom Tromey  <tromey@redhat.com>
5592
5593         * ada-lang.c (ada_value_primitive_packed_val): Don't
5594         call value_incref.
5595         * value.c (set_value_parent): Incref the new parent and decref
5596         the old parent.
5597         (value_copy, value_primitive_field): Use set_value_parent.
5598
5599 2013-05-06  Tom Tromey  <tromey@redhat.com>
5600
5601         * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
5602         (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
5603         if needed.
5604         * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
5605         * dwarf2read.c (write_constant_as_bytes)
5606         (dwarf2_fetch_constant_bytes): New functions.
5607
5608 2013-05-06  Tom Tromey  <tromey@redhat.com>
5609
5610         * dwarf2read.c (dwarf2_const_value_data): Remove unused
5611         parameters.
5612         (dwarf2_const_value_attr): Update.
5613
5614 2013-05-06  Tom Tromey  <tromey@redhat.com>
5615
5616         * somread.c (som_symfile_offsets): Add 'const' to addrs.
5617         * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
5618         * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
5619         Remove declaration.
5620
5621 2013-05-06  Tom Tromey  <tromey@redhat.com>
5622
5623         * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
5624         objfile's obstack.
5625
5626 2013-05-06  Doug Evans  <dje@google.com>
5627
5628         * dbxread.c (process_one_symbol): Constify section_offsets parameter.
5629         * stabsread.h (process_one_symbol): Update declaration.
5630         * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
5631         * elfread.c (elf_symfile_relocate_probe): Ditto.
5632         * psymtab.c (relocate_psymtabs): Ditto.
5633         * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
5634         (objfile_relocate): Ditto.
5635         * objfiles.h (objfile_relocate): Update declaration.
5636         * symfile.c (relative_addr_info_to_section_offsets): Constify
5637         addrs parameter.
5638         (default_symfile_offsets): Ditto.
5639         (syms_from_objfile_1): Constify offsets parameter.
5640         (syms_from_objfile): Ditto.
5641         (symbol_file_add_with_addrs_or_offsets): Ditto.
5642         (symfile_map_offsets_to_segments): Constify data parameter.
5643         * symfile.h (struct quick_symbol_functions): Constify new_offsets,
5644         delta parameters of member relocate.
5645         (struct sym_probe_fns): Constify new_offsets,
5646         delta parameters of member sym_relocate_probe.
5647         (struct sym_fns): Constify section_addr_info parameter of member
5648         sym_offsets.
5649         (relative_addr_info_to_section_offsets): Update declaration.
5650         (default_symfile_offsets): Ditto.
5651         (syms_from_objfile): Ditto.
5652         (symfile_map_offsets_to_segments): Ditto.
5653
5654         * symfile.c (syms_from_objfile_1): Use correct section count when
5655         objfile->sf == NULL.
5656
5657 2013-05-06  Mike Frysinger  <vapier@gentoo.org>
5658
5659         * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
5660
5661 2013-05-06  Doug Evans  <dje@google.com>
5662
5663         * psympriv.h (struct partial_symtab): Augment comment for member
5664         section_offsets.
5665
5666 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
5667
5668         Reimplement shared library support on ppc-aix...
5669         * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
5670         * features/library-list-aix.dtd: New file.
5671         * solib-aix.h, solib-aix.c: New file.
5672         * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
5673         (rs6000_find_toc_address_hook): Delete.
5674         (rs6000_push_dummy_call): Rewrite code setting the TOC value.
5675         (rs6000_aix_init_osabi): Register solib_aix_so_ops.
5676         * rs6000-nat.c: Remove "xcoffsolib.h" include.  Include
5677         "xml-utils.h".
5678         (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
5679         (vmap_symtab, fixup_breakpoints): Delete.
5680         (rs6000_xfer_shared_libraries): New function.
5681         (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
5682         (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
5683         (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
5684         (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
5685         (rs6000_xfer_shared_library): New function.
5686         (find_toc_address): Delete.
5687         (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
5688         * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
5689         * xcoffread.c (record_minimal_symbol): Reloate symbol address
5690         before creating minimal symbol.  Adjust function description
5691         accordingly.
5692         (scan_xcoff_symtab): Replace call to
5693         prim_record_minimal_symbol_and_info by call to
5694         record_minimal_symbol.
5695         (xcoff_symfile_offsets): Reimplement mostly as a wrapper
5696         around default_symfile_offsets.
5697         * configure.tgt: Add solib-aix.o to gdb_target_obs for
5698         powerpc-aix targets.
5699         * config/rs6000/nm-rs6000.h: Delete.
5700         * config/powerpc/aix.mh (NAT_FILE): Delete.
5701         (NATDEPFILES): Remove xcoffsolib.o.
5702         * Makefile.in (XMLFILES): Add library-list-aix.dtd.
5703         (ALL_TARGET_OBS): Add solib-aix.o.
5704         (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
5705         config/rs6000/nm-rs6000.h.  Add solib-aix.h.
5706         (ALLDEPFILES): Add solib-aix.c.  Remove xcoffsolib.c.
5707         * xcoffsolib.h, xcoffsolib.c: Delete.
5708
5709         * solib.c (reload_shared_libraries): Remove reference to
5710         SOLIB_CREATE_INFERIOR_HOOK.
5711         * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
5712         (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
5713         (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
5714         comment.
5715         * corelow.c (deprecated_core_resize_section_table): Delete.
5716         * exec.c: Remove include of xcoffsolib.h".
5717         (map_vmap, vmap): Delete.
5718         (exec_close_1): Remove references to vmap.
5719         (exec_file_attach): Remove vmap handling code, and reference
5720         to DEPRECATED_IBM6000_TARGET.
5721         (bfdsec_to_vmap): Delete.
5722         (exec_files_info): Remove block of code handling VMAP.
5723         * infcmd.c (post_create_inferior): Remove reference to
5724         SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
5725         * infrun.c (follow_exec): Remove reference to
5726         SOLIB_CREATE_INFERIOR_HOOK.
5727         * stack.c (print_frame): Remove reference to PC_SOLIB.
5728         * solib-dsbt.c (dsbt_current_sos): Adjust comment.
5729         (dsbt_relocate_main_executable): Likewise.
5730         * solib-frv.c (frv_current_sos): Likewise.
5731
5732 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
5733
5734         * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
5735         to target_write_memory and target_read_memory.
5736
5737 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
5738
5739         * darwin-nat.c (darwin_setup_fake_stop_event): New function.
5740         (darwin_attach): Adjust using darwin_setup_fake_stop_event.
5741
5742 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
5743
5744         * darwin-nat.c: Replace all "%x" instances in format strings
5745         into "0x%x" throughout.
5746
5747 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
5748
5749         * darwin-nat.c (darwin_mourn_inferior): Replace call to
5750         gdb_assert by call to MACH_CHECK_ERROR.
5751         (darwin_attach_pid): Raise an error rather than a failed
5752         assertion when various system calls failed.  Report a warning
5753         instead of raising a failed assertion when PREV_NOT is not NULL
5754         after call to mach_port_request_notification.
5755         (darwin_ptrace_me): Raise an error rather than a failed
5756         assertion when read returns nonzero.
5757
5758 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
5759
5760         * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
5761
5762 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
5763
5764         * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
5765
5766 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
5767
5768         * event-top.c (display_gdb_prompt): Call missing do_cleanups.
5769         * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
5770         * symfile.c (symfile_bfd_open): New variable back_to.  Do not leave
5771         a stale cleanup.  Fix double free of NAME.
5772
5773 2013-05-04  Eli Zaretskii  <eliz@gnu.org>
5774
5775         * windows-nat.c (windows_delete_thread): Accept an additional
5776         argument, the thread's exit code, and announce thread death when
5777         print_thread_events is non-zero and we are deleting a thread that
5778         is not the main thread.
5779         (get_windows_debug_event): Pass thread exit code to
5780         windows_delete_thread.
5781
5782 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
5783
5784         * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
5785         (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
5786         (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
5787         (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
5788         (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
5789         (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
5790         (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
5791         (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
5792         (gdbarch_tdep): New struct.
5793         (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
5794         E_NUM_REGS.
5795         (v850e3v5_register_name): New function.
5796         (v850_register_type): v850e3v5 vector registers are 64-bits wide.
5797         (v850_use_struct_convention): Add `gdbarch' parameter.  Add new
5798         code handling the struct return conventions for the RH850 ABI.
5799         Update all callers.
5800         (v850_eight_byte_align_p): New function.
5801         (v850_push_call_dummy): Push structs by value, not by reference
5802         for the RH850 ABI.  Add support for eight byte alignment.
5803         (v850_dbtrap_breakpoint_from_pc): New function.
5804         (v850_gdbarch_init): Add ABI detection code.  Register
5805         v850e3v5_register_name for the v850e3v5 architecture.  Set the
5806         number of registers for v850e3v5.  Register
5807         v850_dbtrap_breakpoint_from_pc as appropriate.
5808         (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
5809
5810 2013-05-03  Doug Evans  <dje@google.com>
5811
5812         * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
5813         of bfd_count_sections.
5814         * solib-target.c (solib_target_relocate_section_addresses): Ditto.
5815         * symfile.c (default_symfile_offsets): Ditto.
5816         (syms_from_objfile_1): Ditto.  Make dummy addrs list an array of
5817         one entry, not bfd_count_sections entries.
5818
5819 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
5820
5821         * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
5822         `save' and `restore' register groups.  Don't include SPL
5823         or SPH in these groups.
5824         (rl78_dwarf_reg_to_regnum):  Adjust mapping for
5825         RL78_PC_REGNUM.  Add mappings for RL78_PSW_REGNUM,
5826         RL78_ES_REGNUM, and RL78_CS_REGNUM.
5827         (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4.  Invoke
5828         dwarf2_append_unwinders().
5829
5830 2013-05-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
5831
5832         * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
5833         ignore SIGINT and SIGTRAP in case these internal signals are
5834         caught explicitely.
5835
5836 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
5837
5838         * darwin-nat.c (darwin_read_write_inferior): Change types
5839         of parameters rdaddr and wraddr to "gdb_byte *". Change type
5840         of copy_count to "mach_msg_type_number_t".
5841         (darwin_read_dyld_info): Change type of parameter
5842         rdaddr to "gdb_byte *".
5843
5844 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
5845
5846         * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
5847         of &info->load_map from "char *" to "gdb_byte *".
5848
5849 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
5850
5851         * ia64-tdep.c (ia64_access_fpreg): Change cast of val
5852         from "char *" to "gdb_byte *".
5853         (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
5854
5855 2013-04-30  Doug Evans  <dje@google.com>
5856
5857         * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
5858         (init_cutu_and_read_dies): Flag a complaint, not error, for bad
5859         DWO stub.  If DWO isn't found, just use stub.
5860         (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
5861
5862         * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
5863         calling init_cutu_and_read_dies.
5864
5865 2013-03-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
5866
5867         * target-descriptions.c (maint_print_c_tdesc_cmd):
5868         Add case to parse structures as register types and
5869         bitfields.
5870
5871 2013-04-30  Walfred Tedeschi  <walfred.tedeschi@intel.com>
5872
5873         * MAINTAINERS (Write After Approval): Add myself to the list.
5874
5875 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
5876
5877         * sol-thread.c (rw_common): Change type of parameter "buf"
5878         to "gdb_byte *".
5879         (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
5880         rw_common to "gdb_byte *" instead of "char *".
5881
5882 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
5883
5884         * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
5885         of local variable msym to const struct bound_minimal_symbol.
5886         Adjust use accordingly.
5887         [ti.ti_state == TD_THR_SLEEP]: Likewise.
5888
5889 2013-04-30  Samuel Thibault  <samuel.thibault@gnu.org>
5890
5891         * i386gnu-nat.c (CREG_OFFSET): New macro.
5892         (creg_offset): New array.
5893         (CREG_ADDR): Use creg_offset instead of reg_offset.
5894
5895 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
5896
5897         * mep-tdep.c (mep_write_pc): Delete.
5898         (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
5899         Add call to set_gdbarch_pc_regnum.
5900
5901 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
5902
5903         * common/filestuff.c: Replace #include <dirent.h> by
5904         #include "gdb_dirent.h".
5905
5906 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
5907
5908         * common/filestuff.c: Replace #include <sys/stat.h> by
5909         #include "gdb_stat.h".
5910
5911 2013-04-29  Pierre Muller  <muller@sourceware.org>
5912
5913         * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
5914         editCase function rule.
5915         (get_DW_AT_signature_type): Likewise.
5916
5917 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
5918
5919         * m32r-tdep.c (m32r_write_pc): Delete.
5920         (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
5921         Add call to set_gdbarch_pc_regnum.
5922
5923 2013-04-29  Pierre Muller  <muller@sourceware.org>
5924
5925         * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
5926
5927 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
5928
5929         * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
5930
5931 2013-04-28  Yao Qi  <yao@codesourcery.com>
5932
5933         * solib-dsbt.c (fetch_loadmap): Re-indent.
5934         (displacement_from_map, enable_break2): Likewise.
5935         (dsbt_relocate_section_addresses): Likewise.
5936
5937 2013-04-26  Joel Brobecker  <brobecker@adacore.com>
5938
5939         GDB 7.6 released.
5940
5941 2013-04-25  Andreas Kaufmann  <Andreas.Kaufmann@synopsys.com>
5942
5943         PR corefiles/14983:
5944         * dwarf2read.c (process_full_comp_unit): Always create a static
5945         block.
5946
5947 2013-04-25  Hui Zhu  <hui@codesourcery.com>
5948
5949         * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
5950         to loc->cmd_bytecode.
5951
5952 2013-04-24  Doug Evans  <dje@google.com>
5953
5954         * dwarf2read.c (setup_type_unit_groups): Fix comment.
5955
5956 2013-04-22  Keith Seitz  <keiths@redhat.com>
5957
5958         * tracepoint.c (trace_save):  Call the writer's start method.
5959
5960 2013-04-24  Muhammad Bilal  <mbilal@codesourcery.com>
5961
5962         PR gdb/10462
5963         * cli/cli-decode.c (lookup_command): Show an error if there is no space
5964         before argument.
5965
5966 2013-04-23  Tom Tromey  <tromey@redhat.com>
5967
5968         * common/filestuff.c: Check USE_WIN32API before including
5969         sys/socket.h.
5970         (HAVE_F_GETFD): New define.
5971         (mark_cloexec): Check HAVE_F_GETFD.
5972         (gdb_open_cloexec): Change 'mode' to unsigned long.
5973         (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
5974         (gdb_pipe_cloexec): Check HAVE_PIPE.
5975         * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
5976         long.
5977
5978 2013-04-23  Hui Zhu  <hui@codesourcery.com>
5979
5980         PR gdb/15293
5981         * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
5982
5983 2013-04-23  Hui Zhu  <hui@codesourcery.com>
5984
5985         PR gdb/15165
5986         * breakpoint.c (dprintf_print_recreate): New.
5987         (save_breakpoints): Let it not save dprintf commands.
5988         (initialize_breakpoint_ops): Set dprintf_print_recreate.
5989
5990 2013-04-22  Tom Tromey  <tromey@redhat.com>
5991
5992         PR gdb/7912:
5993         * Makefile.in (SFILES): Add filestuff.c
5994         (COMMON_OBS): Add filestuff.o.
5995         (filestuff.o): New target.
5996         * auto-load.c (auto_load_objfile_script_1): Use
5997         gdb_fopen_cloexec.
5998         * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
5999         * cli/cli-cmds.c (shell_escape): Call close_most_fds.
6000         * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
6001         * common/agent.c (gdb_connect_sync_socket): Use
6002         gdb_socket_cloexec.
6003         * common/filestuff.c: New file.
6004         * common/filestuff.h: New file.
6005         * common/linux-osdata.c (linux_common_core_of_thread)
6006         (command_from_pid, commandline_from_pid, print_source_lines)
6007         (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
6008         (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
6009         gdb_fopen_cloexec.
6010         * common/linux-procfs.c (linux_proc_get_int)
6011         (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
6012         * config.in, configure: Rebuild.
6013         * configure.ac: Don't check for sys/socket.h.  Check for
6014         fdwalk, pipe2.
6015         * corelow.c (core_open): Use gdb_open_cloexec.
6016         * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
6017         * fork-child.c (fork_inferior): Call close_most_fds.
6018         * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
6019         * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
6020         * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
6021         Use gdb_fopen_cloexec.
6022         (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
6023         gdb_open_cloexec.
6024         (linux_async_pipe): Use gdb_pipe_cloexec.
6025         * remote-fileio.c (remote_fileio_func_open): Use
6026         gdb_open_cloexec.
6027         * remote.c (remote_file_put, remote_file_get): Use
6028         gdb_fopen_cloexec.
6029         * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
6030         close_most_fds.
6031         * ser-tcp.c (net_open): Use gdb_socket_cloexec.
6032         * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
6033         * solib.c (solib_find): Use gdb_open_cloexec.
6034         * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
6035         * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
6036         (tfile_open): Use gdb_open_cloexec.
6037         * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
6038         * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
6039         * xml-support.c (xml_fetch_content_from_file): Use
6040         gdb_fopen_cloexec.
6041         * main.c (captured_main): Call notice_open_fds.
6042
6043 2013-04-22  Edjunior Machado  <emachado@linux.vnet.ibm.com>
6044
6045         * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
6046         'char *' to 'gdb_byte *'.
6047         (gdbsim_store_register): Change the type of 'tmp' from 'char' to
6048         'gdb_byte'.
6049
6050 2013-04-22  Yao Qi  <yao@codesourcery.com>
6051
6052         * infrun.c: Fix typo in comment.
6053
6054 2013-04-22  Andrew Haley  <aph@redhat.com>
6055
6056         * arm-tdep.c (BranchDest): Cast result as "unsigned long",
6057         instead of "long".
6058
6059 2013-04-20  Yao Qi  <yao@codesourcery.com>
6060
6061         * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
6062         'char *' to 'gdb_byte *'.  Cast the return value of
6063         'bt_ctf_get_char_array' to 'gdb_byte *'.
6064
6065 2013-04-19  Pedro Alves  <palves@redhat.com>
6066
6067         * configure.ac (build_warnings): Replace -Wno-pointer-sign with
6068         -Wpointer-sign.
6069         * configure: Regenerate.
6070
6071 2013-04-19  Pedro Alves  <palves@redhat.com>
6072
6073         * ser-tcp.c (net_read_prim): Cast second argument to recv to
6074         'void *'.
6075
6076 2013-04-19  Pedro Alves  <palves@redhat.com>
6077
6078         * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
6079         Change type of 'myaddr' parameter to gdb_byte pointer.
6080         (monitor_write_memory_longlongs): Likewise.  Cast 'myaddr' pointer
6081         to 'long long' pointer instead of to 'unsigned long long'.
6082         (monitor_write_memory_block, monitor_read_memory_single)
6083         (monitor_read_memory): Change type of 'myaddr' parameter to
6084         gdb_byte pointer.
6085
6086 2013-04-19  Pedro Alves  <palves@redhat.com>
6087
6088         * record.c (validate_history_size): Make parameter 'setting'
6089         unsigned.
6090
6091 2013-04-19  Pedro Alves  <palves@redhat.com>
6092
6093         * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
6094         to 'gdb_byte *'.
6095
6096 2013-04-19  Pedro Alves  <palves@redhat.com>
6097
6098         * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
6099         local to int.
6100
6101 2013-04-19  Pedro Alves  <palves@redhat.com>
6102
6103         * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
6104         * ada-tasks.c (read_fat_string_value): Likewise.
6105
6106 2013-04-19  Pedro Alves  <palves@redhat.com>
6107
6108         * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
6109         unsigned.  Pass 'tmp' to safe_read_uleb128 instead of the signed
6110         'offset', and adjust.
6111
6112 2013-04-19  Pedro Alves  <palves@redhat.com>
6113
6114         * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
6115         (read_index_from_section): Add cast to 'char *'.
6116
6117 2013-04-19  Pedro Alves  <palves@redhat.com>
6118
6119         * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
6120
6121 2013-04-19  Pedro Alves  <palves@redhat.com>
6122
6123         * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
6124
6125 2013-04-19  Pedro Alves  <palves@redhat.com>
6126
6127         * record-full.c (record_full_get_bookmark): Change local 'ret'
6128         type to char * and add cast to gdb_byte *.
6129         (record_full_goto_bookmark): Handle 'bookmark' argument as a
6130         string.
6131         * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
6132
6133 2013-04-19  Pedro Alves  <palves@redhat.com>
6134
6135         * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
6136         * python/py-prettyprint.c (print_string_repr): Change type of
6137         'output' local to char *.  Add cast to gdb_byte * in
6138         LA_PRINT_STRING call.
6139         (print_children): Change type of 'output' local to char *.
6140         * python/py-value.c (valpy_string): Add cast to const char * in
6141         PyUnicode_Decode call.
6142
6143 2013-04-19  Pedro Alves  <palves@redhat.com>
6144
6145         * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
6146         and change its type to 'const char *'.  Adjust.
6147         (mips_send_packet): Add cast to 'char *', and remove cast to
6148         'unsigned char *'.
6149         (mips_receive_packet): Remove cast to 'unsigned char *'.
6150         (mips_load_srec): Use bfd_byte.
6151         (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
6152         (pmon_checkset): Make 'value' parameter unsigned.
6153
6154 2013-04-19  Pedro Alves  <palves@redhat.com>
6155
6156         * common/agent.c (agent_run_command): Add cast to gdb_byte *.
6157
6158 2013-04-19  Pedro Alves  <palves@redhat.com>
6159
6160         * remote.c (remote_write_bytes_aux, compare_sections_command)
6161         (remote_read_qxfer)
6162         (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
6163         (remote_hostio_readlink, remote_bfd_iovec_pread)
6164         (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
6165         binary buffer, and char when buffer is used as string.
6166         * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
6167         (trace_save, tfile_open, traceframe_walk_blocks)
6168         (tfile_fetch_registers): Likewise.
6169
6170 2013-04-19  Pedro Alves  <palves@redhat.com>
6171
6172         * ser-base.c (ser_base_write): Change prototype -- take 'void *'
6173         buffer and size_t size.  Adjust.
6174         * ser-base.h (ser_base_write): Adjust.
6175         * ser-go32.c (cnts): Change type to size_t.
6176         (dos_write): Change prototype -- take 'void *'
6177         buffer and size_t size.  Adjust.
6178         (dos_info): Print elements of 'cnts' as unsigned long.
6179         * serial.c (serial_write): Likewise.
6180         * serial.h (serial_write): Adjust.
6181         (struct serial_ops) <write>: Change prototype -- take 'void *'
6182         buffer and size_t size.  Adjust.
6183
6184 2013-04-19  Pedro Alves  <palves@redhat.com>
6185
6186         * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
6187         gdb_byte *.
6188         * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
6189
6190 2013-04-19  Pedro Alves  <palves@redhat.com>
6191
6192         * alpha-tdep.c (alpha_extract_return_value): Use
6193         regcache_cooked_read_unsigned to read 'v0'.
6194
6195 2013-04-19  Pedro Alves  <palves@redhat.com>
6196
6197         * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
6198         parameters 'at', 'as' and 'offset' to uint32_t.
6199
6200 2013-04-19  Pedro Alves  <palves@redhat.com>
6201
6202         * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
6203         'is64' to signed 'int'.
6204
6205 2013-04-19  Pedro Alves  <palves@redhat.com>
6206
6207         * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
6208         parameter to int *.
6209
6210 2013-04-19  Pedro Alves  <palves@redhat.com>
6211
6212         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
6213         'insnbuf' buffer type to unsigned int[].
6214
6215 2013-04-19  Pedro Alves  <palves@redhat.com>
6216
6217         * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
6218
6219 2013-04-19  Pedro Alves  <palves@redhat.com>
6220
6221         * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
6222         unsigned long *.
6223
6224 2013-04-19  Pedro Alves  <palves@redhat.com>
6225
6226         * alpha-tdep.c (heuristic_fence_post): Change type to int.
6227         (alpha_heuristic_proc_start): Adjust to check -1 instead of
6228         UINT_MAX.
6229         * mips-tdep.c (heuristic_fence_post): Change type to int.
6230         (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
6231
6232 2013-04-19  Pedro Alves  <palves@redhat.com>
6233
6234         * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
6235         (struct gdbarch_tdep) <cris_version>: Make unsigned.
6236         (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
6237
6238 2013-04-19  Pedro Alves  <palves@redhat.com>
6239
6240         * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'.  Use
6241         it to get a string view of the byte buffer.
6242         * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
6243         type to gdb_byte *.  Adjust.
6244         * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
6245         Change local to char *.
6246         * solib-darwin.c (find_program_interpreter): Change return type to
6247         char *.  Adjust.
6248         (darwin_solib_get_all_image_info_addr_at_init): Adjust.
6249         * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
6250         * solib-frv.c (enable_break2): Change local 'buf' to char *.
6251         * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
6252         * solib-svr4.c (find_program_interpreter): Change return type to
6253         char *.  Adjust.
6254         (enable_break): Change local 'interp_name' to char *.
6255         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
6256         * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
6257         (spu_pseudo_register_write_spu): Use char for string buffer.
6258         Adjust.
6259         (info_spu_event_command, info_spu_signal_command): Add casts to
6260         'char *'.
6261
6262 2013-04-19  Pedro Alves  <palves@redhat.com>
6263
6264         * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
6265         gdb_byte[].
6266         (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
6267         * ada-lang.c (ada_value_assign): Use gdb_byte.
6268         * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
6269         (alphanbsd_sigtramp_offset): Use gdb_byte.
6270         * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
6271         (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
6272         (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
6273         (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
6274         (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
6275         * arm-tdep.c (arm_stub_unwind_sniffer)
6276         (arm_displaced_init_closure): Use gdb_byte.
6277         (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
6278         (arm_default_thumb_le_breakpoint)
6279         (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
6280         * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
6281         thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
6282         * arm-wince-tdep.c (arm_wince_le_breakpoint)
6283         (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
6284         * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
6285         (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
6286         (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
6287         * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
6288         (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
6289         * cris-tdep.c (push_stack_item, cris_push_dummy_call)
6290         (cris_store_return_value, cris_extract_return_value): Use
6291         gdb_byte.
6292         (constraint): Change type of parameter to char * from signed
6293         char*.  Use gdb_byte.
6294         * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
6295         of local buffer to gdb_byte *.
6296         * dwarf2read.c (read_index_from_section): Use gdb_byte.
6297         (create_dwp_hash_table): Change type of locals to gdb_byte *.
6298         (add_address_entry): Change type of local buffer to gdb_byte[].
6299         * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
6300         (frv_push_dummy_call): Use gdb_byte.
6301         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
6302         (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
6303         (hppa_hpux_supply_save_state): Use gdb_byte.
6304         * hppa-tdep.c (hppa32_push_dummy_call)
6305         (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
6306         * ia64-tdep.c (extract_bit_field, replace_bit_field)
6307         (slotN_contents, replace_slotN_contents): Change type of parameter
6308         to gdb_byte *.
6309         (fetch_instruction, ia64_pseudo_register_write)
6310         (ia64_register_to_value, ia64_value_to_register)
6311         (ia64_extract_return_value, ia64_store_return_value)
6312         (ia64_push_dummy_call): Use gdb_byte.
6313         * m32c-tdep.c (m32c_return_value): Remove cast.
6314         * m68hc11-tdep.c (m68hc11_pseudo_register_write)
6315         (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
6316         gdb_byte.
6317         * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
6318         * mn10300-tdep.c (mn10300_store_return_value)
6319         (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
6320         gdb_byte.
6321         * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
6322         (moxie_process_record): Remove casts.
6323         * ppc-ravenscar-thread.c (supply_register_at_address)
6324         (ppc_ravenscar_generic_store_registers): Use gdb_byte.
6325         * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
6326         * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
6327         * remote-mips.c (mips_xfer_memory): Use gdb_byte.
6328         * remote.c (compare_sections_command): Use gdb_byte.
6329         * score-tdep.c (score7_free_memblock): Change type of parameter to
6330         gdb_byte *.
6331         * sh-tdep.c (sh_justify_value_in_reg): Change return type to
6332         gdb_byte *.  Use gdb_byte.
6333         (sh_push_dummy_call_fpu): Use gdb_byte.
6334         (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
6335         (sh_store_return_value_nofpu, sh_store_return_value_fpu)
6336         (sh_register_convert_to_virtual, sh_register_convert_to_raw):
6337         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
6338         (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
6339         * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
6340         (sh64_store_return_value, sh64_register_convert_to_virtual):
6341         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
6342         (sh64_pseudo_register_write): Use gdb_byte.
6343         * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
6344         * solib-irix.c (fetch_lm_info): Likewise.  Use gdb_byte for byte
6345         buffer.
6346         (irix_current_sos): Use gdb_byte.
6347         * solib-som.c (som_current_sos): Use gdb_byte.
6348         * sparc-ravenscar-thread.c (supply_register_at_address)
6349         (sparc_ravenscar_generic_store_registers): Use gdb_byte.
6350         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
6351         * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
6352         * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
6353         'gdb_byte *'.
6354         * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
6355         'gdb_byte *'.
6356         * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
6357         * xstormy16-tdep.c (xstormy16_extract_return_value)
6358         (xstormy16_store_return_value): Change parameter type to
6359         'gdb_byte *'.  Adjust.
6360         (xstormy16_push_dummy_call): Use gdb_byte.
6361         * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
6362         (call0_analyze_prologue, execute_code): Use gdb_byte.
6363
6364 2013-04-19  Vladimir Kargov <kargov@gmail.com>
6365             Pedro Alves  <palves@redhat.com>
6366
6367         * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
6368         value contents.
6369
6370 2013-04-17  Doug Evans  <dje@google.com>
6371
6372         * dwarf2read.c (struct signatured_type): New member type.
6373         (struct attribute): Replace member signatured_type with signature.
6374         (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
6375         (read_call_site_scope): Call follow_die_ref instead of
6376         follow_die_ref_or_sig.
6377         (read_structure_type): Rewrite handling of signatured types.
6378         (read_enumeration_type): Ditto.
6379         (read_attribute_value): Update.
6380         (build_error_marker_type): New function.
6381         (lookup_die_type): Add assert.  Rewrite handling of signatured types.
6382         Don't call error for bad types, just build an error marker type.
6383         (dump_die_shallow): Update.
6384         (follow_die_sig_1): Renamed from follow_die_sig.
6385         Don't call error for bad types, instead return NULL.
6386         (follow_die_sig): New function.
6387         (get_signatured_type, get_DW_AT_signature_type): New functions.
6388
6389 2013-04-17  Yufeng Zhang  <yufeng.zhang@arm.com>
6390
6391         * aarch64-tdep.c (aarch64_write_pc): Removed.
6392         (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
6393         function.
6394
6395 2013-04-17  Yao Qi  <yao@codesourcery.com>
6396
6397         * top.c (print_gdb_configuration): Print configure-time
6398         parameter on using libbabeltrace or not.
6399
6400 2013-04-16  Pedro Alves  <palves@redhat.com>
6401
6402         * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
6403
6404 2013-04-16  Pedro Alves  <palves@redhat.com>
6405
6406         * common/glibc_thread_db.h: Update from upstream glibc
6407         (git 568035b7874a099087b77f7bba3e36a1173787b0).
6408
6409 2013-04-16  Pedro Alves  <palves@redhat.com>
6410
6411         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
6412         * common/glibc_thread_db.h: ... this new file ...
6413         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
6414
6415 2013-04-16  Will Newton  <will.newton@gmail.com>
6416             Pedro Alves  <palves@redhat.com>
6417
6418         PR build/11881
6419
6420         * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
6421         (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
6422         HAVE_THREAD_DB_H.
6423
6424 2013-04-16  Pedro Alves  <palves@redhat.com>
6425             Eli Zaretskii  <eliz@gnu.org>
6426
6427         * NEWS: Mention "set foo unlimited".
6428
6429 2013-04-15  Doug Evans  <dje@google.com>
6430
6431         * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
6432         (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
6433         (create_dwo_cu_reader): Renamed from
6434         create_dwo_debug_info_hash_table_reader.
6435         (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
6436         Remove support for multiple CUs in a DWO file.
6437         (open_and_init_dwo_file, lookup_dwo_cutu): Update.
6438
6439         * dwarf2read.c (create_debug_types_hash_table): Use hex_string
6440         instead of phex.
6441         (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
6442         (create_dwo_in_dwp): Ditto.
6443
6444 2013-04-15  Tom Tromey  <tromey@redhat.com>
6445
6446         * NEWS: Move recent entries into "since 7.6" section.
6447
6448 2013-04-15  Tom Tromey  <tromey@redhat.com>
6449
6450         PR c++/13588:
6451         * NEWS: Update.
6452         * break-catch-throw.c (struct exception_catchpoint)
6453         <exception_rx, pattern>: New fields.
6454         (fetch_probe_arguments, dtor_exception_catchpoint)
6455         (check_status_exception_catchpoint)
6456         (print_one_detail_exception_catchpoint): New functions.
6457         (handle_gnu_v3_exceptions): Add "except_rx" argument.
6458         Compile regular expression if needed.
6459         (extract_exception_regexp): New function.
6460         (catch_exception_command_1): Use extract_exception_regexp.
6461         (compute_exception): Use fetch_probe_arguments.
6462         (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
6463         and check_status fields.
6464         * cp-abi.c (cplus_typename_from_type_info): New function.
6465         * cp-abi.h (cplus_typename_from_type_info): Declare.
6466         (struct cp_abi_ops) <get_typename_from_type_info>: New field.
6467         * gdb_regex.h (compile_rx_or_error): Declare.
6468         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
6469         comment.
6470         (init_gnuv3_ops): Set get_type_from_type_info field.
6471         * probe.c (compile_rx_or_error): Move...
6472         * utils.c (compile_rx_or_error): ... here.
6473
6474 2013-04-15  Tom Tromey  <tromey@redhat.com>
6475
6476         PR c++/15176:
6477         * NEWS: Update.
6478         * break-catch-throw.c (compute_exception): New function.
6479         (exception_funcs): New global.
6480         (_initialize_break_catch_throw): Create $_exception.
6481         * cp-abi.c (cplus_type_from_type_info): New function.
6482         * cp-abi.h (cplus_type_from_type_info): Declare.
6483         (struct cp_abi_ops) <get_type_from_type_info>: New field.
6484         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
6485         (gnuv3_get_type_from_type_info): New functions.
6486         (init_gnuv3_ops): Set get_type_from_type_info ABI field.
6487
6488 2013-04-15  Tom Tromey  <tromey@redhat.com>
6489
6490         * break-catch-throw.c (struct exception_names): New.
6491         (exception_functions): Change type.
6492         (re_set_exception_catchpoint): Look for SDT probes.
6493
6494 2013-04-15  Tom Tromey  <tromey@redhat.com>
6495
6496         PR c++/10119:
6497         * break-catch-throw.c (exception_functions): New global.
6498         (gnu_v3_exception_catchpoint_ops): Move earlier.
6499         (struct exception_catchpoint): New.
6500         (classify_exception_breakpoint): Rewrite.
6501         (re_set_exception_catchpoint): New function.
6502         (handle_gnu_v3_exceptions): Return void.  Use init_catchpoint.
6503         Allocate a struct exception_catchpoint.
6504         (catch_exception_command_1): Update.
6505         (initialize_throw_catchpoint_ops): Set 're_set' method.
6506
6507 2013-04-15  Tom Tromey  <tromey@redhat.com>
6508
6509         * Makefile.in (SFILES): Add break-catch-throw.c
6510         (COMMON_OBS): Add break-catch-throw.o.
6511         * break-catch-throw.c: New file.
6512         * breakpoint.c: Move exception-catching code to new file.
6513         (ep_parse_optional_if_clause): No longer static.
6514         * breakpoint.h (ep_parse_optional_if_clause): Declare.
6515
6516 2013-04-15  Tom Tromey  <tromey@redhat.com>
6517
6518         PR c++/9065:
6519         * NEWS: Update.
6520         * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
6521         * c-exp.y (TYPEID): New token.
6522         (exp): Add new TYPEID productions.
6523         (ident_tokens): Add "typeid".
6524         * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
6525         * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
6526         (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
6527         * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
6528         * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
6529         case.
6530         * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
6531         (build_std_type_info_type, gnuv3_get_typeid_type)
6532         (gnuv3_get_typeid): New functions.
6533         (init_gnuv3_ops): Initialize std_type_info_gdbarch_data.  Set
6534         new fields on ABI object.
6535         * parse.c (operator_length_standard) <OP_TYPEID>: New case.
6536         * std-operator.def (OP_TYPEID): New.
6537
6538 2013-04-15  Tom Tromey  <tromey@redhat.com>
6539
6540         * elfread.c (elf_symtab_read): Install versioned symbol under
6541         unversioned name as well.
6542
6543 2013-04-15  Tom Tromey  <tromey@redhat.com>
6544
6545         PR c++/11990:
6546         * c-lang.c (cplus_language_defn): Use gdb_demangle.
6547         * c-typeprint.c (c_type_print_base): Use gdb_demangle.
6548         * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
6549         (gdb_demangle): New function.
6550         * cp-support.h (gdb_demangle): Declare.
6551         * dwarf2read.c (dwarf2_physname, fixup_partial_die)
6552         (dwarf2_name): Use gdb_demangle.
6553         * gdbtypes.c (check_stub_method): Use gdb_demangle.
6554         * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
6555         suffixes from name.
6556         (gnuv3_print_method_ptr): Use gdb_demangle.
6557         * jv-lang.c (java_demangle): Use gdb_demangle.
6558         * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
6559         * language.c (unk_lang_demangle): Use gdb_demangle.
6560         * symtab.c (symbol_find_demangled_name)
6561         (demangle_for_lookup): Use gdb_demangle.
6562
6563 2013-04-15  Tom Tromey  <tromey@redhat.com>
6564
6565         PR c++/12824:
6566         * NEWS: Update.
6567         * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
6568         New constant.
6569         (classify_exception_breakpoint): New function.
6570         (print_it_exception_catchpoint, print_one_exception_catchpoint)
6571         (print_mention_exception_catchpoint)
6572         (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
6573         (catch_exception_command_1): Handle "rethrow" catchpoint.
6574         (catch_rethrow_command): New function.
6575         (_initialize_breakpoint): Add "catch rethrow" command.
6576
6577 2013-04-15  Pierre Muller  <muller@sourceware.org>
6578
6579         * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
6580         set_gdbarch_write_pc as deprecated anymore.
6581
6582 2013-04-15  Joel Brobecker  <brobecker@adacore.com>
6583
6584         * spu-tdep.c (spu_write_pc): Add empty line after local variable
6585         declarations.
6586
6587 2013-04-13  Yao Qi  <yao@codesourcery.com>
6588
6589         * ctf.c (_initialize_ctf): Include "completer.h".
6590         Call add_target_with_completer instead of add_target.
6591
6592 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
6593
6594         Fix GDB regression related to PR binutils/14813.
6595         * jit.c (mem_bfd_iovec_close): Return 0 for success.
6596         * minidebug.c (lzma_close): Add return value comment.
6597         * remote.c (remote_bfd_iovec_close): Return 0 for success.
6598         * solib-spu.c (spu_bfd_iovec_close): Likewise.
6599         * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
6600
6601 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
6602
6603         * config.in: Regenerate.
6604
6605 2013-04-12  Tom Tromey  <tromey@redhat.com>
6606
6607         * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
6608         const.
6609         * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
6610         (struct die_reader_specs) <buffer>: Likewise.
6611         (die_reader_func_ftype): Make 'info_ptr' const.
6612         (struct line_header) <include_dirs, statement_program_start,
6613         statement_program_end>: Now const.
6614         (struct file_entry) <name>: Likewise.
6615         (struct partial_die_info) <sibling>: Likewise.
6616         (struct dwarf_block) <data>: Likewise.
6617         (dwarf2_read_section): Remove cast.
6618         (dwarf2_get_section_info): Make 'bufp' const.
6619         (read_index_from_section): Constify.
6620         (dw2_get_file_names_reader): Make 'info_ptr' const.
6621         (dw2_get_primary_filename_reader): Likewise.
6622         (read_comp_unit_head): Make 'info_ptr' and return type const.
6623         (read_and_check_comp_unit_head, read_and_check_type_unit_head):
6624         Likewise.
6625         (read_abbrev_offset): Constify.
6626         (dwarf2_create_include_psymtab): Make 'name' const.
6627         (create_debug_types_hash_table): Update.
6628         (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
6629         (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
6630         Constify.
6631         (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
6632         (load_partial_comp_unit_reader): Make 'info_ptr' const.
6633         (read_comp_units_from_section): Constify.
6634         (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
6635         (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
6636         const.
6637         (dwarf2_compute_name, setup_type_unit_groups): Constify.
6638         (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
6639         (create_dwp_hash_table, dwarf2_ranges_read)
6640         (dwarf2_record_block_ranges): Constify.
6641         (read_die_and_children, read_die_and_siblings_1)
6642         (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
6643         const.
6644         (read_full_die_1, read_full_die): Make 'info_ptr' const.
6645         (abbrev_table_read_table): Constify.
6646         (load_partial_dies): Make 'info_ptr' const.
6647         (read_partial_die, read_attribute_value, read_attribute): Make
6648         'info_ptr' and return type const.
6649         (read_address, read_initial_length)
6650         (read_checked_initial_length_and_offset, read_offset)
6651         (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
6652         const.
6653         (read_direct_string): Make 'buf' and return type const.
6654         (read_indirect_string_at_offset, read_indirect_string_from_dwz)
6655         (read_indirect_string): Make return type const.
6656         (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
6657         (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
6658         'info_ptr' const.
6659         (read_str_index): Make return type const.
6660         (add_include_dir): Make 'include_dir' const.
6661         (add_file_name): Make 'name' const.
6662         (dwarf_decode_line_header): Constify.
6663         (psymtab_include_file_name): Make return type const.
6664         (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
6665         (dwarf2_start_subfile): Make 'filename' const.
6666         (dwarf2_const_value_attr): Make 'bytes' const.
6667         (read_signatured_type_reader): Make 'info_ptr' const.
6668         (decode_locdesc): Constify.
6669         (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
6670         const.
6671         (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
6672         'mac_end', and return type const.
6673         (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
6674         (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
6675         type const.
6676         (per_cu_header_read_in): Constify.
6677         * symfile.h (dwarf2_get_section_info): Update.
6678
6679 2013-04-12  Tom Tromey  <tromey@redhat.com>
6680
6681         * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
6682
6683 2013-04-12  Eli Zaretskii  <eliz@gnu.org>
6684
6685         * NEWS: Mention "show configuration", --configuration.
6686         * top.c (print_gdb_configuration): New function, displays the
6687         details about GDB configure-time parameters.
6688         (print_gdb_version): Mention "show configuration".
6689         * cli/cli-cmds.c (show_configuration): New function.
6690         (_initialize_cli_cmds): Add the "show configuration" command.
6691         * main.c (captured_main) <print_configuration>: New static var.
6692         <long_options>: Use it.
6693         If --configuration was given, call print_gdb_configuration.
6694
6695 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6696             Pedro Alves  <palves@redhat.com>
6697
6698         * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
6699         (generated_files): Add gcore.
6700         (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
6701         HAVE_NATIVE_GCORE_HOST.
6702         (gcore): New.
6703         * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
6704         * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
6705         config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
6706         config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
6707         config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
6708         Add HAVE_NATIVE_GCORE_HOST.
6709         * configure: Regenerate.
6710         * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
6711         New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME.  New
6712         AC_CONFIG_FILES for gcore.
6713         * configure.tgt: Add gdb_have_gcore to the initial comment.  Set
6714         gdb_have_gcore.
6715         * gdb_gcore.sh: Rename to ...
6716         * gcore.in: ... here.  Remove gcore.sh comment.  Use GDB_TRANSFORM_NAME
6717         and GCORE_TRANSFORM_NAME substitutions.
6718
6719         Fix parsing tabs in ${gdb_target_obs}.
6720         * configure.tgt (gdb_have_gcore): Replace case with for and if.
6721
6722 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6723
6724         * remote.c (unpush_and_perror): Add output message final dot.
6725
6726 2013-04-11  Yao Qi  <yao@codesourcery.com>
6727
6728         * tracepoint.c (tfile_interp_line): Fit parameters line and
6729         utpp in one line.
6730
6731 2013-04-10  Joel Brobecker  <brobecker@adacore.com>
6732
6733         * solib.c (solib_map_sections): Remove code overwriting
6734         SO->SO_NAME with the bfd's filename.
6735
6736 2013-04-10  Pedro Alves  <palves@redhat.com>
6737
6738         * cli/cli-decode.c (integer_unlimited_completer): New function.
6739         (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
6740         (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
6741         completer.
6742         * cli/cli-setshow.c: Include "cli/cli-utils.h".
6743         (is_unlimited_literal): New function.
6744         (do_set_command): Handle literal "unlimited" arguments.
6745         * frame.c (_initialize_frame) <set backtrace limit>: Document
6746         "unlimited".
6747         * printcmd.c (_initialize_printcmd) <set print
6748         max-symbolic-offset>: Add help text.
6749         * record-full.c (_initialize_record_full) <set record full
6750         insn-number-max>: Likewise.
6751         * record.c (_initialize_record) <set record
6752         instruction-history-size, set record function-call-history-size>:
6753         Add help text.
6754         * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
6755         help text.
6756         * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
6757         Likewise.
6758         * source.c (_initialize_source) <set listsize>: Add help text.
6759         * utils.c (initialize_utils) <set height, set width>: Likewise.
6760         <set pagination>: Mention "set height unlimited".
6761         * valprint.c (_initialize_valprint) <set print elements, set print
6762         repeats>: Document "unlimited".
6763
6764 2013-04-10  Pedro Alves  <palves@redhat.com>
6765
6766         * cli/cli-cmds.c (quit_command): Call query_if_trace_running
6767         instead of disconnect_tracing.
6768         * infcmd.c (detach_command, disconnect_command): Call
6769         query_if_trace_running.  Adjust.
6770         * top.c: Include "tracepoint.h".
6771         (quit_target): Delete.  Contents moved ...
6772         (quit_force): ... here.  Wrap each stage of teardown in
6773         TRY_CATCH.  Call disconnect_tracing before detaching.
6774
6775 2013-04-10  Hui Zhu  <hui@codesourcery.com>
6776             Yao Qi  <yao@codesourcery.com>
6777
6778         * configure.ac: Check libbabeltrace is installed.
6779         * config.in: Regenerate.
6780         * configure: Regenerate.
6781         * Makefile.in (LIBBABELTRACE): New.
6782         (CLIBS): Add LIBBABELTRACE.
6783         * ctf.c: Include "exec.h".
6784         (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
6785         (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
6786         (ctf_save_metadata_header): Define new type aliases in
6787         metadata.
6788         (ctf_write_header): Define event type "tsv_def" and "tp_def"
6789         in metadata.  Start a new faked packet for trace status.
6790         (ctf_write_status): Write trace status to CTF.
6791         (ctf_write_uploaded_tsv): Write TSV to CTF.
6792         (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
6793         (ctf_write_definition_end): End the faked packet.
6794
6795         (ctx, ctf_iter, trace_dirname): New.
6796         (start_pos): New variable.
6797         (ctf_destroy, ctf_open_dir, ctf_open): New.
6798         (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
6799         macros.
6800         (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
6801         (ctf_fetch_registers, ctf_xfer_partial): New.
6802         (ctf_get_trace_state_variable_value): New.
6803         (ctf_get_tpnum_from_frame_event): New.
6804         (ctf_get_traceframe_address): New.
6805         (ctf_trace_find, ctf_has_stack): New.
6806         (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
6807         (ctf_get_trace_status, ctf_read_status): New.
6808         (_initialize_ctf): New.
6809         * tracepoint.c (get_tracepoint_number): New
6810         (get_uploaded_tsv): Remove 'static'.
6811         (struct traceframe_info, trace_regblock_size): Move it to ...
6812         * tracepoint.h: ... here.
6813         (get_tracepoint_number): Declare it.
6814         (get_uploaded_tsv): Declare it.
6815
6816         * NEWS: Mention new configure option.
6817
6818 2013-04-10  Pedro Alves  <palves@redhat.com>
6819             Hui Zhu  <hui@codesourcery.com>
6820
6821         * breakpoint.c (dprintf_re_set): New.
6822         (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
6823         to dprintf_re_set.
6824
6825 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
6826
6827         * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
6828         Remove solib-svr4.o from the list.
6829
6830 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
6831
6832         * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
6833         Use gdb_assert_not_reached instead of invalid boolean expression.
6834
6835 2013-04-09  Pedro Alves  <palves@redhat.com>
6836
6837         * remote.c (unpush_and_perror): New function.
6838         (readchar, remote_serial_write): Use it.
6839
6840 2013-04-09  Markus Metzger  <markus.t.metzger@intel.com>
6841
6842         * NEWS: Mention new btrace RSP packets.
6843
6844 2013-04-08  Tom Tromey  <tromey@redhat.com>
6845
6846         * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
6847         long.
6848
6849 2013-04-08  Tom Tromey  <tromey@redhat.com>
6850
6851         * maint.c (print_bfd_section_info): Print the section index.
6852         * symmisc.c (dump_msymbols): Print the section index.
6853
6854 2013-04-08  Tom Tromey  <tromey@redhat.com>
6855
6856         PR symtab/8424:
6857         * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
6858         SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
6859         * breakpoint.c (resolve_sal_pc): Update.
6860         * elfread.c (elf_gnu_ifunc_record_cache): Update.
6861         * findvar.c (struct minsym_lookup_data) <objfile>: New field.
6862         (minsym_lookup_iterator_cb): Use it.
6863         (default_read_var_value): Update.
6864         * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
6865         Update.
6866         * infcmd.c (jump_command): Update.
6867         * linespec.c (minsym_found): Update.
6868         * maint.c (maintenance_translate_address): Update.
6869         * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
6870         (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
6871         * parse.c (write_exp_msymbol): Update.
6872         * printcmd.c (address_info): Update.
6873         * psymtab.c (find_pc_sect_psymbol): Update.
6874         (fixup_psymbol_section): Check SYMBOL_SECTION, not
6875         SYMBOL_OBJ_SECTION.
6876         (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
6877         Don't initialize SYMBOL_OBJ_SECTION.
6878         * spu-tdep.c (spu_catch_start): Update.
6879         * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
6880         * symmisc.c (dump_msymbols, print_symbol): Update.
6881         * symtab.c (fixup_section): Don't set 'obj_section'.  Change
6882         how fallback section is computed.
6883         (fixup_symbol_section): Update.
6884         (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
6885         Update.
6886         (allocate_symbol, initialize_symbol, allocate_template_symbol):
6887         Initialize SYMBOL_SECTION.
6888         * symtab.h (struct general_symbol_info) <section>: Update comment.
6889         <obj_section>: Remove.
6890         (SYMBOL_OBJ_SECTION): Add 'objfile' argument.  Rewrite.
6891         (SYMBOL_OBJFILE): New macro.
6892
6893 2013-04-08  Tom Tromey  <tromey@redhat.com>
6894
6895         * coffread.c (record_minimal_symbol): Update.
6896         * dbxread.c (record_minimal_symbol): Update.
6897         * elfread.c (record_minimal_symbol): Update.
6898         * machoread.c (macho_symtab_add_minsym): Update.
6899         * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
6900         Update.
6901         * minsyms.c (prim_record_minimal_symbol): Update.
6902         (prim_record_minimal_symbol_full): Remove 'bfd_section'
6903         argument.
6904         (prim_record_minimal_symbol_and_info): Likewise.
6905         * minsyms.h (prim_record_minimal_symbol_full)
6906         (prim_record_minimal_symbol_and_info): Update.
6907         * symtab.c (allocate_symbol, initialize_symbol)
6908         (allocate_template_symbol): Initialize SYMBOL_SECTION.
6909         * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
6910         Update.
6911
6912 2013-04-08  Tom Tromey  <tromey@redhat.com>
6913
6914         PR symtab/8423:
6915         * solib-som.c (som_solib_section_offsets): Use BFD section
6916         indices.  Set offsets for all sections.
6917         * somread.c (som_symtab_read): Compute BFD section for
6918         symbol.  Use prim_record_minimal_symbol_and_info.
6919         (som_symfile_read): Fix comment.
6920         (struct find_section_offset_arg): New.
6921         (find_section_offset, set_section_index): New functions.
6922         (som_symfile_offsets): Use set_section_index to compute
6923         section indices.
6924
6925 2013-04-08  Tom Tromey  <tromey@redhat.com>
6926
6927         * coffread.c (cs_to_section): Use gdb_bfd_section_index.
6928         * elfread.c (record_minimal_symbol, elf_symtab_read): Use
6929         gdb_bfd_section_index.
6930         * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
6931         New functions.
6932         * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
6933         Declare.
6934         * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
6935         Update.
6936         * objfiles.c (add_to_objfile_sections_full): New function.
6937         (add_to_objfile_sections): Use it.
6938         (build_section_table): Rewrite.
6939         (objfile_relocate1): Use gdb_bfd_section_index.  Update.
6940         * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
6941         (struct objfile) <sections>: Update comment.
6942         (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
6943         is NULL.
6944         (ALL_OBJSECTIONS): Use it.
6945         * solib-dsbt.c (dsbt_relocate_main_executable): Update.
6946         * solib-frv.c (frv_relocate_main_executable): Update.
6947         * solib-target.c (solib_target_relocate_section_addresses):
6948         Use gdb_bfd_section_index.
6949         * symfile.c (build_section_addr_info_from_section_table):
6950         Use gdb_bfd_section_index.
6951         (build_section_addr_info_from_bfd, place_section): Likewise.
6952         * symtab.c (fixup_section): Update.
6953         * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
6954
6955 2013-04-08  Tom Tromey  <tromey@redhat.com>
6956
6957         * minsyms.h (struct bound_minimal_symbol): New.
6958         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
6959         Remove objfile argument.
6960         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
6961         Return bound_minimal_symbol.
6962         * minsyms.c (lookup_minimal_symbol_by_pc_1)
6963         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
6964         Return bound_minimal_symbol.
6965         (in_gnu_ifunc_stub): Update.
6966         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
6967         Remove 'objfile_p' argument.
6968         (lookup_solib_trampoline_symbol_by_pc): Update.
6969         * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
6970         arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
6971         c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
6972         glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
6973         i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
6974         linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
6975         mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
6976         ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
6977         stack.c, symtab.c, tui/tui-disasm.c: Update.
6978
6979 2013-04-08  Tom Tromey  <tromey@redhat.com>
6980
6981         * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
6982         Use symbol's obstack, not an objfile.
6983         * coffread.c (process_coff_symbol): Update.
6984         * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
6985         * jv-lang.c (add_class_symbol): Update.
6986         * mdebugread.c (new_symbol): Update.
6987         * minsyms.c (prim_record_minimal_symbol_full)
6988         (terminate_minimal_symbol_table): Update.
6989         * psymtab.c (add_psymbol_to_bcache): Clear entire symbol.  Update.
6990         * stabsread.c (define_symbol, read_enum_type): Update.
6991         * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
6992         Handle Ada specially.
6993         (symbol_set_language): Add 'obstack' argument.
6994         (symbol_set_names): Update.
6995         (symbol_natural_name, symbol_demangled_name): Always use
6996         ada_decode_symbol.
6997         * symtab.h (struct general_symbol_info)
6998         <language_specific::obstack>: New field.
6999         <ada_mangled>: New field.
7000         (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
7001         (symbol_set_language): Update.
7002
7003 2013-04-08  Tom Tromey  <tromey@redhat.com>
7004
7005         * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
7006         Take an obstack, not an objfile.
7007         (symbol_set_names): Update.
7008         * symtab.h (symbol_set_demangled_name): Update.
7009
7010 2013-04-08  Tom Tromey  <tromey@redhat.com>
7011
7012         * coffread.c (process_coff_symbol, coff_read_enum_type): Call
7013         allocate_symbol.
7014         * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
7015         (read_func_scope): Call allocate_template_symbol.
7016         (new_symbol_full): Call allocate_symbol.
7017         * jit.c (finalize_symtab): Call allocate_symbol.
7018         * jv-lang.c (add_class_symbol): Call allocate_symbol.
7019         * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
7020         * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
7021         (common_block_end): Call allocate_symbol.
7022         * symtab.c (allocate_symbol, initialize_symbol)
7023         (allocate_template_symbol): New functions.
7024         * symtab.c (allocate_symbol, initialize_symbol)
7025         (allocate_template_symbol): Declare.
7026         * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
7027
7028 2013-04-08  Pedro Alves  <palves@redhat.com>
7029             Keith Seitz  <keiths@redhat.com>
7030
7031         * breakpoint.c (create_breakpoint): Rename
7032         "parse_condition_and_thread" parameter to "parse_arg".  Update
7033         describing comment.  If !PARSE_ARG, then error out if ARG is not
7034         the empty string after extracting the location.
7035         * breakpoint.h (create_breakpoint): Rename
7036         "parse_condition_and_thread" parameter to "parse_arg".
7037
7038 2013-04-08  Aleksandar Ristovski  <aristovski@qnx.com
7039
7040         * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
7041
7042 2013-04-07  Yao Qi  <yao@codesourcery.com>
7043
7044         * remote.c (remote_trace_find): Change type of parameters 'addr1'
7045         and 'addr2' to CORE_ADDR.
7046         * target.c (update_current_target): Update.
7047         * target.h (struct target_ops) <to_trace_find>: Change parameter
7048         type to CORE_ADDR.
7049         * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
7050         'addr2' to CORE_ADDR.
7051         (tfile_trace_find): Likewise.
7052         (tfile_get_traceframe_address): Change return type to CORE_ADDR.
7053         Change local variable 'addr' to type CORE_ADDR.
7054         * tracepoint.h (tfind_1): Update declaration.
7055
7056 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
7057
7058         * windows-nat.c (windows_get_absolute_argv0): Move from here...
7059         * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
7060         Include main.h.
7061
7062         * windows-nat.h (windows_get_absolute_argv0): Move prototype from
7063         here...
7064         * main.h (windows_get_absolute_argv0): ...to here.
7065
7066 2013-04-05  Doug Evans  <dje@google.com>
7067
7068         * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
7069         (read_cutu_die_from_dwo): Add comments.
7070         (read_structure_type): Update comment.
7071         (read_enumeration_type, read_namespace_type): Update comment.
7072         (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
7073
7074 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7075
7076         Convert man pages to texinfo, new gdbinit.5 texinfo page.
7077         * Makefile.in (gdb.z): Remove.
7078         (install-only): Remove $(man1dir) and gdb.1 installation.
7079         * gdb.1: Remove.
7080
7081 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7082
7083         Fix compatibility with Linux kernel 3.8.3.
7084         * linux-tdep.c (linux_find_memory_regions_full): Move variable number
7085         to more inner block.  Remove parsing of NUMBER from outer block.
7086         Parse NUMBER only if KEYWORD has been identified.
7087
7088 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7089
7090         Fix variable name shadowing.
7091         * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
7092         filename to mapsfilename and update its uses.
7093
7094 2013-04-05  Eli Zaretskii  <eliz@gnu.org>
7095
7096         * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
7097         empty.  See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
7098         and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
7099         details of the problem.
7100
7101 2013-04-04  Pedro Alves  <palves@redhat.com>
7102             Hui Zhu  <hui@codesourcery.com>
7103
7104         * breakpoint.c (validate_commands_for_breakpoint): If validating a
7105         tracepoint, reset its STEP_COUNT and call validate_actionline.
7106
7107 2013-04-03  Doug Evans  <dje@google.com>
7108
7109         * dwarf2read.c (read_die_and_siblings_1): Renamed from
7110         read_die_and_siblings.
7111         (read_die_and_siblings): New function.
7112         (read_cutu_die_from_dwo): Dump die if requested.
7113         (read_die_and_children): Call read_full_die_1 and
7114         read_die_and_siblings_1.
7115         (read_full_die): Dump die if requested.
7116
7117         * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
7118
7119         * dwarf2read.c (struct dwo_file): New member comp_dir.
7120         Rename member name to dwo_name.  All uses updated.
7121         (hash_dwo_file): Include comp_dir in computation.
7122         (eq_dwo_file): Ditto.
7123         (lookup_dwo_file_slot): New arg comp_dir.  All callers updated.
7124         (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
7125
7126         * psymtab.c (read_psymtabs_with_fullname): Don't call
7127         psymtab_to_fullname if the basenames are different.
7128
7129 2013-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7130
7131         * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
7132         New entry about "fullname" presence.
7133
7134 2013-04-03  Pedro Alves  <palves@redhat.com>
7135
7136         * NEWS: Mention x86_64/Cygwin as new native configuration.
7137
7138 2013-04-02  Doug Evans  <dje@google.com>
7139
7140         * dwarf2read.c (read_structure_type): Fix typo in comment.
7141
7142 2013-04-02  Pedro Alves  <palves@redhat.com>
7143
7144         * NEWS: Mention "set/show debug aarch64", "set/show debug
7145         coff-pe-read" and "set/show debug mach-o".
7146
7147 2013-04-02  Pedro Alves  <palves@redhat.com>
7148
7149         * NEWS: Mention "set/show remote trace-buffer-size-packet".
7150
7151 2013-04-02  Eli Zaretskii  <eliz@gnu.org>
7152
7153         * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
7154         gdb_string.h is now in common/.
7155
7156 2013-04-02  Pedro Alves  <palves@redhat.com>
7157
7158         * NEWS: Move "set debug notification" and "set trace-buffer-size"
7159         under "New options".
7160
7161 2013-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
7162
7163         Revert this patch:
7164         PR gdb/15275
7165         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
7166
7167 2013-04-02  Pedro Alves  <palves@redhat.com>
7168
7169         PR gdb/15275
7170
7171         * remote.c (send_interrupt_sequence): Use remote_serial_write.
7172         (remote_serial_write): New function.
7173         (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
7174
7175 2013-04-01  Jiong Wang  <jiwang@tilera.com>
7176
7177         * NEWS: Mention TILE-Gx in "New native configurations" and
7178         "New targets" sections.
7179
7180 2013-04-01  Doug Evans  <dje@google.com>
7181
7182         * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
7183         (process_enumeration_scope): Simplify.
7184
7185         * dwarf2read.c (struct dwarf2_per_cu_data): Move member
7186         type_unit_group ...
7187         (struct signatured_type): ... to here.
7188         (sig_type_ptr): New typedef.
7189         (type_unit_group): Delete member 't.first_cu'.  Move member 'tus'
7190         out of union 't'.  All uses updated.
7191         (dw2_get_file_names_reader): Assert not called for a type unit.
7192         (dw2_get_file_names): Assert not called for a type unit or type
7193         unit group.
7194         (build_type_psymtabs_reader): Assert called for a type unit.
7195         (build_type_psymtab_dependencies): Assert called for a type unit group.
7196
7197         * dwarf2read.c (free_dwo_file): Add comment.
7198         (dwarf2_per_objfile_free): Unref dwp bfd.
7199
7200 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
7201
7202         * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
7203         (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
7204         (read_pe_exported_syms): Remove unused 'exportix'.
7205         (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
7206         'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
7207         'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
7208
7209 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
7210
7211         * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
7212         (print_it_watchpoint): Remove unused 'bl'.
7213         (say_where): Remove unused 'uiout'.
7214         (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
7215         (bkpt_breakpoint_hit): Remove unused 'b'.
7216         (internal_bkpt_print_it): Remove unused 'uiout'.
7217         * buildsym.c (augment_type_symtab): Remove unused 'i'.
7218
7219 2013-03-31  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
7220
7221         * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
7222         (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
7223
7224 2013-03-29  Doug Evans  <dje@google.com>
7225
7226         * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
7227         Delete arg is_dwp.  All callers updated.
7228         (open_dwp_file): New function.
7229         (open_and_init_dwp_file): Call it.
7230         (get_dwp_file): New function.
7231         (lookup_dwo_cutu): Call it.
7232
7233         * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
7234         unnecessary, cleanup.
7235
7236         * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
7237
7238         * dwarf2read.c (read_cutu_die_from_dwo): New function.
7239         (lookup_dwo_unit): New function.
7240         (init_cutu_and_read_dies): Move DWO handling to new functions.
7241
7242         * dwarf2read.c (struct signatured_type): Tweak comment.
7243         (struct dwo_unit): Tweak comment.
7244         (create_debug_types_hash_table): Tweak comment.  Reformat long line.
7245         (create_dwo_debug_info_hash_table): Tweak comment.
7246         (dwarf2_per_cu_offset_and_type): Tweak comment.
7247
7248         * dwarf2read.c (lookup_signatured_type): Remove complaint about
7249         missing .debug_types section.
7250
7251 2013-03-29  Yao Qi  <yao@codesourcery.com>
7252
7253         * corelow.c: Include "completer.h".
7254         (_initialize_corelow): Call add_target_with_completer with
7255         argument 'filename_completer'.
7256         * tracepoint.c: Likewise.
7257         * exec.c (_initialize_exec): Likewise.
7258         * target.c (add_target): Rename to ...
7259         (add_target_with_completer): ... this.  Call set_cmd_completer
7260         if parameter completer is not NULL.
7261         (add_target): New.
7262         * target.h: Include "command.h".
7263         (add_target_with_completer): Declare it.
7264
7265 2013-03-28  Joel Brobecker  <brobecker@adacore.com>
7266
7267         * coffread.c (is_import_fixup_symbol): New function.
7268         (record_minimal_symbol): Use is_import_fixup_symbol to
7269         detect import fixup symbols, and discard them.
7270
7271 2013-03-28  Doug Evans  <dje@google.com>
7272
7273         * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
7274         types hash table until we know we need it.
7275
7276         * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
7277         index numbers.
7278
7279         * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
7280         All callers updated.
7281         (dw2_print_stats): Print #read CUs too.
7282         (dump_die_shallow): Print signatured types better.
7283
7284         * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
7285         info_or_types_section to section.  All uses updated.
7286         (struct dwo_unit): Ditto.
7287
7288 2013-03-28  Pedro Alves  <palves@redhat.com>
7289
7290         * NEWS (New options): New section.
7291         (New options): Mention set/show remote trace-status-packet.
7292         * remote.c (PACKET_qTStatus): New enumeration value.
7293         (remote_get_trace_status): Skip sending qTStatus if the packet is
7294         disabled.  Use packet_ok.
7295         (_initialize_remote): Register a configuration command for
7296         qTStatus packet.
7297
7298 2013-03-28  Doug Evans  <dje@google.com>
7299
7300         * symfile.c (find_separate_debug_file): Add comment.
7301         (terminate_after_last_dir_separator): Tweak comment.
7302
7303         * dwarf2read.c (create_partial_symtab): Add forward decl.
7304         (create_partial_symtab): Move to be closer to other psymtab functions.
7305         (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
7306
7307         * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
7308         (compute_symtab_includes): Remove unnecessary forward declaration.
7309         (die_needs_namespace): Add comment marking group of functions for
7310         dwarf2 name computation.
7311
7312         * typeprint.c (_initialize_typeprint): Improve type help text.
7313
7314         * python/python.c (finish_python_initialization): Provide suggestion
7315         for how to tell gdb to find its python files.
7316
7317 2013-03-28  Pedro Alves  <palves@redhat.com>
7318
7319         PR gdb/15294
7320
7321         * source.c (_initialize_source): Change back "set listsize" to an
7322         integer command.
7323
7324 2013-03-27  Gareth McMullin  <gareth@blacksphere.co.nz>
7325
7326         PR gdb/15275
7327         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
7328
7329 2013-03-27  Pedro Alves  <palves@redhat.com>
7330
7331         * top.c (history_size): Rename to ...
7332         (history_size_setshow_var): ... this.  Add comment.
7333         (show_commands): Use readline's 'history_length' instead of
7334         computing the history length by calling history_get in a loop.
7335         (set_history_size_command): Error out for sizes over INT_MAX.
7336         Restore previous history size on invalid size.
7337         (init_history): If HISTSIZE is negative, leave the history size as
7338         zero.  Add comments.
7339         (init_main): Adjust.
7340
7341 2013-03-27  Pedro Alves  <palves@redhat.com>
7342
7343         * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
7344         coff_pe_read" command to "set debug coff-pe-read".
7345
7346 2013-03-27  Markus Metzger  <markus.t.metzger@intel.com>
7347
7348         * record.c (command_size_to_target_size): Fix size comparison.
7349         Change parameter type from pointer to integer to integer.
7350         Update all users.
7351
7352 2013-03-27  Pierre Muller  <muller@sourceware.org>
7353
7354         * windows-nat.c (handle_output_debug_string): Avoid typecast
7355         from integer of different size warning.
7356
7357 2013-03-26  Joel Brobecker  <brobecker@adacore.com>
7358
7359         * windows-nat.c (handle_output_debug_string): Add empty line
7360         after local block variable definition.
7361
7362 2013-03-26  Pedro Alves  <palves@redhat.com>
7363
7364         * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
7365         (net_open): Make 'polls' local unsigned.
7366
7367 2013-03-26  Pedro Alves  <palves@redhat.com>
7368
7369         * remote.c (_initialize_remote): Make "set remoteaddresssize"
7370         a zuinteger command instead of uinteger.
7371
7372 2013-03-26  Pedro Alves  <palves@redhat.com>
7373
7374         * record-full.c (record_full_insn_num): Make it unsigned.
7375         (record_full_check_insn_num, record_full_message)
7376         (record_full_registers_change, record_full_xfer_partial): Remove
7377         record_full_insn_max_num check (it's always != 0).
7378         (record_full_info, record_full_restore): Use %u as format string.
7379         (): Use %u as format string.
7380         (set_record_full_insn_max_num): Remove record_full_insn_max_num
7381         check (it's always != 0).
7382
7383 2013-03-26  Pedro Alves  <palves@redhat.com>
7384
7385         * dcache.c (_initialize_dcache): Make the "set dcache line-size"
7386         and "set dcache size" commands zuinteger instead of uinteger.
7387
7388 2013-03-26  Pedro Alves  <palves@redhat.com>
7389
7390         * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
7391         command zuinteger instead of uinteger.
7392
7393 2013-03-26  Pedro Alves  <palves@redhat.com>
7394
7395         * coff-pe-read.c (_initialize_coff_pe_read): Make the command
7396         zuinteger instead of uinteger.
7397
7398 2013-03-26  Pedro Alves  <palves@redhat.com>
7399
7400         * record.c (record_insn_history_size_setshow_var)
7401         (record_call_history_size_setshow_var): New globals.
7402         (command_size_to_target_size): New function.
7403         (cmd_record_insn_history, cmd_record_call_history): Use
7404         command_size_to_target_size instead of cast.
7405         (validate_history_size, set_record_insn_history_size)
7406         (set_record_call_history_size): New functions.
7407         (_initialize_record): Install set_record_insn_history_size and
7408         set_record_call_history_size as "set" hooks of "set record
7409         instruction-history-size" and "set record
7410         function-call-history-size".
7411
7412 2013-03-26  Pedro Alves  <palves@redhat.com>
7413
7414         * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
7415         use with history_max_entries use.  Remove FIXME note.
7416
7417 2013-03-26  Markus Metzger  <markus.t.metzger@intel.com>
7418
7419         * record-btrace.c (record_btrace_close): Call
7420         record_btrace_auto_disable.
7421
7422 2013-03-25  Joel Brobecker  <brobecker@adacore.com>
7423
7424         * rs6000-nat.c (fixup_breakpoints): Delete declaration.
7425
7426 2013-03-25  Doug Evans  <dje@google.com>
7427
7428         * contrib/cc-with-tweaks.sh: Check exit code of dwp.
7429
7430 2013-03-25  Tom Tromey  <tromey@redhat.com>
7431
7432         PR symtab/11462:
7433         * c-exp.y (exp): Add new productions for destructors after '.' and
7434         '->'.
7435         (write_destructor_name): New function.
7436
7437 2013-03-25  Tom Tromey  <tromey@redhat.com>
7438
7439         PR c++/9197:
7440         * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
7441         value_struct_elt, not lookup_struct_elt_type.
7442         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
7443         STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
7444         * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
7445
7446 2013-03-25  Yao Qi  <yao@codesourcery.com>
7447
7448         * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
7449         instead of '_mkdir'.
7450
7451 2013-03-23  Eli Zaretskii  <eliz@gnu.org>
7452
7453         * windows-nat.c (windows_get_absolute_argv0): New function.
7454         * windows-nat.h: Add its prototype.
7455
7456         * main.c (get_init_files): Use filename_ncmp instead of strncmp.
7457         Use IS_DIR_SEPARATOR instead of looking for a character inside
7458         SLASH_STRING.  Include filenames.h.
7459         (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
7460         relocate_gdb_directory works when passed gdb_program_name.
7461         Include windows-nat.h.
7462
7463 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
7464
7465         * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
7466         * remote.c (trace_error): Remove the special handling of '2'.
7467         (readchar) <SERIAL_EOF>
7468         (readchar) <SERIAL_ERROR>
7469         (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
7470         (remote_get_trace_status): Call throw_exception if EX is
7471         TARGET_CLOSE_ERROR.
7472         * utils.c (perror_with_name): Rename to ...
7473         (throw_perror_with_name): ... here.  New parameter errcode, describe it
7474         in the function comment.
7475         (perror_with_name): New function wrapper.
7476         * utils.h (enum errors): New stub declaration.
7477         (throw_perror_with_name): New declaration.
7478
7479 2013-03-22  Pedro Alves  <palves@redhat.com>
7480             Yao Qi  <yao@codesourcery.com>
7481             Mark Kettenis  <kettenis@gnu.org>
7482
7483         * cli/cli-setshow.c (do_set_command) <var_uinteger>:
7484         Don't let the user set the value to UINT_MAX directly.
7485         <var_integer>: Don't let the user set the value to INT_MAX
7486         directly.
7487
7488 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
7489
7490         * remote.c (remote_unpush_target): New function.
7491         (remote_open_1): Remove two pop_target calls, update one comment, add
7492         comment to target_preopen call.  Replace pop_target call by
7493         remote_unpush_target call.
7494         (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
7495         pop_target calls by remote_unpush_target calls.
7496
7497 2013-03-22  Pedro Alves  <palves@redhat.com>
7498
7499         * linux-nat.c (linux_child_follow_fork): Don't call
7500         linux_enable_event_reporting.
7501         (linux_handle_extended_wait): Don't call
7502         linux_enable_event_reporting.
7503
7504 2013-03-22  Pedro Alves  <palves@redhat.com>
7505
7506         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
7507         use it to rewrite the trampoline buffers with type gdb_byte[], and
7508         undefine the macro.  Remove char* cast.
7509
7510 2013-03-21  Doug Evans  <dje@google.com>
7511
7512         New commands "mt set per-command {space,time,symtab} {on,off}".
7513         * NEWS: Add entry.
7514         * event-top.c: #include "maint.h".
7515         * main.c: #include "maint.h".
7516         * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
7517         timeval-utils.h, maint.h, cli/cli-setshow.h.
7518         (per_command_time, per_command_space): New static globals.
7519         (per_command_symtab): New static global.
7520         (per_command_setlist, per_command_showlist): New static globals.
7521         (struct cmd_stats): Move here from utils.c.
7522         (set_per_command_time): Renamed from set_display_time in utils.c
7523         and moved here.  All callers updated.
7524         (set_per_command_space): Renamed from set_display_space in utils.c
7525         and moved here.  All callers updated.
7526         (count_symtabs_and_blocks): New function.
7527         (report_command_stats): Moved here from utils.c.  Add support for
7528         printing symtab stats.  Only print data if enabled before command
7529         executed.
7530         (make_command_stats_cleanup): Ditto.
7531         (sert_per_command_cmd, show_per_command_cmd): New functions.
7532         (_initialize_maint_cmds): Add new commands
7533         mt set per-command {space,time,symtab} {on,off}.
7534         * maint.h: New file.
7535         * top.c: #include "maint.h".
7536         * utils.c (reset_prompt_for_continue_wait_time): New function.
7537         (get_prompt_for_continue_wait_time): New function.
7538         * utils.h (reset_prompt_for_continue_wait_time): Declare
7539         (get_prompt_for_continue_wait_time): Declare.
7540         (make_command_stats_cleanup): Moved to maint.h.
7541         (set_display_time, set_display_space): Moved to maint.h and renamed
7542         to set_per_command_time, set_per_command_space.
7543         * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
7544         parse_binary_operation and made non-static.  Don't call error,
7545         just return an error marker.  All callers updated.
7546         * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
7547
7548 2013-03-21  Tom Tromey  <tromey@redhat.com>
7549
7550         * symfile.c (alloc_section_addr_info): Update header.  Don't set
7551         'num_sections' field.
7552         (build_section_addr_info_from_section_table): Set 'num_sections'.
7553         (build_section_addr_info_from_bfd): Likewise.
7554         (build_section_addr_info_from_objfile): Remove dead loop
7555         condition.
7556         (free_section_addr_info): Unconditionally call xfree.
7557         (relative_addr_info_to_section_offsets, addrs_section_sort)
7558         (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
7559         condition.
7560         (syms_from_objfile_1): Remove dead 'if' condition.  Check
7561         'num_sections'.
7562         (add_symbol_file_command): Set 'num_sections'.
7563         * symfile-mem.c (symbol_file_add_from_memory): Set
7564         'num_sections'.
7565         * somread.c (som_symfile_offsets): Remove dead loop condition.
7566         * machoread.c (macho_symfile_offsets): Remove dead 'if'.
7567         * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
7568
7569 2013-03-21  Tom Tromey  <tromey@redhat.com>
7570
7571         * tracepoint.h (decode_agent_options): Add 'trace_string'
7572         argument.
7573         * tracepoint.c (decode_agent_options): Add 'trace_string'
7574         argument.
7575         (validate_actionline): Update.
7576         (collect_symbol): Add 'trace_string' argument.
7577         (struct add_local_symbols_data) <trace_string>: New field.
7578         (do_collect_symbol): Update.
7579         (add_local_symbols): Add 'trace_string' argument.
7580         (encode_actions_1): Update.
7581         (trace_dump_actions): Update.
7582         * dwarf2loc.c (access_memory): Update.
7583         * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
7584         * ax-general.c (new_agent_expr): Update.
7585         * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
7586         (gen_trace_for_return_address): Add argument.
7587         (trace_kludge, trace_string_kludge): Remove.
7588         * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
7589         (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
7590         (gen_trace_for_var): Add 'trace_string' argument.
7591         (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
7592         (gen_printf, agent_eval_command_one): Update.
7593
7594 2013-03-21  Tom Tromey  <tromey@redhat.com>
7595
7596         PR exp/15109:
7597         * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
7598         Handle FILENAME token.
7599
7600 2013-03-21  Tom Tromey  <tromey@redhat.com>
7601
7602         * c-exp.y (YYPRINT): Define.
7603         (c_print_token): New function.
7604
7605 2013-03-21  Tom Tromey  <tromey@redhat.com>
7606
7607         * c-exp.y (%union) <sym, ivar, ivec>: Remove.
7608
7609 2013-03-21  Yao Qi  <yao@codesourcery.com>
7610
7611         * ctf.c: Include "gdb_stat.h".
7612         [USE_WIN32API]: New macro 'mkdir'.
7613         (ctf_start): Use permission bits macros if they are defined.
7614
7615 2013-03-20  Keith Seitz  <keiths@redhat.com>
7616
7617         * breakpoint.h (struct breakpoint): Add comment to
7618         extra_string indicating that this member is mallod'd.
7619         * breakpoint.c (base_breakpoint_dtor): Free extra_string.
7620
7621 2013-03-20  Pedro Alves  <palves@redhat.com>
7622
7623         PR gdb/15289
7624
7625         * cli/cli-setshow.c (do_set_command)
7626         <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
7627         the result of parsing the command argument.  Throw error if the
7628         value is greater than UINT_MAX.  Print the invalid value with
7629         plongest.
7630         <var_integer, var_zinteger>: Use LONGEST for variable holding the
7631         result of parsing the command argument.  Throw error if the value
7632         is greater than INT_MAX, not greater or equal.  Also throw error
7633         if the value is less than INT_MIN.  Print the invalid value with
7634         plongest.
7635         <var_zuinteger_unlimited>: Throw error if the value is greater
7636         than INT_MAX, not greater or equal.
7637         (do_show_command) <var_integer, var_zinteger,
7638         var_zuinteger_unlimited>: Use %d for printing int, not %u.
7639
7640 2013-03-20  Tom Tromey  <tromey@redhat.com>
7641
7642         * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
7643         if possible.
7644         * dwarf2read.c (read_func_scope): Remove old FIXME.
7645         * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
7646         not LOC_COMPUTED.
7647         * findvar.c (symbol_read_needs_frame, default_read_var_value):
7648         Unconditionally call via computed ops, if possible.
7649         * printcmd.c (address_info): Unconditionally call via computed ops,
7650         if possible.
7651         * stack.c (read_frame_arg): Unconditionally call via computed ops,
7652         if possible.
7653         * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
7654         * tracepoint.c (scope_info): Unconditionally call via computed ops,
7655         if possible.
7656
7657 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
7658             Tom Tromey  <tromey@redhat.com>
7659
7660         PR symtab/8421:
7661         * coffread.c (coff_register_index): New global.
7662         (process_coff_symbol, coff_read_enum_type): Set
7663         SYMBOL_ACLASS_INDEX.
7664         (_initialize_coffread): Initialize new global.
7665         * dwarf2loc.c (locexpr_find_frame_base_location)
7666         (dwarf2_block_frame_base_locexpr_funcs)
7667         (loclist_find_frame_base_location)
7668         (dwarf2_block_frame_base_loclist_funcs): New.
7669         (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
7670         (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
7671         * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
7672         (dwarf2_block_frame_base_loclist_funcs): New.
7673         * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
7674         (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
7675         globals.
7676         (read_func_scope): Update.
7677         (fixup_go_packaging, mark_common_block_symbol_computed)
7678         (var_decode_location, new_symbol_full, dwarf2_const_value):
7679         Set SYMBOL_ACLASS_INDEX.
7680         (dwarf2_symbol_mark_computed): Likewise.  Add 'is_block' argument.
7681         (_initialize_dwarf2_read): Initialize new globals.
7682         * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
7683         * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
7684         * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
7685         globals.
7686         (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
7687         (_initialize_mdebugread): Initialize new globals.
7688         * psympriv.h (struct partial_symbol) <aclass>: Update comment.
7689         * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
7690         (stab_register_index, stab_regparm_index): New globals.
7691         (define_symbol, read_enum_type, common_block_end): Set
7692         SYMBOL_ACLASS_INDEX.
7693         (_initialize_stabsread): Initialize new globals.
7694         * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
7695         globals.
7696         (MAX_SYMBOL_IMPLS): New define.
7697         (register_symbol_computed_impl, register_symbol_block_impl)
7698         (register_symbol_register_impl)
7699         (initialize_ordinary_address_classes): New functions.
7700         (_initialize_symtab): Call initialize_ordinary_address_classes.
7701         * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
7702         (struct symbol_impl): New.
7703         (SYMBOL_ACLASS_BITS): New define.
7704         (struct symbol) <aclass, ops>: Remove fields.
7705         <aclass_index>: New field.
7706         (symbol_impls): Declare.
7707         (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
7708         (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
7709         (register_symbol_computed_impl, register_symbol_block_impl)
7710         (register_symbol_register_impl): Declare.
7711         (struct symbol_computed_ops): Add location_has_loclist.
7712         (struct symbol_block_ops): New.
7713         (SYMBOL_BLOCK_OPS): New.
7714         * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
7715
7716 2013-03-20  Tom Tromey  <tromey@redhat.com>
7717
7718         * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
7719         (print_partial_symbols, recursively_search_psymtabs): Use
7720         PSYMBOL_CLASS.
7721
7722 2013-03-20  Pierre Muller  <muller@sourceware.org>
7723
7724         * contrib/ari/gdb_ari.sh (OP eol rule): Also check
7725         addtion, subtraction, multiplication and division binary operator.
7726
7727 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
7728
7729         Code cleanup.
7730         * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
7731         * bsd-kvm.c (bsd_kvm_close): Likewise.
7732         * bsd-uthread.c (bsd_uthread_close): Likewise.
7733         * corelow.c (core_close): Likewise.
7734         (core_close_cleanup): Remove parameter quitting from a caller.
7735         * event-top.c (async_disconnect): Likewise.
7736         * exec.c (exec_close_1): Remove parameter quitting.
7737         * go32-nat.c (go32_close): Likewise.
7738         * linux-nat.c (linux_nat_close): Remove parameter quitting.  Remove
7739         parameter quitting from a caller.
7740         * mips-linux-nat.c (super_close): Remove parameter quitting from the
7741         variable.
7742         (mips_linux_close): Remove parameter quitting.  Remove parameter
7743         quitting from a caller.
7744         * monitor.c (monitor_close): Remove parameter quitting.
7745         * monitor.h (monitor_close): Likewise.
7746         * record-btrace.c (record_btrace_close): Likewise.
7747         * record-full.c (record_full_close): Likewise.
7748         * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
7749         it also from fprintf_unfiltered.
7750         * remote-mips.c (mips_close): Remove parameter quitting.
7751         (mips_detach): Remove parameter quitting from a caller.
7752         * remote-sim.c (gdbsim_close): Remove parameter quitting.
7753         (gdbsim_close): Remove duplicate function comment.  Remove parameter
7754         quitting and remove it also from printf_filtered.
7755         * remote.c (remote_close): Remove parameter quitting.
7756         * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
7757         * target.c (update_current_target): Remove parameter int from to_close
7758         de_fault.
7759         (push_target, unpush_target, pop_target): Remove parameter quitting from
7760         a caller.
7761         (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
7762         Remove parameter quitting from a caller.
7763         (target_preopen): Remove parameter quitting from a caller.
7764         (target_close): Remove parameter quitting.  Remove parameter quitting
7765         from a caller two times.  Remove parameter quitting also from
7766         fprintf_unfiltered.
7767         * target.h (struct target_ops): Remove parameter quitting and as int
7768         from fields to_xclose and to_close.
7769         (extern struct target_ops current_target):
7770         (target_close, pop_all_targets): Remove parameter quitting.  Update the
7771         comment.
7772         (pop_all_targets_above): Remove parameter quitting.
7773         * top.c (quit_target): Remove parameter quitting from a caller.
7774         * tracepoint.c (tfile_close): Remove parameter quitting.
7775         * windows-nat.c (windows_close): Remove parameter quitting.
7776
7777 2013-03-20  Corinna Vinschen  <vinschen@redhat.com>
7778
7779         * windows-nat.c (handle_output_debug_string): Replace call
7780         to string_to_core_addr with call to strtoull.
7781
7782 2013-03-20  Yao Qi  <yao@codesourcery.com>
7783
7784         * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
7785         and write it to CTF metadata.
7786
7787 2013-03-19  Corinna Vinschen  <vinschen@redhat.com>
7788
7789         * windows-nat.c (handle_output_debug_string): Change type of n to
7790         SIZE_T to avoid crash on 64 bit systems.
7791
7792 2013-03-17  Eli Zaretskii  <eliz@gnu.org>
7793
7794         * python/python-internal.h (HAVE_SNPRINTF)
7795         [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
7796         about redefinition of snprintf by pyerrors.h.
7797
7798 2013-03-15  Steve Ellcey  <sellcey@mips.com>
7799
7800         * remote-sim.c (sim_command_completer): Make char arguments const.
7801
7802 2013-03-15  Tom Tromey  <tromey@redhat.com>
7803
7804         PR c++/15116:
7805         * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
7806
7807 2013-03-14  Tom Tromey  <tromey@redhat.com>
7808
7809         * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
7810         New fields.
7811         (get_file_crc): Move from symfile.c.
7812         (gdb_bfd_crc): New function.
7813         * gdb_bfd.h (gdb_bfd_crc): Declare.
7814         * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
7815         * symfile.c (get_file_crc): Move to gdb_bfd.c.
7816         (separate_debug_file_exists): Use gdb_bfd_crc.
7817
7818 2013-03-14  Tom Tromey  <tromey@redhat.com>
7819
7820         * symfile.c (get_debug_link_info): Remove.
7821         (find_separate_debug_file_by_debuglink): Use
7822         bfd_get_debug_link_info.
7823
7824 2013-03-14  Tom Tromey  <tromey@redhat.com>
7825
7826         * symtab.c (error_in_psymtab_expansion): New function.
7827         (lookup_symbol_aux_quick)
7828         (basic_lookup_transparent_type_quick): Remove "last resort"
7829         code.  Use error_in_psymtab_expansion.
7830
7831 2013-03-14  Doug Evans  <dje@google.com>
7832             Jan Kratochvil  <jan.kratochvil@redhat.com>
7833
7834         * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
7835         any successful compare_filenames_for_search or FILENAME_CMP.
7836         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
7837         * symtab.c (iterate_over_some_symtabs): Likewise.
7838
7839 2013-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
7840
7841         * source.c (print_source_lines_base): Make a local copy of
7842         symtab_to_fullname.
7843
7844 2013-03-14  Hui Zhu  <hui_zhu@mentor.com>
7845             Jan Kratochvil  <jan.kratochvil@redhat.com>
7846
7847         * source.c (print_source_lines_base): Suppress "file" for TUI.
7848
7849 2013-03-14  Keith Seitz  <keiths@redhat.com>
7850             Alan Matsuoka  <alanm@redhat.com>
7851
7852         PR c++/15203
7853         PR c++/15210
7854         * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
7855         TYPE_CODE_METHOD.
7856         * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
7857         symbols.
7858
7859 2013-03-14  Yao Qi  <yao@codesourcery.com>
7860
7861         * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
7862         status to tfile if trace is stopped by command 'tstop'.
7863
7864 2013-03-14  Yao Qi  <yao@codesourcery.com>
7865
7866         * tracepoint.c (tfile_write_status): Write trace notes and user
7867         name into tfile if they are not NULL.
7868
7869 2013-03-14  Hui Zhu  <hui@codesourcery.com>
7870             Yao Qi  <yao@codesourcery.com>
7871
7872         * Makefile.in (REMOTE_OBS): Add ctf.o.
7873         (SFILES): Add ctf.c.
7874         (HFILES_NO_SRCDIR): Add ctf.h.
7875         * ctf.c, ctf.h: New files.
7876         * tracepoint.c: Include 'ctf.h'.
7877         (collect_pseudocommand): Remove static.
7878         (trace_save_command): Parse option "-ctf".
7879         Produce different trace file writers per option.
7880         Adjust output message.
7881         (trace_save_tfile, trace_save_ctf): New.
7882         * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
7883         * mi/mi-main.c: Include 'ctf.h'.
7884         (mi_cmd_trace_save): Handle option '-ctf'.  Call either
7885         trace_save_tfile or trace_save_ctf.
7886         * NEWS: Mention these changes.
7887
7888 2013-03-14  Yao Qi  <yao@codesourcery.com>
7889
7890         * tracepoint.c (trace_file_writer_xfree): New.
7891         (struct tfile_writer_data): New.
7892         (tfile_dtor, tfile_can_target_save, tfile_start): New.
7893         (tfile_write_header, tfile_write_regblock_type): New.
7894         (tfile_write_status, tfile_write_uploaded_tsv): New.
7895         (tfile_write_uploaded_tp, tfile_write_definition_end): New.
7896         (tfile_write_raw_data, (tfile_end): New.
7897         (tfile_write_ops): New global variable.
7898         (TRACE_WRITE_R_BLOCK): New macro.
7899         (TRACE_WRITE_M_BLOCK_HEADER): New macro.
7900         (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
7901         (TRACE_WRITE_V_BLOCK): New macro.
7902         (trace_save): Add extra one parameter WRITER.  Make it static.
7903         Use WRITER to writer trace.
7904         (tfile_trace_file_writer_new): New.
7905         (trace_save_command): Caller update.
7906         (trace_save_tfile): Write trace data in TFILE format.
7907         * tracepoint.h (struct trace_frame_write_ops): New.
7908         (struct trace_file_write_ops): New.
7909         (struct trace_file_writer): New.
7910         (trace_save): Remove its declaration.
7911         (trace_save_tfile): Declare it.
7912         * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
7913         instead of trace_save.
7914
7915 2013-03-13  Pedro Alves  <palves@redhat.com>
7916
7917         * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
7918
7919 2013-03-13  Pedro Alves  <palves@redhat.com>
7920
7921         * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
7922         commented out code.
7923         * demangle.c (current_demangling_style_string): Make it const.
7924         (set_demangling_command): Assert the demangling style is known.
7925         Remove all handling of unknown styles.  Set
7926         'current_demangling_style_string' to an element of the
7927         demangling_style_names array.
7928         (set_demangling_style): Delete.
7929         (_initialize_demangler): Set current_demangling_style_string to the
7930         element of the demangling_style_names array that corresponds to
7931         the default demangling style.  Remove FIXME note.  Don't call
7932         set_demangling_style.
7933         * gdb-demangle.h (set_demangling_style): Remove declaration.
7934
7935 2013-03-13  Pedro Alves  <palves@redhat.com>
7936
7937         * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
7938         fields const.
7939         (ada_make_symbol_completion_list): Make "text0" parameter const.
7940         * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
7941         * breakpoint.c (condition_completer): Make "text" and "word"
7942         parameters const.  Adjust.
7943         (check_tracepoint_command): Adjust to validate_actionline
7944         prototype change.
7945         (catch_syscall_completer): Make "text" and "word" parameters
7946         const.
7947         * cli/cli-cmds.c (show_user): Make "comname" local const.
7948         (valid_command_p): Make "command" parameter const.
7949         (alias_command): Make "alias_prefix" and "command_prefix" locals
7950         const.
7951         * cli/cli-decode.c (add_cmd): Make "name" parameter const.
7952         (add_alias_cmd): Make "name" and "oldname" parameters const.
7953         Adjust.  No longer make copy of OLDNAME.
7954         (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
7955         (add_setshow_cmd_full, add_setshow_enum_cmd)
7956         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
7957         (add_setshow_filename_cmd, add_setshow_string_cmd)
7958         (add_setshow_string_noescape_cmd)
7959         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
7960         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
7961         (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
7962         (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
7963         Make "name" parameter const.
7964         (help_cmd): Rename "command" parameter to "arg".  New const local
7965         "command".
7966         (find_cmd): Make "command" parameter const.
7967         (lookup_cmd_1): Make "text" parameter pointer to const.  Adjust to
7968         deprecated_cmd_warning prototype change.
7969         (undef_cmd_error): Make "cmdtype" parameter const.
7970         (lookup_cmd): Make "line" parameter const.
7971         (deprecated_cmd_warning): Change type of "text" parameter to
7972         pointer to const char, from pointer to pointer to char.  Adjust.
7973         (lookup_cmd_composition): Make "text" parameter const.
7974         (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
7975         parameters const.
7976         * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
7977         const.
7978         * cli/cli-script.c (validate_comname): Make "tem" local const.
7979         (define_command): New const local "tem_c".  Use it in calls to
7980         lookup_cmd.
7981         (document_command): Make "tem" and "comfull" locals const.
7982         (show_user_1): Make "prefix" and "name" parameters const.
7983         * cli-script.h (show_user_1): Make "prefix" and "name" parameters
7984         const.
7985         * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
7986         (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
7987         (deprecated_cmd_warning, lookup_cmd_composition, add_com)
7988         (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
7989         (complete_on_enum, add_setshow_enum_cmd)
7990         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
7991         (add_setshow_filename_cmd, add_setshow_string_cmd)
7992         (add_setshow_string_noescape_cmd)
7993         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
7994         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
7995         (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
7996         Change prototypes, constifying strings.
7997         * completer.c (noop_completer, filename_completer): Make "text"
7998         and "prefix" parameters const.
7999         (location_completer, expression_completer)
8000         (complete_line_internal): Make "text" and "prefix" parameters
8001         const and adjust.
8002         (command_completer, signal_completer): Make "text" and "prefix"
8003         parameters const.
8004         * completer.h (noop_completer, filename_completer)
8005         (expression_completer, location_completer, command_completer)
8006         (signal_completer): Change prototypes.
8007         * corefile.c (complete_set_gnutarget): Make "text" and "word"
8008         parameters const.
8009         * cp-abi.c (cp_abi_completer): Likewise.
8010         * expression.h (parse_expression_for_completion): Change
8011         prototype.
8012         * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
8013         parameters const.
8014         * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
8015         * infrun.c (handle_completer): Make "text" and "word" parameters
8016         const.
8017         * interps.c (interpreter_completer): Make "text" and "word"
8018         parameters const.
8019         * language.h (struct language_defn)
8020         <la_make_symbol_completion_list>: Make "text" and "word"
8021         parameters const.
8022         * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
8023         (parse_exp_in_context): Rename to ...
8024         (parse_exp_in_context_1): ... this.
8025         (parse_exp_in_context): Reimplement, with const hack from
8026         parse_exp_1.
8027         (parse_expression_for_completion): Make "string" parameter const.
8028         * printcmd.c (decode_format): Make "string_ptr" parameter pointer
8029         to pointer to const char.  Adjust.
8030         (print_command_1): Make "exp" parameter const.
8031         (output_command): Rename to ...
8032         (output_command_const): ... this.  Make "exp" parameter const.
8033         (output_command): Reimplement.
8034         (x_command): Adjust.
8035         (display_command): Rename "exp" parameter to "arg".  New "exp"
8036         local, const version of "arg".
8037         * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
8038         "cmd_name" local const.
8039         * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
8040         call.
8041         (cmdpy_completer): Make "text" and "word" parameters const.
8042         (gdbpy_parse_command_name): Make "prefix_text2" local const.
8043         * python/py-param.c (add_setshow_generic): Make "tmp_name" local
8044         const.
8045         * remote.c (_initialize_remote): Make "cmd_name" local const.
8046         * symtab.c (language_search_unquoted_string): Make "text" and "p"
8047         parameters const.  Adjust.
8048         (completion_list_add_fields): Make "sym_text", "text" and "word"
8049         parameters const.
8050         (struct add_name_data) <sym_text, text, word>: Make fields const.
8051         (default_make_symbol_completion_list_break_on): Make "text" and
8052         "word" parameters const.  Adjust locals.
8053         (default_make_symbol_completion_list)
8054         (make_symbol_completion_list, make_symbol_completion_type)
8055         (make_symbol_completion_list_fn): Make "text" and "word"
8056         parameters const.
8057         (make_file_symbol_completion_list): Make "text", "word" and
8058         "srcfile" parameters const.  Adjust locals.
8059         (add_filename_to_list): Make "text" and "word" parameters const.
8060         (struct add_partial_filename_data) <text, word>: Make fields
8061         const.
8062         (make_source_files_completion_list): Make "text" and "word"
8063         parameters const.
8064         * symtab.h (default_make_symbol_completion_list_break_on)
8065         (default_make_symbol_completion_list, make_symbol_completion_list)
8066         (make_symbol_completion_type enum type_code)
8067         (make_symbol_completion_list_fn make_file_symbol_completion_list)
8068         (make_source_files_completion_list): Change prototype.
8069         * top.c (execute_command): Adjust to pass pointer to pointer to
8070         const char to lookup_cmd, and to deprecated_cmd_warning prototype
8071         change.
8072         (set_verbose): Make "cmdname" local const.
8073         * tracepoint.c (decode_agent_options): Make "exp" parameter const,
8074         and adjust.
8075         (validate_actionline): Make "line" parameter a pointer to const
8076         char, and adjust.
8077         (encode_actions_1): Make "action_exp" local const, and adjust.
8078         (encode_actions): Adjust.
8079         (replace_comma): Delete.
8080         (trace_dump_actions): Make "action_exp" and "next_comma" locals
8081         const, and adjust.  Don't frob the action string while splitting
8082         it at commas.  Instead, make a copy of each split substring in
8083         turn.
8084         (trace_dump_command): Adjust to validate_actionline prototype
8085         change.
8086         * tracepoint.h (decode_agent_options, decode_agent_options)
8087         (encode_actions, validate_actionline): Change prototypes.
8088         * valprint.h (output_command): Delete declaration.
8089         (output_command_const): Declare.
8090         * value.c (function_destroyer): Cast const away in xfree call.
8091
8092 2013-03-13  Pedro Alves  <palves@redhat.com>
8093
8094         * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
8095         rather than casting 'const char * const *' to 'const char **'.
8096         * ada-lex.l (processInt): Make "trailer" local const.  Remove
8097         'const char **' cast.
8098         * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
8099         locals, and use those as strtol output pointer, instead than doing
8100         invalid casts to from 'const char **' to 'char **'.
8101         (_initialize_demangle): Remove cast.
8102         * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
8103         locals, and use those as strtol output pointer, instead than doing
8104         invalid casts to from 'const char **' to 'char **'.
8105         * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
8106         casts.
8107         * stap-probe.c (stap_parse_register_operand)
8108         (stap_parse_single_operand): Likewise.
8109
8110 2013-03-13  Yao Qi  <yao@codesourcery.com>
8111
8112         * tracepoint.c (tfile_get_trace_state_variable_value): Look for
8113         the last matched 'V' blcok in trace frame.
8114
8115 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
8116
8117         * NEWS: Create a new section for the next release branch.
8118         Rename the section of the current branch, now that it has
8119         been cut.
8120
8121 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
8122
8123         GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
8124         * version.in: Bump version to 7.6.50.20130312-cvs.
8125
8126 2013-03-12  Keith Seitz  <keiths@redhat.com>
8127
8128         * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
8129         * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
8130         Remove temporary copy of input string.
8131         (mi_execute_command_wrapper): Make "cmd" const.
8132         * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
8133         * mi/mi-parse.c (mi_parse_argv): Make "args" const.
8134         Use const strings.
8135         (mi_parse): Make "cmd" const.
8136         Use const strings.
8137         * mi/mi-parse.h (mi_parse): Make "cmd" const.
8138
8139 2013-03-12  Keith Seitz  <keiths@redhat.com>
8140
8141         * ada-lang.c (ada_read_renaming_var_value): Pass const
8142         pointer to expression string to parse_exp_1.
8143         (create_excep_cond_exprs): Likewise.
8144         * ax-gdb.c (agent_eval_command_one): Likewise.
8145         (maint_agent_printf_command): Likewise.
8146         Constify much of the string handling/parsing.
8147         * breakpoint.c (set_breakpoint_condition): Pass const
8148         pointer to expression string to parse_exp_1.
8149         (update_watchpoint): Likewise.
8150         (parse_cmd_to_aexpr): Constify string handling.
8151         Pass const pointer to parse_exp_1.
8152         (init_breakpoint_sal): Pass const pointer to parse_exp_1.
8153         (find_condition_and_thread): Likewise.
8154         Make TOK const.
8155         (watch_command_1): Make "arg" const.
8156         Constify string handling.
8157         Copy the expression string instead of changing the input
8158         string.
8159         (update_breakpoint_location): Pass const pointer to
8160         parse_exp_1.
8161         * eval.c (parse_and_eval_address): Make "exp" const.
8162         (parse_to_comma_and_eval): Make "expp" const.
8163         (parse_and_eval): Make "exp" const.
8164         * expression.h (parse_expression): Make argument const.
8165         (parse_exp_1): Make first argument const.
8166         * findcmd.c (parse_find_args): Treat "args" as const.
8167         * linespec.c (parse_linespec): Pass const pointer to
8168         linespec_expression_to_pc.
8169         (linespec_expression_to_pc): Make "exp_ptr" const.
8170         * parse.c (parse_exp_1): Make "stringptr" const.
8171         Make a copy of the expression to pass to parse_exp_in_context until
8172         this whole interface can be constified.
8173         (parse_expression): Make "string" const.
8174         * printcmd.c (ui_printf): Treat "arg" as const.
8175         Handle const strings.
8176         * tracepoint.c (validate_actionline): Pass const pointer to
8177         all calls to parse_exp_1.
8178         (encode_actions_1): Likewise.
8179         * value.h (parse_to_comma_and_eval): Make argument const.
8180         (parse_and_eval_address): Likewise.
8181         (parse_and_eval): Likewise.
8182         * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
8183         (varobj_set_value): Likewise.
8184         * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
8185         constify string handling.
8186         Pass const pointers to parse_and_eval_address and
8187         parse_to_comman_and_eval.
8188         * cli/cli-utils.c (skip_to_space): Rename to ...
8189         (skip_to_space_const): ... this. Handle const strings.
8190         * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
8191         skip_to_space_const.
8192         (skip_to_space_const): Declare.
8193         * common/format.c (parse_format_string): Make "arg" const.
8194         Handle const strings.
8195         * common/format.h (parse_format_string): Make "arg" const.
8196         * gdbserver/ax.c (ax_printf): Make "format" const.
8197         * python/python.c (gdbpy_parse_and_eval): Do not make a copy
8198         of the expression string.
8199
8200 2013-03-12  Hui Zhu  <hui@codesourcery.com>
8201
8202         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
8203
8204 2013-03-12  Yao Qi  <yao@codesourcery.com>
8205             Hui Zhu  <hui@codesourcery.com>
8206
8207         * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
8208         (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
8209         DW_OP_deref_size.
8210
8211 2013-03-12  Paul Hilfinger  <hilfingr@adacore.com>
8212
8213         * ada-lex.l (rules): Only recognize 'thread' as a
8214         delimiter when followed by numerals, as for c-exp.y.
8215         Use new rewind_to_char function to rewind the input for
8216         expression-delimiting tokens.
8217         (rewind_to_char): New function.
8218
8219 2013-03-11  Pedro Alves  <palves@redhat.com>
8220             Jan Kratochvil  <jan.kratochvil@redhat.com>
8221
8222         * configure: Regenerate.
8223         * configure.ac (check dynamic export flag): Link python test with
8224         $PYTHON_LIBS.
8225
8226 2013-03-11  Doug Evans  <dje@google.com>
8227             Keith Seitz  <keiths@redhat.com>
8228
8229         * linespec.c (find_linespec_symbols): Call find_function_symbols
8230         first, and then call lookup_prefix_sym/find_method.
8231
8232 2013-03-11  Pedro Alves  <palves@redhat.com>
8233
8234         * charset.c (convert_between_encodings): Don't cast between
8235         different pointer to pointer types.  Instead, make the 'inp' local
8236         be of the type iconv expects.
8237         (wchar_iterate): Don't cast between different pointer to pointer
8238         types.  Instead, use new pointer local of the type iconv expects.
8239         * target.c (target_read_stralloc, target_fileio_read_stralloc):
8240         Add new local of type char pointer, and use it to get a
8241         char/string view of the byte buffer, instead of casting between
8242         pointer to pointer types.
8243
8244 2013-03-11  Hafiz Abid Qadeer  <abidh@codesourcery.com>
8245
8246         * remote.c (remote_set_trace_buffer_size): Move != operator
8247         to the start of next line to fix an ARI warning.
8248
8249 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8250
8251         * NEWS: Add record changes.
8252
8253 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8254
8255         * record-btrace.c (btrace_insn_history): Omit the pc prefix in
8256         the instruction history disassembly.
8257         * disasm.c (dump_insns): Omit the pc prefix, if requested.
8258         * disasm.h (DISASSEMBLY_OMIT_PC): New.
8259
8260 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8261
8262         * Makefile.in (SFILES): Add record-btrace.c
8263         (COMMON_OBS): Add record-btrace.o
8264         * record-btrace.c: New.
8265         * objfiles.c: Include btrace.h.
8266         (free_objfile): call btrace_free_objfile.
8267
8268 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8269
8270         * target.c (target_call_history, target_call_history_from,
8271         target_call_history_range): New.
8272         * target.h (target_ops) <to_call_history, to_call_history_from,
8273         to_call_history_range>: New fields.
8274         (target_call_history, target_call_history_from,
8275         target_call_history_range): New declaration.
8276         * record.c (get_call_history_modifiers, cmd_record_call_history,
8277         record_call_history_size): New.
8278         (_initialize_record): Add the "record function-call-history" command.
8279         Add "set/show record function-call-history-size" commands.
8280         * record.h (record_print_flag): New.
8281
8282 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8283
8284         * target.h (target_ops) <to_insn_history, to_insn_history_from,
8285         to_insn_history_range>: New fields.
8286         (target_insn_history): New.
8287         (target_insn_history_from): New.
8288         (target_insn_history_range): New.
8289         * target.c (target_insn_history): New.
8290         (target_insn_history_from): New.
8291         (target_insn_history_range): New.
8292         * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
8293         (record_insn_history_size): New.
8294         (get_insn_number): New.
8295         (get_context_size): New.
8296         (no_chunk): New.
8297         (get_insn_history_modifiers): New.
8298         (cmd_record_insn_history): New.
8299         (_initialize_record): Add "set/show record instruction-history-size"
8300         command. Add "record instruction-history" command.
8301
8302 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8303
8304         * record.h (record_disconnect): New.
8305         (record_detach): New.
8306         (record_mourn_inferior): New.
8307         (record_kill): New.
8308         * record-full.c (record_disconnect, record_detach,
8309         record_mourn_inferior, record_kill): Move to...
8310         * record.c: ...here.
8311         (DEBUG): New.
8312         (record_stop): New.
8313         (record_unpush): New.
8314         (cmd_record_stop): Call record_stop. Replace unpush_target
8315         call with record_unpush call.
8316         (record_disconnect, record_detach): Assert that the target
8317         is of record stratum. Call record_unpush, record_stop, and
8318         DEBUG.
8319         (record_mourn_inferior, record_kill): Assert that the target
8320         is of record stratum. Call record_unpush and DEBUG.
8321
8322 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8323
8324         * record-full.h, record-full.c (record_memory_query): Rename
8325         to ...
8326         (record_full_memory_query): ...this. Update all users.
8327         (record_arch_list_add_reg): Rename to ...
8328         (record_full_arch_list_add_reg): ...this. Update all users.
8329         (record_arch_list_add_mem): Rename to ...
8330         (record_full_arch_list_add_mem): ...this. Update all users.
8331         (record_arch_list_add_end): Rename to ...
8332         (record_full_arch_list_add_end): ...this. Update all users.
8333         (record_gdb_operation_disable_set): Rename to ...
8334         (record_full_gdb_operation_disable_set): ...this.
8335         Update all users.
8336
8337 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8338
8339         * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
8340         (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
8341         (RECORD_IS_REPLAY): Renamed to ...
8342         (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
8343         (RECORD_FILE_MAGIC): Renamed to ...
8344         (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
8345         (record_mem_entry): Renamed to ...
8346         (record_full_mem_entry): ... this. Updated all users.
8347         (record_reg_entry): Renamed to ...
8348         (record_full_reg_entry): ... this. Updated all users.
8349         (record_end_entry): Renamed to ...
8350         (record_full_end_entry): ... this. Updated all users.
8351         (record_type) <record_end, record_reg, record_mem>: Renamed
8352         to ...
8353         (record_full_type) <record_full_end, record_full_reg,
8354         record_full_mem>: ... this. Updated all users.
8355         (record_entry): Renamed to ...
8356         (record_full_entry): ... this. Updated all users.
8357         (record_core_buf_entry): Renamed to ...
8358         (record_full_core_buf_entry): ... this. Updated all users.
8359         (record_core_regbuf): Renamed to ...
8360         (record_full_core_regbuf): ... this. Updated all users.
8361         (record_core_start): Renamed to ...
8362         (record_full_core_start): ... this. Updated all users.
8363         (record_core_end): Renamed to ...
8364         (record_full_core_end): ... this. Updated all users.
8365         (record_core_buf_list): Renamed to ...
8366         (record_full_core_buf_list): ... this. Updated all users.
8367         (record_first): Renamed to ...
8368         (record_full_first): ... this. Updated all users.
8369         (record_list): Renamed to ...
8370         (record_full_list): ... this. Updated all users.
8371         (record_arch_list_head): Renamed to ...
8372         (record_full_arch_list_head): ... this. Updated all users.
8373         (record_arch_list_tail): Renamed to ...
8374         (record_full_arch_list_tail): ... this. Updated all users.
8375         (record_stop_at_limit): Renamed to ...
8376         (record_full_stop_at_limit): ... this. Updated all users.
8377         (record_insn_max_num): Renamed to ...
8378         (record_full_insn_max_num): ... this. Updated all users.
8379         (record_insn_num): Renamed to ...
8380         (record_full_insn_num): ... this. Updated all users.
8381         (record_insn_count): Renamed to ...
8382         (record_full_insn_count): ... this. Updated all users.
8383         (record_ops): Renamed to ...
8384         (record_full_ops): ... this. Updated all users.
8385         (record_core_ops): Renamed to ...
8386         (record_full_core_ops): ... this. Updated all users.
8387         (set_record_cmdlist): Renamed to ...
8388         (set_record_full_cmdlist): ... this. Updated all users.
8389         (show_record_cmdlist): Renamed to ...
8390         (show_record_full_cmdlist): ... this. Updated all users.
8391         (record_cmdlist): Renamed to ...
8392         (record_full_cmdlist): ... this. Updated all users.
8393         (record_beneath_to_resume_ops): Renamed to ...
8394         (record_full_beneath_to_resume_ops): ... this. Updated all users.
8395         (record_beneath_to_resume): Renamed to ...
8396         (record_full_beneath_to_resume): ... this. Updated all users.
8397         (record_beneath_to_wait_ops): Renamed to ...
8398         (record_full_beneath_to_wait_ops): ... this. Updated all users.
8399         (record_beneath_to_wait): Renamed to ...
8400         (record_full_beneath_to_wait): ... this. Updated all users.
8401         (record_beneath_to_store_registers_ops): Renamed to ...
8402         (record_full_beneath_to_store_registers_ops): ... this.
8403         Updated all users.
8404         (record_beneath_to_store_registers): Renamed to ...
8405         (record_full_beneath_to_store_registers): ... this.
8406         Updated all users.
8407         (record_beneath_to_xfer_partial_ops): Renamed to ...
8408         (record_full_beneath_to_xfer_partial_ops): ... this.
8409         Updated all users.
8410         (record_beneath_to_xfer_partial): Renamed to ...
8411         (record_full_beneath_to_xfer_partial): ... this.
8412         Updated all users.
8413         (record_beneath_to_insert_breakpoint): Renamed to ...
8414         (record_full_beneath_to_insert_breakpoint): ... this.
8415         Updated all users.
8416         (record_beneath_to_stopped_by_watchpoint): Renamed to ...
8417         (record_full_beneath_to_stopped_by_watchpoint): ... this.
8418         Updated all users.
8419         (record_beneath_to_stopped_data_address): Renamed to ...
8420         (record_full_beneath_to_stopped_data_address): ... this.
8421         Updated all users.
8422         (record_beneath_to_async): Renamed to ...
8423         (record_full_beneath_to_async): ... this. Updated all users.
8424         (record_goto_insn): Renamed to ...
8425         (record_full_goto_insn): ... this. Updated all users.
8426         (record_save): Renamed to ...
8427         (record_full_save): ... this. Updated all users.
8428         (record_reg_alloc): Renamed to ...
8429         (record_full_reg_alloc): ... this. Updated all users.
8430         (record_reg_release): Renamed to ...
8431         (record_full_reg_release): ... this. Updated all users.
8432         (record_mem_alloc): Renamed to ...
8433         (record_full_mem_alloc): ... this. Updated all users.
8434         (record_mem_release): Renamed to ...
8435         (record_full_mem_release): ... this. Updated all users.
8436         (record_end_alloc): Renamed to ...
8437         (record_full_end_alloc): ... this. Updated all users.
8438         (record_end_release): Renamed to ...
8439         (record_full_end_release): ... this. Updated all users.
8440         (record_entry_release): Renamed to ...
8441         (record_full_entry_release): ... this. Updated all users.
8442         (record_list_release): Renamed to ...
8443         (record_full_list_release): ... this. Updated all users.
8444         (record_list_release_following): Renamed to ...
8445         (record_full_list_release_following): ... this.
8446         Updated all users.
8447         (record_list_release_first): Renamed to ...
8448         (record_full_list_release_first): ... this. Updated all users.
8449         (record_arch_list_add): Renamed to ...
8450         (record_full_arch_list_add): ... this. Updated all users.
8451         (record_get_loc): Renamed to ...
8452         (record_full_get_loc): ... this. Updated all users.
8453         (record_check_insn_num): Renamed to ...
8454         (record_full_check_insn_num): ... this. Updated all users.
8455         (record_arch_list_cleanups): Renamed to ...
8456         (record_full_arch_list_cleanups): ... this. Updated all users.
8457         (record_message): Renamed to ...
8458         (record_full_message): ... this. Updated all users.
8459         (record_message_wrapper): Renamed to ...
8460         (record_full_message_wrapper): ... this. Updated all users.
8461         (record_message_wrapper_safe): Renamed to ...
8462         (record_full_message_wrapper_safe): ... this. Updated all users.
8463         (record_gdb_operation_disable): Renamed to ...
8464         (record_full_gdb_operation_disable): ... this. Updated all users.
8465         (record_hw_watchpoint): Renamed to ...
8466         (record_full_hw_watchpoint): ... this. Updated all users.
8467         (record_exec_insn): Renamed to ...
8468         (record_full_exec_insn): ... this. Updated all users.
8469         (record_restore): Renamed to ...
8470         (record_full_restore): ... this. Updated all users.
8471         (record_async_inferior_event_token): Renamed to ...
8472         (record_full_async_inferior_event_token): ... this.
8473         Updated all users.
8474         (record_async_inferior_event_handler): Renamed to ...
8475         (record_full_async_inferior_event_handler): ... this.
8476         Updated all users.
8477         (record_core_open_1): Renamed to ...
8478         (record_full_core_open_1): ... this. Updated all users.
8479         (record_open_1): Renamed to ...
8480         (record_full_open_1): ... this. Updated all users.
8481         (record_open): Renamed to ...
8482         (record_full_open): ... this. Updated all users.
8483         (record_close): Renamed to ...
8484         (record_full_close): ... this. Updated all users.
8485         (record_resume_step): Renamed to ...
8486         (record_full_resume_step): ... this. Updated all users.
8487         (record_resumed): Renamed to ...
8488         (record_full_resumed): ... this. Updated all users.
8489         (record_execution_dir): Renamed to ...
8490         (record_full_execution_dir): ... this. Updated all users.
8491         (record_resume): Renamed to ...
8492         (record_full_resume): ... this. Updated all users.
8493         (record_get_sig): Renamed to ...
8494         (record_full_get_sig): ... this. Updated all users.
8495         (record_sig_handler): Renamed to ...
8496         (record_full_sig_handler): ... this. Updated all users.
8497         (record_wait_cleanups): Renamed to ...
8498         (record_full_wait_cleanups): ... this. Updated all users.
8499         (record_wait_1): Renamed to ...
8500         (record_full_wait_1): ... this. Updated all users.
8501         (record_wait): Renamed to ...
8502         (record_full_wait): ... this. Updated all users.
8503         (record_stopped_by_watchpoint): Renamed to ...
8504         (record_full_stopped_by_watchpoint): ... this. Updated all users.
8505         (record_disconnect): Renamed to ...
8506         (record_full_disconnect): ... this. Updated all users.
8507         (record_detach): Renamed to ...
8508         (record_full_detach): ... this. Updated all users.
8509         (record_mourn_inferior): Renamed to ...
8510         (record_full_mourn_inferior): ... this. Updated all users.
8511         (record_kill): Renamed to ...
8512         (record_full_kill): ... this. Updated all users.
8513         (record_stopped_data_address): Renamed to ...
8514         (record_full_stopped_data_address): ... this. Updated all users.
8515         (record_registers_change): Renamed to ...
8516         (record_full_registers_change): ... this. Updated all users.
8517         (record_store_registers): Renamed to ...
8518         (record_full_store_registers): ... this. Updated all users.
8519         (record_xfer_partial): Renamed to ...
8520         (record_full_xfer_partial): ... this. Updated all users.
8521         (record_breakpoint): Renamed to ...
8522         (record_full_breakpoint): ... this. Updated all users.
8523         (record_breakpoint_p): Renamed to ...
8524         (record_full_breakpoint_p): ... this. Updated all users.
8525         (record_breakpoints): Renamed to ...
8526         (record_full_breakpoints): ... this. Updated all users.
8527         (record_sync_record_breakpoints): Renamed to ...
8528         (record_full_sync_record_breakpoints): ... this.
8529         Updated all users.
8530         (record_init_record_breakpoints): Renamed to ...
8531         (record_full_init_record_breakpoints): ... this.
8532         Updated all users.
8533         (record_insert_breakpoint): Renamed to ...
8534         (record_full_insert_breakpoint): ... this. Updated all users.
8535         (record_remove_breakpoint): Renamed to ...
8536         (record_full_remove_breakpoint): ... this. Updated all users.
8537         (record_can_execute_reverse): Renamed to ...
8538         (record_full_can_execute_reverse): ... this. Updated all users.
8539         (record_get_bookmark): Renamed to ...
8540         (record_full_get_bookmark): ... this. Updated all users.
8541         (record_goto_bookmark): Renamed to ...
8542         (record_full_goto_bookmark): ... this. Updated all users.
8543         (record_async): Renamed to ...
8544         (record_full_async): ... this. Updated all users.
8545         (record_can_async_p): Renamed to ...
8546         (record_full_can_async_p): ... this. Updated all users.
8547         (record_is_async_p): Renamed to ...
8548         (record_full_is_async_p): ... this. Updated all users.
8549         (record_execution_direction): Renamed to ...
8550         (record_full_execution_direction): ... this. Updated all users.
8551         (record_info): Renamed to ...
8552         (record_full_info): ... this. Updated all users.
8553         (record_delete): Renamed to ...
8554         (record_full_delete): ... this. Updated all users.
8555         (record_is_replaying): Renamed to ...
8556         (record_full_is_replaying): ... this. Updated all users.
8557         (record_goto_entry): Renamed to ...
8558         (record_full_goto_entry): ... this. Updated all users.
8559         (record_goto_begin): Renamed to ...
8560         (record_full_goto_begin): ... this. Updated all users.
8561         (record_goto_end): Renamed to ...
8562         (record_full_goto_end): ... this. Updated all users.
8563         (record_goto): Renamed to ...
8564         (record_full_goto): ... this. Updated all users.
8565         (init_record_ops): Renamed to ...
8566         (init_record_full_ops): ... this. Updated all users.
8567         (record_core_resume): Renamed to ...
8568         (record_full_core_resume): ... this. Updated all users.
8569         (record_core_kill): Renamed to ...
8570         (record_full_core_kill): ... this. Updated all users.
8571         (record_core_fetch_registers): Renamed to ...
8572         (record_full_core_fetch_registers): ... this. Updated all users.
8573         (record_core_prepare_to_store): Renamed to ...
8574         (record_full_core_prepare_to_store): ... this. Updated all users.
8575         (record_core_store_registers): Renamed to ...
8576         (record_full_core_store_registers): ... this. Updated all users.
8577         (record_core_xfer_partial): Renamed to ...
8578         (record_full_core_xfer_partial): ... this. Updated all users.
8579         (record_core_insert_breakpoint): Renamed to ...
8580         (record_full_core_insert_breakpoint): ... this. Updated all users.
8581         (record_core_remove_breakpoint): Renamed to ...
8582         (record_full_core_remove_breakpoint): ... this. Updated all users.
8583         (record_core_has_execution): Renamed to ...
8584         (record_full_core_has_execution): ... this. Updated all users.
8585         (init_record_core_ops): Renamed to ...
8586         (init_record_full_core_ops): ... this. Updated all users.
8587         (cmd_record_restore): Renamed to ...
8588         (cmd_record_full_restore): ... this. Updated all users.
8589         (record_save_cleanups): Renamed to ...
8590         (record_full_save_cleanups): ... this. Updated all users.
8591         (cmd_record_start): Renamed to ...
8592         (cmd_record_full_start): ... this. Updated all users.
8593         (set_record_insn_max_num): Renamed to ...
8594         (set_record_full_insn_max_num): ... this. Updated all users.
8595         (set_record_command): Renamed to ...
8596         (set_record_full_command): ... this. Updated all users.
8597         (show_record_command): Renamed to ...
8598         (show_record_full_command): ... this. Updated all users.
8599         (_initialize_record): Renamed to ...
8600         (_initialize_record_full): ... this. Updated all users.
8601
8602 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8603
8604         * record.h: Split into this and ...
8605         * record-full.h: ... this.
8606         * record.c: Split into this and ...
8607         * record-full.c: ... this.
8608         * target.h (target_ops): Add new fields to_info_record,
8609         to_save_record, to_delete_record, to_record_is_replaying,
8610         to_goto_record_begin, to_goto_record_end, to_goto_record.
8611         (target_info_record): New.
8612         (target_save_record): New.
8613         (target_supports_delete_record): New.
8614         (target_delete_record): New.
8615         (target_record_is_replaying): New.
8616         (target_goto_record_begin): New.
8617         (target_goto_record_end): New.
8618         (target_goto_record): New.
8619         * target.c (target_info_record): New.
8620         (target_save_record): New.
8621         (target_supports_delete_record): New.
8622         (target_delete_record): New.
8623         (target_record_is_replaying): New.
8624         (target_goto_record_begin): New.
8625         (target_goto_record_end): New.
8626         (target_goto_record): New.
8627         * record.h: Declare struct cmd_list_element.
8628         (record_cmdlist): New declaration.
8629         (set_record_cmdlist): New declaration.
8630         (show_record_cmdlist): New declaration.
8631         (info_record_cmdlist): New declaration.
8632         (cmd_record_goto): New declaration.
8633         * record.c: Remove unnecessary includes.
8634         Include inferior.h.
8635         (cmd_record_goto): Remove declaration.
8636         (record_cmdlist): Now extern. Initialize.
8637         (set_record_cmdlist): Now extern. Initialize.
8638         (show_record_cmdlist): Now extern. Initialize.
8639         (info_record_cmdlist): Now extern. Initialize.
8640         (find_record_target): New.
8641         (require_record_target): New.
8642         (cmd_record_start): Update.
8643         (cmd_record_delete): Remove target-specific code.
8644         Call target_delete_record.
8645         (cmd_record_stop): Unpush any record target.
8646         (set_record_insn_max_num): Move to record-full.c
8647         (set_record_command): Add comment.
8648         (show_record_command): Add comment.
8649         (info_record_command): Update comment.
8650         Remove target-specific code.
8651         Call the record target's to_info_record.
8652         (cmd_record_start): New.
8653         (cmd_record_goto): Now extern.
8654         Remove target-specific code.
8655         Call target_goto_begin,  target_goto_end, or target_goto.
8656         (_initialize_record): Move record target ops initialization to
8657         record-full.c.
8658         Change "record" command help text.
8659         Move "record restore", "record set", and "record show" commands to
8660         record-full.c.
8661         * Makefile.in (SFILES): Add record-full.c.
8662         (HFILES_NO_SRCDIR): Add record-full.h.
8663         (COMMON_OBS): Add record-full.o.
8664         * amd64-linux-tdep.c: Include record-full.h instead of record.h.
8665         * arm-tdep.c: Include record-full.h.
8666         * i386-linux-tdep.c: Include record-full.h instead of record.h.
8667         * i386-tdep.c: Include record-full.h.
8668         * infrun.c: Include record-full.h.
8669         * linux-record.c: Include record-full.h.
8670         * moxie-tdep.c: Include record-full.h.
8671         * record-full.c: Include record-full.h.
8672         Change module comment.
8673         (set_record_full_cmdlist): New.
8674         (show_record_full_cmdlist): New.
8675         (record_full_cmdlist): New.
8676         (record_goto_insn): New declaration.
8677         (record_save): New declaration.
8678         (record_check_insn_num): Change query string.
8679         (record_info): New.
8680         (record_delete): New.
8681         (record_is_replaying): New.
8682         (record_goto_entry): New.
8683         (record_goto_begin): New.
8684         (record_goto_end): New.
8685         (record_goto): New.
8686         (init_record_ops): Update.
8687         (init_record_core_ops): Update.
8688         (cmd_record_save): Rename to record_save. Remove target and arg checks.
8689         (cmd_record_start): New.
8690         (set_record_insn_max_num): Moved from record.c
8691         (set_record_full_command): New.
8692         (show_record_full_command): New.
8693         (_initialize_record_full): New.
8694
8695 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8696
8697         * target.h (add_deprecated_target_alias): New.
8698         * target.c (add_deprecated_target_alias): New.
8699
8700 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8701
8702         * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
8703         and signal.h.
8704         (linux_supports_btrace): Add kernel and
8705         cpuid check.
8706         (kernel_supports_btrace): New function.
8707         (cpu_supports_btrace): New function.
8708         (intel_supports_btrace): New function.
8709
8710 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8711
8712         * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
8713         * remote.c: Include btrace.h.
8714         (struct btrace_target_info): New struct.
8715         (remote_supports_btrace): New function.
8716         (send_Qbtrace): New function.
8717         (remote_enable_btrace): New function.
8718         (remote_disable_btrace): New function.
8719         (remote_teardown_btrace): New function.
8720         (remote_read_btrace): New function.
8721         (init_remote_ops): Add btrace ops.
8722         (enum <unnamed>): Add btrace packets.
8723         (struct protocol_feature remote_protocol_features[]): Add btrace packets.
8724         (_initialize_remote): Add packet configuration for branch tracing.
8725
8726 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8727
8728         * features/btrace.dtd: New file.
8729         * Makefile.in (XMLFILES): Add btrace.dtd.
8730         * btrace.h (parse_xml_btrace): New declaration.
8731         * btrace.c: Include xml-support.h.
8732         (parse_xml_btrace): New function.
8733         (parse_xml_btrace_block): New function.
8734         (block_attributes): New struct.
8735         (btrace_attributes): New struct.
8736         (btrace_children): New struct.
8737         (btrace_elements): New struct.
8738
8739 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8740
8741         * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
8742         (amd64_linux_enable_btrace): New.
8743         (amd64_linux_disable_btrace): New.
8744         (amd64_linux_teardown_btrace): New.
8745         (_initialize_amd64_linux_nat): Initialize btrace ops.
8746         * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
8747         (i386_linux_enable_btrace): New.
8748         (i386_linux_disable_btrace): New.
8749         (i386_linux_teardown_btrace): New.
8750         (_initialize_i386_linux_nat): Initialize btrace ops.
8751         * config/i386/linux.mh: Add linux-btrace.o.
8752         * config/i386/linux64.mh: Add linux-btrace.o.
8753
8754 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8755
8756         * common/linux_btrace.h: New file.
8757         * common/linux_btrace.c: New file.
8758         * Makefile.in (SFILES): Add btrace.c.
8759         (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
8760         (COMMON_OBS): Add btrace.o.
8761         (linux-btrace.o): New rule.
8762
8763 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8764
8765         * target.h: Include btrace.h.
8766         (struct target_ops) <to_supports_btrace, to_enable_btrace,
8767         to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
8768         * target.c (target_supports_btrace): New function.
8769         (target_enable_btrace): New function.
8770         (target_disable_btrace): New function.
8771         (target_teardown_btrace): New function.
8772         (target_read_btrace): New function.
8773         * btrace.h: New file.
8774         * btrace.c: New file.
8775         * Makefile.in: Add btrace.c.
8776         * gdbthread.h: Include btrace.h.
8777         (struct thread_info): Add btrace field.
8778         * thread.c: Include btrace.h.
8779         (clear_thread_inferior_resources): Call target_teardown_btrace.
8780         * common/btrace-common.h: New file.
8781
8782 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
8783
8784         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
8785         for CHILD, ignore PTRACE_KILL errors, move the inner block variable
8786         kill_status to outer block.
8787
8788 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
8789
8790         Fix entry-values if the callee called a noreturn function.
8791         * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
8792         get_frame_address_in_block.  Add new comment.
8793
8794 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
8795
8796         Fix entry-values in C++ across CUs.
8797         * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
8798         lookup_minimal_symbol.  Add a comment.
8799         * dwarf2read.c
8800         (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
8801         DW_AT_linkage_name.
8802
8803 2013-03-08  Yao Qi  <yao@codesourcery.com>
8804
8805         * tracepoint.c (_initialize_tracepoint): Indent the code.
8806
8807 2013-03-08  Pedro Alves  <palves@redhat.com>
8808
8809         * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
8810         (parse_find_args, find_command): Change type of pattern buffer
8811         locals to 'gdb_byte *'.
8812
8813 2013-03-08  Stan Shebs  <stan@codesourcery.com>
8814             Hafiz Abid Qadeer  <abidh@codesourcery.com>
8815
8816         * NEWS: Mention set and show trace-buffer-size commands.
8817         Mention new packet.
8818         * target.h (struct target_ops): New method
8819         to_set_trace_buffer_size.
8820         (target_set_trace_buffer_size): New macro.
8821         * target.c (update_current_target): Set up new method.
8822         * tracepoint.c (trace_buffer_size): New global.
8823         (start_tracing): Send it to the target.
8824         (set_trace_buffer_size): New function.
8825         (_initialize_tracepoint): Add new setshow for trace-buffer-size.
8826         * remote.c (remote_set_trace_buffer_size): New function.
8827         (_initialize_remote): Use it.
8828         (QTBuffer:size) New remote command.
8829         (PACKET_QTBuffer_size): New enum.
8830         (remote_protocol_features): Add an entry for
8831         PACKET_QTBuffer_size.
8832
8833 2013-03-08  Tom Tromey  <tromey@redhat.com>
8834
8835         * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
8836         variable.
8837
8838 2013-03-07  Pedro Alves  <palves@redhat.com>
8839
8840         * target.c (target_read_stralloc, target_fileio_read_alloc):
8841         *Cast pointer to 'gdb_byte *' in target call.
8842
8843 2013-03-07  Pedro Alves  <palves@redhat.com>
8844
8845         * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
8846         call.
8847
8848 2013-03-07  Keith Seitz  <keiths@redhat.com>
8849
8850         * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
8851         (trace_pass_command): Likewise.
8852         * cli/cli-cmds.c: Include cli/cli-utils.h.
8853         (source_command): Use skip-spaces.
8854         (disassemble_command): Likewise.
8855         * findcmd.c: Include cli/cli-utils.h.
8856         (parse_find_args): Use skip_spaces.
8857         * go32-nat.c: Include cli/cli-utils.h.
8858         (go32_sldt): Use skip_spaces.
8859         (go32_sgdt): Likewise.
8860         (go32_sidt): Likewise.
8861         (go32_pde): Likewise.
8862         (go32_pte): Likewise.
8863         (go32_pte_for_address): Likewise.
8864         * infcmd.c: Include cli/cli-utils.h.
8865         (registers_info): Use skip_spaces.
8866         * linux-tdep.c (read_mapping): Use skip_spaces_const.
8867         (linux_info_proc): Likewise.
8868         * linux-thread-db.c: Include cli/cli-utils.h.
8869         (info_auto_load_libthread_db): Use skip_spaces_const.
8870         * m32r-rom.c: Include cli/cli-utils.h.
8871         (m32r_upload_command): Use skip_spaces.
8872         * maint.c: Include cli/cli-utils.h.
8873         (maintenance_translate_address): Use skip_spaces.
8874         * mi/mi-parse.c: Include cli/cli-utils.h.
8875         (mi_parse_argv): Use skip_spaces.
8876         (mi_parse): Likewise.
8877         * minsyms.c: Include cli/cli-utils.h.
8878         (msymbol_hash_iw): Use skip_spaces_const.
8879         * objc-lang.c: Include cli/cli-utils.h.
8880         (parse_selector): Use skip_spaces.
8881         (parse_method): Likewise.
8882         * python/python.c: Include cli/cli-utils.h.
8883         (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
8884         (python_command)[HAVE_PYTHON]: Likewise.
8885         (python_interactive_command)[!HAVE_PYTHON]: Likewise.
8886         * remote-m32r-sdi.c: Include cli/cli-utils.h.
8887         (m32r_load): Use skip_spaces.
8888         * serial.c: Include cli/cli-utils.h.
8889         (serial_open): Use skip_spaces_const.
8890         * stack.c: Include cli/cli-utils.h.
8891         (parse_frame_specification_1): Use skip_spaces_const.
8892         * symfile.c: Include cli/cli-utils.h.
8893         (set_ext_lang_command): Use skip_spaces.
8894         * symtab.c: Include cli/cli-utils.h.
8895         (rbreak_command): Use skip_spaces.
8896         * thread.c (thread_name_command): Use skip_spaces.
8897         * tracepoint.c (validate_actionline): Use skip_spaces.
8898         (encode_actions_1): Likewise.
8899         (trace_find_range_command): Likewise.
8900         (trace_find_outside_command): Likewise.
8901         (trace_dump_actions): Likewise.
8902
8903 2013-03-07  Pedro Alves  <palves@redhat.com>
8904
8905         * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
8906         * expprint.c (print_subexp_standard): Likewise.
8907         * utils.c (host_char_to_target): Likewise.
8908         * valprint.c (generic_emit_char, generic_printstr): Likewise.
8909         * varobj.c (value_get_print_value): Change type of local to char*.
8910         Cast it gdb_byte * in call to language printer.
8911
8912 2013-03-07  Pedro Alves  <palves@redhat.com>
8913
8914         * charset.c (struct wchar_iterator) <input>: Change type to 'const
8915         gdb_byte *'.
8916         (make_wchar_iterator): Remove cast to char*.
8917         (wchar_iterate): Change type of local.
8918
8919 2013-03-07  Pedro Alves  <palves@redhat.com>
8920
8921         * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
8922         for 'regcache->register_status'.
8923
8924 2013-03-07  Pedro Alves  <palves@redhat.com>
8925
8926         * breakpoint.c (breakpoint_xfer_memory): Change type of local to
8927         int.
8928
8929 2013-03-07  Pedro Alves  <palves@redhat.com>
8930
8931         * stap-probe.c (handle_stap_probe): Add cast to char*.
8932
8933 2013-03-07  Pedro Alves  <palves@redhat.com>
8934
8935         * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
8936         RECORD_MSGRCV>: Pass a signed variable to
8937         regcache_raw_read_signed, instead of an unsigned one.
8938
8939 2013-03-07  Pedro Alves  <palves@redhat.com>
8940
8941         * remote-notif.c (notif_debug): Change type to int.
8942         * remote-notif.h (notif_debug): Likewise.
8943
8944 2013-03-07  Pedro Alves  <palves@redhat.com>
8945
8946         * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
8947
8948 2013-03-07  Pedro Alves  <palves@redhat.com>
8949
8950         * remote.c (hex2bin, bin2hex): Move extern declarations to ...
8951         * remote.h (hex2bin, bin2hex): ... here.
8952         * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
8953
8954 2013-03-07  Eli Zaretskii  <eliz@gnu.org>
8955
8956         * utils.c (initialize_utils): Improve doc strings of "set/show
8957         width", "set/show height", and "set/show pagination".
8958
8959 2013-03-06  Keith Seitz  <keiths@redhat.com>
8960
8961         * ax-gdb.c (gen_printf): Make FORMAT const.
8962         * ax-gdb.h (gen_printf): Likewise.
8963         * ax-general.c (ax_string): Make STR const.
8964         * ax.h (ax_string): Likewise.
8965
8966 2013-03-06  Doug Evans  <dje@google.com>
8967
8968         * elfread.c (elf_symfile_read): Move debugging printf to more
8969         logical location.
8970
8971 2013-03-06  Pedro Alves  <palves@redhat.com>
8972
8973         * python/py-utils.c (target_string_to_unicode): Delete function.
8974         * python/python-internal.h (target_string_to_unicode): Delete
8975         declaration.
8976
8977 2013-03-06  Pierre Muller  <muller@sourceware.org>
8978
8979         * linespec.c (get_current_search_block): ARI fix, use (void)
8980         for empty parameter list.
8981
8982 2013-03-05  Doug Evans  <dje@google.com>
8983
8984         * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
8985         of old ada_lookup_symbol_list.  In !full_search case, don't
8986         search superblocks.
8987         (ada_lookup_symbol_list): Delete arg full_search, all callers
8988         updated.  Call ada_lookup_symbol_list_worker.
8989         (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
8990         * ada-lang.h (ada_lookup_symbol_list): Update.
8991         * language.h (language_defn): Update comment for
8992         la_iterate_over_symbols.
8993         * linespec.c (iterate_over_file_blocks): New function.
8994         (iterate_over_all_matching_symtabs): Call it.
8995         (lookup_prefix_sym): Ditto.
8996         (get_current_search_block): New function.
8997         (get_search_block): Delete.
8998         (find_label_symbols): Call get_current_search_block.
8999         (add_matching_symbols_to_info): Call iterate_over_file_blocks.
9000         * symtab.c (iterate_over_symbols): Don't search superblocks.
9001
9002 2013-03-05  Yao Qi  <yao@codesourcery.com>
9003
9004         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
9005         parameter VAR's type from "unsigned int" to "int".
9006         * command.h (var_zuinteger_unlimited): Update its comments.
9007         (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
9008
9009 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
9010
9011         * NEWS: Mention new target x86_64-*-cygwin*.
9012
9013 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
9014
9015         * configure.host: Add x86_64-*-cygwin* as host.
9016         * configure.tgt: Add x86_64-*-cygwin* as target.
9017         * config/i386/cygwin64.mh: New file.
9018
9019 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
9020
9021         * linespec.c (decode_line_2): Fix duplicate request off by two message.
9022
9023 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
9024
9025         * linespec.c (struct linespec_canonical_name): New.
9026         (struct linespec_state): Change canonical_names type to it.
9027         (add_sal_to_sals): Change variable canonical_name to canonical.  Change
9028         xrealloc element size.  Initialize the different CANONICAL fields.
9029         (canonical_to_fullform): New.
9030         (filter_results): Use it.  Add variables canonical, fullform and
9031         cleanup.
9032         (struct decode_line_2_item, decode_line_2_compare_items): New.
9033         (decode_line_2): Remove variables iter and item_names, add variables
9034         items and items_count.  Modify the code for these new variables.
9035
9036 2013-03-04  Corinna Vinschen  <vinschen@redhat.com>
9037
9038         * coff-pe-read.c (read_pe_exported_syms): Don't return without
9039         calling do_cleanup.
9040
9041 2013-03-04  Luis Machado  <lgustavo@codesourcery.com>
9042
9043         * tracepoint.c (build_traceframe_info): Add code for byte order.
9044
9045 2013-03-02  Kevin Buettner  <kevinb@redhat.com>
9046
9047         * v850-tdep.c: (v850e2_register_name): Revise system register
9048         names to match current V850E2M architecture specifications.
9049         Update register number enum comments too.
9050
9051 2013-03-01  Jiong Wang  <jiwang@tilera.com>
9052             Pedro Alves  <palves@redhat.com>
9053
9054         * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
9055         to END_ADDR.
9056         (tilegx_skip_prologue): Limit prologue analysis to section end.
9057
9058 2013-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
9059
9060         * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
9061         use it.
9062
9063 2013-03-01  Pedro Alves  <palves@redhat.com>
9064
9065         Use gdb_byte for bytes from the program being debugged.
9066
9067         * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
9068         Change type of local 'buf' to gdb_byte.
9069         * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
9070         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
9071         * cris-tdep.c (cris_sigcontext_addr)
9072         (cris_sigtramp_frame_unwind_cache): Likewise.
9073         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
9074         (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
9075         Likewise.
9076         * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
9077         * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
9078         (hppa32_hpux_search_dummy_call_sequence)
9079         (hppa_hpux_supply_save_state): Likewise.
9080         * hppa-linux-tdep.c (insns_match_pattern)
9081         (hppa_linux_find_global_pointer): Likewise.
9082         * hppa-tdep.c (hppa_in_function_epilogue_p)
9083         (skip_prologue_hard_way, hppa_frame_cache): Likewise.
9084         * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
9085         * i386fbsd-tdep.c (i386fbsd_supply_uthread)
9086         (i386fbsd_collect_uthread): Likewise.
9087         * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
9088         * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
9089         * ia64-tdep.c (examine_prologue, ia64_frame_cache)
9090         (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
9091         (ia64_sigtramp_frame_prev_register, ia64_access_reg)
9092         (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
9093         (ia64_libunwind_frame_prev_register)
9094         (ia64_libunwind_sigtramp_frame_this_id)
9095         (ia64_find_global_pointer_from_dynamic_section)
9096         (find_extant_func_descr, find_func_descr, ia64_dummy_id)
9097         (ia64_unwind_pc): Likewise.
9098         * iq2000-tdep.c (iq2000_store_return_value): Likewise.
9099         * m68hc11-tdep.c (m68hc11_push_dummy_call)
9100         (m68hc11_extract_return_value): Likewise.
9101         * m68klinux-nat.c (fetch_register, store_register): Likewise.
9102         * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
9103         (mep_get_insn, mep_push_dummy_call): Likewise.
9104         * mips-linux-tdep.c (mips_linux_get_longjmp_target)
9105         (mips_linux_in_dynsym_stub): Likewise.
9106         * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
9107         * ppc-linux-nat.c (fetch_register, store_register): Likewise.
9108         * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
9109         to gdb_byte.
9110         * remote-mips.c (mips_set_register): Likewise.
9111         * remote-sim.c (gdbsim_fetch_register): Likewise.
9112         * score-tdep.c (score7_fetch_inst): Change type of parameter
9113         'memblock' and local 'buf' to gdb_byte.
9114         (score7_malloc_and_get_memblock): Change return type to gdb_byte.
9115         Change type of local 'buf' to gdb_byte.  Adjust.
9116         (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
9117         to gdb_byte**.
9118         (score7_analyze_prologue): Change type of 'memblock' and
9119         'memblock_ptr' locals to gdb_byte*.
9120         * sh64-tdep.c (sh64_extract_return_value)
9121         (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
9122         * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
9123         * solib-pa64.c (pa64_solib_create_inferior_hook)
9124         (pa64_open_symbol_file_object): Remove local 'buf'.
9125         * solib-som.c (som_solib_create_inferior_hook, link_map_start)
9126         (som_open_symbol_file_object): Likewise.
9127         * solib-spu.c (spu_current_sos): Likewise.
9128         * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
9129         * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
9130         (spu_store_registers): Likewise.
9131         * target.c (debug_print_register): Likewise.
9132         * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
9133         * xstormy16-tdep.c (xstormy16_store_return_value)
9134         (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
9135         (xstormy16_find_jmp_table_entry): Likewise.
9136
9137 2013-03-01  Jiong Wang  <jiwang@tilera.com>
9138
9139         * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
9140         (tilegx_gdbarch_init): Install it.
9141
9142 2013-02-28  Tom Tromey  <tromey@redhat.com>
9143
9144         * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
9145         PyLong_Check.
9146
9147 2013-02-28  Doug Evans  <dje@google.com>
9148
9149         * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
9150         * python/python.c (gdbpy_find_pc_line): Ditto.
9151
9152 2013-02-28  Tom Tromey  <tromey@redhat.com>
9153
9154         * contrib/excheck.py: New file.
9155         * contrib/exsummary.py: New file.
9156         * contrib/gcc-with-excheck: New file.
9157
9158 2013-02-28  Tom Tromey  <tromey@redhat.com>
9159
9160         * python/python.c (gdbpy_print_stack): Call begin_line and
9161         fprintf_filtered inside TRY_CATCH.
9162
9163 2013-02-28  Tom Tromey  <tromey@redhat.com>
9164
9165         * python/python.c (gdbpy_find_pc_line): Call find_pc_line
9166         inside TRY_CATCH.
9167
9168 2013-02-28  Tom Tromey  <tromey@redhat.com>
9169
9170         * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
9171         frame_object_to_frame_info inside TRY_CATCH.
9172
9173 2013-02-28  Tom Tromey  <tromey@redhat.com>
9174
9175         * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
9176         TRY_CATCH.
9177
9178 2013-02-28  Tom Tromey  <tromey@redhat.com>
9179
9180         * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
9181
9182 2013-02-27  Corinna Vinschen  <vinschen@redhat.com>
9183
9184         * windows-nat.c: Throughout, fix format strings and casts of
9185         printf-like functions to avoid type related warnings on all
9186         platforms.
9187         (handle_output_debug_string): Fetch context information address
9188         from debug string using string_to_core_addr.
9189
9190 2013-02-27  Jiong Wang  <jiwang@tilera.com>
9191
9192         * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
9193         * regformats/reg-tilegx32.dat: New.
9194
9195 2013-02-27  Jiong Wang  <jiwang@tilera.com>
9196
9197         * configure.tgt (tilegx-*-linux*): Enable gdbserver.
9198
9199 2013-02-27  Jiong Wang  <jiwang@tilera.com>
9200
9201         * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
9202
9203 2013-02-27  Yao Qi  <yao@codesourcery.com>
9204             Pedro Alves  <palves@redhat.com>
9205
9206         * tracepoint.c (tfile_trace_find): For tfind
9207         pc/tp/range/outside, look for the next trace frame instead of
9208         always starting from frame 0.
9209
9210 2013-02-26  Anthony Green  <green@moxielogic.com>
9211
9212         * configure.tgt: Add support for moxie-*-rtems* target.
9213
9214 2013-02-25  Pedro Alves  <palves@redhat.com>
9215
9216         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
9217         warning text.
9218
9219 2013-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
9220
9221         * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
9222         if $fp is used as the virtual frame pointer.
9223
9224 2013-02-23  Alan Modra  <amodra@gmail.com>
9225
9226         * elfread.c (elf_symtab_read): Do not use udata.p here to find
9227         symbol size.
9228         * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
9229         * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
9230         * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
9231         * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
9232
9233 2013-02-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9234
9235         Code cleanup.
9236         * elfread.c (build_id_bfd_get): Make the return type const.
9237         (build_id_verify): Make the check parameter const.
9238         (build_id_to_debug_filename): Make the build_id parameter and variable
9239         data const.
9240         (find_separate_debug_file_by_buildid): Make the variable build_id const.
9241
9242 2013-02-21  Alan Modra  <amodra@gmail.com>
9243
9244         * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
9245
9246 2013-02-20  Siva Chandra Reddy  <sivachandra@google.com>
9247
9248         Add a new method 'disassemble' to gdb.Architecture class.
9249         * python/py-arch.c (archpy_disassmble): Implementation of the
9250         new method gdb.Architecture.disassemble.
9251         (arch_object_methods): Add entry for the new method.
9252
9253 2013-02-20  Jiong Wang  <jiwang@tilera.com>
9254
9255         * MAINTAINERS (Write After Approval): Add myself to the list.
9256
9257 2013-02-19  Pedro Alves  <palves@redhat.com>
9258
9259         Garbage collect 'struct monitor_ops'::load_routine.
9260
9261         * monitor.h (struct monitor_ops) <load_routine>: Remove field.
9262         * monitor.c (monitor_load): No longer call
9263         current_monitor->load_routine.
9264         * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
9265         * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
9266         * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
9267
9268 2013-02-19  Pedro Alves  <palves@redhat.com>
9269
9270         PR gdb/15161
9271
9272         Harmonize with generic_load.
9273
9274         * monitor.c: Include "readline/readline.h".
9275         (monitor_load): Rename parameter 'file' to 'args'.  Use build_argv
9276         instead of sscanf.  Use CORE_ADDR/strtoulst instead of unsigned
9277         long/strtol for the 'load_offset' local.  Error out if no argument
9278         is given or if too many arguments are given.  Tilde expand the
9279         passed in file name.
9280
9281 2013-02-19  Kai Tietz  <ktietz@redhat.com>
9282
9283         PR gdb/15161
9284         * symfile.c (load_section_data): Change type of load_offset
9285         to CORE_ADDR.
9286         (generic_load): User strtoulst instead of strtoul for conversion
9287         of load_offset.
9288
9289 2013-02-19  Jiong Wang  <jiwang@tilera.com>
9290
9291         * tilegx-tdep.c (tilegx_analyze_prologue): add check for
9292          for return address, "lr" register, saved on stack.
9293         * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
9294         after we invoke tilegx_analyze_prologue.
9295
9296 2013-02-19  Jiong Wang  <jiwang@tilera.com>
9297
9298         * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
9299
9300 2013-02-19  Jiong Wang  <jiwang@tilera.com>
9301
9302         * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
9303
9304 2013-02-19  Jiong Wang  <jiwang@tilera.com>
9305
9306         * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
9307         (tilegx_write_pc): New function.
9308         (tilegx_cannot_reference_register): Return zero if REGNO
9309         is TILEGX_FAULTNUM_REGNUM.
9310         (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
9311         (tilegx_register_name): Add handling of "faultnum" register.
9312         * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
9313         * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
9314         handling of TILEGX_FAULTNUM_REGNUM.
9315         * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
9316
9317 2013-02-19  Jiong Wang  <jiwang@tilera.com>
9318
9319         * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
9320         should be aligned to 64bit.
9321
9322 2013-02-19  Kai Tietz  <ktietz@redhat.com>
9323
9324         * windows-nat.c (windows_xfer_memory): Fix debug-output
9325         for LLP64.
9326
9327 2013-02-19  Lei Liu  <lei.liu2@windriver.com>
9328
9329         * mips-linux-nat.c (mips64_linux_regsets_store_registers):
9330         Don't check DSP register number if HAVE_DSP is not set.
9331
9332 2013-02-19  Alan Modra  <amodra@gmail.com>
9333
9334         * elfread.c (struct build_id): Delete.  Use struct elf_build_id
9335         throughout file instead.
9336         (build_id_bfd_get): Update to use new elf_tdata build_id field.
9337         Don't xmalloc return value.
9338         (build_id_verify): Similarly.  Don't xfree.
9339         (build_id_to_debug_filename): Update.
9340         (find_separate_debug_file_by_buildid): Update, don't xfree.
9341
9342 2013-02-18  Tom Tromey  <tromey@redhat.com>
9343
9344         PR gdb/15102:
9345         * dwarf2read.c (read_subrange_type): Use result of
9346         'check_typedef'.
9347
9348 2013-02-16  Yuanhui Zhang  <asmwarrior@gmail.com>
9349
9350         * frame.c: Remove one extra white space after #include
9351         directive.
9352
9353 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
9354
9355         * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
9356
9357 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
9358
9359         * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
9360         and dir commands into an if block.
9361
9362 2013-02-15  Sanimir Agovic  <sanimir.agovic@intel.com>
9363
9364         * python/py-breakpoint (struct pybp_code):  Use int instead of
9365         enum type_code.
9366
9367 2013-02-15  Pedro Alves  <pedro@codesourcery.com>
9368             Hafiz Abid Qadeer  <abidh@codesourcery.com>
9369
9370         * NEWS: Mention new field "trace-file".
9371         * tracepoint.c (trace_status_mi): Output "trace-file" field.
9372         (tfile_open): Record the trace file's filename in the trace
9373         status.
9374         (tfile_files_info): Mention the name of the trace file.
9375         Check the "filename" field explicitely.
9376         (trace_status_command): Explicitely check "filename" field.
9377         (trace_find_command): Ditto.
9378         (trace_find_pc_command): Ditto.
9379         (trace_find_tracepoint_command): Ditto.
9380         (trace_find_line_command): Ditto.
9381         (trace_find_range_command): Ditto.
9382         (trace_find_outside_command): Ditto.
9383         * tracepoint.h (struct trace_status) <from_file>: Rename it
9384         to "filename" and make it hold the trace file's filename
9385         instead of a boolean.
9386         * remote.c (remote_get_trace_status): Initialize "filename"
9387         field with NULL instead of 0.
9388
9389 2013-02-15  Yao Qi  <yao@codesourcery.com>
9390
9391         * remote.c: Fix a typo.
9392
9393 2013-02-14  Pierre Muller  <muller@sourceware.org>
9394
9395         * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
9396
9397 2013-02-14  Pedro Alves  <palves@redhat.com>
9398
9399         * utils.c (savestring): Don't #undef it.  Move function to
9400         common/common-utils.c.
9401         * common/common-utils.c: Include gdb_string.h.
9402         (savestring): Move here from utils.c.
9403         * common/common-utils.h (savestring): Declare.
9404
9405 2013-02-14  Pedro Alves  <palves@redhat.com>
9406
9407         * utils.c (savestring): Rename parameter 'size' to 'len'.
9408
9409 2013-02-14  Pedro Alves  <palves@redhat.com>
9410             Yufeng Zhang  <yufeng.zhang@arm.com>
9411
9412         * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
9413         (aarch64_inferior_data, struct aarch64_inferior_data):
9414         Delete.
9415         (struct aarch64_process_info): New.
9416         (aarch64_process_list): New global.
9417         (aarch64_find_process_pid, aarch64_add_process)
9418         (aarch64_process_info_get): New functions.
9419         (aarch64_inferior_data_get): Delete.
9420         (aarch64_process_info_get): New function.
9421         (aarch64_forget_process): New function.
9422         (aarch64_get_debug_reg_state): New parameter 'pid'.  Reimplement.
9423         (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
9424         aarch64_get_debug_reg_state.
9425         (aarch64_notify_debug_reg_change): Use iterate_over_lwps
9426         instead of linux_nat_iterate_watchpoint_lwps.
9427         (aarch64_linux_new_fork): New function.
9428         (aarch64_linux_child_post_startup_inferior): Use
9429         aarch64_forget_process instead of aarch64_init_debug_reg_state.
9430         (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
9431         (aarch64_linux_remove_hw_breakpoint)
9432         (aarch64_handle_aligned_watchpoint)
9433         (aarch64_handle_unaligned_watchpoint)
9434         (aarch64_linux_insert_watchpoint)
9435         (aarch64_linux_remove_watchpoint)
9436         (aarch64_linux_stopped_data_address): Adjust to pass the current
9437         process id to aarch64_debug_reg_state.
9438         (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
9439         linux_nat_new_fork hook, and aarch64_forget_process as
9440         linux_nat_forget_process hook; remove the call to
9441         register_inferior_data_with_cleanup.
9442
9443 2013-02-14  Pedro Alves  <palves@redhat.com>
9444
9445         * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
9446         EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
9447         lval_memory.
9448
9449 2013-02-14  Pedro Alves  <pedro@codesourcery.com>
9450             Hafiz Abid Qadeer  <abidh@codesourcery.com>
9451
9452         * tracepoint.h (validate_trace_state_variable_name): Declare.
9453         * tracepoint.c (validate_trace_state_variable_name): New.
9454         (trace_variable_command): Parse the trace state variable's name
9455         without using parse_expression.  Do several validations.
9456         * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
9457         trace state variable's name with parse_expression.  Validate it.
9458
9459 2013-02-14  Yao Qi  <yao@codesourcery.com>
9460
9461         * infcmd.c (breakpoint_proceeded): Remove it.
9462
9463 2013-02-14  Yao Qi  <yao@codesourcery.com>
9464
9465         * tracepoint.c (end_actions_pseudocommand): Make it static.
9466         (while_stepping_pseudocommand): Likewise.
9467         * tracepoint.h (end_actions_pseudocommand): Remove the
9468         declaration.
9469         (while_stepping_pseudocommand): Likewise.
9470
9471 2013-02-14  Yao Qi  <yao@codesourcery.com>
9472
9473         * cli/cli-decode.c (help_cmd): Remove the declaration of
9474         "cmdlist".
9475         (help_all): Likewise.
9476
9477 2013-02-13  Pedro Alves  <palves@redhat.com>
9478
9479         * amd64-linux-nat.c (update_debug_registers_callback):
9480         Update comment.
9481         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
9482         iterate_over_lwps.
9483         (amd64_linux_prepare_to_resume): Pass the lwp's pid to
9484         i386_debug_reg_state.
9485         (amd64_linux_new_fork): New function.
9486         (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
9487         linux_nat_new_fork hook, and i386_forget_process as
9488         linux_nat_forget_process hook.
9489         * i386-linux-nat.c (update_debug_registers_callback):
9490         Update comment.
9491         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
9492         iterate_over_lwps.
9493         (i386_linux_prepare_to_resume): Pass the lwp's pid to
9494         i386_debug_reg_state.
9495         (i386_linux_new_fork): New function.
9496         (_initialize_i386_linux_nat): Install i386_linux_new_fork as
9497         linux_nat_new_fork hook, and i386_forget_process as
9498         linux_nat_forget_process hook.
9499         * i386-nat.c (i386_init_dregs): Delete.
9500         (i386_inferior_data, struct i386_inferior_data):
9501         Delete.
9502         (struct i386_process_info): New.
9503         (i386_process_list): New global.
9504         (i386_find_process_pid, i386_add_process, i386_process_info_get):
9505         New functions.
9506         (i386_inferior_data_get): Delete.
9507         (i386_process_info_get): New function.
9508         (i386_debug_reg_state): New parameter 'pid'.  Reimplement.
9509         (i386_forget_process): New function.
9510         (i386_cleanup_dregs): Rewrite.
9511         (i386_update_inferior_debug_regs, i386_insert_watchpoint)
9512         (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
9513         (i386_stopped_data_address, i386_insert_hw_breakpoint)
9514         (i386_remove_hw_breakpoint): Adjust to pass the current process id
9515         to i386_debug_reg_state.
9516         (i386_use_watchpoints): Don't register inferior data.
9517         * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
9518         adjust comment.
9519         (i386_forget_process): Declare.
9520         * linux-fork.c (delete_fork): Call linux_nat_forget_process.
9521         * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
9522         New static globals.
9523         (linux_child_follow_fork): Don't call linux_nat_new_thread here.
9524         (add_initial_lwp): New, factored out from ...
9525         (add_lwp): ... this.  Don't check the number of lwps before
9526         calling linux_nat_new_thread.
9527         (linux_nat_iterate_watchpoint_lwps): Delete.
9528         (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
9529         (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
9530         forks and vforks.
9531         (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
9532         initial lwp.
9533         (linux_nat_kill, linux_nat_mourn_inferior): Call
9534         linux_nat_forget_process.
9535         (linux_nat_set_new_fork, linux_nat_set_forget_process)
9536         (linux_nat_forget_process): New functions.
9537         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
9538         type.
9539         (linux_nat_iterate_watchpoint_lwps): Delete declaration.
9540         (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
9541         types.
9542         (linux_nat_set_new_fork, linux_nat_set_forget_process)
9543         (linux_nat_forget_process): New declarations.
9544
9545         * amd64fbsd-nat.c (super_mourn_inferior): New global.
9546         (amd64fbsd_mourn_inferior): New function.
9547         (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
9548         * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
9549
9550 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9551
9552         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
9553         Adding _().
9554
9555 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9556
9557         * aarch64-linux-nat.c (debug_reg_change_callback)
9558         (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
9559         %s and phex().
9560
9561 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9562
9563         * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
9564         with LONGEST.
9565
9566 2013-02-13  Pedro Alves  <palves@redhat.com>
9567             Hafiz Abid Qadeer  <abidh@codesourcery.com>
9568
9569         * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
9570
9571 2013-02-12  Tom Tromey  <tromey@redhat.com>
9572
9573         PR symtab/11464:
9574         * c-exp.y (lex_one_token): Initialize other fields of yylval on
9575         NAME return.
9576         (classify_inner_name): Remove 'first_name' argument, add
9577         'context'.  Remove unused variable.
9578         (yylex): Explicitly maintain the context type.  Exit loop earlier
9579         if NAME result is seen.
9580
9581 2013-02-12  Pedro Alves  <palves@redhat.com>
9582
9583         * amd64-darwin-tdep.c: Add (C) after Copyright.
9584         * cli/cli-cmds.h: Ditto.
9585         * cli/cli-decode.c: Ditto.
9586         * cli/cli-decode.h: Ditto.
9587         * cli/cli-dump.c: Ditto.
9588         * cli/cli-dump.h: Ditto.
9589         * cli/cli-interp.c: Ditto.
9590         * cli/cli-logging.c: Ditto.
9591         * cli/cli-script.c: Ditto.
9592         * cli/cli-script.h: Ditto.
9593         * cli/cli-setshow.c: Ditto.
9594         * cli/cli-setshow.h: Ditto.
9595         * cli/cli-utils.c: Ditto.
9596         * cli/cli-utils.h: Ditto.
9597         * config/alpha/nm-osf3.h: Ditto.
9598         * config/djgpp/djconfig.sh: Ditto.
9599         * config/i386/nm-fbsd.h: Ditto.
9600         * config/i386/nm-i386gnu.h: Ditto.
9601         * config/nm-linux.h: Ditto.
9602         * config/nm-nto.h: Ditto.
9603         * config/rs6000/nm-rs6000.h: Ditto.
9604         * config/sparc/nm-sol2.h: Ditto.
9605         * darwin-nat-info.c: Ditto.
9606         * dfp.c: Ditto.
9607         * dfp.h: Ditto.
9608         * gdb-demangle.h: Ditto.
9609         * i386-darwin-nat.c: Ditto.
9610         * i386-darwin-tdep.c: Ditto.
9611         * linux-fork.h: Ditto.
9612         * m32c-tdep.c: Ditto.
9613         * microblaze-linux-tdep.c: Ditto.
9614         * microblaze-rom.c: Ditto.
9615         * microblaze-tdep.c: Ditto.
9616         * microblaze-tdep.h: Ditto.
9617         * mips-linux-tdep.h: Ditto.
9618         * ppc-ravenscar-thread.c: Ditto.
9619         * ppc-ravenscar-thread.h: Ditto.
9620         * prologue-value.c: Ditto.
9621         * prologue-value.h: Ditto.
9622         * ravenscar-thread.c: Ditto.
9623         * ravenscar-thread.h: Ditto.
9624         * sparc-ravenscar-thread.c: Ditto.
9625         * sparc-ravenscar-thread.h: Ditto.
9626         * tilegx-linux-tdep.c: Ditto.
9627         * unwind_stop_reasons.def: Ditto.
9628         * windows-nat.h: Ditto.
9629         * xtensa-linux-tdep.c: Ditto.
9630         * xtensa-xtregs.c: Ditto.
9631         * regformats/regdat.sh: Ditto.
9632         * regformats/regdef.h: Ditto.
9633
9634 2013-02-12  Pedro Alves  <palves@redhat.com>
9635
9636         * break-catch-sig.c: Update copyright years.
9637
9638 2013-02-11  Siva Chandra Reddy  <sivachandra@google.com>
9639
9640         Add support for a destructor for ui_out data and use it to
9641         provide a ui_out destructor.
9642         * ui-out.h: Declare the new ui_out destructor.
9643         (ui_out_impl): Add a field for data destructor in ui_out_impl.
9644         * ui-out.c (default_data_destroy): Add a default data destructor
9645         which does nothing.
9646         (default_ui_out_impl): Set the new data_destroy field to
9647         default_data_destroy
9648         (uo_data_destroy): Local function which invokes the data
9649         destructor if present.
9650         (clear_table): Local function which clears the table data of a
9651         ui_out object.
9652         (ui_out_destroy): Public function which frees a ui_out object.
9653         (ui_out_table_end): Use the new clear_table function.
9654         * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
9655         NULL.
9656         * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
9657         to NULL.
9658
9659 2013-02-11  Doug Evans  <dje@google.com>
9660
9661         * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
9662         (printf_decfloat): New function.  Broken out from ui_printf.
9663         Remove unnecessary code to shift the entire format string down.
9664         (printf_pointer): New function.
9665         (ui_printf): Code to print C strings, wide C strings, decfloats,
9666         and pointers moved to separate functions.
9667
9668 2013-02-11  Sergio Durigan Junior  <sergiodj@redhat.com>
9669
9670         * valops.c (value_assign): Handling bitfield offset in
9671         `lval_internalvar_component' case.
9672
9673 2013-02-08  Doug Evans  <dje@google.com>
9674
9675         * common/format.c (parse_format_string): Fix whitespace.
9676
9677 2013-02-08  Matthew Gretton-Dann  <matthew.gretton-dann@linaro.org>
9678
9679         * stack.c (return_command): Work around uninitialized variable
9680         warning.
9681
9682 2013-02-08  Yufeng Zhang  <yufeng.zhang@arm.com>
9683
9684         * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
9685         number of the registers from 36 to 34.
9686
9687 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9688
9689         * NEWS: Mention new AArch64 native and target support.
9690
9691 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9692
9693         * MAINTAINERS (Write After Approval): Add myself.
9694
9695 2013-02-08  Jim MacArthur  <jim.macarthur@arm.com>
9696             Marcus Shawcroft  <marcus.shawcroft@arm.com>
9697             Nigel Stephens  <nigel.stephens@arm.com>
9698             Yufeng Zhang  <yufeng.zhang@arm.com>
9699
9700         * aarch64-linux-nat.c: New file.
9701         * config/aarch64/linux.mh: New file.
9702         * configure.host: Add AArch64.
9703         * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
9704
9705 2013-02-07  Doug Evans  <dje@google.com>
9706
9707         * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
9708         disassemble command.
9709
9710 2013-02-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9711
9712         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
9713         set_gdbarch_fetch_tls_load_module_address.
9714
9715 2013-02-06  David S. Miller  <davem@davemloft.net>
9716
9717         * sparc-tdep.c (sparc32_return_value): Handle writing return value when
9718         using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
9719         * value.c (struct_return_convention): New function.
9720         (using_struct_return): Implement in terms of struct_return_convention.
9721         * value.h (struct_return_convention): Declare.
9722         * stack.c (return_command): Allow successful overriding of the return
9723         value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
9724
9725 2013-02-06  Tom Tromey  <tromey@redhat.com>
9726
9727         * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
9728         outside of TRY_CATCH.
9729
9730 2013-02-06  Yao Qi  <yao@codesourcery.com>
9731
9732         * mi/mi-interp.c: Include "tracepoint.h".
9733         (mi_tsv_modified): Declare.
9734         (mi_tsv_created, mi_tsv_deleted): Update declaration.
9735         (mi_interpreter_init): Call observer_attach_tsv_modified.
9736         (mi_tsv_modified): New.
9737         (mi_tsv_created, mi_tsv_deleted): Update.
9738         * tracepoint.c (trace_variable_command): Call
9739         observer_notify_tsv_modified if the initial value of tsv is
9740         changed.
9741         (delete_trace_state_variable): Call
9742         observer_notify_tsv_deleted earlier.
9743         (trace_variable_command): Caller update.
9744         (create_tsv_from_upload): Likewise.
9745         * observer.sh: Declare "struct trace_state_variable".
9746
9747         * NEWS: Mention the new MI notification "=tsv-modified".
9748
9749 2013-02-05  Doug Evans  <dje@google.com>
9750
9751         * completer.c (location_completer): Fix typo in comment.
9752
9753 2013-02-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
9754
9755         * breakpoint.c (add_location_to_breakpoint): Insert the location with
9756         ADDRESS sorted.
9757
9758 2013-02-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9759
9760         * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
9761         Refactor if statement to avoid trailing || operator.
9762
9763 2013-02-05  Andreas Tobler  <andreast@fgznet.ch>
9764
9765         * NEWS: Add PowerPC FreeBSD as a new native configuration.
9766
9767 2013-02-04  Andreas Tobler  <andreast@fgznet.ch>
9768
9769         * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
9770         * configure.host: Add powerpc*-*-freebsd* target.
9771         * configure.tgt: Add target info for powerpc*-*-freebsd*.
9772         * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
9773         * config/powerpc/fbsd.mh: New file.
9774
9775 2013-02-04  Sergio Durigan Junior  <sergiodj@redhat.com>
9776             Denys Vlasenko  <dvlasenk@redhat.com>
9777             Pedro Alves  <palves@redhat.com>
9778
9779         * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
9780         (struct elf_internal_linux_prpsinfo): Forward declare.
9781         * gdbarch.h, gdbarch.c: Regenerate.
9782         * linux-tdep.c: Include `cli/cli-utils.h'.
9783         (linux_fill_prpsinfo): New function.
9784         (linux_make_corefile_notes): Use linux_fill_prpsinfo.  If there's
9785         an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
9786         elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
9787         depending on gdbarch pointer bitness.
9788         * ppc-linux-tdep.c: Include elf-bfd.h.
9789         (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
9790         on 32-bit.
9791
9792 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
9793             Marcus Shawcroft  <marcus.shawcroft@arm.com>
9794             Nigel Stephens  <nigel.stephens@arm.com>
9795             Yufeng Zhang  <yufeng.zhang@arm.com>
9796
9797         * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
9798
9799 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
9800             Marcus Shawcroft  <marcus.shawcroft@arm.com>
9801             Nigel Stephens  <nigel.stephens@arm.com>
9802             Yufeng Zhang  <yufeng.zhang@arm.com>
9803
9804         * aarch64-newlib-tdep.c: New file.
9805         * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
9806         aarch64*-*-elf.
9807         * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
9808         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
9809         (ALLDEPFILES): Add aarch64-newlib-tdep.c.
9810         * osabi.c (gdb_osabi_names): Add "Newlib".
9811
9812 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
9813             Marcus Shawcroft  <marcus.shawcroft@arm.com>
9814             Nigel Stephens  <nigel.stephens@arm.com>
9815             Yufeng Zhang  <yufeng.zhang@arm.com>
9816
9817         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
9818         (ALLDEPFILES): Add aarch64-linux-tdep.c.
9819         * aarch64-linux-tdep.c: New file.
9820         * aarch64-linux-tdep.h: New file.
9821         * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
9822         * configure.tgt: Add aarch64-none-linux-gnu.
9823
9824 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
9825             Marcus Shawcroft  <marcus.shawcroft@arm.com>
9826             Nigel Stephens  <nigel.stephens@arm.com>
9827             Yufeng Zhang  <yufeng.zhang@arm.com>
9828
9829         * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
9830         (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
9831         (ALLDEPFILES): Add aarch64-tdep.c.
9832         * aarch64-tdep.c: New file.
9833         * aarch64-tdep.h: New file.
9834         * configure.tgt: Add AArch64.
9835         * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
9836         (aarch64-expedite): New definition.
9837         * features/aarch64-core.xml: New file.
9838         * features/aarch64-fpu.xml: New file.
9839         * features/aarch64-without-fpu.c: New file (generated).
9840         * features/aarch64-without-fpu.xml: New file.
9841         * features/aarch64.c: New file (generated).
9842         * features/aarch64.xml: New file.
9843         * regformats/aarch64-without-fpu.dat: New file (generated).
9844         * regformats/aarch64.dat: New file (generated).
9845
9846 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
9847
9848         * contrib/expect-read1.c: New file.
9849         * contrib/expect-read1.sh: New file.
9850
9851 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
9852
9853         * dwarf2read.c (file_file_name): New function with code from
9854         file_full_name.
9855         (file_full_name): Move most of the code to file_file_name.
9856         (macro_start_file): Rename variable full_name to file_name and use
9857         file_file_name for it.  Add comp_dir parameter to new_macro_table.
9858         * macrocmd.c (show_pp_source_pos): New variable fullname.  Replace any
9859         macro_source_file->filename access by macro_source_fullname call.
9860         * macroscope.c (_initialize_macroscope): Update the new_macro_table
9861         caller.
9862         * macrotab.c (struct macro_table): New field comp_dir.
9863         (macro_include): New variables link_fullname and source_fullname.
9864         Replace any macro_source_file->filename access by macro_source_fullname
9865         call.
9866         (macro_lookup_inclusion): Remove the partial filenames checking code.
9867         (check_for_redefinition): New variables source_fullname and
9868         found_key_fullname.  Replace any macro_source_file->filename access by
9869         macro_source_fullname call.
9870         (macro_undef): New variables source_fullname and key_fullname.  Replace
9871         any macro_source_file->filename access by macro_source_fullname call.
9872         (macro_lookup_definition): New variables retval and source_fullname.
9873         Replace any macro_source_file->filename access by macro_source_fullname
9874         call.
9875         (foreach_macro): New variable key_fullname.  Replace any
9876         macro_source_file->filename access by macro_source_fullname call.
9877         (foreach_macro_in_scope): New variable datum_fullname.  Replace any
9878         macro_source_file->filename access by macro_source_fullname call.
9879         (new_macro_table): Add parameter comp_dir.  Initialize T with it.
9880         (macro_source_fullname): New function.
9881         * macrotab.h (struct macro_source_file): Extent the filename field
9882         comment.
9883         (new_macro_table): New parameter comp_dir, add a comment for it.
9884         (macro_source_fullname): new declaration.
9885
9886 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
9887
9888         * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
9889         this_real_name to outer block.  Use it also for
9890         compare_filenames_for_search.
9891         (dw2_expand_symtabs_matching): New variable this_real_name.  Use it
9892         with dw2_get_real_path for file_matcher, considering also
9893         BASENAMES_MAY_DIFFER.
9894         (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
9895
9896 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
9897
9898         * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
9899         to the file_matcher parameter.  Pass 0 to it.
9900         (dwarf2_create_include_psymtab): Copy also DIRNAME.
9901         * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
9902         NULL psymtab_to_fullname result.
9903         (psymtab_to_fullname): Remove variable r.  Never return NULL, assemble
9904         an expected filename instead.
9905         (expand_symtabs_matching_via_partial): Add basenames parameter to the
9906         file_matcher parameter.  Call also psymtab_to_fullname, after newly
9907         considering BASENAMES_MAY_DIFFER.
9908         * source.c (rewrite_source_path): Remove static.
9909         * source.h (rewrite_source_path): New declaration.
9910         * symfile.h (struct quick_symbol_functions): Add basenames parameter to
9911         the expand_symtabs_matching field.  Comment it.
9912         * symtab.c (file_matches): New function comment.  Add parameter
9913         basenames, implement it.
9914         (search_symbols_file_matches): Add basenames parameter.  Update the
9915         file_matches caller.
9916         (search_symbols): Match FILES also against symtab_to_fullname.
9917         Optimize it for BASENAMES_MAY_DIFFER.
9918
9919 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
9920
9921         * source.c (print_source_lines_base): Print for TUI also "fullname".
9922         * tui/tui-data.c (init_content_element): Change tui_locator_element
9923         field to full_name.
9924         * tui/tui-data.h (struct tui_locator_element): Likewise.
9925         * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
9926         tui_update_locator_filename calls to tui_update_locator_fullname.
9927         Replace symtab->filename refererence by symtab_to_fullname call.
9928         * tui/tui-out.c (tui_field_string): Check for "fullname" now.
9929         * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
9930         field to full_name.  Replace symtab->filename refererence by
9931         symtab_to_fullname call.
9932         (tui_show_symtab_source): Rename parameter to fullname.  Change
9933         tui_locator_element field to full_name.
9934         * tui/tui-stack.c: Include source.h.
9935         (tui_set_locator_filename): Rename the declaration to ...
9936         (tui_set_locator_fullname): ... here.  Rename its parameter to
9937         fullname, updates its comment.
9938         (tui_set_locator_info): Rename its parameter to fullname.
9939         (tui_set_locator_filename): Rename the definition to ...
9940         (tui_set_locator_fullname): ... here.  Rename its parameter to
9941         fullname, updates its comment.  Change tui_locator_element field to
9942         full_name.
9943         (tui_set_locator_info): Rename its parameter to fullname.
9944         (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
9945         (tui_update_locator_filename): Rename to ...
9946         (tui_update_locator_fullname): ... here. Rename callee to
9947         tui_set_locator_fullname.
9948         (tui_show_frame_info): Replace symtab->filename refererence by
9949         symtab_to_fullname call.
9950         * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
9951         (tui_update_locator_fullname): ... here.
9952         * tui/tui-winsource.c (tui_display_main): Rename the callee to
9953         tui_update_locator_fullname.  Replace symtab->filename refererence by
9954         symtab_to_fullname call.
9955         * tui/tui.c (tui_show_source): Rename its parameter to fullname.
9956         Rename the callee to tui_update_locator_fullname.
9957         * tui/tui.h (tui_show_source): Rename its parameter to fullname.
9958
9959 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
9960
9961         * ada-lang.c (user_select_syms): Replace symtab->filename refererences
9962         by symtab_to_filename_for_display calls.
9963         * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
9964         (clear_command): New variable sal_fullname, initialize it.  Replace
9965         compare_filenames_for_search by filename_cmp with sal_fullname.
9966         (say_where, update_static_tracepoint): Replace symtab->filename
9967         refererences by symtab_to_filename_for_display calls.
9968         * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
9969         Likewise.
9970         * dwarf2read.c: Include source.h.
9971         (fixup_go_packaging): Replace symtab->filename refererences by
9972         symtab_to_filename_for_display calls.
9973         * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
9974         Replace symtab->filename refererences by symtab_to_filename_for_display
9975         calls.
9976         (create_sals_line_offset, convert_linespec_to_sals): New variable
9977         fullname, initialize it, replace symtab->filename reference by the
9978         variable.
9979         * linux-fork.c: Include source.h.
9980         (info_checkpoints_command): Replace symtab->filename refererences by
9981         symtab_to_filename_for_display calls.
9982         * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
9983         by symtab_to_filename_for_display calls.
9984         * mdebugread.c: Include source.h.
9985         (psymtab_to_symtab_1): Replace symtab->filename refererences by
9986         symtab_to_filename_for_display calls.
9987         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
9988         (mi_cmd_file_list_exec_source_files): Likewise.
9989         * printcmd.c: Include source.h.
9990         (build_address_symbolic): Replace symtab->filename refererences by
9991         symtab_to_filename_for_display calls.
9992         * psymtab.c (partial_map_symtabs_matching_filename)
9993         (read_psymtabs_with_fullname): Call compare_filenames_for_search also
9994         with psymtab_to_fullname.
9995         * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
9996         by symtab_to_filename_for_display calls.
9997         (stpy_get_filename): New variable filename, initialize it, use instead
9998         of symtab->filename refererences.
9999         (salpy_str): Make variable filename const char *.  Replace
10000         symtab->filename refererences by symtab_to_filename_for_display calls.
10001         * skip.c: Include source.h and filenames.h.
10002         (skip_file_command): Remove const from the symtab variable.  Replace
10003         symtab->filename refererences by symtab_to_fullname call.
10004         (function_name_is_marked_for_skip): New variables searched_for_fullname
10005         and fullname.  Use them to search also with symtab's fullname.
10006         * source.c (find_source_lines): Replace symtab->filename refererences
10007         by symtab_to_filename_for_display calls.
10008         (print_source_lines_base): New variable filename, use it instead of
10009         symtab->filename.  Replace symtab->filename refererences by
10010         symtab_to_filename_for_display calls.
10011         (line_info, forward_search_command): Replace symtab->filename
10012         refererences by symtab_to_filename_for_display calls.
10013         (reverse_search_command): Replace symtab->filename refererences by
10014         symtab_to_filename_for_display calls.  New variable filename for it.
10015         * stack.c (frame_info): Likewise.
10016         * symmisc.c: Include source.h.
10017         (dump_objfile, dump_symtab_1, maintenance_print_symbols)
10018         (maintenance_info_symtabs): Replace symtab->filename refererences by
10019         symtab_to_filename_for_display calls.
10020         * symtab.c (iterate_over_some_symtabs): Call
10021         compare_filenames_for_search also with symtab_to_fullname.
10022         (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
10023         symtab->filename refererences by symtab_to_filename_for_display calls.
10024         (find_line_symtab): Replace symtab->filename refererences by
10025         symtab_to_filename_for_display calls.
10026         (file_matches): Replace filename_cmp by compare_filenames_for_search.
10027         (print_symbol_info): Make the last parameter const char *.  New
10028         variable s_filename.  Use it in the function.
10029         (symtab_symbol_info): Make the last_filename variable const char *.
10030         Replace symtab->filename refererences by symtab_to_filename_for_display
10031         calls.
10032         (rbreak_command): New variable fullname.  Use it.  Replace
10033         symtab->filename refererence by symtab_to_filename_for_display call.
10034         * tracepoint.c (set_traceframe_context, trace_find_line_command)
10035         (print_one_static_tracepoint_marker): Replace symtab->filename
10036         refererences by symtab_to_filename_for_display calls.
10037         * tui/tui-source.c (tui_set_source_content): New variables filename and
10038         s_filename.  Replace symtab->filename refererences by this variable.
10039         Replace other symtab->filename refererences by
10040         symtab_to_filename_for_display calls.
10041
10042 2013-02-03  Eldar Gaynetdinov <hal9000ed2k@gmail.com>
10043             Jan Kratochvil  <jan.kratochvil@redhat.com>
10044
10045         Add a new variable that controls a way in which filenames are
10046         displayed.
10047         * NEWS (set filename-display): New entry.
10048         * source.c (filename_display_basename, filename_display_relative)
10049         (filename_display_absolute, filename_display_kind_names)
10050         (filename_display_string, show_filename_display_string)
10051         (symtab_to_filename_for_display): New.
10052         (_initialize_source): Added initialization of 'filename-display'
10053         variable.
10054         * source.h (symtab_to_filename_for_display): Added declaration.
10055         * stack.c (print_frame): Added new variable and calling of a new
10056         function and condition with this variable. Changed third argument of
10057         calling of a function.
10058
10059 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10060
10061         * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
10062         Rename field reference filename to fullname.
10063         * tui/tui-data.h (struct tui_source_info): Rename field filename to
10064         fullname.  New comment for it.
10065         * tui/tui-source.c (tui_set_source_content): Rename field reference
10066         filename to fullname.  Initialize field by symtab_to_fullname now.
10067         * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
10068         reference filename to fullname.  Use symtab_to_fullname during
10069         comparison.
10070
10071 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10072
10073         Code cleanup.
10074         * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
10075         (dw2_expand_symtabs_with_fullname): ... here.  Rename parameter
10076         filename to fullname.  Rename variable this_name to this_fullname.
10077         Lowercase FILENAME_CMP call.
10078         (dw2_find_symbol_file): New comment for the returned string.
10079         (dwarf2_gdb_index_functions): Rename the function to
10080         dw2_expand_symtabs_with_fullname.
10081         * psymtab.c (read_psymtabs_with_filename): Rename to ...
10082         (read_psymtabs_with_fullname): ... here.  Rename parameter filename to
10083         fullname.
10084         (psym_functions): Rename the function to read_psymtabs_with_fullname.
10085         * symfile.h (struct quick_symbol_functions): Rename field
10086         expand_symtabs_with_filename to expand_symtabs_with_fullname and its
10087         parameter filename to fullname.  Document returned string meaning for
10088         find_symbol_file.
10089         * symtab.c (find_line_symtab): Rename the called function to
10090         expand_symtabs_with_fullname.
10091
10092 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10093
10094         Code cleanup.
10095         * breakpoint.c (clear_command): Remove variable is_abs, unify the
10096         call of filename_cmp with compare_filenames_for_search.
10097         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
10098         is_abs, unify the call of FILENAME_CMP with
10099         compare_filenames_for_search.  New gdb_asserts for real_path and name.
10100         Unify the call of compare_filenames_for_search with FILENAME_CMP.
10101         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
10102         * symfile.h (struct quick_symbol_functions): Extend the comment for
10103         map_symtabs_matching_filename.
10104         * symtab.c (compare_filenames_for_search): Remove the function comment
10105         relative path requirement.  Handle absolute filenames, with a comment.
10106         (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
10107         FILENAME_CMP with compare_filenames_for_search.  New gdb_asserts for
10108         real_path and name.  Unify the call of compare_filenames_for_search
10109         with FILENAME_CMP.
10110         (iterate_over_symtabs): New gdb_assert on REAL_PATH.
10111
10112 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10113
10114         Code cleanup.
10115         * breakpoint.c (print_breakpoint_location): Replace bp_location field
10116         source_file references by symtab field references.  Remove variables
10117         sal and fullname.
10118         (momentary_breakpoint_from_master, add_location_to_breakpoint):
10119         (clear_command, say_where): Replace bp_location field source_file
10120         references by symtab field references.
10121         (bp_location_dtor): Remove the source_file reference.
10122         (update_static_tracepoint): Replace bp_location field source_file
10123         references by symtab field references.
10124         (breakpoint_free_objfile): New function.
10125         * breakpoint.h (struct bp_location): Extend the comment for line_number.
10126         Replace the field source_file by field symtab, extend its comment.
10127         (breakpoint_free_objfile): New declaration.
10128         * objfiles.c (free_objfile): Call breakpoint_free_objfile.
10129         * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
10130         field source_file references by symtab field references.
10131
10132 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10133
10134         Replace xfullpath calls by gdb_realpath calls.
10135         * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
10136         function comment.
10137         * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
10138         Remove it from the iterate_over_some_symtabs call.
10139         (dw2_map_symtabs_matching_filename): Remove parameter full_path.
10140         Remove it from the dw2_map_expand_apply calls, remove a block handling
10141         it.
10142         * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
10143         Remove it from the iterate_over_some_symtabs call.
10144         (partial_map_symtabs_matching_filename): Remove parameter full_path.
10145         Remove it from the partial_map_expand_apply calls, remove a block
10146         handling it.  Drop gdb_realpath call and cleanups from the real_path
10147         handling.
10148         * source.c (openp): Drop the comment part about xfullpath.  Replace
10149         xfullpath calls by gdb_realpath calls.
10150         (find_and_open_source): Replace xfullpath call by gdb_realpath call.
10151         * symfile.h (struct quick_symbol_functions): Remove parameter full_path
10152         from method map_symtabs_matching_filename and its comment.
10153         * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
10154         gdb_realpath call.
10155         * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
10156         remove it also from the function comment, remove a block handling it.
10157         Drop gdb_realpath call and cleanups from the real_path handling.
10158         (iterate_over_symtabs): Drop variable full_path and its use.
10159         * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
10160         * utils.c (xfullpath): Remove.
10161         * utils.h (xfullpath): Remove.
10162
10163 2013-02-01  Andreas Tobler  <andreast@fgznet.ch>
10164
10165         * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
10166         (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
10167         (ALLDEPFILES): Add ppc64-tdep.c.
10168         * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
10169         ppc64-tdep.o to gdb_target_obs.
10170         * ppc64-tdep.h: New file.
10171         * ppc64-tdep.c: New file.
10172         (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
10173         ppc-linux-tdep.c to here.
10174         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
10175         (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
10176         (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
10177         (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
10178         from ppc-linux-tdep.c to here.
10179         (ppc64_convert_from_func_ptr_addr): Rename from
10180         ppc64_linux_convert_from_func_ptr_addr to
10181         ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
10182         here.
10183         * rs6000-tdep.c:
10184         (read_insn): Move from ppc-linux-tdep.c to here.
10185         (insns_match_pattern, insn_d_field, insn_ds_field): Move
10186         from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
10187         * ppc-linux-tdep.c: Include ppc64-tdep.h.
10188         Removed above functions.
10189         (ppc_linux_init_abi): Adjust.
10190
10191 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
10192
10193         * ada-valprint.c (ada_print_floating): Remove unused 'len'.
10194
10195 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
10196
10197         * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
10198
10199 2013-02-01  Pedro Alves  <palves@redhat.com>
10200
10201         * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
10202         * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
10203
10204 2013-02-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
10205
10206         * elfread.c (elf_symfile_read): Limit separate debug info additions to
10207         files with no separate debug info.
10208         * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
10209         * symfile.c (read_symbols): Call find_separate_debug_file_in_section
10210         only for files with no separate debug info.
10211
10212 2013-01-31  Tom Tromey  <tromey@redhat.com>
10213
10214         * jit.c (jit_program_space_data): Rename from jit_inferior_data;
10215         change type.
10216         (struct jit_program_space_data): Rename from jit_inferior_data.
10217         Update comments.
10218         (get_jit_program_space_data): Rename from get_jit_inferior_data.
10219         Change return type.  Attach data to program space.
10220         (jit_program_space_data_cleanup): Rename from
10221         jit_inferior_data_cleanup; change argument type.
10222         (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
10223         change type.
10224         (jit_register_code): Update.
10225         (jit_update_inferior_cache): Remove.
10226         (jit_breakpoint_deleted): Get jit data from the location's program
10227         space.
10228         (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
10229         'ps_data', change type.
10230         (jit_inferior_init, jit_breakpoint_re_set_internal)
10231         (jit_event_handler): Update.
10232         (free_objfile_data): Get data from objfile's program space.
10233         (_initialize_jit): Update.
10234
10235 2013-01-31  Tom Tromey  <tromey@redhat.com>
10236
10237         PR gdb/13987:
10238         * jit.c (struct jit_inferior_data) <cached_code_address,
10239         jit_breakpoint>: New fields.
10240         (jit_breakpoint_re_set_internal): Fix logging.  Only create
10241         breakpoint if cached address has changed.
10242         (jit_update_inferior_cache, jit_breakpoint_deleted): New
10243         functions.
10244         (_initialize_jit): Register breakpoint deleted observer.
10245
10246 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
10247
10248         * infrun.c (handle_syscall_event): Remove unused gdbarch.
10249         (save_infcall_suspend_state): Ifdef out unused inf.
10250         (restore_infcall_suspend_state): Ifdef out unused inf.
10251         * jit.c (jit_register_code): Remove unused i, b, inf_data.
10252         (jit_frame_sniffer): Remove unused inf_data.
10253
10254 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
10255
10256         * c-exp.y (classify_inner_name): Remove unused type.
10257         * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
10258         in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
10259         need_escape.
10260         (c_get_string): Remove unused kind.
10261         * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
10262
10263 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
10264
10265         * charset.c (intermediate_encoding): Remove unused i.
10266         * completer.c (signal_completer): Remove unused i.
10267         * continuations.c (discard_my_continuations_1): Remove unused
10268         continuation_ptr.
10269         * corelow.c (core_close): Remove unuseD name.
10270         (get_core_siginfo): Remove unused pid.
10271         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
10272         i, cps.
10273         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
10274         (loclist_describe_location): Remove unused first.
10275         * event-top.c (command_line_handler): Remove unused got_eof.
10276         * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
10277         (resize_section_table): Remove unused old_value.
10278         * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
10279         * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
10280         * i386-tdep.c (i386_process_record): Remove unused rex.
10281         * infcmd.c (get_return_value): Remove unused uiout.
10282         * jv-lang.c (type_from_class): Remove unused is_array.
10283         * jv-valprint.c (java_val_print): Remove unused i.
10284         * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
10285         * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
10286         * m2-typeprint.c (m2_print_type): Remove unused code.
10287         * macroexp.c (get_character_constant): Remove unused body_start.
10288         (macro_stringify): Remove unused result.
10289         * objc-lang.c (find_methods): Remove unused gdbarch.
10290         * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
10291         * regcache.c (regcache_cooked_read): Remove unused gdbarch.
10292         * stack.c (print_frame_args): Remove unused summary.
10293         * thread.c (thread_apply_command): Remove unused p.
10294         * valarith.c (value_x_unop): Remove unused mangle_ptr.
10295         * valops.c (search_struct_method): Remove unused skip.
10296         * valprint.c (generic_val_print): Remove unused byte_order.
10297         * varobj.c (varobj_update): Remove unused changed.
10298         * cli/cli-cmds.c (complete_command): Remove unused next_item.
10299         (alias_command): Remove unused c.
10300         * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
10301         * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
10302         format.
10303         (mi_cmd_data_write_memory): Remove unused word_format.
10304         (mi_cmd_data_write_memory_bytes): Remove unused r.
10305         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
10306         p_start, p_end.
10307         * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
10308         * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
10309         line_width.
10310
10311 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
10312
10313         * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
10314         * symtab.c (iterate_over_symtabs): Remove unused s.
10315         (find_pc_sect_symtab): Remove unused pspAce.
10316         (find_pc_sect_line): Remove unused alt_symtab.
10317         (find_pcs_for_symtab_line): Remove unused ix, previous_function.
10318         (completion_list_add_name): Remove unused newsize.
10319
10320 2013-01-31  Tom Tromey  <tromey@redhat.com>
10321
10322         PR c++/14998:
10323         * dwarf2read.c (read_tag_ptr_to_member_type): Handle
10324         TYPE_CODE_FUNC.
10325
10326 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
10327
10328         * target.c (target_read_string): Remove unused origlen.
10329
10330 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
10331
10332         * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
10333         * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
10334         * ax-general.c (ax_print): Remove unused is_float.
10335         * blockframe.c (block_innermost_frame): Remove unused start, end.
10336         * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
10337
10338 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
10339
10340         * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
10341         (svr4_read_so_list): Remove unused lmo.
10342         * solib-target.c (solib_target_relocate_section_addresses): Remove
10343         unused flags.
10344
10345 2013-01-30  Tom Tromey  <tromey@redhat.com>
10346
10347         * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
10348
10349 2013-01-30  Tom Tromey  <tromey@redhat.com>
10350
10351         * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
10352         * utils.c (gnu_debuglink_crc32): Remove.
10353         * utils.h (gnu_debuglink_crc32): Don't declare.
10354
10355 2013-01-30  Tom Tromey  <tromey@redhat.com>
10356
10357         * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
10358         (read_structure_type, read_enumeration_type): Remove cast.
10359
10360 2013-01-30  Tom Tromey  <tromey@redhat.com>
10361
10362         * dwarf2read.c (read_namespace_type): Remove cast.
10363         (read_typedef): Likewise.
10364
10365 2013-01-29  Tom Tromey  <tromey@redhat.com>
10366
10367         * dwarf2read.c (free_dwo_file): Remove assert.
10368
10369 2013-01-29  Tom Tromey  <tromey@redhat.com>
10370
10371         * value.c (deprecated_set_value_modifiable): Remove.
10372         * value.h (deprecated_set_value_modifiable): Remove.
10373
10374 2013-01-28  Doug Evans  <dje@google.com>
10375
10376         * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
10377         to addresses from dwo files.
10378
10379 2013-01-25  Siva Chandra Reddy  <sivachandra@google.com>
10380
10381         * valops.c (find_overload_match): Remove unused argument 'lax'.
10382         * value.h: Remove unused argument 'lax' from the declaration of
10383         find_overload_match.
10384         * eval.c (value_subexp_standard): Do not pass a 'lax' argument
10385         to find_overload_match.
10386         * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
10387         argument to find_overload_match.
10388
10389 2013-01-25  Tom Tromey  <tromey@redhat.com>
10390
10391         * dwarf2read.c (processing_has_namespace_info): Remove.
10392         (struct dwarf2_cu) <processing_has_namespace_info>: New field.
10393         (process_die, read_func_scope, dwarf2_start_symtab)
10394         (new_symbol_full): Update.
10395
10396 2013-01-25  Tom Tromey  <tromey@redhat.com>
10397
10398         * cp-namespace.c (cp_set_block_scope): Remove.
10399         * cp-support.h (cp_set_block_scope): Remove.
10400         * dbxread.c: Include block.h.
10401         (cp_set_block_scope): New function.
10402         (process_one_symbol): Update.
10403         * dwarf2read.c (read_func_scope): Use block_set_scope.
10404
10405 2013-01-25  Pedro Alves  <palves@redhat.com>
10406
10407         * remote.c (add_current_inferior_and_thread): Tweak comment.
10408
10409 2013-01-25  Tom Tromey  <tromey@redhat.com>
10410
10411         * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
10412         (cp_add_using_directive): Add 'copy_names' argument.
10413         * cp-support.h (cp_add_using_directive): Update.
10414         (struct using_direct) <import_src, import_dest, alias,
10415         declaration>: Now const.
10416         * dwarf2read.c (read_import_statement): Use obconcat.
10417         Don't copy names passed to cp_add_using_directive.
10418
10419 2013-01-25  Tom Tromey  <tromey@redhat.com>
10420
10421         * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
10422
10423 2013-01-25  Pedro Alves  <palves@redhat.com>
10424
10425         * remote.c (stop_reply_extract_thread): New.
10426         (add_current_inferior_and_thread): New parameter 'wait_status'.
10427         Handle it.
10428         (remote_start_remote): Pass wait status to
10429         add_current_inferior_and_thread.
10430         (extended_remote_run): Update comment.
10431         (extended_remote_create_inferior_1): Pass wait status to
10432         add_current_inferior_and_thread.
10433
10434 2013-01-25  Andrew Burgess  <aburgess@broadcom.com>
10435             Ulrich Weigand  <uweigand@de.ibm.com>
10436
10437         * valarith.c (value_vector_widen): New function for replicating a
10438         scalar into a vector.
10439         (value_binop): Use value_vector_widen to widen scalar to vector
10440         rather than casting, this better matches gcc C behaviour.
10441         * valops.c (value_casst): Update logic for casting between vector
10442         types, and for casting from scalar to vector, try to match gcc C
10443         behaviour.
10444         * value.h (value_vector_widen): Declare.
10445         * opencl-lang.c (opencl_value_cast): New opencl specific casting
10446         function, handle special case for casting scalar to vector.
10447         (opencl_relop): Use opencl_value_cast.
10448         (evaluate_subexp_opencl): Use opencl_value_cast instead of
10449         value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
10450         in order to use opencl_value_cast.
10451
10452 2013-01-25  Yao Qi  <yao@codesourcery.com>
10453
10454         * event-loop.c: Include "queue.h".
10455         (gdb_event_p): New typedef.
10456         (DECLARE_QUEUE_P): Use.
10457         (DEFINE_QUEUE_P): Use.
10458         (async_queue_event): Remove.
10459         (gdb_event_xfree): New.
10460         (initialize_event_loop): New.
10461         (process_event): Use QUEUE macros.
10462         (event_queue): Remove.
10463         (gdb_wait_for_event): Caller update.
10464         (check_async_event_handlers): Likewise.
10465         (poll_timers): Likewise.
10466         * event-loop.h (initialize_event_loop): Declare.
10467         * event-loop.c (gdb_event_xfree): New.
10468         * top.c (gdb_init): Call initialize_event_loop.
10469
10470 2013-01-25  Yao Qi  <yao@codesourcery.com>
10471
10472         * event-loop.c (async_queue_event): Remove one parameter
10473         'position'.  Remove code handling 'position' == TAIL.
10474         (gdb_wait_for_event): Caller update.
10475         (check_async_event_handlers): Caller update.
10476         (poll_timers): Caller update.
10477         * event-loop.h (enum queue_position): Remove.
10478
10479 2013-01-25  Maxim Kuvyrkov  <maxim@kugelworks.com>
10480
10481         * MAINTAINERS: Update my email.
10482
10483 2013-01-25  Yao Qi  <yao@codesourcery.com>
10484
10485         * main.c (print_gdb_help): Remove "--epoch" from the help
10486         message.
10487
10488 2013-01-24  Ulrich Weigand  <uweigand@de.ibm.com>
10489
10490         * symtab.c (skip_prologue_using_sal): Consider a file
10491         change the same as an increased line number
10492
10493 2013-01-24  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
10494
10495         * MAINTAINERS (Write After Approval): Add myself to the list.
10496
10497 2013-01-24  Tom Tromey  <tromey@redhat.com>
10498
10499         * ada-lang.h (ada_decode_symbol): Make return type const.
10500         * ada-lang.c (ada_decode_symbol): Likewise.
10501
10502 2013-01-23  Doug Evans  <dje@google.com>
10503
10504         * linespec.c (find_linespec_symbols): Make static.
10505
10506 2013-01-23  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
10507
10508         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
10509         type on float conversion for complex type.
10510
10511 2013-01-23  Siva Chandra Reddy  <sivachandra@google.com>
10512
10513         Add a new class gdb.Architecture which exposes GDB's
10514         internal representation of architecture via GDB Python API.
10515         * Makefile.in: Add entries corresponding to the new file
10516         python/py-arch.c.
10517         * NEWS (Python Scripting): Add entries for the new class
10518         gdb.Architecture and the new method gdb.Frame.architecture.
10519         * python/py-arch.c: Implement gdb.Architecture class.
10520         * python/py-frame.c (frapy_arch): Implement the method
10521         gdb.Frame.architecture().
10522         (frame_object_methods): Add 'architecture' to the method table.
10523         * python/python-internal.h: Add declarations of new utility
10524         functions.
10525         * python/python.c (_initialize_python): Initialize
10526         gdb.Architecture class.
10527
10528 2013-01-23  Doug Evans  <dje@google.com>
10529
10530         Work around binutils/15021.
10531         * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
10532         type_unit_group out of union s.  All uses updated.
10533         (read_index_from_section): Watch for index version 8.
10534         (follow_die_sig): If using .gdb_index version <= 7, record the TU as
10535         an imported symtab.
10536         (write_psymtabs_to_index): Increment version number to 8.
10537
10538 2013-01-22  Pedro Alves  <palves@redhat.com>
10539
10540         * annotate.c (breakpoint_changed): Skip if breakpoint is not
10541         user-visible.
10542
10543 2013-01-22  Pedro Alves  <palves@redhat.com>
10544
10545         * annotate.c (annotate_breakpoints_changed): Rename to ...
10546         (annotate_breakpoints_invalid): ... this.  Make static.
10547         (breakpoint_changed): Adjust.
10548         (_initialize_annotate): Always install the observers.  Install a
10549         "breakpoint_created" observer.
10550         * annotate.h (annotate_breakpoints_changed): Delete declaration.
10551         * breakpoint.c (set_breakpoint_condition)
10552         (breakpoint_set_commands, do_map_commands_command)
10553         (init_raw_breakpoint, clear_command, set_ignore_count)
10554         (enable_breakpoint_disp): No longer call
10555         annotate_breakpoints_changed.
10556
10557 2013-01-22  Pedro Alves  <palves@redhat.com>
10558
10559         * annotate.c: Include "inferior.h".
10560         (frames_invalid_emitted)
10561         (breakpoints_invalid_emitted): New globals.
10562         (async_background_execution_p): New function.
10563         (annotate_breakpoints_changed, annotate_frames_invalid): Skip
10564         emitting the annotation if it has already been emitted.
10565         (annotate_display_prompt): New function.
10566         * annotate.h (annotate_display_prompt): New declaration.
10567         * event-top.c: Include annotate.h.
10568         (display_gdb_prompt): Call annotate_display_prompt.
10569
10570 2013-01-22  Pedro Alves  <palves@redhat.com>
10571
10572         * annotate.c (ignore_count_changed): Delete.
10573         (annotate_breakpoints_changed): Don't clear ignore_count_changed.
10574         (annotate_ignore_count_change): Delete.
10575         (annotate_stopped): Don't emit a delayed breakpoints-changed
10576         annotation.
10577         * annotate.h (annotate_ignore_count_change): Delete.
10578         * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
10579         annotate_ignore_count_change.
10580
10581 2013-01-22  Tom Tromey  <tromey@redhat.com>
10582
10583         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
10584         require_rvalue for a register location.
10585
10586 2013-01-21  Marc Khouzam  <marc.khouzam@ericsson.com>
10587
10588         * breakpoint.c (print_one_breakpoint_location): Add MI
10589         field 'thread-groups' when printing a breakpoint.
10590         (output_thread_groups): New function.
10591
10592 2013-01-21  Siva Chandra Reddy  <sivachandra@google.com>
10593
10594         * python/lib/gdb/commands/explore.py
10595         (CompoundExplorer.explore_expr): Correct the name of a method
10596         being invoked.
10597         (ExploreTypeCommand.invoke): Add a missing 'return'.
10598
10599 2013-01-21  Tom Tromey  <tromey@redhat.com>
10600
10601         * gdb_obstack.h (obconcat): Move declaration here, from...
10602         * symfile.h (obconcat): ... here.
10603         * gdb_obstack.c: New file.
10604         (obconcat): Move from...
10605         * symfile.c (obconcat): ... here.
10606         * Makefile.in (SFILES): Add gdb_obstack.c.
10607         (COMMON_OBS): Add gdb_obstack.o.
10608
10609 2013-01-21  Tom Tromey  <tromey@redhat.com>
10610
10611         * symfile.h (obsavestring): Don't declare.
10612         * symfile.c (obsavestring): Remove.
10613         * ada-exp.y: Use obstack_copy0, not obsavestring.
10614         * ada-lang.c: Use obstack_copy0, not obsavestring.
10615         * coffread.c: Use obstack_copy0, not obsavestring.
10616         * cp-namespace.c: Use obstack_copy0, not obsavestring.
10617         * dbxread.c: Use obstack_copy0, not obsavestring.
10618         * dwarf2read.c: Use obstack_copy0, not obsavestring.
10619         * jit.c: Use obstack_copy0, not obsavestring.
10620         * mdebugread.c: Use obstack_copy0, not obsavestring.
10621         * psymtab.c: Use obstack_copy0, not obsavestring.
10622         * stabsread.c: Use obstack_copy0, not obsavestring.
10623         * xcoffread.c: Use obstack_copy0, not obsavestring.
10624
10625 2013-01-21  Tom Tromey  <tromey@redhat.com>
10626
10627         * dwarf2read.c (fixup_go_packaging): Save package name
10628         on objfile obstack.
10629         * gdbtypes.c (init_type): Don't copy name.
10630
10631 2013-01-21  Tom Tromey  <tromey@redhat.com>
10632
10633         * dwarf2read.c (struct partial_die_info) <name, scope>: Now
10634         const.
10635         (struct attribute) <u.str>: Now const.
10636         (struct fnfieldlist) <name>: Now const.
10637         (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
10638         (partial_die_parent_scope): Make return type const.
10639         (partial_die_full_name, add_partial_symbol): Update.
10640         (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
10641         'name' const.
10642         (find_file_and_directory): Make 'name' and 'comp_dir' const.
10643         (read_file_scope, read_func_scope, dwarf2_add_field)
10644         (dwarf2_add_member_fn, read_structure_type)
10645         (process_enumeration_scope, read_array_type, read_module_type)
10646         (read_base_type, read_subrange_type): Update.
10647         (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
10648         (new_symbol_full, guess_full_die_structure_name): Update.
10649         (dwarf2_canonicalize_name): Return const type.  Make 'name' const.
10650         (dwarf2_name): Return const type.
10651         (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
10652         const.
10653
10654 2013-01-21  Tom Tromey  <tromey@redhat.com>
10655
10656         * gdbtypes.c (init_type): Make 'name' const.
10657         * gdbtypes.h (init_type): Update.
10658
10659 2013-01-21  Tom Tromey  <tromey@redhat.com>
10660
10661         * buildsym.c (patch_subfile_names): Use set_last_source_file.
10662         (start_symtab): Make 'name' and 'dirname' const.  Use
10663         set_last_source_file.
10664         (restart_symtab, reset_symtab_globals): Use set_last_source_file.
10665         (last_source_file): Define.  Now static.
10666         (set_last_source_file, get_last_source_file): New functions.
10667         * buildsym.h (last_source_file): Don't declare.
10668         (start_symtab): Update.
10669         (set_last_source_file, get_last_source_file): Declare.
10670         * coffread.c (complete_symtab): Use set_last_source_file.
10671         (coff_end_symtab): Likewise.
10672         (coff_symtab_read): Use set_last_source_file, get_last_source_file.
10673         * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
10674         set_last_source_file.
10675         (process_one_symbol): Use get_last_source_file.
10676         * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
10677         (psymtab_to_symtab_1): Use get_last_source_file.
10678         * xcoffread.c (process_linenos): Use get_last_source_file.
10679         (complete_symtab): Use set_last_source_file.
10680         (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
10681         (scan_xcoff_symtab): Use set_last_source_file.
10682
10683 2013-01-21  Tom Tromey  <tromey@redhat.com>
10684
10685         * symtab.c (struct demangled_name_entry) <mangled>: Now const.
10686         (symbol_set_names): Remove casts.  Handle field const-ness.
10687
10688 2013-01-21  Tom Tromey  <tromey@redhat.com>
10689
10690         * dwarf2read.c (new_symbol_full): Remove cast.
10691         * symtab.c (symbol_set_demangled_name): Make 'name' const.
10692         * symtab.h (symbol_set_demangled_name): Update.
10693
10694 2013-01-21  Tom Tromey  <tromey@redhat.com>
10695
10696         * main.c (captured_main): Call bfd_init.
10697
10698 2013-01-21  Tom Tromey  <tromey@redhat.com>
10699
10700         * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
10701         * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
10702         * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
10703         * NEWS: Update.
10704
10705 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
10706
10707         * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
10708
10709 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
10710
10711         Fix gdb.fortran/common-block.exp crash in PIE mode.
10712         * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
10713         LOC_COMMON_BLOCK.
10714         * f-valprint.c (info_common_command_for_block): Expect
10715         LOC_COMMON_BLOCK in gdb_assert.
10716         * symtab.h (struct general_symbol_info): Update comment for the
10717         common_block member.
10718         (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
10719         (enum address_class): New member LOC_COMMON_BLOCK.
10720
10721 2013-01-18  David Blaikie  <dblaikie@gmail.com>
10722
10723         * MAINTAINERS (Write After Approval): Add "David Blaikie".
10724
10725 2013-01-18  Tom Tromey  <tromey@redhat.com>
10726
10727         PR c++/14999:
10728         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
10729         Call require_rvalue.
10730
10731 2013-01-18  Yao Qi  <yao@codesourcery.com>
10732
10733         * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
10734         (dbx_read_symtab): New declaration.
10735         (dbx_psymtab_to_symtab): Delete.
10736         (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
10737         Rename parameter PST to SELF.  Exchanged two parameters.
10738         (start_psymtab): Caller update.
10739         * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
10740         (dwarf2_read_symtab): New declaration.
10741         (dwarf2_psymtab_to_symtab): Delete.
10742         (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
10743         Rename parameter PST to SELF.  Exchanged two parameters.
10744         (create_partial_symtab): Caller update.
10745         * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
10746         (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
10747         Rename parameter PST to SELF.  Exchanged two parameters.
10748         (parse_partial_symbols, new_psymtab): Caller update.
10749         * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
10750         two parameters.
10751         * psymtab.c (psymtab_to_symtab): Caller update.
10752         * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
10753         (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
10754         Rename parameter PST to SELF.  Exchanged two parameters.
10755         (xcoff_start_psymtab): Caller update.
10756
10757 2013-01-18  Yao Qi  <yao@codesourcery.com>
10758
10759         * infrun.c (proceed): Rename local variable 'oneproc' to
10760         'force_step'.
10761
10762 2013-01-17  Doug Evans  <dje@google.com>
10763
10764         * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
10765         (dw2_build_type_unit_groups): Delete.  All uses updated.
10766
10767         * symtab.h (struct symbol_search): Add comment.
10768
10769 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
10770
10771         * symtab.c (compare_filenames_for_search): New comment for
10772         HAS_DRIVE_SPEC.
10773
10774 2013-01-17  Tom Tromey  <tromey@redhat.com>
10775
10776         * cp-abi.c (cp_abi_completer): Fix typo in assignment.
10777
10778 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
10779
10780         * symtab.c (iterate_over_some_symtabs): New variable cleanups,
10781         initialize it by existing make_cleanup.  Call new do_cleanups.
10782
10783 2013-01-17  Tom Tromey  <tromey@redhat.com>
10784
10785         * cp-abi.c (cp_abi_completer): New function.
10786         (_initialize_cp_abi): Set completer for "set cp-abi".
10787
10788 2013-01-17  Tom Tromey  <tromey@redhat.com>
10789
10790         * mem-break.c: Remove obsolete comment.
10791         * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
10792
10793 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
10794
10795         * jit.c (jit_reader_load_command): Interpret the jit reader name
10796         as an absolute path if it begins with a forward slash.
10797
10798 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
10799
10800         PR gdb/14550
10801
10802         * jit.c (finalize_symtab): Ensure that only the global block has a
10803         NULL superblock.
10804
10805 2013-01-17  Pedro Alves  <palves@redhat.com>
10806
10807         * acinclude.m4: Include ../config/plugins.m4,
10808         ../config/largefile.m4 and ../config/lead-dot.m4.  Add comments.
10809         * Makefile.in (aclocal_m4_deps): Update.
10810         * aclocal.m4: Renegerate.
10811
10812 2013-01-16  Doug Evans  <dje@google.com>
10813
10814         * contrib/cc-with-tweaks.sh: Add references to Fission docs.
10815
10816 2013-01-16  Pedro Alves  <palves@redhat.com>
10817             Tom Tromey  <tromey@redhat.com>
10818
10819         PR cli/7221:
10820         * NEWS: Add "catch signal".
10821         * breakpoint.c (base_breakpoint_ops): No longer static.
10822         (bpstat_explains_signal): New function.
10823         (init_catchpoint): No longer static.
10824         (base_breakpoint_explains_signal): New function.
10825         (base_breakpoint_ops): Initialize new field.
10826         * breakpoint.h (enum bpstat_signal_value): New.
10827         (struct breakpoint_ops) <explains_signal>: New field.
10828         (bpstat_explains_signal): Remove macro, declare as function.
10829         (base_breakpoint_ops, init_catchpoint): Declare.
10830         * break-catch-sig.c: New file.
10831         * inferior.h (signal_catch_update): Declare.
10832         * infrun.c (signal_catch): New global.
10833         (handle_syscall_event): Update for change to
10834         bpstat_explains_signal.
10835         (handle_inferior_event): Likewise.  Always handle random signals
10836         via bpstats.
10837         (signal_cache_update): Check signal_catch.
10838         (signal_catch_update): New function.
10839         (_initialize_infrun): Initialize signal_catch.
10840         * Makefile.in (SFILES): Add break-catch-sig.c.
10841         (COMMON_OBS): Add break-catch-sig.o.
10842
10843 2013-01-16  Tom Tromey  <tromey@redhat.com>
10844
10845         * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
10846         (print_one_catch_solib, print_one_catch_syscall)
10847         (print_one_catch_exec, print_one_exception_catchpoint): Emit
10848         "catch-type".
10849
10850 2013-01-16  Yao Qi  <yao@codesourcery.com>
10851
10852         * printcmd.c (current_display_number): Make it static.
10853
10854 2013-01-16  Yao Qi  <yao@codesourcery.com>
10855
10856         * infcmd.c (step_once): Don't check '!single_inst' as it was
10857         checked before.
10858
10859 2013-01-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
10860
10861         * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
10862
10863 2013-01-14  Tom Tromey  <tromey@redhat.com>
10864
10865         * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
10866         set command.
10867         * command.h (add_setshow_string_noescape_cmd): Update.
10868         * corefile.c (set_gnutarget_command): Remove trailing whitespace.
10869         (complete_set_gnutarget): New function.
10870         (_initialize_core): Set the "set gnutarget" completer.
10871
10872 2013-01-14  Tom Tromey  <tromey@redhat.com>
10873
10874         PR symtab/14442:
10875         * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
10876         (c_type_print_modifier): Likewise.
10877         * dwarf2read.c (read_tag_restrict_type): New function.
10878         (read_type_die_1): Handle DW_TAG_restrict_type.
10879         * gdbtypes.c (make_restrict_type): New function.
10880         (recursive_dump_type): Handle TYPE_RESTRICT.
10881         * gdbtypes.h (enum type_flag_values): Renumber.
10882         (enum type_instance_flag_value): Add
10883         TYPE_INSTANCE_FLAG_RESTRICT.
10884         (TYPE_RESTRICT): New macro.
10885         (make_restrict_type): Declare.
10886
10887 2013-01-14  Tom Tromey  <tromey@redhat.com>
10888
10889         PR symtab/14931:
10890         * psymtab.c (struct psymtab_state): New.
10891         (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
10892         functions.
10893         * psympriv.h (make_cleanup_discard_psymtabs): Declare.
10894         * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
10895
10896 2013-01-14  Richard Sharman  <richard_sharman@mitel.com>
10897             Pedro Alves  <palves@redhat.com>
10898
10899         PR remote/14786
10900
10901         * remote.c (remote_threads_info): Make a copy of the reply from
10902         qfThreadInfo and use that instead of rs->buf.
10903
10904 2013-01-14  Yao Qi  <yao@codesourcery.com>
10905
10906         * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
10907         (dbx_psymtab_to_symtab): Likewise.
10908         * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
10909         * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
10910         * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
10911
10912 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
10913
10914         * parse.c (parse_exp_in_context): New variable inner_chain.  Call
10915         make_cleanup_restore_current_language.  Call set_language.  Move
10916         OLD_CHAIN and INNER_CHAIN cleanups.
10917         * utils.c (do_restore_current_language)
10918         (make_cleanup_restore_current_language): New functions.
10919         * utils.h (make_cleanup_restore_current_language): New declaration.
10920
10921 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
10922
10923         * source.c (symtab_to_fullname): Apply rewrite_source_path also for
10924         non-existing files.
10925
10926         * source.c (symtab_to_fullname): Do not prepend DIRNAME for
10927         non-existing files if FILENAME is already absolute.
10928
10929 2013-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
10930
10931         * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
10932         fputs_filtered.  Append trailing newline.
10933
10934 2013-01-11  Yao Qi  <yao@codesourcery.com>
10935             Stan Shebs  <stan@codesourcery.com>
10936
10937         * psymtab.c (init_psymbol_list): Clarify the comment.
10938
10939 2013-01-11  Yao Qi  <yao@codesourcery.com>
10940
10941         * breakpoint.c (print_one_breakpoint_location): Remove dead code.
10942         (update_dprintf_command_list): Assert that 'printf_line' is
10943         non-null.  Remove condition check.
10944
10945 2013-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10946
10947         Code cleanup.
10948         * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
10949         type const char *.
10950         * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
10951         const char *.
10952         * tui/tui-source.h (tui_source_is_displayed): Likewise.
10953
10954 2013-01-09  Anthony Green  <green@moxielogic.com>
10955
10956         * cp-abi.c (cplus_print_vtable): Don't return value from void
10957         function.
10958         * ada-lang.c (re_set_catch_assert): Ditto.
10959
10960 2013-01-09  Doug Evans  <dje@google.com>
10961
10962         * symfile.h (quick_symbol_functions): Delete member
10963         pre_expand_symtabs_matching.  All uses removed.
10964         * dwarf2read.c (dw2_lookup_symbol): Implement.
10965         (dw2_do_expand_symtabs_matching): Delete.
10966         (dw2_pre_expand_symtabs_matching): Delete.
10967         (struct dw2_symtab_iterator): New type.
10968         (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
10969         (dw2_expand_symtabs_for_function): Rewrite.
10970         (dwarf2_gdb_index_functions): Update.
10971         * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
10972         (psym_functions): Update.
10973
10974 2013-01-09  Tom Tromey  <tromey@redhat.com>
10975
10976         * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
10977         * configure: Rebuild.
10978         * configure.ac: Add somread.o to the build if BFD has SOM
10979         support.
10980         * somread.c: Include som/aout.h, not syms.h.
10981         (som_symtab_read): Use som_external_symbol_dictionary_record.
10982         Unpack records manually.
10983         (_initialize_somread): Declare.
10984
10985 2012-01-08  Mike Frysinger  <vapier@gentoo.org>
10986
10987         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
10988         Cast return_address to 64bits.
10989
10990 2013-01-08  Hui Zhu  <hui_zhu@mentor.com>
10991
10992         * printcmd.c: Remove define of function output_command.
10993         * tracepoint.c: Remove extern of function output_command.
10994         * valprint.h: (output_command): New extern.
10995
10996 2013-01-07  Tom Tromey  <tromey@redhat.com>
10997
10998         * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
10999         Remove.
11000         (objc_language_defn): Use c_printchar, c_printstr,
11001         c_emit_char.
11002
11003 2013-01-07  Tom Tromey  <tromey@redhat.com>
11004
11005         PR cli/7719:
11006         * NEWS: Update.
11007         * ada-valprint.c (printstr, print_field_values): Remove
11008         "inspect_it" code.
11009         * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
11010         code.
11011         * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
11012         code.
11013         * m2-lang.c (m2_printstr): Remove "inspect_it" code.
11014         * main.c (captured_main): Remove "epoch" argument.
11015         * objc-lang.c (objc_printstr): Remove "inspect_it" code.
11016         * p-lang.c (pascal_printstr): Remove "inspect_it" code.
11017         * p-valprint.c (pascal_object_print_value_fields): Remove
11018         "inspect_it" code.
11019         * printcmd.c (print_command_1): Remove 'inspect' argument.
11020         (print_command, call_command): Update.
11021         (inspect_command): Remove.
11022         (_initialize_printcmd): Make "inspect" an alias for "print".
11023         * top.c (epoch_interface): Remove.
11024         * top.h (epoch_interface): Remove.
11025         * valprint.c (user_print_options): Update.
11026         (print_converted_chars_to_obstack): Remove "inspect_it" code.
11027         * valprint.h (struct value_print_options) <inspect_it>: Remove
11028         field.
11029
11030 2013-01-04  Tom Tromey  <tromey@redhat.com>
11031
11032         * valprint.h (read_string): Add 'extern'.
11033
11034 2013-01-07  Joel Brobecker  <brobecker@adacore.com>
11035
11036         * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
11037         used to decide whether to define darwin_read_dyld_info or not.
11038
11039 2013-01-03  Pierre Muller  <muller@sourceware.org>
11040
11041         * main.c (relocate_gdb_directory): Avoid calling stat function
11042         if DIR is empty.
11043
11044 2013-01-03  Yao Qi  <yao@codesourcery.com>
11045
11046         * psymtab.c (fixup_psymbol_section): Update declaration.
11047         (fixup_psymbol_section): Remove code returning value.
11048
11049 2013-01-03  Yao Qi  <yao@codesourcery.com>
11050
11051         * symtab.h: Remove some out of date comments.
11052          (enum exception_event_kind): Move it ...
11053         * breakpoint.c: ... here.
11054
11055 2013-01-02  Iain Sandoe  <developer@sandoe-acoustics.co.uk>
11056
11057         PR gdb/14405
11058         * darwin-nat.c (darwin_read_dyld_info): Only build if
11059         TASK_DYLD_INFO_COUNT is defined.
11060         (darwin_xfer_partial): Call darwin_read_dyld_info only if
11061         TASK_DYLD_INFO_COUNT is defined.
11062
11063 2013-01-02  Tom Tromey  <tromey@redhat.com>
11064
11065         * symfile.h (struct ecoff_debug_hack): Remove.
11066         * objfiles.c: Don't include mdebugread.h.
11067
11068 2013-01-02  Tom Tromey  <tromey@redhat.com>
11069
11070         * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
11071         * configure.ac: Check for Mach-O support in BFD.  Update
11072         CONFIG_OBS.
11073         * configure: Rebuild.
11074
11075 2013-01-02  Tom Tromey  <tromey@redhat.com>
11076
11077         * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
11078         * configure.ac: Use GDB_AC_CHECK_BFD.
11079         * configure: Rebuild.
11080
11081 2013-01-01  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
11082
11083         * MAINTAINERS: Update my email.
11084
11085 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
11086
11087         * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
11088
11089 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
11090
11091         * rs6000-nat.c (bss_data_overlap): New function.
11092         (vmap_symtab): Use it to adjust the .bss section's offset.
11093
11094 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
11095
11096         Update year range in copyright notice of all files.
11097
11098 2013-01-01, 13  Joel Brobecker  <brobecker@adacore.com>
11099
11100         * top.c (print_gdb_version): Update copyright year.
11101
11102 For older changes see ChangeLog-2012.
11103 \f
11104 Local Variables:
11105 mode: change-log
11106 left-margin: 8
11107 fill-column: 74
11108 version-control: never
11109 coding: utf-8
11110 End: