Eliminate obstack_printf
[external/binutils.git] / gdb / ChangeLog
1 2017-04-18  Pedro Alves  <palves@redhat.com>
2
3         * xml-support.c (obstack_xml_printf): Delete.
4         * xml-support.h (obstack_xml_printf): Delete.
5
6 2017-04-18  Pedro Alves  <palves@redhat.com>
7
8         * xml-support.c (gdb_xml_parser) <use_dtd, dtd_name, parse,
9         vdebug, verror, body_text, start_element, end_element, name,
10         user_data, set_is_xinclude, set_error, expat_parser>: New methods.
11         <name, user_data, expat_parser, scopes, error, last_line, dtd_name,
12         is_xinclude>: Make private and add m_ prefix.
13         (gdb_xml_parser::body_text): New method, based on ...
14         (gdb_xml_body_text): ... this.  Adjust.
15         (gdb_xml_parser::vdebug): New method, based on ...
16         (gdb_xml_debug): ... this.  Adjust.
17         (gdb_xml_parser::verror): New method, based on ...
18         (gdb_xml_error): ... this.  Adjust.
19         (gdb_xml_parser::start_element): New method, based on ...
20         (gdb_xml_start_element): ... this.  Adjust.
21         (gdb_xml_start_element_wrapper): Defer to
22         gdb_xml_parser::start_element and gdb_xml_parser::set_error.
23         (gdb_xml_parser::end_element): New method, based on ...
24         (gdb_xml_end_element_wrapper): ... this.  Adjust.
25         (gdb_xml_parser::~gdb_xml_parser): Adjust.
26         (gdb_xml_parser::gdb_xml_parser): Adjust to field renames.
27         (gdb_xml_parser::use_dtd): New method, based on ...
28         (gdb_xml_use_dtd): ... this.  Adjust.
29         (gdb_xml_parser::parse): New method, based on ...
30         (gdb_xml_parse): ... this.  Adjust.
31         (gdb_xml_parse_quick): Adjust to call the parser's parse method.
32         (xinclude_start_include): Adjust to call the parser's name method.
33         (xml_xinclude_default, xml_xinclude_start_doctype)
34         (xml_xinclude_end_doctype): Adjust to call the parser's user_data
35         method.
36         (xml_process_xincludes): Adjust to call parser methods.
37         * xml-support.h (gdb_xml_use_dtd, gdb_xml_parse): Delete
38         declarations.
39
40 2017-04-18  Pedro Alves  <palves@redhat.com>
41
42         * tracefile-tfile.c (tfile_write_tdesc): Adjust to use
43         gdb::optional<std::string>.
44         * xml-support.c: Include <string>.
45         (scope_level::scope_level(scope_level &&))
46         (scope_level::~scope_level): Delete.
47         (scope_level::body): Now a std::string.
48         (gdb_xml_body_text, gdb_xml_end_element): Adjust.
49         (xinclude_parsing_data::xinclude_parsing_data): Add 'output'
50         parameter.
51         (xinclude_parsing_data::~xinclude_parsing_data): Delete.
52         (xinclude_parsing_data::output): Now a std::string reference.
53         (xinclude_start_include): Adjust.
54         (xml_xinclude_default): Adjust.
55         (xml_process_xincludes): Add 'output' parameter, and return bool.
56         * xml-support.h (xml_process_xincludes): Add 'output' parameter,
57         and return bool.
58         * xml-tdesc.c: Include <unordered_map> and <string>.
59         (tdesc_xml_cache): Delete.
60         (tdesc_xml_cache_s): Delete.
61         (xml_cache): Now an std::unordered_map.
62         (tdesc_parse_xml): Adjust to use std::string and unordered_map.
63         (target_fetch_description_xml): Change return type to
64         gdb::optional<std::string>, and adjust.
65         * xml-tdesc.h: Include "common/gdb_optional.h" and <string>.
66         (target_fetch_description_xml): Change return type to
67         gdb::optional<std::string>.
68
69 2017-04-18  Pedro Alves  <palves@redhat.com>
70
71         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
72         unittests/optional-selftests.c.
73         (SUBDIR_UNITTESTS_OBS): Add optional-selftests.o.
74         * unittests/optional-selftests.c: New file.
75         * unittests/optional/assignment/1.cc: New file.
76         * unittests/optional/assignment/2.cc: New file.
77         * unittests/optional/assignment/3.cc: New file.
78         * unittests/optional/assignment/4.cc: New file.
79         * unittests/optional/assignment/5.cc: New file.
80         * unittests/optional/assignment/6.cc: New file.
81         * unittests/optional/assignment/7.cc: New file.
82         * unittests/optional/cons/copy.cc: New file.
83         * unittests/optional/cons/default.cc: New file.
84         * unittests/optional/cons/move.cc: New file.
85         * unittests/optional/cons/value.cc: New file.
86         * unittests/optional/in_place.cc: New file.
87         * unittests/optional/observers/1.cc: New file.
88         * unittests/optional/observers/2.cc: New file.
89
90 2017-04-18  Pedro Alves  <palves@redhat.com>
91
92         * common/gdb_optional.h: Include common/traits.h.
93         (in_place_t): New type.
94         (in_place): New constexpr variable.
95         (optional::optional): Remove member initialization of
96         m_instantiated.
97         (optional::optional(in_place_t...)): New constructor.
98         (optional::~optional): Use reset.
99         (optional::optional(const optional&)): New.
100         (optional::optional(const optional&&)): New.
101         (optional::optional(T &)): New.
102         (optional::optional(T &&)): New.
103         (operator::operator=(const optional &)): New.
104         (operator::operator=(optional &&)): New.
105         (operator::operator= (const T &))
106         (operator::operator= (T &&))
107         (operator::emplace (Args &&... args)): Return a T&.  Use reset.
108         (operator::reset): New.
109         (operator::m_instantiated):: Add in-class initializer.
110         * common/traits.h: Include <type_traits>.
111         (struct And): New types.
112
113 2017-04-18  Pedro Alves  <palves@redhat.com>
114
115         * xml-support.c: Include <vector>.
116         (scope_level::scope_level(const gdb_xml_element *))
117         (scope_level::scope_level(scope_level&&)): New.
118         (scope_level::~scope_level): New.
119         (scope_level_s): Delete.
120         (gdb_xml_parser::scopes): Now a std::vector.
121         (gdb_xml_body_text, gdb_xml_start_element, gdb_xml_end_element):
122         Use std::vector.
123         (gdb_xml_parser::~gdb_xml_parser): Remove now unnecessary
124         scope cleanup code.
125         (gdb_xml_parser::gdb_xml_parser): Remove explicit initialization
126         of the scopes member.  Use std::vector::emplace_back.
127
128 2017-04-18  Pedro Alves  <palves@redhat.com>
129
130         * xml-support.c (gdb_xml_parser): Add ctor/dtor.  Make is_xinclude
131         a bool.
132         (gdb_xml_end_element): Change type of first parameter.
133         (gdb_xml_cleanup): Rename to ...
134         (gdb_xml_parser::~gdb_xml_parser): ... this.
135         (gdb_xml_create_parser_and_cleanup): Delete with ...
136         (gdb_xml_parser::gdb_xml_parser): ... creation parts factored out
137         to this new ctor.
138         (gdb_xml_parse_quick): Create a local gdb_xml_parser instead of
139         using gdb_xml_create_parser_and_cleanup.
140         (xinclude_parsing_data): Add ctor/dtor.
141         (xml_xinclude_cleanup): Delete.
142         (xml_process_xincludes): Create a local xinclude_parsing_data
143         instead of heap-allocating one.  Create a local gdb_xml_parser
144         instead of heap-allocating one with
145         gdb_xml_create_parser_and_cleanup.
146
147 2017-04-18  John Baldwin  <jhb@FreeBSD.org>
148
149         PR threads/20743
150         * fbsd-nat.c (resume_one_thread_cb): Remove.
151         (resume_all_threads_cb): Remove.
152         (fbsd_resume): Use ALL_NON_EXITED_THREADS instead of
153         iterate_over_threads.
154
155 2017-04-17  Joel Brobecker  <brobecker@adacore.com>
156
157         * NEWS: Create a new section for the next release branch.
158         Rename the section of the current branch, now that it has
159         been cut.
160
161 2017-04-17  Joel Brobecker  <brobecker@adacore.com>
162
163         GDB 8.0 branch created (725bf5cf125783c2a7ca4ab63d3768e220bab2db):
164         * version.in: Bump version to 8.0.50.DATE-git.
165
166 2017-04-13  Sergio Durigan Junior  <sergiodj@redhat.com>
167
168         PR gdb/21385
169         * windows-nat.c (windows_create_inferior): Declare 'allargs'
170         independently of the host, and fix build breakage on Cygwin.
171
172 2017-04-13  Pedro Alves  <palves@redhat.com>
173
174         * inferior.c (free_inferior): Convert to ...
175         (inferior::~inferior): ... this dtor.
176         (inferior::inferior): New ctor, factored out from ...
177         (add_inferior_silent): ... here.  Allocate the inferior with a new
178         expression.
179         (delete_inferior): Call delete instead of free_inferior.
180         * inferior.h (gdb_environ, continuation): Forward declare.
181         (inferior): Now a class.  Add in-class initialization to all
182         members.  Make boolean fields bool, except 'detaching'.
183         (inferior::inferior): New explicit ctor.
184         (inferior::~inferior): New.
185
186 2017-04-13  Pedro Alves  <palves@redhat.com>
187
188         * inferior.c (init_inferior_list): Delete.
189         * inferior.h (init_inferior_list): Delete.
190
191 2017-04-13  Pedro Alves  <palves@redhat.com>
192
193         PR threads/13217
194         * gdb.threads/threadapply.exp (thr_apply_detach): New procedure.
195         (top level): Call it twice, with different thread sets.
196
197 2017-04-13  Pedro Alves  <palves@redhat.com>
198
199         * thread.c: Include <algorithm>.
200         (thread_array_cleanup): Delete.
201         (scoped_inc_dec_ref): New class.
202         (live_threads_count): New function.
203         (set_thread_refcount): Delete.
204         (tp_array_compar_ascending): Now a bool.
205         (tp_array_compar): Convert to a std::sort comparison function.
206         (thread_apply_all_command): Use std::vector and scoped_inc_dec_ref
207         and live_threads_count.
208
209 2017-04-13  Pedro Alves  <palves@redhat.com>
210
211         * infrun.c (follow_fork_inferior): Also switch the current
212         inferior.
213
214 2017-04-13  Pedro Alves  <palves@redhat.com>
215
216         * breakpoint.c (watch_command_1): Save watchpoint-frame info
217         before calling create_internal_breakpoint.
218
219 2017-04-13  Pedro Alves  <palves@redhat.com>
220
221         * fork-child.c (execv_argv): New class.
222         (breakup_args): Refactored as ...
223         (execv_argv::init_for_no_shell): .. this method of execv_argv.
224         Copy arguments to storage and replace separators with NULL
225         terminators in place.
226         (escape_bang_in_quoted_argument): Adjust to return bool.
227         (execv_argv::execv_argv): New ctor.
228         (execv_argv::init_for_shell): New method, factored out from
229         fork_inferior.  Don't strdup strings into the vector.
230         (fork_inferior): Eliminate "shell" local and use execv_argv.  Use
231         Remove free_vector_argv call.
232
233 2017-04-13  Yao Qi  <yao.qi@linaro.org>
234
235         * rx-tdep.c (rx_fpsw_type): Check tdep->rx_fpsw_type instead of
236         tdep->rx_psw_type.
237
238 2017-04-13  Yao Qi  <yao.qi@linaro.org>
239
240         * rl78-tdep.c (rl78_gdbarch_init): Use XCNEW instead of XNEW.
241         * rx-tdep.c (rx_gdbarch_init): Likewise.
242
243 2017-04-13  Pedro Alves  <palves@redhat.com>
244
245         * breakpoint.h (struct breakpoint): Reindent.
246
247 2017-04-13  Pedro Alves  <palves@redhat.com>
248
249         * breakpoint.c (bp_location): Rename to ...
250         (bp_locations): ... this.  All references updated.
251         (bp_location_count): Rename to ...
252         (bp_locations_count): ... this.  All references updated.
253         (bp_location_placed_address_before_address_max): Rename to ...
254         (bp_locations_placed_address_before_address_max): ... this.  All
255         references updated.
256         (bp_location_shadow_len_after_address_max): Rename to ...
257         (bp_locations_shadow_len_after_address_max): ... this.  All
258         references updated.
259         (bp_location_compare_addrs): Rename to ...
260         (bp_locations_compare_addrs): ... this.  All references updated.
261         (bp_location_compare):Rename to ...
262         (bp_locations_compare): ... this.  All references updated.
263         (bp_location_target_extensions_update): Rename to ...
264         (bp_locations_target_extensions_update): ... this.  All references
265         updated.
266
267 2017-04-12  Sergio Durigan Junior  <sergiodj@redhat.com>
268
269         * Makefile.in (HFILES_NO_SRCDIR): Add "common/gdb_termios.h".
270         * common/common.m4: Check headers 'termios.h', 'termio.h' and
271         'sgtty.h'.
272         * common/gdb_termios.h: New file, with parts of "terminal.h".
273         * inflow.c: Include "gdb_termios.h".
274         * ser-unix.c: Include "gdb_termios.h".
275         * terminal.h: Move terminal-related defines to
276         "common/gdb_termios.h".
277
278 2017-04-12  Tom Tromey  <tom@tromey.com>
279
280         * probe.c (parse_probes): Update.
281         * location.h (delete_event_location): Don't declare.
282         (event_location_deleter::operator()): Update.
283         * location.c (event_location_deleter::operator()): Rename from
284         delete_event_location.
285         * linespec.h (linespec_result) <location>: Change type to
286         event_location_up.
287         * linespec.c (canonicalize_linespec, event_location_to_sals)
288         (decode_objc): Update.
289         (linespec_result): Don't call delete_event_location.
290         * breakpoint.c (create_breakpoints_sal)
291         (bkpt_probe_create_sals_from_location)
292         (strace_marker_create_sals_from_location): Update.
293
294 2017-04-12  Tom Tromey  <tom@tromey.com>
295
296         * linespec.h (struct linespec_result): Add constructor and
297         destructor.
298         (init_linespec_result, destroy_linespec_result)
299         (make_cleanup_destroy_linespec_result): Don't declare.
300         * linespec.c (init_linespec_result): Remove.
301         (linespec_result::~linespec_result): Rename from
302         destroy_linespec_result.  Update.
303         (cleanup_linespec_result, make_cleanup_destroy_linespec_result):
304         Remove.
305         * breakpoint.c (create_breakpoint, break_range_command)
306         (decode_location_default): Update.
307         * ax-gdb.c (agent_command_1): Update.
308
309 2017-04-12  Tom Tromey  <tom@tromey.com>
310
311         * remote.c (remote_download_tracepoint): Update.
312         * python/py-breakpoint.c (bppy_get_location): Update.
313         * guile/scm-breakpoint.c (bpscm_print_breakpoint_smob)
314         (gdbscm_breakpoint_location): Update.
315         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Update.
316         * breakpoint.h (struct breakpoint) <location, location_range_end>:
317         Change type to event_location_up.
318         * breakpoint.c (create_overlay_event_breakpoint)
319         (create_longjmp_master_breakpoint)
320         (create_std_terminate_master_breakpoint)
321         (create_exception_master_breakpoint)
322         (breakpoint_event_location_empty_p, print_breakpoint_location)
323         (print_one_breakpoint_location, create_thread_event_breakpoint)
324         (init_breakpoint_sal, create_breakpoint)
325         (print_recreate_ranged_breakpoint, break_range_command)
326         (init_ada_exception_breakpoint, say_where): Update.
327         (base_breakpoint_dtor): Don't call delete_event_location.
328         (bkpt_print_recreate, tracepoint_print_recreate)
329         (dprintf_print_recreate, update_static_tracepoint)
330         (breakpoint_re_set_default): Update.
331
332 2017-04-12  Tom Tromey  <tom@tromey.com>
333
334         * compile/compile-loc2c.c (compute_stack_depth_worker): Change
335         type of "to_do".  Update.
336         (compute_stack_depth): Use std::vector.
337
338 2017-04-12  Tom Tromey  <tom@tromey.com>
339
340         * printcmd.c (find_instruction_backward): Use std::vector.
341
342 2017-04-12  Tom Tromey  <tom@tromey.com>
343
344         * symfile.c (objfilep): Remove typedef.
345         (reread_symbols): Use a std::vector.
346
347 2017-04-12  Tom Tromey  <tom@tromey.com>
348
349         * mi/mi-main.c (exec_direction_forward): Remove.
350         (exec_reverse_continue, mi_execute_command): Use scoped_restore.
351         * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
352         scoped_restore.
353         * guile/guile.c (guile_repl_command, guile_command)
354         (gdbscm_execute_gdb_command): Use scoped_restore.
355         * go-exp.y (go_parse): Use scoped_restore.
356         * d-exp.y (d_parse): Use scoped_restore.
357         * cli/cli-decode.c (cmd_func): Use scoped_restore.
358         * c-exp.y (c_parse): Use scoped_restore.
359
360 2017-04-12  Tom Tromey  <tom@tromey.com>
361
362         * mi/mi-parse.h (struct mi_parse): Add constructor, destructor.
363         (mi_parse): Update return type.
364         (mi_parse_free): Remove.
365         * mi/mi-parse.c (mi_parse::mi_parse): New constructor.
366         (mi_parse::~mi_parse): Rename from mi_parse_free.
367         (mi_parse_cleanup): Remove.
368         (mi_parse): Return a unique_ptr.  Use new.
369         * mi/mi-main.c (mi_execute_command): Update.
370
371 2017-04-12  Tom Tromey  <tom@tromey.com>
372
373         * location.c (explicit_location_lex_one): Return a
374         unique_xmalloc_ptr.
375         (string_to_explicit_location): Update.  Remove cleanups.
376
377 2017-04-12  Tom Tromey  <tom@tromey.com>
378
379         * gnu-v3-abi.c (value_and_voffset_p): Remove typedef.
380         (compare_value_and_voffset): Change type.  Update.
381         (compute_vtable_size): Change type of "offset_vec".
382         (gnuv3_print_vtable): Use std::vector.  Remove cleanups.
383         (gnuv3_get_typeid): Remove extraneous declaration.
384
385 2017-04-12  Tom Tromey  <tom@tromey.com>
386
387         * charset.h (wchar_iterator): Fix comment.
388
389 2017-04-12  Tom Tromey  <tom@tromey.com>
390
391         * charset.c (iconv_wrapper): New class.
392         (cleanup_iconv): Remove.
393         (convert_between_encodings): Use it.
394
395 2017-04-12  Tom Tromey  <tom@tromey.com>
396
397         * symfile.h (increment_reading_symtab): Update type.
398         * symfile.c (decrement_reading_symtab): Remove.
399         (increment_reading_symtab): Return a scoped_restore_tmpl<int>.
400         * psymtab.c (psymtab_to_symtab): Update.
401         * dwarf2read.c (dw2_instantiate_symtab): Update.
402
403 2017-04-12  Tom Tromey  <tom@tromey.com>
404
405         * jit.c (struct jit_reader): Declare separately.  Add constructor
406         and destructor.  Change type of "handle".
407         (loaded_jit_reader): Define separately.
408         (jit_reader_load): Update.  New "new".
409         (jit_reader_unload_command): Use "delete".
410         * gdb-dlfcn.h (struct dlclose_deleter): New.
411         (gdb_dlhandle_up): New typedef.
412         (gdb_dlopen, gdb_dlsym): Update types.
413         (gdb_dlclose): Remove.
414         * gdb-dlfcn.c (gdb_dlopen): Return a gdb_dlhandle_up.
415         (gdb_dlsym): Change type of "handle".
416         (make_cleanup_dlclose): Remove.
417         (dlclose_deleter::operator()): Rename from gdb_dlclose.
418         * compile/compile-c-support.c (load_libcc): Update.
419
420 2017-04-12  Tom Tromey  <tom@tromey.com>
421
422         * symtab.h (find_pcs_for_symtab_line): Change return type.
423         * symtab.c (find_pcs_for_symtab_line): Change return type.
424         * python/py-linetable.c (build_line_table_tuple_from_pcs): Change
425         type of "vec".  Update.
426         (ltpy_get_pcs_for_line): Update.
427         * linespec.c (decode_digits_ordinary): Update.
428
429 2017-04-12  Tom Tromey  <tom@tromey.com>
430
431         * tracepoint.c (actions_command): Update.
432         * python/python.c (python_command, python_interactive_command):
433         Update.
434         * mi/mi-cmd-break.c (mi_cmd_break_commands): Update.
435         * guile/guile.c (guile_command): Update.
436         * defs.h (read_command_lines, read_command_lines_1): Return
437         command_line_up.
438         (command_lines_deleter): New struct.
439         (command_line_up): New typedef.
440         * compile/compile.c (compile_code_command)
441         (compile_print_command): Update.
442         * cli/cli-script.h (get_command_line, copy_command_lines): Return
443         command_line_up.
444         (make_cleanup_free_command_lines): Remove.
445         * cli/cli-script.c (get_command_line, read_command_lines_1)
446         (copy_command_lines): Return command_line_up.
447         (while_command, if_command, read_command_lines, define_command)
448         (document_command): Update.
449         (do_free_command_lines_cleanup, make_cleanup_free_command_lines):
450         Remove.
451         * breakpoint.h (breakpoint_set_commands): Change type of
452         "commands".
453         * breakpoint.c (breakpoint_set_commands): Change type of
454         "commands".  Update.
455         (do_map_commands_command, update_dprintf_command_list)
456         (create_tracepoint_from_upload): Update.
457
458 2017-04-12  Tom Tromey  <tom@tromey.com>
459
460         * tracepoint.c (scope_info): Update.
461         * spu-tdep.c (spu_catch_start): Update.
462         * python/python.c (gdbpy_decode_line): Update.
463         * python/py-finishbreakpoint.c (bpfinishpy_init): Update.
464         * python/py-breakpoint.c (bppy_init): Update.
465         * probe.c (parse_probes): Update.
466         * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Update.
467         * location.h (event_location_deleter): New struct.
468         (event_location_up): New typedef.
469         (new_linespec_location, new_address_location, new_probe_location)
470         (new_explicit_location, copy_event_location)
471         (string_to_event_location, string_to_event_location_basic)
472         (string_to_explicit_location): Update return type.
473         (make_cleanup_delete_event_location): Remove.
474         * location.c (new_linespec_location, new_address_location)
475         (new_probe_location, new_explicit_location, copy_event_location):
476         Return event_location_up.
477         (delete_event_location_cleanup)
478         (make_cleanup_delete_event_location): Remove.
479         (string_to_explicit_location, string_to_event_location_basic)
480         (string_to_event_location): Return event_location_up.
481         * linespec.c (canonicalize_linespec, event_location_to_sals)
482         (decode_line_with_current_source)
483         (decode_line_with_last_displayed, decode_objc): Update.
484         * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
485         * completer.c (location_completer): Update.
486         * cli/cli-cmds.c (edit_command, list_command): Update.
487         * breakpoint.c (create_overlay_event_breakpoint)
488         (create_longjmp_master_breakpoint)
489         (create_std_terminate_master_breakpoint)
490         (create_exception_master_breakpoint)
491         (create_thread_event_breakpoint): Update.
492         (init_breakpoint_sal): Update.  Remove some dead code.
493         (create_breakpoint_sal): Change type of "location".  Update.
494         (create_breakpoints_sal, create_breakpoint, break_command_1)
495         (dprintf_command, break_range_command, until_break_command)
496         (init_ada_exception_breakpoint)
497         (strace_marker_create_sals_from_location)
498         (update_static_tracepoint, trace_command, ftrace_command)
499         (strace_command, create_tracepoint_from_upload): Update.
500         * break-catch-throw.c (re_set_exception_catchpoint): Update.
501         * ax-gdb.c (agent_command_1): Update.
502
503 2017-04-12  Pedro Alves  <palves@redhat.com>
504
505         * Makefile.in (ALL_TARGET_OBS): Add i386-go32-tdep.o.
506         * configure.tgt: Handle i[34567]86-*-go32* and
507         i[34567]86-*-msdosdjgpp*.
508         * i386-tdep.c (i386_svr4_reg_to_regnum):
509         Make extern.
510         (i386_go32_init_abi, i386_coff_osabi_sniffer): Moved to
511         i386-go32-tdep.c.
512         (_initialize_i386_tdep): DJGPP bits moved to i386-go32-tdep.c.
513         * i386-go32-tdep.c: New file.
514         * i386-tdep.h (tdesc_i386_mmx, i386_svr4_reg_to_regnum): New
515         declarations.
516
517 2017-04-12  Simon Marchi  <simon.marchi@ericsson.com>
518
519         * aix-thread.c (pd_status2str): Change return type to const char *.
520
521 2017-04-12  Pedro Alves  <palves@redhat.com>
522
523         * i386-tdep.c (i386_elf_init_abi, i386_go32_init_abi): Remove
524         calls to set_gdbarch_gnu_triplet_regexp.
525
526 2017-04-12  Pedro Alves  <palves@redhat.com>
527
528         PR gdb/21323
529         * c-lang.c (cplus_primitive_types) <cplus_primitive_type_wchar_t>:
530         New enum value.
531         (cplus_language_arch_info): Register cplus_primitive_type_wchar_t.
532         * gdbtypes.h (struct builtin_type) <builtin_wchar>: New field.
533         * gdbtypes.c (gdbtypes_post_init): Create the "wchar_t" type.
534         * gdbarch.sh (wchar_bit, wchar_signed): New per-arch values.
535         * gdbarch.h, gdbarch.c: Regenerate.
536         * aarch64-tdep.c (aarch64_gdbarch_init): Override
537         gdbarch_wchar_bit and gdbarch_wchar_signed.
538         * alpha-tdep.c (alpha_gdbarch_init): Likewise.
539         * arm-tdep.c (arm_gdbarch_init): Likewise.
540         * avr-tdep.c (avr_gdbarch_init): Likewise.
541         * h8300-tdep.c (h8300_gdbarch_init): Likewise.
542         * i386-nto-tdep.c (i386nto_init_abi): Likewise.
543         * i386-tdep.c (i386_go32_init_abi): Likewise.
544         * m32r-tdep.c (m32r_gdbarch_init): Likewise.
545         * moxie-tdep.c (moxie_gdbarch_init): Likewise.
546         * nds32-tdep.c (nds32_gdbarch_init): Likewise.
547         * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
548         * sh-tdep.c (sh_gdbarch_init): Likewise.
549         * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
550         * sparc64-tdep.c (sparc64_init_abi): Likewise.
551         * windows-tdep.c (windows_init_abi): Likewise.
552         * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
553
554 2017-04-12  Pedro Alves  <palves@redhat.com>
555
556         PR c++/21323
557         * c-lang.c (cplus_primitive_types) <cplus_primitive_type_char16_t,
558         cplus_primitive_type_char32_t>: New enum values.
559         (cplus_language_arch_info): Register cplus_primitive_type_char16_t
560         and cplus_primitive_type_char32_t.
561         * dwarf2read.c (read_base_type) <DW_ATE_UTF>: If bit size is 16 or
562         32, use the archtecture's built-in type for char16_t and char32_t,
563         respectively.  Otherwise, fallback to init_integer_type as before,
564         but make the type unsigned, and issue a complaint.
565         * gdbtypes.c (gdbtypes_post_init): Make char16_t and char32_t unsigned.
566
567 2017-04-12  Alan Hayward  <alan.hayward@arm.com>
568
569         * m32r-tdep.c (M32R_ARG_REGISTER_SIZE): Added.
570         (m32r_push_dummy_call): Use M32R_ARG_REGISTER_SIZE.
571
572 2017-04-12  Sergio Durigan Junior  <sergiodj@redhat.com>
573
574         * windows-nat.c (windows_create_inferior): Declare 'toexec' as
575         'const char *'.
576
577 2017-04-12  Sergio Durigan Junior  <sergiodj@redhat.com>
578
579         * common/common-utils.c (free_vector_argv): New function.
580         * common/common-utils.h: Include <vector>.
581         (free_vector_argv): New prototype.
582         * darwin-nat.c (darwin_create_inferior): Rewrite function
583         prototype in order to constify "exec_file" and accept a
584         "std::string" for "allargs".
585         * fork-child.c: Include <vector>.
586         (breakup_args): Rewrite function, using C++.
587         (fork_inferior): Rewrite function header, constify "exec_file_arg"
588         and accept "std::string" for "allargs".  Update the code to
589         calculate "argv" based on "allargs".  Update calls to "exec_fun"
590         and "execvp".
591         * gnu-nat.c (gnu_create_inferior): Rewrite function prototype in
592         order to constify "exec_file" and accept a "std::string" for
593         "allargs".
594         * go32-nat.c (go32_create_inferior): Likewise.
595         * inf-ptrace.c (inf_ptrace_create_inferior): Likewise.
596         * infcmd.c (run_command_1): Constify "exec_file".  Use
597         "std::string" for inferior arguments.
598         * inferior.h (fork_inferior): Update prototype.
599         * linux-nat.c (linux_nat_create_inferior): Rewrite function
600         prototype in order to constify "exec_file" and accept a
601         "std::string" for "allargs".
602         * nto-procfs.c (procfs_create_inferior): Likewise.
603         * procfs.c (procfs_create_inferior): Likewise.
604         * remote-sim.c (gdbsim_create_inferior): Likewise.
605         * remote.c (extended_remote_run): Update code to accept
606         "std::string" as argument.
607         (extended_remote_create_inferior): Rewrite function prototype in
608         order to constify "exec_file" and accept a "std::string" for
609         "allargs".
610         * rs6000-nat.c (super_create_inferior): Likewise.
611         (rs6000_create_inferior): Likewise.
612         * target.h (struct target_ops) <to_create_inferior>: Likewise.
613         * windows-nat.c (windows_create_inferior): Likewise.
614
615 2017-04-11  Pedro Alves  <palves@redhat.com>
616
617         * thread.c: Fix whitespace throughout.
618
619 2017-04-11  Philipp Rudo  <prudo@linux.vnet.ibm.com>
620
621         * linux-nat.c (linux_nat_detach): Remove delete_lwp call.
622
623 2017-04-11  Alan Hayward  <alan.hayward@arm.com>
624
625         * arm-tdep.c (arm_store_return_value): Use FP_REGISTER_SIZE
626
627 2017-04-10  Sergio Durigan Junior  <sergiodj@redhat.com>
628
629         PR gdb/21364
630         * osdata.c (info_osdata): Check if 'type' is an empty string
631         instead of NULL.
632
633 2017-04-10  Pedro Alves  <palves@redhat.com>
634
635         * thread.c (add_thread_silent, delete_thread_1, find_thread_ptid)
636         (ptid_to_global_thread_id, in_thread_list)
637         (do_captured_list_thread_ids, set_resumed, set_running)
638         (set_executing, set_stop_requested, finish_thread_state)
639         (validate_registers_access, can_access_registers_ptid)
640         (print_thread_info_1, switch_to_thread)
641         (do_restore_current_thread_cleanup)
642         (make_cleanup_restore_current_thread, thread_command)
643         (thread_name_command): Use operator== instead of ptid_equal.
644
645 2017-04-10  Pedro Alves  <palves@redhat.com>
646
647         * thread.c (struct current_thread_cleanup) <next>: Delete field.
648         (current_thread_cleanup_chain): Delete.
649         (restore_current_thread_cleanup_dtor)
650         (make_cleanup_restore_current_thread): Remove references to
651         current_thread_cleanup_chain.
652
653 2017-04-10  Alan Hayward  <alan.hayward@arm.com>
654
655         * msp430-tdep.c (msp430_pseudo_register_read): Never return
656         REG_UNKNOWN.
657
658 2017-04-10  Yao Qi  <yao.qi@linaro.org>
659
660         PR gdb/19942
661         * gdbthread.h (thread_info::deletable): New method.
662         (thread_info::incref): New method.
663         (thread_info::decref): New method.
664         (thread_info::refcount): Move it to private.
665         * infrun.c (save_stop_context): Call inc_refcount.
666         (release_stop_context_cleanup): Likewise.
667         * thread.c (set_thread_exited): New function.
668         (init_thread_list): Delete "tp" only it is deletable, otherwise
669         call set_thread_exited.
670         (delete_thread_1): Call set_thread_exited.
671         (current_thread_cleanup) <inferior_pid>: Remove.
672         <thread>: New field.
673         (restore_current_thread_ptid_changed): Removed.
674         (do_restore_current_thread_cleanup): Adjust.
675         (restore_current_thread_cleanup_dtor): Don't call
676         find_thread_ptid.
677         (set_thread_refcount): Use dec_refcount.
678         (make_cleanup_restore_current_thread): Adjust.
679         (thread_apply_all_command): Call inc_refcount.
680         (_initialize_thread): Don't call
681         observer_attach_thread_ptid_changed.
682
683 2017-04-10  Yao Qi  <yao.qi@linaro.org>
684
685         * thread.c (delete_thread_1): Hoist code on marking thread as
686         exited.
687
688 2017-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
689
690         * windows-nat.c (windows_detach): Initialize ptid with
691         minus_one_ptid.
692
693 2017-04-07  Simon Marchi  <simon.marchi@ericsson.com>
694
695         * unittests/ptid-selftests.c: Fix erroneous assert messages.
696
697 2017-04-07  Alan Hayward  <alan.hayward@arm.com>
698
699         * bfin-tdep.c (BFIN_MAX_REGISTER_SIZE): Add.
700         (bfin_pseudo_register_read): Use BFIN_MAX_REGISTER_SIZE.
701         (bfin_pseudo_register_write): Likewise
702
703 2017-04-06  Simon Marchi  <simon.marchi@ericsson.com>
704
705         * common/ptid.h (struct ptid): Change to...
706         (class ptid_t): ... this.
707         <ptid_t>: New constructors.
708         <pid, lwp_p, lwp, tid_p, tid, is_pid, operator==, operator!=,
709         matches>: New methods.
710         <make_null, make_minus_one>: New static methods.
711         <pid>: Rename to...
712         <m_pid>: ...this.
713         <lwp>: Rename to...
714         <m_lwp>: ...this.
715         <tid>: Rename to...
716         <m_tid>: ...this.
717         (ptid_build, ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal,
718         ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match): Take ptid arguments
719         as references, move comment to class ptid_t.
720         * common/ptid.c (null_ptid, minus_one_ptid): Initialize with
721         ptid_t static methods.
722         (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_tid,
723         ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match):
724         Take ptid arguments as references, implement using ptid_t methods.
725         * unittests/ptid-selftests.c: New file.
726         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
727         unittests/ptid-selftests.c.
728         (SUBDIR_UNITTESTS_OBS): Add unittests/ptid-selftests.o.
729
730 2017-04-06  Thomas Preud'homme  <thomas.preudhomme@arm.com>
731
732         * python/python.c (python_run_simple_file): Cast mode literal to
733         non-const char pointer as expected by PyFile_FromString.
734
735 2017-04-05  Simon Marchi  <simon.marchi@ericsson.com>
736
737         * common/ptid.c (ptid_lwp_p, ptid_tid_p): Remove comparison with
738         minus_one_ptid and null_ptid.
739
740 2017-04-05  Pedro Alves  <palves@redhat.com>
741
742         * warning.m4 (build_warnings): Remove -Wno-write-strings.
743         * configure: Regenerate.
744
745 2017-04-05  Pedro Alves  <palves@redhat.com>
746
747         * ada-exp.y (yyerror): Constify.
748         * ada-lang.c (bound_name, get_selections)
749         (ada_variant_discrim_type)
750         (ada_variant_discrim_name, ada_value_struct_elt)
751         (ada_lookup_struct_elt_type, is_unchecked_variant)
752         (ada_which_variant_applies, standard_exc, ada_get_next_arg)
753         (catch_ada_exception_command_split)
754         (catch_ada_assert_command_split, catch_assert_command)
755         (ada_op_name): Constify.
756         * ada-lang.h (ada_yyerror, get_selections)
757         (ada_variant_discrim_name, ada_value_struct_elt): Constify.
758         * arc-tdep.c (arc_print_frame_cache): Constify.
759         * arm-tdep.c (arm_skip_stub): Constify.
760         * ax-gdb.c (gen_binop, gen_struct_ref_recursive, gen_struct_ref)
761         (gen_aggregate_elt_ref): Constify.
762         * bcache.c (print_bcache_statistics): Constify.
763         * bcache.h (print_bcache_statistics): Constify.
764         * break-catch-throw.c (catch_exception_command_1):
765         * breakpoint.c (struct ep_type_description::description):
766         Constify.
767         (add_solib_catchpoint): Constify.
768         (catch_fork_command_1): Add cast.
769         (add_catch_command): Constify.
770         * breakpoint.h (add_catch_command, add_solib_catchpoint):
771         Constify.
772         * bsd-uthread.c (bsd_uthread_state): Constify.
773         * buildsym.c (patch_subfile_names): Constify.
774         * buildsym.h (next_symbol_text_func, patch_subfile_names):
775         Constify.
776         * c-exp.y (yyerror): Constify.
777         (token::oper): Constify.
778         * c-lang.h (c_yyerror, cp_print_class_member): Constify.
779         * c-varobj.c (cplus_describe_child): Constify.
780         * charset.c (find_charset_names): Add cast.
781         (find_charset_names): Constify array and add const_cast.
782         * cli/cli-cmds.c (complete_command, cd_command): Constify.
783         (edit_command): Constify.
784         * cli/cli-decode.c (lookup_cmd): Constify.
785         * cli/cli-dump.c (dump_memory_command, dump_value_command):
786         Constify.
787         (struct dump_context): Constify.
788         (add_dump_command, restore_command): Constify.
789         * cli/cli-script.c (get_command_line): Constify.
790         * cli/cli-script.h (get_command_line): Constify.
791         * cli/cli-utils.c (check_for_argument): Constify.
792         * cli/cli-utils.h (check_for_argument): Constify.
793         * coff-pe-read.c (struct read_pe_section_data): Constify.
794         * command.h (lookup_cmd): Constify.
795         * common/print-utils.c (decimal2str): Constify.
796         * completer.c (gdb_print_filename): Constify.
797         * corefile.c (set_gnutarget): Constify.
798         * cp-name-parser.y (yyerror): Constify.
799         * cp-valprint.c (cp_print_class_member): Constify.
800         * cris-tdep.c (cris_register_name, crisv32_register_name):
801         Constify.
802         * d-exp.y (yyerror): Constify.
803         (struct token::oper): Constify.
804         * d-lang.h (d_yyerror): Constify.
805         * dbxread.c (struct header_file_location::name): Constify.
806         (add_old_header_file, add_new_header_file, last_function_name)
807         (dbx_next_symbol_text, add_bincl_to_list)
808         (find_corresponding_bincl_psymtab, set_namestring)
809         (find_stab_function_addr, read_dbx_symtab, start_psymtab)
810         (dbx_end_psymtab, read_ofile_symtab, process_one_symbol):
811         * defs.h (command_line_input, print_address_symbolic)
812         (deprecated_readline_begin_hook): Constify.
813         * dwarf2read.c (anonymous_struct_prefix, dwarf_bool_name):
814         Constify.
815         * event-top.c (handle_line_of_input): Constify and add cast.
816         * exceptions.c (catch_errors): Constify.
817         * exceptions.h (catch_errors): Constify.
818         * expprint.c (print_subexp_standard, op_string, op_name)
819         (op_name_standard, dump_raw_expression, dump_raw_expression):
820         * expression.h (op_name, op_string, dump_raw_expression):
821         Constify.
822         * f-exp.y (yyerror): Constify.
823         (struct token::oper): Constify.
824         (struct f77_boolean_val::name): Constify.
825         * f-lang.c (f_word_break_characters): Constify.
826         * f-lang.h (f_yyerror): Constify.
827         * fork-child.c (fork_inferior): Add cast.
828         * frv-tdep.c (struct gdbarch_tdep::register_names): Constify.
829         (new_variant): Constify.
830         * gdbarch.sh (pstring_ptr, pstring_list): Constify.
831         * gdbarch.c: Regenerate.
832         * gdbcore.h (set_gnutarget): Constify.
833         * go-exp.y (yyerror): Constify.
834         (token::oper): Constify.
835         * go-lang.h (go_yyerror): Constify.
836         * go32-nat.c (go32_sysinfo): Constify.
837         * guile/scm-breakpoint.c (gdbscm_breakpoint_expression): Constify.
838         * guile/scm-cmd.c (cmdscm_function): Constify.
839         * guile/scm-param.c (pascm_param_value): Constify.
840         * h8300-tdep.c (h8300_register_name, h8300s_register_name)
841         (h8300sx_register_name): Constify.
842         * hppa-tdep.c (hppa32_register_name, hppa64_register_name):
843         Constify.
844         * ia64-tdep.c (ia64_register_names): Constify.
845         * infcmd.c (construct_inferior_arguments): Constify.
846         (path_command, attach_post_wait): Constify.
847         * language.c (show_range_command, show_case_command)
848         (unk_lang_error): Constify.
849         * language.h (language_defn::la_error)
850         (language_defn::la_name_of_this): Constify.
851         * linespec.c (decode_line_2): Constify.
852         * linux-thread-db.c (thread_db_err_str): Constify.
853         * lm32-tdep.c (lm32_register_name): Constify.
854         * m2-exp.y (yyerror): Constify.
855         * m2-lang.h (m2_yyerror): Constify.
856         * m32r-tdep.c (m32r_register_names): Constify and make static.
857         * m68hc11-tdep.c (m68hc11_register_names): Constify.
858         * m88k-tdep.c (m88k_register_name): Constify.
859         * macroexp.c (appendmem): Constify.
860         * mdebugread.c (fdr_name, add_data_symbol, parse_type)
861         (upgrade_type, parse_external, parse_partial_symbols)
862         (mdebug_next_symbol_text, cross_ref, mylookup_symbol, new_psymtab)
863         (new_symbol): Constify.
864         * memattr.c (mem_info_command): Constify.
865         * mep-tdep.c (register_name_from_keyword): Constify.
866         * mi/mi-cmd-env.c (mi_cmd_env_path, _initialize_mi_cmd_env):
867         Constify.
868         * mi/mi-cmd-stack.c (list_args_or_locals): Constify.
869         * mi/mi-cmd-var.c (mi_cmd_var_show_attributes): Constify.
870         * mi/mi-main.c (captured_mi_execute_command): Constify and add
871         cast.
872         (mi_execute_async_cli_command): Constify.
873         * mips-tdep.c (mips_register_name): Constify.
874         * mn10300-tdep.c (register_name, mn10300_generic_register_name)
875         (am33_register_name, am33_2_register_name)
876         * moxie-tdep.c (moxie_register_names): Constify.
877         * nat/linux-osdata.c (osdata_type): Constify fields.
878         * nto-tdep.c (nto_parse_redirection): Constify.
879         * objc-lang.c (lookup_struct_typedef, lookup_objc_class)
880         (lookup_child_selector): Constify.
881         (objc_methcall::name): Constify.
882         * objc-lang.h (lookup_objc_class, lookup_child_selector)
883         (lookup_struct_typedef): Constify.
884         * objfiles.c (pc_in_section): Constify.
885         * objfiles.h (pc_in_section): Constify.
886         * p-exp.y (struct token::oper): Constify.
887         (yyerror): Constify.
888         * p-lang.h (pascal_yyerror): Constify.
889         * parser-defs.h (op_name_standard): Constify.
890         (op_print::string): Constify.
891         (exp_descriptor::op_name): Constify.
892         * printcmd.c (print_address_symbolic): Constify.
893         * psymtab.c (print_partial_symbols): Constify.
894         * python/py-breakpoint.c (stop_func): Constify.
895         (bppy_get_expression): Constify.
896         * python/py-cmd.c (cmdpy_completer::name): Constify.
897         (cmdpy_function): Constify.
898         * python/py-event.c (evpy_add_attribute)
899         (gdbpy_initialize_event_generic): Constify.
900         * python/py-event.h (evpy_add_attribute)
901         (gdbpy_initialize_event_generic): Constify.
902         * python/py-evts.c (add_new_registry): Constify.
903         * python/py-finishbreakpoint.c (outofscope_func): Constify.
904         * python/py-framefilter.c (get_py_iter_from_func): Constify.
905         * python/py-inferior.c (get_buffer): Add cast.
906         * python/py-param.c (parm_constant::name): Constify.
907         * python/py-unwind.c (fprint_frame_id): Constify.
908         * python/python.c (gdbpy_parameter_value): Constify.
909         * remote-fileio.c (remote_fio_func_map): Make 'name' const.
910         * remote.c (memory_packet_config::name): Constify.
911         (show_packet_config_cmd, remote_write_bytes)
912         (remote_buffer_add_string):
913         * reverse.c (exec_reverse_once): Constify.
914         * rs6000-tdep.c (variant::name, variant::description): Constify.
915         * rust-exp.y (rustyyerror): Constify.
916         * rust-lang.c (rust_op_name): Constify.
917         * rust-lang.h (rustyyerror): Constify.
918         * serial.h (serial_ops::name): Constify.
919         * sh-tdep.c (sh_sh_register_name, sh_sh3_register_name)
920         (sh_sh3e_register_name, sh_sh2e_register_name)
921         (sh_sh2a_register_name, sh_sh2a_nofpu_register_name)
922         (sh_sh_dsp_register_name, sh_sh3_dsp_register_name)
923         (sh_sh4_register_name, sh_sh4_nofpu_register_name)
924         (sh_sh4al_dsp_register_name): Constify.
925         * sh64-tdep.c (sh64_register_name): Constify.
926         * solib-darwin.c (lookup_symbol_from_bfd): Constify.
927         * spu-tdep.c (spu_register_name, info_spu_dma_cmdlist): Constify.
928         * stabsread.c (patch_block_stabs, read_type_number)
929         (ref_map::stabs, ref_add, process_reference)
930         (symbol_reference_defined, define_symbol, define_symbol)
931         (error_type, read_type, read_member_functions, read_cpp_abbrev)
932         (read_one_struct_field, read_struct_fields, read_baseclasses)
933         (read_tilde_fields, read_struct_type, read_array_type)
934         (read_enum_type, read_sun_builtin_type, read_sun_floating_type)
935         (read_huge_number, read_range_type, read_args, common_block_start)
936         (find_name_end): Constify.
937         * stabsread.h (common_block_start, define_symbol)
938         (process_one_symbol, symbol_reference_defined, ref_add):
939         * symfile.c (get_section_index, add_symbol_file_command):
940         * symfile.h (get_section_index): Constify.
941         * target-descriptions.c (tdesc_type::name): Constify.
942         (tdesc_free_type): Add cast.
943         * target.c (find_default_run_target):
944         (add_deprecated_target_alias, find_default_run_target)
945         (target_announce_detach): Constify.
946         (do_option): Constify.
947         * target.h (add_deprecated_target_alias): Constify.
948         * thread.c (print_thread_info_1): Constify.
949         * top.c (deprecated_readline_begin_hook, command_line_input):
950         Constify.
951         (init_main): Add casts.
952         * top.h (handle_line_of_input): Constify.
953         * tracefile-tfile.c (tfile_write_uploaded_tsv): Constify.
954         * tracepoint.c (tvariables_info_1, trace_status_mi): Constify.
955         (tfind_command): Rename to ...
956         (tfind_command_1): ... this and constify.
957         (tfind_command): New function.
958         (tfind_end_command, tfind_start_command): Adjust.
959         (encode_source_string): Constify.
960         * tracepoint.h (encode_source_string): Constify.
961         * tui/tui-data.c (tui_partial_win_by_name): Constify.
962         * tui/tui-data.h (tui_partial_win_by_name): Constify.
963         * tui/tui-source.c (tui_set_source_content_nil): Constify.
964         * tui/tui-source.h (tui_set_source_content_nil): Constify.
965         * tui/tui-win.c (parse_scrolling_args): Constify.
966         * tui/tui-windata.c (tui_erase_data_content): Constify.
967         * tui/tui-windata.h (tui_erase_data_content): Constify.
968         * tui/tui-winsource.c (tui_erase_source_content): Constify.
969         * tui/tui.c (tui_enable): Add cast.
970         * utils.c (defaulted_query): Constify.
971         (init_page_info): Add cast.
972         (puts_debug, subset_compare): Constify.
973         * utils.h (subset_compare): Constify.
974         * varobj.c (varobj_format_string): Constify.
975         * varobj.h (varobj_format_string): Constify.
976         * vax-tdep.c (vax_register_name): Constify.
977         * windows-nat.c (windows_detach): Constify.
978         * xcoffread.c (process_linenos, xcoff_next_symbol_text): Constify.
979         * xml-support.c (gdb_xml_end_element): Constify.
980         * xml-tdesc.c (tdesc_start_reg): Constify.
981         * xstormy16-tdep.c (xstormy16_register_name): Constify.
982         * xtensa-tdep.c (xtensa_find_register_by_name): Constify.
983         * xtensa-tdep.h (xtensa_register_t::name): Constify.
984
985 2017-04-05  Pedro Alves  <palves@redhat.com>
986
987         * proc-api.c (struct trans): Constify.
988         (procfs_note): Constify.
989         * proc-events.c (struct trans, syscall_table):
990         * proc-flags.c (struct trans): Constify.
991         * proc-utils.h (procfs_note): Constify.
992         * proc-why.c (struct trans): Constify.
993         * procfs.c (dead_procinfo, find_syscall, proc_warn, proc_error)
994         (procfs_detach): Constify.
995         * sol-thread.c (struct string_map): Constify.
996         (td_err_string, td_state_string): Constify.
997
998 2017-04-05  Pedro Alves  <palves@redhat.com>
999
1000         * proc-api.c (procfs_filename): Don't initialize
1001         procfs_filename.
1002         (prepare_to_trace): Assume procfs_filename is non-NULL.
1003         (_initialize_proc_api): Give procfs_filename a default value here.
1004
1005 2017-04-05  Pedro Alves  <palves@redhat.com>
1006
1007         * break-catch-throw.c (handle_gnu_v3_exceptions): Constify
1008         'cond_string' parameter.
1009         (extract_exception_regexp): Constify 'string' parameter.
1010         (catch_exception_command_1): Constify.
1011         * breakpoint.c (init_catchpoint)
1012         (create_fork_vfork_event_catchpoint): Constify 'cond_string'
1013         parameter.
1014         (ep_parse_optional_if_clause, catch_fork_command_1)
1015         (catch_exec_command_1): Constify.
1016         * breakpoint.h (init_catchpoint): Constify 'cond_string'
1017         parameter.
1018         (ep_parse_optional_if_clause): Constify.
1019         * cli/cli-utils.c (remove_trailing_whitespace)
1020         (check_for_argument): Constify.
1021         * cli/cli-utils.h (remove_trailing_whitespace): Constify and add
1022         non-const overload.
1023         (check_for_argument): Likewise.
1024
1025 2017-04-05  Pedro Alves  <palves@redhat.com>
1026
1027         * event-top.c (command_line_handler): Add cast to execute_command
1028         call.
1029         * record-btrace.c (cmd_record_btrace_bts_start)
1030         (cmd_record_btrace_pt_start, cmd_record_btrace_start)
1031         (cmd_record_btrace_start): Add cast to execute_command call.
1032         * record-full.c (record_full_goto_insn):
1033         * record.c (record_start, record_stop): Add cast to
1034         execute_command_to_string calls.
1035         (cmd_record_start): Add cast to execute_command calls.
1036
1037 2017-04-05  Pedro Alves  <palves@redhat.com>
1038
1039         * python/python-internal.h (gdb_PyArg_ParseTupleAndKeywords): New
1040         static inline function.
1041         * python/py-arch.c (archpy_disassemble): Constify 'keywords'
1042         array and use gdb_PyArg_ParseTupleAndKeywords.
1043         * python/py-cmd.c (cmdpy_init): Likewise.
1044         * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
1045         * python/py-inferior.c (infpy_read_memory, infpy_write_memory)
1046         (infpy_search_memory): Likewise.
1047         * python/py-objfile.c (objfpy_add_separate_debug_file)
1048         (gdbpy_lookup_objfile): Likewise.
1049         * python/py-symbol.c (gdbpy_lookup_symbol)
1050         (gdbpy_lookup_global_symbol): Likewise.
1051         * python/py-type.c (gdbpy_lookup_type): Likewise.
1052         * python/py-value.c (valpy_lazy_string, valpy_string): Likewise.
1053         * python/python.c (execute_gdb_command, gdbpy_write, gdbpy_flush):
1054         Likewise.
1055
1056 2017-04-05  Pedro Alves  <palves@redhat.com>
1057
1058         * python/python-internal.h (gdb_PyGetSetDef): New type.
1059         * python/py-block.c (block_object_getset)
1060         (breakpoint_object_getset): Now a gdb_PyGetSetDef array.
1061         * python/py-event.c (event_object_getset)
1062         (finish_breakpoint_object_getset): Likewise.
1063         * python/py-inferior.c (inferior_object_getset): Likewise.
1064         * python/py-infthread.c (thread_object_getset): Likewise.
1065         * python/py-lazy-string.c (lazy_string_object_getset): Likewise.
1066         * python/py-linetable.c (linetable_entry_object_getset): Likewise.
1067         * python/py-objfile.c (objfile_getset): Likewise.
1068         * python/py-progspace.c (pspace_getset): Likewise.
1069         * python/py-record-btrace.c (btpy_insn_getset, btpy_call_getset):
1070         Likewise.
1071         * python/py-record.c (recpy_record_getset): Likewise.
1072         * python/py-symbol.c (symbol_object_getset): Likewise.
1073         * python/py-symtab.c (symtab_object_getset, sal_object_getset):
1074         Likewise.
1075         * python/py-type.c (type_object_getset, field_object_getset):
1076         Likewise.
1077         * python/py-value.c (value_object_getset): Likewise.
1078
1079 2017-04-05  Pedro Alves  <palves@redhat.com>
1080
1081         * python/python-internal.h (gdb_PyObject_CallMethod)
1082         (gdb_PyErr_NewException, gdb_PySys_GetObject, gdb_PySys_SetPath):
1083         New functions.
1084         (GDB_PYSYS_SETPATH_CHAR, PyObject_CallMethod, PyErr_NewException)
1085         (PySys_GetObject, PySys_SetPath): New macros.
1086
1087 2017-04-05  Pedro Alves  <palves@redhat.com>
1088
1089         * mi/mi-cmd-info.c (mi_cmd_info_os): Call info_osdata instead of
1090         info_osdata_command.
1091         * osdata.c (info_osdata_command): Rename to ...
1092         (info_osdata): ... this.  Constify 'type' parameter, and remove
1093         the 'from_tty' parameter.  Accept NULL TYPE.
1094         (info_osdata_command): New function.
1095         * osdata.h (info_osdata_command): Remove declaration.
1096         (info_osdata): New declaration.
1097
1098 2017-04-05  Pedro Alves  <palves@redhat.com>
1099
1100         * mi/mi-cmd-break.c (mi_cmd_break_insert_1, mi_cmd_break_insert)
1101         (mi_cmd_dprintf_insert, mi_cmd_break_passcount)
1102         (mi_cmd_break_watch, mi_cmd_break_commands): Constify 'command'
1103         parameter.
1104         * mi/mi-cmd-catch.c (mi_cmd_catch_assert, mi_cmd_catch_exception)
1105         (mi_cmd_catch_load, mi_cmd_catch_unload): Constify cmd' parameter.
1106         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Constify 'command'
1107         parameter.
1108         * mi/mi-cmd-env.c (mi_cmd_env_pwd, mi_cmd_env_cd, mi_cmd_env_path)
1109         (mi_cmd_env_dir, mi_cmd_inferior_tty_set, _cmd_inferior_tty_show)
1110         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
1111         (mi_cmd_file_list_exec_source_files)
1112         (mi_cmd_file_list_shared_libraries): Constify 'command' parameter.
1113         * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
1114         (mi_cmd_info_gdb_mi_command, mi_cmd_info_os): Constify 'command'
1115         parameter.
1116         * mi/mi-cmd-stack.c (mi_cmd_enable_frame_filters)
1117         (mi_cmd_stack_list_frames, mi_cmd_stack_info_depth)
1118         (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
1119         (mi_cmd_stack_list_variables, mi_cmd_stack_select_frame)
1120         (mi_cmd_stack_info_frame): Constify 'command' parameter.
1121         * mi/mi-cmd-target.c (mi_cmd_target_file_get)
1122         (mi_cmd_target_file_put, mi_cmd_target_file_delete): Constify
1123         'command' parameter.
1124         * mi/mi-cmd-var.c (mi_cmd_var_create, mi_cmd_var_delete)
1125         (mi_cmd_var_set_format, mi_cmd_var_set_visualizer)
1126         (mi_cmd_var_set_frozen, mi_cmd_var_show_format)
1127         (mi_cmd_var_info_num_children, mi_cmd_var_list_children)
1128         (mi_cmd_var_info_type, mi_cmd_var_info_path_expression)
1129         (mi_cmd_var_info_expression, mi_cmd_var_show_attributes)
1130         (mi_cmd_var_evaluate_expression, mi_cmd_var_assign)
1131         (mi_cmd_var_update, mi_cmd_enable_pretty_printing)
1132         (mi_cmd_var_set_update_range): Constify 'command' parameter.
1133         * mi/mi-cmds.h (mi_cmd_argv_ftype): Constify 'command' parameter.
1134         * mi/mi-interp.c (mi_cmd_interpreter_exec): Constify 'command'
1135         parameter.
1136         * mi/mi-main.c (mi_cmd_gdb_exit, mi_cmd_exec_next)
1137         (mi_cmd_exec_next_instruction, mi_cmd_exec_step)
1138         (mi_cmd_exec_step_instruction, mi_cmd_exec_finish)
1139         (mi_cmd_exec_return ,mi_cmd_exec_jump, mi_cmd_exec_continue)
1140         (mi_cmd_exec_interrupt, mi_cmd_exec_run, mi_cmd_target_detach)
1141         (mi_cmd_target_flash_erase, mi_cmd_thread_select)
1142         (mi_cmd_thread_list_ids, mi_cmd_thread_info)
1143         (mi_cmd_list_thread_groups, mi_cmd_data_list_register_names)
1144         (mi_cmd_data_list_changed_registers)
1145         (mi_cmd_data_write_register_values)
1146         (mi_cmd_data_evaluate_expression, mi_cmd_data_read_memory)
1147         (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory)
1148         (mi_cmd_data_write_memory_bytes, mi_cmd_enable_timings)
1149         (mi_cmd_list_features, mi_cmd_list_target_features)
1150         (mi_cmd_add_inferior, mi_cmd_remove_inferior)
1151         (mi_cmd_trace_define_variable, mi_cmd_trace_list_variables)
1152         (mi_cmd_trace_find, mi_cmd_trace_save, mi_cmd_trace_start)
1153         (mi_cmd_trace_status, mi_cmd_trace_stop, mi_cmd_ada_task_info)
1154         (mi_cmd_trace_frame_collected): Constify 'command'
1155         parameter.
1156         * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Constify
1157         'command' parameter.
1158
1159 2017-04-05  Pedro Alves  <palves@redhat.com>
1160
1161         * ada-lang.c (ada_completer_word_break_characters): Now a const
1162         array.
1163         (ada_get_gdb_completer_word_break_characters): Constify.
1164         * completer.c (gdb_completer_command_word_break_characters)
1165         (gdb_completer_file_name_break_characters)
1166         (gdb_completer_quote_characters): Now const arrays.
1167         (get_gdb_completer_quote_characters): Constify.
1168         (set_rl_completer_word_break_characters): New function.
1169         (set_gdb_completion_word_break_characters)
1170         (complete_line_internal): Use it.
1171         * completer.h (get_gdb_completer_quote_characters): Constify.
1172         (set_rl_completer_word_break_characters): Declare.
1173         * f-lang.c (f_word_break_characters): Constify.
1174         * language.c (default_word_break_characters): Constify.
1175         * language.h (language_defn::la_word_break_characters): Constify.
1176         (default_word_break_characters): Constify.
1177         * top.c (init_main): Use set_rl_completer_word_break_characters.
1178
1179 2017-04-05  Pedro Alves  <palves@redhat.com>
1180
1181         * aix-thread.c (aix_thread_pid_to_str)
1182         (aix_thread_extra_thread_info): Constify.
1183         * bsd-kvm.c (bsd_kvm_pid_to_str): Constify.
1184         * bsd-uthread.c (bsd_uthread_extra_thread_info)
1185         (bsd_uthread_pid_to_str): Constify.
1186         * corelow.c (core_pid_to_str): Constify.
1187         * darwin-nat.c (darwin_pid_to_str): Constify.
1188         * fbsd-nat.c (fbsd_pid_to_str): Constify.
1189         * fbsd-tdep.c (fbsd_core_pid_to_str, gdbarch_core_pid_to_str):
1190         Constify.
1191         * gnu-nat.c (gnu_pid_to_str): Constify.
1192         * go32-nat.c (go32_pid_to_str): Constify.
1193         * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Constify.
1194         * inf-ptrace.c (inf_ptrace_pid_to_str): Constify.
1195         * inferior.c (inferior_pid_to_str): Constify.
1196         * linux-nat.c (linux_nat_pid_to_str): Constify.
1197         * linux-tdep.c (linux_core_pid_to_str): Constify.
1198         * linux-thread-db.c (thread_db_pid_to_str)
1199         (thread_db_extra_thread_info): Constify.
1200         * nto-tdep.c (nto_extra_thread_info): Constify.
1201         * nto-tdep.h (nto_extra_thread_info): Constify.
1202         * obsd-nat.c (obsd_pid_to_str): Constify.
1203         * procfs.c (procfs_pid_to_str): Constify.
1204         * ravenscar-thread.c (ravenscar_extra_thread_info)
1205         (ravenscar_pid_to_str): Constify.
1206         * remote-sim.c (gdbsim_pid_to_str): Constify.
1207         * remote.c (remote_threads_extra_info, remote_pid_to_str):
1208         Constify.
1209         * sol-thread.c (solaris_pid_to_str): Constify.
1210         * sol2-tdep.c (sol2_core_pid_to_str): Constify.
1211         * sol2-tdep.h (sol2_core_pid_to_str): Constify.
1212         * target.c (default_pid_to_str, target_pid_to_str)
1213         (normal_pid_to_str, default_pid_to_str): Constify.
1214         * target.h (target_ops::to_pid_to_str)
1215         (target_ops::to_extra_thread_info): Constify.
1216         (target_pid_to_str, normal_pid_to_str): Constify.
1217         * windows-nat.c (windows_pid_to_str): Constify.
1218         * gdbarch.sh (core_pid_to_str): Constify.
1219         * target-delegates.c: Regenerate.
1220         * gdbarch.h, gdbarch.c: Regenerate.
1221
1222 2017-04-05  Pedro Alves  <palves@redhat.com>
1223
1224         * main.c (captured_main_1): Use gdb::unique_xmalloc_ptr to manage
1225         the memory of the temporary warning_pre_print override.
1226         * utils.c (warning_pre_print): Constify.
1227         * utils.h (warning_pre_print): Constify.
1228
1229 2017-04-05  Pedro Alves  <palves@redhat.com>
1230
1231         * cli/cli-cmds.c (shell_escape): Constify 'arg' parameter.
1232         (shell_command): New function.
1233         (make_command): Use std::string.
1234         (init_cli_cmds): Register shell_command instead of shell_escape.
1235
1236 2017-04-05  Pedro Alves  <palves@redhat.com>
1237
1238         * breakpoint.c (dprintf_function, dprintf_channel): Don't initialize.
1239         * tracepoint.c (default_collect): Don't initialize.
1240
1241 2017-04-05  Pedro Alves  <palves@redhat.com>
1242
1243         * macroexp.c (macro_buffer::shared): Now a bool.
1244         (init_buffer): Update.
1245         (init_shared_buffer): Constify 'addr' parameter.
1246         (substitute_args, expand, macro_expand, macro_expand_next): Remove
1247         casts.
1248
1249 2017-04-05  Pedro Alves  <palves@redhat.com>
1250
1251         * arm-tdep.c (show_disassembly_style_sfunc): Constify local.
1252         * disasm.c (set_disassembler_options): Constify local.
1253         * i386-tdep.c (i386_print_insn): Remove cast and FIXME comment.
1254
1255 2017-04-05  Sergio Durigan Junior  <sergiodj@redhat.com>
1256
1257         PR gdb/21352
1258         * tracefile.c (tsave_command): Fix argument parsing for '-r'
1259         option.
1260
1261 2017-04-05  Yao Qi  <yao.qi@linaro.org>
1262
1263         * frame.c (frame_unwind_register_unsigned): Call
1264         frame_unwind_register_value.
1265
1266 2017-04-05  Yao Qi  <yao.qi@linaro.org>
1267
1268         * gdb.threads/thread-specific-bp.exp (check_thread_specific_breakpoint):
1269         Use gdb_test_multiple, and don't match anchor.
1270
1271 2017-04-05  Pedro Alves  <palves@redhat.com>
1272
1273         * MAINTAINERS (Global Maintainers): Add Simon Marchi.
1274         (Write After Approval): Remove Simon Marchi.
1275
1276 2017-04-05  Pedro Alves  <palves@redhat.com>
1277
1278         * common/gdb_optional.h (optional::optional): Make constexpr and
1279         initialize m_dummy.
1280
1281 2017-04-04  John Baldwin  <jhb@FreeBSD.org>
1282
1283         * amd64-fbsd-tdep.c: Remove "bsd-uthread.h" include.
1284         (amd64fbsd_jmp_buf_reg_offset): Remove.
1285         (amd64fbsd_supply_uthread): Remove function.
1286         (amd64fbsd_collect_uthread): Remove function.
1287         (amd64fbsd_init_abi): Don't set bsd-uthread callbacks.
1288         * configure.tgt (i[34567]86-*-freebsd*): Remove bsd-uthread.o.
1289         (x86_64-*-freebsd*): Remove bsd-uthread.o.
1290         (fbsd-nat.c): Update comment.
1291         * i386-fbsd-tdep.c: Remove "bsd-uthread.h" include.
1292         (i386fbsd_jmp_buf_reg_offset): Remove.
1293         (i386fbsd_supply_uthread): Remove function.
1294         (i386fbsd_collect_uthread): Remove function.
1295         (i386fbsd_init_abi): Don't set bsd-uthread callbacks.
1296
1297 2017-04-04  John Baldwin  <jhb@FreeBSD.org>
1298
1299         * Makefile.in (ALL_64_TARGET_OBS): Remove alpha-fbsd-tdep.o.
1300         (ALLDEPFILES): Remove alpha-fbsd-tdep.c
1301         * NEWS: Mention that support for FreeBSD/alpha was removed.
1302         * alpha-fbsd-tdep.c: Delete file.
1303         * config/alpha/fbsd.mh: Delete file.
1304         * configure.host: Delete alpha*-*-freebsd* and
1305         alpha*-*-kfreebsd*-gnu.
1306         * configure.tgt: Delete alpha*-*-freebsd* and
1307         alpha*-*-kfreebsd*-gnu.
1308
1309 2017-04-04  John Baldwin  <jhb@FreeBSD.org>
1310
1311         * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers,
1312         amd64bsd_store_inferior_registers): Use ptid from regcache.
1313
1314 2017-04-04  Pedro Alves  <palves@redhat.com>
1315
1316         * dwarf2read.c (lnp_state_machine): Now a class.  Initialize all
1317         data fields, make them private and add "m_" prefixes.
1318         (lnp_state_machine::lnp_state_machine): New ctor.
1319         (record_line, check_line_address, handle_set_discriminator)
1320         (handle_set_address, handle_advance_pc, handle_special_opcode)
1321         (handle_advance_line, handle_set_file, handle_negate_stmt)
1322         (handle_const_add_pc, handle_fixed_advance_pc, handle_copy)
1323         (end_sequence, advance_line): New methods.
1324         (m_gdbarch, m_record_lines_p): New fields.
1325         (lnp_reader_state): Delete.
1326         (dwarf_record_line): Rename to ...
1327         (lnp_state_machine::record_line): ... adjust.
1328         (init_lnp_state_machine): Delete.
1329         (lnp_state_machine::lnp_state_machine): New.
1330         (check_line_address): Rename to ...
1331         (lnp_state_machine::check_line_address): This.
1332         (dwarf_decode_lines_1): Remove reference to "reader_state".
1333         Adjust lnp_state_machine having a non-default ctor.  Use bool.
1334         State machine internal state manipulation moved to
1335         lnp_state_machine methods.
1336
1337 2017-04-04  Pedro Alves  <palves@redhat.com>
1338
1339         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
1340         unittests/offset-type-selftests.c.
1341         (SUBDIR_UNITTESTS_OBS): Add offset-type-selftests.o.
1342         * common/offset-type.h: New file.
1343         * common/preprocessor.h: New file.
1344         * common/traits.h: New file.
1345         * common/valid-expr.h: New file.
1346         * dwarf2expr.c: Include "common/underlying.h".  Adjust to use
1347         sect_offset and cu_offset strong typedefs throughout.
1348         * dwarf2expr.h: Adjust to use sect_offset and cu_offset strong
1349         typedefs throughout.
1350         * dwarf2loc.c: Include "common/underlying.h".  Adjust to use
1351         sect_offset and cu_offset strong typedefs throughout.
1352         * dwarf2read.c: Adjust to use sect_offset and cu_offset strong
1353         typedefs throughout.
1354         * gdbtypes.h: Include "common/offset-type.h".
1355         (cu_offset): Now an offset type (strong typedef) instead of a
1356         struct.
1357         (sect_offset): Likewise.
1358         (union call_site_parameter_u): Rename "param_offset" field to
1359         "param_cu_off".
1360         * unittests/offset-type-selftests.c: New file.
1361
1362 2017-04-04  Pedro Alves  <palves@redhat.com>
1363
1364         * common/underlying.h: New file.
1365         * dwarf2read.c: Include "common/gdb_optional.h" and
1366         "common/underlying.h".
1367         (dir_index, file_name_index): New types.
1368         (file_entry): Use them.
1369         (file_entry::include): Use to_underlying.
1370         (line_header::add_file_name): Use dir_index.
1371         (read_formatted_entries): Use gdb::optional.  Read form before
1372         writting to file_entry.
1373         (dwarf_decode_line_header): Use dir_index.
1374         (lnp_state_machine::current_file): Use to_underlying.
1375         (lnp_state_machine::file): Change type to file_name_index.
1376         (dwarf_record_line): Use to_underlying.
1377         (init_lnp_state_machine): Use file_name_index.
1378         (dwarf_decode_lines_1): Use dir_index and file_name_index.
1379
1380 2017-04-04  Pedro Alves  <palves@redhat.com>
1381
1382         * common/gdb_optional.h (gdb::optiona): Add operator->, operator*,
1383         operator bool, has_value and get methods.
1384
1385 2017-04-04  Pedro Alves  <palves@redhat.com>
1386
1387         * dwarf2read.c (struct file_entry): Add ctors, and initialize all
1388         fields.
1389         (line_header): Initialize all data fields.  Change type of
1390         standard_opcode_lengths to std::unique_ptr<unsigned char[]>.
1391         Change type of include_dirs to std::vector<const char *>.  Remove
1392         num_include_dirs, include_dirs_size.  Change type of file_names to
1393         std::vector<file_entry>.  Remove num_file_names, file_names_size.
1394         (line_header::line_header): New.
1395         (line_header::add_include_dir, line_header::add_file_name): New
1396         methods.
1397         (line_header::include_dir_at): Remove NULL check.
1398         (line_header::file_name_at): Add const overload.
1399         (line_header_up): New unique_ptr typedef.
1400         (dw2_get_file_names_reader): Use line_header_up.  Adjust to use
1401         std::vector.  Remove free_line_header call.
1402         (dwarf2_build_include_psymtabs): Use line_header_up.  Remove
1403         free_line_header call.
1404         (free_cu_line_header): Delete.
1405         (handle_DW_AT_stmt_list, handle_DW_AT_stmt_list)
1406         (setup_type_unit_groups): Use line_header_up instead of cleanups.
1407         Adjust to use std::vector.
1408         (free_line_header): Delete.
1409         (free_line_header_voidp): Use delete.
1410         (add_include_dir): Replace with ...
1411         (line_header::add_include_dir): ... this method.  Use std::vector.
1412         (add_file_name): Replace with ...
1413         (line_header::add_file_name): ... this method.  Use std::vector.
1414         (add_include_dir_stub): Delete.
1415         (read_formatted_entries): Remove memset.
1416         (dwarf_decode_line_header): Return a line_header_up instead of a
1417         raw pointer.  Remove cleanup handling.  Pass lambdas to
1418         read_formatted_entries.  Adjust to use line_header methods.
1419         (dwarf_decode_lines_1): Adjust to use line_header methods.
1420         (dwarf_decode_lines, file_file_name, file_full_name): Adjust to
1421         use std::vector.
1422
1423 2017-04-04  Simon Marchi  <simon.marchi@polymtl.ca>
1424
1425         * remote.c (set_general_thread, set_continue_thread): Use ptid_t
1426         instead of struct ptid.
1427
1428 2017-05-04  Alan Hayward  <alan.hayward@arm.com>
1429
1430         * frame.c (get_frame_register_bytes): Unwind using value.
1431         (put_frame_register_bytes): Likewise.
1432
1433 2017-03-30  Iain Buclaw  <ibuclaw@gdcproject.org>
1434
1435         * d-exp.y (type_aggregate_p): Treat TYPE_CODE_MODULE as being
1436         aggregate-like.
1437
1438 2017-03-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
1439
1440         * auto-load.c (auto_load_section_scripts): Check SEC_HAS_CONTENTS.
1441
1442 2017-03-29  Yao Qi  <yao.qi@linaro.org>
1443
1444         * gdbthread.h (struct thread_info): Declare constructor and
1445         destructor.  Add some in-class member initializers.
1446         * thread.c (free_thread): Remove.
1447         (init_thread_list): Call delete instead of free_thread.
1448         (new_thread): Call thread_info constructor.
1449         (thread_info::thread_info): New function.
1450         (thread_info::~thread_info): New function.
1451         (delete_thread_1): Call delete instead of free_thread.
1452         (make_cleanup_restore_current_thread): Move tp and frame to
1453         inner block.
1454
1455 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
1456
1457         * arc-tdep.c (arc_frame_cache): Add support for prologue analysis.
1458         (arc_skip_prologue): Likewise.
1459         (arc_make_frame_cache): Likewise.
1460         (arc_pv_get_operand): New function.
1461         (arc_is_in_prologue): Likewise.
1462         (arc_analyze_prologue): Likewise.
1463         (arc_print_frame_cache): Likewise.
1464         (MAX_PROLOGUE_LENGTH): New constant.
1465
1466 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
1467
1468         * configure.tgt: Add arc-insn.o.
1469         * arc-tdep.c (arc_delayed_print_insn): Make non-static.
1470         (dump_arc_instruction_command): New function.
1471         (arc_fprintf_disasm): Likewise.
1472         (arc_disassemble_info): Likewise.
1473         (arc_insn_get_operand_value): Likewise.
1474         (arc_insn_get_operand_value_signed): Likewise.
1475         (arc_insn_get_memory_base_reg): Likewise.
1476         (arc_insn_get_memory_offset): Likewise.
1477         (arc_insn_get_branch_target): Likewise.
1478         (arc_insn_dump): Likewise.
1479         (arc_insn_get_linear_next_pc): Likewise.
1480         * arc-tdep.h (arc_delayed_print_insn): Add function declaration.
1481         (arc_disassemble_info): Likewise.
1482         (arc_insn_get_branch_target): Likewise.
1483         (arc_insn_get_linear_next_pc): Likewise.
1484         * NEWS: Mention new "maint print arc arc-instruction".
1485
1486 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
1487
1488         * arc-tdep (maintenance_print_arc_list): New variable.
1489         (maintenance_print_arc_command): New function.
1490
1491 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
1492
1493         * arc-tdep.c (core_v2_register_names, core_arcompact_register_names)
1494         Add "limm" and "reserved".
1495         (arc_cannot_fetch_register, arc_cannot_store_register): Add
1496         ARC_RESERVED_REGNUM and ARC_LIMM_REGNUM.
1497         * arc-tdep.h (arc_regnum): Likewise.
1498
1499 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
1500
1501         * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
1502         for THREADPTR register.
1503         (supply_gregset_reg): Call regcache_raw_supply for THREADPTR
1504         register.
1505         * xtensa-tdep.c (XTENSA_DBREGN_UREG): New definition.
1506         (xtensa_derive_tdep): Initialize tdep->threadptr_regnum.
1507         * xtensa-tdep.h (gdbarch_tdep::threadptr_regnum): New field.
1508
1509 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
1510
1511         * xtensa-tdep.c (xtensa_pseudo_register_read): Treat all
1512         registers above gdbarch_num_regs (gdbarch) as privileged in
1513         call0 ABI.
1514
1515 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
1516
1517         * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
1518         for a single specified register or for all registers in
1519         a0_base..a0_base + C0_NREGS range.
1520         (supply_gregset_reg): Call regcache_raw_supply for a single
1521         specified register or for all registers in a0_base..a0_base +
1522         C0_NREGS range.
1523
1524 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
1525
1526         * arch/xtensa.h (C0_NREGS): Add definition.
1527         * xtensa-tdep.c (C0_NREGS): Remove definition.
1528
1529 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
1530
1531         * xtensa-tdep.c (xtensa_scan_prologue, call0_analyze_prologue):
1532         Drop xtensa_default_isa initialization.
1533         (xtensa_gdbarch_init): Initialize xtensa_default_isa.
1534
1535 2017-03-27  Pedro Alves  <palves@redhat.com>
1536
1537         * dwarf2read.c (file_entry) <dir_index>: Add comment.
1538         (file_entry::include_dir): New method.
1539         (line_header::include_dir_at, line_header::file_name_at): New
1540         methods.
1541         (setup_type_unit_groups, setup_type_unit_groups)
1542         (psymtab_include_file_name): Simplify using the new methods.
1543         (lnp_state_machine) <the_line_header>: New field.
1544         <file>: Add comment.
1545         (lnp_state_machine::current_file): New method.
1546         (dwarf_record_line): Simplify using the new methods.
1547         (init_lnp_state_machine): Initialize the "the_line_header" field.
1548         (dwarf_decode_lines_1, dwarf_decode_lines, file_file_name):
1549         Simplify using the new methods.
1550
1551 2017-03-27  Pedro Alves  <palves@redhat.com>
1552
1553         * cp-name-parser.y (make_empty): Delete.
1554         (demangler_special, nested_name, ptr_operator, array_indicator)
1555         (direct_declarator, declarator_1): Use fill_comp instead of
1556         make_empty.
1557
1558 2017-03-27  Pedro Alves  <palves@redhat.com>
1559
1560         * xml-support.h (gdb_xml_debug): Pass a "first-to-check" argument
1561         to ATTRIBUTE_PRINTF.
1562         * solib-target.c (library_list_start_list): Print "string" not
1563         "version".
1564         * xml-tdesc.c (tdesc_start_field): Pass "field_name" to
1565         gdb_xml_error call.
1566
1567 2017-03-27  Pedro Alves  <palves@redhat.com>
1568
1569         * dwarf2read.c (struct file_and_directory): New.
1570         (dwarf2_get_dwz_file): Adjust to use std::string.
1571         (dw2_get_file_names_reader): Adjust to use file_and_directory.
1572         (find_file_and_directory): Adjust to return a file_and_directory
1573         object.
1574         (read_file_scope): Adjust to use file_and_directory.  Remove
1575         make_cleanup/do_cleanups calls.
1576         (open_and_init_dwp_file): Adjust to use std::string.  Remove
1577         make_cleanup/do_cleanups calls.
1578         * python/python.c (do_start_initialization): Adjust to ldirname
1579         returning a std::string.
1580         * utils.c (ldirname): Now returns a std::string.
1581         * utils.h (ldirname): Change return type to std::string.
1582         * xml-syscall.c (xml_init_syscalls_info): Adjust to ldirname
1583         returning a std::string.
1584         * xml-tdesc.c (file_read_description_xml): Likewise.
1585
1586 2017-03-24  Alan Hayward  <alan.hayward@arm.com>
1587
1588         * regcache.c (regcache_debug_print_register): New function.
1589         * regcache.h (regcache_debug_print_register): New declaration.
1590         * target.c (debug_print_register): Remove.
1591         (target_fetch_registers): Call regcache_debug_print_register.
1592         (target_store_registers): Likewise.
1593
1594 2017-03-24  Pádraig Brady  <pbrady@fb.com>
1595
1596         * dwarf2read.c (setup_type_unit_groups): Ensure dir_index doesn't
1597         reference beyond the 'lh->include_dirs' array before accessing to
1598         it.
1599         (psymtab_include_file_name): Likewise.
1600         (dwarf_decode_lines_1): Likewise.
1601         (dwarf_decode_lines): Likewise.
1602         (file_file_name): Likewise.
1603
1604 2017-03-23  Simon Marchi  <simon.marchi@ericsson.com>
1605
1606         * fbsd-tdep.c (fbsd_corefile_thread): Don't set/restore
1607         inferior_ptid.
1608         * proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
1609         ps_lsetfpregs): Likewise.
1610         * regcache.c (regcache_raw_update, regcache_raw_write): Likewise.
1611         * sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
1612         ps_lsetfpregs): Likewise.
1613         * target.c (target_fetch_registers, target_store_registers):
1614         Remove asserts.
1615
1616 2017-03-23  Alan Hayward  <alan.hayward@arm.com>
1617
1618         * sol-thread.c (sol_thread_store_registers): Remove regcache calls.
1619
1620 2017-03-23  Yao Qi  <yao.qi@linaro.org>
1621
1622         * aarch64-tdep.c (aarch64_process_record_test): Declare.
1623         (_initialize_aarch64_tdep): Register it.
1624         (aarch64_record_load_store): Handle PRFM instruction.
1625         (aarch64_process_record_test): New function.
1626
1627 2017-03-23  Yao Qi  <yao.qi@linaro.org>
1628
1629         * aarch64-tdep.c (aarch64_record_load_store): Fix code
1630         indentation.
1631
1632 2017-03-23  Yao Qi  <yao.qi@linaro.org>
1633
1634         * aarch64-tdep.c: Remove AARCH64_RECORD_FAILURE.
1635
1636 2017-03-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
1637
1638         python/python.c (do_start_initialization): Fix memory leak.
1639
1640 2017-03-22  Simon Marchi  <simon.marchi@polymtl.ca>
1641
1642         * inf-ptrace.c (inf_ptrace_xfer_partial): Get pid from ptid
1643         using get_ptrace_pid.
1644         * linux-nat.c (linux_nat_xfer_partial): Don't set/restore
1645         inferior_ptid.
1646         (linux_proc_xfer_partial, linux_proc_xfer_spu): Use lwp of
1647         inferior_ptid instead of pid.
1648
1649 2017-03-22  Yao Qi  <yao.qi@linaro.org>
1650
1651         * aarch64-tdep.c: Wrap locally used classes in anonymous
1652         namespace.
1653         * arm-tdep.c: Likewise.
1654         * linespec.c: Likewise.
1655         * ui-out.c: Likewise.
1656
1657 2017-03-22  Jonah Graham  <jonah@kichwacoders.com>
1658
1659         PR gdb/19637
1660         * python/lib/gdb/printer/bound_registers.py: Import sys.
1661
1662 2017-03-21  Simon Marchi  <simon.marchi@ericsson.com>
1663
1664         * windows-nat.c (do_windows_fetch_inferior_registers): Add
1665         windows_thread_info parameter and use it instead of
1666         current_thread.
1667         (windows_fetch_inferior_registers): Don't set current_thread,
1668         pass the thread to do_windows_fetch_inferior_registers.  Use
1669         ptid from regcache instead of inferior_ptid.
1670         (do_windows_store_inferior_registers): Add windows_thread_info
1671         parameter and use it instead of current_thread.
1672         (windows_store_inferior_registers): Don't set current_thread,
1673         pass the thread to do_windows_store_inferior_registers.  Use
1674         ptid from regcache instead of inferior_ptid.
1675
1676 2017-03-21  Simon Marchi  <simon.marchi@ericsson.com>
1677
1678         * ser-mingw.c (ser_windows_raw): Remove reference to
1679         struct serial::current_timeout.
1680
1681 2017-03-21  Ivo Raisr  <ivo.raisr@oracle.com>
1682
1683         PR tdep/20928
1684         * gdb/sparc-tdep.h (gdbarch_tdep) <sparc64_ccr_type>: New field.
1685         * gdb/sparc64-tdep.c (sparc64_ccr_type): New function.
1686         (sparc64_fsr_type): Fix %fsr decoding.
1687
1688 2017-03-21  Tim Wiederhake  <tim.wiederhake@intel.com>
1689
1690         * python/py-record-btrace.c (btpy_insn_data): Change return type
1691         for Python 2.
1692
1693 2017-03-20  Simon Marchi  <simon.marchi@polymtl.ca>
1694
1695         * spu-linux-nat.c (spu_fetch_inferior_registers,
1696         spu_store_inferior_registers): Use ptid from regcache, set and
1697         restore inferior_ptid.
1698         * spu-multiarch.c (spu_fetch_registers, spu_store_registers):
1699         Likewise.
1700
1701 2017-03-20  Simon Marchi  <simon.marchi@polymtl.ca>
1702
1703         * i386-linux-nat.c (fetch_register, store_register,
1704         i386_linux_fetch_inferior_registers,
1705         i386_linux_store_inferior_registers): Use ptid from regcache.
1706         * ia64-linux-nat.c (ia64_linux_fetch_register,
1707         ia64_linux_store_register): Likewise.
1708         * inf-ptrace.c (inf_ptrace_fetch_register,
1709         inf_ptrace_store_register): Likewise.
1710         * m32r-linux-nat.c (m32r_linux_fetch_inferior_registers,
1711         m32r_linux_store_inferior_registers): Likewise.
1712         * m68k-bsd-nat.c (m68kbsd_fetch_inferior_registers,
1713         m68kbsd_store_inferior_registers): Likewise.
1714         * m68k-linux-nat.c (fetch_register, store_register,
1715         m68k_linux_fetch_inferior_registers,
1716         m68k_linux_store_inferior_registers): Likewise.
1717         * m88k-bsd-nat.c (m88kbsd_fetch_inferior_registers,
1718         m88kbsd_store_inferior_registers): Likewise.
1719         * mips-fbsd-nat.c (mips_fbsd_fetch_inferior_registers,
1720         mips_fbsd_store_inferior_registers): Likewise.
1721         * mips-linux-nat.c (mips64_linux_regsets_fetch_registers,
1722         mips64_linux_regsets_store_registers): Likewise.
1723         * mips-nbsd-nat.c (mipsnbsd_fetch_inferior_registers,
1724         mipsnbsd_store_inferior_registers): Likewise.
1725         * mips-obsd-nat.c (mips64obsd_fetch_inferior_registers,
1726         mips64obsd_store_inferior_registers): Likewise.
1727         * nto-procfs.c (procfs_fetch_registers, procfs_store_registers):
1728         Likewise.
1729         * ppc-fbsd-nat.c (ppcfbsd_fetch_inferior_registers,
1730         ppcfbsd_store_inferior_registers): Likewise.
1731         * ppc-linux-nat.c (ppc_linux_fetch_inferior_registers,
1732         ppc_linux_store_inferior_registers): Likewise.
1733         * ppc-nbsd-nat.c (ppcnbsd_fetch_inferior_registers,
1734         ppcnbsd_store_inferior_registers): Likewise.
1735         * ppc-obsd-nat.c (ppcobsd_fetch_registers,
1736         ppcobsd_store_registers): Likewise.
1737         * procfs.c (procfs_fetch_registers, procfs_store_registers):
1738         Likewise.
1739         * ravenscar-thread.c (ravenscar_fetch_registers,
1740         ravenscar_store_registers, ravenscar_prepare_to_store):
1741         Likewise.
1742         * record-btrace.c (record_btrace_fetch_registers,
1743         record_btrace_store_registers, record_btrace_prepare_to_store):
1744         Likewise.
1745         * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register):
1746         Lookup inferior using ptid from regcache, instead of
1747         current_inferior.
1748         * remote.c (remote_fetch_registers, remote_store_registers): Use
1749         ptid from regcache.
1750         * rs6000-nat.c (fetch_register, store_register): Likewise.
1751         * s390-linux-nat.c (s390_linux_fetch_inferior_registers,
1752         s390_linux_store_inferior_registers): Likewise.
1753         * sh-nbsd-nat.c (shnbsd_fetch_inferior_registers,
1754         shnbsd_store_inferior_registers): Likewise.
1755         * sol-thread.c (sol_thread_fetch_registers,
1756         sol_thread_store_registers): Likewise.
1757         * sparc-nat.c (sparc_fetch_inferior_registers,
1758         sparc_store_inferior_registers): Likewise.
1759         * tilegx-linux-nat.c (fetch_inferior_registers,
1760         store_inferior_registers): Likewise.
1761         * vax-bsd-nat.c (vaxbsd_fetch_inferior_registers,
1762         vaxbsd_store_inferior_registers): Likewise.
1763         * xtensa-linux-nat.c (fetch_gregs, store_gregs, fetch_xtregs,
1764         store_xtregs): Likewise.
1765
1766 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
1767
1768         PR gdb/14441
1769         * NEWS: Mention support for rvalue references in GDB and python.
1770         * doc/gdb.texinfo (C Plus Plus Expressions): Mention that GDB
1771         supports both lvalue and rvalue references.
1772
1773 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
1774
1775         PR gdb/14441
1776         * gdbtypes.c (rank_one_type): Implement overloading
1777         resolution rules regarding rvalue references.
1778
1779 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
1780
1781         PR gdb/14441
1782         * aarch64-tdep.c (aarch64_type_align)
1783         (aarch64_extract_return_value, aarch64_store_return_value): Change
1784         lvalue reference type checks to general reference type checks.
1785         * amd64-tdep.c (amd64_classify): Likewise.
1786         * amd64-windows-tdep.c (amd64_windows_passed_by_integer_register):
1787         Likewise.
1788         * arm-tdep.c (arm_type_align, arm_extract_return_value)
1789         (arm_store_return_value): Likewise.
1790         * ax-gdb.c (gen_fetch, gen_cast): Likewise.
1791         * c-typeprint.c (c_print_type): Likewise.
1792         * c-varobj.c (adjust_value_for_child_access, c_value_of_variable)
1793         (cplus_number_of_children, cplus_describe_child): Likewise.
1794         * compile/compile-c-symbols.c (generate_vla_size): Likewise.
1795         * completer.c (expression_completer): Likewise.
1796         * cp-support.c (make_symbol_overload_list_adl_namespace):
1797         Likewise.
1798         * darwin-nat-info.c (info_mach_region_command): Likewise.
1799         * dwarf2loc.c (entry_data_value_coerce_ref)
1800         (value_of_dwarf_reg_entry): Likewise.
1801         * eval.c (ptrmath_type_p, evaluate_subexp_standard)
1802         (evaluate_subexp_for_address, evaluate_subexp_for_sizeof):
1803         Likewise.
1804         * findvar.c (extract_typed_address, store_typed_address):
1805         Likewise.
1806         * gdbtypes.c (rank_one_type): Likewise.
1807         * hppa-tdep.c (hppa64_integral_or_pointer_p): Likewise.
1808         * infcall.c (value_arg_coerce): Likewise.
1809         * language.c (pointer_type): Likewise.
1810         * m32c-tdep.c (m32c_reg_arg_type, m32c_m16c_address_to_pointer):
1811         Likewise.
1812         * m88k-tdep.c (m88k_integral_or_pointer_p): Likewise.
1813         * mn10300-tdep.c (mn10300_type_align): Likewise.
1814         * msp430-tdep.c (msp430_push_dummy_call): Likewise.
1815         * ppc-sysv-tdep.c (do_ppc_sysv_return_value)
1816         (ppc64_sysv_abi_push_param, ppc64_sysv_abi_return_value):
1817         Likewise.
1818         * printcmd.c (print_formatted, x_command): Likewise.
1819         * python/py-type.c (typy_get_composite, typy_template_argument):
1820         Likewise.
1821         * python/py-value.c (valpy_referenced_value)
1822         (valpy_get_dynamic_type, value_has_field): Likewise.
1823         * s390-linux-tdep.c (s390_function_arg_integer): Likewise.
1824         * sparc-tdep.c (sparc_integral_or_pointer_p): Likewise.
1825         * sparc64-tdep.c (sparc64_integral_or_pointer_p): Likewise.
1826         * spu-tdep.c (spu_scalar_value_p): Likewise.
1827         * symtab.c (lookup_symbol_aux): Likewise.
1828         * typeprint.c (whatis_exp, print_type_scalar): Likewise.
1829         * valarith.c (binop_types_user_defined_p, unop_user_defined_p):
1830         Likewise.
1831         * valops.c (value_cast_pointers, value_cast)
1832         (value_reinterpret_cast, value_dynamic_cast, value_addr, typecmp)
1833         (value_struct_elt, value_struct_elt_bitpos)
1834         (value_find_oload_method_list, find_overload_match)
1835         (value_rtti_indirect_type): Likewise.
1836         * valprint.c (val_print_scalar_type_p, generic_val_print):
1837         Likewise.
1838         * value.c (value_actual_type, value_as_address, unpack_long)
1839         (pack_long, pack_unsigned_long, coerce_ref_if_computed)
1840         (coerce_ref): Likewise.
1841         * varobj.c (varobj_get_value_type): Likewise.
1842
1843 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
1844
1845         PR gdb/14441
1846         * doc/python.texi (Types in Python): Add TYPE_CODE_RVALUE_REF to
1847         table of constants.
1848         * python/lib/gdb/command/explore.py: Support exploring values
1849         of rvalue reference types.
1850         * python/lib/gdb/types.py: Implement get_basic_type() for
1851         rvalue reference types.
1852         * python/py-type.c (pyty_codes) <TYPE_CODE_RVALUE_REF>: New
1853         constant.
1854         * python/py-value.c (valpy_getitem): Add an rvalue reference
1855         check.
1856         (valpy_reference_value): Add new parameter "refcode".
1857         (valpy_lvalue_reference_value, valpy_rvalue_reference_value):
1858         New wrappers for valpy_reference_value().
1859         * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
1860         (gdbpy_invoke_xmethod): Likewise.
1861
1862 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
1863
1864         PR gdb/14441
1865         * dwarf2read.c (process_die, read_type_die_1): Handle the
1866         DW_TAG_rvalue_reference_type DIE.
1867         (read_tag_reference_type): Add new parameter "refcode".
1868
1869 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
1870
1871         PR gdb/14441
1872         * c-typeprint.c (c_print_type, c_type_print_varspec_prefix)
1873         (c_type_print_modifier, c_type_print_varspec_suffix)
1874         (c_type_print_base): Support printing rvalue reference types.
1875         * c-valprint.c (c_val_print, c_value_print): Support printing
1876         rvalue reference values.
1877
1878 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
1879
1880         PR gdb/14441
1881         * cp-name-parser.y (ptr_operator): Handle the '&&' token in
1882         typename.
1883         * cp-support.c (replace_typedefs): Handle
1884         DEMANGLE_COMPONENT_RVALUE_REFERENCE.
1885         * python/py-type.c (typy_lookup_type): Likewise.
1886
1887 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
1888
1889         PR gdb/14441
1890         * c-exp.y (ptr_operator): Handle the '&&' token in the typename.
1891         * parse.c (insert_type): Change assert statement.
1892         (follow_types): Handle rvalue reference types.
1893         * parser-defs.h (enum type_pieces) <tp_rvalue_reference>: New
1894         constant.
1895
1896 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
1897
1898         PR gdb/14441
1899         * ada-lang.c (ada_evaluate_subexp): Adhere to the new
1900         value_ref() interface.
1901         * c-valprint.c (c_value_print): Likewise.
1902         * infcall.c (value_arg_coerce): Likewise.
1903         * python/py-value.c (valpy_reference_value): Likewise.
1904         * valops.c (value_cast, value_reinterpret_cast)
1905         (value_dynamic_cast, typecmp): Likewise.
1906         (value_ref): Parameterize by kind of return value reference type.
1907         * value.h (value_ref): Add new parameter "refcode".
1908
1909 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
1910
1911         PR gdb/14441
1912         * dwarf2read.c (read_tag_reference_type): Use
1913         lookup_lvalue_reference_type() instead of lookup_reference_type().
1914         * eval.c (evaluate_subexp_standard): Likewise.
1915         * f-exp.y: Likewise.
1916         * gdbtypes.c (make_reference_type, lookup_reference_type):
1917         Generalize with rvalue reference types.
1918         (lookup_lvalue_reference_type, lookup_rvalue_reference_type): New
1919         convenience wrappers for lookup_reference_type().
1920         * gdbtypes.h (make_reference_type, lookup_reference_type): Add a
1921         reference kind parameter.
1922         (lookup_lvalue_reference_type, lookup_rvalue_reference_type): Add
1923         wrappers for lookup_reference_type().
1924         * guile/scm-type.c (gdbscm_type_reference): Use
1925         lookup_lvalue_reference_type() instead of lookup_reference_type().
1926         * guile/scm-value.c (gdbscm_value_dynamic_type): Likewise.
1927         * parse.c (follow_types): Likewise.
1928         * python/py-type.c (typy_reference, typy_lookup_type): Likewise.
1929         * python/py-value.c (valpy_get_dynamic_type, valpy_getitem):
1930         Likewise.
1931         * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
1932         (gdbpy_invoke_xmethod): Likewise.
1933         * stabsread.c: Provide extra argument to make_reference_type()
1934         call.
1935         * valops.c (value_ref, value_rtti_indirect_type): Use
1936         lookup_lvalue_reference_type() instead of lookup_reference_type().
1937
1938 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
1939
1940         PR gdb/14441
1941         * gdbtypes.h (enum type_code) <TYPE_CODE_RVALUE_REF>: New constant.
1942         (TYPE_IS_REFERENCE): New macro.
1943         (struct type): Add rvalue_reference_type field.
1944         (TYPE_RVALUE_REFERENCE_TYPE): New macro.
1945
1946 2017-03-20  Marc-Andre Laperle  <marc-andre.laperle@ericsson.com>
1947
1948         * NEWS: Add an entry about new '-file-list-shared-libraries' command.
1949         * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries):
1950         New function definition.
1951         * mi/mi-cmds.c (mi_cmds): Add -file-list-shared-libraries command.
1952         * mi/mi-cmds.h (mi_cmd_file_list_shared_libraries):
1953         New function declaration.
1954         * mi/mi-interp.c (mi_output_solib_attribs): New Function.
1955         * mi/mi-interp.h: New file.
1956         * solib.c (info_sharedlibrary_command): Replace for loop with
1957         ALL_SO_LIBS macro
1958         * solib.h (update_solib_list): New function declaration.
1959         (so_list_head): Move macro.
1960         * solist.h (ALL_SO_LIBS): New macro.
1961
1962 2017-03-20  Marc-Andre Laperle  <marc-andre.laperle@ericsson.com>
1963
1964         * infcmd.c (post_create_inferior): Remove unused argument in
1965         call to solib_add.
1966         * remote.c (remote_start_remote): Likewise.
1967         * solib-frv.c (frv_fetch_objfile_link_map): Likewise.
1968         * solib-svr4.c: (svr4_fetch_objfile_link_map): Likewise.
1969         (enable_break): Likewise.
1970         * solib.c (update_solib_list): Remove unused target argument
1971         and its documentation.
1972         (solib_add): Remove unused target argument.  Remove unused
1973         argument in call to update_solib_list.
1974         (info_sharedlibrary_command): Remove unused argument in call
1975         to update_solib_list.
1976         (sharedlibrary_command): Remove unused argument in call to
1977         solib_add.
1978         (handle_solib_event): Likewise.
1979         (reload_shared_libraries): Likewise.
1980         * solib.h (solib_add): Remove unused target argument.
1981
1982 2017-03-20  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1983
1984         * s390-linux-tdep.c (is_rsi, is_rie): Remove functions.
1985         (s390_displaced_step_fixup): Cover relative branches with the
1986         default fixup handling.  This fixes lack of support for some
1987         relative branch instructions.
1988
1989 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
1990
1991         * i386-gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Use
1992         ptid from regcache.
1993
1994 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
1995
1996         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers,
1997         i386_darwin_store_inferior_registers): Use ptid from regcache.
1998
1999 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2000
2001         * i386-bsd-nat.c (i386bsd_fetch_inferior_registers,
2002         i386bsd_store_inferior_registers): Use ptid from regcache.
2003
2004 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2005
2006         * hppa-obsd-nat.c (hppaobsd_fetch_registers,
2007         hppaobsd_store_registers): Use ptid from regcache.
2008
2009 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2010
2011         * hppa-nbsd-nat.c (hppanbsd_fetch_registers,
2012         hppanbsd_store_registers): Use ptid from regcache.
2013
2014 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2015
2016         * hppa-linux-nat.c (fetch_register, store_register): Use ptid
2017         from regcache.  Use get_ptrace_pid.
2018
2019 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2020
2021         * corelow.c (get_core_register_section): Use ptid from regcache,
2022         update doc.
2023
2024 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2025
2026         * bsd-uthread.c (bsd_uthread_fetch_registers,
2027         bsd_uthread_store_registers): Use ptid from regcache, set and
2028         restore inferior_ptid.
2029
2030 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2031
2032         * arm-nbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
2033         fetch_fp_regs, store_register, store_regs, store_fp_register,
2034         store_fp_regs): Use ptid from regcache.
2035
2036 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2037
2038         * arm-linux-nat.c (fetch_fpregs, store_fpregs, fetch_regs,
2039         store_regs, fetch_wmmx_regs, store_wmmx_regs, fetch_vfp_regs,
2040         store_vfp_regs): Use ptid from regcache.
2041
2042 2017-03-17  Pedro Alves  <palves@redhat.com>
2043
2044         PR remote/21188
2045         * ser-base.c (ser_base_wait_for): Add comment.
2046         (do_ser_base_readchar): Improve comment based on the ser-unix.c's
2047         version.
2048         * ser-unix.c (hardwire_raw): Remove reference to
2049         scb->current_timeout.
2050         (wait_for, do_hardwire_readchar, hardwire_readchar): Delete.
2051         (hardwire_ops): Install ser_base_readchar instead of
2052         hardwire_readchar.
2053         * serial.h (struct serial) <current_timeout, timeout_remaining>:
2054         Remove fields.
2055
2056 2017-03-17  Jonah Graham  <jonah@kichwacoders.com>
2057
2058         PR gdb/19637
2059         * python/lib/gdb/printer/bound_registers.py: Add support for
2060         Python 3.
2061
2062 2017-03-16  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2063
2064         * dwarf2loc.c (indirect_synthetic_pointer): Get data type of
2065         pointed-to DIE and pass it to dwarf2_evaluate_loc_desc_full.
2066         (dwarf2_evaluate_loc_desc_full): New parameter subobj_type; rename
2067         byte_offset to subobj_byte_offset.  Fix the handling of
2068         DWARF_VALUE_STACK on big-endian targets when coming via an
2069         implicit pointer.
2070         (dwarf2_evaluate_loc_desc): Adjust call to
2071         dwarf2_evaluate_loc_desc_full.
2072         * dwarf2loc.h (dwarf2_fetch_die_type_sect_off): New declaration.
2073         * dwarf2read.c (dwarf2_fetch_die_type_sect_off): New function.
2074
2075 2017-03-16  Yao Qi  <yao.qi@linaro.org>
2076
2077         * arm-tdep.c (thumb_record_misc): Decode CBNZ, CBZ, REV16,
2078         and REVSH instructions.
2079
2080 2017-03-16  Yao Qi  <yao.qi@linaro.org>
2081
2082         * arm-tdep.c [GDB_SELF_TEST]: include "selftests.h".
2083         (arm_record_test): Declare.
2084         (_initialize_arm_tdep) [GDB_SELF_TEST]: call register_self_test.
2085         (thumb_record_ld_st_reg_offset): Rewrite the opcode matching to
2086         align with the manual.
2087         (thumb_record_misc): Adjust the code order to align with the
2088         manual.
2089         (thumb2_record_decode_insn_handler): Fix instruction matching.
2090         (instruction_reader_thumb): New class.
2091         (arm_record_test): New function.
2092
2093 2017-03-16  Yao Qi  <yao.qi@linaro.org>
2094
2095         * arm-tdep.c (abstract_memory_reader): New class.
2096         (instruction_reader): New class.
2097         (extract_arm_insn): Add argument 'reader'.  Callers updated.
2098         (decode_insn): Likewise.
2099
2100 2017-03-16  Doug Evans  <dje@google.com>
2101
2102         * guile/scm-lazy-string.c (lazy_string_smob): Clarify use of LENGTH
2103         member.  Change type of TYPE member to SCM.  All uses updated.
2104         (lsscm_make_lazy_string_smob): Add assert.
2105         (lsscm_make_lazy_string): Flag bad length values.
2106         (lsscm_elt_type): New function.
2107         (gdbscm_lazy_string_to_value): Rewrite to use
2108         lsscm_safe_lazy_string_to_value.
2109         (lsscm_safe_lazy_string_to_value): Fix handling of TYPE_CODE_PTR.
2110         * guile/scm-value.c (gdbscm_value_to_lazy_string): Flag bad length
2111         values.  Fix TYPE_CODE_PTR.  Handle TYPE_CODE_ARRAY.  Handle typedefs
2112         in incoming type.
2113         * guile/guile-internal.h (tyscm_scm_to_type): Declare.
2114         * guile/scm-type.c (tyscm_scm_to_type): New function.
2115
2116 2017-03-15  Doug Evans  <dje@google.com>
2117
2118         PR python/17728, python/18439, python/18779
2119         * python/py-lazy-string.c (lazy_string_object): Clarify use of LENGTH
2120         member.  Change type of TYPE member to PyObject *.  All uses updated.
2121         (stpy_convert_to_value): Fix handling of TYPE_CODE_PTR.
2122         (gdbpy_create_lazy_string_object): Flag bad length values.
2123         Handle TYPE_CODE_ARRAY with possibly different user-provided length.
2124         Handle typedefs in incoming type.
2125         (stpy_lazy_string_elt_type): New function.
2126         (gdbpy_extract_lazy_string): Call it.
2127         * python/py-value.c (valpy_lazy_string): Flag bad length values.
2128         Fix handling of TYPE_CODE_PTR.  Handle TYPE_CODE_ARRAY.  Handle
2129         typedefs in incoming type.
2130
2131 2017-03-16  Doug Evans  <dje@google.com>
2132
2133         * guile/guile-internal.h (tyscm_scm_to_type): Declare.
2134         * guile/scm-type.c (tyscm_scm_to_type): New function.
2135
2136 2017-03-16  Jiong Wang  <jiong.wang@arm.com>
2137
2138         * inf-ptrace.c (inf_ptrace_peek_poke): Change the type to
2139         "ULONGEST" for "skip".
2140
2141 2017-03-14  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2142
2143         PR gdb/21220
2144         * inf-ptrace.c (inf_ptrace_xfer_partial): In "case
2145         TARGET_OBJECT_MEMORY", extract the logic for ptrace peek/poke...
2146         (inf_ptrace_peek_poke): ...here.  New function.  Now also loop
2147         over ptrace peek/poke until end of buffer or error.
2148
2149 2017-03-14  Simon Marchi  <simon.marchi@ericsson.com>
2150
2151         * parse.c (length_of_subexp): Make static.
2152         * parser-defs.h (length_of_subexp): Remove.
2153
2154 2017-03-14  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2155
2156         * linux-nat.c (linux_proc_xfer_partial): Handle write operations
2157         as well.
2158
2159 2017-03-14  Pedro Alves  <palves@redhat.com>
2160
2161         * cp-name-parser.y (cp_demangled_name_to_comp): Update comment.
2162         (main): Use std::unique_ptr.  Remove calls to
2163         cp_demangled_name_parse_free.
2164
2165 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
2166
2167         * alpha-bsd-nat.c (alphabsd_fetch_inferior_registers,
2168         alphabsd_store_inferior_registers): Use regcache->ptid instead
2169         of inferior_ptid.
2170
2171 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
2172
2173         * aix-thread.c (aix_thread_fetch_registers,
2174         aix_thread_store_registers): Use regcache->ptid instead of
2175         inferior_ptid.
2176
2177 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
2178
2179         * aarch64-linux-nat.c (fetch_gregs_from_thread,
2180         store_gregs_to_thread, fetch_fpregs_from_thread,
2181         store_fpregs_to_thread): Use regcache->ptid instead of
2182         inferior_ptid.
2183
2184 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
2185
2186         * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers,
2187         amd64_linux_fetch_inferior_registers): Use regcache->ptid
2188         instead of inferior_ptid.
2189
2190 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
2191
2192         * target.c (target_fetch_registers, target_store_registers): Add
2193         assert.
2194
2195 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
2196
2197         * regcache.h (regcache_get_ptid): New function.
2198         * regcache.c (regcache_get_ptid): New function.
2199
2200 2017-03-13  Mark Wielaard  <mark@klomp.org>
2201
2202         * cp-name-parser.y (make_empty): Initialize d_printing to zero.
2203
2204 2017-03-10  Keith Seitz  <keiths@redhat.com>
2205
2206         PR c++/8218
2207         * c-typeprint.c (cp_type_print_method_args): Skip artificial arguments.
2208
2209 2017-03-08  Pedro Alves  <palves@redhat.com>
2210
2211         PR gdb/18360
2212         * infrun.c (start_step_over, do_target_resume, resume)
2213         (restart_threads): Assert we're not resuming a thread that is
2214         meant to be stopped.
2215         (infrun_thread_stop_requested_callback): Delete.
2216         (infrun_thread_stop_requested): If the thread is internally
2217         stopped, queue a pending stop event and clear the thread's
2218         inline-frame state.
2219         (handle_stop_requested): New function.
2220         (handle_syscall_event, handle_inferior_event_1): Use
2221         handle_stop_requested.
2222         (handle_stop_requested): New function.
2223         (handle_signal_stop): Set the thread's stop_signal here instead of
2224         at caller.
2225         (finish_step_over): Clear step over info unconditionally.
2226         (handle_signal_stop): If the user had interrupted the event
2227         thread, consider the stop a random signal.
2228         (handle_signal_stop) <signal arrived while stepping over
2229         breakpoint>: Don't restart threads here.
2230         (stop_waiting): Don't clear step-over info here.
2231
2232 2017-03-08  Pedro Alves  <palves@redhat.com>
2233
2234         PR 21206
2235         * common/gdb_unlinker.h (unlinker::unlinker): Attribute nonnull
2236         goes to argument 2, not 1.
2237
2238 2017-03-08  Pedro Alves  <palves@redhat.com>
2239
2240         PR cli/21218
2241         * top.c (gdb_readline_wrapper): Avoid passing NULL to
2242         display_gdb_prompt.
2243         (command_line_input): Add comment.
2244
2245 2017-03-08  Pedro Alves  <palves@redhat.com>
2246
2247         PR tui/21216
2248         * tui/tui-file.c (tui_file::write): New.
2249         * tui/tui-file.h (tui_file): Override "write".
2250         * tui/tui-io.c (do_tui_putc, update_start_line): New functions,
2251         factored out from ...
2252         (tui_puts): ... here.
2253         (tui_putc): Use them.
2254         (tui_write): New function.
2255         * tui/tui-io.h (tui_write): Declare.
2256
2257 2017-03-07  Sergio Durigan Junior  <sergiodj@redhat.com>
2258
2259         * Makefile.in (SFILES): Replace "environ.c" with
2260         "common/environ.c".
2261         (HFILES_NO_SRCDIR): Likewise, for "environ.h".
2262         * environ.c: Include "common-defs.h" instead of "defs.h.  Moved
2263         to...
2264         * common/environ.c: ... here.
2265         * environ.h: Moved to...
2266         * common/environ.h: ... here.
2267
2268 2017-03-07  Peter Bergner  <bergner@vnet.ibm.com>
2269
2270         * gdbarch.sh (pstring_ptr): New static function.
2271         (gdbarch_disassembler_options): Use it.
2272         (gdbarch_verify_disassembler_options): Print valid_disassembler_options,
2273         not valid_disassembler_option->name.
2274         * gdbarch.c: Regenerate.
2275
2276 2017-03-07  Peter Bergner  <bergner@vnet.ibm.com>
2277
2278         * config/powerpc/ppc64-linux.mh (MH_CFLAGS): Delete.
2279
2280 2017-03-07  Pedro Alves  <palves@redhat.com>
2281
2282         * tui/tui-regs.c (tui_restore_gdbout): Don't delete gdb_stdout.
2283
2284 2017-03-07  Walfred Tedeschi  <walfred.tedeschi@intel.com>
2285
2286         * i387-tdep.h (i387_reset_bnd_regs): Add function definition.
2287         * i387-tdep.c (i387_reset_bnd_regs): Add function implementation.
2288         * i386-tdep.c (i386_push_dummy_call): Call i387_reset_bnd_regs.
2289         * amd64-tdep.c (amd64_push_dummy_call): Call i387_reset_bnd_regs.
2290
2291 2017-03-06  Simon Marchi  <simon.marchi@ericsson.com>
2292
2293         * xtensa-linux-nat.c (fetch_gregs): Remove const.
2294
2295 2017-03-03  Simon Marchi  <simon.marchi@ericsson.com>
2296
2297         * remote.c (remote_add_target_side_commands): Use range-based
2298         for loop.
2299
2300 2017-03-03  Yao Qi  <yao.qi@linaro.org>
2301
2302         PR gdb/21165
2303         * ada-valprint.c (ada_val_print_ref): Call value_fetch_lazy if
2304         value is lazy.
2305         * valprint.c (common_val_print): Likewise.
2306
2307 2017-02-28  Peter Bergner  <bergner@vnet.ibm.com>
2308
2309         * NEWS: Mention new set/show disassembler-options commands.
2310         * doc/gdb.texinfo: Document new set/show disassembler-options commands.
2311         * disasm.c: Include "arch-utils.h", "gdbcmd.h" and "safe-ctype.h".
2312         (prospective_options): New static variable.
2313         (gdb_disassembler::gdb_disassembler): Initialize
2314         m_di.disassembler_options.
2315         (gdb_buffered_insn_length_init_dis): Initilize di->disassembler_options.
2316         (get_disassembler_options): New function.
2317         (set_disassembler_options): Likewise.
2318         (set_disassembler_options_sfunc): Likewise.
2319         (show_disassembler_options_sfunc): Likewise.
2320         (disassembler_options_completer): Likewise.
2321         (_initialize_disasm): Likewise.
2322         * disasm.h (get_disassembler_options): New prototype.
2323         (set_disassembler_options): Likewise.
2324         * gdbarch.sh (gdbarch_disassembler_options): New variable.
2325         (gdbarch_verify_disassembler_options): Likewise.
2326         * gdbarch.c: Regenerate.
2327         * gdbarch.h: Likewise.
2328         * arm-tdep.c (num_disassembly_options): Delete.
2329         (set_disassembly_style): Likewise.
2330         (arm_disassembler_options): New static variable.
2331         (set_disassembly_style_sfunc): Convert short style name into long
2332         option name.  Call set_disassembler_options.
2333         (show_disassembly_style_sfunc): New function.
2334         (arm_gdbarch_init): Call set_gdbarch_disassembler_options and
2335         set_gdbarch_verify_disassembler_options.
2336         (_initialize_arm_tdep): Delete regnames variable and update callers.
2337         (arm_disassembler_options): Initialize.
2338         (disasm_options): New variable.
2339         (num_disassembly_options): Rename from this...
2340         (num_disassembly_styles): ...to this.  Compute by scanning through
2341         disasm_options.
2342         (valid_disassembly_styles): Initialize using disasm_options.
2343         Remove calls to parse_arm_disassembler_option, get_arm_regnames and
2344         set_arm_regname_option.
2345         Pass show_disassembly_style_sfunc to the "disassembler" setshow command.
2346         * rs6000-tdep.c (powerpc_disassembler_options): New static variable.
2347         (rs6000_gdbarch_init): Call set_gdbarch_disassembler_options and
2348         set_gdbarch_verify_disassembler_options.
2349         * s390-tdep.c (s390_disassembler_options): New static variable.
2350         (s390_gdbarch_init):all set_gdbarch_disassembler_options and
2351         set_gdbarch_verify_disassembler_options.
2352
2353 2017-02-27  Simon Marchi  <simon.marchi@ericsson.com>
2354
2355         * remote.c (remote_add_target_side_condition): Remove "struct"
2356         keyword from range-based for loop.
2357
2358 2017-02-27  Simon Marchi  <simon.marchi@ericsson.com>
2359
2360         * remote.c (remote_add_target_side_condition): Use range-based
2361         for loop.  Update comment.
2362
2363 2017-02-27  Yao Qi  <yao.qi@linaro.org>
2364
2365         * f-typeprint.c (f_print_type): Check "varstring" is empty first.
2366
2367 2017-02-26  Alan Hayward  <alan.hayward@arm.com>
2368
2369         * regcache.c (regcache_raw_update): New function.
2370         (regcache_raw_read): Move code to regcache_raw_update.
2371         * regcache.h (regcache_raw_update): New declaration.
2372         * remote.c (remote_prepare_to_store): Call regcache_raw_update.
2373
2374 2017-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
2375
2376         * dwarf2read.c (create_debug_type_hash_table): Initialize
2377         header.signature and header.type_offset_in_tu.
2378
2379 2017-02-24  Pedro Alves  <palves@redhat.com>
2380
2381         * symtab.c (make_file_symbol_completion_list_1): Use
2382         add_symtab_completions.
2383
2384 2017-02-24  Alan Hayward  <alan.hayward@arm.com>
2385
2386         * stack.c (frame_info): Use frame_unwind_register_value to avoid buf.
2387
2388 2017-02-24  Alan Hayward  <alan.hayward@arm.com>
2389
2390         * i386-tdep.c (i386_pseudo_register_read_into_value): Use
2391         I386_MAX_REGISTER_SIZE.
2392         (i386_pseudo_register_write): Likewise.
2393         (i386_process_record): Likewise.
2394         * i387-tdep.c (i387_supply_xsave): Likewise.
2395         * m68k-linux-nat.c (fetch_register): Use M68K_MAX_REGISTER_SIZE.
2396         (store_register): Likewise.
2397
2398 2017-02-23  Pedro Alves  <palves@redhat.com>
2399
2400         * ada-lang.c: Include "common/function-view.h".
2401         (ada_iterate_over_symbols): Adjust to use function_view as
2402         callback type.
2403         (struct add_partial_datum, ada_complete_symbol_matcher): Delete.
2404         (ada_make_symbol_completion_list): Use a lambda.
2405         (ada_exc_search_name_matches): Delete.
2406         (name_matches_regex): New.
2407         (ada_add_global_exceptions): Use a lambda and name_matches_regex.
2408         * compile/compile-c-support.c: Include "common/function-view.h".
2409         (print_one_macro): Change prototype to accept a ui_file pointer.
2410         (write_macro_definitions): Use a lambda.
2411         * dwarf2read.c: Include "common/function-view.h".
2412         (dw2_map_expand_apply, dw2_map_symtabs_matching_filename)
2413         (dw2_expand_symtabs_matching): Adjust to use function_view as
2414         callback type.
2415         * language.h: Include "common/function-view.h".
2416         (struct language_defn) <la_iterate_over_symbols>: Adjust to use
2417         function_view as callback type.
2418         (LA_ITERATE_OVER_SYMBOLS): Remove DATA parameter.
2419         * linespec.c: Include "common/function-view.h".
2420         (collect_info::add_symbol): New method.
2421         (struct symbol_and_data_callback, iterate_inline_only, struct
2422         symbol_matcher_data, iterate_name_matcher): Delete.
2423         (iterate_over_all_matching_symtabs): Adjust to use function_view
2424         as callback type and lambdas.
2425         (iterate_over_file_blocks): Adjust to use function_view as
2426         callback type.
2427         (decode_compound_collector): Now a class with private fields.
2428         (decode_compound_collector::release_symbols): New method.
2429         (collect_one_symbol): Rename to...
2430         (decode_compound_collector::operator()): ... this and adjust.
2431         (lookup_prefix_sym): decode_compound_collector construction bits
2432         move to decode_compound_collector ctor.  Pass the
2433         decode_compound_collector object directly as callback.  Remove
2434         cleanups and use decode_compound_collector::release_symbols
2435         instead.
2436         (symtab_collector): Now a class with private fields.
2437         (symtab_collector::release_symtabs): New method.
2438         (add_symtabs_to_list): Rename to...
2439         (symtab_collector::operator()): ... this and adjust.
2440         (collect_symtabs_from_filename): symtab_collector construction
2441         bits move to symtab_collector ctor.  Pass the symtab_collector
2442         object directly as callback.  Remove cleanups and use
2443         symtab_collector::release_symtabs instead.
2444         (collect_symbols): Delete.
2445         (add_matching_symbols_to_info): Use lambdas.
2446         * macrocmd.c (print_macro_callback): Delete.
2447         (info_macro_command): Use a lambda.
2448         (info_macros_command): Pass print_macro_definition as callable
2449         directly.
2450         (print_one_macro): Remove 'ignore' parameter.
2451         (macro_list_command): Adjust.
2452         * macrotab.c (macro_for_each_data::fn): Now a function_view.
2453         (macro_for_each_data::user_data): Delete field.
2454         (foreach_macro): Adjust to call the function_view.
2455         (macro_for_each): Adjust to use function_view as callback type.
2456         (foreach_macro_in_scope): Adjust to call the function_view.
2457         (macro_for_each_in_scope): Adjust to use function_view as callback
2458         type.
2459         * macrotab.h: Include "common/function-view.h".
2460         (macro_callback_fn): Declare a prototype instead of a pointer.
2461         Remove "user_data" parameter.
2462         (macro_for_each, macro_for_each_in_scope): Adjust to use
2463         function_view as callback type.
2464         * psymtab.c (partial_map_expand_apply)
2465         (psym_map_symtabs_matching_filename, recursively_search_psymtabs):
2466         Adjust to use function_view as callback type and to return bool.
2467         (psym_expand_symtabs_matching): Adjust to use function_view as
2468         callback types.
2469         * symfile-debug.c (debug_qf_map_symtabs_matching_filename): Adjust
2470         to use function_view as callback type and to return bool.
2471         (debug_qf_expand_symtabs_matching): Adjust to use function_view as
2472         callback types.
2473         * symfile.c (expand_symtabs_matching): Adjust to use function_view
2474         as callback types.
2475         * symfile.h: Include "common/function-view.h".
2476         (expand_symtabs_file_matcher_ftype)
2477         (expand_symtabs_symbol_matcher_ftype)
2478         (expand_symtabs_exp_notify_ftype): Remove "data" parameter and
2479         return bool.
2480         (quick_symbol_functions::map_symtabs_matching_filename)
2481         (quick_symbol_functions::expand_symtabs_matching): Adjust to use
2482         function_view as callback type and return bool.
2483         (expand_symtabs_matching): Adjust to use function_view as callback
2484         type.
2485         (maintenance_expand_name_matcher)
2486         (maintenance_expand_file_matcher): Delete.
2487         (maintenance_expand_symtabs): Use lambdas.
2488         * symtab.c (iterate_over_some_symtabs): Adjust to use
2489         function_view as callback types and return bool.
2490         (iterate_over_symtabs): Likewise.  Use unique_xmalloc_ptr instead
2491         of a cleanup.
2492         (lookup_symtab_callback): Delete.
2493         (lookup_symtab): Use a lambda.
2494         (iterate_over_symbols): Adjust to use function_view as callback
2495         type.
2496         (struct search_symbols_data, search_symbols_file_matches)
2497         (search_symbols_name_matches): Delete.
2498         (search_symbols): Use a pair of lambdas.
2499         (struct add_name_data, add_macro_name, symbol_completion_matcher)
2500         (symtab_expansion_callback): Delete.
2501         (default_make_symbol_completion_list_break_on_1): Use lambdas.
2502         * symtab.h: Include "common/function-view.h".
2503         (iterate_over_some_symtabs): Adjust to use function_view as
2504         callback type and return bool.
2505         (iterate_over_symtabs): Adjust to use function_view as callback
2506         type.
2507         (symbol_found_callback_ftype): Remove 'data' parameter and return
2508         bool.
2509         (iterate_over_symbols): Adjust to use function_view as callback
2510         type.
2511
2512 2017-02-23  Pedro Alves  <palves@redhat.com>
2513
2514         * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS): New.
2515         (%.o) <unittests/%.c>: New pattern.
2516         * configure.ac ($development): Add $(SUBDIR_UNITTESTS_OBS) to
2517         CONFIG_OBS, and $(SUBDIR_UNITTESTS_SRCS) to CONFIG_SRCS.
2518         * common/function-view.h: New file.
2519         * unittests/function-view-selftests.c: New file.
2520         * configure: Regenerate.
2521
2522 2017-02-23  Simon Marchi  <simon.marchi@ericsson.com>
2523
2524         * bsd-uthread.c (bsd_uthread_thread_alive): Use ptid instead of
2525         inferior_ptid.
2526         * go32-nat.c (go32_thread_alive): Likewise.
2527
2528 2017-02-23  Yao Qi  <yao.qi@linaro.org>
2529
2530         * varobj-iter.h (varobj_iter_delete): Call xfree instead of
2531         delete.
2532
2533 2017-02-23  Yao Qi  <yao.qi@linaro.org>
2534
2535         * varobj.c (varobj_clear_saved_item): Use delete instead of
2536         xfree.
2537         (update_dynamic_varobj_children): Likewise.
2538
2539 2017-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
2540
2541         * dwarf2read.c (dwarf2_record_block_ranges): Add forgotten BASEADDR.
2542
2543 2017-02-21  Simon Marchi  <simon.marchi@ericsson.com>
2544
2545         * common/enum-flags.h (enum_flags::enum_flags): Initialize
2546         m_enum_value to 0 in default constructor.
2547
2548 2017-02-21  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
2549
2550         * rs6000-tdep.c (LOAD_AND_RESERVE_MASK): Rename from LWARX_MASK.
2551         (STORE_CONDITIONAL_MASK): Rename from STWCX_MASK.
2552         (LBARX_INSTRUCTION, LHARX_INSTRUCTION, LQARX_INSTRUCTION,
2553         STBCX_INSTRUCTION, STHCX_INSTRUCTION, STQCX_INSTRUCTION): New defines.
2554         (IS_LOAD_AND_RESERVE_INSN, IS_STORE_CONDITIONAL_INSN): New macros.
2555         (ppc_displaced_step_copy_insn): Use IS_LOAD_AND_RESERVE_INSN.
2556         (ppc_deal_with_atomic_sequence): Use IS_LOAD_AND_RESERVE_INSN and
2557         IS_STORE_CONDITIONAL_INSN.
2558
2559 2017-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
2560
2561         * dwarf2_rnglists_process: Initialize range_beginning and range_end.
2562
2563 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
2564
2565         * NEWS (Changes since GDB 7.12): Add DWARF-5.
2566
2567 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
2568
2569         * dwarf2read.c (skip_one_die, read_attribute_value)
2570         (dwarf2_const_value_attr, dump_die_shallow)
2571         (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
2572         (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_data16.
2573
2574 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
2575
2576         * dwarf2read.c (read_file_scope): Rename DW_MACRO_GNU_*.
2577         (dwarf_parse_macro_header): Accept DWARF version 5.
2578         (dwarf_decode_macro_bytes, dwarf_decode_macros): Rename DW_MACRO_GNU_*.
2579
2580 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
2581
2582         * block.c (call_site_for_pc): Rename DW_OP_GNU_*, DW_TAG_GNU_* and
2583         DW_AT_GNU_*.
2584         * common/common-exceptions.h (enum errors): Likewise.
2585         * dwarf2-frame.c (class dwarf_expr_executor): Likewise.
2586         * dwarf2expr.c (dwarf_block_to_dwarf_reg)
2587         (dwarf_expr_context::execute_stack_op): Likewise.
2588         * dwarf2expr.h (struct dwarf_expr_context, struct dwarf_expr_piece):
2589         Likewise.
2590         * dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type)
2591         (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
2592         (show_entry_values_debug, call_site_to_target_addr)
2593         (func_addr_to_tail_call_list, func_verify_no_selftailcall)
2594         (dwarf_expr_reg_to_entry_parameter, dwarf_entry_parameter_to_value)
2595         (entry_data_value_free_closure, value_of_dwarf_reg_entry)
2596         (value_of_dwarf_block_entry, indirect_pieced_value)
2597         (symbol_needs_eval_context::push_dwarf_reg_entry_value):
2598         (disassemble_dwarf_expression): Likewise.
2599         * dwarf2read.c (process_die, inherit_abstract_dies)
2600         (read_call_site_scope): Likewise.
2601         * gdbtypes.h (struct func_type, struct call_site_parameter)
2602         (struct call_site): Likewise.
2603         * stack.c (read_frame_arg): Likewise.
2604         * std-operator.def (OP_VAR_ENTRY_VALUE): Likewise.
2605
2606 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
2607
2608         * defs.h (read_unsigned_leb128): New declaration.
2609         * dwarf2loc.c (decode_debug_loclists_addresses): New function.
2610         (decode_debug_loc_dwo_addresses): Update DEBUG_LOC_* to DW_LLE_*.
2611         (dwarf2_find_location_expression): Call also
2612         decode_debug_loclists_addresses.  Handle DWARF-5 ULEB128 length.
2613         * dwarf2loc.h (dwarf2_version): New declaration.
2614         * dwarf2read.c (struct dwarf2_per_objfile): Add loclists, line_str,
2615         rnglists.
2616         (dwarf2_elf_names): Add .debug_loclists, .debug_line_str,
2617         .debug_rnglists.
2618         (struct dwop_section_names): Add loclists_dwo.
2619         (dwop_section_names): Add .debug_loclists.dwo.
2620         (struct comp_unit_head): Add unit_type, signature, type_offset_in_tu.
2621         (struct dwarf2_per_cu_data): Add dwarf_version.
2622         (struct dwo_sections): Add loclists.
2623         (struct attr_abbrev): Add implicit_const.
2624         (read_indirect_line_string): New declaration.
2625         (read_unsigned_leb128): Delete declaration.
2626         (rcuh_kind): New definition.
2627         (read_and_check_comp_unit_head): Change parameter
2628         is_debug_types_section to section_kind.
2629         (dwarf2_locate_sections): Handle loclists, line_str and rnglists.
2630         (read_comp_unit_head): Change parameter abfd to section, add parameter
2631         section_kind.  Handle DWARF-5.
2632         (error_check_comp_unit_head): Accept also DWARF version 5.
2633         (read_and_check_comp_unit_head): Change parameter
2634         is_debug_types_section to section_kind.
2635         (read_and_check_type_unit_head): Delete function.
2636         (read_abbrev_offset): Handle DWARF-5.
2637         (create_debug_type_hash_table): Add parameter section_kind.  Process
2638         only DW_UT_type.  Use signature and type_offset_in_tu from struct
2639         comp_unit_head.
2640         (create_debug_types_hash_table): Update create_debug_type_hash_table
2641         caller.
2642         (create_all_type_units): Call create_debug_type_hash_table.
2643         (read_cutu_die_from_dwo, init_cutu_and_read_dies): Change
2644         read_and_check_type_unit_head caller to read_and_check_comp_unit_head
2645         caller.
2646         (skip_one_die): Handle DW_FORM_implicit_const.
2647         (dwarf2_rnglists_process): New function.
2648         (dwarf2_ranges_process): Call dwarf2_rnglists_process for DWARF-5.
2649         (abbrev_table_read_table): Handle DW_FORM_implicit_const.
2650         (read_attribute_value): Handle DW_FORM_implicit_const,
2651         DW_FORM_line_strp.
2652         (read_attribute): Handle DW_FORM_implicit_const.
2653         (read_indirect_string_at_offset_from): New function from
2654         read_indirect_string_at_offset.
2655         (read_indirect_string_at_offset): Call
2656         read_indirect_string_at_offset_from.
2657         (read_indirect_line_string_at_offset): New function.
2658         (read_indirect_string): New function comment.
2659         (read_indirect_line_string): New function.
2660         (read_unsigned_leb128): Make it global.
2661         (dwarf2_string_attr): Handle DWARF-5.
2662         (add_include_dir_stub, read_formatted_entries): New functions.
2663         (dwarf_decode_line_header, dump_die_shallow, cu_debug_loc_section):
2664         Handle DWARF-5.
2665         (per_cu_header_read_in): Update read_comp_unit_head caller.
2666         (dwarf2_version): New function.
2667         * symfile.h (struct dwarf2_debug_sections): Add loclists, line_str and
2668         rnglists.
2669         * xcoffread.c (dwarf2_xcoff_names): Update struct dwarf2_debug_sections
2670         fields.
2671
2672 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
2673
2674         * dwarf2read.c (abbrev_table_read_table): Read the data only once.
2675
2676 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
2677
2678         * dwarf2read.c (dwarf2_ranges_process): New function from
2679         dwarf2_ranges_read.
2680         (dwarf2_ranges_read, dwarf2_record_block_ranges): Use
2681         dwarf2_ranges_process.
2682
2683 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
2684
2685         * dwarf2read.c (create_debug_type_hash_table): New function from
2686         create_debug_types_hash_table.
2687         (create_debug_types_hash_table): Call create_debug_type_hash_table.
2688         (create_all_type_units, open_and_init_dwo_file): Update
2689         create_debug_types_hash_table callers.
2690
2691 2017-02-20  Sergio Durigan Junior  <sergiodj@redhat.com>
2692
2693         PR gdb/16188
2694         * fork-child.c (trace_start_error): Fix thinko.  va_end should
2695         refer to 'ap', not 'args'.
2696
2697 2017-02-20  Sergio Durigan Junior  <sergiodj@redhat.com>
2698             Pedro Alves  <palves@redhat.com>
2699
2700         PR gdb/16188
2701         * darwin-nat.c (darwin_ptrace_me): Check if calls to system
2702         calls succeeded.
2703         * fork-child.c (trace_start_error): New function.
2704         (trace_start_error_with_name): Likewise.
2705         * gnu-nat.c (gnu_ptrace_me): Check if call to PTRACE succeeded.
2706         * inf-ptrace.c (inf_ptrace_me): Likewise.
2707         * inferior.h (trace_start_error): New prototype.
2708         (trace_start_error_with_name): Likewise.
2709
2710 2017-02-15  Sergio Durigan Junior  <sergiodj@redhat.com>
2711
2712         PR gdb/21164
2713         * psymtab.c (maintenance_print_psymbols): Verify if 'argv' is not
2714         NULL before using it.
2715         * symmisc.c (maintenance_print_symbols): Likewise.
2716         (maintenance_print_msymbols): Likewise.
2717
2718 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
2719
2720         * NEWS: Add record Python bindings entry.
2721
2722 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
2723
2724         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-record-btrace.o,
2725         py-record-full.o.
2726         (SUBDIR_PYTHON_SRCS): Add py-record-btrace.c, py-record-full.c.
2727         * python/py-record-btrace.c, python/py-record-btrace.h,
2728         python/py-record-full.c, python/py-record-full.h: New file.
2729         * python/py-record.c: Add include for py-record-btrace.h and
2730         py-record-full.h.
2731         (recpy_method, recpy_format, recpy_goto, recpy_replay_position,
2732         recpy_instruction_history, recpy_function_call_history, recpy_begin,
2733         recpy_end): Use functions from py-record-btrace.c and py-record-full.c.
2734         * python/python-internal.h (PyInt_FromSsize_t, PyInt_AsSsize_t):
2735         New definition.
2736         (gdbpy_initialize_btrace): New export.
2737         * python/python.c (_initialize_python): Add gdbpy_initialize_btrace.
2738
2739 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
2740
2741         * Makefile.in (SUBDIR_PYTHON_OBS): Add python/py-record.o.
2742         (SUBDIR_PYTHON_SRCS): Add python/py-record.c.
2743         * python/py-record.c: New file.
2744         * python/python-internal.h (gdbpy_start_recording,
2745         gdbpy_current_recording, gdpy_stop_recording,
2746         gdbpy_initialize_record): New export.
2747         * python/python.c (_initialize_python): Add gdbpy_initialize_record.
2748         (python_GdbMethods): Add gdbpy_start_recording,
2749         gdbpy_current_recording and gdbpy_stop_recording.
2750
2751 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
2752
2753         * record-btrace.c (record_btrace_record_method): New function.
2754         (init_record_btrace_ops): Initialize to_record_method.
2755         * record-full.c (record_full_record_method): New function.
2756         (init_record_full_ops, init_record_full_core_ops): Add
2757         record_full_record_method.
2758         * record.h (enum record_method): New enum.
2759         * target-debug.h (target_debug_print_enum_record_method: New define.
2760         * target-delegates.c: Regenerate.
2761         * target.c (target_record_method): New function.
2762         * target.h: Include record.h.
2763         (struct target_ops) <to_record_method>: New field.
2764         (target_record_method): New export.
2765
2766 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
2767
2768         * record.h (record_start, record_stop): New export.
2769         * record.c (record_start, record_stop): New function.
2770
2771 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
2772
2773         * btrace.c (btrace_fetch): Copy function call segments pointer
2774         into a vector.
2775         (btrace_clear): Clear the vector.
2776         (btrace_find_insn_by_number): Use binary search to find the correct
2777         function call segment.
2778         * btrace.h (brace_fun_p): New typedef.
2779         (struct btrace_thread_info) <functions>: New field.
2780
2781 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
2782
2783         * record-btrace.c (btrace_ui_out_decode_error): Move most of it ...
2784         * btrace.c (btrace_decode_error): ... here.  New function.
2785         * btrace.h (btrace_decode_error): New export.
2786
2787 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
2788
2789         * btrace.c (ftrace_call_num_insn, btrace_insn_get_error): New function.
2790         (ftrace_new_function, btrace_insn_number, btrace_insn_cmp,
2791         btrace_find_insn_by_number): Remove special case for gaps.
2792         * btrace.h (btrace_insn_get_error): New export.
2793         (btrace_insn_number, btrace_find_insn_by_number): Adjust comment.
2794         * record-btrace.c (btrace_insn_history): Print number for gaps.
2795         (record_btrace_info, record_btrace_goto): Handle gaps.
2796
2797 2017-02-14  Tom Tromey  <tom@tromey.com>
2798
2799         PR python/13598:
2800         * python/python.c (gdbpy_before_prompt_hook): Emit before_prompt
2801         event.
2802         * python/py-evts.c (gdbpy_initialize_py_events): Add
2803         before_prompt registry.
2804         * python/py-events.h (events_object) <before_prompt>: New field.
2805
2806 2017-02-14  Markus Metzger  <markus.t.metzger@intel.com>
2807
2808         * btrace.c (ftrace_new_switch): Preserve up link and flags.
2809
2810 2017-02-13  Luis Machado  <lgustavo@codesourcery.com>
2811
2812         * symfile (_initialize_symfile): Add usage text to the load command's
2813         help text.
2814
2815 2017-02-10  Simon Marchi  <simon.marchi@ericsson.com>
2816
2817         * utils.c (defaulted_query): Don't query on secondary UIs.
2818
2819 2017-02-10  Tom Tromey  <tom@tromey.com>
2820
2821         * rust-lang.c (rust_get_disr_info): Remove unused variable.
2822
2823 2017-02-10  Tom Tromey  <tom@tromey.com>
2824
2825         * python/py-value.c (valpy_richcompare_throw): Remove unnecessary
2826         "cleanup" local.
2827         * python/py-type.c (typy_legacy_template_argument): Remove
2828         unnecessary "cleanup" local.
2829
2830 2017-02-10  Tom Tromey  <tom@tromey.com>
2831
2832         * python/python.c (do_start_initialization): New function, from
2833         _initialize_python.
2834         (_initialize_python): Call do_start_initialization.
2835         * python/py-linetable.c (ltpy_iternext): Use explicit returns, not
2836         goto.
2837
2838 2017-02-10  Tom Tromey  <tom@tromey.com>
2839
2840         * python/py-prettyprint.c (pretty_print_one_value): Use
2841         gdbpy_ref.
2842
2843 2017-02-10  Tom Tromey  <tom@tromey.com>
2844
2845         * python/py-cmd.c (cmdpy_destroyer): Use gdbpy_ref.
2846         * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Use
2847         gdbpy_ref.
2848         * python/py-type.c (field_new): Use gdbpy_ref.
2849         * python/py-symtab.c (symtab_and_line_to_sal_object): Use
2850         gdbpy_ref.
2851         * python/py-progspace.c (pspy_new): Use gdbpy_ref.
2852         (py_free_pspace): Likewise.
2853         (pspace_to_pspace_object): Likewise.
2854         * python/py-objfile.c (objfpy_new): Use gdbpy_ref.
2855         (py_free_objfile): Likewise.
2856         (objfile_to_objfile_object): Likewise.
2857         * python/py-inferior.c (delete_thread_object): Use
2858         gdbpy_ref.
2859         (infpy_read_memory): Likewise.
2860         (py_free_inferior): Likewise.
2861         * python/py-evtregistry.c (create_eventregistry_object): Use
2862         gdbpy_ref.
2863         * python/py-event.c (create_event_object): Use gdbpy_ref.
2864
2865 2017-02-10  Tom Tromey  <tom@tromey.com>
2866
2867         * python/py-ref.h (gdbpy_ref_policy): Now a template.
2868         (gdbpy_ref): Now a template; allow subclasses of PyObject to be
2869         used.
2870         * python/py-arch.c, python/py-bpevent.c, python/py-breakpoint.c,
2871         python/py-cmd.c, python/py-continueevent.c, python/py-event.c,
2872         python/py-exitedevent.c, python/py-finishbreakpoint.c,
2873         python/py-framefilter.c, python/py-function.c,
2874         python/py-inferior.c, python/py-infevents.c,
2875         python/py-linetable.c, python/py-newobjfileevent.c,
2876         python/py-param.c, python/py-prettyprint.c, python/py-ref.h,
2877         python/py-signalevent.c, python/py-stopevent.c,
2878         python/py-symbol.c, python/py-threadevent.c, python/py-type.c,
2879         python/py-unwind.c, python/py-utils.c, python/py-value.c,
2880         python/py-varobj.c, python/py-xmethods.c, python/python.c,
2881         varobj.c: Change gdbpy_ref to gdbpy_ref<>.
2882
2883 2017-02-10  Tom Tromey  <tom@tromey.com>
2884
2885         * ui-out.h (ui_out_emit_type): New class.
2886         (ui_out_emit_tuple, ui_out_emit_list): New typedefs.
2887         * python/py-framefilter.c (py_print_single_arg): Use gdb::optional
2888         and ui_out_emit_tuple.
2889         (enumerate_locals): Likewise.
2890         (py_mi_print_variables, py_print_locals, py_print_args): Use
2891         ui_out_emit_list.
2892         (py_print_frame): Use gdb::optional, ui_out_emit_tuple,
2893         ui_out_emit_list.
2894         * common/gdb_optional.h: New file.
2895
2896 2017-02-10  Martin Galvan  <martingalvan@sourceware.org>
2897
2898         * MAINTAINERS (Write After Approval): Update my e-mail address.
2899
2900 2017-02-10  Martin Galvan  <martingalvan@sourceware.org>
2901
2902         PR gdb/21122
2903         * breakpoint.c (_initialize_breakpoint): Update the help description
2904         of the 'commands' command to indicate that it takes a list argument.
2905
2906 2017-02-09  Simon Marchi  <simon.marchi@ericsson.com>
2907
2908         * interps.c (current_interp_set_logging): Remove "return".
2909
2910 2017-02-09  Gary Benson  <gbenson@redhat.com>
2911
2912         * symtab.c (add_symtab_completions): Prevent NULL pointer
2913         dereference.
2914
2915 2017-02-08  Pedro Alves  <palves@redhat.com>
2916
2917         * interps.c (interp::interp): Remove reference to quiet_p.
2918         (interp_set): Make static.  Remove dead "Switching to" output
2919         code.
2920         (interp_quiet_p, interp_set_quiet): Delete.
2921         (interpreter_exec_cmd): Don't set the interpreter quiet.
2922         * interps.h (interp_quiet_p): Make static.
2923         (class interp) <quiet_p>: Remove field
2924
2925 2017-02-08  Jerome Guitton  <guitton@adacore.com>
2926
2927         * cli/cli-decode.c (find_command_name_length): Make it extern.
2928         * cli/cli-decode.h (find_command_name_length): Declare.
2929         * cli/cli-script.c (command_name_equals, line_first_arg):
2930         New functions.
2931         (process_next_line): Use cli-decode to parse command names.
2932         (build_command_line): Make args a constant pointer.
2933
2934 2017-02-08  Jerome Guitton  <guitton@adacore.com>
2935
2936         * cli-decode.c (lookup_cmd_1, lookup_cmd_composition):
2937         Remove case-insensitive search.
2938
2939 2017-02-07  Jose E. Marchesi  <jose.marchesi@oracle.com>
2940
2941         * sparc-tdep.c (sparc32_gdbarch_init): Do not place a + operator
2942         at the end of the line.  Avoids an ARI warning.
2943
2944 2017-02-06  Luis Machado  <lgustavo@codesourcery.com>
2945
2946         * NEWS: Mention support for record/replay of Intel 64 rdrand and
2947         rdseed instructions.
2948         i386-tdep.c (i386_process_record): Handle Intel 64 rdrand and rseed.
2949
2950 2017-02-06  Ivo Raisr  <ivo.raisr@oracle.com>
2951
2952         PR tdep/20936
2953         Provide and use sparc32 and sparc64 target description XML files.
2954         * features/sparc/sparc32-cp0.xml, features/sparc/sparc32-cpu.xml,
2955         features/sparc/sparc32-fpu.xml: New files for sparc 32-bit.
2956         * features/sparc/sparc64-cp0.xml, features/sparc/sparc64-cpu.xml,
2957         features/sparc/sparc64-fpu.xml: New files for sparc 64-bit.
2958         * features/sparc/sparc32-solaris.xml: New file.
2959         * features/sparc/sparc64-solaris.xml: New file.
2960         * features/sparc/sparc32-solaris.c: Generated.
2961         * features/sparc/sparc64-solaris.c: Generated.
2962         * sparc-tdep.h: Account for differences in target descriptions.
2963         * sparc-tdep.c (sparc32_register_name): Use target provided registers.
2964         (sparc32_register_type): Use target provided registers.
2965         (validate_tdesc_registers): New function.
2966         (sparc32_gdbarch_init): Use tdesc_has_registers.
2967         Set pseudoregister functions.
2968         * sparc64-tdep.c (sparc64_register_name): Use target provided registers.
2969         (sparc64_register_type): Use target provided registers.
2970         (sparc64_init_abi): Set pseudoregister functions.
2971
2972 2017-02-03  Tom Tromey  <tom@tromey.com>
2973
2974         PR rust/21097:
2975         * rust-lang.c (rust_print_type) <TYPE_CODE_UNION>: Handle enums
2976         with a single member.
2977
2978 2017-02-03  Pedro Alves  <palves@redhat.com>
2979
2980         * cli/cli-interp.c (cli_interp_base::cli_interp_base)
2981         (cli_interp_base::~cli_interp_base): New.
2982         (cli_interp): New struct.
2983         (as_cli_interp): Cast the interp itself to cli_interp.
2984         (cli_interpreter_pre_command_loop): Rename to ...
2985         (cli_interp_base::pre_command_loop): ... this.  Remove 'self'
2986         parameter.
2987         (cli_interpreter_init): Rename to ...
2988         (cli_interp::init): ... this.  Remove 'self' parameter.  Use
2989         boolean.  Make extern.
2990         (cli_interpreter_resume): Rename to ...
2991         (cli_interp::resume): ... this.  Remove 'data' parameter.  Make
2992         extern.
2993         (cli_interpreter_suspend): Rename to ...
2994         (cli_interp::suspend): ... this.  Remove 'data' parameter.  Make
2995         extern.
2996         (cli_interpreter_exec): Rename to ...
2997         (cli_interp::exec): ... this.  Remove 'data' parameter.  Make
2998         extern.
2999         (cli_interpreter_supports_command_editing): Rename to ...
3000         (cli_interp_base::supports_command_editing): ... this.  Remove
3001         'interp' parameter.  Make extern.
3002         (cli_ui_out): Rename to ...
3003         (cli_interp::interp_ui_out): ... this.  Remove 'interp' parameter.
3004         Make extern.
3005         (cli_set_logging): Rename to ...
3006         (cli_interp_base::set_logging): ... this.  Remove 'interp'
3007         parameter.  Make extern.
3008         (cli_interp_procs): Delete.
3009         (cli_interp_factory): Adjust to use "new".
3010         * cli/cli-interp.h: Include "interps.h".
3011         (struct cli_interp_base): New struct.
3012         * interps.c (struct interp): Delete.  Fields moved to interps.h.
3013         (interp_new): Delete.
3014         (interp::interp, interp::~interp): New.
3015         (interp_set): Use bool, and return void.  Assume the interpreter
3016         has suspend, init and resume methods, and that the all return
3017         void.
3018         (set_top_level_interpreter): interp_set returns void.
3019         (interp_ui_out): Adapt.
3020         (current_interp_set_logging): Adapt.
3021         (interp_data): Delete.
3022         (interp_pre_command_loop, interp_supports_command_editing): Adapt.
3023         (interp_exec): Adapt.
3024         (top_level_interpreter_data): Delete.
3025         * interps.h (interp_init_ftype, interp_resume_ftype)
3026         (interp_suspend_ftype, interp_exec_ftype)
3027         (interp_pre_command_loop_ftype, interp_ui_out_ftype): Delete.
3028         (class interp): New.
3029         (interp_new): Delete.
3030         (interp_set): Now returns void.  Use bool.
3031         (interp_data, top_level_interpreter_data): Delete.
3032         * mi/mi-common.h: Include interps.h.
3033         (class mi_interp): Inherit from interp.  Define a ctor.  Declare
3034         init, resume, suspect, exec, interp_ui_out, set_logging and
3035         pre_command_loop methods.
3036         * mi/mi-interp.c (as_mi_interp): Cast the interp itself.
3037         (mi_interpreter_init): Rename to ...
3038         (mi_interp::init): ... this.  Remove the 'interp' parameter, use
3039         bool, return void and make extern.  Adjust.
3040         (mi_interpreter_resume): ... Rename to ...
3041         (mi_interp::resume): ... this.  Remove the 'data' parameter,
3042         return void and make extern.  Adjust.
3043         (mi_interpreter_suspend): ... Rename to ...
3044         (mi_interp::suspend): ... this.  Remove the 'data' parameter,
3045         return void and make extern.  Adjust.
3046         (mi_interpreter_exec): ... Rename to ...
3047         (mi_interp::exec): ... this.  Remove the 'data' parameter and make
3048         extern.  Adjust.
3049         (mi_interpreter_pre_command_loop): ... Rename to ...
3050         (mi_interp::pre_command_loop): ... this.  Remove the 'self'
3051         parameter and make extern.
3052         (mi_on_normal_stop_1): Adjust.
3053         (mi_ui_out): Rename to ...
3054         (mi_interp::interp_ui_out): ... this.  Remove the 'interp'
3055         parameter and make extern.  Adjust.
3056         (mi_set_logging): Rename to ...
3057         (mi_interp::set_logging): ... this.  Remove the 'interp'
3058         parameter and make extern.  Adjust.
3059         (mi_interp_procs): Delete.
3060         (mi_interp_factory): Adjust to use 'new'.
3061         * mi/mi-main.c (mi_cmd_gdb_exit, captured_mi_execute_command)
3062         (mi_print_exception, mi_execute_command, mi_load_progress):
3063         Adjust.
3064         * tui/tui-interp.c (tui_interp): New class.
3065         (as_tui_interp): Return a tui_interp pointer.
3066         (tui_on_normal_stop, tui_on_signal_received)
3067         (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
3068         (tui_on_no_history, tui_on_user_selected_context_changed): Adjust
3069         to use interp::interp_ui_out.
3070         (tui_init): Rename to ...
3071         (tui_interp::init): ... this.  Remove the 'self' parameter, use
3072         bool, return void and make extern.  Adjust.
3073         (tui_resume): Rename to ...
3074         (tui_interp::resume): ... this.  Remove the 'data' parameter,
3075         return void and make extern.  Adjust.
3076         (tui_suspend): Rename to ...
3077         (tui_interp::suspend): ... this.  Remove the 'data' parameter,
3078         return void and make extern.  Adjust.
3079         (tui_ui_out): Rename to ...
3080         (tui_interp::interp_ui_out): ... this.  Remove the 'self'
3081         parameter, and make extern.  Adjust.
3082         (tui_exec): Rename to ...
3083         (tui_interp::exec): ... this.  Remove the 'data' parameter and
3084         make extern.
3085         (tui_interp_procs): Delete.
3086         (tui_interp_factory): Use "new".
3087
3088 2017-02-02  Tom Tromey  <tom@tromey.com>
3089
3090         * rust-exp.y (ends_raw_string, space_then_number)
3091         (rust_identifier_start_p): Return bool.
3092         * rust-lang.c (rust_tuple_type_p, rust_underscore_fields)
3093         (rust_tuple_struct_type_p, rust_tuple_variant_type_p)
3094         (rust_slice_type_p, rust_range_type_p, rust_u8_type_p)
3095         (rust_chartype_p): Return bool.
3096         (val_print_struct, rust_print_struct_def, rust_print_type):
3097         Update.
3098         * rust-lang.h (rust_tuple_type_p, rust_tuple_struct_type_p):
3099         Return bool.
3100
3101 2017-02-02  Tom Tromey  <tom@tromey.com>
3102
3103         * rust-lang.c: Reindent.
3104
3105 2017-02-02  Tom Tromey  <tom@tromey.com>
3106
3107         * rust-lang.h (rust_crate_for_block): Update.
3108         * rust-lang.c (rust_crate_for_block): Return std::string.
3109         (rust_get_disr_info): Use std:;string, not
3110         gdb::unique_xmalloc_ptr.
3111         * rust-exp.y (crate_name): Update.
3112
3113 2017-02-02  Pedro Alves  <palves@redhat.com>
3114
3115         * disasm-selftests.c (print_one_insn_test): Move the "verbose"
3116         field out of gdb_disassembler_test and make it static.
3117
3118 2017-02-02  Pedro Alves  <palves@redhat.com>
3119
3120         * mi/mi-common.h (struct mi_interp): Delete the mi2_interp,
3121         mi1_interp and mi_interp fields.
3122
3123 2017-02-02  Pedro Alves  <palves@redhat.com>
3124
3125         * cli/cli-interp.c (struct saved_output_files, saved_output):
3126         Moved from cli/cli-logging.c.
3127         (cli_set_logging): New function.
3128         (cli_interp_procs): Install cli_set_logging.
3129         * cli/cli-interp.h (make_logging_output, cli_set_logging):
3130         Declare.
3131         * cli/cli-logging.c (struct saved_output_files, saved_output):
3132         Moved to cli/cli-interp.c.
3133         (pop_output_files): Don't save outputs here.
3134         (make_logging_output): New function.
3135         (handle_redirections): Don't build tee nor save previous outputs
3136         here.
3137         * interps.c (current_interp_set_logging): Change prototype.
3138         Assume there's always a set_logging_proc method installed.
3139         * interps.h (interp_set_logging_ftype): Change prototype.
3140         (current_interp_set_logging): Change prototype and adjust comment.
3141         * mi/mi-interp.c (mi_set_logging): Change protototype.  Adjust to
3142         use make_logging_output.
3143         * tui/tui-interp.c (tui_interp_procs): Install cli_set_logging.
3144 2017-02-02  Pedro Alves  <palves@redhat.com>
3145
3146         * cli/cli-logging.c (maybe_warn_already_logging): New factored out
3147         from ...
3148         (set_logging_overwrite): ... here.
3149         (logging_no_redirect_file): Delete.
3150         (set_logging_redirect): Don't handle redirection on the fly.
3151         Instead warn that "logging off" / "logging on" is necessary.
3152         (pop_output_files): Delete references to logging_no_redirect_file.
3153         (show_logging_command): Always speak in terms of what will happen
3154         once logging is reenabled.
3155
3156 2017-02-02  Pedro Alves  <palves@redhat.com>
3157
3158         * disasm.h (gdb_pretty_print_disassembler): Tweak intro comment.
3159
3160 2017-02-02  Pedro Alves  <palves@redhat.com>
3161
3162         * disasm.c (gdb_pretty_print_insn): Rename to ...
3163         (gdb_pretty_print_disassembler::pretty_print_insn): ... this.
3164         Remove gdbarch parameter.  Adapt to clear the object's buffers
3165         instead of allocating new buffers, and to print using the object's
3166         gdb_disassembler instead of calling gdb_print_insn.
3167         (dump_insns): Use gdb_pretty_print_disassembler.
3168         * disasm.h (gdb_pretty_print_insn): Delete declaration.
3169         (gdb_pretty_print_disassembler): New class.
3170         * record-btrace.c (btrace_insn_history): Use
3171         gdb_pretty_print_disassembler.
3172
3173 2017-02-02  Pedro Alves  <palves@redhat.com>
3174
3175         * ada-lang.c (type_as_string): Use string_file.
3176         * ada-valprint.c (ada_print_floating): Use string_file.
3177         * ada-varobj.c (ada_varobj_scalar_image)
3178         (ada_varobj_get_value_image): Use string_file.
3179         * aix-thread.c (aix_thread_extra_thread_info): Use string_file.
3180         * arm-tdep.c (_initialize_arm_tdep): Use string_printf.
3181         * breakpoint.c (update_inserted_breakpoint_locations)
3182         (insert_breakpoint_locations, reattach_breakpoints)
3183         (print_breakpoint_location, print_one_detail_ranged_breakpoint)
3184         (print_it_watchpoint): Use string_file.
3185         (save_breakpoints): Use stdio_file.
3186         * c-exp.y (oper): Use string_file.
3187         * cli/cli-logging.c (set_logging_redirect): Use ui_file_up and
3188         tee_file.
3189         (pop_output_files): Use delete.
3190         (handle_redirections): Use stdio_file and tee_file.
3191         * cli/cli-setshow.c (do_show_command): Use string_file.
3192         * compile/compile-c-support.c (c_compute_program): Use
3193         string_file.
3194         * compile/compile-c-symbols.c (generate_vla_size): Take a
3195         'string_file &' instead of a 'ui_file *'.
3196         (generate_c_for_for_one_variable): Take a 'string_file &' instead
3197         of a 'ui_file *'.  Use string_file.
3198         (generate_c_for_variable_locations): Take a 'string_file &'
3199         instead of a 'ui_file *'.
3200         * compile/compile-internal.h (generate_c_for_for_one_variable):
3201         Take a 'string_file &' instead of a 'ui_file *'.
3202         * compile/compile-loc2c.c (push, pushf, unary, binary)
3203         (print_label, pushf_register_address, pushf_register)
3204         (do_compile_dwarf_expr_to_c): Take a 'string_file &' instead of a
3205         'ui_file *'.  Adjust.
3206         * compile/compile.c (compile_to_object): Use string_file.
3207         * compile/compile.h (compile_dwarf_expr_to_c)
3208         (compile_dwarf_bounds_to_c): Take a 'string_file &' instead of a
3209         'ui_file *'.
3210         * cp-support.c (inspect_type): Use string_file and obstack_copy0.
3211         (replace_typedefs_qualified_name): Use string_file and
3212         obstack_copy0.
3213         * disasm.c (gdb_pretty_print_insn): Use string_file.
3214         (gdb_disassembly): Adjust reference the null_stream global.
3215         (do_ui_file_delete): Delete.
3216         (gdb_insn_length): Use null_stream.
3217         * dummy-frame.c (maintenance_print_dummy_frames): Use stdio_file.
3218         * dwarf2loc.c (dwarf2_compile_property_to_c)
3219         (locexpr_generate_c_location, loclist_generate_c_location): Take a
3220         'string_file &' instead of a 'ui_file *'.
3221         * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise.
3222         * dwarf2read.c (do_ui_file_peek_last): Delete.
3223         (dwarf2_compute_name): Use string_file.
3224         * event-top.c (gdb_setup_readline): Use stdio_file.
3225         * gdbarch.sh (verify_gdbarch): Use string_file.
3226         * gdbtypes.c (safe_parse_type): Use null_stream.
3227         * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use
3228         string_file.
3229         * guile/scm-disasm.c (gdbscm_print_insn_from_port): Take a
3230         'string_file *' instead of a 'ui_file *'.
3231         (gdbscm_arch_disassemble): Use string_file.
3232         * guile/scm-frame.c (frscm_print_frame_smob): Use string_file.
3233         * guile/scm-ports.c (class ioscm_file_port): Now a class that
3234         inherits from ui_file.
3235         (ioscm_file_port_delete, ioscm_file_port_rewind)
3236         (ioscm_file_port_put): Delete.
3237         (ioscm_file_port_write): Rename to ...
3238         (ioscm_file_port::write): ... this.  Remove file_port_magic
3239         checks.
3240         (ioscm_file_port_new): Delete.
3241         (ioscm_with_output_to_port_worker): Use ioscm_file_port and
3242         ui_file_up.
3243         * guile/scm-type.c (tyscm_type_name): Use string_file.
3244         * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print):
3245         Use string_file.
3246         * infcmd.c (print_return_value_1): Use string_file.
3247         * infrun.c (print_target_wait_results): Use string_file.
3248         * language.c (add_language): Use string_file.
3249         * location.c (explicit_to_string_internal): Use string_file.
3250         * main.c (captured_main_1): Use null_file.
3251         * maint.c (maintenance_print_architecture): Use stdio_file.
3252         * mi/mi-cmd-stack.c (list_arg_or_local): Use string_file.
3253         * mi/mi-common.h (struct mi_interp) <out, err, log, targ,
3254         event_channel>: Change type to mi_console_file pointer.
3255         * mi/mi-console.c (mi_console_file_fputs, mi_console_file_flush)
3256         (mi_console_file_delete): Delete.
3257         (struct mi_console_file): Delete.
3258         (mi_console_file_magic): Delete.
3259         (mi_console_file_new): Delete.
3260         (mi_console_file::mi_console_file): New.
3261         (mi_console_file_delete): Delete.
3262         (mi_console_file_fputs): Delete.
3263         (mi_console_file::write): New.
3264         (mi_console_raw_packet): Delete.
3265         (mi_console_file::flush): New.
3266         (mi_console_file_flush): Delete.
3267         (mi_console_set_raw): Rename to ...
3268         (mi_console_file::set_raw): ... this.
3269         * mi/mi-console.h (class mi_console_file): New class.
3270         (mi_console_file_new, mi_console_set_raw): Delete.
3271         * mi/mi-interp.c (mi_interpreter_init): Use mi_console_file.
3272         (mi_set_logging): Use delete and tee_file.  Adjust.
3273         * mi/mi-main.c (output_register): Use string_file.
3274         (mi_cmd_data_evaluate_expression): Use string_file.
3275         (mi_cmd_data_read_memory): Use string_file.
3276         (mi_cmd_execute, print_variable_or_computed): Use string_file.
3277         * mi/mi-out.c (mi_ui_out::main_stream): New.
3278         (mi_ui_out::rewind): Use main_stream and
3279         string_file.
3280         (mi_ui_out::put): Use main_stream and string_file.
3281         (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
3282         Allocate a 'string_file' instead.
3283         (mi_out_new): Don't allocate a mem_fileopen stream here.
3284         * mi/mi-out.h (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
3285         (mi_ui_out::main_stream): Declare method.
3286         * printcmd.c (eval_command): Use string_file.
3287         * psymtab.c (maintenance_print_psymbols): Use stdio_file.
3288         * python/py-arch.c (archpy_disassemble): Use string_file.
3289         * python/py-breakpoint.c (bppy_get_commands): Use string_file.
3290         * python/py-frame.c (frapy_str): Use string_file.
3291         * python/py-framefilter.c (py_print_type, py_print_single_arg):
3292         Use string_file.
3293         * python/py-type.c (typy_str): Use string_file.
3294         * python/py-unwind.c (unwind_infopy_str): Use string_file.
3295         * python/py-value.c (valpy_str): Use string_file.
3296         * record-btrace.c (btrace_insn_history): Use string_file.
3297         * regcache.c (regcache_print): Use stdio_file.
3298         * reggroups.c (maintenance_print_reggroups): Use stdio_file.
3299         * remote.c (escape_buffer): Use string_file.
3300         * rust-lang.c (rust_get_disr_info): Use string_file.
3301         * serial.c (serial_open_ops_1): Use stdio_file.
3302         (do_serial_close): Use delete.
3303         * stack.c (print_frame_arg): Use string_file.
3304         (print_frame_args): Remove local mem_fileopen stream, not used.
3305         (print_frame): Use string_file.
3306         * symmisc.c (maintenance_print_symbols): Use stdio_file.
3307         * symtab.h (struct symbol_computed_ops) <generate_c_location>:
3308         Take a 'string_file *' instead of a 'ui_file *'.
3309         * top.c (new_ui): Use stdio_file and stderr_file.
3310         (free_ui): Use delete.
3311         (execute_command_to_string): Use string_file.
3312         (quit_confirm): Use string_file.
3313         * tracepoint.c (collection_list::append_exp): Use string_file.
3314         * tui/tui-disasm.c (tui_disassemble): Use string_file.
3315         * tui/tui-file.c: Don't include "ui-file.h".
3316         (enum streamtype, struct tui_stream): Delete.
3317         (tui_file_new, tui_file_delete, tui_fileopen, tui_sfileopen)
3318         (tui_file_isatty, tui_file_rewind, tui_file_put): Delete.
3319         (tui_file::tui_file): New method.
3320         (tui_file_fputs): Delete.
3321         (tui_file_get_strbuf): Delete.
3322         (tui_file::puts): New method.
3323         (tui_file_adjust_strbuf): Delete.
3324         (tui_file_flush): Delete.
3325         (tui_file::flush): New method.
3326         * tui/tui-file.h: Tweak intro comment.
3327         Include ui-file.h.
3328         (tui_fileopen, tui_sfileopen, tui_file_get_strbuf)
3329         (tui_file_adjust_strbuf): Delete declarations.
3330         (class tui_file): New class.
3331         * tui/tui-io.c (tui_initialize_io): Use tui_file.
3332         * tui/tui-regs.c (tui_restore_gdbout): Use delete.
3333         (tui_register_format): Use string_stream.
3334         * tui/tui-stack.c (tui_make_status_line): Use string_file.
3335         (tui_get_function_from_frame): Use string_file.
3336         * typeprint.c (type_to_string): Use string_file.
3337         * ui-file.c (struct ui_file, ui_file_magic, ui_file_new): Delete.
3338         (null_stream): New global.
3339         (ui_file_delete): Delete.
3340         (ui_file::ui_file): New.
3341         (null_file_isatty): Delete.
3342         (ui_file::~ui_file): New.
3343         (null_file_rewind): Delete.
3344         (ui_file::printf): New.
3345         (null_file_put): Delete.
3346         (null_file_flush): Delete.
3347         (ui_file::putstr): New.
3348         (null_file_write): Delete.
3349         (ui_file::putstrn): New.
3350         (null_file_read): Delete.
3351         (ui_file::putc): New.
3352         (null_file_fputs): Delete.
3353         (null_file_write_async_safe): Delete.
3354         (ui_file::vprintf): New.
3355         (null_file_delete): Delete.
3356         (null_file::write): New.
3357         (null_file_fseek): Delete.
3358         (null_file::puts): New.
3359         (ui_file_data): Delete.
3360         (null_file::write_async_safe): New.
3361         (gdb_flush, ui_file_isatty): Adjust.
3362         (ui_file_put, ui_file_rewind): Delete.
3363         (ui_file_write): Adjust.
3364         (ui_file_write_for_put): Delete.
3365         (ui_file_write_async_safe, ui_file_read): Adjust.
3366         (ui_file_fseek): Delete.
3367         (fputs_unfiltered): Adjust.
3368         (set_ui_file_flush, set_ui_file_isatty, set_ui_file_rewind)
3369         (set_ui_file_put, set_ui_file_write, set_ui_file_write_async_safe)
3370         (set_ui_file_read, set_ui_file_fputs, set_ui_file_fseek)
3371         (set_ui_file_data): Delete.
3372         (string_file::~string_file, string_file::write)
3373         (struct accumulated_ui_file, do_ui_file_xstrdup, ui_file_xstrdup)
3374         (do_ui_file_as_string, ui_file_as_string): Delete.
3375         (do_ui_file_obsavestring, ui_file_obsavestring): Delete.
3376         (struct mem_file): Delete.
3377         (mem_file_new): Delete.
3378         (stdio_file::stdio_file): New.
3379         (mem_file_delete): Delete.
3380         (stdio_file::stdio_file): New.
3381         (mem_fileopen): Delete.
3382         (stdio_file::~stdio_file): New.
3383         (mem_file_rewind): Delete.
3384         (stdio_file::set_stream): New.
3385         (mem_file_put): Delete.
3386         (stdio_file::open): New.
3387         (mem_file_write): Delete.
3388         (stdio_file_magic, struct stdio_file): Delete.
3389         (stdio_file_new, stdio_file_delete, stdio_file_flush): Delete.
3390         (stdio_file::flush): New.
3391         (stdio_file_read): Rename to ...
3392         (stdio_file::read): ... this.  Adjust.
3393         (stdio_file_write): Rename to ...
3394         (stdio_file::write): ... this.  Adjust.
3395         (stdio_file_write_async_safe): Rename to ...
3396         (stdio_file::write_async_safe) ... this.  Adjust.
3397         (stdio_file_fputs): Rename to ...
3398         (stdio_file::puts) ... this.  Adjust.
3399         (stdio_file_isatty): Delete.
3400         (stdio_file_fseek): Delete.
3401         (stdio_file::isatty): New.
3402         (stderr_file_write): Rename to ...
3403         (stderr_file::write) ... this.  Adjust.
3404         (stderr_file_fputs): Rename to ...
3405         (stderr_file::puts) ... this.  Adjust.
3406         (stderr_fileopen, stdio_fileopen, gdb_fopen): Delete.
3407         (stderr_file::stderr_file): New.
3408         (tee_file_magic): Delete.
3409         (struct tee_file): Delete.
3410         (tee_file::tee_file): New.
3411         (tee_file_new): Delete.
3412         (tee_file::~tee_file): New.
3413         (tee_file_delete): Delete.
3414         (tee_file_flush): Rename to ...
3415         (tee_file::flush): ... this.  Adjust.
3416         (tee_file_write): Rename to ...
3417         (tee_file::write): ... this.  Adjust.
3418         (tee_file::write_async_safe): New.
3419         (tee_file_fputs): Rename to ...
3420         (tee_file::puts): ... this.  Adjust.
3421         (tee_file_isatty): Rename to ...
3422         (tee_file::isatty): ... this.  Adjust.
3423         * ui-file.h (struct obstack, struct ui_file): Don't
3424         forward-declare.
3425         (ui_file_new, ui_file_flush_ftype, set_ui_file_flush)
3426         (ui_file_write_ftype)
3427         (set_ui_file_write, ui_file_fputs_ftype, set_ui_file_fputs)
3428         (ui_file_write_async_safe_ftype, set_ui_file_write_async_safe)
3429         (ui_file_read_ftype, set_ui_file_read, ui_file_isatty_ftype)
3430         (set_ui_file_isatty, ui_file_rewind_ftype, set_ui_file_rewind)
3431         (ui_file_put_method_ftype, ui_file_put_ftype, set_ui_file_put)
3432         (ui_file_delete_ftype, set_ui_file_data, ui_file_fseek_ftype)
3433         (set_ui_file_fseek): Delete.
3434         (ui_file_data, ui_file_delete, ui_file_rewind)
3435         (struct ui_file): New.
3436         (ui_file_up): New.
3437         (class null_file): New.
3438         (null_stream): Declare.
3439         (ui_file_write_for_put, ui_file_put): Delete.
3440         (ui_file_xstrdup, ui_file_as_string, ui_file_obsavestring):
3441         Delete.
3442         (ui_file_fseek, mem_fileopen, stdio_fileopen, stderr_fileopen)
3443         (gdb_fopen, tee_file_new): Delete.
3444         (struct string_file): New.
3445         (struct stdio_file): New.
3446         (stdio_file_up): New.
3447         (struct stderr_file): New.
3448         (class tee_file): New.
3449         * ui-out.c (ui_out::field_stream): Take a 'string_file &' instead
3450         of a 'ui_file *'.  Adjust.
3451         * ui-out.h (class ui_out) <field_stream>: Likewise.
3452         * utils.c (do_ui_file_delete, make_cleanup_ui_file_delete)
3453         (null_stream): Delete.
3454         (error_stream): Take a 'string_file &' instead of a 'ui_file *'.
3455         Adjust.
3456         * utils.h (struct ui_file): Delete forward declaration..
3457         (make_cleanup_ui_file_delete, null_stream): Delete declarations.
3458         (error_stream): Take a 'string_file &' instead of a
3459         'ui_file *'.
3460         * varobj.c (varobj_value_get_print_value): Use string_file.
3461         * xtensa-tdep.c (xtensa_verify_config): Use string_file.
3462         * gdbarch.c: Regenerate.
3463
3464 2017-02-02  Pedro Alves  <palves@redhat.com>
3465
3466         * disasm.c (gdb_disassembler::pretty_print_insn): Rename to...
3467         (gdb_pretty_print_insn): ... this.  Now a free function.  Add back
3468         a 'gdbarch' parameter.  Allocate a mem_fileopen stream here.
3469         Adjust to call gdb_print_insn instead of
3470         gdb_disassembler::print_insn.
3471         (dump_insns, do_mixed_source_and_assembly_deprecated)
3472         (do_mixed_source_and_assembly, do_assembly_only): Add back a
3473         'gdbarch' parameter.  Remove gdb_disassembler parameter.
3474         (gdb_disassembly): Don't allocate a gdb_disassembler here.
3475         * disasm.h (gdb_disassembler::pretty_print_insn): Delete
3476         declaration.
3477         (gdb_pretty_print_insn): Re-add declaration.
3478         * record-btrace.c (btrace_insn_history): Don't allocate a
3479         gdb_disassembler here.  Adjust to call gdb_pretty_print_insn.
3480
3481 2017-02-01  Simon Marchi  <simon.marchi@polymtl.ca>
3482
3483         * disasm.h (gdb_disassembly): Remove file_string parameter.
3484         * disasm.c (gdb_disassembly): Likewise.
3485         * cli/cli-cmds.c (print_disassembly): Adapt.
3486         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
3487         * stack.c (do_gdb_disassembly): Likewise.
3488
3489 2017-02-01  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3490
3491         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): For
3492         DWARF_VALUE_LITERAL, no longer ignore the offset on big-endian
3493         targets.  And if the implicit value is longer than needed, extract
3494         the first bytes instead of the "least significant" ones.
3495
3496 2017-02-01  Markus Metzger  <markus.t.metzger@intel.com>
3497
3498         * btrace.c (btrace_enable): Do not call btrace_add_pc for
3499         BTRACE_FORMAT_PT or if can_access_registers_ptid returns false.
3500         (btrace_fetch): Assert can_access_registers_ptid.
3501         * record-btrace.c (require_btrace_thread, record_btrace_info): Call
3502         validate_registers_access.
3503
3504 2017-02-01  Markus Metzger  <markus.t.metzger@intel.com>
3505
3506         * gdbthread.h (can_access_registers_ptid): New.
3507         * thread.c (can_access_registers_ptid): New.
3508
3509 2017-02-01  Pedro Alves  <palves@redhat.com>
3510
3511         * i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
3512
3513 2017-01-31  Pedro Alves  <palves@redhat.com>
3514
3515         * mi/mi-interp.c (mi_breakpoint_created, mi_breakpoint_modified):
3516         Fix typos.
3517
3518 2017-01-31  Pedro Alves  <palves@redhat.com>
3519
3520         * stack.c (print_frame_args): Remove local mem_fileopen stream,
3521         not used.
3522
3523 2017-01-31  Pedro Alves  <palves@redhat.com>
3524
3525         * varobj.c (varobj_value_get_print_value): Remove xstrdup call.
3526
3527 2017-01-31  Pedro Alves  <palves@redhat.com>
3528
3529         * common/scoped_restore.h
3530         (scoped_restore_tmpl::scoped_restore_tmpl): Template on T2, and
3531         change the value's parameter type to T2.
3532         (make_scoped_restore): Likewise.
3533
3534 2017-01-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
3535             Richard Henderson  <rth@redhat.com>
3536
3537         * amd64-linux-nat.c (PTRACE_ARCH_PRCTL): New define.
3538         (amd64_linux_fetch_inferior_registers): Add case to fetch FS_BASE
3539         GS_BASE for older kernels.
3540         (amd64_linux_store_inferior_registers): Add case to store FS_BASE
3541         GS_BASE for older kernels.
3542         * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Add FS_BASE
3543         and GS_BASE to the offset table.
3544         (amd64_linux_register_reggroup_p): Add FS_BASE and GS_BASE to the
3545         system register group.
3546         * amd64-nat.c (amd64_native_gregset_reg_offset): Implements case
3547         for older kernels.
3548         * amd64-tdep.c (amd64_init_abi): Add segment registers for the
3549         amd64 ABI.
3550         * amd64-tdep.h (amd64_regnum): Add AMD64_FSBASE_REGNUM and
3551         AMD64_GSBASE_REGNUM.
3552         (AMD64_NUM_REGS): Set to AMD64_GSBASE_REGNUM + 1.
3553         * features/Makefile (amd64-linux.dat, amd64-avx-linux.dat)
3554         (amd64-mpx-linux.dat, amd64-avx512-linux.dat, x32-linux.dat)
3555         (x32-avx-linux.dat, x32-avx512-linux.dat): Add
3556         i386/64bit-segments.xml in those rules.
3557         * features/i386/64bit-segments.xml: New file.
3558         * features/i386/amd64-avx-mpx-linux.xml: Add 64bit-segments.xml.
3559         * features/i386/amd64-avx-linux.xml: Add 64bit-segments.xml.
3560         * features/i386/amd64-avx512-linux.xml: Add 64bit-segments.xml.
3561         * features/i386/amd64-mpx-linux.xml: Add 64bit-segments.xml.
3562         * features/i386/x32-avx512-linux.xml: Add 64bit-segments.xml.
3563         * features/i386/x32-avx-linux.xml: Add 64bit-segments.xml.
3564         * features/i386/amd64-linux.xml: Add 64bit-segments.xml.
3565         * features/i386/amd64-avx-linux.c: Regenerated.
3566         * features/i386/amd64-avx-mpx-linux.c: Regenerated.
3567         * features/i386/amd64-avx-mpx.c: Regenerated.
3568         * features/i386/amd64-avx512-linux.c: Regenerated.
3569         * features/i386/amd64-linux.c: Regenerated.
3570         * features/i386/amd64-mpx-linux.c: Regenerated.
3571         * features/i386/i386-avx-mpx-linux.c: Regenerated.
3572         * features/i386/i386-avx-mpx.c: Regenerated.
3573         * features/i386/x32-avx-linux.c: Regenerated.
3574         * features/i386/x32-avx512-linux.c: Regenerated.
3575         * regformats/i386/amd64-avx-linux.dat: Regenerated.
3576         * regformats/i386/amd64-avx-mpx-linux.dat: Regenerated.
3577         * regformats/i386/amd64-avx512-linux.dat: Regenerated.
3578         * regformats/i386/amd64-linux.dat: Regenerated.
3579         * regformats/i386/amd64-mpx-linux.dat: Regenerated.
3580         * regformats/i386/x32-avx-linux.dat: Regenerated.
3581         * regformats/i386/x32-avx512-linux.dat: Regenerated.
3582         * regformats/i386/x32-linux.dat: Regenerated.
3583
3584 2017-01-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
3585
3586         * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM):
3587         Set to AMD64_NUM_REGS.
3588
3589 2017-01-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
3590
3591         * amd64-nat.c (amd64_native_gregset_reg_offset): Simplify logic
3592         that checks validity of a register number.
3593
3594 2017-01-27  Kees Cook  <keescook@google.com>
3595
3596         * gdb/arm-linux-nat.c (arm_linux_fetch_inferior_registers): Call
3597         fetch_fpregs if target has fpa registers.
3598         (arm_linux_store_inferior_registers): Call store_fpregs if target
3599         has fpa registers.
3600
3601 2017-01-26  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3602
3603         * cris-tdep.c (cris_gdbarch_init): Remove check for
3604         info.byte_order and force it to BFD_ENDIAN_LITTLE.
3605
3606 2017-01-26  Antoine Tremblay  <antoine.tremblay@ericsson.com>
3607
3608         * corelow.c (get_core_register_section): Check for regset
3609         existence before checking for REGSET_VARIABLE_SIZE.
3610
3611 2017-01-26  Yao Qi  <yao.qi@linaro.org>
3612             Pedro Alves  <palves@redhat.com>
3613
3614         PR gdb/20939
3615         * disasm.c (gdb_disassembler::dis_asm_memory_error): Don't
3616         call memory_error, save memaddr instead.
3617         (gdb_disassembler::print_insn): If gdbarch_print_insn returns
3618         negative, cal memory_error.
3619         * disasm.h (gdb_disassembler) <m_err_memaddr>: New field.
3620
3621 2017-01-26  Yao Qi  <yao.qi@linaro.org>
3622
3623         * disasm-selftests.c (memory_error_test): New function.
3624         (_initialize_disasm_selftests): Register memory_error_test.
3625
3626 2017-01-26  Yao Qi  <yao.qi@linaro.org>
3627
3628         * Makefile.in (SFILES): Add disasm-selftests.c and
3629         selftest-arch.c.
3630         (COMMON_OBS): Add disasm-selftests.o and selftest-arch.o.
3631         * disasm-selftests.c: New file.
3632         * selftest-arch.c: New file.
3633         * selftest-arch.h: New file.
3634
3635 2017-01-26  Yao Qi  <yao.qi@linaro.org>
3636
3637         * mep-tdep.c (mep_gdb_print_insn): Set info->arch
3638         to bfd_arch_mep.  Don't return 0 if section is not
3639         found.  Call print_insn_mep.
3640
3641 2017-01-26  Pedro Alves  <palves@redhat.com>
3642             Yao Qi  <yao.qi@linaro.org>
3643
3644         * arm-tdep.c: Include "disasm.h".
3645         (gdb_print_insn_arm): Update code to get gdbarch.
3646         * disasm.c (dis_asm_read_memory): Change it to
3647         gdb_disassembler::dis_asm_read_memory.
3648         (dis_asm_memory_error): Likewise.
3649         (dis_asm_print_address): Likewise.
3650         (gdb_pretty_print_insn): Change it to
3651         gdb_disassembler::pretty_print_insn.
3652         (dump_insns): Add one argument gdb_disassemlber.  All
3653         callers updated.
3654         (do_mixed_source_and_assembly_deprecated): Likewise.
3655         (do_mixed_source_and_assembly): Likewise.
3656         (do_assembly_only): Likewise.
3657         (gdb_disassembler::gdb_disassembler): New.
3658         (gdb_disassembler::print_insn): New.
3659         * disasm.h (class gdb_disassembler): New.
3660         (gdb_pretty_print_insn): Remove declaration.
3661         (gdb_disassemble_info): Likewise.
3662         * guile/scm-disasm.c (class gdbscm_disassembler): New.
3663         (gdbscm_disasm_read_memory_worker): Update.
3664         (gdbscm_disasm_read_memory): Update.
3665         (gdbscm_disasm_memory_error): Remove.
3666         (gdbscm_disasm_print_address): Remove.
3667         (gdbscm_disassembler::gdbscm_disassembler): New.
3668         (gdbscm_print_insn_from_port): Update.
3669         * mips-tdep.c: Include disasm.h.
3670         (gdb_print_insn_mips): Update code to get gdbarch.
3671         * record-btrace.c (btrace_insn_history): Update.
3672         * spu-tdep.c: Include disasm.h.
3673         (struct spu_dis_asm_data): Remove.
3674         (struct spu_dis_asm_info): New.
3675         (spu_dis_asm_print_address): Use spu_dis_asm_info to get
3676         SPU id.
3677         (gdb_print_insn_spu): Cast disassemble_info to
3678         spu_dis_asm_info.
3679
3680 2017-01-26  Yao Qi  <yao.qi@linaro.org>
3681
3682         * disasm.c (do_ui_file_delete): Delete.
3683         (gdb_insn_length): Move code creating stream to ...
3684         * utils.c (null_stream): ... here.  New function.
3685         * utils.h (null_stream): Declare.
3686
3687 2017-01-23  Simon Marchi  <simon.marchi@polymtl.ca>
3688
3689         * python/py-inferior.c (find_thread_object): Return directly
3690         from the loop.  Remove "found" variable.
3691
3692 2017-01-21  Joel Brobecker  <brobecker@adacore.com>
3693
3694         GDB 7.12.1 released.
3695
3696 2017-01-20  Simon Marchi  <simon.marchi@ericsson.com>
3697
3698         * python/py-function.c (fnpy_call): Reorder declarations to have
3699         the gdbpy_enter object declared first.
3700         * python/py-xmethods.c (gdbpy_get_xmethod_arg_types): Likewise.
3701
3702 2017-01-20  Simon Marchi  <simon.marchi@ericsson.com>
3703
3704         PR python/21068
3705         * python/python-internal.h (PyMem_RawMalloc): Define for
3706         Python < 3.4.
3707         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Use
3708         PyMem_RawMalloc instead of PyMem_Malloc.
3709
3710 2017-01-20  Mike Wrighton  <mike_wrighton@codesourcery.com>
3711             Luis Machado  <lgustavo@codesourcery.com>
3712
3713         * NEWS (New commands): Mention flash-erase.
3714         (New MI commands): Mention target-flash-erase.
3715         * mi/mi-cmds.c (mi_cmd_target_flash_erase): Add target-flash-erase MI
3716         command.
3717         * mi/mi-cmds.h (mi_cmd_target_flash_erase): New declaration.
3718         * mi/mi-main.c (mi_cmd_target_flash_erase): New function.
3719         * target.c (flash_erase_command): New function.
3720         (initialize_targets): Add new flash-erase command.
3721         * target.h (flash_erase_command): New declaration.
3722
3723 2017-01-20  Joel Brobecker  <brobecker@adacore.com>
3724
3725         * nat/linux-ptrace.c: Only include <sys/procfs.h> if
3726         HAVE_SYS_PROCFS_H is defined.
3727
3728 2017-01-18  Alan Hayward  <alan.hayward@arm.com>
3729
3730         * remote.c (struct cached_reg): Change data into a pointer.
3731         * (stop_reply_dtr): Free data pointers before deleting vector.
3732         (process_stop_reply): Likewise.
3733         (remote_parse_stop_reply): Allocate space for data
3734
3735 2017-01-18  Alan Hayward  <alan.hayward@arm.com>
3736
3737         * amd64-tdep.c (amd64_pseudo_register_read_value): remove
3738         MAX_REGISTER_SIZE.
3739         (amd64_pseudo_register_read_value): Likewise.
3740         * remote.c (fetch_register_using_p): Remove MAX_REGISTER_SIZE.
3741         (store_register_using_P): Likewise.
3742         * regcache.c (regcache_xfer_part): Likewise.
3743
3744 2017-01-16  Ivo Raisr  <ivo.raisr@oracle.com>
3745
3746         Split real and pseudo registers.
3747         * sparc-tdep.h (SPARC_CORE_REGISTERS): New macro.
3748         (sparc32_pseudo_regnum): New enum.
3749         * sparc64-tdep.h (sparc64_pseudo_regnum): New enum.
3750         * sparc-tdep.c (SPARC32_FPU_REGISTERS): New macro.
3751         (SPARC32_CP0_REGISTERS): New macro.
3752         (sparc32_pseudo_register_name): New function.
3753         (sparc32_register_name): Use sparc32_pseudo_register_name.
3754         (sparc32_pseudo_register_type): New function.
3755         (sparc32_register_type): Use sparc32_pseudo_register_type.
3756         (sparc32_pseudo_register_read, sparc32_pseudo_register_write): Handle
3757         pseudo register numbers.
3758         * sparc64-tdep.c SPARC64_FPU_REGISTERS): New macro.
3759         (SPARC64_CP0_REGISTERS): New macro.
3760         (sparc64_pseudo_register_name): New function.
3761         (sparc64_register_name): Use sparc64_pseudo_register_name.
3762         (sparc64_pseudo_register_type): New function.
3763         (sparc64_register_type): Use sparc64_pseudo_register_type.
3764         (sparc64_pseudo_register_read, sparc64_pseudo_register_write): Handle
3765         pseudo register numbers.
3766         (sparc64_store_floating_fields, sparc64_extract_floating_fields,
3767         sparc64_store_arguments): Handle pseudo register numbers.
3768
3769 2017-01-13  Yao Qi  <yao.qi@linaro.org>
3770
3771         * remote.c (REMOTE_DEBUG_MAX_CHAR): New macro.
3772         (putpkt_binary): Print only REMOTE_DEBUG_MAX_CHAR chars in debug
3773         output.
3774         (getpkt_or_notif_sane_1): Likewise.
3775
3776 2017-01-13  Yao Qi  <yao.qi@linaro.org>
3777
3778         * Makefile.in (checker-headers): Use CXX and CXX_DIALET instead
3779         of CC.  Pass "-x c++-header" instead of "-x c".
3780
3781 2017-01-12  Simon Marchi  <simon.marchi@ericsson.com>
3782
3783         * remote.c (remote_can_async_p): Update comment.
3784
3785 2017-01-12  Simon Marchi  <simon.marchi@ericsson.com>
3786
3787         * linux-nat.c (linux_nat_can_async_p): Update comment.
3788
3789 2017-01-12  Simon Marchi  <simon.marchi@ericsson.com>
3790
3791         * serial.c (serial_open): Forget about "pc" and "lpt" serial interface.
3792
3793 2017-01-11  Simon Marchi  <simon.marchi@ericsson.com>
3794
3795         * cli/cli-decode.c (lookup_cmd_1): Fix typo in comment.
3796
3797 2017-01-10  Tom Tromey  <tom@tromey.com>
3798
3799         * python/py-type.c (typy_legacy_template_argument): Update.
3800         * cp-support.h (struct demangle_parse_info) (demangle_parse_info,
3801         ~demangle_parse_info): Declare new members.
3802         (cp_demangled_name_to_comp): Return unique_ptr.
3803         (cp_demangled_name_parse_free)
3804         (make_cleanup_cp_demangled_name_parse_free)
3805         (cp_new_demangle_parse_info): Remove.
3806         * cp-support.c (do_demangled_name_parse_free_cleanup)
3807         (make_cleanup_cp_demangled_name_parse_free): Remove.
3808         (inspect_type, cp_canonicalize_string_full)
3809         (cp_canonicalize_string): Update.
3810         (mangled_name_to_comp): Change return type.
3811         (cp_class_name_from_physname, method_name_from_physname)
3812         (cp_func_name, cp_remove_params): Update.
3813         * cp-name-parser.y (demangle_parse_info): New constructor, from
3814         cp_new_demangle_parse_info.
3815         (~demangle_parse_info): New destructor, from
3816         cp_demangled_name_parse_free.
3817         (cp_merge_demangle_parse_infos): Update.
3818         (cp_demangled_name_to_comp): Change return type.
3819
3820 2017-01-10  Tom Tromey  <tom@tromey.com>
3821
3822         * top.c (prevent_dont_repeat): Change return type.
3823         * python/python.c (execute_gdb_command): Use std::string.
3824         Update.
3825         * guile/guile.c (gdbscm_execute_gdb_command): Update.
3826         * command.h (prevent_dont_repeat): Change return type.
3827         * breakpoint.c (bpstat_do_actions_1): Update.
3828
3829 2017-01-10  Tom Tromey  <tom@tromey.com>
3830
3831         * value.h (scoped_value_mark::~scoped_value_mark): Call
3832         free_to_mark.
3833         (scoped_value_mark::free_to_mark): New method.
3834         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use
3835         scoped_value_mark.
3836
3837 2017-01-10  Tom Tromey  <tom@tromey.com>
3838
3839         * python/py-value.c (valpy_dereference, valpy_referenced_value)
3840         (valpy_reference_value, valpy_const_value, valpy_get_address)
3841         (valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
3842         (valpy_getitem, valpy_call, valpy_binop_throw, valpy_negative)
3843         (valpy_absolute, valpy_richcompare_throw): Use scoped_value_mark.
3844         * dwarf2loc.c (dwarf2_loc_desc_get_symbol_read_needs): Use
3845         scoped_value_mark.
3846         * dwarf2-frame.c (execute_stack_op): Use scoped_value_mark.
3847         * value.h (scoped_value_mark): New class.
3848
3849 2017-01-10  Tom Tromey  <tom@tromey.com>
3850
3851         * dwarf2read.c (dwarf2_build_psymtabs): Use psymtab_discarder.
3852         * psympriv.h (make_cleanup_discard_psymtabs): Don't declare.
3853         * psymtab.c (discard_psymtabs_upto): Remove.
3854         (make_cleanup_discard_psymtabs): Remove.
3855         (struct psymtab_state): Remove.
3856
3857 2017-01-10  Tom Tromey  <tom@tromey.com>
3858
3859         * record-full.c (record_full_save_cleanups): Remove.
3860         (record_full_save): Use gdb::unlinker.
3861         * gcore.c (do_bfd_delete_cleanup): Remove.
3862         (gcore_command): Use gdb::unlinker, unique_xmalloc_ptr.  Remove
3863         cleanups.
3864         * dwarf2read.c (unlink_if_set): Remove.
3865         (write_psymtabs_to_index): Use gdb::unlinker.
3866         * common/gdb_unlinker.h: New file.
3867
3868 2017-01-10  Tom Tromey  <tom@tromey.com>
3869
3870         * windows-tdep.c (windows_xfer_shared_library): Update.
3871         * windows-nat.c (windows_make_so): Update.
3872         * utils.h (make_cleanup_bfd_unref): Remove.
3873         * utils.c (do_bfd_close_cleanup, make_cleanup_bfd_unref): Remove.
3874         * symfile.h (symfile_bfd_open)
3875         (find_separate_debug_file_in_section): Return gdb_bfd_ref_ptr.
3876         * symfile.c (read_symbols, symbol_file_add)
3877         (separate_debug_file_exists): Update.
3878         (symfile_bfd_open): Return gdb_bfd_ref_ptr.
3879         (generic_load, reread_symbols): Update.
3880         * symfile-mem.c (symbol_file_add_from_memory): Update.
3881         * spu-linux-nat.c (spu_bfd_open): Return gdb_bfd_ref_ptr.
3882         (spu_symbol_file_add_from_memory): Update.
3883         * solist.h (struct target_so_ops) <bfd_open>: Return
3884         gdb_bfd_ref_ptr.
3885         (solib_bfd_fopen, solib_bfd_open): Return gdb_bfd_ref_ptr.
3886         * solib.c (solib_bfd_fopen, solib_bfd_open): Return
3887         gdb_bfd_ref_ptr.
3888         (solib_map_sections, reload_shared_libraries_1): Update.
3889         * solib-svr4.c (enable_break): Update.
3890         * solib-spu.c (spu_bfd_fopen): Return gdb_bfd_ref_ptr.
3891         * solib-frv.c (enable_break2): Update.
3892         * solib-dsbt.c (enable_break): Update.
3893         * solib-darwin.c (gdb_bfd_mach_o_fat_extract): Return
3894         gdb_bfd_ref_ptr.
3895         (darwin_solib_get_all_image_info_addr_at_init): Update.
3896         (darwin_bfd_open): Return gdb_bfd_ref_ptr.
3897         * solib-aix.c (solib_aix_bfd_open): Return gdb_bfd_ref_ptr.
3898         * record-full.c (record_full_save): Update.
3899         * python/py-objfile.c (objfpy_add_separate_debug_file): Update.
3900         * procfs.c (insert_dbx_link_bpt_in_file): Update.
3901         * minidebug.c (find_separate_debug_file_in_section): Return
3902         gdb_bfd_ref_ptr.
3903         * machoread.c (macho_add_oso_symfile): Change abfd to
3904         gdb_bfd_ref_ptr.
3905         (macho_symfile_read_all_oso): Update.
3906         (macho_check_dsym): Return gdb_bfd_ref_ptr.
3907         (macho_symfile_read): Update.
3908         * jit.c (bfd_open_from_target_memory): Return gdb_bfd_ref_ptr.
3909         (jit_bfd_try_read_symtab): Update.
3910         * gdb_bfd.h (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
3911         (gdb_bfd_openw, gdb_bfd_openr_iovec)
3912         (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
3913         gdb_bfd_ref_ptr.
3914         (gdb_bfd_ref_policy): New struct.
3915         (gdb_bfd_ref_ptr): New typedef.
3916         * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
3917         (gdb_bfd_openw, gdb_bfd_openr_iovec)
3918         (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
3919         gdb_bfd_ref_ptr.
3920         * gcore.h (create_gcore_bfd): Return gdb_bfd_ref_ptr.
3921         * gcore.c (create_gcore_bfd): Return gdb_bfd_ref_ptr.
3922         (gcore_command): Update.
3923         * exec.c (exec_file_attach): Update.
3924         * elfread.c (elf_symfile_read): Update.
3925         * dwarf2read.c (dwarf2_get_dwz_file): Update.
3926         (try_open_dwop_file, open_dwo_file): Return gdb_bfd_ref_ptr.
3927         (open_and_init_dwo_file): Update.
3928         (open_dwp_file): Return gdb_bfd_ref_ptr.
3929         (open_and_init_dwp_file): Update.
3930         * corelow.c (core_open): Update.
3931         * compile/compile-object-load.c (compile_object_load): Update.
3932         * common/gdb_ref_ptr.h (ref_ptr::operator->): New operator.
3933         * coffread.c (coff_symfile_read): Update.
3934         * cli/cli-dump.c (bfd_openr_or_error, bfd_openw_or_error): Return
3935         gdb_bfd_ref_ptr.  Rename.
3936         (dump_bfd_file, restore_command): Update.
3937         * build-id.h (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
3938         * build-id.c (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
3939         (find_separate_debug_file_by_buildid): Update.
3940
3941 2017-01-10  Tom Tromey  <tom@tromey.com>
3942
3943         * common/gdb_ref_ptr.h: New file.
3944         * python/py-ref.h (struct gdbpy_ref_policy): New.
3945         (gdbpy_ref): Now a typedef.
3946
3947 2017-01-10  Tom Tromey  <tom@tromey.com>
3948
3949         * utils.h (make_cleanup_htab_delete): Don't declare.
3950         * utils.c (do_htab_delete_cleanup, make_cleanup_htab_delete):
3951         Remove.
3952         * linespec.c (decode_compound_collector): Add constructor,
3953         destructor.
3954         (lookup_prefix_sym): Remove cleanup.
3955         (symtab_collector): Add constructor, destructor.
3956         (collect_symtabs_from_filename): Remove cleanup.
3957         * disasm.c (do_mixed_source_and_assembly): Use htab_up.
3958         * compile/compile-c-symbols.c (generate_c_for_variable_locations):
3959         Use htab_up.
3960         * gnu-v3-abi.c (gnuv3_print_vtable): Use htab_up.
3961         * dwarf2read.c (dw2_expand_symtabs_matching)
3962         (dw2_map_symbol_filenames, dwarf_decode_macros)
3963         (write_psymtabs_to_index): Use htab_up.
3964         * dwarf2loc.c (func_verify_no_selftailcall)
3965         (call_site_find_chain_1, func_verify_no_selftailcall)
3966         (chain_candidate, call_site_find_chain_1): Use std::unordered_set,
3967         std::vector, gdb::unique_xmalloc_ptr.
3968         (call_sitep): Remove typedef.
3969         (dwarf2_locexpr_baton_eval): Remove unused variable.
3970
3971 2017-01-10  Tom Tromey  <tom@tromey.com>
3972
3973         * python/python-internal.h (make_cleanup_py_decref)
3974         (make_cleanup_py_xdecref): Don't declare.
3975         * python/py-utils.c (py_decref, make_cleanup_py_decref)
3976         (py_xdecref, make_cleanup_py_xdecref): Remove.
3977
3978 2017-01-10  Tom Tromey  <tom@tromey.com>
3979
3980         * python/py-framefilter.c (py_mi_print_variables): Use gdbpy_ref.
3981         (py_print_locals, enumerate_locals, py_print_args): Use gdbpy_ref.
3982
3983 2017-01-10  Tom Tromey  <tom@tromey.com>
3984
3985         * python/py-framefilter.c (enumerate_args): Use gdbpy_ref.
3986
3987 2017-01-10  Tom Tromey  <tom@tromey.com>
3988
3989         * python/py-utils.c (unicode_to_encoded_string)
3990         (python_string_to_target_string)
3991         (python_string_to_target_python_string)
3992         (python_string_to_host_string, gdbpy_obj_to_string)
3993         (get_addr_from_python): Use gdbpy_ref.
3994
3995 2017-01-10  Tom Tromey  <tom@tromey.com>
3996
3997         * python/py-unwind.c (pyuw_object_attribute_to_pointer): Use
3998         gdbpy_ref.
3999
4000 2017-01-10  Tom Tromey  <tom@tromey.com>
4001
4002         * python/python.c (eval_python_command, gdbpy_decode_line)
4003         (gdbpy_run_events, gdbpy_start_type_printers)
4004         (gdbpy_apply_type_printers): Use gdbpy_ref.
4005
4006 2017-01-10  Tom Tromey  <tom@tromey.com>
4007
4008         * python/py-param.c (get_doc_string, compute_enum_values): Use
4009         gdbpy_ref.
4010
4011 2017-01-10  Tom Tromey  <tom@tromey.com>
4012
4013         * python/py-inferior.c (find_thread_object, build_inferior_list):
4014         Use gdbpy_ref.
4015
4016 2017-01-10  Tom Tromey  <tom@tromey.com>
4017
4018         * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
4019
4020 2017-01-10  Tom Tromey  <tom@tromey.com>
4021
4022         * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope): Use
4023         gdbpy_ref.
4024
4025 2017-01-10  Tom Tromey  <tom@tromey.com>
4026
4027         * python/py-cmd.c (cmdpy_completer_helper): Use gdbpy_ref.  Remove
4028         extra incref.
4029         (cmdpy_completer_handle_brkchars, cmdpy_completer, cmdpy_init):
4030         Use gdbpy_ref.
4031
4032 2017-01-10  Tom Tromey  <tom@tromey.com>
4033
4034         * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
4035         gdbpy_ref.
4036
4037 2017-01-10  Tom Tromey  <tom@tromey.com>
4038
4039         * python/py-arch.c (archpy_disassemble): Use gdbpy_ref.  Don't
4040         decref results of PyArg_ParseTupleAndKeywords.
4041
4042 2017-01-10  Tom Tromey  <tom@tromey.com>
4043
4044         * python/python.c (python_run_simple_file): Use
4045         unique_xmalloc_ptr, gdbpy_ref.
4046
4047 2017-01-10  Tom Tromey  <tom@tromey.com>
4048
4049         * python/py-prettyprint.c (print_stack_unless_memory_error)
4050         (print_string_repr, print_children): Use gdbpy_ref.
4051         (dummy_python_frame): New class.
4052         (dummy_python_frame::dummy_python_frame): Rename from
4053         push_dummy_python_frame.
4054         (py_restore_tstate): Remove.
4055
4056 2017-01-10  Tom Tromey  <tom@tromey.com>
4057
4058         * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
4059
4060 2017-01-10  Tom Tromey  <tom@tromey.com>
4061
4062         * python/python.c (ensure_python_env, restore_python_env):
4063         Remove.
4064         * python/python-internal.h (ensure_python_env): Don't declare.
4065         * varobj.h (varobj_ensure_python_env): Don't declare.
4066         * varobj.c (varobj_ensure_python_env): Remove.
4067
4068 2017-01-10  Tom Tromey  <tom@tromey.com>
4069
4070         * varobj.c (varobj_value_get_print_value): Use
4071         gdbpy_enter_varobj.
4072
4073 2017-01-10  Tom Tromey  <tom@tromey.com>
4074
4075         * python/py-prettyprint.c (print_string_repr, print_children):
4076         Update.
4077         * python/py-lazy-string.c (gdbpy_extract_lazy_string): Change type
4078         of "encoding".
4079         * varobj.c (varobj_value_get_print_value): Update.
4080         * python/python-internal.h (gdbpy_extract_lazy_string): Update.
4081
4082 2017-01-10  Tom Tromey  <tom@tromey.com>
4083
4084         * varobj.c (varobj_get_display_hint)
4085         (dynamic_varobj_has_child_method, install_new_value_visualizer)
4086         (varobj_set_visualizer, free_variable): Use
4087         gdbpy_enter_varobj.
4088
4089 2017-01-10  Tom Tromey  <tom@tromey.com>
4090
4091         * python/python.c (python_command): Use gdbpy_enter, gdbpy_ref.
4092         (do_finish_initialization): New function.  Use gdbpy_ref.
4093         (gdbpy_finish_initialization): Use gdbpy_enter.  Call
4094         do_finish_initialization.
4095
4096 2017-01-10  Tom Tromey  <tom@tromey.com>
4097
4098         * python/py-param.c (get_set_value, get_show_value): Use
4099         gdbpy_enter, gdbpy_ref.
4100
4101 2017-01-10  Tom Tromey  <tom@tromey.com>
4102
4103         * python/py-function.c (fnpy_call): Use gdbpy_enter, gdbpy_ref.
4104
4105 2017-01-10  Tom Tromey  <tom@tromey.com>
4106
4107         * python/py-cmd.c (cmdpy_function): Use gdbpy_enter, gdbpy_ref.
4108
4109 2017-01-10  Tom Tromey  <tom@tromey.com>
4110
4111         * python/py-varobj.c (py_varobj_iter_dtor, py_varobj_iter_next):
4112         Use gdbpy_enter_varobj.
4113
4114 2017-01-10  Tom Tromey  <tom@tromey.com>
4115
4116         * varobj.c (gdbpy_enter_varobj): New constructor.
4117         * python/python-internal.h (gdbpy_enter_varobj): New class.
4118         * python/py-varobj.c (py_varobj_get_iterator): Use
4119         gdbpy_enter_varobj.
4120
4121 2017-01-10  Tom Tromey  <tom@tromey.com>
4122
4123         * python/py-xmethods.c (gdbpy_get_xmethod_result_type): Use
4124         gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
4125         (gdbpy_invoke_xmethod): Use gdbpy_ref, gdbpy_enter.
4126         (gdbpy_get_xmethod_arg_types): Use gdbpy_ref,
4127         unique_xmalloc_ptr.
4128         (gdbpy_get_xmethod_arg_types): Use gdbpy_ref, gdbpy_enter.
4129
4130 2017-01-10  Tom Tromey  <tom@tromey.com>
4131
4132         * python/py-xmethods.c (invoke_match_method): Use
4133         gdbpy_ref.
4134
4135 2017-01-10  Tom Tromey  <tom@tromey.com>
4136
4137         * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): use
4138         gdbpy_enter, gdbpy_ref.
4139
4140 2017-01-10  Tom Tromey  <tom@tromey.com>
4141
4142         * python/python.c (python_interactive_command): Use gdbpy_enter.
4143
4144 2017-01-10  Tom Tromey  <tom@tromey.com>
4145
4146         * python/python.c (gdbpy_before_prompt_hook): Use gdbpy_enter,
4147         gdbpy_ref.
4148
4149 2017-01-10  Tom Tromey  <tom@tromey.com>
4150
4151         * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Use
4152         gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
4153
4154 2017-01-10  Tom Tromey  <tom@tromey.com>
4155
4156         * utils.h (htab_deleter): New struct.
4157         (htab_up): New typedef.
4158         * python/py-framefilter.c (gdbpy_apply_frame_filter): Use
4159         gdbpy_enter, gdbpy_ref, htab_up.
4160
4161 2017-01-10  Tom Tromey  <tom@tromey.com>
4162
4163         * python/py-unwind.c (pending_frame_invalidate): Remove.
4164         (pyuw_sniffer): Use gdbpy_enter and gdbpy_ref.
4165
4166 2017-01-10  Tom Tromey  <tom@tromey.com>
4167
4168         * python/py-xmethods.c (gdbpy_free_xmethod_worker_data)
4169         (gdbpy_clone_xmethod_worker_data): Use gdbpy_enter.
4170
4171 2017-01-10  Tom Tromey  <tom@tromey.com>
4172
4173         * python/py-type.c (save_objfile_types): Use gdbpy_enter.
4174
4175 2017-01-10  Tom Tromey  <tom@tromey.com>
4176
4177         * python/python.c (gdbpy_eval_from_control_command)
4178         (gdbpy_source_script, gdbpy_run_events)
4179         (gdbpy_source_objfile_script, gdbpy_execute_objfile_script)
4180         (gdbpy_free_type_printers, gdbpy_finish_initialization): Use
4181         gdbpy_enter.
4182
4183 2017-01-10  Tom Tromey  <tom@tromey.com>
4184
4185         * python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
4186
4187 2017-01-10  Tom Tromey  <tom@tromey.com>
4188
4189         * python/py-objfile.c (py_free_objfile): Use gdbpy_enter.
4190
4191 2017-01-10  Tom Tromey  <tom@tromey.com>
4192
4193         * python/py-inferior.c (python_on_normal_stop, python_on_resume)
4194         (python_on_inferior_call_pre, python_on_inferior_call_post)
4195         (python_on_memory_change, python_on_register_change)
4196         (python_inferior_exit, python_new_objfile, add_thread_object)
4197         (delete_thread_object, py_free_inferior): Use gdbpy_enter.
4198
4199 2017-01-10  Tom Tromey  <tom@tromey.com>
4200
4201         * python/py-finishbreakpoint.c (bpfinishpy_handle_stop)
4202         (bpfinishpy_handle_exit): Use gdbpy_enter.
4203
4204 2017-01-10  Tom Tromey  <tom@tromey.com>
4205
4206         * python/py-cmd.c (cmdpy_destroyer)
4207         (cmdpy_completer_handle_brkchars, cmdpy_completer): Use
4208         gdbpy_enter.
4209
4210 2017-01-10  Tom Tromey  <tom@tromey.com>
4211
4212         * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
4213         gdbpy_enter.
4214         (gdbpy_breakpoint_has_cond): Likewise.
4215
4216 2017-01-10  Tom Tromey  <tom@tromey.com>
4217
4218         * python/python.c (gdbpy_enter): New constructor.
4219         (~gdbpy_enter): New destructor.
4220         (restore_python_env, ensure_python_env): Rewrite.
4221         * python/python-internal.h (gdbpy_enter): New class.
4222
4223 2017-01-10  Tom Tromey  <tom@tromey.com>
4224
4225         * python/py-symbol.c (gdbpy_lookup_symbol): Use gdbpy_ref.
4226
4227 2017-01-10  Tom Tromey  <tom@tromey.com>
4228
4229         * python/py-value.c (value_has_field, get_field_flag)
4230         (get_field_type, valpy_getitem, convert_value_from_python): Use
4231         gdbpy_ref.
4232
4233 2017-01-10  Tom Tromey  <tom@tromey.com>
4234
4235         * python/python.c (gdbpy_progspaces, gdbpy_objfiles): Use
4236         gdbpy_ref.
4237
4238 2017-01-10  Tom Tromey  <tom@tromey.com>
4239
4240         * python/py-prettyprint.c (search_pp_list)
4241         (find_pretty_printer_from_objfiles)
4242         (find_pretty_printer_from_progspace)
4243         (find_pretty_printer_from_gdb, find_pretty_printer)
4244         (gdbpy_get_display_hint, gdbpy_get_varobj_pretty_printer): Use
4245         gdbpy_ref.
4246
4247 2017-01-10  Tom Tromey  <tom@tromey.com>
4248
4249         * python/py-param.c (call_doc_function): Use gdbpy_ref.
4250
4251 2017-01-10  Tom Tromey  <tom@tromey.com>
4252
4253         * python/py-linetable.c (build_line_table_tuple_from_pcs)
4254         (ltpy_get_all_source_lines): Use gdbpy_ref.
4255
4256 2017-01-10  Tom Tromey  <tom@tromey.com>
4257
4258         * python/py-framefilter.c (extract_sym, extract_value)
4259         (get_py_iter_from_func, bootstrap_python_frame_filters): Use
4260         gdbpy_ref.
4261
4262 2017-01-10  Tom Tromey  <tom@tromey.com>
4263
4264         * python/py-breakpoint.c (gdbpy_breakpoints): Use gdbpy_ref.
4265
4266 2017-01-10  Tom Tromey  <tom@tromey.com>
4267
4268         * python/py-inferior.c (gdbpy_inferiors): Use gdbpy_ref.
4269
4270 2017-01-10  Tom Tromey  <tom@tromey.com>
4271
4272         * python/py-function.c (convert_values_to_python, fnpy_init): Use
4273         gdbpy_ref.
4274
4275 2017-01-10  Tom Tromey  <tom@tromey.com>
4276
4277         * python/py-cmd.c (gdbpy_string_to_argv): Use gdbpy_ref.
4278
4279 2017-01-10  Tom Tromey  <tom@tromey.com>
4280
4281         * python/py-type.c (convert_field, make_fielditem, typy_fields)
4282         (typy_range): Use gdbpy_ref.
4283
4284 2017-01-10  Tom Tromey  <tom@tromey.com>
4285
4286         * python/py-threadevent.c (create_thread_event_object): Use
4287         gdbpy_ref.
4288         * python/py-stopevent.c (create_stop_event_object): Simplify.
4289         (emit_stop_event): Use gdbpy_ref.
4290         * python/py-signalevent.c (create_signal_event_object): Use
4291         gdbpy_ref.
4292         * python/py-newobjfileevent.c (create_new_objfile_event_object)
4293         (emit_new_objfile_event, create_clear_objfiles_event_object)
4294         (emit_clear_objfiles_event): Use gdbpy_ref.
4295         * python/py-infevents.c (create_inferior_call_event_object)
4296         (create_register_changed_event_object)
4297         (create_memory_changed_event_object, emit_inferior_call_event)
4298         (emit_memory_changed_event, emit_register_changed_event): Use
4299         gdbpy_ref.
4300         * python/py-exitedevent.c (create_exited_event_object)
4301         (emit_exited_event): Use gdbpy_ref.
4302         * python/py-event.h (evpy_emit_event): Remove
4303         CPYCHECKER_STEALS_REFERENCE_TO_ARG annotation.
4304         * python/py-event.c (evpy_emit_event): Use gdbpy_ref.
4305         * python/py-continueevent.c (emit_continue_event): Use
4306         gdbpy_ref.
4307         * python/py-breakpoint.c (gdbpy_breakpoint_created)
4308         (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
4309         gdbpy_ref.
4310         * python/py-bpevent.c (create_breakpoint_event_object): Use
4311         gdbpy_ref.
4312
4313 2017-01-10  Tom Tromey  <tom@tromey.com>
4314
4315         * python/py-ref.h: New file.
4316
4317 2017-01-10  Simon Marchi  <simon.marchi@ericsson.com>
4318
4319         * cli-out.c (cli_ui_out::do_redirect): Change return type to
4320         void.
4321         * cli-out.h (cli_ui_out::do_redirect): Likewise.
4322         * mi/mi-out.c (mi_ui_out::do_redirect): Likewise.
4323         * mi/mi-out.h (mi_ui_out::do_redirect): Likewise.
4324         * ui-out.c (ui_out::redirect): Likewise.
4325         * ui-out.h (ui_out::redirect, ui_out::do_redirect): Likewise.
4326         * cli/cli-logging.c (set_logging_redirect): Update call site of
4327         ui_out::redirect.
4328         (handle_redirections): Likewise.
4329         * scm-ports.c (ioscm_with_output_to_port_worker): Likewise.
4330         * top.c (execute_command_to_string): Likewise.
4331         * utils.c (do_ui_out_redirect_pop): Likewise.
4332
4333 2017-01-10  Simon Marchi  <simon.marchi@ericsson.com>
4334
4335         * stack.c (_initialize_stack): Update "frame" command help message.
4336
4337 2017-01-08  Iain Buclaw  <ibuclaw@gdcproject.org>
4338
4339         * d-exp.y (CastExpression): Emit UNOP_CAST_TYPE.
4340
4341 2017-01-06  Yao Qi  <yao.qi@linaro.org>
4342
4343         * x86-linux-nat.h: Include gdb_proc_service.h.
4344
4345 2017-01-06  Yao Qi  <yao.qi@linaro.org>
4346
4347         * ser-base.h: Include serial.h.
4348
4349 2017-01-06  Yao Qi  <yao.qi@linaro.org>
4350
4351         * ppc-linux-tdep.h: Include ppc-tdep.h.
4352
4353 2017-01-06  Yao Qi  <yao.qi@linaro.org>
4354
4355         * nat/amd64-linux-siginfo.h: Include signal.h.
4356
4357 2017-01-06  Yao Qi  <yao.qi@linaro.org>
4358
4359         * nat/aarch64-linux-hw-point.h: Include break-common.h.
4360
4361 2017-01-06  Yao Qi  <yao.qi@linaro.org>
4362
4363         * mi/mi-parse.h: Include mi-cmds.h.
4364
4365 2017-01-06  Yao Qi  <yao.qi@linaro.org>
4366
4367         * inf-loop.c: Don't include "target.h".
4368         * inf-loop.h: Include it here.
4369
4370 2017-01-06  Yao Qi  <yao.qi@linaro.org>
4371
4372         * dfp.h: Include "dboulest.h" and "expression.h".
4373
4374 2017-01-06  Yao Qi  <yao.qi@linaro.org>
4375
4376         * ax-gdb.h: Include "ax.h".
4377
4378 2017-01-06  Yao Qi  <yao.qi@linaro.org>
4379
4380         * Makefile.in (HFILES_NO_SRCDIR): Replace gdb_ptrace.h
4381         with nat/gdb_ptrace.h.
4382
4383 2017-01-05  Yao Qi  <yao.qi@linaro.org>
4384
4385         * mips-fbsd-tdep.c (mips_fbsd_sigframe_init): Move && to
4386         new line.
4387         (mips64_fbsd_sigframe_init): Likewise.
4388
4389 2017-01-04  John Baldwin  <jhb@FreeBSD.org>
4390
4391         * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Use
4392         GDB_OSABI_FREEBSD instead of GDB_OSABI_FREEBSD_ELF.
4393
4394 2017-01-04  John Baldwin  <jhb@FreeBSD.org>
4395
4396         * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
4397         * NEWS: Mention new FreeBSD/mips native configuration.
4398         * config/mips/fbsd.mh: New file.
4399         * configure.host: Add mips*-*-freebsd*.
4400         * mips-fbsd-nat.c: New file.
4401
4402 2017-01-04  John Baldwin  <jhb@FreeBSD.org>
4403
4404         * Makefile.in (ALL_TARGET_OBS): Add mips-fbsd-tdep.o.
4405         (ALLDEPFILES): Add mips-fbsd-tdep.c.
4406         * NEWS: Mention new FreeBSD/mips target.
4407         * configure.tgt: Add mips*-*-freebsd*.
4408         * mips-fbsd-tdep.c: New file.
4409         * mips-fbsd-tdep.h: New file.
4410
4411 2017-01-04  Yao Qi  <yao.qi@linaro.org>
4412
4413         * dwarf2loc.c (write_pieced_value): Don't use VALUE_FRAME_ID (to),
4414         use c->frame_id when the piece location is DWARF_VALUE_REGISTER.
4415
4416 2017-01-01  Joel Brobecker  <brobecker@adacore.com>
4417
4418         Update copyright year range in all GDB files.
4419
4420 2017-01-01  Joel Brobecker  <brobecker@adacore.com>
4421
4422         * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2016.
4423
4424 For older changes see ChangeLog-2016.
4425 \f
4426 Local Variables:
4427 mode: change-log
4428 left-margin: 8
4429 fill-column: 74
4430 version-control: never
4431 coding: utf-8
4432 End: